From c2b0246cb6e94c5099293f28f2c0a7c993dd75b7 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 1 Apr 2026 15:13:52 +0100 Subject: [PATCH 01/48] Rename hoop_stress method to calculate_cs_hoop_stress and update references --- documentation/source/eng-models/central-solenoid.md | 2 +- process/models/pfcoil.py | 4 ++-- tests/unit/models/test_pfcoil.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 354aa3ae10..c1cb06dc50 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -157,7 +157,7 @@ to the maximum at the midplane, $F_{z}(0)$. -------------------------- -### Hoop stress | `hoop_stress()` +### Hoop stress | `calculate_cs_hoop_stress()` diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 220feac0c7..3a8e7271cd 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3371,7 +3371,7 @@ def ohcalc(self): # Superconducting coil # New calculation from M. N. Wilson for hoop stress - self.data.pf_coil.sig_hoop = self.hoop_stress( + self.data.pf_coil.sig_hoop = self.calculate_cs_hoop_stress( self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1] ) @@ -3854,7 +3854,7 @@ def calculate_cs_self_midplane_axial_stress_time_profile( ) self.data.pf_coil.stress_z_cs_self_midplane_profile[time] = stress_value - def hoop_stress(self, r): + def calculate_cs_hoop_stress(self, r): """Calculation of hoop stress of central solenoid. This routine calculates the hoop stress of the central solenoid diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index ba51f4fa5c..4db3c66c64 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -1967,7 +1967,7 @@ def test_vsec(pfcoil, monkeypatch): def test_hoop_stress(cs_coil, monkeypatch): """Test hoop_stress subroutine. - hoop_stress() requires specific mocked variables in order to work; these were + calculate_cs_hoop_stress() requires specific mocked variables in order to work; these were discovered using gdb to break on the first subroutine call when running the baseline 2018 IN.DAT. @@ -2042,7 +2042,7 @@ def test_hoop_stress(cs_coil, monkeypatch): r = 2.3 s_hoop_exp = 6.737108e8 - s_hoop = cs_coil.hoop_stress(r) + s_hoop = cs_coil.calculate_cs_hoop_stress(r) assert pytest.approx(s_hoop) == s_hoop_exp From f3a842ded43fb22bc9ed918ce8f022029f1b3860 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 08:57:43 +0100 Subject: [PATCH 02/48] Enhance CS hoop stress calculation with additional parameters and update documentation --- .../source/eng-models/central-solenoid.md | 12 +++++++ process/models/pfcoil.py | 33 ++++++++++++------- 2 files changed, 33 insertions(+), 12 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index c1cb06dc50..4a62e1e6c4 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -166,6 +166,18 @@ The hoop stress is calculated using equations 4.10 and 4.11 from "Superconductin Wilson (1983). This is divided by the fraction of the area occupied by steel to obtain the hoop stress in the steel, $\sigma_{hoop}$. +$$ +\sigma_{\theta} = \frac{K(2+v)}{3(\alpha+1)}\times \left(\alpha^2+\alpha+1+\frac{\alpha^2}{\eps^2}-\eps \frac{(1+2v)(\alpha+1)}{(2+v)}\right) \\ +- \frac{M(3+v)}{8}\left(\alpha^2+1+\frac{\alpha^2}{\eps^2}-\frac{(1+3v)}{(3+v)}\eps^2\right) +$$ + +Where: + +- $\epsilon = \frac{r}{r_{CS,inner}}$ +- $\alpha = \frac{r_{CS,outer}}{r_{CS,inner}}$ + +For a special infinite solenoid case $B$ + The axial stress can be calculated using "Case studies in superconducting magnets", Y. Iwasa, p. 86, 3.5.2, Special Case 4: Midplane force. This applies exactly only to a thin-walled solenoid. The axial stress in the steel is given by: diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 3a8e7271cd..e6110eccbd 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3854,7 +3854,15 @@ def calculate_cs_self_midplane_axial_stress_time_profile( ) self.data.pf_coil.stress_z_cs_self_midplane_profile[time] = stress_value - def calculate_cs_hoop_stress(self, r): + def calculate_cs_hoop_stress( + self, + r_stress_point, + r_cs_inner=None, + r_cs_outer=None, + dz_cs_half=None, + j_cs=None, + b_cs_inner=None, + ) -> float: """Calculation of hoop stress of central solenoid. This routine calculates the hoop stress of the central solenoid @@ -3863,39 +3871,40 @@ def calculate_cs_hoop_stress(self, r): Parameters ---------- r : float - radial position a < r < b + radial position r_cs_inner < r < b + + + + Returns ------- float hoop stress (MPa) """ - a = self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1] - # Outer radius of central Solenoid [m] - b = self.data.pf_coil.r_pf_coil_outer[self.data.pf_coil.n_cs_pf_coils - 1] + beta = dz_cs_half / r_cs_inner + alpha = r_cs_outer / r_cs_inner # alpha - alpha = b / a + alpha = r_cs_outer / r_cs_inner # epsilon - epsilon = r / a + epsilon = r_stress_point / r_cs_inner - # Field at inner radius of coil [T] - b_a = self.data.pf_coil.b_cs_peak_pulse_start # Field at outer radius of coil [T] # Assume to be 0 for now b_b = 0.0e0 # current density [A/m^2] - j = self.data.pf_coil.j_cs_pulse_start + j_cs = pfcoil_variables.j_cs_pulse_start # K term - k = ((alpha * b_a - b_b) * j * a) / (alpha - 1.0e0) + k = ((alpha * b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) # M term - m = ((b_a - b_b) * j * a) / (alpha - 1.0e0) + m = ((b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) # calculate hoop stress terms hp_term_1 = k * ( From 1c116e3df9ba9e2d5ab356156768f733d34d6e01 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 10:56:35 +0100 Subject: [PATCH 03/48] Refactor CS hoop stress calculation to include additional parameters for improved accuracy --- .../source/eng-models/central-solenoid.md | 14 +++++++++-- process/models/pfcoil.py | 25 ++++++++++++------- 2 files changed, 28 insertions(+), 11 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 4a62e1e6c4..6ab0b083e6 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -167,8 +167,8 @@ Wilson (1983). This is divided by the fraction of the area occupied by steel to stress in the steel, $\sigma_{hoop}$. $$ -\sigma_{\theta} = \frac{K(2+v)}{3(\alpha+1)}\times \left(\alpha^2+\alpha+1+\frac{\alpha^2}{\eps^2}-\eps \frac{(1+2v)(\alpha+1)}{(2+v)}\right) \\ -- \frac{M(3+v)}{8}\left(\alpha^2+1+\frac{\alpha^2}{\eps^2}-\frac{(1+3v)}{(3+v)}\eps^2\right) +\sigma_{\theta} = \frac{K(2+v)}{3(\alpha+1)}\times \left(\alpha^2+\alpha+1+\frac{\alpha^2}{\epsilon^2}-\epsilon \frac{(1+2v)(\alpha+1)}{(2+v)}\right) \\ +- \frac{M(3+v)}{8}\left(\alpha^2+1+\frac{\alpha^2}{\epsilon^2}-\frac{(1+3v)}{(3+v)}\epsilon^2\right) $$ Where: @@ -176,6 +176,16 @@ Where: - $\epsilon = \frac{r}{r_{CS,inner}}$ - $\alpha = \frac{r_{CS,outer}}{r_{CS,inner}}$ +The terms $K$ and $M$ are given by: + +$$ +K = \frac{Ja\left(\alpha B_{\text{a}} - B_{\text{b}}\right)}{(\alpha-1)} +$$ + +$$ +M = \frac{Ja\left(B_{\text{a}} - B_{\text{b}}\right)}{(\alpha-1)} +$$ + For a special infinite solenoid case $B$ The axial stress can be calculated using "Case studies in superconducting magnets", Y. Iwasa, p. diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index e6110eccbd..01f045c2d4 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3371,8 +3371,18 @@ def ohcalc(self): # Superconducting coil # New calculation from M. N. Wilson for hoop stress - self.data.pf_coil.sig_hoop = self.calculate_cs_hoop_stress( - self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1] + pfcoil_variables.sig_hoop = self.calculate_cs_hoop_stress( + r_stress_point=pfcoil_variables.r_pf_coil_inner[ + pfcoil_variables.n_cs_pf_coils - 1 + ], + r_cs_inner=pfcoil_variables.r_pf_coil_inner[ + pfcoil_variables.n_cs_pf_coils - 1 + ], + r_cs_outer=pfcoil_variables.r_pf_coil_outer[ + pfcoil_variables.n_cs_pf_coils - 1 + ], + j_cs=pfcoil_variables.j_cs_pulse_start, + b_cs_inner=pfcoil_variables.b_cs_peak_pulse_start, ) # New calculation from Y. Iwasa for axial stress @@ -3859,7 +3869,6 @@ def calculate_cs_hoop_stress( r_stress_point, r_cs_inner=None, r_cs_outer=None, - dz_cs_half=None, j_cs=None, b_cs_inner=None, ) -> float: @@ -3873,17 +3882,16 @@ def calculate_cs_hoop_stress( r : float radial position r_cs_inner < r < b - - - - + + + + Returns ------- float hoop stress (MPa) """ - beta = dz_cs_half / r_cs_inner alpha = r_cs_outer / r_cs_inner # alpha @@ -3892,7 +3900,6 @@ def calculate_cs_hoop_stress( # epsilon epsilon = r_stress_point / r_cs_inner - # Field at outer radius of coil [T] # Assume to be 0 for now b_b = 0.0e0 From 2392be289dfe6db247a32bd9dca316058f9b86e6 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:01:18 +0100 Subject: [PATCH 04/48] Rename sig_hoop variable to stress_hoop_cs for clarity and update references --- process/data_structure/pfcoil_variables.py | 2 +- process/models/pfcoil.py | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 8c51127123..6025ef34ce 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -42,7 +42,7 @@ class PFCoilData: ) """Axial stress (z) in central solenoid at midplane due to its own field at each time point (Pa)""" - sig_hoop: float = 0.0 + stress_hoop_cs: float = 0.0 forc_z_cs_self_peak_midplane: float = 0.0 """Axial force (z) on central solenoid at midplane due to its own field (when at peak current) (N)""" diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 01f045c2d4..c6eddb8c15 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2229,8 +2229,8 @@ def outpf(self): op.ovarre( self.outfile, "Hoop stress in CS steel (Pa)", - "(sig_hoop)", - self.data.pf_coil.sig_hoop, + "(stress_hoop_cs)", + pfcoil_variables.stress_hoop_cs, "OP ", ) op.ovarre( @@ -3371,7 +3371,7 @@ def ohcalc(self): # Superconducting coil # New calculation from M. N. Wilson for hoop stress - pfcoil_variables.sig_hoop = self.calculate_cs_hoop_stress( + pfcoil_variables.stress_hoop_cs = self.calculate_cs_hoop_stress( r_stress_point=pfcoil_variables.r_pf_coil_inner[ pfcoil_variables.n_cs_pf_coils - 1 ], @@ -3414,7 +3414,7 @@ def ohcalc(self): self.data.cs_fatigue.n_cycle, self.data.cs_fatigue.t_crack_radial, ) = self.cs_fatigue.ncycle( - self.data.pf_coil.sig_hoop, + pfcoil_variables.stress_hoop_cs, self.data.cs_fatigue.residual_sig_hoop, self.data.cs_fatigue.t_crack_vertical, self.data.cs_fatigue.dz_cs_turn_conduit, @@ -3432,17 +3432,17 @@ def ohcalc(self): if self.data.pf_coil.i_cs_stress == 1: self.data.pf_coil.s_shear_cs_peak = max( abs( - self.data.pf_coil.sig_hoop - - self.data.pf_coil.stress_z_cs_self_peak_midplane + pfcoil_variables.stress_hoop_cs + - pfcoil_variables.stress_z_cs_self_peak_midplane ), - abs(self.data.pf_coil.stress_z_cs_self_peak_midplane - 0.0e0), - abs(0.0e0 - self.data.pf_coil.sig_hoop), + abs(pfcoil_variables.stress_z_cs_self_peak_midplane - 0.0e0), + abs(0.0e0 - pfcoil_variables.stress_hoop_cs), ) else: - self.data.pf_coil.s_shear_cs_peak = max( - abs(self.data.pf_coil.sig_hoop - 0.0e0), + pfcoil_variables.s_shear_cs_peak = max( + abs(pfcoil_variables.stress_hoop_cs - 0.0e0), abs(0.0e0 - 0.0e0), - abs(0.0e0 - self.data.pf_coil.sig_hoop), + abs(0.0e0 - pfcoil_variables.stress_hoop_cs), ) # Thickness of hypothetical steel cylinders assumed to encase the CS along From cae09dc1a8cc7df10f83b088885533e422df0934 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:06:22 +0100 Subject: [PATCH 05/48] Update CSCoil docstring to clarify parameters and add reference for hoop stress calculation --- process/models/pfcoil.py | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index c6eddb8c15..a55058373c 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3879,17 +3879,26 @@ def calculate_cs_hoop_stress( Parameters ---------- - r : float - radial position r_cs_inner < r < b - - - - + r_stress_point : float + Radial location at which to calculate the hoop stress (m) + r_cs_inner : float + Inner radius of the central solenoid (m) + r_cs_outer : float + Outer radius of the central solenoid (m) + j_cs : float + Current density in the central solenoid (A/m^2) + b_cs_inner : float + Magnetic field at the inner radius of the central solenoid (T) Returns ------- float - hoop stress (MPa) + hoop stress at the specified radial location (MPa) + + References + ---------- + - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. +‌ """ alpha = r_cs_outer / r_cs_inner From b736a02545c80ff74c81e726333108a41ce6c0f0 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:09:31 +0100 Subject: [PATCH 06/48] Rename stress_hoop_cs variable to stress_hoop_cs_inner for clarity and update references --- process/data_structure/pfcoil_variables.py | 4 +- process/models/pfcoil.py | 66 +++++++++++----------- 2 files changed, 36 insertions(+), 34 deletions(-) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 6025ef34ce..a33ff63945 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -42,7 +42,9 @@ class PFCoilData: ) """Axial stress (z) in central solenoid at midplane due to its own field at each time point (Pa)""" - stress_hoop_cs: float = 0.0 + stress_hoop_cs_inner: float = 0.0 +"""Hoop stress in central solenoid at inboard edge due to its own field (when at peak current) (Pa)""" + forc_z_cs_self_peak_midplane: float = 0.0 """Axial force (z) on central solenoid at midplane due to its own field (when at peak current) (N)""" diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index a55058373c..54f07bce59 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2229,8 +2229,8 @@ def outpf(self): op.ovarre( self.outfile, "Hoop stress in CS steel (Pa)", - "(stress_hoop_cs)", - pfcoil_variables.stress_hoop_cs, + "(stress_hoop_cs_inner)", + pfcoil_variables.stress_hoop_cs_inner, "OP ", ) op.ovarre( @@ -3371,7 +3371,7 @@ def ohcalc(self): # Superconducting coil # New calculation from M. N. Wilson for hoop stress - pfcoil_variables.stress_hoop_cs = self.calculate_cs_hoop_stress( + pfcoil_variables.stress_hoop_cs_inner = self.calculate_cs_hoop_stress( r_stress_point=pfcoil_variables.r_pf_coil_inner[ pfcoil_variables.n_cs_pf_coils - 1 ], @@ -3414,7 +3414,7 @@ def ohcalc(self): self.data.cs_fatigue.n_cycle, self.data.cs_fatigue.t_crack_radial, ) = self.cs_fatigue.ncycle( - pfcoil_variables.stress_hoop_cs, + pfcoil_variables.stress_hoop_cs_inner, self.data.cs_fatigue.residual_sig_hoop, self.data.cs_fatigue.t_crack_vertical, self.data.cs_fatigue.dz_cs_turn_conduit, @@ -3432,17 +3432,17 @@ def ohcalc(self): if self.data.pf_coil.i_cs_stress == 1: self.data.pf_coil.s_shear_cs_peak = max( abs( - pfcoil_variables.stress_hoop_cs + pfcoil_variables.stress_hoop_cs_inner - pfcoil_variables.stress_z_cs_self_peak_midplane ), abs(pfcoil_variables.stress_z_cs_self_peak_midplane - 0.0e0), - abs(0.0e0 - pfcoil_variables.stress_hoop_cs), + abs(0.0e0 - pfcoil_variables.stress_hoop_cs_inner), ) else: pfcoil_variables.s_shear_cs_peak = max( - abs(pfcoil_variables.stress_hoop_cs - 0.0e0), + abs(pfcoil_variables.stress_hoop_cs_inner - 0.0e0), abs(0.0e0 - 0.0e0), - abs(0.0e0 - pfcoil_variables.stress_hoop_cs), + abs(0.0e0 - pfcoil_variables.stress_hoop_cs_inner), ) # Thickness of hypothetical steel cylinders assumed to encase the CS along @@ -3874,31 +3874,31 @@ def calculate_cs_hoop_stress( ) -> float: """Calculation of hoop stress of central solenoid. - This routine calculates the hoop stress of the central solenoid - from "Superconducting magnets", M. N. Wilson OUP - - Parameters - ---------- - r_stress_point : float - Radial location at which to calculate the hoop stress (m) - r_cs_inner : float - Inner radius of the central solenoid (m) - r_cs_outer : float - Outer radius of the central solenoid (m) - j_cs : float - Current density in the central solenoid (A/m^2) - b_cs_inner : float - Magnetic field at the inner radius of the central solenoid (T) - - Returns - ------- - float - hoop stress at the specified radial location (MPa) - - References - ---------- - - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. -‌ + This routine calculates the hoop stress of the central solenoid + from "Superconducting magnets", M. N. Wilson OUP + + Parameters + ---------- + r_stress_point : float + Radial location at which to calculate the hoop stress (m) + r_cs_inner : float + Inner radius of the central solenoid (m) + r_cs_outer : float + Outer radius of the central solenoid (m) + j_cs : float + Current density in the central solenoid (A/m^2) + b_cs_inner : float + Magnetic field at the inner radius of the central solenoid (T) + + Returns + ------- + float + hoop stress at the specified radial location (MPa) + + References + ---------- + - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. + ‌ """ alpha = r_cs_outer / r_cs_inner From 2cc4fe99ecda0553bb81700c221504a3b7b506e3 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:10:07 +0100 Subject: [PATCH 07/48] Add stress_hoop_cs_inner_profile variable and update initialization in PF coil module --- process/data_structure/pfcoil_variables.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index a33ff63945..0b839eead1 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -45,6 +45,8 @@ class PFCoilData: stress_hoop_cs_inner: float = 0.0 """Hoop stress in central solenoid at inboard edge due to its own field (when at peak current) (Pa)""" +stress_hoop_cs_inner_profile: list[float] = None +"""Hoop stress in central solenoid at inboard edge due to its own field at each time point (Pa)""" forc_z_cs_self_peak_midplane: float = 0.0 """Axial force (z) on central solenoid at midplane due to its own field (when at peak current) (N)""" From 15cd5baf70fc8095bf72b4e6f9e1c5c542dd282d Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:47:24 +0100 Subject: [PATCH 08/48] Add a_cs_steel_poloidal variable and update initialization in PF coil module --- process/data_structure/pfcoil_variables.py | 3 +++ process/models/pfcoil.py | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 0b839eead1..6448c67833 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -107,6 +107,9 @@ class PFCoilData: a_cs_poloidal: float = 0.0 """Central solenoid vertical cross-sectional area (m2)""" +a_cs_steel_poloidal: float = None +"""Central solenoid vertical cross-sectional area of steel (m2)""" + a_cs_turn: float = 0.0 """Central solenoid (OH) trun cross-sectional area (m2)""" diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 54f07bce59..a82a701f67 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3298,13 +3298,13 @@ def ohcalc(self): ) # Peak field at the End-Of-Flattop (EOF) - # Occurs at inner edge of coil; bmaxoh2 and bzi are of opposite sign at EOF + # Occurs at inner edge of coil; b_cs_self_peak_flat_top_end and bzi are of opposite sign at EOF # Peak field due to central Solenoid itself - bmaxoh2 = self.calculate_cs_self_peak_magnetic_field( - j_cs=self.data.pf_coil.j_cs_flat_top_end, - r_cs_inner=self.data.pf_coil.r_pf_coil_inner[ - self.data.pf_coil.n_cs_pf_coils - 1 + b_cs_self_peak_flat_top_end = self.calculate_cs_self_peak_magnetic_field( + j_cs=pfcoil_variables.j_cs_flat_top_end, + r_cs_inner=pfcoil_variables.r_pf_coil_inner[ + pfcoil_variables.n_cs_pf_coils - 1 ], r_cs_outer=self.data.pf_coil.r_pf_coil_outer[ self.data.pf_coil.n_cs_pf_coils - 1 @@ -3316,14 +3316,14 @@ def ohcalc(self): # Peak field due to other PF coils plus plasma timepoint = 5 - _bri, _bro, bzi, bzo = peak_b_field_at_pf_coil( - n_coil=self.data.pf_coil.n_cs_pf_coils, + _, _, bzi, bzo = peak_b_field_at_pf_coil( + n_coil=pfcoil_variables.n_cs_pf_coils, n_coil_group=99, t_b_field_peak=timepoint, data=self.data, ) - self.data.pf_coil.b_cs_peak_flat_top_end = abs(bzi - bmaxoh2) + pfcoil_variables.b_cs_peak_flat_top_end = abs(bzi - b_cs_self_peak_flat_top_end) # Peak field on outboard side of central Solenoid # (self-field is assumed to be zero - long solenoid approximation) @@ -3346,8 +3346,8 @@ def ohcalc(self): ) ) timepoint = 2 - _bri, _bro, bzi, bzo = peak_b_field_at_pf_coil( - n_coil=self.data.pf_coil.n_cs_pf_coils, + _, _, bzi, bzo = peak_b_field_at_pf_coil( + n_coil=pfcoil_variables.n_cs_pf_coils, n_coil_group=99, t_b_field_peak=timepoint, data=self.data, From cf250082e1b4c45a2aa5c2c0b1bcd2b2d1fcbc6f Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:52:13 +0100 Subject: [PATCH 09/48] Refactor CSCoil to calculate a_cs_steel_poloidal directly and update related variables --- process/models/pfcoil.py | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index a82a701f67..cd3bf8d7bb 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3425,8 +3425,8 @@ def ohcalc(self): # equation is used for Central Solenoid stress # Area of steel in Central Solenoid - areaspf = ( - self.data.pf_coil.f_a_cs_turn_steel * self.data.pf_coil.a_cs_poloidal + pfcoil_variables.a_cs_steel_poloidal = ( + pfcoil_variables.f_a_cs_turn_steel * pfcoil_variables.a_cs_poloidal ) if self.data.pf_coil.i_cs_stress == 1: @@ -3450,17 +3450,19 @@ def ohcalc(self): # throughout the conductor self.data.pf_coil.pfcaseth[self.data.pf_coil.n_cs_pf_coils - 1] = ( 0.25e0 - * areaspf - / self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1] + * pfcoil_variables.a_cs_steel_poloidal + / pfcoil_variables.z_pf_coil_upper[pfcoil_variables.n_cs_pf_coils - 1] ) else: - areaspf = 0.0e0 # Resistive Central Solenoid - no steel needed - self.data.pf_coil.pfcaseth[self.data.pf_coil.n_cs_pf_coils - 1] = 0.0e0 + pfcoil_variables.a_cs_steel_poloidal = ( + 0.0e0 # Resistive Central Solenoid - no steel needed + ) + pfcoil_variables.pfcaseth[pfcoil_variables.n_cs_pf_coils - 1] = 0.0e0 # Weight of steel - self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1] = ( - areaspf + pfcoil_variables.m_pf_coil_structure[pfcoil_variables.n_cs_pf_coils - 1] = ( + pfcoil_variables.a_cs_steel_poloidal * 2.0e0 * np.pi * self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] @@ -3468,7 +3470,9 @@ def ohcalc(self): ) # Non-steel cross-sectional area - self.data.pf_coil.awpoh = self.data.pf_coil.a_cs_poloidal - areaspf + pfcoil_variables.awpoh = ( + pfcoil_variables.a_cs_poloidal - pfcoil_variables.a_cs_steel_poloidal + ) # Issue #97. Fudge to ensure awpoh is positive; result is continuous, smooth and # monotonically decreases From c104b6a42adaf4d163c0744c75774732bc885e5d Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 11:58:44 +0100 Subject: [PATCH 10/48] Update output to reference a_cs_steel_poloidal in PF coil module --- process/models/pfcoil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index cd3bf8d7bb..e05af020d3 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2199,8 +2199,8 @@ def outpf(self): op.ovarre( self.outfile, "CS steel cross-sectional area (m2)", - "(a_cs_poloidal-awpoh)", - self.data.pf_coil.a_cs_poloidal - self.data.pf_coil.awpoh, + "(a_cs_steel_poloidal)", + pfcoil_variables.a_cs_steel_poloidal, "OP ", ) op.ovarre( From ebca68704d8e81b47b34dbbe7aa6e743f20e6cd4 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 13:03:38 +0100 Subject: [PATCH 11/48] Refactor variable names from awpoh to a_cs_cable_space across multiple modules and update related references --- process/data_structure/pfcoil_variables.py | 2 +- process/models/costs/costs.py | 34 ++++++------- process/models/pfcoil.py | 57 ++++++++++++---------- tests/unit/models/test_costs_1990.py | 12 +++-- 4 files changed, 55 insertions(+), 50 deletions(-) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 6448c67833..2c3dda2ec7 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -113,7 +113,7 @@ class PFCoilData: a_cs_turn: float = 0.0 """Central solenoid (OH) trun cross-sectional area (m2)""" - awpoh: float = 0.0 + a_cs_cable_space: float = 0.0 """central solenoid conductor+void area with area of steel subtracted (m2)""" b_cs_peak_flat_top_end: float = 0.0 diff --git a/process/models/costs/costs.py b/process/models/costs/costs.py index 8ac01dd274..90036339b4 100644 --- a/process/models/costs/costs.py +++ b/process/models/costs/costs.py @@ -1711,12 +1711,12 @@ def acc2222(self): # Issue #328 Use CS conductor cross-sectional area (m2) if self.data.pf_coil.i_pf_conductor == 0: costpfsc = ( - self.data.costs.ucsc[self.data.pf_coil.i_cs_superconductor - 1] - * self.data.pf_coil.awpoh - * (1 - self.data.pf_coil.f_a_cs_void) - * (1 - self.data.pf_coil.fcuohsu) - / self.data.pf_coil.n_pf_coil_turns[ - self.data.pf_coil.n_cs_pf_coils - 1 + cost_variables.ucsc[pfcoil_variables.i_cs_superconductor - 1] + * pfcoil_variables.a_cs_cable_space + * (1 - pfcoil_variables.f_a_cs_void) + * (1 - pfcoil_variables.fcuohsu) + / pfcoil_variables.n_pf_coil_turns[ + pfcoil_variables.n_cs_pf_coils - 1 ] * self.data.tfcoil.dcond[ self.data.pf_coil.i_cs_superconductor - 1 @@ -1741,23 +1741,23 @@ def acc2222(self): if self.data.pf_coil.i_pf_conductor == 0: costpfcu = ( - self.data.costs.uccu - * self.data.pf_coil.awpoh - * (1 - self.data.pf_coil.f_a_cs_void) - * self.data.pf_coil.fcuohsu - / self.data.pf_coil.n_pf_coil_turns[ - self.data.pf_coil.n_cs_pf_coils - 1 + cost_variables.uccu + * pfcoil_variables.a_cs_cable_space + * (1 - pfcoil_variables.f_a_cs_void) + * pfcoil_variables.fcuohsu + / pfcoil_variables.n_pf_coil_turns[ + pfcoil_variables.n_cs_pf_coils - 1 ] * constants.den_copper ) else: # MDK I don't know if this is ccorrect as we never use the resistive model costpfcu = ( - self.data.costs.uccu - * self.data.pf_coil.awpoh - * (1 - self.data.pf_coil.f_a_cs_void) - / self.data.pf_coil.n_pf_coil_turns[ - self.data.pf_coil.n_cs_pf_coils - 1 + cost_variables.uccu + * pfcoil_variables.a_cs_cable_space + * (1 - pfcoil_variables.f_a_cs_void) + / pfcoil_variables.n_pf_coil_turns[ + pfcoil_variables.n_cs_pf_coils - 1 ] * constants.den_copper ) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index e05af020d3..24f8457c33 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2178,22 +2178,23 @@ def outpf(self): op.ovarre( self.outfile, "CS conductor+void cross-sectional area (m2)", - "(awpoh)", - self.data.pf_coil.awpoh, + "(a_cs_cable_space)", + pfcoil_variables.a_cs_cable_space, "OP ", ) op.ovarre( self.outfile, " CS conductor cross-sectional area (m2)", - "(awpoh*(1-f_a_cs_void))", - self.data.pf_coil.awpoh * (1.0e0 - self.data.pf_coil.f_a_cs_void), + "(a_cs_cable_space*(1-f_a_cs_void))", + pfcoil_variables.a_cs_cable_space + * (1.0e0 - pfcoil_variables.f_a_cs_void), "OP ", ) op.ovarre( self.outfile, " CS void cross-sectional area (m2)", - "(awpoh*f_a_cs_void)", - self.data.pf_coil.awpoh * self.data.pf_coil.f_a_cs_void, + "(a_cs_cable_space*f_a_cs_void)", + pfcoil_variables.a_cs_cable_space * pfcoil_variables.f_a_cs_void, "OP ", ) op.ovarre( @@ -3470,35 +3471,33 @@ def ohcalc(self): ) # Non-steel cross-sectional area - pfcoil_variables.awpoh = ( + pfcoil_variables.a_cs_cable_space = ( pfcoil_variables.a_cs_poloidal - pfcoil_variables.a_cs_steel_poloidal ) - # Issue #97. Fudge to ensure awpoh is positive; result is continuous, smooth and + # Issue #97. Fudge to ensure a_cs_cable_space is positive; result is continuous, smooth and # monotonically decreases da = 0.0001e0 # 1 cm^2 - if self.data.pf_coil.awpoh < da: - self.data.pf_coil.awpoh = da * da / (2.0e0 * da - self.data.pf_coil.awpoh) + if pfcoil_variables.a_cs_cable_space < da: + pfcoil_variables.a_cs_cable_space = ( + da * da / (2.0e0 * da - pfcoil_variables.a_cs_cable_space) + ) # Weight of conductor in central Solenoid - if self.data.pf_coil.i_pf_conductor == 0: - self.data.pf_coil.m_pf_coil_conductor[ - self.data.pf_coil.n_cs_pf_coils - 1 - ] = ( - self.data.pf_coil.awpoh - * (1.0e0 - self.data.pf_coil.f_a_cs_void) + if pfcoil_variables.i_pf_conductor == 0: + pfcoil_variables.m_pf_coil_conductor[pfcoil_variables.n_cs_pf_coils - 1] = ( + pfcoil_variables.a_cs_cable_space + * (1.0e0 - pfcoil_variables.f_a_cs_void) * 2.0e0 * np.pi * self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] * self.data.tfcoil.dcond[self.data.pf_coil.i_cs_superconductor - 1] ) else: - self.data.pf_coil.m_pf_coil_conductor[ - self.data.pf_coil.n_cs_pf_coils - 1 - ] = ( - self.data.pf_coil.awpoh - * (1.0e0 - self.data.pf_coil.f_a_cs_void) + pfcoil_variables.m_pf_coil_conductor[pfcoil_variables.n_cs_pf_coils - 1] = ( + pfcoil_variables.a_cs_cable_space + * (1.0e0 - pfcoil_variables.f_a_cs_void) * 2.0e0 * np.pi * self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] @@ -3524,7 +3523,7 @@ def ohcalc(self): self.data.pf_coil.n_cs_pf_coils - 1 ] ) - / self.data.pf_coil.awpoh + / pfcoil_variables.a_cs_cable_space ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, @@ -3551,8 +3550,10 @@ def ohcalc(self): * (1 - self.data.pf_coil.fcuohsu) ) - self.data.pf_coil.j_cs_critical_flat_top_end = ( - jcritwp * self.data.pf_coil.awpoh / self.data.pf_coil.a_cs_poloidal + pfcoil_variables.j_cs_critical_flat_top_end = ( + jcritwp + * pfcoil_variables.a_cs_cable_space + / pfcoil_variables.a_cs_poloidal ) # Allowable coil overall current density at BOP @@ -3572,7 +3573,7 @@ def ohcalc(self): self.data.pf_coil.n_cs_pf_coils - 1 ] ) - / self.data.pf_coil.awpoh + / pfcoil_variables.a_cs_cable_space ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, @@ -3588,8 +3589,10 @@ def ohcalc(self): self.data.superconducting_tfcoil.dx_tf_hts_tape_total, ) - self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1] = ( - jcritwp * self.data.pf_coil.awpoh / self.data.pf_coil.a_cs_poloidal + pfcoil_variables.j_pf_wp_critical[pfcoil_variables.n_cs_pf_coils - 1] = ( + jcritwp + * pfcoil_variables.a_cs_cable_space + / pfcoil_variables.a_cs_poloidal ) self.data.pf_coil.j_cs_critical_pulse_start = ( self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1] diff --git a/tests/unit/models/test_costs_1990.py b/tests/unit/models/test_costs_1990.py index 27adda6c23..6032c089dd 100644 --- a/tests/unit/models/test_costs_1990.py +++ b/tests/unit/models/test_costs_1990.py @@ -2065,7 +2065,7 @@ class Acc2222Param(NamedTuple): f_a_pf_coil_void: Any = None - awpoh: Any = None + a_cs_cable_space: Any = None fncmass: Any = None @@ -2272,7 +2272,7 @@ class Acc2222Param(NamedTuple): ), order="F", ).transpose(), - awpoh=3.8004675824985918, + a_cs_cable_space=3.8004675824985918, fncmass=310716.52923547616, dcond=np.array( np.array( @@ -2468,7 +2468,7 @@ class Acc2222Param(NamedTuple): ), order="F", ).transpose(), - awpoh=3.8004675824985918, + a_cs_cable_space=3.8004675824985918, fncmass=310716.52923547616, dcond=np.array( np.array( @@ -2664,7 +2664,7 @@ class Acc2222Param(NamedTuple): ), order="F", ).transpose(), - awpoh=3.8004675824985918, + a_cs_cable_space=3.8004675824985918, fncmass=310716.52923547616, dcond=np.array( np.array( @@ -2774,7 +2774,9 @@ def test_acc2222(acc2222param, monkeypatch, costs): costs.data.pf_coil, "f_a_pf_coil_void", acc2222param.f_a_pf_coil_void ) - monkeypatch.setattr(costs.data.pf_coil, "awpoh", acc2222param.awpoh) + monkeypatch.setattr( + pfcoil_variables, "a_cs_cable_space", acc2222param.a_cs_cable_space + ) monkeypatch.setattr(costs.data.structure, "fncmass", acc2222param.fncmass) From 2784d3c970ce627b1a8b3f1579489f605e47af41 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 13:15:06 +0100 Subject: [PATCH 12/48] Add inner and outer radius variables for central solenoid in PF coil module --- process/data_structure/pfcoil_variables.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 2c3dda2ec7..4552b64fdd 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -354,6 +354,12 @@ class PFCoilData: r_cs_middle: float = 0.0 """radius to the centre of the central solenoid (m)""" +r_cs_inner: float = None +"""inner radius of the central solenoid (m)""" + +r_cs_outer: float = None +"""outer radius of the central solenoid (m)""" + dz_cs_full: float = 0.0 """Full height of the central solenoid (m)""" From ead9cce238a0fed8193be837fd415ba1bb9297e9 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 13:17:44 +0100 Subject: [PATCH 13/48] Add radial inner and outer parameters for central solenoid in PF coil module --- process/models/pfcoil.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 24f8457c33..2da067bc88 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2175,6 +2175,20 @@ def outpf(self): self.data.pf_coil.r_cs_middle, "OP ", ) + op.ovarre( + self.outfile, + "CS radial inner (m)", + "(r_cs_inner)", + pfcoil_variables.r_cs_inner, + "OP ", + ) + op.ovarre( + self.outfile, + "CS radial outer (m)", + "(r_cs_outer)", + pfcoil_variables.r_cs_outer, + "OP ", + ) op.ovarre( self.outfile, "CS conductor+void cross-sectional area (m2)", @@ -3239,6 +3253,13 @@ def ohcalc(self): dr_bore=self.data.build.dr_bore, ) + pfcoil_variables.r_cs_inner = pfcoil_variables.r_pf_coil_inner[ + pfcoil_variables.n_cs_pf_coils - 1 + ] + pfcoil_variables.r_cs_outer = pfcoil_variables.r_pf_coil_outer[ + pfcoil_variables.n_cs_pf_coils - 1 + ] + # Maximum current (MA-turns) in central Solenoid, at either BOP or EOF if self.data.pf_coil.j_cs_pulse_start > self.data.pf_coil.j_cs_flat_top_end: sgn = 1.0e0 From 7c9f17c7c06eba45f192e8ddd8ef29797d0ea6ca Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 13:48:02 +0100 Subject: [PATCH 14/48] Add radial hoop stress profile plotting to CSCoil class and update parameter types --- process/core/io/plot/summary.py | 14 ++++- process/models/pfcoil.py | 102 +++++++++++++++++++++++++++++--- 2 files changed, 108 insertions(+), 8 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index a4ef142632..405a068044 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -24,6 +24,7 @@ from process.data_structure.numerics import FiguresOfMerit, PROCESSRunMode from process.data_structure.pfcoil_variables import NFIXMX from process.models.build import Build +from process.models.cs_fatigue import CsFatigue from process.models.geometry.blanket import ( blanket_geometry_double_null, blanket_geometry_single_null, @@ -15589,7 +15590,18 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_cs_stress_time_profile(axis=figs[32].add_subplot(311), mfile=m_file, scan=scan) + CSCoil.plot_stress_time_profile( + axis=figs[29].add_subplot(222), mfile=m_file, scan=scan + ) + + cs_coil = CSCoil(cs_fatigue=CsFatigue()) + cs_coil.plot_cs_radial_hoop_stress_profile( + axis=figs[29].add_subplot(224), + mfile=m_file, + scan=scan, + j_cs=m_file.get("j_cs_pulse_start", scan=scan), + b_cs_inner=m_file.get("b_cs_peak_pulse_start", scan=scan), + ) plot_cs_coil_structure( figs[32].add_subplot(223, aspect="equal"), figs[32], m_file, scan diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 2da067bc88..64f9c42ae6 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3894,11 +3894,11 @@ def calculate_cs_self_midplane_axial_stress_time_profile( def calculate_cs_hoop_stress( self, - r_stress_point, - r_cs_inner=None, - r_cs_outer=None, - j_cs=None, - b_cs_inner=None, + r_stress_point: float | np.ndarray, + r_cs_inner: float, + r_cs_outer: float, + j_cs: float, + b_cs_inner: float, ) -> float: """Calculation of hoop stress of central solenoid. @@ -3907,7 +3907,7 @@ def calculate_cs_hoop_stress( Parameters ---------- - r_stress_point : float + r_stress_point : float/np.ndarray Radial location at which to calculate the hoop stress (m) r_cs_inner : float Inner radius of the central solenoid (m) @@ -3982,7 +3982,95 @@ def calculate_cs_hoop_stress( s_hoop_nom = hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 - return s_hoop_nom / self.data.pf_coil.f_a_cs_turn_steel + return s_hoop_nom / pfcoil_variables.f_a_cs_turn_steel + + @staticmethod + def plot_stress_time_profile(axis: plt.Axes, mfile: mf.MFile, scan: int): + t_plant_pulse_coil_precharge = mfile.get( + "t_plant_pulse_coil_precharge", scan=scan + ) + t_plant_pulse_plasma_current_ramp_up = mfile.get( + "t_plant_pulse_plasma_current_ramp_up", scan=scan + ) + t_plant_pulse_fusion_ramp = mfile.get("t_plant_pulse_fusion_ramp", scan=scan) + t_plant_pulse_burn = mfile.get("t_plant_pulse_burn", scan=scan) + t_plant_pulse_plasma_current_ramp_down = mfile.get( + "t_plant_pulse_plasma_current_ramp_down", scan=scan + ) + + # Define a cumulative sum list for each point in the pulse + t_steps = np.cumsum([ + 0, + t_plant_pulse_coil_precharge, + t_plant_pulse_plasma_current_ramp_up, + t_plant_pulse_fusion_ramp, + t_plant_pulse_burn, + t_plant_pulse_plasma_current_ramp_down, + ]) + + stress_times = t_steps[ + :6 + ] # Get the first 6 time points corresponding to the stress profile + + stress_z_cs_self_midplane_profile = np.zeros(6) + for i in range(6): + stress_z_cs_self_midplane_profile[i] = mfile.get( + f"stress_z_cs_self_midplane_profile[{i}]", scan=scan + ) + + # Plot stress vs time + axis.plot( + stress_times, + stress_z_cs_self_midplane_profile / 1e6, + "o-", + linewidth=2, + markersize=8, + label=r"$\sigma_{{z}}$,Midplane Axial Stress", + ) + axis.set_xlabel("Pulse Time (s)") + axis.set_ylabel("Stress (MPa)") + axis.minorticks_on() + axis.legend(loc="best") + axis.set_title("Central Solenoid Stress") + axis.grid(True, alpha=0.3) + + def plot_cs_radial_hoop_stress_profile( + self, + axis: plt.Axes, + mfile: mf.MFile, + scan: int, + j_cs: float, + b_cs_inner: float, + ): + r_cs_inner = mfile.get("r_cs_inner", scan=scan) + r_cs_outer = mfile.get("r_cs_outer", scan=scan) + + radii = np.linspace(r_cs_inner, r_cs_outer, num=10) + stress_values = np.array([ + self.calculate_cs_hoop_stress( + r_stress_point=radius, + r_cs_inner=r_cs_inner, + r_cs_outer=r_cs_outer, + j_cs=j_cs, + b_cs_inner=b_cs_inner, + ) + for radius in radii + ]) + + axis.plot( + radii, + stress_values / 1e6, + "o-", + linewidth=2, + markersize=8, + label="$\\sigma_{\\theta}$,Hoop Stress", + ) + axis.set_xlabel("Radial Position (m)") + axis.set_ylabel("Hoop Stress (MPa)") + axis.minorticks_on() + axis.legend(loc="best") + axis.set_title("Central Solenoid Radial Hoop Stress Profile") + axis.grid(True, alpha=0.3) def peak_b_field_at_pf_coil( From 5f925f3f426a479e1eecc678d42d9c8aa81564c7 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 15:01:33 +0100 Subject: [PATCH 15/48] Refactor CSCoil class to add radial stress profile calculations and update plotting functions --- process/core/io/plot/summary.py | 12 ++- process/models/pfcoil.py | 183 ++++++++++++++++++++++++++------ 2 files changed, 160 insertions(+), 35 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index 405a068044..f84a43e68f 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -15591,12 +15591,20 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) CSCoil.plot_stress_time_profile( - axis=figs[29].add_subplot(222), mfile=m_file, scan=scan + axis=figs[29].add_subplot(322), mfile=m_file, scan=scan ) cs_coil = CSCoil(cs_fatigue=CsFatigue()) cs_coil.plot_cs_radial_hoop_stress_profile( - axis=figs[29].add_subplot(224), + axis=figs[29].add_subplot(324), + mfile=m_file, + scan=scan, + j_cs=m_file.get("j_cs_pulse_start", scan=scan), + b_cs_inner=m_file.get("b_cs_peak_pulse_start", scan=scan), + ) + + cs_coil.plot_cs_radial_stress_profile( + axis=figs[29].add_subplot(326), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 64f9c42ae6..482134d158 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3405,6 +3405,7 @@ def ohcalc(self): ], j_cs=pfcoil_variables.j_cs_pulse_start, b_cs_inner=pfcoil_variables.b_cs_peak_pulse_start, + f_poisson_cs_structure=tfv.poisson_steel, ) # New calculation from Y. Iwasa for axial stress @@ -3892,40 +3893,44 @@ def calculate_cs_self_midplane_axial_stress_time_profile( ) self.data.pf_coil.stress_z_cs_self_midplane_profile[time] = stress_value + @staticmethod + @numba.njit(cache=True) def calculate_cs_hoop_stress( - self, r_stress_point: float | np.ndarray, r_cs_inner: float, r_cs_outer: float, j_cs: float, b_cs_inner: float, + f_poisson_cs_structure: float, ) -> float: """Calculation of hoop stress of central solenoid. - This routine calculates the hoop stress of the central solenoid - from "Superconducting magnets", M. N. Wilson OUP - - Parameters - ---------- - r_stress_point : float/np.ndarray - Radial location at which to calculate the hoop stress (m) - r_cs_inner : float - Inner radius of the central solenoid (m) - r_cs_outer : float - Outer radius of the central solenoid (m) - j_cs : float - Current density in the central solenoid (A/m^2) - b_cs_inner : float - Magnetic field at the inner radius of the central solenoid (T) - - Returns - ------- - float - hoop stress at the specified radial location (MPa) - - References - ---------- - - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. + This routine calculates the hoop stress of the central solenoid + from "Superconducting magnets", M. N. Wilson OUP + + Parameters + ---------- + r_stress_point : float/np.ndarray + Radial location at which to calculate the hoop stress (m) + r_cs_inner : float + Inner radius of the central solenoid (m) + r_cs_outer : float + Outer radius of the central solenoid (m) + j_cs : float + Current density in the central solenoid (A/m^2) + b_cs_inner : float + Magnetic field at the inner radius of the central solenoid (T) + f_poisson_cs_structure : float + Poisson's ratio of the central solenoid structure (dimensionless) + + Returns + ------- + float + hoop stress at the specified radial location (MPa) + + References + ---------- + - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. ‌ """ @@ -3951,9 +3956,7 @@ def calculate_cs_hoop_stress( m = ((b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) # calculate hoop stress terms - hp_term_1 = k * ( - (2.0e0 + self.data.tfcoil.poisson_steel) / (3.0e0 * (alpha + 1.0e0)) - ) + hp_term_1 = k * ((2.0e0 + f_poisson_cs_structure) / (3.0e0 * (alpha + 1.0e0))) hp_term_2 = ( alpha**2 @@ -3962,12 +3965,12 @@ def calculate_cs_hoop_stress( + alpha**2 / epsilon**2 - epsilon * ( - ((1.0e0 + 2.0e0 * self.data.tfcoil.poisson_steel) * (alpha + 1.0e0)) - / (2.0e0 + self.data.tfcoil.poisson_steel) + ((1.0e0 + 2.0e0 * f_poisson_cs_structure) * (alpha + 1.0e0)) + / (2.0e0 + f_poisson_cs_structure) ) ) - hp_term_3 = m * ((3.0e0 + self.data.tfcoil.poisson_steel) / (8.0e0)) + hp_term_3 = m * ((3.0e0 + f_poisson_cs_structure) / (8.0e0)) hp_term_4 = ( alpha**2 @@ -3975,8 +3978,8 @@ def calculate_cs_hoop_stress( + alpha**2 / epsilon**2 - epsilon**2 * ( - (1.0e0 + 3.0e0 * self.data.tfcoil.poisson_steel) - / (3.0e0 + self.data.tfcoil.poisson_steel) + (1.0e0 + 3.0e0 * f_poisson_cs_structure) + / (3.0e0 + f_poisson_cs_structure) ) ) @@ -3984,6 +3987,81 @@ def calculate_cs_hoop_stress( return s_hoop_nom / pfcoil_variables.f_a_cs_turn_steel + @staticmethod + @numba.njit(cache=True) + def calculate_cs_radial_stress( + r_stress_point: float | np.ndarray, + r_cs_inner: float, + r_cs_outer: float, + j_cs: float, + b_cs_inner: float, + f_poisson_cs_structure: float, + ) -> float: + """Calculation of radial stress of central solenoid. + + This routine calculates the radial stress of the central solenoid + from "Superconducting magnets", M. N. Wilson OUP + + Parameters + ---------- + r_stress_point : float/np.ndarray + Radial location at which to calculate the hoop stress (m) + r_cs_inner : float + Inner radius of the central solenoid (m) + r_cs_outer : float + Outer radius of the central solenoid (m) + j_cs : float + Current density in the central solenoid (A/m^2) + b_cs_inner : float + Magnetic field at the inner radius of the central solenoid (T) + f_poisson_cs_structure : float + Poisson's ratio of the central solenoid structure (dimensionless) + + Returns + ------- + float + radial stress at the specified radial location (MPa) + + References + ---------- + - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. + ‌ + """ + + alpha = r_cs_outer / r_cs_inner + + # alpha + alpha = r_cs_outer / r_cs_inner + + # epsilon + epsilon = r_stress_point / r_cs_inner + + # Field at outer radius of coil [T] + # Assume to be 0 for now + b_b = 0.0e0 + + # current density [A/m^2] + j_cs = pfcoil_variables.j_cs_pulse_start + + # K term + k = ((alpha * b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) + + # M term + m = ((b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) + + # calculate hoop stress terms + hp_term_1 = k * ((2.0e0 + f_poisson_cs_structure) / (3.0e0 * (alpha + 1.0e0))) + + hp_term_2 = ( + alpha**2 + alpha + 1.0e0 - alpha**2 / epsilon**2 - epsilon * (alpha + 1.0e0) + ) + + hp_term_3 = m * ((3.0e0 + f_poisson_cs_structure) / (8.0e0)) + + hp_term_4 = alpha**2 + 1.0e0 - alpha**2 / epsilon**2 - epsilon**2 + + return hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 + @staticmethod def plot_stress_time_profile(axis: plt.Axes, mfile: mf.MFile, scan: int): t_plant_pulse_coil_precharge = mfile.get( @@ -4053,6 +4131,7 @@ def plot_cs_radial_hoop_stress_profile( r_cs_outer=r_cs_outer, j_cs=j_cs, b_cs_inner=b_cs_inner, + f_poisson_cs_structure=tfv.poisson_steel, ) for radius in radii ]) @@ -4072,6 +4151,44 @@ def plot_cs_radial_hoop_stress_profile( axis.set_title("Central Solenoid Radial Hoop Stress Profile") axis.grid(True, alpha=0.3) + def plot_cs_radial_stress_profile( + self, + axis: plt.Axes, + mfile: mf.MFile, + scan: int, + j_cs: float, + b_cs_inner: float, + ): + r_cs_inner = mfile.get("r_cs_inner", scan=scan) + r_cs_outer = mfile.get("r_cs_outer", scan=scan) + + radii = np.linspace(r_cs_inner, r_cs_outer, num=10) + stress_values = np.array([ + self.calculate_cs_radial_stress( + r_stress_point=radius, + r_cs_inner=r_cs_inner, + r_cs_outer=r_cs_outer, + j_cs=j_cs, + b_cs_inner=b_cs_inner, + f_poisson_cs_structure=tfv.poisson_steel, + ) + for radius in radii + ]) + + axis.plot( + radii, + stress_values / 1e6, + "o-", + linewidth=2, + markersize=8, + label="$\\sigma_{r}$,Radial Stress", + ) + axis.set_xlabel("Radial Position (m)") + axis.set_ylabel("Radial Stress (MPa)") + axis.minorticks_on() + axis.grid(True, alpha=0.3) + axis.legend(loc="best") + def peak_b_field_at_pf_coil( n_coil: int, n_coil_group: int, t_b_field_peak: int, data: DataStructure From f3e38619e52e166b2a5462a2c020c9a31ffc2237 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 15:11:01 +0100 Subject: [PATCH 16/48] Refactor CSCoil class to rename and enhance magnetic field calculation methods --- process/models/pfcoil.py | 55 +++++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 7 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 482134d158..70ebf58900 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3648,13 +3648,14 @@ def ohcalc(self): self.calculate_cs_self_midplane_axial_stress_time_profile() @staticmethod - def calculate_cs_self_peak_magnetic_field( + @numba.njit(cache=True) + def calculate_cs_bore_magnetic_field( j_cs: float, r_cs_inner: float, r_cs_outer: float, dz_cs_half: float, ) -> float: - """Calculates the maximum field of a solenoid of circular winding and rectangular cross-section. + """Calculates the magnetic field at the centre of the bore of a solenoid of circular winding and rectangular cross-section. Parameters ---------- @@ -3670,19 +3671,17 @@ def calculate_cs_self_peak_magnetic_field( Returns ------- float - Maximum field of solenoid (T) + Magnetic field at the centre of the bore of the solenoid (T) References ---------- - - Fits are taken from the figure on p.22 of M. Wilson's book - "Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, + -"Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, ISBN 13: 9780198548102 """ beta = dz_cs_half / r_cs_inner alpha = r_cs_outer / r_cs_inner - # Field at the centre of the bore R=0, Z=0 of the solenoid - b_cs_bore_centre = ( + return ( j_cs * constants.RMU0 * dz_cs_half @@ -3692,6 +3691,48 @@ def calculate_cs_self_peak_magnetic_field( ) ) + def calculate_cs_self_peak_magnetic_field( + self, + j_cs: float, + r_cs_inner: float, + r_cs_outer: float, + dz_cs_half: float, + ) -> float: + """Calculates the maximum field of a solenoid of circular winding and rectangular cross-section. + + Parameters + ---------- + j_cs : float + Overall current density (A/m²) + r_cs_inner : float + Solenoid inner radius (m) + r_cs_outer : float + Solenoid outer radius (m) + dz_cs_half : float + Solenoid half height (m) + + Returns + ------- + float + Maximum field of solenoid (T) + + References + ---------- + - Fits are taken from the figure on p.22 of M. Wilson's book + "Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, + ISBN 13: 9780198548102 + """ + beta = dz_cs_half / r_cs_inner + alpha = r_cs_outer / r_cs_inner + + # Field at the centre of the bore R=0, Z=0 of the solenoid + b_cs_bore_centre = self.calculate_cs_bore_magnetic_field( + j_cs=j_cs, + r_cs_inner=r_cs_inner, + r_cs_outer=r_cs_outer, + dz_cs_half=dz_cs_half, + ) + # Fits are for 1 < alpha < 2 , and 0.5 < beta < very large if beta > 3.0: b1 = constants.RMU0 * j_cs * (r_cs_outer - r_cs_inner) From 3b1576b30e374c7c99d1ba079afaf3af18c36ce7 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 15:20:47 +0100 Subject: [PATCH 17/48] Add peak field variable for central solenoid bore in PF coil module --- process/data_structure/pfcoil_variables.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 4552b64fdd..f4fdf3c1dd 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -122,6 +122,8 @@ class PFCoilData: b_cs_peak_pulse_start: float = 0.0 """maximum field in central solenoid at beginning of pulse (T)""" +b_cs_bore_peak: float = None +"""peak field in central solenoid bore (T)""" b_pf_coil_peak: list[float] = field(default_factory=lambda: np.zeros(NGC2)) """peak field at coil i (T)""" From 3e2d4e4c0974c7ad40c6ac50c9ac0e35fd25bf31 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 15:34:04 +0100 Subject: [PATCH 18/48] Add magnetic field variable for outer edge of central solenoid at midplane --- process/data_structure/pfcoil_variables.py | 2 ++ process/models/pfcoil.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index f4fdf3c1dd..fd2a09c95e 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -116,6 +116,8 @@ class PFCoilData: a_cs_cable_space: float = 0.0 """central solenoid conductor+void area with area of steel subtracted (m2)""" +b_cs_self_outer_midplane: float = None +"""magnetic field at outer edge of central solenoid at midplane due to its own current (T)""" b_cs_peak_flat_top_end: float = 0.0 """maximum field in central solenoid at end of flat-top (EoF) (T)""" diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 70ebf58900..8dcffd0233 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3349,6 +3349,9 @@ def ohcalc(self): # Peak field on outboard side of central Solenoid # (self-field is assumed to be zero - long solenoid approximation) + + pfcoil_variables.b_cs_self_outer_midplane = 0.0 + bohco = abs(bzo) # Peak field at the Beginning-Of-Pulse (BOP) From 7490951afcab0f8aee4d115bb1f7c7d46fc8de5c Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 17:08:17 +0100 Subject: [PATCH 19/48] Add operating temperature variable for central solenoid and update initialization --- process/data_structure/pfcoil_variables.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index fd2a09c95e..200587c03a 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -412,6 +412,9 @@ class PFCoilData: temp_cs_superconductor_margin: float = 0.0 """Central solenoid temperature margin (K)""" +temp_cs_superconductor_operating: float = None +"""Central solenoid operating temperature (K)""" + n_pf_coil_turns: list[float] = field(default_factory=lambda: np.zeros(NGC2)) """number of turns in PF coil i""" From b7c88efa3f952bc3c665efe785413c169663821a Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 7 Apr 2026 17:33:57 +0100 Subject: [PATCH 20/48] Update operating temperature for central solenoid superconductor --- process/models/pfcoil.py | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 8dcffd0233..e3ccb9863d 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3552,16 +3552,11 @@ def ohcalc(self): ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, - self.data.tfcoil.fhts, - self.data.tfcoil.str_cs_con_res, - self.data.tfcoil.tftmp, - self.data.tfcoil.bcritsc, - self.data.tfcoil.tcritsc, - self.data.tfcoil.b_crit_upper_nbti, - self.data.tfcoil.t_crit_nbti, - self.data.superconducting_tfcoil.dr_tf_hts_tape, - self.data.superconducting_tfcoil.dx_tf_hts_tape_rebco, - self.data.superconducting_tfcoil.dx_tf_hts_tape_total, + tfv.fhts, + tfv.str_cs_con_res, + pfcoil_variables.temp_cs_superconductor_operating, + tfv.bcritsc, + tfv.tcritsc, ) # Strand critical current calculation for costing in $/kAm # = superconducting filaments jc * (1 - strand copper fraction) @@ -3602,16 +3597,11 @@ def ohcalc(self): ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, - self.data.tfcoil.fhts, - self.data.tfcoil.str_cs_con_res, - self.data.tfcoil.tftmp, - self.data.tfcoil.bcritsc, - self.data.tfcoil.tcritsc, - self.data.tfcoil.b_crit_upper_nbti, - self.data.tfcoil.t_crit_nbti, - self.data.superconducting_tfcoil.dr_tf_hts_tape, - self.data.superconducting_tfcoil.dx_tf_hts_tape_rebco, - self.data.superconducting_tfcoil.dx_tf_hts_tape_total, + tfv.fhts, + tfv.str_cs_con_res, + pfcoil_variables.temp_cs_superconductor_operating, + tfv.bcritsc, + tfv.tcritsc, ) pfcoil_variables.j_pf_wp_critical[pfcoil_variables.n_cs_pf_coils - 1] = ( From ebafb432d93af092895db9999a2cb249d824bb91 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Tue, 19 May 2026 15:39:08 +0100 Subject: [PATCH 21/48] Post rebase fixes --- process/core/input.py | 3 + process/core/io/plot/summary.py | 8 +- process/data_structure/pfcoil_variables.py | 34 ++-- process/models/costs/costs.py | 34 ++-- process/models/pfcoil.py | 187 ++++++++++----------- tests/unit/models/test_costs_1990.py | 2 +- tests/unit/models/test_pfcoil.py | 2 +- 7 files changed, 136 insertions(+), 134 deletions(-) diff --git a/process/core/input.py b/process/core/input.py index ead47bdc8e..07ff5c5bac 100644 --- a/process/core/input.py +++ b/process/core/input.py @@ -798,6 +798,9 @@ def __post_init__(self): "dx_tf_wp_insertion_gap": InputVariable("tfcoil", float, range=(1e-10, 0.1)), "f_dr_tf_outboard_inboard": InputVariable("build", float, range=(0.2, 5.0)), "tftmp": InputVariable("tfcoil", float, range=(0.01, 293.0)), + "temp_cs_superconductor_operating": InputVariable( + data_structure.pfcoil_variables, float, range=(0.01, 293.0) + ), "tgain": InputVariable("ife", float, range=(1.0, 500.0)), "th_joint_contact": InputVariable("tfcoil", float, range=(0.0, 1.0)), "theta1_coil": InputVariable("tfcoil", float, range=(0.1, 60.0)), diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index f84a43e68f..a5a4419b5b 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -48,6 +48,7 @@ vacuum_vessel_geometry_double_null, vacuum_vessel_geometry_single_null, ) +from process.models.pfcoil import CSCoil from process.models.physics.bootstrap_current import BootstrapCurrentFractionModel from process.models.physics.confinement_time import ( ConfinementTimeModel, @@ -15590,9 +15591,10 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - CSCoil.plot_stress_time_profile( - axis=figs[29].add_subplot(322), mfile=m_file, scan=scan - ) + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + plot_cs_stress_time_profile(axis=figs[29].add_subplot(322), mfile=m_file, scan=scan) cs_coil = CSCoil(cs_fatigue=CsFatigue()) cs_coil.plot_cs_radial_hoop_stress_profile( diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 200587c03a..cc990ee4b9 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -43,10 +43,12 @@ class PFCoilData: """Axial stress (z) in central solenoid at midplane due to its own field at each time point (Pa)""" stress_hoop_cs_inner: float = 0.0 -"""Hoop stress in central solenoid at inboard edge due to its own field (when at peak current) (Pa)""" + """Hoop stress in central solenoid at inboard edge due to its own field (when at peak current) (Pa)""" -stress_hoop_cs_inner_profile: list[float] = None -"""Hoop stress in central solenoid at inboard edge due to its own field at each time point (Pa)""" + stress_hoop_cs_inner_profile: list[float] = field( + default_factory=lambda: np.zeros(6) + ) + """Hoop stress in central solenoid at inboard edge due to its own field at each time point (Pa)""" forc_z_cs_self_peak_midplane: float = 0.0 """Axial force (z) on central solenoid at midplane due to its own field (when at peak current) (N)""" @@ -107,8 +109,8 @@ class PFCoilData: a_cs_poloidal: float = 0.0 """Central solenoid vertical cross-sectional area (m2)""" -a_cs_steel_poloidal: float = None -"""Central solenoid vertical cross-sectional area of steel (m2)""" + a_cs_steel_poloidal: float = 0.0 + """Central solenoid vertical cross-sectional area of steel (m2)""" a_cs_turn: float = 0.0 """Central solenoid (OH) trun cross-sectional area (m2)""" @@ -116,16 +118,18 @@ class PFCoilData: a_cs_cable_space: float = 0.0 """central solenoid conductor+void area with area of steel subtracted (m2)""" -b_cs_self_outer_midplane: float = None -"""magnetic field at outer edge of central solenoid at midplane due to its own current (T)""" + b_cs_self_outer_midplane: float = 0.0 + """magnetic field at outer edge of central solenoid at midplane due to its own current (T)""" + b_cs_peak_flat_top_end: float = 0.0 """maximum field in central solenoid at end of flat-top (EoF) (T)""" b_cs_peak_pulse_start: float = 0.0 """maximum field in central solenoid at beginning of pulse (T)""" -b_cs_bore_peak: float = None -"""peak field in central solenoid bore (T)""" + b_cs_bore_peak: float = 0.0 + """peak field in central solenoid bore (T)""" + b_pf_coil_peak: list[float] = field(default_factory=lambda: np.zeros(NGC2)) """peak field at coil i (T)""" @@ -358,11 +362,11 @@ class PFCoilData: r_cs_middle: float = 0.0 """radius to the centre of the central solenoid (m)""" -r_cs_inner: float = None -"""inner radius of the central solenoid (m)""" + r_cs_inner: float = 0.0 + """inner radius of the central solenoid (m)""" -r_cs_outer: float = None -"""outer radius of the central solenoid (m)""" + r_cs_outer: float = 0.0 + """outer radius of the central solenoid (m)""" dz_cs_full: float = 0.0 """Full height of the central solenoid (m)""" @@ -412,8 +416,8 @@ class PFCoilData: temp_cs_superconductor_margin: float = 0.0 """Central solenoid temperature margin (K)""" -temp_cs_superconductor_operating: float = None -"""Central solenoid operating temperature (K)""" + temp_cs_superconductor_operating: float = 4.75 + """Central solenoid operating temperature (K)""" n_pf_coil_turns: list[float] = field(default_factory=lambda: np.zeros(NGC2)) """number of turns in PF coil i""" diff --git a/process/models/costs/costs.py b/process/models/costs/costs.py index 90036339b4..47ca87bd20 100644 --- a/process/models/costs/costs.py +++ b/process/models/costs/costs.py @@ -1711,12 +1711,12 @@ def acc2222(self): # Issue #328 Use CS conductor cross-sectional area (m2) if self.data.pf_coil.i_pf_conductor == 0: costpfsc = ( - cost_variables.ucsc[pfcoil_variables.i_cs_superconductor - 1] - * pfcoil_variables.a_cs_cable_space - * (1 - pfcoil_variables.f_a_cs_void) - * (1 - pfcoil_variables.fcuohsu) - / pfcoil_variables.n_pf_coil_turns[ - pfcoil_variables.n_cs_pf_coils - 1 + self.data.costs.ucsc[self.data.pf_coil.i_cs_superconductor - 1] + * self.data.pf_coil.a_cs_cable_space + * (1 - self.data.pf_coil.f_a_cs_void) + * (1 - self.data.pf_coil.fcuohsu) + / self.data.pf_coil.n_pf_coil_turns[ + self.data.pf_coil.n_cs_pf_coils - 1 ] * self.data.tfcoil.dcond[ self.data.pf_coil.i_cs_superconductor - 1 @@ -1741,23 +1741,23 @@ def acc2222(self): if self.data.pf_coil.i_pf_conductor == 0: costpfcu = ( - cost_variables.uccu - * pfcoil_variables.a_cs_cable_space - * (1 - pfcoil_variables.f_a_cs_void) - * pfcoil_variables.fcuohsu - / pfcoil_variables.n_pf_coil_turns[ - pfcoil_variables.n_cs_pf_coils - 1 + self.data.costs.uccu + * self.data.pf_coil.a_cs_cable_space + * (1 - self.data.pf_coil.f_a_cs_void) + * self.data.pf_coil.fcuohsu + / self.data.pf_coil.n_pf_coil_turns[ + self.data.pf_coil.n_cs_pf_coils - 1 ] * constants.den_copper ) else: # MDK I don't know if this is ccorrect as we never use the resistive model costpfcu = ( - cost_variables.uccu - * pfcoil_variables.a_cs_cable_space - * (1 - pfcoil_variables.f_a_cs_void) - / pfcoil_variables.n_pf_coil_turns[ - pfcoil_variables.n_cs_pf_coils - 1 + self.data.costs.uccu + * self.data.pf_coil.a_cs_cable_space + * (1 - self.data.pf_coil.f_a_cs_void) + / self.data.pf_coil.n_pf_coil_turns[ + self.data.pf_coil.n_cs_pf_coils - 1 ] * constants.den_copper ) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index e3ccb9863d..e289938cee 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2,6 +2,7 @@ import math from enum import IntEnum +import matplotlib.pyplot as plt import numba import numpy as np from scipy import optimize @@ -11,6 +12,7 @@ from process.core import constants from process.core import process_output as op from process.core.exceptions import ProcessValueError +from process.core.io.mfile import MFile from process.core.model import DataStructure, Model from process.data_structure.pfcoil_variables import ( N_PF_COILS_IN_GROUP_MAX, @@ -2175,47 +2177,47 @@ def outpf(self): self.data.pf_coil.r_cs_middle, "OP ", ) - op.ovarre( - self.outfile, - "CS radial inner (m)", - "(r_cs_inner)", - pfcoil_variables.r_cs_inner, - "OP ", - ) - op.ovarre( - self.outfile, - "CS radial outer (m)", - "(r_cs_outer)", - pfcoil_variables.r_cs_outer, - "OP ", - ) + op.ovarre( + self.outfile, + "CS radial inner (m)", + "(r_cs_inner)", + self.data.pf_coil.r_cs_inner, + "OP ", + ) + op.ovarre( + self.outfile, + "CS radial outer (m)", + "(r_cs_outer)", + self.data.pf_coil.r_cs_outer, + "OP ", + ) op.ovarre( self.outfile, "CS conductor+void cross-sectional area (m2)", "(a_cs_cable_space)", - pfcoil_variables.a_cs_cable_space, + self.data.pf_coil.a_cs_cable_space, "OP ", ) op.ovarre( self.outfile, " CS conductor cross-sectional area (m2)", "(a_cs_cable_space*(1-f_a_cs_void))", - pfcoil_variables.a_cs_cable_space - * (1.0e0 - pfcoil_variables.f_a_cs_void), + self.data.pf_coil.a_cs_cable_space + * (1.0e0 - self.data.pf_coil.f_a_cs_void), "OP ", ) op.ovarre( self.outfile, " CS void cross-sectional area (m2)", "(a_cs_cable_space*f_a_cs_void)", - pfcoil_variables.a_cs_cable_space * pfcoil_variables.f_a_cs_void, + self.data.pf_coil.a_cs_cable_space * self.data.pf_coil.f_a_cs_void, "OP ", ) op.ovarre( self.outfile, "CS steel cross-sectional area (m2)", "(a_cs_steel_poloidal)", - pfcoil_variables.a_cs_steel_poloidal, + self.data.pf_coil.a_cs_steel_poloidal, "OP ", ) op.ovarre( @@ -2245,7 +2247,7 @@ def outpf(self): self.outfile, "Hoop stress in CS steel (Pa)", "(stress_hoop_cs_inner)", - pfcoil_variables.stress_hoop_cs_inner, + self.data.pf_coil.stress_hoop_cs_inner, "OP ", ) op.ovarre( @@ -3253,11 +3255,11 @@ def ohcalc(self): dr_bore=self.data.build.dr_bore, ) - pfcoil_variables.r_cs_inner = pfcoil_variables.r_pf_coil_inner[ - pfcoil_variables.n_cs_pf_coils - 1 + self.data.pf_coil.r_cs_inner = self.data.pf_coil.r_pf_coil_inner[ + self.data.pf_coil.n_cs_pf_coils - 1 ] - pfcoil_variables.r_cs_outer = pfcoil_variables.r_pf_coil_outer[ - pfcoil_variables.n_cs_pf_coils - 1 + self.data.pf_coil.r_cs_outer = self.data.pf_coil.r_pf_coil_outer[ + self.data.pf_coil.n_cs_pf_coils - 1 ] # Maximum current (MA-turns) in central Solenoid, at either BOP or EOF @@ -3324,9 +3326,9 @@ def ohcalc(self): # Peak field due to central Solenoid itself b_cs_self_peak_flat_top_end = self.calculate_cs_self_peak_magnetic_field( - j_cs=pfcoil_variables.j_cs_flat_top_end, - r_cs_inner=pfcoil_variables.r_pf_coil_inner[ - pfcoil_variables.n_cs_pf_coils - 1 + j_cs=self.data.pf_coil.j_cs_flat_top_end, + r_cs_inner=self.data.pf_coil.r_pf_coil_inner[ + self.data.pf_coil.n_cs_pf_coils - 1 ], r_cs_outer=self.data.pf_coil.r_pf_coil_outer[ self.data.pf_coil.n_cs_pf_coils - 1 @@ -3339,18 +3341,18 @@ def ohcalc(self): # Peak field due to other PF coils plus plasma timepoint = 5 _, _, bzi, bzo = peak_b_field_at_pf_coil( - n_coil=pfcoil_variables.n_cs_pf_coils, + n_coil=self.data.pf_coil.n_cs_pf_coils, n_coil_group=99, t_b_field_peak=timepoint, data=self.data, ) - pfcoil_variables.b_cs_peak_flat_top_end = abs(bzi - b_cs_self_peak_flat_top_end) + self.data.pf_coil.b_cs_peak_flat_top_end = abs(bzi - b_cs_self_peak_flat_top_end) # Peak field on outboard side of central Solenoid # (self-field is assumed to be zero - long solenoid approximation) - pfcoil_variables.b_cs_self_outer_midplane = 0.0 + self.data.pf_coil.b_cs_self_outer_midplane = 0.0 bohco = abs(bzo) @@ -3372,7 +3374,7 @@ def ohcalc(self): ) timepoint = 2 _, _, bzi, bzo = peak_b_field_at_pf_coil( - n_coil=pfcoil_variables.n_cs_pf_coils, + n_coil=self.data.pf_coil.n_cs_pf_coils, n_coil_group=99, t_b_field_peak=timepoint, data=self.data, @@ -3396,18 +3398,18 @@ def ohcalc(self): # Superconducting coil # New calculation from M. N. Wilson for hoop stress - pfcoil_variables.stress_hoop_cs_inner = self.calculate_cs_hoop_stress( - r_stress_point=pfcoil_variables.r_pf_coil_inner[ - pfcoil_variables.n_cs_pf_coils - 1 + self.data.pf_coil.stress_hoop_cs_inner = self.calculate_cs_hoop_stress( + r_stress_point=self.data.pf_coil.r_pf_coil_inner[ + self.data.pf_coil.n_cs_pf_coils - 1 ], - r_cs_inner=pfcoil_variables.r_pf_coil_inner[ - pfcoil_variables.n_cs_pf_coils - 1 + r_cs_inner=self.data.pf_coil.r_pf_coil_inner[ + self.data.pf_coil.n_cs_pf_coils - 1 ], - r_cs_outer=pfcoil_variables.r_pf_coil_outer[ - pfcoil_variables.n_cs_pf_coils - 1 + r_cs_outer=self.data.pf_coil.r_pf_coil_outer[ + self.data.pf_coil.n_cs_pf_coils - 1 ], - j_cs=pfcoil_variables.j_cs_pulse_start, - b_cs_inner=pfcoil_variables.b_cs_peak_pulse_start, + j_cs=self.data.pf_coil.j_cs_pulse_start, + b_cs_inner=self.data.pf_coil.b_cs_peak_pulse_start, f_poisson_cs_structure=tfv.poisson_steel, ) @@ -3440,7 +3442,7 @@ def ohcalc(self): self.data.cs_fatigue.n_cycle, self.data.cs_fatigue.t_crack_radial, ) = self.cs_fatigue.ncycle( - pfcoil_variables.stress_hoop_cs_inner, + self.data.pf_coil.stress_hoop_cs_inner, self.data.cs_fatigue.residual_sig_hoop, self.data.cs_fatigue.t_crack_vertical, self.data.cs_fatigue.dz_cs_turn_conduit, @@ -3451,24 +3453,24 @@ def ohcalc(self): # equation is used for Central Solenoid stress # Area of steel in Central Solenoid - pfcoil_variables.a_cs_steel_poloidal = ( - pfcoil_variables.f_a_cs_turn_steel * pfcoil_variables.a_cs_poloidal + self.data.pf_coil.a_cs_steel_poloidal = ( + self.data.pf_coil.f_a_cs_turn_steel * self.data.pf_coil.a_cs_poloidal ) if self.data.pf_coil.i_cs_stress == 1: self.data.pf_coil.s_shear_cs_peak = max( abs( - pfcoil_variables.stress_hoop_cs_inner - - pfcoil_variables.stress_z_cs_self_peak_midplane + self.data.pf_coil.stress_hoop_cs_inner + - self.data.pf_coil.stress_z_cs_self_peak_midplane ), - abs(pfcoil_variables.stress_z_cs_self_peak_midplane - 0.0e0), - abs(0.0e0 - pfcoil_variables.stress_hoop_cs_inner), + abs(self.data.pf_coil.stress_z_cs_self_peak_midplane - 0.0e0), + abs(0.0e0 - self.data.pf_coil.stress_hoop_cs_inner), ) else: - pfcoil_variables.s_shear_cs_peak = max( - abs(pfcoil_variables.stress_hoop_cs_inner - 0.0e0), + self.data.pf_coil.s_shear_cs_peak = max( + abs(self.data.pf_coil.stress_hoop_cs_inner - 0.0e0), abs(0.0e0 - 0.0e0), - abs(0.0e0 - pfcoil_variables.stress_hoop_cs_inner), + abs(0.0e0 - self.data.pf_coil.stress_hoop_cs_inner), ) # Thickness of hypothetical steel cylinders assumed to encase the CS along @@ -3476,19 +3478,19 @@ def ohcalc(self): # throughout the conductor self.data.pf_coil.pfcaseth[self.data.pf_coil.n_cs_pf_coils - 1] = ( 0.25e0 - * pfcoil_variables.a_cs_steel_poloidal - / pfcoil_variables.z_pf_coil_upper[pfcoil_variables.n_cs_pf_coils - 1] + * self.data.pf_coil.a_cs_steel_poloidal + / self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1] ) else: - pfcoil_variables.a_cs_steel_poloidal = ( + self.data.pf_coil.a_cs_steel_poloidal = ( 0.0e0 # Resistive Central Solenoid - no steel needed ) - pfcoil_variables.pfcaseth[pfcoil_variables.n_cs_pf_coils - 1] = 0.0e0 + self.data.pf_coil.pfcaseth[self.data.pf_coil.n_cs_pf_coils - 1] = 0.0e0 # Weight of steel - pfcoil_variables.m_pf_coil_structure[pfcoil_variables.n_cs_pf_coils - 1] = ( - pfcoil_variables.a_cs_steel_poloidal + self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1] = ( + self.data.pf_coil.a_cs_steel_poloidal * 2.0e0 * np.pi * self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] @@ -3496,33 +3498,37 @@ def ohcalc(self): ) # Non-steel cross-sectional area - pfcoil_variables.a_cs_cable_space = ( - pfcoil_variables.a_cs_poloidal - pfcoil_variables.a_cs_steel_poloidal + self.data.pf_coil.a_cs_cable_space = ( + self.data.pf_coil.a_cs_poloidal - self.data.pf_coil.a_cs_steel_poloidal ) # Issue #97. Fudge to ensure a_cs_cable_space is positive; result is continuous, smooth and # monotonically decreases da = 0.0001e0 # 1 cm^2 - if pfcoil_variables.a_cs_cable_space < da: - pfcoil_variables.a_cs_cable_space = ( - da * da / (2.0e0 * da - pfcoil_variables.a_cs_cable_space) + if self.data.pf_coil.a_cs_cable_space < da: + self.data.pf_coil.a_cs_cable_space = ( + da * da / (2.0e0 * da - self.data.pf_coil.a_cs_cable_space) ) # Weight of conductor in central Solenoid - if pfcoil_variables.i_pf_conductor == 0: - pfcoil_variables.m_pf_coil_conductor[pfcoil_variables.n_cs_pf_coils - 1] = ( - pfcoil_variables.a_cs_cable_space - * (1.0e0 - pfcoil_variables.f_a_cs_void) + if self.data.pf_coil.i_pf_conductor == 0: + self.data.pf_coil.m_pf_coil_conductor[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = ( + self.data.pf_coil.a_cs_cable_space + * (1.0e0 - self.data.pf_coil.f_a_cs_void) * 2.0e0 * np.pi * self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] * self.data.tfcoil.dcond[self.data.pf_coil.i_cs_superconductor - 1] ) else: - pfcoil_variables.m_pf_coil_conductor[pfcoil_variables.n_cs_pf_coils - 1] = ( - pfcoil_variables.a_cs_cable_space - * (1.0e0 - pfcoil_variables.f_a_cs_void) + self.data.pf_coil.m_pf_coil_conductor[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = ( + self.data.pf_coil.a_cs_cable_space + * (1.0e0 - self.data.pf_coil.f_a_cs_void) * 2.0e0 * np.pi * self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] @@ -3548,13 +3554,13 @@ def ohcalc(self): self.data.pf_coil.n_cs_pf_coils - 1 ] ) - / pfcoil_variables.a_cs_cable_space + / self.data.pf_coil.a_cs_cable_space ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, tfv.fhts, tfv.str_cs_con_res, - pfcoil_variables.temp_cs_superconductor_operating, + self.data.pf_coil.temp_cs_superconductor_operating, tfv.bcritsc, tfv.tcritsc, ) @@ -3570,10 +3576,10 @@ def ohcalc(self): * (1 - self.data.pf_coil.fcuohsu) ) - pfcoil_variables.j_cs_critical_flat_top_end = ( + self.data.pf_coil.j_cs_critical_flat_top_end = ( jcritwp - * pfcoil_variables.a_cs_cable_space - / pfcoil_variables.a_cs_poloidal + * self.data.pf_coil.a_cs_cable_space + / self.data.pf_coil.a_cs_poloidal ) # Allowable coil overall current density at BOP @@ -3593,21 +3599,21 @@ def ohcalc(self): self.data.pf_coil.n_cs_pf_coils - 1 ] ) - / pfcoil_variables.a_cs_cable_space + / self.data.pf_coil.a_cs_cable_space ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, tfv.fhts, tfv.str_cs_con_res, - pfcoil_variables.temp_cs_superconductor_operating, + self.data.pf_coil.temp_cs_superconductor_operating, tfv.bcritsc, tfv.tcritsc, ) - pfcoil_variables.j_pf_wp_critical[pfcoil_variables.n_cs_pf_coils - 1] = ( + self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1] = ( jcritwp - * pfcoil_variables.a_cs_cable_space - / pfcoil_variables.a_cs_poloidal + * self.data.pf_coil.a_cs_cable_space + / self.data.pf_coil.a_cs_poloidal ) self.data.pf_coil.j_cs_critical_pulse_start = ( self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1] @@ -3641,7 +3647,6 @@ def ohcalc(self): self.calculate_cs_self_midplane_axial_stress_time_profile() @staticmethod - @numba.njit(cache=True) def calculate_cs_bore_magnetic_field( j_cs: float, r_cs_inner: float, @@ -3927,9 +3932,8 @@ def calculate_cs_self_midplane_axial_stress_time_profile( ) self.data.pf_coil.stress_z_cs_self_midplane_profile[time] = stress_value - @staticmethod - @numba.njit(cache=True) def calculate_cs_hoop_stress( + self, r_stress_point: float | np.ndarray, r_cs_inner: float, r_cs_outer: float, @@ -3967,7 +3971,6 @@ def calculate_cs_hoop_stress( - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. ‌ """ - alpha = r_cs_outer / r_cs_inner # alpha @@ -3980,9 +3983,6 @@ def calculate_cs_hoop_stress( # Assume to be 0 for now b_b = 0.0e0 - # current density [A/m^2] - j_cs = pfcoil_variables.j_cs_pulse_start - # K term k = ((alpha * b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) @@ -4019,11 +4019,10 @@ def calculate_cs_hoop_stress( s_hoop_nom = hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 - return s_hoop_nom / pfcoil_variables.f_a_cs_turn_steel + return s_hoop_nom / self.data.pf_coil.f_a_cs_turn_steel - @staticmethod - @numba.njit(cache=True) def calculate_cs_radial_stress( + self, r_stress_point: float | np.ndarray, r_cs_inner: float, r_cs_outer: float, @@ -4061,9 +4060,6 @@ def calculate_cs_radial_stress( - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. ‌ """ - - alpha = r_cs_outer / r_cs_inner - # alpha alpha = r_cs_outer / r_cs_inner @@ -4074,9 +4070,6 @@ def calculate_cs_radial_stress( # Assume to be 0 for now b_b = 0.0e0 - # current density [A/m^2] - j_cs = pfcoil_variables.j_cs_pulse_start - # K term k = ((alpha * b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) @@ -4097,7 +4090,7 @@ def calculate_cs_radial_stress( return hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 @staticmethod - def plot_stress_time_profile(axis: plt.Axes, mfile: mf.MFile, scan: int): + def plot_stress_time_profile(axis: plt.Axes, mfile: MFile, scan: int): t_plant_pulse_coil_precharge = mfile.get( "t_plant_pulse_coil_precharge", scan=scan ) @@ -4149,7 +4142,7 @@ def plot_stress_time_profile(axis: plt.Axes, mfile: mf.MFile, scan: int): def plot_cs_radial_hoop_stress_profile( self, axis: plt.Axes, - mfile: mf.MFile, + mfile: MFile, scan: int, j_cs: float, b_cs_inner: float, @@ -4188,7 +4181,7 @@ def plot_cs_radial_hoop_stress_profile( def plot_cs_radial_stress_profile( self, axis: plt.Axes, - mfile: mf.MFile, + mfile: MFile, scan: int, j_cs: float, b_cs_inner: float, diff --git a/tests/unit/models/test_costs_1990.py b/tests/unit/models/test_costs_1990.py index 6032c089dd..10c987c603 100644 --- a/tests/unit/models/test_costs_1990.py +++ b/tests/unit/models/test_costs_1990.py @@ -2775,7 +2775,7 @@ def test_acc2222(acc2222param, monkeypatch, costs): ) monkeypatch.setattr( - pfcoil_variables, "a_cs_cable_space", acc2222param.a_cs_cable_space + costs.data.pf_coil, "a_cs_cable_space", acc2222param.a_cs_cable_space ) monkeypatch.setattr(costs.data.structure, "fncmass", acc2222param.fncmass) diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index 4db3c66c64..0bfd274eac 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -2608,7 +2608,7 @@ def test_ohcalc(monkeypatch, reinitialise_error_module, cs_coil): monkeypatch.setattr(cs_coil.data.pf_coil, "p_cs_resistive_flat_top", 0.0) monkeypatch.setattr(cs_coil.data.pf_coil, "j_cs_critical_pulse_start", 3.048e7) monkeypatch.setattr(cs_coil.data.pf_coil, "s_shear_cs_peak", 5.718e8) - monkeypatch.setattr(cs_coil.data.pf_coil, "awpoh", 4.232) + monkeypatch.setattr(cs_coil.data.pf_coil, "a_cs_cable_space", 4.232) monkeypatch.setattr(cs_coil.data.pf_coil, "f_a_cs_turn_steel", 5.926e-1) monkeypatch.setattr(cs_coil.data.pf_coil, "b_cs_peak_pulse_start", 1.4e1) monkeypatch.setattr(cs_coil.data.pf_coil, "j_cs_critical_flat_top_end", 4.070e7) From 6c3c97886ad1165e4ea85e6bbfea9c519c3bba10 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 20 May 2026 08:57:11 +0100 Subject: [PATCH 22/48] Update unit test --- process/models/pfcoil.py | 8 ++- tests/unit/models/test_pfcoil.py | 86 +++++++------------------------- 2 files changed, 26 insertions(+), 68 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index e289938cee..22c6e39252 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3411,6 +3411,7 @@ def ohcalc(self): j_cs=self.data.pf_coil.j_cs_pulse_start, b_cs_inner=self.data.pf_coil.b_cs_peak_pulse_start, f_poisson_cs_structure=tfv.poisson_steel, + f_a_cs_turn_steel=self.data.pf_coil.f_a_cs_turn_steel, ) # New calculation from Y. Iwasa for axial stress @@ -3940,6 +3941,7 @@ def calculate_cs_hoop_stress( j_cs: float, b_cs_inner: float, f_poisson_cs_structure: float, + f_a_cs_turn_steel: float, ) -> float: """Calculation of hoop stress of central solenoid. @@ -3960,6 +3962,9 @@ def calculate_cs_hoop_stress( Magnetic field at the inner radius of the central solenoid (T) f_poisson_cs_structure : float Poisson's ratio of the central solenoid structure (dimensionless) + f_a_cs_turn_steel : float + Steel area fraction of the central solenoid turn cross-section + (dimensionless) Returns ------- @@ -4019,7 +4024,7 @@ def calculate_cs_hoop_stress( s_hoop_nom = hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 - return s_hoop_nom / self.data.pf_coil.f_a_cs_turn_steel + return s_hoop_nom / f_a_cs_turn_steel def calculate_cs_radial_stress( self, @@ -4159,6 +4164,7 @@ def plot_cs_radial_hoop_stress_profile( j_cs=j_cs, b_cs_inner=b_cs_inner, f_poisson_cs_structure=tfv.poisson_steel, + f_a_cs_turn_steel=mfile.get("f_a_cs_turn_steel", scan=scan), ) for radius in radii ]) diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index 0bfd274eac..eb5d389aca 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -1971,78 +1971,30 @@ def test_hoop_stress(cs_coil, monkeypatch): discovered using gdb to break on the first subroutine call when running the baseline 2018 IN.DAT. - :param pfcoil: PFCoil object - :type pfcoil: process.pfcoil.PFCoil + :param cs_coil: CSCoil object + :type cs_coil: process.pfcoil.CSCoil :param monkeypatch: mocking fixture :type monkeypatch: _pytest.monkeypatch.MonkeyPatch """ - monkeypatch.setattr(cs_coil.data.pf_coil, "f_a_cs_turn_steel", 0.57874999999999999) - monkeypatch.setattr( - cs_coil.data.pf_coil, "b_cs_peak_pulse_start", 13.522197474024983 - ) - monkeypatch.setattr(cs_coil.data.pf_coil, "j_cs_pulse_start", 19311657.760000002) - monkeypatch.setattr(cs_coil.data.pf_coil, "n_cs_pf_coils", 7) - monkeypatch.setattr( - cs_coil.data.pf_coil, - "r_pf_coil_outer", - np.array([ - 6.8520884119768697, - 6.9480065348448967, - 18.98258241468535, - 18.98258241468535, - 17.22166645654087, - 17.22166645654087, - 2.88462, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - ]), - ) - monkeypatch.setattr( - cs_coil.data.pf_coil, - "r_pf_coil_inner", - np.array([ - 5.6944236847973242, - 5.5985055619292972, - 17.819978201682968, - 17.819978201682968, - 16.385123084628962, - 16.385123084628962, - 2.3321999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - ]), - ) - monkeypatch.setattr(cs_coil.data.tfcoil, "poisson_steel", 0.29999999999999999) - r = 2.3 + r_stress_point = 2.3 + r_cs_inner = 2.3321999999999998 + r_cs_outer = 2.88462 + j_cs = 19311657.760000002 + b_cs_inner = 13.522197474024983 + f_poisson_cs_structure = 0.29999999999999999 + f_a_cs_turn_steel = 0.57874999999999999 + s_hoop_exp = 6.737108e8 - s_hoop = cs_coil.calculate_cs_hoop_stress(r) + s_hoop = cs_coil.calculate_cs_hoop_stress( + r_stress_point, + r_cs_inner, + r_cs_outer, + j_cs, + b_cs_inner, + f_poisson_cs_structure, + f_a_cs_turn_steel, + ) assert pytest.approx(s_hoop) == s_hoop_exp From 951f2be34ec28a0499f9c9e166488cf0777e9d12 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 20 May 2026 09:27:30 +0100 Subject: [PATCH 23/48] Add CSGeometry dataclass --- process/models/pfcoil.py | 146 ++++++++++++++++++++----------- tests/unit/models/test_pfcoil.py | 49 ++++++++++- 2 files changed, 142 insertions(+), 53 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 22c6e39252..3620b5d666 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -1,6 +1,7 @@ import logging import math from enum import IntEnum +from dataclasses import dataclass import matplotlib.pyplot as plt import numba @@ -167,24 +168,36 @@ def pfcoil(self): # Set up call to MHD scaling routine for coil currents. # First break up Central Solenoid solenoid into 'filaments' - ( - self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.z_pf_coil_lower[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_cs_middle, - self.data.pf_coil.z_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_pf_coil_outer[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.a_cs_poloidal, - self.data.pf_coil.dz_cs_full, - self.data.pf_coil.dr_cs_full, - ) = self.cs_coil.calculate_cs_geometry( + cs_geometry: CSGeometry = self.cs_coil.calculate_cs_geometry( z_tf_inside_half=self.data.build.z_tf_inside_half, f_z_cs_tf_internal=self.data.pf_coil.f_z_cs_tf_internal, dr_cs=self.data.build.dr_cs, dr_bore=self.data.build.dr_bore, ) + self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.z_cs_coil_upper + ) + self.data.pf_coil.z_pf_coil_lower[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.z_cs_coil_lower + ) + self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.r_cs_coil_middle + ) + self.data.pf_coil.r_cs_middle = cs_geometry.r_cs_middle + self.data.pf_coil.z_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.z_cs_coil_middle + ) + self.data.pf_coil.r_pf_coil_outer[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.r_cs_coil_outer + ) + self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.r_cs_coil_inner + ) + self.data.pf_coil.a_cs_poloidal = cs_geometry.a_cs_poloidal + self.data.pf_coil.dz_cs_full = cs_geometry.dz_cs_full + self.data.pf_coil.dr_cs_full = cs_geometry.dr_cs_full + # nfxf is the total no of filaments into which the Central Solenoid is split, # if present if self.data.build.iohcl == 0: @@ -2997,6 +3010,32 @@ def waveform(self): self.data.pf_coil.f_c_pf_cs_peak_time_array[ic, 5] = 0.0e0 +@dataclass +class CSGeometry: + """Data class to hold the geometry parameters of the Central Solenoid (CS) coil.""" + + z_cs_coil_upper: float + """Upper Z coordinate of CS coil (m)""" + z_cs_coil_lower: float + """Lower Z coordinate of CS coil (m)""" + r_cs_coil_middle: float + """Radial coordinate of CS coil centre (m)""" + r_cs_middle: float + """Mean radius of CS coil (m)""" + z_cs_coil_middle: float + """Z coordinate of CS coil centre (m)""" + r_cs_coil_outer: float + """Outer radius of CS coil (m)""" + r_cs_coil_inner: float + """Inner radius of CS coil (m)""" + a_cs_poloidal: float + """Total poloidal cross-sectional area of CS coil (m²)""" + dz_cs_full: float + """Full height of CS coil (m)""" + dr_cs_full: float + """Full radial thickness of CS coil (m)""" + + class CSCoil(Model): """Calculate central solenoid coil system parameters.""" @@ -3018,7 +3057,7 @@ def calculate_cs_geometry( f_z_cs_tf_internal: float, dr_cs: float, dr_bore: float, - ) -> tuple[float, float, float, float, float, float, float, float, float]: + ) -> CSGeometry: """Calculate the geometry of the Central Solenoid (CS) coil. Parameters @@ -3034,16 +3073,18 @@ def calculate_cs_geometry( Returns ------- - tuple[float, float, float, float, float, float, float, float] - Tuple containing: + CSGeometry + Data class containing the geometry parameters of the CS coil, including: - z_cs_coil_upper: Upper Z coordinate of CS coil (m) - z_cs_coil_lower: Lower Z coordinate of CS coil (m) - r_cs_coil_middle: Radial coordinate of CS coil centre (m) + - r_cs_middle: Mean radius of CS coil (m) - z_cs_coil_middle: Z coordinate of CS coil centre (m) - r_cs_coil_outer: Outer radius of CS coil (m) - r_cs_coil_inner: Inner radius of CS coil (m) - a_cs_poloidal: Total poloidal cross-sectional area of CS coil (m²) - dz_cs_full: Full height of CS coil (m) + - dr_cs_full: Full radial thickness of CS coil (m) """ # Central Solenoid mean radius r_cs_middle = dr_bore + (0.5e0 * dr_cs) @@ -3073,17 +3114,17 @@ def calculate_cs_geometry( # Total cross-sectional area a_cs_poloidal = 2.0e0 * z_cs_inside_half * dr_cs - return ( - z_cs_coil_upper, - z_cs_coil_lower, - r_cs_coil_middle, - r_cs_middle, - z_cs_coil_middle, - r_cs_coil_outer, - r_cs_coil_inner, - a_cs_poloidal, - dz_cs_full, - dr_cs_full, + return CSGeometry( + z_cs_coil_upper=z_cs_coil_upper, + z_cs_coil_lower=z_cs_coil_lower, + r_cs_coil_middle=r_cs_coil_middle, + r_cs_middle=r_cs_middle, + z_cs_coil_middle=z_cs_coil_middle, + r_cs_coil_outer=r_cs_coil_outer, + r_cs_coil_inner=r_cs_coil_inner, + a_cs_poloidal=a_cs_poloidal, + dz_cs_full=dz_cs_full, + dr_cs_full=dr_cs_full, ) @staticmethod @@ -3093,12 +3134,13 @@ def calculate_cs_turn_geometry_eu_demo( radius_cs_turn_corners: float, f_a_cs_turn_steel: float, ) -> tuple[float, float, float, float, float]: - """Calculate the geometry of a CS (Central Solenoid) turn using the EU DEMO stadium-shaped model. + """Calculate the geometry of a CS (Central Solenoid) turn using the + EU DEMO stadium-shaped model. Parameters ---------- a_cs_turn : float - Poloidal area of a CS turn (m^2) + Poloidal area of a CS turn (m²) f_dr_dz_cs_turn : float Length-to-height ratio of the CS turn radius_cs_turn_corners : float @@ -3118,14 +3160,15 @@ def calculate_cs_turn_geometry_eu_demo( Notes ----- - - The calculation assumes a stadium-shaped cross-section for the CS turn. - - If the calculated conduit thickness is negative or too small, it is set to a minimum value of 1 mm. + - The calculation assumes a stadium-shaped cross-section for the CS turn. + - If the calculated conduit thickness is negative or too small, it is set + to a minimum value of 1 mm. References ---------- - - R. Wesche et al., “Central solenoid winding pack design for DEMO,” - Fusion Engineering and Design, vol. 124, pp. 82-85, Apr. 2017, - doi: https://doi.org/10.1016/j.fusengdes.2017.04.052. + [1] R. Wesche et al., “Central solenoid winding pack design for DEMO,” + Fusion Engineering and Design, vol. 124, pp. 82-85, Apr. 2017, + doi: https://doi.org/10.1016/j.fusengdes.2017.04.052. """ # Vertical height of CS turn conduit/turn dz_cs_turn = (a_cs_turn / f_dr_dz_cs_turn) ** 0.5 @@ -3237,30 +3280,35 @@ def place_cs_filaments( def ohcalc(self): """Routine to perform calculations for the Central Solenoid.""" - ( - self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.z_pf_coil_lower[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_cs_middle, - self.data.pf_coil.z_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_pf_coil_outer[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1], - self.data.pf_coil.a_cs_poloidal, - self.data.pf_coil.dz_cs_full, - self.data.pf_coil.dr_cs_full, - ) = self.calculate_cs_geometry( + cs_geometry: CSGeometry = self.calculate_cs_geometry( z_tf_inside_half=self.data.build.z_tf_inside_half, f_z_cs_tf_internal=self.data.pf_coil.f_z_cs_tf_internal, dr_cs=self.data.build.dr_cs, dr_bore=self.data.build.dr_bore, ) - self.data.pf_coil.r_cs_inner = self.data.pf_coil.r_pf_coil_inner[ - self.data.pf_coil.n_cs_pf_coils - 1 - ] + self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.z_cs_coil_upper + ) + self.data.pf_coil.z_pf_coil_lower[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.z_cs_coil_lower + ) + self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.r_cs_coil_middle + ) + self.data.pf_coil.r_cs_middle = cs_geometry.r_cs_middle + self.data.pf_coil.z_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( + cs_geometry.z_cs_coil_middle + ) self.data.pf_coil.r_cs_outer = self.data.pf_coil.r_pf_coil_outer[ self.data.pf_coil.n_cs_pf_coils - 1 - ] + ] = cs_geometry.r_cs_coil_outer + self.data.pf_coil.r_cs_inner = self.data.pf_coil.r_pf_coil_inner[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.r_cs_coil_inner + self.data.pf_coil.a_cs_poloidal = cs_geometry.a_cs_poloidal + self.data.pf_coil.dz_cs_full = cs_geometry.dz_cs_full + self.data.pf_coil.dr_cs_full = cs_geometry.dr_cs_full # Maximum current (MA-turns) in central Solenoid, at either BOP or EOF if self.data.pf_coil.j_cs_pulse_start > self.data.pf_coil.j_cs_flat_top_end: diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index eb5d389aca..340cebeadc 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -18,6 +18,7 @@ from process.core import constants from process.data_structure.pfcoil_variables import N_PF_COILS_IN_GROUP_MAX from process.models.pfcoil import ( + CSGeometry, PFCoil, calculate_b_field_at_point, fixb, @@ -2042,17 +2043,57 @@ def test_brookscoil(pfcoil): ("z_tf_inside_half", "f_z_cs_tf_internal", "dr_cs", "dr_bore", "expected"), [ # Typical values - (2.0, 0.5, 0.3, 0.15, (1.0, -1.0, 0.3, 0.3, 0.0, 0.45, 0.15, 0.6, 2.0, 0.9)), + ( + 2.0, + 0.5, + 0.3, + 0.15, + CSGeometry( + 1.0, + -1.0, + 0.3, + 0.3, + 0.0, + 0.44999999999999996, + 0.14999999999999997, + 0.6, + 2.0, + 0.8999999999999999, + ), + ), # Zero thickness - (2.0, 0.5, 0.0, 0.0, (1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0)), + ( + 2.0, + 0.5, + 0.0, + 0.0, + CSGeometry(1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0), + ), # Zero fractional height - (2.0, 0.0, 0.3, 1.5, (0.0, -0.0, 1.65, 1.65, 0.0, 1.8, 1.5, 0.0, 0.0, 3.6)), + ( + 2.0, + 0.0, + 0.3, + 1.5, + CSGeometry( + 0.0, + -0.0, + 1.65, + 1.65, + 0.0, + 1.7999999999999998, + 1.4999999999999998, + 0.0, + 0.0, + 3.5999999999999996, + ), + ), ], ) def test_calculate_cs_geometry( cs_coil, z_tf_inside_half, f_z_cs_tf_internal, dr_cs, dr_bore, expected ): - result = cs_coil.calculate_cs_geometry( + result: CSGeometry = cs_coil.calculate_cs_geometry( z_tf_inside_half=z_tf_inside_half, f_z_cs_tf_internal=f_z_cs_tf_internal, dr_cs=dr_cs, From 41cc3dfaf3b6ca6ae3dfb478be909deb17ba8c4f Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 20 May 2026 11:06:59 +0100 Subject: [PATCH 24/48] Refactor CS stress plotting functions for clarity and consistency --- process/core/io/plot/summary.py | 21 ++++++++---- process/models/pfcoil.py | 57 ++------------------------------- 2 files changed, 16 insertions(+), 62 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index a5a4419b5b..b370903ee1 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -10133,14 +10133,14 @@ def plot_cs_stress_time_profile(axis: plt.Axes, mfile: MFile, scan: int) -> None stress_z_cs_self_midplane_profile / 1e6, "o-", linewidth=2, - markersize=8, - label="Midplane Axial Stress", + markersize=4, + label="$\\sigma_{z}$,Axial Stress", ) axis.set_xlabel("Pulse Time (s)") - axis.set_ylabel("Stress (MPa)") + axis.set_ylabel("Midplane Axial Stress (MPa)") axis.minorticks_on() axis.legend(loc="best") - axis.set_title("Central Solenoid Stress") + axis.set_title("CS Midplane Axial Stress Time Profile") axis.grid(True, alpha=0.3) @@ -15594,11 +15594,17 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_cs_stress_time_profile(axis=figs[29].add_subplot(322), mfile=m_file, scan=scan) + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + plot_cs_stress_time_profile(axis=figs[30].add_subplot(431), mfile=m_file, scan=scan) cs_coil = CSCoil(cs_fatigue=CsFatigue()) cs_coil.plot_cs_radial_hoop_stress_profile( - axis=figs[29].add_subplot(324), + axis=figs[30].add_subplot(432), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), @@ -15606,7 +15612,7 @@ def main_plot( ) cs_coil.plot_cs_radial_stress_profile( - axis=figs[29].add_subplot(326), + axis=figs[30].add_subplot(433), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), @@ -15619,6 +15625,7 @@ def main_plot( plot_cs_turn_structure( figs[32].add_subplot(326, aspect="equal"), figs[32], m_file, scan ) + figs[30].subplots_adjust(wspace=0.3) plot_first_wall_top_down_cross_section( figs[33].add_subplot(221, aspect="equal"), m_file, scan diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 3620b5d666..c0c235bd4d 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -4142,56 +4142,6 @@ def calculate_cs_radial_stress( return hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 - @staticmethod - def plot_stress_time_profile(axis: plt.Axes, mfile: MFile, scan: int): - t_plant_pulse_coil_precharge = mfile.get( - "t_plant_pulse_coil_precharge", scan=scan - ) - t_plant_pulse_plasma_current_ramp_up = mfile.get( - "t_plant_pulse_plasma_current_ramp_up", scan=scan - ) - t_plant_pulse_fusion_ramp = mfile.get("t_plant_pulse_fusion_ramp", scan=scan) - t_plant_pulse_burn = mfile.get("t_plant_pulse_burn", scan=scan) - t_plant_pulse_plasma_current_ramp_down = mfile.get( - "t_plant_pulse_plasma_current_ramp_down", scan=scan - ) - - # Define a cumulative sum list for each point in the pulse - t_steps = np.cumsum([ - 0, - t_plant_pulse_coil_precharge, - t_plant_pulse_plasma_current_ramp_up, - t_plant_pulse_fusion_ramp, - t_plant_pulse_burn, - t_plant_pulse_plasma_current_ramp_down, - ]) - - stress_times = t_steps[ - :6 - ] # Get the first 6 time points corresponding to the stress profile - - stress_z_cs_self_midplane_profile = np.zeros(6) - for i in range(6): - stress_z_cs_self_midplane_profile[i] = mfile.get( - f"stress_z_cs_self_midplane_profile[{i}]", scan=scan - ) - - # Plot stress vs time - axis.plot( - stress_times, - stress_z_cs_self_midplane_profile / 1e6, - "o-", - linewidth=2, - markersize=8, - label=r"$\sigma_{{z}}$,Midplane Axial Stress", - ) - axis.set_xlabel("Pulse Time (s)") - axis.set_ylabel("Stress (MPa)") - axis.minorticks_on() - axis.legend(loc="best") - axis.set_title("Central Solenoid Stress") - axis.grid(True, alpha=0.3) - def plot_cs_radial_hoop_stress_profile( self, axis: plt.Axes, @@ -4220,16 +4170,14 @@ def plot_cs_radial_hoop_stress_profile( axis.plot( radii, stress_values / 1e6, - "o-", linewidth=2, - markersize=8, label="$\\sigma_{\\theta}$,Hoop Stress", ) axis.set_xlabel("Radial Position (m)") axis.set_ylabel("Hoop Stress (MPa)") axis.minorticks_on() axis.legend(loc="best") - axis.set_title("Central Solenoid Radial Hoop Stress Profile") + axis.set_title("CS Hoop Stress at BOP") axis.grid(True, alpha=0.3) def plot_cs_radial_stress_profile( @@ -4259,15 +4207,14 @@ def plot_cs_radial_stress_profile( axis.plot( radii, stress_values / 1e6, - "o-", linewidth=2, - markersize=8, label="$\\sigma_{r}$,Radial Stress", ) axis.set_xlabel("Radial Position (m)") axis.set_ylabel("Radial Stress (MPa)") axis.minorticks_on() axis.grid(True, alpha=0.3) + axis.set_title("CS Radial Stress at BOP") axis.legend(loc="best") From 51034bf2f65ea16f596611bcfbcf267ef03b3c57 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Thu, 21 May 2026 16:17:52 +0100 Subject: [PATCH 25/48] Update docs --- .../source/eng-models/central-solenoid.md | 98 +++++++++++++------ process/models/pfcoil.py | 12 +-- 2 files changed, 76 insertions(+), 34 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 6ab0b083e6..b024fa6278 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -66,21 +66,27 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per ----------- -### Self peak magnetic field | `calculate_cs_self_peak_magnetic_field()` +### Self peak bore magnetic field | `calculate_cs_bore_magnetic_field()` -The general form for the field at the very centre of the central solenoid bore with uniform current density and rectangular cross-section is given by: +The self induced peak field at the central bore of a homogenous current density rectangular cross-section solenoid is given by: $$ -B_0 = J_{\text{CS}}aF(\alpha,\beta) +B_0 = J_{\text{CS}}r_{\text{CS,inner}}F(\alpha,\beta) $$ $$ F(\alpha,\beta) = \mu_0\beta \ln{\left[\frac{\alpha+\sqrt{\alpha^2+\beta^2}}{1+\sqrt{1+\beta^2}}\right]} $$ -where $\alpha = \frac{r_{\text{CS,outer}}}{r_{\text{CS,inner}}}$, is the ratio of the outer and inner radii of the solenoid and $\beta = \frac{z_{\text{CS,half}}}{r_{\text{CS,outer}}}$, is the ratio of the solenoid half height to its inboard radius. +where $\alpha = \frac{r_{\text{CS,outer}}}{r_{\text{CS,inner}}}$, is the ratio of the outer and inner radii of the solenoid and $\beta = \frac{z_{\text{CS,half}}}{r_{\text{CS,inner}}}$, is the ratio of the solenoid half height to its inboard radius. -The peak field at the bore of the central solenoid will not be the same as that felt by the conductors inside the structures. We require to know the peak field on the conductor if we are to design a superconducting central solenoid that has enough margin. Fits to data[^1] for different ranges of $\beta$ have been calculated as follows: +This is Equation 3.13 from "Case Studies in Superconducting Magnets"[^2]. + +------------- + +### Self peak on coil magnetic field | `calculate_cs_self_peak_magnetic_field()` + +The peak field at the bore of the central solenoid will not be the same as that felt by the conductors inside the structures.So wecannot use the bore value directly calculated by [`calculate_cs_bore_magnetic_field()`](#self-peak-bore-magnetic-field--calculate_cs_bore_magnetic_field). We require to know the peak field on the conductor if we are to design a superconducting central solenoid that has enough margin. Fits to data[^1] for different ranges of $\beta$ have been calculated as follows to scale the bore field value by: - $\beta > 3.0$ @@ -123,10 +129,10 @@ The peak field at the bore of the central solenoid will not be the same as that ----------- -### Axial stresses | `calculate_cs_self_peak_midplane_axial_stress()` +### Peak Axial Stresses | `calculate_cs_self_peak_midplane_axial_stress()` -The vertical (axial) force for a "thin-walled" solenoid ($\alpha = 1$) at the midplane is given by[^2]: +The vertical (axial) force for a "thin-walled" solenoid ($\alpha = 1$) at the midplane where the force is maximum is given by Equation 3.41 in "Case studies in superconducting magnets" [^2]: $$ F_{z}(0)=\frac{\mu_0}{2}\left(\frac{N I}{2 \times dz_{\text{half}}}\right) \times \\ @@ -148,64 +154,100 @@ $$ Here $K(k)$ and $E(k)$ are the complete elliptic integrals, respectively of the first and second kinds. +!!! info "Non thin-walled solenoids" + + For solenoids that can be classed as "thick-walled" ($\alpha > 1$), the coil has to be divided radially into several thin-walled solenoids. This is not currently performed though more info can be found in Section 3.5.5 of "Case studies in superconducting magnets" [^2]. The axial compressive force at $z$ in an isolated solenoid increases from 0 at $z = dz_{\text{half}}$ to the maximum at the midplane, $F_{z}(0)$. +The axial stress in the steel is given by: +$$ +\sigma_z = \frac{F_z}{f_z A_z} +$$ --------------------------- +where $F_z$ is the axial force, $f_z$ is the fraction of the horizontal cross-section occupied by +steel, and $A_z$ is the area of the horizontal cross-section. +The fraction of the horizontal cross-section occupied by steel is calculated assuming that the +conductor is square and has a steel jacket with the same thickness on all four sides, giving: -### Hoop stress | `calculate_cs_hoop_stress()` +$$ +f_z = 0.5. +$$ + + + +-------------------------- +### Radial stress | `calculate_cs_radial_stress()` -The hoop stress is calculated using equations 4.10 and 4.11 from "Superconducting magnets", Martin N. -Wilson (1983). This is divided by the fraction of the area occupied by steel to obtain the hoop -stress in the steel, $\sigma_{hoop}$. +The self induced radial stress is calculated using Equation 4.11 from "Superconducting magnets" [^1]. $$ -\sigma_{\theta} = \frac{K(2+v)}{3(\alpha+1)}\times \left(\alpha^2+\alpha+1+\frac{\alpha^2}{\epsilon^2}-\epsilon \frac{(1+2v)(\alpha+1)}{(2+v)}\right) \\ -- \frac{M(3+v)}{8}\left(\alpha^2+1+\frac{\alpha^2}{\epsilon^2}-\frac{(1+3v)}{(3+v)}\epsilon^2\right) +\sigma_{r} = \frac{K(2+v)}{3(\alpha+1)}\times \left(\alpha^2+\alpha+1-\frac{\alpha^2}{\epsilon^2}-\epsilon(\alpha+1)\right) \\ +- \frac{M(3+v)}{8}\left(\alpha^2+1-\frac{\alpha^2}{\epsilon^2}-\epsilon^2\right) $$ Where: -- $\epsilon = \frac{r}{r_{CS,inner}}$ -- $\alpha = \frac{r_{CS,outer}}{r_{CS,inner}}$ +- $\epsilon = \frac{r}{r_{\text{CS,inner}}}$ +- $\alpha = \frac{r_{\text{CS,outer}}}{r_{\text{CS,inner}}}$ The terms $K$ and $M$ are given by: $$ -K = \frac{Ja\left(\alpha B_{\text{a}} - B_{\text{b}}\right)}{(\alpha-1)} +K = \frac{J r_{\text{CS,inner}}\left(\alpha B_{\text{CS,inner}} - B_{\text{CS,outer}}\right)}{(\alpha-1)} $$ $$ -M = \frac{Ja\left(B_{\text{a}} - B_{\text{b}}\right)}{(\alpha-1)} +M = \frac{J r_{\text{CS,inner}}\left(B_{\text{CS,inner}} - B_{\text{CS,outer}}\right)}{(\alpha-1)} $$ -For a special infinite solenoid case $B$ +------------- -The axial stress can be calculated using "Case studies in superconducting magnets", Y. Iwasa, p. -86, 3.5.2, Special Case 4: Midplane force. This applies exactly only to a thin-walled solenoid. -The axial stress in the steel is given by: + +### Hoop stress | `calculate_cs_hoop_stress()` + + + + +The hoop stress is calculated using Equation 4.10 from "Superconducting magnets" [^1]. This is divided by the fraction of the area occupied by steel to obtain the hoop +stress in the steel, $\sigma_{\theta}$. $$ -\sigma_z = \frac{F_z}{f_z A_z} +\sigma_{\theta} = \frac{K(2+v)}{3(\alpha+1)}\times \left(\alpha^2+\alpha+1+\frac{\alpha^2}{\epsilon^2}-\epsilon \frac{(1+2v)(\alpha+1)}{(2+v)}\right) \\ +- \frac{M(3+v)}{8}\left(\alpha^2+1+\frac{\alpha^2}{\epsilon^2}-\frac{(1+3v)}{(3+v)}\epsilon^2\right) $$ -where $F_z$ is the axial force, $f_z$ is the fraction of the horizontal cross-section occupied by -steel, and $A_z$ is the area of the horizontal cross-section. +Where: -The fraction of the horizontal cross-section occupied by steel is calculated assuming that the -conductor is square and has a steel jacket with the same thickness on all four sides, giving: +- $\epsilon = \frac{r}{r_{\text{CS,inner}}}$ +- $\alpha = \frac{r_{\text{CS,outer}}}{r_{\text{CS,inner}}}$ + +The terms $K$ and $M$ are given by: + +$$ +K = \frac{J r_{\text{CS,inner}}\left(\alpha B_{\text{CS,inner}} - B_{\text{CS,outer}}\right)}{(\alpha-1)} +$$ $$ -f_z = \frac{f_V}{2}. +M = \frac{J r_{\text{CS,inner}}\left(B_{\text{CS,inner}} - B_{\text{CS,outer}}\right)}{(\alpha-1)} $$ +!!! warning "Assumption of outer field, $B_{\text{CS,outer}}$" + + In this case we currently assume that $B_{\text{CS,outer}} = 0$. This is the same as that for an infinite solenoid. Approximation of the outboard field is currently not performed. + +-------------------------- + + + + + The radial stress is neglected. The hoop and axial stresses are combined to give the maximum shear stress, as required by the Tresca stress criterion: diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index c0c235bd4d..5d5a90a427 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3722,8 +3722,8 @@ def calculate_cs_bore_magnetic_field( References ---------- - -"Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, - ISBN 13: 9780198548102 + [1] "Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, + ISBN 13: 9780198548102 """ beta = dz_cs_half / r_cs_inner alpha = r_cs_outer / r_cs_inner @@ -4120,14 +4120,14 @@ def calculate_cs_radial_stress( epsilon = r_stress_point / r_cs_inner # Field at outer radius of coil [T] - # Assume to be 0 for now - b_b = 0.0e0 + # Assume to be 0 for now same as for an infinite solenoid + b_cs_outer = 0.0e0 # K term - k = ((alpha * b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) + k = ((alpha * b_cs_inner - b_cs_outer) * j_cs * r_cs_inner) / (alpha - 1.0e0) # M term - m = ((b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) + m = ((b_cs_inner - b_cs_outer) * j_cs * r_cs_inner) / (alpha - 1.0e0) # calculate hoop stress terms hp_term_1 = k * ((2.0e0 + f_poisson_cs_structure) / (3.0e0 * (alpha + 1.0e0))) From ce7e6402902d9feb71136a56f5e50ebca527b14a Mon Sep 17 00:00:00 2001 From: mn3981 Date: Thu, 21 May 2026 18:01:07 +0100 Subject: [PATCH 26/48] :sparkle: Add `a_cs_toroidal` to store the top down cross section --- process/core/io/plot/summary.py | 1 + process/data_structure/pfcoil_variables.py | 3 + process/models/pfcoil.py | 104 +++++++++++---------- tests/unit/models/test_pfcoil.py | 20 ++-- 4 files changed, 71 insertions(+), 57 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index b370903ee1..134e139fe4 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -10052,6 +10052,7 @@ def plot_cs_coil_structure( f"CS full height: {mfile.get('dz_cs_full', scan=scan):.4f} m\n" f"CS full width: {mfile.get('dr_cs_full', scan=scan):.4f} m\n" f"CS poloidal area: {mfile.get('a_cs_poloidal', scan=scan):.4f} m$^2$\n" + f"CS top-down toroidal area: {mfile.get('a_cs_toroidal', scan=scan):.4f} m$^2$\n" f"$N_{{\\text{{turns}}}}:$ {mfile.get('n_pf_coil_turns[n_cs_pf_coils-1]', scan=scan):,.2f}\n" f"$I_{{\\text{{peak}}}}:$ {mfile.get('c_pf_cs_coils_peak_ma[n_cs_pf_coils-1]', scan=scan):.3f}$ \\ MA$\n" f"$B_{{\\text{{peak}}}}:$ {mfile.get('b_pf_coil_peak[n_cs_pf_coils-1]', scan=scan):.3f}$ \\ T$\n" diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index cc990ee4b9..0aad3f7575 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -106,6 +106,9 @@ class PFCoilData: - =1 Hoop + Axial stress """ + a_cs_toroidal: float = 0.0 + """Central solenoid top-down toroidal cross-sectional area (m2)""" + a_cs_poloidal: float = 0.0 """Central solenoid vertical cross-sectional area (m2)""" diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 5d5a90a427..7b4d0a4a29 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -195,6 +195,7 @@ def pfcoil(self): cs_geometry.r_cs_coil_inner ) self.data.pf_coil.a_cs_poloidal = cs_geometry.a_cs_poloidal + self.data.pf_coil.a_cs_toroidal = cs_geometry.a_cs_toroidal self.data.pf_coil.dz_cs_full = cs_geometry.dz_cs_full self.data.pf_coil.dr_cs_full = cs_geometry.dr_cs_full @@ -2086,28 +2087,28 @@ def outpf(self): ) op.ovarre( self.outfile, - "Critical superconductor current density at BOP (A/m2)", + "Critical superconductor current density at BOP [A/m²]", "(j_cs_conductor_critical_pulse_start)", self.data.pf_coil.j_cs_conductor_critical_pulse_start, "OP ", ) op.ovarre( self.outfile, - "Critical cable current density at BOP (A/m2)", + "Critical cable current density at BOP [A/m²]", "(jcableoh_bop)", self.data.pf_coil.jcableoh_bop, "OP ", ) op.ovarre( self.outfile, - "Allowable overall current density at BOP (A/m2)", + "Allowable overall current density at BOP [A/m²]", "(j_cs_critical_pulse_start)", self.data.pf_coil.j_cs_critical_pulse_start, "OP ", ) op.ovarre( self.outfile, - "Actual overall current density at BOP (A/m2)", + "Actual overall current density at BOP [A/m²]", "(j_cs_pulse_start)", self.data.pf_coil.j_cs_pulse_start, "OP ", @@ -2115,35 +2116,35 @@ def outpf(self): op.oblnkl(self.outfile) op.ovarre( self.outfile, - "Maximum field at End Of Flattop (T)", + "Maximum field at End Of Flattop [T]", "(b_cs_peak_flat_top_end)", self.data.pf_coil.b_cs_peak_flat_top_end, "OP ", ) op.ovarre( self.outfile, - "Critical superconductor current density at EOF (A/m2)", + "Critical superconductor current density at EOF [A/m²]", "(j_cs_conductor_critical_flat_top_end)", self.data.pf_coil.j_cs_conductor_critical_flat_top_end, "OP ", ) op.ovarre( self.outfile, - "Critical cable current density at EOF (A/m2)", + "Critical cable current density at EOF [A/m²]", "(jcableoh_eof)", self.data.pf_coil.jcableoh_eof, "OP ", ) op.ovarre( self.outfile, - "Allowable overall current density at EOF (A/m2)", + "Allowable overall current density at EOF [A/m²]", "(j_cs_critical_flat_top_end)", self.data.pf_coil.j_cs_critical_flat_top_end, "OP ", ) op.ovarre( self.outfile, - "Actual overall current density at EOF (A/m2)", + "Actual overall current density at EOF [A/m²]", "(j_cs_flat_top_end)", self.data.pf_coil.j_cs_flat_top_end, ) @@ -2165,55 +2166,62 @@ def outpf(self): # MDK add self.data.build.dr_cs, self.data.build.dr_bore and self.data.build.dr_cs_tf_gap as they can be iteration variables op.ovarre( self.outfile, - "CS inside radius (m)", + "CS inside radius [m]", "(dr_bore)", self.data.build.dr_bore, ) - op.ovarre(self.outfile, "CS thickness (m)", "(dr_cs)", self.data.build.dr_cs) + op.ovarre(self.outfile, "CS thickness [m]", "(dr_cs)", self.data.build.dr_cs) op.ovarre( self.outfile, - "Gap between central solenoid and TF coil (m)", + "Gap between central solenoid and TF coil [m]", "(dr_cs_tf_gap)", self.data.build.dr_cs_tf_gap, ) op.ovarre( self.outfile, - "CS overall cross-sectional area (m2)", + "CS total poloidal cross-sectional area [m²]", "(a_cs_poloidal)", self.data.pf_coil.a_cs_poloidal, "OP ", ) op.ovarre( self.outfile, - "CS radial middle (m)", + "CS total top-down toroidal cross-sectional area [m²]", + "(a_cs_toroidal)", + self.data.pf_coil.a_cs_toroidal, + "OP ", + ) + op.ovarre( + self.outfile, + "CS radial middle [m]", "(r_cs_middle)", self.data.pf_coil.r_cs_middle, "OP ", ) op.ovarre( self.outfile, - "CS radial inner (m)", + "CS radial inner [m]", "(r_cs_inner)", self.data.pf_coil.r_cs_inner, "OP ", ) op.ovarre( self.outfile, - "CS radial outer (m)", + "CS radial outer [m]", "(r_cs_outer)", self.data.pf_coil.r_cs_outer, "OP ", ) op.ovarre( self.outfile, - "CS conductor+void cross-sectional area (m2)", + "CS conductor+void cross-sectional area [m²]", "(a_cs_cable_space)", self.data.pf_coil.a_cs_cable_space, "OP ", ) op.ovarre( self.outfile, - " CS conductor cross-sectional area (m2)", + " CS conductor cross-sectional area [m²]", "(a_cs_cable_space*(1-f_a_cs_void))", self.data.pf_coil.a_cs_cable_space * (1.0e0 - self.data.pf_coil.f_a_cs_void), @@ -2221,14 +2229,14 @@ def outpf(self): ) op.ovarre( self.outfile, - " CS void cross-sectional area (m2)", + " CS void cross-sectional area [m²]", "(a_cs_cable_space*f_a_cs_void)", self.data.pf_coil.a_cs_cable_space * self.data.pf_coil.f_a_cs_void, "OP ", ) op.ovarre( self.outfile, - "CS steel cross-sectional area (m2)", + "CS steel cross-sectional area [m²]", "(a_cs_steel_poloidal)", self.data.pf_coil.a_cs_steel_poloidal, "OP ", @@ -3030,6 +3038,8 @@ class CSGeometry: """Inner radius of CS coil (m)""" a_cs_poloidal: float """Total poloidal cross-sectional area of CS coil (m²)""" + a_cs_toroidal: float + """Total top-down toroidal cross-sectional area of CS coil (m²)""" dz_cs_full: float """Full height of CS coil (m)""" dr_cs_full: float @@ -3075,16 +3085,17 @@ def calculate_cs_geometry( ------- CSGeometry Data class containing the geometry parameters of the CS coil, including: - - z_cs_coil_upper: Upper Z coordinate of CS coil (m) - - z_cs_coil_lower: Lower Z coordinate of CS coil (m) - - r_cs_coil_middle: Radial coordinate of CS coil centre (m) - - r_cs_middle: Mean radius of CS coil (m) - - z_cs_coil_middle: Z coordinate of CS coil centre (m) - - r_cs_coil_outer: Outer radius of CS coil (m) - - r_cs_coil_inner: Inner radius of CS coil (m) - - a_cs_poloidal: Total poloidal cross-sectional area of CS coil (m²) - - dz_cs_full: Full height of CS coil (m) - - dr_cs_full: Full radial thickness of CS coil (m) + - z_cs_coil_upper: Upper Z coordinate of CS coil [m] + - z_cs_coil_lower: Lower Z coordinate of CS coil [m] + - r_cs_coil_middle: Radial coordinate of CS coil centre [m] + - r_cs_middle: Mean radius of CS coil [m] + - z_cs_coil_middle: Z coordinate of CS coil centre [m] + - r_cs_coil_outer: Outer radius of CS coil [m] + - r_cs_coil_inner: Inner radius of CS coil [m] + - a_cs_poloidal: Total poloidal cross-sectional area of CS coil [m²] + - a_cs_toroidal: Total top-down toroidal cross-sectional area of CS coil [m²] + - dz_cs_full: Full height of CS coil [m] + - dr_cs_full: Full radial thickness of CS coil [m] """ # Central Solenoid mean radius r_cs_middle = dr_bore + (0.5e0 * dr_cs) @@ -3111,9 +3122,12 @@ def calculate_cs_geometry( # Full radial thickness of CS coil dr_cs_full = 2 * r_cs_coil_outer - # Total cross-sectional area + # Total poloidal cross-sectional area [m²] a_cs_poloidal = 2.0e0 * z_cs_inside_half * dr_cs + # Total top-down toroidal cross-sectional area [m²] + a_cs_toroidal = np.pi * (r_cs_coil_outer**2 - r_cs_coil_inner**2) + return CSGeometry( z_cs_coil_upper=z_cs_coil_upper, z_cs_coil_lower=z_cs_coil_lower, @@ -3123,6 +3137,7 @@ def calculate_cs_geometry( r_cs_coil_outer=r_cs_coil_outer, r_cs_coil_inner=r_cs_coil_inner, a_cs_poloidal=a_cs_poloidal, + a_cs_toroidal=a_cs_toroidal, dz_cs_full=dz_cs_full, dr_cs_full=dr_cs_full, ) @@ -3307,6 +3322,7 @@ def ohcalc(self): self.data.pf_coil.n_cs_pf_coils - 1 ] = cs_geometry.r_cs_coil_inner self.data.pf_coil.a_cs_poloidal = cs_geometry.a_cs_poloidal + self.data.pf_coil.a_cs_toroidal = cs_geometry.a_cs_toroidal self.data.pf_coil.dz_cs_full = cs_geometry.dz_cs_full self.data.pf_coil.dr_cs_full = cs_geometry.dr_cs_full @@ -3462,7 +3478,6 @@ def ohcalc(self): f_a_cs_turn_steel=self.data.pf_coil.f_a_cs_turn_steel, ) - # New calculation from Y. Iwasa for axial stress ( self.data.pf_coil.stress_z_cs_self_peak_midplane, self.data.pf_coil.forc_z_cs_self_peak_midplane, @@ -3470,14 +3485,12 @@ def ohcalc(self): r_cs_outer=self.data.pf_coil.r_pf_coil_outer[ self.data.pf_coil.n_cs_pf_coils - 1 ], - r_cs_inner=self.data.pf_coil.r_pf_coil_inner[ - self.data.pf_coil.n_cs_pf_coils - 1 - ], dz_cs_half=self.data.pf_coil.dz_cs_full / 2.0, c_cs_peak=self.data.pf_coil.c_pf_cs_coils_peak_ma[ self.data.pf_coil.n_cs_pf_coils - 1 ] * 1.0e6, + a_cs_toroidal=self.data.pf_coil.a_cs_toroidal, ) # Allowable (hoop) stress (Pa) alstroh @@ -3878,22 +3891,22 @@ def output_cs_structure(self): @staticmethod def calculate_cs_self_peak_midplane_axial_stress( r_cs_outer: float, - r_cs_inner: float, dz_cs_half: float, c_cs_peak: float, + a_cs_toroidal: float, ) -> tuple[float, float]: """Calculate axial stress and axial force for the central solenoid. Parameters ---------- r_cs_outer: - Outer radius of the central solenoid (m). - r_cs_inner: - Inner radius of the central solenoid (m). + Outer radius of the central solenoid [m]. dz_cs_half: - Half-height of the central solenoid (m). + Half-height of the central solenoid [m]. c_cs_peak: - Peak CS coil current (A). + Peak CS coil current [A]. + a_cs_toroidal: + Total top-down toroidal area of the CS [m²]. Returns ------- @@ -3949,12 +3962,9 @@ def calculate_cs_self_peak_midplane_axial_stress( # calculate axial force [N] forc_z_cs_self_peak_midplane = axial_term_1 * (axial_term_2 - axial_term_3) - # axial area [m2] - area_ax = np.pi * (r_cs_outer**2 - r_cs_inner**2) - # Calculate unsmeared axial stress # Average axial stress at the interface of each half of the coil - s_axial = forc_z_cs_self_peak_midplane / (0.5 * area_ax) + s_axial = forc_z_cs_self_peak_midplane / (0.5 * a_cs_toroidal) return s_axial, forc_z_cs_self_peak_midplane @@ -3966,9 +3976,6 @@ def calculate_cs_self_midplane_axial_stress_time_profile( r_cs_outer=self.data.pf_coil.r_pf_coil_outer[ self.data.pf_coil.n_cs_pf_coils - 1 ], - r_cs_inner=self.data.pf_coil.r_pf_coil_inner[ - self.data.pf_coil.n_cs_pf_coils - 1 - ], dz_cs_half=self.data.pf_coil.dz_cs_full / 2.0, c_cs_peak=( self.data.pf_coil.c_pf_coil_turn[ @@ -3978,6 +3985,7 @@ def calculate_cs_self_midplane_axial_stress_time_profile( self.data.pf_coil.n_cs_pf_coils - 1 ] ), + a_cs_toroidal=self.data.pf_coil.a_cs_toroidal, ) self.data.pf_coil.stress_z_cs_self_midplane_profile[time] = stress_value diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index 340cebeadc..a0cae1c1cc 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -2057,6 +2057,7 @@ def test_brookscoil(pfcoil): 0.44999999999999996, 0.14999999999999997, 0.6, + 0.5654866776461627, 2.0, 0.8999999999999999, ), @@ -2067,7 +2068,7 @@ def test_brookscoil(pfcoil): 0.5, 0.0, 0.0, - CSGeometry(1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0), + CSGeometry(1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0), ), # Zero fractional height ( @@ -2084,6 +2085,7 @@ def test_brookscoil(pfcoil): 1.7999999999999998, 1.4999999999999998, 0.0, + 3.1101767270538945, 0.0, 3.5999999999999996, ), @@ -2356,12 +2358,12 @@ def test_calculate_cs_turn_geometry_eu_demo_output_consistency( def test_calculate_cs_self_peak_midplane_axial_stress_basic(cs_coil): # Typical values for a CS coil r_cs_outer = 2.0 - r_cs_inner = 1.5 + a_cs_toroidal = 5.497787144 dz_cs_half = 1.0 c_cs_peak = 1.2e7 # 12 MA s_axial, force_axial = cs_coil.calculate_cs_self_peak_midplane_axial_stress( - r_cs_outer, r_cs_inner, dz_cs_half, c_cs_peak + r_cs_outer, dz_cs_half, c_cs_peak, a_cs_toroidal ) # Check actual output numbers @@ -2376,12 +2378,12 @@ def test_calculate_cs_self_peak_midplane_axial_stress_basic(cs_coil): def test_calculate_cs_self_peak_midplane_axial_stress_zero_current(cs_coil): # Zero current should yield zero force and stress r_cs_outer = 2.0 - r_cs_inner = 1.5 + a_cs_toroidal = 5.497787144 dz_cs_half = 1.0 c_cs_peak = 0.0 s_axial, force_axial = cs_coil.calculate_cs_self_peak_midplane_axial_stress( - r_cs_outer, r_cs_inner, dz_cs_half, c_cs_peak + r_cs_outer, dz_cs_half, c_cs_peak, a_cs_toroidal ) assert pytest.approx(s_axial) == 0.0 @@ -2391,12 +2393,12 @@ def test_calculate_cs_self_peak_midplane_axial_stress_zero_current(cs_coil): def test_calculate_cs_self_peak_midplane_axial_stress_extreme_geometry(cs_coil): # Very thin coil, large dz_cs_half r_cs_outer = 1.01 - r_cs_inner = 1.0 + a_cs_toroidal = 0.06314601234 dz_cs_half = 10.0 c_cs_peak = 1.0e7 s_axial, force_axial = cs_coil.calculate_cs_self_peak_midplane_axial_stress( - r_cs_outer, r_cs_inner, dz_cs_half, c_cs_peak + r_cs_outer, dz_cs_half, c_cs_peak, a_cs_toroidal ) # Check actual output numbers @@ -2410,12 +2412,12 @@ def test_calculate_cs_self_peak_midplane_axial_stress_extreme_geometry(cs_coil): def test_calculate_cs_self_peak_midplane_axial_stress_invalid(cs_coil): # Negative dz_cs_half should still return floats, but may be positive force r_cs_outer = 2.0 - r_cs_inner = 1.5 + a_cs_toroidal = 5.497787144 dz_cs_half = 2.0 c_cs_peak = 1.2e7 s_axial, force_axial = cs_coil.calculate_cs_self_peak_midplane_axial_stress( - r_cs_outer, r_cs_inner, dz_cs_half, c_cs_peak + r_cs_outer, dz_cs_half, c_cs_peak, a_cs_toroidal ) # Check actual output numbers From 3e33e93d429d6fa55875d90292d2879c1d852af4 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 22 May 2026 10:31:50 +0100 Subject: [PATCH 27/48] Update CS geometry docs --- .../source/eng-models/central-solenoid.md | 34 +++++++++++++++++-- process/models/pfcoil.py | 14 ++++---- 2 files changed, 39 insertions(+), 9 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index b024fa6278..4ac96f2dd4 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -33,7 +33,7 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per 2. The half height of the CS is set relative to that of the inside height of the TF and can be scaled by changing the input value of `f_z_cs_tf_internal`: $$ - \overbrace{z_{\text{CS,half}}}^{\texttt{z_cs_inside_half}} = \overbrace{z_{\text{TF,inside-half}}}^{\texttt{z_tf_inside_half}} \times \texttt{f_z_cs_tf_internal} + \overbrace{z_{\text{CS,half}}}^{\texttt{z_cs_half}} = \overbrace{z_{\text{TF,inside-half}}}^{\texttt{z_tf_inside_half}} \times \texttt{f_z_cs_tf_internal} $$ 3. The full height of the CS is thus simply given by @@ -42,6 +42,17 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per \overbrace{dz_{\text{CS}}}^{\texttt{dz_cs_full}} = z_{\text{CS,half}} \times 2 $$ + Along with the upper and lower dimensions: + + $$ + z_{\text{CS,upper}} = z_{\text{CS,half}} + $$ + + $$ + z_{\text{CS,lower}} = -z_{\text{CS,upper}} + $$ + + 4. The outboard edge of the CS is given by: @@ -49,12 +60,31 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per r_{\text{CS,outer}} = r_{\text{CS,middle}} + \frac{dr_{\text{CS}}}{2} $$ -5. The full poloidal cross-sectional area is given by: +5. The inboard edge of the CS is given by: + + $$ + r_{\text{CS,inner}} = r_{\text{CS,outer}} - dr_{\text{CS}} + $$ + +6. The full radial width of the CS is given by: + + $$ + dr_{\text{CS,full}} = 2 \times r_{\text{CS,outer}} + $$ + + +7. The full poloidal cross-sectional area is given by: $$ \overbrace{A_{\text{CS,poloidal}}}^{\texttt{a_cs_poloidal}} = 2 \times dr_{\text{CS}} \times dz_{\text{CS}} $$ +8. The full top-down toroidal cross-sectional area is given by: + + $$ + \overbrace{A_{\text{CS,toroidal}}}^{\texttt{a_cs_toroidal}} = \pi \left(r_{\text{CS,outer}}^2 - r_{\text{CS,inner}}^2 \right) + $$ + ------------ diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 7b4d0a4a29..430016c319 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3101,12 +3101,12 @@ def calculate_cs_geometry( r_cs_middle = dr_bore + (0.5e0 * dr_cs) # Scale the CS height relative to TF bore height - z_cs_inside_half = z_tf_inside_half * f_z_cs_tf_internal + z_cs_half = z_tf_inside_half * f_z_cs_tf_internal - dz_cs_full = 2.0e0 * z_cs_inside_half # Full height of CS coil + dz_cs_full = 2.0e0 * z_cs_half # Full height of CS coil # Z coordinates of CS coil edges - z_cs_coil_upper = z_cs_inside_half + z_cs_coil_upper = z_cs_half z_cs_coil_lower = -z_cs_coil_upper # (R,Z) coordinates of coil centre @@ -3123,7 +3123,7 @@ def calculate_cs_geometry( dr_cs_full = 2 * r_cs_coil_outer # Total poloidal cross-sectional area [m²] - a_cs_poloidal = 2.0e0 * z_cs_inside_half * dr_cs + a_cs_poloidal = dz_cs_full * dr_cs # Total top-down toroidal cross-sectional area [m²] a_cs_toroidal = np.pi * (r_cs_coil_outer**2 - r_cs_coil_inner**2) @@ -3778,9 +3778,9 @@ def calculate_cs_self_peak_magnetic_field( References ---------- - - Fits are taken from the figure on p.22 of M. Wilson's book - "Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, - ISBN 13: 9780198548102 + [1] Fits are taken from the figure on p.22 of M. Wilson's book + "Superconducting Magnets", Clarendon Press, Oxford, N.Y., 1983, + ISBN 13: 9780198548102 """ beta = dz_cs_half / r_cs_inner alpha = r_cs_outer / r_cs_inner From e97aa8825b7405215d3df99bd70538770aa3427b Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 22 May 2026 11:25:15 +0100 Subject: [PATCH 28/48] Add EU DEMO turn geometry calculations and update tests --- .../source/eng-models/central-solenoid.md | 45 ++++++++++++ .../eng-models/images/cs_eu_demo_turn.PNG | Bin 0 -> 29163 bytes process/models/pfcoil.py | 65 ++++++++++++----- tests/unit/models/test_pfcoil.py | 69 +++++++----------- 4 files changed, 115 insertions(+), 64 deletions(-) create mode 100644 documentation/source/eng-models/images/cs_eu_demo_turn.PNG diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 4ac96f2dd4..43095c9b8b 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -85,6 +85,50 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per \overbrace{A_{\text{CS,toroidal}}}^{\texttt{a_cs_toroidal}} = \pi \left(r_{\text{CS,outer}}^2 - r_{\text{CS,inner}}^2 \right) $$ +------------ + +### EU-DEMO Turn Geometry | `calculate_cs_turn_geometry_eu_demo()` + +This turn superconducting turn strucutre for the CS assumes a rectangular turn shape with a "stadium" shaped cable area[^eu_demo_turn]. + + +![CS turn layout](../eng-models/images/cs_eu_demo_turn.PNG "CS EU-DEMO like turn") + +The turn geometry is calculated as follows: + +1. The vertical height of the turn is given by: + + $$ + dz_{\text{CS,turn}} = \left(\frac{A_{\text{CS,turn}}}{\texttt{f_dr_dz_cs_turn}}\right)^2 + $$ + + $\texttt{f_dr_dz_cs_turn}$ is the intended length to height ratio of the turn + +2. The radial width or length of the turn is now given by: + + $$ + dr_{\text{CS,turn}} = \texttt{f_dr_dz_cs_turn} \times dz_{\text{CS,turn}} + $$ + +3. The radius of the corners of the cable space is given by: + + $$ + r_{\text{CS,cable space corner}} = - \frac{dr_{\text{CS,turn}}-dz_{\text{CS,turn}}}{\pi} \\ + + \sqrt{\left(\frac{dr_{\text{CS,turn}}-dz_{\text{CS,turn}}}{\pi}\right)^2+ \frac{dr_{\text{CS,turn}}dz_{\text{CS,turn}}(4-\pi)r_{\text{CS,turn corners}}^2 - (A_{\text{CS,turn}}\times \texttt{f_a_cs_turn_steel})}{\pi}} + $$ + +4. The thickness of the conduit around the cable space is given by: + + $$ + dz_{\text{CS,turn conduit}} = \frac{dz_{\text{CS,turn}}}{2} - r_{\text{CS,cable space corner}} + $$ + + In this model the vertical and radial conduit thicknesses are equal so: + + $$ + dr_{\text{CS,turn conduit}} = dz_{\text{CS,turn conduit}} + $$ + ------------ @@ -414,4 +458,5 @@ constraints (26 and 27) are activated. [^1]: M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983, ISBN 13: 9780198548102 [^2]: Case Studies in Superconducting Magnets. Boston, MA: Springer US, 2009. doi: https://doi.org/10.1007/b112047. +[^eu_demo_turn]: R. Wesche et al., “Central solenoid winding pack design for DEMO,” Fusion Engineering and Design, vol. 124, pp. 82-85, Apr. 2017, doi: https://doi.org/10.1016/j.fusengdes.2017.04.052. ‌ \ No newline at end of file diff --git a/documentation/source/eng-models/images/cs_eu_demo_turn.PNG b/documentation/source/eng-models/images/cs_eu_demo_turn.PNG new file mode 100644 index 0000000000000000000000000000000000000000..12da0804912b8a05c48aad112bc14de1f34b0b48 GIT binary patch literal 29163 zcmbrmcQ}{*|3CcJup)%4kl9ihDM@DbiVBgf>={vJQOJx!T0}(%Wke!7QQ1UxNhEt_ z+>g`e^ZVY%{rerq@1OfRuC7b5@pB0!bvY z?UdyBlj$^0X8e!rvaYf`>D8BAzww(b)^eJ1BvNkFwiWZO_&t@2%K6JA(hhgx7g_Hm zZZ8taH9+;0+*vP^@t&&}&gd`8Olt3#=VUs&MRDte)2+of4CS)k87n1w*w!9OX)n;q z>bdlMySZdpdYh|*qkV>P&YAq3nI47bjN~(PSzbQXWnf}D#qh0=e)q41+G7h^e^pf| zw^&{6&DJ+boOyVeQOoJCuiM1QU!PblX@cnGDS1-Q#LR5{&sQ@^R?!=O#F+Ab{UTa$ z@4kK4)t*(%jdkdpIa3*|=sD3_eP7Hv`u_d8V98y{+M;4&IyyS#!AAFV(}Q%=e}tWQ zSo12_(O6THR#a5fWwdo46EpMFfL`1Ac24AEJJ~BY}^tqBs!TD;bM=mTTLm-e0%p&ir%NuJ~_v9cK@{gtGFh?B=Uj&9z1ixTnrX!#cN@_}>*(m3-{0Qs znVz1WY(1lGK3Ekx(p`Ai&CShayh}XOsBnAs`+0U;i0+v)3~X#v$BrEnI{$i0)X8~P zsgoyNha1>@rm9&CaxJ#<^71ZLZ!YG%D}7&s{F!cOLISHQn`J}N-&J9c(X+cwUSq=T zOAx(CeQn`y#Ov3h7s~uNIgUDfczv<{Z~Z@}n4eWur=+cz_ur$wbLWnVhK9rB8;5-n z#&q4Aaj?!#gN8)$ZQFJVeYml8TlC|{k+^Q3rJwN|bO6gx5g>D~d_8un{+H4jgCMqaeCnylV& z?%cUQ--|8}&V+25xK+6#H8}+=GW@)eRpDGD{(IuEmCfWg?&Es zHD)gQg1G@F=HvbWBVhSC5@8^IK&l#ny`p9ypNE-h0gJn~&kYUETRL!G&nG^7V&*4w#7)jG{N zy2;LeG7#M>^u$_7j$zcK)aU-qn>R&B7BT!n$E2knZ{4y*m_$SJ{{1X|HqP#XqT<%E zj%?GEf2Sr#GqOdUot?=8u6ldFVKMc&lip^h%E@ylEGo+S`t|FB{}M$kZ#AV(em>S` z_2tVK8qzjuYKtd+%jt5WHkr<|^-HO{#l`QPT$!wFXll~&S#4}Q9hZ=>w_t#KxgO7y z=^qDa+qP}?llhFewzFsN8Wi%xy$W8L=G?W5-`DKVNxy&Ng)tY;>glQVa*&3{#t!`M z{{H>KQR^?eR5@{8fzskNm6d^8$;qdyX(hcTcXNnc3SX48tO+;o^IhOHjlkoL5m2x4 zpe1diqOxuM)zP>x*5lcCk%x!JVl|lCFX7qq=W3%P{(ZB3)@EkAPq>dnryk;Qq%sy$ z31M4WS|SC6GVYn?i9PDv8_w;wI8bVQ?8RY8N%k`@v=l8Yc-IzdWz;Oj+OsP0Qzmg> z^QGyZi~WIg(b3Vn(<{~0)hqMuJA_7KpQ*Nr1bVr#>4oAeQot*h9V_6?}Fh){6{!le`Iz0;uMGb4|%CvgPLa%p>WSp9+s+^6@ z-cO%Cxr{XO5XTb{VVL>#m1T_b#gm%}Yrh8{9CPLs72QExrVu~>7VMz6S7)BTr75rF z_7BHq%avhoZk=;!d9L}^V{E7NzdvHGOEtYit?6e(JpW!$<<2&Kx08yBs`ITYABtIY zY-}K|EA&Lvai!=E4QX)i1+RK~^X>gq0zdJTr|X)N>i|I?Mf4YeZR$rJAO zSH|`Fe5vF8ZxrN1T5r*Eu#)EII!tGh$$xWex?a9)DR!yBjN_P-6;`~@x!7>dBD;}~ zH*-@=<$G5DEvS!*_S})%vuDqIw{uzO#rVUfmq?x1+X5a}U0q#w&eeT;W6egI@3PNU z{WLT*#6~K(I&&#kh?n;Unb{NnwW8F&X*wyL_*M05IPP03U!Z!NkU2Jjpti!%JgFMi z2jcc|O=nse7#JMdGtUoRHfM`C*=+s$+Fl|5fr^_xAt>Zw5o}_&4qqZZQWe4w^Q&fU zr?1cYc?;a*n3QHbL5FXzFDk9qFz_j{t{S1L^7}3hKX4W${rPx@FXmdwt=?nnt7@8> z7fGFr+EP5}@%QdkKYaA)8?o+1lgGmjm+nn}=dxw431<)3eFmUu}Y-ntG6`z*Rl zEhWhX((l-DV|LbE^`wcbtB9H06QY`vCO`5;seDR#`n3P|Z(A4lXZ9VhyoT>v^IuF+ zijX%nOkBK>@ajeK#iMPdzW;=6oB6kF*)qxV#_jTD*U5f4jVIEN=**XAe@kE&RoDn;EknR@ei7Tuc5$?afaOS=b4yG{i9v7dQ9s5}y&%nsY zr`5Nav`72#7Lt%*9wo{~OzraA7+H@s1qlarp8jP`^Q2^K+xG2ovo`}|e*PIBrzOSA z#YYze#mLDwOioRak=}G1xj*yg&DW>i3x6eimydA2re5WAP-l!Gw^UXPXA?FfB|Qjw zpl@h+`<3y#>FP^V${)iyb9d}uxV%`Gi|?Tw={<9Xa-yzt%;?&Yd)8TVjjdxd6C%5J zldvN{e)=SjDp?c79fgu=(f0D3#RJ!&8uN+X_a7S?sya;lX=_-YrlbgTe01z9HJ%o} z*q9_|A?h(Ts7R81BJE3(EjilSsbDko^Jm+SuU``m85d6~K5cH+^}2d>syZm|#9f*l z7B#cKTSP3XDF1ZkR*nGBroDQ#Gs>d1y?xqT2kV`QdaJ3!9lzCOGLrOS|7O)CTnGPG zqnN_NV{t;~Z>+B^l###inxpdNefSbo$5o&*qCQ^!^+om5)mN`x1@xvHU7vg$$t`neU&rAVZXa_h^^VG0 zl-bTgp-v+w$+v9T&C9z9H^rdPiF5wXH@@Q+>3Xg$RWWM!PYzUi{mHG(@fg!1(f^`r z^>?4>HExcxc6L6zcJ*V`XNTOucg?>fH2sL-i8%c!u*z|Bn*2j-K0 za>DbFQaJ1N2##ZFF(ICPzWU)tcK93GL$NZNzyAK+jvAesni}GJW%`F|O6Z@#>aaU8 zF*lC&dMW7oEl!$?OfhLGn3npSk4bu4Tx?MnBhdN!;&d>8bZvIzx`2Az?xRQB`xCow+}PyMm8a@ciesiee?Isu-Xx~=gx|{Ba=KvL+Q8Jf zJ(<=(%86EY-|MEILeY8bGp(xXE8ivHcZ!Oq>h1KjTY_rUOoD;KY&>?8|eT%b;|iHHz9 zTGQ!vo=-V?)F|KX-lB=Tg2H*MqpGzg|HCM4)~HYo)zvo@Po2uaDivj6VVTE@RFCUu z9OL+B6m+q;xcD{T>hSpZ=ciAfh96QW`+6fVP{6llp)w=86tEcIb$jC8L^qq*rI7le z_^Ijo!(t=S90M~~0k*3p#Kd^N-39F#j>}%>!VmmP%0Wre5Z!kz$jQp{>*JH>ad|Uy za~IJQW6I8XaRW3GZLXoEB^IbNXK~RhS4$yiLaF1G@wdigh3eAjxjFGgjn}VVcj6HX zOuQg42loi0v_4qVQEbZLi3#UMmMH1vw8h@0kgMc3ODSn-nd29LRMke0w6=e@mixG> zRG7k7C68k&*xBtrbm1+@-`{`sZ%?<`DVwWTi@d1wl9EU#ugwOOmB|QdKNd>2j$FG# zvu4u)1{ToTdKN2)U}rh``Qm8@@_uzE-WEUWbldOA;_@I(Ar{hcQr85tRYSlBbYe|%(cO?5|0H@CLlQ?poH8_8LT zrCwFegzZ-gv@YPW$fvnn-&yGV#H+a2xv$h~aUgikE^*C)qw@Q;&V-*2yrb;$*@=Dg z=!9o~e}6zg04bdFgq~=##z$g&7L8BkB0w7cJ1kpE#g4q85`JyScMUOy^5076~DzV;& zL&{5*c6Ay4`0=AZtFX7i$oYMBaQ9X<@+_;0ASwy}HL1tG^XH{cxsQ&GftPPqR#rxH zlh$BQFDTfVpP%pI<~FEMwF$(_EWEtD{5l=OHXt2*q_ewwhR5Ri%a{8*ySmhz4yX!M zvMP9Zh@*uipWeIZ61MNa0R?pNUcY~iYUC&0;qF-i*bn+@geE5@vfsUX_X8Ta+i~OM z# z4i1YJ7Cc24v{r4lQs2B$+M#D=X{pemYjj;cImypqlNz~dMlO&t*8J~l<(I%QZ^Xy5 zm}&_97#&sXC^~-~o&Lgw3phwJdR}8v&ZU_8pCeuQ2mbu|vq&!zIRELt4^|*BwGB1A z|8LK`M!S5U5QC)GuXk+Sy46P{_w@PmY@n@6IL6?h#oc@NrmCyt@mIJPKf*${<{2LR z+xtEYH%t0d17w!G{fTuSCDXVcM2RTLXk^M}v^6i=Y|T4lNRbt$sesmkpQy5j=rRAt z7q;RB1qE1sNyn2C>&nZ?xVX6R^P}Iq5&QoAJ8>f*I~3ncWcIptt=aeW169G;a?rrP z6W_PorHRqwi?26#cGj*l6Whl`ov2(-jk{;_!h9=^dE{y#bLY2jO+R`*^T*bi;Zv8t z9VMG%wH5d9@W6GXHko`rYh#i*krho5MBgdJ;DHcRh}jG-JpB+#aJ+Qejggi<97<2K=%(>glW zmzS^o=LY>>bf`S``x;6qW?8a_;&C9d2*HBw?3xaoSFT(+LfuY{XJ%7#TQEsHDv$ld zi4(+KAkV(Pi<8s#vD|^AtK?aM!)$qk%p@TxIbB_~$*pMDr1xoE-HKoiAWRxaDuBo{Jm~xsWoyd^(3@^#mo8I-0{bw_t57JWbY%rE$3)L( z8S@AB`LCZ;irf{7=DV4oX#^U}%R5qnk&h z;JCR?J(8%x98FD4F_Kl+?Ck7_4U(l-k9`9b!*$`WacP19o&pWQ)v(^o&3V9ai8Z^j z;*&Uo<@q@OkI-NGx;l5j&k|0 zxaK;vrs;H+`OEmNOew1xUsp;ghgx)7Cq>B|xRMl*mbP~bIk^SMy2X16E-%?^=EgVH z+OnQi0UJjXvze(gb8BKkUoHgFXfyvH%~54DK2I=%xdrFF$-s_njP{f(#yDaA=q;NC5La%EuP2OzsjO_ z-YY27ZBTMN+x}%%dP339(b}cy;X~bLGmqDcx77|0wtE>{I?h?vbS2*YUAyGw_syr_ z`)i}(!{OD$@%%EAy(~>S47$H8vnANq#~U>l;7FMpM@k&6tsxGS+~L^Z)~#!_nvh=b z+@dDV{!njkUBa4a2YJ@{H{>8I2fsW#&KGy??AZ@(ZOrS-9c7d8Wh;uh+{JQy0|NuN z@uW+i69wYRK%*BYE9rEMjSt49pWP1)w4$Sf#eccwNsjw(-Pw^Qg>a6c{(iIB#4XTv zE|hrb=nfALlcU6+)z|0P<$AaN=j8l6If;phi8b@|-@kudTwG+a$M)~v&o9Ek!QuY9 zd26GweFdY^S)2^(g<#(B(Tm}1@8>fiq~zr0%AG%dKQ%k)Uw2PWkB+Hn6v&3EMdRG{ z3x||dRYT>tQ7u|KIx1UQ7^|zRV^~Rxi;J>?vB_y^AN#o;9XfQ#<;s;?N+}{X2V(2` zhlVzf?C@ACy<1_Oq?e&%Xt+Q0{y!QiDJj&HC^VV7@$u>w5vw%ezJB=cr}}!GbLRv? zMQV1(*Ec;=XNi3xXKR~Y?pT3MJ1{(a3mp$?v8n~BG0W%}N!Hahw>&EsEPeomc2+FF z#K`i=^^A-I4<9}Z_ampixykt5m8~Q|jIaHAx)lo_zFWIs^VHR_Un-?wk0965(i&-g z7S{CjYkmDTR6Qk`%>&*^ZFV}RPwx&TlSPj}%fo^2ITsHPbgxHE_B(G*$f^61qj8c4 zPR^E5JeS^V*`13k0W&Jc4f|nj_Q%`I-hSKR!-tcuPeiAG{m|Qsy3BP+1|Jj|@HYD^ zCS1U2|Hsf*&9hN<^Bx%z6E4KpC+VdFpZ`%0 z`Wny|DN=)KbVJ&A8Heq~cZ_-`l^qtDW1H-L3f5qO)gj@tDEwUe$syYole{G>EF_t# ze-mX<;o&s7LVNa5yuUVAq0H?Y1R|?Gy7>d>p|I6QdWY@;TJUqG`t{itG6YRj((i)A zyGz=K^?+WcETj+M-o^dA1C&ooolBR<%T}hhIrWz8+gF&I%MiQUZ-}NRo~pQndmwz{Cj#Y z6S?W>gsa9k<;k!B`)cRIf*R?-nga3m zsOQpUHGbqZ%XdV`@m-zJy1%!7A4^=OY4Dxb99OPk-L-310C^Yns!is>#3?qM6OaxW zRs{f}s8i%I``MJ-g5l-dgZ|{Sb15k)d_UZZsvSSiSz6*zJu$t!+|)Woz1n%&=uEc# zs92-T5iD#cU73mo>%P<7fQvM&!T~YmakJxveHOhXR|%*S8_P)QA8ATSko4GpWxVTV z(dA#$n#7uOA8V(DvL3@w1+ic+Ae5Tg?bK3fQ&Ur^`A*Blk(8*#Xw?k;?3(s0BMvDK zO<=|7$UO%RY=ipY*imQppzM+`1WFQr$1>GA9VI1w{p`}>q8TUxc?ZQMD=V`fAMeD7 zKGqNvlVH-yOnLQc`_G?0$;%2tE*@czC{O3IIG%5)+2=ttXHki*Dnj}?I_9&KY_`ze zu<0VWrud%cFIl;K2q0rUaYd;2>MzdJXU}*J9;7w(Ulk|lI%G8x2_F^lTk&$}EjjN{ z2ucSX|BTeLjI;Y)$J!6V-#C>y^XWi#|Bt%Zw6wGjP&cR6{!Q>5K1|2BM~i8Uek?sZ zTlw5MW`V#B@SqybyupIim4x(-jU8uO`ExZcUVK)*Puqg6hV|vkmo!?cj5A$6qLd_* zpqqLbija4J$cf&eI!GZa`e944m9U^7Ir>VVhG1p9sb46FlF0Qf0q{h^IgV|IIzTko z_H5HAI_X6c6ri~OX<#gMNdTtALxNKNV|W-^v&jxmY;)k5xI@PK_v!Dyw^vB$6l4^z zEE@8ga4@zrGcyxfjo&}xWQ86()m{?d^c>J{roqA9fErlZ(ay78g0Kua0;HQ)S-QceNX0nBXLLp0! zqajsRNDTY(`+M(>k=aA-mtH*3szJql@4cX8V8B{YSt)XR9ny^Fg@Qk^;?DFRu?c#`*K-fmc7&)>5G65xO?e z`3Sr$JA3=z|GG7NmuKaO!us7a%XXwO*`U;?=ttM`{Hct#rzIu3Pz%BLepVj56(h&{ z)T+^qFc1i?5g2OZ=->cNlZt|Z!nOAx{KR%0ef{9kQ9Ce;lvt-IHZk%izVmG4bX*O= zAq-HE7z6@`MQT2<5)Ti`++;`D+PUzew{OjWCI~leWp!0xJcNgUcmS^w2h~?QrCOuf zUCT;aP=7yu{#-p#wjTM$`s?kVIIYg2%X0_k^Y4%76?_0QFK4;HNM3vqgAvQc}RM{eQRx@L46CxvF0? z!=EctRb%-*u#@woVLzTyR5V{%oC^4x`1jXi@5pQ=$=w7Qk%X1vWjRH`?Gyb<6`TI( zrB8SFQEuN(PFh(Uijr{qL1}u^U6_FD9`G>w_Rn z@mP@m_kap1O+eu-X#x)_KLro+iU)IJwOM^vDOXtaYj$? z7TQ=6FvsjgN1}o!eySuO```MrT$~Z_-=E|R&E15xgu*^qy>O0@Yu5YTd1~*l4`a0? z*d#~>H}54V%!ZmkH^o=R)h@pikCjihX)`+LahCe#)6e5R-F!IkUMAwoKDM_Pd?xCA z%A)_8mX0HXB@G&ZVOAU+gBaLk*7LkPrv9VCAX#04H|2S_<{atjcH2r44~fAqt7)Hw zJf$snkauNEQ$b_|WL%;|YlRcE2I~uqPQ6U{L3(NF<3rH}H;RiTN0kqxWn~eR7fc9T zDGYoDX91*C-qe))+1UFV*T$)XTRVM!OK_sLwzj4cC%w}~M%}~19`;cPyT$)}p{GuMZa*^?-@$8XXZQPwY!Km8=JN;Hm^2Xhs|TN` zs;PnBc889QnT?HbwNIToHJNZZk_9Ki*_j_c;|{@WKU+*ra1}VH5Wbo0L%AQ@c31`%zRx z1T8@9UN#3oXbqRe4L9V4yiKFZV@ZB_ps@+37C zBpS(Ka}&Y=Gz^rc|99(Posth8x!yL+_CtW5-wehq^f+>*D6Y@J94BK8-o8=Q)7!ae z(N%`UWW(xkfxjHLR zkl>@st5i0RY5)AW6RD@1k9;U$sMZl{QGAS|8+g0P6Yv!{%d_ zZvY_nX5gZmpx#OW|31Quu(&X<8h6^lf z2EoRA8Qts500OzL{$PMVt-hnBkB+UI`^Y6z3x_^Rv41hQxJ7`~_OuX})sQKOUqWblxPiiQ4{if^7ENj#8 zWh$eaWnrBFE)nJ_yuC9*{;P8xQ{@!gN4$cR1Y-w&#+%l_4PT57f|UTNWzoXR+j|I_ zdWRL1^L%H8e$YtQ)d!G2{?${gv_f7U#UtCsJ7XNclX^6ULZ4xI=s9S`K=F$*Eqf5G3bj#4iV9eoE;GZLR#sL-SzwQ- z8M)F>UM~0DDY0wk{qD%3q9QhaAL0@-G6GQ@LBR!b(b!zM2mby&6iW61QGkf2PkE)5 ze#F9Bd&Gaq*_jUiy!jV{Qw8QzMV5uZ$;nBxD;}p=SzWyq!gI`K#c&a*#7Wvuq;nv| z>ge1lf3_Py9g4I(pf|b!zX;YEH#fIzeB(^r(;S&>2#T;H4E%7i;an#ZW8`{?$OO_0 z$ClgOpTl6HLdZc@N$HkB91<8N@2?FEMak3vhVjoOb4cxg3GdilV2&Vx#nO|t**&|E zAuDw5i)#&b5(v3{TOOr~TXeETTV_fzBrL4*4xciO7UQrb_cb)G0UFc# z-2@WBdggFE5MN)NTHCpgDmg3K=eJl#JGzMI{RSJO)uJ4Y{H%-&F%>5T1qDK|0Q!}h zs$z^`o%K6UT~<0vRaQ0YA4)yzKXCq?qp$BtLKB>vbV*D~pl=pJby9={h9n71fg;?A z!6=h~kMYt2D))-US=TLDFLjM_{}gSXf8^OqXr^4=e?$ldw!{8UX;tT%tW7N%~SRx1#U6pZm|Mza>{(=W(D3&u?3Ao)%dxpuSnL`_ikdXnHpLj53}9%VkGL z_m1`vnIKcoiuh=MO005Pi;9|n-&&hTWM<3mwmWd3upmUm5G$zp^i(u`vjcd0f{efP zW3NFfbpDQ!E7Y_Od^fAAzF!HCx^JJcUhJdc|IMSAFKjug=C6AAI9*Typ2zM>FFchw zEFEvIM&}kR!zuS`YnA?{HQ^DF?`Tu@=}Dbk6nb$3?gLf;DBo>lci6xCR>d?G(@9N| zJ{Z4E*AnLiB5GO1B)<2xL*O2~ zZ~eF&@PCn>C&-`;IgOz6Z!U#?U22I*wN2wb*uh(82B(qLvx8w(*;0AOHu&M2v-A!; zju{65JnGoRpUy`kO)s@N+Y%BQT0YvAfixu%*dkiK!YvwxF+|kp07Ya^oeEmaIf9?9 z4;&BUzLl*=E9Kzi%uFRV5-og0=~I+E2Q45=5Y`^FeW%&t6U|s8yLyT}QtGcICMm|q z+0RT(m7^ZHAY=hay|(}EE2wu+dfQnU53H3px3SPOGYf>ysM?*0J=eSj zx!t_!sUk$Vp9%m#PnQ=a4zvAHQL%qxD4M35E~NGp$xF`bV^*+o2t_%t$zkCELOjs0 zpgVpIM%48j1ZgC$!ohIN!l7M;MCKg5-WDTA!aW`QFOmdrKr><0=yNMO36;j>^5vm0 zDtxOZ%tL76zrs}cM0(DOg}-9UOE?!RMr=x7-~Lx>3Y@vH1@~&M4

!0#c_l+7ggt1cs{(?q&j# zhxzX1<&`%o-Ver4@adlGLD4nn5;dP69P6&S5I9sD^@7-6mxyT9tBVEE8iIit85vF8 zqYNzsBT`Cf+ASlqUb-g`R@$YtJwbW4DCa~UG1bt3ZikZn^voYkSK?N-z*ViEEb`JS{4QikApEZ zHw5nqIx?+(5)8`Q0}S)D+bU*fhee&40y0vzw>;eXa36yY^MW)-_*KQkU23xeq9vk# zusj0pyt_lQOMZ>nz2}n^K7W80P2m{u>w6t`V z1Lx z0PK!iG;D5tkzbk|)`FtvKi1WSYWW|%p_fq&W#}{!zz$)lrdcTQ6^I*&I zx}R_uo?!Rr!H%@(H4R1_cMVkalb$5j@-6e85+o97)n8UYyR% zNSfIYDDL+{wgX*a_(l>vBV$V%#qWm%14bIF==;kI3c%A}W&l=yppQFz|)( z00nPBOZRgx&t;mtCxQfuT3Xw=c_kr>T?hUHqGRCX{2XjlJ(gXz{eP|VOo&i}h^YCv zW*C5Yfe%253IsBr8aS#5;S53?EP$+QEHVEFd3EvM-bC;A~cdZ)+gvPUTzOjjn15G!lznd%^ea~mB7&x1(xL5fxa!$R0I zOlD<(Zn3*>ZG%^omU0~~ncM_$wfHJij$GMH8kk56)d`1&w6%VBj4A*8*q+It7h z?mvZK-@bk2koLZ?#FB%-xQ}-+gHri~BsB5X^+)q45D|N#5BX3cTYB8b$A{E&mKzCB zALbNv%WvYY!8UOjtfKOnET;geMiIa{kQo=d zQz5GLlc?^RO8}NS=g*^NZ&VhgQ>Xe7TarI}mI>NN^4a|&j$KEP6XPV-GH_-j2@ zGazI)Kx~Tni9R|kNieeOBDdrM$)_}FiBW{9sj1GAt71er8#;``_qTVl1&RD+GAc8% zw9qUEhlX7HKae5Hr;s^=5&*UWOHI|NS@b`tims};UFqrR?&G^rrf7iJP? z=QFF(Gy$V4yeHlVLw6_Oczyg~Vzrol<_GKnMF?jXR}%s)@dK*l!L%HLYfs#zBi?_9HEh^|_V4n$S)eo_dS}bix+HPv^c7IB z5g4-g7C^R{#K=hb>*r4%85trl6*CQ)$nfHaPspOva2-E>9F`3^-9Ui^xbAK}BclU{ z-V_wH?{<2bwRU!MO&4`prqv3SidBnt5c5j}l< zYkEdN?ZYB%?X7+){sB*)IX)=XZg=i5Aw)C5#GT|8lZ={UGPwVJC34_fVfKOaz2xc{-F7DQ`I^P4A%UpFWh=T;KQq_qUm2&Rr;CLA{+eq5#z@~W zQc92dMV<@tmFoyvC3nH#ctrle0|ywpr*rWzr|NajpSPuF{7Vcc&{|;ET8J6|m(kBm zPj7Nx*n0(;O)pA#W;7P^ytbB>mh>CUrl7n45B{yoz>Utw^zwgSOqBlHjvH!bbP@TT zBRQOx-Q0F`gW_^j-3#{(8aaNe*Dk!fqA64l43E_6Br}$hFAl~Tq(4tC0?J|Cgsj|p4sJ1Y6I-Yv-IqRpWW8*q~&x!Ail1X zch+d2gU7OA#Ok^H^jTBW!+tzlKihK9(+5CiK*-HvZDk3honz~WNnkDOW=o9~xpI4r z?puSPUBpNdH1kRVYqtIAdB^hW>l0^}6I*)<%F??(JkK*mn?U`X#9rHQo*3sT8aY*m z?sw5qDGNM!eb_ebU<>CsZtjf>hYHgUzFmEpTTszgSxC?}1fF{yuonOL5~FMhfHD9a z6q90OYimmi;5vD2q;2I1Qc0VO#}3UB^&Ja0=Jj)=|HQrE)PDe3?dS2Cg4ZdhVemW2 zsBY0qJ)gO>WP>ne{M#hI@NB^Hv#pV_aRgS3bnj(MVoGX7k`xsT+<3a@M09;g}vpDXxXu|_KX5#gVJ>j||!GcQ1!&-_J_%2mCq z%kAGeaI&&s=ZwBr?_V2=+BAUcU55`%z_G?hU-Eu1iIAiay9+ScL`lM^!L4`iPGBDF zmHv!BbUERRpO{oRMq=a!-bc41sT+k$W?h}TiYYidpSd>u7`{eyHufujID=C4OLXAz$nLz4Ad!byt{BSNiWmjIt)tl@*7(%I1!kaUKF+P zg^mm|WFK3%+r1;2aMuxtB*=<|2Nnl`DwLGSk*PaT#qj)JsK_mtFM%y(RV6#W9q?c1 z@$4-1JwaHL&;V8cK&;C1+VTqq4k0pWBp#sxF_wptCJ&{_6A7x9Ta>h`_ zpjA@|5LD>QmL1J;D7co$V-Ui1PZpl95bSL*wF(G9NxJF$p}Tn&i~xi%#PT7WO^k>z zuONaO@b~T?OsVAhuloTF`S(AF)=B~tBILZL_v7W@`;)K&c@7=gUbZ@K^x)r5V6X>} zorys?REztXn<6wX$_w#@Pctj6#?;u~X{jP%urbuU@>cTe*SflEUrtQ)W2WowU5_p9 ziJel&e8A-8laMeFjec>Gnug{SsuGbY#eNKnwP2K&++#ioE$jH-??r)#S3r8p`)423 z-C{fV?-}1iL8n|R`r>b8Q2;TR3Q5MVk+uvLL~k4P$LRO69m(bs2$X`C__nC19HDWL zG2~aa;e>(w10gj@CaS1V@W$5Wgmn8dgm$`>n9~{1ObvG~*mN@nu1T z9ud(gdZ^2xt`l`f4{0hQ`n>$~=!SiG$Bpw|R@OnyolaYUJKgzfsQ;UOwXh&FADoz% zZdzD1YkTizWyKGUwMef-Hx>_ton5wB^;>s$3ii}p7;~_Q1VlFCrwBTLNLAF-+=AKw z6+6YxL2#oc{SNVGH1NolaveP7x+OQAg1A|fwj7y~zum2sVznM9$7&f-Xi7SA9{HW; z(U{uOE*GnHj9XK(#~rtv3hucM?!LTenqI~Lf>s0>p|;%uRTw#5Vhn@Ff((sWxTZ@( z#xCCwL~G#7qZ2-9nkiN}OR%nBZEnN`Aoj!PAmRQIQl(GAkr-S&+%0-Q0W7xSk&;k= zKnULL{-0@4PZxEZo`s>orJ!s=xXNKe}(pW}w*UZ$&LqiZn_#Y$1 zOvoT7fR1q+4V&l|z&C_eZQ3HZcpN!5WC55@2=_@MXtB7zYSZ{Wwh~iGc~P4-GX9_h z-q<>uyodK7ZdE{XkBp229ZaS;Ig;#6+*DXGFzAuY87`A_jB^RPcjS>U#R1Nt*BeGR zHi|i7=Q+tiIp>46L|@_h%!i{T@*Rk-|LN#t%=BEuUR(LI@r4V9bCQLTAtJY+nH0yW zGd9Nkujyxd+@n`)N1~J%je>El6%`eYu)d+Ig!}}$=o6STY#|73Y1(JTNUr>NGV(aY zmq{d;2s1nxvGqUA!t;yHTqeLHFuTj&@5iNE1)FRJhf|uWG_il~VgHywhJ~aaiFrdf zZ%^oAmF)JiJrp+I1Z7Mxy_+2(mdo7exzf%|3|SAMl)&A&iR=oV+vNAlUy(ZFB%Ou| zNBk|Al*I!Wfv1#}D{E_i`EP5!f6ST7)XEISb8y{=kL^OS`#yxPtABy(dtvN`>_1~n zpweNk_Dh%!$gyn^L_Pp#|KwbQ>`vW@yhbKdJEJ_@mHD*ze{)AE*pYL97}sUnLP@&B+no=&{BE&1LAxSSOY9ruo)mVaACxV4RLnlV8xdkH-S(rldqoTI9cH|C` z>9v4N6La*SIr`08x1YDGmC4b$OVI@!`bs%5cNWtbC9@V%7rTcK&=&Dbf46!#?c0YHApD_o-jGk0b#cil*C~BIiP?~U-wF!(0^N#A6r*&HDPmu) z%{*Brk%%ca_=s`Y&BJh=3YU`vC5ef9ByFmf${<^C3+iE{pmi|nIg#K(cNNAAaSBx% zu9Zyop-Q&_@5Mt5M~3lR{E(kv0~j@a?8Y=o031Bx9kKVW&J3F)3};Z_z=ruU5#MEZ zB=?QomJ|1c>mHq7OOB_MU*Pib_00u#C&@xu(R+0v6q#VsI_B_*SqoyEAtrDA_lqa= z$PFMDLyv@rB1&!P(lCcA=Vc7I5`TfUu!1Y9I-`A3pp=5-HI`LKEG{9V0vbR#JeS8m zM1zQvL6muMhVnIQ?E{tT^FOLtUo$` zVR6?l4AssXD>t_9kR!!>ZSLzc-C>`>M6H-1c!P5*k$E8kW~gKcFJeFbtW3SrHIpZb zjlR{rBPwwau^Sl6gGIj{S7NRz1WJ?9>K7W?xdE(cV(tZIvs$FoNyL$eKp7Om({S*K zws^u9dgx|%<*wdqV+U8TgP9QxRF{svk3fbkf9)D_vjnCI)=pT^X-HQOL!< z&0X!vwa3Zs;be;CCr!-ek7%y?}i z(r2{K&<*y+U{fX1zri#`wMLl?CPgerVK27qYjWt$x2T0M`eBl3%Y zqf_UyMq%#^gb^>LsJm?0Q8RUGJLhd;ZujcdtHk5LOxhHpC4-oR^Er3NW$ei68Q|U0 z&iCGh2FenKDclQ?&jD#tvU?ip>f|uVk6FU)3+%7)sZVUxbpK8bD)**kt1iP&*OC=JtM`*U;FyF z1q1{Tbh?4Tqd(n+bZ}8NyI;Q8-1I#%`?L1JGsecW5N4~Yt9kbCr*72LB;-J1%r*Ov zAs_=3`bbR0Z7QyECM>;)_Y2@yF-je_LWzboC4ht&Js85$CCnkn8l)bx8z|j5O(*Vu z`GRtS28xjcCl@<5+#J;hac;mfVK3r}eE%IKj8_m#Vl-49!Uj|s46JT~ZirmaL#eAf z4(PwC;$B}=CL&)*LoFh(k%M=O_^d7cB7d>xYR&VwC8E3|wk9>xASU5GFQoNEIs%Ij z1CwXoQ>OUM?fGt8=64b~T#ko9`XOKOJ`|K~!pqjx-2v*n2kMOeiX4W}BO#fF&K!7U zm``m~;80Ga=F`u-uz=@Fm}X$S0v)plv5t>9_cDzENKwhGuZYDRHjMAf@~Q0s{}6OUp41yso`cE~LRQ1IV?hcr1U>Z)wbQ z{We;?#nfOm<|OyxMF@ddEUM4r&g1k8ockgPAQdh`4Dho`xFn@+m*Mu|(k6tl-5FAM5LhObqG6moKl3>F(Ot z!l=7}JS!x}s@G6DK%GHXcOkHlH68Hx%{AgRE4`0wAtMszKe9P4KtBYnM?#?jW=k%{ zw(-OGFw_9Gg~(dtH7Lgji5QEW7`Q??sXE+D^hyHXP>{k=zTu-+0NGIjFcKce;68m2 zzg$`w&quk_KYmyRiuz)kz-_I{E?c`TX8k1zV^%2aUcVlB@++Sw>MgXtDI}>Sh%s!S z5aL}PNS>F&qb6or2-^j@35uk5eqSpqHzU$fjm8uODo><;6M*VLkkE#x!OSp(dhWte zXNUnKP*aFdIhGF*MMu$DTU#TzJusAxfkB9=-x85bB(m66^bwPl`u=zK^&PG_D@VXX z6h6W)pZb_~dXJRUE+V6jU4UH}-p*j6?j?PBSYv8gZPm>e0xNQ}%-P=dV^F@0Jo*)o zK!FB}x9tRCoOjo8w=D<)4o1x)hB#P%xXi)jT55p`0;|2fCJ(#P^AX$WUtQ>{eX1CS z#OBA~?wd#bt%%pK)b_2-AFE@L6c=YkpQ^@siQp=KhrA$+`6yhzsc6v@{C(H?Kj+~Q zrRaFDzjp4EE~O+~CADXwZ-sl2h(a!n(3Ri5gA0wgQPPPcUm3gD|K;z+m?FqJiBR(k zZ@kXWzllL4#A7fI>hpeiK2%*qn)%%NhuzMqNO<_J5C zvY~tWCJfqC)GvHNrm9Rma4+FsLqET6m~|^6BBEU9a7}`Qd91aCX>1DO zKE8~2)oD{x=e#Tk0feQ7kv^jf6r_G+^^hy?pIu#<`8rr^;ZUKUrMIny6-t5}w?apJ z;{(&vPtps*MO;scwY7J8H%A$D5o0Z*+mf?#%P0@eg_7#ujx+yw z+CQv)Xe~XJeELI8&GYht=ko&3yV@~h17QkU@<^$UO@{az?W64l$-Zug%9GQuHol6Y zDOlQY-uLaJf*=&*c3eu z=?%3{7!gG9IRsi);64Fp*j{qJa&p(psVDI211MfleQulTUB?q$42viurzkd}z+hGK z)2H%oKgfy?ry&EvY8hk8y9HbfpQ6RsB#jg2um6eRg}vA@OLe9e3!QcL&ZNNf?Cf3s zgYfc*x2;GcXD?g>QN$s7H!>{SfVq$e5lcvU1xXS5AqU9}ApmlY5yV`HvEa$+=^fde zj2LkVc~OfO4$$t%CPcloG)jO@a!)fN(t+_yQa@fMBizYDNcEYS4I>_U=yF8Xmay;l zaU3!&4F|rQ9c`=cXFrajQ8HD-K@hw}qvY;Mu^QAI=NvJt_?t>8n9w`cnJl|-Om5-$ zjDM6;3X!5^qP{6-(ZI?WwU^c22ow`5HN`RCFzfB(<0vzKw%ja0bc6g!l%J6~MUr-w zUJ9-Tb0OqZ#JnHAztt|k$uAQtLoegzqeqYA!w4wPc;gzY^6Gd605K;U{v378U!f@R%S1okF6Kkcj8z=8*Y_xp14T zM=BV_8OemOAM>G&zT_1@)dBmCs2p+bEeXY7D`*g_Mt18vPv?gcuA30xtAWBzBb@?Y zF(oI59t1=YYAb&()&|j=8+*v_m^!~Qd4C%=2K?F{v#wMCybDEcTcIHt0BsUD^vg1- zCx8di7l2>bSp5H*)msq2Lm)rKj(B{~g9k>j^8%0(u$_n-di(b6Dz_R|(EUb)az%=U z@zMo-eZ+#3pFgkZFFtc$L$G&Y1$j<#s?3e>Vobv=*Z&n=ERV}WzIz3TC0axGA!KH< z&E)-nh}DCK zn!-C2`7j<^-r&|G`~5799wuf*aOW_tM~wSL9J^Fxvm4(iHU%Mz@PzPqv*aF%Pg7>( zPCRccNPe3>@jiV#6fdK~y~Et2oqN&qu0(HbA0sSlJlzlImqh*;;W$8WOZNv(cBU3M z-oMSOWtE*{iCuK!v&C>vfLsGHv=2@8pr7$-LT&-=dnfSI8#iu1h*HHnvp(Q0382%v z*NV|#xHp2vFyLTf2={Hl{lLboKzJjPczcQvH^$wP9-Ph>@eq>RtkS^f7fMyOsM12H zFqpnW_=Hg4K~>LYpUAJ{R^*9eh>^8a{kVD;(LkJbV2X|7IX^#Xw3To!9)SpqC}4V& zFf;=BIu9aDx7&8c+iHNx5TnZ*xEx^pHs7=tBEkr3MV1>MLfW&6?xhGZCxmx86d!#; za|Pi7Oqth0k(h!q(I2ZVUGBd&!@crb+kc00I|365g0bcpFtT`uH?5dK!TL{QOF}05D*y!j0OqnC~R6Fvym1^VIPjT!`#OuX`oqMHx@ZJn!$~YHqR|&k%N4&!5 z7eXvV6cYIPU=0ER)mwDSw1AOKyau)sp=j{syRAI!me~*VZfP+b)3*Pb+@`b7J%w6z zhLTT6bq4MtD<`D_yEXM&t;o>?Frl5?Lx4>L^Q5la@iUoP(%Tlcj{ncI<0S zC|an-NSsQ`w1}j%S<`~V6cv)nk}S{XGIQV0{oMES&+~dce>5+nj^q56@AtYs*XQ&8 z38~(R@rcYfw)%oAiqbQ?-d3e8oy)B+l6Z*kpgNSd(J+4m9_1xD8q_Y=fO7%gl&%xbl-nxnd6UwVfdH2iTsOW3m_$Zz;#h-4h^y;`V&-=eZY#v`J3k-WWo{YovEHW;*+&87PG+g>#oIk%c4)-GufbgfMA2p^S*x$S1)Q z*F`5Ll)0AT3dVlI33}8tk$b#!@j4FY)SI#+cPlDB**Z30j9I+r?J5!|NPdywVx~U{ z{WaOwzC7){j?0DS)J>Ot%mEa@zGE}!sF9a`LV&f2jXNXP`fOqD&9%mg@UkFF423C4 z{3I9&@HH*|JFx)U$Ak~g@ZwODEsh7O*{XHt5#E5|ol}=*E#yx#Q)>2LAdzl@M*Sy* zM5t#gk;a*&9DQnqLk}keW|_ z5B?7&tk@HWxvX%Ec!}?c{v+k+(RiS}6mdNo?0>NLbV38!4Z#32CW>^tC05p204IO|^E@VJj_JKNx{qY{7 z7)i!~y44H#6Ka^;p^S|CjAE3GRlYfVW5m}FHN?imxT0O_#&yMUKwLOJCMKn!ei0+y;$BP-f@+ajR8*Ar=ol8mVw5gq;cG$TEz1ailw;bk^HTL4(Y!6d;K0>*I+gd> zy<6x*&q@qC85EVoksz`Lv=MEms}j^*LhC~+hP7nsQw6BY%446V+!98kCoC!|b$soy z#p|YbZrrq~{NclRAW+rRRx0S7+c1~EyNyl889QESzbA|Y@FlBgNnskz_#-#DJbxF| z7Z`V6L%Rs}Pla<1S1|c4u{7e{rcjHA8$_)?;pP!^$T8KT2-iY=?(5ak)}Bm;B`F5E zws2SBvSRNLWI*6W?zPSg8h_fL>CWcGZ{EJO{;<~oc@TrCmosI!4av61^>`cN8yE#{ z+pS?EcNWa8mNm;UVGyO@!5ednex%D_QYEYkfk`qmU;I{El2}_a?T-CI83~Emfge#3 z1U~5kEEq%9ZyZ7F{`UZX`~|;@o_8EP5NH+hUI~hu%np2_VK+>*AtpIkoK`7;QdI#n z$F~nc6n007+}*=tIkFzCh>@U7H0@XpwM|1|7V3i;z71L#e9y!wbNihc(ZwR^T zD1`M_e-KwRo`F1fcAkw3?j5|&^V6;QfxVFu4-r)r_BMocY=3jVAyzYHS^`=~@}`FA zywD3UUW_my^udn!#~(1yV!VdPCHZhj)wwYbhDnH{_+29^d%W?1ohxXNH7 zy7_Y4a@;`MPc^C&;cYD`rjm&a+ADKAyRQ_a?zdoNnS%D1iO-HrmSA4XmW5SmZINq#|2~!qthWyi+e3v%Zasl+*r(^V z;S^>p@l}T(v=;3ML8{?&8NxV9yHVC~+YDMRkpYlGx{?-j$RQdI(-_2`hC8SF$3X?+ z2_l#&WI2}?9o>%lZaKWr7Kw6EN1XSI;8mZXd_#F0`fv)HG8(PPU{YgP3KZM2fPl+o zBMId}=$;S47jVO}mcM}mm8Jc(KsY7~T{hiv4| zX=SLaR#9F8PVYHC{-}rp(_<{l>Pb#v${n@3Ug*6G zOIs=Y3|73Ye^vQ<6e_RvGJx)%m+z64|Kr;E^}kM3y`m`AWRA&Ui`cb0OQ~)j>SBWu z8+}k;?Cpg?$AZ0|a{gelK>-6tqajBld*^CeKxf6p#OPWH~@sj33_vrWI+JT1Q^f( zf-@vIlWpg7)eK4!0tx;F%?v35TcIW9LRz%^m&3W|&NDN>~sOYgxy~L4xj<*2R z0`dT^G6HI0Tn_n^fLd5#Fwn=}hUrC<&OT+Tx5>XA)QQH5j_zMy$SvcjNvYf1M%^hX zC-;CClLQe4M-u_jcbqStbnqafz()e)hQ#^mJ-c_m289pi9EGygS?7^7MTCEtFN=>s zA1{hs`@7&B628G@y)in_M5WTu?(56o8?njI6#!F?1Z9L1AaYS_fg0K>)<)my>TUse zcK3a*()cF9UxpSA)`31Oenj?zr4A4{LGVy!cU=Bzh!7&DQ*s^HSptb(Y z?Af!!aISE_Q!kI&^AsKg;7f%gd>ri<*1l^jlt*Ly6&^TOEZErah$x8F*#b@;bVu~o zXyu{%g<-+Lc>)_GmdaBi5)Vmu=RwmUA3bGvxye6P@?u5&9{(?pJ36xe%D)q|vMSKh z(U~>g`~JOFY-**{aO!Yz;BU%>5yQ0;7`*{KIBWj#gU-hO_Z{$WC+lC%8aqoH+O@Qf z(`{_JwWXn<2q+va;%xYP;Yvx7puz_wckp40r|&f>Wq_?fkO9|vJdV|;jZ9o6-L0iA z-ML_$-I|KF61IN^12dFzO5@E{e1I7y`iN<;2tvyf#S+(1AY-+9HQ7dT8{1$8gz!I! zfr4phH&5kjF8n<-U?3C!Mkb*^047(5^kg&eCysq;cD5KUTuhdxwItiVh&J@x3`Sfs z3V(>PLg?e8krZ+{eFtwqknvxTC=(@rb1z{y}ys`H}!k>6H2tt8;xhe1Cr&A zL^olJrYV~yU|Xio3noF4=WM8iXxW4q7!A68ep5wmndORYrf0=)AZSL#Q`#?#rrXNe znz+!BhT9uIJ!Mf298>$%!*h9@!B3WN@3XL5B zKIn_4gAoR{rTmUg_(?sPaID}l4)i<)Q|7zN(lFs)xSF#TIlu|$u)j`1in@#*XY%G7 z`}jk_FmND9eQ?Xo{TuDpw!+RY%K**)z6|#qoB(3-MhS&Z*XmBJL0~!W3E{_$6=Ts< z&|?KEI+0{{MT|7f_y)>CqaDw6H#s>ylHqErszwO7qM!x4K16#6jmaHGF|sVH9xM&V z*;xot^)e8={2kctcVN&2;5o7r7f{8=RO6WeYF%e<*&a3GBVraU;0h2`@Ktl&fk7a7 zEIyAKc;W?~SAM{^cfjJ*4Ujp`7BcW+E9V7# zX6RV(4gR@Y`)hknyD!x^cYL^M2^R;t5~>UFY|(qYzSBOy!Lj7LK%)KyjwGw!SRPlK z_8C-Z;1a{n6zc(dSA=6>C61Gte}B(&z92m@!7T_H8dKhgkoaL1xv32zOy;2mnET`1 z9Tf4v5jJXS#QN`Ez+jTlb8l*aie}LZAV@G~4?M#;tuP+RPsL%F#Gt{Tb)aQ&$oBx; zsHmE4wbAk^{6`!GF~Fa+@p~_Gbv?1X)#ZACSiz>k^3LO-I$FJ6c*4k=?;;FbD2Ia0 z0)gF8#p`$O*-WrXz~JdQ9k>P}ox76qPx>H}G2LY&YlrC9XKe_0R~b7wIEXN)E9*jy zX2nsA`ZU_m`b4C4?P$+2Jv5V%xCC6Zr(c#v_BhNQjEu#&{O#?EE+Q>ykU3Ve0`Chg zS{~pOmj72uAZuz`+0B9`f^`)AROY#QNs(vA-yheJ8eSJ8o1UJ|t1%XF`}gKcnjHCEr-{hwzrxFI~mOTO?kJ$>=iZ;VEo(_`bp} zD$OuWGXTebKfvr>kEF24O0?RPn8ZyQ7jDXE~KttHiH>vpqU zDul#YIwMK zFTA;F>h-1KEC$9%873yZ@UNhBu+IF{3_jqF?4(L$y$Bepho%2@M@OY}Jf>RAVU*P? zOtQ<HOd_yzsx8Xx~*38$6(2-=~v>}#-k5mhK8&TeW z|9zFVRO92n0xQaHA^MHU?AFl!r$5u_!0JJxWB3OI|JZJ{wB5?y%&b(XG>HB8houQS zwdB{7c4FoxEFz+})b84k+q~p~y zG}-3socL{XGbFF(shG1J_g?=tD$*;`ZV;d^SIhu#l+$#eO>2BH0RdYD(2C}ppvZ#&dJJ}o0+AG zhusLcx&-${EzhP1N;ZYg&ef-)P2^)S3;6cggZ|8#IrA>rb^Vb^CS_8?RC<_&m+Dp8 zgAgrv8(yBf##r6CI3{?$Pwnek$wWEBILw>*h`|QHemHCT^zs}SvGfkWvSb9_9g0s= zem7h#t`G{l;kxRE4oMFn5^%-J#Zh#&%yCrL(6Ai&4&v5B=vHNzys%oUu@zpxhp;-6 z7zl~&@lH|tsYcrywQ1v}e@ai35eic@_Or4pqMKVi*hQAxP0zRi)}VHKe`r%Uj>a#W zC6ttO9C)aO<{dC)E4pR(#H=46mtoogsj*F?J3lS7zrm!MxuDCJ9#5@@GSWVn5xz^c9bIi<+ z!*X{7NTo#jLtoRwM?N6&x-pHpuqE2AH2LdZ1Dhk4WP`YTwUzd@*1 z6;&mTt`_>@uh83KW`5TvQSw){^eQ4?$ecjWQupzb$n#N7Vuh_TmkHSh7mV&9?KuU88kCWZ`~Lh?jo~K&VgZX>uiEj z!VHiBst3&cAcBcvc&v1I#+ot<3yW22dZ)gHRcY}Vn@p;uxiH?5SM^n$yaom!D4kL6 zSEweNgkueL1rCEj6F;!-XQ6%~VW;(w1Y3?sbymF3)TBXudrpjI_>7=#s_5%W;XCOK zO_#i-$aRMtF}f0ZN)xq`Csu2Y1E56P2Z}QxE)%w*w1INT+a$MpJDeOj$x|ZyGbV5J zL={w7t6nZ@q_7wUU*gDiyC$?jrNK$mC+E=OcJLo(w9|X9Yel;pJmhA5CYXWpVu64A9H# zoA{YEB@vM+>h!d{Iyb~lkoD$pZp-NJGuQ-)3Jxn(tz7qbiMn-kNx#?K-~S;BcaDmd zR;;*#JE|kHfP#@|-&o^kgsU)E66w5o#NKK4DX(R^rZxZG`FiC_LMc=-?EEolQdzTd3DhLw0N?r?YfwuSxtu6HL zF#6-ZzI~7qUI-ILBK<=463!NGY!lXAwQAy$K@6vhigZijhA-RubzMqo>Ot(y^3Crf zTsE0|bjWP4f4&gOC2iS@Z`g9c^XI(^9S;dcEb%H3Xv*7++GYi@)3$3nl&k=kLWbL3 ziXh}vMMC(i;)YgBH-)eKAwuNs1rCY)+-zGlR#>AGm|}mPQpJ-LI4e->qaqe&&>e+y zCw3+Q@WrICe^MCNNJ;%0t?-}N!vE73 tuple[float, float, float, float, float]: + ) -> CSEUDEMOTurnGeometry: """Calculate the geometry of a CS (Central Solenoid) turn using the EU DEMO stadium-shaped model. @@ -3165,8 +3183,7 @@ def calculate_cs_turn_geometry_eu_demo( Returns ------- - : - Tuple containing: + CSEUDEMOTurnGeometry - dz_cs_turn: Depth/width of CS turn conduit (m) - dr_cs_turn: Length of CS turn conduit (m) - radius_cs_turn_cable_space: Radius of CS turn cable space (m) @@ -3214,12 +3231,12 @@ def calculate_cs_turn_geometry_eu_demo( dr_cs_turn_conduit = 1.0e-3 logger.error("CS turn conduit radial thickness < 1 mm, kludged to 1 mm") - return ( - dz_cs_turn, - dr_cs_turn, - radius_cs_turn_cable_space, - dr_cs_turn_conduit, - dz_cs_turn_conduit, + return CSEUDEMOTurnGeometry( + dz_cs_turn=dz_cs_turn, + dr_cs_turn=dr_cs_turn, + radius_cs_turn_cable_space=radius_cs_turn_cable_space, + dr_cs_turn_conduit=dr_cs_turn_conduit, + dz_cs_turn_conduit=dz_cs_turn_conduit, ) @staticmethod @@ -3367,17 +3384,25 @@ def ohcalc(self): / self.data.pf_coil.n_pf_coil_turns[self.data.pf_coil.n_cs_pf_coils - 1] ) - ( - self.data.pf_coil.dz_cs_turn, - self.data.pf_coil.dr_cs_turn, - self.data.pf_coil.radius_cs_turn_cable_space, - self.data.cs_fatigue.dr_cs_turn_conduit, - self.data.cs_fatigue.dz_cs_turn_conduit, - ) = self.calculate_cs_turn_geometry_eu_demo( - a_cs_turn=self.data.pf_coil.a_cs_turn, - f_dr_dz_cs_turn=self.data.pf_coil.f_dr_dz_cs_turn, - radius_cs_turn_corners=self.data.pf_coil.radius_cs_turn_corners, - f_a_cs_turn_steel=self.data.pf_coil.f_a_cs_turn_steel, + eu_demo_turn_geometry: CSEUDEMOTurnGeometry = ( + self.calculate_cs_turn_geometry_eu_demo( + a_cs_turn=self.data.pf_coil.a_cs_turn, + f_dr_dz_cs_turn=self.data.pf_coil.f_dr_dz_cs_turn, + radius_cs_turn_corners=self.data.pf_coil.radius_cs_turn_corners, + f_a_cs_turn_steel=self.data.pf_coil.f_a_cs_turn_steel, + ) + ) + + self.data.pf_coil.dz_cs_turn = eu_demo_turn_geometry.dz_cs_turn + self.data.pf_coil.dr_cs_turn = eu_demo_turn_geometry.dr_cs_turn + self.data.pf_coil.radius_cs_turn_cable_space = ( + eu_demo_turn_geometry.radius_cs_turn_cable_space + ) + self.data.cs_fatigue.dr_cs_turn_conduit = ( + eu_demo_turn_geometry.dr_cs_turn_conduit + ) + self.data.cs_fatigue.dz_cs_turn_conduit = ( + eu_demo_turn_geometry.dz_cs_turn_conduit ) # Non-steel area void fraction for coolant diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index a0cae1c1cc..e394b2b446 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -18,6 +18,7 @@ from process.core import constants from process.data_structure.pfcoil_variables import N_PF_COILS_IN_GROUP_MAX from process.models.pfcoil import ( + CSEUDEMOTurnGeometry, CSGeometry, PFCoil, calculate_b_field_at_point, @@ -2262,27 +2263,22 @@ def test_calculate_cs_turn_geometry_eu_demo_basic(cs_coil): radius_cs_turn_corners = 0.01 # m f_a_cs_turn_steel = 0.4 - ( - dz_cs_turn, - dr_cs_turn, - radius_cs_turn_cable_space, - dr_cs_turn_conduit, - dz_cs_turn_conduit, - ) = cs_coil.calculate_cs_turn_geometry_eu_demo( + result = cs_coil.calculate_cs_turn_geometry_eu_demo( a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ) # Check types and positivity - assert isinstance(dz_cs_turn, float) - assert isinstance(dr_cs_turn, float) - assert isinstance(radius_cs_turn_cable_space, float) - assert isinstance(dr_cs_turn_conduit, float) - assert isinstance(dz_cs_turn_conduit, float) - assert dz_cs_turn > 0 - assert dr_cs_turn > 0 - assert radius_cs_turn_cable_space > 0 - assert dr_cs_turn_conduit > 0 - assert dz_cs_turn_conduit > 0 + assert isinstance(result, CSEUDEMOTurnGeometry) + assert isinstance(result.dz_cs_turn, float) + assert isinstance(result.dr_cs_turn, float) + assert isinstance(result.radius_cs_turn_cable_space, float) + assert isinstance(result.dr_cs_turn_conduit, float) + assert isinstance(result.dz_cs_turn_conduit, float) + assert result.dz_cs_turn > 0 + assert result.dr_cs_turn > 0 + assert result.radius_cs_turn_cable_space > 0 + assert result.dr_cs_turn_conduit > 0 + assert result.dz_cs_turn_conduit > 0 @pytest.mark.parametrize( @@ -2295,18 +2291,12 @@ def test_calculate_cs_turn_geometry_eu_demo_zero_corner( cs_coil, a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ): # Test with zero corner radius - ( - dz_cs_turn, - dr_cs_turn, - radius_cs_turn_cable_space, - _dr_cs_turn_conduit, - _dz_cs_turn_conduit, - ) = cs_coil.calculate_cs_turn_geometry_eu_demo( + result = cs_coil.calculate_cs_turn_geometry_eu_demo( a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ) - assert dz_cs_turn > 0 - assert dr_cs_turn > 0 - assert radius_cs_turn_cable_space > 0 + assert result.dz_cs_turn > 0 + assert result.dr_cs_turn > 0 + assert result.radius_cs_turn_cable_space > 0 @pytest.mark.parametrize( @@ -2319,17 +2309,11 @@ def test_calculate_cs_turn_geometry_eu_demo_high_aspect( cs_coil, a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ): # High aspect ratio - ( - dz_cs_turn, - dr_cs_turn, - radius_cs_turn_cable_space, - _dr_cs_turn_conduit, - _dz_cs_turn_conduit, - ) = cs_coil.calculate_cs_turn_geometry_eu_demo( + result = cs_coil.calculate_cs_turn_geometry_eu_demo( a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ) - assert dr_cs_turn > dz_cs_turn - assert radius_cs_turn_cable_space > 0 + assert result.dr_cs_turn > result.dz_cs_turn + assert result.radius_cs_turn_cable_space > 0 @pytest.mark.parametrize( @@ -2342,17 +2326,14 @@ def test_calculate_cs_turn_geometry_eu_demo_output_consistency( cs_coil, a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ): # Check that the sum of cable space and conduit thicknesses doesn't exceed half-width - ( - dz_cs_turn, - _dr_cs_turn, - radius_cs_turn_cable_space, - _dr_cs_turn_conduit, - dz_cs_turn_conduit, - ) = cs_coil.calculate_cs_turn_geometry_eu_demo( + result = cs_coil.calculate_cs_turn_geometry_eu_demo( a_cs_turn, f_dr_dz_cs_turn, radius_cs_turn_corners, f_a_cs_turn_steel ) # The cable space plus conduit thickness should not exceed half the turn width - assert radius_cs_turn_cable_space + dz_cs_turn_conduit <= dz_cs_turn / 2 + 1e-8 + assert ( + result.radius_cs_turn_cable_space + result.dz_cs_turn_conduit + <= result.dz_cs_turn / 2 + 1e-8 + ) def test_calculate_cs_self_peak_midplane_axial_stress_basic(cs_coil): From b01e3b102bbbddb8f9e6eb6cdb89e3ca9a2ace62 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 22 May 2026 12:17:00 +0100 Subject: [PATCH 29/48] Refactor central solenoid variable descriptions for clarity and consistency --- process/data_structure/build_variables.py | 4 +- process/data_structure/pfcoil_variables.py | 13 +- process/models/pfcoil.py | 200 ++++++++++++++------- 3 files changed, 144 insertions(+), 73 deletions(-) diff --git a/process/data_structure/build_variables.py b/process/data_structure/build_variables.py index 6099057e16..7b0c16d3d0 100644 --- a/process/data_structure/build_variables.py +++ b/process/data_structure/build_variables.py @@ -146,10 +146,10 @@ class BuildData: """ dr_cs: float = 0.811 - """Central solenoid thickness (m) (`iteration variable 16`)""" + """Central solenoid radial thickness (m) (`iteration variable 16`)""" dr_cs_precomp: float = 0.0 - """CS coil precompression structure thickness (m)""" + """CS coil precompression structure radial thickness (m)""" rbld: float = 0.0 """sum of thicknesses to the major radius (m)""" diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index 0aad3f7575..f4dc56381b 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -366,10 +366,19 @@ class PFCoilData: """radius to the centre of the central solenoid (m)""" r_cs_inner: float = 0.0 - """inner radius of the central solenoid (m)""" + """Inner radius of the central solenoid (m)""" r_cs_outer: float = 0.0 - """outer radius of the central solenoid (m)""" + """Outer radius of the central solenoid (m)""" + + z_cs_upper: float = 0.0 + """z location of upper end of central solenoid (m)""" + + z_cs_lower: float = 0.0 + """z location of lower end of central solenoid (m)""" + + z_cs_middle: float = 0.0 + """z location of middle of central solenoid (m)""" dz_cs_full: float = 0.0 """Full height of the central solenoid (m)""" diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 3b71b62a9c..17b7d8f691 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -175,25 +175,25 @@ def pfcoil(self): dr_bore=self.data.build.dr_bore, ) - self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.z_cs_coil_upper - ) - self.data.pf_coil.z_pf_coil_lower[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.z_cs_coil_lower - ) + self.data.pf_coil.z_cs_upper = self.data.pf_coil.z_pf_coil_upper[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.z_cs_coil_upper + self.data.pf_coil.z_cs_lower = self.data.pf_coil.z_pf_coil_lower[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.z_cs_coil_lower self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( cs_geometry.r_cs_coil_middle ) self.data.pf_coil.r_cs_middle = cs_geometry.r_cs_middle - self.data.pf_coil.z_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.z_cs_coil_middle - ) - self.data.pf_coil.r_pf_coil_outer[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.r_cs_coil_outer - ) - self.data.pf_coil.r_pf_coil_inner[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.r_cs_coil_inner - ) + self.data.pf_coil.z_cs_middle = self.data.pf_coil.z_pf_coil_middle[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.z_cs_coil_middle + self.data.pf_coil.r_cs_outer = self.data.pf_coil.r_pf_coil_outer[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.r_cs_coil_outer + self.data.pf_coil.r_cs_inner = self.data.pf_coil.r_pf_coil_inner[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.r_cs_coil_inner self.data.pf_coil.a_cs_poloidal = cs_geometry.a_cs_poloidal self.data.pf_coil.a_cs_toroidal = cs_geometry.a_cs_toroidal self.data.pf_coil.dz_cs_full = cs_geometry.dz_cs_full @@ -2164,12 +2164,7 @@ def outpf(self): ) op.oblnkl(self.outfile) # MDK add self.data.build.dr_cs, self.data.build.dr_bore and self.data.build.dr_cs_tf_gap as they can be iteration variables - op.ovarre( - self.outfile, - "CS inside radius [m]", - "(dr_bore)", - self.data.build.dr_bore, - ) + op.ovarre(self.outfile, "CS thickness [m]", "(dr_cs)", self.data.build.dr_cs) op.ovarre( self.outfile, @@ -2177,41 +2172,7 @@ def outpf(self): "(dr_cs_tf_gap)", self.data.build.dr_cs_tf_gap, ) - op.ovarre( - self.outfile, - "CS total poloidal cross-sectional area [m²]", - "(a_cs_poloidal)", - self.data.pf_coil.a_cs_poloidal, - "OP ", - ) - op.ovarre( - self.outfile, - "CS total top-down toroidal cross-sectional area [m²]", - "(a_cs_toroidal)", - self.data.pf_coil.a_cs_toroidal, - "OP ", - ) - op.ovarre( - self.outfile, - "CS radial middle [m]", - "(r_cs_middle)", - self.data.pf_coil.r_cs_middle, - "OP ", - ) - op.ovarre( - self.outfile, - "CS radial inner [m]", - "(r_cs_inner)", - self.data.pf_coil.r_cs_inner, - "OP ", - ) - op.ovarre( - self.outfile, - "CS radial outer [m]", - "(r_cs_outer)", - self.data.pf_coil.r_cs_outer, - "OP ", - ) + op.ovarre( self.outfile, "CS conductor+void cross-sectional area [m²]", @@ -3319,19 +3280,19 @@ def ohcalc(self): dr_bore=self.data.build.dr_bore, ) - self.data.pf_coil.z_pf_coil_upper[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.z_cs_coil_upper - ) - self.data.pf_coil.z_pf_coil_lower[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.z_cs_coil_lower - ) + self.data.pf_coil.z_cs_upper = self.data.pf_coil.z_pf_coil_upper[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.z_cs_coil_upper + self.data.pf_coil.z_cs_lower = self.data.pf_coil.z_pf_coil_lower[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.z_cs_coil_lower self.data.pf_coil.r_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( cs_geometry.r_cs_coil_middle ) self.data.pf_coil.r_cs_middle = cs_geometry.r_cs_middle - self.data.pf_coil.z_pf_coil_middle[self.data.pf_coil.n_cs_pf_coils - 1] = ( - cs_geometry.z_cs_coil_middle - ) + self.data.pf_coil.z_cs_middle = self.data.pf_coil.z_pf_coil_middle[ + self.data.pf_coil.n_cs_pf_coils - 1 + ] = cs_geometry.z_cs_coil_middle self.data.pf_coil.r_cs_outer = self.data.pf_coil.r_pf_coil_outer[ self.data.pf_coil.n_cs_pf_coils - 1 ] = cs_geometry.r_cs_coil_outer @@ -3850,22 +3811,123 @@ def calculate_cs_self_peak_magnetic_field( return b_cs_peak - def output_cs_structure(self): + def output_cs_structure(self) -> None: + """Outputs the central solenoid structure parameters to the output file.""" op.oheadr(self.outfile, "Central Solenoid Structure") - op.ocmmnt(self.outfile, "CS turn structure") + op.osubhd(self.outfile, "CS coil geometry:") + + op.ovarre( + self.outfile, + "Inner radius of the CS coil [m]", + "(r_cs_inner)", + self.data.pf_coil.r_cs_inner, + "OP ", + ) + op.ovarre( + self.outfile, + "Middle radius of the CS coil [m]", + "(r_cs_middle)", + self.data.pf_coil.r_cs_middle, + "OP ", + ) + op.ovarre( + self.outfile, + "Outer radius of the CS coil [m]", + "(r_cs_outer)", + self.data.pf_coil.r_cs_outer, + "OP ", + ) + op.oblnkl(self.outfile) + op.ovarre( + self.outfile, + "Full radial extent of the CS coil [m]", + "(dr_cs_full)", + self.data.pf_coil.dr_cs_full, + "OP ", + ) + op.ovarre( + self.outfile, + "Radial thickness of the CS coil [m]", + "(dr_cs)", + self.data.build.dr_cs, + "OP ", + ) + op.ovarre( + self.outfile, + "Radial thickness of the CS bore [m]", + "(dr_bore)", + self.data.build.dr_bore, + "OP ", + ) + op.oblnkl(self.outfile) + op.ovarre( + self.outfile, + "Vertical top of the CS coil [m]", + "(z_cs_upper)", + self.data.pf_coil.z_cs_upper, + "OP ", + ) + op.ovarre( + self.outfile, + "Vertical middle of the CS coil [m]", + "(z_cs_middle)", + self.data.pf_coil.z_cs_middle, + "OP ", + ) + op.ovarre( + self.outfile, + "Vertical bottom of the CS coil [m]", + "(z_cs_lower)", + self.data.pf_coil.z_cs_lower, + "OP ", + ) + op.oblnkl(self.outfile) + + op.ovarre( + self.outfile, + "Full vertical extent of the CS coil [m]", + "(dz_cs_full)", + self.data.pf_coil.dz_cs_full, + "OP ", + ) + op.ovarre( + self.outfile, + "Central solenoid to TF coil internal edge height [m]", + "(f_z_cs_tf_internal)", + self.data.pf_coil.f_z_cs_tf_internal, + "OP ", + ) + op.oblnkl(self.outfile) + op.ovarre( + self.outfile, + "CS poloidal cross-sectional area [m²]", + "(a_cs_poloidal)", + self.data.pf_coil.a_cs_poloidal, + "OP ", + ) + op.ovarre( + self.outfile, + "CS total top-down toroidal cross-sectional area [m²]", + "(a_cs_toroidal)", + self.data.pf_coil.a_cs_toroidal, + "OP ", + ) + op.oblnkl(self.outfile) + op.ocmmnt(self.outfile, "----------------------------") + op.osubhd(self.outfile, "CS turn structure:") op.ovarre( self.outfile, - "Poloidal area of a CS turn [m^2]", + "Poloidal area of a CS turn [m²]", "(a_cs_turn)", self.data.pf_coil.a_cs_turn, "OP ", ) op.ovarre( self.outfile, - "Radial width a CS turn [m^2]", + "Radial width a CS turn [m²]", "(dz_cs_turn)", self.data.pf_coil.dz_cs_turn, "OP ", From 39ad4a9624c2da934aae878ffcd1bb42a0f38f07 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 22 May 2026 14:08:19 +0100 Subject: [PATCH 30/48] Refactor output comments and streamline superconductor information in PFCoil model --- process/models/pfcoil.py | 272 ++++++++++++++++----------------------- 1 file changed, 111 insertions(+), 161 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 17b7d8f691..5968c07832 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2046,36 +2046,34 @@ def outpf(self): self.data.pf_coil.i_cs_superconductor, ) - if self.data.pf_coil.i_cs_superconductor == 1: - op.ocmmnt(self.outfile, " (ITER Nb3Sn critical surface model)") - elif self.data.pf_coil.i_cs_superconductor == 2: - op.ocmmnt(self.outfile, " (Bi-2212 high temperature superconductor)") - elif self.data.pf_coil.i_cs_superconductor == 3: - op.ocmmnt(self.outfile, " (NbTi)") - elif self.data.pf_coil.i_cs_superconductor == 4: - op.ocmmnt( - self.outfile, - " (ITER Nb3Sn critical surface model, user-defined parameters)", - ) - elif self.data.pf_coil.i_cs_superconductor == 5: - op.ocmmnt(self.outfile, " (WST Nb3Sn critical surface model)") - elif self.data.pf_coil.i_cs_superconductor == 6: - op.ocmmnt(self.outfile, " (REBCO HTS)") - elif self.data.pf_coil.i_cs_superconductor == 7: - op.ocmmnt( - self.outfile, - " (Durham Ginzburg-Landau critical surface model for Nb-Ti)", - ) - elif self.data.pf_coil.i_cs_superconductor == 8: - op.ocmmnt( - self.outfile, - " (Durham Ginzburg-Landau critical surface model for REBCO)", - ) - elif self.data.pf_coil.i_cs_superconductor == 9: - op.ocmmnt( - self.outfile, - " (Hazelton experimental data + Zhai conceptual model for REBCO)", - ) + op.ocmmnt( + self.outfile, + f"Superconductor used: " + f"{SuperconductorModel(self.data.pf_coil.i_cs_superconductor).full_name}", + ) + op.oblnkl(self.outfile) + op.ovarre( + self.outfile, + "CS superconductor operating temperature (K)", + "(temp_cs_superconductor_operating)", + self.data.pf_coil.temp_cs_superconductor_operating, + ) + op.ovarre( + self.outfile, + "CS temperature margin (K)", + "(temp_cs_superconductor_margin)", + self.data.pf_coil.temp_cs_superconductor_margin, + "OP ", + ) + op.ovarre( + self.outfile, + "Minimum permitted temperature margin (K)", + "(temp_cs_superconductor_margin_min)", + tfv.temp_cs_superconductor_margin_min, + ) + + op.oblnkl(self.outfile) + op.ocmmnt(self.outfile, "----------------------------") op.osubhd(self.outfile, "Central Solenoid Current Density Limits :") op.ovarre( @@ -2163,55 +2161,9 @@ def outpf(self): self.data.pf_coil.z_pf_cs_current_filaments[i], ) op.oblnkl(self.outfile) - # MDK add self.data.build.dr_cs, self.data.build.dr_bore and self.data.build.dr_cs_tf_gap as they can be iteration variables - op.ovarre(self.outfile, "CS thickness [m]", "(dr_cs)", self.data.build.dr_cs) - op.ovarre( - self.outfile, - "Gap between central solenoid and TF coil [m]", - "(dr_cs_tf_gap)", - self.data.build.dr_cs_tf_gap, - ) - - op.ovarre( - self.outfile, - "CS conductor+void cross-sectional area [m²]", - "(a_cs_cable_space)", - self.data.pf_coil.a_cs_cable_space, - "OP ", - ) - op.ovarre( - self.outfile, - " CS conductor cross-sectional area [m²]", - "(a_cs_cable_space*(1-f_a_cs_void))", - self.data.pf_coil.a_cs_cable_space - * (1.0e0 - self.data.pf_coil.f_a_cs_void), - "OP ", - ) - op.ovarre( - self.outfile, - " CS void cross-sectional area [m²]", - "(a_cs_cable_space*f_a_cs_void)", - self.data.pf_coil.a_cs_cable_space * self.data.pf_coil.f_a_cs_void, - "OP ", - ) - op.ovarre( - self.outfile, - "CS steel cross-sectional area [m²]", - "(a_cs_steel_poloidal)", - self.data.pf_coil.a_cs_steel_poloidal, - "OP ", - ) - op.ovarre( - self.outfile, - "CS steel area fraction", - "(f_a_cs_turn_steel)", - self.data.pf_coil.f_a_cs_turn_steel, - ) - if self.data.pf_coil.i_cs_stress == 1: - op.ocmmnt(self.outfile, "Hoop + axial stress considered") - else: - op.ocmmnt(self.outfile, "Only hoop stress considered") + op.ocmmnt(self.outfile, "----------------------------") + op.osubhd(self.outfile, "CS Stresses:") op.ovarin( self.outfile, @@ -2219,6 +2171,10 @@ def outpf(self): "(i_cs_stress)", self.data.pf_coil.i_cs_stress, ) + if self.data.pf_coil.i_cs_stress == 1: + op.ocmmnt(self.outfile, "Hoop + axial stress considered") + else: + op.ocmmnt(self.outfile, "Only hoop stress considered") op.ovarre( self.outfile, "Allowable stress in CS steel (Pa)", @@ -2259,52 +2215,8 @@ def outpf(self): "(str_cs_con_res)", self.data.tfcoil.str_cs_con_res, ) - op.ovarre( - self.outfile, - "Copper fraction in strand", - "(fcuohsu)", - self.data.pf_coil.fcuohsu, - ) - # If REBCO material is used, print copperaoh_m2 - if self.data.pf_coil.i_cs_superconductor in {6, 8, 9}: - op.ovarre( - self.outfile, - "CS current/copper area (A/m2)", - "(copperaoh_m2)", - self.data.rebco.copperaoh_m2, - ) - op.ovarre( - self.outfile, - "Max CS current/copper area (A/m2)", - "(copperaoh_m2_max)", - self.data.rebco.copperaoh_m2_max, - ) - op.ovarre( - self.outfile, - "Void (coolant) fraction in conductor", - "(f_a_cs_void)", - self.data.pf_coil.f_a_cs_void, - ) - op.ovarre( - self.outfile, - "Helium coolant temperature (K)", - "(tftmp)", - self.data.tfcoil.tftmp, - ) - op.ovarre( - self.outfile, - "CS temperature margin (K)", - "(temp_cs_superconductor_margin)", - self.data.pf_coil.temp_cs_superconductor_margin, - "OP ", - ) - op.ovarre( - self.outfile, - "Minimum permitted temperature margin (K)", - "(temp_cs_superconductor_margin_min)", - self.data.tfcoil.temp_cs_superconductor_margin_min, - ) + op.oblnkl(self.outfile) # only output CS fatigue model for pulsed reactor design if self.data.physics.f_c_plasma_inductive > 0.0e-4: op.ovarre( @@ -2331,42 +2243,7 @@ def outpf(self): "(t_crack_radial)", self.data.cs_fatigue.t_crack_radial, ) - op.ovarre( - self.outfile, - "CS turn area (m)", - "(a_cs_turn)", - self.data.pf_coil.a_cs_turn, - ) - op.ovarre( - self.outfile, - "CS turn length (m)", - "(dr_cs_turn)", - self.data.pf_coil.dr_cs_turn, - ) - op.ovarre( - self.outfile, - "CS turn internal cable space radius (m)", - "(radius_cs_turn_cable_space)", - self.data.pf_coil.radius_cs_turn_cable_space, - ) - op.ovarre( - self.outfile, - "CS turn width (m)", - "(dz_cs_turn)", - self.data.pf_coil.dz_cs_turn, - ) - op.ovarre( - self.outfile, - "CS structural vertical thickness (m)", - "(dz_cs_turn_conduit)", - self.data.cs_fatigue.dz_cs_turn_conduit, - ) - op.ovarre( - self.outfile, - "CS structural radial thickness (m)", - "(dr_cs_turn_conduit)", - self.data.cs_fatigue.dr_cs_turn_conduit, - ) + op.ovarre( self.outfile, "Allowable number of cycles till CS fracture", @@ -2450,6 +2327,10 @@ def outpf(self): else: op.ocmmnt(self.outfile, "Resistive central solenoid") + op.oblnkl(self.outfile) + op.ocmmnt(self.outfile, "----------------------------") + op.oblnkl(self.outfile) + if self.data.pf_coil.i_pf_conductor == 0: op.oblnkl(self.outfile) op.ocmmnt(self.outfile, "Superconducting PF coils") @@ -2463,7 +2344,7 @@ def outpf(self): op.ocmmnt( self.outfile, - f" -> {SuperconductorModel(self.data.pf_coil.i_pf_superconductor).full_name}", + f"Superconductor used: {SuperconductorModel(self.data.pf_coil.i_pf_superconductor).full_name}", ) op.ovarre( @@ -2516,7 +2397,7 @@ def outpf(self): op.osubhd(self.outfile, "Geometry of PF coils, central solenoid and plasma:") op.write( self.outfile, - "coil\t\t\tR(m)\t\tZ(m)\t\tdR(m)\t\tdZ(m)\t\tturns", + "Coil\t\t\tR(m)\t\tZ(m)\t\tdR(m)\t\tdZ(m)\t\tturns", ) op.oblnkl(self.outfile) @@ -2651,6 +2532,10 @@ def outpf(self): f"Plasma\t\t\t{self.data.physics.rmajor:.2e}\t0.0e0\t\t{2.0e0 * self.data.physics.rminor:.2e}\t{2.0e0 * self.data.physics.rminor * self.data.physics.kappa:.2e}\t1.0e0", ) + op.oblnkl(self.outfile) + op.ocmmnt(self.outfile, "----------------------------") + op.oblnkl(self.outfile) + op.osubhd(self.outfile, "PF Coil Information at Peak Current:") op.write( @@ -2705,6 +2590,10 @@ def outpf(self): + f"{self.data.pf_coil.m_pf_coil_conductor_total:.2e}\t{self.data.pf_coil.m_pf_coil_structure_total:.2e}", ) + op.oblnkl(self.outfile) + op.ocmmnt(self.outfile, "----------------------------") + op.oblnkl(self.outfile) + op.osubhd(self.outfile, "PF coil current scaling information :") op.ovarre( self.outfile, @@ -3974,6 +3863,67 @@ def output_cs_structure(self) -> None: self.data.pf_coil.radius_cs_turn_corners, "OP ", ) + op.ovarre( + self.outfile, + "CS conductor+void cross-sectional area [m²]", + "(a_cs_cable_space)", + self.data.pf_coil.a_cs_cable_space, + "OP ", + ) + op.ovarre( + self.outfile, + "CS conductor cross-sectional area [m²]", + "(a_cs_cable_space*(1-f_a_cs_void))", + self.data.pf_coil.a_cs_cable_space * (1.0e0 - self.data.pf_coil.f_a_cs_void), + "OP ", + ) + op.ovarre( + self.outfile, + "CS void cross-sectional area [m²]", + "(a_cs_cable_space*f_a_cs_void)", + self.data.pf_coil.a_cs_cable_space * self.data.pf_coil.f_a_cs_void, + "OP ", + ) + op.ovarre( + self.outfile, + "CS steel cross-sectional area [m²]", + "(a_cs_steel_poloidal)", + self.data.pf_coil.a_cs_steel_poloidal, + "OP ", + ) + op.ovarre( + self.outfile, + "CS steel area fraction", + "(f_a_cs_turn_steel)", + self.data.pf_coil.f_a_cs_turn_steel, + ) + op.ovarre( + self.outfile, + "Copper fraction in strand", + "(fcuohsu)", + self.data.pf_coil.fcuohsu, + ) + # If REBCO material is used, print copperaoh_m2 + if self.data.pf_coil.i_cs_superconductor in {6, 8, 9}: + op.ovarre( + self.outfile, + "CS current/copper area (A/m²)", + "(copperaoh_m2)", + rcv.copperaoh_m2, + ) + op.ovarre( + self.outfile, + "Max CS current/copper area (A/m²)", + "(copperaoh_m2_max)", + rcv.copperaoh_m2_max, + ) + + op.ovarre( + self.outfile, + "Void (coolant) fraction in conductor", + "(f_a_cs_void)", + self.data.pf_coil.f_a_cs_void, + ) @staticmethod def calculate_cs_self_peak_midplane_axial_stress( From fcc432bfce42617a31f08a2b9026cfea9ff59524 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 22 May 2026 14:52:57 +0100 Subject: [PATCH 31/48] Refactor output formatting in PFCoil model for improved readability and consistency --- process/models/pfcoil.py | 43 ++++++++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 15 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 5968c07832..5d15a103d3 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2540,11 +2540,11 @@ def outpf(self): op.write( self.outfile, - "coil\tcurrent\t\tallowed J\tactual J\tJ\t\tcond. mass\tsteel mass\tfield", + r"Coil Peak Current Critical J Peak J Critical J Ratio Cond. Mass Steel Mass Field", ) op.write( self.outfile, - "\t(MA)\t\t(A/m2)\t\t(A/m2)\t\f_temp_plasma_ion_electron\t\t(kg)\t\t(kg)\t\t(T)", + " (MA) (A/m²) (A/m²) (-) (kg) (kg) (T)", ) op.oblnkl(self.outfile) @@ -2554,12 +2554,18 @@ def outpf(self): if self.data.pf_coil.i_pf_conductor == 0: op.write( self.outfile, - f"PF {k}\t{self.data.pf_coil.c_pf_cs_coils_peak_ma[k]:.2e}\t{self.data.pf_coil.j_pf_wp_critical[k]:.2e}\t{self.data.pf_coil.j_pf_coil_wp_peak[k]:.2e}\t{self.data.pf_coil.j_pf_coil_wp_peak[k] / self.data.pf_coil.j_pf_wp_critical[k]:.2e}\t{self.data.pf_coil.m_pf_coil_conductor[k]:.2e}\t{self.data.pf_coil.m_pf_coil_structure[k]:.2e}\t{self.data.pf_coil.b_pf_coil_peak[k]:.2e}", + f"PF {k} {self.data.pf_coil.c_pf_cs_coils_peak_ma[k]:{'.3e' if self.data.pf_coil.c_pf_cs_coils_peak_ma[k] >= 0 else '.2e'}} " + f"{self.data.pf_coil.j_pf_wp_critical[k]:{'.3e' if self.data.pf_coil.j_pf_wp_critical[k] >= 0 else '.2e'}} " + f"{self.data.pf_coil.j_pf_coil_wp_peak[k]:{'.3e' if self.data.pf_coil.j_pf_coil_wp_peak[k] >= 0 else '.2e'}} " + f"{self.data.pf_coil.j_pf_coil_wp_peak[k] / self.data.pf_coil.j_pf_wp_critical[k]:{'.3e' if (self.data.pf_coil.j_pf_coil_wp_peak[k] / self.data.pf_coil.j_pf_wp_critical[k]) >= 0 else '.2e'}} " + f"{self.data.pf_coil.m_pf_coil_conductor[k]:{'.3e' if self.data.pf_coil.m_pf_coil_conductor[k] >= 0 else '.2e'}} " + f"{self.data.pf_coil.m_pf_coil_structure[k]:{'.3e' if self.data.pf_coil.m_pf_coil_structure[k] >= 0 else '.2e'}} " + f"{self.data.pf_coil.b_pf_coil_peak[k]:{'.3e' if self.data.pf_coil.b_pf_coil_peak[k] >= 0 else '.2e'}}", ) else: op.write( self.outfile, - f"PF {k}\t{self.data.pf_coil.c_pf_cs_coils_peak_ma[k]:.2e}\t-1.0e0\t{self.data.pf_coil.j_pf_coil_wp_peak[k]:.2e}\t1.0e0\t{self.data.pf_coil.m_pf_coil_conductor[k]:.2e}\t{self.data.pf_coil.m_pf_coil_structure[k]:.2e}\t{self.data.pf_coil.b_pf_coil_peak[k]:.2e}\t", + f"PF {k} {self.data.pf_coil.c_pf_cs_coils_peak_ma[k]:.2e}\t-1.0e0\t{self.data.pf_coil.j_pf_coil_wp_peak[k]:.2e}\t1.0e0\t{self.data.pf_coil.m_pf_coil_conductor[k]:.2e}\t{self.data.pf_coil.m_pf_coil_structure[k]:.2e}\t{self.data.pf_coil.b_pf_coil_peak[k]:.2e}\t", ) # Central Solenoid, if present @@ -2568,12 +2574,18 @@ def outpf(self): # Issue #328 op.write( self.outfile, - f"CS\t\t{self.data.pf_coil.c_pf_cs_coils_peak_ma[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)):.2e}\t{max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)) / self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.m_pf_coil_conductor[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.b_pf_coil_peak[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}", + f"CS {self.data.pf_coil.c_pf_cs_coils_peak_ma[self.data.pf_coil.n_cs_pf_coils - 1]:{'.3e' if self.data.pf_coil.c_pf_cs_coils_peak_ma[self.data.pf_coil.n_cs_pf_coils - 1] >= 0 else '.2e'}} " + f"{self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1]:{'.3e' if self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1] >= 0 else '.2e'}} " + f"{max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)):{'.3e' if max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)) >= 0 else '.2e'}} " + f"{max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)) / self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1]:{'.3e' if (max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)) / self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1]) >= 0 else '.2e'}} " + f"{self.data.pf_coil.m_pf_coil_conductor[self.data.pf_coil.n_cs_pf_coils - 1]:{'.3e' if self.data.pf_coil.m_pf_coil_conductor[self.data.pf_coil.n_cs_pf_coils - 1] >= 0 else '.2e'}} " + f"{self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1]:{'.3e' if self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1] >= 0 else '.2e'}} " + f"{self.data.pf_coil.b_pf_coil_peak[self.data.pf_coil.n_cs_pf_coils - 1]:{'.3e' if self.data.pf_coil.b_pf_coil_peak[self.data.pf_coil.n_cs_pf_coils - 1] >= 0 else '.2e'}}", ) else: op.write( self.outfile, - f"CS\t\t{self.data.pf_coil.c_pf_cs_coils_peak_ma[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t-1.0e0\t{max(abs(self.data.pf_coil.j_cs_pulse_start)):.2e}\t{abs(self.data.pf_coil.j_cs_flat_top_end):.2e}\t1.0e0\t{self.data.pf_coil.m_pf_coil_conductor[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.b_pf_coil_peak[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}", + f"CS {self.data.pf_coil.c_pf_cs_coils_peak_ma[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t-1.0e0\t{max(abs(self.data.pf_coil.j_cs_pulse_start), abs(self.data.pf_coil.j_cs_flat_top_end)):.2e}\t1.0e0\t{self.data.pf_coil.m_pf_coil_conductor[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.m_pf_coil_structure[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}\t{self.data.pf_coil.b_pf_coil_peak[self.data.pf_coil.n_cs_pf_coils - 1]:.2e}", ) # Miscellaneous totals @@ -2614,22 +2626,23 @@ def outvolt(self): """ op.oheadr(self.outfile, "Volt Second Consumption") - op.write(self.outfile, "\t" * 3 + "volt-sec\t\t\tvolt-sec\t\tvolt-sec") - op.write(self.outfile, "\t" * 3 + "start-up\t\t\t_burn\t\t\ttotal") + pf = self.data.pf_coil + op.write(self.outfile, "\t" * 6 + "volt-sec\t\t\tvolt-sec\t\tvolt-sec") + op.write(self.outfile, "\t" * 6 + "start-up\t\t\tburn\t\t\t\ttotal") op.write( self.outfile, - f"PF coils:\t\t{self.data.pf_coil.vs_pf_coils_total_ramp:.2f}\t\t\t\t{self.data.pf_coil.vs_pf_coils_total_burn:.2f}\t\t\t{self.data.pf_coil.vs_pf_coils_total_pulse:.2f}", + f"PF coils:\t\t{pf.vs_pf_coils_total_ramp:.2f}\t\t\t\t{pf.vs_pf_coils_total_burn:.2f}\t\t\t{pf.vs_pf_coils_total_pulse:.2f}", ) op.write( self.outfile, - f"CS coil:\t\t{self.data.pf_coil.vs_cs_ramp:.2f}\t\t\t\t{self.data.pf_coil.vs_cs_burn:.2f}\t\t\t{self.data.pf_coil.vs_cs_total_pulse:.2f}", + f"CS coil:\t\t{pf.vs_cs_ramp:.2f}\t\t\t\t{pf.vs_cs_burn:.2f}\t\t\t{pf.vs_cs_total_pulse:.2f}", ) op.write( - self.outfile, "\t" * 3 + "-" * 7 + "\t" * 4 + "-" * 7 + "\t" * 3 + "-" * 7 + self.outfile, "\t" * 6 + "-" * 7 + "\t" * 4 + "-" * 7 + "\t" * 3 + "-" * 7 ) op.write( self.outfile, - f"Total:\t\t\t{self.data.pf_coil.vs_cs_pf_total_ramp:.2f}\t\t\t\t{self.data.pf_coil.vs_cs_pf_total_burn:.2f}\t\t\t{self.data.pf_coil.vs_cs_pf_total_pulse:.2f}", + f"Total:\t\t\t{pf.vs_cs_pf_total_ramp:.2f}\t\t\t\t{pf.vs_cs_pf_total_burn:.2f}\t\t\t{pf.vs_cs_pf_total_pulse:.2f}", ) op.oblnkl(self.outfile) @@ -2649,8 +2662,7 @@ def outvolt(self): ) op.osubhd(self.outfile, "Summary of volt-second consumption by circuit (Wb):") - - op.write(self.outfile, "circuit\t\t\tBOP\t\t\tBOF\t\tEOF") + op.write(self.outfile, "Circuit\t\t\tBOP\t\t\tBOF\t\tEOF") op.oblnkl(self.outfile) for k in range(self.data.pf_coil.nef): @@ -2659,9 +2671,10 @@ def outvolt(self): f"\t{k}\t\t\t{self.data.pf_coil.vsdum[k, 0]:.3f}\t\t\t{self.data.pf_coil.vsdum[k, 1]:.3f}\t\t{self.data.pf_coil.vsdum[k, 2]:.3f}", ) + n_cs = self.data.pf_coil.n_cs_pf_coils - 1 op.write( self.outfile, - f"\tCS coil\t\t\t{self.data.pf_coil.vsdum[self.data.pf_coil.n_cs_pf_coils - 1, 0]:.3f}\t\t\t{self.data.pf_coil.vsdum[self.data.pf_coil.n_cs_pf_coils - 1, 1]:.3f}\t\t{self.data.pf_coil.vsdum[self.data.pf_coil.n_cs_pf_coils - 1, 2]:.3f}", + f"\tCS coil\t\t\t{self.data.pf_coil.vsdum[n_cs, 0]:.3f}\t\t\t{self.data.pf_coil.vsdum[n_cs, 1]:.3f}\t\t{self.data.pf_coil.vsdum[n_cs, 2]:.3f}", ) op.oshead(self.outfile, "Waveforms") From 4218c948de321e17364ec42c195949421b1ee872 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 27 May 2026 10:20:19 +0100 Subject: [PATCH 32/48] Update integration test MFILE data to include new CS outputs and prevent divide by zero errors --- process/models/pfcoil.py | 2 - .../integration/data/large_tokamak_MFILE.DAT | 60328 ++++++++-------- 2 files changed, 30163 insertions(+), 30167 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 5d15a103d3..503e9a2cfb 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -4082,8 +4082,6 @@ def calculate_cs_hoop_stress( - M. N. Wilson, Superconducting Magnets. Oxford University Press, USA, 1983. ‌ """ - alpha = r_cs_outer / r_cs_inner - # alpha alpha = r_cs_outer / r_cs_inner diff --git a/tests/integration/data/large_tokamak_MFILE.DAT b/tests/integration/data/large_tokamak_MFILE.DAT index 08f9c4dbba..20781c5160 100644 --- a/tests/integration/data/large_tokamak_MFILE.DAT +++ b/tests/integration/data/large_tokamak_MFILE.DAT @@ -2,2461 +2,2466 @@ # Power Reactor Optimisation Code # # PROCESS # # Power Reactor Optimisation Code # -PROCESS_version__________________________________________________________ (procver)______________________ "3.4.2.dev42+g371890ba2" -Date_of_run______________________________________________________________ (date)_________________________ "08/06/2026 UTC" -Time_of_run______________________________________________________________ (time)_________________________ "14:07" +PROCESS_version__________________________________________________________ (procver)______________________ "3.3.1.dev167+g842593def.d20260527" +Date_of_run______________________________________________________________ (date)_________________________ "27/05/2026 UTC" +Time_of_run______________________________________________________________ (time)_________________________ "09:17" User_____________________________________________________________________ (username)_____________________ "mn3981" PROCESS_run_title________________________________________________________ (runtitle)_____________________ "Generic large tokamak" -PROCESS_git_tag__________________________________________________________ (tagno)________________________ "v3.4.1-22-g47551b4b5" -PROCESS_git_branch_______________________________________________________ (branch_name)__________________ "add_coolant_type_enum" -Input_filename___________________________________________________________ (fileprefix)___________________ "/home/mn3981/PROCESS/tests/integration/data/large_tokamak_IN.DAT" +PROCESS_git_tag__________________________________________________________ (tagno)________________________ "v3.3.0-181-g035b64905" +PROCESS_git_branch_______________________________________________________ (branch_name)__________________ "refactor_cs" +Input_filename___________________________________________________________ (fileprefix)___________________ "/home/mn3981/PROCESS/large_tokamak_nof.IN.DAT" Optimisation_switch______________________________________________________ (ioptimz)______________________ 1 Figure_of_merit_switch___________________________________________________ (minmax)_______________________ 1 # Numerics # # PROCESS found a feasible solution # Error_flag_______________________________________________________________ (ifail)________________________ 1 -Number_of_iteration_variables____________________________________________ (nvar)_________________________ 19 +Number_of_iteration_variables____________________________________________ (nvar)_________________________ 20 Number_of_constraints_(total)____________________________________________ (neqns+nineqns)________________ 26 Optimisation_switch______________________________________________________ (ioptimz)______________________ 1 Figure_of_merit_switch___________________________________________________ (minmax)_______________________ 1 -Objective_function_name__________________________________________________ (objf_name)____________________ "Plasma major radius (R₀)" -Normalised_objective_function____________________________________________ (norm_objf)____________________ 1.60000000003450937e+00 OP -Square_root_of_the_sum_of_squares_of_the_constraint_residuals____________ (sqsumsq)______________________ 1.09745036021651941e-09 OP -VMCON_convergence_parameter______________________________________________ (convergence_parameter)________ 2.61508802119597886e-09 OP +Objective_function_name__________________________________________________ (objf_name)____________________ "major radius " +Normalised_objective_function____________________________________________ (norm_objf)____________________ 1.60000000002877707e+00 OP +Square_root_of_the_sum_of_squares_of_the_constraint_residuals____________ (sqsumsq)______________________ 3.71089181765482182e-09 OP +VMCON_convergence_parameter______________________________________________ (convergence_parameter)________ 1.50247700000533101e-09 OP Number_of_optimising_solver_iterations___________________________________ (nviter)_______________________ 8 OP -b_plasma_toroidal_on_axis________________________________________________ (itvar001)_____________________ 4.97095088538996333e+00 -b_plasma_toroidal_on_axis_(final_value/initial_value)____________________ (xcm001)_______________________ 8.72096646559642696e-01 -b_plasma_toroidal_on_axis_(range_normalised)_____________________________ (nitvar001)____________________ 1.65420169569521963e-01 +b_plasma_toroidal_on_axis________________________________________________ (itvar001)_____________________ 4.98707032262356886e+00 +b_plasma_toroidal_on_axis_(final_value/initial_value)____________________ (xcm001)_______________________ 8.74924618004134902e-01 +b_plasma_toroidal_on_axis_(range_normalised)_____________________________ (nitvar001)____________________ 1.65957663308555159e-01 b_plasma_toroidal_on_axis_(upper_bound)__________________________________ (boundu001)____________________ 2.99999999999999964e+01 b_plasma_toroidal_on_axis_(lower_bound)__________________________________ (boundl001)____________________ 1.00000000000000002e-02 -rmajor___________________________________________________________________ (itvar002)_____________________ 8.00000000017254642e+00 -rmajor_(final_value/initial_value)_______________________________________ (xcm002)_______________________ 1.00000000002156830e+00 -rmajor_(range_normalised)________________________________________________ (nitvar002)____________________ 1.72546421595143329e-10 +rmajor___________________________________________________________________ (itvar002)_____________________ 8.00000000014388490e+00 +rmajor_(final_value/initial_value)_______________________________________ (xcm002)_______________________ 1.00000000001798561e+00 +rmajor_(range_normalised)________________________________________________ (nitvar002)____________________ 1.43884903991420288e-10 rmajor_(upper_bound)_____________________________________________________ (boundu002)____________________ 9.00000000000000000e+00 rmajor_(lower_bound)_____________________________________________________ (boundl002)____________________ 8.00000000000000000e+00 -temp_plasma_electron_vol_avg_kev_________________________________________ (itvar003)_____________________ 1.24731443906445811e+01 -temp_plasma_electron_vol_avg_kev_(final_value/initial_value)_____________ (xcm003)_______________________ 1.03942869922038184e+00 -temp_plasma_electron_vol_avg_kev_(range_normalised)______________________ (nitvar003)____________________ 7.37359781854455415e-02 +temp_plasma_electron_vol_avg_kev_________________________________________ (itvar003)_____________________ 1.26746504744851638e+01 +temp_plasma_electron_vol_avg_kev_(final_value/initial_value)_____________ (xcm003)_______________________ 1.05622087287376365e+00 +temp_plasma_electron_vol_avg_kev_(range_normalised)______________________ (nitvar003)____________________ 7.58684418086255363e-02 temp_plasma_electron_vol_avg_kev_(upper_bound)___________________________ (boundu003)____________________ 9.99999999999999858e+01 temp_plasma_electron_vol_avg_kev_(lower_bound)___________________________ (boundl003)____________________ 5.50549999999999962e+00 -beta_total_vol_avg_______________________________________________________ (itvar004)_____________________ 3.78126882594035235e-02 -beta_total_vol_avg_(final_value/initial_value)___________________________ (xcm004)_______________________ 1.26042294198011740e+00 -beta_total_vol_avg_(range_normalised)____________________________________ (nitvar004)____________________ 3.68495377972007168e-02 +beta_total_vol_avg_______________________________________________________ (itvar004)_____________________ 3.85026848015826151e-02 +beta_total_vol_avg_(final_value/initial_value)___________________________ (xcm004)_______________________ 1.28342282671942054e+00 +beta_total_vol_avg_(range_normalised)____________________________________ (nitvar004)____________________ 3.75402250266092183e-02 beta_total_vol_avg_(upper_bound)_________________________________________ (boundu004)____________________ 1.00000000000000000e+00 beta_total_vol_avg_(lower_bound)_________________________________________ (boundl004)____________________ 1.00000000000000024e-03 -nd_plasma_electrons_vol_avg______________________________________________ (itvar005)_____________________ 7.97918908402032148e+19 -nd_plasma_electrons_vol_avg_(final_value/initial_value)__________________ (xcm005)_______________________ 1.06389187786937622e+00 -nd_plasma_electrons_vol_avg_(range_normalised)___________________________ (nitvar005)____________________ 6.10121335104114523e-02 +nd_plasma_electrons_vol_avg______________________________________________ (itvar005)_____________________ 8.12256151664202711e+19 +nd_plasma_electrons_vol_avg_(final_value/initial_value)__________________ (xcm005)_______________________ 1.08300820221893690e+00 +nd_plasma_electrons_vol_avg_(range_normalised)___________________________ (nitvar005)____________________ 6.24751175167553782e-02 nd_plasma_electrons_vol_avg_(upper_bound)________________________________ (boundu005)____________________ 1.00000000000000000e+21 nd_plasma_electrons_vol_avg_(lower_bound)________________________________ (boundl005)____________________ 2.00000000000000000e+19 -hfact____________________________________________________________________ (itvar006)_____________________ 1.19999713327972790e+00 -hfact_(final_value/initial_value)________________________________________ (xcm006)_______________________ 1.09090648479975250e+00 -hfact_(range_normalised)_________________________________________________ (nitvar006)____________________ 9.99997393890661668e-01 +hfact____________________________________________________________________ (itvar006)_____________________ 1.19999574841169188e+00 +hfact_(final_value/initial_value)________________________________________ (xcm006)_______________________ 1.09090522582881078e+00 +hfact_(range_normalised)_________________________________________________ (nitvar006)____________________ 9.99996134919719948e-01 hfact_(upper_bound)______________________________________________________ (boundu006)____________________ 1.19999999999999996e+00 hfact_(lower_bound)______________________________________________________ (boundl006)____________________ 1.00000000000000006e-01 -dr_cs____________________________________________________________________ (itvar007)_____________________ 5.38814675476462890e-01 -dr_cs_(final_value/initial_value)________________________________________ (xcm007)_______________________ 1.07762935095292578e+00 -dr_cs_(range_normalised)_________________________________________________ (nitvar007)____________________ 2.46200696367487558e-02 +dr_cs____________________________________________________________________ (itvar007)_____________________ 5.88190932603959715e-01 +dr_cs_(final_value/initial_value)________________________________________ (xcm007)_______________________ 1.17638186520791943e+00 +dr_cs_(range_normalised)_________________________________________________ (nitvar007)____________________ 2.97104054230886323e-02 dr_cs_(upper_bound)______________________________________________________ (boundu007)____________________ 1.00000000000000000e+01 dr_cs_(lower_bound)______________________________________________________ (boundl007)____________________ 2.99999999999999989e-01 -q95______________________________________________________________________ (itvar008)_____________________ 3.41369456381062886e+00 -q95_(final_value/initial_value)__________________________________________ (xcm008)_______________________ 9.75341303945894023e-01 -q95_(range_normalised)___________________________________________________ (nitvar008)____________________ 8.80201199597083553e-03 +q95______________________________________________________________________ (itvar008)_____________________ 3.36431078549756624e+00 +q95_(final_value/initial_value)__________________________________________ (xcm008)_______________________ 9.61231652999304687e-01 +q95_(range_normalised)___________________________________________________ (nitvar008)____________________ 7.75129330845886373e-03 q95_(upper_bound)________________________________________________________ (boundu008)____________________ 5.00000000000000000e+01 q95_(lower_bound)________________________________________________________ (boundl008)____________________ 3.00000000000000000e+00 -dr_bore__________________________________________________________________ (itvar009)_____________________ 2.08652517234514123e+00 -dr_bore_(final_value/initial_value)______________________________________ (xcm009)_______________________ 1.04326258617257062e+00 -dr_bore_(range_normalised)_______________________________________________ (nitvar009)____________________ 2.00659108317691015e-01 +dr_bore__________________________________________________________________ (itvar009)_____________________ 2.03182507743337259e+00 +dr_bore_(final_value/initial_value)______________________________________ (xcm009)_______________________ 1.01591253871668630e+00 +dr_bore_(range_normalised)_______________________________________________ (nitvar009)____________________ 1.95133846205391148e-01 dr_bore_(upper_bound)____________________________________________________ (boundu009)____________________ 1.00000000000000000e+01 dr_bore_(lower_bound)____________________________________________________ (boundl009)____________________ 1.00000000000000006e-01 -f_c_plasma_non_inductive_________________________________________________ (itvar010)_____________________ 4.34830126924622307e-01 -f_c_plasma_non_inductive_(final_value/initial_value)_____________________ (xcm010)_______________________ 1.08707531731155571e+00 -f_c_plasma_non_inductive_(range_normalised)______________________________ (nitvar010)____________________ 4.34264391315938247e-01 -f_c_plasma_non_inductive_(upper_bound)___________________________________ (boundu010)____________________ 1.00000000000000000e+00 -f_c_plasma_non_inductive_(lower_bound)___________________________________ (boundl010)____________________ 1.00000000000000002e-03 -t_tf_superconductor_quench_______________________________________________ (itvar011)_____________________ 1.91417901163518778e+01 -t_tf_superconductor_quench_(final_value/initial_value)___________________ (xcm011)_______________________ 7.65671604654075133e-01 -t_tf_superconductor_quench_(range_normalised)____________________________ (nitvar011)____________________ 1.90608509673191984e-01 -t_tf_superconductor_quench_(upper_bound)_________________________________ (boundu011)____________________ 1.00000000000000000e+02 -t_tf_superconductor_quench_(lower_bound)_________________________________ (boundl011)____________________ 1.00000000000000006e-01 -dr_tf_nose_case__________________________________________________________ (itvar012)_____________________ 2.03751790793017529e-01 -dr_tf_nose_case_(final_value/initial_value)______________________________ (xcm012)_______________________ 4.07503581586035057e-01 -dr_tf_nose_case_(range_normalised)_______________________________________ (nitvar012)____________________ 1.61843990308439517e-01 -dr_tf_nose_case_(upper_bound)____________________________________________ (boundu012)____________________ 1.00000000000000000e+00 -dr_tf_nose_case_(lower_bound)____________________________________________ (boundl012)____________________ 5.00000000000000028e-02 -dx_tf_turn_steel_________________________________________________________ (itvar013)_____________________ 8.13797554649079748e-03 -dx_tf_turn_steel_(final_value/initial_value)_____________________________ (xcm013)_______________________ 1.01724694331134957e+00 -dx_tf_turn_steel_(range_normalised)______________________________________ (nitvar013)____________________ 1.49973420098691934e-03 -dx_tf_turn_steel_(upper_bound)___________________________________________ (boundu013)____________________ 1.00000000000000006e-01 -dx_tf_turn_steel_(lower_bound)___________________________________________ (boundl013)____________________ 8.00000000000000017e-03 -f_a_tf_turn_cable_copper_________________________________________________ (itvar014)_____________________ 8.93824025763589436e-01 -f_a_tf_turn_cable_copper_(final_value/initial_value)_____________________ (xcm014)_______________________ 1.11728003220448668e+00 -f_a_tf_turn_cable_copper_(range_normalised)______________________________ (nitvar014)____________________ 8.95054604008157950e-01 -f_a_tf_turn_cable_copper_(upper_bound)___________________________________ (boundu014)____________________ 9.39999999999999947e-01 -f_a_tf_turn_cable_copper_(lower_bound)___________________________________ (boundl014)____________________ 5.00000000000000000e-01 -c_tf_turn________________________________________________________________ (itvar015)_____________________ 8.28453020801330276e+04 -c_tf_turn_(final_value/initial_value)____________________________________ (xcm015)_______________________ 1.27454310892512357e+00 -c_tf_turn_(range_normalised)_____________________________________________ (nitvar015)____________________ 7.13812083205321302e-01 -c_tf_turn_(upper_bound)__________________________________________________ (boundu015)____________________ 9.00000000000000000e+04 -c_tf_turn_(lower_bound)__________________________________________________ (boundl015)____________________ 6.50000000000000000e+04 -f_nd_alpha_electron______________________________________________________ (itvar016)_____________________ 7.79113320586695690e-02 -f_nd_alpha_electron_(final_value/initial_value)__________________________ (xcm016)_______________________ 7.79113320586695579e-01 -f_nd_alpha_electron_(range_normalised)___________________________________ (nitvar016)____________________ 5.58226641173391158e-01 -f_nd_alpha_electron_(upper_bound)________________________________________ (boundu016)____________________ 1.00000000000000006e-01 -f_nd_alpha_electron_(lower_bound)________________________________________ (boundl016)____________________ 5.00000000000000028e-02 -f_a_cs_turn_steel________________________________________________________ (itvar017)_____________________ 7.14107870487967089e-01 -f_a_cs_turn_steel_(final_value/initial_value)____________________________ (xcm017)_______________________ 8.92634838109958806e-01 -f_a_cs_turn_steel_(range_normalised)_____________________________________ (nitvar017)____________________ 7.51430843506814550e-01 -f_a_cs_turn_steel_(upper_bound)__________________________________________ (boundu017)____________________ 9.50000000000000067e-01 -f_a_cs_turn_steel_(lower_bound)__________________________________________ (boundl017)____________________ 1.00000000000000002e-03 -f_nd_impurity_electrons(13)______________________________________________ (itvar018)_____________________ 5.96634627889471502e-04 -f_nd_impurity_electrons(13)_(final_value/initial_value)__________________ (xcm018)_______________________ 1.57009112602492484e+00 -f_nd_impurity_electrons(13)_(range_normalised)___________________________ (nitvar018)____________________ 5.96625224514695934e-02 -f_nd_impurity_electrons(13)_(upper_bound)________________________________ (boundu018)____________________ 1.00000000000000002e-02 -f_nd_impurity_electrons(13)_(lower_bound)________________________________ (boundl018)____________________ 1.00000000000000002e-08 -dr_tf_wp_with_insulation_________________________________________________ (itvar019)_____________________ 5.75684050929656244e-01 -dr_tf_wp_with_insulation_(final_value/initial_value)_____________________ (xcm019)_______________________ 1.15136810185931249e+00 -dr_tf_wp_with_insulation_(range_normalised)______________________________ (nitvar019)____________________ 1.09802531831035138e-01 -dr_tf_wp_with_insulation_(upper_bound)___________________________________ (boundu019)____________________ 2.00000000000000000e+00 -dr_tf_wp_with_insulation_(lower_bound)___________________________________ (boundl019)____________________ 4.00000000000000022e-01 -⟨β⟩_consistency____________________normalised_residue____________________ (eq_con001)____________________ 1.09744879850381949e-09 -⟨β⟩_consistency____________________residual______________________________ (res_eq_con001)________________ 4.14974929419109628e-11 -⟨β⟩_consistency____________________constraint_value______________________ (val_eq_con001)________________ 3.78126883009010095e-02 +j_cs_flat_top_end________________________________________________________ (itvar010)_____________________ 1.75050478275467679e+07 +j_cs_flat_top_end_(final_value/initial_value)____________________________ (xcm010)_______________________ 1.16700318850311779e+00 +j_cs_flat_top_end_(range_normalised)_____________________________________ (nitvar010)____________________ 1.74224702978446111e-01 +j_cs_flat_top_end_(upper_bound)__________________________________________ (boundu010)____________________ 1.00000000000000000e+08 +j_cs_flat_top_end_(lower_bound)__________________________________________ (boundl010)____________________ 1.00000000000000000e+05 +f_c_plasma_non_inductive_________________________________________________ (itvar011)_____________________ 4.48350619562831565e-01 +f_c_plasma_non_inductive_(final_value/initial_value)_____________________ (xcm011)_______________________ 1.12087654890707888e+00 +f_c_plasma_non_inductive_(range_normalised)______________________________ (nitvar011)____________________ 4.47798417980812380e-01 +f_c_plasma_non_inductive_(upper_bound)___________________________________ (boundu011)____________________ 1.00000000000000000e+00 +f_c_plasma_non_inductive_(lower_bound)___________________________________ (boundl011)____________________ 1.00000000000000002e-03 +t_tf_superconductor_quench_______________________________________________ (itvar012)_____________________ 1.92880295027100637e+01 +t_tf_superconductor_quench_(final_value/initial_value)___________________ (xcm012)_______________________ 7.71521180108402538e-01 +t_tf_superconductor_quench_(range_normalised)____________________________ (nitvar012)____________________ 1.92072367394495125e-01 +t_tf_superconductor_quench_(upper_bound)_________________________________ (boundu012)____________________ 1.00000000000000000e+02 +t_tf_superconductor_quench_(lower_bound)_________________________________ (boundl012)____________________ 1.00000000000000006e-01 +dr_tf_nose_case__________________________________________________________ (itvar013)_____________________ 2.06610339816990257e-01 +dr_tf_nose_case_(final_value/initial_value)______________________________ (xcm013)_______________________ 4.13220679633980514e-01 +dr_tf_nose_case_(range_normalised)_______________________________________ (nitvar013)____________________ 1.64852989281042361e-01 +dr_tf_nose_case_(upper_bound)____________________________________________ (boundu013)____________________ 1.00000000000000000e+00 +dr_tf_nose_case_(lower_bound)____________________________________________ (boundl013)____________________ 5.00000000000000028e-02 +dx_tf_turn_steel_________________________________________________________ (itvar014)_____________________ 8.06960680743906873e-03 +dx_tf_turn_steel_(final_value/initial_value)_____________________________ (xcm014)_______________________ 1.00870085092988360e+00 +dx_tf_turn_steel_(range_normalised)______________________________________ (nitvar014)____________________ 7.56595733033356226e-04 +dx_tf_turn_steel_(upper_bound)___________________________________________ (boundu014)____________________ 1.00000000000000006e-01 +dx_tf_turn_steel_(lower_bound)___________________________________________ (boundl014)____________________ 8.00000000000000017e-03 +f_a_tf_turn_cable_copper_________________________________________________ (itvar015)_____________________ 8.98638218006112655e-01 +f_a_tf_turn_cable_copper_(final_value/initial_value)_____________________ (xcm015)_______________________ 1.12329777250764073e+00 +f_a_tf_turn_cable_copper_(range_normalised)______________________________ (nitvar015)____________________ 9.05995950013892548e-01 +f_a_tf_turn_cable_copper_(upper_bound)___________________________________ (boundu015)____________________ 9.39999999999999947e-01 +f_a_tf_turn_cable_copper_(lower_bound)___________________________________ (boundl015)____________________ 5.00000000000000000e-01 +c_tf_turn________________________________________________________________ (itvar016)_____________________ 8.23347095886034367e+04 +c_tf_turn_(final_value/initial_value)____________________________________ (xcm016)_______________________ 1.26668783982466815e+00 +c_tf_turn_(range_normalised)_____________________________________________ (nitvar016)____________________ 6.93388383544137232e-01 +c_tf_turn_(upper_bound)__________________________________________________ (boundu016)____________________ 9.00000000000000000e+04 +c_tf_turn_(lower_bound)__________________________________________________ (boundl016)____________________ 6.50000000000000000e+04 +f_nd_alpha_electron______________________________________________________ (itvar017)_____________________ 8.70076989100456166e-02 +f_nd_alpha_electron_(final_value/initial_value)__________________________ (xcm017)_______________________ 8.70076989100456055e-01 +f_nd_alpha_electron_(range_normalised)___________________________________ (nitvar017)____________________ 7.40153978200912110e-01 +f_nd_alpha_electron_(upper_bound)________________________________________ (boundu017)____________________ 1.00000000000000006e-01 +f_nd_alpha_electron_(lower_bound)________________________________________ (boundl017)____________________ 5.00000000000000028e-02 +f_a_cs_turn_steel________________________________________________________ (itvar018)_____________________ 6.92227642973955004e-01 +f_a_cs_turn_steel_(final_value/initial_value)____________________________ (xcm018)_______________________ 8.65284553717443727e-01 +f_a_cs_turn_steel_(range_normalised)_____________________________________ (nitvar018)____________________ 7.28374755504694438e-01 +f_a_cs_turn_steel_(upper_bound)__________________________________________ (boundu018)____________________ 9.50000000000000067e-01 +f_a_cs_turn_steel_(lower_bound)__________________________________________ (boundl018)____________________ 1.00000000000000002e-03 +f_nd_impurity_electrons(13)______________________________________________ (itvar019)_____________________ 6.12023394218243070e-04 +f_nd_impurity_electrons(13)_(final_value/initial_value)__________________ (xcm019)_______________________ 1.61058787952169213e+00 +f_nd_impurity_electrons(13)_(range_normalised)___________________________ (nitvar019)____________________ 6.12014006232249261e-02 +f_nd_impurity_electrons(13)_(upper_bound)________________________________ (boundu019)____________________ 1.00000000000000002e-02 +f_nd_impurity_electrons(13)_(lower_bound)________________________________ (boundl019)____________________ 1.00000000000000002e-08 +dr_tf_wp_with_insulation_________________________________________________ (itvar020)_____________________ 5.76282058213485326e-01 +dr_tf_wp_with_insulation_(final_value/initial_value)_____________________ (xcm020)_______________________ 1.15256411642697065e+00 +dr_tf_wp_with_insulation_(range_normalised)______________________________ (nitvar020)____________________ 1.10176286383428315e-01 +dr_tf_wp_with_insulation_(upper_bound)___________________________________ (boundu020)____________________ 2.00000000000000000e+00 +dr_tf_wp_with_insulation_(lower_bound)___________________________________ (boundl020)____________________ 4.00000000000000022e-01 +⟨β⟩_consistency____________________normalised_residue____________________ (eq_con001)____________________ 3.70961794615709550e-09 +⟨β⟩_consistency____________________residual______________________________ (res_eq_con001)________________ 1.42830247629177620e-10 +⟨β⟩_consistency____________________constraint_value______________________ (val_eq_con001)________________ 3.85026849444128627e-02 ⟨β⟩_consistency____________________units_________________________________ (eq_units_con001)______________ '' -Global_power_balance_consistency__normalised_residue_____________________ (eq_con002)____________________ 1.81654691289168113e-12 -Global_power_balance_consistency__residual_______________________________ (res_eq_con002)________________ 3.76643161104084356e-13 -Global_power_balance_consistency__constraint_value_______________________ (val_eq_con002)________________ 2.07332543178859158e-01 +Global_power_balance_consistency__normalised_residue_____________________ (eq_con002)____________________ 9.72122382592033318e-11 +Global_power_balance_consistency__residual_______________________________ (res_eq_con002)________________ 2.06739902974817369e-11 +Global_power_balance_consistency__constraint_value_______________________ (val_eq_con002)________________ 2.12668737448437478e-01 Global_power_balance_consistency__units__________________________________ (eq_units_con002)______________ 'MW/m³' -Radial_build_consistency__________normalised_residue_____________________ (eq_con011)____________________ 3.57713858534225437e-13 -Radial_build_consistency__________residual_______________________________ (res_eq_con011)________________ 2.86171086827380350e-12 -Radial_build_consistency__________constraint_value_______________________ (val_eq_con011)________________ 8.00000000017540813e+00 +Radial_build_consistency__________normalised_residue_____________________ (eq_con011)____________________ 1.59894320006515045e-12 +Radial_build_consistency__________residual_______________________________ (res_eq_con011)________________ 1.27915456005212036e-11 +Radial_build_consistency__________constraint_value_______________________ (val_eq_con011)________________ 8.00000000015667645e+00 Radial_build_consistency__________units__________________________________ (eq_units_con011)______________ 'm' -Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______normalised_residue________ (ineq_con030)__________________ 6.04003820049625162e-01 -Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______physical_value____________ (ineq_value_con030)____________ 7.91992359900749534e+01 +Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______normalised_residue________ (ineq_con030)__________________ 5.76983273412588260e-01 +Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______physical_value____________ (ineq_value_con030)____________ 8.46033453174823507e+01 Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______symbol____________________ (ineq_symbol_con030)___________ '<=' Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______units_____________________ (ineq_units_con030)____________ 'MW' Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______physical_bound____________ (ineq_bound_con030)____________ 2.00000000000000000e+02 -Pₛₑₚ_>_Pₗₕ_consistency_____normalised_residue____________________________ (ineq_con015)__________________ 7.97294869800719175e-01 -Pₛₑₚ_>_Pₗₕ_consistency_____physical_value________________________________ (ineq_value_con015)____________ 1.64813246786221384e+02 +Pₛₑₚ_>_Pₗₕ_consistency_____normalised_residue____________________________ (ineq_con015)__________________ 7.51327215608437848e-01 +Pₛₑₚ_>_Pₗₕ_consistency_____physical_value________________________________ (ineq_value_con015)____________ 1.61903352765320307e+02 Pₛₑₚ_>_Pₗₕ_consistency_____symbol________________________________________ (ineq_symbol_con015)___________ '>=' Pₛₑₚ_>_Pₗₕ_consistency_____units_________________________________________ (ineq_units_con015)____________ 'MW' -Pₛₑₚ_>_Pₗₕ_consistency_____physical_bound________________________________ (ineq_bound_con015)____________ 9.17007273294534997e+01 -Net_electric_power_lower_limit____normalised_residue_____________________ (ineq_con016)__________________ 1.23631522592759779e-05 -Net_electric_power_lower_limit____physical_value_________________________ (ineq_value_con016)____________ 4.00004945260903696e+02 +Pₛₑₚ_>_Pₗₕ_consistency_____physical_bound________________________________ (ineq_bound_con015)____________ 9.24460896412625033e+01 +Net_electric_power_lower_limit____normalised_residue_____________________ (ineq_con016)__________________ 1.82772442531842216e-05 +Net_electric_power_lower_limit____physical_value_________________________ (ineq_value_con016)____________ 4.00007310897701302e+02 Net_electric_power_lower_limit____symbol_________________________________ (ineq_symbol_con016)___________ '>=' Net_electric_power_lower_limit____units__________________________________ (ineq_units_con016)____________ 'MW' Net_electric_power_lower_limit____physical_bound_________________________ (ineq_bound_con016)____________ 4.00000000000000000e+02 -⟨β⟩_upper_limit__________________normalised_residue______________________ (ineq_con024)__________________ 2.62288741863006325e-01 -⟨β⟩_upper_limit__________________physical_value__________________________ (ineq_value_con024)____________ 3.29587003977848333e-02 +⟨β⟩_upper_limit__________________normalised_residue______________________ (ineq_con024)__________________ 2.56737000917308555e-01 +⟨β⟩_upper_limit__________________physical_value__________________________ (ineq_value_con024)____________ 3.36941677290619260e-02 ⟨β⟩_upper_limit__________________symbol__________________________________ (ineq_symbol_con024)___________ '<=' ⟨β⟩_upper_limit__________________units___________________________________ (ineq_units_con024)____________ '' -⟨β⟩_upper_limit__________________physical_bound__________________________ (ineq_bound_con024)____________ 4.46769654580279826e-02 -TF_peak_symmetric_toroidal_field_upper_limit___normalised_residue________ (ineq_con025)__________________ 1.95872541066362094e-01 -TF_peak_symmetric_toroidal_field_upper_limit___physical_value____________ (ineq_value_con025)____________ 1.12577844250709305e+01 +⟨β⟩_upper_limit__________________physical_bound__________________________ (ineq_bound_con024)____________ 4.53327661549761812e-02 +TF_peak_symmetric_toroidal_field_upper_limit___normalised_residue________ (ineq_con025)__________________ 1.93032004467823426e-01 +TF_peak_symmetric_toroidal_field_upper_limit___physical_value____________ (ineq_value_con025)____________ 1.12975519374504714e+01 TF_peak_symmetric_toroidal_field_upper_limit___symbol____________________ (ineq_symbol_con025)___________ '<=' TF_peak_symmetric_toroidal_field_upper_limit___units_____________________ (ineq_units_con025)____________ 'T' TF_peak_symmetric_toroidal_field_upper_limit___physical_bound____________ (ineq_bound_con025)____________ 1.40000000000000000e+01 -CS_coil_EOF_current_density_limit_normalised_residue_____________________ (ineq_con026)__________________ 2.71732342172791297e-01 -CS_coil_EOF_current_density_limit_physical_value_________________________ (ineq_value_con026)____________ 5.09787360479046048e-01 +CS_coil_EOF_current_density_limit_normalised_residue_____________________ (ineq_con026)__________________ 5.09685330143947124e-01 +CS_coil_EOF_current_density_limit_physical_value_________________________ (ineq_value_con026)____________ 4.90314669856052876e-01 CS_coil_EOF_current_density_limit_symbol_________________________________ (ineq_symbol_con026)___________ '<=' CS_coil_EOF_current_density_limit_units__________________________________ (ineq_units_con026)____________ 'A/m²' -CS_coil_EOF_current_density_limit_physical_bound_________________________ (ineq_bound_con026)____________ 6.99999999999999956e-01 -CS_coil_BOP_current_density_limit_normalised_residue_____________________ (ineq_con027)__________________ 9.22988998912991354e-02 -CS_coil_BOP_current_density_limit_physical_value_________________________ (ineq_value_con027)____________ 6.35390770076090572e-01 +CS_coil_EOF_current_density_limit_physical_bound_________________________ (ineq_bound_con026)____________ 1.00000000000000000e+00 +CS_coil_BOP_current_density_limit_normalised_residue_____________________ (ineq_con027)__________________ 3.82269095935820591e-01 +CS_coil_BOP_current_density_limit_physical_value_________________________ (ineq_value_con027)____________ 6.17730904064179409e-01 CS_coil_BOP_current_density_limit_symbol_________________________________ (ineq_symbol_con027)___________ '<=' CS_coil_BOP_current_density_limit_units__________________________________ (ineq_units_con027)____________ 'A/m²' -CS_coil_BOP_current_density_limit_physical_bound_________________________ (ineq_bound_con027)____________ 6.99999999999999956e-01 -TF_coil_superconductor_critical_current_density_upper_limit___normalised_residue_ (ineq_con033)__________________ 1.15562571201599518e-04 -TF_coil_superconductor_critical_current_density_upper_limit___physical_value_ (ineq_value_con033)____________ 2.08448372501563653e+07 +CS_coil_BOP_current_density_limit_physical_bound_________________________ (ineq_bound_con027)____________ 1.00000000000000000e+00 +TF_coil_superconductor_critical_current_density_upper_limit___normalised_residue_ (ineq_con033)__________________ 2.61208320975032215e-01 +TF_coil_superconductor_critical_current_density_upper_limit___physical_value_ (ineq_value_con033)____________ 2.09003361813226640e+07 TF_coil_superconductor_critical_current_density_upper_limit___symbol_____ (ineq_symbol_con033)___________ '<=' TF_coil_superconductor_critical_current_density_upper_limit___units______ (ineq_units_con033)____________ 'A/m²' -TF_coil_superconductor_critical_current_density_upper_limit___physical_bound_ (ineq_bound_con033)____________ 2.08472464115541577e+07 -TF_quench_dump_voltage_upper_limit__________normalised_residue___________ (ineq_con034)__________________ 1.63181773355054793e-01 -TF_quench_dump_voltage_upper_limit__________physical_value_______________ (ineq_value_con034)____________ 8.36818226644945184e+00 +TF_coil_superconductor_critical_current_density_upper_limit___physical_bound_ (ineq_bound_con033)____________ 2.82898911488908753e+07 +TF_quench_dump_voltage_upper_limit__________normalised_residue___________ (ineq_con034)__________________ 1.58247040691869012e-01 +TF_quench_dump_voltage_upper_limit__________physical_value_______________ (ineq_value_con034)____________ 8.41752959308131032e+00 TF_quench_dump_voltage_upper_limit__________symbol_______________________ (ineq_symbol_con034)___________ '<=' TF_quench_dump_voltage_upper_limit__________units________________________ (ineq_units_con034)____________ 'V' TF_quench_dump_voltage_upper_limit__________physical_bound_______________ (ineq_bound_con034)____________ 1.00000000000000000e+01 -TF_quench_hotspot_current_density_upper_limit__________normalised_residue_ (ineq_con035)__________________ 2.67746856597028682e-05 -TF_quench_hotspot_current_density_upper_limit__________physical_value____ (ineq_value_con035)____________ 2.08448372501563653e+07 +TF_quench_hotspot_current_density_upper_limit__________normalised_residue_ (ineq_con035)__________________ 4.45775943042070466e-05 +TF_quench_hotspot_current_density_upper_limit__________physical_value____ (ineq_value_con035)____________ 2.09003361813226640e+07 TF_quench_hotspot_current_density_upper_limit__________symbol____________ (ineq_symbol_con035)___________ '<=' TF_quench_hotspot_current_density_upper_limit__________units_____________ (ineq_units_con035)____________ 'A/m²' -TF_quench_hotspot_current_density_upper_limit__________physical_bound____ (ineq_bound_con035)____________ 2.08453953790650927e+07 -TF_coil_superconductor_temperature_margin_lower_limit__normalised_residue_ (ineq_con036)__________________ 1.47623696813298011e-01 -TF_coil_superconductor_temperature_margin_lower_limit__physical_value____ (ineq_value_con036)____________ 1.72143554521994702e+00 +TF_quench_hotspot_current_density_upper_limit__________physical_bound____ (ineq_bound_con035)____________ 2.09012679095639810e+07 +TF_coil_superconductor_temperature_margin_lower_limit__normalised_residue_ (ineq_con036)__________________ 5.15609025384833330e-04 +TF_coil_superconductor_temperature_margin_lower_limit__physical_value____ (ineq_value_con036)____________ 1.50077341353807725e+00 TF_coil_superconductor_temperature_margin_lower_limit__symbol____________ (ineq_symbol_con036)___________ '>=' TF_coil_superconductor_temperature_margin_lower_limit__units_____________ (ineq_units_con036)____________ 'K' TF_coil_superconductor_temperature_margin_lower_limit__physical_bound____ (ineq_bound_con036)____________ 1.50000000000000000e+00 -CS_superconductor_temperature_margin_lower_limit_normalised_residue______ (ineq_con060)__________________ 6.04146494616042418e-05 -CS_superconductor_temperature_margin_lower_limit_physical_value__________ (ineq_value_con060)____________ 1.50009062197419230e+00 +CS_superconductor_temperature_margin_lower_limit_normalised_residue______ (ineq_con060)__________________ 1.24514451325552500e-04 +CS_superconductor_temperature_margin_lower_limit_physical_value__________ (ineq_value_con060)____________ 1.50018677167698833e+00 CS_superconductor_temperature_margin_lower_limit_symbol__________________ (ineq_symbol_con060)___________ '>=' CS_superconductor_temperature_margin_lower_limit_units___________________ (ineq_units_con060)____________ 'K' CS_superconductor_temperature_margin_lower_limit_physical_bound__________ (ineq_bound_con060)____________ 1.50000000000000000e+00 -Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________normalised_residue_ (ineq_con062)__________________ 3.00573739710028098e-01 -Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________physical_value_ (ineq_value_con062)____________ 6.50286869855014071e+00 +Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________normalised_residue_ (ineq_con062)__________________ 4.37786509770546672e-01 +Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________physical_value_ (ineq_value_con062)____________ 7.18893254885273336e+00 Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________symbol_____ (ineq_symbol_con062)___________ '>=' Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________units______ (ineq_units_con062)____________ '' Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________physical_bound_ (ineq_bound_con062)____________ 5.00000000000000000e+00 -VV_stress_during_TF_quench_upper_limit______normalised_residue___________ (ineq_con065)__________________ 6.70034163831404905e-01 -VV_stress_during_TF_quench_upper_limit______physical_value_______________ (ineq_value_con065)____________ 4.71851145721091032e+07 +VV_stress_during_TF_quench_upper_limit______normalised_residue___________ (ineq_con065)__________________ 6.70412237033742975e-01 +VV_stress_during_TF_quench_upper_limit______physical_value_______________ (ineq_value_con065)____________ 4.71310501041747555e+07 VV_stress_during_TF_quench_upper_limit______symbol_______________________ (ineq_symbol_con065)___________ '<=' VV_stress_during_TF_quench_upper_limit______units________________________ (ineq_units_con065)____________ 'Pa' VV_stress_during_TF_quench_upper_limit______physical_bound_______________ (ineq_bound_con065)____________ 1.43000000000000000e+08 -CS_Tresca_yield_criterion_upper_limit______normalised_residue____________ (ineq_con072)__________________ 6.43610647488301879e-06 -CS_Tresca_yield_criterion_upper_limit______physical_value________________ (ineq_value_con072)____________ 7.49995172920143843e+08 +CS_Tresca_yield_criterion_upper_limit______normalised_residue____________ (ineq_con072)__________________ 1.82055777889766901e-05 +CS_Tresca_yield_criterion_upper_limit______physical_value________________ (ineq_value_con072)____________ 7.49986345816658258e+08 CS_Tresca_yield_criterion_upper_limit______symbol________________________ (ineq_symbol_con072)___________ '<=' CS_Tresca_yield_criterion_upper_limit______units_________________________ (ineq_units_con072)____________ 'Pa' CS_Tresca_yield_criterion_upper_limit______physical_bound________________ (ineq_bound_con072)____________ 7.50000000000000000e+08 -nₑ₀_>_nₑ_pedestal_constraint______normalised_residue_____________________ (ineq_con081)__________________ 6.76775163679876224e-01 -nₑ₀_>_nₑ_pedestal_constraint______physical_value_________________________ (ineq_value_con081)____________ 1.04953225969192829e+20 +nₑ₀_>_nₑ_pedestal_constraint______normalised_residue_____________________ (ineq_con081)__________________ 6.76773035746281559e-01 +nₑ₀_>_nₑ_pedestal_constraint______physical_value_________________________ (ineq_value_con081)____________ 1.06838999822266597e+20 nₑ₀_>_nₑ_pedestal_constraint______symbol_________________________________ (ineq_symbol_con081)___________ '>=' nₑ₀_>_nₑ_pedestal_constraint______units__________________________________ (ineq_units_con081)____________ '/m³' -nₑ₀_>_nₑ_pedestal_constraint______physical_bound_________________________ (ineq_bound_con081)____________ 6.25923070919424164e+19 -(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______normalised_residue___________________ (ineq_con068)__________________ 9.93583358099847658e-06 -(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______physical_value_______________________ (ineq_value_con068)____________ 9.99990064166419046e+00 +nₑ₀_>_nₑ_pedestal_constraint______physical_bound_________________________ (ineq_bound_con081)____________ 6.37170311930235372e+19 +(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______normalised_residue___________________ (ineq_con068)__________________ 1.38498212903792606e-05 +(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______physical_value_______________________ (ineq_value_con068)____________ 9.99986150178709643e+00 (PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______symbol_______________________________ (ineq_symbol_con068)___________ '<=' (PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______units________________________________ (ineq_units_con068)____________ 'MWT/m' (PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______physical_bound_______________________ (ineq_bound_con068)____________ 1.00000000000000000e+01 -TF_coil_case_stress_upper_limit___normalised_residue_____________________ (ineq_con031)__________________ 7.45142224944927989e-06 -TF_coil_case_stress_upper_limit___physical_value_________________________ (ineq_value_con031)____________ 7.49994411433312893e+08 +TF_coil_case_stress_upper_limit___normalised_residue_____________________ (ineq_con031)__________________ 2.18050688656212799e-05 +TF_coil_case_stress_upper_limit___physical_value_________________________ (ineq_value_con031)____________ 7.49983646198350787e+08 TF_coil_case_stress_upper_limit___symbol_________________________________ (ineq_symbol_con031)___________ '<=' TF_coil_case_stress_upper_limit___units__________________________________ (ineq_units_con031)____________ 'Pa' TF_coil_case_stress_upper_limit___physical_bound_________________________ (ineq_bound_con031)____________ 7.50000000000000000e+08 -TF_coil_conduit_stress_upper_limit__normalised_residue___________________ (ineq_con032)__________________ 1.34474142032219413e-01 -TF_coil_conduit_stress_upper_limit__physical_value_______________________ (ineq_value_con032)____________ 6.49144393475835443e+08 +TF_coil_conduit_stress_upper_limit__normalised_residue___________________ (ineq_con032)__________________ 1.34507309426846522e-01 +TF_coil_conduit_stress_upper_limit__physical_value_______________________ (ineq_value_con032)____________ 6.49119517929865122e+08 TF_coil_conduit_stress_upper_limit__symbol_______________________________ (ineq_symbol_con032)___________ '<=' TF_coil_conduit_stress_upper_limit__units________________________________ (ineq_units_con032)____________ 'Pa' TF_coil_conduit_stress_upper_limit__physical_bound_______________________ (ineq_bound_con032)____________ 7.50000000000000000e+08 -Electron_density_upper_limit_(nₑ<)__normalised_residue___________________ (ineq_con005)__________________ 3.69123321053432818e-06 -Electron_density_upper_limit_(nₑ<)__physical_value_______________________ (ineq_value_con005)____________ 8.83652838340796580e+19 +Electron_density_upper_limit_(nₑ<)__normalised_residue___________________ (ineq_con005)__________________ 4.63579928944302111e-06 +Electron_density_upper_limit_(nₑ<)__physical_value_______________________ (ineq_value_con005)____________ 8.99530387957490975e+19 Electron_density_upper_limit_(nₑ<)__symbol_______________________________ (ineq_symbol_con005)___________ '<=' Electron_density_upper_limit_(nₑ<)__units________________________________ (ineq_units_con005)____________ '/m³' -Electron_density_upper_limit_(nₑ<)__physical_bound_______________________ (ineq_bound_con005)____________ 8.83656100121540035e+19 -Neutron_wall_load_upper_limit_____normalised_residue_____________________ (ineq_con008)__________________ 4.91716700027189257e-01 -Neutron_wall_load_upper_limit_____physical_value_________________________ (ineq_value_con008)____________ 1.01656659994562149e+00 +Electron_density_upper_limit_(nₑ<)__physical_bound_______________________ (ineq_bound_con005)____________ 8.99534558019155886e+19 +Neutron_wall_load_upper_limit_____normalised_residue_____________________ (ineq_con008)__________________ 4.84119853506016495e-01 +Neutron_wall_load_upper_limit_____physical_value_________________________ (ineq_value_con008)____________ 1.03176029298796701e+00 Neutron_wall_load_upper_limit_____symbol_________________________________ (ineq_symbol_con008)___________ '<=' Neutron_wall_load_upper_limit_____units__________________________________ (ineq_units_con008)____________ 'MW/m²' Neutron_wall_load_upper_limit_____physical_bound_________________________ (ineq_bound_con008)____________ 2.00000000000000000e+00 -Fusion_power_upper_limit__________normalised_residue_____________________ (ineq_con009)__________________ 4.58316069112746138e-01 -Fusion_power_upper_limit__________physical_value_________________________ (ineq_value_con009)____________ 1.62505179266176174e+03 +Fusion_power_upper_limit__________normalised_residue_____________________ (ineq_con009)__________________ 4.50217518529922311e-01 +Fusion_power_upper_limit__________physical_value_________________________ (ineq_value_con009)____________ 1.64934744441023304e+03 Fusion_power_upper_limit__________symbol_________________________________ (ineq_symbol_con009)___________ '<=' Fusion_power_upper_limit__________units__________________________________ (ineq_units_con009)____________ 'MW' Fusion_power_upper_limit__________physical_bound_________________________ (ineq_bound_con009)____________ 3.00000000000000000e+03 -Burn_time_lower_limit_____________normalised_residue_____________________ (ineq_con013)__________________ 6.06537719027855360e-06 -Burn_time_lower_limit_____________physical_value_________________________ (ineq_value_con013)____________ 7.20004367071577053e+03 +Burn_time_lower_limit_____________normalised_residue_____________________ (ineq_con013)__________________ 8.78464682307900091e-06 +Burn_time_lower_limit_____________physical_value_________________________ (ineq_value_con013)____________ 7.20006324945712640e+03 Burn_time_lower_limit_____________symbol_________________________________ (ineq_symbol_con013)___________ '>=' Burn_time_lower_limit_____________units__________________________________ (ineq_units_con013)____________ 'sec' Burn_time_lower_limit_____________physical_bound_________________________ (ineq_bound_con013)____________ 7.20000000000000000e+03 -Runtime_of_PROCESS_in_seconds____________________________________________ (process_runtime)______________ 1.62283866405487061e+01 +Runtime_of_PROCESS_in_seconds____________________________________________ (process_runtime)______________ 1.71616399288177490e+01 # Final Feasible Point # # Power Reactor Costs (1990 US$) # -First_wall_/_blanket_life_(years)________________________________________ (life_blkt)____________________ 4.91851689822138738e+00 -Divertor_life_(years)____________________________________________________ (life_div)_____________________ 1.02496414152843185e+00 -Cost_of_electricity_(m$/kWh)_____________________________________________ (coe)__________________________ 5.06978129038085058e+02 +First_wall_/_blanket_life_(years)________________________________________ (life_blkt)____________________ 4.84608686143566558e+00 +Divertor_life_(years)____________________________________________________ (life_div)_____________________ 1.02730752894734345e+00 +Cost_of_electricity_(m$/kWh)_____________________________________________ (coe)__________________________ 5.05763964823031870e+02 # Detailed Costings (1990 US$) # Acc.22_multiplier_for_Nth_of_a_kind______________________________________ (fkind)________________________ 1.00000000000000000e+00 Level_of_Safety_Assurance________________________________________________ (lsa)__________________________ 4 # Structures and Site Facilities # Site_improvements,_facilities,_land_(M$)_________________________________ (c211)_________________________ 3.52000000000000028e+01 -Reactor_building_cost_(M$)_______________________________________________ (c212)_________________________ 4.48013212472533496e+02 +Reactor_building_cost_(M$)_______________________________________________ (c212)_________________________ 4.48432037925779127e+02 Turbine_building_cost_(M$)_______________________________________________ (c213)_________________________ 3.80000000000000000e+01 -Reactor_maintenance_building_cost_(M$)___________________________________ (c2141)________________________ 1.03067666770750478e+02 -Warm_shop_cost_(M$)______________________________________________________ (c2142)________________________ 5.76412769157642870e+01 +Reactor_maintenance_building_cost_(M$)___________________________________ (c2141)________________________ 1.03067666770417446e+02 +Warm_shop_cost_(M$)______________________________________________________ (c2142)________________________ 5.76412769156547569e+01 Tritium_building_cost_(M$)_______________________________________________ (c215)_________________________ 1.47999999999999989e+01 -Electrical_equipment_building_cost_(M$)__________________________________ (c216)_________________________ 1.92055652333430409e+01 +Electrical_equipment_building_cost_(M$)__________________________________ (c216)_________________________ 1.92062566670402752e+01 Additional_buildings_cost_(M$)___________________________________________ (c2171)________________________ 1.80000000000000000e+01 Control_room_buildings_cost_(M$)_________________________________________ (c2172)________________________ 2.10000000000000000e+01 Shop_and_warehouses_cost_(M$)____________________________________________ (c2173)________________________ 1.14999999999999982e+01 -Cryogenic_building_cost_(M$)_____________________________________________ (c2174)________________________ 7.41402412540725297e+00 -Total_account_21_cost_(M$)_______________________________________________ (c21)__________________________ 7.73841745517798472e+02 +Cryogenic_building_cost_(M$)_____________________________________________ (c2174)________________________ 7.41997247282210992e+00 +Total_account_21_cost_(M$)_______________________________________________ (c21)__________________________ 7.74267210751713606e+02 # Reactor Systems # -First_wall_cost_(M$)_____________________________________________________ (c2211)________________________ 2.00006500457068256e+02 -Blanket_beryllium_cost_(M$)______________________________________________ (c22121)_______________________ 2.73629900883118751e+02 -Blanket_breeder_material_cost_(M$)_______________________________________ (c22122)_______________________ 6.70570213192121969e+02 -Blanket_stainless_steel_cost_(M$)________________________________________ (c22123)_______________________ 8.46024909473840836e+01 +First_wall_cost_(M$)_____________________________________________________ (c2211)________________________ 1.91300792111912870e+02 +Blanket_beryllium_cost_(M$)______________________________________________ (c22121)_______________________ 2.61092739755135653e+02 +Blanket_breeder_material_cost_(M$)_______________________________________ (c22122)_______________________ 6.39846060666091375e+02 +Blanket_stainless_steel_cost_(M$)________________________________________ (c22123)_______________________ 8.07261782439374400e+01 Blanket_vanadium_cost_(M$)_______________________________________________ (c22124)_______________________ 0.00000000000000000e+00 -Blanket_total_cost_(M$)__________________________________________________ (c2212)________________________ 1.02880260502262468e+03 -Bulk_shield_cost_(M$)____________________________________________________ (c22131)_______________________ 7.83942026859331804e+01 -Penetration_shielding_cost_(M$)__________________________________________ (c22132)_______________________ 7.83942026859331804e+01 -Total_shield_cost_(M$)___________________________________________________ (c2213)________________________ 1.56788405371866361e+02 -Total_support_structure_cost_(M$)________________________________________ (c2214)________________________ 3.94136038328070271e+01 -Divertor_cost_(M$)_______________________________________________________ (c2215)________________________ 4.16600318625206114e+01 -Total_account_221_cost_(M$)______________________________________________ (c221)_________________________ 1.46667114654688703e+03 +Blanket_total_cost_(M$)__________________________________________________ (c2212)________________________ 9.81664978665164426e+02 +Bulk_shield_cost_(M$)____________________________________________________ (c22131)_______________________ 7.83942026854750935e+01 +Penetration_shielding_cost_(M$)__________________________________________ (c22132)_______________________ 7.83942026854750935e+01 +Total_shield_cost_(M$)___________________________________________________ (c2213)________________________ 1.56788405370950187e+02 +Total_support_structure_cost_(M$)________________________________________ (c2214)________________________ 3.94838146263062413e+01 +Divertor_cost_(M$)_______________________________________________________ (c2215)________________________ 4.16600318622220911e+01 +Total_account_221_cost_(M$)______________________________________________ (c221)_________________________ 1.41089802263655565e+03 # Magnets # -TF_coil_conductor_cost_(M$)______________________________________________ (c22211)_______________________ 1.37541354384116801e+02 -TF_coil_winding_cost_(M$)________________________________________________ (c22212)_______________________ 5.50555139278807388e+01 -TF_coil_case_cost_(M$)___________________________________________________ (c22213)_______________________ 3.34366714315363879e+02 -TF_intercoil_structure_cost_(M$)_________________________________________ (c22214)_______________________ 1.36770868125995605e+02 -TF_coil_gravity_support_structure_(M$)___________________________________ (c22215)_______________________ 4.27503629009933803e+01 -TF_magnet_assemblies_cost_(M$)___________________________________________ (c2221)________________________ 7.06484813654350319e+02 -PF_coil_conductor_cost_(M$)______________________________________________ (c22221)_______________________ 4.25525611406216115e+02 -PF_coil_winding_cost_(M$)________________________________________________ (c22222)_______________________ 7.27700521688755373e+01 -PF_coil_case_cost_(M$)___________________________________________________ (c22223)_______________________ 1.37411916734087072e+02 -PF_coil_support_structure_cost_(M$)______________________________________ (c22224)_______________________ 7.85048573714757847e+00 -PF_magnet_assemblies_cost_(M$)___________________________________________ (c2222)________________________ 6.43558066046326303e+02 -Vacuum_vessel_assembly_cost_(M$)_________________________________________ (c2223)________________________ 2.54042123814594959e+02 -Total_account_222_cost_(M$)______________________________________________ (c222)_________________________ 1.60408500351527164e+03 +TF_coil_conductor_cost_(M$)______________________________________________ (c22211)_______________________ 1.35578533153393948e+02 +TF_coil_winding_cost_(M$)________________________________________________ (c22212)_______________________ 5.55890498614778465e+01 +TF_coil_case_cost_(M$)___________________________________________________ (c22213)_______________________ 3.38062818620349788e+02 +TF_intercoil_structure_cost_(M$)_________________________________________ (c22214)_______________________ 1.39912827128261910e+02 +TF_coil_gravity_support_structure_(M$)___________________________________ (c22215)_______________________ 4.31081345736084387e+01 +TF_magnet_assemblies_cost_(M$)___________________________________________ (c2221)________________________ 7.12251363337092016e+02 +PF_coil_conductor_cost_(M$)______________________________________________ (c22221)_______________________ 4.36138016019219549e+02 +PF_coil_winding_cost_(M$)________________________________________________ (c22222)_______________________ 7.37400779316394193e+01 +PF_coil_case_cost_(M$)___________________________________________________ (c22223)_______________________ 1.40254339691590445e+02 +PF_coil_support_structure_cost_(M$)______________________________________ (c22224)_______________________ 8.13515204662120084e+00 +PF_magnet_assemblies_cost_(M$)___________________________________________ (c2222)________________________ 6.58267585689070643e+02 +Vacuum_vessel_assembly_cost_(M$)_________________________________________ (c2223)________________________ 2.54042123813152443e+02 +Total_account_222_cost_(M$)______________________________________________ (c222)_________________________ 1.62456107283931533e+03 # Power Injection # -ECH_system_cost_(M$)_____________________________________________________ (c2231)________________________ 2.37597707970224860e+02 +ECH_system_cost_(M$)_____________________________________________________ (c2231)________________________ 2.53810035952447066e+02 Lower_hybrid_system_cost_(M$)____________________________________________ (c2232)________________________ 0.00000000000000000e+00 Neutral_beam_system_cost_(M$)____________________________________________ (c2233)________________________ 0.00000000000000000e+00 -Total_account_223_cost_(M$)______________________________________________ (c223)_________________________ 2.37597707970224860e+02 +Total_account_223_cost_(M$)______________________________________________ (c223)_________________________ 2.53810035952447066e+02 # Vacuum Systems # -High_vacuum_pumps_cost_(M$)______________________________________________ (c2241)________________________ 1.28699999999999992e+01 +High_vacuum_pumps_cost_(M$)______________________________________________ (c2241)________________________ 1.24799999999999986e+01 Backing_pumps_cost_(M$)__________________________________________________ (c2242)________________________ 4.67999999999999972e+00 -Vacuum_duct_cost_(M$)____________________________________________________ (c2243)________________________ 2.66361978925133602e+00 -Valves_cost_(M$)_________________________________________________________ (c2244)________________________ 6.08472383397996630e+00 +Vacuum_duct_cost_(M$)____________________________________________________ (c2243)________________________ 2.47038379752873638e+00 +Valves_cost_(M$)_________________________________________________________ (c2244)________________________ 5.64087852224764763e+00 Duct_shielding_cost_(M$)_________________________________________________ (c2245)________________________ 0.00000000000000000e+00 Instrumentation_cost_(M$)________________________________________________ (c2246)________________________ 1.30000000000000004e+00 -Total_account_224_cost_(M$)______________________________________________ (c224)_________________________ 2.75983436232312975e+01 +Total_account_224_cost_(M$)______________________________________________ (c224)_________________________ 2.65712623197763804e+01 # Power Conditioning # -TF_coil_power_supplies_cost_(M$)_________________________________________ (c22511)_______________________ 3.41906888745534676e+00 -TF_coil_breakers_cost_(M$)_______________________________________________ (c22512)_______________________ 3.02204772697540562e+01 -TF_coil_dump_resistors_cost_(M$)_________________________________________ (c22513)_______________________ 1.86184553266801700e+01 +TF_coil_power_supplies_cost_(M$)_________________________________________ (c22511)_______________________ 3.42711096832259088e+00 +TF_coil_breakers_cost_(M$)_______________________________________________ (c22512)_______________________ 3.02135841144862027e+01 +TF_coil_dump_resistors_cost_(M$)_________________________________________ (c22513)_______________________ 1.87547274728246762e+01 TF_coil_instrumentation_and_control_(M$)_________________________________ (c22514)_______________________ 4.79999999999999982e+00 -TF_coil_bussing_cost_(M$)________________________________________________ (c22515)_______________________ 3.25372121572929771e+01 -Total,_TF_coil_power_costs_(M$)__________________________________________ (c2251)________________________ 8.95952136411825393e+01 -PF_coil_power_supplies_cost_(M$)_________________________________________ (c22521)_______________________ 2.58200589417052262e+00 +TF_coil_bussing_cost_(M$)________________________________________________ (c22515)_______________________ 3.23366786833217006e+01 +Total,_TF_coil_power_costs_(M$)__________________________________________ (c2251)________________________ 8.95321012389551640e+01 +PF_coil_power_supplies_cost_(M$)_________________________________________ (c22521)_______________________ 2.64468187184878856e+00 PF_coil_instrumentation_and_control_(M$)_________________________________ (c22522)_______________________ 3.59999999999999964e+00 -PF_coil_bussing_cost_(M$)________________________________________________ (c22523)_______________________ 1.19952000000811658e+01 -PF_coil_burn_power_supplies_cost_(M$)____________________________________ (c22524)_______________________ 1.26923780569472977e+00 +PF_coil_bussing_cost_(M$)________________________________________________ (c22523)_______________________ 1.19952000000676815e+01 +PF_coil_burn_power_supplies_cost_(M$)____________________________________ (c22524)_______________________ 1.26984871211426009e+00 PF_coil_breakers_cost_(M$)_______________________________________________ (c22525)_______________________ 1.47093702844054572e+01 -PF_coil_dump_resistors_cost_(M$)_________________________________________ (c22526)_______________________ 3.54062324424281449e+00 +PF_coil_dump_resistors_cost_(M$)_________________________________________ (c22526)_______________________ 3.64146614668102409e+00 PF_coil_ac_breakers_cost_(M$)____________________________________________ (c22527)_______________________ 8.99999999999999911e-01 -Total,_PF_coil_power_costs_(M$)__________________________________________ (c2252)________________________ 3.85964372285946880e+01 -Total,_energy_storage_cost_(M$)__________________________________________ (c2253)________________________ 1.68642084921997011e+01 -Total_account_225_cost_(M$)______________________________________________ (c225)_________________________ 1.45055859361976928e+02 +Total,_PF_coil_power_costs_(M$)__________________________________________ (c2252)________________________ 3.87605670151172106e+01 +Total,_energy_storage_cost_(M$)__________________________________________ (c2253)________________________ 1.68643082274470899e+01 +Total_account_225_cost_(M$)______________________________________________ (c225)_________________________ 1.45156976481519450e+02 # Heat Transport System # -Pumps_and_piping_system_cost_(M$)________________________________________ (cpp)__________________________ 3.79172257964038693e+01 -Primary_heat_exchanger_cost_(M$)_________________________________________ (chx)__________________________ 7.23091564432788658e+01 -Total,_reactor_cooling_system_cost_(M$)__________________________________ (c2261)________________________ 1.10226382239682735e+02 -Pumps,_piping_cost_(M$)__________________________________________________ (cppa)_________________________ 2.89642089311734665e+01 -Total,_auxiliary_cooling_system_cost_(M$)________________________________ (c2262)________________________ 2.89642089311734665e+01 -Total,_cryogenic_system_cost_(M$)________________________________________ (c2263)________________________ 1.88006906425095707e+02 -Total_account_226_cost_(M$)______________________________________________ (c226)_________________________ 3.27197497595951916e+02 +Pumps_and_piping_system_cost_(M$)________________________________________ (cpp)__________________________ 3.72147376199039641e+01 +Primary_heat_exchanger_cost_(M$)_________________________________________ (chx)__________________________ 7.26604652931616215e+01 +Total,_reactor_cooling_system_cost_(M$)__________________________________ (c2261)________________________ 1.09875202913065579e+02 +Pumps,_piping_cost_(M$)__________________________________________________ (cppa)_________________________ 2.94702597677910134e+01 +Total,_auxiliary_cooling_system_cost_(M$)________________________________ (c2262)________________________ 2.94702597677910134e+01 +Total,_cryogenic_system_cost_(M$)________________________________________ (c2263)________________________ 1.88209059407341726e+02 +Total_account_226_cost_(M$)______________________________________________ (c226)_________________________ 3.27554522088198325e+02 # Fuel Handling System # Fuelling_system_cost_(M$)________________________________________________ (c2271)________________________ 2.23000000000000007e+01 -Fuel_processing_and_purification_cost_(M$)_______________________________ (c2272)________________________ 1.02768515156729009e+02 -Atmospheric_recovery_systems_cost_(M$)___________________________________ (c2273)________________________ 5.75681345333144492e+01 -Nuclear_building_ventilation_cost_(M$)___________________________________ (c2274)________________________ 6.87054270556942441e+01 -Total_account_227_cost_(M$)______________________________________________ (c227)_________________________ 2.51342076745737700e+02 +Fuel_processing_and_purification_cost_(M$)_______________________________ (c2272)________________________ 1.03577763733288236e+02 +Atmospheric_recovery_systems_cost_(M$)___________________________________ (c2273)________________________ 5.76179438296431599e+01 +Nuclear_building_ventilation_cost_(M$)___________________________________ (c2274)________________________ 6.87529793762508774e+01 +Total_account_227_cost_(M$)______________________________________________ (c227)_________________________ 2.52248686939182278e+02 # Instrumentation and Control # Instrumentation_and_control_cost_(M$)____________________________________ (c228)_________________________ 1.50000000000000000e+02 # Maintenance Equipment # Maintenance_equipment_cost_(M$)__________________________________________ (c229)_________________________ 1.25000000000000000e+02 # Total Account 22 Cost # -Total_account_22_cost_(M$)_______________________________________________ (c22)__________________________ 4.33454763535928214e+03 +Total_account_22_cost_(M$)_______________________________________________ (c22)__________________________ 4.31580057925699475e+03 # Turbine Plant Equipment # -Turbine_plant_equipment_cost_(M$)________________________________________ (c23)__________________________ 1.77929478267197993e+02 +Turbine_plant_equipment_cost_(M$)________________________________________ (c23)__________________________ 1.78954939811341518e+02 # Electric Plant Equipment # Switchyard_equipment_cost_(M$)___________________________________________ (c241)_________________________ 1.83999999999999986e+01 -Transformers_cost_(M$)___________________________________________________ (c242)_________________________ 7.36792132226266716e+00 -Low_voltage_equipment_cost_(M$)__________________________________________ (c243)_________________________ 6.57366972115304904e+00 +Transformers_cost_(M$)___________________________________________________ (c242)_________________________ 7.45910755582987051e+00 +Low_voltage_equipment_cost_(M$)__________________________________________ (c243)_________________________ 6.49635392936309053e+00 Diesel_backup_equipment_cost_(M$)________________________________________ (c244)_________________________ 6.79999999999999982e+00 Auxiliary_facilities_cost_(M$)___________________________________________ (c245)_________________________ 1.50000000000000000e+00 -Total_account_24_cost_(M$)_______________________________________________ (c24)__________________________ 4.06415910434157155e+01 +Total_account_24_cost_(M$)_______________________________________________ (c24)__________________________ 4.06554614851929585e+01 # Miscellaneous Plant Equipment # Miscellaneous_plant_equipment_cost_(M$)__________________________________ (c25)__________________________ 2.50000000000000000e+01 # Heat Rejection System # -Heat_rejection_system_cost_(M$)__________________________________________ (c26)__________________________ 5.04917443488238433e+01 +Heat_rejection_system_cost_(M$)__________________________________________ (c26)__________________________ 5.08425524531706543e+01 # Plant Direct Cost # -Plant_direct_cost_(M$)___________________________________________________ (cdirt)________________________ 5.40245219453651862e+03 +Plant_direct_cost_(M$)___________________________________________________ (cdirt)________________________ 5.38552074375841312e+03 # Reactor Core Cost # -Reactor_core_cost_(M$)___________________________________________________ (crctcore)_____________________ 3.30835385803238341e+03 +Reactor_core_cost_(M$)___________________________________________________ (crctcore)_____________________ 3.28926913142831791e+03 # Indirect Cost # -Indirect_cost_(M$)_______________________________________________________ (c9)___________________________ 1.80171780687792875e+03 +Indirect_cost_(M$)_______________________________________________________ (c9)___________________________ 1.79607116804343059e+03 # Total Contingency # -Total_contingency_(M$)___________________________________________________ (ccont)________________________ 1.40481315027581718e+03 +Total_contingency_(M$)___________________________________________________ (ccont)________________________ 1.40041042280135957e+03 # Constructed Cost # -Constructed_cost_(M$)____________________________________________________ (concost)______________________ 8.60898315169026500e+03 +Constructed_cost_(M$)____________________________________________________ (concost)______________________ 8.58200233460320305e+03 # Interest during Construction # -Interest_during_construction_(M$)________________________________________ (moneyint)_____________________ 1.42048222002889406e+03 +Interest_during_construction_(M$)________________________________________ (moneyint)_____________________ 1.41603038520952873e+03 # Total Capital Investment # -Total_capital_investment_(M$)____________________________________________ (capcost)______________________ 1.00294653717191595e+04 +Total_capital_investment_(M$)____________________________________________ (capcost)______________________ 9.99803271981273247e+03 # Plant Availability # Allowable_blanket_neutron_fluence_(MW-yr/m2)_____________________________ (abktflnc)_____________________ 5.00000000000000000e+00 Allowable_divertor_heat_fluence_(MW-yr/m2)_______________________________ (adivflnc)_____________________ 7.00000000000000000e+00 -First_wall_/_blanket_lifetime_(years)____________________________________ (life_blkt_fpy)________________ 6.14814612277673422e+00 OP -Divertor_lifetime_(years)________________________________________________ (life_div_fpy)_________________ 1.28120517691053970e+00 OP -Heating/CD_system_lifetime_(years)_______________________________________ (life_hcd_fpy)_________________ 6.14814612277673422e+00 OP +First_wall_/_blanket_lifetime_(years)____________________________________ (life_blkt_fpy)________________ 6.05760857679458198e+00 OP +Divertor_lifetime_(years)________________________________________________ (life_div_fpy)_________________ 1.28413441118417926e+00 OP +Heating/CD_system_lifetime_(years)_______________________________________ (life_hcd_fpy)_________________ 6.05760857679458198e+00 OP Total_plant_lifetime_(years)_____________________________________________ (life_plant)___________________ 3.00000000000000000e+01 Total_plant_availability_fraction________________________________________ (f_t_plant_available)__________ 8.00000000000000044e-01 -Number_of_fusion_cycles_to_reach_allowable_fw/blanket_DPA________________ (bktcycles)____________________ 1.57765482732136406e+04 +Number_of_fusion_cycles_to_reach_allowable_fw/blanket_DPA________________ (bktcycles)____________________ 1.55348727189735982e+04 # Plasma Geometry # Tokamak_aspect_ratio_=_Conventional,_itart_=_0___________________________ (itart)________________________ 0 Plasma_shaping_model_____________________________________________________ (i_plasma_shape)_______________ 0 -Major_radius_(R₀)_(m)____________________________________________________ (rmajor)_______________________ 8.00000000017254642e+00 -Minor_radius_(a)_(m)_____________________________________________________ (rminor)_______________________ 2.66666666672418229e+00 OP +Major_radius_(R₀)_(m)____________________________________________________ (rmajor)_______________________ 8.00000000014388490e+00 +Minor_radius_(a)_(m)_____________________________________________________ (rminor)_______________________ 2.66666666671462815e+00 OP Aspect_ratio_(A)_________________________________________________________ (aspect)_______________________ 3.00000000000000000e+00 Plasma_squareness_(ζ)____________________________________________________ (plasma_square)________________ 0.00000000000000000e+00 IP Plasma_geometry_model____________________________________________________ (i_plasma_geometry)____________ 0 -ITER_Physics_Basis_definition_of_elongation_(κₐ)_________________________ (kappa_ipb)____________________ 1.68145080681586134e+00 OP +ITER_Physics_Basis_definition_of_elongation_(κₐ)_________________________ (kappa_ipb)____________________ 1.68145080681585979e+00 OP Elongation,_X-point_(κₐ)_________________________________________________ (kappa)________________________ 1.85000000000000009e+00 IP Elongation,_95%_surface_(κ₉₅)____________________________________________ (kappa95)______________________ 1.65178571428571419e+00 OP Triangularity,_X-point_(δ)_______________________________________________ (triang)_______________________ 5.00000000000000000e-01 IP Triangularity,_95%_surface_(δ₉₅)_________________________________________ (triang95)_____________________ 3.33333333333333315e-01 OP -Plasma_poloidal_perimeter_(m)____________________________________________ (len_plasma_poloidal)__________ 2.40813671400448115e+01 OP -Plasma_cross-sectional_area_(m²)_________________________________________ (a_plasma_poloidal)____________ 3.83982222380278841e+01 OP -Plasma_surface_area_(m²)_________________________________________________ (a_plasma_surface)_____________ 1.17384277717519490e+03 OP -Plasma_volume_(m³)_______________________________________________________ (vol_plasma)___________________ 1.88817115411784516e+03 OP +Plasma_poloidal_perimeter_(m)____________________________________________ (len_plasma_poloidal)__________ 2.40813671399585303e+01 OP +Plasma_cross-sectional_area_(m²)_________________________________________ (a_plasma_poloidal)____________ 3.83982222377527336e+01 OP +Plasma_surface_area_(m²)_________________________________________________ (a_plasma_surface)_____________ 1.17384277716678366e+03 OP +Plasma_volume_(m³)_______________________________________________________ (vol_plasma)___________________ 1.88817115409754888e+03 OP # Plasma Current and Safety Factor # Plasma_current_scaling_law_used__________________________________________ (i_plasma_current)_____________ 4 -Plasma_current_(Iₚ)_(MA)_________________________________________________ (plasma_current_MA)____________ 1.64508889633267437e+01 OP -Plasma_current_(Iₚ)_(A)__________________________________________________ (plasma_current)_______________ 1.64508889633267447e+07 OP -Peng_analytic_fit________________________________________________________ (c_plasma_peng_analytic)_______ 1.68072795712996088e+07 OP -Peng_divertor_scaling____________________________________________________ (c_plasma_peng_double_null)____ 1.68757484650187753e+07 OP -Simple_ITER_scaling_(cylindrical_case)___________________________________ (c_plasma_cyclindrical)________ 6.47190737887072936e+06 OP -IPDG89_scaling___________________________________________________________ (c_plasma_ipdg89)______________ 1.64508889633267447e+07 OP -Todd_empirical_scaling_I_________________________________________________ (c_plasma_todd_empirical_i)____ 1.83079749821440317e+07 OP -Todd_empirical_scaling_II________________________________________________ (c_plasma_todd_empirical_ii)___ 1.99962290032463819e+07 OP -Connor-Hastie_model______________________________________________________ (c_plasma_connor_hastie)_______ 1.69943130632901900e+07 OP -Sauter_scaling___________________________________________________________ (c_plasma_sauter)______________ 1.99221985723526515e+07 OP -FIESTA_ST_scaling________________________________________________________ (c_plasma_fiesta_st)___________ 1.40851047145679034e+07 OP +Plasma_current_(Iₚ)_(MA)_________________________________________________ (plasma_current_MA)____________ 1.67464957583690364e+01 OP +Plasma_current_(Iₚ)_(A)__________________________________________________ (plasma_current)_______________ 1.67464957583690360e+07 OP +Peng_analytic_fit________________________________________________________ (c_plasma_peng_analytic)_______ 1.71092903658850752e+07 OP +Peng_divertor_scaling____________________________________________________ (c_plasma_peng_double_null)____ 1.71789895803654902e+07 OP +Simple_ITER_scaling_(cylindrical_case)___________________________________ (c_plasma_cyclindrical)________ 6.58820138598143402e+06 OP +IPDG89_scaling___________________________________________________________ (c_plasma_ipdg89)______________ 1.67464957583690360e+07 OP +Todd_empirical_scaling_I_________________________________________________ (c_plasma_todd_empirical_i)____ 1.86369518429234512e+07 OP +Todd_empirical_scaling_II________________________________________________ (c_plasma_todd_empirical_ii)___ 2.03555421796807125e+07 OP +Connor-Hastie_model______________________________________________________ (c_plasma_connor_hastie)_______ 1.73461743880732618e+07 OP +Sauter_scaling___________________________________________________________ (c_plasma_sauter)______________ 2.02801814925035127e+07 OP +FIESTA_ST_scaling________________________________________________________ (c_plasma_fiesta_st)___________ 1.43382006215301566e+07 OP Current_density_profile_factor_(αⱼ)______________________________________ (alphaj)_______________________ 1.00000000000000000e+00 -J._Wesson_plasma_current_profile_index___________________________________ (alphaj_wesson)________________ 1.82927288375913344e+00 OP -On-axis_plasma_current_density_(j₀)_(A/m²)_______________________________ (j_plasma_on_axis)_____________ 6.42642601837742841e+05 OP +J._Wesson_plasma_current_profile_index___________________________________ (alphaj_wesson)________________ 1.78834356736395028e+00 OP +On-axis_plasma_current_density_(j₀)_(A/m²)_______________________________ (j_plasma_on_axis)_____________ 6.54190276883602259e+05 OP Safety_factor_on_axis_(q₀)_______________________________________________ (q0)___________________________ 1.00000000000000000e+00 -Safety_factor_at_95%_flux_surface_(q₉₅)__________________________________ (q95)__________________________ 3.41369456381062930e+00 -Cylindrical_safety_factor_(qcyl)_________________________________________ (qstar)________________________ 2.82927288375913344e+00 OP +Safety_factor_at_95%_flux_surface_(q₉₅)__________________________________ (q95)__________________________ 3.36431078549756668e+00 +Cylindrical_safety_factor_(qcyl)_________________________________________ (qstar)________________________ 2.78834356736395028e+00 OP # Plasma magnetic fields # -Vertical_field_at_plasma_(Bᵥ)_(T)________________________________________ (b_plasma_vertical_required)___ -7.06103577360314261e-01 OP -Vacuum_toroidal_field_at_R₀_(Bᴛ(R₀))_(T)_________________________________ (b_plasma_toroidal_on_axis)____ 4.97095088538996333e+00 -Toroidal_field_at_plasma_inboard_(Bᴛ(R₀-a))_(T)__________________________ (b_plasma_inboard_toroidal)____ 7.45642632808494543e+00 -Toroidal_field_at_plasma_outboard_(Bᴛ(R₀+a))_(T)_________________________ (b_plasma_outboard_toroidal)___ 3.72821316404247227e+00 -Toroidal_field_in_plasma_at_point_0______________________________________ b_plasma_toroidal_profile0_____ 7.45642632808494543e+00 -Toroidal_field_in_plasma_at_point_1______________________________________ b_plasma_toroidal_profile1_____ 7.44898478484334348e+00 -Toroidal_field_in_plasma_at_point_2______________________________________ b_plasma_toroidal_profile2_____ 7.44155808017251275e+00 -Toroidal_field_in_plasma_at_point_3______________________________________ b_plasma_toroidal_profile3_____ 7.43414616973409359e+00 -Toroidal_field_in_plasma_at_point_4______________________________________ b_plasma_toroidal_profile4_____ 7.42674900936619942e+00 -Toroidal_field_in_plasma_at_point_5______________________________________ b_plasma_toroidal_profile5_____ 7.41936655508253473e+00 -Toroidal_field_in_plasma_at_point_6______________________________________ b_plasma_toroidal_profile6_____ 7.41199876307152916e+00 -Toroidal_field_in_plasma_at_point_7______________________________________ b_plasma_toroidal_profile7_____ 7.40464558969546705e+00 -Toroidal_field_in_plasma_at_point_8______________________________________ b_plasma_toroidal_profile8_____ 7.39730699148962323e+00 -Toroidal_field_in_plasma_at_point_9______________________________________ b_plasma_toroidal_profile9_____ 7.38998292516141664e+00 -Toroidal_field_in_plasma_at_point_10_____________________________________ b_plasma_toroidal_profile10____ 7.38267334758954519e+00 -Toroidal_field_in_plasma_at_point_11_____________________________________ b_plasma_toroidal_profile11____ 7.37537821582315267e+00 -Toroidal_field_in_plasma_at_point_12_____________________________________ b_plasma_toroidal_profile12____ 7.36809748708097789e+00 -Toroidal_field_in_plasma_at_point_13_____________________________________ b_plasma_toroidal_profile13____ 7.36083111875052243e+00 -Toroidal_field_in_plasma_at_point_14_____________________________________ b_plasma_toroidal_profile14____ 7.35357906838722197e+00 -Toroidal_field_in_plasma_at_point_15_____________________________________ b_plasma_toroidal_profile15____ 7.34634129371361233e+00 -Toroidal_field_in_plasma_at_point_16_____________________________________ b_plasma_toroidal_profile16____ 7.33911775261851584e+00 -Toroidal_field_in_plasma_at_point_17_____________________________________ b_plasma_toroidal_profile17____ 7.33190840315621806e+00 -Toroidal_field_in_plasma_at_point_18_____________________________________ b_plasma_toroidal_profile18____ 7.32471320354566213e+00 -Toroidal_field_in_plasma_at_point_19_____________________________________ b_plasma_toroidal_profile19____ 7.31753211216963795e+00 -Toroidal_field_in_plasma_at_point_20_____________________________________ b_plasma_toroidal_profile20____ 7.31036508757397652e+00 -Toroidal_field_in_plasma_at_point_21_____________________________________ b_plasma_toroidal_profile21____ 7.30321208846676218e+00 -Toroidal_field_in_plasma_at_point_22_____________________________________ b_plasma_toroidal_profile22____ 7.29607307371752700e+00 -Toroidal_field_in_plasma_at_point_23_____________________________________ b_plasma_toroidal_profile23____ 7.28894800235647455e+00 -Toroidal_field_in_plasma_at_point_24_____________________________________ b_plasma_toroidal_profile24____ 7.28183683357368849e+00 -Toroidal_field_in_plasma_at_point_25_____________________________________ b_plasma_toroidal_profile25____ 7.27473952671835278e+00 -Toroidal_field_in_plasma_at_point_26_____________________________________ b_plasma_toroidal_profile26____ 7.26765604129798515e+00 -Toroidal_field_in_plasma_at_point_27_____________________________________ b_plasma_toroidal_profile27____ 7.26058633697765554e+00 -Toroidal_field_in_plasma_at_point_28_____________________________________ b_plasma_toroidal_profile28____ 7.25353037357923291e+00 -Toroidal_field_in_plasma_at_point_29_____________________________________ b_plasma_toroidal_profile29____ 7.24648811108061164e+00 -Toroidal_field_in_plasma_at_point_30_____________________________________ b_plasma_toroidal_profile30____ 7.23945950961496631e+00 -Toroidal_field_in_plasma_at_point_31_____________________________________ b_plasma_toroidal_profile31____ 7.23244452946999061e+00 -Toroidal_field_in_plasma_at_point_32_____________________________________ b_plasma_toroidal_profile32____ 7.22544313108715386e+00 -Toroidal_field_in_plasma_at_point_33_____________________________________ b_plasma_toroidal_profile33____ 7.21845527506095852e+00 -Toroidal_field_in_plasma_at_point_34_____________________________________ b_plasma_toroidal_profile34____ 7.21148092213819325e+00 -Toroidal_field_in_plasma_at_point_35_____________________________________ b_plasma_toroidal_profile35____ 7.20452003321720991e+00 -Toroidal_field_in_plasma_at_point_36_____________________________________ b_plasma_toroidal_profile36____ 7.19757256934718459e+00 -Toroidal_field_in_plasma_at_point_37_____________________________________ b_plasma_toroidal_profile37____ 7.19063849172738934e+00 -Toroidal_field_in_plasma_at_point_38_____________________________________ b_plasma_toroidal_profile38____ 7.18371776170647802e+00 -Toroidal_field_in_plasma_at_point_39_____________________________________ b_plasma_toroidal_profile39____ 7.17681034078175983e+00 -Toroidal_field_in_plasma_at_point_40_____________________________________ b_plasma_toroidal_profile40____ 7.16991619059849139e+00 -Toroidal_field_in_plasma_at_point_41_____________________________________ b_plasma_toroidal_profile41____ 7.16303527294916531e+00 -Toroidal_field_in_plasma_at_point_42_____________________________________ b_plasma_toroidal_profile42____ 7.15616754977279967e+00 -Toroidal_field_in_plasma_at_point_43_____________________________________ b_plasma_toroidal_profile43____ 7.14931298315424346e+00 -Toroidal_field_in_plasma_at_point_44_____________________________________ b_plasma_toroidal_profile44____ 7.14247153532347401e+00 -Toroidal_field_in_plasma_at_point_45_____________________________________ b_plasma_toroidal_profile45____ 7.13564316865490422e+00 -Toroidal_field_in_plasma_at_point_46_____________________________________ b_plasma_toroidal_profile46____ 7.12882784566669603e+00 -Toroidal_field_in_plasma_at_point_47_____________________________________ b_plasma_toroidal_profile47____ 7.12202552902006669e+00 -Toroidal_field_in_plasma_at_point_48_____________________________________ b_plasma_toroidal_profile48____ 7.11523618151861825e+00 -Toroidal_field_in_plasma_at_point_49_____________________________________ b_plasma_toroidal_profile49____ 7.10845976610764740e+00 -Toroidal_field_in_plasma_at_point_50_____________________________________ b_plasma_toroidal_profile50____ 7.10169624587348292e+00 -Toroidal_field_in_plasma_at_point_51_____________________________________ b_plasma_toroidal_profile51____ 7.09494558404280440e+00 -Toroidal_field_in_plasma_at_point_52_____________________________________ b_plasma_toroidal_profile52____ 7.08820774398198417e+00 -Toroidal_field_in_plasma_at_point_53_____________________________________ b_plasma_toroidal_profile53____ 7.08148268919642376e+00 -Toroidal_field_in_plasma_at_point_54_____________________________________ b_plasma_toroidal_profile54____ 7.07477038332988606e+00 -Toroidal_field_in_plasma_at_point_55_____________________________________ b_plasma_toroidal_profile55____ 7.06807079016385487e+00 -Toroidal_field_in_plasma_at_point_56_____________________________________ b_plasma_toroidal_profile56____ 7.06138387361686881e+00 -Toroidal_field_in_plasma_at_point_57_____________________________________ b_plasma_toroidal_profile57____ 7.05470959774388451e+00 -Toroidal_field_in_plasma_at_point_58_____________________________________ b_plasma_toroidal_profile58____ 7.04804792673562819e+00 -Toroidal_field_in_plasma_at_point_59_____________________________________ b_plasma_toroidal_profile59____ 7.04139882491795266e+00 -Toroidal_field_in_plasma_at_point_60_____________________________________ b_plasma_toroidal_profile60____ 7.03476225675120670e+00 -Toroidal_field_in_plasma_at_point_61_____________________________________ b_plasma_toroidal_profile61____ 7.02813818682959557e+00 -Toroidal_field_in_plasma_at_point_62_____________________________________ b_plasma_toroidal_profile62____ 7.02152657988055573e+00 -Toroidal_field_in_plasma_at_point_63_____________________________________ b_plasma_toroidal_profile63____ 7.01492740076412602e+00 -Toroidal_field_in_plasma_at_point_64_____________________________________ b_plasma_toroidal_profile64____ 7.00834061447232859e+00 -Toroidal_field_in_plasma_at_point_65_____________________________________ b_plasma_toroidal_profile65____ 7.00176618612854629e+00 -Toroidal_field_in_plasma_at_point_66_____________________________________ b_plasma_toroidal_profile66____ 6.99520408098690716e+00 -Toroidal_field_in_plasma_at_point_67_____________________________________ b_plasma_toroidal_profile67____ 6.98865426443167692e+00 -Toroidal_field_in_plasma_at_point_68_____________________________________ b_plasma_toroidal_profile68____ 6.98211670197664169e+00 -Toroidal_field_in_plasma_at_point_69_____________________________________ b_plasma_toroidal_profile69____ 6.97559135926451379e+00 -Toroidal_field_in_plasma_at_point_70_____________________________________ b_plasma_toroidal_profile70____ 6.96907820206632156e+00 -Toroidal_field_in_plasma_at_point_71_____________________________________ b_plasma_toroidal_profile71____ 6.96257719628081162e+00 -Toroidal_field_in_plasma_at_point_72_____________________________________ b_plasma_toroidal_profile72____ 6.95608830793385913e+00 -Toroidal_field_in_plasma_at_point_73_____________________________________ b_plasma_toroidal_profile73____ 6.94961150317786824e+00 -Toroidal_field_in_plasma_at_point_74_____________________________________ b_plasma_toroidal_profile74____ 6.94314674829119038e+00 -Toroidal_field_in_plasma_at_point_75_____________________________________ b_plasma_toroidal_profile75____ 6.93669400967753713e+00 -Toroidal_field_in_plasma_at_point_76_____________________________________ b_plasma_toroidal_profile76____ 6.93025325386539404e+00 -Toroidal_field_in_plasma_at_point_77_____________________________________ b_plasma_toroidal_profile77____ 6.92382444750744952e+00 -Toroidal_field_in_plasma_at_point_78_____________________________________ b_plasma_toroidal_profile78____ 6.91740755738000956e+00 -Toroidal_field_in_plasma_at_point_79_____________________________________ b_plasma_toroidal_profile79____ 6.91100255038243461e+00 -Toroidal_field_in_plasma_at_point_80_____________________________________ b_plasma_toroidal_profile80____ 6.90460939353656844e+00 -Toroidal_field_in_plasma_at_point_81_____________________________________ b_plasma_toroidal_profile81____ 6.89822805398616445e+00 -Toroidal_field_in_plasma_at_point_82_____________________________________ b_plasma_toroidal_profile82____ 6.89185849899633496e+00 -Toroidal_field_in_plasma_at_point_83_____________________________________ b_plasma_toroidal_profile83____ 6.88550069595298009e+00 -Toroidal_field_in_plasma_at_point_84_____________________________________ b_plasma_toroidal_profile84____ 6.87915461236223980e+00 -Toroidal_field_in_plasma_at_point_85_____________________________________ b_plasma_toroidal_profile85____ 6.87282021584993608e+00 -Toroidal_field_in_plasma_at_point_86_____________________________________ b_plasma_toroidal_profile86____ 6.86649747416102052e+00 -Toroidal_field_in_plasma_at_point_87_____________________________________ b_plasma_toroidal_profile87____ 6.86018635515903519e+00 -Toroidal_field_in_plasma_at_point_88_____________________________________ b_plasma_toroidal_profile88____ 6.85388682682555572e+00 -Toroidal_field_in_plasma_at_point_89_____________________________________ b_plasma_toroidal_profile89____ 6.84759885725966111e+00 -Toroidal_field_in_plasma_at_point_90_____________________________________ b_plasma_toroidal_profile90____ 6.84132241467738744e+00 -Toroidal_field_in_plasma_at_point_91_____________________________________ b_plasma_toroidal_profile91____ 6.83505746741119946e+00 -Toroidal_field_in_plasma_at_point_92_____________________________________ b_plasma_toroidal_profile92____ 6.82880398390945142e+00 -Toroidal_field_in_plasma_at_point_93_____________________________________ b_plasma_toroidal_profile93____ 6.82256193273585865e+00 -Toroidal_field_in_plasma_at_point_94_____________________________________ b_plasma_toroidal_profile94____ 6.81633128256897791e+00 -Toroidal_field_in_plasma_at_point_95_____________________________________ b_plasma_toroidal_profile95____ 6.81011200220167012e+00 -Toroidal_field_in_plasma_at_point_96_____________________________________ b_plasma_toroidal_profile96____ 6.80390406054059316e+00 -Toroidal_field_in_plasma_at_point_97_____________________________________ b_plasma_toroidal_profile97____ 6.79770742660567429e+00 -Toroidal_field_in_plasma_at_point_98_____________________________________ b_plasma_toroidal_profile98____ 6.79152206952959947e+00 -Toroidal_field_in_plasma_at_point_99_____________________________________ b_plasma_toroidal_profile99____ 6.78534795855730000e+00 -Toroidal_field_in_plasma_at_point_100____________________________________ b_plasma_toroidal_profile100___ 6.77918506304544000e+00 -Toroidal_field_in_plasma_at_point_101____________________________________ b_plasma_toroidal_profile101___ 6.77303335246191551e+00 -Toroidal_field_in_plasma_at_point_102____________________________________ b_plasma_toroidal_profile102___ 6.76689279638534025e+00 -Toroidal_field_in_plasma_at_point_103____________________________________ b_plasma_toroidal_profile103___ 6.76076336450455617e+00 -Toroidal_field_in_plasma_at_point_104____________________________________ b_plasma_toroidal_profile104___ 6.75464502661812727e+00 -Toroidal_field_in_plasma_at_point_105____________________________________ b_plasma_toroidal_profile105___ 6.74853775263384215e+00 -Toroidal_field_in_plasma_at_point_106____________________________________ b_plasma_toroidal_profile106___ 6.74244151256822999e+00 -Toroidal_field_in_plasma_at_point_107____________________________________ b_plasma_toroidal_profile107___ 6.73635627654605607e+00 -Toroidal_field_in_plasma_at_point_108____________________________________ b_plasma_toroidal_profile108___ 6.73028201479984656e+00 -Toroidal_field_in_plasma_at_point_109____________________________________ b_plasma_toroidal_profile109___ 6.72421869766939651e+00 -Toroidal_field_in_plasma_at_point_110____________________________________ b_plasma_toroidal_profile110___ 6.71816629560128664e+00 -Toroidal_field_in_plasma_at_point_111____________________________________ b_plasma_toroidal_profile111___ 6.71212477914840822e+00 -Toroidal_field_in_plasma_at_point_112____________________________________ b_plasma_toroidal_profile112___ 6.70609411896947893e+00 -Toroidal_field_in_plasma_at_point_113____________________________________ b_plasma_toroidal_profile113___ 6.70007428582857223e+00 -Toroidal_field_in_plasma_at_point_114____________________________________ b_plasma_toroidal_profile114___ 6.69406525059464563e+00 -Toroidal_field_in_plasma_at_point_115____________________________________ b_plasma_toroidal_profile115___ 6.68806698424106560e+00 -Toroidal_field_in_plasma_at_point_116____________________________________ b_plasma_toroidal_profile116___ 6.68207945784514834e+00 -Toroidal_field_in_plasma_at_point_117____________________________________ b_plasma_toroidal_profile117___ 6.67610264258768282e+00 -Toroidal_field_in_plasma_at_point_118____________________________________ b_plasma_toroidal_profile118___ 6.67013650975248407e+00 -Toroidal_field_in_plasma_at_point_119____________________________________ b_plasma_toroidal_profile119___ 6.66418103072591972e+00 -Toroidal_field_in_plasma_at_point_120____________________________________ b_plasma_toroidal_profile120___ 6.65823617699645798e+00 -Toroidal_field_in_plasma_at_point_121____________________________________ b_plasma_toroidal_profile121___ 6.65230192015421551e+00 -Toroidal_field_in_plasma_at_point_122____________________________________ b_plasma_toroidal_profile122___ 6.64637823189049826e+00 -Toroidal_field_in_plasma_at_point_123____________________________________ b_plasma_toroidal_profile123___ 6.64046508399735824e+00 -Toroidal_field_in_plasma_at_point_124____________________________________ b_plasma_toroidal_profile124___ 6.63456244836713793e+00 -Toroidal_field_in_plasma_at_point_125____________________________________ b_plasma_toroidal_profile125___ 6.62867029699203325e+00 -Toroidal_field_in_plasma_at_point_126____________________________________ b_plasma_toroidal_profile126___ 6.62278860196364683e+00 -Toroidal_field_in_plasma_at_point_127____________________________________ b_plasma_toroidal_profile127___ 6.61691733547254390e+00 -Toroidal_field_in_plasma_at_point_128____________________________________ b_plasma_toroidal_profile128___ 6.61105646980782158e+00 -Toroidal_field_in_plasma_at_point_129____________________________________ b_plasma_toroidal_profile129___ 6.60520597735666382e+00 -Toroidal_field_in_plasma_at_point_130____________________________________ b_plasma_toroidal_profile130___ 6.59936583060391779e+00 -Toroidal_field_in_plasma_at_point_131____________________________________ b_plasma_toroidal_profile131___ 6.59353600213165247e+00 -Toroidal_field_in_plasma_at_point_132____________________________________ b_plasma_toroidal_profile132___ 6.58771646461873761e+00 -Toroidal_field_in_plasma_at_point_133____________________________________ b_plasma_toroidal_profile133___ 6.58190719084041476e+00 -Toroidal_field_in_plasma_at_point_134____________________________________ b_plasma_toroidal_profile134___ 6.57610815366786738e+00 -Toroidal_field_in_plasma_at_point_135____________________________________ b_plasma_toroidal_profile135___ 6.57031932606780877e+00 -Toroidal_field_in_plasma_at_point_136____________________________________ b_plasma_toroidal_profile136___ 6.56454068110204947e+00 -Toroidal_field_in_plasma_at_point_137____________________________________ b_plasma_toroidal_profile137___ 6.55877219192709138e+00 -Toroidal_field_in_plasma_at_point_138____________________________________ b_plasma_toroidal_profile138___ 6.55301383179370500e+00 -Toroidal_field_in_plasma_at_point_139____________________________________ b_plasma_toroidal_profile139___ 6.54726557404651732e+00 -Toroidal_field_in_plasma_at_point_140____________________________________ b_plasma_toroidal_profile140___ 6.54152739212360235e+00 -Toroidal_field_in_plasma_at_point_141____________________________________ b_plasma_toroidal_profile141___ 6.53579925955606811e+00 -Toroidal_field_in_plasma_at_point_142____________________________________ b_plasma_toroidal_profile142___ 6.53008114996765521e+00 -Toroidal_field_in_plasma_at_point_143____________________________________ b_plasma_toroidal_profile143___ 6.52437303707432736e+00 -Toroidal_field_in_plasma_at_point_144____________________________________ b_plasma_toroidal_profile144___ 6.51867489468386907e+00 -Toroidal_field_in_plasma_at_point_145____________________________________ b_plasma_toroidal_profile145___ 6.51298669669548858e+00 -Toroidal_field_in_plasma_at_point_146____________________________________ b_plasma_toroidal_profile146___ 6.50730841709941554e+00 -Toroidal_field_in_plasma_at_point_147____________________________________ b_plasma_toroidal_profile147___ 6.50164002997650670e+00 -Toroidal_field_in_plasma_at_point_148____________________________________ b_plasma_toroidal_profile148___ 6.49598150949785058e+00 -Toroidal_field_in_plasma_at_point_149____________________________________ b_plasma_toroidal_profile149___ 6.49033282992437321e+00 -Toroidal_field_in_plasma_at_point_150____________________________________ b_plasma_toroidal_profile150___ 6.48469396560645528e+00 -Toroidal_field_in_plasma_at_point_151____________________________________ b_plasma_toroidal_profile151___ 6.47906489098353244e+00 -Toroidal_field_in_plasma_at_point_152____________________________________ b_plasma_toroidal_profile152___ 6.47344558058372055e+00 -Toroidal_field_in_plasma_at_point_153____________________________________ b_plasma_toroidal_profile153___ 6.46783600902342304e+00 -Toroidal_field_in_plasma_at_point_154____________________________________ b_plasma_toroidal_profile154___ 6.46223615100695170e+00 -Toroidal_field_in_plasma_at_point_155____________________________________ b_plasma_toroidal_profile155___ 6.45664598132615097e+00 -Toroidal_field_in_plasma_at_point_156____________________________________ b_plasma_toroidal_profile156___ 6.45106547486000803e+00 -Toroidal_field_in_plasma_at_point_157____________________________________ b_plasma_toroidal_profile157___ 6.44549460657429130e+00 -Toroidal_field_in_plasma_at_point_158____________________________________ b_plasma_toroidal_profile158___ 6.43993335152116497e+00 -Toroidal_field_in_plasma_at_point_159____________________________________ b_plasma_toroidal_profile159___ 6.43438168483881867e+00 -Toroidal_field_in_plasma_at_point_160____________________________________ b_plasma_toroidal_profile160___ 6.42883958175110237e+00 -Toroidal_field_in_plasma_at_point_161____________________________________ b_plasma_toroidal_profile161___ 6.42330701756715161e+00 -Toroidal_field_in_plasma_at_point_162____________________________________ b_plasma_toroidal_profile162___ 6.41778396768102333e+00 -Toroidal_field_in_plasma_at_point_163____________________________________ b_plasma_toroidal_profile163___ 6.41227040757133171e+00 -Toroidal_field_in_plasma_at_point_164____________________________________ b_plasma_toroidal_profile164___ 6.40676631280088404e+00 -Toroidal_field_in_plasma_at_point_165____________________________________ b_plasma_toroidal_profile165___ 6.40127165901632100e+00 -Toroidal_field_in_plasma_at_point_166____________________________________ b_plasma_toroidal_profile166___ 6.39578642194775426e+00 -Toroidal_field_in_plasma_at_point_167____________________________________ b_plasma_toroidal_profile167___ 6.39031057740841657e+00 -Toroidal_field_in_plasma_at_point_168____________________________________ b_plasma_toroidal_profile168___ 6.38484410129429403e+00 -Toroidal_field_in_plasma_at_point_169____________________________________ b_plasma_toroidal_profile169___ 6.37938696958378682e+00 -Toroidal_field_in_plasma_at_point_170____________________________________ b_plasma_toroidal_profile170___ 6.37393915833734415e+00 -Toroidal_field_in_plasma_at_point_171____________________________________ b_plasma_toroidal_profile171___ 6.36850064369712410e+00 -Toroidal_field_in_plasma_at_point_172____________________________________ b_plasma_toroidal_profile172___ 6.36307140188664100e+00 -Toroidal_field_in_plasma_at_point_173____________________________________ b_plasma_toroidal_profile173___ 6.35765140921041727e+00 -Toroidal_field_in_plasma_at_point_174____________________________________ b_plasma_toroidal_profile174___ 6.35224064205364325e+00 -Toroidal_field_in_plasma_at_point_175____________________________________ b_plasma_toroidal_profile175___ 6.34683907688182813e+00 -Toroidal_field_in_plasma_at_point_176____________________________________ b_plasma_toroidal_profile176___ 6.34144669024046692e+00 -Toroidal_field_in_plasma_at_point_177____________________________________ b_plasma_toroidal_profile177___ 6.33606345875469490e+00 -Toroidal_field_in_plasma_at_point_178____________________________________ b_plasma_toroidal_profile178___ 6.33068935912894837e+00 -Toroidal_field_in_plasma_at_point_179____________________________________ b_plasma_toroidal_profile179___ 6.32532436814663601e+00 -Toroidal_field_in_plasma_at_point_180____________________________________ b_plasma_toroidal_profile180___ 6.31996846266979695e+00 -Toroidal_field_in_plasma_at_point_181____________________________________ b_plasma_toroidal_profile181___ 6.31462161963877300e+00 -Toroidal_field_in_plasma_at_point_182____________________________________ b_plasma_toroidal_profile182___ 6.30928381607187649e+00 -Toroidal_field_in_plasma_at_point_183____________________________________ b_plasma_toroidal_profile183___ 6.30395502906505900e+00 -Toroidal_field_in_plasma_at_point_184____________________________________ b_plasma_toroidal_profile184___ 6.29863523579158624e+00 -Toroidal_field_in_plasma_at_point_185____________________________________ b_plasma_toroidal_profile185___ 6.29332441350171123e+00 -Toroidal_field_in_plasma_at_point_186____________________________________ b_plasma_toroidal_profile186___ 6.28802253952235013e+00 -Toroidal_field_in_plasma_at_point_187____________________________________ b_plasma_toroidal_profile187___ 6.28272959125675889e+00 -Toroidal_field_in_plasma_at_point_188____________________________________ b_plasma_toroidal_profile188___ 6.27744554618421358e+00 -Toroidal_field_in_plasma_at_point_189____________________________________ b_plasma_toroidal_profile189___ 6.27217038185968878e+00 -Toroidal_field_in_plasma_at_point_190____________________________________ b_plasma_toroidal_profile190___ 6.26690407591354326e+00 -Toroidal_field_in_plasma_at_point_191____________________________________ b_plasma_toroidal_profile191___ 6.26164660605119927e+00 -Toroidal_field_in_plasma_at_point_192____________________________________ b_plasma_toroidal_profile192___ 6.25639795005283350e+00 -Toroidal_field_in_plasma_at_point_193____________________________________ b_plasma_toroidal_profile193___ 6.25115808577305643e+00 -Toroidal_field_in_plasma_at_point_194____________________________________ b_plasma_toroidal_profile194___ 6.24592699114061123e+00 -Toroidal_field_in_plasma_at_point_195____________________________________ b_plasma_toroidal_profile195___ 6.24070464415805137e+00 -Toroidal_field_in_plasma_at_point_196____________________________________ b_plasma_toroidal_profile196___ 6.23549102290144486e+00 -Toroidal_field_in_plasma_at_point_197____________________________________ b_plasma_toroidal_profile197___ 6.23028610552005802e+00 -Toroidal_field_in_plasma_at_point_198____________________________________ b_plasma_toroidal_profile198___ 6.22508987023605531e+00 -Toroidal_field_in_plasma_at_point_199____________________________________ b_plasma_toroidal_profile199___ 6.21990229534419203e+00 -Toroidal_field_in_plasma_at_point_200____________________________________ b_plasma_toroidal_profile200___ 6.21472335921151497e+00 -Toroidal_field_in_plasma_at_point_201____________________________________ b_plasma_toroidal_profile201___ 6.20955304027706312e+00 -Toroidal_field_in_plasma_at_point_202____________________________________ b_plasma_toroidal_profile202___ 6.20439131705156299e+00 -Toroidal_field_in_plasma_at_point_203____________________________________ b_plasma_toroidal_profile203___ 6.19923816811713468e+00 -Toroidal_field_in_plasma_at_point_204____________________________________ b_plasma_toroidal_profile204___ 6.19409357212699607e+00 -Toroidal_field_in_plasma_at_point_205____________________________________ b_plasma_toroidal_profile205___ 6.18895750780516529e+00 -Toroidal_field_in_plasma_at_point_206____________________________________ b_plasma_toroidal_profile206___ 6.18382995394617208e+00 -Toroidal_field_in_plasma_at_point_207____________________________________ b_plasma_toroidal_profile207___ 6.17871088941475932e+00 -Toroidal_field_in_plasma_at_point_208____________________________________ b_plasma_toroidal_profile208___ 6.17360029314559977e+00 -Toroidal_field_in_plasma_at_point_209____________________________________ b_plasma_toroidal_profile209___ 6.16849814414300024e+00 -Toroidal_field_in_plasma_at_point_210____________________________________ b_plasma_toroidal_profile210___ 6.16340442148061918e+00 -Toroidal_field_in_plasma_at_point_211____________________________________ b_plasma_toroidal_profile211___ 6.15831910430117979e+00 -Toroidal_field_in_plasma_at_point_212____________________________________ b_plasma_toroidal_profile212___ 6.15324217181618227e+00 -Toroidal_field_in_plasma_at_point_213____________________________________ b_plasma_toroidal_profile213___ 6.14817360330562579e+00 -Toroidal_field_in_plasma_at_point_214____________________________________ b_plasma_toroidal_profile214___ 6.14311337811771985e+00 -Toroidal_field_in_plasma_at_point_215____________________________________ b_plasma_toroidal_profile215___ 6.13806147566860982e+00 -Toroidal_field_in_plasma_at_point_216____________________________________ b_plasma_toroidal_profile216___ 6.13301787544209542e+00 -Toroidal_field_in_plasma_at_point_217____________________________________ b_plasma_toroidal_profile217___ 6.12798255698935090e+00 -Toroidal_field_in_plasma_at_point_218____________________________________ b_plasma_toroidal_profile218___ 6.12295549992865507e+00 -Toroidal_field_in_plasma_at_point_219____________________________________ b_plasma_toroidal_profile219___ 6.11793668394510615e+00 -Toroidal_field_in_plasma_at_point_220____________________________________ b_plasma_toroidal_profile220___ 6.11292608879035981e+00 -Toroidal_field_in_plasma_at_point_221____________________________________ b_plasma_toroidal_profile221___ 6.10792369428234849e+00 -Toroidal_field_in_plasma_at_point_222____________________________________ b_plasma_toroidal_profile222___ 6.10292948030501226e+00 -Toroidal_field_in_plasma_at_point_223____________________________________ b_plasma_toroidal_profile223___ 6.09794342680803148e+00 -Toroidal_field_in_plasma_at_point_224____________________________________ b_plasma_toroidal_profile224___ 6.09296551380655504e+00 -Toroidal_field_in_plasma_at_point_225____________________________________ b_plasma_toroidal_profile225___ 6.08799572138093747e+00 -Toroidal_field_in_plasma_at_point_226____________________________________ b_plasma_toroidal_profile226___ 6.08303402967647067e+00 -Toroidal_field_in_plasma_at_point_227____________________________________ b_plasma_toroidal_profile227___ 6.07808041890311834e+00 -Toroidal_field_in_plasma_at_point_228____________________________________ b_plasma_toroidal_profile228___ 6.07313486933525670e+00 -Toroidal_field_in_plasma_at_point_229____________________________________ b_plasma_toroidal_profile229___ 6.06819736131140619e+00 -Toroidal_field_in_plasma_at_point_230____________________________________ b_plasma_toroidal_profile230___ 6.06326787523398014e+00 -Toroidal_field_in_plasma_at_point_231____________________________________ b_plasma_toroidal_profile231___ 6.05834639156901744e+00 -Toroidal_field_in_plasma_at_point_232____________________________________ b_plasma_toroidal_profile232___ 6.05343289084592850e+00 -Toroidal_field_in_plasma_at_point_233____________________________________ b_plasma_toroidal_profile233___ 6.04852735365723682e+00 -Toroidal_field_in_plasma_at_point_234____________________________________ b_plasma_toroidal_profile234___ 6.04362976065832314e+00 -Toroidal_field_in_plasma_at_point_235____________________________________ b_plasma_toroidal_profile235___ 6.03874009256717592e+00 -Toroidal_field_in_plasma_at_point_236____________________________________ b_plasma_toroidal_profile236___ 6.03385833016413109e+00 -Toroidal_field_in_plasma_at_point_237____________________________________ b_plasma_toroidal_profile237___ 6.02898445429162422e+00 -Toroidal_field_in_plasma_at_point_238____________________________________ b_plasma_toroidal_profile238___ 6.02411844585393830e+00 -Toroidal_field_in_plasma_at_point_239____________________________________ b_plasma_toroidal_profile239___ 6.01926028581695949e+00 -Toroidal_field_in_plasma_at_point_240____________________________________ b_plasma_toroidal_profile240___ 6.01440995520792132e+00 -Toroidal_field_in_plasma_at_point_241____________________________________ b_plasma_toroidal_profile241___ 6.00956743511516045e+00 -Toroidal_field_in_plasma_at_point_242____________________________________ b_plasma_toroidal_profile242___ 6.00473270668787595e+00 -Toroidal_field_in_plasma_at_point_243____________________________________ b_plasma_toroidal_profile243___ 5.99990575113587621e+00 -Toroidal_field_in_plasma_at_point_244____________________________________ b_plasma_toroidal_profile244___ 5.99508654972934085e+00 -Toroidal_field_in_plasma_at_point_245____________________________________ b_plasma_toroidal_profile245___ 5.99027508379857920e+00 -Toroidal_field_in_plasma_at_point_246____________________________________ b_plasma_toroidal_profile246___ 5.98547133473378512e+00 -Toroidal_field_in_plasma_at_point_247____________________________________ b_plasma_toroidal_profile247___ 5.98067528398479986e+00 -Toroidal_field_in_plasma_at_point_248____________________________________ b_plasma_toroidal_profile248___ 5.97588691306087227e+00 -Toroidal_field_in_plasma_at_point_249____________________________________ b_plasma_toroidal_profile249___ 5.97110620353042343e+00 -Toroidal_field_in_plasma_at_point_250____________________________________ b_plasma_toroidal_profile250___ 5.96633313702080770e+00 -Toroidal_field_in_plasma_at_point_251____________________________________ b_plasma_toroidal_profile251___ 5.96156769521807473e+00 -Toroidal_field_in_plasma_at_point_252____________________________________ b_plasma_toroidal_profile252___ 5.95680985986674383e+00 -Toroidal_field_in_plasma_at_point_253____________________________________ b_plasma_toroidal_profile253___ 5.95205961276956153e+00 -Toroidal_field_in_plasma_at_point_254____________________________________ b_plasma_toroidal_profile254___ 5.94731693578727416e+00 -Toroidal_field_in_plasma_at_point_255____________________________________ b_plasma_toroidal_profile255___ 5.94258181083839965e+00 -Toroidal_field_in_plasma_at_point_256____________________________________ b_plasma_toroidal_profile256___ 5.93785421989898943e+00 -Toroidal_field_in_plasma_at_point_257____________________________________ b_plasma_toroidal_profile257___ 5.93313414500240821e+00 -Toroidal_field_in_plasma_at_point_258____________________________________ b_plasma_toroidal_profile258___ 5.92842156823910216e+00 -Toroidal_field_in_plasma_at_point_259____________________________________ b_plasma_toroidal_profile259___ 5.92371647175637239e+00 -Toroidal_field_in_plasma_at_point_260____________________________________ b_plasma_toroidal_profile260___ 5.91901883775815207e+00 -Toroidal_field_in_plasma_at_point_261____________________________________ b_plasma_toroidal_profile261___ 5.91432864850477724e+00 -Toroidal_field_in_plasma_at_point_262____________________________________ b_plasma_toroidal_profile262___ 5.90964588631277099e+00 -Toroidal_field_in_plasma_at_point_263____________________________________ b_plasma_toroidal_profile263___ 5.90497053355461166e+00 -Toroidal_field_in_plasma_at_point_264____________________________________ b_plasma_toroidal_profile264___ 5.90030257265852143e+00 -Toroidal_field_in_plasma_at_point_265____________________________________ b_plasma_toroidal_profile265___ 5.89564198610823809e+00 -Toroidal_field_in_plasma_at_point_266____________________________________ b_plasma_toroidal_profile266___ 5.89098875644280096e+00 -Toroidal_field_in_plasma_at_point_267____________________________________ b_plasma_toroidal_profile267___ 5.88634286625633241e+00 -Toroidal_field_in_plasma_at_point_268____________________________________ b_plasma_toroidal_profile268___ 5.88170429819781670e+00 -Toroidal_field_in_plasma_at_point_269____________________________________ b_plasma_toroidal_profile269___ 5.87707303497088862e+00 -Toroidal_field_in_plasma_at_point_270____________________________________ b_plasma_toroidal_profile270___ 5.87244905933361938e+00 -Toroidal_field_in_plasma_at_point_271____________________________________ b_plasma_toroidal_profile271___ 5.86783235409829462e+00 -Toroidal_field_in_plasma_at_point_272____________________________________ b_plasma_toroidal_profile272___ 5.86322290213120922e+00 -Toroidal_field_in_plasma_at_point_273____________________________________ b_plasma_toroidal_profile273___ 5.85862068635245681e+00 -Toroidal_field_in_plasma_at_point_274____________________________________ b_plasma_toroidal_profile274___ 5.85402568973570947e+00 -Toroidal_field_in_plasma_at_point_275____________________________________ b_plasma_toroidal_profile275___ 5.84943789530801705e+00 -Toroidal_field_in_plasma_at_point_276____________________________________ b_plasma_toroidal_profile276___ 5.84485728614959310e+00 -Toroidal_field_in_plasma_at_point_277____________________________________ b_plasma_toroidal_profile277___ 5.84028384539360701e+00 -Toroidal_field_in_plasma_at_point_278____________________________________ b_plasma_toroidal_profile278___ 5.83571755622598065e+00 -Toroidal_field_in_plasma_at_point_279____________________________________ b_plasma_toroidal_profile279___ 5.83115840188517964e+00 -Toroidal_field_in_plasma_at_point_280____________________________________ b_plasma_toroidal_profile280___ 5.82660636566200552e+00 -Toroidal_field_in_plasma_at_point_281____________________________________ b_plasma_toroidal_profile281___ 5.82206143089939943e+00 -Toroidal_field_in_plasma_at_point_282____________________________________ b_plasma_toroidal_profile282___ 5.81752358099222899e+00 -Toroidal_field_in_plasma_at_point_283____________________________________ b_plasma_toroidal_profile283___ 5.81299279938709468e+00 -Toroidal_field_in_plasma_at_point_284____________________________________ b_plasma_toroidal_profile284___ 5.80846906958212461e+00 -Toroidal_field_in_plasma_at_point_285____________________________________ b_plasma_toroidal_profile285___ 5.80395237512677298e+00 -Toroidal_field_in_plasma_at_point_286____________________________________ b_plasma_toroidal_profile286___ 5.79944269962162373e+00 -Toroidal_field_in_plasma_at_point_287____________________________________ b_plasma_toroidal_profile287___ 5.79494002671819075e+00 -Toroidal_field_in_plasma_at_point_288____________________________________ b_plasma_toroidal_profile288___ 5.79044434011871978e+00 -Toroidal_field_in_plasma_at_point_289____________________________________ b_plasma_toroidal_profile289___ 5.78595562357599213e+00 -Toroidal_field_in_plasma_at_point_290____________________________________ b_plasma_toroidal_profile290___ 5.78147386089312931e+00 -Toroidal_field_in_plasma_at_point_291____________________________________ b_plasma_toroidal_profile291___ 5.77699903592339759e+00 -Toroidal_field_in_plasma_at_point_292____________________________________ b_plasma_toroidal_profile292___ 5.77253113257001527e+00 -Toroidal_field_in_plasma_at_point_293____________________________________ b_plasma_toroidal_profile293___ 5.76807013478595731e+00 -Toroidal_field_in_plasma_at_point_294____________________________________ b_plasma_toroidal_profile294___ 5.76361602657376793e+00 -Toroidal_field_in_plasma_at_point_295____________________________________ b_plasma_toroidal_profile295___ 5.75916879198536247e+00 -Toroidal_field_in_plasma_at_point_296____________________________________ b_plasma_toroidal_profile296___ 5.75472841512184274e+00 -Toroidal_field_in_plasma_at_point_297____________________________________ b_plasma_toroidal_profile297___ 5.75029488013330514e+00 -Toroidal_field_in_plasma_at_point_298____________________________________ b_plasma_toroidal_profile298___ 5.74586817121865234e+00 -Toroidal_field_in_plasma_at_point_299____________________________________ b_plasma_toroidal_profile299___ 5.74144827262540769e+00 -Toroidal_field_in_plasma_at_point_300____________________________________ b_plasma_toroidal_profile300___ 5.73703516864952334e+00 -Toroidal_field_in_plasma_at_point_301____________________________________ b_plasma_toroidal_profile301___ 5.73262884363519998e+00 -Toroidal_field_in_plasma_at_point_302____________________________________ b_plasma_toroidal_profile302___ 5.72822928197469672e+00 -Toroidal_field_in_plasma_at_point_303____________________________________ b_plasma_toroidal_profile303___ 5.72383646810815083e+00 -Toroidal_field_in_plasma_at_point_304____________________________________ b_plasma_toroidal_profile304___ 5.71945038652339477e+00 -Toroidal_field_in_plasma_at_point_305____________________________________ b_plasma_toroidal_profile305___ 5.71507102175576609e+00 -Toroidal_field_in_plasma_at_point_306____________________________________ b_plasma_toroidal_profile306___ 5.71069835838793427e+00 -Toroidal_field_in_plasma_at_point_307____________________________________ b_plasma_toroidal_profile307___ 5.70633238104971685e+00 -Toroidal_field_in_plasma_at_point_308____________________________________ b_plasma_toroidal_profile308___ 5.70197307441789913e+00 -Toroidal_field_in_plasma_at_point_309____________________________________ b_plasma_toroidal_profile309___ 5.69762042321605300e+00 -Toroidal_field_in_plasma_at_point_310____________________________________ b_plasma_toroidal_profile310___ 5.69327441221436281e+00 -Toroidal_field_in_plasma_at_point_311____________________________________ b_plasma_toroidal_profile311___ 5.68893502622944336e+00 -Toroidal_field_in_plasma_at_point_312____________________________________ b_plasma_toroidal_profile312___ 5.68460225012416576e+00 -Toroidal_field_in_plasma_at_point_313____________________________________ b_plasma_toroidal_profile313___ 5.68027606880748070e+00 -Toroidal_field_in_plasma_at_point_314____________________________________ b_plasma_toroidal_profile314___ 5.67595646723424263e+00 -Toroidal_field_in_plasma_at_point_315____________________________________ b_plasma_toroidal_profile315___ 5.67164343040503827e+00 -Toroidal_field_in_plasma_at_point_316____________________________________ b_plasma_toroidal_profile316___ 5.66733694336600546e+00 -Toroidal_field_in_plasma_at_point_317____________________________________ b_plasma_toroidal_profile317___ 5.66303699120867154e+00 -Toroidal_field_in_plasma_at_point_318____________________________________ b_plasma_toroidal_profile318___ 5.65874355906977211e+00 -Toroidal_field_in_plasma_at_point_319____________________________________ b_plasma_toroidal_profile319___ 5.65445663213108318e+00 -Toroidal_field_in_plasma_at_point_320____________________________________ b_plasma_toroidal_profile320___ 5.65017619561925066e+00 -Toroidal_field_in_plasma_at_point_321____________________________________ b_plasma_toroidal_profile321___ 5.64590223480561981e+00 -Toroidal_field_in_plasma_at_point_322____________________________________ b_plasma_toroidal_profile322___ 5.64163473500606916e+00 -Toroidal_field_in_plasma_at_point_323____________________________________ b_plasma_toroidal_profile323___ 5.63737368158083818e+00 -Toroidal_field_in_plasma_at_point_324____________________________________ b_plasma_toroidal_profile324___ 5.63311905993436213e+00 -Toroidal_field_in_plasma_at_point_325____________________________________ b_plasma_toroidal_profile325___ 5.62887085551510591e+00 -Toroidal_field_in_plasma_at_point_326____________________________________ b_plasma_toroidal_profile326___ 5.62462905381539535e+00 -Toroidal_field_in_plasma_at_point_327____________________________________ b_plasma_toroidal_profile327___ 5.62039364037125733e+00 -Toroidal_field_in_plasma_at_point_328____________________________________ b_plasma_toroidal_profile328___ 5.61616460076224921e+00 -Toroidal_field_in_plasma_at_point_329____________________________________ b_plasma_toroidal_profile329___ 5.61194192061129993e+00 -Toroidal_field_in_plasma_at_point_330____________________________________ b_plasma_toroidal_profile330___ 5.60772558558454559e+00 -Toroidal_field_in_plasma_at_point_331____________________________________ b_plasma_toroidal_profile331___ 5.60351558139116346e+00 -Toroidal_field_in_plasma_at_point_332____________________________________ b_plasma_toroidal_profile332___ 5.59931189378321736e+00 -Toroidal_field_in_plasma_at_point_333____________________________________ b_plasma_toroidal_profile333___ 5.59511450855549430e+00 -Toroidal_field_in_plasma_at_point_334____________________________________ b_plasma_toroidal_profile334___ 5.59092341154534012e+00 -Toroidal_field_in_plasma_at_point_335____________________________________ b_plasma_toroidal_profile335___ 5.58673858863250761e+00 -Toroidal_field_in_plasma_at_point_336____________________________________ b_plasma_toroidal_profile336___ 5.58256002573898957e+00 -Toroidal_field_in_plasma_at_point_337____________________________________ b_plasma_toroidal_profile337___ 5.57838770882887047e+00 -Toroidal_field_in_plasma_at_point_338____________________________________ b_plasma_toroidal_profile338___ 5.57422162390816212e+00 -Toroidal_field_in_plasma_at_point_339____________________________________ b_plasma_toroidal_profile339___ 5.57006175702464823e+00 -Toroidal_field_in_plasma_at_point_340____________________________________ b_plasma_toroidal_profile340___ 5.56590809426773259e+00 -Toroidal_field_in_plasma_at_point_341____________________________________ b_plasma_toroidal_profile341___ 5.56176062176827823e+00 -Toroidal_field_in_plasma_at_point_342____________________________________ b_plasma_toroidal_profile342___ 5.55761932569845829e+00 -Toroidal_field_in_plasma_at_point_343____________________________________ b_plasma_toroidal_profile343___ 5.55348419227159962e+00 -Toroidal_field_in_plasma_at_point_344____________________________________ b_plasma_toroidal_profile344___ 5.54935520774203006e+00 -Toroidal_field_in_plasma_at_point_345____________________________________ b_plasma_toroidal_profile345___ 5.54523235840492568e+00 -Toroidal_field_in_plasma_at_point_346____________________________________ b_plasma_toroidal_profile346___ 5.54111563059616152e+00 -Toroidal_field_in_plasma_at_point_347____________________________________ b_plasma_toroidal_profile347___ 5.53700501069215889e+00 -Toroidal_field_in_plasma_at_point_348____________________________________ b_plasma_toroidal_profile348___ 5.53290048510973254e+00 -Toroidal_field_in_plasma_at_point_349____________________________________ b_plasma_toroidal_profile349___ 5.52880204030594857e+00 -Toroidal_field_in_plasma_at_point_350____________________________________ b_plasma_toroidal_profile350___ 5.52470966277796460e+00 -Toroidal_field_in_plasma_at_point_351____________________________________ b_plasma_toroidal_profile351___ 5.52062333906289116e+00 -Toroidal_field_in_plasma_at_point_352____________________________________ b_plasma_toroidal_profile352___ 5.51654305573764248e+00 -Toroidal_field_in_plasma_at_point_353____________________________________ b_plasma_toroidal_profile353___ 5.51246879941878110e+00 -Toroidal_field_in_plasma_at_point_354____________________________________ b_plasma_toroidal_profile354___ 5.50840055676238372e+00 -Toroidal_field_in_plasma_at_point_355____________________________________ b_plasma_toroidal_profile355___ 5.50433831446388577e+00 -Toroidal_field_in_plasma_at_point_356____________________________________ b_plasma_toroidal_profile356___ 5.50028205925794378e+00 -Toroidal_field_in_plasma_at_point_357____________________________________ b_plasma_toroidal_profile357___ 5.49623177791828432e+00 -Toroidal_field_in_plasma_at_point_358____________________________________ b_plasma_toroidal_profile358___ 5.49218745725756374e+00 -Toroidal_field_in_plasma_at_point_359____________________________________ b_plasma_toroidal_profile359___ 5.48814908412722779e+00 -Toroidal_field_in_plasma_at_point_360____________________________________ b_plasma_toroidal_profile360___ 5.48411664541736155e+00 -Toroidal_field_in_plasma_at_point_361____________________________________ b_plasma_toroidal_profile361___ 5.48009012805655615e+00 -Toroidal_field_in_plasma_at_point_362____________________________________ b_plasma_toroidal_profile362___ 5.47606951901176053e+00 -Toroidal_field_in_plasma_at_point_363____________________________________ b_plasma_toroidal_profile363___ 5.47205480528814459e+00 -Toroidal_field_in_plasma_at_point_364____________________________________ b_plasma_toroidal_profile364___ 5.46804597392895975e+00 -Toroidal_field_in_plasma_at_point_365____________________________________ b_plasma_toroidal_profile365___ 5.46404301201539511e+00 -Toroidal_field_in_plasma_at_point_366____________________________________ b_plasma_toroidal_profile366___ 5.46004590666644418e+00 -Toroidal_field_in_plasma_at_point_367____________________________________ b_plasma_toroidal_profile367___ 5.45605464503876458e+00 -Toroidal_field_in_plasma_at_point_368____________________________________ b_plasma_toroidal_profile368___ 5.45206921432653679e+00 -Toroidal_field_in_plasma_at_point_369____________________________________ b_plasma_toroidal_profile369___ 5.44808960176133539e+00 -Toroidal_field_in_plasma_at_point_370____________________________________ b_plasma_toroidal_profile370___ 5.44411579461198336e+00 -Toroidal_field_in_plasma_at_point_371____________________________________ b_plasma_toroidal_profile371___ 5.44014778018442335e+00 -Toroidal_field_in_plasma_at_point_372____________________________________ b_plasma_toroidal_profile372___ 5.43618554582157998e+00 -Toroidal_field_in_plasma_at_point_373____________________________________ b_plasma_toroidal_profile373___ 5.43222907890322393e+00 -Toroidal_field_in_plasma_at_point_374____________________________________ b_plasma_toroidal_profile374___ 5.42827836684583964e+00 -Toroidal_field_in_plasma_at_point_375____________________________________ b_plasma_toroidal_profile375___ 5.42433339710249207e+00 -Toroidal_field_in_plasma_at_point_376____________________________________ b_plasma_toroidal_profile376___ 5.42039415716269346e+00 -Toroidal_field_in_plasma_at_point_377____________________________________ b_plasma_toroidal_profile377___ 5.41646063455227100e+00 -Toroidal_field_in_plasma_at_point_378____________________________________ b_plasma_toroidal_profile378___ 5.41253281683323451e+00 -Toroidal_field_in_plasma_at_point_379____________________________________ b_plasma_toroidal_profile379___ 5.40861069160364494e+00 -Toroidal_field_in_plasma_at_point_380____________________________________ b_plasma_toroidal_profile380___ 5.40469424649748653e+00 -Toroidal_field_in_plasma_at_point_381____________________________________ b_plasma_toroidal_profile381___ 5.40078346918453622e+00 -Toroidal_field_in_plasma_at_point_382____________________________________ b_plasma_toroidal_profile382___ 5.39687834737023131e+00 -Toroidal_field_in_plasma_at_point_383____________________________________ b_plasma_toroidal_profile383___ 5.39297886879554156e+00 -Toroidal_field_in_plasma_at_point_384____________________________________ b_plasma_toroidal_profile384___ 5.38908502123684485e+00 -Toroidal_field_in_plasma_at_point_385____________________________________ b_plasma_toroidal_profile385___ 5.38519679250579308e+00 -Toroidal_field_in_plasma_at_point_386____________________________________ b_plasma_toroidal_profile386___ 5.38131417044919136e+00 -Toroidal_field_in_plasma_at_point_387____________________________________ b_plasma_toroidal_profile387___ 5.37743714294886832e+00 -Toroidal_field_in_plasma_at_point_388____________________________________ b_plasma_toroidal_profile388___ 5.37356569792154737e+00 -Toroidal_field_in_plasma_at_point_389____________________________________ b_plasma_toroidal_profile389___ 5.36969982331872586e+00 -Toroidal_field_in_plasma_at_point_390____________________________________ b_plasma_toroidal_profile390___ 5.36583950712654900e+00 -Toroidal_field_in_plasma_at_point_391____________________________________ b_plasma_toroidal_profile391___ 5.36198473736568193e+00 -Toroidal_field_in_plasma_at_point_392____________________________________ b_plasma_toroidal_profile392___ 5.35813550209119160e+00 -Toroidal_field_in_plasma_at_point_393____________________________________ b_plasma_toroidal_profile393___ 5.35429178939241712e+00 -Toroidal_field_in_plasma_at_point_394____________________________________ b_plasma_toroidal_profile394___ 5.35045358739285248e+00 -Toroidal_field_in_plasma_at_point_395____________________________________ b_plasma_toroidal_profile395___ 5.34662088425002047e+00 -Toroidal_field_in_plasma_at_point_396____________________________________ b_plasma_toroidal_profile396___ 5.34279366815535450e+00 -Toroidal_field_in_plasma_at_point_397____________________________________ b_plasma_toroidal_profile397___ 5.33897192733406989e+00 -Toroidal_field_in_plasma_at_point_398____________________________________ b_plasma_toroidal_profile398___ 5.33515565004505365e+00 -Toroidal_field_in_plasma_at_point_399____________________________________ b_plasma_toroidal_profile399___ 5.33134482458073489e+00 -Toroidal_field_in_plasma_at_point_400____________________________________ b_plasma_toroidal_profile400___ 5.32753943926697282e+00 -Toroidal_field_in_plasma_at_point_401____________________________________ b_plasma_toroidal_profile401___ 5.32373948246293160e+00 -Toroidal_field_in_plasma_at_point_402____________________________________ b_plasma_toroidal_profile402___ 5.31994494256096218e+00 -Toroidal_field_in_plasma_at_point_403____________________________________ b_plasma_toroidal_profile403___ 5.31615580798648857e+00 -Toroidal_field_in_plasma_at_point_404____________________________________ b_plasma_toroidal_profile404___ 5.31237206719788535e+00 -Toroidal_field_in_plasma_at_point_405____________________________________ b_plasma_toroidal_profile405___ 5.30859370868636482e+00 -Toroidal_field_in_plasma_at_point_406____________________________________ b_plasma_toroidal_profile406___ 5.30482072097585622e+00 -Toroidal_field_in_plasma_at_point_407____________________________________ b_plasma_toroidal_profile407___ 5.30105309262289026e+00 -Toroidal_field_in_plasma_at_point_408____________________________________ b_plasma_toroidal_profile408___ 5.29729081221648634e+00 -Toroidal_field_in_plasma_at_point_409____________________________________ b_plasma_toroidal_profile409___ 5.29353386837803530e+00 -Toroidal_field_in_plasma_at_point_410____________________________________ b_plasma_toroidal_profile410___ 5.28978224976118305e+00 -Toroidal_field_in_plasma_at_point_411____________________________________ b_plasma_toroidal_profile411___ 5.28603594505172047e+00 -Toroidal_field_in_plasma_at_point_412____________________________________ b_plasma_toroidal_profile412___ 5.28229494296746616e+00 -Toroidal_field_in_plasma_at_point_413____________________________________ b_plasma_toroidal_profile413___ 5.27855923225815360e+00 -Toroidal_field_in_plasma_at_point_414____________________________________ b_plasma_toroidal_profile414___ 5.27482880170532109e+00 -Toroidal_field_in_plasma_at_point_415____________________________________ b_plasma_toroidal_profile415___ 5.27110364012219534e+00 -Toroidal_field_in_plasma_at_point_416____________________________________ b_plasma_toroidal_profile416___ 5.26738373635358492e+00 -Toroidal_field_in_plasma_at_point_417____________________________________ b_plasma_toroidal_profile417___ 5.26366907927576122e+00 -Toroidal_field_in_plasma_at_point_418____________________________________ b_plasma_toroidal_profile418___ 5.25995965779635632e+00 -Toroidal_field_in_plasma_at_point_419____________________________________ b_plasma_toroidal_profile419___ 5.25625546085424578e+00 -Toroidal_field_in_plasma_at_point_420____________________________________ b_plasma_toroidal_profile420___ 5.25255647741944287e+00 -Toroidal_field_in_plasma_at_point_421____________________________________ b_plasma_toroidal_profile421___ 5.24886269649298853e+00 -Toroidal_field_in_plasma_at_point_422____________________________________ b_plasma_toroidal_profile422___ 5.24517410710683762e+00 -Toroidal_field_in_plasma_at_point_423____________________________________ b_plasma_toroidal_profile423___ 5.24149069832375680e+00 -Toroidal_field_in_plasma_at_point_424____________________________________ b_plasma_toroidal_profile424___ 5.23781245923721350e+00 -Toroidal_field_in_plasma_at_point_425____________________________________ b_plasma_toroidal_profile425___ 5.23413937897126846e+00 -Toroidal_field_in_plasma_at_point_426____________________________________ b_plasma_toroidal_profile426___ 5.23047144668046915e+00 -Toroidal_field_in_plasma_at_point_427____________________________________ b_plasma_toroidal_profile427___ 5.22680865154974050e+00 -Toroidal_field_in_plasma_at_point_428____________________________________ b_plasma_toroidal_profile428___ 5.22315098279428192e+00 -Toroidal_field_in_plasma_at_point_429____________________________________ b_plasma_toroidal_profile429___ 5.21949842965946065e+00 -Toroidal_field_in_plasma_at_point_430____________________________________ b_plasma_toroidal_profile430___ 5.21585098142070525e+00 -Toroidal_field_in_plasma_at_point_431____________________________________ b_plasma_toroidal_profile431___ 5.21220862738340074e+00 -Toroidal_field_in_plasma_at_point_432____________________________________ b_plasma_toroidal_profile432___ 5.20857135688278383e+00 -Toroidal_field_in_plasma_at_point_433____________________________________ b_plasma_toroidal_profile433___ 5.20493915928384165e+00 -Toroidal_field_in_plasma_at_point_434____________________________________ b_plasma_toroidal_profile434___ 5.20131202398120518e+00 -Toroidal_field_in_plasma_at_point_435____________________________________ b_plasma_toroidal_profile435___ 5.19768994039904531e+00 -Toroidal_field_in_plasma_at_point_436____________________________________ b_plasma_toroidal_profile436___ 5.19407289799097427e+00 -Toroidal_field_in_plasma_at_point_437____________________________________ b_plasma_toroidal_profile437___ 5.19046088623993729e+00 -Toroidal_field_in_plasma_at_point_438____________________________________ b_plasma_toroidal_profile438___ 5.18685389465811664e+00 -Toroidal_field_in_plasma_at_point_439____________________________________ b_plasma_toroidal_profile439___ 5.18325191278682595e+00 -Toroidal_field_in_plasma_at_point_440____________________________________ b_plasma_toroidal_profile440___ 5.17965493019641166e+00 -Toroidal_field_in_plasma_at_point_441____________________________________ b_plasma_toroidal_profile441___ 5.17606293648615079e+00 -Toroidal_field_in_plasma_at_point_442____________________________________ b_plasma_toroidal_profile442___ 5.17247592128415068e+00 -Toroidal_field_in_plasma_at_point_443____________________________________ b_plasma_toroidal_profile443___ 5.16889387424725033e+00 -Toroidal_field_in_plasma_at_point_444____________________________________ b_plasma_toroidal_profile444___ 5.16531678506092007e+00 -Toroidal_field_in_plasma_at_point_445____________________________________ b_plasma_toroidal_profile445___ 5.16174464343916295e+00 -Toroidal_field_in_plasma_at_point_446____________________________________ b_plasma_toroidal_profile446___ 5.15817743912441617e+00 -Toroidal_field_in_plasma_at_point_447____________________________________ b_plasma_toroidal_profile447___ 5.15461516188745161e+00 -Toroidal_field_in_plasma_at_point_448____________________________________ b_plasma_toroidal_profile448___ 5.15105780152728077e+00 -Toroidal_field_in_plasma_at_point_449____________________________________ b_plasma_toroidal_profile449___ 5.14750534787105440e+00 -Toroidal_field_in_plasma_at_point_450____________________________________ b_plasma_toroidal_profile450___ 5.14395779077396931e+00 -Toroidal_field_in_plasma_at_point_451____________________________________ b_plasma_toroidal_profile451___ 5.14041512011916701e+00 -Toroidal_field_in_plasma_at_point_452____________________________________ b_plasma_toroidal_profile452___ 5.13687732581763878e+00 -Toroidal_field_in_plasma_at_point_453____________________________________ b_plasma_toroidal_profile453___ 5.13334439780813589e+00 -Toroidal_field_in_plasma_at_point_454____________________________________ b_plasma_toroidal_profile454___ 5.12981632605706483e+00 -Toroidal_field_in_plasma_at_point_455____________________________________ b_plasma_toroidal_profile455___ 5.12629310055839937e+00 -Toroidal_field_in_plasma_at_point_456____________________________________ b_plasma_toroidal_profile456___ 5.12277471133358286e+00 -Toroidal_field_in_plasma_at_point_457____________________________________ b_plasma_toroidal_profile457___ 5.11926114843143321e+00 -Toroidal_field_in_plasma_at_point_458____________________________________ b_plasma_toroidal_profile458___ 5.11575240192805314e+00 -Toroidal_field_in_plasma_at_point_459____________________________________ b_plasma_toroidal_profile459___ 5.11224846192673166e+00 -Toroidal_field_in_plasma_at_point_460____________________________________ b_plasma_toroidal_profile460___ 5.10874931855785697e+00 -Toroidal_field_in_plasma_at_point_461____________________________________ b_plasma_toroidal_profile461___ 5.10525496197881612e+00 -Toroidal_field_in_plasma_at_point_462____________________________________ b_plasma_toroidal_profile462___ 5.10176538237390975e+00 -Toroidal_field_in_plasma_at_point_463____________________________________ b_plasma_toroidal_profile463___ 5.09828056995425438e+00 -Toroidal_field_in_plasma_at_point_464____________________________________ b_plasma_toroidal_profile464___ 5.09480051495769892e+00 -Toroidal_field_in_plasma_at_point_465____________________________________ b_plasma_toroidal_profile465___ 5.09132520764872432e+00 -Toroidal_field_in_plasma_at_point_466____________________________________ b_plasma_toroidal_profile466___ 5.08785463831835738e+00 -Toroidal_field_in_plasma_at_point_467____________________________________ b_plasma_toroidal_profile467___ 5.08438879728408022e+00 -Toroidal_field_in_plasma_at_point_468____________________________________ b_plasma_toroidal_profile468___ 5.08092767488974051e+00 -Toroidal_field_in_plasma_at_point_469____________________________________ b_plasma_toroidal_profile469___ 5.07747126150546269e+00 -Toroidal_field_in_plasma_at_point_470____________________________________ b_plasma_toroidal_profile470___ 5.07401954752755202e+00 -Toroidal_field_in_plasma_at_point_471____________________________________ b_plasma_toroidal_profile471___ 5.07057252337841646e+00 -Toroidal_field_in_plasma_at_point_472____________________________________ b_plasma_toroidal_profile472___ 5.06713017950646893e+00 -Toroidal_field_in_plasma_at_point_473____________________________________ b_plasma_toroidal_profile473___ 5.06369250638604385e+00 -Toroidal_field_in_plasma_at_point_474____________________________________ b_plasma_toroidal_profile474___ 5.06025949451730828e+00 -Toroidal_field_in_plasma_at_point_475____________________________________ b_plasma_toroidal_profile475___ 5.05683113442617227e+00 -Toroidal_field_in_plasma_at_point_476____________________________________ b_plasma_toroidal_profile476___ 5.05340741666420445e+00 -Toroidal_field_in_plasma_at_point_477____________________________________ b_plasma_toroidal_profile477___ 5.04998833180854501e+00 -Toroidal_field_in_plasma_at_point_478____________________________________ b_plasma_toroidal_profile478___ 5.04657387046181771e+00 -Toroidal_field_in_plasma_at_point_479____________________________________ b_plasma_toroidal_profile479___ 5.04316402325204649e+00 -Toroidal_field_in_plasma_at_point_480____________________________________ b_plasma_toroidal_profile480___ 5.03975878083256568e+00 -Toroidal_field_in_plasma_at_point_481____________________________________ b_plasma_toroidal_profile481___ 5.03635813388193654e+00 -Toroidal_field_in_plasma_at_point_482____________________________________ b_plasma_toroidal_profile482___ 5.03296207310386290e+00 -Toroidal_field_in_plasma_at_point_483____________________________________ b_plasma_toroidal_profile483___ 5.02957058922710853e+00 -Toroidal_field_in_plasma_at_point_484____________________________________ b_plasma_toroidal_profile484___ 5.02618367300540658e+00 -Toroidal_field_in_plasma_at_point_485____________________________________ b_plasma_toroidal_profile485___ 5.02280131521738227e+00 -Toroidal_field_in_plasma_at_point_486____________________________________ b_plasma_toroidal_profile486___ 5.01942350666646231e+00 -Toroidal_field_in_plasma_at_point_487____________________________________ b_plasma_toroidal_profile487___ 5.01605023818079943e+00 -Toroidal_field_in_plasma_at_point_488____________________________________ b_plasma_toroidal_profile488___ 5.01268150061318263e+00 -Toroidal_field_in_plasma_at_point_489____________________________________ b_plasma_toroidal_profile489___ 5.00931728484095906e+00 -Toroidal_field_in_plasma_at_point_490____________________________________ b_plasma_toroidal_profile490___ 5.00595758176594874e+00 -Toroidal_field_in_plasma_at_point_491____________________________________ b_plasma_toroidal_profile491___ 5.00260238231436283e+00 -Toroidal_field_in_plasma_at_point_492____________________________________ b_plasma_toroidal_profile492___ 4.99925167743672372e+00 -Toroidal_field_in_plasma_at_point_493____________________________________ b_plasma_toroidal_profile493___ 4.99590545810778330e+00 -Toroidal_field_in_plasma_at_point_494____________________________________ b_plasma_toroidal_profile494___ 4.99256371532644128e+00 -Toroidal_field_in_plasma_at_point_495____________________________________ b_plasma_toroidal_profile495___ 4.98922644011566163e+00 -Toroidal_field_in_plasma_at_point_496____________________________________ b_plasma_toroidal_profile496___ 4.98589362352239807e+00 -Toroidal_field_in_plasma_at_point_497____________________________________ b_plasma_toroidal_profile497___ 4.98256525661750960e+00 -Toroidal_field_in_plasma_at_point_498____________________________________ b_plasma_toroidal_profile498___ 4.97924133049568329e+00 -Toroidal_field_in_plasma_at_point_499____________________________________ b_plasma_toroidal_profile499___ 4.97592183627535256e+00 -Toroidal_field_in_plasma_at_point_500____________________________________ b_plasma_toroidal_profile500___ 4.97260676509862076e+00 -Toroidal_field_in_plasma_at_point_501____________________________________ b_plasma_toroidal_profile501___ 4.96929610813117772e+00 -Toroidal_field_in_plasma_at_point_502____________________________________ b_plasma_toroidal_profile502___ 4.96598985656222780e+00 -Toroidal_field_in_plasma_at_point_503____________________________________ b_plasma_toroidal_profile503___ 4.96268800160440726e+00 -Toroidal_field_in_plasma_at_point_504____________________________________ b_plasma_toroidal_profile504___ 4.95939053449370615e+00 -Toroidal_field_in_plasma_at_point_505____________________________________ b_plasma_toroidal_profile505___ 4.95609744648939543e+00 -Toroidal_field_in_plasma_at_point_506____________________________________ b_plasma_toroidal_profile506___ 4.95280872887394086e+00 -Toroidal_field_in_plasma_at_point_507____________________________________ b_plasma_toroidal_profile507___ 4.94952437295293723e+00 -Toroidal_field_in_plasma_at_point_508____________________________________ b_plasma_toroidal_profile508___ 4.94624437005502315e+00 -Toroidal_field_in_plasma_at_point_509____________________________________ b_plasma_toroidal_profile509___ 4.94296871153180817e+00 -Toroidal_field_in_plasma_at_point_510____________________________________ b_plasma_toroidal_profile510___ 4.93969738875779552e+00 -Toroidal_field_in_plasma_at_point_511____________________________________ b_plasma_toroidal_profile511___ 4.93643039313031018e+00 -Toroidal_field_in_plasma_at_point_512____________________________________ b_plasma_toroidal_profile512___ 4.93316771606941806e+00 -Toroidal_field_in_plasma_at_point_513____________________________________ b_plasma_toroidal_profile513___ 4.92990934901785227e+00 -Toroidal_field_in_plasma_at_point_514____________________________________ b_plasma_toroidal_profile514___ 4.92665528344094383e+00 -Toroidal_field_in_plasma_at_point_515____________________________________ b_plasma_toroidal_profile515___ 4.92340551082653644e+00 -Toroidal_field_in_plasma_at_point_516____________________________________ b_plasma_toroidal_profile516___ 4.92016002268492336e+00 -Toroidal_field_in_plasma_at_point_517____________________________________ b_plasma_toroidal_profile517___ 4.91691881054876756e+00 -Toroidal_field_in_plasma_at_point_518____________________________________ b_plasma_toroidal_profile518___ 4.91368186597302881e+00 -Toroidal_field_in_plasma_at_point_519____________________________________ b_plasma_toroidal_profile519___ 4.91044918053488821e+00 -Toroidal_field_in_plasma_at_point_520____________________________________ b_plasma_toroidal_profile520___ 4.90722074583368162e+00 -Toroidal_field_in_plasma_at_point_521____________________________________ b_plasma_toroidal_profile521___ 4.90399655349082053e+00 -Toroidal_field_in_plasma_at_point_522____________________________________ b_plasma_toroidal_profile522___ 4.90077659514972375e+00 -Toroidal_field_in_plasma_at_point_523____________________________________ b_plasma_toroidal_profile523___ 4.89756086247574007e+00 -Toroidal_field_in_plasma_at_point_524____________________________________ b_plasma_toroidal_profile524___ 4.89434934715608527e+00 -Toroidal_field_in_plasma_at_point_525____________________________________ b_plasma_toroidal_profile525___ 4.89114204089975679e+00 -Toroidal_field_in_plasma_at_point_526____________________________________ b_plasma_toroidal_profile526___ 4.88793893543747782e+00 -Toroidal_field_in_plasma_at_point_527____________________________________ b_plasma_toroidal_profile527___ 4.88474002252161554e+00 -Toroidal_field_in_plasma_at_point_528____________________________________ b_plasma_toroidal_profile528___ 4.88154529392611547e+00 -Toroidal_field_in_plasma_at_point_529____________________________________ b_plasma_toroidal_profile529___ 4.87835474144642500e+00 -Toroidal_field_in_plasma_at_point_530____________________________________ b_plasma_toroidal_profile530___ 4.87516835689943129e+00 -Toroidal_field_in_plasma_at_point_531____________________________________ b_plasma_toroidal_profile531___ 4.87198613212338749e+00 -Toroidal_field_in_plasma_at_point_532____________________________________ b_plasma_toroidal_profile532___ 4.86880805897783997e+00 -Toroidal_field_in_plasma_at_point_533____________________________________ b_plasma_toroidal_profile533___ 4.86563412934356432e+00 -Toroidal_field_in_plasma_at_point_534____________________________________ b_plasma_toroidal_profile534___ 4.86246433512249521e+00 -Toroidal_field_in_plasma_at_point_535____________________________________ b_plasma_toroidal_profile535___ 4.85929866823764911e+00 -Toroidal_field_in_plasma_at_point_536____________________________________ b_plasma_toroidal_profile536___ 4.85613712063307013e+00 -Toroidal_field_in_plasma_at_point_537____________________________________ b_plasma_toroidal_profile537___ 4.85297968427375181e+00 -Toroidal_field_in_plasma_at_point_538____________________________________ b_plasma_toroidal_profile538___ 4.84982635114556881e+00 -Toroidal_field_in_plasma_at_point_539____________________________________ b_plasma_toroidal_profile539___ 4.84667711325521378e+00 -Toroidal_field_in_plasma_at_point_540____________________________________ b_plasma_toroidal_profile540___ 4.84353196263012897e+00 -Toroidal_field_in_plasma_at_point_541____________________________________ b_plasma_toroidal_profile541___ 4.84039089131843614e+00 -Toroidal_field_in_plasma_at_point_542____________________________________ b_plasma_toroidal_profile542___ 4.83725389138887163e+00 -Toroidal_field_in_plasma_at_point_543____________________________________ b_plasma_toroidal_profile543___ 4.83412095493071803e+00 -Toroidal_field_in_plasma_at_point_544____________________________________ b_plasma_toroidal_profile544___ 4.83099207405374109e+00 -Toroidal_field_in_plasma_at_point_545____________________________________ b_plasma_toroidal_profile545___ 4.82786724088811692e+00 -Toroidal_field_in_plasma_at_point_546____________________________________ b_plasma_toroidal_profile546___ 4.82474644758437510e+00 -Toroidal_field_in_plasma_at_point_547____________________________________ b_plasma_toroidal_profile547___ 4.82162968631332678e+00 -Toroidal_field_in_plasma_at_point_548____________________________________ b_plasma_toroidal_profile548___ 4.81851694926599716e+00 -Toroidal_field_in_plasma_at_point_549____________________________________ b_plasma_toroidal_profile549___ 4.81540822865356777e+00 -Toroidal_field_in_plasma_at_point_550____________________________________ b_plasma_toroidal_profile550___ 4.81230351670730450e+00 -Toroidal_field_in_plasma_at_point_551____________________________________ b_plasma_toroidal_profile551___ 4.80920280567849812e+00 -Toroidal_field_in_plasma_at_point_552____________________________________ b_plasma_toroidal_profile552___ 4.80610608783839588e+00 -Toroidal_field_in_plasma_at_point_553____________________________________ b_plasma_toroidal_profile553___ 4.80301335547814023e+00 -Toroidal_field_in_plasma_at_point_554____________________________________ b_plasma_toroidal_profile554___ 4.79992460090870043e+00 -Toroidal_field_in_plasma_at_point_555____________________________________ b_plasma_toroidal_profile555___ 4.79683981646081570e+00 -Toroidal_field_in_plasma_at_point_556____________________________________ b_plasma_toroidal_profile556___ 4.79375899448492504e+00 -Toroidal_field_in_plasma_at_point_557____________________________________ b_plasma_toroidal_profile557___ 4.79068212735111043e+00 -Toroidal_field_in_plasma_at_point_558____________________________________ b_plasma_toroidal_profile558___ 4.78760920744902485e+00 -Toroidal_field_in_plasma_at_point_559____________________________________ b_plasma_toroidal_profile559___ 4.78454022718783900e+00 -Toroidal_field_in_plasma_at_point_560____________________________________ b_plasma_toroidal_profile560___ 4.78147517899617469e+00 -Toroidal_field_in_plasma_at_point_561____________________________________ b_plasma_toroidal_profile561___ 4.77841405532204178e+00 -Toroidal_field_in_plasma_at_point_562____________________________________ b_plasma_toroidal_profile562___ 4.77535684863277599e+00 -Toroidal_field_in_plasma_at_point_563____________________________________ b_plasma_toroidal_profile563___ 4.77230355141498030e+00 -Toroidal_field_in_plasma_at_point_564____________________________________ b_plasma_toroidal_profile564___ 4.76925415617445925e+00 -Toroidal_field_in_plasma_at_point_565____________________________________ b_plasma_toroidal_profile565___ 4.76620865543616112e+00 -Toroidal_field_in_plasma_at_point_566____________________________________ b_plasma_toroidal_profile566___ 4.76316704174411498e+00 -Toroidal_field_in_plasma_at_point_567____________________________________ b_plasma_toroidal_profile567___ 4.76012930766137110e+00 -Toroidal_field_in_plasma_at_point_568____________________________________ b_plasma_toroidal_profile568___ 4.75709544576993615e+00 -Toroidal_field_in_plasma_at_point_569____________________________________ b_plasma_toroidal_profile569___ 4.75406544867071901e+00 -Toroidal_field_in_plasma_at_point_570____________________________________ b_plasma_toroidal_profile570___ 4.75103930898346860e+00 -Toroidal_field_in_plasma_at_point_571____________________________________ b_plasma_toroidal_profile571___ 4.74801701934670994e+00 -Toroidal_field_in_plasma_at_point_572____________________________________ b_plasma_toroidal_profile572___ 4.74499857241769085e+00 -Toroidal_field_in_plasma_at_point_573____________________________________ b_plasma_toroidal_profile573___ 4.74198396087231888e+00 -Toroidal_field_in_plasma_at_point_574____________________________________ b_plasma_toroidal_profile574___ 4.73897317740509827e+00 -Toroidal_field_in_plasma_at_point_575____________________________________ b_plasma_toroidal_profile575___ 4.73596621472907930e+00 -Toroidal_field_in_plasma_at_point_576____________________________________ b_plasma_toroidal_profile576___ 4.73296306557579616e+00 -Toroidal_field_in_plasma_at_point_577____________________________________ b_plasma_toroidal_profile577___ 4.72996372269520293e+00 -Toroidal_field_in_plasma_at_point_578____________________________________ b_plasma_toroidal_profile578___ 4.72696817885562393e+00 -Toroidal_field_in_plasma_at_point_579____________________________________ b_plasma_toroidal_profile579___ 4.72397642684368968e+00 -Toroidal_field_in_plasma_at_point_580____________________________________ b_plasma_toroidal_profile580___ 4.72098845946428103e+00 -Toroidal_field_in_plasma_at_point_581____________________________________ b_plasma_toroidal_profile581___ 4.71800426954047314e+00 -Toroidal_field_in_plasma_at_point_582____________________________________ b_plasma_toroidal_profile582___ 4.71502384991347423e+00 -Toroidal_field_in_plasma_at_point_583____________________________________ b_plasma_toroidal_profile583___ 4.71204719344256873e+00 -Toroidal_field_in_plasma_at_point_584____________________________________ b_plasma_toroidal_profile584___ 4.70907429300506575e+00 -Toroidal_field_in_plasma_at_point_585____________________________________ b_plasma_toroidal_profile585___ 4.70610514149623516e+00 -Toroidal_field_in_plasma_at_point_586____________________________________ b_plasma_toroidal_profile586___ 4.70313973182925604e+00 -Toroidal_field_in_plasma_at_point_587____________________________________ b_plasma_toroidal_profile587___ 4.70017805693515722e+00 -Toroidal_field_in_plasma_at_point_588____________________________________ b_plasma_toroidal_profile588___ 4.69722010976276216e+00 -Toroidal_field_in_plasma_at_point_589____________________________________ b_plasma_toroidal_profile589___ 4.69426588327863481e+00 -Toroidal_field_in_plasma_at_point_590____________________________________ b_plasma_toroidal_profile590___ 4.69131537046702007e+00 -Toroidal_field_in_plasma_at_point_591____________________________________ b_plasma_toroidal_profile591___ 4.68836856432979143e+00 -Toroidal_field_in_plasma_at_point_592____________________________________ b_plasma_toroidal_profile592___ 4.68542545788639675e+00 -Toroidal_field_in_plasma_at_point_593____________________________________ b_plasma_toroidal_profile593___ 4.68248604417379521e+00 -Toroidal_field_in_plasma_at_point_594____________________________________ b_plasma_toroidal_profile594___ 4.67955031624641293e+00 -Toroidal_field_in_plasma_at_point_595____________________________________ b_plasma_toroidal_profile595___ 4.67661826717608342e+00 -Toroidal_field_in_plasma_at_point_596____________________________________ b_plasma_toroidal_profile596___ 4.67368989005199076e+00 -Toroidal_field_in_plasma_at_point_597____________________________________ b_plasma_toroidal_profile597___ 4.67076517798061897e+00 -Toroidal_field_in_plasma_at_point_598____________________________________ b_plasma_toroidal_profile598___ 4.66784412408569693e+00 -Toroidal_field_in_plasma_at_point_599____________________________________ b_plasma_toroidal_profile599___ 4.66492672150814336e+00 -Toroidal_field_in_plasma_at_point_600____________________________________ b_plasma_toroidal_profile600___ 4.66201296340601434e+00 -Toroidal_field_in_plasma_at_point_601____________________________________ b_plasma_toroidal_profile601___ 4.65910284295444921e+00 -Toroidal_field_in_plasma_at_point_602____________________________________ b_plasma_toroidal_profile602___ 4.65619635334562076e+00 -Toroidal_field_in_plasma_at_point_603____________________________________ b_plasma_toroidal_profile603___ 4.65329348778867136e+00 -Toroidal_field_in_plasma_at_point_604____________________________________ b_plasma_toroidal_profile604___ 4.65039423950967556e+00 -Toroidal_field_in_plasma_at_point_605____________________________________ b_plasma_toroidal_profile605___ 4.64749860175157448e+00 -Toroidal_field_in_plasma_at_point_606____________________________________ b_plasma_toroidal_profile606___ 4.64460656777413217e+00 -Toroidal_field_in_plasma_at_point_607____________________________________ b_plasma_toroidal_profile607___ 4.64171813085387441e+00 -Toroidal_field_in_plasma_at_point_608____________________________________ b_plasma_toroidal_profile608___ 4.63883328428404518e+00 -Toroidal_field_in_plasma_at_point_609____________________________________ b_plasma_toroidal_profile609___ 4.63595202137455242e+00 -Toroidal_field_in_plasma_at_point_610____________________________________ b_plasma_toroidal_profile610___ 4.63307433545191127e+00 -Toroidal_field_in_plasma_at_point_611____________________________________ b_plasma_toroidal_profile611___ 4.63020021985919872e+00 -Toroidal_field_in_plasma_at_point_612____________________________________ b_plasma_toroidal_profile612___ 4.62732966795600120e+00 -Toroidal_field_in_plasma_at_point_613____________________________________ b_plasma_toroidal_profile613___ 4.62446267311835779e+00 -Toroidal_field_in_plasma_at_point_614____________________________________ b_plasma_toroidal_profile614___ 4.62159922873871754e+00 -Toroidal_field_in_plasma_at_point_615____________________________________ b_plasma_toroidal_profile615___ 4.61873932822588529e+00 -Toroidal_field_in_plasma_at_point_616____________________________________ b_plasma_toroidal_profile616___ 4.61588296500496575e+00 -Toroidal_field_in_plasma_at_point_617____________________________________ b_plasma_toroidal_profile617___ 4.61303013251732352e+00 -Toroidal_field_in_plasma_at_point_618____________________________________ b_plasma_toroidal_profile618___ 4.61018082422052444e+00 -Toroidal_field_in_plasma_at_point_619____________________________________ b_plasma_toroidal_profile619___ 4.60733503358828944e+00 -Toroidal_field_in_plasma_at_point_620____________________________________ b_plasma_toroidal_profile620___ 4.60449275411044301e+00 -Toroidal_field_in_plasma_at_point_621____________________________________ b_plasma_toroidal_profile621___ 4.60165397929286701e+00 -Toroidal_field_in_plasma_at_point_622____________________________________ b_plasma_toroidal_profile622___ 4.59881870265744297e+00 -Toroidal_field_in_plasma_at_point_623____________________________________ b_plasma_toroidal_profile623___ 4.59598691774201296e+00 -Toroidal_field_in_plasma_at_point_624____________________________________ b_plasma_toroidal_profile624___ 4.59315861810032544e+00 -Toroidal_field_in_plasma_at_point_625____________________________________ b_plasma_toroidal_profile625___ 4.59033379730198643e+00 -Toroidal_field_in_plasma_at_point_626____________________________________ b_plasma_toroidal_profile626___ 4.58751244893240884e+00 -Toroidal_field_in_plasma_at_point_627____________________________________ b_plasma_toroidal_profile627___ 4.58469456659276986e+00 -Toroidal_field_in_plasma_at_point_628____________________________________ b_plasma_toroidal_profile628___ 4.58188014389995679e+00 -Toroidal_field_in_plasma_at_point_629____________________________________ b_plasma_toroidal_profile629___ 4.57906917448652084e+00 -Toroidal_field_in_plasma_at_point_630____________________________________ b_plasma_toroidal_profile630___ 4.57626165200063095e+00 -Toroidal_field_in_plasma_at_point_631____________________________________ b_plasma_toroidal_profile631___ 4.57345757010602316e+00 -Toroidal_field_in_plasma_at_point_632____________________________________ b_plasma_toroidal_profile632___ 4.57065692248195266e+00 -Toroidal_field_in_plasma_at_point_633____________________________________ b_plasma_toroidal_profile633___ 4.56785970282315112e+00 -Toroidal_field_in_plasma_at_point_634____________________________________ b_plasma_toroidal_profile634___ 4.56506590483977259e+00 -Toroidal_field_in_plasma_at_point_635____________________________________ b_plasma_toroidal_profile635___ 4.56227552225735344e+00 -Toroidal_field_in_plasma_at_point_636____________________________________ b_plasma_toroidal_profile636___ 4.55948854881675558e+00 -Toroidal_field_in_plasma_at_point_637____________________________________ b_plasma_toroidal_profile637___ 4.55670497827413268e+00 -Toroidal_field_in_plasma_at_point_638____________________________________ b_plasma_toroidal_profile638___ 4.55392480440087155e+00 -Toroidal_field_in_plasma_at_point_639____________________________________ b_plasma_toroidal_profile639___ 4.55114802098355398e+00 -Toroidal_field_in_plasma_at_point_640____________________________________ b_plasma_toroidal_profile640___ 4.54837462182390517e+00 -Toroidal_field_in_plasma_at_point_641____________________________________ b_plasma_toroidal_profile641___ 4.54560460073875117e+00 -Toroidal_field_in_plasma_at_point_642____________________________________ b_plasma_toroidal_profile642___ 4.54283795155996906e+00 -Toroidal_field_in_plasma_at_point_643____________________________________ b_plasma_toroidal_profile643___ 4.54007466813444616e+00 -Toroidal_field_in_plasma_at_point_644____________________________________ b_plasma_toroidal_profile644___ 4.53731474432403026e+00 -Toroidal_field_in_plasma_at_point_645____________________________________ b_plasma_toroidal_profile645___ 4.53455817400548611e+00 -Toroidal_field_in_plasma_at_point_646____________________________________ b_plasma_toroidal_profile646___ 4.53180495107044923e+00 -Toroidal_field_in_plasma_at_point_647____________________________________ b_plasma_toroidal_profile647___ 4.52905506942538150e+00 -Toroidal_field_in_plasma_at_point_648____________________________________ b_plasma_toroidal_profile648___ 4.52630852299152764e+00 -Toroidal_field_in_plasma_at_point_649____________________________________ b_plasma_toroidal_profile649___ 4.52356530570486548e+00 -Toroidal_field_in_plasma_at_point_650____________________________________ b_plasma_toroidal_profile650___ 4.52082541151606776e+00 -Toroidal_field_in_plasma_at_point_651____________________________________ b_plasma_toroidal_profile651___ 4.51808883439045328e+00 -Toroidal_field_in_plasma_at_point_652____________________________________ b_plasma_toroidal_profile652___ 4.51535556830794249e+00 -Toroidal_field_in_plasma_at_point_653____________________________________ b_plasma_toroidal_profile653___ 4.51262560726301576e+00 -Toroidal_field_in_plasma_at_point_654____________________________________ b_plasma_toroidal_profile654___ 4.50989894526467072e+00 -Toroidal_field_in_plasma_at_point_655____________________________________ b_plasma_toroidal_profile655___ 4.50717557633637078e+00 -Toroidal_field_in_plasma_at_point_656____________________________________ b_plasma_toroidal_profile656___ 4.50445549451601046e+00 -Toroidal_field_in_plasma_at_point_657____________________________________ b_plasma_toroidal_profile657___ 4.50173869385586833e+00 -Toroidal_field_in_plasma_at_point_658____________________________________ b_plasma_toroidal_profile658___ 4.49902516842256084e+00 -Toroidal_field_in_plasma_at_point_659____________________________________ b_plasma_toroidal_profile659___ 4.49631491229700497e+00 -Toroidal_field_in_plasma_at_point_660____________________________________ b_plasma_toroidal_profile660___ 4.49360791957437034e+00 -Toroidal_field_in_plasma_at_point_661____________________________________ b_plasma_toroidal_profile661___ 4.49090418436403649e+00 -Toroidal_field_in_plasma_at_point_662____________________________________ b_plasma_toroidal_profile662___ 4.48820370078955477e+00 -Toroidal_field_in_plasma_at_point_663____________________________________ b_plasma_toroidal_profile663___ 4.48550646298859856e+00 -Toroidal_field_in_plasma_at_point_664____________________________________ b_plasma_toroidal_profile664___ 4.48281246511293041e+00 -Toroidal_field_in_plasma_at_point_665____________________________________ b_plasma_toroidal_profile665___ 4.48012170132834875e+00 -Toroidal_field_in_plasma_at_point_666____________________________________ b_plasma_toroidal_profile666___ 4.47743416581465503e+00 -Toroidal_field_in_plasma_at_point_667____________________________________ b_plasma_toroidal_profile667___ 4.47474985276560489e+00 -Toroidal_field_in_plasma_at_point_668____________________________________ b_plasma_toroidal_profile668___ 4.47206875638887258e+00 -Toroidal_field_in_plasma_at_point_669____________________________________ b_plasma_toroidal_profile669___ 4.46939087090600484e+00 -Toroidal_field_in_plasma_at_point_670____________________________________ b_plasma_toroidal_profile670___ 4.46671619055238178e+00 -Toroidal_field_in_plasma_at_point_671____________________________________ b_plasma_toroidal_profile671___ 4.46404470957717070e+00 -Toroidal_field_in_plasma_at_point_672____________________________________ b_plasma_toroidal_profile672___ 4.46137642224329323e+00 -Toroidal_field_in_plasma_at_point_673____________________________________ b_plasma_toroidal_profile673___ 4.45871132282737648e+00 -Toroidal_field_in_plasma_at_point_674____________________________________ b_plasma_toroidal_profile674___ 4.45604940561971929e+00 -Toroidal_field_in_plasma_at_point_675____________________________________ b_plasma_toroidal_profile675___ 4.45339066492424163e+00 -Toroidal_field_in_plasma_at_point_676____________________________________ b_plasma_toroidal_profile676___ 4.45073509505845522e+00 -Toroidal_field_in_plasma_at_point_677____________________________________ b_plasma_toroidal_profile677___ 4.44808269035341386e+00 -Toroidal_field_in_plasma_at_point_678____________________________________ b_plasma_toroidal_profile678___ 4.44543344515367966e+00 -Toroidal_field_in_plasma_at_point_679____________________________________ b_plasma_toroidal_profile679___ 4.44278735381727863e+00 -Toroidal_field_in_plasma_at_point_680____________________________________ b_plasma_toroidal_profile680___ 4.44014441071566335e+00 -Toroidal_field_in_plasma_at_point_681____________________________________ b_plasma_toroidal_profile681___ 4.43750461023366771e+00 -Toroidal_field_in_plasma_at_point_682____________________________________ b_plasma_toroidal_profile682___ 4.43486794676947671e+00 -Toroidal_field_in_plasma_at_point_683____________________________________ b_plasma_toroidal_profile683___ 4.43223441473457846e+00 -Toroidal_field_in_plasma_at_point_684____________________________________ b_plasma_toroidal_profile684___ 4.42960400855372693e+00 -Toroidal_field_in_plasma_at_point_685____________________________________ b_plasma_toroidal_profile685___ 4.42697672266490461e+00 -Toroidal_field_in_plasma_at_point_686____________________________________ b_plasma_toroidal_profile686___ 4.42435255151928253e+00 -Toroidal_field_in_plasma_at_point_687____________________________________ b_plasma_toroidal_profile687___ 4.42173148958117856e+00 -Toroidal_field_in_plasma_at_point_688____________________________________ b_plasma_toroidal_profile688___ 4.41911353132802187e+00 -Toroidal_field_in_plasma_at_point_689____________________________________ b_plasma_toroidal_profile689___ 4.41649867125031381e+00 -Toroidal_field_in_plasma_at_point_690____________________________________ b_plasma_toroidal_profile690___ 4.41388690385158444e+00 -Toroidal_field_in_plasma_at_point_691____________________________________ b_plasma_toroidal_profile691___ 4.41127822364836231e+00 -Toroidal_field_in_plasma_at_point_692____________________________________ b_plasma_toroidal_profile692___ 4.40867262517012914e+00 -Toroidal_field_in_plasma_at_point_693____________________________________ b_plasma_toroidal_profile693___ 4.40607010295928525e+00 -Toroidal_field_in_plasma_at_point_694____________________________________ b_plasma_toroidal_profile694___ 4.40347065157110862e+00 -Toroidal_field_in_plasma_at_point_695____________________________________ b_plasma_toroidal_profile695___ 4.40087426557372030e+00 -Toroidal_field_in_plasma_at_point_696____________________________________ b_plasma_toroidal_profile696___ 4.39828093954804267e+00 -Toroidal_field_in_plasma_at_point_697____________________________________ b_plasma_toroidal_profile697___ 4.39569066808776743e+00 -Toroidal_field_in_plasma_at_point_698____________________________________ b_plasma_toroidal_profile698___ 4.39310344579931034e+00 -Toroidal_field_in_plasma_at_point_699____________________________________ b_plasma_toroidal_profile699___ 4.39051926730178188e+00 -Toroidal_field_in_plasma_at_point_700____________________________________ b_plasma_toroidal_profile700___ 4.38793812722694287e+00 -Toroidal_field_in_plasma_at_point_701____________________________________ b_plasma_toroidal_profile701___ 4.38536002021917071e+00 -Toroidal_field_in_plasma_at_point_702____________________________________ b_plasma_toroidal_profile702___ 4.38278494093542470e+00 -Toroidal_field_in_plasma_at_point_703____________________________________ b_plasma_toroidal_profile703___ 4.38021288404520526e+00 -Toroidal_field_in_plasma_at_point_704____________________________________ b_plasma_toroidal_profile704___ 4.37764384423051567e+00 -Toroidal_field_in_plasma_at_point_705____________________________________ b_plasma_toroidal_profile705___ 4.37507781618583191e+00 -Toroidal_field_in_plasma_at_point_706____________________________________ b_plasma_toroidal_profile706___ 4.37251479461806003e+00 -Toroidal_field_in_plasma_at_point_707____________________________________ b_plasma_toroidal_profile707___ 4.36995477424650414e+00 -Toroidal_field_in_plasma_at_point_708____________________________________ b_plasma_toroidal_profile708___ 4.36739774980282558e+00 -Toroidal_field_in_plasma_at_point_709____________________________________ b_plasma_toroidal_profile709___ 4.36484371603101096e+00 -Toroidal_field_in_plasma_at_point_710____________________________________ b_plasma_toroidal_profile710___ 4.36229266768733481e+00 -Toroidal_field_in_plasma_at_point_711____________________________________ b_plasma_toroidal_profile711___ 4.35974459954032056e+00 -Toroidal_field_in_plasma_at_point_712____________________________________ b_plasma_toroidal_profile712___ 4.35719950637071118e+00 -Toroidal_field_in_plasma_at_point_713____________________________________ b_plasma_toroidal_profile713___ 4.35465738297142924e+00 -Toroidal_field_in_plasma_at_point_714____________________________________ b_plasma_toroidal_profile714___ 4.35211822414753868e+00 -Toroidal_field_in_plasma_at_point_715____________________________________ b_plasma_toroidal_profile715___ 4.34958202471621735e+00 -Toroidal_field_in_plasma_at_point_716____________________________________ b_plasma_toroidal_profile716___ 4.34704877950671431e+00 -Toroidal_field_in_plasma_at_point_717____________________________________ b_plasma_toroidal_profile717___ 4.34451848336031965e+00 -Toroidal_field_in_plasma_at_point_718____________________________________ b_plasma_toroidal_profile718___ 4.34199113113032453e+00 -Toroidal_field_in_plasma_at_point_719____________________________________ b_plasma_toroidal_profile719___ 4.33946671768199366e+00 -Toroidal_field_in_plasma_at_point_720____________________________________ b_plasma_toroidal_profile720___ 4.33694523789252084e+00 -Toroidal_field_in_plasma_at_point_721____________________________________ b_plasma_toroidal_profile721___ 4.33442668665100417e+00 -Toroidal_field_in_plasma_at_point_722____________________________________ b_plasma_toroidal_profile722___ 4.33191105885840422e+00 -Toroidal_field_in_plasma_at_point_723____________________________________ b_plasma_toroidal_profile723___ 4.32939834942751123e+00 -Toroidal_field_in_plasma_at_point_724____________________________________ b_plasma_toroidal_profile724___ 4.32688855328291577e+00 -Toroidal_field_in_plasma_at_point_725____________________________________ b_plasma_toroidal_profile725___ 4.32438166536096702e+00 -Toroidal_field_in_plasma_at_point_726____________________________________ b_plasma_toroidal_profile726___ 4.32187768060974431e+00 -Toroidal_field_in_plasma_at_point_727____________________________________ b_plasma_toroidal_profile727___ 4.31937659398902074e+00 -Toroidal_field_in_plasma_at_point_728____________________________________ b_plasma_toroidal_profile728___ 4.31687840047023119e+00 -Toroidal_field_in_plasma_at_point_729____________________________________ b_plasma_toroidal_profile729___ 4.31438309503643325e+00 -Toroidal_field_in_plasma_at_point_730____________________________________ b_plasma_toroidal_profile730___ 4.31189067268228143e+00 -Toroidal_field_in_plasma_at_point_731____________________________________ b_plasma_toroidal_profile731___ 4.30940112841398903e+00 -Toroidal_field_in_plasma_at_point_732____________________________________ b_plasma_toroidal_profile732___ 4.30691445724929611e+00 -Toroidal_field_in_plasma_at_point_733____________________________________ b_plasma_toroidal_profile733___ 4.30443065421743309e+00 -Toroidal_field_in_plasma_at_point_734____________________________________ b_plasma_toroidal_profile734___ 4.30194971435909501e+00 -Toroidal_field_in_plasma_at_point_735____________________________________ b_plasma_toroidal_profile735___ 4.29947163272639887e+00 -Toroidal_field_in_plasma_at_point_736____________________________________ b_plasma_toroidal_profile736___ 4.29699640438286057e+00 -Toroidal_field_in_plasma_at_point_737____________________________________ b_plasma_toroidal_profile737___ 4.29452402440335312e+00 -Toroidal_field_in_plasma_at_point_738____________________________________ b_plasma_toroidal_profile738___ 4.29205448787408272e+00 -Toroidal_field_in_plasma_at_point_739____________________________________ b_plasma_toroidal_profile739___ 4.28958778989254519e+00 -Toroidal_field_in_plasma_at_point_740____________________________________ b_plasma_toroidal_profile740___ 4.28712392556750643e+00 -Toroidal_field_in_plasma_at_point_741____________________________________ b_plasma_toroidal_profile741___ 4.28466289001895984e+00 -Toroidal_field_in_plasma_at_point_742____________________________________ b_plasma_toroidal_profile742___ 4.28220467837810048e+00 -Toroidal_field_in_plasma_at_point_743____________________________________ b_plasma_toroidal_profile743___ 4.27974928578728786e+00 -Toroidal_field_in_plasma_at_point_744____________________________________ b_plasma_toroidal_profile744___ 4.27729670740001655e+00 -Toroidal_field_in_plasma_at_point_745____________________________________ b_plasma_toroidal_profile745___ 4.27484693838088692e+00 -Toroidal_field_in_plasma_at_point_746____________________________________ b_plasma_toroidal_profile746___ 4.27239997390556869e+00 -Toroidal_field_in_plasma_at_point_747____________________________________ b_plasma_toroidal_profile747___ 4.26995580916077166e+00 -Toroidal_field_in_plasma_at_point_748____________________________________ b_plasma_toroidal_profile748___ 4.26751443934421371e+00 -Toroidal_field_in_plasma_at_point_749____________________________________ b_plasma_toroidal_profile749___ 4.26507585966458791e+00 -Toroidal_field_in_plasma_at_point_750____________________________________ b_plasma_toroidal_profile750___ 4.26264006534153594e+00 -Toroidal_field_in_plasma_at_point_751____________________________________ b_plasma_toroidal_profile751___ 4.26020705160561075e+00 -Toroidal_field_in_plasma_at_point_752____________________________________ b_plasma_toroidal_profile752___ 4.25777681369824812e+00 -Toroidal_field_in_plasma_at_point_753____________________________________ b_plasma_toroidal_profile753___ 4.25534934687173827e+00 -Toroidal_field_in_plasma_at_point_754____________________________________ b_plasma_toroidal_profile754___ 4.25292464638919032e+00 -Toroidal_field_in_plasma_at_point_755____________________________________ b_plasma_toroidal_profile755___ 4.25050270752450388e+00 -Toroidal_field_in_plasma_at_point_756____________________________________ b_plasma_toroidal_profile756___ 4.24808352556233793e+00 -Toroidal_field_in_plasma_at_point_757____________________________________ b_plasma_toroidal_profile757___ 4.24566709579808155e+00 -Toroidal_field_in_plasma_at_point_758____________________________________ b_plasma_toroidal_profile758___ 4.24325341353782193e+00 -Toroidal_field_in_plasma_at_point_759____________________________________ b_plasma_toroidal_profile759___ 4.24084247409831150e+00 -Toroidal_field_in_plasma_at_point_760____________________________________ b_plasma_toroidal_profile760___ 4.23843427280694396e+00 -Toroidal_field_in_plasma_at_point_761____________________________________ b_plasma_toroidal_profile761___ 4.23602880500171963e+00 -Toroidal_field_in_plasma_at_point_762____________________________________ b_plasma_toroidal_profile762___ 4.23362606603121350e+00 -Toroidal_field_in_plasma_at_point_763____________________________________ b_plasma_toroidal_profile763___ 4.23122605125455209e+00 -Toroidal_field_in_plasma_at_point_764____________________________________ b_plasma_toroidal_profile764___ 4.22882875604137620e+00 -Toroidal_field_in_plasma_at_point_765____________________________________ b_plasma_toroidal_profile765___ 4.22643417577181690e+00 -Toroidal_field_in_plasma_at_point_766____________________________________ b_plasma_toroidal_profile766___ 4.22404230583646179e+00 -Toroidal_field_in_plasma_at_point_767____________________________________ b_plasma_toroidal_profile767___ 4.22165314163632832e+00 -Toroidal_field_in_plasma_at_point_768____________________________________ b_plasma_toroidal_profile768___ 4.21926667858283189e+00 -Toroidal_field_in_plasma_at_point_769____________________________________ b_plasma_toroidal_profile769___ 4.21688291209775645e+00 -Toroidal_field_in_plasma_at_point_770____________________________________ b_plasma_toroidal_profile770___ 4.21450183761322972e+00 -Toroidal_field_in_plasma_at_point_771____________________________________ b_plasma_toroidal_profile771___ 4.21212345057168758e+00 -Toroidal_field_in_plasma_at_point_772____________________________________ b_plasma_toroidal_profile772___ 4.20974774642584837e+00 -Toroidal_field_in_plasma_at_point_773____________________________________ b_plasma_toroidal_profile773___ 4.20737472063868623e+00 -Toroidal_field_in_plasma_at_point_774____________________________________ b_plasma_toroidal_profile774___ 4.20500436868339644e+00 -Toroidal_field_in_plasma_at_point_775____________________________________ b_plasma_toroidal_profile775___ 4.20263668604337237e+00 -Toroidal_field_in_plasma_at_point_776____________________________________ b_plasma_toroidal_profile776___ 4.20027166821217079e+00 -Toroidal_field_in_plasma_at_point_777____________________________________ b_plasma_toroidal_profile777___ 4.19790931069349149e+00 -Toroidal_field_in_plasma_at_point_778____________________________________ b_plasma_toroidal_profile778___ 4.19554960900114082e+00 -Toroidal_field_in_plasma_at_point_779____________________________________ b_plasma_toroidal_profile779___ 4.19319255865900509e+00 -Toroidal_field_in_plasma_at_point_780____________________________________ b_plasma_toroidal_profile780___ 4.19083815520102743e+00 -Toroidal_field_in_plasma_at_point_781____________________________________ b_plasma_toroidal_profile781___ 4.18848639417117230e+00 -Toroidal_field_in_plasma_at_point_782____________________________________ b_plasma_toroidal_profile782___ 4.18613727112340417e+00 -Toroidal_field_in_plasma_at_point_783____________________________________ b_plasma_toroidal_profile783___ 4.18379078162165285e+00 -Toroidal_field_in_plasma_at_point_784____________________________________ b_plasma_toroidal_profile784___ 4.18144692123979222e+00 -Toroidal_field_in_plasma_at_point_785____________________________________ b_plasma_toroidal_profile785___ 4.17910568556160644e+00 -Toroidal_field_in_plasma_at_point_786____________________________________ b_plasma_toroidal_profile786___ 4.17676707018076598e+00 -Toroidal_field_in_plasma_at_point_787____________________________________ b_plasma_toroidal_profile787___ 4.17443107070079922e+00 -Toroidal_field_in_plasma_at_point_788____________________________________ b_plasma_toroidal_profile788___ 4.17209768273506398e+00 -Toroidal_field_in_plasma_at_point_789____________________________________ b_plasma_toroidal_profile789___ 4.16976690190672006e+00 -Toroidal_field_in_plasma_at_point_790____________________________________ b_plasma_toroidal_profile790___ 4.16743872384870429e+00 -Toroidal_field_in_plasma_at_point_791____________________________________ b_plasma_toroidal_profile791___ 4.16511314420369949e+00 -Toroidal_field_in_plasma_at_point_792____________________________________ b_plasma_toroidal_profile792___ 4.16279015862410962e+00 -Toroidal_field_in_plasma_at_point_793____________________________________ b_plasma_toroidal_profile793___ 4.16046976277203395e+00 -Toroidal_field_in_plasma_at_point_794____________________________________ b_plasma_toroidal_profile794___ 4.15815195231923607e+00 -Toroidal_field_in_plasma_at_point_795____________________________________ b_plasma_toroidal_profile795___ 4.15583672294712070e+00 -Toroidal_field_in_plasma_at_point_796____________________________________ b_plasma_toroidal_profile796___ 4.15352407034670446e+00 -Toroidal_field_in_plasma_at_point_797____________________________________ b_plasma_toroidal_profile797___ 4.15121399021859272e+00 -Toroidal_field_in_plasma_at_point_798____________________________________ b_plasma_toroidal_profile798___ 4.14890647827294590e+00 -Toroidal_field_in_plasma_at_point_799____________________________________ b_plasma_toroidal_profile799___ 4.14660153022946076e+00 -Toroidal_field_in_plasma_at_point_800____________________________________ b_plasma_toroidal_profile800___ 4.14429914181734027e+00 -Toroidal_field_in_plasma_at_point_801____________________________________ b_plasma_toroidal_profile801___ 4.14199930877526601e+00 -Toroidal_field_in_plasma_at_point_802____________________________________ b_plasma_toroidal_profile802___ 4.13970202685137512e+00 -Toroidal_field_in_plasma_at_point_803____________________________________ b_plasma_toroidal_profile803___ 4.13740729180323097e+00 -Toroidal_field_in_plasma_at_point_804____________________________________ b_plasma_toroidal_profile804___ 4.13511509939780009e+00 -Toroidal_field_in_plasma_at_point_805____________________________________ b_plasma_toroidal_profile805___ 4.13282544541142194e+00 -Toroidal_field_in_plasma_at_point_806____________________________________ b_plasma_toroidal_profile806___ 4.13053832562978851e+00 -Toroidal_field_in_plasma_at_point_807____________________________________ b_plasma_toroidal_profile807___ 4.12825373584791411e+00 -Toroidal_field_in_plasma_at_point_808____________________________________ b_plasma_toroidal_profile808___ 4.12597167187010960e+00 -Toroidal_field_in_plasma_at_point_809____________________________________ b_plasma_toroidal_profile809___ 4.12369212950996111e+00 -Toroidal_field_in_plasma_at_point_810____________________________________ b_plasma_toroidal_profile810___ 4.12141510459029803e+00 -Toroidal_field_in_plasma_at_point_811____________________________________ b_plasma_toroidal_profile811___ 4.11914059294317259e+00 -Toroidal_field_in_plasma_at_point_812____________________________________ b_plasma_toroidal_profile812___ 4.11686859040983411e+00 -Toroidal_field_in_plasma_at_point_813____________________________________ b_plasma_toroidal_profile813___ 4.11459909284069969e+00 -Toroidal_field_in_plasma_at_point_814____________________________________ b_plasma_toroidal_profile814___ 4.11233209609533290e+00 -Toroidal_field_in_plasma_at_point_815____________________________________ b_plasma_toroidal_profile815___ 4.11006759604241623e+00 -Toroidal_field_in_plasma_at_point_816____________________________________ b_plasma_toroidal_profile816___ 4.10780558855972888e+00 -Toroidal_field_in_plasma_at_point_817____________________________________ b_plasma_toroidal_profile817___ 4.10554606953411927e+00 -Toroidal_field_in_plasma_at_point_818____________________________________ b_plasma_toroidal_profile818___ 4.10328903486147833e+00 -Toroidal_field_in_plasma_at_point_819____________________________________ b_plasma_toroidal_profile819___ 4.10103448044672003e+00 -Toroidal_field_in_plasma_at_point_820____________________________________ b_plasma_toroidal_profile820___ 4.09878240220375023e+00 -Toroidal_field_in_plasma_at_point_821____________________________________ b_plasma_toroidal_profile821___ 4.09653279605544984e+00 -Toroidal_field_in_plasma_at_point_822____________________________________ b_plasma_toroidal_profile822___ 4.09428565793364196e+00 -Toroidal_field_in_plasma_at_point_823____________________________________ b_plasma_toroidal_profile823___ 4.09204098377907233e+00 -Toroidal_field_in_plasma_at_point_824____________________________________ b_plasma_toroidal_profile824___ 4.08979876954138533e+00 -Toroidal_field_in_plasma_at_point_825____________________________________ b_plasma_toroidal_profile825___ 4.08755901117909559e+00 -Toroidal_field_in_plasma_at_point_826____________________________________ b_plasma_toroidal_profile826___ 4.08532170465956757e+00 -Toroidal_field_in_plasma_at_point_827____________________________________ b_plasma_toroidal_profile827___ 4.08308684595898708e+00 -Toroidal_field_in_plasma_at_point_828____________________________________ b_plasma_toroidal_profile828___ 4.08085443106234447e+00 -Toroidal_field_in_plasma_at_point_829____________________________________ b_plasma_toroidal_profile829___ 4.07862445596340439e+00 -Toroidal_field_in_plasma_at_point_830____________________________________ b_plasma_toroidal_profile830___ 4.07639691666468007e+00 -Toroidal_field_in_plasma_at_point_831____________________________________ b_plasma_toroidal_profile831___ 4.07417180917741728e+00 -Toroidal_field_in_plasma_at_point_832____________________________________ b_plasma_toroidal_profile832___ 4.07194912952156507e+00 -Toroidal_field_in_plasma_at_point_833____________________________________ b_plasma_toroidal_profile833___ 4.06972887372575176e+00 -Toroidal_field_in_plasma_at_point_834____________________________________ b_plasma_toroidal_profile834___ 4.06751103782726364e+00 -Toroidal_field_in_plasma_at_point_835____________________________________ b_plasma_toroidal_profile835___ 4.06529561787201921e+00 -Toroidal_field_in_plasma_at_point_836____________________________________ b_plasma_toroidal_profile836___ 4.06308260991455050e+00 -Toroidal_field_in_plasma_at_point_837____________________________________ b_plasma_toroidal_profile837___ 4.06087201001797027e+00 -Toroidal_field_in_plasma_at_point_838____________________________________ b_plasma_toroidal_profile838___ 4.05866381425395861e+00 -Toroidal_field_in_plasma_at_point_839____________________________________ b_plasma_toroidal_profile839___ 4.05645801870273370e+00 -Toroidal_field_in_plasma_at_point_840____________________________________ b_plasma_toroidal_profile840___ 4.05425461945303045e+00 -Toroidal_field_in_plasma_at_point_841____________________________________ b_plasma_toroidal_profile841___ 4.05205361260207919e+00 -Toroidal_field_in_plasma_at_point_842____________________________________ b_plasma_toroidal_profile842___ 4.04985499425557727e+00 -Toroidal_field_in_plasma_at_point_843____________________________________ b_plasma_toroidal_profile843___ 4.04765876052767304e+00 -Toroidal_field_in_plasma_at_point_844____________________________________ b_plasma_toroidal_profile844___ 4.04546490754093657e+00 -Toroidal_field_in_plasma_at_point_845____________________________________ b_plasma_toroidal_profile845___ 4.04327343142634277e+00 -Toroidal_field_in_plasma_at_point_846____________________________________ b_plasma_toroidal_profile846___ 4.04108432832324294e+00 -Toroidal_field_in_plasma_at_point_847____________________________________ b_plasma_toroidal_profile847___ 4.03889759437934437e+00 -Toroidal_field_in_plasma_at_point_848____________________________________ b_plasma_toroidal_profile848___ 4.03671322575069258e+00 -Toroidal_field_in_plasma_at_point_849____________________________________ b_plasma_toroidal_profile849___ 4.03453121860163755e+00 -Toroidal_field_in_plasma_at_point_850____________________________________ b_plasma_toroidal_profile850___ 4.03235156910482395e+00 -Toroidal_field_in_plasma_at_point_851____________________________________ b_plasma_toroidal_profile851___ 4.03017427344116008e+00 -Toroidal_field_in_plasma_at_point_852____________________________________ b_plasma_toroidal_profile852___ 4.02799932779980008e+00 -Toroidal_field_in_plasma_at_point_853____________________________________ b_plasma_toroidal_profile853___ 4.02582672837811639e+00 -Toroidal_field_in_plasma_at_point_854____________________________________ b_plasma_toroidal_profile854___ 4.02365647138168647e+00 -Toroidal_field_in_plasma_at_point_855____________________________________ b_plasma_toroidal_profile855___ 4.02148855302426167e+00 -Toroidal_field_in_plasma_at_point_856____________________________________ b_plasma_toroidal_profile856___ 4.01932296952774859e+00 -Toroidal_field_in_plasma_at_point_857____________________________________ b_plasma_toroidal_profile857___ 4.01715971712218956e+00 -Toroidal_field_in_plasma_at_point_858____________________________________ b_plasma_toroidal_profile858___ 4.01499879204573951e+00 -Toroidal_field_in_plasma_at_point_859____________________________________ b_plasma_toroidal_profile859___ 4.01284019054463936e+00 -Toroidal_field_in_plasma_at_point_860____________________________________ b_plasma_toroidal_profile860___ 4.01068390887320181e+00 -Toroidal_field_in_plasma_at_point_861____________________________________ b_plasma_toroidal_profile861___ 4.00852994329378554e+00 -Toroidal_field_in_plasma_at_point_862____________________________________ b_plasma_toroidal_profile862___ 4.00637829007677304e+00 -Toroidal_field_in_plasma_at_point_863____________________________________ b_plasma_toroidal_profile863___ 4.00422894550055197e+00 -Toroidal_field_in_plasma_at_point_864____________________________________ b_plasma_toroidal_profile864___ 4.00208190585148937e+00 -Toroidal_field_in_plasma_at_point_865____________________________________ b_plasma_toroidal_profile865___ 3.99993716742391703e+00 -Toroidal_field_in_plasma_at_point_866____________________________________ b_plasma_toroidal_profile866___ 3.99779472652010126e+00 -Toroidal_field_in_plasma_at_point_867____________________________________ b_plasma_toroidal_profile867___ 3.99565457945022962e+00 -Toroidal_field_in_plasma_at_point_868____________________________________ b_plasma_toroidal_profile868___ 3.99351672253238599e+00 -Toroidal_field_in_plasma_at_point_869____________________________________ b_plasma_toroidal_profile869___ 3.99138115209252931e+00 -Toroidal_field_in_plasma_at_point_870____________________________________ b_plasma_toroidal_profile870___ 3.98924786446447310e+00 -Toroidal_field_in_plasma_at_point_871____________________________________ b_plasma_toroidal_profile871___ 3.98711685598986598e+00 -Toroidal_field_in_plasma_at_point_872____________________________________ b_plasma_toroidal_profile872___ 3.98498812301816807e+00 -Toroidal_field_in_plasma_at_point_873____________________________________ b_plasma_toroidal_profile873___ 3.98286166190663193e+00 -Toroidal_field_in_plasma_at_point_874____________________________________ b_plasma_toroidal_profile874___ 3.98073746902028169e+00 -Toroidal_field_in_plasma_at_point_875____________________________________ b_plasma_toroidal_profile875___ 3.97861554073189172e+00 -Toroidal_field_in_plasma_at_point_876____________________________________ b_plasma_toroidal_profile876___ 3.97649587342196531e+00 -Toroidal_field_in_plasma_at_point_877____________________________________ b_plasma_toroidal_profile877___ 3.97437846347871648e+00 -Toroidal_field_in_plasma_at_point_878____________________________________ b_plasma_toroidal_profile878___ 3.97226330729804644e+00 -Toroidal_field_in_plasma_at_point_879____________________________________ b_plasma_toroidal_profile879___ 3.97015040128352625e+00 -Toroidal_field_in_plasma_at_point_880____________________________________ b_plasma_toroidal_profile880___ 3.96803974184637376e+00 -Toroidal_field_in_plasma_at_point_881____________________________________ b_plasma_toroidal_profile881___ 3.96593132540543492e+00 -Toroidal_field_in_plasma_at_point_882____________________________________ b_plasma_toroidal_profile882___ 3.96382514838716338e+00 -Toroidal_field_in_plasma_at_point_883____________________________________ b_plasma_toroidal_profile883___ 3.96172120722559873e+00 -Toroidal_field_in_plasma_at_point_884____________________________________ b_plasma_toroidal_profile884___ 3.95961949836234917e+00 -Toroidal_field_in_plasma_at_point_885____________________________________ b_plasma_toroidal_profile885___ 3.95752001824656885e+00 -Toroidal_field_in_plasma_at_point_886____________________________________ b_plasma_toroidal_profile886___ 3.95542276333493836e+00 -Toroidal_field_in_plasma_at_point_887____________________________________ b_plasma_toroidal_profile887___ 3.95332773009164695e+00 -Toroidal_field_in_plasma_at_point_888____________________________________ b_plasma_toroidal_profile888___ 3.95123491498836943e+00 -Toroidal_field_in_plasma_at_point_889____________________________________ b_plasma_toroidal_profile889___ 3.94914431450424841e+00 -Toroidal_field_in_plasma_at_point_890____________________________________ b_plasma_toroidal_profile890___ 3.94705592512587478e+00 -Toroidal_field_in_plasma_at_point_891____________________________________ b_plasma_toroidal_profile891___ 3.94496974334726680e+00 -Toroidal_field_in_plasma_at_point_892____________________________________ b_plasma_toroidal_profile892___ 3.94288576566985105e+00 -Toroidal_field_in_plasma_at_point_893____________________________________ b_plasma_toroidal_profile893___ 3.94080398860244374e+00 -Toroidal_field_in_plasma_at_point_894____________________________________ b_plasma_toroidal_profile894___ 3.93872440866122897e+00 -Toroidal_field_in_plasma_at_point_895____________________________________ b_plasma_toroidal_profile895___ 3.93664702236974096e+00 -Toroidal_field_in_plasma_at_point_896____________________________________ b_plasma_toroidal_profile896___ 3.93457182625884494e+00 -Toroidal_field_in_plasma_at_point_897____________________________________ b_plasma_toroidal_profile897___ 3.93249881686671721e+00 -Toroidal_field_in_plasma_at_point_898____________________________________ b_plasma_toroidal_profile898___ 3.93042799073882554e+00 -Toroidal_field_in_plasma_at_point_899____________________________________ b_plasma_toroidal_profile899___ 3.92835934442791013e+00 -Toroidal_field_in_plasma_at_point_900____________________________________ b_plasma_toroidal_profile900___ 3.92629287449396580e+00 -Toroidal_field_in_plasma_at_point_901____________________________________ b_plasma_toroidal_profile901___ 3.92422857750422116e+00 -Toroidal_field_in_plasma_at_point_902____________________________________ b_plasma_toroidal_profile902___ 3.92216645003312037e+00 -Toroidal_field_in_plasma_at_point_903____________________________________ b_plasma_toroidal_profile903___ 3.92010648866230449e+00 -Toroidal_field_in_plasma_at_point_904____________________________________ b_plasma_toroidal_profile904___ 3.91804868998059286e+00 -Toroidal_field_in_plasma_at_point_905____________________________________ b_plasma_toroidal_profile905___ 3.91599305058396041e+00 -Toroidal_field_in_plasma_at_point_906____________________________________ b_plasma_toroidal_profile906___ 3.91393956707552615e+00 -Toroidal_field_in_plasma_at_point_907____________________________________ b_plasma_toroidal_profile907___ 3.91188823606552916e+00 -Toroidal_field_in_plasma_at_point_908____________________________________ b_plasma_toroidal_profile908___ 3.90983905417130906e+00 -Toroidal_field_in_plasma_at_point_909____________________________________ b_plasma_toroidal_profile909___ 3.90779201801729270e+00 -Toroidal_field_in_plasma_at_point_910____________________________________ b_plasma_toroidal_profile910___ 3.90574712423497061e+00 -Toroidal_field_in_plasma_at_point_911____________________________________ b_plasma_toroidal_profile911___ 3.90370436946288102e+00 -Toroidal_field_in_plasma_at_point_912____________________________________ b_plasma_toroidal_profile912___ 3.90166375034659074e+00 -Toroidal_field_in_plasma_at_point_913____________________________________ b_plasma_toroidal_profile913___ 3.89962526353867700e+00 -Toroidal_field_in_plasma_at_point_914____________________________________ b_plasma_toroidal_profile914___ 3.89758890569870964e+00 -Toroidal_field_in_plasma_at_point_915____________________________________ b_plasma_toroidal_profile915___ 3.89555467349322981e+00 -Toroidal_field_in_plasma_at_point_916____________________________________ b_plasma_toroidal_profile916___ 3.89352256359573801e+00 -Toroidal_field_in_plasma_at_point_917____________________________________ b_plasma_toroidal_profile917___ 3.89149257268666826e+00 -Toroidal_field_in_plasma_at_point_918____________________________________ b_plasma_toroidal_profile918___ 3.88946469745337620e+00 -Toroidal_field_in_plasma_at_point_919____________________________________ b_plasma_toroidal_profile919___ 3.88743893459011947e+00 -Toroidal_field_in_plasma_at_point_920____________________________________ b_plasma_toroidal_profile920___ 3.88541528079803689e+00 -Toroidal_field_in_plasma_at_point_921____________________________________ b_plasma_toroidal_profile921___ 3.88339373278513467e+00 -Toroidal_field_in_plasma_at_point_922____________________________________ b_plasma_toroidal_profile922___ 3.88137428726626510e+00 -Toroidal_field_in_plasma_at_point_923____________________________________ b_plasma_toroidal_profile923___ 3.87935694096311234e+00 -Toroidal_field_in_plasma_at_point_924____________________________________ b_plasma_toroidal_profile924___ 3.87734169060417067e+00 -Toroidal_field_in_plasma_at_point_925____________________________________ b_plasma_toroidal_profile925___ 3.87532853292472934e+00 -Toroidal_field_in_plasma_at_point_926____________________________________ b_plasma_toroidal_profile926___ 3.87331746466685489e+00 -Toroidal_field_in_plasma_at_point_927____________________________________ b_plasma_toroidal_profile927___ 3.87130848257937199e+00 -Toroidal_field_in_plasma_at_point_928____________________________________ b_plasma_toroidal_profile928___ 3.86930158341784836e+00 -Toroidal_field_in_plasma_at_point_929____________________________________ b_plasma_toroidal_profile929___ 3.86729676394457433e+00 -Toroidal_field_in_plasma_at_point_930____________________________________ b_plasma_toroidal_profile930___ 3.86529402092854912e+00 -Toroidal_field_in_plasma_at_point_931____________________________________ b_plasma_toroidal_profile931___ 3.86329335114545991e+00 -Toroidal_field_in_plasma_at_point_932____________________________________ b_plasma_toroidal_profile932___ 3.86129475137766587e+00 -Toroidal_field_in_plasma_at_point_933____________________________________ b_plasma_toroidal_profile933___ 3.85929821841418264e+00 -Toroidal_field_in_plasma_at_point_934____________________________________ b_plasma_toroidal_profile934___ 3.85730374905066098e+00 -Toroidal_field_in_plasma_at_point_935____________________________________ b_plasma_toroidal_profile935___ 3.85531134008937437e+00 -Toroidal_field_in_plasma_at_point_936____________________________________ b_plasma_toroidal_profile936___ 3.85332098833919945e+00 -Toroidal_field_in_plasma_at_point_937____________________________________ b_plasma_toroidal_profile937___ 3.85133269061559824e+00 -Toroidal_field_in_plasma_at_point_938____________________________________ b_plasma_toroidal_profile938___ 3.84934644374060309e+00 -Toroidal_field_in_plasma_at_point_939____________________________________ b_plasma_toroidal_profile939___ 3.84736224454279840e+00 -Toroidal_field_in_plasma_at_point_940____________________________________ b_plasma_toroidal_profile940___ 3.84538008985730473e+00 -Toroidal_field_in_plasma_at_point_941____________________________________ b_plasma_toroidal_profile941___ 3.84339997652576137e+00 -Toroidal_field_in_plasma_at_point_942____________________________________ b_plasma_toroidal_profile942___ 3.84142190139630868e+00 -Toroidal_field_in_plasma_at_point_943____________________________________ b_plasma_toroidal_profile943___ 3.83944586132357468e+00 -Toroidal_field_in_plasma_at_point_944____________________________________ b_plasma_toroidal_profile944___ 3.83747185316865247e+00 -Toroidal_field_in_plasma_at_point_945____________________________________ b_plasma_toroidal_profile945___ 3.83549987379909041e+00 -Toroidal_field_in_plasma_at_point_946____________________________________ b_plasma_toroidal_profile946___ 3.83352992008886995e+00 -Toroidal_field_in_plasma_at_point_947____________________________________ b_plasma_toroidal_profile947___ 3.83156198891839272e+00 -Toroidal_field_in_plasma_at_point_948____________________________________ b_plasma_toroidal_profile948___ 3.82959607717446326e+00 -Toroidal_field_in_plasma_at_point_949____________________________________ b_plasma_toroidal_profile949___ 3.82763218175027120e+00 -Toroidal_field_in_plasma_at_point_950____________________________________ b_plasma_toroidal_profile950___ 3.82567029954537574e+00 -Toroidal_field_in_plasma_at_point_951____________________________________ b_plasma_toroidal_profile951___ 3.82371042746569056e+00 -Toroidal_field_in_plasma_at_point_952____________________________________ b_plasma_toroidal_profile952___ 3.82175256242346562e+00 -Toroidal_field_in_plasma_at_point_953____________________________________ b_plasma_toroidal_profile953___ 3.81979670133727156e+00 -Toroidal_field_in_plasma_at_point_954____________________________________ b_plasma_toroidal_profile954___ 3.81784284113198380e+00 -Toroidal_field_in_plasma_at_point_955____________________________________ b_plasma_toroidal_profile955___ 3.81589097873876781e+00 -Toroidal_field_in_plasma_at_point_956____________________________________ b_plasma_toroidal_profile956___ 3.81394111109505829e+00 -Toroidal_field_in_plasma_at_point_957____________________________________ b_plasma_toroidal_profile957___ 3.81199323514455024e+00 -Toroidal_field_in_plasma_at_point_958____________________________________ b_plasma_toroidal_profile958___ 3.81004734783717636e+00 -Toroidal_field_in_plasma_at_point_959____________________________________ b_plasma_toroidal_profile959___ 3.80810344612909635e+00 -Toroidal_field_in_plasma_at_point_960____________________________________ b_plasma_toroidal_profile960___ 3.80616152698267651e+00 -Toroidal_field_in_plasma_at_point_961____________________________________ b_plasma_toroidal_profile961___ 3.80422158736647731e+00 -Toroidal_field_in_plasma_at_point_962____________________________________ b_plasma_toroidal_profile962___ 3.80228362425523647e+00 -Toroidal_field_in_plasma_at_point_963____________________________________ b_plasma_toroidal_profile963___ 3.80034763462985170e+00 -Toroidal_field_in_plasma_at_point_964____________________________________ b_plasma_toroidal_profile964___ 3.79841361547736822e+00 -Toroidal_field_in_plasma_at_point_965____________________________________ b_plasma_toroidal_profile965___ 3.79648156379096102e+00 -Toroidal_field_in_plasma_at_point_966____________________________________ b_plasma_toroidal_profile966___ 3.79455147656991842e+00 -Toroidal_field_in_plasma_at_point_967____________________________________ b_plasma_toroidal_profile967___ 3.79262335081962876e+00 -Toroidal_field_in_plasma_at_point_968____________________________________ b_plasma_toroidal_profile968___ 3.79069718355156349e+00 -Toroidal_field_in_plasma_at_point_969____________________________________ b_plasma_toroidal_profile969___ 3.78877297178326344e+00 -Toroidal_field_in_plasma_at_point_970____________________________________ b_plasma_toroidal_profile970___ 3.78685071253831973e+00 -Toroidal_field_in_plasma_at_point_971____________________________________ b_plasma_toroidal_profile971___ 3.78493040284636306e+00 -Toroidal_field_in_plasma_at_point_972____________________________________ b_plasma_toroidal_profile972___ 3.78301203974304556e+00 -Toroidal_field_in_plasma_at_point_973____________________________________ b_plasma_toroidal_profile973___ 3.78109562027002477e+00 -Toroidal_field_in_plasma_at_point_974____________________________________ b_plasma_toroidal_profile974___ 3.77918114147495121e+00 -Toroidal_field_in_plasma_at_point_975____________________________________ b_plasma_toroidal_profile975___ 3.77726860041145240e+00 -Toroidal_field_in_plasma_at_point_976____________________________________ b_plasma_toroidal_profile976___ 3.77535799413911466e+00 -Toroidal_field_in_plasma_at_point_977____________________________________ b_plasma_toroidal_profile977___ 3.77344931972347286e+00 -Toroidal_field_in_plasma_at_point_978____________________________________ b_plasma_toroidal_profile978___ 3.77154257423599226e+00 -Toroidal_field_in_plasma_at_point_979____________________________________ b_plasma_toroidal_profile979___ 3.76963775475405471e+00 -Toroidal_field_in_plasma_at_point_980____________________________________ b_plasma_toroidal_profile980___ 3.76773485836094313e+00 -Toroidal_field_in_plasma_at_point_981____________________________________ b_plasma_toroidal_profile981___ 3.76583388214582637e+00 -Toroidal_field_in_plasma_at_point_982____________________________________ b_plasma_toroidal_profile982___ 3.76393482320374639e+00 -Toroidal_field_in_plasma_at_point_983____________________________________ b_plasma_toroidal_profile983___ 3.76203767863559912e+00 -Toroidal_field_in_plasma_at_point_984____________________________________ b_plasma_toroidal_profile984___ 3.76014244554812560e+00 -Toroidal_field_in_plasma_at_point_985____________________________________ b_plasma_toroidal_profile985___ 3.75824912105389197e+00 -Toroidal_field_in_plasma_at_point_986____________________________________ b_plasma_toroidal_profile986___ 3.75635770227127797e+00 -Toroidal_field_in_plasma_at_point_987____________________________________ b_plasma_toroidal_profile987___ 3.75446818632446133e+00 -Toroidal_field_in_plasma_at_point_988____________________________________ b_plasma_toroidal_profile988___ 3.75258057034340320e+00 -Toroidal_field_in_plasma_at_point_989____________________________________ b_plasma_toroidal_profile989___ 3.75069485146383341e+00 -Toroidal_field_in_plasma_at_point_990____________________________________ b_plasma_toroidal_profile990___ 3.74881102682723677e+00 -Toroidal_field_in_plasma_at_point_991____________________________________ b_plasma_toroidal_profile991___ 3.74692909358083748e+00 -Toroidal_field_in_plasma_at_point_992____________________________________ b_plasma_toroidal_profile992___ 3.74504904887758583e+00 -Toroidal_field_in_plasma_at_point_993____________________________________ b_plasma_toroidal_profile993___ 3.74317088987614266e+00 -Toroidal_field_in_plasma_at_point_994____________________________________ b_plasma_toroidal_profile994___ 3.74129461374086691e+00 -Toroidal_field_in_plasma_at_point_995____________________________________ b_plasma_toroidal_profile995___ 3.73942021764179833e+00 -Toroidal_field_in_plasma_at_point_996____________________________________ b_plasma_toroidal_profile996___ 3.73754769875464632e+00 -Toroidal_field_in_plasma_at_point_997____________________________________ b_plasma_toroidal_profile997___ 3.73567705426077534e+00 -Toroidal_field_in_plasma_at_point_998____________________________________ b_plasma_toroidal_profile998___ 3.73380828134718801e+00 -Toroidal_field_in_plasma_at_point_999____________________________________ b_plasma_toroidal_profile999___ 3.73194137720651398e+00 -Toroidal_field_in_plasma_at_point_1000___________________________________ b_plasma_toroidal_profile1000__ 3.73007633903699576e+00 -Toroidal_field_in_plasma_at_point_1001___________________________________ b_plasma_toroidal_profile1001__ 3.72821316404247227e+00 -Plasma_surface_averaged_poloidal_field_(⟨Bₚₒₗ(a)⟩)_(T)___________________ (b_plasma_surface_poloidal_average)_ 8.58456110649400528e-01 OP -Total_field_(Bₜₒₜ)_(T)___________________________________________________ (b_plasma_total)_______________ 5.04453165307450035e+00 OP +Vertical_field_at_plasma_(Bᵥ)_(T)________________________________________ (b_plasma_vertical_required)___ -7.16016571731281193e-01 OP +Vacuum_toroidal_field_at_R₀_(Bᴛ(R₀))_(T)_________________________________ (b_plasma_toroidal_on_axis)____ 4.98707032262356886e+00 +Toroidal_field_at_plasma_inboard_(Bᴛ(R₀-a))_(T)__________________________ (b_plasma_inboard_toroidal)____ 7.48060548393535196e+00 +Toroidal_field_at_plasma_outboard_(Bᴛ(R₀+a))_(T)_________________________ (b_plasma_outboard_toroidal)___ 3.74030274196767687e+00 +Toroidal_field_in_plasma_at_point_0______________________________________ b_plasma_toroidal_profile0_____ 7.48060548393535196e+00 +Toroidal_field_in_plasma_at_point_1______________________________________ b_plasma_toroidal_profile1_____ 7.47313980979968839e+00 +Toroidal_field_in_plasma_at_point_2______________________________________ b_plasma_toroidal_profile2_____ 7.46568902235223142e+00 +Toroidal_field_in_plasma_at_point_3______________________________________ b_plasma_toroidal_profile3_____ 7.45825307711084484e+00 +Toroidal_field_in_plasma_at_point_4______________________________________ b_plasma_toroidal_profile4_____ 7.45083192977043574e+00 +Toroidal_field_in_plasma_at_point_5______________________________________ b_plasma_toroidal_profile5_____ 7.44342553620207603e+00 +Toroidal_field_in_plasma_at_point_6______________________________________ b_plasma_toroidal_profile6_____ 7.43603385245212234e+00 +Toroidal_field_in_plasma_at_point_7______________________________________ b_plasma_toroidal_profile7_____ 7.42865683474135619e+00 +Toroidal_field_in_plasma_at_point_8______________________________________ b_plasma_toroidal_profile8_____ 7.42129443946411005e+00 +Toroidal_field_in_plasma_at_point_9______________________________________ b_plasma_toroidal_profile9_____ 7.41394662318741293e+00 +Toroidal_field_in_plasma_at_point_10_____________________________________ b_plasma_toroidal_profile10____ 7.40661334265013593e+00 +Toroidal_field_in_plasma_at_point_11_____________________________________ b_plasma_toroidal_profile11____ 7.39929455476214226e+00 +Toroidal_field_in_plasma_at_point_12_____________________________________ b_plasma_toroidal_profile12____ 7.39199021660344258e+00 +Toroidal_field_in_plasma_at_point_13_____________________________________ b_plasma_toroidal_profile13____ 7.38470028542336099e+00 +Toroidal_field_in_plasma_at_point_14_____________________________________ b_plasma_toroidal_profile14____ 7.37742471863969218e+00 +Toroidal_field_in_plasma_at_point_15_____________________________________ b_plasma_toroidal_profile15____ 7.37016347383788162e+00 +Toroidal_field_in_plasma_at_point_16_____________________________________ b_plasma_toroidal_profile16____ 7.36291650877019332e+00 +Toroidal_field_in_plasma_at_point_17_____________________________________ b_plasma_toroidal_profile17____ 7.35568378135489898e+00 +Toroidal_field_in_plasma_at_point_18_____________________________________ b_plasma_toroidal_profile18____ 7.34846524967545367e+00 +Toroidal_field_in_plasma_at_point_19_____________________________________ b_plasma_toroidal_profile19____ 7.34126087197969390e+00 +Toroidal_field_in_plasma_at_point_20_____________________________________ b_plasma_toroidal_profile20____ 7.33407060667902755e+00 +Toroidal_field_in_plasma_at_point_21_____________________________________ b_plasma_toroidal_profile21____ 7.32689441234763983e+00 +Toroidal_field_in_plasma_at_point_22_____________________________________ b_plasma_toroidal_profile22____ 7.31973224772168862e+00 +Toroidal_field_in_plasma_at_point_23_____________________________________ b_plasma_toroidal_profile23____ 7.31258407169852287e+00 +Toroidal_field_in_plasma_at_point_24_____________________________________ b_plasma_toroidal_profile24____ 7.30544984333589031e+00 +Toroidal_field_in_plasma_at_point_25_____________________________________ b_plasma_toroidal_profile25____ 7.29832952185115769e+00 +Toroidal_field_in_plasma_at_point_26_____________________________________ b_plasma_toroidal_profile26____ 7.29122306662053354e+00 +Toroidal_field_in_plasma_at_point_27_____________________________________ b_plasma_toroidal_profile27____ 7.28413043717829467e+00 +Toroidal_field_in_plasma_at_point_28_____________________________________ b_plasma_toroidal_profile28____ 7.27705159321602224e+00 +Toroidal_field_in_plasma_at_point_29_____________________________________ b_plasma_toroidal_profile29____ 7.26998649458183266e+00 +Toroidal_field_in_plasma_at_point_30_____________________________________ b_plasma_toroidal_profile30____ 7.26293510127961905e+00 +Toroidal_field_in_plasma_at_point_31_____________________________________ b_plasma_toroidal_profile31____ 7.25589737346830166e+00 +Toroidal_field_in_plasma_at_point_32_____________________________________ b_plasma_toroidal_profile32____ 7.24887327146107197e+00 +Toroidal_field_in_plasma_at_point_33_____________________________________ b_plasma_toroidal_profile33____ 7.24186275572464933e+00 +Toroidal_field_in_plasma_at_point_34_____________________________________ b_plasma_toroidal_profile34____ 7.23486578687853932e+00 +Toroidal_field_in_plasma_at_point_35_____________________________________ b_plasma_toroidal_profile35____ 7.22788232569429301e+00 +Toroidal_field_in_plasma_at_point_36_____________________________________ b_plasma_toroidal_profile36____ 7.22091233309478131e+00 +Toroidal_field_in_plasma_at_point_37_____________________________________ b_plasma_toroidal_profile37____ 7.21395577015345690e+00 +Toroidal_field_in_plasma_at_point_38_____________________________________ b_plasma_toroidal_profile38____ 7.20701259809363570e+00 +Toroidal_field_in_plasma_at_point_39_____________________________________ b_plasma_toroidal_profile39____ 7.20008277828777654e+00 +Toroidal_field_in_plasma_at_point_40_____________________________________ b_plasma_toroidal_profile40____ 7.19316627225675997e+00 +Toroidal_field_in_plasma_at_point_41_____________________________________ b_plasma_toroidal_profile41____ 7.18626304166918217e+00 +Toroidal_field_in_plasma_at_point_42_____________________________________ b_plasma_toroidal_profile42____ 7.17937304834063994e+00 +Toroidal_field_in_plasma_at_point_43_____________________________________ b_plasma_toroidal_profile43____ 7.17249625423303439e+00 +Toroidal_field_in_plasma_at_point_44_____________________________________ b_plasma_toroidal_profile44____ 7.16563262145386393e+00 +Toroidal_field_in_plasma_at_point_45_____________________________________ b_plasma_toroidal_profile45____ 7.15878211225553329e+00 +Toroidal_field_in_plasma_at_point_46_____________________________________ b_plasma_toroidal_profile46____ 7.15194468903465896e+00 +Toroidal_field_in_plasma_at_point_47_____________________________________ b_plasma_toroidal_profile47____ 7.14512031433138173e+00 +Toroidal_field_in_plasma_at_point_48_____________________________________ b_plasma_toroidal_profile48____ 7.13830895082868278e+00 +Toroidal_field_in_plasma_at_point_49_____________________________________ b_plasma_toroidal_profile49____ 7.13151056135170247e+00 +Toroidal_field_in_plasma_at_point_50_____________________________________ b_plasma_toroidal_profile50____ 7.12472510886706711e+00 +Toroidal_field_in_plasma_at_point_51_____________________________________ b_plasma_toroidal_profile51____ 7.11795255648221215e+00 +Toroidal_field_in_plasma_at_point_52_____________________________________ b_plasma_toroidal_profile52____ 7.11119286744471779e+00 +Toroidal_field_in_plasma_at_point_53_____________________________________ b_plasma_toroidal_profile53____ 7.10444600514163938e+00 +Toroidal_field_in_plasma_at_point_54_____________________________________ b_plasma_toroidal_profile54____ 7.09771193309885096e+00 +Toroidal_field_in_plasma_at_point_55_____________________________________ b_plasma_toroidal_profile55____ 7.09099061498038630e+00 +Toroidal_field_in_plasma_at_point_56_____________________________________ b_plasma_toroidal_profile56____ 7.08428201458778428e+00 +Toroidal_field_in_plasma_at_point_57_____________________________________ b_plasma_toroidal_profile57____ 7.07758609585944054e+00 +Toroidal_field_in_plasma_at_point_58_____________________________________ b_plasma_toroidal_profile58____ 7.07090282286996086e+00 +Toroidal_field_in_plasma_at_point_59_____________________________________ b_plasma_toroidal_profile59____ 7.06423215982951636e+00 +Toroidal_field_in_plasma_at_point_60_____________________________________ b_plasma_toroidal_profile60____ 7.05757407108321111e+00 +Toroidal_field_in_plasma_at_point_61_____________________________________ b_plasma_toroidal_profile61____ 7.05092852111043999e+00 +Toroidal_field_in_plasma_at_point_62_____________________________________ b_plasma_toroidal_profile62____ 7.04429547452425897e+00 +Toroidal_field_in_plasma_at_point_63_____________________________________ b_plasma_toroidal_profile63____ 7.03767489607075891e+00 +Toroidal_field_in_plasma_at_point_64_____________________________________ b_plasma_toroidal_profile64____ 7.03106675062843944e+00 +Toroidal_field_in_plasma_at_point_65_____________________________________ b_plasma_toroidal_profile65____ 7.02447100320758722e+00 +Toroidal_field_in_plasma_at_point_66_____________________________________ b_plasma_toroidal_profile66____ 7.01788761894966040e+00 +Toroidal_field_in_plasma_at_point_67_____________________________________ b_plasma_toroidal_profile67____ 7.01131656312667406e+00 +Toroidal_field_in_plasma_at_point_68_____________________________________ b_plasma_toroidal_profile68____ 7.00475780114058733e+00 +Toroidal_field_in_plasma_at_point_69_____________________________________ b_plasma_toroidal_profile69____ 6.99821129852269941e+00 +Toroidal_field_in_plasma_at_point_70_____________________________________ b_plasma_toroidal_profile70____ 6.99167702093304122e+00 +Toroidal_field_in_plasma_at_point_71_____________________________________ b_plasma_toroidal_profile71____ 6.98515493415978295e+00 +Toroidal_field_in_plasma_at_point_72_____________________________________ b_plasma_toroidal_profile72____ 6.97864500411862743e+00 +Toroidal_field_in_plasma_at_point_73_____________________________________ b_plasma_toroidal_profile73____ 6.97214719685222306e+00 +Toroidal_field_in_plasma_at_point_74_____________________________________ b_plasma_toroidal_profile74____ 6.96566147852956963e+00 +Toroidal_field_in_plasma_at_point_75_____________________________________ b_plasma_toroidal_profile75____ 6.95918781544543474e+00 +Toroidal_field_in_plasma_at_point_76_____________________________________ b_plasma_toroidal_profile76____ 6.95272617401976589e+00 +Toroidal_field_in_plasma_at_point_77_____________________________________ b_plasma_toroidal_profile77____ 6.94627652079711311e+00 +Toroidal_field_in_plasma_at_point_78_____________________________________ b_plasma_toroidal_profile78____ 6.93983882244604988e+00 +Toroidal_field_in_plasma_at_point_79_____________________________________ b_plasma_toroidal_profile79____ 6.93341304575860029e+00 +Toroidal_field_in_plasma_at_point_80_____________________________________ b_plasma_toroidal_profile80____ 6.92699915764966434e+00 +Toroidal_field_in_plasma_at_point_81_____________________________________ b_plasma_toroidal_profile81____ 6.92059712515645753e+00 +Toroidal_field_in_plasma_at_point_82_____________________________________ b_plasma_toroidal_profile82____ 6.91420691543793886e+00 +Toroidal_field_in_plasma_at_point_83_____________________________________ b_plasma_toroidal_profile83____ 6.90782849577425040e+00 +Toroidal_field_in_plasma_at_point_84_____________________________________ b_plasma_toroidal_profile84____ 6.90146183356616394e+00 +Toroidal_field_in_plasma_at_point_85_____________________________________ b_plasma_toroidal_profile85____ 6.89510689633451879e+00 +Toroidal_field_in_plasma_at_point_86_____________________________________ b_plasma_toroidal_profile86____ 6.88876365171967642e+00 +Toroidal_field_in_plasma_at_point_87_____________________________________ b_plasma_toroidal_profile87____ 6.88243206748096359e+00 +Toroidal_field_in_plasma_at_point_88_____________________________________ b_plasma_toroidal_profile88____ 6.87611211149613233e+00 +Toroidal_field_in_plasma_at_point_89_____________________________________ b_plasma_toroidal_profile89____ 6.86980375176081459e+00 +Toroidal_field_in_plasma_at_point_90_____________________________________ b_plasma_toroidal_profile90____ 6.86350695638798225e+00 +Toroidal_field_in_plasma_at_point_91_____________________________________ b_plasma_toroidal_profile91____ 6.85722169360740708e+00 +Toroidal_field_in_plasma_at_point_92_____________________________________ b_plasma_toroidal_profile92____ 6.85094793176513051e+00 +Toroidal_field_in_plasma_at_point_93_____________________________________ b_plasma_toroidal_profile93____ 6.84468563932293161e+00 +Toroidal_field_in_plasma_at_point_94_____________________________________ b_plasma_toroidal_profile94____ 6.83843478485779688e+00 +Toroidal_field_in_plasma_at_point_95_____________________________________ b_plasma_toroidal_profile95____ 6.83219533706139348e+00 +Toroidal_field_in_plasma_at_point_96_____________________________________ b_plasma_toroidal_profile96____ 6.82596726473955151e+00 +Toroidal_field_in_plasma_at_point_97_____________________________________ b_plasma_toroidal_profile97____ 6.81975053681173726e+00 +Toroidal_field_in_plasma_at_point_98_____________________________________ b_plasma_toroidal_profile98____ 6.81354512231054432e+00 +Toroidal_field_in_plasma_at_point_99_____________________________________ b_plasma_toroidal_profile99____ 6.80735099038117131e+00 +Toroidal_field_in_plasma_at_point_100____________________________________ b_plasma_toroidal_profile100___ 6.80116811028091561e+00 +Toroidal_field_in_plasma_at_point_101____________________________________ b_plasma_toroidal_profile101___ 6.79499645137866359e+00 +Toroidal_field_in_plasma_at_point_102____________________________________ b_plasma_toroidal_profile102___ 6.78883598315438519e+00 +Toroidal_field_in_plasma_at_point_103____________________________________ b_plasma_toroidal_profile103___ 6.78268667519863033e+00 +Toroidal_field_in_plasma_at_point_104____________________________________ b_plasma_toroidal_profile104___ 6.77654849721202535e+00 +Toroidal_field_in_plasma_at_point_105____________________________________ b_plasma_toroidal_profile105___ 6.77042141900478089e+00 +Toroidal_field_in_plasma_at_point_106____________________________________ b_plasma_toroidal_profile106___ 6.76430541049619460e+00 +Toroidal_field_in_plasma_at_point_107____________________________________ b_plasma_toroidal_profile107___ 6.75820044171415901e+00 +Toroidal_field_in_plasma_at_point_108____________________________________ b_plasma_toroidal_profile108___ 6.75210648279466863e+00 +Toroidal_field_in_plasma_at_point_109____________________________________ b_plasma_toroidal_profile109___ 6.74602350398134032e+00 +Toroidal_field_in_plasma_at_point_110____________________________________ b_plasma_toroidal_profile110___ 6.73995147562492214e+00 +Toroidal_field_in_plasma_at_point_111____________________________________ b_plasma_toroidal_profile111___ 6.73389036818281284e+00 +Toroidal_field_in_plasma_at_point_112____________________________________ b_plasma_toroidal_profile112___ 6.72784015221858755e+00 +Toroidal_field_in_plasma_at_point_113____________________________________ b_plasma_toroidal_profile113___ 6.72180079840151468e+00 +Toroidal_field_in_plasma_at_point_114____________________________________ b_plasma_toroidal_profile114___ 6.71577227750608774e+00 +Toroidal_field_in_plasma_at_point_115____________________________________ b_plasma_toroidal_profile115___ 6.70975456041154761e+00 +Toroidal_field_in_plasma_at_point_116____________________________________ b_plasma_toroidal_profile116___ 6.70374761810142150e+00 +Toroidal_field_in_plasma_at_point_117____________________________________ b_plasma_toroidal_profile117___ 6.69775142166304782e+00 +Toroidal_field_in_plasma_at_point_118____________________________________ b_plasma_toroidal_profile118___ 6.69176594228712052e+00 +Toroidal_field_in_plasma_at_point_119____________________________________ b_plasma_toroidal_profile119___ 6.68579115126722190e+00 +Toroidal_field_in_plasma_at_point_120____________________________________ b_plasma_toroidal_profile120___ 6.67982701999936523e+00 +Toroidal_field_in_plasma_at_point_121____________________________________ b_plasma_toroidal_profile121___ 6.67387351998153999e+00 +Toroidal_field_in_plasma_at_point_122____________________________________ b_plasma_toroidal_profile122___ 6.66793062281325710e+00 +Toroidal_field_in_plasma_at_point_123____________________________________ b_plasma_toroidal_profile123___ 6.66199830019509509e+00 +Toroidal_field_in_plasma_at_point_124____________________________________ b_plasma_toroidal_profile124___ 6.65607652392825511e+00 +Toroidal_field_in_plasma_at_point_125____________________________________ b_plasma_toroidal_profile125___ 6.65016526591410972e+00 +Toroidal_field_in_plasma_at_point_126____________________________________ b_plasma_toroidal_profile126___ 6.64426449815375975e+00 +Toroidal_field_in_plasma_at_point_127____________________________________ b_plasma_toroidal_profile127___ 6.63837419274759544e+00 +Toroidal_field_in_plasma_at_point_128____________________________________ b_plasma_toroidal_profile128___ 6.63249432189485155e+00 +Toroidal_field_in_plasma_at_point_129____________________________________ b_plasma_toroidal_profile129___ 6.62662485789317479e+00 +Toroidal_field_in_plasma_at_point_130____________________________________ b_plasma_toroidal_profile130___ 6.62076577313818593e+00 +Toroidal_field_in_plasma_at_point_131____________________________________ b_plasma_toroidal_profile131___ 6.61491704012304638e+00 +Toroidal_field_in_plasma_at_point_132____________________________________ b_plasma_toroidal_profile132___ 6.60907863143803009e+00 +Toroidal_field_in_plasma_at_point_133____________________________________ b_plasma_toroidal_profile133___ 6.60325051977009547e+00 +Toroidal_field_in_plasma_at_point_134____________________________________ b_plasma_toroidal_profile134___ 6.59743267790245724e+00 +Toroidal_field_in_plasma_at_point_135____________________________________ b_plasma_toroidal_profile135___ 6.59162507871416192e+00 +Toroidal_field_in_plasma_at_point_136____________________________________ b_plasma_toroidal_profile136___ 6.58582769517967215e+00 +Toroidal_field_in_plasma_at_point_137____________________________________ b_plasma_toroidal_profile137___ 6.58004050036844301e+00 +Toroidal_field_in_plasma_at_point_138____________________________________ b_plasma_toroidal_profile138___ 6.57426346744450196e+00 +Toroidal_field_in_plasma_at_point_139____________________________________ b_plasma_toroidal_profile139___ 6.56849656966604201e+00 +Toroidal_field_in_plasma_at_point_140____________________________________ b_plasma_toroidal_profile140___ 6.56273978038500250e+00 +Toroidal_field_in_plasma_at_point_141____________________________________ b_plasma_toroidal_profile141___ 6.55699307304666235e+00 +Toroidal_field_in_plasma_at_point_142____________________________________ b_plasma_toroidal_profile142___ 6.55125642118922880e+00 +Toroidal_field_in_plasma_at_point_143____________________________________ b_plasma_toroidal_profile143___ 6.54552979844343419e+00 +Toroidal_field_in_plasma_at_point_144____________________________________ b_plasma_toroidal_profile144___ 6.53981317853212829e+00 +Toroidal_field_in_plasma_at_point_145____________________________________ b_plasma_toroidal_profile145___ 6.53410653526988394e+00 +Toroidal_field_in_plasma_at_point_146____________________________________ b_plasma_toroidal_profile146___ 6.52840984256258761e+00 +Toroidal_field_in_plasma_at_point_147____________________________________ b_plasma_toroidal_profile147___ 6.52272307440704502e+00 +Toroidal_field_in_plasma_at_point_148____________________________________ b_plasma_toroidal_profile148___ 6.51704620489058950e+00 +Toroidal_field_in_plasma_at_point_149____________________________________ b_plasma_toroidal_profile149___ 6.51137920819068494e+00 +Toroidal_field_in_plasma_at_point_150____________________________________ b_plasma_toroidal_profile150___ 6.50572205857453323e+00 +Toroidal_field_in_plasma_at_point_151____________________________________ b_plasma_toroidal_profile151___ 6.50007473039868788e+00 +Toroidal_field_in_plasma_at_point_152____________________________________ b_plasma_toroidal_profile152___ 6.49443719810866238e+00 +Toroidal_field_in_plasma_at_point_153____________________________________ b_plasma_toroidal_profile153___ 6.48880943623855178e+00 +Toroidal_field_in_plasma_at_point_154____________________________________ b_plasma_toroidal_profile154___ 6.48319141941063926e+00 +Toroidal_field_in_plasma_at_point_155____________________________________ b_plasma_toroidal_profile155___ 6.47758312233502487e+00 +Toroidal_field_in_plasma_at_point_156____________________________________ b_plasma_toroidal_profile156___ 6.47198451980923739e+00 +Toroidal_field_in_plasma_at_point_157____________________________________ b_plasma_toroidal_profile157___ 6.46639558671786485e+00 +Toroidal_field_in_plasma_at_point_158____________________________________ b_plasma_toroidal_profile158___ 6.46081629803217261e+00 +Toroidal_field_in_plasma_at_point_159____________________________________ b_plasma_toroidal_profile159___ 6.45524662880973121e+00 +Toroidal_field_in_plasma_at_point_160____________________________________ b_plasma_toroidal_profile160___ 6.44968655419404691e+00 +Toroidal_field_in_plasma_at_point_161____________________________________ b_plasma_toroidal_profile161___ 6.44413604941418949e+00 +Toroidal_field_in_plasma_at_point_162____________________________________ b_plasma_toroidal_profile162___ 6.43859508978442641e+00 +Toroidal_field_in_plasma_at_point_163____________________________________ b_plasma_toroidal_profile163___ 6.43306365070385588e+00 +Toroidal_field_in_plasma_at_point_164____________________________________ b_plasma_toroidal_profile164___ 6.42754170765604194e+00 +Toroidal_field_in_plasma_at_point_165____________________________________ b_plasma_toroidal_profile165___ 6.42202923620865107e+00 +Toroidal_field_in_plasma_at_point_166____________________________________ b_plasma_toroidal_profile166___ 6.41652621201309969e+00 +Toroidal_field_in_plasma_at_point_167____________________________________ b_plasma_toroidal_profile167___ 6.41103261080418463e+00 +Toroidal_field_in_plasma_at_point_168____________________________________ b_plasma_toroidal_profile168___ 6.40554840839973316e+00 +Toroidal_field_in_plasma_at_point_169____________________________________ b_plasma_toroidal_profile169___ 6.40007358070024601e+00 +Toroidal_field_in_plasma_at_point_170____________________________________ b_plasma_toroidal_profile170___ 6.39460810368854649e+00 +Toroidal_field_in_plasma_at_point_171____________________________________ b_plasma_toroidal_profile171___ 6.38915195342942699e+00 +Toroidal_field_in_plasma_at_point_172____________________________________ b_plasma_toroidal_profile172___ 6.38370510606929908e+00 +Toroidal_field_in_plasma_at_point_173____________________________________ b_plasma_toroidal_profile173___ 6.37826753783585065e+00 +Toroidal_field_in_plasma_at_point_174____________________________________ b_plasma_toroidal_profile174___ 6.37283922503769240e+00 +Toroidal_field_in_plasma_at_point_175____________________________________ b_plasma_toroidal_profile175___ 6.36742014406402035e+00 +Toroidal_field_in_plasma_at_point_176____________________________________ b_plasma_toroidal_profile176___ 6.36201027138427211e+00 +Toroidal_field_in_plasma_at_point_177____________________________________ b_plasma_toroidal_profile177___ 6.35660958354778227e+00 +Toroidal_field_in_plasma_at_point_178____________________________________ b_plasma_toroidal_profile178___ 6.35121805718345023e+00 +Toroidal_field_in_plasma_at_point_179____________________________________ b_plasma_toroidal_profile179___ 6.34583566899939644e+00 +Toroidal_field_in_plasma_at_point_180____________________________________ b_plasma_toroidal_profile180___ 6.34046239578263116e+00 +Toroidal_field_in_plasma_at_point_181____________________________________ b_plasma_toroidal_profile181___ 6.33509821439872045e+00 +Toroidal_field_in_plasma_at_point_182____________________________________ b_plasma_toroidal_profile182___ 6.32974310179145228e+00 +Toroidal_field_in_plasma_at_point_183____________________________________ b_plasma_toroidal_profile183___ 6.32439703498250694e+00 +Toroidal_field_in_plasma_at_point_184____________________________________ b_plasma_toroidal_profile184___ 6.31905999107112937e+00 +Toroidal_field_in_plasma_at_point_185____________________________________ b_plasma_toroidal_profile185___ 6.31373194723380138e+00 +Toroidal_field_in_plasma_at_point_186____________________________________ b_plasma_toroidal_profile186___ 6.30841288072391482e+00 +Toroidal_field_in_plasma_at_point_187____________________________________ b_plasma_toroidal_profile187___ 6.30310276887145449e+00 +Toroidal_field_in_plasma_at_point_188____________________________________ b_plasma_toroidal_profile188___ 6.29780158908266419e+00 +Toroidal_field_in_plasma_at_point_189____________________________________ b_plasma_toroidal_profile189___ 6.29250931883973763e+00 +Toroidal_field_in_plasma_at_point_190____________________________________ b_plasma_toroidal_profile190___ 6.28722593570049337e+00 +Toroidal_field_in_plasma_at_point_191____________________________________ b_plasma_toroidal_profile191___ 6.28195141729806039e+00 +Toroidal_field_in_plasma_at_point_192____________________________________ b_plasma_toroidal_profile192___ 6.27668574134056012e+00 +Toroidal_field_in_plasma_at_point_193____________________________________ b_plasma_toroidal_profile193___ 6.27142888561079381e+00 +Toroidal_field_in_plasma_at_point_194____________________________________ b_plasma_toroidal_profile194___ 6.26618082796593168e+00 +Toroidal_field_in_plasma_at_point_195____________________________________ b_plasma_toroidal_profile195___ 6.26094154633719757e+00 +Toroidal_field_in_plasma_at_point_196____________________________________ b_plasma_toroidal_profile196___ 6.25571101872956437e+00 +Toroidal_field_in_plasma_at_point_197____________________________________ b_plasma_toroidal_profile197___ 6.25048922322144307e+00 +Toroidal_field_in_plasma_at_point_198____________________________________ b_plasma_toroidal_profile198___ 6.24527613796437731e+00 +Toroidal_field_in_plasma_at_point_199____________________________________ b_plasma_toroidal_profile199___ 6.24007174118273955e+00 +Toroidal_field_in_plasma_at_point_200____________________________________ b_plasma_toroidal_profile200___ 6.23487601117342827e+00 +Toroidal_field_in_plasma_at_point_201____________________________________ b_plasma_toroidal_profile201___ 6.22968892630556415e+00 +Toroidal_field_in_plasma_at_point_202____________________________________ b_plasma_toroidal_profile202___ 6.22451046502018990e+00 +Toroidal_field_in_plasma_at_point_203____________________________________ b_plasma_toroidal_profile203___ 6.21934060582997361e+00 +Toroidal_field_in_plasma_at_point_204____________________________________ b_plasma_toroidal_profile204___ 6.21417932731891121e+00 +Toroidal_field_in_plasma_at_point_205____________________________________ b_plasma_toroidal_profile205___ 6.20902660814202978e+00 +Toroidal_field_in_plasma_at_point_206____________________________________ b_plasma_toroidal_profile206___ 6.20388242702509363e+00 +Toroidal_field_in_plasma_at_point_207____________________________________ b_plasma_toroidal_profile207___ 6.19874676276431114e+00 +Toroidal_field_in_plasma_at_point_208____________________________________ b_plasma_toroidal_profile208___ 6.19361959422604436e+00 +Toroidal_field_in_plasma_at_point_209____________________________________ b_plasma_toroidal_profile209___ 6.18850090034651856e+00 +Toroidal_field_in_plasma_at_point_210____________________________________ b_plasma_toroidal_profile210___ 6.18339066013153449e+00 +Toroidal_field_in_plasma_at_point_211____________________________________ b_plasma_toroidal_profile211___ 6.17828885265617789e+00 +Toroidal_field_in_plasma_at_point_212____________________________________ b_plasma_toroidal_profile212___ 6.17319545706454065e+00 +Toroidal_field_in_plasma_at_point_213____________________________________ b_plasma_toroidal_profile213___ 6.16811045256943036e+00 +Toroidal_field_in_plasma_at_point_214____________________________________ b_plasma_toroidal_profile214___ 6.16303381845208875e+00 +Toroidal_field_in_plasma_at_point_215____________________________________ b_plasma_toroidal_profile215___ 6.15796553406191460e+00 +Toroidal_field_in_plasma_at_point_216____________________________________ b_plasma_toroidal_profile216___ 6.15290557881617772e+00 +Toroidal_field_in_plasma_at_point_217____________________________________ b_plasma_toroidal_profile217___ 6.14785393219974452e+00 +Toroidal_field_in_plasma_at_point_218____________________________________ b_plasma_toroidal_profile218___ 6.14281057376479822e+00 +Toroidal_field_in_plasma_at_point_219____________________________________ b_plasma_toroidal_profile219___ 6.13777548313056442e+00 +Toroidal_field_in_plasma_at_point_220____________________________________ b_plasma_toroidal_profile220___ 6.13274863998303754e+00 +Toroidal_field_in_plasma_at_point_221____________________________________ b_plasma_toroidal_profile221___ 6.12773002407470369e+00 +Toroidal_field_in_plasma_at_point_222____________________________________ b_plasma_toroidal_profile222___ 6.12271961522427421e+00 +Toroidal_field_in_plasma_at_point_223____________________________________ b_plasma_toroidal_profile223___ 6.11771739331641218e+00 +Toroidal_field_in_plasma_at_point_224____________________________________ b_plasma_toroidal_profile224___ 6.11272333830145964e+00 +Toroidal_field_in_plasma_at_point_225____________________________________ b_plasma_toroidal_profile225___ 6.10773743019517834e+00 +Toroidal_field_in_plasma_at_point_226____________________________________ b_plasma_toroidal_profile226___ 6.10275964907847435e+00 +Toroidal_field_in_plasma_at_point_227____________________________________ b_plasma_toroidal_profile227___ 6.09778997509714049e+00 +Toroidal_field_in_plasma_at_point_228____________________________________ b_plasma_toroidal_profile228___ 6.09282838846158459e+00 +Toroidal_field_in_plasma_at_point_229____________________________________ b_plasma_toroidal_profile229___ 6.08787486944657541e+00 +Toroidal_field_in_plasma_at_point_230____________________________________ b_plasma_toroidal_profile230___ 6.08292939839097269e+00 +Toroidal_field_in_plasma_at_point_231____________________________________ b_plasma_toroidal_profile231___ 6.07799195569747397e+00 +Toroidal_field_in_plasma_at_point_232____________________________________ b_plasma_toroidal_profile232___ 6.07306252183234996e+00 +Toroidal_field_in_plasma_at_point_233____________________________________ b_plasma_toroidal_profile233___ 6.06814107732519314e+00 +Toroidal_field_in_plasma_at_point_234____________________________________ b_plasma_toroidal_profile234___ 6.06322760276865402e+00 +Toroidal_field_in_plasma_at_point_235____________________________________ b_plasma_toroidal_profile235___ 6.05832207881819418e+00 +Toroidal_field_in_plasma_at_point_236____________________________________ b_plasma_toroidal_profile236___ 6.05342448619182516e+00 +Toroidal_field_in_plasma_at_point_237____________________________________ b_plasma_toroidal_profile237___ 6.04853480566986157e+00 +Toroidal_field_in_plasma_at_point_238____________________________________ b_plasma_toroidal_profile238___ 6.04365301809466349e+00 +Toroidal_field_in_plasma_at_point_239____________________________________ b_plasma_toroidal_profile239___ 6.03877910437039400e+00 +Toroidal_field_in_plasma_at_point_240____________________________________ b_plasma_toroidal_profile240___ 6.03391304546276253e+00 +Toroidal_field_in_plasma_at_point_241____________________________________ b_plasma_toroidal_profile241___ 6.02905482239878321e+00 +Toroidal_field_in_plasma_at_point_242____________________________________ b_plasma_toroidal_profile242___ 6.02420441626652270e+00 +Toroidal_field_in_plasma_at_point_243____________________________________ b_plasma_toroidal_profile243___ 6.01936180821486122e+00 +Toroidal_field_in_plasma_at_point_244____________________________________ b_plasma_toroidal_profile244___ 6.01452697945324299e+00 +Toroidal_field_in_plasma_at_point_245____________________________________ b_plasma_toroidal_profile245___ 6.00969991125143466e+00 +Toroidal_field_in_plasma_at_point_246____________________________________ b_plasma_toroidal_profile246___ 6.00488058493928456e+00 +Toroidal_field_in_plasma_at_point_247____________________________________ b_plasma_toroidal_profile247___ 6.00006898190648119e+00 +Toroidal_field_in_plasma_at_point_248____________________________________ b_plasma_toroidal_profile248___ 5.99526508360231247e+00 +Toroidal_field_in_plasma_at_point_249____________________________________ b_plasma_toroidal_profile249___ 5.99046887153543040e+00 +Toroidal_field_in_plasma_at_point_250____________________________________ b_plasma_toroidal_profile250___ 5.98568032727361121e+00 +Toroidal_field_in_plasma_at_point_251____________________________________ b_plasma_toroidal_profile251___ 5.98089943244352007e+00 +Toroidal_field_in_plasma_at_point_252____________________________________ b_plasma_toroidal_profile252___ 5.97612616873047742e+00 +Toroidal_field_in_plasma_at_point_253____________________________________ b_plasma_toroidal_profile253___ 5.97136051787822009e+00 +Toroidal_field_in_plasma_at_point_254____________________________________ b_plasma_toroidal_profile254___ 5.96660246168867570e+00 +Toroidal_field_in_plasma_at_point_255____________________________________ b_plasma_toroidal_profile255___ 5.96185198202172639e+00 +Toroidal_field_in_plasma_at_point_256____________________________________ b_plasma_toroidal_profile256___ 5.95710906079497882e+00 +Toroidal_field_in_plasma_at_point_257____________________________________ b_plasma_toroidal_profile257___ 5.95237367998353584e+00 +Toroidal_field_in_plasma_at_point_258____________________________________ b_plasma_toroidal_profile258___ 5.94764582161976829e+00 +Toroidal_field_in_plasma_at_point_259____________________________________ b_plasma_toroidal_profile259___ 5.94292546779308584e+00 +Toroidal_field_in_plasma_at_point_260____________________________________ b_plasma_toroidal_profile260___ 5.93821260064971312e+00 +Toroidal_field_in_plasma_at_point_261____________________________________ b_plasma_toroidal_profile261___ 5.93350720239246332e+00 +Toroidal_field_in_plasma_at_point_262____________________________________ b_plasma_toroidal_profile262___ 5.92880925528051339e+00 +Toroidal_field_in_plasma_at_point_263____________________________________ b_plasma_toroidal_profile263___ 5.92411874162918295e+00 +Toroidal_field_in_plasma_at_point_264____________________________________ b_plasma_toroidal_profile264___ 5.91943564380971399e+00 +Toroidal_field_in_plasma_at_point_265____________________________________ b_plasma_toroidal_profile265___ 5.91475994424904261e+00 +Toroidal_field_in_plasma_at_point_266____________________________________ b_plasma_toroidal_profile266___ 5.91009162542958766e+00 +Toroidal_field_in_plasma_at_point_267____________________________________ b_plasma_toroidal_profile267___ 5.90543066988902865e+00 +Toroidal_field_in_plasma_at_point_268____________________________________ b_plasma_toroidal_profile268___ 5.90077706022008552e+00 +Toroidal_field_in_plasma_at_point_269____________________________________ b_plasma_toroidal_profile269___ 5.89613077907030547e+00 +Toroidal_field_in_plasma_at_point_270____________________________________ b_plasma_toroidal_profile270___ 5.89149180914184800e+00 +Toroidal_field_in_plasma_at_point_271____________________________________ b_plasma_toroidal_profile271___ 5.88686013319126378e+00 +Toroidal_field_in_plasma_at_point_272____________________________________ b_plasma_toroidal_profile272___ 5.88223573402929123e+00 +Toroidal_field_in_plasma_at_point_273____________________________________ b_plasma_toroidal_profile273___ 5.87761859452063362e+00 +Toroidal_field_in_plasma_at_point_274____________________________________ b_plasma_toroidal_profile274___ 5.87300869758375477e+00 +Toroidal_field_in_plasma_at_point_275____________________________________ b_plasma_toroidal_profile275___ 5.86840602619066498e+00 +Toroidal_field_in_plasma_at_point_276____________________________________ b_plasma_toroidal_profile276___ 5.86381056336670969e+00 +Toroidal_field_in_plasma_at_point_277____________________________________ b_plasma_toroidal_profile277___ 5.85922229219036605e+00 +Toroidal_field_in_plasma_at_point_278____________________________________ b_plasma_toroidal_profile278___ 5.85464119579303244e+00 +Toroidal_field_in_plasma_at_point_279____________________________________ b_plasma_toroidal_profile279___ 5.85006725735881883e+00 +Toroidal_field_in_plasma_at_point_280____________________________________ b_plasma_toroidal_profile280___ 5.84550046012434699e+00 +Toroidal_field_in_plasma_at_point_281____________________________________ b_plasma_toroidal_profile281___ 5.84094078737853994e+00 +Toroidal_field_in_plasma_at_point_282____________________________________ b_plasma_toroidal_profile282___ 5.83638822246242306e+00 +Toroidal_field_in_plasma_at_point_283____________________________________ b_plasma_toroidal_profile283___ 5.83184274876891617e+00 +Toroidal_field_in_plasma_at_point_284____________________________________ b_plasma_toroidal_profile284___ 5.82730434974263733e+00 +Toroidal_field_in_plasma_at_point_285____________________________________ b_plasma_toroidal_profile285___ 5.82277300887969496e+00 +Toroidal_field_in_plasma_at_point_286____________________________________ b_plasma_toroidal_profile286___ 5.81824870972749686e+00 +Toroidal_field_in_plasma_at_point_287____________________________________ b_plasma_toroidal_profile287___ 5.81373143588454067e+00 +Toroidal_field_in_plasma_at_point_288____________________________________ b_plasma_toroidal_profile288___ 5.80922117100022373e+00 +Toroidal_field_in_plasma_at_point_289____________________________________ b_plasma_toroidal_profile289___ 5.80471789877464239e+00 +Toroidal_field_in_plasma_at_point_290____________________________________ b_plasma_toroidal_profile290___ 5.80022160295839573e+00 +Toroidal_field_in_plasma_at_point_291____________________________________ b_plasma_toroidal_profile291___ 5.79573226735239011e+00 +Toroidal_field_in_plasma_at_point_292____________________________________ b_plasma_toroidal_profile292___ 5.79124987580764738e+00 +Toroidal_field_in_plasma_at_point_293____________________________________ b_plasma_toroidal_profile293___ 5.78677441222510680e+00 +Toroidal_field_in_plasma_at_point_294____________________________________ b_plasma_toroidal_profile294___ 5.78230586055543494e+00 +Toroidal_field_in_plasma_at_point_295____________________________________ b_plasma_toroidal_profile295___ 5.77784420479883298e+00 +Toroidal_field_in_plasma_at_point_296____________________________________ b_plasma_toroidal_profile296___ 5.77338942900484842e+00 +Toroidal_field_in_plasma_at_point_297____________________________________ b_plasma_toroidal_profile297___ 5.76894151727217874e+00 +Toroidal_field_in_plasma_at_point_298____________________________________ b_plasma_toroidal_profile298___ 5.76450045374848941e+00 +Toroidal_field_in_plasma_at_point_299____________________________________ b_plasma_toroidal_profile299___ 5.76006622263022194e+00 +Toroidal_field_in_plasma_at_point_300____________________________________ b_plasma_toroidal_profile300___ 5.75563880816240481e+00 +Toroidal_field_in_plasma_at_point_301____________________________________ b_plasma_toroidal_profile301___ 5.75121819463847039e+00 +Toroidal_field_in_plasma_at_point_302____________________________________ b_plasma_toroidal_profile302___ 5.74680436640006764e+00 +Toroidal_field_in_plasma_at_point_303____________________________________ b_plasma_toroidal_profile303___ 5.74239730783687818e+00 +Toroidal_field_in_plasma_at_point_304____________________________________ b_plasma_toroidal_profile304___ 5.73799700338642804e+00 +Toroidal_field_in_plasma_at_point_305____________________________________ b_plasma_toroidal_profile305___ 5.73360343753391177e+00 +Toroidal_field_in_plasma_at_point_306____________________________________ b_plasma_toroidal_profile306___ 5.72921659481200329e+00 +Toroidal_field_in_plasma_at_point_307____________________________________ b_plasma_toroidal_profile307___ 5.72483645980067912e+00 +Toroidal_field_in_plasma_at_point_308____________________________________ b_plasma_toroidal_profile308___ 5.72046301712703453e+00 +Toroidal_field_in_plasma_at_point_309____________________________________ b_plasma_toroidal_profile309___ 5.71609625146510592e+00 +Toroidal_field_in_plasma_at_point_310____________________________________ b_plasma_toroidal_profile310___ 5.71173614753568870e+00 +Toroidal_field_in_plasma_at_point_311____________________________________ b_plasma_toroidal_profile311___ 5.70738269010616506e+00 +Toroidal_field_in_plasma_at_point_312____________________________________ b_plasma_toroidal_profile312___ 5.70303586399031914e+00 +Toroidal_field_in_plasma_at_point_313____________________________________ b_plasma_toroidal_profile313___ 5.69869565404816480e+00 +Toroidal_field_in_plasma_at_point_314____________________________________ b_plasma_toroidal_profile314___ 5.69436204518576972e+00 +Toroidal_field_in_plasma_at_point_315____________________________________ b_plasma_toroidal_profile315___ 5.69003502235508218e+00 +Toroidal_field_in_plasma_at_point_316____________________________________ b_plasma_toroidal_profile316___ 5.68571457055374907e+00 +Toroidal_field_in_plasma_at_point_317____________________________________ b_plasma_toroidal_profile317___ 5.68140067482495326e+00 +Toroidal_field_in_plasma_at_point_318____________________________________ b_plasma_toroidal_profile318___ 5.67709332025723157e+00 +Toroidal_field_in_plasma_at_point_319____________________________________ b_plasma_toroidal_profile319___ 5.67279249198430957e+00 +Toroidal_field_in_plasma_at_point_320____________________________________ b_plasma_toroidal_profile320___ 5.66849817518492660e+00 +Toroidal_field_in_plasma_at_point_321____________________________________ b_plasma_toroidal_profile321___ 5.66421035508266879e+00 +Toroidal_field_in_plasma_at_point_322____________________________________ b_plasma_toroidal_profile322___ 5.65992901694579587e+00 +Toroidal_field_in_plasma_at_point_323____________________________________ b_plasma_toroidal_profile323___ 5.65565414608707595e+00 +Toroidal_field_in_plasma_at_point_324____________________________________ b_plasma_toroidal_profile324___ 5.65138572786361415e+00 +Toroidal_field_in_plasma_at_point_325____________________________________ b_plasma_toroidal_profile325___ 5.64712374767668823e+00 +Toroidal_field_in_plasma_at_point_326____________________________________ b_plasma_toroidal_profile326___ 5.64286819097158165e+00 +Toroidal_field_in_plasma_at_point_327____________________________________ b_plasma_toroidal_profile327___ 5.63861904323741570e+00 +Toroidal_field_in_plasma_at_point_328____________________________________ b_plasma_toroidal_profile328___ 5.63437629000698870e+00 +Toroidal_field_in_plasma_at_point_329____________________________________ b_plasma_toroidal_profile329___ 5.63013991685660731e+00 +Toroidal_field_in_plasma_at_point_330____________________________________ b_plasma_toroidal_profile330___ 5.62590990940592661e+00 +Toroidal_field_in_plasma_at_point_331____________________________________ b_plasma_toroidal_profile331___ 5.62168625331778404e+00 +Toroidal_field_in_plasma_at_point_332____________________________________ b_plasma_toroidal_profile332___ 5.61746893429804039e+00 +Toroidal_field_in_plasma_at_point_333____________________________________ b_plasma_toroidal_profile333___ 5.61325793809541906e+00 +Toroidal_field_in_plasma_at_point_334____________________________________ b_plasma_toroidal_profile334___ 5.60905325050133996e+00 +Toroidal_field_in_plasma_at_point_335____________________________________ b_plasma_toroidal_profile335___ 5.60485485734976585e+00 +Toroidal_field_in_plasma_at_point_336____________________________________ b_plasma_toroidal_profile336___ 5.60066274451704427e+00 +Toroidal_field_in_plasma_at_point_337____________________________________ b_plasma_toroidal_profile337___ 5.59647689792173963e+00 +Toroidal_field_in_plasma_at_point_338____________________________________ b_plasma_toroidal_profile338___ 5.59229730352448673e+00 +Toroidal_field_in_plasma_at_point_339____________________________________ b_plasma_toroidal_profile339___ 5.58812394732782725e+00 +Toroidal_field_in_plasma_at_point_340____________________________________ b_plasma_toroidal_profile340___ 5.58395681537605348e+00 +Toroidal_field_in_plasma_at_point_341____________________________________ b_plasma_toroidal_profile341___ 5.57979589375505824e+00 +Toroidal_field_in_plasma_at_point_342____________________________________ b_plasma_toroidal_profile342___ 5.57564116859217318e+00 +Toroidal_field_in_plasma_at_point_343____________________________________ b_plasma_toroidal_profile343___ 5.57149262605601781e+00 +Toroidal_field_in_plasma_at_point_344____________________________________ b_plasma_toroidal_profile344___ 5.56735025235634851e+00 +Toroidal_field_in_plasma_at_point_345____________________________________ b_plasma_toroidal_profile345___ 5.56321403374389956e+00 +Toroidal_field_in_plasma_at_point_346____________________________________ b_plasma_toroidal_profile346___ 5.55908395651023657e+00 +Toroidal_field_in_plasma_at_point_347____________________________________ b_plasma_toroidal_profile347___ 5.55496000698760284e+00 +Toroidal_field_in_plasma_at_point_348____________________________________ b_plasma_toroidal_profile348___ 5.55084217154876836e+00 +Toroidal_field_in_plasma_at_point_349____________________________________ b_plasma_toroidal_profile349___ 5.54673043660687970e+00 +Toroidal_field_in_plasma_at_point_350____________________________________ b_plasma_toroidal_profile350___ 5.54262478861531349e+00 +Toroidal_field_in_plasma_at_point_351____________________________________ b_plasma_toroidal_profile351___ 5.53852521406752096e+00 +Toroidal_field_in_plasma_at_point_352____________________________________ b_plasma_toroidal_profile352___ 5.53443169949688674e+00 +Toroidal_field_in_plasma_at_point_353____________________________________ b_plasma_toroidal_profile353___ 5.53034423147657961e+00 +Toroidal_field_in_plasma_at_point_354____________________________________ b_plasma_toroidal_profile354___ 5.52626279661940067e+00 +Toroidal_field_in_plasma_at_point_355____________________________________ b_plasma_toroidal_profile355___ 5.52218738157764655e+00 +Toroidal_field_in_plasma_at_point_356____________________________________ b_plasma_toroidal_profile356___ 5.51811797304295304e+00 +Toroidal_field_in_plasma_at_point_357____________________________________ b_plasma_toroidal_profile357___ 5.51405455774616193e+00 +Toroidal_field_in_plasma_at_point_358____________________________________ b_plasma_toroidal_profile358___ 5.50999712245716555e+00 +Toroidal_field_in_plasma_at_point_359____________________________________ b_plasma_toroidal_profile359___ 5.50594565398477087e+00 +Toroidal_field_in_plasma_at_point_360____________________________________ b_plasma_toroidal_profile360___ 5.50190013917655296e+00 +Toroidal_field_in_plasma_at_point_361____________________________________ b_plasma_toroidal_profile361___ 5.49786056491871378e+00 +Toroidal_field_in_plasma_at_point_362____________________________________ b_plasma_toroidal_profile362___ 5.49382691813594182e+00 +Toroidal_field_in_plasma_at_point_363____________________________________ b_plasma_toroidal_profile363___ 5.48979918579126736e+00 +Toroidal_field_in_plasma_at_point_364____________________________________ b_plasma_toroidal_profile364___ 5.48577735488592566e+00 +Toroidal_field_in_plasma_at_point_365____________________________________ b_plasma_toroidal_profile365___ 5.48176141245921578e+00 +Toroidal_field_in_plasma_at_point_366____________________________________ b_plasma_toroidal_profile366___ 5.47775134558836019e+00 +Toroidal_field_in_plasma_at_point_367____________________________________ b_plasma_toroidal_profile367___ 5.47374714138836893e+00 +Toroidal_field_in_plasma_at_point_368____________________________________ b_plasma_toroidal_profile368___ 5.46974878701189837e+00 +Toroidal_field_in_plasma_at_point_369____________________________________ b_plasma_toroidal_profile369___ 5.46575626964911621e+00 +Toroidal_field_in_plasma_at_point_370____________________________________ b_plasma_toroidal_profile370___ 5.46176957652756201e+00 +Toroidal_field_in_plasma_at_point_371____________________________________ b_plasma_toroidal_profile371___ 5.45778869491201757e+00 +Toroidal_field_in_plasma_at_point_372____________________________________ b_plasma_toroidal_profile372___ 5.45381361210436122e+00 +Toroidal_field_in_plasma_at_point_373____________________________________ b_plasma_toroidal_profile373___ 5.44984431544344083e+00 +Toroidal_field_in_plasma_at_point_374____________________________________ b_plasma_toroidal_profile374___ 5.44588079230493705e+00 +Toroidal_field_in_plasma_at_point_375____________________________________ b_plasma_toroidal_profile375___ 5.44192303010122735e+00 +Toroidal_field_in_plasma_at_point_376____________________________________ b_plasma_toroidal_profile376___ 5.43797101628125557e+00 +Toroidal_field_in_plasma_at_point_377____________________________________ b_plasma_toroidal_profile377___ 5.43402473833039767e+00 +Toroidal_field_in_plasma_at_point_378____________________________________ b_plasma_toroidal_profile378___ 5.43008418377033220e+00 +Toroidal_field_in_plasma_at_point_379____________________________________ b_plasma_toroidal_profile379___ 5.42614934015890427e+00 +Toroidal_field_in_plasma_at_point_380____________________________________ b_plasma_toroidal_profile380___ 5.42222019508999864e+00 +Toroidal_field_in_plasma_at_point_381____________________________________ b_plasma_toroidal_profile381___ 5.41829673619340646e+00 +Toroidal_field_in_plasma_at_point_382____________________________________ b_plasma_toroidal_profile382___ 5.41437895113469825e+00 +Toroidal_field_in_plasma_at_point_383____________________________________ b_plasma_toroidal_profile383___ 5.41046682761509246e+00 +Toroidal_field_in_plasma_at_point_384____________________________________ b_plasma_toroidal_profile384___ 5.40656035337132757e+00 +Toroidal_field_in_plasma_at_point_385____________________________________ b_plasma_toroidal_profile385___ 5.40265951617553242e+00 +Toroidal_field_in_plasma_at_point_386____________________________________ b_plasma_toroidal_profile386___ 5.39876430383510364e+00 +Toroidal_field_in_plasma_at_point_387____________________________________ b_plasma_toroidal_profile387___ 5.39487470419257065e+00 +Toroidal_field_in_plasma_at_point_388____________________________________ b_plasma_toroidal_profile388___ 5.39099070512547751e+00 +Toroidal_field_in_plasma_at_point_389____________________________________ b_plasma_toroidal_profile389___ 5.38711229454625062e+00 +Toroidal_field_in_plasma_at_point_390____________________________________ b_plasma_toroidal_profile390___ 5.38323946040207701e+00 +Toroidal_field_in_plasma_at_point_391____________________________________ b_plasma_toroidal_profile391___ 5.37937219067477645e+00 +Toroidal_field_in_plasma_at_point_392____________________________________ b_plasma_toroidal_profile392___ 5.37551047338068066e+00 +Toroidal_field_in_plasma_at_point_393____________________________________ b_plasma_toroidal_profile393___ 5.37165429657050808e+00 +Toroidal_field_in_plasma_at_point_394____________________________________ b_plasma_toroidal_profile394___ 5.36780364832923862e+00 +Toroidal_field_in_plasma_at_point_395____________________________________ b_plasma_toroidal_profile395___ 5.36395851677599467e+00 +Toroidal_field_in_plasma_at_point_396____________________________________ b_plasma_toroidal_profile396___ 5.36011889006391407e+00 +Toroidal_field_in_plasma_at_point_397____________________________________ b_plasma_toroidal_profile397___ 5.35628475638003465e+00 +Toroidal_field_in_plasma_at_point_398____________________________________ b_plasma_toroidal_profile398___ 5.35245610394516635e+00 +Toroidal_field_in_plasma_at_point_399____________________________________ b_plasma_toroidal_profile399___ 5.34863292101377663e+00 +Toroidal_field_in_plasma_at_point_400____________________________________ b_plasma_toroidal_profile400___ 5.34481519587386700e+00 +Toroidal_field_in_plasma_at_point_401____________________________________ b_plasma_toroidal_profile401___ 5.34100291684685313e+00 +Toroidal_field_in_plasma_at_point_402____________________________________ b_plasma_toroidal_profile402___ 5.33719607228744675e+00 +Toroidal_field_in_plasma_at_point_403____________________________________ b_plasma_toroidal_profile403___ 5.33339465058353834e+00 +Toroidal_field_in_plasma_at_point_404____________________________________ b_plasma_toroidal_profile404___ 5.32959864015607732e+00 +Toroidal_field_in_plasma_at_point_405____________________________________ b_plasma_toroidal_profile405___ 5.32580802945895293e+00 +Toroidal_field_in_plasma_at_point_406____________________________________ b_plasma_toroidal_profile406___ 5.32202280697888330e+00 +Toroidal_field_in_plasma_at_point_407____________________________________ b_plasma_toroidal_profile407___ 5.31824296123529017e+00 +Toroidal_field_in_plasma_at_point_408____________________________________ b_plasma_toroidal_profile408___ 5.31446848078019052e+00 +Toroidal_field_in_plasma_at_point_409____________________________________ b_plasma_toroidal_profile409___ 5.31069935419807670e+00 +Toroidal_field_in_plasma_at_point_410____________________________________ b_plasma_toroidal_profile410___ 5.30693557010580363e+00 +Toroidal_field_in_plasma_at_point_411____________________________________ b_plasma_toroidal_profile411___ 5.30317711715247064e+00 +Toroidal_field_in_plasma_at_point_412____________________________________ b_plasma_toroidal_profile412___ 5.29942398401931314e+00 +Toroidal_field_in_plasma_at_point_413____________________________________ b_plasma_toroidal_profile413___ 5.29567615941958181e+00 +Toroidal_field_in_plasma_at_point_414____________________________________ b_plasma_toroidal_profile414___ 5.29193363209843692e+00 +Toroidal_field_in_plasma_at_point_415____________________________________ b_plasma_toroidal_profile415___ 5.28819639083283111e+00 +Toroidal_field_in_plasma_at_point_416____________________________________ b_plasma_toroidal_profile416___ 5.28446442443139652e+00 +Toroidal_field_in_plasma_at_point_417____________________________________ b_plasma_toroidal_profile417___ 5.28073772173433564e+00 +Toroidal_field_in_plasma_at_point_418____________________________________ b_plasma_toroidal_profile418___ 5.27701627161331110e+00 +Toroidal_field_in_plasma_at_point_419____________________________________ b_plasma_toroidal_profile419___ 5.27330006297132936e+00 +Toroidal_field_in_plasma_at_point_420____________________________________ b_plasma_toroidal_profile420___ 5.26958908474263765e+00 +Toroidal_field_in_plasma_at_point_421____________________________________ b_plasma_toroidal_profile421___ 5.26588332589260766e+00 +Toroidal_field_in_plasma_at_point_422____________________________________ b_plasma_toroidal_profile422___ 5.26218277541763069e+00 +Toroidal_field_in_plasma_at_point_423____________________________________ b_plasma_toroidal_profile423___ 5.25848742234500577e+00 +Toroidal_field_in_plasma_at_point_424____________________________________ b_plasma_toroidal_profile424___ 5.25479725573283396e+00 +Toroidal_field_in_plasma_at_point_425____________________________________ b_plasma_toroidal_profile425___ 5.25111226466990733e+00 +Toroidal_field_in_plasma_at_point_426____________________________________ b_plasma_toroidal_profile426___ 5.24743243827560502e+00 +Toroidal_field_in_plasma_at_point_427____________________________________ b_plasma_toroidal_profile427___ 5.24375776569978225e+00 +Toroidal_field_in_plasma_at_point_428____________________________________ b_plasma_toroidal_profile428___ 5.24008823612266550e+00 +Toroidal_field_in_plasma_at_point_429____________________________________ b_plasma_toroidal_profile429___ 5.23642383875474682e+00 +Toroidal_field_in_plasma_at_point_430____________________________________ b_plasma_toroidal_profile430___ 5.23276456283667990e+00 +Toroidal_field_in_plasma_at_point_431____________________________________ b_plasma_toroidal_profile431___ 5.22911039763916818e+00 +Toroidal_field_in_plasma_at_point_432____________________________________ b_plasma_toroidal_profile432___ 5.22546133246286715e+00 +Toroidal_field_in_plasma_at_point_433____________________________________ b_plasma_toroidal_profile433___ 5.22181735663827684e+00 +Toroidal_field_in_plasma_at_point_434____________________________________ b_plasma_toroidal_profile434___ 5.21817845952563708e+00 +Toroidal_field_in_plasma_at_point_435____________________________________ b_plasma_toroidal_profile435___ 5.21454463051482442e+00 +Toroidal_field_in_plasma_at_point_436____________________________________ b_plasma_toroidal_profile436___ 5.21091585902525267e+00 +Toroidal_field_in_plasma_at_point_437____________________________________ b_plasma_toroidal_profile437___ 5.20729213450576367e+00 +Toroidal_field_in_plasma_at_point_438____________________________________ b_plasma_toroidal_profile438___ 5.20367344643452956e+00 +Toroidal_field_in_plasma_at_point_439____________________________________ b_plasma_toroidal_profile439___ 5.20005978431895066e+00 +Toroidal_field_in_plasma_at_point_440____________________________________ b_plasma_toroidal_profile440___ 5.19645113769555067e+00 +Toroidal_field_in_plasma_at_point_441____________________________________ b_plasma_toroidal_profile441___ 5.19284749612988072e+00 +Toroidal_field_in_plasma_at_point_442____________________________________ b_plasma_toroidal_profile442___ 5.18924884921641549e+00 +Toroidal_field_in_plasma_at_point_443____________________________________ b_plasma_toroidal_profile443___ 5.18565518657845459e+00 +Toroidal_field_in_plasma_at_point_444____________________________________ b_plasma_toroidal_profile444___ 5.18206649786801954e+00 +Toroidal_field_in_plasma_at_point_445____________________________________ b_plasma_toroidal_profile445___ 5.17848277276575963e+00 +Toroidal_field_in_plasma_at_point_446____________________________________ b_plasma_toroidal_profile446___ 5.17490400098084891e+00 +Toroidal_field_in_plasma_at_point_447____________________________________ b_plasma_toroidal_profile447___ 5.17133017225088931e+00 +Toroidal_field_in_plasma_at_point_448____________________________________ b_plasma_toroidal_profile448___ 5.16776127634181393e+00 +Toroidal_field_in_plasma_at_point_449____________________________________ b_plasma_toroidal_profile449___ 5.16419730304778479e+00 +Toroidal_field_in_plasma_at_point_450____________________________________ b_plasma_toroidal_profile450___ 5.16063824219110145e+00 +Toroidal_field_in_plasma_at_point_451____________________________________ b_plasma_toroidal_profile451___ 5.15708408362209969e+00 +Toroidal_field_in_plasma_at_point_452____________________________________ b_plasma_toroidal_profile452___ 5.15353481721905649e+00 +Toroidal_field_in_plasma_at_point_453____________________________________ b_plasma_toroidal_profile453___ 5.14999043288809411e+00 +Toroidal_field_in_plasma_at_point_454____________________________________ b_plasma_toroidal_profile454___ 5.14645092056308506e+00 +Toroidal_field_in_plasma_at_point_455____________________________________ b_plasma_toroidal_profile455___ 5.14291627020555531e+00 +Toroidal_field_in_plasma_at_point_456____________________________________ b_plasma_toroidal_profile456___ 5.13938647180459007e+00 +Toroidal_field_in_plasma_at_point_457____________________________________ b_plasma_toroidal_profile457___ 5.13586151537674063e+00 +Toroidal_field_in_plasma_at_point_458____________________________________ b_plasma_toroidal_profile458___ 5.13234139096592745e+00 +Toroidal_field_in_plasma_at_point_459____________________________________ b_plasma_toroidal_profile459___ 5.12882608864334788e+00 +Toroidal_field_in_plasma_at_point_460____________________________________ b_plasma_toroidal_profile460___ 5.12531559850738461e+00 +Toroidal_field_in_plasma_at_point_461____________________________________ b_plasma_toroidal_profile461___ 5.12180991068350799e+00 +Toroidal_field_in_plasma_at_point_462____________________________________ b_plasma_toroidal_profile462___ 5.11830901532418814e+00 +Toroidal_field_in_plasma_at_point_463____________________________________ b_plasma_toroidal_profile463___ 5.11481290260880339e+00 +Toroidal_field_in_plasma_at_point_464____________________________________ b_plasma_toroidal_profile464___ 5.11132156274354088e+00 +Toroidal_field_in_plasma_at_point_465____________________________________ b_plasma_toroidal_profile465___ 5.10783498596131480e+00 +Toroidal_field_in_plasma_at_point_466____________________________________ b_plasma_toroidal_profile466___ 5.10435316252166871e+00 +Toroidal_field_in_plasma_at_point_467____________________________________ b_plasma_toroidal_profile467___ 5.10087608271068671e+00 +Toroidal_field_in_plasma_at_point_468____________________________________ b_plasma_toroidal_profile468___ 5.09740373684090464e+00 +Toroidal_field_in_plasma_at_point_469____________________________________ b_plasma_toroidal_profile469___ 5.09393611525121681e+00 +Toroidal_field_in_plasma_at_point_470____________________________________ b_plasma_toroidal_profile470___ 5.09047320830678984e+00 +Toroidal_field_in_plasma_at_point_471____________________________________ b_plasma_toroidal_profile471___ 5.08701500639897297e+00 +Toroidal_field_in_plasma_at_point_472____________________________________ b_plasma_toroidal_profile472___ 5.08356149994520656e+00 +Toroidal_field_in_plasma_at_point_473____________________________________ b_plasma_toroidal_profile473___ 5.08011267938893418e+00 +Toroidal_field_in_plasma_at_point_474____________________________________ b_plasma_toroidal_profile474___ 5.07666853519951822e+00 +Toroidal_field_in_plasma_at_point_475____________________________________ b_plasma_toroidal_profile475___ 5.07322905787214662e+00 +Toroidal_field_in_plasma_at_point_476____________________________________ b_plasma_toroidal_profile476___ 5.06979423792775119e+00 +Toroidal_field_in_plasma_at_point_477____________________________________ b_plasma_toroidal_profile477___ 5.06636406591291522e+00 +Toroidal_field_in_plasma_at_point_478____________________________________ b_plasma_toroidal_profile478___ 5.06293853239978908e+00 +Toroidal_field_in_plasma_at_point_479____________________________________ b_plasma_toroidal_profile479___ 5.05951762798600591e+00 +Toroidal_field_in_plasma_at_point_480____________________________________ b_plasma_toroidal_profile480___ 5.05610134329459004e+00 +Toroidal_field_in_plasma_at_point_481____________________________________ b_plasma_toroidal_profile481___ 5.05268966897387894e+00 +Toroidal_field_in_plasma_at_point_482____________________________________ b_plasma_toroidal_profile482___ 5.04928259569742988e+00 +Toroidal_field_in_plasma_at_point_483____________________________________ b_plasma_toroidal_profile483___ 5.04588011416394089e+00 +Toroidal_field_in_plasma_at_point_484____________________________________ b_plasma_toroidal_profile484___ 5.04248221509716377e+00 +Toroidal_field_in_plasma_at_point_485____________________________________ b_plasma_toroidal_profile485___ 5.03908888924581966e+00 +Toroidal_field_in_plasma_at_point_486____________________________________ b_plasma_toroidal_profile486___ 5.03570012738351558e+00 +Toroidal_field_in_plasma_at_point_487____________________________________ b_plasma_toroidal_profile487___ 5.03231592030866182e+00 +Toroidal_field_in_plasma_at_point_488____________________________________ b_plasma_toroidal_profile488___ 5.02893625884438400e+00 +Toroidal_field_in_plasma_at_point_489____________________________________ b_plasma_toroidal_profile489___ 5.02556113383844849e+00 +Toroidal_field_in_plasma_at_point_490____________________________________ b_plasma_toroidal_profile490___ 5.02219053616317090e+00 +Toroidal_field_in_plasma_at_point_491____________________________________ b_plasma_toroidal_profile491___ 5.01882445671534061e+00 +Toroidal_field_in_plasma_at_point_492____________________________________ b_plasma_toroidal_profile492___ 5.01546288641613458e+00 +Toroidal_field_in_plasma_at_point_493____________________________________ b_plasma_toroidal_profile493___ 5.01210581621103657e+00 +Toroidal_field_in_plasma_at_point_494____________________________________ b_plasma_toroidal_profile494___ 5.00875323706975806e+00 +Toroidal_field_in_plasma_at_point_495____________________________________ b_plasma_toroidal_profile495___ 5.00540513998615566e+00 +Toroidal_field_in_plasma_at_point_496____________________________________ b_plasma_toroidal_profile496___ 5.00206151597814852e+00 +Toroidal_field_in_plasma_at_point_497____________________________________ b_plasma_toroidal_profile497___ 4.99872235608764282e+00 +Toroidal_field_in_plasma_at_point_498____________________________________ b_plasma_toroidal_profile498___ 4.99538765138044649e+00 +Toroidal_field_in_plasma_at_point_499____________________________________ b_plasma_toroidal_profile499___ 4.99205739294619200e+00 +Toroidal_field_in_plasma_at_point_500____________________________________ b_plasma_toroidal_profile500___ 4.98873157189825989e+00 +Toroidal_field_in_plasma_at_point_501____________________________________ b_plasma_toroidal_profile501___ 4.98541017937369357e+00 +Toroidal_field_in_plasma_at_point_502____________________________________ b_plasma_toroidal_profile502___ 4.98209320653312648e+00 +Toroidal_field_in_plasma_at_point_503____________________________________ b_plasma_toroidal_profile503___ 4.97878064456069680e+00 +Toroidal_field_in_plasma_at_point_504____________________________________ b_plasma_toroidal_profile504___ 4.97547248466397996e+00 +Toroidal_field_in_plasma_at_point_505____________________________________ b_plasma_toroidal_profile505___ 4.97216871807389627e+00 +Toroidal_field_in_plasma_at_point_506____________________________________ b_plasma_toroidal_profile506___ 4.96886933604465053e+00 +Toroidal_field_in_plasma_at_point_507____________________________________ b_plasma_toroidal_profile507___ 4.96557432985363967e+00 +Toroidal_field_in_plasma_at_point_508____________________________________ b_plasma_toroidal_profile508___ 4.96228369080138343e+00 +Toroidal_field_in_plasma_at_point_509____________________________________ b_plasma_toroidal_profile509___ 4.95899741021144891e+00 +Toroidal_field_in_plasma_at_point_510____________________________________ b_plasma_toroidal_profile510___ 4.95571547943036972e+00 +Toroidal_field_in_plasma_at_point_511____________________________________ b_plasma_toroidal_profile511___ 4.95243788982757138e+00 +Toroidal_field_in_plasma_at_point_512____________________________________ b_plasma_toroidal_profile512___ 4.94916463279529939e+00 +Toroidal_field_in_plasma_at_point_513____________________________________ b_plasma_toroidal_profile513___ 4.94589569974853926e+00 +Toroidal_field_in_plasma_at_point_514____________________________________ b_plasma_toroidal_profile514___ 4.94263108212494284e+00 +Toroidal_field_in_plasma_at_point_515____________________________________ b_plasma_toroidal_profile515___ 4.93937077138475544e+00 +Toroidal_field_in_plasma_at_point_516____________________________________ b_plasma_toroidal_profile516___ 4.93611475901073771e+00 +Toroidal_field_in_plasma_at_point_517____________________________________ b_plasma_toroidal_profile517___ 4.93286303650809543e+00 +Toroidal_field_in_plasma_at_point_518____________________________________ b_plasma_toroidal_profile518___ 4.92961559540440319e+00 +Toroidal_field_in_plasma_at_point_519____________________________________ b_plasma_toroidal_profile519___ 4.92637242724953239e+00 +Toroidal_field_in_plasma_at_point_520____________________________________ b_plasma_toroidal_profile520___ 4.92313352361557399e+00 +Toroidal_field_in_plasma_at_point_521____________________________________ b_plasma_toroidal_profile521___ 4.91989887609677368e+00 +Toroidal_field_in_plasma_at_point_522____________________________________ b_plasma_toroidal_profile522___ 4.91666847630944659e+00 +Toroidal_field_in_plasma_at_point_523____________________________________ b_plasma_toroidal_profile523___ 4.91344231589192226e+00 +Toroidal_field_in_plasma_at_point_524____________________________________ b_plasma_toroidal_profile524___ 4.91022038650445136e+00 +Toroidal_field_in_plasma_at_point_525____________________________________ b_plasma_toroidal_profile525___ 4.90700267982915417e+00 +Toroidal_field_in_plasma_at_point_526____________________________________ b_plasma_toroidal_profile526___ 4.90378918756993354e+00 +Toroidal_field_in_plasma_at_point_527____________________________________ b_plasma_toroidal_profile527___ 4.90057990145241362e+00 +Toroidal_field_in_plasma_at_point_528____________________________________ b_plasma_toroidal_profile528___ 4.89737481322386436e+00 +Toroidal_field_in_plasma_at_point_529____________________________________ b_plasma_toroidal_profile529___ 4.89417391465312956e+00 +Toroidal_field_in_plasma_at_point_530____________________________________ b_plasma_toroidal_profile530___ 4.89097719753056026e+00 +Toroidal_field_in_plasma_at_point_531____________________________________ b_plasma_toroidal_profile531___ 4.88778465366794279e+00 +Toroidal_field_in_plasma_at_point_532____________________________________ b_plasma_toroidal_profile532___ 4.88459627489842685e+00 +Toroidal_field_in_plasma_at_point_533____________________________________ b_plasma_toroidal_profile533___ 4.88141205307645887e+00 +Toroidal_field_in_plasma_at_point_534____________________________________ b_plasma_toroidal_profile534___ 4.87823198007771275e+00 +Toroidal_field_in_plasma_at_point_535____________________________________ b_plasma_toroidal_profile535___ 4.87505604779901613e+00 +Toroidal_field_in_plasma_at_point_536____________________________________ b_plasma_toroidal_profile536___ 4.87188424815828824e+00 +Toroidal_field_in_plasma_at_point_537____________________________________ b_plasma_toroidal_profile537___ 4.86871657309446615e+00 +Toroidal_field_in_plasma_at_point_538____________________________________ b_plasma_toroidal_profile538___ 4.86555301456743905e+00 +Toroidal_field_in_plasma_at_point_539____________________________________ b_plasma_toroidal_profile539___ 4.86239356455797989e+00 +Toroidal_field_in_plasma_at_point_540____________________________________ b_plasma_toroidal_profile540___ 4.85923821506767606e+00 +Toroidal_field_in_plasma_at_point_541____________________________________ b_plasma_toroidal_profile541___ 4.85608695811886459e+00 +Toroidal_field_in_plasma_at_point_542____________________________________ b_plasma_toroidal_profile542___ 4.85293978575456197e+00 +Toroidal_field_in_plasma_at_point_543____________________________________ b_plasma_toroidal_profile543___ 4.84979669003839842e+00 +Toroidal_field_in_plasma_at_point_544____________________________________ b_plasma_toroidal_profile544___ 4.84665766305455659e+00 +Toroidal_field_in_plasma_at_point_545____________________________________ b_plasma_toroidal_profile545___ 4.84352269690768900e+00 +Toroidal_field_in_plasma_at_point_546____________________________________ b_plasma_toroidal_profile546___ 4.84039178372287626e+00 +Toroidal_field_in_plasma_at_point_547____________________________________ b_plasma_toroidal_profile547___ 4.83726491564553474e+00 +Toroidal_field_in_plasma_at_point_548____________________________________ b_plasma_toroidal_profile548___ 4.83414208484137387e+00 +Toroidal_field_in_plasma_at_point_549____________________________________ b_plasma_toroidal_profile549___ 4.83102328349631449e+00 +Toroidal_field_in_plasma_at_point_550____________________________________ b_plasma_toroidal_profile550___ 4.82790850381643377e+00 +Toroidal_field_in_plasma_at_point_551____________________________________ b_plasma_toroidal_profile551___ 4.82479773802789236e+00 +Toroidal_field_in_plasma_at_point_552____________________________________ b_plasma_toroidal_profile552___ 4.82169097837687577e+00 +Toroidal_field_in_plasma_at_point_553____________________________________ b_plasma_toroidal_profile553___ 4.81858821712952956e+00 +Toroidal_field_in_plasma_at_point_554____________________________________ b_plasma_toroidal_profile554___ 4.81548944657189004e+00 +Toroidal_field_in_plasma_at_point_555____________________________________ b_plasma_toroidal_profile555___ 4.81239465900982566e+00 +Toroidal_field_in_plasma_at_point_556____________________________________ b_plasma_toroidal_profile556___ 4.80930384676897127e+00 +Toroidal_field_in_plasma_at_point_557____________________________________ b_plasma_toroidal_profile557___ 4.80621700219466508e+00 +Toroidal_field_in_plasma_at_point_558____________________________________ b_plasma_toroidal_profile558___ 4.80313411765188469e+00 +Toroidal_field_in_plasma_at_point_559____________________________________ b_plasma_toroidal_profile559___ 4.80005518552518495e+00 +Toroidal_field_in_plasma_at_point_560____________________________________ b_plasma_toroidal_profile560___ 4.79698019821863486e+00 +Toroidal_field_in_plasma_at_point_561____________________________________ b_plasma_toroidal_profile561___ 4.79390914815575453e+00 +Toroidal_field_in_plasma_at_point_562____________________________________ b_plasma_toroidal_profile562___ 4.79084202777945567e+00 +Toroidal_field_in_plasma_at_point_563____________________________________ b_plasma_toroidal_profile563___ 4.78777882955197498e+00 +Toroidal_field_in_plasma_at_point_564____________________________________ b_plasma_toroidal_profile564___ 4.78471954595481641e+00 +Toroidal_field_in_plasma_at_point_565____________________________________ b_plasma_toroidal_profile565___ 4.78166416948869077e+00 +Toroidal_field_in_plasma_at_point_566____________________________________ b_plasma_toroidal_profile566___ 4.77861269267344468e+00 +Toroidal_field_in_plasma_at_point_567____________________________________ b_plasma_toroidal_profile567___ 4.77556510804801615e+00 +Toroidal_field_in_plasma_at_point_568____________________________________ b_plasma_toroidal_profile568___ 4.77252140817035553e+00 +Toroidal_field_in_plasma_at_point_569____________________________________ b_plasma_toroidal_profile569___ 4.76948158561738111e+00 +Toroidal_field_in_plasma_at_point_570____________________________________ b_plasma_toroidal_profile570___ 4.76644563298490631e+00 +Toroidal_field_in_plasma_at_point_571____________________________________ b_plasma_toroidal_profile571___ 4.76341354288758811e+00 +Toroidal_field_in_plasma_at_point_572____________________________________ b_plasma_toroidal_profile572___ 4.76038530795886050e+00 +Toroidal_field_in_plasma_at_point_573____________________________________ b_plasma_toroidal_profile573___ 4.75736092085088202e+00 +Toroidal_field_in_plasma_at_point_574____________________________________ b_plasma_toroidal_profile574___ 4.75434037423446920e+00 +Toroidal_field_in_plasma_at_point_575____________________________________ b_plasma_toroidal_profile575___ 4.75132366079904056e+00 +Toroidal_field_in_plasma_at_point_576____________________________________ b_plasma_toroidal_profile576___ 4.74831077325256068e+00 +Toroidal_field_in_plasma_at_point_577____________________________________ b_plasma_toroidal_profile577___ 4.74530170432147536e+00 +Toroidal_field_in_plasma_at_point_578____________________________________ b_plasma_toroidal_profile578___ 4.74229644675065742e+00 +Toroidal_field_in_plasma_at_point_579____________________________________ b_plasma_toroidal_profile579___ 4.73929499330334725e+00 +Toroidal_field_in_plasma_at_point_580____________________________________ b_plasma_toroidal_profile580___ 4.73629733676109321e+00 +Toroidal_field_in_plasma_at_point_581____________________________________ b_plasma_toroidal_profile581___ 4.73330346992369755e+00 +Toroidal_field_in_plasma_at_point_582____________________________________ b_plasma_toroidal_profile582___ 4.73031338560915326e+00 +Toroidal_field_in_plasma_at_point_583____________________________________ b_plasma_toroidal_profile583___ 4.72732707665359175e+00 +Toroidal_field_in_plasma_at_point_584____________________________________ b_plasma_toroidal_profile584___ 4.72434453591122328e+00 +Toroidal_field_in_plasma_at_point_585____________________________________ b_plasma_toroidal_profile585___ 4.72136575625428012e+00 +Toroidal_field_in_plasma_at_point_586____________________________________ b_plasma_toroidal_profile586___ 4.71839073057296154e+00 +Toroidal_field_in_plasma_at_point_587____________________________________ b_plasma_toroidal_profile587___ 4.71541945177536981e+00 +Toroidal_field_in_plasma_at_point_588____________________________________ b_plasma_toroidal_profile588___ 4.71245191278746933e+00 +Toroidal_field_in_plasma_at_point_589____________________________________ b_plasma_toroidal_profile589___ 4.70948810655301120e+00 +Toroidal_field_in_plasma_at_point_590____________________________________ b_plasma_toroidal_profile590___ 4.70652802603349318e+00 +Toroidal_field_in_plasma_at_point_591____________________________________ b_plasma_toroidal_profile591___ 4.70357166420809580e+00 +Toroidal_field_in_plasma_at_point_592____________________________________ b_plasma_toroidal_profile592___ 4.70061901407362726e+00 +Toroidal_field_in_plasma_at_point_593____________________________________ b_plasma_toroidal_profile593___ 4.69767006864447190e+00 +Toroidal_field_in_plasma_at_point_594____________________________________ b_plasma_toroidal_profile594___ 4.69472482095253163e+00 +Toroidal_field_in_plasma_at_point_595____________________________________ b_plasma_toroidal_profile595___ 4.69178326404717350e+00 +Toroidal_field_in_plasma_at_point_596____________________________________ b_plasma_toroidal_profile596___ 4.68884539099517106e+00 +Toroidal_field_in_plasma_at_point_597____________________________________ b_plasma_toroidal_profile597___ 4.68591119488065644e+00 +Toroidal_field_in_plasma_at_point_598____________________________________ b_plasma_toroidal_profile598___ 4.68298066880505814e+00 +Toroidal_field_in_plasma_at_point_599____________________________________ b_plasma_toroidal_profile599___ 4.68005380588705577e+00 +Toroidal_field_in_plasma_at_point_600____________________________________ b_plasma_toroidal_profile600___ 4.67713059926251606e+00 +Toroidal_field_in_plasma_at_point_601____________________________________ b_plasma_toroidal_profile601___ 4.67421104208445026e+00 +Toroidal_field_in_plasma_at_point_602____________________________________ b_plasma_toroidal_profile602___ 4.67129512752295017e+00 +Toroidal_field_in_plasma_at_point_603____________________________________ b_plasma_toroidal_profile603___ 4.66838284876514287e+00 +Toroidal_field_in_plasma_at_point_604____________________________________ b_plasma_toroidal_profile604___ 4.66547419901513383e+00 +Toroidal_field_in_plasma_at_point_605____________________________________ b_plasma_toroidal_profile605___ 4.66256917149395367e+00 +Toroidal_field_in_plasma_at_point_606____________________________________ b_plasma_toroidal_profile606___ 4.65966775943950662e+00 +Toroidal_field_in_plasma_at_point_607____________________________________ b_plasma_toroidal_profile607___ 4.65676995610652344e+00 +Toroidal_field_in_plasma_at_point_608____________________________________ b_plasma_toroidal_profile608___ 4.65387575476649307e+00 +Toroidal_field_in_plasma_at_point_609____________________________________ b_plasma_toroidal_profile609___ 4.65098514870763324e+00 +Toroidal_field_in_plasma_at_point_610____________________________________ b_plasma_toroidal_profile610___ 4.64809813123481597e+00 +Toroidal_field_in_plasma_at_point_611____________________________________ b_plasma_toroidal_profile611___ 4.64521469566953371e+00 +Toroidal_field_in_plasma_at_point_612____________________________________ b_plasma_toroidal_profile612___ 4.64233483534983726e+00 +Toroidal_field_in_plasma_at_point_613____________________________________ b_plasma_toroidal_profile613___ 4.63945854363029042e+00 +Toroidal_field_in_plasma_at_point_614____________________________________ b_plasma_toroidal_profile614___ 4.63658581388191227e+00 +Toroidal_field_in_plasma_at_point_615____________________________________ b_plasma_toroidal_profile615___ 4.63371663949213364e+00 +Toroidal_field_in_plasma_at_point_616____________________________________ b_plasma_toroidal_profile616___ 4.63085101386474207e+00 +Toroidal_field_in_plasma_at_point_617____________________________________ b_plasma_toroidal_profile617___ 4.62798893041983206e+00 +Toroidal_field_in_plasma_at_point_618____________________________________ b_plasma_toroidal_profile618___ 4.62513038259375442e+00 +Toroidal_field_in_plasma_at_point_619____________________________________ b_plasma_toroidal_profile619___ 4.62227536383906745e+00 +Toroidal_field_in_plasma_at_point_620____________________________________ b_plasma_toroidal_profile620___ 4.61942386762448365e+00 +Toroidal_field_in_plasma_at_point_621____________________________________ b_plasma_toroidal_profile621___ 4.61657588743482705e+00 +Toroidal_field_in_plasma_at_point_622____________________________________ b_plasma_toroidal_profile622___ 4.61373141677097287e+00 +Toroidal_field_in_plasma_at_point_623____________________________________ b_plasma_toroidal_profile623___ 4.61089044914980839e+00 +Toroidal_field_in_plasma_at_point_624____________________________________ b_plasma_toroidal_profile624___ 4.60805297810417791e+00 +Toroidal_field_in_plasma_at_point_625____________________________________ b_plasma_toroidal_profile625___ 4.60521899718283478e+00 +Toroidal_field_in_plasma_at_point_626____________________________________ b_plasma_toroidal_profile626___ 4.60238849995039256e+00 +Toroidal_field_in_plasma_at_point_627____________________________________ b_plasma_toroidal_profile627___ 4.59956147998727705e+00 +Toroidal_field_in_plasma_at_point_628____________________________________ b_plasma_toroidal_profile628___ 4.59673793088968008e+00 +Toroidal_field_in_plasma_at_point_629____________________________________ b_plasma_toroidal_profile629___ 4.59391784626950184e+00 +Toroidal_field_in_plasma_at_point_630____________________________________ b_plasma_toroidal_profile630___ 4.59110121975431618e+00 +Toroidal_field_in_plasma_at_point_631____________________________________ b_plasma_toroidal_profile631___ 4.58828804498730847e+00 +Toroidal_field_in_plasma_at_point_632____________________________________ b_plasma_toroidal_profile632___ 4.58547831562724451e+00 +Toroidal_field_in_plasma_at_point_633____________________________________ b_plasma_toroidal_profile633___ 4.58267202534840123e+00 +Toroidal_field_in_plasma_at_point_634____________________________________ b_plasma_toroidal_profile634___ 4.57986916784054365e+00 +Toroidal_field_in_plasma_at_point_635____________________________________ b_plasma_toroidal_profile635___ 4.57706973680885554e+00 +Toroidal_field_in_plasma_at_point_636____________________________________ b_plasma_toroidal_profile636___ 4.57427372597390836e+00 +Toroidal_field_in_plasma_at_point_637____________________________________ b_plasma_toroidal_profile637___ 4.57148112907160442e+00 +Toroidal_field_in_plasma_at_point_638____________________________________ b_plasma_toroidal_profile638___ 4.56869193985313515e+00 +Toroidal_field_in_plasma_at_point_639____________________________________ b_plasma_toroidal_profile639___ 4.56590615208493222e+00 +Toroidal_field_in_plasma_at_point_640____________________________________ b_plasma_toroidal_profile640___ 4.56312375954862226e+00 +Toroidal_field_in_plasma_at_point_641____________________________________ b_plasma_toroidal_profile641___ 4.56034475604097977e+00 +Toroidal_field_in_plasma_at_point_642____________________________________ b_plasma_toroidal_profile642___ 4.55756913537388275e+00 +Toroidal_field_in_plasma_at_point_643____________________________________ b_plasma_toroidal_profile643___ 4.55479689137426291e+00 +Toroidal_field_in_plasma_at_point_644____________________________________ b_plasma_toroidal_profile644___ 4.55202801788406664e+00 +Toroidal_field_in_plasma_at_point_645____________________________________ b_plasma_toroidal_profile645___ 4.54926250876019989e+00 +Toroidal_field_in_plasma_at_point_646____________________________________ b_plasma_toroidal_profile646___ 4.54650035787449269e+00 +Toroidal_field_in_plasma_at_point_647____________________________________ b_plasma_toroidal_profile647___ 4.54374155911364674e+00 +Toroidal_field_in_plasma_at_point_648____________________________________ b_plasma_toroidal_profile648___ 4.54098610637919187e+00 +Toroidal_field_in_plasma_at_point_649____________________________________ b_plasma_toroidal_profile649___ 4.53823399358744783e+00 +Toroidal_field_in_plasma_at_point_650____________________________________ b_plasma_toroidal_profile650___ 4.53548521466946575e+00 +Toroidal_field_in_plasma_at_point_651____________________________________ b_plasma_toroidal_profile651___ 4.53273976357099873e+00 +Toroidal_field_in_plasma_at_point_652____________________________________ b_plasma_toroidal_profile652___ 4.52999763425244240e+00 +Toroidal_field_in_plasma_at_point_653____________________________________ b_plasma_toroidal_profile653___ 4.52725882068880825e+00 +Toroidal_field_in_plasma_at_point_654____________________________________ b_plasma_toroidal_profile654___ 4.52452331686966058e+00 +Toroidal_field_in_plasma_at_point_655____________________________________ b_plasma_toroidal_profile655___ 4.52179111679908718e+00 +Toroidal_field_in_plasma_at_point_656____________________________________ b_plasma_toroidal_profile656___ 4.51906221449564782e+00 +Toroidal_field_in_plasma_at_point_657____________________________________ b_plasma_toroidal_profile657___ 4.51633660399233339e+00 +Toroidal_field_in_plasma_at_point_658____________________________________ b_plasma_toroidal_profile658___ 4.51361427933652148e+00 +Toroidal_field_in_plasma_at_point_659____________________________________ b_plasma_toroidal_profile659___ 4.51089523458993291e+00 +Toroidal_field_in_plasma_at_point_660____________________________________ b_plasma_toroidal_profile660___ 4.50817946382858992e+00 +Toroidal_field_in_plasma_at_point_661____________________________________ b_plasma_toroidal_profile661___ 4.50546696114277267e+00 +Toroidal_field_in_plasma_at_point_662____________________________________ b_plasma_toroidal_profile662___ 4.50275772063697488e+00 +Toroidal_field_in_plasma_at_point_663____________________________________ b_plasma_toroidal_profile663___ 4.50005173642986112e+00 +Toroidal_field_in_plasma_at_point_664____________________________________ b_plasma_toroidal_profile664___ 4.49734900265422777e+00 +Toroidal_field_in_plasma_at_point_665____________________________________ b_plasma_toroidal_profile665___ 4.49464951345695596e+00 +Toroidal_field_in_plasma_at_point_666____________________________________ b_plasma_toroidal_profile666___ 4.49195326299897335e+00 +Toroidal_field_in_plasma_at_point_667____________________________________ b_plasma_toroidal_profile667___ 4.48926024545520885e+00 +Toroidal_field_in_plasma_at_point_668____________________________________ b_plasma_toroidal_profile668___ 4.48657045501455354e+00 +Toroidal_field_in_plasma_at_point_669____________________________________ b_plasma_toroidal_profile669___ 4.48388388587981357e+00 +Toroidal_field_in_plasma_at_point_670____________________________________ b_plasma_toroidal_profile670___ 4.48120053226767734e+00 +Toroidal_field_in_plasma_at_point_671____________________________________ b_plasma_toroidal_profile671___ 4.47852038840866484e+00 +Toroidal_field_in_plasma_at_point_672____________________________________ b_plasma_toroidal_profile672___ 4.47584344854709482e+00 +Toroidal_field_in_plasma_at_point_673____________________________________ b_plasma_toroidal_profile673___ 4.47316970694103233e+00 +Toroidal_field_in_plasma_at_point_674____________________________________ b_plasma_toroidal_profile674___ 4.47049915786226215e+00 +Toroidal_field_in_plasma_at_point_675____________________________________ b_plasma_toroidal_profile675___ 4.46783179559623367e+00 +Toroidal_field_in_plasma_at_point_676____________________________________ b_plasma_toroidal_profile676___ 4.46516761444203247e+00 +Toroidal_field_in_plasma_at_point_677____________________________________ b_plasma_toroidal_profile677___ 4.46250660871232885e+00 +Toroidal_field_in_plasma_at_point_678____________________________________ b_plasma_toroidal_profile678___ 4.45984877273334668e+00 +Toroidal_field_in_plasma_at_point_679____________________________________ b_plasma_toroidal_profile679___ 4.45719410084481460e+00 +Toroidal_field_in_plasma_at_point_680____________________________________ b_plasma_toroidal_profile680___ 4.45454258739993403e+00 +Toroidal_field_in_plasma_at_point_681____________________________________ b_plasma_toroidal_profile681___ 4.45189422676533209e+00 +Toroidal_field_in_plasma_at_point_682____________________________________ b_plasma_toroidal_profile682___ 4.44924901332102696e+00 +Toroidal_field_in_plasma_at_point_683____________________________________ b_plasma_toroidal_profile683___ 4.44660694146038526e+00 +Toroidal_field_in_plasma_at_point_684____________________________________ b_plasma_toroidal_profile684___ 4.44396800559008209e+00 +Toroidal_field_in_plasma_at_point_685____________________________________ b_plasma_toroidal_profile685___ 4.44133220013006458e+00 +Toroidal_field_in_plasma_at_point_686____________________________________ b_plasma_toroidal_profile686___ 4.43869951951350838e+00 +Toroidal_field_in_plasma_at_point_687____________________________________ b_plasma_toroidal_profile687___ 4.43606995818678218e+00 +Toroidal_field_in_plasma_at_point_688____________________________________ b_plasma_toroidal_profile688___ 4.43344351060940767e+00 +Toroidal_field_in_plasma_at_point_689____________________________________ b_plasma_toroidal_profile689___ 4.43082017125401695e+00 +Toroidal_field_in_plasma_at_point_690____________________________________ b_plasma_toroidal_profile690___ 4.42819993460632144e+00 +Toroidal_field_in_plasma_at_point_691____________________________________ b_plasma_toroidal_profile691___ 4.42558279516506481e+00 +Toroidal_field_in_plasma_at_point_692____________________________________ b_plasma_toroidal_profile692___ 4.42296874744198920e+00 +Toroidal_field_in_plasma_at_point_693____________________________________ b_plasma_toroidal_profile693___ 4.42035778596179973e+00 +Toroidal_field_in_plasma_at_point_694____________________________________ b_plasma_toroidal_profile694___ 4.41774990526211653e+00 +Toroidal_field_in_plasma_at_point_695____________________________________ b_plasma_toroidal_profile695___ 4.41514509989344894e+00 +Toroidal_field_in_plasma_at_point_696____________________________________ b_plasma_toroidal_profile696___ 4.41254336441914408e+00 +Toroidal_field_in_plasma_at_point_697____________________________________ b_plasma_toroidal_profile697___ 4.40994469341536366e+00 +Toroidal_field_in_plasma_at_point_698____________________________________ b_plasma_toroidal_profile698___ 4.40734908147103521e+00 +Toroidal_field_in_plasma_at_point_699____________________________________ b_plasma_toroidal_profile699___ 4.40475652318781652e+00 +Toroidal_field_in_plasma_at_point_700____________________________________ b_plasma_toroidal_profile700___ 4.40216701318006365e+00 +Toroidal_field_in_plasma_at_point_701____________________________________ b_plasma_toroidal_profile701___ 4.39958054607478743e+00 +Toroidal_field_in_plasma_at_point_702____________________________________ b_plasma_toroidal_profile702___ 4.39699711651161973e+00 +Toroidal_field_in_plasma_at_point_703____________________________________ b_plasma_toroidal_profile703___ 4.39441671914277521e+00 +Toroidal_field_in_plasma_at_point_704____________________________________ b_plasma_toroidal_profile704___ 4.39183934863301406e+00 +Toroidal_field_in_plasma_at_point_705____________________________________ b_plasma_toroidal_profile705___ 4.38926499965960648e+00 +Toroidal_field_in_plasma_at_point_706____________________________________ b_plasma_toroidal_profile706___ 4.38669366691229534e+00 +Toroidal_field_in_plasma_at_point_707____________________________________ b_plasma_toroidal_profile707___ 4.38412534509326068e+00 +Toroidal_field_in_plasma_at_point_708____________________________________ b_plasma_toroidal_profile708___ 4.38156002891707974e+00 +Toroidal_field_in_plasma_at_point_709____________________________________ b_plasma_toroidal_profile709___ 4.37899771311069497e+00 +Toroidal_field_in_plasma_at_point_710____________________________________ b_plasma_toroidal_profile710___ 4.37643839241337762e+00 +Toroidal_field_in_plasma_at_point_711____________________________________ b_plasma_toroidal_profile711___ 4.37388206157668780e+00 +Toroidal_field_in_plasma_at_point_712____________________________________ b_plasma_toroidal_profile712___ 4.37132871536444245e+00 +Toroidal_field_in_plasma_at_point_713____________________________________ b_plasma_toroidal_profile713___ 4.36877834855267633e+00 +Toroidal_field_in_plasma_at_point_714____________________________________ b_plasma_toroidal_profile714___ 4.36623095592961441e+00 +Toroidal_field_in_plasma_at_point_715____________________________________ b_plasma_toroidal_profile715___ 4.36368653229562220e+00 +Toroidal_field_in_plasma_at_point_716____________________________________ b_plasma_toroidal_profile716___ 4.36114507246318528e+00 +Toroidal_field_in_plasma_at_point_717____________________________________ b_plasma_toroidal_profile717___ 4.35860657125686135e+00 +Toroidal_field_in_plasma_at_point_718____________________________________ b_plasma_toroidal_profile718___ 4.35607102351325626e+00 +Toroidal_field_in_plasma_at_point_719____________________________________ b_plasma_toroidal_profile719___ 4.35353842408098135e+00 +Toroidal_field_in_plasma_at_point_720____________________________________ b_plasma_toroidal_profile720___ 4.35100876782062063e+00 +Toroidal_field_in_plasma_at_point_721____________________________________ b_plasma_toroidal_profile721___ 4.34848204960469698e+00 +Toroidal_field_in_plasma_at_point_722____________________________________ b_plasma_toroidal_profile722___ 4.34595826431763665e+00 +Toroidal_field_in_plasma_at_point_723____________________________________ b_plasma_toroidal_profile723___ 4.34343740685573554e+00 +Toroidal_field_in_plasma_at_point_724____________________________________ b_plasma_toroidal_profile724___ 4.34091947212712359e+00 +Toroidal_field_in_plasma_at_point_725____________________________________ b_plasma_toroidal_profile725___ 4.33840445505173200e+00 +Toroidal_field_in_plasma_at_point_726____________________________________ b_plasma_toroidal_profile726___ 4.33589235056125588e+00 +Toroidal_field_in_plasma_at_point_727____________________________________ b_plasma_toroidal_profile727___ 4.33338315359912585e+00 +Toroidal_field_in_plasma_at_point_728____________________________________ b_plasma_toroidal_profile728___ 4.33087685912046805e+00 +Toroidal_field_in_plasma_at_point_729____________________________________ b_plasma_toroidal_profile729___ 4.32837346209207485e+00 +Toroidal_field_in_plasma_at_point_730____________________________________ b_plasma_toroidal_profile730___ 4.32587295749236844e+00 +Toroidal_field_in_plasma_at_point_731____________________________________ b_plasma_toroidal_profile731___ 4.32337534031136794e+00 +Toroidal_field_in_plasma_at_point_732____________________________________ b_plasma_toroidal_profile732___ 4.32088060555065745e+00 +Toroidal_field_in_plasma_at_point_733____________________________________ b_plasma_toroidal_profile733___ 4.31838874822335050e+00 +Toroidal_field_in_plasma_at_point_734____________________________________ b_plasma_toroidal_profile734___ 4.31589976335405634e+00 +Toroidal_field_in_plasma_at_point_735____________________________________ b_plasma_toroidal_profile735___ 4.31341364597885324e+00 +Toroidal_field_in_plasma_at_point_736____________________________________ b_plasma_toroidal_profile736___ 4.31093039114524323e+00 +Toroidal_field_in_plasma_at_point_737____________________________________ b_plasma_toroidal_profile737___ 4.30844999391213435e+00 +Toroidal_field_in_plasma_at_point_738____________________________________ b_plasma_toroidal_profile738___ 4.30597244934979173e+00 +Toroidal_field_in_plasma_at_point_739____________________________________ b_plasma_toroidal_profile739___ 4.30349775253982081e+00 +Toroidal_field_in_plasma_at_point_740____________________________________ b_plasma_toroidal_profile740___ 4.30102589857512285e+00 +Toroidal_field_in_plasma_at_point_741____________________________________ b_plasma_toroidal_profile741___ 4.29855688255986745e+00 +Toroidal_field_in_plasma_at_point_742____________________________________ b_plasma_toroidal_profile742___ 4.29609069960945966e+00 +Toroidal_field_in_plasma_at_point_743____________________________________ b_plasma_toroidal_profile743___ 4.29362734485050979e+00 +Toroidal_field_in_plasma_at_point_744____________________________________ b_plasma_toroidal_profile744___ 4.29116681342079609e+00 +Toroidal_field_in_plasma_at_point_745____________________________________ b_plasma_toroidal_profile745___ 4.28870910046923726e+00 +Toroidal_field_in_plasma_at_point_746____________________________________ b_plasma_toroidal_profile746___ 4.28625420115586042e+00 +Toroidal_field_in_plasma_at_point_747____________________________________ b_plasma_toroidal_profile747___ 4.28380211065176741e+00 +Toroidal_field_in_plasma_at_point_748____________________________________ b_plasma_toroidal_profile748___ 4.28135282413910190e+00 +Toroidal_field_in_plasma_at_point_749____________________________________ b_plasma_toroidal_profile749___ 4.27890633681102184e+00 +Toroidal_field_in_plasma_at_point_750____________________________________ b_plasma_toroidal_profile750___ 4.27646264387166664e+00 +Toroidal_field_in_plasma_at_point_751____________________________________ b_plasma_toroidal_profile751___ 4.27402174053612427e+00 +Toroidal_field_in_plasma_at_point_752____________________________________ b_plasma_toroidal_profile752___ 4.27158362203039843e+00 +Toroidal_field_in_plasma_at_point_753____________________________________ b_plasma_toroidal_profile753___ 4.26914828359138454e+00 +Toroidal_field_in_plasma_at_point_754____________________________________ b_plasma_toroidal_profile754___ 4.26671572046683156e+00 +Toroidal_field_in_plasma_at_point_755____________________________________ b_plasma_toroidal_profile755___ 4.26428592791531180e+00 +Toroidal_field_in_plasma_at_point_756____________________________________ b_plasma_toroidal_profile756___ 4.26185890120619781e+00 +Toroidal_field_in_plasma_at_point_757____________________________________ b_plasma_toroidal_profile757___ 4.25943463561961799e+00 +Toroidal_field_in_plasma_at_point_758____________________________________ b_plasma_toroidal_profile758___ 4.25701312644644059e+00 +Toroidal_field_in_plasma_at_point_759____________________________________ b_plasma_toroidal_profile759___ 4.25459436898823196e+00 +Toroidal_field_in_plasma_at_point_760____________________________________ b_plasma_toroidal_profile760___ 4.25217835855723436e+00 +Toroidal_field_in_plasma_at_point_761____________________________________ b_plasma_toroidal_profile761___ 4.24976509047632689e+00 +Toroidal_field_in_plasma_at_point_762____________________________________ b_plasma_toroidal_profile762___ 4.24735456007900680e+00 +Toroidal_field_in_plasma_at_point_763____________________________________ b_plasma_toroidal_profile763___ 4.24494676270934690e+00 +Toroidal_field_in_plasma_at_point_764____________________________________ b_plasma_toroidal_profile764___ 4.24254169372197687e+00 +Toroidal_field_in_plasma_at_point_765____________________________________ b_plasma_toroidal_profile765___ 4.24013934848204332e+00 +Toroidal_field_in_plasma_at_point_766____________________________________ b_plasma_toroidal_profile766___ 4.23773972236518848e+00 +Toroidal_field_in_plasma_at_point_767____________________________________ b_plasma_toroidal_profile767___ 4.23534281075751640e+00 +Toroidal_field_in_plasma_at_point_768____________________________________ b_plasma_toroidal_profile768___ 4.23294860905556192e+00 +Toroidal_field_in_plasma_at_point_769____________________________________ b_plasma_toroidal_profile769___ 4.23055711266626489e+00 +Toroidal_field_in_plasma_at_point_770____________________________________ b_plasma_toroidal_profile770___ 4.22816831700693907e+00 +Toroidal_field_in_plasma_at_point_771____________________________________ b_plasma_toroidal_profile771___ 4.22578221750524197e+00 +Toroidal_field_in_plasma_at_point_772____________________________________ b_plasma_toroidal_profile772___ 4.22339880959914815e+00 +Toroidal_field_in_plasma_at_point_773____________________________________ b_plasma_toroidal_profile773___ 4.22101808873691642e+00 +Toroidal_field_in_plasma_at_point_774____________________________________ b_plasma_toroidal_profile774___ 4.21864005037706313e+00 +Toroidal_field_in_plasma_at_point_775____________________________________ b_plasma_toroidal_profile775___ 4.21626468998833825e+00 +Toroidal_field_in_plasma_at_point_776____________________________________ b_plasma_toroidal_profile776___ 4.21389200304968359e+00 +Toroidal_field_in_plasma_at_point_777____________________________________ b_plasma_toroidal_profile777___ 4.21152198505021857e+00 +Toroidal_field_in_plasma_at_point_778____________________________________ b_plasma_toroidal_profile778___ 4.20915463148920033e+00 +Toroidal_field_in_plasma_at_point_779____________________________________ b_plasma_toroidal_profile779___ 4.20678993787600497e+00 +Toroidal_field_in_plasma_at_point_780____________________________________ b_plasma_toroidal_profile780___ 4.20442789973008857e+00 +Toroidal_field_in_plasma_at_point_781____________________________________ b_plasma_toroidal_profile781___ 4.20206851258097025e+00 +Toroidal_field_in_plasma_at_point_782____________________________________ b_plasma_toroidal_profile782___ 4.19971177196819312e+00 +Toroidal_field_in_plasma_at_point_783____________________________________ b_plasma_toroidal_profile783___ 4.19735767344130561e+00 +Toroidal_field_in_plasma_at_point_784____________________________________ b_plasma_toroidal_profile784___ 4.19500621255982509e+00 +Toroidal_field_in_plasma_at_point_785____________________________________ b_plasma_toroidal_profile785___ 4.19265738489321826e+00 +Toroidal_field_in_plasma_at_point_786____________________________________ b_plasma_toroidal_profile786___ 4.19031118602086661e+00 +Toroidal_field_in_plasma_at_point_787____________________________________ b_plasma_toroidal_profile787___ 4.18796761153204056e+00 +Toroidal_field_in_plasma_at_point_788____________________________________ b_plasma_toroidal_profile788___ 4.18562665702587378e+00 +Toroidal_field_in_plasma_at_point_789____________________________________ b_plasma_toroidal_profile789___ 4.18328831811133472e+00 +Toroidal_field_in_plasma_at_point_790____________________________________ b_plasma_toroidal_profile790___ 4.18095259040719647e+00 +Toroidal_field_in_plasma_at_point_791____________________________________ b_plasma_toroidal_profile791___ 4.17861946954201358e+00 +Toroidal_field_in_plasma_at_point_792____________________________________ b_plasma_toroidal_profile792___ 4.17628895115409282e+00 +Toroidal_field_in_plasma_at_point_793____________________________________ b_plasma_toroidal_profile793___ 4.17396103089146564e+00 +Toroidal_field_in_plasma_at_point_794____________________________________ b_plasma_toroidal_profile794___ 4.17163570441186060e+00 +Toroidal_field_in_plasma_at_point_795____________________________________ b_plasma_toroidal_profile795___ 4.16931296738267676e+00 +Toroidal_field_in_plasma_at_point_796____________________________________ b_plasma_toroidal_profile796___ 4.16699281548096234e+00 +Toroidal_field_in_plasma_at_point_797____________________________________ b_plasma_toroidal_profile797___ 4.16467524439337478e+00 +Toroidal_field_in_plasma_at_point_798____________________________________ b_plasma_toroidal_profile798___ 4.16236024981617003e+00 +Toroidal_field_in_plasma_at_point_799____________________________________ b_plasma_toroidal_profile799___ 4.16004782745516000e+00 +Toroidal_field_in_plasma_at_point_800____________________________________ b_plasma_toroidal_profile800___ 4.15773797302570181e+00 +Toroidal_field_in_plasma_at_point_801____________________________________ b_plasma_toroidal_profile801___ 4.15543068225265699e+00 +Toroidal_field_in_plasma_at_point_802____________________________________ b_plasma_toroidal_profile802___ 4.15312595087037728e+00 +Toroidal_field_in_plasma_at_point_803____________________________________ b_plasma_toroidal_profile803___ 4.15082377462266550e+00 +Toroidal_field_in_plasma_at_point_804____________________________________ b_plasma_toroidal_profile804___ 4.14852414926276403e+00 +Toroidal_field_in_plasma_at_point_805____________________________________ b_plasma_toroidal_profile805___ 4.14622707055331574e+00 +Toroidal_field_in_plasma_at_point_806____________________________________ b_plasma_toroidal_profile806___ 4.14393253426634711e+00 +Toroidal_field_in_plasma_at_point_807____________________________________ b_plasma_toroidal_profile807___ 4.14164053618323447e+00 +Toroidal_field_in_plasma_at_point_808____________________________________ b_plasma_toroidal_profile808___ 4.13935107209468711e+00 +Toroidal_field_in_plasma_at_point_809____________________________________ b_plasma_toroidal_profile809___ 4.13706413780071180e+00 +Toroidal_field_in_plasma_at_point_810____________________________________ b_plasma_toroidal_profile810___ 4.13477972911059588e+00 +Toroidal_field_in_plasma_at_point_811____________________________________ b_plasma_toroidal_profile811___ 4.13249784184287439e+00 +Toroidal_field_in_plasma_at_point_812____________________________________ b_plasma_toroidal_profile812___ 4.13021847182531143e+00 +Toroidal_field_in_plasma_at_point_813____________________________________ b_plasma_toroidal_profile813___ 4.12794161489486733e+00 +Toroidal_field_in_plasma_at_point_814____________________________________ b_plasma_toroidal_profile814___ 4.12566726689767993e+00 +Toroidal_field_in_plasma_at_point_815____________________________________ b_plasma_toroidal_profile815___ 4.12339542368903622e+00 +Toroidal_field_in_plasma_at_point_816____________________________________ b_plasma_toroidal_profile816___ 4.12112608113334566e+00 +Toroidal_field_in_plasma_at_point_817____________________________________ b_plasma_toroidal_profile817___ 4.11885923510411978e+00 +Toroidal_field_in_plasma_at_point_818____________________________________ b_plasma_toroidal_profile818___ 4.11659488148394015e+00 +Toroidal_field_in_plasma_at_point_819____________________________________ b_plasma_toroidal_profile819___ 4.11433301616444425e+00 +Toroidal_field_in_plasma_at_point_820____________________________________ b_plasma_toroidal_profile820___ 4.11207363504628631e+00 +Toroidal_field_in_plasma_at_point_821____________________________________ b_plasma_toroidal_profile821___ 4.10981673403912673e+00 +Toroidal_field_in_plasma_at_point_822____________________________________ b_plasma_toroidal_profile822___ 4.10756230906159558e+00 +Toroidal_field_in_plasma_at_point_823____________________________________ b_plasma_toroidal_profile823___ 4.10531035604127759e+00 +Toroidal_field_in_plasma_at_point_824____________________________________ b_plasma_toroidal_profile824___ 4.10306087091467830e+00 +Toroidal_field_in_plasma_at_point_825____________________________________ b_plasma_toroidal_profile825___ 4.10081384962721263e+00 +Toroidal_field_in_plasma_at_point_826____________________________________ b_plasma_toroidal_profile826___ 4.09856928813316301e+00 +Toroidal_field_in_plasma_at_point_827____________________________________ b_plasma_toroidal_profile827___ 4.09632718239567239e+00 +Toroidal_field_in_plasma_at_point_828____________________________________ b_plasma_toroidal_profile828___ 4.09408752838670775e+00 +Toroidal_field_in_plasma_at_point_829____________________________________ b_plasma_toroidal_profile829___ 4.09185032208704325e+00 +Toroidal_field_in_plasma_at_point_830____________________________________ b_plasma_toroidal_profile830___ 4.08961555948623090e+00 +Toroidal_field_in_plasma_at_point_831____________________________________ b_plasma_toroidal_profile831___ 4.08738323658258107e+00 +Toroidal_field_in_plasma_at_point_832____________________________________ b_plasma_toroidal_profile832___ 4.08515334938313668e+00 +Toroidal_field_in_plasma_at_point_833____________________________________ b_plasma_toroidal_profile833___ 4.08292589390364746e+00 +Toroidal_field_in_plasma_at_point_834____________________________________ b_plasma_toroidal_profile834___ 4.08070086616854955e+00 +Toroidal_field_in_plasma_at_point_835____________________________________ b_plasma_toroidal_profile835___ 4.07847826221094145e+00 +Toroidal_field_in_plasma_at_point_836____________________________________ b_plasma_toroidal_profile836___ 4.07625807807255836e+00 +Toroidal_field_in_plasma_at_point_837____________________________________ b_plasma_toroidal_profile837___ 4.07404030980374809e+00 +Toroidal_field_in_plasma_at_point_838____________________________________ b_plasma_toroidal_profile838___ 4.07182495346345252e+00 +Toroidal_field_in_plasma_at_point_839____________________________________ b_plasma_toroidal_profile839___ 4.06961200511917820e+00 +Toroidal_field_in_plasma_at_point_840____________________________________ b_plasma_toroidal_profile840___ 4.06740146084697951e+00 +Toroidal_field_in_plasma_at_point_841____________________________________ b_plasma_toroidal_profile841___ 4.06519331673142670e+00 +Toroidal_field_in_plasma_at_point_842____________________________________ b_plasma_toroidal_profile842___ 4.06298756886559342e+00 +Toroidal_field_in_plasma_at_point_843____________________________________ b_plasma_toroidal_profile843___ 4.06078421335102391e+00 +Toroidal_field_in_plasma_at_point_844____________________________________ b_plasma_toroidal_profile844___ 4.05858324629771783e+00 +Toroidal_field_in_plasma_at_point_845____________________________________ b_plasma_toroidal_profile845___ 4.05638466382410012e+00 +Toroidal_field_in_plasma_at_point_846____________________________________ b_plasma_toroidal_profile846___ 4.05418846205700589e+00 +Toroidal_field_in_plasma_at_point_847____________________________________ b_plasma_toroidal_profile847___ 4.05199463713164931e+00 +Toroidal_field_in_plasma_at_point_848____________________________________ b_plasma_toroidal_profile848___ 4.04980318519161120e+00 +Toroidal_field_in_plasma_at_point_849____________________________________ b_plasma_toroidal_profile849___ 4.04761410238880437e+00 +Toroidal_field_in_plasma_at_point_850____________________________________ b_plasma_toroidal_profile850___ 4.04542738488346210e+00 +Toroidal_field_in_plasma_at_point_851____________________________________ b_plasma_toroidal_profile851___ 4.04324302884410791e+00 +Toroidal_field_in_plasma_at_point_852____________________________________ b_plasma_toroidal_profile852___ 4.04106103044753873e+00 +Toroidal_field_in_plasma_at_point_853____________________________________ b_plasma_toroidal_profile853___ 4.03888138587879642e+00 +Toroidal_field_in_plasma_at_point_854____________________________________ b_plasma_toroidal_profile854___ 4.03670409133115271e+00 +Toroidal_field_in_plasma_at_point_855____________________________________ b_plasma_toroidal_profile855___ 4.03452914300608256e+00 +Toroidal_field_in_plasma_at_point_856____________________________________ b_plasma_toroidal_profile856___ 4.03235653711324105e+00 +Toroidal_field_in_plasma_at_point_857____________________________________ b_plasma_toroidal_profile857___ 4.03018626987044648e+00 +Toroidal_field_in_plasma_at_point_858____________________________________ b_plasma_toroidal_profile858___ 4.02801833750365201e+00 +Toroidal_field_in_plasma_at_point_859____________________________________ b_plasma_toroidal_profile859___ 4.02585273624692963e+00 +Toroidal_field_in_plasma_at_point_860____________________________________ b_plasma_toroidal_profile860___ 4.02368946234244351e+00 +Toroidal_field_in_plasma_at_point_861____________________________________ b_plasma_toroidal_profile861___ 4.02152851204043493e+00 +Toroidal_field_in_plasma_at_point_862____________________________________ b_plasma_toroidal_profile862___ 4.01936988159918851e+00 +Toroidal_field_in_plasma_at_point_863____________________________________ b_plasma_toroidal_profile863___ 4.01721356728502688e+00 +Toroidal_field_in_plasma_at_point_864____________________________________ b_plasma_toroidal_profile864___ 4.01505956537227249e+00 +Toroidal_field_in_plasma_at_point_865____________________________________ b_plasma_toroidal_profile865___ 4.01290787214324229e+00 +Toroidal_field_in_plasma_at_point_866____________________________________ b_plasma_toroidal_profile866___ 4.01075848388821043e+00 +Toroidal_field_in_plasma_at_point_867____________________________________ b_plasma_toroidal_profile867___ 4.00861139690540114e+00 +Toroidal_field_in_plasma_at_point_868____________________________________ b_plasma_toroidal_profile868___ 4.00646660750095673e+00 +Toroidal_field_in_plasma_at_point_869____________________________________ b_plasma_toroidal_profile869___ 4.00432411198892524e+00 +Toroidal_field_in_plasma_at_point_870____________________________________ b_plasma_toroidal_profile870___ 4.00218390669122837e+00 +Toroidal_field_in_plasma_at_point_871____________________________________ b_plasma_toroidal_profile871___ 4.00004598793765442e+00 +Toroidal_field_in_plasma_at_point_872____________________________________ b_plasma_toroidal_profile872___ 3.99791035206582412e+00 +Toroidal_field_in_plasma_at_point_873____________________________________ b_plasma_toroidal_profile873___ 3.99577699542117859e+00 +Toroidal_field_in_plasma_at_point_874____________________________________ b_plasma_toroidal_profile874___ 3.99364591435695404e+00 +Toroidal_field_in_plasma_at_point_875____________________________________ b_plasma_toroidal_profile875___ 3.99151710523416270e+00 +Toroidal_field_in_plasma_at_point_876____________________________________ b_plasma_toroidal_profile876___ 3.98939056442157103e+00 +Toroidal_field_in_plasma_at_point_877____________________________________ b_plasma_toroidal_profile877___ 3.98726628829568108e+00 +Toroidal_field_in_plasma_at_point_878____________________________________ b_plasma_toroidal_profile878___ 3.98514427324070741e+00 +Toroidal_field_in_plasma_at_point_879____________________________________ b_plasma_toroidal_profile879___ 3.98302451564855797e+00 +Toroidal_field_in_plasma_at_point_880____________________________________ b_plasma_toroidal_profile880___ 3.98090701191881413e+00 +Toroidal_field_in_plasma_at_point_881____________________________________ b_plasma_toroidal_profile881___ 3.97879175845870758e+00 +Toroidal_field_in_plasma_at_point_882____________________________________ b_plasma_toroidal_profile882___ 3.97667875168310658e+00 +Toroidal_field_in_plasma_at_point_883____________________________________ b_plasma_toroidal_profile883___ 3.97456798801448397e+00 +Toroidal_field_in_plasma_at_point_884____________________________________ b_plasma_toroidal_profile884___ 3.97245946388291227e+00 +Toroidal_field_in_plasma_at_point_885____________________________________ b_plasma_toroidal_profile885___ 3.97035317572602775e+00 +Toroidal_field_in_plasma_at_point_886____________________________________ b_plasma_toroidal_profile886___ 3.96824911998902463e+00 +Toroidal_field_in_plasma_at_point_887____________________________________ b_plasma_toroidal_profile887___ 3.96614729312462311e+00 +Toroidal_field_in_plasma_at_point_888____________________________________ b_plasma_toroidal_profile888___ 3.96404769159305959e+00 +Toroidal_field_in_plasma_at_point_889____________________________________ b_plasma_toroidal_profile889___ 3.96195031186205737e+00 +Toroidal_field_in_plasma_at_point_890____________________________________ b_plasma_toroidal_profile890___ 3.95985515040681646e+00 +Toroidal_field_in_plasma_at_point_891____________________________________ b_plasma_toroidal_profile891___ 3.95776220370998333e+00 +Toroidal_field_in_plasma_at_point_892____________________________________ b_plasma_toroidal_profile892___ 3.95567146826164207e+00 +Toroidal_field_in_plasma_at_point_893____________________________________ b_plasma_toroidal_profile893___ 3.95358294055928638e+00 +Toroidal_field_in_plasma_at_point_894____________________________________ b_plasma_toroidal_profile894___ 3.95149661710780409e+00 +Toroidal_field_in_plasma_at_point_895____________________________________ b_plasma_toroidal_profile895___ 3.94941249441945619e+00 +Toroidal_field_in_plasma_at_point_896____________________________________ b_plasma_toroidal_profile896___ 3.94733056901385826e+00 +Toroidal_field_in_plasma_at_point_897____________________________________ b_plasma_toroidal_profile897___ 3.94525083741796045e+00 +Toroidal_field_in_plasma_at_point_898____________________________________ b_plasma_toroidal_profile898___ 3.94317329616602885e+00 +Toroidal_field_in_plasma_at_point_899____________________________________ b_plasma_toroidal_profile899___ 3.94109794179962591e+00 +Toroidal_field_in_plasma_at_point_900____________________________________ b_plasma_toroidal_profile900___ 3.93902477086759006e+00 +Toroidal_field_in_plasma_at_point_901____________________________________ b_plasma_toroidal_profile901___ 3.93695377992601969e+00 +Toroidal_field_in_plasma_at_point_902____________________________________ b_plasma_toroidal_profile902___ 3.93488496553824918e+00 +Toroidal_field_in_plasma_at_point_903____________________________________ b_plasma_toroidal_profile903___ 3.93281832427483691e+00 +Toroidal_field_in_plasma_at_point_904____________________________________ b_plasma_toroidal_profile904___ 3.93075385271353683e+00 +Toroidal_field_in_plasma_at_point_905____________________________________ b_plasma_toroidal_profile905___ 3.92869154743929139e+00 +Toroidal_field_in_plasma_at_point_906____________________________________ b_plasma_toroidal_profile906___ 3.92663140504419950e+00 +Toroidal_field_in_plasma_at_point_907____________________________________ b_plasma_toroidal_profile907___ 3.92457342212751037e+00 +Toroidal_field_in_plasma_at_point_908____________________________________ b_plasma_toroidal_profile908___ 3.92251759529559374e+00 +Toroidal_field_in_plasma_at_point_909____________________________________ b_plasma_toroidal_profile909___ 3.92046392116193188e+00 +Toroidal_field_in_plasma_at_point_910____________________________________ b_plasma_toroidal_profile910___ 3.91841239634708982e+00 +Toroidal_field_in_plasma_at_point_911____________________________________ b_plasma_toroidal_profile911___ 3.91636301747870785e+00 +Toroidal_field_in_plasma_at_point_912____________________________________ b_plasma_toroidal_profile912___ 3.91431578119147350e+00 +Toroidal_field_in_plasma_at_point_913____________________________________ b_plasma_toroidal_profile913___ 3.91227068412710999e+00 +Toroidal_field_in_plasma_at_point_914____________________________________ b_plasma_toroidal_profile914___ 3.91022772293435450e+00 +Toroidal_field_in_plasma_at_point_915____________________________________ b_plasma_toroidal_profile915___ 3.90818689426893995e+00 +Toroidal_field_in_plasma_at_point_916____________________________________ b_plasma_toroidal_profile916___ 3.90614819479357767e+00 +Toroidal_field_in_plasma_at_point_917____________________________________ b_plasma_toroidal_profile917___ 3.90411162117794008e+00 +Toroidal_field_in_plasma_at_point_918____________________________________ b_plasma_toroidal_profile918___ 3.90207717009863941e+00 +Toroidal_field_in_plasma_at_point_919____________________________________ b_plasma_toroidal_profile919___ 3.90004483823921300e+00 +Toroidal_field_in_plasma_at_point_920____________________________________ b_plasma_toroidal_profile920___ 3.89801462229010376e+00 +Toroidal_field_in_plasma_at_point_921____________________________________ b_plasma_toroidal_profile921___ 3.89598651894864156e+00 +Toroidal_field_in_plasma_at_point_922____________________________________ b_plasma_toroidal_profile922___ 3.89396052491902722e+00 +Toroidal_field_in_plasma_at_point_923____________________________________ b_plasma_toroidal_profile923___ 3.89193663691231162e+00 +Toroidal_field_in_plasma_at_point_924____________________________________ b_plasma_toroidal_profile924___ 3.88991485164638418e+00 +Toroidal_field_in_plasma_at_point_925____________________________________ b_plasma_toroidal_profile925___ 3.88789516584594397e+00 +Toroidal_field_in_plasma_at_point_926____________________________________ b_plasma_toroidal_profile926___ 3.88587757624249575e+00 +Toroidal_field_in_plasma_at_point_927____________________________________ b_plasma_toroidal_profile927___ 3.88386207957431973e+00 +Toroidal_field_in_plasma_at_point_928____________________________________ b_plasma_toroidal_profile928___ 3.88184867258646404e+00 +Toroidal_field_in_plasma_at_point_929____________________________________ b_plasma_toroidal_profile929___ 3.87983735203071944e+00 +Toroidal_field_in_plasma_at_point_930____________________________________ b_plasma_toroidal_profile930___ 3.87782811466560817e+00 +Toroidal_field_in_plasma_at_point_931____________________________________ b_plasma_toroidal_profile931___ 3.87582095725636044e+00 +Toroidal_field_in_plasma_at_point_932____________________________________ b_plasma_toroidal_profile932___ 3.87381587657490423e+00 +Toroidal_field_in_plasma_at_point_933____________________________________ b_plasma_toroidal_profile933___ 3.87181286939983904e+00 +Toroidal_field_in_plasma_at_point_934____________________________________ b_plasma_toroidal_profile934___ 3.86981193251642841e+00 +Toroidal_field_in_plasma_at_point_935____________________________________ b_plasma_toroidal_profile935___ 3.86781306271657455e+00 +Toroidal_field_in_plasma_at_point_936____________________________________ b_plasma_toroidal_profile936___ 3.86581625679880680e+00 +Toroidal_field_in_plasma_at_point_937____________________________________ b_plasma_toroidal_profile937___ 3.86382151156826037e+00 +Toroidal_field_in_plasma_at_point_938____________________________________ b_plasma_toroidal_profile938___ 3.86182882383666248e+00 +Toroidal_field_in_plasma_at_point_939____________________________________ b_plasma_toroidal_profile939___ 3.85983819042231380e+00 +Toroidal_field_in_plasma_at_point_940____________________________________ b_plasma_toroidal_profile940___ 3.85784960815007150e+00 +Toroidal_field_in_plasma_at_point_941____________________________________ b_plasma_toroidal_profile941___ 3.85586307385133331e+00 +Toroidal_field_in_plasma_at_point_942____________________________________ b_plasma_toroidal_profile942___ 3.85387858436401887e+00 +Toroidal_field_in_plasma_at_point_943____________________________________ b_plasma_toroidal_profile943___ 3.85189613653255636e+00 +Toroidal_field_in_plasma_at_point_944____________________________________ b_plasma_toroidal_profile944___ 3.84991572720786079e+00 +Toroidal_field_in_plasma_at_point_945____________________________________ b_plasma_toroidal_profile945___ 3.84793735324732245e+00 +Toroidal_field_in_plasma_at_point_946____________________________________ b_plasma_toroidal_profile946___ 3.84596101151478598e+00 +Toroidal_field_in_plasma_at_point_947____________________________________ b_plasma_toroidal_profile947___ 3.84398669888053890e+00 +Toroidal_field_in_plasma_at_point_948____________________________________ b_plasma_toroidal_profile948___ 3.84201441222128670e+00 +Toroidal_field_in_plasma_at_point_949____________________________________ b_plasma_toroidal_profile949___ 3.84004414842014841e+00 +Toroidal_field_in_plasma_at_point_950____________________________________ b_plasma_toroidal_profile950___ 3.83807590436662638e+00 +Toroidal_field_in_plasma_at_point_951____________________________________ b_plasma_toroidal_profile951___ 3.83610967695660321e+00 +Toroidal_field_in_plasma_at_point_952____________________________________ b_plasma_toroidal_profile952___ 3.83414546309231374e+00 +Toroidal_field_in_plasma_at_point_953____________________________________ b_plasma_toroidal_profile953___ 3.83218325968233886e+00 +Toroidal_field_in_plasma_at_point_954____________________________________ b_plasma_toroidal_profile954___ 3.83022306364157972e+00 +Toroidal_field_in_plasma_at_point_955____________________________________ b_plasma_toroidal_profile955___ 3.82826487189125197e+00 +Toroidal_field_in_plasma_at_point_956____________________________________ b_plasma_toroidal_profile956___ 3.82630868135885960e+00 +Toroidal_field_in_plasma_at_point_957____________________________________ b_plasma_toroidal_profile957___ 3.82435448897818642e+00 +Toroidal_field_in_plasma_at_point_958____________________________________ b_plasma_toroidal_profile958___ 3.82240229168927437e+00 +Toroidal_field_in_plasma_at_point_959____________________________________ b_plasma_toroidal_profile959___ 3.82045208643841283e+00 +Toroidal_field_in_plasma_at_point_960____________________________________ b_plasma_toroidal_profile960___ 3.81850387017811777e+00 +Toroidal_field_in_plasma_at_point_961____________________________________ b_plasma_toroidal_profile961___ 3.81655763986711971e+00 +Toroidal_field_in_plasma_at_point_962____________________________________ b_plasma_toroidal_profile962___ 3.81461339247034603e+00 +Toroidal_field_in_plasma_at_point_963____________________________________ b_plasma_toroidal_profile963___ 3.81267112495890492e+00 +Toroidal_field_in_plasma_at_point_964____________________________________ b_plasma_toroidal_profile964___ 3.81073083431007076e+00 +Toroidal_field_in_plasma_at_point_965____________________________________ b_plasma_toroidal_profile965___ 3.80879251750726810e+00 +Toroidal_field_in_plasma_at_point_966____________________________________ b_plasma_toroidal_profile966___ 3.80685617154005573e+00 +Toroidal_field_in_plasma_at_point_967____________________________________ b_plasma_toroidal_profile967___ 3.80492179340410974e+00 +Toroidal_field_in_plasma_at_point_968____________________________________ b_plasma_toroidal_profile968___ 3.80298938010121335e+00 +Toroidal_field_in_plasma_at_point_969____________________________________ b_plasma_toroidal_profile969___ 3.80105892863923245e+00 +Toroidal_field_in_plasma_at_point_970____________________________________ b_plasma_toroidal_profile970___ 3.79913043603211031e+00 +Toroidal_field_in_plasma_at_point_971____________________________________ b_plasma_toroidal_profile971___ 3.79720389929984181e+00 +Toroidal_field_in_plasma_at_point_972____________________________________ b_plasma_toroidal_profile972___ 3.79527931546846897e+00 +Toroidal_field_in_plasma_at_point_973____________________________________ b_plasma_toroidal_profile973___ 3.79335668157005479e+00 +Toroidal_field_in_plasma_at_point_974____________________________________ b_plasma_toroidal_profile974___ 3.79143599464267833e+00 +Toroidal_field_in_plasma_at_point_975____________________________________ b_plasma_toroidal_profile975___ 3.78951725173040899e+00 +Toroidal_field_in_plasma_at_point_976____________________________________ b_plasma_toroidal_profile976___ 3.78760044988330247e+00 +Toroidal_field_in_plasma_at_point_977____________________________________ b_plasma_toroidal_profile977___ 3.78568558615737549e+00 +Toroidal_field_in_plasma_at_point_978____________________________________ b_plasma_toroidal_profile978___ 3.78377265761459780e+00 +Toroidal_field_in_plasma_at_point_979____________________________________ b_plasma_toroidal_profile979___ 3.78186166132287305e+00 +Toroidal_field_in_plasma_at_point_980____________________________________ b_plasma_toroidal_profile980___ 3.77995259435602682e+00 +Toroidal_field_in_plasma_at_point_981____________________________________ b_plasma_toroidal_profile981___ 3.77804545379378842e+00 +Toroidal_field_in_plasma_at_point_982____________________________________ b_plasma_toroidal_profile982___ 3.77614023672177979e+00 +Toroidal_field_in_plasma_at_point_983____________________________________ b_plasma_toroidal_profile983___ 3.77423694023149636e+00 +Toroidal_field_in_plasma_at_point_984____________________________________ b_plasma_toroidal_profile984___ 3.77233556142029691e+00 +Toroidal_field_in_plasma_at_point_985____________________________________ b_plasma_toroidal_profile985___ 3.77043609739138441e+00 +Toroidal_field_in_plasma_at_point_986____________________________________ b_plasma_toroidal_profile986___ 3.76853854525379406e+00 +Toroidal_field_in_plasma_at_point_987____________________________________ b_plasma_toroidal_profile987___ 3.76664290212237907e+00 +Toroidal_field_in_plasma_at_point_988____________________________________ b_plasma_toroidal_profile988___ 3.76474916511779201e+00 +Toroidal_field_in_plasma_at_point_989____________________________________ b_plasma_toroidal_profile989___ 3.76285733136647726e+00 +Toroidal_field_in_plasma_at_point_990____________________________________ b_plasma_toroidal_profile990___ 3.76096739800064706e+00 +Toroidal_field_in_plasma_at_point_991____________________________________ b_plasma_toroidal_profile991___ 3.75907936215827787e+00 +Toroidal_field_in_plasma_at_point_992____________________________________ b_plasma_toroidal_profile992___ 3.75719322098308472e+00 +Toroidal_field_in_plasma_at_point_993____________________________________ b_plasma_toroidal_profile993___ 3.75530897162451849e+00 +Toroidal_field_in_plasma_at_point_994____________________________________ b_plasma_toroidal_profile994___ 3.75342661123773835e+00 +Toroidal_field_in_plasma_at_point_995____________________________________ b_plasma_toroidal_profile995___ 3.75154613698361228e+00 +Toroidal_field_in_plasma_at_point_996____________________________________ b_plasma_toroidal_profile996___ 3.74966754602868724e+00 +Toroidal_field_in_plasma_at_point_997____________________________________ b_plasma_toroidal_profile997___ 3.74779083554519010e+00 +Toroidal_field_in_plasma_at_point_998____________________________________ b_plasma_toroidal_profile998___ 3.74591600271099967e+00 +Toroidal_field_in_plasma_at_point_999____________________________________ b_plasma_toroidal_profile999___ 3.74404304470964444e+00 +Toroidal_field_in_plasma_at_point_1000___________________________________ b_plasma_toroidal_profile1000__ 3.74217195873027908e+00 +Toroidal_field_in_plasma_at_point_1001___________________________________ b_plasma_toroidal_profile1001__ 3.74030274196767687e+00 +Plasma_surface_averaged_poloidal_field_(⟨Bₚₒₗ(a)⟩)_(T)___________________ (b_plasma_surface_poloidal_average)_ 8.73881748751435872e-01 OP +Total_field_(Bₜₒₜ)_(T)___________________________________________________ (b_plasma_total)_______________ 5.06305636089443656e+00 OP # Plasma Beta: # Beta_component_for_limits________________________________________________ (i_beta_component)_____________ 1 -Upper_limit_on_volume_averaged_thermal_beta_(⟨βₜₕ⟩<)_____________________ (beta_vol_avg_max)_____________ 4.46769654580279826e-02 OP -Volume_averaged_total_plasma_beta_(⟨β⟩)__________________________________ (beta_total_vol_avg)___________ 3.78126882594035166e-02 +Upper_limit_on_volume_averaged_thermal_beta_(⟨βₜₕ⟩<)_____________________ (beta_vol_avg_max)_____________ 4.53327661549761812e-02 OP +Volume_averaged_total_plasma_beta_(⟨β⟩)__________________________________ (beta_total_vol_avg)___________ 3.85026848015826151e-02 Lower_limit_on_volume_averaged_thermal_beta_(⟨βₜₕ⟩>)_____________________ (beta_vol_avg_min)_____________ 0.00000000000000000e+00 IP Upper_limit_on_volume_averaged_poloidal_beta_(⟨βₚ⟩<)_____________________ (beta_poloidal_max)____________ 1.90000000000000002e-01 IP -Volume_averaged_poloidal_beta_(⟨βₚ⟩)_____________________________________ (beta_poloidal_vol_avg)________ 1.30569897875376273e+00 OP -Volume_averaged_toroidal_beta_(⟨βₜ⟩)_____________________________________ (beta_toroidal_vol_avg)________ 3.89403914328839487e-02 OP -Beta_toroidal_profile_at_point_0_________________________________________ beta_thermal_toroidal_profile0_ 5.04870987699894064e-05 -Beta_toroidal_profile_at_point_1_________________________________________ beta_thermal_toroidal_profile1_ 1.44951547080738230e-04 -Beta_toroidal_profile_at_point_2_________________________________________ beta_thermal_toroidal_profile2_ 2.44050864780381469e-04 -Beta_toroidal_profile_at_point_3_________________________________________ beta_thermal_toroidal_profile3_ 3.47811099356528275e-04 -Beta_toroidal_profile_at_point_4_________________________________________ beta_thermal_toroidal_profile4_ 4.56258349086153397e-04 -Beta_toroidal_profile_at_point_5_________________________________________ beta_thermal_toroidal_profile5_ 5.69418763035598277e-04 -Beta_toroidal_profile_at_point_6_________________________________________ beta_thermal_toroidal_profile6_ 6.87318541060570175e-04 -Beta_toroidal_profile_at_point_7_________________________________________ beta_thermal_toroidal_profile7_ 8.09983933806141475e-04 -Beta_toroidal_profile_at_point_8_________________________________________ beta_thermal_toroidal_profile8_ 9.37441242706752494e-04 -Beta_toroidal_profile_at_point_9_________________________________________ beta_thermal_toroidal_profile9_ 1.06971681998620748e-03 -Beta_toroidal_profile_at_point_10________________________________________ beta_thermal_toroidal_profile10_ 1.20683706865767882e-03 -Beta_toroidal_profile_at_point_11________________________________________ beta_thermal_toroidal_profile11_ 1.34882844252370284e-03 -Beta_toroidal_profile_at_point_12________________________________________ beta_thermal_toroidal_profile12_ 1.49571744617618338e-03 -Beta_toroidal_profile_at_point_13________________________________________ beta_thermal_toroidal_profile13_ 1.64753063499639045e-03 -Beta_toroidal_profile_at_point_14________________________________________ beta_thermal_toroidal_profile14_ 1.80429461515495791e-03 -Beta_toroidal_profile_at_point_15________________________________________ beta_thermal_toroidal_profile15_ 1.96603604361188884e-03 -Beta_toroidal_profile_at_point_16________________________________________ beta_thermal_toroidal_profile16_ 2.13278162811654992e-03 -Beta_toroidal_profile_at_point_17________________________________________ beta_thermal_toroidal_profile17_ 2.30455812720767534e-03 -Beta_toroidal_profile_at_point_18________________________________________ beta_thermal_toroidal_profile18_ 2.48139235021336505e-03 -Beta_toroidal_profile_at_point_19________________________________________ beta_thermal_toroidal_profile19_ 2.66331115725108132e-03 -Beta_toroidal_profile_at_point_20________________________________________ beta_thermal_toroidal_profile20_ 2.85034145922766127e-03 -Beta_toroidal_profile_at_point_21________________________________________ beta_thermal_toroidal_profile21_ 3.04251021783929826e-03 -Beta_toroidal_profile_at_point_22________________________________________ beta_thermal_toroidal_profile22_ 3.23984444557155922e-03 -Beta_toroidal_profile_at_point_23________________________________________ beta_thermal_toroidal_profile23_ 3.44237120569937079e-03 -Beta_toroidal_profile_at_point_24________________________________________ beta_thermal_toroidal_profile24_ 3.65011761228703144e-03 -Beta_toroidal_profile_at_point_25________________________________________ beta_thermal_toroidal_profile25_ 3.86311083018820193e-03 -Beta_toroidal_profile_at_point_26________________________________________ beta_thermal_toroidal_profile26_ 4.08137807504591055e-03 -Beta_toroidal_profile_at_point_27________________________________________ beta_thermal_toroidal_profile27_ 4.30494661329255002e-03 -Beta_toroidal_profile_at_point_28________________________________________ beta_thermal_toroidal_profile28_ 4.53384376214988061e-03 -Beta_toroidal_profile_at_point_29________________________________________ beta_thermal_toroidal_profile29_ 4.76809688962903221e-03 -Beta_toroidal_profile_at_point_30________________________________________ beta_thermal_toroidal_profile30_ 5.00773341453049185e-03 -Beta_toroidal_profile_at_point_31________________________________________ beta_thermal_toroidal_profile31_ 5.03862164447268709e-03 -Beta_toroidal_profile_at_point_32________________________________________ beta_thermal_toroidal_profile32_ 5.07453481399251175e-03 -Beta_toroidal_profile_at_point_33________________________________________ beta_thermal_toroidal_profile33_ 5.11363749121633744e-03 -Beta_toroidal_profile_at_point_34________________________________________ beta_thermal_toroidal_profile34_ 5.15531464681086293e-03 -Beta_toroidal_profile_at_point_35________________________________________ beta_thermal_toroidal_profile35_ 5.19922285554292891e-03 -Beta_toroidal_profile_at_point_36________________________________________ beta_thermal_toroidal_profile36_ 5.24513682551009438e-03 -Beta_toroidal_profile_at_point_37________________________________________ beta_thermal_toroidal_profile37_ 5.29289522508397548e-03 -Beta_toroidal_profile_at_point_38________________________________________ beta_thermal_toroidal_profile38_ 5.34237587094258618e-03 -Beta_toroidal_profile_at_point_39________________________________________ beta_thermal_toroidal_profile39_ 5.39348253691066242e-03 -Beta_toroidal_profile_at_point_40________________________________________ beta_thermal_toroidal_profile40_ 5.44613721192438362e-03 -Beta_toroidal_profile_at_point_41________________________________________ beta_thermal_toroidal_profile41_ 5.50027522142265083e-03 -Beta_toroidal_profile_at_point_42________________________________________ beta_thermal_toroidal_profile42_ 5.55584198318016288e-03 -Beta_toroidal_profile_at_point_43________________________________________ beta_thermal_toroidal_profile43_ 5.61279075689728301e-03 -Beta_toroidal_profile_at_point_44________________________________________ beta_thermal_toroidal_profile44_ 5.67108102895576976e-03 -Beta_toroidal_profile_at_point_45________________________________________ beta_thermal_toroidal_profile45_ 5.73067731996092494e-03 -Beta_toroidal_profile_at_point_46________________________________________ beta_thermal_toroidal_profile46_ 5.79154828334109157e-03 -Beta_toroidal_profile_at_point_47________________________________________ beta_thermal_toroidal_profile47_ 5.85366601009284972e-03 -Beta_toroidal_profile_at_point_48________________________________________ beta_thermal_toroidal_profile48_ 5.91700548312468644e-03 -Beta_toroidal_profile_at_point_49________________________________________ beta_thermal_toroidal_profile49_ 5.98154414247192151e-03 -Beta_toroidal_profile_at_point_50________________________________________ beta_thermal_toroidal_profile50_ 6.04726153420739876e-03 -Beta_toroidal_profile_at_point_51________________________________________ beta_thermal_toroidal_profile51_ 6.11413902356731497e-03 -Beta_toroidal_profile_at_point_52________________________________________ beta_thermal_toroidal_profile52_ 6.18215955806188360e-03 -Beta_toroidal_profile_at_point_53________________________________________ beta_thermal_toroidal_profile53_ 6.25130746999961150e-03 -Beta_toroidal_profile_at_point_54________________________________________ beta_thermal_toroidal_profile54_ 6.32156831045308301e-03 -Beta_toroidal_profile_at_point_55________________________________________ beta_thermal_toroidal_profile55_ 6.39292870857170129e-03 -Beta_toroidal_profile_at_point_56________________________________________ beta_thermal_toroidal_profile56_ 6.46537625152491992e-03 -Beta_toroidal_profile_at_point_57________________________________________ beta_thermal_toroidal_profile57_ 6.53889938138412473e-03 -Beta_toroidal_profile_at_point_58________________________________________ beta_thermal_toroidal_profile58_ 6.61348730602424710e-03 -Beta_toroidal_profile_at_point_59________________________________________ beta_thermal_toroidal_profile59_ 6.68912992171478375e-03 -Beta_toroidal_profile_at_point_60________________________________________ beta_thermal_toroidal_profile60_ 6.76581774552406992e-03 -Beta_toroidal_profile_at_point_61________________________________________ beta_thermal_toroidal_profile61_ 6.84354185601376147e-03 -Beta_toroidal_profile_at_point_62________________________________________ beta_thermal_toroidal_profile62_ 6.92229384097816508e-03 -Beta_toroidal_profile_at_point_63________________________________________ beta_thermal_toroidal_profile63_ 7.00206575120278316e-03 -Beta_toroidal_profile_at_point_64________________________________________ beta_thermal_toroidal_profile64_ 7.08285005939216471e-03 -Beta_toroidal_profile_at_point_65________________________________________ beta_thermal_toroidal_profile65_ 7.16463962355824800e-03 -Beta_toroidal_profile_at_point_66________________________________________ beta_thermal_toroidal_profile66_ 7.24742765427501510e-03 -Beta_toroidal_profile_at_point_67________________________________________ beta_thermal_toroidal_profile67_ 7.33120768529831046e-03 -Beta_toroidal_profile_at_point_68________________________________________ beta_thermal_toroidal_profile68_ 7.41597354712655865e-03 -Beta_toroidal_profile_at_point_69________________________________________ beta_thermal_toroidal_profile69_ 7.50171934314085471e-03 -Beta_toroidal_profile_at_point_70________________________________________ beta_thermal_toroidal_profile70_ 7.58843942801573287e-03 -Beta_toroidal_profile_at_point_71________________________________________ beta_thermal_toroidal_profile71_ 7.67612838813519233e-03 -Beta_toroidal_profile_at_point_72________________________________________ beta_thermal_toroidal_profile72_ 7.76478102378544074e-03 -Beta_toroidal_profile_at_point_73________________________________________ beta_thermal_toroidal_profile73_ 7.85439233292649711e-03 -Beta_toroidal_profile_at_point_74________________________________________ beta_thermal_toroidal_profile74_ 7.94495749637082367e-03 -Beta_toroidal_profile_at_point_75________________________________________ beta_thermal_toroidal_profile75_ 8.03647186421932794e-03 -Beta_toroidal_profile_at_point_76________________________________________ beta_thermal_toroidal_profile76_ 8.12893094342388191e-03 -Beta_toroidal_profile_at_point_77________________________________________ beta_thermal_toroidal_profile77_ 8.22233038636155031e-03 -Beta_toroidal_profile_at_point_78________________________________________ beta_thermal_toroidal_profile78_ 8.31666598031969434e-03 -Beta_toroidal_profile_at_point_79________________________________________ beta_thermal_toroidal_profile79_ 8.41193363780292844e-03 -Beta_toroidal_profile_at_point_80________________________________________ beta_thermal_toroidal_profile80_ 8.50812938758314583e-03 -Beta_toroidal_profile_at_point_81________________________________________ beta_thermal_toroidal_profile81_ 8.60524936642301057e-03 -Beta_toroidal_profile_at_point_82________________________________________ beta_thermal_toroidal_profile82_ 8.70328981141069852e-03 -Beta_toroidal_profile_at_point_83________________________________________ beta_thermal_toroidal_profile83_ 8.80224705285081489e-03 -Beta_toroidal_profile_at_point_84________________________________________ beta_thermal_toroidal_profile84_ 8.90211750766200550e-03 -Beta_toroidal_profile_at_point_85________________________________________ beta_thermal_toroidal_profile85_ 9.00289767323726210e-03 -Beta_toroidal_profile_at_point_86________________________________________ beta_thermal_toroidal_profile86_ 9.10458412172721575e-03 -Beta_toroidal_profile_at_point_87________________________________________ beta_thermal_toroidal_profile87_ 9.20717349471088069e-03 -Beta_toroidal_profile_at_point_88________________________________________ beta_thermal_toroidal_profile88_ 9.31066249822191591e-03 -Beta_toroidal_profile_at_point_89________________________________________ beta_thermal_toroidal_profile89_ 9.41504789810136168e-03 -Beta_toroidal_profile_at_point_90________________________________________ beta_thermal_toroidal_profile90_ 9.52032651565087179e-03 -Beta_toroidal_profile_at_point_91________________________________________ beta_thermal_toroidal_profile91_ 9.62649522356277820e-03 -Beta_toroidal_profile_at_point_92________________________________________ beta_thermal_toroidal_profile92_ 9.73355094210556250e-03 -Beta_toroidal_profile_at_point_93________________________________________ beta_thermal_toroidal_profile93_ 9.84149063554532778e-03 -Beta_toroidal_profile_at_point_94________________________________________ beta_thermal_toroidal_profile94_ 9.95031130878541378e-03 -Beta_toroidal_profile_at_point_95________________________________________ beta_thermal_toroidal_profile95_ 1.00600100042083657e-02 -Beta_toroidal_profile_at_point_96________________________________________ beta_thermal_toroidal_profile96_ 1.01705837987050973e-02 -Beta_toroidal_profile_at_point_97________________________________________ beta_thermal_toroidal_profile97_ 1.02820298008782732e-02 -Beta_toroidal_profile_at_point_98________________________________________ beta_thermal_toroidal_profile98_ 1.03943451484072649e-02 -Beta_toroidal_profile_at_point_99________________________________________ beta_thermal_toroidal_profile99_ 1.05075270055636598e-02 -Beta_toroidal_profile_at_point_100_______________________________________ beta_thermal_toroidal_profile100_ 1.06215725608668037e-02 -Beta_toroidal_profile_at_point_101_______________________________________ beta_thermal_toroidal_profile101_ 1.07364790248700697e-02 -Beta_toroidal_profile_at_point_102_______________________________________ beta_thermal_toroidal_profile102_ 1.08522436280689902e-02 -Beta_toroidal_profile_at_point_103_______________________________________ beta_thermal_toroidal_profile103_ 1.09688636189233177e-02 -Beta_toroidal_profile_at_point_104_______________________________________ beta_thermal_toroidal_profile104_ 1.10863362619855171e-02 -Beta_toroidal_profile_at_point_105_______________________________________ beta_thermal_toroidal_profile105_ 1.12046588361290281e-02 -Beta_toroidal_profile_at_point_106_______________________________________ beta_thermal_toroidal_profile106_ 1.13238286328697195e-02 -Beta_toroidal_profile_at_point_107_______________________________________ beta_thermal_toroidal_profile107_ 1.14438429547750655e-02 -Beta_toroidal_profile_at_point_108_______________________________________ beta_thermal_toroidal_profile108_ 1.15646991139552267e-02 -Beta_toroidal_profile_at_point_109_______________________________________ beta_thermal_toroidal_profile109_ 1.16863944306314430e-02 -Beta_toroidal_profile_at_point_110_______________________________________ beta_thermal_toroidal_profile110_ 1.18089262317767930e-02 -Beta_toroidal_profile_at_point_111_______________________________________ beta_thermal_toroidal_profile111_ 1.19322918498251801e-02 -Beta_toroidal_profile_at_point_112_______________________________________ beta_thermal_toroidal_profile112_ 1.20564886214444503e-02 -Beta_toroidal_profile_at_point_113_______________________________________ beta_thermal_toroidal_profile113_ 1.21815138863700344e-02 -Beta_toroidal_profile_at_point_114_______________________________________ beta_thermal_toroidal_profile114_ 1.23073649862954857e-02 -Beta_toroidal_profile_at_point_115_______________________________________ beta_thermal_toroidal_profile115_ 1.24340392638168703e-02 -Beta_toroidal_profile_at_point_116_______________________________________ beta_thermal_toroidal_profile116_ 1.25615340614278533e-02 -Beta_toroidal_profile_at_point_117_______________________________________ beta_thermal_toroidal_profile117_ 1.26898467205627790e-02 -Beta_toroidal_profile_at_point_118_______________________________________ beta_thermal_toroidal_profile118_ 1.28189745806849796e-02 -Beta_toroidal_profile_at_point_119_______________________________________ beta_thermal_toroidal_profile119_ 1.29489149784181093e-02 -Beta_toroidal_profile_at_point_120_______________________________________ beta_thermal_toroidal_profile120_ 1.30796652467179246e-02 -Beta_toroidal_profile_at_point_121_______________________________________ beta_thermal_toroidal_profile121_ 1.32112227140825812e-02 -Beta_toroidal_profile_at_point_122_______________________________________ beta_thermal_toroidal_profile122_ 1.33435847037992900e-02 -Beta_toroidal_profile_at_point_123_______________________________________ beta_thermal_toroidal_profile123_ 1.34767485332256305e-02 -Beta_toroidal_profile_at_point_124_______________________________________ beta_thermal_toroidal_profile124_ 1.36107115131035242e-02 -Beta_toroidal_profile_at_point_125_______________________________________ beta_thermal_toroidal_profile125_ 1.37454709469043770e-02 -Beta_toroidal_profile_at_point_126_______________________________________ beta_thermal_toroidal_profile126_ 1.38810241302037944e-02 -Beta_toroidal_profile_at_point_127_______________________________________ beta_thermal_toroidal_profile127_ 1.40173683500843856e-02 -Beta_toroidal_profile_at_point_128_______________________________________ beta_thermal_toroidal_profile128_ 1.41545008845652878e-02 -Beta_toroidal_profile_at_point_129_______________________________________ beta_thermal_toroidal_profile129_ 1.42924190020571034e-02 -Beta_toroidal_profile_at_point_130_______________________________________ beta_thermal_toroidal_profile130_ 1.44311199608410864e-02 -Beta_toroidal_profile_at_point_131_______________________________________ beta_thermal_toroidal_profile131_ 1.45706010085713371e-02 -Beta_toroidal_profile_at_point_132_______________________________________ beta_thermal_toroidal_profile132_ 1.47108593817990106e-02 -Beta_toroidal_profile_at_point_133_______________________________________ beta_thermal_toroidal_profile133_ 1.48518923055174362e-02 -Beta_toroidal_profile_at_point_134_______________________________________ beta_thermal_toroidal_profile134_ 1.49936969927273057e-02 -Beta_toroidal_profile_at_point_135_______________________________________ beta_thermal_toroidal_profile135_ 1.51362706440208161e-02 -Beta_toroidal_profile_at_point_136_______________________________________ beta_thermal_toroidal_profile136_ 1.52796104471841811e-02 -Beta_toroidal_profile_at_point_137_______________________________________ beta_thermal_toroidal_profile137_ 1.54237135768174067e-02 -Beta_toroidal_profile_at_point_138_______________________________________ beta_thermal_toroidal_profile138_ 1.55685771939708048e-02 -Beta_toroidal_profile_at_point_139_______________________________________ beta_thermal_toroidal_profile139_ 1.57141984457973630e-02 -Beta_toroidal_profile_at_point_140_______________________________________ beta_thermal_toroidal_profile140_ 1.58605744652203506e-02 -Beta_toroidal_profile_at_point_141_______________________________________ beta_thermal_toroidal_profile141_ 1.60077023706155057e-02 -Beta_toroidal_profile_at_point_142_______________________________________ beta_thermal_toroidal_profile142_ 1.61555792655071334e-02 -Beta_toroidal_profile_at_point_143_______________________________________ beta_thermal_toroidal_profile143_ 1.63042022382776097e-02 -Beta_toroidal_profile_at_point_144_______________________________________ beta_thermal_toroidal_profile144_ 1.64535683618896797e-02 -Beta_toroidal_profile_at_point_145_______________________________________ beta_thermal_toroidal_profile145_ 1.66036746936210206e-02 -Beta_toroidal_profile_at_point_146_______________________________________ beta_thermal_toroidal_profile146_ 1.67545182748106078e-02 -Beta_toroidal_profile_at_point_147_______________________________________ beta_thermal_toroidal_profile147_ 1.69060961306163500e-02 -Beta_toroidal_profile_at_point_148_______________________________________ beta_thermal_toroidal_profile148_ 1.70584052697836143e-02 -Beta_toroidal_profile_at_point_149_______________________________________ beta_thermal_toroidal_profile149_ 1.72114426844241636e-02 -Beta_toroidal_profile_at_point_150_______________________________________ beta_thermal_toroidal_profile150_ 1.73652053498051066e-02 -Beta_toroidal_profile_at_point_151_______________________________________ beta_thermal_toroidal_profile151_ 1.75196902241474065e-02 -Beta_toroidal_profile_at_point_152_______________________________________ beta_thermal_toroidal_profile152_ 1.76748942484338187e-02 -Beta_toroidal_profile_at_point_153_______________________________________ beta_thermal_toroidal_profile153_ 1.78308143462255070e-02 -Beta_toroidal_profile_at_point_154_______________________________________ beta_thermal_toroidal_profile154_ 1.79874474234874293e-02 -Beta_toroidal_profile_at_point_155_______________________________________ beta_thermal_toroidal_profile155_ 1.81447903684218009e-02 -Beta_toroidal_profile_at_point_156_______________________________________ beta_thermal_toroidal_profile156_ 1.83028400513096552e-02 -Beta_toroidal_profile_at_point_157_______________________________________ beta_thermal_toroidal_profile157_ 1.84615933243599227e-02 -Beta_toroidal_profile_at_point_158_______________________________________ beta_thermal_toroidal_profile158_ 1.86210470215660215e-02 -Beta_toroidal_profile_at_point_159_______________________________________ beta_thermal_toroidal_profile159_ 1.87811979585694004e-02 -Beta_toroidal_profile_at_point_160_______________________________________ beta_thermal_toroidal_profile160_ 1.89420429325300801e-02 -Beta_toroidal_profile_at_point_161_______________________________________ beta_thermal_toroidal_profile161_ 1.91035787220037410e-02 -Beta_toroidal_profile_at_point_162_______________________________________ beta_thermal_toroidal_profile162_ 1.92658020868252573e-02 -Beta_toroidal_profile_at_point_163_______________________________________ beta_thermal_toroidal_profile163_ 1.94287097679982888e-02 -Beta_toroidal_profile_at_point_164_______________________________________ beta_thermal_toroidal_profile164_ 1.95922984875909548e-02 -Beta_toroidal_profile_at_point_165_______________________________________ beta_thermal_toroidal_profile165_ 1.97565649486371904e-02 -Beta_toroidal_profile_at_point_166_______________________________________ beta_thermal_toroidal_profile166_ 1.99215058350436930e-02 -Beta_toroidal_profile_at_point_167_______________________________________ beta_thermal_toroidal_profile167_ 2.00871178115022281e-02 -Beta_toroidal_profile_at_point_168_______________________________________ beta_thermal_toroidal_profile168_ 2.02533975234072405e-02 -Beta_toroidal_profile_at_point_169_______________________________________ beta_thermal_toroidal_profile169_ 2.04203415967782569e-02 -Beta_toroidal_profile_at_point_170_______________________________________ beta_thermal_toroidal_profile170_ 2.05879466381874744e-02 -Beta_toroidal_profile_at_point_171_______________________________________ beta_thermal_toroidal_profile171_ 2.07562092346918609e-02 -Beta_toroidal_profile_at_point_172_______________________________________ beta_thermal_toroidal_profile172_ 2.09251259537698540e-02 -Beta_toroidal_profile_at_point_173_______________________________________ beta_thermal_toroidal_profile173_ 2.10946933432625931e-02 -Beta_toroidal_profile_at_point_174_______________________________________ beta_thermal_toroidal_profile174_ 2.12649079313192747e-02 -Beta_toroidal_profile_at_point_175_______________________________________ beta_thermal_toroidal_profile175_ 2.14357662263469084e-02 -Beta_toroidal_profile_at_point_176_______________________________________ beta_thermal_toroidal_profile176_ 2.16072647169638123e-02 -Beta_toroidal_profile_at_point_177_______________________________________ beta_thermal_toroidal_profile177_ 2.17793998719573029e-02 -Beta_toroidal_profile_at_point_178_______________________________________ beta_thermal_toroidal_profile178_ 2.19521681402450181e-02 -Beta_toroidal_profile_at_point_179_______________________________________ beta_thermal_toroidal_profile179_ 2.21255659508399899e-02 -Beta_toroidal_profile_at_point_180_______________________________________ beta_thermal_toroidal_profile180_ 2.22995897128193052e-02 -Beta_toroidal_profile_at_point_181_______________________________________ beta_thermal_toroidal_profile181_ 2.24742358152962320e-02 -Beta_toroidal_profile_at_point_182_______________________________________ beta_thermal_toroidal_profile182_ 2.26495006273957147e-02 -Beta_toroidal_profile_at_point_183_______________________________________ beta_thermal_toroidal_profile183_ 2.28253804982332595e-02 -Beta_toroidal_profile_at_point_184_______________________________________ beta_thermal_toroidal_profile184_ 2.30018717568968266e-02 -Beta_toroidal_profile_at_point_185_______________________________________ beta_thermal_toroidal_profile185_ 2.31789707124320545e-02 -Beta_toroidal_profile_at_point_186_______________________________________ beta_thermal_toroidal_profile186_ 2.33566736538303316e-02 -Beta_toroidal_profile_at_point_187_______________________________________ beta_thermal_toroidal_profile187_ 2.35349768500199598e-02 -Beta_toroidal_profile_at_point_188_______________________________________ beta_thermal_toroidal_profile188_ 2.37138765498600551e-02 -Beta_toroidal_profile_at_point_189_______________________________________ beta_thermal_toroidal_profile189_ 2.38933689821373869e-02 -Beta_toroidal_profile_at_point_190_______________________________________ beta_thermal_toroidal_profile190_ 2.40734503555657363e-02 -Beta_toroidal_profile_at_point_191_______________________________________ beta_thermal_toroidal_profile191_ 2.42541168587882099e-02 -Beta_toroidal_profile_at_point_192_______________________________________ beta_thermal_toroidal_profile192_ 2.44353646603817642e-02 -Beta_toroidal_profile_at_point_193_______________________________________ beta_thermal_toroidal_profile193_ 2.46171899088646409e-02 -Beta_toroidal_profile_at_point_194_______________________________________ beta_thermal_toroidal_profile194_ 2.47995887327058934e-02 -Beta_toroidal_profile_at_point_195_______________________________________ beta_thermal_toroidal_profile195_ 2.49825572403376966e-02 -Beta_toroidal_profile_at_point_196_______________________________________ beta_thermal_toroidal_profile196_ 2.51660915201695964e-02 -Beta_toroidal_profile_at_point_197_______________________________________ beta_thermal_toroidal_profile197_ 2.53501876406053914e-02 -Beta_toroidal_profile_at_point_198_______________________________________ beta_thermal_toroidal_profile198_ 2.55348416500619999e-02 -Beta_toroidal_profile_at_point_199_______________________________________ beta_thermal_toroidal_profile199_ 2.57200495769907278e-02 -Beta_toroidal_profile_at_point_200_______________________________________ beta_thermal_toroidal_profile200_ 2.59058074299004792e-02 -Beta_toroidal_profile_at_point_201_______________________________________ beta_thermal_toroidal_profile201_ 2.60921111973831145e-02 -Beta_toroidal_profile_at_point_202_______________________________________ beta_thermal_toroidal_profile202_ 2.62789568481408727e-02 -Beta_toroidal_profile_at_point_203_______________________________________ beta_thermal_toroidal_profile203_ 2.64663403310158446e-02 -Beta_toroidal_profile_at_point_204_______________________________________ beta_thermal_toroidal_profile204_ 2.66542575750212014e-02 -Beta_toroidal_profile_at_point_205_______________________________________ beta_thermal_toroidal_profile205_ 2.68427044893745602e-02 -Beta_toroidal_profile_at_point_206_______________________________________ beta_thermal_toroidal_profile206_ 2.70316769635329975e-02 -Beta_toroidal_profile_at_point_207_______________________________________ beta_thermal_toroidal_profile207_ 2.72211708672301100e-02 -Beta_toroidal_profile_at_point_208_______________________________________ beta_thermal_toroidal_profile208_ 2.74111820505146785e-02 -Beta_toroidal_profile_at_point_209_______________________________________ beta_thermal_toroidal_profile209_ 2.76017063437912109e-02 -Beta_toroidal_profile_at_point_210_______________________________________ beta_thermal_toroidal_profile210_ 2.77927395578621179e-02 -Beta_toroidal_profile_at_point_211_______________________________________ beta_thermal_toroidal_profile211_ 2.79842774839716285e-02 -Beta_toroidal_profile_at_point_212_______________________________________ beta_thermal_toroidal_profile212_ 2.81763158938513267e-02 -Beta_toroidal_profile_at_point_213_______________________________________ beta_thermal_toroidal_profile213_ 2.83688505397673117e-02 -Beta_toroidal_profile_at_point_214_______________________________________ beta_thermal_toroidal_profile214_ 2.85618771545689820e-02 -Beta_toroidal_profile_at_point_215_______________________________________ beta_thermal_toroidal_profile215_ 2.87553914517393178e-02 -Beta_toroidal_profile_at_point_216_______________________________________ beta_thermal_toroidal_profile216_ 2.89493891254467006e-02 -Beta_toroidal_profile_at_point_217_______________________________________ beta_thermal_toroidal_profile217_ 2.91438658505983224e-02 -Beta_toroidal_profile_at_point_218_______________________________________ beta_thermal_toroidal_profile218_ 2.93388172828949190e-02 -Beta_toroidal_profile_at_point_219_______________________________________ beta_thermal_toroidal_profile219_ 2.95342390588870587e-02 -Beta_toroidal_profile_at_point_220_______________________________________ beta_thermal_toroidal_profile220_ 2.97301267960328672e-02 -Beta_toroidal_profile_at_point_221_______________________________________ beta_thermal_toroidal_profile221_ 2.99264760927570213e-02 -Beta_toroidal_profile_at_point_222_______________________________________ beta_thermal_toroidal_profile222_ 3.01232825285112985e-02 -Beta_toroidal_profile_at_point_223_______________________________________ beta_thermal_toroidal_profile223_ 3.03205416638362424e-02 -Beta_toroidal_profile_at_point_224_______________________________________ beta_thermal_toroidal_profile224_ 3.05182490404244389e-02 -Beta_toroidal_profile_at_point_225_______________________________________ beta_thermal_toroidal_profile225_ 3.07164001811848567e-02 -Beta_toroidal_profile_at_point_226_______________________________________ beta_thermal_toroidal_profile226_ 3.09149905903085519e-02 -Beta_toroidal_profile_at_point_227_______________________________________ beta_thermal_toroidal_profile227_ 3.11140157533356838e-02 -Beta_toroidal_profile_at_point_228_______________________________________ beta_thermal_toroidal_profile228_ 3.13134711372237626e-02 -Beta_toroidal_profile_at_point_229_______________________________________ beta_thermal_toroidal_profile229_ 3.15133521904170308e-02 -Beta_toroidal_profile_at_point_230_______________________________________ beta_thermal_toroidal_profile230_ 3.17136543429171261e-02 -Beta_toroidal_profile_at_point_231_______________________________________ beta_thermal_toroidal_profile231_ 3.19143730063548917e-02 -Beta_toroidal_profile_at_point_232_______________________________________ beta_thermal_toroidal_profile232_ 3.21155035740635295e-02 -Beta_toroidal_profile_at_point_233_______________________________________ beta_thermal_toroidal_profile233_ 3.23170414211524995e-02 -Beta_toroidal_profile_at_point_234_______________________________________ beta_thermal_toroidal_profile234_ 3.25189819045830775e-02 -Beta_toroidal_profile_at_point_235_______________________________________ beta_thermal_toroidal_profile235_ 3.27213203632445021e-02 -Beta_toroidal_profile_at_point_236_______________________________________ beta_thermal_toroidal_profile236_ 3.29240521180317255e-02 -Beta_toroidal_profile_at_point_237_______________________________________ beta_thermal_toroidal_profile237_ 3.31271724719238575e-02 -Beta_toroidal_profile_at_point_238_______________________________________ beta_thermal_toroidal_profile238_ 3.33306767100639278e-02 -Beta_toroidal_profile_at_point_239_______________________________________ beta_thermal_toroidal_profile239_ 3.35345600998394819e-02 -Beta_toroidal_profile_at_point_240_______________________________________ beta_thermal_toroidal_profile240_ 3.37388178909644870e-02 -Beta_toroidal_profile_at_point_241_______________________________________ beta_thermal_toroidal_profile241_ 3.39434453155620652e-02 -Beta_toroidal_profile_at_point_242_______________________________________ beta_thermal_toroidal_profile242_ 3.41484375882483565e-02 -Beta_toroidal_profile_at_point_243_______________________________________ beta_thermal_toroidal_profile243_ 3.43537899062172775e-02 -Beta_toroidal_profile_at_point_244_______________________________________ beta_thermal_toroidal_profile244_ 3.45594974493263693e-02 -Beta_toroidal_profile_at_point_245_______________________________________ beta_thermal_toroidal_profile245_ 3.47655553801835548e-02 -Beta_toroidal_profile_at_point_246_______________________________________ beta_thermal_toroidal_profile246_ 3.49719588442349918e-02 -Beta_toroidal_profile_at_point_247_______________________________________ beta_thermal_toroidal_profile247_ 3.51787029698535925e-02 -Beta_toroidal_profile_at_point_248_______________________________________ beta_thermal_toroidal_profile248_ 3.53857828684289236e-02 -Beta_toroidal_profile_at_point_249_______________________________________ beta_thermal_toroidal_profile249_ 3.55931936344575164e-02 -Beta_toroidal_profile_at_point_250_______________________________________ beta_thermal_toroidal_profile250_ 3.58009303456346406e-02 -Beta_toroidal_profile_at_point_251_______________________________________ beta_thermal_toroidal_profile251_ 3.60089880629464870e-02 -Beta_toroidal_profile_at_point_252_______________________________________ beta_thermal_toroidal_profile252_ 3.62173618307636766e-02 -Beta_toroidal_profile_at_point_253_______________________________________ beta_thermal_toroidal_profile253_ 3.64260466769352892e-02 -Beta_toroidal_profile_at_point_254_______________________________________ beta_thermal_toroidal_profile254_ 3.66350376128841068e-02 -Beta_toroidal_profile_at_point_255_______________________________________ beta_thermal_toroidal_profile255_ 3.68443296337024606e-02 -Beta_toroidal_profile_at_point_256_______________________________________ beta_thermal_toroidal_profile256_ 3.70539177182491464e-02 -Beta_toroidal_profile_at_point_257_______________________________________ beta_thermal_toroidal_profile257_ 3.72637968292469021e-02 -Beta_toroidal_profile_at_point_258_______________________________________ beta_thermal_toroidal_profile258_ 3.74739619133812457e-02 -Beta_toroidal_profile_at_point_259_______________________________________ beta_thermal_toroidal_profile259_ 3.76844079013994998e-02 -Beta_toroidal_profile_at_point_260_______________________________________ beta_thermal_toroidal_profile260_ 3.78951297082111352e-02 -Beta_toroidal_profile_at_point_261_______________________________________ beta_thermal_toroidal_profile261_ 3.81061222329887733e-02 -Beta_toroidal_profile_at_point_262_______________________________________ beta_thermal_toroidal_profile262_ 3.83173803592698897e-02 -Beta_toroidal_profile_at_point_263_______________________________________ beta_thermal_toroidal_profile263_ 3.85288989550595373e-02 -Beta_toroidal_profile_at_point_264_______________________________________ beta_thermal_toroidal_profile264_ 3.87406728729336527e-02 -Beta_toroidal_profile_at_point_265_______________________________________ beta_thermal_toroidal_profile265_ 3.89526969501432646e-02 -Beta_toroidal_profile_at_point_266_______________________________________ beta_thermal_toroidal_profile266_ 3.91649660087195067e-02 -Beta_toroidal_profile_at_point_267_______________________________________ beta_thermal_toroidal_profile267_ 3.93774748555792975e-02 -Beta_toroidal_profile_at_point_268_______________________________________ beta_thermal_toroidal_profile268_ 3.95902182826318796e-02 -Beta_toroidal_profile_at_point_269_______________________________________ beta_thermal_toroidal_profile269_ 3.98031910668861094e-02 -Beta_toroidal_profile_at_point_270_______________________________________ beta_thermal_toroidal_profile270_ 4.00163879705583425e-02 -Beta_toroidal_profile_at_point_271_______________________________________ beta_thermal_toroidal_profile271_ 4.02298037411813539e-02 -Beta_toroidal_profile_at_point_272_______________________________________ beta_thermal_toroidal_profile272_ 4.04434331117137710e-02 -Beta_toroidal_profile_at_point_273_______________________________________ beta_thermal_toroidal_profile273_ 4.06572708006502567e-02 -Beta_toroidal_profile_at_point_274_______________________________________ beta_thermal_toroidal_profile274_ 4.08713115121325035e-02 -Beta_toroidal_profile_at_point_275_______________________________________ beta_thermal_toroidal_profile275_ 4.10855499360609153e-02 -Beta_toroidal_profile_at_point_276_______________________________________ beta_thermal_toroidal_profile276_ 4.12999807482070311e-02 -Beta_toroidal_profile_at_point_277_______________________________________ beta_thermal_toroidal_profile277_ 4.15145986103265113e-02 -Beta_toroidal_profile_at_point_278_______________________________________ beta_thermal_toroidal_profile278_ 4.17293981702730882e-02 -Beta_toroidal_profile_at_point_279_______________________________________ beta_thermal_toroidal_profile279_ 4.19443740621128838e-02 -Beta_toroidal_profile_at_point_280_______________________________________ beta_thermal_toroidal_profile280_ 4.21595209062397697e-02 -Beta_toroidal_profile_at_point_281_______________________________________ beta_thermal_toroidal_profile281_ 4.23748333094911417e-02 -Beta_toroidal_profile_at_point_282_______________________________________ beta_thermal_toroidal_profile282_ 4.25903058652645355e-02 -Beta_toroidal_profile_at_point_283_______________________________________ beta_thermal_toroidal_profile283_ 4.28059331536347343e-02 -Beta_toroidal_profile_at_point_284_______________________________________ beta_thermal_toroidal_profile284_ 4.30217097414718475e-02 -Beta_toroidal_profile_at_point_285_______________________________________ beta_thermal_toroidal_profile285_ 4.32376301825597373e-02 -Beta_toroidal_profile_at_point_286_______________________________________ beta_thermal_toroidal_profile286_ 4.34536890177153190e-02 -Beta_toroidal_profile_at_point_287_______________________________________ beta_thermal_toroidal_profile287_ 4.36698807749083470e-02 -Beta_toroidal_profile_at_point_288_______________________________________ beta_thermal_toroidal_profile288_ 4.38861999693820823e-02 -Beta_toroidal_profile_at_point_289_______________________________________ beta_thermal_toroidal_profile289_ 4.41026411037744107e-02 -Beta_toroidal_profile_at_point_290_______________________________________ beta_thermal_toroidal_profile290_ 4.43191986682396066e-02 -Beta_toroidal_profile_at_point_291_______________________________________ beta_thermal_toroidal_profile291_ 4.45358671405709020e-02 -Beta_toroidal_profile_at_point_292_______________________________________ beta_thermal_toroidal_profile292_ 4.47526409863234567e-02 -Beta_toroidal_profile_at_point_293_______________________________________ beta_thermal_toroidal_profile293_ 4.49695146589381770e-02 -Beta_toroidal_profile_at_point_294_______________________________________ beta_thermal_toroidal_profile294_ 4.51864825998659764e-02 -Beta_toroidal_profile_at_point_295_______________________________________ beta_thermal_toroidal_profile295_ 4.54035392386928360e-02 -Beta_toroidal_profile_at_point_296_______________________________________ beta_thermal_toroidal_profile296_ 4.56206789932653151e-02 -Beta_toroidal_profile_at_point_297_______________________________________ beta_thermal_toroidal_profile297_ 4.58378962698167206e-02 -Beta_toroidal_profile_at_point_298_______________________________________ beta_thermal_toroidal_profile298_ 4.60551854630939991e-02 -Beta_toroidal_profile_at_point_299_______________________________________ beta_thermal_toroidal_profile299_ 4.62725409564849893e-02 -Beta_toroidal_profile_at_point_300_______________________________________ beta_thermal_toroidal_profile300_ 4.64899571221466107e-02 -Beta_toroidal_profile_at_point_301_______________________________________ beta_thermal_toroidal_profile301_ 4.67074283211333097e-02 -Beta_toroidal_profile_at_point_302_______________________________________ beta_thermal_toroidal_profile302_ 4.69249489035263381e-02 -Beta_toroidal_profile_at_point_303_______________________________________ beta_thermal_toroidal_profile303_ 4.71425132085634760e-02 -Beta_toroidal_profile_at_point_304_______________________________________ beta_thermal_toroidal_profile304_ 4.73601155647693922e-02 -Beta_toroidal_profile_at_point_305_______________________________________ beta_thermal_toroidal_profile305_ 4.75777502900866719e-02 -Beta_toroidal_profile_at_point_306_______________________________________ beta_thermal_toroidal_profile306_ 4.77954116920072530e-02 -Beta_toroidal_profile_at_point_307_______________________________________ beta_thermal_toroidal_profile307_ 4.80130940677045495e-02 -Beta_toroidal_profile_at_point_308_______________________________________ beta_thermal_toroidal_profile308_ 4.82307917041661302e-02 -Beta_toroidal_profile_at_point_309_______________________________________ beta_thermal_toroidal_profile309_ 4.84484988783269316e-02 -Beta_toroidal_profile_at_point_310_______________________________________ beta_thermal_toroidal_profile310_ 4.86662098572030813e-02 -Beta_toroidal_profile_at_point_311_______________________________________ beta_thermal_toroidal_profile311_ 4.88839188980262351e-02 -Beta_toroidal_profile_at_point_312_______________________________________ beta_thermal_toroidal_profile312_ 4.91016202483785108e-02 -Beta_toroidal_profile_at_point_313_______________________________________ beta_thermal_toroidal_profile313_ 4.93193081463279281e-02 -Beta_toroidal_profile_at_point_314_______________________________________ beta_thermal_toroidal_profile314_ 4.95369768205644809e-02 -Beta_toroidal_profile_at_point_315_______________________________________ beta_thermal_toroidal_profile315_ 4.97546204905365899e-02 -Beta_toroidal_profile_at_point_316_______________________________________ beta_thermal_toroidal_profile316_ 4.99722333665884380e-02 -Beta_toroidal_profile_at_point_317_______________________________________ beta_thermal_toroidal_profile317_ 5.01898096500973667e-02 -Beta_toroidal_profile_at_point_318_______________________________________ beta_thermal_toroidal_profile318_ 5.04073435336122172e-02 -Beta_toroidal_profile_at_point_319_______________________________________ beta_thermal_toroidal_profile319_ 5.06248292009920109e-02 -Beta_toroidal_profile_at_point_320_______________________________________ beta_thermal_toroidal_profile320_ 5.08422608275452617e-02 -Beta_toroidal_profile_at_point_321_______________________________________ beta_thermal_toroidal_profile321_ 5.10596325801697046e-02 -Beta_toroidal_profile_at_point_322_______________________________________ beta_thermal_toroidal_profile322_ 5.12769386174925651e-02 -Beta_toroidal_profile_at_point_323_______________________________________ beta_thermal_toroidal_profile323_ 5.14941730900115441e-02 -Beta_toroidal_profile_at_point_324_______________________________________ beta_thermal_toroidal_profile324_ 5.17113301402360032e-02 -Beta_toroidal_profile_at_point_325_______________________________________ beta_thermal_toroidal_profile325_ 5.19284039028290040e-02 -Beta_toroidal_profile_at_point_326_______________________________________ beta_thermal_toroidal_profile326_ 5.21453885047495624e-02 -Beta_toroidal_profile_at_point_327_______________________________________ beta_thermal_toroidal_profile327_ 5.23622780653956038e-02 -Beta_toroidal_profile_at_point_328_______________________________________ beta_thermal_toroidal_profile328_ 5.25790666967473896e-02 -Beta_toroidal_profile_at_point_329_______________________________________ beta_thermal_toroidal_profile329_ 5.27957485035113749e-02 -Beta_toroidal_profile_at_point_330_______________________________________ beta_thermal_toroidal_profile330_ 5.30123175832646620e-02 -Beta_toroidal_profile_at_point_331_______________________________________ beta_thermal_toroidal_profile331_ 5.32287680266000096e-02 -Beta_toroidal_profile_at_point_332_______________________________________ beta_thermal_toroidal_profile332_ 5.34450939172710360e-02 -Beta_toroidal_profile_at_point_333_______________________________________ beta_thermal_toroidal_profile333_ 5.36612893323383383e-02 -Beta_toroidal_profile_at_point_334_______________________________________ beta_thermal_toroidal_profile334_ 5.38773483423157715e-02 -Beta_toroidal_profile_at_point_335_______________________________________ beta_thermal_toroidal_profile335_ 5.40932650113173999e-02 -Beta_toroidal_profile_at_point_336_______________________________________ beta_thermal_toroidal_profile336_ 5.43090333972048867e-02 -Beta_toroidal_profile_at_point_337_______________________________________ beta_thermal_toroidal_profile337_ 5.45246475517352641e-02 -Beta_toroidal_profile_at_point_338_______________________________________ beta_thermal_toroidal_profile338_ 5.47401015207094402e-02 -Beta_toroidal_profile_at_point_339_______________________________________ beta_thermal_toroidal_profile339_ 5.49553893441208988e-02 -Beta_toroidal_profile_at_point_340_______________________________________ beta_thermal_toroidal_profile340_ 5.51705050563050317e-02 -Beta_toroidal_profile_at_point_341_______________________________________ beta_thermal_toroidal_profile341_ 5.53854426860889704e-02 -Beta_toroidal_profile_at_point_342_______________________________________ beta_thermal_toroidal_profile342_ 5.56001962569417571e-02 -Beta_toroidal_profile_at_point_343_______________________________________ beta_thermal_toroidal_profile343_ 5.58147597871251483e-02 -Beta_toroidal_profile_at_point_344_______________________________________ beta_thermal_toroidal_profile344_ 5.60291272898447087e-02 -Beta_toroidal_profile_at_point_345_______________________________________ beta_thermal_toroidal_profile345_ 5.62432927734015861e-02 -Beta_toroidal_profile_at_point_346_______________________________________ beta_thermal_toroidal_profile346_ 5.64572502413444657e-02 -Beta_toroidal_profile_at_point_347_______________________________________ beta_thermal_toroidal_profile347_ 5.66709936926222610e-02 -Beta_toroidal_profile_at_point_348_______________________________________ beta_thermal_toroidal_profile348_ 5.68845171217371506e-02 -Beta_toroidal_profile_at_point_349_______________________________________ beta_thermal_toroidal_profile349_ 5.70978145188979491e-02 -Beta_toroidal_profile_at_point_350_______________________________________ beta_thermal_toroidal_profile350_ 5.73108798701741640e-02 -Beta_toroidal_profile_at_point_351_______________________________________ beta_thermal_toroidal_profile351_ 5.75237071576503514e-02 -Beta_toroidal_profile_at_point_352_______________________________________ beta_thermal_toroidal_profile352_ 5.77362903595808469e-02 -Beta_toroidal_profile_at_point_353_______________________________________ beta_thermal_toroidal_profile353_ 5.79486234505452377e-02 -Beta_toroidal_profile_at_point_354_______________________________________ beta_thermal_toroidal_profile354_ 5.81607004016038501e-02 -Beta_toroidal_profile_at_point_355_______________________________________ beta_thermal_toroidal_profile355_ 5.83725151804541237e-02 -Beta_toroidal_profile_at_point_356_______________________________________ beta_thermal_toroidal_profile356_ 5.85840617515870909e-02 -Beta_toroidal_profile_at_point_357_______________________________________ beta_thermal_toroidal_profile357_ 5.87953340764444110e-02 -Beta_toroidal_profile_at_point_358_______________________________________ beta_thermal_toroidal_profile358_ 5.90063261135759035e-02 -Beta_toroidal_profile_at_point_359_______________________________________ beta_thermal_toroidal_profile359_ 5.92170318187973665e-02 -Beta_toroidal_profile_at_point_360_______________________________________ beta_thermal_toroidal_profile360_ 5.94274451453489713e-02 -Beta_toroidal_profile_at_point_361_______________________________________ beta_thermal_toroidal_profile361_ 5.96375600440539333e-02 -Beta_toroidal_profile_at_point_362_______________________________________ beta_thermal_toroidal_profile362_ 5.98473704634777948e-02 -Beta_toroidal_profile_at_point_363_______________________________________ beta_thermal_toroidal_profile363_ 6.00568703500879431e-02 -Beta_toroidal_profile_at_point_364_______________________________________ beta_thermal_toroidal_profile364_ 6.02660536484136214e-02 -Beta_toroidal_profile_at_point_365_______________________________________ beta_thermal_toroidal_profile365_ 6.04749143012063908e-02 -Beta_toroidal_profile_at_point_366_______________________________________ beta_thermal_toroidal_profile366_ 6.06834462496010571e-02 -Beta_toroidal_profile_at_point_367_______________________________________ beta_thermal_toroidal_profile367_ 6.08916434332766945e-02 -Beta_toroidal_profile_at_point_368_______________________________________ beta_thermal_toroidal_profile368_ 6.10994997906186207e-02 -Beta_toroidal_profile_at_point_369_______________________________________ beta_thermal_toroidal_profile369_ 6.13070092588801491e-02 -Beta_toroidal_profile_at_point_370_______________________________________ beta_thermal_toroidal_profile370_ 6.15141657743454653e-02 -Beta_toroidal_profile_at_point_371_______________________________________ beta_thermal_toroidal_profile371_ 6.17209632724920604e-02 -Beta_toroidal_profile_at_point_372_______________________________________ beta_thermal_toroidal_profile372_ 6.19273956881543977e-02 -Beta_toroidal_profile_at_point_373_______________________________________ beta_thermal_toroidal_profile373_ 6.21334569556873870e-02 -Beta_toroidal_profile_at_point_374_______________________________________ beta_thermal_toroidal_profile374_ 6.23391410091305442e-02 -Beta_toroidal_profile_at_point_375_______________________________________ beta_thermal_toroidal_profile375_ 6.25444417823724230e-02 -Beta_toroidal_profile_at_point_376_______________________________________ beta_thermal_toroidal_profile376_ 6.27493532093155448e-02 -Beta_toroidal_profile_at_point_377_______________________________________ beta_thermal_toroidal_profile377_ 6.29538692240415726e-02 -Beta_toroidal_profile_at_point_378_______________________________________ beta_thermal_toroidal_profile378_ 6.31579837609769906e-02 -Beta_toroidal_profile_at_point_379_______________________________________ beta_thermal_toroidal_profile379_ 6.33616907550592079e-02 -Beta_toroidal_profile_at_point_380_______________________________________ beta_thermal_toroidal_profile380_ 6.35649841419028694e-02 -Beta_toroidal_profile_at_point_381_______________________________________ beta_thermal_toroidal_profile381_ 6.37678578579666394e-02 -Beta_toroidal_profile_at_point_382_______________________________________ beta_thermal_toroidal_profile382_ 6.39703058407204150e-02 -Beta_toroidal_profile_at_point_383_______________________________________ beta_thermal_toroidal_profile383_ 6.41723220288129698e-02 -Beta_toroidal_profile_at_point_384_______________________________________ beta_thermal_toroidal_profile384_ 6.43739003622396805e-02 -Beta_toroidal_profile_at_point_385_______________________________________ beta_thermal_toroidal_profile385_ 6.45750347825109344e-02 -Beta_toroidal_profile_at_point_386_______________________________________ beta_thermal_toroidal_profile386_ 6.47757192328207859e-02 -Beta_toroidal_profile_at_point_387_______________________________________ beta_thermal_toroidal_profile387_ 6.49759476582159184e-02 -Beta_toroidal_profile_at_point_388_______________________________________ beta_thermal_toroidal_profile388_ 6.51757140057651341e-02 -Beta_toroidal_profile_at_point_389_______________________________________ beta_thermal_toroidal_profile389_ 6.53750122247290510e-02 -Beta_toroidal_profile_at_point_390_______________________________________ beta_thermal_toroidal_profile390_ 6.55738362667302593e-02 -Beta_toroidal_profile_at_point_391_______________________________________ beta_thermal_toroidal_profile391_ 6.57721800859236982e-02 -Beta_toroidal_profile_at_point_392_______________________________________ beta_thermal_toroidal_profile392_ 6.59700376391675752e-02 -Beta_toroidal_profile_at_point_393_______________________________________ beta_thermal_toroidal_profile393_ 6.61674028861945762e-02 -Beta_toroidal_profile_at_point_394_______________________________________ beta_thermal_toroidal_profile394_ 6.63642697897832562e-02 -Beta_toroidal_profile_at_point_395_______________________________________ beta_thermal_toroidal_profile395_ 6.65606323159301516e-02 -Beta_toroidal_profile_at_point_396_______________________________________ beta_thermal_toroidal_profile396_ 6.67564844340216568e-02 -Beta_toroidal_profile_at_point_397_______________________________________ beta_thermal_toroidal_profile397_ 6.69518201170071076e-02 -Beta_toroidal_profile_at_point_398_______________________________________ beta_thermal_toroidal_profile398_ 6.71466333415711575e-02 -Beta_toroidal_profile_at_point_399_______________________________________ beta_thermal_toroidal_profile399_ 6.73409180883074721e-02 -Beta_toroidal_profile_at_point_400_______________________________________ beta_thermal_toroidal_profile400_ 6.75346683418919513e-02 -Beta_toroidal_profile_at_point_401_______________________________________ beta_thermal_toroidal_profile401_ 6.77278780912569656e-02 -Beta_toroidal_profile_at_point_402_______________________________________ beta_thermal_toroidal_profile402_ 6.79205413297655353e-02 -Beta_toroidal_profile_at_point_403_______________________________________ beta_thermal_toroidal_profile403_ 6.81126520553858167e-02 -Beta_toroidal_profile_at_point_404_______________________________________ beta_thermal_toroidal_profile404_ 6.83042042708661423e-02 -Beta_toroidal_profile_at_point_405_______________________________________ beta_thermal_toroidal_profile405_ 6.84951919839101586e-02 -Beta_toroidal_profile_at_point_406_______________________________________ beta_thermal_toroidal_profile406_ 6.86856092073525742e-02 -Beta_toroidal_profile_at_point_407_______________________________________ beta_thermal_toroidal_profile407_ 6.88754499593348946e-02 -Beta_toroidal_profile_at_point_408_______________________________________ beta_thermal_toroidal_profile408_ 6.90647082634816972e-02 -Beta_toroidal_profile_at_point_409_______________________________________ beta_thermal_toroidal_profile409_ 6.92533781490772271e-02 -Beta_toroidal_profile_at_point_410_______________________________________ beta_thermal_toroidal_profile410_ 6.94414536512420882e-02 -Beta_toroidal_profile_at_point_411_______________________________________ beta_thermal_toroidal_profile411_ 6.96289288111105881e-02 -Beta_toroidal_profile_at_point_412_______________________________________ beta_thermal_toroidal_profile412_ 6.98157976760080540e-02 -Beta_toroidal_profile_at_point_413_______________________________________ beta_thermal_toroidal_profile413_ 7.00020542996287465e-02 -Beta_toroidal_profile_at_point_414_______________________________________ beta_thermal_toroidal_profile414_ 7.01876927422138835e-02 -Beta_toroidal_profile_at_point_415_______________________________________ beta_thermal_toroidal_profile415_ 7.03727070707299424e-02 -Beta_toroidal_profile_at_point_416_______________________________________ beta_thermal_toroidal_profile416_ 7.05570913590474885e-02 -Beta_toroidal_profile_at_point_417_______________________________________ beta_thermal_toroidal_profile417_ 7.07408396881201856e-02 -Beta_toroidal_profile_at_point_418_______________________________________ beta_thermal_toroidal_profile418_ 7.09239461461639159e-02 -Beta_toroidal_profile_at_point_419_______________________________________ beta_thermal_toroidal_profile419_ 7.11064048288365252e-02 -Beta_toroidal_profile_at_point_420_______________________________________ beta_thermal_toroidal_profile420_ 7.12882098394175268e-02 -Beta_toroidal_profile_at_point_421_______________________________________ beta_thermal_toroidal_profile421_ 7.14693552889884703e-02 -Beta_toroidal_profile_at_point_422_______________________________________ beta_thermal_toroidal_profile422_ 7.16498352966133123e-02 -Beta_toroidal_profile_at_point_423_______________________________________ beta_thermal_toroidal_profile423_ 7.18296439895190486e-02 -Beta_toroidal_profile_at_point_424_______________________________________ beta_thermal_toroidal_profile424_ 7.20087755032767923e-02 -Beta_toroidal_profile_at_point_425_______________________________________ beta_thermal_toroidal_profile425_ 7.21872239819831979e-02 -Beta_toroidal_profile_at_point_426_______________________________________ beta_thermal_toroidal_profile426_ 7.23649835784418577e-02 -Beta_toroidal_profile_at_point_427_______________________________________ beta_thermal_toroidal_profile427_ 7.25420484543452537e-02 -Beta_toroidal_profile_at_point_428_______________________________________ beta_thermal_toroidal_profile428_ 7.27184127804568342e-02 -Beta_toroidal_profile_at_point_429_______________________________________ beta_thermal_toroidal_profile429_ 7.28940707367935342e-02 -Beta_toroidal_profile_at_point_430_______________________________________ beta_thermal_toroidal_profile430_ 7.30690165128081992e-02 -Beta_toroidal_profile_at_point_431_______________________________________ beta_thermal_toroidal_profile431_ 7.32432443075727857e-02 -Beta_toroidal_profile_at_point_432_______________________________________ beta_thermal_toroidal_profile432_ 7.34167483299613677e-02 -Beta_toroidal_profile_at_point_433_______________________________________ beta_thermal_toroidal_profile433_ 7.35895227988336703e-02 -Beta_toroidal_profile_at_point_434_______________________________________ beta_thermal_toroidal_profile434_ 7.37615619432187702e-02 -Beta_toroidal_profile_at_point_435_______________________________________ beta_thermal_toroidal_profile435_ 7.39328600024991428e-02 -Beta_toroidal_profile_at_point_436_______________________________________ beta_thermal_toroidal_profile436_ 7.41034112265946676e-02 -Beta_toroidal_profile_at_point_437_______________________________________ beta_thermal_toroidal_profile437_ 7.42732098761474530e-02 -Beta_toroidal_profile_at_point_438_______________________________________ beta_thermal_toroidal_profile438_ 7.44422502227061467e-02 -Beta_toroidal_profile_at_point_439_______________________________________ beta_thermal_toroidal_profile439_ 7.46105265489113434e-02 -Beta_toroidal_profile_at_point_440_______________________________________ beta_thermal_toroidal_profile440_ 7.47780331486804506e-02 -Beta_toroidal_profile_at_point_441_______________________________________ beta_thermal_toroidal_profile441_ 7.49447643273933456e-02 -Beta_toroidal_profile_at_point_442_______________________________________ beta_thermal_toroidal_profile442_ 7.51107144020780326e-02 -Beta_toroidal_profile_at_point_443_______________________________________ beta_thermal_toroidal_profile443_ 7.52758777015965774e-02 -Beta_toroidal_profile_at_point_444_______________________________________ beta_thermal_toroidal_profile444_ 7.54402485668312778e-02 -Beta_toroidal_profile_at_point_445_______________________________________ beta_thermal_toroidal_profile445_ 7.56038213508709728e-02 -Beta_toroidal_profile_at_point_446_______________________________________ beta_thermal_toroidal_profile446_ 7.57665904191979350e-02 -Beta_toroidal_profile_at_point_447_______________________________________ beta_thermal_toroidal_profile447_ 7.59285501498744436e-02 -Beta_toroidal_profile_at_point_448_______________________________________ beta_thermal_toroidal_profile448_ 7.60896949337300926e-02 -Beta_toroidal_profile_at_point_449_______________________________________ beta_thermal_toroidal_profile449_ 7.62500191745488776e-02 -Beta_toroidal_profile_at_point_450_______________________________________ beta_thermal_toroidal_profile450_ 7.64095172892569757e-02 -Beta_toroidal_profile_at_point_451_______________________________________ beta_thermal_toroidal_profile451_ 7.65681837081103045e-02 -Beta_toroidal_profile_at_point_452_______________________________________ beta_thermal_toroidal_profile452_ 7.67260128748826764e-02 -Beta_toroidal_profile_at_point_453_______________________________________ beta_thermal_toroidal_profile453_ 7.68829992470536350e-02 -Beta_toroidal_profile_at_point_454_______________________________________ beta_thermal_toroidal_profile454_ 7.70391372959972481e-02 -Beta_toroidal_profile_at_point_455_______________________________________ beta_thermal_toroidal_profile455_ 7.71944215071703466e-02 -Beta_toroidal_profile_at_point_456_______________________________________ beta_thermal_toroidal_profile456_ 7.73488463803016085e-02 -Beta_toroidal_profile_at_point_457_______________________________________ beta_thermal_toroidal_profile457_ 7.75024064295803811e-02 -Beta_toroidal_profile_at_point_458_______________________________________ beta_thermal_toroidal_profile458_ 7.76550961838458759e-02 -Beta_toroidal_profile_at_point_459_______________________________________ beta_thermal_toroidal_profile459_ 7.78069101867766844e-02 -Beta_toroidal_profile_at_point_460_______________________________________ beta_thermal_toroidal_profile460_ 7.79578429970802372e-02 -Beta_toroidal_profile_at_point_461_______________________________________ beta_thermal_toroidal_profile461_ 7.81078891886826387e-02 -Beta_toroidal_profile_at_point_462_______________________________________ beta_thermal_toroidal_profile462_ 7.82570433509186952e-02 -Beta_toroidal_profile_at_point_463_______________________________________ beta_thermal_toroidal_profile463_ 7.84053000887220686e-02 -Beta_toroidal_profile_at_point_464_______________________________________ beta_thermal_toroidal_profile464_ 7.85526540228153464e-02 -Beta_toroidal_profile_at_point_465_______________________________________ beta_thermal_toroidal_profile465_ 7.86990997899010419e-02 -Beta_toroidal_profile_at_point_466_______________________________________ beta_thermal_toroidal_profile466_ 7.88446320428519004e-02 -Beta_toroidal_profile_at_point_467_______________________________________ beta_thermal_toroidal_profile467_ 7.89892454509020236e-02 -Beta_toroidal_profile_at_point_468_______________________________________ beta_thermal_toroidal_profile468_ 7.91329346998376620e-02 -Beta_toroidal_profile_at_point_469_______________________________________ beta_thermal_toroidal_profile469_ 7.92756944921886725e-02 -Beta_toroidal_profile_at_point_470_______________________________________ beta_thermal_toroidal_profile470_ 7.94175195474199763e-02 -Beta_toroidal_profile_at_point_471_______________________________________ beta_thermal_toroidal_profile471_ 7.95584046021227120e-02 -Beta_toroidal_profile_at_point_472_______________________________________ beta_thermal_toroidal_profile472_ 7.96983444102063870e-02 -Beta_toroidal_profile_at_point_473_______________________________________ beta_thermal_toroidal_profile473_ 7.98373337430905716e-02 -Beta_toroidal_profile_at_point_474_______________________________________ beta_thermal_toroidal_profile474_ 7.99753673898968703e-02 -Beta_toroidal_profile_at_point_475_______________________________________ beta_thermal_toroidal_profile475_ 8.01124401576413514e-02 -Beta_toroidal_profile_at_point_476_______________________________________ beta_thermal_toroidal_profile476_ 8.02485468714265321e-02 -Beta_toroidal_profile_at_point_477_______________________________________ beta_thermal_toroidal_profile477_ 8.03836823746343493e-02 -Beta_toroidal_profile_at_point_478_______________________________________ beta_thermal_toroidal_profile478_ 8.05178415291183114e-02 -Beta_toroidal_profile_at_point_479_______________________________________ beta_thermal_toroidal_profile479_ 8.06510192153965383e-02 -Beta_toroidal_profile_at_point_480_______________________________________ beta_thermal_toroidal_profile480_ 8.07832103328447876e-02 -Beta_toroidal_profile_at_point_481_______________________________________ beta_thermal_toroidal_profile481_ 8.09144097998893419e-02 -Beta_toroidal_profile_at_point_482_______________________________________ beta_thermal_toroidal_profile482_ 8.10446125542002710e-02 -Beta_toroidal_profile_at_point_483_______________________________________ beta_thermal_toroidal_profile483_ 8.11738135528846522e-02 -Beta_toroidal_profile_at_point_484_______________________________________ beta_thermal_toroidal_profile484_ 8.13020077726803320e-02 -Beta_toroidal_profile_at_point_485_______________________________________ beta_thermal_toroidal_profile485_ 8.14291902101492021e-02 -Beta_toroidal_profile_at_point_486_______________________________________ beta_thermal_toroidal_profile486_ 8.15553558818712249e-02 -Beta_toroidal_profile_at_point_487_______________________________________ beta_thermal_toroidal_profile487_ 8.16804998246378894e-02 -Beta_toroidal_profile_at_point_488_______________________________________ beta_thermal_toroidal_profile488_ 8.18046170956465979e-02 -Beta_toroidal_profile_at_point_489_______________________________________ beta_thermal_toroidal_profile489_ 8.19277027726943441e-02 -Beta_toroidal_profile_at_point_490_______________________________________ beta_thermal_toroidal_profile490_ 8.20497519543723075e-02 -Beta_toroidal_profile_at_point_491_______________________________________ beta_thermal_toroidal_profile491_ 8.21707597602597956e-02 -Beta_toroidal_profile_at_point_492_______________________________________ beta_thermal_toroidal_profile492_ 8.22907213311189351e-02 -Beta_toroidal_profile_at_point_493_______________________________________ beta_thermal_toroidal_profile493_ 8.24096318290888502e-02 -Beta_toroidal_profile_at_point_494_______________________________________ beta_thermal_toroidal_profile494_ 8.25274864378807010e-02 -Beta_toroidal_profile_at_point_495_______________________________________ beta_thermal_toroidal_profile495_ 8.26442803629722084e-02 -Beta_toroidal_profile_at_point_496_______________________________________ beta_thermal_toroidal_profile496_ 8.27600088318022897e-02 -Beta_toroidal_profile_at_point_497_______________________________________ beta_thermal_toroidal_profile497_ 8.28746670939663199e-02 -Beta_toroidal_profile_at_point_498_______________________________________ beta_thermal_toroidal_profile498_ 8.29882504214107669e-02 -Beta_toroidal_profile_at_point_499_______________________________________ beta_thermal_toroidal_profile499_ 8.31007541086285634e-02 -Beta_toroidal_profile_at_point_500_______________________________________ beta_thermal_toroidal_profile500_ 8.32121734728541729e-02 -Beta_toroidal_profile_at_point_501_______________________________________ beta_thermal_toroidal_profile501_ 8.33230860543128782e-02 -Beta_toroidal_profile_at_point_502_______________________________________ beta_thermal_toroidal_profile502_ 8.34334895280795102e-02 -Beta_toroidal_profile_at_point_503_______________________________________ beta_thermal_toroidal_profile503_ 8.35427978293013379e-02 -Beta_toroidal_profile_at_point_504_______________________________________ beta_thermal_toroidal_profile504_ 8.36510063415712019e-02 -Beta_toroidal_profile_at_point_505_______________________________________ beta_thermal_toroidal_profile505_ 8.37581104720443309e-02 -Beta_toroidal_profile_at_point_506_______________________________________ beta_thermal_toroidal_profile506_ 8.38641056516341715e-02 -Beta_toroidal_profile_at_point_507_______________________________________ beta_thermal_toroidal_profile507_ 8.39689873352077731e-02 -Beta_toroidal_profile_at_point_508_______________________________________ beta_thermal_toroidal_profile508_ 8.40727510017819507e-02 -Beta_toroidal_profile_at_point_509_______________________________________ beta_thermal_toroidal_profile509_ 8.41753921547189615e-02 -Beta_toroidal_profile_at_point_510_______________________________________ beta_thermal_toroidal_profile510_ 8.42769063219225151e-02 -Beta_toroidal_profile_at_point_511_______________________________________ beta_thermal_toroidal_profile511_ 8.43772890560337413e-02 -Beta_toroidal_profile_at_point_512_______________________________________ beta_thermal_toroidal_profile512_ 8.44765359346272421e-02 -Beta_toroidal_profile_at_point_513_______________________________________ beta_thermal_toroidal_profile513_ 8.45746425604072954e-02 -Beta_toroidal_profile_at_point_514_______________________________________ beta_thermal_toroidal_profile514_ 8.46716045614036295e-02 -Beta_toroidal_profile_at_point_515_______________________________________ beta_thermal_toroidal_profile515_ 8.47674175911682232e-02 -Beta_toroidal_profile_at_point_516_______________________________________ beta_thermal_toroidal_profile516_ 8.48620773289708585e-02 -Beta_toroidal_profile_at_point_517_______________________________________ beta_thermal_toroidal_profile517_ 8.49555794799958380e-02 -Beta_toroidal_profile_at_point_518_______________________________________ beta_thermal_toroidal_profile518_ 8.50479197755380917e-02 -Beta_toroidal_profile_at_point_519_______________________________________ beta_thermal_toroidal_profile519_ 8.51390939731996171e-02 -Beta_toroidal_profile_at_point_520_______________________________________ beta_thermal_toroidal_profile520_ 8.52290978570856700e-02 -Beta_toroidal_profile_at_point_521_______________________________________ beta_thermal_toroidal_profile521_ 8.53179272380012454e-02 -Beta_toroidal_profile_at_point_522_______________________________________ beta_thermal_toroidal_profile522_ 8.54055779536475046e-02 -Beta_toroidal_profile_at_point_523_______________________________________ beta_thermal_toroidal_profile523_ 8.54920458688181867e-02 -Beta_toroidal_profile_at_point_524_______________________________________ beta_thermal_toroidal_profile524_ 8.55773268755957717e-02 -Beta_toroidal_profile_at_point_525_______________________________________ beta_thermal_toroidal_profile525_ 8.56614168935485726e-02 -Beta_toroidal_profile_at_point_526_______________________________________ beta_thermal_toroidal_profile526_ 8.57443118699264956e-02 -Beta_toroidal_profile_at_point_527_______________________________________ beta_thermal_toroidal_profile527_ 8.58260077798577714e-02 -Beta_toroidal_profile_at_point_528_______________________________________ beta_thermal_toroidal_profile528_ 8.59065006265455622e-02 -Beta_toroidal_profile_at_point_529_______________________________________ beta_thermal_toroidal_profile529_ 8.59857864414643736e-02 -Beta_toroidal_profile_at_point_530_______________________________________ beta_thermal_toroidal_profile530_ 8.60638612845563561e-02 -Beta_toroidal_profile_at_point_531_______________________________________ beta_thermal_toroidal_profile531_ 8.61407212444277592e-02 -Beta_toroidal_profile_at_point_532_______________________________________ beta_thermal_toroidal_profile532_ 8.62163624385456351e-02 -Beta_toroidal_profile_at_point_533_______________________________________ beta_thermal_toroidal_profile533_ 8.62907810134340980e-02 -Beta_toroidal_profile_at_point_534_______________________________________ beta_thermal_toroidal_profile534_ 8.63639731448705844e-02 -Beta_toroidal_profile_at_point_535_______________________________________ beta_thermal_toroidal_profile535_ 8.64359350380827091e-02 -Beta_toroidal_profile_at_point_536_______________________________________ beta_thermal_toroidal_profile536_ 8.65066629279441640e-02 -Beta_toroidal_profile_at_point_537_______________________________________ beta_thermal_toroidal_profile537_ 8.65761530791712558e-02 -Beta_toroidal_profile_at_point_538_______________________________________ beta_thermal_toroidal_profile538_ 8.66444017865194427e-02 -Beta_toroidal_profile_at_point_539_______________________________________ beta_thermal_toroidal_profile539_ 8.67114053749791780e-02 -Beta_toroidal_profile_at_point_540_______________________________________ beta_thermal_toroidal_profile540_ 8.67771601999725445e-02 -Beta_toroidal_profile_at_point_541_______________________________________ beta_thermal_toroidal_profile541_ 8.68416626475492642e-02 -Beta_toroidal_profile_at_point_542_______________________________________ beta_thermal_toroidal_profile542_ 8.69049091345829583e-02 -Beta_toroidal_profile_at_point_543_______________________________________ beta_thermal_toroidal_profile543_ 8.69668961089674064e-02 -Beta_toroidal_profile_at_point_544_______________________________________ beta_thermal_toroidal_profile544_ 8.70276200498122376e-02 -Beta_toroidal_profile_at_point_545_______________________________________ beta_thermal_toroidal_profile545_ 8.70870774676394954e-02 -Beta_toroidal_profile_at_point_546_______________________________________ beta_thermal_toroidal_profile546_ 8.71452649045790367e-02 -Beta_toroidal_profile_at_point_547_______________________________________ beta_thermal_toroidal_profile547_ 8.72021789345649445e-02 -Beta_toroidal_profile_at_point_548_______________________________________ beta_thermal_toroidal_profile548_ 8.72578161635311211e-02 -Beta_toroidal_profile_at_point_549_______________________________________ beta_thermal_toroidal_profile549_ 8.73121732296071179e-02 -Beta_toroidal_profile_at_point_550_______________________________________ beta_thermal_toroidal_profile550_ 8.73652468033138951e-02 -Beta_toroidal_profile_at_point_551_______________________________________ beta_thermal_toroidal_profile551_ 8.74170335877594989e-02 -Beta_toroidal_profile_at_point_552_______________________________________ beta_thermal_toroidal_profile552_ 8.74675303188345160e-02 -Beta_toroidal_profile_at_point_553_______________________________________ beta_thermal_toroidal_profile553_ 8.75167337654076810e-02 -Beta_toroidal_profile_at_point_554_______________________________________ beta_thermal_toroidal_profile554_ 8.75646407295212759e-02 -Beta_toroidal_profile_at_point_555_______________________________________ beta_thermal_toroidal_profile555_ 8.76112480465865151e-02 -Beta_toroidal_profile_at_point_556_______________________________________ beta_thermal_toroidal_profile556_ 8.76565525855786121e-02 -Beta_toroidal_profile_at_point_557_______________________________________ beta_thermal_toroidal_profile557_ 8.77005512492320671e-02 -Beta_toroidal_profile_at_point_558_______________________________________ beta_thermal_toroidal_profile558_ 8.77432409742358033e-02 -Beta_toroidal_profile_at_point_559_______________________________________ beta_thermal_toroidal_profile559_ 8.77846187314279547e-02 -Beta_toroidal_profile_at_point_560_______________________________________ beta_thermal_toroidal_profile560_ 8.78246815259907804e-02 -Beta_toroidal_profile_at_point_561_______________________________________ beta_thermal_toroidal_profile561_ 8.78634263976453972e-02 -Beta_toroidal_profile_at_point_562_______________________________________ beta_thermal_toroidal_profile562_ 8.79008504208465408e-02 -Beta_toroidal_profile_at_point_563_______________________________________ beta_thermal_toroidal_profile563_ 8.79369507049769655e-02 -Beta_toroidal_profile_at_point_564_______________________________________ beta_thermal_toroidal_profile564_ 8.79717243945419836e-02 -Beta_toroidal_profile_at_point_565_______________________________________ beta_thermal_toroidal_profile565_ 8.80051686693635038e-02 -Beta_toroidal_profile_at_point_566_______________________________________ beta_thermal_toroidal_profile566_ 8.80372807447745709e-02 -Beta_toroidal_profile_at_point_567_______________________________________ beta_thermal_toroidal_profile567_ 8.80680578718130852e-02 -Beta_toroidal_profile_at_point_568_______________________________________ beta_thermal_toroidal_profile568_ 8.80974973374160641e-02 -Beta_toroidal_profile_at_point_569_______________________________________ beta_thermal_toroidal_profile569_ 8.81255964646130568e-02 -Beta_toroidal_profile_at_point_570_______________________________________ beta_thermal_toroidal_profile570_ 8.81523526127199614e-02 -Beta_toroidal_profile_at_point_571_______________________________________ beta_thermal_toroidal_profile571_ 8.81777631775326476e-02 -Beta_toroidal_profile_at_point_572_______________________________________ beta_thermal_toroidal_profile572_ 8.82018255915201915e-02 -Beta_toroidal_profile_at_point_573_______________________________________ beta_thermal_toroidal_profile573_ 8.82245373240179848e-02 -Beta_toroidal_profile_at_point_574_______________________________________ beta_thermal_toroidal_profile574_ 8.82458958814212741e-02 -Beta_toroidal_profile_at_point_575_______________________________________ beta_thermal_toroidal_profile575_ 8.82658988073773965e-02 -Beta_toroidal_profile_at_point_576_______________________________________ beta_thermal_toroidal_profile576_ 8.82845436829789998e-02 -Beta_toroidal_profile_at_point_577_______________________________________ beta_thermal_toroidal_profile577_ 8.83018281269566940e-02 -Beta_toroidal_profile_at_point_578_______________________________________ beta_thermal_toroidal_profile578_ 8.83177497958711477e-02 -Beta_toroidal_profile_at_point_579_______________________________________ beta_thermal_toroidal_profile579_ 8.83323063843055589e-02 -Beta_toroidal_profile_at_point_580_______________________________________ beta_thermal_toroidal_profile580_ 8.83454956250578072e-02 -Beta_toroidal_profile_at_point_581_______________________________________ beta_thermal_toroidal_profile581_ 8.83573152893321612e-02 -Beta_toroidal_profile_at_point_582_______________________________________ beta_thermal_toroidal_profile582_ 8.83677631869313196e-02 -Beta_toroidal_profile_at_point_583_______________________________________ beta_thermal_toroidal_profile583_ 8.83768371664476471e-02 -Beta_toroidal_profile_at_point_584_______________________________________ beta_thermal_toroidal_profile584_ 8.83845351154547987e-02 -Beta_toroidal_profile_at_point_585_______________________________________ beta_thermal_toroidal_profile585_ 8.83908549606988447e-02 -Beta_toroidal_profile_at_point_586_______________________________________ beta_thermal_toroidal_profile586_ 8.83957946682891738e-02 -Beta_toroidal_profile_at_point_587_______________________________________ beta_thermal_toroidal_profile587_ 8.83993522438893675e-02 -Beta_toroidal_profile_at_point_588_______________________________________ beta_thermal_toroidal_profile588_ 8.84015257329078125e-02 -Beta_toroidal_profile_at_point_589_______________________________________ beta_thermal_toroidal_profile589_ 8.84023132206880752e-02 -Beta_toroidal_profile_at_point_590_______________________________________ beta_thermal_toroidal_profile590_ 8.84017128326990975e-02 -Beta_toroidal_profile_at_point_591_______________________________________ beta_thermal_toroidal_profile591_ 8.83997227347251280e-02 -Beta_toroidal_profile_at_point_592_______________________________________ beta_thermal_toroidal_profile592_ 8.83963411330555143e-02 -Beta_toroidal_profile_at_point_593_______________________________________ beta_thermal_toroidal_profile593_ 8.83915662746743575e-02 -Beta_toroidal_profile_at_point_594_______________________________________ beta_thermal_toroidal_profile594_ 8.83853964474497489e-02 -Beta_toroidal_profile_at_point_595_______________________________________ beta_thermal_toroidal_profile595_ 8.83778299803226891e-02 -Beta_toroidal_profile_at_point_596_______________________________________ beta_thermal_toroidal_profile596_ 8.83688652434963251e-02 -Beta_toroidal_profile_at_point_597_______________________________________ beta_thermal_toroidal_profile597_ 8.83585006486244384e-02 -Beta_toroidal_profile_at_point_598_______________________________________ beta_thermal_toroidal_profile598_ 8.83467346489996835e-02 -Beta_toroidal_profile_at_point_599_______________________________________ beta_thermal_toroidal_profile599_ 8.83335657397419927e-02 -Beta_toroidal_profile_at_point_600_______________________________________ beta_thermal_toroidal_profile600_ 8.83189924579864533e-02 -Beta_toroidal_profile_at_point_601_______________________________________ beta_thermal_toroidal_profile601_ 8.83030133830708941e-02 -Beta_toroidal_profile_at_point_602_______________________________________ beta_thermal_toroidal_profile602_ 8.82856271367232770e-02 -Beta_toroidal_profile_at_point_603_______________________________________ beta_thermal_toroidal_profile603_ 8.82668323832492413e-02 -Beta_toroidal_profile_at_point_604_______________________________________ beta_thermal_toroidal_profile604_ 8.82466278297185380e-02 -Beta_toroidal_profile_at_point_605_______________________________________ beta_thermal_toroidal_profile605_ 8.82250122261520470e-02 -Beta_toroidal_profile_at_point_606_______________________________________ beta_thermal_toroidal_profile606_ 8.82019843657079056e-02 -Beta_toroidal_profile_at_point_607_______________________________________ beta_thermal_toroidal_profile607_ 8.81775430848679292e-02 -Beta_toroidal_profile_at_point_608_______________________________________ beta_thermal_toroidal_profile608_ 8.81516872636233240e-02 -Beta_toroidal_profile_at_point_609_______________________________________ beta_thermal_toroidal_profile609_ 8.81244158256600935e-02 -Beta_toroidal_profile_at_point_610_______________________________________ beta_thermal_toroidal_profile610_ 8.80957277385447657e-02 -Beta_toroidal_profile_at_point_611_______________________________________ beta_thermal_toroidal_profile611_ 8.80656220139090506e-02 -Beta_toroidal_profile_at_point_612_______________________________________ beta_thermal_toroidal_profile612_ 8.80340977076347203e-02 -Beta_toroidal_profile_at_point_613_______________________________________ beta_thermal_toroidal_profile613_ 8.80011539200382664e-02 -Beta_toroidal_profile_at_point_614_______________________________________ beta_thermal_toroidal_profile614_ 8.79667897960546008e-02 -Beta_toroidal_profile_at_point_615_______________________________________ beta_thermal_toroidal_profile615_ 8.79310045254212691e-02 -Beta_toroidal_profile_at_point_616_______________________________________ beta_thermal_toroidal_profile616_ 8.78937973428621094e-02 -Beta_toroidal_profile_at_point_617_______________________________________ beta_thermal_toroidal_profile617_ 8.78551675282701200e-02 -Beta_toroidal_profile_at_point_618_______________________________________ beta_thermal_toroidal_profile618_ 8.78151144068908124e-02 -Beta_toroidal_profile_at_point_619_______________________________________ beta_thermal_toroidal_profile619_ 8.77736373495046629e-02 -Beta_toroidal_profile_at_point_620_______________________________________ beta_thermal_toroidal_profile620_ 8.77307357726094528e-02 -Beta_toroidal_profile_at_point_621_______________________________________ beta_thermal_toroidal_profile621_ 8.76864091386023309e-02 -Beta_toroidal_profile_at_point_622_______________________________________ beta_thermal_toroidal_profile622_ 8.76406569559616544e-02 -Beta_toroidal_profile_at_point_623_______________________________________ beta_thermal_toroidal_profile623_ 8.75934787794281494e-02 -Beta_toroidal_profile_at_point_624_______________________________________ beta_thermal_toroidal_profile624_ 8.75448742101859884e-02 -Beta_toroidal_profile_at_point_625_______________________________________ beta_thermal_toroidal_profile625_ 8.74948428960436175e-02 -Beta_toroidal_profile_at_point_626_______________________________________ beta_thermal_toroidal_profile626_ 8.74433845316142794e-02 -Beta_toroidal_profile_at_point_627_______________________________________ beta_thermal_toroidal_profile627_ 8.73904988584957160e-02 -Beta_toroidal_profile_at_point_628_______________________________________ beta_thermal_toroidal_profile628_ 8.73361856654500807e-02 -Beta_toroidal_profile_at_point_629_______________________________________ beta_thermal_toroidal_profile629_ 8.72804447885834056e-02 -Beta_toroidal_profile_at_point_630_______________________________________ beta_thermal_toroidal_profile630_ 8.72232761115243893e-02 -Beta_toroidal_profile_at_point_631_______________________________________ beta_thermal_toroidal_profile631_ 8.71646795656033646e-02 -Beta_toroidal_profile_at_point_632_______________________________________ beta_thermal_toroidal_profile632_ 8.71046551300303090e-02 -Beta_toroidal_profile_at_point_633_______________________________________ beta_thermal_toroidal_profile633_ 8.70432028320730772e-02 -Beta_toroidal_profile_at_point_634_______________________________________ beta_thermal_toroidal_profile634_ 8.69803227472348145e-02 -Beta_toroidal_profile_at_point_635_______________________________________ beta_thermal_toroidal_profile635_ 8.69160149994312459e-02 -Beta_toroidal_profile_at_point_636_______________________________________ beta_thermal_toroidal_profile636_ 8.68502797611677840e-02 -Beta_toroidal_profile_at_point_637_______________________________________ beta_thermal_toroidal_profile637_ 8.67831172537156248e-02 -Beta_toroidal_profile_at_point_638_______________________________________ beta_thermal_toroidal_profile638_ 8.67145277472881615e-02 -Beta_toroidal_profile_at_point_639_______________________________________ beta_thermal_toroidal_profile639_ 8.66445115612166639e-02 -Beta_toroidal_profile_at_point_640_______________________________________ beta_thermal_toroidal_profile640_ 8.65730690641257211e-02 -Beta_toroidal_profile_at_point_641_______________________________________ beta_thermal_toroidal_profile641_ 8.65002006741081436e-02 -Beta_toroidal_profile_at_point_642_______________________________________ beta_thermal_toroidal_profile642_ 8.64259068588996426e-02 -Beta_toroidal_profile_at_point_643_______________________________________ beta_thermal_toroidal_profile643_ 8.63501881360529688e-02 -Beta_toroidal_profile_at_point_644_______________________________________ beta_thermal_toroidal_profile644_ 8.62730450731119952e-02 -Beta_toroidal_profile_at_point_645_______________________________________ beta_thermal_toroidal_profile645_ 8.61944782877847315e-02 -Beta_toroidal_profile_at_point_646_______________________________________ beta_thermal_toroidal_profile646_ 8.61144884481167827e-02 -Beta_toroidal_profile_at_point_647_______________________________________ beta_thermal_toroidal_profile647_ 8.60330762726637943e-02 -Beta_toroidal_profile_at_point_648_______________________________________ beta_thermal_toroidal_profile648_ 8.59502425306635925e-02 -Beta_toroidal_profile_at_point_649_______________________________________ beta_thermal_toroidal_profile649_ 8.58659880422083382e-02 -Beta_toroidal_profile_at_point_650_______________________________________ beta_thermal_toroidal_profile650_ 8.57803136784155706e-02 -Beta_toroidal_profile_at_point_651_______________________________________ beta_thermal_toroidal_profile651_ 8.56932203615995425e-02 -Beta_toroidal_profile_at_point_652_______________________________________ beta_thermal_toroidal_profile652_ 8.56047090654416948e-02 -Beta_toroidal_profile_at_point_653_______________________________________ beta_thermal_toroidal_profile653_ 8.55147808151607292e-02 -Beta_toroidal_profile_at_point_654_______________________________________ beta_thermal_toroidal_profile654_ 8.54234366876825413e-02 -Beta_toroidal_profile_at_point_655_______________________________________ beta_thermal_toroidal_profile655_ 8.53306778118095854e-02 -Beta_toroidal_profile_at_point_656_______________________________________ beta_thermal_toroidal_profile656_ 8.52365053683895868e-02 -Beta_toroidal_profile_at_point_657_______________________________________ beta_thermal_toroidal_profile657_ 8.51409205904842120e-02 -Beta_toroidal_profile_at_point_658_______________________________________ beta_thermal_toroidal_profile658_ 8.50439247635371570e-02 -Beta_toroidal_profile_at_point_659_______________________________________ beta_thermal_toroidal_profile659_ 8.49455192255415409e-02 -Beta_toroidal_profile_at_point_660_______________________________________ beta_thermal_toroidal_profile660_ 8.48457053672073691e-02 -Beta_toroidal_profile_at_point_661_______________________________________ beta_thermal_toroidal_profile661_ 8.47444846321282613e-02 -Beta_toroidal_profile_at_point_662_______________________________________ beta_thermal_toroidal_profile662_ 8.46418585169475823e-02 -Beta_toroidal_profile_at_point_663_______________________________________ beta_thermal_toroidal_profile663_ 8.45378285715245315e-02 -Beta_toroidal_profile_at_point_664_______________________________________ beta_thermal_toroidal_profile664_ 8.44323963990993853e-02 -Beta_toroidal_profile_at_point_665_______________________________________ beta_thermal_toroidal_profile665_ 8.43255636564588101e-02 -Beta_toroidal_profile_at_point_666_______________________________________ beta_thermal_toroidal_profile666_ 8.42173320540999526e-02 -Beta_toroidal_profile_at_point_667_______________________________________ beta_thermal_toroidal_profile667_ 8.41077033563950582e-02 -Beta_toroidal_profile_at_point_668_______________________________________ beta_thermal_toroidal_profile668_ 8.39966793817546326e-02 -Beta_toroidal_profile_at_point_669_______________________________________ beta_thermal_toroidal_profile669_ 8.38842620027909630e-02 -Beta_toroidal_profile_at_point_670_______________________________________ beta_thermal_toroidal_profile670_ 8.37704531464807250e-02 -Beta_toroidal_profile_at_point_671_______________________________________ beta_thermal_toroidal_profile671_ 8.36552547943273661e-02 -Beta_toroidal_profile_at_point_672_______________________________________ beta_thermal_toroidal_profile672_ 8.35386689825227818e-02 -Beta_toroidal_profile_at_point_673_______________________________________ beta_thermal_toroidal_profile673_ 8.34206978021088397e-02 -Beta_toroidal_profile_at_point_674_______________________________________ beta_thermal_toroidal_profile674_ 8.33013433991380836e-02 -Beta_toroidal_profile_at_point_675_______________________________________ beta_thermal_toroidal_profile675_ 8.31806079748345500e-02 -Beta_toroidal_profile_at_point_676_______________________________________ beta_thermal_toroidal_profile676_ 8.30584937857533345e-02 -Beta_toroidal_profile_at_point_677_______________________________________ beta_thermal_toroidal_profile677_ 8.29350031439403806e-02 -Beta_toroidal_profile_at_point_678_______________________________________ beta_thermal_toroidal_profile678_ 8.28101384170914501e-02 -Beta_toroidal_profile_at_point_679_______________________________________ beta_thermal_toroidal_profile679_ 8.26839020287106485e-02 -Beta_toroidal_profile_at_point_680_______________________________________ beta_thermal_toroidal_profile680_ 8.25562964582687159e-02 -Beta_toroidal_profile_at_point_681_______________________________________ beta_thermal_toroidal_profile681_ 8.24273242413606361e-02 -Beta_toroidal_profile_at_point_682_______________________________________ beta_thermal_toroidal_profile682_ 8.22969879698626644e-02 -Beta_toroidal_profile_at_point_683_______________________________________ beta_thermal_toroidal_profile683_ 8.21652902920891881e-02 -Beta_toroidal_profile_at_point_684_______________________________________ beta_thermal_toroidal_profile684_ 8.20322339129490319e-02 -Beta_toroidal_profile_at_point_685_______________________________________ beta_thermal_toroidal_profile685_ 8.18978215941011112e-02 -Beta_toroidal_profile_at_point_686_______________________________________ beta_thermal_toroidal_profile686_ 8.17620561541097940e-02 -Beta_toroidal_profile_at_point_687_______________________________________ beta_thermal_toroidal_profile687_ 8.16249404685997909e-02 -Beta_toroidal_profile_at_point_688_______________________________________ beta_thermal_toroidal_profile688_ 8.14864774704104344e-02 -Beta_toroidal_profile_at_point_689_______________________________________ beta_thermal_toroidal_profile689_ 8.13466701497496947e-02 -Beta_toroidal_profile_at_point_690_______________________________________ beta_thermal_toroidal_profile690_ 8.12055215543476400e-02 -Beta_toroidal_profile_at_point_691_______________________________________ beta_thermal_toroidal_profile691_ 8.10630347896091757e-02 -Beta_toroidal_profile_at_point_692_______________________________________ beta_thermal_toroidal_profile692_ 8.09192130187668113e-02 -Beta_toroidal_profile_at_point_693_______________________________________ beta_thermal_toroidal_profile693_ 8.07740594630325659e-02 -Beta_toroidal_profile_at_point_694_______________________________________ beta_thermal_toroidal_profile694_ 8.06275774017495839e-02 -Beta_toroidal_profile_at_point_695_______________________________________ beta_thermal_toroidal_profile695_ 8.04797701725431941e-02 -Beta_toroidal_profile_at_point_696_______________________________________ beta_thermal_toroidal_profile696_ 8.03306411714716784e-02 -Beta_toroidal_profile_at_point_697_______________________________________ beta_thermal_toroidal_profile697_ 8.01801938531762071e-02 -Beta_toroidal_profile_at_point_698_______________________________________ beta_thermal_toroidal_profile698_ 8.00284317310308579e-02 -Beta_toroidal_profile_at_point_699_______________________________________ beta_thermal_toroidal_profile699_ 7.98753583772916359e-02 -Beta_toroidal_profile_at_point_700_______________________________________ beta_thermal_toroidal_profile700_ 7.97209774232454926e-02 -Beta_toroidal_profile_at_point_701_______________________________________ beta_thermal_toroidal_profile701_ 7.95652925593585553e-02 -Beta_toroidal_profile_at_point_702_______________________________________ beta_thermal_toroidal_profile702_ 7.94083075354239387e-02 -Beta_toroidal_profile_at_point_703_______________________________________ beta_thermal_toroidal_profile703_ 7.92500261607093637e-02 -Beta_toroidal_profile_at_point_704_______________________________________ beta_thermal_toroidal_profile704_ 7.90904523041042057e-02 -Beta_toroidal_profile_at_point_705_______________________________________ beta_thermal_toroidal_profile705_ 7.89295898942659058e-02 -Beta_toroidal_profile_at_point_706_______________________________________ beta_thermal_toroidal_profile706_ 7.87674429197661452e-02 -Beta_toroidal_profile_at_point_707_______________________________________ beta_thermal_toroidal_profile707_ 7.86040154292365623e-02 -Beta_toroidal_profile_at_point_708_______________________________________ beta_thermal_toroidal_profile708_ 7.84393115315140249e-02 -Beta_toroidal_profile_at_point_709_______________________________________ beta_thermal_toroidal_profile709_ 7.82733353957854178e-02 -Beta_toroidal_profile_at_point_710_______________________________________ beta_thermal_toroidal_profile710_ 7.81060912517320682e-02 -Beta_toroidal_profile_at_point_711_______________________________________ beta_thermal_toroidal_profile711_ 7.79375833896737980e-02 -Beta_toroidal_profile_at_point_712_______________________________________ beta_thermal_toroidal_profile712_ 7.77678161607123775e-02 -Beta_toroidal_profile_at_point_713_______________________________________ beta_thermal_toroidal_profile713_ 7.75967939768746895e-02 -Beta_toroidal_profile_at_point_714_______________________________________ beta_thermal_toroidal_profile714_ 7.74245213112557396e-02 -Beta_toroidal_profile_at_point_715_______________________________________ beta_thermal_toroidal_profile715_ 7.72510026981605841e-02 -Beta_toroidal_profile_at_point_716_______________________________________ beta_thermal_toroidal_profile716_ 7.70762427332466610e-02 -Beta_toroidal_profile_at_point_717_______________________________________ beta_thermal_toroidal_profile717_ 7.69002460736653015e-02 -Beta_toroidal_profile_at_point_718_______________________________________ beta_thermal_toroidal_profile718_ 7.67230174382028118e-02 -Beta_toroidal_profile_at_point_719_______________________________________ beta_thermal_toroidal_profile719_ 7.65445616074213742e-02 -Beta_toroidal_profile_at_point_720_______________________________________ beta_thermal_toroidal_profile720_ 7.63648834237994761e-02 -Beta_toroidal_profile_at_point_721_______________________________________ beta_thermal_toroidal_profile721_ 7.61839877918721459e-02 -Beta_toroidal_profile_at_point_722_______________________________________ beta_thermal_toroidal_profile722_ 7.60018796783705486e-02 -Beta_toroidal_profile_at_point_723_______________________________________ beta_thermal_toroidal_profile723_ 7.58185641123615278e-02 -Beta_toroidal_profile_at_point_724_______________________________________ beta_thermal_toroidal_profile724_ 7.56340461853865220e-02 -Beta_toroidal_profile_at_point_725_______________________________________ beta_thermal_toroidal_profile725_ 7.54483310516006200e-02 -Beta_toroidal_profile_at_point_726_______________________________________ beta_thermal_toroidal_profile726_ 7.52614239279106728e-02 -Beta_toroidal_profile_at_point_727_______________________________________ beta_thermal_toroidal_profile727_ 7.50733300941136689e-02 -Beta_toroidal_profile_at_point_728_______________________________________ beta_thermal_toroidal_profile728_ 7.48840548930344019e-02 -Beta_toroidal_profile_at_point_729_______________________________________ beta_thermal_toroidal_profile729_ 7.46936037306633466e-02 -Beta_toroidal_profile_at_point_730_______________________________________ beta_thermal_toroidal_profile730_ 7.45019820762936741e-02 -Beta_toroidal_profile_at_point_731_______________________________________ beta_thermal_toroidal_profile731_ 7.43091954626583368e-02 -Beta_toroidal_profile_at_point_732_______________________________________ beta_thermal_toroidal_profile732_ 7.41152494860668754e-02 -Beta_toroidal_profile_at_point_733_______________________________________ beta_thermal_toroidal_profile733_ 7.39201498065422125e-02 -Beta_toroidal_profile_at_point_734_______________________________________ beta_thermal_toroidal_profile734_ 7.37239021479565992e-02 -Beta_toroidal_profile_at_point_735_______________________________________ beta_thermal_toroidal_profile735_ 7.35265122981680758e-02 -Beta_toroidal_profile_at_point_736_______________________________________ beta_thermal_toroidal_profile736_ 7.33279861091562651e-02 -Beta_toroidal_profile_at_point_737_______________________________________ beta_thermal_toroidal_profile737_ 7.31283294971581260e-02 -Beta_toroidal_profile_at_point_738_______________________________________ beta_thermal_toroidal_profile738_ 7.29275484428036219e-02 -Beta_toroidal_profile_at_point_739_______________________________________ beta_thermal_toroidal_profile739_ 7.27256489912514320e-02 -Beta_toroidal_profile_at_point_740_______________________________________ beta_thermal_toroidal_profile740_ 7.25226372523237045e-02 -Beta_toroidal_profile_at_point_741_______________________________________ beta_thermal_toroidal_profile741_ 7.23185194006418786e-02 -Beta_toroidal_profile_at_point_742_______________________________________ beta_thermal_toroidal_profile742_ 7.21133016757614376e-02 -Beta_toroidal_profile_at_point_743_______________________________________ beta_thermal_toroidal_profile743_ 7.19069903823072315e-02 -Beta_toroidal_profile_at_point_744_______________________________________ beta_thermal_toroidal_profile744_ 7.16995918901084384e-02 -Beta_toroidal_profile_at_point_745_______________________________________ beta_thermal_toroidal_profile745_ 7.14911126343335118e-02 -Beta_toroidal_profile_at_point_746_______________________________________ beta_thermal_toroidal_profile746_ 7.12815591156250317e-02 -Beta_toroidal_profile_at_point_747_______________________________________ beta_thermal_toroidal_profile747_ 7.10709379002351371e-02 -Beta_toroidal_profile_at_point_748_______________________________________ beta_thermal_toroidal_profile748_ 7.08592556201601415e-02 -Beta_toroidal_profile_at_point_749_______________________________________ beta_thermal_toroidal_profile749_ 7.06465189732758264e-02 -Beta_toroidal_profile_at_point_750_______________________________________ beta_thermal_toroidal_profile750_ 7.04327347234724732e-02 -Beta_toroidal_profile_at_point_751_______________________________________ beta_thermal_toroidal_profile751_ 7.02179097007905595e-02 -Beta_toroidal_profile_at_point_752_______________________________________ beta_thermal_toroidal_profile752_ 7.00020508015556098e-02 -Beta_toroidal_profile_at_point_753_______________________________________ beta_thermal_toroidal_profile753_ 6.97851649885144198e-02 -Beta_toroidal_profile_at_point_754_______________________________________ beta_thermal_toroidal_profile754_ 6.95672592909702681e-02 -Beta_toroidal_profile_at_point_755_______________________________________ beta_thermal_toroidal_profile755_ 6.93483408049194588e-02 -Beta_toroidal_profile_at_point_756_______________________________________ beta_thermal_toroidal_profile756_ 6.91284166931872696e-02 -Beta_toroidal_profile_at_point_757_______________________________________ beta_thermal_toroidal_profile757_ 6.89074941855647161e-02 -Beta_toroidal_profile_at_point_758_______________________________________ beta_thermal_toroidal_profile758_ 6.86855805789453044e-02 -Beta_toroidal_profile_at_point_759_______________________________________ beta_thermal_toroidal_profile759_ 6.84626832374624766e-02 -Beta_toroidal_profile_at_point_760_______________________________________ beta_thermal_toroidal_profile760_ 6.82388095926270699e-02 -Beta_toroidal_profile_at_point_761_______________________________________ beta_thermal_toroidal_profile761_ 6.80139671434655396e-02 -Beta_toroidal_profile_at_point_762_______________________________________ beta_thermal_toroidal_profile762_ 6.77881634566584179e-02 -Beta_toroidal_profile_at_point_763_______________________________________ beta_thermal_toroidal_profile763_ 6.75614061666794247e-02 -Beta_toroidal_profile_at_point_764_______________________________________ beta_thermal_toroidal_profile764_ 6.73337029759350919e-02 -Beta_toroidal_profile_at_point_765_______________________________________ beta_thermal_toroidal_profile765_ 6.71050616549049156e-02 -Beta_toroidal_profile_at_point_766_______________________________________ beta_thermal_toroidal_profile766_ 6.68754900422822013e-02 -Beta_toroidal_profile_at_point_767_______________________________________ beta_thermal_toroidal_profile767_ 6.66449960451156453e-02 -Beta_toroidal_profile_at_point_768_______________________________________ beta_thermal_toroidal_profile768_ 6.64135876389514990e-02 -Beta_toroidal_profile_at_point_769_______________________________________ beta_thermal_toroidal_profile769_ 6.61812728679768564e-02 -Beta_toroidal_profile_at_point_770_______________________________________ beta_thermal_toroidal_profile770_ 6.59480598451630401e-02 -Beta_toroidal_profile_at_point_771_______________________________________ beta_thermal_toroidal_profile771_ 6.57139567524109847e-02 -Beta_toroidal_profile_at_point_772_______________________________________ beta_thermal_toroidal_profile772_ 6.54789718406963289e-02 -Beta_toroidal_profile_at_point_773_______________________________________ beta_thermal_toroidal_profile773_ 6.52431134302165067e-02 -Beta_toroidal_profile_at_point_774_______________________________________ beta_thermal_toroidal_profile774_ 6.50063899105383508e-02 -Beta_toroidal_profile_at_point_775_______________________________________ beta_thermal_toroidal_profile775_ 6.47688097407469882e-02 -Beta_toroidal_profile_at_point_776_______________________________________ beta_thermal_toroidal_profile776_ 6.45303814495958444e-02 -Beta_toroidal_profile_at_point_777_______________________________________ beta_thermal_toroidal_profile777_ 6.42911136356579399e-02 -Beta_toroidal_profile_at_point_778_______________________________________ beta_thermal_toroidal_profile778_ 6.40510149674785728e-02 -Beta_toroidal_profile_at_point_779_______________________________________ beta_thermal_toroidal_profile779_ 6.38100941837292934e-02 -Beta_toroidal_profile_at_point_780_______________________________________ beta_thermal_toroidal_profile780_ 6.35683600933631271e-02 -Beta_toroidal_profile_at_point_781_______________________________________ beta_thermal_toroidal_profile781_ 6.33258215757719761e-02 -Beta_toroidal_profile_at_point_782_______________________________________ beta_thermal_toroidal_profile782_ 6.30824875809447849e-02 -Beta_toroidal_profile_at_point_783_______________________________________ beta_thermal_toroidal_profile783_ 6.28383671296280644e-02 -Beta_toroidal_profile_at_point_784_______________________________________ beta_thermal_toroidal_profile784_ 6.25934693134877762e-02 -Beta_toroidal_profile_at_point_785_______________________________________ beta_thermal_toroidal_profile785_ 6.23478032952735628e-02 -Beta_toroidal_profile_at_point_786_______________________________________ beta_thermal_toroidal_profile786_ 6.21013783089841981e-02 -Beta_toroidal_profile_at_point_787_______________________________________ beta_thermal_toroidal_profile787_ 6.18542036600358211e-02 -Beta_toroidal_profile_at_point_788_______________________________________ beta_thermal_toroidal_profile788_ 6.16062887254318972e-02 -Beta_toroidal_profile_at_point_789_______________________________________ beta_thermal_toroidal_profile789_ 6.13576429539354415e-02 -Beta_toroidal_profile_at_point_790_______________________________________ beta_thermal_toroidal_profile790_ 6.11082758662437955e-02 -Beta_toroidal_profile_at_point_791_______________________________________ beta_thermal_toroidal_profile791_ 6.08581970551656179e-02 -Beta_toroidal_profile_at_point_792_______________________________________ beta_thermal_toroidal_profile792_ 6.06074161858007401e-02 -Beta_toroidal_profile_at_point_793_______________________________________ beta_thermal_toroidal_profile793_ 6.03559429957222504e-02 -Beta_toroidal_profile_at_point_794_______________________________________ beta_thermal_toroidal_profile794_ 6.01037872951618798e-02 -Beta_toroidal_profile_at_point_795_______________________________________ beta_thermal_toroidal_profile795_ 5.98509589671980119e-02 -Beta_toroidal_profile_at_point_796_______________________________________ beta_thermal_toroidal_profile796_ 5.95974679679468697e-02 -Beta_toroidal_profile_at_point_797_______________________________________ beta_thermal_toroidal_profile797_ 5.93433243267566801e-02 -Beta_toroidal_profile_at_point_798_______________________________________ beta_thermal_toroidal_profile798_ 5.90885381464056822e-02 -Beta_toroidal_profile_at_point_799_______________________________________ beta_thermal_toroidal_profile799_ 5.88331196033029455e-02 -Beta_toroidal_profile_at_point_800_______________________________________ beta_thermal_toroidal_profile800_ 5.85770789476932965e-02 -Beta_toroidal_profile_at_point_801_______________________________________ beta_thermal_toroidal_profile801_ 5.83204265038658118e-02 -Beta_toroidal_profile_at_point_802_______________________________________ beta_thermal_toroidal_profile802_ 5.80631726703664391e-02 -Beta_toroidal_profile_at_point_803_______________________________________ beta_thermal_toroidal_profile803_ 5.78053279202144499e-02 -Beta_toroidal_profile_at_point_804_______________________________________ beta_thermal_toroidal_profile804_ 5.75469028011233175e-02 -Beta_toroidal_profile_at_point_805_______________________________________ beta_thermal_toroidal_profile805_ 5.72879079357261969e-02 -Beta_toroidal_profile_at_point_806_______________________________________ beta_thermal_toroidal_profile806_ 5.70283540218058591e-02 -Beta_toroidal_profile_at_point_807_______________________________________ beta_thermal_toroidal_profile807_ 5.67682518325295163e-02 -Beta_toroidal_profile_at_point_808_______________________________________ beta_thermal_toroidal_profile808_ 5.65076122166887559e-02 -Beta_toroidal_profile_at_point_809_______________________________________ beta_thermal_toroidal_profile809_ 5.62464460989445386e-02 -Beta_toroidal_profile_at_point_810_______________________________________ beta_thermal_toroidal_profile810_ 5.59847644800781155e-02 -Beta_toroidal_profile_at_point_811_______________________________________ beta_thermal_toroidal_profile811_ 5.57225784372470667e-02 -Beta_toroidal_profile_at_point_812_______________________________________ beta_thermal_toroidal_profile812_ 5.54598991242476885e-02 -Beta_toroidal_profile_at_point_813_______________________________________ beta_thermal_toroidal_profile813_ 5.51967377717833413e-02 -Beta_toroidal_profile_at_point_814_______________________________________ beta_thermal_toroidal_profile814_ 5.49331056877394863e-02 -Beta_toroidal_profile_at_point_815_______________________________________ beta_thermal_toroidal_profile815_ 5.46690142574650720e-02 -Beta_toroidal_profile_at_point_816_______________________________________ beta_thermal_toroidal_profile816_ 5.44044749440611430e-02 -Beta_toroidal_profile_at_point_817_______________________________________ beta_thermal_toroidal_profile817_ 5.41394992886765833e-02 -Beta_toroidal_profile_at_point_818_______________________________________ beta_thermal_toroidal_profile818_ 5.38740989108116644e-02 -Beta_toroidal_profile_at_point_819_______________________________________ beta_thermal_toroidal_profile819_ 5.36082855086289015e-02 -Beta_toroidal_profile_at_point_820_______________________________________ beta_thermal_toroidal_profile820_ 5.33420708592728596e-02 -Beta_toroidal_profile_at_point_821_______________________________________ beta_thermal_toroidal_profile821_ 5.30754668191976003e-02 -Beta_toroidal_profile_at_point_822_______________________________________ beta_thermal_toroidal_profile822_ 5.28084853245038288e-02 -Beta_toroidal_profile_at_point_823_______________________________________ beta_thermal_toroidal_profile823_ 5.25411383912847488e-02 -Beta_toroidal_profile_at_point_824_______________________________________ beta_thermal_toroidal_profile824_ 5.22734381159816255e-02 -Beta_toroidal_profile_at_point_825_______________________________________ beta_thermal_toroidal_profile825_ 5.20053966757494102e-02 -Beta_toroidal_profile_at_point_826_______________________________________ beta_thermal_toroidal_profile826_ 5.17370263288328344e-02 -Beta_toroidal_profile_at_point_827_______________________________________ beta_thermal_toroidal_profile827_ 5.14683394149531084e-02 -Beta_toroidal_profile_at_point_828_______________________________________ beta_thermal_toroidal_profile828_ 5.11993483557060605e-02 -Beta_toroidal_profile_at_point_829_______________________________________ beta_thermal_toroidal_profile829_ 5.09300656549719205e-02 -Beta_toroidal_profile_at_point_830_______________________________________ beta_thermal_toroidal_profile830_ 5.06605038993376278e-02 -Beta_toroidal_profile_at_point_831_______________________________________ beta_thermal_toroidal_profile831_ 5.03906757585312476e-02 -Beta_toroidal_profile_at_point_832_______________________________________ beta_thermal_toroidal_profile832_ 5.01205939858702099e-02 -Beta_toroidal_profile_at_point_833_______________________________________ beta_thermal_toroidal_profile833_ 4.98502714187230370e-02 -Beta_toroidal_profile_at_point_834_______________________________________ beta_thermal_toroidal_profile834_ 4.95797209789855878e-02 -Beta_toroidal_profile_at_point_835_______________________________________ beta_thermal_toroidal_profile835_ 4.93089556735721371e-02 -Beta_toroidal_profile_at_point_836_______________________________________ beta_thermal_toroidal_profile836_ 4.90379885949219219e-02 -Beta_toroidal_profile_at_point_837_______________________________________ beta_thermal_toroidal_profile837_ 4.87668329215223892e-02 -Beta_toroidal_profile_at_point_838_______________________________________ beta_thermal_toroidal_profile838_ 4.84955019184487648e-02 -Beta_toroidal_profile_at_point_839_______________________________________ beta_thermal_toroidal_profile839_ 4.82240089379215309e-02 -Beta_toroidal_profile_at_point_840_______________________________________ beta_thermal_toroidal_profile840_ 4.79523674198823191e-02 -Beta_toroidal_profile_at_point_841_______________________________________ beta_thermal_toroidal_profile841_ 4.76805908925886507e-02 -Beta_toroidal_profile_at_point_842_______________________________________ beta_thermal_toroidal_profile842_ 4.74086929732288886e-02 -Beta_toroidal_profile_at_point_843_______________________________________ beta_thermal_toroidal_profile843_ 4.71366873685578405e-02 -Beta_toroidal_profile_at_point_844_______________________________________ beta_thermal_toroidal_profile844_ 4.68645878755539480e-02 -Beta_toroidal_profile_at_point_845_______________________________________ beta_thermal_toroidal_profile845_ 4.65924083820992221e-02 -Beta_toroidal_profile_at_point_846_______________________________________ beta_thermal_toroidal_profile846_ 4.63201628676825766e-02 -Beta_toroidal_profile_at_point_847_______________________________________ beta_thermal_toroidal_profile847_ 4.60478654041278357e-02 -Beta_toroidal_profile_at_point_848_______________________________________ beta_thermal_toroidal_profile848_ 4.57755301563472286e-02 -Beta_toroidal_profile_at_point_849_______________________________________ beta_thermal_toroidal_profile849_ 4.55031713831219389e-02 -Beta_toroidal_profile_at_point_850_______________________________________ beta_thermal_toroidal_profile850_ 4.52308034379099652e-02 -Beta_toroidal_profile_at_point_851_______________________________________ beta_thermal_toroidal_profile851_ 4.49584407696838675e-02 -Beta_toroidal_profile_at_point_852_______________________________________ beta_thermal_toroidal_profile852_ 4.46860979237980807e-02 -Beta_toroidal_profile_at_point_853_______________________________________ beta_thermal_toroidal_profile853_ 4.44137895428889790e-02 -Beta_toroidal_profile_at_point_854_______________________________________ beta_thermal_toroidal_profile854_ 4.41415303678068735e-02 -Beta_toroidal_profile_at_point_855_______________________________________ beta_thermal_toroidal_profile855_ 4.38693352385838078e-02 -Beta_toroidal_profile_at_point_856_______________________________________ beta_thermal_toroidal_profile856_ 4.35972190954368455e-02 -Beta_toroidal_profile_at_point_857_______________________________________ beta_thermal_toroidal_profile857_ 4.33251969798093550e-02 -Beta_toroidal_profile_at_point_858_______________________________________ beta_thermal_toroidal_profile858_ 4.30532840354518193e-02 -Beta_toroidal_profile_at_point_859_______________________________________ beta_thermal_toroidal_profile859_ 4.27814955095441804e-02 -Beta_toroidal_profile_at_point_860_______________________________________ beta_thermal_toroidal_profile860_ 4.25098467538610747e-02 -Beta_toroidal_profile_at_point_861_______________________________________ beta_thermal_toroidal_profile861_ 4.22383532259826000e-02 -Beta_toroidal_profile_at_point_862_______________________________________ beta_thermal_toroidal_profile862_ 4.19670304905522401e-02 -Beta_toroidal_profile_at_point_863_______________________________________ beta_thermal_toroidal_profile863_ 4.16958942205844230e-02 -Beta_toroidal_profile_at_point_864_______________________________________ beta_thermal_toroidal_profile864_ 4.14249601988239402e-02 -Beta_toroidal_profile_at_point_865_______________________________________ beta_thermal_toroidal_profile865_ 4.11542443191596150e-02 -Beta_toroidal_profile_at_point_866_______________________________________ beta_thermal_toroidal_profile866_ 4.08837625880950420e-02 -Beta_toroidal_profile_at_point_867_______________________________________ beta_thermal_toroidal_profile867_ 4.06135311262787874e-02 -Beta_toroidal_profile_at_point_868_______________________________________ beta_thermal_toroidal_profile868_ 4.03435661700972739e-02 -Beta_toroidal_profile_at_point_869_______________________________________ beta_thermal_toroidal_profile869_ 4.00738840733331492e-02 -Beta_toroidal_profile_at_point_870_______________________________________ beta_thermal_toroidal_profile870_ 3.98045013088924454e-02 -Beta_toroidal_profile_at_point_871_______________________________________ beta_thermal_toroidal_profile871_ 3.95354344706038974e-02 -Beta_toroidal_profile_at_point_872_______________________________________ beta_thermal_toroidal_profile872_ 3.92667002750940602e-02 -Beta_toroidal_profile_at_point_873_______________________________________ beta_thermal_toroidal_profile873_ 3.89983155637419754e-02 -Beta_toroidal_profile_at_point_874_______________________________________ beta_thermal_toroidal_profile874_ 3.87302973047173177e-02 -Beta_toroidal_profile_at_point_875_______________________________________ beta_thermal_toroidal_profile875_ 3.84626625951065768e-02 -Beta_toroidal_profile_at_point_876_______________________________________ beta_thermal_toroidal_profile876_ 3.81954286631313172e-02 -Beta_toroidal_profile_at_point_877_______________________________________ beta_thermal_toroidal_profile877_ 3.79286128704637016e-02 -Beta_toroidal_profile_at_point_878_______________________________________ beta_thermal_toroidal_profile878_ 3.76622327146441671e-02 -Beta_toroidal_profile_at_point_879_______________________________________ beta_thermal_toroidal_profile879_ 3.73963058316066146e-02 -Beta_toroidal_profile_at_point_880_______________________________________ beta_thermal_toroidal_profile880_ 3.71308499983168741e-02 -Beta_toroidal_profile_at_point_881_______________________________________ beta_thermal_toroidal_profile881_ 3.68658831355304778e-02 -Beta_toroidal_profile_at_point_882_______________________________________ beta_thermal_toroidal_profile882_ 3.66014233106762982e-02 -Beta_toroidal_profile_at_point_883_______________________________________ beta_thermal_toroidal_profile883_ 3.63374887408726213e-02 -Beta_toroidal_profile_at_point_884_______________________________________ beta_thermal_toroidal_profile884_ 3.60740977960833584e-02 -Beta_toroidal_profile_at_point_885_______________________________________ beta_thermal_toroidal_profile885_ 3.58112690024217917e-02 -Beta_toroidal_profile_at_point_886_______________________________________ beta_thermal_toroidal_profile886_ 3.55490210456105571e-02 -Beta_toroidal_profile_at_point_887_______________________________________ beta_thermal_toroidal_profile887_ 3.52873727746060850e-02 -Beta_toroidal_profile_at_point_888_______________________________________ beta_thermal_toroidal_profile888_ 3.50263432053977627e-02 -Beta_toroidal_profile_at_point_889_______________________________________ beta_thermal_toroidal_profile889_ 3.47659515249911233e-02 -Beta_toroidal_profile_at_point_890_______________________________________ beta_thermal_toroidal_profile890_ 3.45062170955863501e-02 -Beta_toroidal_profile_at_point_891_______________________________________ beta_thermal_toroidal_profile891_ 3.42471594589633110e-02 -Beta_toroidal_profile_at_point_892_______________________________________ beta_thermal_toroidal_profile892_ 3.39887983410858130e-02 -Beta_toroidal_profile_at_point_893_______________________________________ beta_thermal_toroidal_profile893_ 3.37311536569377887e-02 -Beta_toroidal_profile_at_point_894_______________________________________ beta_thermal_toroidal_profile894_ 3.34742455156061824e-02 -Beta_toroidal_profile_at_point_895_______________________________________ beta_thermal_toroidal_profile895_ 3.32180942256252304e-02 -Beta_toroidal_profile_at_point_896_______________________________________ beta_thermal_toroidal_profile896_ 3.29627203005989425e-02 -Beta_toroidal_profile_at_point_897_______________________________________ beta_thermal_toroidal_profile897_ 3.27081444651188061e-02 -Beta_toroidal_profile_at_point_898_______________________________________ beta_thermal_toroidal_profile898_ 3.24543876609963214e-02 -Beta_toroidal_profile_at_point_899_______________________________________ beta_thermal_toroidal_profile899_ 3.22014710538300053e-02 -Beta_toroidal_profile_at_point_900_______________________________________ beta_thermal_toroidal_profile900_ 3.19494160399294638e-02 -Beta_toroidal_profile_at_point_901_______________________________________ beta_thermal_toroidal_profile901_ 3.16982442536196535e-02 -Beta_toroidal_profile_at_point_902_______________________________________ beta_thermal_toroidal_profile902_ 3.14479775749514912e-02 -Beta_toroidal_profile_at_point_903_______________________________________ beta_thermal_toroidal_profile903_ 3.11986381378458952e-02 -Beta_toroidal_profile_at_point_904_______________________________________ beta_thermal_toroidal_profile904_ 3.09502483387018336e-02 -Beta_toroidal_profile_at_point_905_______________________________________ beta_thermal_toroidal_profile905_ 3.07028308455002848e-02 -Beta_toroidal_profile_at_point_906_______________________________________ beta_thermal_toroidal_profile906_ 3.04564086074397694e-02 -Beta_toroidal_profile_at_point_907_______________________________________ beta_thermal_toroidal_profile907_ 3.02110048651414199e-02 -Beta_toroidal_profile_at_point_908_______________________________________ beta_thermal_toroidal_profile908_ 2.99666431614655365e-02 -Beta_toroidal_profile_at_point_909_______________________________________ beta_thermal_toroidal_profile909_ 2.97233473529842813e-02 -Beta_toroidal_profile_at_point_910_______________________________________ beta_thermal_toroidal_profile910_ 2.94811416221610126e-02 -Beta_toroidal_profile_at_point_911_______________________________________ beta_thermal_toroidal_profile911_ 2.92400504902889206e-02 -Beta_toroidal_profile_at_point_912_______________________________________ beta_thermal_toroidal_profile912_ 2.90000988312489917e-02 -Beta_toroidal_profile_at_point_913_______________________________________ beta_thermal_toroidal_profile913_ 2.87613118861510982e-02 -Beta_toroidal_profile_at_point_914_______________________________________ beta_thermal_toroidal_profile914_ 2.85237152789294957e-02 -Beta_toroidal_profile_at_point_915_______________________________________ beta_thermal_toroidal_profile915_ 2.82873350329700887e-02 -Beta_toroidal_profile_at_point_916_______________________________________ beta_thermal_toroidal_profile916_ 2.80521975888549900e-02 -Beta_toroidal_profile_at_point_917_______________________________________ beta_thermal_toroidal_profile917_ 2.78183298233187423e-02 -Beta_toroidal_profile_at_point_918_______________________________________ beta_thermal_toroidal_profile918_ 2.75857590695195477e-02 -Beta_toroidal_profile_at_point_919_______________________________________ beta_thermal_toroidal_profile919_ 2.73545131387406791e-02 -Beta_toroidal_profile_at_point_920_______________________________________ beta_thermal_toroidal_profile920_ 2.71246203436490800e-02 -Beta_toroidal_profile_at_point_921_______________________________________ beta_thermal_toroidal_profile921_ 2.68961095232518564e-02 -Beta_toroidal_profile_at_point_922_______________________________________ beta_thermal_toroidal_profile922_ 2.66690100697076146e-02 -Beta_toroidal_profile_at_point_923_______________________________________ beta_thermal_toroidal_profile923_ 2.64433519571668912e-02 -Beta_toroidal_profile_at_point_924_______________________________________ beta_thermal_toroidal_profile924_ 2.62191657728365925e-02 -Beta_toroidal_profile_at_point_925_______________________________________ beta_thermal_toroidal_profile925_ 2.59964827504858033e-02 -Beta_toroidal_profile_at_point_926_______________________________________ beta_thermal_toroidal_profile926_ 2.57753348066376356e-02 -Beta_toroidal_profile_at_point_927_______________________________________ beta_thermal_toroidal_profile927_ 2.55557545797206603e-02 -Beta_toroidal_profile_at_point_928_______________________________________ beta_thermal_toroidal_profile928_ 2.53377754724893739e-02 -Beta_toroidal_profile_at_point_929_______________________________________ beta_thermal_toroidal_profile929_ 2.51214316980623333e-02 -Beta_toroidal_profile_at_point_930_______________________________________ beta_thermal_toroidal_profile930_ 2.49067583299727273e-02 -Beta_toroidal_profile_at_point_931_______________________________________ beta_thermal_toroidal_profile931_ 2.46937913566801989e-02 -Beta_toroidal_profile_at_point_932_______________________________________ beta_thermal_toroidal_profile932_ 2.44825677410542772e-02 -Beta_toroidal_profile_at_point_933_______________________________________ beta_thermal_toroidal_profile933_ 2.42731254854130565e-02 -Beta_toroidal_profile_at_point_934_______________________________________ beta_thermal_toroidal_profile934_ 2.40655037027855644e-02 -Beta_toroidal_profile_at_point_935_______________________________________ beta_thermal_toroidal_profile935_ 2.38597426951666428e-02 -Beta_toroidal_profile_at_point_936_______________________________________ beta_thermal_toroidal_profile936_ 2.36558840396515063e-02 -Beta_toroidal_profile_at_point_937_______________________________________ beta_thermal_toroidal_profile937_ 2.34539706834778899e-02 -Beta_toroidal_profile_at_point_938_______________________________________ beta_thermal_toroidal_profile938_ 2.32540470491706397e-02 -Beta_toroidal_profile_at_point_939_______________________________________ beta_thermal_toroidal_profile939_ 2.30561591511850607e-02 -Beta_toroidal_profile_at_point_940_______________________________________ beta_thermal_toroidal_profile940_ 2.28603547256859968e-02 -Beta_toroidal_profile_at_point_941_______________________________________ beta_thermal_toroidal_profile941_ 2.26666833753928799e-02 -Beta_toroidal_profile_at_point_942_______________________________________ beta_thermal_toroidal_profile942_ 2.24751967317762813e-02 -Beta_toroidal_profile_at_point_943_______________________________________ beta_thermal_toroidal_profile943_ 2.22859486373280131e-02 -Beta_toroidal_profile_at_point_944_______________________________________ beta_thermal_toroidal_profile944_ 2.20989953511643057e-02 -Beta_toroidal_profile_at_point_945_______________________________________ beta_thermal_toroidal_profile945_ 2.19143957818890393e-02 -Beta_toroidal_profile_at_point_946_______________________________________ beta_thermal_toroidal_profile946_ 2.17322117524786119e-02 -Beta_toroidal_profile_at_point_947_______________________________________ beta_thermal_toroidal_profile947_ 2.15525083030026834e-02 -Beta_toroidal_profile_at_point_948_______________________________________ beta_thermal_toroidal_profile948_ 2.13753540383323365e-02 -Beta_toroidal_profile_at_point_949_______________________________________ beta_thermal_toroidal_profile949_ 2.12008215297046776e-02 -Beta_toroidal_profile_at_point_950_______________________________________ beta_thermal_toroidal_profile950_ 2.10289877812365952e-02 -Beta_toroidal_profile_at_point_951_______________________________________ beta_thermal_toroidal_profile951_ 2.08599347753954632e-02 -Beta_toroidal_profile_at_point_952_______________________________________ beta_thermal_toroidal_profile952_ 2.06937501152958669e-02 -Beta_toroidal_profile_at_point_953_______________________________________ beta_thermal_toroidal_profile953_ 2.05305277868759739e-02 -Beta_toroidal_profile_at_point_954_______________________________________ beta_thermal_toroidal_profile954_ 2.03703690710633246e-02 -Beta_toroidal_profile_at_point_955_______________________________________ beta_thermal_toroidal_profile955_ 2.02133836457946310e-02 -Beta_toroidal_profile_at_point_956_______________________________________ beta_thermal_toroidal_profile956_ 2.00596909314689036e-02 -Beta_toroidal_profile_at_point_957_______________________________________ beta_thermal_toroidal_profile957_ 1.99094217530675528e-02 -Beta_toroidal_profile_at_point_958_______________________________________ beta_thermal_toroidal_profile958_ 1.97627204209424520e-02 -Beta_toroidal_profile_at_point_959_______________________________________ beta_thermal_toroidal_profile959_ 1.96197473754031321e-02 -Beta_toroidal_profile_at_point_960_______________________________________ beta_thermal_toroidal_profile960_ 1.94806826066810691e-02 -Beta_toroidal_profile_at_point_961_______________________________________ beta_thermal_toroidal_profile961_ 1.93457301674746091e-02 -Beta_toroidal_profile_at_point_962_______________________________________ beta_thermal_toroidal_profile962_ 1.92151242693906314e-02 -Beta_toroidal_profile_at_point_963_______________________________________ beta_thermal_toroidal_profile963_ 1.90891377541366619e-02 -Beta_toroidal_profile_at_point_964_______________________________________ beta_thermal_toroidal_profile964_ 1.89680942726256560e-02 -Beta_toroidal_profile_at_point_965_______________________________________ beta_thermal_toroidal_profile965_ 1.88523865500505421e-02 -Beta_toroidal_profile_at_point_966_______________________________________ beta_thermal_toroidal_profile966_ 1.87425052911123630e-02 -Beta_toroidal_profile_at_point_967_______________________________________ beta_thermal_toroidal_profile967_ 1.86390882911153070e-02 -Beta_toroidal_profile_at_point_968_______________________________________ beta_thermal_toroidal_profile968_ 1.85430125459554972e-02 -Beta_toroidal_profile_at_point_969_______________________________________ beta_thermal_toroidal_profile969_ 1.84555947625957562e-02 -Beta_toroidal_profile_at_point_970_______________________________________ beta_thermal_toroidal_profile970_ 1.83791576038990004e-02 -Beta_toroidal_profile_at_point_971_______________________________________ beta_thermal_toroidal_profile971_ 1.83205155962368853e-02 -Beta_toroidal_profile_at_point_972_______________________________________ beta_thermal_toroidal_profile972_ 1.74954369281447239e-02 -Beta_toroidal_profile_at_point_973_______________________________________ beta_thermal_toroidal_profile973_ 1.66851493054378866e-02 -Beta_toroidal_profile_at_point_974_______________________________________ beta_thermal_toroidal_profile974_ 1.58897015695489870e-02 -Beta_toroidal_profile_at_point_975_______________________________________ beta_thermal_toroidal_profile975_ 1.51091426127000061e-02 -Beta_toroidal_profile_at_point_976_______________________________________ beta_thermal_toroidal_profile976_ 1.43435213779022821e-02 -Beta_toroidal_profile_at_point_977_______________________________________ beta_thermal_toroidal_profile977_ 1.35928868589565433e-02 -Beta_toroidal_profile_at_point_978_______________________________________ beta_thermal_toroidal_profile978_ 1.28572881004528575e-02 -Beta_toroidal_profile_at_point_979_______________________________________ beta_thermal_toroidal_profile979_ 1.21367741977706743e-02 -Beta_toroidal_profile_at_point_980_______________________________________ beta_thermal_toroidal_profile980_ 1.14313942970788000e-02 -Beta_toroidal_profile_at_point_981_______________________________________ beta_thermal_toroidal_profile981_ 1.07411975953354208e-02 -Beta_toroidal_profile_at_point_982_______________________________________ beta_thermal_toroidal_profile982_ 1.00662333402880642e-02 -Beta_toroidal_profile_at_point_983_______________________________________ beta_thermal_toroidal_profile983_ 9.40655083047366170e-03 -Beta_toroidal_profile_at_point_984_______________________________________ beta_thermal_toroidal_profile984_ 8.76219941521846901e-03 -Beta_toroidal_profile_at_point_985_______________________________________ beta_thermal_toroidal_profile985_ 8.13322849463814050e-03 -Beta_toroidal_profile_at_point_986_______________________________________ beta_thermal_toroidal_profile986_ 7.51968751963767636e-03 -Beta_toroidal_profile_at_point_987_______________________________________ beta_thermal_toroidal_profile987_ 6.92162599191145471e-03 -Beta_toroidal_profile_at_point_988_______________________________________ beta_thermal_toroidal_profile988_ 6.33909346394321421e-03 -Beta_toroidal_profile_at_point_989_______________________________________ beta_thermal_toroidal_profile989_ 5.77213953900605758e-03 -Beta_toroidal_profile_at_point_990_______________________________________ beta_thermal_toroidal_profile990_ 5.22081387116245851e-03 -Beta_toroidal_profile_at_point_991_______________________________________ beta_thermal_toroidal_profile991_ 4.68516616526425556e-03 -Beta_toroidal_profile_at_point_992_______________________________________ beta_thermal_toroidal_profile992_ 4.16524617695264963e-03 -Beta_toroidal_profile_at_point_993_______________________________________ beta_thermal_toroidal_profile993_ 3.66110371265821345e-03 -Beta_toroidal_profile_at_point_994_______________________________________ beta_thermal_toroidal_profile994_ 3.17278862960088028e-03 -Beta_toroidal_profile_at_point_995_______________________________________ beta_thermal_toroidal_profile995_ 2.70035083578995571e-03 -Beta_toroidal_profile_at_point_996_______________________________________ beta_thermal_toroidal_profile996_ 2.24384029002410411e-03 -Beta_toroidal_profile_at_point_997_______________________________________ beta_thermal_toroidal_profile997_ 1.80330700189136064e-03 -Beta_toroidal_profile_at_point_998_______________________________________ beta_thermal_toroidal_profile998_ 1.37880103176912534e-03 -Beta_toroidal_profile_at_point_999_______________________________________ beta_thermal_toroidal_profile999_ 9.70372490824164134e-04 -Beta_toroidal_profile_at_point_1000______________________________________ beta_thermal_toroidal_profile1000_ 5.78071541012608724e-04 -Beta_toroidal_profile_at_point_1001______________________________________ beta_thermal_toroidal_profile1001_ 2.01948395079957680e-04 -Fast_alpha_beta_(β_alpha)________________________________________________ (beta_fast_alpha)______________ 4.85398786161868497e-03 OP +Volume_averaged_poloidal_beta_(⟨βₚ⟩)_____________________________________ (beta_poloidal_vol_avg)________ 1.29244240755343642e+00 OP +Volume_averaged_toroidal_beta_(⟨βₜ⟩)_____________________________________ (beta_toroidal_vol_avg)________ 3.96849240352809204e-02 OP +Beta_toroidal_profile_at_point_0_________________________________________ beta_thermal_toroidal_profile0_ 5.07957076431073508e-05 +Beta_toroidal_profile_at_point_1_________________________________________ beta_thermal_toroidal_profile1_ 1.45837582022161294e-04 +Beta_toroidal_profile_at_point_2_________________________________________ beta_thermal_toroidal_profile2_ 2.45542657024306232e-04 +Beta_toroidal_profile_at_point_3_________________________________________ beta_thermal_toroidal_profile3_ 3.49937139355763183e-04 +Beta_toroidal_profile_at_point_4_________________________________________ beta_thermal_toroidal_profile4_ 4.59047286822576240e-04 +Beta_toroidal_profile_at_point_5_________________________________________ beta_thermal_toroidal_profile5_ 5.72899408330611380e-04 +Beta_toroidal_profile_at_point_6_________________________________________ beta_thermal_toroidal_profile6_ 6.91519863885557955e-04 +Beta_toroidal_profile_at_point_7_________________________________________ beta_thermal_toroidal_profile7_ 8.14935064592926849e-04 +Beta_toroidal_profile_at_point_8_________________________________________ beta_thermal_toroidal_profile8_ 9.43171472658051939e-04 +Beta_toroidal_profile_at_point_9_________________________________________ beta_thermal_toroidal_profile9_ 1.07625560138609059e-03 +Beta_toroidal_profile_at_point_10________________________________________ beta_thermal_toroidal_profile10_ 1.21421401518202136e-03 +Beta_toroidal_profile_at_point_11________________________________________ beta_thermal_toroidal_profile11_ 1.35707332955064533e-03 +Beta_toroidal_profile_at_point_12________________________________________ beta_thermal_toroidal_profile12_ 1.50486021109658857e-03 +Beta_toroidal_profile_at_point_13________________________________________ beta_thermal_toroidal_profile13_ 1.65760137752429598e-03 +Beta_toroidal_profile_at_point_14________________________________________ beta_thermal_toroidal_profile14_ 1.81532359763803800e-03 +Beta_toroidal_profile_at_point_15________________________________________ beta_thermal_toroidal_profile15_ 1.97805369134190605e-03 +Beta_toroidal_profile_at_point_16________________________________________ beta_thermal_toroidal_profile16_ 2.14581852963981580e-03 +Beta_toroidal_profile_at_point_17________________________________________ beta_thermal_toroidal_profile17_ 2.31864503463550219e-03 +Beta_toroidal_profile_at_point_18________________________________________ beta_thermal_toroidal_profile18_ 2.49656017953252610e-03 +Beta_toroidal_profile_at_point_19________________________________________ beta_thermal_toroidal_profile19_ 2.67959098863426769e-03 +Beta_toroidal_profile_at_point_20________________________________________ beta_thermal_toroidal_profile20_ 2.86776453734393592e-03 +Beta_toroidal_profile_at_point_21________________________________________ beta_thermal_toroidal_profile21_ 3.06110795216455421e-03 +Beta_toroidal_profile_at_point_22________________________________________ beta_thermal_toroidal_profile22_ 3.25964841069897480e-03 +Beta_toroidal_profile_at_point_23________________________________________ beta_thermal_toroidal_profile23_ 3.46341314164986787e-03 +Beta_toroidal_profile_at_point_24________________________________________ beta_thermal_toroidal_profile24_ 3.67242942481972937e-03 +Beta_toroidal_profile_at_point_25________________________________________ beta_thermal_toroidal_profile25_ 3.88672459111087751e-03 +Beta_toroidal_profile_at_point_26________________________________________ beta_thermal_toroidal_profile26_ 4.10632602252545328e-03 +Beta_toroidal_profile_at_point_27________________________________________ beta_thermal_toroidal_profile27_ 4.33126115216541600e-03 +Beta_toroidal_profile_at_point_28________________________________________ beta_thermal_toroidal_profile28_ 4.56155746423255338e-03 +Beta_toroidal_profile_at_point_29________________________________________ beta_thermal_toroidal_profile29_ 4.79724249402847195e-03 +Beta_toroidal_profile_at_point_30________________________________________ beta_thermal_toroidal_profile30_ 5.03834382795460226e-03 +Beta_toroidal_profile_at_point_31________________________________________ beta_thermal_toroidal_profile31_ 5.06960810183743667e-03 +Beta_toroidal_profile_at_point_32________________________________________ beta_thermal_toroidal_profile32_ 5.10606680148317348e-03 +Beta_toroidal_profile_at_point_33________________________________________ beta_thermal_toroidal_profile33_ 5.14582223889404385e-03 +Beta_toroidal_profile_at_point_34________________________________________ beta_thermal_toroidal_profile34_ 5.18823852530327437e-03 +Beta_toroidal_profile_at_point_35________________________________________ beta_thermal_toroidal_profile35_ 5.23296058901020090e-03 +Beta_toroidal_profile_at_point_36________________________________________ beta_thermal_toroidal_profile36_ 5.27975549880229777e-03 +Beta_toroidal_profile_at_point_37________________________________________ beta_thermal_toroidal_profile37_ 5.32845645331960632e-03 +Beta_toroidal_profile_at_point_38________________________________________ beta_thermal_toroidal_profile38_ 5.37893712745172049e-03 +Beta_toroidal_profile_at_point_39________________________________________ beta_thermal_toroidal_profile39_ 5.43109803372664960e-03 +Beta_toroidal_profile_at_point_40________________________________________ beta_thermal_toroidal_profile40_ 5.48485851766138816e-03 +Beta_toroidal_profile_at_point_41________________________________________ beta_thermal_toroidal_profile41_ 5.54015171366797725e-03 +Beta_toroidal_profile_at_point_42________________________________________ beta_thermal_toroidal_profile42_ 5.59692119084256173e-03 +Beta_toroidal_profile_at_point_43________________________________________ beta_thermal_toroidal_profile43_ 5.65511862622001052e-03 +Beta_toroidal_profile_at_point_44________________________________________ beta_thermal_toroidal_profile44_ 5.71470213473959134e-03 +Beta_toroidal_profile_at_point_45________________________________________ beta_thermal_toroidal_profile45_ 5.77563503633820967e-03 +Beta_toroidal_profile_at_point_46________________________________________ beta_thermal_toroidal_profile46_ 5.83788492397386422e-03 +Beta_toroidal_profile_at_point_47________________________________________ beta_thermal_toroidal_profile47_ 5.90142294478733249e-03 +Beta_toroidal_profile_at_point_48________________________________________ beta_thermal_toroidal_profile48_ 5.96622323593685392e-03 +Beta_toroidal_profile_at_point_49________________________________________ beta_thermal_toroidal_profile49_ 6.03226247506484341e-03 +Beta_toroidal_profile_at_point_50________________________________________ beta_thermal_toroidal_profile50_ 6.09951951729940586e-03 +Beta_toroidal_profile_at_point_51________________________________________ beta_thermal_toroidal_profile51_ 6.16797509864920341e-03 +Beta_toroidal_profile_at_point_52________________________________________ beta_thermal_toroidal_profile52_ 6.23761159107866399e-03 +Beta_toroidal_profile_at_point_53________________________________________ beta_thermal_toroidal_profile53_ 6.30841279833376564e-03 +Beta_toroidal_profile_at_point_54________________________________________ beta_thermal_toroidal_profile54_ 6.38036378427578234e-03 +Beta_toroidal_profile_at_point_55________________________________________ beta_thermal_toroidal_profile55_ 6.45345072742185746e-03 +Beta_toroidal_profile_at_point_56________________________________________ beta_thermal_toroidal_profile56_ 6.52766079681579067e-03 +Beta_toroidal_profile_at_point_57________________________________________ beta_thermal_toroidal_profile57_ 6.60298204541209799e-03 +Beta_toroidal_profile_at_point_58________________________________________ beta_thermal_toroidal_profile58_ 6.67940331795532135e-03 +Beta_toroidal_profile_at_point_59________________________________________ beta_thermal_toroidal_profile59_ 6.75691417094529453e-03 +Beta_toroidal_profile_at_point_60________________________________________ beta_thermal_toroidal_profile60_ 6.83550480274851182e-03 +Beta_toroidal_profile_at_point_61________________________________________ beta_thermal_toroidal_profile61_ 6.91516599228090677e-03 +Beta_toroidal_profile_at_point_62________________________________________ beta_thermal_toroidal_profile62_ 6.99588904497448934e-03 +Beta_toroidal_profile_at_point_63________________________________________ beta_thermal_toroidal_profile63_ 7.07766574496731561e-03 +Beta_toroidal_profile_at_point_64________________________________________ beta_thermal_toroidal_profile64_ 7.16048831263814151e-03 +Beta_toroidal_profile_at_point_65________________________________________ beta_thermal_toroidal_profile65_ 7.24434936675288996e-03 +Beta_toroidal_profile_at_point_66________________________________________ beta_thermal_toroidal_profile66_ 7.32924189060852813e-03 +Beta_toroidal_profile_at_point_67________________________________________ beta_thermal_toroidal_profile67_ 7.41515920165629946e-03 +Beta_toroidal_profile_at_point_68________________________________________ beta_thermal_toroidal_profile68_ 7.50209492416559556e-03 +Beta_toroidal_profile_at_point_69________________________________________ beta_thermal_toroidal_profile69_ 7.59004296455469997e-03 +Beta_toroidal_profile_at_point_70________________________________________ beta_thermal_toroidal_profile70_ 7.67899748906923380e-03 +Beta_toroidal_profile_at_point_71________________________________________ beta_thermal_toroidal_profile71_ 7.76895290353384841e-03 +Beta_toroidal_profile_at_point_72________________________________________ beta_thermal_toroidal_profile72_ 7.85990383494098582e-03 +Beta_toroidal_profile_at_point_73________________________________________ beta_thermal_toroidal_profile73_ 7.95184511467193593e-03 +Beta_toroidal_profile_at_point_74________________________________________ beta_thermal_toroidal_profile74_ 8.04477176317276547e-03 +Beta_toroidal_profile_at_point_75________________________________________ beta_thermal_toroidal_profile75_ 8.13867897593017857e-03 +Beta_toroidal_profile_at_point_76________________________________________ beta_thermal_toroidal_profile76_ 8.23356211061218070e-03 +Beta_toroidal_profile_at_point_77________________________________________ beta_thermal_toroidal_profile77_ 8.32941667525469685e-03 +Beta_toroidal_profile_at_point_78________________________________________ beta_thermal_toroidal_profile78_ 8.42623831739002134e-03 +Beta_toroidal_profile_at_point_79________________________________________ beta_thermal_toroidal_profile79_ 8.52402281402497505e-03 +Beta_toroidal_profile_at_point_80________________________________________ beta_thermal_toroidal_profile80_ 8.62276606238734054e-03 +Beta_toroidal_profile_at_point_81________________________________________ beta_thermal_toroidal_profile81_ 8.72246407136858561e-03 +Beta_toroidal_profile_at_point_82________________________________________ beta_thermal_toroidal_profile82_ 8.82311295359862642e-03 +Beta_toroidal_profile_at_point_83________________________________________ beta_thermal_toroidal_profile83_ 8.92470891809556480e-03 +Beta_toroidal_profile_at_point_84________________________________________ beta_thermal_toroidal_profile84_ 9.02724826343936047e-03 +Beta_toroidal_profile_at_point_85________________________________________ beta_thermal_toroidal_profile85_ 9.13072737142386903e-03 +Beta_toroidal_profile_at_point_86________________________________________ beta_thermal_toroidal_profile86_ 9.23514270114618799e-03 +Beta_toroidal_profile_at_point_87________________________________________ beta_thermal_toroidal_profile87_ 9.34049078349669451e-03 +Beta_toroidal_profile_at_point_88________________________________________ beta_thermal_toroidal_profile88_ 9.44676821601650972e-03 +Beta_toroidal_profile_at_point_89________________________________________ beta_thermal_toroidal_profile89_ 9.55397165809264946e-03 +Beta_toroidal_profile_at_point_90________________________________________ beta_thermal_toroidal_profile90_ 9.66209782646377906e-03 +Beta_toroidal_profile_at_point_91________________________________________ beta_thermal_toroidal_profile91_ 9.77114349101227894e-03 +Beta_toroidal_profile_at_point_92________________________________________ beta_thermal_toroidal_profile92_ 9.88110547082023984e-03 +Beta_toroidal_profile_at_point_93________________________________________ beta_thermal_toroidal_profile93_ 9.99198063046958726e-03 +Beta_toroidal_profile_at_point_94________________________________________ beta_thermal_toroidal_profile94_ 1.01037658765677357e-02 +Beta_toroidal_profile_at_point_95________________________________________ beta_thermal_toroidal_profile95_ 1.02164581544823708e-02 +Beta_toroidal_profile_at_point_96________________________________________ beta_thermal_toroidal_profile96_ 1.03300544452699025e-02 +Beta_toroidal_profile_at_point_97________________________________________ beta_thermal_toroidal_profile97_ 1.04445517627839383e-02 +Beta_toroidal_profile_at_point_98________________________________________ beta_thermal_toroidal_profile98_ 1.05599471509508682e-02 +Beta_toroidal_profile_at_point_99________________________________________ beta_thermal_toroidal_profile99_ 1.06762376812011024e-02 +Beta_toroidal_profile_at_point_100_______________________________________ beta_thermal_toroidal_profile100_ 1.07934204500450808e-02 +Beta_toroidal_profile_at_point_101_______________________________________ beta_thermal_toroidal_profile101_ 1.09114925767844588e-02 +Beta_toroidal_profile_at_point_102_______________________________________ beta_thermal_toroidal_profile102_ 1.10304512013492499e-02 +Beta_toroidal_profile_at_point_103_______________________________________ beta_thermal_toroidal_profile103_ 1.11502934822528266e-02 +Beta_toroidal_profile_at_point_104_______________________________________ beta_thermal_toroidal_profile104_ 1.12710165946569383e-02 +Beta_toroidal_profile_at_point_105_______________________________________ beta_thermal_toroidal_profile105_ 1.13926177285398056e-02 +Beta_toroidal_profile_at_point_106_______________________________________ beta_thermal_toroidal_profile106_ 1.15150940869607390e-02 +Beta_toroidal_profile_at_point_107_______________________________________ beta_thermal_toroidal_profile107_ 1.16384428844152291e-02 +Beta_toroidal_profile_at_point_108_______________________________________ beta_thermal_toroidal_profile108_ 1.17626613452749707e-02 +Beta_toroidal_profile_at_point_109_______________________________________ beta_thermal_toroidal_profile109_ 1.18877467023076056e-02 +Beta_toroidal_profile_at_point_110_______________________________________ beta_thermal_toroidal_profile110_ 1.20136961952713832e-02 +Beta_toroidal_profile_at_point_111_______________________________________ beta_thermal_toroidal_profile111_ 1.21405070695804109e-02 +Beta_toroidal_profile_at_point_112_______________________________________ beta_thermal_toroidal_profile112_ 1.22681765750360799e-02 +Beta_toroidal_profile_at_point_113_______________________________________ beta_thermal_toroidal_profile113_ 1.23967019646211967e-02 +Beta_toroidal_profile_at_point_114_______________________________________ beta_thermal_toroidal_profile114_ 1.25260804933528536e-02 +Beta_toroidal_profile_at_point_115_______________________________________ beta_thermal_toroidal_profile115_ 1.26563094171910431e-02 +Beta_toroidal_profile_at_point_116_______________________________________ beta_thermal_toroidal_profile116_ 1.27873859919996145e-02 +Beta_toroidal_profile_at_point_117_______________________________________ beta_thermal_toroidal_profile117_ 1.29193074725569290e-02 +Beta_toroidal_profile_at_point_118_______________________________________ beta_thermal_toroidal_profile118_ 1.30520711116132310e-02 +Beta_toroidal_profile_at_point_119_______________________________________ beta_thermal_toroidal_profile119_ 1.31856741589925046e-02 +Beta_toroidal_profile_at_point_120_______________________________________ beta_thermal_toroidal_profile120_ 1.33201138607361748e-02 +Beta_toroidal_profile_at_point_121_______________________________________ beta_thermal_toroidal_profile121_ 1.34553874582866058e-02 +Beta_toroidal_profile_at_point_122_______________________________________ beta_thermal_toroidal_profile122_ 1.35914921877082241e-02 +Beta_toroidal_profile_at_point_123_______________________________________ beta_thermal_toroidal_profile123_ 1.37284252789444186e-02 +Beta_toroidal_profile_at_point_124_______________________________________ beta_thermal_toroidal_profile124_ 1.38661839551082432e-02 +Beta_toroidal_profile_at_point_125_______________________________________ beta_thermal_toroidal_profile125_ 1.40047654318053855e-02 +Beta_toroidal_profile_at_point_126_______________________________________ beta_thermal_toroidal_profile126_ 1.41441669164876598e-02 +Beta_toroidal_profile_at_point_127_______________________________________ beta_thermal_toroidal_profile127_ 1.42843856078355078e-02 +Beta_toroidal_profile_at_point_128_______________________________________ beta_thermal_toroidal_profile128_ 1.44254186951682257e-02 +Beta_toroidal_profile_at_point_129_______________________________________ beta_thermal_toroidal_profile129_ 1.45672633578803664e-02 +Beta_toroidal_profile_at_point_130_______________________________________ beta_thermal_toroidal_profile130_ 1.47099167649033125e-02 +Beta_toroidal_profile_at_point_131_______________________________________ beta_thermal_toroidal_profile131_ 1.48533760741905389e-02 +Beta_toroidal_profile_at_point_132_______________________________________ beta_thermal_toroidal_profile132_ 1.49976384322256951e-02 +Beta_toroidal_profile_at_point_133_______________________________________ beta_thermal_toroidal_profile133_ 1.51427009735523015e-02 +Beta_toroidal_profile_at_point_134_______________________________________ beta_thermal_toroidal_profile134_ 1.52885608203241711e-02 +Beta_toroidal_profile_at_point_135_______________________________________ beta_thermal_toroidal_profile135_ 1.54352150818754773e-02 +Beta_toroidal_profile_at_point_136_______________________________________ beta_thermal_toroidal_profile136_ 1.55826608543097392e-02 +Beta_toroidal_profile_at_point_137_______________________________________ beta_thermal_toroidal_profile137_ 1.57308952201067227e-02 +Beta_toroidal_profile_at_point_138_______________________________________ beta_thermal_toroidal_profile138_ 1.58799152477466475e-02 +Beta_toroidal_profile_at_point_139_______________________________________ beta_thermal_toroidal_profile139_ 1.60297179913506949e-02 +Beta_toroidal_profile_at_point_140_______________________________________ beta_thermal_toroidal_profile140_ 1.61803004903374355e-02 +Beta_toroidal_profile_at_point_141_______________________________________ beta_thermal_toroidal_profile141_ 1.63316597690941236e-02 +Beta_toroidal_profile_at_point_142_______________________________________ beta_thermal_toroidal_profile142_ 1.64837928366626078e-02 +Beta_toroidal_profile_at_point_143_______________________________________ beta_thermal_toroidal_profile143_ 1.66366966864388566e-02 +Beta_toroidal_profile_at_point_144_______________________________________ beta_thermal_toroidal_profile144_ 1.67903682958859407e-02 +Beta_toroidal_profile_at_point_145_______________________________________ beta_thermal_toroidal_profile145_ 1.69448046262595207e-02 +Beta_toroidal_profile_at_point_146_______________________________________ beta_thermal_toroidal_profile146_ 1.71000026223456364e-02 +Beta_toroidal_profile_at_point_147_______________________________________ beta_thermal_toroidal_profile147_ 1.72559592122101500e-02 +Beta_toroidal_profile_at_point_148_______________________________________ beta_thermal_toroidal_profile148_ 1.74126713069593653e-02 +Beta_toroidal_profile_at_point_149_______________________________________ beta_thermal_toroidal_profile149_ 1.75701358005114876e-02 +Beta_toroidal_profile_at_point_150_______________________________________ beta_thermal_toroidal_profile150_ 1.77283495693784134e-02 +Beta_toroidal_profile_at_point_151_______________________________________ beta_thermal_toroidal_profile151_ 1.78873094724574314e-02 +Beta_toroidal_profile_at_point_152_______________________________________ beta_thermal_toroidal_profile152_ 1.80470123508326037e-02 +Beta_toroidal_profile_at_point_153_______________________________________ beta_thermal_toroidal_profile153_ 1.82074550275851746e-02 +Beta_toroidal_profile_at_point_154_______________________________________ beta_thermal_toroidal_profile154_ 1.83686343076130201e-02 +Beta_toroidal_profile_at_point_155_______________________________________ beta_thermal_toroidal_profile155_ 1.85305469774585084e-02 +Beta_toroidal_profile_at_point_156_______________________________________ beta_thermal_toroidal_profile156_ 1.86931898051446617e-02 +Beta_toroidal_profile_at_point_157_______________________________________ beta_thermal_toroidal_profile157_ 1.88565595400190522e-02 +Beta_toroidal_profile_at_point_158_______________________________________ beta_thermal_toroidal_profile158_ 1.90206529126056394e-02 +Beta_toroidal_profile_at_point_159_______________________________________ beta_thermal_toroidal_profile159_ 1.91854666344635945e-02 +Beta_toroidal_profile_at_point_160_______________________________________ beta_thermal_toroidal_profile160_ 1.93509973980535051e-02 +Beta_toroidal_profile_at_point_161_______________________________________ beta_thermal_toroidal_profile161_ 1.95172418766102786e-02 +Beta_toroidal_profile_at_point_162_______________________________________ beta_thermal_toroidal_profile162_ 1.96841967240226727e-02 +Beta_toroidal_profile_at_point_163_______________________________________ beta_thermal_toroidal_profile163_ 1.98518585747192305e-02 +Beta_toroidal_profile_at_point_164_______________________________________ beta_thermal_toroidal_profile164_ 2.00202240435603598e-02 +Beta_toroidal_profile_at_point_165_______________________________________ beta_thermal_toroidal_profile165_ 2.01892897257363590e-02 +Beta_toroidal_profile_at_point_166_______________________________________ beta_thermal_toroidal_profile166_ 2.03590521966711784e-02 +Beta_toroidal_profile_at_point_167_______________________________________ beta_thermal_toroidal_profile167_ 2.05295080119318220e-02 +Beta_toroidal_profile_at_point_168_______________________________________ beta_thermal_toroidal_profile168_ 2.07006537071430276e-02 +Beta_toroidal_profile_at_point_169_______________________________________ beta_thermal_toroidal_profile169_ 2.08724857979072642e-02 +Beta_toroidal_profile_at_point_170_______________________________________ beta_thermal_toroidal_profile170_ 2.10450007797295911e-02 +Beta_toroidal_profile_at_point_171_______________________________________ beta_thermal_toroidal_profile171_ 2.12181951279476790e-02 +Beta_toroidal_profile_at_point_172_______________________________________ beta_thermal_toroidal_profile172_ 2.13920652976662164e-02 +Beta_toroidal_profile_at_point_173_______________________________________ beta_thermal_toroidal_profile173_ 2.15666077236962191e-02 +Beta_toroidal_profile_at_point_174_______________________________________ beta_thermal_toroidal_profile174_ 2.17418188204985575e-02 +Beta_toroidal_profile_at_point_175_______________________________________ beta_thermal_toroidal_profile175_ 2.19176949821318842e-02 +Beta_toroidal_profile_at_point_176_______________________________________ beta_thermal_toroidal_profile176_ 2.20942325822046925e-02 +Beta_toroidal_profile_at_point_177_______________________________________ beta_thermal_toroidal_profile177_ 2.22714279738314980e-02 +Beta_toroidal_profile_at_point_178_______________________________________ beta_thermal_toroidal_profile178_ 2.24492774895928525e-02 +Beta_toroidal_profile_at_point_179_______________________________________ beta_thermal_toroidal_profile179_ 2.26277774414992555e-02 +Beta_toroidal_profile_at_point_180_______________________________________ beta_thermal_toroidal_profile180_ 2.28069241209587249e-02 +Beta_toroidal_profile_at_point_181_______________________________________ beta_thermal_toroidal_profile181_ 2.29867137987479798e-02 +Beta_toroidal_profile_at_point_182_______________________________________ beta_thermal_toroidal_profile182_ 2.31671427249871553e-02 +Beta_toroidal_profile_at_point_183_______________________________________ beta_thermal_toroidal_profile183_ 2.33482071291178858e-02 +Beta_toroidal_profile_at_point_184_______________________________________ beta_thermal_toroidal_profile184_ 2.35299032198846396e-02 +Beta_toroidal_profile_at_point_185_______________________________________ beta_thermal_toroidal_profile185_ 2.37122271853194427e-02 +Beta_toroidal_profile_at_point_186_______________________________________ beta_thermal_toroidal_profile186_ 2.38951751927295349e-02 +Beta_toroidal_profile_at_point_187_______________________________________ beta_thermal_toroidal_profile187_ 2.40787433886881855e-02 +Beta_toroidal_profile_at_point_188_______________________________________ beta_thermal_toroidal_profile188_ 2.42629278990284906e-02 +Beta_toroidal_profile_at_point_189_______________________________________ beta_thermal_toroidal_profile189_ 2.44477248288399937e-02 +Beta_toroidal_profile_at_point_190_______________________________________ beta_thermal_toroidal_profile190_ 2.46331302624681094e-02 +Beta_toroidal_profile_at_point_191_______________________________________ beta_thermal_toroidal_profile191_ 2.48191402635164621e-02 +Beta_toroidal_profile_at_point_192_______________________________________ beta_thermal_toroidal_profile192_ 2.50057508748515872e-02 +Beta_toroidal_profile_at_point_193_______________________________________ beta_thermal_toroidal_profile193_ 2.51929581186105950e-02 +Beta_toroidal_profile_at_point_194_______________________________________ beta_thermal_toroidal_profile194_ 2.53807579962110723e-02 +Beta_toroidal_profile_at_point_195_______________________________________ beta_thermal_toroidal_profile195_ 2.55691464883637289e-02 +Beta_toroidal_profile_at_point_196_______________________________________ beta_thermal_toroidal_profile196_ 2.57581195550872083e-02 +Beta_toroidal_profile_at_point_197_______________________________________ beta_thermal_toroidal_profile197_ 2.59476731357254908e-02 +Beta_toroidal_profile_at_point_198_______________________________________ beta_thermal_toroidal_profile198_ 2.61378031489674471e-02 +Beta_toroidal_profile_at_point_199_______________________________________ beta_thermal_toroidal_profile199_ 2.63285054928687513e-02 +Beta_toroidal_profile_at_point_200_______________________________________ beta_thermal_toroidal_profile200_ 2.65197760448759381e-02 +Beta_toroidal_profile_at_point_201_______________________________________ beta_thermal_toroidal_profile201_ 2.67116106618526146e-02 +Beta_toroidal_profile_at_point_202_______________________________________ beta_thermal_toroidal_profile202_ 2.69040051801078470e-02 +Beta_toroidal_profile_at_point_203_______________________________________ beta_thermal_toroidal_profile203_ 2.70969554154265151e-02 +Beta_toroidal_profile_at_point_204_______________________________________ beta_thermal_toroidal_profile204_ 2.72904571631017064e-02 +Beta_toroidal_profile_at_point_205_______________________________________ beta_thermal_toroidal_profile205_ 2.74845061979692024e-02 +Beta_toroidal_profile_at_point_206_______________________________________ beta_thermal_toroidal_profile206_ 2.76790982744436510e-02 +Beta_toroidal_profile_at_point_207_______________________________________ beta_thermal_toroidal_profile207_ 2.78742291265568660e-02 +Beta_toroidal_profile_at_point_208_______________________________________ beta_thermal_toroidal_profile208_ 2.80698944679978607e-02 +Beta_toroidal_profile_at_point_209_______________________________________ beta_thermal_toroidal_profile209_ 2.82660899921547380e-02 +Beta_toroidal_profile_at_point_210_______________________________________ beta_thermal_toroidal_profile210_ 2.84628113721582046e-02 +Beta_toroidal_profile_at_point_211_______________________________________ beta_thermal_toroidal_profile211_ 2.86600542609272355e-02 +Beta_toroidal_profile_at_point_212_______________________________________ beta_thermal_toroidal_profile212_ 2.88578142912157970e-02 +Beta_toroidal_profile_at_point_213_______________________________________ beta_thermal_toroidal_profile213_ 2.90560870756619294e-02 +Beta_toroidal_profile_at_point_214_______________________________________ beta_thermal_toroidal_profile214_ 2.92548682068379598e-02 +Beta_toroidal_profile_at_point_215_______________________________________ beta_thermal_toroidal_profile215_ 2.94541532573026378e-02 +Beta_toroidal_profile_at_point_216_______________________________________ beta_thermal_toroidal_profile216_ 2.96539377796546169e-02 +Beta_toroidal_profile_at_point_217_______________________________________ beta_thermal_toroidal_profile217_ 2.98542173065877228e-02 +Beta_toroidal_profile_at_point_218_______________________________________ beta_thermal_toroidal_profile218_ 3.00549873509474950e-02 +Beta_toroidal_profile_at_point_219_______________________________________ beta_thermal_toroidal_profile219_ 3.02562434057895221e-02 +Beta_toroidal_profile_at_point_220_______________________________________ beta_thermal_toroidal_profile220_ 3.04579809444388977e-02 +Beta_toroidal_profile_at_point_221_______________________________________ beta_thermal_toroidal_profile221_ 3.06601954205514352e-02 +Beta_toroidal_profile_at_point_222_______________________________________ beta_thermal_toroidal_profile222_ 3.08628822681761041e-02 +Beta_toroidal_profile_at_point_223_______________________________________ beta_thermal_toroidal_profile223_ 3.10660369018188956e-02 +Beta_toroidal_profile_at_point_224_______________________________________ beta_thermal_toroidal_profile224_ 3.12696547165082356e-02 +Beta_toroidal_profile_at_point_225_______________________________________ beta_thermal_toroidal_profile225_ 3.14737310878613757e-02 +Beta_toroidal_profile_at_point_226_______________________________________ beta_thermal_toroidal_profile226_ 3.16782613721525719e-02 +Beta_toroidal_profile_at_point_227_______________________________________ beta_thermal_toroidal_profile227_ 3.18832409063821223e-02 +Beta_toroidal_profile_at_point_228_______________________________________ beta_thermal_toroidal_profile228_ 3.20886650083471031e-02 +Beta_toroidal_profile_at_point_229_______________________________________ beta_thermal_toroidal_profile229_ 3.22945289767129634e-02 +Beta_toroidal_profile_at_point_230_______________________________________ beta_thermal_toroidal_profile230_ 3.25008280910867101e-02 +Beta_toroidal_profile_at_point_231_______________________________________ beta_thermal_toroidal_profile231_ 3.27075576120911260e-02 +Beta_toroidal_profile_at_point_232_______________________________________ beta_thermal_toroidal_profile232_ 3.29147127814403279e-02 +Beta_toroidal_profile_at_point_233_______________________________________ beta_thermal_toroidal_profile233_ 3.31222888220162465e-02 +Beta_toroidal_profile_at_point_234_______________________________________ beta_thermal_toroidal_profile234_ 3.33302809379467380e-02 +Beta_toroidal_profile_at_point_235_______________________________________ beta_thermal_toroidal_profile235_ 3.35386843146842917e-02 +Beta_toroidal_profile_at_point_236_______________________________________ beta_thermal_toroidal_profile236_ 3.37474941190864311e-02 +Beta_toroidal_profile_at_point_237_______________________________________ beta_thermal_toroidal_profile237_ 3.39567054994967671e-02 +Beta_toroidal_profile_at_point_238_______________________________________ beta_thermal_toroidal_profile238_ 3.41663135858275846e-02 +Beta_toroidal_profile_at_point_239_______________________________________ beta_thermal_toroidal_profile239_ 3.43763134896430470e-02 +Beta_toroidal_profile_at_point_240_______________________________________ beta_thermal_toroidal_profile240_ 3.45867003042439961e-02 +Beta_toroidal_profile_at_point_241_______________________________________ beta_thermal_toroidal_profile241_ 3.47974691047533424e-02 +Beta_toroidal_profile_at_point_242_______________________________________ beta_thermal_toroidal_profile242_ 3.50086149482029402e-02 +Beta_toroidal_profile_at_point_243_______________________________________ beta_thermal_toroidal_profile243_ 3.52201328736210587e-02 +Beta_toroidal_profile_at_point_244_______________________________________ beta_thermal_toroidal_profile244_ 3.54320179021212836e-02 +Beta_toroidal_profile_at_point_245_______________________________________ beta_thermal_toroidal_profile245_ 3.56442650369921468e-02 +Beta_toroidal_profile_at_point_246_______________________________________ beta_thermal_toroidal_profile246_ 3.58568692637879355e-02 +Beta_toroidal_profile_at_point_247_______________________________________ beta_thermal_toroidal_profile247_ 3.60698255504202925e-02 +Beta_toroidal_profile_at_point_248_______________________________________ beta_thermal_toroidal_profile248_ 3.62831288472510380e-02 +Beta_toroidal_profile_at_point_249_______________________________________ beta_thermal_toroidal_profile249_ 3.64967740871857335e-02 +Beta_toroidal_profile_at_point_250_______________________________________ beta_thermal_toroidal_profile250_ 3.67107561857683909e-02 +Beta_toroidal_profile_at_point_251_______________________________________ beta_thermal_toroidal_profile251_ 3.69250700412768473e-02 +Beta_toroidal_profile_at_point_252_______________________________________ beta_thermal_toroidal_profile252_ 3.71397105348194381e-02 +Beta_toroidal_profile_at_point_253_______________________________________ beta_thermal_toroidal_profile253_ 3.73546725304322869e-02 +Beta_toroidal_profile_at_point_254_______________________________________ beta_thermal_toroidal_profile254_ 3.75699508751776642e-02 +Beta_toroidal_profile_at_point_255_______________________________________ beta_thermal_toroidal_profile255_ 3.77855403992431171e-02 +Beta_toroidal_profile_at_point_256_______________________________________ beta_thermal_toroidal_profile256_ 3.80014359160417287e-02 +Beta_toroidal_profile_at_point_257_______________________________________ beta_thermal_toroidal_profile257_ 3.82176322223129333e-02 +Beta_toroidal_profile_at_point_258_______________________________________ beta_thermal_toroidal_profile258_ 3.84341240982244495e-02 +Beta_toroidal_profile_at_point_259_______________________________________ beta_thermal_toroidal_profile259_ 3.86509063074750511e-02 +Beta_toroidal_profile_at_point_260_______________________________________ beta_thermal_toroidal_profile260_ 3.88679735973979715e-02 +Beta_toroidal_profile_at_point_261_______________________________________ beta_thermal_toroidal_profile261_ 3.90853206990655552e-02 +Beta_toroidal_profile_at_point_262_______________________________________ beta_thermal_toroidal_profile262_ 3.93029423273943412e-02 +Beta_toroidal_profile_at_point_263_______________________________________ beta_thermal_toroidal_profile263_ 3.95208331812511512e-02 +Beta_toroidal_profile_at_point_264_______________________________________ beta_thermal_toroidal_profile264_ 3.97389879435601362e-02 +Beta_toroidal_profile_at_point_265_______________________________________ beta_thermal_toroidal_profile265_ 3.99574012814103360e-02 +Beta_toroidal_profile_at_point_266_______________________________________ beta_thermal_toroidal_profile266_ 4.01760678461643012e-02 +Beta_toroidal_profile_at_point_267_______________________________________ beta_thermal_toroidal_profile267_ 4.03949822735673592e-02 +Beta_toroidal_profile_at_point_268_______________________________________ beta_thermal_toroidal_profile268_ 4.06141391838578600e-02 +Beta_toroidal_profile_at_point_269_______________________________________ beta_thermal_toroidal_profile269_ 4.08335331818778305e-02 +Beta_toroidal_profile_at_point_270_______________________________________ beta_thermal_toroidal_profile270_ 4.10531588571849196e-02 +Beta_toroidal_profile_at_point_271_______________________________________ beta_thermal_toroidal_profile271_ 4.12730107841646904e-02 +Beta_toroidal_profile_at_point_272_______________________________________ beta_thermal_toroidal_profile272_ 4.14930835221438213e-02 +Beta_toroidal_profile_at_point_273_______________________________________ beta_thermal_toroidal_profile273_ 4.17133716155042092e-02 +Beta_toroidal_profile_at_point_274_______________________________________ beta_thermal_toroidal_profile274_ 4.19338695937974959e-02 +Beta_toroidal_profile_at_point_275_______________________________________ beta_thermal_toroidal_profile275_ 4.21545719718606979e-02 +Beta_toroidal_profile_at_point_276_______________________________________ beta_thermal_toroidal_profile276_ 4.23754732499323564e-02 +Beta_toroidal_profile_at_point_277_______________________________________ beta_thermal_toroidal_profile277_ 4.25965679137693953e-02 +Beta_toroidal_profile_at_point_278_______________________________________ beta_thermal_toroidal_profile278_ 4.28178504347648814e-02 +Beta_toroidal_profile_at_point_279_______________________________________ beta_thermal_toroidal_profile279_ 4.30393152700663736e-02 +Beta_toroidal_profile_at_point_280_______________________________________ beta_thermal_toroidal_profile280_ 4.32609568626949673e-02 +Beta_toroidal_profile_at_point_281_______________________________________ beta_thermal_toroidal_profile281_ 4.34827696416651976e-02 +Beta_toroidal_profile_at_point_282_______________________________________ beta_thermal_toroidal_profile282_ 4.37047480221054163e-02 +Beta_toroidal_profile_at_point_283_______________________________________ beta_thermal_toroidal_profile283_ 4.39268864053791452e-02 +Beta_toroidal_profile_at_point_284_______________________________________ beta_thermal_toroidal_profile284_ 4.41491791792068614e-02 +Beta_toroidal_profile_at_point_285_______________________________________ beta_thermal_toroidal_profile285_ 4.43716207177886277e-02 +Beta_toroidal_profile_at_point_286_______________________________________ beta_thermal_toroidal_profile286_ 4.45942053819273349e-02 +Beta_toroidal_profile_at_point_287_______________________________________ beta_thermal_toroidal_profile287_ 4.48169275191527411e-02 +Beta_toroidal_profile_at_point_288_______________________________________ beta_thermal_toroidal_profile288_ 4.50397814638459557e-02 +Beta_toroidal_profile_at_point_289_______________________________________ beta_thermal_toroidal_profile289_ 4.52627615373648040e-02 +Beta_toroidal_profile_at_point_290_______________________________________ beta_thermal_toroidal_profile290_ 4.54858620481698450e-02 +Beta_toroidal_profile_at_point_291_______________________________________ beta_thermal_toroidal_profile291_ 4.57090772919508254e-02 +Beta_toroidal_profile_at_point_292_______________________________________ beta_thermal_toroidal_profile292_ 4.59324015517540429e-02 +Beta_toroidal_profile_at_point_293_______________________________________ beta_thermal_toroidal_profile293_ 4.61558290981103139e-02 +Beta_toroidal_profile_at_point_294_______________________________________ beta_thermal_toroidal_profile294_ 4.63793541891633840e-02 +Beta_toroidal_profile_at_point_295_______________________________________ beta_thermal_toroidal_profile295_ 4.66029710707992623e-02 +Beta_toroidal_profile_at_point_296_______________________________________ beta_thermal_toroidal_profile296_ 4.68266739767759996e-02 +Beta_toroidal_profile_at_point_297_______________________________________ beta_thermal_toroidal_profile297_ 4.70504571288541673e-02 +Beta_toroidal_profile_at_point_298_______________________________________ beta_thermal_toroidal_profile298_ 4.72743147369280164e-02 +Beta_toroidal_profile_at_point_299_______________________________________ beta_thermal_toroidal_profile299_ 4.74982409991569973e-02 +Beta_toroidal_profile_at_point_300_______________________________________ beta_thermal_toroidal_profile300_ 4.77222301020984174e-02 +Beta_toroidal_profile_at_point_301_______________________________________ beta_thermal_toroidal_profile301_ 4.79462762208401408e-02 +Beta_toroidal_profile_at_point_302_______________________________________ beta_thermal_toroidal_profile302_ 4.81703735191342935e-02 +Beta_toroidal_profile_at_point_303_______________________________________ beta_thermal_toroidal_profile303_ 4.83945161495313303e-02 +Beta_toroidal_profile_at_point_304_______________________________________ beta_thermal_toroidal_profile304_ 4.86186982535149817e-02 +Beta_toroidal_profile_at_point_305_______________________________________ beta_thermal_toroidal_profile305_ 4.88429139616374797e-02 +Beta_toroidal_profile_at_point_306_______________________________________ beta_thermal_toroidal_profile306_ 4.90671573936557054e-02 +Beta_toroidal_profile_at_point_307_______________________________________ beta_thermal_toroidal_profile307_ 4.92914226586675455e-02 +Beta_toroidal_profile_at_point_308_______________________________________ beta_thermal_toroidal_profile308_ 4.95157038552492684e-02 +Beta_toroidal_profile_at_point_309_______________________________________ beta_thermal_toroidal_profile309_ 4.97399950715931849e-02 +Beta_toroidal_profile_at_point_310_______________________________________ beta_thermal_toroidal_profile310_ 4.99642903856460027e-02 +Beta_toroidal_profile_at_point_311_______________________________________ beta_thermal_toroidal_profile311_ 5.01885838652476671e-02 +Beta_toroidal_profile_at_point_312_______________________________________ beta_thermal_toroidal_profile312_ 5.04128695682710057e-02 +Beta_toroidal_profile_at_point_313_______________________________________ beta_thermal_toroidal_profile313_ 5.06371415427617211e-02 +Beta_toroidal_profile_at_point_314_______________________________________ beta_thermal_toroidal_profile314_ 5.08613938270788823e-02 +Beta_toroidal_profile_at_point_315_______________________________________ beta_thermal_toroidal_profile315_ 5.10856204500363190e-02 +Beta_toroidal_profile_at_point_316_______________________________________ beta_thermal_toroidal_profile316_ 5.13098154310443894e-02 +Beta_toroidal_profile_at_point_317_______________________________________ beta_thermal_toroidal_profile317_ 5.15339727802521311e-02 +Beta_toroidal_profile_at_point_318_______________________________________ beta_thermal_toroidal_profile318_ 5.17580864986902783e-02 +Beta_toroidal_profile_at_point_319_______________________________________ beta_thermal_toroidal_profile319_ 5.19821505784146543e-02 +Beta_toroidal_profile_at_point_320_______________________________________ beta_thermal_toroidal_profile320_ 5.22061590026501321e-02 +Beta_toroidal_profile_at_point_321_______________________________________ beta_thermal_toroidal_profile321_ 5.24301057459351932e-02 +Beta_toroidal_profile_at_point_322_______________________________________ beta_thermal_toroidal_profile322_ 5.26539847742670125e-02 +Beta_toroidal_profile_at_point_323_______________________________________ beta_thermal_toroidal_profile323_ 5.28777900452470154e-02 +Beta_toroidal_profile_at_point_324_______________________________________ beta_thermal_toroidal_profile324_ 5.31015155082270526e-02 +Beta_toroidal_profile_at_point_325_______________________________________ beta_thermal_toroidal_profile325_ 5.33251551044561303e-02 +Beta_toroidal_profile_at_point_326_______________________________________ beta_thermal_toroidal_profile326_ 5.35487027672275628e-02 +Beta_toroidal_profile_at_point_327_______________________________________ beta_thermal_toroidal_profile327_ 5.37721524220268199e-02 +Beta_toroidal_profile_at_point_328_______________________________________ beta_thermal_toroidal_profile328_ 5.39954979866795887e-02 +Beta_toroidal_profile_at_point_329_______________________________________ beta_thermal_toroidal_profile329_ 5.42187333715008352e-02 +Beta_toroidal_profile_at_point_330_______________________________________ beta_thermal_toroidal_profile330_ 5.44418524794439279e-02 +Beta_toroidal_profile_at_point_331_______________________________________ beta_thermal_toroidal_profile331_ 5.46648492062505875e-02 +Beta_toroidal_profile_at_point_332_______________________________________ beta_thermal_toroidal_profile332_ 5.48877174406011900e-02 +Beta_toroidal_profile_at_point_333_______________________________________ beta_thermal_toroidal_profile333_ 5.51104510642655143e-02 +Beta_toroidal_profile_at_point_334_______________________________________ beta_thermal_toroidal_profile334_ 5.53330439522543849e-02 +Beta_toroidal_profile_at_point_335_______________________________________ beta_thermal_toroidal_profile335_ 5.55554899729713073e-02 +Beta_toroidal_profile_at_point_336_______________________________________ beta_thermal_toroidal_profile336_ 5.57777829883648740e-02 +Beta_toroidal_profile_at_point_337_______________________________________ beta_thermal_toroidal_profile337_ 5.59999168540818368e-02 +Beta_toroidal_profile_at_point_338_______________________________________ beta_thermal_toroidal_profile338_ 5.62218854196201989e-02 +Beta_toroidal_profile_at_point_339_______________________________________ beta_thermal_toroidal_profile339_ 5.64436825284833354e-02 +Beta_toroidal_profile_at_point_340_______________________________________ beta_thermal_toroidal_profile340_ 5.66653020183342862e-02 +Beta_toroidal_profile_at_point_341_______________________________________ beta_thermal_toroidal_profile341_ 5.68867377211504724e-02 +Beta_toroidal_profile_at_point_342_______________________________________ beta_thermal_toroidal_profile342_ 5.71079834633793429e-02 +Beta_toroidal_profile_at_point_343_______________________________________ beta_thermal_toroidal_profile343_ 5.73290330660938749e-02 +Beta_toroidal_profile_at_point_344_______________________________________ beta_thermal_toroidal_profile344_ 5.75498803451491153e-02 +Beta_toroidal_profile_at_point_345_______________________________________ beta_thermal_toroidal_profile345_ 5.77705191113389235e-02 +Beta_toroidal_profile_at_point_346_______________________________________ beta_thermal_toroidal_profile346_ 5.79909431705531650e-02 +Beta_toroidal_profile_at_point_347_______________________________________ beta_thermal_toroidal_profile347_ 5.82111463239356058e-02 +Beta_toroidal_profile_at_point_348_______________________________________ beta_thermal_toroidal_profile348_ 5.84311223680419045e-02 +Beta_toroidal_profile_at_point_349_______________________________________ beta_thermal_toroidal_profile349_ 5.86508650949986235e-02 +Beta_toroidal_profile_at_point_350_______________________________________ beta_thermal_toroidal_profile350_ 5.88703682926620259e-02 +Beta_toroidal_profile_at_point_351_______________________________________ beta_thermal_toroidal_profile351_ 5.90896257447779821e-02 +Beta_toroidal_profile_at_point_352_______________________________________ beta_thermal_toroidal_profile352_ 5.93086312311419603e-02 +Beta_toroidal_profile_at_point_353_______________________________________ beta_thermal_toroidal_profile353_ 5.95273785277594947e-02 +Beta_toroidal_profile_at_point_354_______________________________________ beta_thermal_toroidal_profile354_ 5.97458614070072863e-02 +Beta_toroidal_profile_at_point_355_______________________________________ beta_thermal_toroidal_profile355_ 5.99640736377946015e-02 +Beta_toroidal_profile_at_point_356_______________________________________ beta_thermal_toroidal_profile356_ 6.01820089857252605e-02 +Beta_toroidal_profile_at_point_357_______________________________________ beta_thermal_toroidal_profile357_ 6.03996612132598476e-02 +Beta_toroidal_profile_at_point_358_______________________________________ beta_thermal_toroidal_profile358_ 6.06170240798787271e-02 +Beta_toroidal_profile_at_point_359_______________________________________ beta_thermal_toroidal_profile359_ 6.08340913422451071e-02 +Beta_toroidal_profile_at_point_360_______________________________________ beta_thermal_toroidal_profile360_ 6.10508567543687763e-02 +Beta_toroidal_profile_at_point_361_______________________________________ beta_thermal_toroidal_profile361_ 6.12673140677703898e-02 +Beta_toroidal_profile_at_point_362_______________________________________ beta_thermal_toroidal_profile362_ 6.14834570316458162e-02 +Beta_toroidal_profile_at_point_363_______________________________________ beta_thermal_toroidal_profile363_ 6.16992793930313116e-02 +Beta_toroidal_profile_at_point_364_______________________________________ beta_thermal_toroidal_profile364_ 6.19147748969688938e-02 +Beta_toroidal_profile_at_point_365_______________________________________ beta_thermal_toroidal_profile365_ 6.21299372866722308e-02 +Beta_toroidal_profile_at_point_366_______________________________________ beta_thermal_toroidal_profile366_ 6.23447603036929865e-02 +Beta_toroidal_profile_at_point_367_______________________________________ beta_thermal_toroidal_profile367_ 6.25592376880874240e-02 +Beta_toroidal_profile_at_point_368_______________________________________ beta_thermal_toroidal_profile368_ 6.27733631785836743e-02 +Beta_toroidal_profile_at_point_369_______________________________________ beta_thermal_toroidal_profile369_ 6.29871305127493314e-02 +Beta_toroidal_profile_at_point_370_______________________________________ beta_thermal_toroidal_profile370_ 6.32005334271593666e-02 +Beta_toroidal_profile_at_point_371_______________________________________ beta_thermal_toroidal_profile371_ 6.34135656575644663e-02 +Beta_toroidal_profile_at_point_372_______________________________________ beta_thermal_toroidal_profile372_ 6.36262209390601186e-02 +Beta_toroidal_profile_at_point_373_______________________________________ beta_thermal_toroidal_profile373_ 6.38384930062555617e-02 +Beta_toroidal_profile_at_point_374_______________________________________ beta_thermal_toroidal_profile374_ 6.40503755934436064e-02 +Beta_toroidal_profile_at_point_375_______________________________________ beta_thermal_toroidal_profile375_ 6.42618624347706530e-02 +Beta_toroidal_profile_at_point_376_______________________________________ beta_thermal_toroidal_profile376_ 6.44729472644070961e-02 +Beta_toroidal_profile_at_point_377_______________________________________ beta_thermal_toroidal_profile377_ 6.46836238167182304e-02 +Beta_toroidal_profile_at_point_378_______________________________________ beta_thermal_toroidal_profile378_ 6.48938858264355017e-02 +Beta_toroidal_profile_at_point_379_______________________________________ beta_thermal_toroidal_profile379_ 6.51037270288282316e-02 +Beta_toroidal_profile_at_point_380_______________________________________ beta_thermal_toroidal_profile380_ 6.53131411598754791e-02 +Beta_toroidal_profile_at_point_381_______________________________________ beta_thermal_toroidal_profile381_ 6.55221219564388474e-02 +Beta_toroidal_profile_at_point_382_______________________________________ beta_thermal_toroidal_profile382_ 6.57306631564348876e-02 +Beta_toroidal_profile_at_point_383_______________________________________ beta_thermal_toroidal_profile383_ 6.59387584990085845e-02 +Beta_toroidal_profile_at_point_384_______________________________________ beta_thermal_toroidal_profile384_ 6.61464017247070102e-02 +Beta_toroidal_profile_at_point_385_______________________________________ beta_thermal_toroidal_profile385_ 6.63535865756532950e-02 +Beta_toroidal_profile_at_point_386_______________________________________ beta_thermal_toroidal_profile386_ 6.65603067957206834e-02 +Beta_toroidal_profile_at_point_387_______________________________________ beta_thermal_toroidal_profile387_ 6.67665561307078659e-02 +Beta_toroidal_profile_at_point_388_______________________________________ beta_thermal_toroidal_profile388_ 6.69723283285136584e-02 +Beta_toroidal_profile_at_point_389_______________________________________ beta_thermal_toroidal_profile389_ 6.71776171393127508e-02 +Beta_toroidal_profile_at_point_390_______________________________________ beta_thermal_toroidal_profile390_ 6.73824163157314554e-02 +Beta_toroidal_profile_at_point_391_______________________________________ beta_thermal_toroidal_profile391_ 6.75867196130240933e-02 +Beta_toroidal_profile_at_point_392_______________________________________ beta_thermal_toroidal_profile392_ 6.77905207892494643e-02 +Beta_toroidal_profile_at_point_393_______________________________________ beta_thermal_toroidal_profile393_ 6.79938136054479836e-02 +Beta_toroidal_profile_at_point_394_______________________________________ beta_thermal_toroidal_profile394_ 6.81965918258190390e-02 +Beta_toroidal_profile_at_point_395_______________________________________ beta_thermal_toroidal_profile395_ 6.83988492178984331e-02 +Beta_toroidal_profile_at_point_396_______________________________________ beta_thermal_toroidal_profile396_ 6.86005795527368789e-02 +Beta_toroidal_profile_at_point_397_______________________________________ beta_thermal_toroidal_profile397_ 6.88017766050780799e-02 +Beta_toroidal_profile_at_point_398_______________________________________ beta_thermal_toroidal_profile398_ 6.90024341535377533e-02 +Beta_toroidal_profile_at_point_399_______________________________________ beta_thermal_toroidal_profile399_ 6.92025459807825011e-02 +Beta_toroidal_profile_at_point_400_______________________________________ beta_thermal_toroidal_profile400_ 6.94021058737095131e-02 +Beta_toroidal_profile_at_point_401_______________________________________ beta_thermal_toroidal_profile401_ 6.96011076236264098e-02 +Beta_toroidal_profile_at_point_402_______________________________________ beta_thermal_toroidal_profile402_ 6.97995450264312506e-02 +Beta_toroidal_profile_at_point_403_______________________________________ beta_thermal_toroidal_profile403_ 6.99974118827930980e-02 +Beta_toroidal_profile_at_point_404_______________________________________ beta_thermal_toroidal_profile404_ 7.01947019983330672e-02 +Beta_toroidal_profile_at_point_405_______________________________________ beta_thermal_toroidal_profile405_ 7.03914091838052369e-02 +Beta_toroidal_profile_at_point_406_______________________________________ beta_thermal_toroidal_profile406_ 7.05875272552782540e-02 +Beta_toroidal_profile_at_point_407_______________________________________ beta_thermal_toroidal_profile407_ 7.07830500343174657e-02 +Beta_toroidal_profile_at_point_408_______________________________________ beta_thermal_toroidal_profile408_ 7.09779713481666907e-02 +Beta_toroidal_profile_at_point_409_______________________________________ beta_thermal_toroidal_profile409_ 7.11722850299310594e-02 +Beta_toroidal_profile_at_point_410_______________________________________ beta_thermal_toroidal_profile410_ 7.13659849187596868e-02 +Beta_toroidal_profile_at_point_411_______________________________________ beta_thermal_toroidal_profile411_ 7.15590648600289703e-02 +Beta_toroidal_profile_at_point_412_______________________________________ beta_thermal_toroidal_profile412_ 7.17515187055259157e-02 +Beta_toroidal_profile_at_point_413_______________________________________ beta_thermal_toroidal_profile413_ 7.19433403136322397e-02 +Beta_toroidal_profile_at_point_414_______________________________________ beta_thermal_toroidal_profile414_ 7.21345235495080839e-02 +Beta_toroidal_profile_at_point_415_______________________________________ beta_thermal_toroidal_profile415_ 7.23250622852767699e-02 +Beta_toroidal_profile_at_point_416_______________________________________ beta_thermal_toroidal_profile416_ 7.25149504002094852e-02 +Beta_toroidal_profile_at_point_417_______________________________________ beta_thermal_toroidal_profile417_ 7.27041817809103014e-02 +Beta_toroidal_profile_at_point_418_______________________________________ beta_thermal_toroidal_profile418_ 7.28927503215015260e-02 +Beta_toroidal_profile_at_point_419_______________________________________ beta_thermal_toroidal_profile419_ 7.30806499238094709e-02 +Beta_toroidal_profile_at_point_420_______________________________________ beta_thermal_toroidal_profile420_ 7.32678744975502755e-02 +Beta_toroidal_profile_at_point_421_______________________________________ beta_thermal_toroidal_profile421_ 7.34544179605163411e-02 +Beta_toroidal_profile_at_point_422_______________________________________ beta_thermal_toroidal_profile422_ 7.36402742387627790e-02 +Beta_toroidal_profile_at_point_423_______________________________________ beta_thermal_toroidal_profile423_ 7.38254372667943859e-02 +Beta_toroidal_profile_at_point_424_______________________________________ beta_thermal_toroidal_profile424_ 7.40099009877527164e-02 +Beta_toroidal_profile_at_point_425_______________________________________ beta_thermal_toroidal_profile425_ 7.41936593536035166e-02 +Beta_toroidal_profile_at_point_426_______________________________________ beta_thermal_toroidal_profile426_ 7.43767063253245736e-02 +Beta_toroidal_profile_at_point_427_______________________________________ beta_thermal_toroidal_profile427_ 7.45590358730935654e-02 +Beta_toroidal_profile_at_point_428_______________________________________ beta_thermal_toroidal_profile428_ 7.47406419764765906e-02 +Beta_toroidal_profile_at_point_429_______________________________________ beta_thermal_toroidal_profile429_ 7.49215186246165454e-02 +Beta_toroidal_profile_at_point_430_______________________________________ beta_thermal_toroidal_profile430_ 7.51016598164220284e-02 +Beta_toroidal_profile_at_point_431_______________________________________ beta_thermal_toroidal_profile431_ 7.52810595607566052e-02 +Beta_toroidal_profile_at_point_432_______________________________________ beta_thermal_toroidal_profile432_ 7.54597118766280744e-02 +Beta_toroidal_profile_at_point_433_______________________________________ beta_thermal_toroidal_profile433_ 7.56376107933781350e-02 +Beta_toroidal_profile_at_point_434_______________________________________ beta_thermal_toroidal_profile434_ 7.58147503508725257e-02 +Beta_toroidal_profile_at_point_435_______________________________________ beta_thermal_toroidal_profile435_ 7.59911245996910539e-02 +Beta_toroidal_profile_at_point_436_______________________________________ beta_thermal_toroidal_profile436_ 7.61667276013180267e-02 +Beta_toroidal_profile_at_point_437_______________________________________ beta_thermal_toroidal_profile437_ 7.63415534283332087e-02 +Beta_toroidal_profile_at_point_438_______________________________________ beta_thermal_toroidal_profile438_ 7.65155961646026561e-02 +Beta_toroidal_profile_at_point_439_______________________________________ beta_thermal_toroidal_profile439_ 7.66888499054699663e-02 +Beta_toroidal_profile_at_point_440_______________________________________ beta_thermal_toroidal_profile440_ 7.68613087579478466e-02 +Beta_toroidal_profile_at_point_441_______________________________________ beta_thermal_toroidal_profile441_ 7.70329668409098500e-02 +Beta_toroidal_profile_at_point_442_______________________________________ beta_thermal_toroidal_profile442_ 7.72038182852822913e-02 +Beta_toroidal_profile_at_point_443_______________________________________ beta_thermal_toroidal_profile443_ 7.73738572342365927e-02 +Beta_toroidal_profile_at_point_444_______________________________________ beta_thermal_toroidal_profile444_ 7.75430778433817969e-02 +Beta_toroidal_profile_at_point_445_______________________________________ beta_thermal_toroidal_profile445_ 7.77114742809571213e-02 +Beta_toroidal_profile_at_point_446_______________________________________ beta_thermal_toroidal_profile446_ 7.78790407280251645e-02 +Beta_toroidal_profile_at_point_447_______________________________________ beta_thermal_toroidal_profile447_ 7.80457713786648494e-02 +Beta_toroidal_profile_at_point_448_______________________________________ beta_thermal_toroidal_profile448_ 7.82116604401650595e-02 +Beta_toroidal_profile_at_point_449_______________________________________ beta_thermal_toroidal_profile449_ 7.83767021332182345e-02 +Beta_toroidal_profile_at_point_450_______________________________________ beta_thermal_toroidal_profile450_ 7.85408906921142985e-02 +Beta_toroidal_profile_at_point_451_______________________________________ beta_thermal_toroidal_profile451_ 7.87042203649345740e-02 +Beta_toroidal_profile_at_point_452_______________________________________ beta_thermal_toroidal_profile452_ 7.88666854137464596e-02 +Beta_toroidal_profile_at_point_453_______________________________________ beta_thermal_toroidal_profile453_ 7.90282801147977054e-02 +Beta_toroidal_profile_at_point_454_______________________________________ beta_thermal_toroidal_profile454_ 7.91889987587112987e-02 +Beta_toroidal_profile_at_point_455_______________________________________ beta_thermal_toroidal_profile455_ 7.93488356506804465e-02 +Beta_toroidal_profile_at_point_456_______________________________________ beta_thermal_toroidal_profile456_ 7.95077851106638089e-02 +Beta_toroidal_profile_at_point_457_______________________________________ beta_thermal_toroidal_profile457_ 7.96658414735807174e-02 +Beta_toroidal_profile_at_point_458_______________________________________ beta_thermal_toroidal_profile458_ 7.98229990895071573e-02 +Beta_toroidal_profile_at_point_459_______________________________________ beta_thermal_toroidal_profile459_ 7.99792523238711667e-02 +Beta_toroidal_profile_at_point_460_______________________________________ beta_thermal_toroidal_profile460_ 8.01345955576492214e-02 +Beta_toroidal_profile_at_point_461_______________________________________ beta_thermal_toroidal_profile461_ 8.02890231875622168e-02 +Beta_toroidal_profile_at_point_462_______________________________________ beta_thermal_toroidal_profile462_ 8.04425296262719219e-02 +Beta_toroidal_profile_at_point_463_______________________________________ beta_thermal_toroidal_profile463_ 8.05951093025776694e-02 +Beta_toroidal_profile_at_point_464_______________________________________ beta_thermal_toroidal_profile464_ 8.07467566616131005e-02 +Beta_toroidal_profile_at_point_465_______________________________________ beta_thermal_toroidal_profile465_ 8.08974661650431331e-02 +Beta_toroidal_profile_at_point_466_______________________________________ beta_thermal_toroidal_profile466_ 8.10472322912611509e-02 +Beta_toroidal_profile_at_point_467_______________________________________ beta_thermal_toroidal_profile467_ 8.11960495355864148e-02 +Beta_toroidal_profile_at_point_468_______________________________________ beta_thermal_toroidal_profile468_ 8.13439124104614331e-02 +Beta_toroidal_profile_at_point_469_______________________________________ beta_thermal_toroidal_profile469_ 8.14908154456499279e-02 +Beta_toroidal_profile_at_point_470_______________________________________ beta_thermal_toroidal_profile470_ 8.16367531884344549e-02 +Beta_toroidal_profile_at_point_471_______________________________________ beta_thermal_toroidal_profile471_ 8.17817202038145508e-02 +Beta_toroidal_profile_at_point_472_______________________________________ beta_thermal_toroidal_profile472_ 8.19257110747050460e-02 +Beta_toroidal_profile_at_point_473_______________________________________ beta_thermal_toroidal_profile473_ 8.20687204021344069e-02 +Beta_toroidal_profile_at_point_474_______________________________________ beta_thermal_toroidal_profile474_ 8.22107428054431738e-02 +Beta_toroidal_profile_at_point_475_______________________________________ beta_thermal_toroidal_profile475_ 8.23517729224828993e-02 +Beta_toroidal_profile_at_point_476_______________________________________ beta_thermal_toroidal_profile476_ 8.24918054098146836e-02 +Beta_toroidal_profile_at_point_477_______________________________________ beta_thermal_toroidal_profile477_ 8.26308349429085709e-02 +Beta_toroidal_profile_at_point_478_______________________________________ beta_thermal_toroidal_profile478_ 8.27688562163425567e-02 +Beta_toroidal_profile_at_point_479_______________________________________ beta_thermal_toroidal_profile479_ 8.29058639440017620e-02 +Beta_toroidal_profile_at_point_480_______________________________________ beta_thermal_toroidal_profile480_ 8.30418528592782590e-02 +Beta_toroidal_profile_at_point_481_______________________________________ beta_thermal_toroidal_profile481_ 8.31768177152703431e-02 +Beta_toroidal_profile_at_point_482_______________________________________ beta_thermal_toroidal_profile482_ 8.33107532849824556e-02 +Beta_toroidal_profile_at_point_483_______________________________________ beta_thermal_toroidal_profile483_ 8.34436543615250936e-02 +Beta_toroidal_profile_at_point_484_______________________________________ beta_thermal_toroidal_profile484_ 8.35755157583148167e-02 +Beta_toroidal_profile_at_point_485_______________________________________ beta_thermal_toroidal_profile485_ 8.37063323092743089e-02 +Beta_toroidal_profile_at_point_486_______________________________________ beta_thermal_toroidal_profile486_ 8.38360988690328574e-02 +Beta_toroidal_profile_at_point_487_______________________________________ beta_thermal_toroidal_profile487_ 8.39648103131265117e-02 +Beta_toroidal_profile_at_point_488_______________________________________ beta_thermal_toroidal_profile488_ 8.40924615381990065e-02 +Beta_toroidal_profile_at_point_489_______________________________________ beta_thermal_toroidal_profile489_ 8.42190474622019764e-02 +Beta_toroidal_profile_at_point_490_______________________________________ beta_thermal_toroidal_profile490_ 8.43445630245960865e-02 +Beta_toroidal_profile_at_point_491_______________________________________ beta_thermal_toroidal_profile491_ 8.44690031865517332e-02 +Beta_toroidal_profile_at_point_492_______________________________________ beta_thermal_toroidal_profile492_ 8.45923629311500919e-02 +Beta_toroidal_profile_at_point_493_______________________________________ beta_thermal_toroidal_profile493_ 8.47146372635843581e-02 +Beta_toroidal_profile_at_point_494_______________________________________ beta_thermal_toroidal_profile494_ 8.48358212113606985e-02 +Beta_toroidal_profile_at_point_495_______________________________________ beta_thermal_toroidal_profile495_ 8.49559098244998534e-02 +Beta_toroidal_profile_at_point_496_______________________________________ beta_thermal_toroidal_profile496_ 8.50748981757383504e-02 +Beta_toroidal_profile_at_point_497_______________________________________ beta_thermal_toroidal_profile497_ 8.51927813607302326e-02 +Beta_toroidal_profile_at_point_498_______________________________________ beta_thermal_toroidal_profile498_ 8.53095544982484660e-02 +Beta_toroidal_profile_at_point_499_______________________________________ beta_thermal_toroidal_profile499_ 8.54252127303867376e-02 +Beta_toroidal_profile_at_point_500_______________________________________ beta_thermal_toroidal_profile500_ 8.55397512227612788e-02 +Beta_toroidal_profile_at_point_501_______________________________________ beta_thermal_toroidal_profile501_ 8.56537662067413108e-02 +Beta_toroidal_profile_at_point_502_______________________________________ beta_thermal_toroidal_profile502_ 8.57672552821591855e-02 +Beta_toroidal_profile_at_point_503_______________________________________ beta_thermal_toroidal_profile503_ 8.58796134171324610e-02 +Beta_toroidal_profile_at_point_504_______________________________________ beta_thermal_toroidal_profile504_ 8.59908358459200439e-02 +Beta_toroidal_profile_at_point_505_______________________________________ beta_thermal_toroidal_profile505_ 8.61009178271523873e-02 +Beta_toroidal_profile_at_point_506_______________________________________ beta_thermal_toroidal_profile506_ 8.62098546440331903e-02 +Beta_toroidal_profile_at_point_507_______________________________________ beta_thermal_toroidal_profile507_ 8.63176416045421113e-02 +Beta_toroidal_profile_at_point_508_______________________________________ beta_thermal_toroidal_profile508_ 8.64242740416373001e-02 +Beta_toroidal_profile_at_point_509_______________________________________ beta_thermal_toroidal_profile509_ 8.65297473134576112e-02 +Beta_toroidal_profile_at_point_510_______________________________________ beta_thermal_toroidal_profile510_ 8.66340568035254832e-02 +Beta_toroidal_profile_at_point_511_______________________________________ beta_thermal_toroidal_profile511_ 8.67371979209494437e-02 +Beta_toroidal_profile_at_point_512_______________________________________ beta_thermal_toroidal_profile512_ 8.68391661006267523e-02 +Beta_toroidal_profile_at_point_513_______________________________________ beta_thermal_toroidal_profile513_ 8.69399568034462666e-02 +Beta_toroidal_profile_at_point_514_______________________________________ beta_thermal_toroidal_profile514_ 8.70395655164911686e-02 +Beta_toroidal_profile_at_point_515_______________________________________ beta_thermal_toroidal_profile515_ 8.71379877532417885e-02 +Beta_toroidal_profile_at_point_516_______________________________________ beta_thermal_toroidal_profile516_ 8.72352190537785260e-02 +Beta_toroidal_profile_at_point_517_______________________________________ beta_thermal_toroidal_profile517_ 8.73312549849847436e-02 +Beta_toroidal_profile_at_point_518_______________________________________ beta_thermal_toroidal_profile518_ 8.74260911407497149e-02 +Beta_toroidal_profile_at_point_519_______________________________________ beta_thermal_toroidal_profile519_ 8.75197231421715877e-02 +Beta_toroidal_profile_at_point_520_______________________________________ beta_thermal_toroidal_profile520_ 8.76121466377605407e-02 +Beta_toroidal_profile_at_point_521_______________________________________ beta_thermal_toroidal_profile521_ 8.77033573036414271e-02 +Beta_toroidal_profile_at_point_522_______________________________________ beta_thermal_toroidal_profile522_ 8.77933508437575560e-02 +Beta_toroidal_profile_at_point_523_______________________________________ beta_thermal_toroidal_profile523_ 8.78821229900728640e-02 +Beta_toroidal_profile_at_point_524_______________________________________ beta_thermal_toroidal_profile524_ 8.79696695027758352e-02 +Beta_toroidal_profile_at_point_525_______________________________________ beta_thermal_toroidal_profile525_ 8.80559861704820618e-02 +Beta_toroidal_profile_at_point_526_______________________________________ beta_thermal_toroidal_profile526_ 8.81410688104377060e-02 +Beta_toroidal_profile_at_point_527_______________________________________ beta_thermal_toroidal_profile527_ 8.82249132687222826e-02 +Beta_toroidal_profile_at_point_528_______________________________________ beta_thermal_toroidal_profile528_ 8.83075154204521623e-02 +Beta_toroidal_profile_at_point_529_______________________________________ beta_thermal_toroidal_profile529_ 8.83888711699834656e-02 +Beta_toroidal_profile_at_point_530_______________________________________ beta_thermal_toroidal_profile530_ 8.84689764511152887e-02 +Beta_toroidal_profile_at_point_531_______________________________________ beta_thermal_toroidal_profile531_ 8.85478272272926525e-02 +Beta_toroidal_profile_at_point_532_______________________________________ beta_thermal_toroidal_profile532_ 8.86254194918098953e-02 +Beta_toroidal_profile_at_point_533_______________________________________ beta_thermal_toroidal_profile533_ 8.87017492680135800e-02 +Beta_toroidal_profile_at_point_534_______________________________________ beta_thermal_toroidal_profile534_ 8.87768126095055260e-02 +Beta_toroidal_profile_at_point_535_______________________________________ beta_thermal_toroidal_profile535_ 8.88506056003461053e-02 +Beta_toroidal_profile_at_point_536_______________________________________ beta_thermal_toroidal_profile536_ 8.89231243552569828e-02 +Beta_toroidal_profile_at_point_537_______________________________________ beta_thermal_toroidal_profile537_ 8.89943650198244118e-02 +Beta_toroidal_profile_at_point_538_______________________________________ beta_thermal_toroidal_profile538_ 8.90643237707020169e-02 +Beta_toroidal_profile_at_point_539_______________________________________ beta_thermal_toroidal_profile539_ 8.91329968158137281e-02 +Beta_toroidal_profile_at_point_540_______________________________________ beta_thermal_toroidal_profile540_ 8.92003803945569662e-02 +Beta_toroidal_profile_at_point_541_______________________________________ beta_thermal_toroidal_profile541_ 8.92664707780050914e-02 +Beta_toroidal_profile_at_point_542_______________________________________ beta_thermal_toroidal_profile542_ 8.93312642691106579e-02 +Beta_toroidal_profile_at_point_543_______________________________________ beta_thermal_toroidal_profile543_ 8.93947572029079873e-02 +Beta_toroidal_profile_at_point_544_______________________________________ beta_thermal_toroidal_profile544_ 8.94569459467155909e-02 +Beta_toroidal_profile_at_point_545_______________________________________ beta_thermal_toroidal_profile545_ 8.95178269003397559e-02 +Beta_toroidal_profile_at_point_546_______________________________________ beta_thermal_toroidal_profile546_ 8.95773964962759545e-02 +Beta_toroidal_profile_at_point_547_______________________________________ beta_thermal_toroidal_profile547_ 8.96356511999125971e-02 +Beta_toroidal_profile_at_point_548_______________________________________ beta_thermal_toroidal_profile548_ 8.96925875097325659e-02 +Beta_toroidal_profile_at_point_549_______________________________________ beta_thermal_toroidal_profile549_ 8.97482019575162604e-02 +Beta_toroidal_profile_at_point_550_______________________________________ beta_thermal_toroidal_profile550_ 8.98024911085436445e-02 +Beta_toroidal_profile_at_point_551_______________________________________ beta_thermal_toroidal_profile551_ 8.98554515617967509e-02 +Beta_toroidal_profile_at_point_552_______________________________________ beta_thermal_toroidal_profile552_ 8.99070799501616863e-02 +Beta_toroidal_profile_at_point_553_______________________________________ beta_thermal_toroidal_profile553_ 8.99573729406309280e-02 +Beta_toroidal_profile_at_point_554_______________________________________ beta_thermal_toroidal_profile554_ 9.00063272345052040e-02 +Beta_toroidal_profile_at_point_555_______________________________________ beta_thermal_toroidal_profile555_ 9.00539395675956506e-02 +Beta_toroidal_profile_at_point_556_______________________________________ beta_thermal_toroidal_profile556_ 9.01002067104254845e-02 +Beta_toroidal_profile_at_point_557_______________________________________ beta_thermal_toroidal_profile557_ 9.01451254684319525e-02 +Beta_toroidal_profile_at_point_558_______________________________________ beta_thermal_toroidal_profile558_ 9.01886926821677953e-02 +Beta_toroidal_profile_at_point_559_______________________________________ beta_thermal_toroidal_profile559_ 9.02309052275030166e-02 +Beta_toroidal_profile_at_point_560_______________________________________ beta_thermal_toroidal_profile560_ 9.02717600158263050e-02 +Beta_toroidal_profile_at_point_561_______________________________________ beta_thermal_toroidal_profile561_ 9.03112539942462766e-02 +Beta_toroidal_profile_at_point_562_______________________________________ beta_thermal_toroidal_profile562_ 9.03493841457928409e-02 +Beta_toroidal_profile_at_point_563_______________________________________ beta_thermal_toroidal_profile563_ 9.03861474896182765e-02 +Beta_toroidal_profile_at_point_564_______________________________________ beta_thermal_toroidal_profile564_ 9.04215410811983200e-02 +Beta_toroidal_profile_at_point_565_______________________________________ beta_thermal_toroidal_profile565_ 9.04555620125327697e-02 +Beta_toroidal_profile_at_point_566_______________________________________ beta_thermal_toroidal_profile566_ 9.04882074123468522e-02 +Beta_toroidal_profile_at_point_567_______________________________________ beta_thermal_toroidal_profile567_ 9.05194744462910067e-02 +Beta_toroidal_profile_at_point_568_______________________________________ beta_thermal_toroidal_profile568_ 9.05493603171422801e-02 +Beta_toroidal_profile_at_point_569_______________________________________ beta_thermal_toroidal_profile569_ 9.05778622650038751e-02 +Beta_toroidal_profile_at_point_570_______________________________________ beta_thermal_toroidal_profile570_ 9.06049775675059621e-02 +Beta_toroidal_profile_at_point_571_______________________________________ beta_thermal_toroidal_profile571_ 9.06307035400054362e-02 +Beta_toroidal_profile_at_point_572_______________________________________ beta_thermal_toroidal_profile572_ 9.06550375357860205e-02 +Beta_toroidal_profile_at_point_573_______________________________________ beta_thermal_toroidal_profile573_ 9.06779769462578433e-02 +Beta_toroidal_profile_at_point_574_______________________________________ beta_thermal_toroidal_profile574_ 9.06995192011572915e-02 +Beta_toroidal_profile_at_point_575_______________________________________ beta_thermal_toroidal_profile575_ 9.07196617687462958e-02 +Beta_toroidal_profile_at_point_576_______________________________________ beta_thermal_toroidal_profile576_ 9.07384021560115883e-02 +Beta_toroidal_profile_at_point_577_______________________________________ beta_thermal_toroidal_profile577_ 9.07557379088641536e-02 +Beta_toroidal_profile_at_point_578_______________________________________ beta_thermal_toroidal_profile578_ 9.07716666123376953e-02 +Beta_toroidal_profile_at_point_579_______________________________________ beta_thermal_toroidal_profile579_ 9.07861858907879626e-02 +Beta_toroidal_profile_at_point_580_______________________________________ beta_thermal_toroidal_profile580_ 9.07992934080909531e-02 +Beta_toroidal_profile_at_point_581_______________________________________ beta_thermal_toroidal_profile581_ 9.08109868678414062e-02 +Beta_toroidal_profile_at_point_582_______________________________________ beta_thermal_toroidal_profile582_ 9.08212640135513394e-02 +Beta_toroidal_profile_at_point_583_______________________________________ beta_thermal_toroidal_profile583_ 9.08301226288477509e-02 +Beta_toroidal_profile_at_point_584_______________________________________ beta_thermal_toroidal_profile584_ 9.08375605376706835e-02 +Beta_toroidal_profile_at_point_585_______________________________________ beta_thermal_toroidal_profile585_ 9.08435756044708581e-02 +Beta_toroidal_profile_at_point_586_______________________________________ beta_thermal_toroidal_profile586_ 9.08481657344070020e-02 +Beta_toroidal_profile_at_point_587_______________________________________ beta_thermal_toroidal_profile587_ 9.08513288735435659e-02 +Beta_toroidal_profile_at_point_588_______________________________________ beta_thermal_toroidal_profile588_ 9.08530630090470387e-02 +Beta_toroidal_profile_at_point_589_______________________________________ beta_thermal_toroidal_profile589_ 9.08533661693836508e-02 +Beta_toroidal_profile_at_point_590_______________________________________ beta_thermal_toroidal_profile590_ 9.08522364245153979e-02 +Beta_toroidal_profile_at_point_591_______________________________________ beta_thermal_toroidal_profile591_ 9.08496718860966057e-02 +Beta_toroidal_profile_at_point_592_______________________________________ beta_thermal_toroidal_profile592_ 9.08456707076703979e-02 +Beta_toroidal_profile_at_point_593_______________________________________ beta_thermal_toroidal_profile593_ 9.08402310848642897e-02 +Beta_toroidal_profile_at_point_594_______________________________________ beta_thermal_toroidal_profile594_ 9.08333512555862255e-02 +Beta_toroidal_profile_at_point_595_______________________________________ beta_thermal_toroidal_profile595_ 9.08250295002199087e-02 +Beta_toroidal_profile_at_point_596_______________________________________ beta_thermal_toroidal_profile596_ 9.08152641418203121e-02 +Beta_toroidal_profile_at_point_597_______________________________________ beta_thermal_toroidal_profile597_ 9.08040535463083415e-02 +Beta_toroidal_profile_at_point_598_______________________________________ beta_thermal_toroidal_profile598_ 9.07913961226660543e-02 +Beta_toroidal_profile_at_point_599_______________________________________ beta_thermal_toroidal_profile599_ 9.07772903231309769e-02 +Beta_toroidal_profile_at_point_600_______________________________________ beta_thermal_toroidal_profile600_ 9.07617346433904348e-02 +Beta_toroidal_profile_at_point_601_______________________________________ beta_thermal_toroidal_profile601_ 9.07447276227755784e-02 +Beta_toroidal_profile_at_point_602_______________________________________ beta_thermal_toroidal_profile602_ 9.07262678444553244e-02 +Beta_toroidal_profile_at_point_603_______________________________________ beta_thermal_toroidal_profile603_ 9.07063539356296744e-02 +Beta_toroidal_profile_at_point_604_______________________________________ beta_thermal_toroidal_profile604_ 9.06849845677230593e-02 +Beta_toroidal_profile_at_point_605_______________________________________ beta_thermal_toroidal_profile605_ 9.06621584565775185e-02 +Beta_toroidal_profile_at_point_606_______________________________________ beta_thermal_toroidal_profile606_ 9.06378743626451433e-02 +Beta_toroidal_profile_at_point_607_______________________________________ beta_thermal_toroidal_profile607_ 9.06121310911804645e-02 +Beta_toroidal_profile_at_point_608_______________________________________ beta_thermal_toroidal_profile608_ 9.05849274924331455e-02 +Beta_toroidal_profile_at_point_609_______________________________________ beta_thermal_toroidal_profile609_ 9.05562624618392320e-02 +Beta_toroidal_profile_at_point_610_______________________________________ beta_thermal_toroidal_profile610_ 9.05261349402132071e-02 +Beta_toroidal_profile_at_point_611_______________________________________ beta_thermal_toroidal_profile611_ 9.04945439139389490e-02 +Beta_toroidal_profile_at_point_612_______________________________________ beta_thermal_toroidal_profile612_ 9.04614884151610371e-02 +Beta_toroidal_profile_at_point_613_______________________________________ beta_thermal_toroidal_profile613_ 9.04269675219752239e-02 +Beta_toroidal_profile_at_point_614_______________________________________ beta_thermal_toroidal_profile614_ 9.03909803586191163e-02 +Beta_toroidal_profile_at_point_615_______________________________________ beta_thermal_toroidal_profile615_ 9.03535260956619957e-02 +Beta_toroidal_profile_at_point_616_______________________________________ beta_thermal_toroidal_profile616_ 9.03146039501947495e-02 +Beta_toroidal_profile_at_point_617_______________________________________ beta_thermal_toroidal_profile617_ 9.02742131860193309e-02 +Beta_toroidal_profile_at_point_618_______________________________________ beta_thermal_toroidal_profile618_ 9.02323531138380791e-02 +Beta_toroidal_profile_at_point_619_______________________________________ beta_thermal_toroidal_profile619_ 9.01890230914422636e-02 +Beta_toroidal_profile_at_point_620_______________________________________ beta_thermal_toroidal_profile620_ 9.01442225239009048e-02 +Beta_toroidal_profile_at_point_621_______________________________________ beta_thermal_toroidal_profile621_ 9.00979508637486798e-02 +Beta_toroidal_profile_at_point_622_______________________________________ beta_thermal_toroidal_profile622_ 9.00502076111742433e-02 +Beta_toroidal_profile_at_point_623_______________________________________ beta_thermal_toroidal_profile623_ 9.00009923142071067e-02 +Beta_toroidal_profile_at_point_624_______________________________________ beta_thermal_toroidal_profile624_ 8.99503045689054870e-02 +Beta_toroidal_profile_at_point_625_______________________________________ beta_thermal_toroidal_profile625_ 8.98981440195427417e-02 +Beta_toroidal_profile_at_point_626_______________________________________ beta_thermal_toroidal_profile626_ 8.98445103587940386e-02 +Beta_toroidal_profile_at_point_627_______________________________________ beta_thermal_toroidal_profile627_ 8.97894033279225123e-02 +Beta_toroidal_profile_at_point_628_______________________________________ beta_thermal_toroidal_profile628_ 8.97328227169649772e-02 +Beta_toroidal_profile_at_point_629_______________________________________ beta_thermal_toroidal_profile629_ 8.96747683649176397e-02 +Beta_toroidal_profile_at_point_630_______________________________________ beta_thermal_toroidal_profile630_ 8.96152401599207560e-02 +Beta_toroidal_profile_at_point_631_______________________________________ beta_thermal_toroidal_profile631_ 8.95542380394439702e-02 +Beta_toroidal_profile_at_point_632_______________________________________ beta_thermal_toroidal_profile632_ 8.94917619904698897e-02 +Beta_toroidal_profile_at_point_633_______________________________________ beta_thermal_toroidal_profile633_ 8.94278120496790896e-02 +Beta_toroidal_profile_at_point_634_______________________________________ beta_thermal_toroidal_profile634_ 8.93623883036326894e-02 +Beta_toroidal_profile_at_point_635_______________________________________ beta_thermal_toroidal_profile635_ 8.92954908889564275e-02 +Beta_toroidal_profile_at_point_636_______________________________________ beta_thermal_toroidal_profile636_ 8.92271199925230712e-02 +Beta_toroidal_profile_at_point_637_______________________________________ beta_thermal_toroidal_profile637_ 8.91572758516352287e-02 +Beta_toroidal_profile_at_point_638_______________________________________ beta_thermal_toroidal_profile638_ 8.90859587542070924e-02 +Beta_toroidal_profile_at_point_639_______________________________________ beta_thermal_toroidal_profile639_ 8.90131690389464880e-02 +Beta_toroidal_profile_at_point_640_______________________________________ beta_thermal_toroidal_profile640_ 8.89389070955360350e-02 +Beta_toroidal_profile_at_point_641_______________________________________ beta_thermal_toroidal_profile641_ 8.88631733648141547e-02 +Beta_toroidal_profile_at_point_642_______________________________________ beta_thermal_toroidal_profile642_ 8.87859683389555371e-02 +Beta_toroidal_profile_at_point_643_______________________________________ beta_thermal_toroidal_profile643_ 8.87072925616512881e-02 +Beta_toroidal_profile_at_point_644_______________________________________ beta_thermal_toroidal_profile644_ 8.86271466282887027e-02 +Beta_toroidal_profile_at_point_645_______________________________________ beta_thermal_toroidal_profile645_ 8.85455311861306632e-02 +Beta_toroidal_profile_at_point_646_______________________________________ beta_thermal_toroidal_profile646_ 8.84624469344943154e-02 +Beta_toroidal_profile_at_point_647_______________________________________ beta_thermal_toroidal_profile647_ 8.83778946249297453e-02 +Beta_toroidal_profile_at_point_648_______________________________________ beta_thermal_toroidal_profile648_ 8.82918750613981562e-02 +Beta_toroidal_profile_at_point_649_______________________________________ beta_thermal_toroidal_profile649_ 8.82043891004490460e-02 +Beta_toroidal_profile_at_point_650_______________________________________ beta_thermal_toroidal_profile650_ 8.81154376513983151e-02 +Beta_toroidal_profile_at_point_651_______________________________________ beta_thermal_toroidal_profile651_ 8.80250216765041532e-02 +Beta_toroidal_profile_at_point_652_______________________________________ beta_thermal_toroidal_profile652_ 8.79331421911440925e-02 +Beta_toroidal_profile_at_point_653_______________________________________ beta_thermal_toroidal_profile653_ 8.78398002639904779e-02 +Beta_toroidal_profile_at_point_654_______________________________________ beta_thermal_toroidal_profile654_ 8.77449970171865490e-02 +Beta_toroidal_profile_at_point_655_______________________________________ beta_thermal_toroidal_profile655_ 8.76487336265208694e-02 +Beta_toroidal_profile_at_point_656_______________________________________ beta_thermal_toroidal_profile656_ 8.75510113216026176e-02 +Beta_toroidal_profile_at_point_657_______________________________________ beta_thermal_toroidal_profile657_ 8.74518313860352808e-02 +Beta_toroidal_profile_at_point_658_______________________________________ beta_thermal_toroidal_profile658_ 8.73511951575907525e-02 +Beta_toroidal_profile_at_point_659_______________________________________ beta_thermal_toroidal_profile659_ 8.72491040283825264e-02 +Beta_toroidal_profile_at_point_660_______________________________________ beta_thermal_toroidal_profile660_ 8.71455594450384480e-02 +Beta_toroidal_profile_at_point_661_______________________________________ beta_thermal_toroidal_profile661_ 8.70405629088733951e-02 +Beta_toroidal_profile_at_point_662_______________________________________ beta_thermal_toroidal_profile662_ 8.69341159760609883e-02 +Beta_toroidal_profile_at_point_663_______________________________________ beta_thermal_toroidal_profile663_ 8.68262202578053421e-02 +Beta_toroidal_profile_at_point_664_______________________________________ beta_thermal_toroidal_profile664_ 8.67168774205119286e-02 +Beta_toroidal_profile_at_point_665_______________________________________ beta_thermal_toroidal_profile665_ 8.66060891859581627e-02 +Beta_toroidal_profile_at_point_666_______________________________________ beta_thermal_toroidal_profile666_ 8.64938573314636971e-02 +Beta_toroidal_profile_at_point_667_______________________________________ beta_thermal_toroidal_profile667_ 8.63801836900599113e-02 +Beta_toroidal_profile_at_point_668_______________________________________ beta_thermal_toroidal_profile668_ 8.62650701506591927e-02 +Beta_toroidal_profile_at_point_669_______________________________________ beta_thermal_toroidal_profile669_ 8.61485186582237883e-02 +Beta_toroidal_profile_at_point_670_______________________________________ beta_thermal_toroidal_profile670_ 8.60305312139337114e-02 +Beta_toroidal_profile_at_point_671_______________________________________ beta_thermal_toroidal_profile671_ 8.59111098753550101e-02 +Beta_toroidal_profile_at_point_672_______________________________________ beta_thermal_toroidal_profile672_ 8.57902567566065921e-02 +Beta_toroidal_profile_at_point_673_______________________________________ beta_thermal_toroidal_profile673_ 8.56679740285275493e-02 +Beta_toroidal_profile_at_point_674_______________________________________ beta_thermal_toroidal_profile674_ 8.55442639188430803e-02 +Beta_toroidal_profile_at_point_675_______________________________________ beta_thermal_toroidal_profile675_ 8.54191287123307469e-02 +Beta_toroidal_profile_at_point_676_______________________________________ beta_thermal_toroidal_profile676_ 8.52925707509856329e-02 +Beta_toroidal_profile_at_point_677_______________________________________ beta_thermal_toroidal_profile677_ 8.51645924341854488e-02 +Beta_toroidal_profile_at_point_678_______________________________________ beta_thermal_toroidal_profile678_ 8.50351962188547611e-02 +Beta_toroidal_profile_at_point_679_______________________________________ beta_thermal_toroidal_profile679_ 8.49043846196293334e-02 +Beta_toroidal_profile_at_point_680_______________________________________ beta_thermal_toroidal_profile680_ 8.47721602090192039e-02 +Beta_toroidal_profile_at_point_681_______________________________________ beta_thermal_toroidal_profile681_ 8.46385256175720413e-02 +Beta_toroidal_profile_at_point_682_______________________________________ beta_thermal_toroidal_profile682_ 8.45034835340353202e-02 +Beta_toroidal_profile_at_point_683_______________________________________ beta_thermal_toroidal_profile683_ 8.43670367055186499e-02 +Beta_toroidal_profile_at_point_684_______________________________________ beta_thermal_toroidal_profile684_ 8.42291879376552005e-02 +Beta_toroidal_profile_at_point_685_______________________________________ beta_thermal_toroidal_profile685_ 8.40899400947627829e-02 +Beta_toroidal_profile_at_point_686_______________________________________ beta_thermal_toroidal_profile686_ 8.39492961000044974e-02 +Beta_toroidal_profile_at_point_687_______________________________________ beta_thermal_toroidal_profile687_ 8.38072589355486897e-02 +Beta_toroidal_profile_at_point_688_______________________________________ beta_thermal_toroidal_profile688_ 8.36638316427286560e-02 +Beta_toroidal_profile_at_point_689_______________________________________ beta_thermal_toroidal_profile689_ 8.35190173222017662e-02 +Beta_toroidal_profile_at_point_690_______________________________________ beta_thermal_toroidal_profile690_ 8.33728191341081282e-02 +Beta_toroidal_profile_at_point_691_______________________________________ beta_thermal_toroidal_profile691_ 8.32252402982287254e-02 +Beta_toroidal_profile_at_point_692_______________________________________ beta_thermal_toroidal_profile692_ 8.30762840941430686e-02 +Beta_toroidal_profile_at_point_693_______________________________________ beta_thermal_toroidal_profile693_ 8.29259538613863062e-02 +Beta_toroidal_profile_at_point_694_______________________________________ beta_thermal_toroidal_profile694_ 8.27742529996062376e-02 +Beta_toroidal_profile_at_point_695_______________________________________ beta_thermal_toroidal_profile695_ 8.26211849687191469e-02 +Beta_toroidal_profile_at_point_696_______________________________________ beta_thermal_toroidal_profile696_ 8.24667532890659694e-02 +Beta_toroidal_profile_at_point_697_______________________________________ beta_thermal_toroidal_profile697_ 8.23109615415671819e-02 +Beta_toroidal_profile_at_point_698_______________________________________ beta_thermal_toroidal_profile698_ 8.21538133678777899e-02 +Beta_toroidal_profile_at_point_699_______________________________________ beta_thermal_toroidal_profile699_ 8.19953124705418146e-02 +Beta_toroidal_profile_at_point_700_______________________________________ beta_thermal_toroidal_profile700_ 8.18354626131457263e-02 +Beta_toroidal_profile_at_point_701_______________________________________ beta_thermal_toroidal_profile701_ 8.16742676204723489e-02 +Beta_toroidal_profile_at_point_702_______________________________________ beta_thermal_toroidal_profile702_ 8.15117313786533348e-02 +Beta_toroidal_profile_at_point_703_______________________________________ beta_thermal_toroidal_profile703_ 8.13478578353218490e-02 +Beta_toroidal_profile_at_point_704_______________________________________ beta_thermal_toroidal_profile704_ 8.11826509997645024e-02 +Beta_toroidal_profile_at_point_705_______________________________________ beta_thermal_toroidal_profile705_ 8.10161149430730920e-02 +Beta_toroidal_profile_at_point_706_______________________________________ beta_thermal_toroidal_profile706_ 8.08482537982951610e-02 +Beta_toroidal_profile_at_point_707_______________________________________ beta_thermal_toroidal_profile707_ 8.06790717605852387e-02 +Beta_toroidal_profile_at_point_708_______________________________________ beta_thermal_toroidal_profile708_ 8.05085730873547067e-02 +Beta_toroidal_profile_at_point_709_______________________________________ beta_thermal_toroidal_profile709_ 8.03367620984215547e-02 +Beta_toroidal_profile_at_point_710_______________________________________ beta_thermal_toroidal_profile710_ 8.01636431761597462e-02 +Beta_toroidal_profile_at_point_711_______________________________________ beta_thermal_toroidal_profile711_ 7.99892207656480586e-02 +Beta_toroidal_profile_at_point_712_______________________________________ beta_thermal_toroidal_profile712_ 7.98134993748185750e-02 +Beta_toroidal_profile_at_point_713_______________________________________ beta_thermal_toroidal_profile713_ 7.96364835746047328e-02 +Beta_toroidal_profile_at_point_714_______________________________________ beta_thermal_toroidal_profile714_ 7.94581779990885806e-02 +Beta_toroidal_profile_at_point_715_______________________________________ beta_thermal_toroidal_profile715_ 7.92785873456486184e-02 +Beta_toroidal_profile_at_point_716_______________________________________ beta_thermal_toroidal_profile716_ 7.90977163751059448e-02 +Beta_toroidal_profile_at_point_717_______________________________________ beta_thermal_toroidal_profile717_ 7.89155699118711251e-02 +Beta_toroidal_profile_at_point_718_______________________________________ beta_thermal_toroidal_profile718_ 7.87321528440897145e-02 +Beta_toroidal_profile_at_point_719_______________________________________ beta_thermal_toroidal_profile719_ 7.85474701237883904e-02 +Beta_toroidal_profile_at_point_720_______________________________________ beta_thermal_toroidal_profile720_ 7.83615267670196985e-02 +Beta_toroidal_profile_at_point_721_______________________________________ beta_thermal_toroidal_profile721_ 7.81743278540072556e-02 +Beta_toroidal_profile_at_point_722_______________________________________ beta_thermal_toroidal_profile722_ 7.79858785292900925e-02 +Beta_toroidal_profile_at_point_723_______________________________________ beta_thermal_toroidal_profile723_ 7.77961840018667888e-02 +Beta_toroidal_profile_at_point_724_______________________________________ beta_thermal_toroidal_profile724_ 7.76052495453393582e-02 +Beta_toroidal_profile_at_point_725_______________________________________ beta_thermal_toroidal_profile725_ 7.74130804980566606e-02 +Beta_toroidal_profile_at_point_726_______________________________________ beta_thermal_toroidal_profile726_ 7.72196822632575941e-02 +Beta_toroidal_profile_at_point_727_______________________________________ beta_thermal_toroidal_profile727_ 7.70250603092138414e-02 +Beta_toroidal_profile_at_point_728_______________________________________ beta_thermal_toroidal_profile728_ 7.68292201693725058e-02 +Beta_toroidal_profile_at_point_729_______________________________________ beta_thermal_toroidal_profile729_ 7.66321674424982058e-02 +Beta_toroidal_profile_at_point_730_______________________________________ beta_thermal_toroidal_profile730_ 7.64339077928152671e-02 +Beta_toroidal_profile_at_point_731_______________________________________ beta_thermal_toroidal_profile731_ 7.62344469501491512e-02 +Beta_toroidal_profile_at_point_732_______________________________________ beta_thermal_toroidal_profile732_ 7.60337907100679666e-02 +Beta_toroidal_profile_at_point_733_______________________________________ beta_thermal_toroidal_profile733_ 7.58319449340239121e-02 +Beta_toroidal_profile_at_point_734_______________________________________ beta_thermal_toroidal_profile734_ 7.56289155494938026e-02 +Beta_toroidal_profile_at_point_735_______________________________________ beta_thermal_toroidal_profile735_ 7.54247085501202064e-02 +Beta_toroidal_profile_at_point_736_______________________________________ beta_thermal_toroidal_profile736_ 7.52193299958518746e-02 +Beta_toroidal_profile_at_point_737_______________________________________ beta_thermal_toroidal_profile737_ 7.50127860130839347e-02 +Beta_toroidal_profile_at_point_738_______________________________________ beta_thermal_toroidal_profile738_ 7.48050827947985275e-02 +Beta_toroidal_profile_at_point_739_______________________________________ beta_thermal_toroidal_profile739_ 7.45962266007044600e-02 +Beta_toroidal_profile_at_point_740_______________________________________ beta_thermal_toroidal_profile740_ 7.43862237573772317e-02 +Beta_toroidal_profile_at_point_741_______________________________________ beta_thermal_toroidal_profile741_ 7.41750806583991867e-02 +Beta_toroidal_profile_at_point_742_______________________________________ beta_thermal_toroidal_profile742_ 7.39628037644987774e-02 +Beta_toroidal_profile_at_point_743_______________________________________ beta_thermal_toroidal_profile743_ 7.37493996036903965e-02 +Beta_toroidal_profile_at_point_744_______________________________________ beta_thermal_toroidal_profile744_ 7.35348747714142381e-02 +Beta_toroidal_profile_at_point_745_______________________________________ beta_thermal_toroidal_profile745_ 7.33192359306754915e-02 +Beta_toroidal_profile_at_point_746_______________________________________ beta_thermal_toroidal_profile746_ 7.31024898121840766e-02 +Beta_toroidal_profile_at_point_747_______________________________________ beta_thermal_toroidal_profile747_ 7.28846432144942408e-02 +Beta_toroidal_profile_at_point_748_______________________________________ beta_thermal_toroidal_profile748_ 7.26657030041442248e-02 +Beta_toroidal_profile_at_point_749_______________________________________ beta_thermal_toroidal_profile749_ 7.24456761157958595e-02 +Beta_toroidal_profile_at_point_750_______________________________________ beta_thermal_toroidal_profile750_ 7.22245695523742320e-02 +Beta_toroidal_profile_at_point_751_______________________________________ beta_thermal_toroidal_profile751_ 7.20023903852079067e-02 +Beta_toroidal_profile_at_point_752_______________________________________ beta_thermal_toroidal_profile752_ 7.17791457541686745e-02 +Beta_toroidal_profile_at_point_753_______________________________________ beta_thermal_toroidal_profile753_ 7.15548428678118714e-02 +Beta_toroidal_profile_at_point_754_______________________________________ beta_thermal_toroidal_profile754_ 7.13294890035166551e-02 +Beta_toroidal_profile_at_point_755_______________________________________ beta_thermal_toroidal_profile755_ 7.11030915076270170e-02 +Beta_toroidal_profile_at_point_756_______________________________________ beta_thermal_toroidal_profile756_ 7.08756577955921424e-02 +Beta_toroidal_profile_at_point_757_______________________________________ beta_thermal_toroidal_profile757_ 7.06471953521082274e-02 +Beta_toroidal_profile_at_point_758_______________________________________ beta_thermal_toroidal_profile758_ 7.04177117312594220e-02 +Beta_toroidal_profile_at_point_759_______________________________________ beta_thermal_toroidal_profile759_ 7.01872145566602712e-02 +Beta_toroidal_profile_at_point_760_______________________________________ beta_thermal_toroidal_profile760_ 6.99557115215976577e-02 +Beta_toroidal_profile_at_point_761_______________________________________ beta_thermal_toroidal_profile761_ 6.97232103891738814e-02 +Beta_toroidal_profile_at_point_762_______________________________________ beta_thermal_toroidal_profile762_ 6.94897189924494896e-02 +Beta_toroidal_profile_at_point_763_______________________________________ beta_thermal_toroidal_profile763_ 6.92552452345876063e-02 +Beta_toroidal_profile_at_point_764_______________________________________ beta_thermal_toroidal_profile764_ 6.90197970889977058e-02 +Beta_toroidal_profile_at_point_765_______________________________________ beta_thermal_toroidal_profile765_ 6.87833825994811632e-02 +Beta_toroidal_profile_at_point_766_______________________________________ beta_thermal_toroidal_profile766_ 6.85460098803762768e-02 +Beta_toroidal_profile_at_point_767_______________________________________ beta_thermal_toroidal_profile767_ 6.83076871167049987e-02 +Beta_toroidal_profile_at_point_768_______________________________________ beta_thermal_toroidal_profile768_ 6.80684225643199414e-02 +Beta_toroidal_profile_at_point_769_______________________________________ beta_thermal_toroidal_profile769_ 6.78282245500522463e-02 +Beta_toroidal_profile_at_point_770_______________________________________ beta_thermal_toroidal_profile770_ 6.75871014718601587e-02 +Beta_toroidal_profile_at_point_771_______________________________________ beta_thermal_toroidal_profile771_ 6.73450617989791028e-02 +Beta_toroidal_profile_at_point_772_______________________________________ beta_thermal_toroidal_profile772_ 6.71021140720718251e-02 +Beta_toroidal_profile_at_point_773_______________________________________ beta_thermal_toroidal_profile773_ 6.68582669033804811e-02 +Beta_toroidal_profile_at_point_774_______________________________________ beta_thermal_toroidal_profile774_ 6.66135289768792077e-02 +Beta_toroidal_profile_at_point_775_______________________________________ beta_thermal_toroidal_profile775_ 6.63679090484279588e-02 +Beta_toroidal_profile_at_point_776_______________________________________ beta_thermal_toroidal_profile776_ 6.61214159459278389e-02 +Beta_toroidal_profile_at_point_777_______________________________________ beta_thermal_toroidal_profile777_ 6.58740585694773811e-02 +Beta_toroidal_profile_at_point_778_______________________________________ beta_thermal_toroidal_profile778_ 6.56258458915303933e-02 +Beta_toroidal_profile_at_point_779_______________________________________ beta_thermal_toroidal_profile779_ 6.53767869570551358e-02 +Beta_toroidal_profile_at_point_780_______________________________________ beta_thermal_toroidal_profile780_ 6.51268908836950960e-02 +Beta_toroidal_profile_at_point_781_______________________________________ beta_thermal_toroidal_profile781_ 6.48761668619312060e-02 +Beta_toroidal_profile_at_point_782_______________________________________ beta_thermal_toroidal_profile782_ 6.46246241552459050e-02 +Beta_toroidal_profile_at_point_783_______________________________________ beta_thermal_toroidal_profile783_ 6.43722721002887160e-02 +Beta_toroidal_profile_at_point_784_______________________________________ beta_thermal_toroidal_profile784_ 6.41191201070440975e-02 +Beta_toroidal_profile_at_point_785_______________________________________ beta_thermal_toroidal_profile785_ 6.38651776590003634e-02 +Beta_toroidal_profile_at_point_786_______________________________________ beta_thermal_toroidal_profile786_ 6.36104543133218653e-02 +Beta_toroidal_profile_at_point_787_______________________________________ beta_thermal_toroidal_profile787_ 6.33549597010221038e-02 +Beta_toroidal_profile_at_point_788_______________________________________ beta_thermal_toroidal_profile788_ 6.30987035271398655e-02 +Beta_toroidal_profile_at_point_789_______________________________________ beta_thermal_toroidal_profile789_ 6.28416955709169417e-02 +Beta_toroidal_profile_at_point_790_______________________________________ beta_thermal_toroidal_profile790_ 6.25839456859793863e-02 +Beta_toroidal_profile_at_point_791_______________________________________ beta_thermal_toroidal_profile791_ 6.23254638005198980e-02 +Beta_toroidal_profile_at_point_792_______________________________________ beta_thermal_toroidal_profile792_ 6.20662599174842192e-02 +Beta_toroidal_profile_at_point_793_______________________________________ beta_thermal_toroidal_profile793_ 6.18063441147590556e-02 +Beta_toroidal_profile_at_point_794_______________________________________ beta_thermal_toroidal_profile794_ 6.15457265453641864e-02 +Beta_toroidal_profile_at_point_795_______________________________________ beta_thermal_toroidal_profile795_ 6.12844174376464823e-02 +Beta_toroidal_profile_at_point_796_______________________________________ beta_thermal_toroidal_profile796_ 6.10224270954774842e-02 +Beta_toroidal_profile_at_point_797_______________________________________ beta_thermal_toroidal_profile797_ 6.07597658984548178e-02 +Beta_toroidal_profile_at_point_798_______________________________________ beta_thermal_toroidal_profile798_ 6.04964443021060450e-02 +Beta_toroidal_profile_at_point_799_______________________________________ beta_thermal_toroidal_profile799_ 6.02324728380969343e-02 +Beta_toroidal_profile_at_point_800_______________________________________ beta_thermal_toroidal_profile800_ 5.99678621144430560e-02 +Beta_toroidal_profile_at_point_801_______________________________________ beta_thermal_toroidal_profile801_ 5.97026228157255187e-02 +Beta_toroidal_profile_at_point_802_______________________________________ beta_thermal_toroidal_profile802_ 5.94367657033104957e-02 +Beta_toroidal_profile_at_point_803_______________________________________ beta_thermal_toroidal_profile803_ 5.91703016155734687e-02 +Beta_toroidal_profile_at_point_804_______________________________________ beta_thermal_toroidal_profile804_ 5.89032414681272057e-02 +Beta_toroidal_profile_at_point_805_______________________________________ beta_thermal_toroidal_profile805_ 5.86355962540551015e-02 +Beta_toroidal_profile_at_point_806_______________________________________ beta_thermal_toroidal_profile806_ 5.83673770441488077e-02 +Beta_toroidal_profile_at_point_807_______________________________________ beta_thermal_toroidal_profile807_ 5.80985949871511420e-02 +Beta_toroidal_profile_at_point_808_______________________________________ beta_thermal_toroidal_profile808_ 5.78292613100040223e-02 +Beta_toroidal_profile_at_point_809_______________________________________ beta_thermal_toroidal_profile809_ 5.75593873181019580e-02 +Beta_toroidal_profile_at_point_810_______________________________________ beta_thermal_toroidal_profile810_ 5.72889843955511902e-02 +Beta_toroidal_profile_at_point_811_______________________________________ beta_thermal_toroidal_profile811_ 5.70180640054347501e-02 +Beta_toroidal_profile_at_point_812_______________________________________ beta_thermal_toroidal_profile812_ 5.67466376900835623e-02 +Beta_toroidal_profile_at_point_813_______________________________________ beta_thermal_toroidal_profile813_ 5.64747170713539026e-02 +Beta_toroidal_profile_at_point_814_______________________________________ beta_thermal_toroidal_profile814_ 5.62023138509118378e-02 +Beta_toroidal_profile_at_point_815_______________________________________ beta_thermal_toroidal_profile815_ 5.59294398105239995e-02 +Beta_toroidal_profile_at_point_816_______________________________________ beta_thermal_toroidal_profile816_ 5.56561068123562694e-02 +Beta_toroidal_profile_at_point_817_______________________________________ beta_thermal_toroidal_profile817_ 5.53823267992792981e-02 +Beta_toroidal_profile_at_point_818_______________________________________ beta_thermal_toroidal_profile818_ 5.51081117951824143e-02 +Beta_toroidal_profile_at_point_819_______________________________________ beta_thermal_toroidal_profile819_ 5.48334739052950271e-02 +Beta_toroidal_profile_at_point_820_______________________________________ beta_thermal_toroidal_profile820_ 5.45584253165173963e-02 +Beta_toroidal_profile_at_point_821_______________________________________ beta_thermal_toroidal_profile821_ 5.42829782977590561e-02 +Beta_toroidal_profile_at_point_822_______________________________________ beta_thermal_toroidal_profile822_ 5.40071452002874597e-02 +Beta_toroidal_profile_at_point_823_______________________________________ beta_thermal_toroidal_profile823_ 5.37309384580854990e-02 +Beta_toroidal_profile_at_point_824_______________________________________ beta_thermal_toroidal_profile824_ 5.34543705882193076e-02 +Beta_toroidal_profile_at_point_825_______________________________________ beta_thermal_toroidal_profile825_ 5.31774541912160142e-02 +Beta_toroidal_profile_at_point_826_______________________________________ beta_thermal_toroidal_profile826_ 5.29002019514528757e-02 +Beta_toroidal_profile_at_point_827_______________________________________ beta_thermal_toroidal_profile827_ 5.26226266375567839e-02 +Beta_toroidal_profile_at_point_828_______________________________________ beta_thermal_toroidal_profile828_ 5.23447411028163251e-02 +Beta_toroidal_profile_at_point_829_______________________________________ beta_thermal_toroidal_profile829_ 5.20665582856051148e-02 +Beta_toroidal_profile_at_point_830_______________________________________ beta_thermal_toroidal_profile830_ 5.17880912098185459e-02 +Beta_toroidal_profile_at_point_831_______________________________________ beta_thermal_toroidal_profile831_ 5.15093529853229079e-02 +Beta_toroidal_profile_at_point_832_______________________________________ beta_thermal_toroidal_profile832_ 5.12303568084190308e-02 +Beta_toroidal_profile_at_point_833_______________________________________ beta_thermal_toroidal_profile833_ 5.09511159623193960e-02 +Beta_toroidal_profile_at_point_834_______________________________________ beta_thermal_toroidal_profile834_ 5.06716438176407352e-02 +Beta_toroidal_profile_at_point_835_______________________________________ beta_thermal_toroidal_profile835_ 5.03919538329115416e-02 +Beta_toroidal_profile_at_point_836_______________________________________ beta_thermal_toroidal_profile836_ 5.01120595550961986e-02 +Beta_toroidal_profile_at_point_837_______________________________________ beta_thermal_toroidal_profile837_ 4.98319746201355829e-02 +Beta_toroidal_profile_at_point_838_______________________________________ beta_thermal_toroidal_profile838_ 4.95517127535050825e-02 +Beta_toroidal_profile_at_point_839_______________________________________ beta_thermal_toroidal_profile839_ 4.92712877707911084e-02 +Beta_toroidal_profile_at_point_840_______________________________________ beta_thermal_toroidal_profile840_ 4.89907135782862574e-02 +Beta_toroidal_profile_at_point_841_______________________________________ beta_thermal_toroidal_profile841_ 4.87100041736045486e-02 +Beta_toroidal_profile_at_point_842_______________________________________ beta_thermal_toroidal_profile842_ 4.84291736463169850e-02 +Beta_toroidal_profile_at_point_843_______________________________________ beta_thermal_toroidal_profile843_ 4.81482361786088053e-02 +Beta_toroidal_profile_at_point_844_______________________________________ beta_thermal_toroidal_profile844_ 4.78672060459589682e-02 +Beta_toroidal_profile_at_point_845_______________________________________ beta_thermal_toroidal_profile845_ 4.75860976178433051e-02 +Beta_toroidal_profile_at_point_846_______________________________________ beta_thermal_toroidal_profile846_ 4.73049253584613000e-02 +Beta_toroidal_profile_at_point_847_______________________________________ beta_thermal_toroidal_profile847_ 4.70237038274893340e-02 +Beta_toroidal_profile_at_point_848_______________________________________ beta_thermal_toroidal_profile848_ 4.67424476808592920e-02 +Beta_toroidal_profile_at_point_849_______________________________________ beta_thermal_toroidal_profile849_ 4.64611716715657708e-02 +Beta_toroidal_profile_at_point_850_______________________________________ beta_thermal_toroidal_profile850_ 4.61798906505014803e-02 +Beta_toroidal_profile_at_point_851_______________________________________ beta_thermal_toroidal_profile851_ 4.58986195673231623e-02 +Beta_toroidal_profile_at_point_852_______________________________________ beta_thermal_toroidal_profile852_ 4.56173734713485254e-02 +Beta_toroidal_profile_at_point_853_______________________________________ beta_thermal_toroidal_profile853_ 4.53361675124866054e-02 +Beta_toroidal_profile_at_point_854_______________________________________ beta_thermal_toroidal_profile854_ 4.50550169422017296e-02 +Beta_toroidal_profile_at_point_855_______________________________________ beta_thermal_toroidal_profile855_ 4.47739371145138079e-02 +Beta_toroidal_profile_at_point_856_______________________________________ beta_thermal_toroidal_profile856_ 4.44929434870358631e-02 +Beta_toroidal_profile_at_point_857_______________________________________ beta_thermal_toroidal_profile857_ 4.42120516220504897e-02 +Beta_toroidal_profile_at_point_858_______________________________________ beta_thermal_toroidal_profile858_ 4.39312771876275987e-02 +Beta_toroidal_profile_at_point_859_______________________________________ beta_thermal_toroidal_profile859_ 4.36506359587844200e-02 +Beta_toroidal_profile_at_point_860_______________________________________ beta_thermal_toroidal_profile860_ 4.33701438186906360e-02 +Beta_toroidal_profile_at_point_861_______________________________________ beta_thermal_toroidal_profile861_ 4.30898167599200257e-02 +Beta_toroidal_profile_at_point_862_______________________________________ beta_thermal_toroidal_profile862_ 4.28096708857511887e-02 +Beta_toroidal_profile_at_point_863_______________________________________ beta_thermal_toroidal_profile863_ 4.25297224115193523e-02 +Beta_toroidal_profile_at_point_864_______________________________________ beta_thermal_toroidal_profile864_ 4.22499876660219278e-02 +Beta_toroidal_profile_at_point_865_______________________________________ beta_thermal_toroidal_profile865_ 4.19704830929801681e-02 +Beta_toroidal_profile_at_point_866_______________________________________ beta_thermal_toroidal_profile866_ 4.16912252525598187e-02 +Beta_toroidal_profile_at_point_867_______________________________________ beta_thermal_toroidal_profile867_ 4.14122308229531791e-02 +Beta_toroidal_profile_at_point_868_______________________________________ beta_thermal_toroidal_profile868_ 4.11335166020259865e-02 +Beta_toroidal_profile_at_point_869_______________________________________ beta_thermal_toroidal_profile869_ 4.08550995090321695e-02 +Beta_toroidal_profile_at_point_870_______________________________________ beta_thermal_toroidal_profile870_ 4.05769965863995510e-02 +Beta_toroidal_profile_at_point_871_______________________________________ beta_thermal_toroidal_profile871_ 4.02992250015900416e-02 +Beta_toroidal_profile_at_point_872_______________________________________ beta_thermal_toroidal_profile872_ 4.00218020490386781e-02 +Beta_toroidal_profile_at_point_873_______________________________________ beta_thermal_toroidal_profile873_ 3.97447451521742851e-02 +Beta_toroidal_profile_at_point_874_______________________________________ beta_thermal_toroidal_profile874_ 3.94680718655269908e-02 +Beta_toroidal_profile_at_point_875_______________________________________ beta_thermal_toroidal_profile875_ 3.91917998769263989e-02 +Beta_toroidal_profile_at_point_876_______________________________________ beta_thermal_toroidal_profile876_ 3.89159470097951640e-02 +Beta_toroidal_profile_at_point_877_______________________________________ beta_thermal_toroidal_profile877_ 3.86405312255430761e-02 +Beta_toroidal_profile_at_point_878_______________________________________ beta_thermal_toroidal_profile878_ 3.83655706260666446e-02 +Beta_toroidal_profile_at_point_879_______________________________________ beta_thermal_toroidal_profile879_ 3.80910834563600864e-02 +Beta_toroidal_profile_at_point_880_______________________________________ beta_thermal_toroidal_profile880_ 3.78170881072432269e-02 +Beta_toroidal_profile_at_point_881_______________________________________ beta_thermal_toroidal_profile881_ 3.75436031182128579e-02 +Beta_toroidal_profile_at_point_882_______________________________________ beta_thermal_toroidal_profile882_ 3.72706471804240755e-02 +Beta_toroidal_profile_at_point_883_______________________________________ beta_thermal_toroidal_profile883_ 3.69982391398089028e-02 +Beta_toroidal_profile_at_point_884_______________________________________ beta_thermal_toroidal_profile884_ 3.67263980003392707e-02 +Beta_toroidal_profile_at_point_885_______________________________________ beta_thermal_toroidal_profile885_ 3.64551429274431807e-02 +Beta_toroidal_profile_at_point_886_______________________________________ beta_thermal_toroidal_profile886_ 3.61844932515816772e-02 +Beta_toroidal_profile_at_point_887_______________________________________ beta_thermal_toroidal_profile887_ 3.59144684719965857e-02 +Beta_toroidal_profile_at_point_888_______________________________________ beta_thermal_toroidal_profile888_ 3.56450882606382663e-02 +Beta_toroidal_profile_at_point_889_______________________________________ beta_thermal_toroidal_profile889_ 3.53763724662841741e-02 +Beta_toroidal_profile_at_point_890_______________________________________ beta_thermal_toroidal_profile890_ 3.51083411188588893e-02 +Beta_toroidal_profile_at_point_891_______________________________________ beta_thermal_toroidal_profile891_ 3.48410144339681010e-02 +Beta_toroidal_profile_at_point_892_______________________________________ beta_thermal_toroidal_profile892_ 3.45744128176588561e-02 +Beta_toroidal_profile_at_point_893_______________________________________ beta_thermal_toroidal_profile893_ 3.43085568714199124e-02 +Beta_toroidal_profile_at_point_894_______________________________________ beta_thermal_toroidal_profile894_ 3.40434673974370772e-02 +Beta_toroidal_profile_at_point_895_______________________________________ beta_thermal_toroidal_profile895_ 3.37791654041186828e-02 +Beta_toroidal_profile_at_point_896_______________________________________ beta_thermal_toroidal_profile896_ 3.35156721119088119e-02 +Beta_toroidal_profile_at_point_897_______________________________________ beta_thermal_toroidal_profile897_ 3.32530089594058470e-02 +Beta_toroidal_profile_at_point_898_______________________________________ beta_thermal_toroidal_profile898_ 3.29911976098062540e-02 +Beta_toroidal_profile_at_point_899_______________________________________ beta_thermal_toroidal_profile899_ 3.27302599576945116e-02 +Beta_toroidal_profile_at_point_900_______________________________________ beta_thermal_toroidal_profile900_ 3.24702181362019893e-02 +Beta_toroidal_profile_at_point_901_______________________________________ beta_thermal_toroidal_profile901_ 3.22110945245589406e-02 +Beta_toroidal_profile_at_point_902_______________________________________ beta_thermal_toroidal_profile902_ 3.19529117560667791e-02 +Beta_toroidal_profile_at_point_903_______________________________________ beta_thermal_toroidal_profile903_ 3.16956927265182667e-02 +Beta_toroidal_profile_at_point_904_______________________________________ beta_thermal_toroidal_profile904_ 3.14394606030976784e-02 +Beta_toroidal_profile_at_point_905_______________________________________ beta_thermal_toroidal_profile905_ 3.11842388337934297e-02 +Beta_toroidal_profile_at_point_906_______________________________________ beta_thermal_toroidal_profile906_ 3.09300511573606662e-02 +Beta_toroidal_profile_at_point_907_______________________________________ beta_thermal_toroidal_profile907_ 3.06769216138723204e-02 +Beta_toroidal_profile_at_point_908_______________________________________ beta_thermal_toroidal_profile908_ 3.04248745559026652e-02 +Beta_toroidal_profile_at_point_909_______________________________________ beta_thermal_toroidal_profile909_ 3.01739346603891977e-02 +Beta_toroidal_profile_at_point_910_______________________________________ beta_thermal_toroidal_profile910_ 2.99241269412251036e-02 +Beta_toroidal_profile_at_point_911_______________________________________ beta_thermal_toroidal_profile911_ 2.96754767626367169e-02 +Beta_toroidal_profile_at_point_912_______________________________________ beta_thermal_toroidal_profile912_ 2.94280098534083420e-02 +Beta_toroidal_profile_at_point_913_______________________________________ beta_thermal_toroidal_profile913_ 2.91817523220197703e-02 +Beta_toroidal_profile_at_point_914_______________________________________ beta_thermal_toroidal_profile914_ 2.89367306727710272e-02 +Beta_toroidal_profile_at_point_915_______________________________________ beta_thermal_toroidal_profile915_ 2.86929718229734509e-02 +Beta_toroidal_profile_at_point_916_______________________________________ beta_thermal_toroidal_profile916_ 2.84505031212963951e-02 +Beta_toroidal_profile_at_point_917_______________________________________ beta_thermal_toroidal_profile917_ 2.82093523673662104e-02 +Beta_toroidal_profile_at_point_918_______________________________________ beta_thermal_toroidal_profile918_ 2.79695478327253375e-02 +Beta_toroidal_profile_at_point_919_______________________________________ beta_thermal_toroidal_profile919_ 2.77311182832697400e-02 +Beta_toroidal_profile_at_point_920_______________________________________ beta_thermal_toroidal_profile920_ 2.74940930032964714e-02 +Beta_toroidal_profile_at_point_921_______________________________________ beta_thermal_toroidal_profile921_ 2.72585018213067701e-02 +Beta_toroidal_profile_at_point_922_______________________________________ beta_thermal_toroidal_profile922_ 2.70243751377268124e-02 +Beta_toroidal_profile_at_point_923_______________________________________ beta_thermal_toroidal_profile923_ 2.67917439547265303e-02 +Beta_toroidal_profile_at_point_924_______________________________________ beta_thermal_toroidal_profile924_ 2.65606399083376660e-02 +Beta_toroidal_profile_at_point_925_______________________________________ beta_thermal_toroidal_profile925_ 2.63310953030963350e-02 +Beta_toroidal_profile_at_point_926_______________________________________ beta_thermal_toroidal_profile926_ 2.61031431494622677e-02 +Beta_toroidal_profile_at_point_927_______________________________________ beta_thermal_toroidal_profile927_ 2.58768172042986126e-02 +Beta_toroidal_profile_at_point_928_______________________________________ beta_thermal_toroidal_profile928_ 2.56521520147310923e-02 +Beta_toroidal_profile_at_point_929_______________________________________ beta_thermal_toroidal_profile929_ 2.54291829657479936e-02 +Beta_toroidal_profile_at_point_930_______________________________________ beta_thermal_toroidal_profile930_ 2.52079463319483700e-02 +Beta_toroidal_profile_at_point_931_______________________________________ beta_thermal_toroidal_profile931_ 2.49884793339031040e-02 +Beta_toroidal_profile_at_point_932_______________________________________ beta_thermal_toroidal_profile932_ 2.47708201996558776e-02 +Beta_toroidal_profile_at_point_933_______________________________________ beta_thermal_toroidal_profile933_ 2.45550082319682984e-02 +Beta_toroidal_profile_at_point_934_______________________________________ beta_thermal_toroidal_profile934_ 2.43410838819992856e-02 +Beta_toroidal_profile_at_point_935_______________________________________ beta_thermal_toroidal_profile935_ 2.41290888302146574e-02 +Beta_toroidal_profile_at_point_936_______________________________________ beta_thermal_toroidal_profile936_ 2.39190660754433175e-02 +Beta_toroidal_profile_at_point_937_______________________________________ beta_thermal_toroidal_profile937_ 2.37110600331434072e-02 +Beta_toroidal_profile_at_point_938_______________________________________ beta_thermal_toroidal_profile938_ 2.35051166441134426e-02 +Beta_toroidal_profile_at_point_939_______________________________________ beta_thermal_toroidal_profile939_ 2.33012834950923203e-02 +Beta_toroidal_profile_at_point_940_______________________________________ beta_thermal_toroidal_profile940_ 2.30996099529407022e-02 +Beta_toroidal_profile_at_point_941_______________________________________ beta_thermal_toroidal_profile941_ 2.29001473143992350e-02 +Beta_toroidal_profile_at_point_942_______________________________________ beta_thermal_toroidal_profile942_ 2.27029489737869718e-02 +Beta_toroidal_profile_at_point_943_______________________________________ beta_thermal_toroidal_profile943_ 2.25080706114543123e-02 +Beta_toroidal_profile_at_point_944_______________________________________ beta_thermal_toroidal_profile944_ 2.23155704063603029e-02 +Beta_toroidal_profile_at_point_945_______________________________________ beta_thermal_toroidal_profile945_ 2.21255092768348448e-02 +Beta_toroidal_profile_at_point_946_______________________________________ beta_thermal_toroidal_profile946_ 2.19379511544487184e-02 +Beta_toroidal_profile_at_point_947_______________________________________ beta_thermal_toroidal_profile947_ 2.17529632970027073e-02 +Beta_toroidal_profile_at_point_948_______________________________________ beta_thermal_toroidal_profile948_ 2.15706166480304912e-02 +Beta_toroidal_profile_at_point_949_______________________________________ beta_thermal_toroidal_profile949_ 2.13909862519844340e-02 +Beta_toroidal_profile_at_point_950_______________________________________ beta_thermal_toroidal_profile950_ 2.12141517365740280e-02 +Beta_toroidal_profile_at_point_951_______________________________________ beta_thermal_toroidal_profile951_ 2.10401978767391883e-02 +Beta_toroidal_profile_at_point_952_______________________________________ beta_thermal_toroidal_profile952_ 2.08692152587343256e-02 +Beta_toroidal_profile_at_point_953_______________________________________ beta_thermal_toroidal_profile953_ 2.07013010681581233e-02 +Beta_toroidal_profile_at_point_954_______________________________________ beta_thermal_toroidal_profile954_ 2.05365600330607925e-02 +Beta_toroidal_profile_at_point_955_______________________________________ beta_thermal_toroidal_profile955_ 2.03751055633450071e-02 +Beta_toroidal_profile_at_point_956_______________________________________ beta_thermal_toroidal_profile956_ 2.02170611418577666e-02 +Beta_toroidal_profile_at_point_957_______________________________________ beta_thermal_toroidal_profile957_ 2.00625620428907629e-02 +Beta_toroidal_profile_at_point_958_______________________________________ beta_thermal_toroidal_profile958_ 1.99117574835500737e-02 +Beta_toroidal_profile_at_point_959_______________________________________ beta_thermal_toroidal_profile959_ 1.97648133580494885e-02 +Beta_toroidal_profile_at_point_960_______________________________________ beta_thermal_toroidal_profile960_ 1.96219157736821151e-02 +Beta_toroidal_profile_at_point_961_______________________________________ beta_thermal_toroidal_profile961_ 1.94832757164336325e-02 +Beta_toroidal_profile_at_point_962_______________________________________ beta_thermal_toroidal_profile962_ 1.93491353542189493e-02 +Beta_toroidal_profile_at_point_963_______________________________________ beta_thermal_toroidal_profile963_ 1.92197767954222290e-02 +Beta_toroidal_profile_at_point_964_______________________________________ beta_thermal_toroidal_profile964_ 1.90955346811240226e-02 +Beta_toroidal_profile_at_point_965_______________________________________ beta_thermal_toroidal_profile965_ 1.89768150697376334e-02 +Beta_toroidal_profile_at_point_966_______________________________________ beta_thermal_toroidal_profile966_ 1.88641253227188783e-02 +Beta_toroidal_profile_at_point_967_______________________________________ beta_thermal_toroidal_profile967_ 1.87581248815367370e-02 +Beta_toroidal_profile_at_point_968_______________________________________ beta_thermal_toroidal_profile968_ 1.86597205020828417e-02 +Beta_toroidal_profile_at_point_969_______________________________________ beta_thermal_toroidal_profile969_ 1.85702735665685265e-02 +Beta_toroidal_profile_at_point_970_______________________________________ beta_thermal_toroidal_profile970_ 1.84921855356782912e-02 +Beta_toroidal_profile_at_point_971_______________________________________ beta_thermal_toroidal_profile971_ 1.84325020999346230e-02 +Beta_toroidal_profile_at_point_972_______________________________________ beta_thermal_toroidal_profile972_ 1.76023800325543905e-02 +Beta_toroidal_profile_at_point_973_______________________________________ beta_thermal_toroidal_profile973_ 1.67871394227233767e-02 +Beta_toroidal_profile_at_point_974_______________________________________ beta_thermal_toroidal_profile974_ 1.59868294104237134e-02 +Beta_toroidal_profile_at_point_975_______________________________________ beta_thermal_toroidal_profile975_ 1.52014991867373897e-02 +Beta_toroidal_profile_at_point_976_______________________________________ beta_thermal_toroidal_profile976_ 1.44311979938461614e-02 +Beta_toroidal_profile_at_point_977_______________________________________ beta_thermal_toroidal_profile977_ 1.36759751250316620e-02 +Beta_toroidal_profile_at_point_978_______________________________________ beta_thermal_toroidal_profile978_ 1.29358799246753163e-02 +Beta_toroidal_profile_at_point_979_______________________________________ beta_thermal_toroidal_profile979_ 1.22109617882583815e-02 +Beta_toroidal_profile_at_point_980_______________________________________ beta_thermal_toroidal_profile980_ 1.15012701623619304e-02 +Beta_toroidal_profile_at_point_981_______________________________________ beta_thermal_toroidal_profile981_ 1.08068545446668683e-02 +Beta_toroidal_profile_at_point_982_______________________________________ beta_thermal_toroidal_profile982_ 1.01277644839539143e-02 +Beta_toroidal_profile_at_point_983_______________________________________ beta_thermal_toroidal_profile983_ 9.46404958010362181e-03 +Beta_toroidal_profile_at_point_984_______________________________________ beta_thermal_toroidal_profile984_ 8.81575948409634921e-03 +Beta_toroidal_profile_at_point_985_______________________________________ beta_thermal_toroidal_profile985_ 8.18294389801229281e-03 +Beta_toroidal_profile_at_point_986_______________________________________ beta_thermal_toroidal_profile986_ 7.56565257503146425e-03 +Beta_toroidal_profile_at_point_987_______________________________________ beta_thermal_toroidal_profile987_ 6.96393531943369833e-03 +Beta_toroidal_profile_at_point_988_______________________________________ beta_thermal_toroidal_profile988_ 6.37784198659865822e-03 +Beta_toroidal_profile_at_point_989_______________________________________ beta_thermal_toroidal_profile989_ 5.80742248300581722e-03 +Beta_toroidal_profile_at_point_990_______________________________________ beta_thermal_toroidal_profile990_ 5.25272676623448568e-03 +Beta_toroidal_profile_at_point_991_______________________________________ beta_thermal_toroidal_profile991_ 4.71380484496378583e-03 +Beta_toroidal_profile_at_point_992_______________________________________ beta_thermal_toroidal_profile992_ 4.19070677897266826e-03 +Beta_toroidal_profile_at_point_993_______________________________________ beta_thermal_toroidal_profile993_ 3.68348267913989891e-03 +Beta_toroidal_profile_at_point_994_______________________________________ beta_thermal_toroidal_profile994_ 3.19218270744408119e-03 +Beta_toroidal_profile_at_point_995_______________________________________ beta_thermal_toroidal_profile995_ 2.71685707696362085e-03 +Beta_toroidal_profile_at_point_996_______________________________________ beta_thermal_toroidal_profile996_ 2.25755605187676458e-03 +Beta_toroidal_profile_at_point_997_______________________________________ beta_thermal_toroidal_profile997_ 1.81432994746156856e-03 +Beta_toroidal_profile_at_point_998_______________________________________ beta_thermal_toroidal_profile998_ 1.38722913009591995e-03 +Beta_toroidal_profile_at_point_999_______________________________________ beta_thermal_toroidal_profile999_ 9.76304017257524290e-04 +Beta_toroidal_profile_at_point_1000______________________________________ beta_thermal_toroidal_profile1000_ 5.81605077523910047e-04 +Beta_toroidal_profile_at_point_1001______________________________________ beta_thermal_toroidal_profile1001_ 2.03182830572429295e-04 +Fast_alpha_beta_(β_alpha)________________________________________________ (beta_fast_alpha)______________ 4.80851707252069171e-03 OP Neutral_Beam_ion_beta_(β_beam)___________________________________________ (beta_beam)____________________ 0.00000000000000000e+00 OP -Ratio_of_fast_alpha_and_beam_beta_to_thermal_beta________________________ (f_beta_alpha_beam_thermal)____ 1.47274856199879872e-01 OP -Volume_averaged_thermal_beta_(⟨βₜₕ⟩)_____________________________________ (beta_thermal_vol_avg)_________ 3.29587003977848333e-02 OP -Thermal_poloidal_beta_(⟨βₚₜₕ⟩)___________________________________________ (beta_thermal_poloidal_vol_avg)_ 1.13808733077148694e+00 OP -Thermal_toroidal_beta_(⟨βₜₕ⟩)____________________________________________ (beta_thermal_toroidal_vol_avg)_ 3.39416411180371025e-02 OP -Poloidal_beta_and_inverse_aspect_ratio_(βₚε)_____________________________ (beta_poloidal_eps)____________ 4.35232992917920891e-01 OP +Ratio_of_fast_alpha_and_beam_beta_to_thermal_beta________________________ (f_beta_alpha_beam_thermal)____ 1.42710664681984262e-01 OP +Volume_averaged_thermal_beta_(⟨βₜₕ⟩)_____________________________________ (beta_thermal_vol_avg)_________ 3.36941677290619260e-02 OP +Thermal_poloidal_beta_(⟨βₚₜₕ⟩)___________________________________________ (beta_thermal_poloidal_vol_avg)_ 1.13103206918360444e+00 OP +Thermal_toroidal_beta_(⟨βₜₕ⟩)____________________________________________ (beta_thermal_toroidal_vol_avg)_ 3.47287596605438328e-02 OP +Poloidal_beta_and_inverse_aspect_ratio_(βₚε)_____________________________ (beta_poloidal_eps)____________ 4.30814135851145474e-01 OP Poloidal_beta_and_inverse_aspect_ratio_upper_limit_(βₚε_max)_____________ (beta_poloidal_eps_max)________ 1.37999999999999989e+00 Maximum_normalised_beta_model____________________________________________ (i_beta_norm_max)______________ 1 Beta_g_coefficient_(βₙ<)_________________________________________________ (beta_norm_max)________________ 3.60000000000000009e+00 OP -Normalised_total_beta_(βₙ)_______________________________________________ (beta_norm_total)______________ 3.04688727934614656e+00 OP -Normalised_thermal_beta_(βₙₜₕ)___________________________________________ (beta_norm_thermal)____________ 2.65576052929317763e+00 OP -Normalised_toroidal_beta_(βₙₜ)___________________________________________ (beta_norm_toroidal)___________ 3.13775583729114604e+00 OP -Normalised_poloidal_beta_(βₙₚ)___________________________________________ (beta_norm_poloidal)___________ 1.05211181541178547e+02 OP +Normalised_total_beta_(βₙ)_______________________________________________ (beta_norm_total)______________ 3.05760440057510685e+00 OP +Normalised_thermal_beta_(βₙₜₕ)___________________________________________ (beta_norm_thermal)____________ 2.67574679669768933e+00 OP +Normalised_toroidal_beta_(βₙₜ)___________________________________________ (beta_norm_toroidal)___________ 3.15148927904830645e+00 OP +Normalised_poloidal_beta_(βₙₚ)___________________________________________ (beta_norm_poloidal)___________ 1.02636416478230601e+02 OP J._Wesson_normalised_beta_upper_limit_(βₙ<)______________________________ (beta_norm_max_wesson)_________ 3.60000000000000009e+00 OP Original_normalised_beta_upper_limit_(βₙ<)_______________________________ (beta_norm_max_original_scaling)__ 2.98867513459481327e+00 OP J._Menard_normalised_beta_upper_limit_(βₙ<)______________________________ (beta_norm_max_menard)_________ 3.66070689956729822e+00 OP -E._tholerus_normalised_beta_upper_limit_(βₙ<)____________________________ (beta_norm_max_tholerus)_______ 4.49763203156667313e+00 OP -R._Stambaugh_normalised_beta_upper_limit_(βₙ<)___________________________ (beta_norm_max_stambaugh)______ 2.05276846663580015e+00 OP -Plasma_thermal_energy_derived_from_thermal_beta_(J)______________________ (e_plasma_beta_thermal)________ 9.45158271198573232e+08 OP -Plasma_thermal_energy_derived_from_the_total_beta_(J)____________________ (e_plasma_beta)________________ 1.08435631967547011e+09 OP +E._tholerus_normalised_beta_upper_limit_(βₙ<)____________________________ (beta_norm_max_tholerus)_______ 4.48578261755050089e+00 OP +R._Stambaugh_normalised_beta_upper_limit_(βₙ<)___________________________ (beta_norm_max_stambaugh)______ 2.04811712616866259e+00 OP +Plasma_thermal_energy_derived_from_thermal_beta_(J)______________________ (e_plasma_beta_thermal)________ 9.73358924008823037e+08 OP +Plasma_thermal_energy_derived_from_the_total_beta_(J)____________________ (e_plasma_beta)________________ 1.11226762302826309e+09 OP # Plasma Density and Temperature Profiles # Number_of_radial_points_in_plasma_profiles_______________________________ (n_plasma_profile_elements)____ 501 Plasma_profile_model_selected____________________________________________ (i_plasma_pedestal)____________ 1 @@ -2465,2544 +2470,2542 @@ Temperature_profile_index_beta_(βₜ)______________________________________ (tb Temperature_pedestal_r/a_location_(ρₜ,pedestal)__________________________ (radius_plasma_pedestal_temp_norm)_ 9.39999999999999947e-01 Electron_temperature_pedestal_height_(Tₑ,pedestal)_(keV)_________________ (temp_plasma_pedestal_kev)_____ 5.50000000000000000e+00 Electron_temperature_at_separatrix_(Tₑ,ₛₑₚ)_(keV)________________________ (temp_plasma_separatrix_kev)___ 1.00000000000000006e-01 -Volume_averaged_electron_temperature_(⟨Tₑ⟩)_(keV)________________________ (temp_plasma_electron_vol_avg_kev)_ 1.24731443906445829e+01 -Electron_temperature_on_axis_(Tₑ₀)_(keV)_________________________________ (temp_plasma_electron_on_axis_kev)_ 2.57151740120860381e+01 OP -Line_averaged_electron_temperature_(keV)_________________________________ (temp_plasma_electron_line_avg_kev)_ 1.66562218585722661e+01 -Volume_averaged_density_weighted_electron_temperature_(⟨Tₑ⟩ₙ)_(keV)______ (temp_plasma_electron_density_weighted_kev)_ 1.37874257364820547e+01 OP -Ratio_of_electron_density_weighted_to_volume_averaged_temperature________ (f_temp_plasma_electron_density_vol_avg)_ 1.10536888732108651e+00 OP +Volume_averaged_electron_temperature_(⟨Tₑ⟩)_(keV)________________________ (temp_plasma_electron_vol_avg_kev)_ 1.26746504744851638e+01 +Electron_temperature_on_axis_(Tₑ₀)_(keV)_________________________________ (temp_plasma_electron_on_axis_kev)_ 2.62738995727576388e+01 OP +Volume_averaged_density_weighted_electron_temperature_(⟨Tₑ⟩ₙ)_(keV)______ (temp_plasma_electron_density_weighted_kev)_ 1.40214634174861210e+01 OP +Ratio_of_electron_density_weighted_to_volume_averaged_temperature________ (f_temp_plasma_electron_density_vol_avg)_ 1.10626036163381181e+00 OP Ratio_of_ion_to_electron_volume-averaged_temperature_____________________ (f_temp_plasma_ion_electron)___ 1.00000000000000000e+00 IP -Volume_averaged_ion_temperature_(⟨Tᵢ⟩)_(keV)_____________________________ (temp_plasma_ion_vol_avg_kev)__ 1.24731443906445829e+01 -Ion_temperature_on_axis_(Tᵢ₀)_(keV)______________________________________ (temp_plasma_ion_on_axis_kev)__ 2.57151740120860381e+01 OP +Volume_averaged_ion_temperature_(⟨Tᵢ⟩)_(keV)_____________________________ (temp_plasma_ion_vol_avg_kev)__ 1.26746504744851638e+01 +Ion_temperature_on_axis_(Tᵢ₀)_(keV)______________________________________ (temp_plasma_ion_on_axis_kev)__ 2.62738995727576388e+01 OP Density_profile_factor_(αₙ)______________________________________________ (alphan)_______________________ 1.00000000000000000e+00 -Pedestal_and_separatrix_density_model_selected___________________________ (i_nd_plasma_pedestal_separatrix)_ 1 Density_pedestal_r/a_location_(ρₙ,pedestal)______________________________ (radius_plasma_pedestal_density_norm)_ 9.39999999999999947e-01 -Electron_density_pedestal_height_(nₑ_pedestal)_(/m³)_____________________ (nd_plasma_pedestal_electron)__ 6.25923070919424164e+19 OP -Electron_separatrix_density_(nₑ,ₛₑₚ)_(/m³)_______________________________ (nd_plasma_separatrix_electron)_ 3.68190041717308334e+19 OP -Pedestal_Greenwald_fraction______________________________________________ (f_nd_plasma_pedestal_greenwald)_ 8.49999999999999978e-01 -Separatrix_Greenwald_fraction____________________________________________ (f_nd_plasma_separatrix_greenwald)_ 5.00000000000000000e-01 -Volume_averaged_electron_number_density_(⟨nₑ⟩)_(/m³)_____________________ (nd_plasma_electrons_vol_avg)__ 7.97918908402032148e+19 -Electron_number_density_on_axis_(nₑ₀)_(/m³)______________________________ (nd_plasma_electron_on_axis)___ 1.04953225969192829e+20 OP -Line-averaged_electron_number_density_(ñₑ)_(/m³)_________________________ (nd_plasma_electron_line)______ 8.83652838340796580e+19 OP -Greenwald_fraction_(f_GW)________________________________________________ (f_nd_plasma_greenwald)________ 1.19999557052014749e+00 OP -Total_ion_volume_averaged_number_density_(⟨nᵢ⟩)_(/m³)____________________ (nd_plasma_ions_total_vol_avg)_ 7.12781484778209362e+19 OP -Fuel_ion_volume_averaged_number_density_(⟨n_fuel⟩)_(/m³)_________________ (nd_plasma_fuel_ions_vol_avg)__ 6.49969309799525253e+19 OP -Total_impurity_volume_averaged_number_density_with_Z_>_2_(⟨nᵢₘₚ⟩)_(/m³)__ (nd_plasma_impurities_vol_avg)_ 4.80055645542429920e+16 OP -Thermalised_alpha_volume_averaged_number_density_(⟨n_alpha⟩)_(/m³)_______ (nd_plasma_alphas_vol_avg)_____ 6.21669250284018586e+18 OP -Thermalised_alpha_to_electron_number_density_ratio_(⟨n_alpha⟩/⟨nₑ⟩)______ (f_nd_alpha_electron)__________ 7.79113320586695551e-02 -Proton_volume_averaged_number_density_(⟨nₚ⟩)_(/m³)_______________________ (nd_plasma_protons_vol_avg)____ 1.65194304739852640e+16 OP +Electron_density_pedestal_height_(nₑ_pedestal)_(/m³)_____________________ (nd_plasma_pedestal_electron)__ 6.37170311930235372e+19 OP +Pedestal_Greenwald_fraction______________________________________________ (fgwped_out)___________________ 8.49999999999999978e-01 +Electron_density_at_separatrix_(nₑ,ₛₑₚ)_(/m³)____________________________ (nd_plasma_separatrix_electron)_ 3.74806065841314939e+19 +Separatrix_Greenwald_fraction____________________________________________ (fgwsep_out)___________________ 5.00000000000000000e-01 +Volume_averaged_electron_number_density_(⟨nₑ⟩)_(/m³)_____________________ (nd_plasma_electrons_vol_avg)__ 8.12256151664202711e+19 +Electron_number_density_on_axis_(nₑ₀)_(/m³)______________________________ (nd_plasma_electron_on_axis)___ 1.06838999822266597e+20 OP +Line-averaged_electron_number_density_(ñₑ)_(/m³)_________________________ (nd_plasma_electron_line)______ 8.99530387957490975e+19 OP +Greenwald_fraction_(f_GW)________________________________________________ (dnla_gw)______________________ 1.19999443704085262e+00 OP +Total_ion_volume_averaged_number_density_(⟨nᵢ⟩)_(/m³)____________________ (nd_plasma_ions_total_vol_avg)_ 7.17550913186298102e+19 OP +Fuel_ion_volume_averaged_number_density_(⟨n_fuel⟩)_(/m³)_________________ (nd_plasma_fuel_ions_vol_avg)__ 6.46188108796804465e+19 OP +Total_impurity_volume_averaged_number_density_with_Z_>_2_(⟨nᵢₘₚ⟩)_(/m³)__ (nd_plasma_impurities_vol_avg)_ 5.01181047674494400e+16 OP +Thermalised_alpha_volume_averaged_number_density_(⟨n_alpha⟩)_(/m³)_______ (nd_plasma_alphas_vol_avg)_____ 7.06725386818312909e+18 OP +Thermalised_alpha_to_electron_number_density_ratio_(⟨n_alpha⟩/⟨nₑ⟩)______ (f_nd_alpha_electron)__________ 8.70076989100456027e-02 +Proton_volume_averaged_number_density_(⟨nₚ⟩)_(/m³)_______________________ (nd_plasma_protons_vol_avg)____ 1.89084659987942080e+16 OP Proton_to_electron_volume_averaged_number_density_ratio_(⟨nₚ⟩/⟨nₑ⟩)______ (f_nd_protium_electrons)_______ 0.00000000000000000e+00 OP Hot_beam_ion_volume_averaged_number_density_(⟨n_beam⟩)_(/m³)_____________ (nd_beam_ions)_________________ 0.00000000000000000e+00 OP Hot_beam_ion_to_electron_number_density_ratio_(⟨n_beam⟩/⟨nₑ⟩)____________ (f_nd_beam_electron)___________ 0.00000000000000000e+00 OP Pressure_profile_index_(αₚ)______________________________________________ (alphap)_______________________ 2.45000000000000018e+00 -Plasma_thermal_pressure_on_axis_(p₀)_(Pa)________________________________ (pres_plasma_thermal_on_axis)__ 8.18681994356746087e+05 OP -Volume_averaged_plasma_thermal_pressure_(⟨p⟩)_(Pa)_______________________ (pres_plasma_thermal_vol_avg)__ 3.33712075598421216e+05 OP -Total_plasma_pressure_at_point_0_________________________________________ (pres_plasma_thermal_total_profile0)_ 8.18681994356746087e+05 -Total_plasma_pressure_at_point_1_________________________________________ (pres_plasma_thermal_total_profile1)_ 8.18676274012914626e+05 -Total_plasma_pressure_at_point_2_________________________________________ (pres_plasma_thermal_total_profile2)_ 8.18659113125681411e+05 -Total_plasma_pressure_at_point_3_________________________________________ (pres_plasma_thermal_total_profile3)_ 8.18630512127824361e+05 -Total_plasma_pressure_at_point_4_________________________________________ (pres_plasma_thermal_total_profile4)_ 8.18590471740637207e+05 -Total_plasma_pressure_at_point_5_________________________________________ (pres_plasma_thermal_total_profile5)_ 8.18538992973919958e+05 -Total_plasma_pressure_at_point_6_________________________________________ (pres_plasma_thermal_total_profile6)_ 8.18476077125967480e+05 -Total_plasma_pressure_at_point_7_________________________________________ (pres_plasma_thermal_total_profile7)_ 8.18401725783557398e+05 -Total_plasma_pressure_at_point_8_________________________________________ (pres_plasma_thermal_total_profile8)_ 8.18315940821931465e+05 -Total_plasma_pressure_at_point_9_________________________________________ (pres_plasma_thermal_total_profile9)_ 8.18218724404775770e+05 -Total_plasma_pressure_at_point_10________________________________________ (pres_plasma_thermal_total_profile10)_ 8.18110078984199092e+05 -Total_plasma_pressure_at_point_11________________________________________ (pres_plasma_thermal_total_profile11)_ 8.17990007300704252e+05 -Total_plasma_pressure_at_point_12________________________________________ (pres_plasma_thermal_total_profile12)_ 8.17858512383161229e+05 -Total_plasma_pressure_at_point_13________________________________________ (pres_plasma_thermal_total_profile13)_ 8.17715597548771999e+05 -Total_plasma_pressure_at_point_14________________________________________ (pres_plasma_thermal_total_profile14)_ 8.17561266403037938e+05 -Total_plasma_pressure_at_point_15________________________________________ (pres_plasma_thermal_total_profile15)_ 8.17395522839718265e+05 -Total_plasma_pressure_at_point_16________________________________________ (pres_plasma_thermal_total_profile16)_ 8.17218371040791273e+05 -Total_plasma_pressure_at_point_17________________________________________ (pres_plasma_thermal_total_profile17)_ 8.17029815476406831e+05 -Total_plasma_pressure_at_point_18________________________________________ (pres_plasma_thermal_total_profile18)_ 8.16829860904840520e+05 -Total_plasma_pressure_at_point_19________________________________________ (pres_plasma_thermal_total_profile19)_ 8.16618512372441357e+05 -Total_plasma_pressure_at_point_20________________________________________ (pres_plasma_thermal_total_profile20)_ 8.16395775213578250e+05 -Total_plasma_pressure_at_point_21________________________________________ (pres_plasma_thermal_total_profile21)_ 8.16161655050583417e+05 -Total_plasma_pressure_at_point_22________________________________________ (pres_plasma_thermal_total_profile22)_ 8.15916157793690683e+05 -Total_plasma_pressure_at_point_23________________________________________ (pres_plasma_thermal_total_profile23)_ 8.15659289640973089e+05 -Total_plasma_pressure_at_point_24________________________________________ (pres_plasma_thermal_total_profile24)_ 8.15391057078276528e+05 -Total_plasma_pressure_at_point_25________________________________________ (pres_plasma_thermal_total_profile25)_ 8.15111466879150597e+05 -Total_plasma_pressure_at_point_26________________________________________ (pres_plasma_thermal_total_profile26)_ 8.14820526104773628e+05 -Total_plasma_pressure_at_point_27________________________________________ (pres_plasma_thermal_total_profile27)_ 8.14518242103880621e+05 -Total_plasma_pressure_at_point_28________________________________________ (pres_plasma_thermal_total_profile28)_ 8.14204622512681410e+05 -Total_plasma_pressure_at_point_29________________________________________ (pres_plasma_thermal_total_profile29)_ 8.13879675254780333e+05 -Total_plasma_pressure_at_point_30________________________________________ (pres_plasma_thermal_total_profile30)_ 8.13543408541090321e+05 -Total_plasma_pressure_at_point_31________________________________________ (pres_plasma_thermal_total_profile31)_ 8.13195830869745696e+05 -Total_plasma_pressure_at_point_32________________________________________ (pres_plasma_thermal_total_profile32)_ 8.12836951026010676e+05 -Total_plasma_pressure_at_point_33________________________________________ (pres_plasma_thermal_total_profile33)_ 8.12466778082184494e+05 -Total_plasma_pressure_at_point_34________________________________________ (pres_plasma_thermal_total_profile34)_ 8.12085321397504653e+05 -Total_plasma_pressure_at_point_35________________________________________ (pres_plasma_thermal_total_profile35)_ 8.11692590618046932e+05 -Total_plasma_pressure_at_point_36________________________________________ (pres_plasma_thermal_total_profile36)_ 8.11288595676620025e+05 -Total_plasma_pressure_at_point_37________________________________________ (pres_plasma_thermal_total_profile37)_ 8.10873346792661818e+05 -Total_plasma_pressure_at_point_38________________________________________ (pres_plasma_thermal_total_profile38)_ 8.10446854472125880e+05 -Total_plasma_pressure_at_point_39________________________________________ (pres_plasma_thermal_total_profile39)_ 8.10009129507372389e+05 -Total_plasma_pressure_at_point_40________________________________________ (pres_plasma_thermal_total_profile40)_ 8.09560182977049262e+05 -Total_plasma_pressure_at_point_41________________________________________ (pres_plasma_thermal_total_profile41)_ 8.09100026245974819e+05 -Total_plasma_pressure_at_point_42________________________________________ (pres_plasma_thermal_total_profile42)_ 8.08628670965015655e+05 -Total_plasma_pressure_at_point_43________________________________________ (pres_plasma_thermal_total_profile43)_ 8.08146129070959520e+05 -Total_plasma_pressure_at_point_44________________________________________ (pres_plasma_thermal_total_profile44)_ 8.07652412786389817e+05 -Total_plasma_pressure_at_point_45________________________________________ (pres_plasma_thermal_total_profile45)_ 8.07147534619551850e+05 -Total_plasma_pressure_at_point_46________________________________________ (pres_plasma_thermal_total_profile46)_ 8.06631507364219637e+05 -Total_plasma_pressure_at_point_47________________________________________ (pres_plasma_thermal_total_profile47)_ 8.06104344099557260e+05 -Total_plasma_pressure_at_point_48________________________________________ (pres_plasma_thermal_total_profile48)_ 8.05566058189979289e+05 -Total_plasma_pressure_at_point_49________________________________________ (pres_plasma_thermal_total_profile49)_ 8.05016663285006303e+05 -Total_plasma_pressure_at_point_50________________________________________ (pres_plasma_thermal_total_profile50)_ 8.04456173319118097e+05 -Total_plasma_pressure_at_point_51________________________________________ (pres_plasma_thermal_total_profile51)_ 8.03884602511603269e+05 -Total_plasma_pressure_at_point_52________________________________________ (pres_plasma_thermal_total_profile52)_ 8.03301965366407065e+05 -Total_plasma_pressure_at_point_53________________________________________ (pres_plasma_thermal_total_profile53)_ 8.02708276671973523e+05 -Total_plasma_pressure_at_point_54________________________________________ (pres_plasma_thermal_total_profile54)_ 8.02103551501089009e+05 -Total_plasma_pressure_at_point_55________________________________________ (pres_plasma_thermal_total_profile55)_ 8.01487805210716324e+05 -Total_plasma_pressure_at_point_56________________________________________ (pres_plasma_thermal_total_profile56)_ 8.00861053441832308e+05 -Total_plasma_pressure_at_point_57________________________________________ (pres_plasma_thermal_total_profile57)_ 8.00223312119256007e+05 -Total_plasma_pressure_at_point_58________________________________________ (pres_plasma_thermal_total_profile58)_ 7.99574597451480571e+05 -Total_plasma_pressure_at_point_59________________________________________ (pres_plasma_thermal_total_profile59)_ 7.98914925930496072e+05 -Total_plasma_pressure_at_point_60________________________________________ (pres_plasma_thermal_total_profile60)_ 7.98244314331611386e+05 -Total_plasma_pressure_at_point_61________________________________________ (pres_plasma_thermal_total_profile61)_ 7.97562779713274795e+05 -Total_plasma_pressure_at_point_62________________________________________ (pres_plasma_thermal_total_profile62)_ 7.96870339416888542e+05 -Total_plasma_pressure_at_point_63________________________________________ (pres_plasma_thermal_total_profile63)_ 7.96167011066622566e+05 -Total_plasma_pressure_at_point_64________________________________________ (pres_plasma_thermal_total_profile64)_ 7.95452812569222879e+05 -Total_plasma_pressure_at_point_65________________________________________ (pres_plasma_thermal_total_profile65)_ 7.94727762113819947e+05 -Total_plasma_pressure_at_point_66________________________________________ (pres_plasma_thermal_total_profile66)_ 7.93991878171730321e+05 -Total_plasma_pressure_at_point_67________________________________________ (pres_plasma_thermal_total_profile67)_ 7.93245179496258497e+05 -Total_plasma_pressure_at_point_68________________________________________ (pres_plasma_thermal_total_profile68)_ 7.92487685122492956e+05 -Total_plasma_pressure_at_point_69________________________________________ (pres_plasma_thermal_total_profile69)_ 7.91719414367101155e+05 -Total_plasma_pressure_at_point_70________________________________________ (pres_plasma_thermal_total_profile70)_ 7.90940386828119983e+05 -Total_plasma_pressure_at_point_71________________________________________ (pres_plasma_thermal_total_profile71)_ 7.90150622384745046e+05 -Total_plasma_pressure_at_point_72________________________________________ (pres_plasma_thermal_total_profile72)_ 7.89350141197113320e+05 -Total_plasma_pressure_at_point_73________________________________________ (pres_plasma_thermal_total_profile73)_ 7.88538963706087321e+05 -Total_plasma_pressure_at_point_74________________________________________ (pres_plasma_thermal_total_profile74)_ 7.87717110633031116e+05 -Total_plasma_pressure_at_point_75________________________________________ (pres_plasma_thermal_total_profile75)_ 7.86884602979588322e+05 -Total_plasma_pressure_at_point_76________________________________________ (pres_plasma_thermal_total_profile76)_ 7.86041462027453468e+05 -Total_plasma_pressure_at_point_77________________________________________ (pres_plasma_thermal_total_profile77)_ 7.85187709338141256e+05 -Total_plasma_pressure_at_point_78________________________________________ (pres_plasma_thermal_total_profile78)_ 7.84323366752752336e+05 -Total_plasma_pressure_at_point_79________________________________________ (pres_plasma_thermal_total_profile79)_ 7.83448456391738029e+05 -Total_plasma_pressure_at_point_80________________________________________ (pres_plasma_thermal_total_profile80)_ 7.82563000654658768e+05 -Total_plasma_pressure_at_point_81________________________________________ (pres_plasma_thermal_total_profile81)_ 7.81667022219941951e+05 -Total_plasma_pressure_at_point_82________________________________________ (pres_plasma_thermal_total_profile82)_ 7.80760544044634327e+05 -Total_plasma_pressure_at_point_83________________________________________ (pres_plasma_thermal_total_profile83)_ 7.79843589364155196e+05 -Total_plasma_pressure_at_point_84________________________________________ (pres_plasma_thermal_total_profile84)_ 7.78916181692042155e+05 -Total_plasma_pressure_at_point_85________________________________________ (pres_plasma_thermal_total_profile85)_ 7.77978344819696038e+05 -Total_plasma_pressure_at_point_86________________________________________ (pres_plasma_thermal_total_profile86)_ 7.77030102816122118e+05 -Total_plasma_pressure_at_point_87________________________________________ (pres_plasma_thermal_total_profile87)_ 7.76071480027668877e+05 -Total_plasma_pressure_at_point_88________________________________________ (pres_plasma_thermal_total_profile88)_ 7.75102501077763736e+05 -Total_plasma_pressure_at_point_89________________________________________ (pres_plasma_thermal_total_profile89)_ 7.74123190866643330e+05 -Total_plasma_pressure_at_point_90________________________________________ (pres_plasma_thermal_total_profile90)_ 7.73133574571084464e+05 -Total_plasma_pressure_at_point_91________________________________________ (pres_plasma_thermal_total_profile91)_ 7.72133677644129028e+05 -Total_plasma_pressure_at_point_92________________________________________ (pres_plasma_thermal_total_profile92)_ 7.71123525814806810e+05 -Total_plasma_pressure_at_point_93________________________________________ (pres_plasma_thermal_total_profile93)_ 7.70103145087856101e+05 -Total_plasma_pressure_at_point_94________________________________________ (pres_plasma_thermal_total_profile94)_ 7.69072561743438710e+05 -Total_plasma_pressure_at_point_95________________________________________ (pres_plasma_thermal_total_profile95)_ 7.68031802336855093e+05 -Total_plasma_pressure_at_point_96________________________________________ (pres_plasma_thermal_total_profile96)_ 7.66980893698254367e+05 -Total_plasma_pressure_at_point_97________________________________________ (pres_plasma_thermal_total_profile97)_ 7.65919862932340708e+05 -Total_plasma_pressure_at_point_98________________________________________ (pres_plasma_thermal_total_profile98)_ 7.64848737418078701e+05 -Total_plasma_pressure_at_point_99________________________________________ (pres_plasma_thermal_total_profile99)_ 7.63767544808394276e+05 -Total_plasma_pressure_at_point_100_______________________________________ (pres_plasma_thermal_total_profile100)_ 7.62676313029872486e+05 -Total_plasma_pressure_at_point_101_______________________________________ (pres_plasma_thermal_total_profile101)_ 7.61575070282452274e+05 -Total_plasma_pressure_at_point_102_______________________________________ (pres_plasma_thermal_total_profile102)_ 7.60463845039119245e+05 -Total_plasma_pressure_at_point_103_______________________________________ (pres_plasma_thermal_total_profile103)_ 7.59342666045593563e+05 -Total_plasma_pressure_at_point_104_______________________________________ (pres_plasma_thermal_total_profile104)_ 7.58211562320016441e+05 -Total_plasma_pressure_at_point_105_______________________________________ (pres_plasma_thermal_total_profile105)_ 7.57070563152631978e+05 -Total_plasma_pressure_at_point_106_______________________________________ (pres_plasma_thermal_total_profile106)_ 7.55919698105466668e+05 -Total_plasma_pressure_at_point_107_______________________________________ (pres_plasma_thermal_total_profile107)_ 7.54758997012007632e+05 -Total_plasma_pressure_at_point_108_______________________________________ (pres_plasma_thermal_total_profile108)_ 7.53588489976873156e+05 -Total_plasma_pressure_at_point_109_______________________________________ (pres_plasma_thermal_total_profile109)_ 7.52408207375485450e+05 -Total_plasma_pressure_at_point_110_______________________________________ (pres_plasma_thermal_total_profile110)_ 7.51218179853736539e+05 -Total_plasma_pressure_at_point_111_______________________________________ (pres_plasma_thermal_total_profile111)_ 7.50018438327653101e+05 -Total_plasma_pressure_at_point_112_______________________________________ (pres_plasma_thermal_total_profile112)_ 7.48809013983057346e+05 -Total_plasma_pressure_at_point_113_______________________________________ (pres_plasma_thermal_total_profile113)_ 7.47589938275224529e+05 -Total_plasma_pressure_at_point_114_______________________________________ (pres_plasma_thermal_total_profile114)_ 7.46361242928538355e+05 -Total_plasma_pressure_at_point_115_______________________________________ (pres_plasma_thermal_total_profile115)_ 7.45122959936143365e+05 -Total_plasma_pressure_at_point_116_______________________________________ (pres_plasma_thermal_total_profile116)_ 7.43875121559592895e+05 -Total_plasma_pressure_at_point_117_______________________________________ (pres_plasma_thermal_total_profile117)_ 7.42617760328495409e+05 -Total_plasma_pressure_at_point_118_______________________________________ (pres_plasma_thermal_total_profile118)_ 7.41350909040156752e+05 -Total_plasma_pressure_at_point_119_______________________________________ (pres_plasma_thermal_total_profile119)_ 7.40074600759220193e+05 -Total_plasma_pressure_at_point_120_______________________________________ (pres_plasma_thermal_total_profile120)_ 7.38788868817302748e+05 -Total_plasma_pressure_at_point_121_______________________________________ (pres_plasma_thermal_total_profile121)_ 7.37493746812629164e+05 -Total_plasma_pressure_at_point_122_______________________________________ (pres_plasma_thermal_total_profile122)_ 7.36189268609661842e+05 -Total_plasma_pressure_at_point_123_______________________________________ (pres_plasma_thermal_total_profile123)_ 7.34875468338728650e+05 -Total_plasma_pressure_at_point_124_______________________________________ (pres_plasma_thermal_total_profile124)_ 7.33552380395647255e+05 -Total_plasma_pressure_at_point_125_______________________________________ (pres_plasma_thermal_total_profile125)_ 7.32220039441347122e+05 -Total_plasma_pressure_at_point_126_______________________________________ (pres_plasma_thermal_total_profile126)_ 7.30878480401486973e+05 -Total_plasma_pressure_at_point_127_______________________________________ (pres_plasma_thermal_total_profile127)_ 7.29527738466070150e+05 -Total_plasma_pressure_at_point_128_______________________________________ (pres_plasma_thermal_total_profile128)_ 7.28167849089057418e+05 -Total_plasma_pressure_at_point_129_______________________________________ (pres_plasma_thermal_total_profile129)_ 7.26798847987976624e+05 -Total_plasma_pressure_at_point_130_______________________________________ (pres_plasma_thermal_total_profile130)_ 7.25420771143528167e+05 -Total_plasma_pressure_at_point_131_______________________________________ (pres_plasma_thermal_total_profile131)_ 7.24033654799188022e+05 -Total_plasma_pressure_at_point_132_______________________________________ (pres_plasma_thermal_total_profile132)_ 7.22637535460809944e+05 -Total_plasma_pressure_at_point_133_______________________________________ (pres_plasma_thermal_total_profile133)_ 7.21232449896219769e+05 -Total_plasma_pressure_at_point_134_______________________________________ (pres_plasma_thermal_total_profile134)_ 7.19818435134812491e+05 -Total_plasma_pressure_at_point_135_______________________________________ (pres_plasma_thermal_total_profile135)_ 7.18395528467141907e+05 -Total_plasma_pressure_at_point_136_______________________________________ (pres_plasma_thermal_total_profile136)_ 7.16963767444509780e+05 -Total_plasma_pressure_at_point_137_______________________________________ (pres_plasma_thermal_total_profile137)_ 7.15523189878549660e+05 -Total_plasma_pressure_at_point_138_______________________________________ (pres_plasma_thermal_total_profile138)_ 7.14073833840811742e+05 -Total_plasma_pressure_at_point_139_______________________________________ (pres_plasma_thermal_total_profile139)_ 7.12615737662340049e+05 -Total_plasma_pressure_at_point_140_______________________________________ (pres_plasma_thermal_total_profile140)_ 7.11148939933250076e+05 -Total_plasma_pressure_at_point_141_______________________________________ (pres_plasma_thermal_total_profile141)_ 7.09673479502301314e+05 -Total_plasma_pressure_at_point_142_______________________________________ (pres_plasma_thermal_total_profile142)_ 7.08189395476468839e+05 -Total_plasma_pressure_at_point_143_______________________________________ (pres_plasma_thermal_total_profile143)_ 7.06696727220510831e+05 -Total_plasma_pressure_at_point_144_______________________________________ (pres_plasma_thermal_total_profile144)_ 7.05195514356531668e+05 -Total_plasma_pressure_at_point_145_______________________________________ (pres_plasma_thermal_total_profile145)_ 7.03685796763545601e+05 -Total_plasma_pressure_at_point_146_______________________________________ (pres_plasma_thermal_total_profile146)_ 7.02167614577035070e+05 -Total_plasma_pressure_at_point_147_______________________________________ (pres_plasma_thermal_total_profile147)_ 7.00641008188505657e+05 -Total_plasma_pressure_at_point_148_______________________________________ (pres_plasma_thermal_total_profile148)_ 6.99106018245040090e+05 -Total_plasma_pressure_at_point_149_______________________________________ (pres_plasma_thermal_total_profile149)_ 6.97562685648848070e+05 -Total_plasma_pressure_at_point_150_______________________________________ (pres_plasma_thermal_total_profile150)_ 6.96011051556813996e+05 -Total_plasma_pressure_at_point_151_______________________________________ (pres_plasma_thermal_total_profile151)_ 6.94451157380040153e+05 -Total_plasma_pressure_at_point_152_______________________________________ (pres_plasma_thermal_total_profile152)_ 6.92883044783388963e+05 -Total_plasma_pressure_at_point_153_______________________________________ (pres_plasma_thermal_total_profile153)_ 6.91306755685022450e+05 -Total_plasma_pressure_at_point_154_______________________________________ (pres_plasma_thermal_total_profile154)_ 6.89722332255936228e+05 -Total_plasma_pressure_at_point_155_______________________________________ (pres_plasma_thermal_total_profile155)_ 6.88129816919493955e+05 -Total_plasma_pressure_at_point_156_______________________________________ (pres_plasma_thermal_total_profile156)_ 6.86529252350957133e+05 -Total_plasma_pressure_at_point_157_______________________________________ (pres_plasma_thermal_total_profile157)_ 6.84920681477012113e+05 -Total_plasma_pressure_at_point_158_______________________________________ (pres_plasma_thermal_total_profile158)_ 6.83304147475294769e+05 -Total_plasma_pressure_at_point_159_______________________________________ (pres_plasma_thermal_total_profile159)_ 6.81679693773912732e+05 -Total_plasma_pressure_at_point_160_______________________________________ (pres_plasma_thermal_total_profile160)_ 6.80047364050963428e+05 -Total_plasma_pressure_at_point_161_______________________________________ (pres_plasma_thermal_total_profile161)_ 6.78407202234051423e+05 -Total_plasma_pressure_at_point_162_______________________________________ (pres_plasma_thermal_total_profile162)_ 6.76759252499801107e+05 -Total_plasma_pressure_at_point_163_______________________________________ (pres_plasma_thermal_total_profile163)_ 6.75103559273367515e+05 -Total_plasma_pressure_at_point_164_______________________________________ (pres_plasma_thermal_total_profile164)_ 6.73440167227945058e+05 -Total_plasma_pressure_at_point_165_______________________________________ (pres_plasma_thermal_total_profile165)_ 6.71769121284271358e+05 -Total_plasma_pressure_at_point_166_______________________________________ (pres_plasma_thermal_total_profile166)_ 6.70090466610131552e+05 -Total_plasma_pressure_at_point_167_______________________________________ (pres_plasma_thermal_total_profile167)_ 6.68404248619857477e+05 -Total_plasma_pressure_at_point_168_______________________________________ (pres_plasma_thermal_total_profile168)_ 6.66710512973824283e+05 -Total_plasma_pressure_at_point_169_______________________________________ (pres_plasma_thermal_total_profile169)_ 6.65009305577946827e+05 -Total_plasma_pressure_at_point_170_______________________________________ (pres_plasma_thermal_total_profile170)_ 6.63300672583169304e+05 -Total_plasma_pressure_at_point_171_______________________________________ (pres_plasma_thermal_total_profile171)_ 6.61584660384956864e+05 -Total_plasma_pressure_at_point_172_______________________________________ (pres_plasma_thermal_total_profile172)_ 6.59861315622781171e+05 -Total_plasma_pressure_at_point_173_______________________________________ (pres_plasma_thermal_total_profile173)_ 6.58130685179604799e+05 -Total_plasma_pressure_at_point_174_______________________________________ (pres_plasma_thermal_total_profile174)_ 6.56392816181363421e+05 -Total_plasma_pressure_at_point_175_______________________________________ (pres_plasma_thermal_total_profile175)_ 6.54647755996444379e+05 -Total_plasma_pressure_at_point_176_______________________________________ (pres_plasma_thermal_total_profile176)_ 6.52895552235163283e+05 -Total_plasma_pressure_at_point_177_______________________________________ (pres_plasma_thermal_total_profile177)_ 6.51136252749238978e+05 -Total_plasma_pressure_at_point_178_______________________________________ (pres_plasma_thermal_total_profile178)_ 6.49369905631263624e+05 -Total_plasma_pressure_at_point_179_______________________________________ (pres_plasma_thermal_total_profile179)_ 6.47596559214173816e+05 -Total_plasma_pressure_at_point_180_______________________________________ (pres_plasma_thermal_total_profile180)_ 6.45816262070715660e+05 -Total_plasma_pressure_at_point_181_______________________________________ (pres_plasma_thermal_total_profile181)_ 6.44029063012910541e+05 -Total_plasma_pressure_at_point_182_______________________________________ (pres_plasma_thermal_total_profile182)_ 6.42235011091516004e+05 -Total_plasma_pressure_at_point_183_______________________________________ (pres_plasma_thermal_total_profile183)_ 6.40434155595485470e+05 -Total_plasma_pressure_at_point_184_______________________________________ (pres_plasma_thermal_total_profile184)_ 6.38626546051426674e+05 -Total_plasma_pressure_at_point_185_______________________________________ (pres_plasma_thermal_total_profile185)_ 6.36812232223055325e+05 -Total_plasma_pressure_at_point_186_______________________________________ (pres_plasma_thermal_total_profile186)_ 6.34991264110648539e+05 -Total_plasma_pressure_at_point_187_______________________________________ (pres_plasma_thermal_total_profile187)_ 6.33163691950494656e+05 -Total_plasma_pressure_at_point_188_______________________________________ (pres_plasma_thermal_total_profile188)_ 6.31329566214342369e+05 -Total_plasma_pressure_at_point_189_______________________________________ (pres_plasma_thermal_total_profile189)_ 6.29488937608846347e+05 -Total_plasma_pressure_at_point_190_______________________________________ (pres_plasma_thermal_total_profile190)_ 6.27641857075010543e+05 -Total_plasma_pressure_at_point_191_______________________________________ (pres_plasma_thermal_total_profile191)_ 6.25788375787631143e+05 -Total_plasma_pressure_at_point_192_______________________________________ (pres_plasma_thermal_total_profile192)_ 6.23928545154734864e+05 -Total_plasma_pressure_at_point_193_______________________________________ (pres_plasma_thermal_total_profile193)_ 6.22062416817017598e+05 -Total_plasma_pressure_at_point_194_______________________________________ (pres_plasma_thermal_total_profile194)_ 6.20190042647279450e+05 -Total_plasma_pressure_at_point_195_______________________________________ (pres_plasma_thermal_total_profile195)_ 6.18311474749858491e+05 -Total_plasma_pressure_at_point_196_______________________________________ (pres_plasma_thermal_total_profile196)_ 6.16426765460062074e+05 -Total_plasma_pressure_at_point_197_______________________________________ (pres_plasma_thermal_total_profile197)_ 6.14535967343596742e+05 -Total_plasma_pressure_at_point_198_______________________________________ (pres_plasma_thermal_total_profile198)_ 6.12639133195996052e+05 -Total_plasma_pressure_at_point_199_______________________________________ (pres_plasma_thermal_total_profile199)_ 6.10736316042046528e+05 -Total_plasma_pressure_at_point_200_______________________________________ (pres_plasma_thermal_total_profile200)_ 6.08827569135211408e+05 -Total_plasma_pressure_at_point_201_______________________________________ (pres_plasma_thermal_total_profile201)_ 6.06912945957053220e+05 -Total_plasma_pressure_at_point_202_______________________________________ (pres_plasma_thermal_total_profile202)_ 6.04992500216654618e+05 -Total_plasma_pressure_at_point_203_______________________________________ (pres_plasma_thermal_total_profile203)_ 6.03066285850037122e+05 -Total_plasma_pressure_at_point_204_______________________________________ (pres_plasma_thermal_total_profile204)_ 6.01134357019578805e+05 -Total_plasma_pressure_at_point_205_______________________________________ (pres_plasma_thermal_total_profile205)_ 5.99196768113429425e+05 -Total_plasma_pressure_at_point_206_______________________________________ (pres_plasma_thermal_total_profile206)_ 5.97253573744925205e+05 -Total_plasma_pressure_at_point_207_______________________________________ (pres_plasma_thermal_total_profile207)_ 5.95304828752001049e+05 -Total_plasma_pressure_at_point_208_______________________________________ (pres_plasma_thermal_total_profile208)_ 5.93350588196602417e+05 -Total_plasma_pressure_at_point_209_______________________________________ (pres_plasma_thermal_total_profile209)_ 5.91390907364094746e+05 -Total_plasma_pressure_at_point_210_______________________________________ (pres_plasma_thermal_total_profile210)_ 5.89425841762672295e+05 -Total_plasma_pressure_at_point_211_______________________________________ (pres_plasma_thermal_total_profile211)_ 5.87455447122765705e+05 -Total_plasma_pressure_at_point_212_______________________________________ (pres_plasma_thermal_total_profile212)_ 5.85479779396447004e+05 -Total_plasma_pressure_at_point_213_______________________________________ (pres_plasma_thermal_total_profile213)_ 5.83498894756835885e+05 -Total_plasma_pressure_at_point_214_______________________________________ (pres_plasma_thermal_total_profile214)_ 5.81512849597502500e+05 -Total_plasma_pressure_at_point_215_______________________________________ (pres_plasma_thermal_total_profile215)_ 5.79521700531870825e+05 -Total_plasma_pressure_at_point_216_______________________________________ (pres_plasma_thermal_total_profile216)_ 5.77525504392620875e+05 -Total_plasma_pressure_at_point_217_______________________________________ (pres_plasma_thermal_total_profile217)_ 5.75524318231088342e+05 -Total_plasma_pressure_at_point_218_______________________________________ (pres_plasma_thermal_total_profile218)_ 5.73518199316666112e+05 -Total_plasma_pressure_at_point_219_______________________________________ (pres_plasma_thermal_total_profile219)_ 5.71507205136201927e+05 -Total_plasma_pressure_at_point_220_______________________________________ (pres_plasma_thermal_total_profile220)_ 5.69491393393399077e+05 -Total_plasma_pressure_at_point_221_______________________________________ (pres_plasma_thermal_total_profile221)_ 5.67470822008212795e+05 -Total_plasma_pressure_at_point_222_______________________________________ (pres_plasma_thermal_total_profile222)_ 5.65445549116248032e+05 -Total_plasma_pressure_at_point_223_______________________________________ (pres_plasma_thermal_total_profile223)_ 5.63415633068157127e+05 -Total_plasma_pressure_at_point_224_______________________________________ (pres_plasma_thermal_total_profile224)_ 5.61381132429036079e+05 -Total_plasma_pressure_at_point_225_______________________________________ (pres_plasma_thermal_total_profile225)_ 5.59342105977820000e+05 -Total_plasma_pressure_at_point_226_______________________________________ (pres_plasma_thermal_total_profile226)_ 5.57298612706680899e+05 -Total_plasma_pressure_at_point_227_______________________________________ (pres_plasma_thermal_total_profile227)_ 5.55250711820421740e+05 -Total_plasma_pressure_at_point_228_______________________________________ (pres_plasma_thermal_total_profile228)_ 5.53198462735873880e+05 -Total_plasma_pressure_at_point_229_______________________________________ (pres_plasma_thermal_total_profile229)_ 5.51141925081292866e+05 -Total_plasma_pressure_at_point_230_______________________________________ (pres_plasma_thermal_total_profile230)_ 5.49081158695753664e+05 -Total_plasma_pressure_at_point_231_______________________________________ (pres_plasma_thermal_total_profile231)_ 5.47016223628547508e+05 -Total_plasma_pressure_at_point_232_______________________________________ (pres_plasma_thermal_total_profile232)_ 5.44947180138579570e+05 -Total_plasma_pressure_at_point_233_______________________________________ (pres_plasma_thermal_total_profile233)_ 5.42874088693764759e+05 -Total_plasma_pressure_at_point_234_______________________________________ (pres_plasma_thermal_total_profile234)_ 5.40797009970426327e+05 -Total_plasma_pressure_at_point_235_______________________________________ (pres_plasma_thermal_total_profile235)_ 5.38716004852694226e+05 -Total_plasma_pressure_at_point_236_______________________________________ (pres_plasma_thermal_total_profile236)_ 5.36631134431903833e+05 -Total_plasma_pressure_at_point_237_______________________________________ (pres_plasma_thermal_total_profile237)_ 5.34542460005997214e+05 -Total_plasma_pressure_at_point_238_______________________________________ (pres_plasma_thermal_total_profile238)_ 5.32450043078923831e+05 -Total_plasma_pressure_at_point_239_______________________________________ (pres_plasma_thermal_total_profile239)_ 5.30353945360041922e+05 -Total_plasma_pressure_at_point_240_______________________________________ (pres_plasma_thermal_total_profile240)_ 5.28254228763523861e+05 -Total_plasma_pressure_at_point_241_______________________________________ (pres_plasma_thermal_total_profile241)_ 5.26150955407759873e+05 -Total_plasma_pressure_at_point_242_______________________________________ (pres_plasma_thermal_total_profile242)_ 5.24044187614765367e+05 -Total_plasma_pressure_at_point_243_______________________________________ (pres_plasma_thermal_total_profile243)_ 5.21933987909589196e+05 -Total_plasma_pressure_at_point_244_______________________________________ (pres_plasma_thermal_total_profile244)_ 5.19820419019724242e+05 -Total_plasma_pressure_at_point_245_______________________________________ (pres_plasma_thermal_total_profile245)_ 5.17703543874517665e+05 -Total_plasma_pressure_at_point_246_______________________________________ (pres_plasma_thermal_total_profile246)_ 5.15583425604588585e+05 -Total_plasma_pressure_at_point_247_______________________________________ (pres_plasma_thermal_total_profile247)_ 5.13460127541241702e+05 -Total_plasma_pressure_at_point_248_______________________________________ (pres_plasma_thermal_total_profile248)_ 5.11333713215887896e+05 -Total_plasma_pressure_at_point_249_______________________________________ (pres_plasma_thermal_total_profile249)_ 5.09204246359465062e+05 -Total_plasma_pressure_at_point_250_______________________________________ (pres_plasma_thermal_total_profile250)_ 5.07071790901864937e+05 -Total_plasma_pressure_at_point_251_______________________________________ (pres_plasma_thermal_total_profile251)_ 5.04936410971356789e+05 -Total_plasma_pressure_at_point_252_______________________________________ (pres_plasma_thermal_total_profile252)_ 5.02798170894022915e+05 -Total_plasma_pressure_at_point_253_______________________________________ (pres_plasma_thermal_total_profile253)_ 5.00657135193187860e+05 -Total_plasma_pressure_at_point_254_______________________________________ (pres_plasma_thermal_total_profile254)_ 4.98513368588860263e+05 -Total_plasma_pressure_at_point_255_______________________________________ (pres_plasma_thermal_total_profile255)_ 4.96366935997171619e+05 -Total_plasma_pressure_at_point_256_______________________________________ (pres_plasma_thermal_total_profile256)_ 4.94217902529823477e+05 -Total_plasma_pressure_at_point_257_______________________________________ (pres_plasma_thermal_total_profile257)_ 4.92066333493535523e+05 -Total_plasma_pressure_at_point_258_______________________________________ (pres_plasma_thermal_total_profile258)_ 4.89912294389501039e+05 -Total_plasma_pressure_at_point_259_______________________________________ (pres_plasma_thermal_total_profile259)_ 4.87755850912844646e+05 -Total_plasma_pressure_at_point_260_______________________________________ (pres_plasma_thermal_total_profile260)_ 4.85597068952086731e+05 -Total_plasma_pressure_at_point_261_______________________________________ (pres_plasma_thermal_total_profile261)_ 4.83436014588610618e+05 -Total_plasma_pressure_at_point_262_______________________________________ (pres_plasma_thermal_total_profile262)_ 4.81272754096138757e+05 -Total_plasma_pressure_at_point_263_______________________________________ (pres_plasma_thermal_total_profile263)_ 4.79107353940210945e+05 -Total_plasma_pressure_at_point_264_______________________________________ (pres_plasma_thermal_total_profile264)_ 4.76939880777670420e+05 -Total_plasma_pressure_at_point_265_______________________________________ (pres_plasma_thermal_total_profile265)_ 4.74770401456155581e+05 -Total_plasma_pressure_at_point_266_______________________________________ (pres_plasma_thermal_total_profile266)_ 4.72598983013598248e+05 -Total_plasma_pressure_at_point_267_______________________________________ (pres_plasma_thermal_total_profile267)_ 4.70425692677728366e+05 -Total_plasma_pressure_at_point_268_______________________________________ (pres_plasma_thermal_total_profile268)_ 4.68250597865587450e+05 -Total_plasma_pressure_at_point_269_______________________________________ (pres_plasma_thermal_total_profile269)_ 4.66073766183045576e+05 -Total_plasma_pressure_at_point_270_______________________________________ (pres_plasma_thermal_total_profile270)_ 4.63895265424331650e+05 -Total_plasma_pressure_at_point_271_______________________________________ (pres_plasma_thermal_total_profile271)_ 4.61715163571564830e+05 -Total_plasma_pressure_at_point_272_______________________________________ (pres_plasma_thermal_total_profile272)_ 4.59533528794301732e+05 -Total_plasma_pressure_at_point_273_______________________________________ (pres_plasma_thermal_total_profile273)_ 4.57350429449086019e+05 -Total_plasma_pressure_at_point_274_______________________________________ (pres_plasma_thermal_total_profile274)_ 4.55165934079011669e+05 -Total_plasma_pressure_at_point_275_______________________________________ (pres_plasma_thermal_total_profile275)_ 4.52980111413291655e+05 -Total_plasma_pressure_at_point_276_______________________________________ (pres_plasma_thermal_total_profile276)_ 4.50793030366840598e+05 -Total_plasma_pressure_at_point_277_______________________________________ (pres_plasma_thermal_total_profile277)_ 4.48604760039865039e+05 -Total_plasma_pressure_at_point_278_______________________________________ (pres_plasma_thermal_total_profile278)_ 4.46415369717464666e+05 -Total_plasma_pressure_at_point_279_______________________________________ (pres_plasma_thermal_total_profile279)_ 4.44224928869244759e+05 -Total_plasma_pressure_at_point_280_______________________________________ (pres_plasma_thermal_total_profile280)_ 4.42033507148942328e+05 -Total_plasma_pressure_at_point_281_______________________________________ (pres_plasma_thermal_total_profile281)_ 4.39841174394060043e+05 -Total_plasma_pressure_at_point_282_______________________________________ (pres_plasma_thermal_total_profile282)_ 4.37648000625516463e+05 -Total_plasma_pressure_at_point_283_______________________________________ (pres_plasma_thermal_total_profile283)_ 4.35454056047307036e+05 -Total_plasma_pressure_at_point_284_______________________________________ (pres_plasma_thermal_total_profile284)_ 4.33259411046180408e+05 -Total_plasma_pressure_at_point_285_______________________________________ (pres_plasma_thermal_total_profile285)_ 4.31064136191326543e+05 -Total_plasma_pressure_at_point_286_______________________________________ (pres_plasma_thermal_total_profile286)_ 4.28868302234081260e+05 -Total_plasma_pressure_at_point_287_______________________________________ (pres_plasma_thermal_total_profile287)_ 4.26671980107645039e+05 -Total_plasma_pressure_at_point_288_______________________________________ (pres_plasma_thermal_total_profile288)_ 4.24475240926817118e+05 -Total_plasma_pressure_at_point_289_______________________________________ (pres_plasma_thermal_total_profile289)_ 4.22278155987747712e+05 -Total_plasma_pressure_at_point_290_______________________________________ (pres_plasma_thermal_total_profile290)_ 4.20080796767704363e+05 -Total_plasma_pressure_at_point_291_______________________________________ (pres_plasma_thermal_total_profile291)_ 4.17883234924858785e+05 -Total_plasma_pressure_at_point_292_______________________________________ (pres_plasma_thermal_total_profile292)_ 4.15685542298089247e+05 -Total_plasma_pressure_at_point_293_______________________________________ (pres_plasma_thermal_total_profile293)_ 4.13487790906804148e+05 -Total_plasma_pressure_at_point_294_______________________________________ (pres_plasma_thermal_total_profile294)_ 4.11290052950783633e+05 -Total_plasma_pressure_at_point_295_______________________________________ (pres_plasma_thermal_total_profile295)_ 4.09092400810042629e+05 -Total_plasma_pressure_at_point_296_______________________________________ (pres_plasma_thermal_total_profile296)_ 4.06894907044713851e+05 -Total_plasma_pressure_at_point_297_______________________________________ (pres_plasma_thermal_total_profile297)_ 4.04697644394954492e+05 -Total_plasma_pressure_at_point_298_______________________________________ (pres_plasma_thermal_total_profile298)_ 4.02500685780873289e+05 -Total_plasma_pressure_at_point_299_______________________________________ (pres_plasma_thermal_total_profile299)_ 4.00304104302483727e+05 -Total_plasma_pressure_at_point_300_______________________________________ (pres_plasma_thermal_total_profile300)_ 3.98107973239679122e+05 -Total_plasma_pressure_at_point_301_______________________________________ (pres_plasma_thermal_total_profile301)_ 3.95912366052236233e+05 -Total_plasma_pressure_at_point_302_______________________________________ (pres_plasma_thermal_total_profile302)_ 3.93717356379841454e+05 -Total_plasma_pressure_at_point_303_______________________________________ (pres_plasma_thermal_total_profile303)_ 3.91523018042147160e+05 -Total_plasma_pressure_at_point_304_______________________________________ (pres_plasma_thermal_total_profile304)_ 3.89329425038855290e+05 -Total_plasma_pressure_at_point_305_______________________________________ (pres_plasma_thermal_total_profile305)_ 3.87136651549830800e+05 -Total_plasma_pressure_at_point_306_______________________________________ (pres_plasma_thermal_total_profile306)_ 3.84944771935244557e+05 -Total_plasma_pressure_at_point_307_______________________________________ (pres_plasma_thermal_total_profile307)_ 3.82753860735748778e+05 -Total_plasma_pressure_at_point_308_______________________________________ (pres_plasma_thermal_total_profile308)_ 3.80563992672684311e+05 -Total_plasma_pressure_at_point_309_______________________________________ (pres_plasma_thermal_total_profile309)_ 3.78375242648323765e+05 -Total_plasma_pressure_at_point_310_______________________________________ (pres_plasma_thermal_total_profile310)_ 3.76187685746147064e+05 -Total_plasma_pressure_at_point_311_______________________________________ (pres_plasma_thermal_total_profile311)_ 3.74001397231156414e+05 -Total_plasma_pressure_at_point_312_______________________________________ (pres_plasma_thermal_total_profile312)_ 3.71816452550225891e+05 -Total_plasma_pressure_at_point_313_______________________________________ (pres_plasma_thermal_total_profile313)_ 3.69632927332494757e+05 -Total_plasma_pressure_at_point_314_______________________________________ (pres_plasma_thermal_total_profile314)_ 3.67450897389796679e+05 -Total_plasma_pressure_at_point_315_______________________________________ (pres_plasma_thermal_total_profile315)_ 3.65270438717135228e+05 -Total_plasma_pressure_at_point_316_______________________________________ (pres_plasma_thermal_total_profile316)_ 3.63091627493200591e+05 -Total_plasma_pressure_at_point_317_______________________________________ (pres_plasma_thermal_total_profile317)_ 3.60914540080933773e+05 -Total_plasma_pressure_at_point_318_______________________________________ (pres_plasma_thermal_total_profile318)_ 3.58739253028135980e+05 -Total_plasma_pressure_at_point_319_______________________________________ (pres_plasma_thermal_total_profile319)_ 3.56565843068129499e+05 -Total_plasma_pressure_at_point_320_______________________________________ (pres_plasma_thermal_total_profile320)_ 3.54394387120466679e+05 -Total_plasma_pressure_at_point_321_______________________________________ (pres_plasma_thermal_total_profile321)_ 3.52224962291694013e+05 -Total_plasma_pressure_at_point_322_______________________________________ (pres_plasma_thermal_total_profile322)_ 3.50057645876169670e+05 -Total_plasma_pressure_at_point_323_______________________________________ (pres_plasma_thermal_total_profile323)_ 3.47892515356938762e+05 -Total_plasma_pressure_at_point_324_______________________________________ (pres_plasma_thermal_total_profile324)_ 3.45729648406666005e+05 -Total_plasma_pressure_at_point_325_______________________________________ (pres_plasma_thermal_total_profile325)_ 3.43569122888632410e+05 -Total_plasma_pressure_at_point_326_______________________________________ (pres_plasma_thermal_total_profile326)_ 3.41411016857791983e+05 -Total_plasma_pressure_at_point_327_______________________________________ (pres_plasma_thermal_total_profile327)_ 3.39255408561898279e+05 -Total_plasma_pressure_at_point_328_______________________________________ (pres_plasma_thermal_total_profile328)_ 3.37102376442696142e+05 -Total_plasma_pressure_at_point_329_______________________________________ (pres_plasma_thermal_total_profile329)_ 3.34951999137187551e+05 -Total_plasma_pressure_at_point_330_______________________________________ (pres_plasma_thermal_total_profile330)_ 3.32804355478968937e+05 -Total_plasma_pressure_at_point_331_______________________________________ (pres_plasma_thermal_total_profile331)_ 3.30659524499647436e+05 -Total_plasma_pressure_at_point_332_______________________________________ (pres_plasma_thermal_total_profile332)_ 3.28517585430335312e+05 -Total_plasma_pressure_at_point_333_______________________________________ (pres_plasma_thermal_total_profile333)_ 3.26378617703228956e+05 -Total_plasma_pressure_at_point_334_______________________________________ (pres_plasma_thermal_total_profile334)_ 3.24242700953273103e+05 -Total_plasma_pressure_at_point_335_______________________________________ (pres_plasma_thermal_total_profile335)_ 3.22109915019914391e+05 -Total_plasma_pressure_at_point_336_______________________________________ (pres_plasma_thermal_total_profile336)_ 3.19980339948949520e+05 -Total_plasma_pressure_at_point_337_______________________________________ (pres_plasma_thermal_total_profile337)_ 3.17854055994469149e+05 -Total_plasma_pressure_at_point_338_______________________________________ (pres_plasma_thermal_total_profile338)_ 3.15731143620902731e+05 -Total_plasma_pressure_at_point_339_______________________________________ (pres_plasma_thermal_total_profile339)_ 3.13611683505168825e+05 -Total_plasma_pressure_at_point_340_______________________________________ (pres_plasma_thermal_total_profile340)_ 3.11495756538933725e+05 -Total_plasma_pressure_at_point_341_______________________________________ (pres_plasma_thermal_total_profile341)_ 3.09383443830983597e+05 -Total_plasma_pressure_at_point_342_______________________________________ (pres_plasma_thermal_total_profile342)_ 3.07274826709715766e+05 -Total_plasma_pressure_at_point_343_______________________________________ (pres_plasma_thermal_total_profile343)_ 3.05169986725751252e+05 -Total_plasma_pressure_at_point_344_______________________________________ (pres_plasma_thermal_total_profile344)_ 3.03069005654677108e+05 -Total_plasma_pressure_at_point_345_______________________________________ (pres_plasma_thermal_total_profile345)_ 3.00971965499919781e+05 -Total_plasma_pressure_at_point_346_______________________________________ (pres_plasma_thermal_total_profile346)_ 2.98878948495759745e+05 -Total_plasma_pressure_at_point_347_______________________________________ (pres_plasma_thermal_total_profile347)_ 2.96790037110489095e+05 -Total_plasma_pressure_at_point_348_______________________________________ (pres_plasma_thermal_total_profile348)_ 2.94705314049720182e+05 -Total_plasma_pressure_at_point_349_______________________________________ (pres_plasma_thermal_total_profile349)_ 2.92624862259851070e+05 -Total_plasma_pressure_at_point_350_______________________________________ (pres_plasma_thermal_total_profile350)_ 2.90548764931695885e+05 -Total_plasma_pressure_at_point_351_______________________________________ (pres_plasma_thermal_total_profile351)_ 2.88477105504283099e+05 -Total_plasma_pressure_at_point_352_______________________________________ (pres_plasma_thermal_total_profile352)_ 2.86409967668836121e+05 -Total_plasma_pressure_at_point_353_______________________________________ (pres_plasma_thermal_total_profile353)_ 2.84347435372934327e+05 -Total_plasma_pressure_at_point_354_______________________________________ (pres_plasma_thermal_total_profile354)_ 2.82289592824872583e+05 -Total_plasma_pressure_at_point_355_______________________________________ (pres_plasma_thermal_total_profile355)_ 2.80236524498220126e+05 -Total_plasma_pressure_at_point_356_______________________________________ (pres_plasma_thermal_total_profile356)_ 2.78188315136591671e+05 -Total_plasma_pressure_at_point_357_______________________________________ (pres_plasma_thermal_total_profile357)_ 2.76145049758638721e+05 -Total_plasma_pressure_at_point_358_______________________________________ (pres_plasma_thermal_total_profile358)_ 2.74106813663271489e+05 -Total_plasma_pressure_at_point_359_______________________________________ (pres_plasma_thermal_total_profile359)_ 2.72073692435121164e+05 -Total_plasma_pressure_at_point_360_______________________________________ (pres_plasma_thermal_total_profile360)_ 2.70045771950254391e+05 -Total_plasma_pressure_at_point_361_______________________________________ (pres_plasma_thermal_total_profile361)_ 2.68023138382149627e+05 -Total_plasma_pressure_at_point_362_______________________________________ (pres_plasma_thermal_total_profile362)_ 2.66005878207949921e+05 -Total_plasma_pressure_at_point_363_______________________________________ (pres_plasma_thermal_total_profile363)_ 2.63994078215002490e+05 -Total_plasma_pressure_at_point_364_______________________________________ (pres_plasma_thermal_total_profile364)_ 2.61987825507699978e+05 -Total_plasma_pressure_at_point_365_______________________________________ (pres_plasma_thermal_total_profile365)_ 2.59987207514636859e+05 -Total_plasma_pressure_at_point_366_______________________________________ (pres_plasma_thermal_total_profile366)_ 2.57992311996096309e+05 -Total_plasma_pressure_at_point_367_______________________________________ (pres_plasma_thermal_total_profile367)_ 2.56003227051882423e+05 -Total_plasma_pressure_at_point_368_______________________________________ (pres_plasma_thermal_total_profile368)_ 2.54020041129515681e+05 -Total_plasma_pressure_at_point_369_______________________________________ (pres_plasma_thermal_total_profile369)_ 2.52042843032807810e+05 -Total_plasma_pressure_at_point_370_______________________________________ (pres_plasma_thermal_total_profile370)_ 2.50071721930835571e+05 -Total_plasma_pressure_at_point_371_______________________________________ (pres_plasma_thermal_total_profile371)_ 2.48106767367332766e+05 -Total_plasma_pressure_at_point_372_______________________________________ (pres_plasma_thermal_total_profile372)_ 2.46148069270520966e+05 -Total_plasma_pressure_at_point_373_______________________________________ (pres_plasma_thermal_total_profile373)_ 2.44195717963400763e+05 -Total_plasma_pressure_at_point_374_______________________________________ (pres_plasma_thermal_total_profile374)_ 2.42249804174528224e+05 -Total_plasma_pressure_at_point_375_______________________________________ (pres_plasma_thermal_total_profile375)_ 2.40310419049298274e+05 -Total_plasma_pressure_at_point_376_______________________________________ (pres_plasma_thermal_total_profile376)_ 2.38377654161764600e+05 -Total_plasma_pressure_at_point_377_______________________________________ (pres_plasma_thermal_total_profile377)_ 2.36451601527020568e+05 -Total_plasma_pressure_at_point_378_______________________________________ (pres_plasma_thermal_total_profile378)_ 2.34532353614173218e+05 -Total_plasma_pressure_at_point_379_______________________________________ (pres_plasma_thermal_total_profile379)_ 2.32620003359939408e+05 -Total_plasma_pressure_at_point_380_______________________________________ (pres_plasma_thermal_total_profile380)_ 2.30714644182898221e+05 -Total_plasma_pressure_at_point_381_______________________________________ (pres_plasma_thermal_total_profile381)_ 2.28816369998436305e+05 -Total_plasma_pressure_at_point_382_______________________________________ (pres_plasma_thermal_total_profile382)_ 2.26925275234419649e+05 -Total_plasma_pressure_at_point_383_______________________________________ (pres_plasma_thermal_total_profile383)_ 2.25041454847636924e+05 -Total_plasma_pressure_at_point_384_______________________________________ (pres_plasma_thermal_total_profile384)_ 2.23165004341052612e+05 -Total_plasma_pressure_at_point_385_______________________________________ (pres_plasma_thermal_total_profile385)_ 2.21296019781918469e+05 -Total_plasma_pressure_at_point_386_______________________________________ (pres_plasma_thermal_total_profile386)_ 2.19434597820788797e+05 -Total_plasma_pressure_at_point_387_______________________________________ (pres_plasma_thermal_total_profile387)_ 2.17580835711494408e+05 -Total_plasma_pressure_at_point_388_______________________________________ (pres_plasma_thermal_total_profile388)_ 2.15734831332127971e+05 -Total_plasma_pressure_at_point_389_______________________________________ (pres_plasma_thermal_total_profile389)_ 2.13896683207101072e+05 -Total_plasma_pressure_at_point_390_______________________________________ (pres_plasma_thermal_total_profile390)_ 2.12066490530335403e+05 -Total_plasma_pressure_at_point_391_______________________________________ (pres_plasma_thermal_total_profile391)_ 2.10244353189657675e+05 -Total_plasma_pressure_at_point_392_______________________________________ (pres_plasma_thermal_total_profile392)_ 2.08430371792467427e+05 -Total_plasma_pressure_at_point_393_______________________________________ (pres_plasma_thermal_total_profile393)_ 2.06624647692759114e+05 -Total_plasma_pressure_at_point_394_______________________________________ (pres_plasma_thermal_total_profile394)_ 2.04827283019579598e+05 -Total_plasma_pressure_at_point_395_______________________________________ (pres_plasma_thermal_total_profile395)_ 2.03038380707012344e+05 -Total_plasma_pressure_at_point_396_______________________________________ (pres_plasma_thermal_total_profile396)_ 2.01258044525782811e+05 -Total_plasma_pressure_at_point_397_______________________________________ (pres_plasma_thermal_total_profile397)_ 1.99486379116592201e+05 -Total_plasma_pressure_at_point_398_______________________________________ (pres_plasma_thermal_total_profile398)_ 1.97723490025287756e+05 -Total_plasma_pressure_at_point_399_______________________________________ (pres_plasma_thermal_total_profile399)_ 1.95969483739993913e+05 -Total_plasma_pressure_at_point_400_______________________________________ (pres_plasma_thermal_total_profile400)_ 1.94224467730331293e+05 -Total_plasma_pressure_at_point_401_______________________________________ (pres_plasma_thermal_total_profile401)_ 1.92488550488867913e+05 -Total_plasma_pressure_at_point_402_______________________________________ (pres_plasma_thermal_total_profile402)_ 1.90761841574951191e+05 -Total_plasma_pressure_at_point_403_______________________________________ (pres_plasma_thermal_total_profile403)_ 1.89044451661089755e+05 -Total_plasma_pressure_at_point_404_______________________________________ (pres_plasma_thermal_total_profile404)_ 1.87336492582059902e+05 -Total_plasma_pressure_at_point_405_______________________________________ (pres_plasma_thermal_total_profile405)_ 1.85638077386934950e+05 -Total_plasma_pressure_at_point_406_______________________________________ (pres_plasma_thermal_total_profile406)_ 1.83949320394244685e+05 -Total_plasma_pressure_at_point_407_______________________________________ (pres_plasma_thermal_total_profile407)_ 1.82270337250497774e+05 -Total_plasma_pressure_at_point_408_______________________________________ (pres_plasma_thermal_total_profile408)_ 1.80601244992313499e+05 -Total_plasma_pressure_at_point_409_______________________________________ (pres_plasma_thermal_total_profile409)_ 1.78942162112440739e+05 -Total_plasma_pressure_at_point_410_______________________________________ (pres_plasma_thermal_total_profile410)_ 1.77293208629955741e+05 -Total_plasma_pressure_at_point_411_______________________________________ (pres_plasma_thermal_total_profile411)_ 1.75654506164970546e+05 -Total_plasma_pressure_at_point_412_______________________________________ (pres_plasma_thermal_total_profile412)_ 1.74026178018203704e+05 -Total_plasma_pressure_at_point_413_______________________________________ (pres_plasma_thermal_total_profile413)_ 1.72408349255808716e+05 -Total_plasma_pressure_at_point_414_______________________________________ (pres_plasma_thermal_total_profile414)_ 1.70801146799886803e+05 -Total_plasma_pressure_at_point_415_______________________________________ (pres_plasma_thermal_total_profile415)_ 1.69204699525159347e+05 -Total_plasma_pressure_at_point_416_______________________________________ (pres_plasma_thermal_total_profile416)_ 1.67619138362319674e+05 -Total_plasma_pressure_at_point_417_______________________________________ (pres_plasma_thermal_total_profile417)_ 1.66044596408639656e+05 -Total_plasma_pressure_at_point_418_______________________________________ (pres_plasma_thermal_total_profile418)_ 1.64481209046467353e+05 -Total_plasma_pressure_at_point_419_______________________________________ (pres_plasma_thermal_total_profile419)_ 1.62929114070320386e+05 -Total_plasma_pressure_at_point_420_______________________________________ (pres_plasma_thermal_total_profile420)_ 1.61388451823356154e+05 -Total_plasma_pressure_at_point_421_______________________________________ (pres_plasma_thermal_total_profile421)_ 1.59859365344088757e+05 -Total_plasma_pressure_at_point_422_______________________________________ (pres_plasma_thermal_total_profile422)_ 1.58342000524321280e+05 -Total_plasma_pressure_at_point_423_______________________________________ (pres_plasma_thermal_total_profile423)_ 1.56836506279374706e+05 -Total_plasma_pressure_at_point_424_______________________________________ (pres_plasma_thermal_total_profile424)_ 1.55343034731822438e+05 -Total_plasma_pressure_at_point_425_______________________________________ (pres_plasma_thermal_total_profile425)_ 1.53861741410090297e+05 -Total_plasma_pressure_at_point_426_______________________________________ (pres_plasma_thermal_total_profile426)_ 1.52392785463443142e+05 -Total_plasma_pressure_at_point_427_______________________________________ (pres_plasma_thermal_total_profile427)_ 1.50936329895080824e+05 -Total_plasma_pressure_at_point_428_______________________________________ (pres_plasma_thermal_total_profile428)_ 1.49492541815283621e+05 -Total_plasma_pressure_at_point_429_______________________________________ (pres_plasma_thermal_total_profile429)_ 1.48061592716806859e+05 -Total_plasma_pressure_at_point_430_______________________________________ (pres_plasma_thermal_total_profile430)_ 1.46643658775025106e+05 -Total_plasma_pressure_at_point_431_______________________________________ (pres_plasma_thermal_total_profile431)_ 1.45238921175671916e+05 -Total_plasma_pressure_at_point_432_______________________________________ (pres_plasma_thermal_total_profile432)_ 1.43847566473430634e+05 -Total_plasma_pressure_at_point_433_______________________________________ (pres_plasma_thermal_total_profile433)_ 1.42469786985105922e+05 -Total_plasma_pressure_at_point_434_______________________________________ (pres_plasma_thermal_total_profile434)_ 1.41105781221670506e+05 -Total_plasma_pressure_at_point_435_______________________________________ (pres_plasma_thermal_total_profile435)_ 1.39755754364140972e+05 -Total_plasma_pressure_at_point_436_______________________________________ (pres_plasma_thermal_total_profile436)_ 1.38419918789029442e+05 -Total_plasma_pressure_at_point_437_______________________________________ (pres_plasma_thermal_total_profile437)_ 1.37098494650051405e+05 -Total_plasma_pressure_at_point_438_______________________________________ (pres_plasma_thermal_total_profile438)_ 1.35791710523902439e+05 -Total_plasma_pressure_at_point_439_______________________________________ (pres_plasma_thermal_total_profile439)_ 1.34499804129265831e+05 -Total_plasma_pressure_at_point_440_______________________________________ (pres_plasma_thermal_total_profile440)_ 1.33223023129861627e+05 -Total_plasma_pressure_at_point_441_______________________________________ (pres_plasma_thermal_total_profile441)_ 1.31961626034342800e+05 -Total_plasma_pressure_at_point_442_______________________________________ (pres_plasma_thermal_total_profile442)_ 1.30715883208298445e+05 -Total_plasma_pressure_at_point_443_______________________________________ (pres_plasma_thermal_total_profile443)_ 1.29486078016645319e+05 -Total_plasma_pressure_at_point_444_______________________________________ (pres_plasma_thermal_total_profile444)_ 1.28272508118446014e+05 -Total_plasma_pressure_at_point_445_______________________________________ (pres_plasma_thermal_total_profile445)_ 1.27075486940886418e+05 -Total_plasma_pressure_at_point_446_______________________________________ (pres_plasma_thermal_total_profile446)_ 1.25895345365074754e+05 -Total_plasma_pressure_at_point_447_______________________________________ (pres_plasma_thermal_total_profile447)_ 1.24732433663856136e+05 -Total_plasma_pressure_at_point_448_______________________________________ (pres_plasma_thermal_total_profile448)_ 1.23587123741515563e+05 -Total_plasma_pressure_at_point_449_______________________________________ (pres_plasma_thermal_total_profile449)_ 1.22459811737779819e+05 -Total_plasma_pressure_at_point_450_______________________________________ (pres_plasma_thermal_total_profile450)_ 1.21350921074970276e+05 -Total_plasma_pressure_at_point_451_______________________________________ (pres_plasma_thermal_total_profile451)_ 1.20260906048947509e+05 -Total_plasma_pressure_at_point_452_______________________________________ (pres_plasma_thermal_total_profile452)_ 1.19190256093757169e+05 -Total_plasma_pressure_at_point_453_______________________________________ (pres_plasma_thermal_total_profile453)_ 1.18139500889738643e+05 -Total_plasma_pressure_at_point_454_______________________________________ (pres_plasma_thermal_total_profile454)_ 1.17109216539974877e+05 -Total_plasma_pressure_at_point_455_______________________________________ (pres_plasma_thermal_total_profile455)_ 1.16100033117489744e+05 -Total_plasma_pressure_at_point_456_______________________________________ (pres_plasma_thermal_total_profile456)_ 1.15112643996750208e+05 -Total_plasma_pressure_at_point_457_______________________________________ (pres_plasma_thermal_total_profile457)_ 1.14147817545791244e+05 -Total_plasma_pressure_at_point_458_______________________________________ (pres_plasma_thermal_total_profile458)_ 1.13206411999414719e+05 -Total_plasma_pressure_at_point_459_______________________________________ (pres_plasma_thermal_total_profile459)_ 1.12289394710195280e+05 -Total_plasma_pressure_at_point_460_______________________________________ (pres_plasma_thermal_total_profile460)_ 1.11397867572442890e+05 -Total_plasma_pressure_at_point_461_______________________________________ (pres_plasma_thermal_total_profile461)_ 1.10533101401145846e+05 -Total_plasma_pressure_at_point_462_______________________________________ (pres_plasma_thermal_total_profile462)_ 1.09696583746475721e+05 -Total_plasma_pressure_at_point_463_______________________________________ (pres_plasma_thermal_total_profile463)_ 1.08890087701061741e+05 -Total_plasma_pressure_at_point_464_______________________________________ (pres_plasma_thermal_total_profile464)_ 1.08115775187883351e+05 -Total_plasma_pressure_at_point_465_______________________________________ (pres_plasma_thermal_total_profile465)_ 1.07376360573735757e+05 -Total_plasma_pressure_at_point_466_______________________________________ (pres_plasma_thermal_total_profile466)_ 1.06675388924683357e+05 -Total_plasma_pressure_at_point_467_______________________________________ (pres_plasma_thermal_total_profile467)_ 1.06017758403583735e+05 -Total_plasma_pressure_at_point_468_______________________________________ (pres_plasma_thermal_total_profile468)_ 1.05410858619412829e+05 -Total_plasma_pressure_at_point_469_______________________________________ (pres_plasma_thermal_total_profile469)_ 1.04867788844241499e+05 -Total_plasma_pressure_at_point_470_______________________________________ (pres_plasma_thermal_total_profile470)_ 1.04427198751717777e+05 -Total_plasma_pressure_at_point_471_______________________________________ (pres_plasma_thermal_total_profile471)_ 9.96231753196601348e+04 -Total_plasma_pressure_at_point_472_______________________________________ (pres_plasma_thermal_total_profile472)_ 9.49129688362136658e+04 -Total_plasma_pressure_at_point_473_______________________________________ (pres_plasma_thermal_total_profile473)_ 9.02965793013783696e+04 -Total_plasma_pressure_at_point_474_______________________________________ (pres_plasma_thermal_total_profile474)_ 8.57740067151542753e+04 -Total_plasma_pressure_at_point_475_______________________________________ (pres_plasma_thermal_total_profile475)_ 8.13452510775412957e+04 -Total_plasma_pressure_at_point_476_______________________________________ (pres_plasma_thermal_total_profile476)_ 7.70103123885395180e+04 -Total_plasma_pressure_at_point_477_______________________________________ (pres_plasma_thermal_total_profile477)_ 7.27691906481488841e+04 -Total_plasma_pressure_at_point_478_______________________________________ (pres_plasma_thermal_total_profile478)_ 6.86218858563694521e+04 -Total_plasma_pressure_at_point_479_______________________________________ (pres_plasma_thermal_total_profile479)_ 6.45683980132011566e+04 -Total_plasma_pressure_at_point_480_______________________________________ (pres_plasma_thermal_total_profile480)_ 6.06087271186440485e+04 -Total_plasma_pressure_at_point_481_______________________________________ (pres_plasma_thermal_total_profile481)_ 5.67428731726980914e+04 -Total_plasma_pressure_at_point_482_______________________________________ (pres_plasma_thermal_total_profile482)_ 5.29708361753633289e+04 -Total_plasma_pressure_at_point_483_______________________________________ (pres_plasma_thermal_total_profile483)_ 4.92926161266397175e+04 -Total_plasma_pressure_at_point_484_______________________________________ (pres_plasma_thermal_total_profile484)_ 4.57082130265272863e+04 -Total_plasma_pressure_at_point_485_______________________________________ (pres_plasma_thermal_total_profile485)_ 4.22176268750260133e+04 -Total_plasma_pressure_at_point_486_______________________________________ (pres_plasma_thermal_total_profile486)_ 3.88208576721359132e+04 -Total_plasma_pressure_at_point_487_______________________________________ (pres_plasma_thermal_total_profile487)_ 3.55179054178569859e+04 -Total_plasma_pressure_at_point_488_______________________________________ (pres_plasma_thermal_total_profile488)_ 3.23087701121892169e+04 -Total_plasma_pressure_at_point_489_______________________________________ (pres_plasma_thermal_total_profile489)_ 2.91934517551326207e+04 -Total_plasma_pressure_at_point_490_______________________________________ (pres_plasma_thermal_total_profile490)_ 2.61719503466872047e+04 -Total_plasma_pressure_at_point_491_______________________________________ (pres_plasma_thermal_total_profile491)_ 2.32442658868529470e+04 -Total_plasma_pressure_at_point_492_______________________________________ (pres_plasma_thermal_total_profile492)_ 2.04103983756298585e+04 -Total_plasma_pressure_at_point_493_______________________________________ (pres_plasma_thermal_total_profile493)_ 1.76703478130179428e+04 -Total_plasma_pressure_at_point_494_______________________________________ (pres_plasma_thermal_total_profile494)_ 1.50241141990171964e+04 -Total_plasma_pressure_at_point_495_______________________________________ (pres_plasma_thermal_total_profile495)_ 1.24716975336276137e+04 -Total_plasma_pressure_at_point_496_______________________________________ (pres_plasma_thermal_total_profile496)_ 1.00130978168492038e+04 -Total_plasma_pressure_at_point_497_______________________________________ (pres_plasma_thermal_total_profile497)_ 7.64831504868196134e+03 -Total_plasma_pressure_at_point_498_______________________________________ (pres_plasma_thermal_total_profile498)_ 5.37734922912588809e+03 -Total_plasma_pressure_at_point_499_______________________________________ (pres_plasma_thermal_total_profile499)_ 3.20020035818098404e+03 -Total_plasma_pressure_at_point_500_______________________________________ (pres_plasma_thermal_total_profile500)_ 1.11686843584724897e+03 -Total_plasma_electron_pressure_at_point_0________________________________ (pres_plasma_electron_profile0)_ 4.32409924704107281e+05 -Total_plasma_electron_pressure_at_point_1________________________________ (pres_plasma_electron_profile1)_ 4.32406903343600396e+05 -Total_plasma_electron_pressure_at_point_2________________________________ (pres_plasma_electron_profile2)_ 4.32397839338275313e+05 -Total_plasma_electron_pressure_at_point_3________________________________ (pres_plasma_electron_profile3)_ 4.32382732916715962e+05 -Total_plasma_electron_pressure_at_point_4________________________________ (pres_plasma_electron_profile4)_ 4.32361584459893813e+05 -Total_plasma_electron_pressure_at_point_5________________________________ (pres_plasma_electron_profile5)_ 4.32334394501163159e+05 -Total_plasma_electron_pressure_at_point_6________________________________ (pres_plasma_electron_profile6)_ 4.32301163726255065e+05 -Total_plasma_electron_pressure_at_point_7________________________________ (pres_plasma_electron_profile7)_ 4.32261892973270558e+05 -Total_plasma_electron_pressure_at_point_8________________________________ (pres_plasma_electron_profile8)_ 4.32216583232671488e+05 -Total_plasma_electron_pressure_at_point_9________________________________ (pres_plasma_electron_profile9)_ 4.32165235647269583e+05 -Total_plasma_electron_pressure_at_point_10_______________________________ (pres_plasma_electron_profile10)_ 4.32107851512214867e+05 -Total_plasma_electron_pressure_at_point_11_______________________________ (pres_plasma_electron_profile11)_ 4.32044432274981169e+05 -Total_plasma_electron_pressure_at_point_12_______________________________ (pres_plasma_electron_profile12)_ 4.31974979535351216e+05 -Total_plasma_electron_pressure_at_point_13_______________________________ (pres_plasma_electron_profile13)_ 4.31899495045398711e+05 -Total_plasma_electron_pressure_at_point_14_______________________________ (pres_plasma_electron_profile14)_ 4.31817980709470517e+05 -Total_plasma_electron_pressure_at_point_15_______________________________ (pres_plasma_electron_profile15)_ 4.31730438584165182e+05 -Total_plasma_electron_pressure_at_point_16_______________________________ (pres_plasma_electron_profile16)_ 4.31636870878312038e+05 -Total_plasma_electron_pressure_at_point_17_______________________________ (pres_plasma_electron_profile17)_ 4.31537279952946585e+05 -Total_plasma_electron_pressure_at_point_18_______________________________ (pres_plasma_electron_profile18)_ 4.31431668321285921e+05 -Total_plasma_electron_pressure_at_point_19_______________________________ (pres_plasma_electron_profile19)_ 4.31320038648701156e+05 -Total_plasma_electron_pressure_at_point_20_______________________________ (pres_plasma_electron_profile20)_ 4.31202393752689415e+05 -Total_plasma_electron_pressure_at_point_21_______________________________ (pres_plasma_electron_profile21)_ 4.31078736602843506e+05 -Total_plasma_electron_pressure_at_point_22_______________________________ (pres_plasma_electron_profile22)_ 4.30949070320819679e+05 -Total_plasma_electron_pressure_at_point_23_______________________________ (pres_plasma_electron_profile23)_ 4.30813398180304677e+05 -Total_plasma_electron_pressure_at_point_24_______________________________ (pres_plasma_electron_profile24)_ 4.30671723606980348e+05 -Total_plasma_electron_pressure_at_point_25_______________________________ (pres_plasma_electron_profile25)_ 4.30524050178487494e+05 -Total_plasma_electron_pressure_at_point_26_______________________________ (pres_plasma_electron_profile26)_ 4.30370381624386006e+05 -Total_plasma_electron_pressure_at_point_27_______________________________ (pres_plasma_electron_profile27)_ 4.30210721826117078e+05 -Total_plasma_electron_pressure_at_point_28_______________________________ (pres_plasma_electron_profile28)_ 4.30045074816959735e+05 -Total_plasma_electron_pressure_at_point_29_______________________________ (pres_plasma_electron_profile29)_ 4.29873444781988394e+05 -Total_plasma_electron_pressure_at_point_30_______________________________ (pres_plasma_electron_profile30)_ 4.29695836058027809e+05 -Total_plasma_electron_pressure_at_point_31_______________________________ (pres_plasma_electron_profile31)_ 4.29512253133606690e+05 -Total_plasma_electron_pressure_at_point_32_______________________________ (pres_plasma_electron_profile32)_ 4.29322700648909376e+05 -Total_plasma_electron_pressure_at_point_33_______________________________ (pres_plasma_electron_profile33)_ 4.29127183395725908e+05 -Total_plasma_electron_pressure_at_point_34_______________________________ (pres_plasma_electron_profile34)_ 4.28925706317400909e+05 -Total_plasma_electron_pressure_at_point_35_______________________________ (pres_plasma_electron_profile35)_ 4.28718274508780625e+05 -Total_plasma_electron_pressure_at_point_36_______________________________ (pres_plasma_electron_profile36)_ 4.28504893216157390e+05 -Total_plasma_electron_pressure_at_point_37_______________________________ (pres_plasma_electron_profile37)_ 4.28285567837214621e+05 -Total_plasma_electron_pressure_at_point_38_______________________________ (pres_plasma_electron_profile38)_ 4.28060303920967504e+05 -Total_plasma_electron_pressure_at_point_39_______________________________ (pres_plasma_electron_profile39)_ 4.27829107167704438e+05 -Total_plasma_electron_pressure_at_point_40_______________________________ (pres_plasma_electron_profile40)_ 4.27591983428925159e+05 -Total_plasma_electron_pressure_at_point_41_______________________________ (pres_plasma_electron_profile41)_ 4.27348938707277994e+05 -Total_plasma_electron_pressure_at_point_42_______________________________ (pres_plasma_electron_profile42)_ 4.27099979156495887e+05 -Total_plasma_electron_pressure_at_point_43_______________________________ (pres_plasma_electron_profile43)_ 4.26845111081329116e+05 -Total_plasma_electron_pressure_at_point_44_______________________________ (pres_plasma_electron_profile44)_ 4.26584340937478933e+05 -Total_plasma_electron_pressure_at_point_45_______________________________ (pres_plasma_electron_profile45)_ 4.26317675331526960e+05 -Total_plasma_electron_pressure_at_point_46_______________________________ (pres_plasma_electron_profile46)_ 4.26045121020864695e+05 -Total_plasma_electron_pressure_at_point_47_______________________________ (pres_plasma_electron_profile47)_ 4.25766684913620702e+05 -Total_plasma_electron_pressure_at_point_48_______________________________ (pres_plasma_electron_profile48)_ 4.25482374068586505e+05 -Total_plasma_electron_pressure_at_point_49_______________________________ (pres_plasma_electron_profile49)_ 4.25192195695140224e+05 -Total_plasma_electron_pressure_at_point_50_______________________________ (pres_plasma_electron_profile50)_ 4.24896157153169392e+05 -Total_plasma_electron_pressure_at_point_51_______________________________ (pres_plasma_electron_profile51)_ 4.24594265952991322e+05 -Total_plasma_electron_pressure_at_point_52_______________________________ (pres_plasma_electron_profile52)_ 4.24286529755272553e+05 -Total_plasma_electron_pressure_at_point_53_______________________________ (pres_plasma_electron_profile53)_ 4.23972956370946078e+05 -Total_plasma_electron_pressure_at_point_54_______________________________ (pres_plasma_electron_profile54)_ 4.23653553761127696e+05 -Total_plasma_electron_pressure_at_point_55_______________________________ (pres_plasma_electron_profile55)_ 4.23328330037029402e+05 -Total_plasma_electron_pressure_at_point_56_______________________________ (pres_plasma_electron_profile56)_ 4.22997293459873123e+05 -Total_plasma_electron_pressure_at_point_57_______________________________ (pres_plasma_electron_profile57)_ 4.22660452440800087e+05 -Total_plasma_electron_pressure_at_point_58_______________________________ (pres_plasma_electron_profile58)_ 4.22317815540781769e+05 -Total_plasma_electron_pressure_at_point_59_______________________________ (pres_plasma_electron_profile59)_ 4.21969391470526636e+05 -Total_plasma_electron_pressure_at_point_60_______________________________ (pres_plasma_electron_profile60)_ 4.21615189090385975e+05 -Total_plasma_electron_pressure_at_point_61_______________________________ (pres_plasma_electron_profile61)_ 4.21255217410259182e+05 -Total_plasma_electron_pressure_at_point_62_______________________________ (pres_plasma_electron_profile62)_ 4.20889485589495569e+05 -Total_plasma_electron_pressure_at_point_63_______________________________ (pres_plasma_electron_profile63)_ 4.20518002936796285e+05 -Total_plasma_electron_pressure_at_point_64_______________________________ (pres_plasma_electron_profile64)_ 4.20140778910112975e+05 -Total_plasma_electron_pressure_at_point_65_______________________________ (pres_plasma_electron_profile65)_ 4.19757823116546555e+05 -Total_plasma_electron_pressure_at_point_66_______________________________ (pres_plasma_electron_profile66)_ 4.19369145312242385e+05 -Total_plasma_electron_pressure_at_point_67_______________________________ (pres_plasma_electron_profile67)_ 4.18974755402285780e+05 -Total_plasma_electron_pressure_at_point_68_______________________________ (pres_plasma_electron_profile68)_ 4.18574663440594159e+05 -Total_plasma_electron_pressure_at_point_69_______________________________ (pres_plasma_electron_profile69)_ 4.18168879629808944e+05 -Total_plasma_electron_pressure_at_point_70_______________________________ (pres_plasma_electron_profile70)_ 4.17757414321184508e+05 -Total_plasma_electron_pressure_at_point_71_______________________________ (pres_plasma_electron_profile71)_ 4.17340278014477226e+05 -Total_plasma_electron_pressure_at_point_72_______________________________ (pres_plasma_electron_profile72)_ 4.16917481357830518e+05 -Total_plasma_electron_pressure_at_point_73_______________________________ (pres_plasma_electron_profile73)_ 4.16489035147660936e+05 -Total_plasma_electron_pressure_at_point_74_______________________________ (pres_plasma_electron_profile74)_ 4.16054950328539882e+05 -Total_plasma_electron_pressure_at_point_75_______________________________ (pres_plasma_electron_profile75)_ 4.15615237993075978e+05 -Total_plasma_electron_pressure_at_point_76_______________________________ (pres_plasma_electron_profile76)_ 4.15169909381795092e+05 -Total_plasma_electron_pressure_at_point_77_______________________________ (pres_plasma_electron_profile77)_ 4.14718975883017585e+05 -Total_plasma_electron_pressure_at_point_78_______________________________ (pres_plasma_electron_profile78)_ 4.14262449032735254e+05 -Total_plasma_electron_pressure_at_point_79_______________________________ (pres_plasma_electron_profile79)_ 4.13800340514486597e+05 -Total_plasma_electron_pressure_at_point_80_______________________________ (pres_plasma_electron_profile80)_ 4.13332662159229629e+05 -Total_plasma_electron_pressure_at_point_81_______________________________ (pres_plasma_electron_profile81)_ 4.12859425945213647e+05 -Total_plasma_electron_pressure_at_point_82_______________________________ (pres_plasma_electron_profile82)_ 4.12380643997848732e+05 -Total_plasma_electron_pressure_at_point_83_______________________________ (pres_plasma_electron_profile83)_ 4.11896328589575249e+05 -Total_plasma_electron_pressure_at_point_84_______________________________ (pres_plasma_electron_profile84)_ 4.11406492139729438e+05 -Total_plasma_electron_pressure_at_point_85_______________________________ (pres_plasma_electron_profile85)_ 4.10911147214408906e+05 -Total_plasma_electron_pressure_at_point_86_______________________________ (pres_plasma_electron_profile86)_ 4.10410306526335829e+05 -Total_plasma_electron_pressure_at_point_87_______________________________ (pres_plasma_electron_profile87)_ 4.09903982934719068e+05 -Total_plasma_electron_pressure_at_point_88_______________________________ (pres_plasma_electron_profile88)_ 4.09392189445114345e+05 -Total_plasma_electron_pressure_at_point_89_______________________________ (pres_plasma_electron_profile89)_ 4.08874939209282282e+05 -Total_plasma_electron_pressure_at_point_90_______________________________ (pres_plasma_electron_profile90)_ 4.08352245525045553e+05 -Total_plasma_electron_pressure_at_point_91_______________________________ (pres_plasma_electron_profile91)_ 4.07824121836144361e+05 -Total_plasma_electron_pressure_at_point_92_______________________________ (pres_plasma_electron_profile92)_ 4.07290581732089515e+05 -Total_plasma_electron_pressure_at_point_93_______________________________ (pres_plasma_electron_profile93)_ 4.06751638948014996e+05 -Total_plasma_electron_pressure_at_point_94_______________________________ (pres_plasma_electron_profile94)_ 4.06207307364527660e+05 -Total_plasma_electron_pressure_at_point_95_______________________________ (pres_plasma_electron_profile95)_ 4.05657601007556252e+05 -Total_plasma_electron_pressure_at_point_96_______________________________ (pres_plasma_electron_profile96)_ 4.05102534048198839e+05 -Total_plasma_electron_pressure_at_point_97_______________________________ (pres_plasma_electron_profile97)_ 4.04542120802567457e+05 -Total_plasma_electron_pressure_at_point_98_______________________________ (pres_plasma_electron_profile98)_ 4.03976375731632288e+05 -Total_plasma_electron_pressure_at_point_99_______________________________ (pres_plasma_electron_profile99)_ 4.03405313441064092e+05 -Total_plasma_electron_pressure_at_point_100______________________________ (pres_plasma_electron_profile100)_ 4.02828948681074427e+05 -Total_plasma_electron_pressure_at_point_101______________________________ (pres_plasma_electron_profile101)_ 4.02247296346254181e+05 -Total_plasma_electron_pressure_at_point_102______________________________ (pres_plasma_electron_profile102)_ 4.01660371475411579e+05 -Total_plasma_electron_pressure_at_point_103______________________________ (pres_plasma_electron_profile103)_ 4.01068189251407573e+05 -Total_plasma_electron_pressure_at_point_104______________________________ (pres_plasma_electron_profile104)_ 4.00470765000989486e+05 -Total_plasma_electron_pressure_at_point_105______________________________ (pres_plasma_electron_profile105)_ 3.99868114194623777e+05 -Total_plasma_electron_pressure_at_point_106______________________________ (pres_plasma_electron_profile106)_ 3.99260252446326311e+05 -Total_plasma_electron_pressure_at_point_107______________________________ (pres_plasma_electron_profile107)_ 3.98647195513492508e+05 -Total_plasma_electron_pressure_at_point_108______________________________ (pres_plasma_electron_profile108)_ 3.98028959296723362e+05 -Total_plasma_electron_pressure_at_point_109______________________________ (pres_plasma_electron_profile109)_ 3.97405559839652618e+05 -Total_plasma_electron_pressure_at_point_110______________________________ (pres_plasma_electron_profile110)_ 3.96777013328770117e+05 -Total_plasma_electron_pressure_at_point_111______________________________ (pres_plasma_electron_profile111)_ 3.96143336093245074e+05 -Total_plasma_electron_pressure_at_point_112______________________________ (pres_plasma_electron_profile112)_ 3.95504544604746625e+05 -Total_plasma_electron_pressure_at_point_113______________________________ (pres_plasma_electron_profile113)_ 3.94860655477263383e+05 -Total_plasma_electron_pressure_at_point_114______________________________ (pres_plasma_electron_profile114)_ 3.94211685466921015e+05 -Total_plasma_electron_pressure_at_point_115______________________________ (pres_plasma_electron_profile115)_ 3.93557651471798657e+05 -Total_plasma_electron_pressure_at_point_116______________________________ (pres_plasma_electron_profile116)_ 3.92898570531743229e+05 -Total_plasma_electron_pressure_at_point_117______________________________ (pres_plasma_electron_profile117)_ 3.92234459828182589e+05 -Total_plasma_electron_pressure_at_point_118______________________________ (pres_plasma_electron_profile118)_ 3.91565336683936242e+05 -Total_plasma_electron_pressure_at_point_119______________________________ (pres_plasma_electron_profile119)_ 3.90891218563025759e+05 -Total_plasma_electron_pressure_at_point_120______________________________ (pres_plasma_electron_profile120)_ 3.90212123070482281e+05 -Total_plasma_electron_pressure_at_point_121______________________________ (pres_plasma_electron_profile121)_ 3.89528067952153215e+05 -Total_plasma_electron_pressure_at_point_122______________________________ (pres_plasma_electron_profile122)_ 3.88839071094507119e+05 -Total_plasma_electron_pressure_at_point_123______________________________ (pres_plasma_electron_profile123)_ 3.88145150524436613e+05 -Total_plasma_electron_pressure_at_point_124______________________________ (pres_plasma_electron_profile124)_ 3.87446324409060529e+05 -Total_plasma_electron_pressure_at_point_125______________________________ (pres_plasma_electron_profile125)_ 3.86742611055523565e+05 -Total_plasma_electron_pressure_at_point_126______________________________ (pres_plasma_electron_profile126)_ 3.86034028910794877e+05 -Total_plasma_electron_pressure_at_point_127______________________________ (pres_plasma_electron_profile127)_ 3.85320596561464656e+05 -Total_plasma_electron_pressure_at_point_128______________________________ (pres_plasma_electron_profile128)_ 3.84602332733539573e+05 -Total_plasma_electron_pressure_at_point_129______________________________ (pres_plasma_electron_profile129)_ 3.83879256292236794e+05 -Total_plasma_electron_pressure_at_point_130______________________________ (pres_plasma_electron_profile130)_ 3.83151386241775181e+05 -Total_plasma_electron_pressure_at_point_131______________________________ (pres_plasma_electron_profile131)_ 3.82418741725166270e+05 -Total_plasma_electron_pressure_at_point_132______________________________ (pres_plasma_electron_profile132)_ 3.81681342024003447e+05 -Total_plasma_electron_pressure_at_point_133______________________________ (pres_plasma_electron_profile133)_ 3.80939206558248319e+05 -Total_plasma_electron_pressure_at_point_134______________________________ (pres_plasma_electron_profile134)_ 3.80192354886017507e+05 -Total_plasma_electron_pressure_at_point_135______________________________ (pres_plasma_electron_profile135)_ 3.79440806703365932e+05 -Total_plasma_electron_pressure_at_point_136______________________________ (pres_plasma_electron_profile136)_ 3.78684581844069879e+05 -Total_plasma_electron_pressure_at_point_137______________________________ (pres_plasma_electron_profile137)_ 3.77923700279407261e+05 -Total_plasma_electron_pressure_at_point_138______________________________ (pres_plasma_electron_profile138)_ 3.77158182117938355e+05 -Total_plasma_electron_pressure_at_point_139______________________________ (pres_plasma_electron_profile139)_ 3.76388047605282278e+05 -Total_plasma_electron_pressure_at_point_140______________________________ (pres_plasma_electron_profile140)_ 3.75613317123893881e+05 -Total_plasma_electron_pressure_at_point_141______________________________ (pres_plasma_electron_profile141)_ 3.74834011192838545e+05 -Total_plasma_electron_pressure_at_point_142______________________________ (pres_plasma_electron_profile142)_ 3.74050150467565109e+05 -Total_plasma_electron_pressure_at_point_143______________________________ (pres_plasma_electron_profile143)_ 3.73261755739677872e+05 -Total_plasma_electron_pressure_at_point_144______________________________ (pres_plasma_electron_profile144)_ 3.72468847936706035e+05 -Total_plasma_electron_pressure_at_point_145______________________________ (pres_plasma_electron_profile145)_ 3.71671448121872556e+05 -Total_plasma_electron_pressure_at_point_146______________________________ (pres_plasma_electron_profile146)_ 3.70869577493861492e+05 -Total_plasma_electron_pressure_at_point_147______________________________ (pres_plasma_electron_profile147)_ 3.70063257386582904e+05 -Total_plasma_electron_pressure_at_point_148______________________________ (pres_plasma_electron_profile148)_ 3.69252509268936759e+05 -Total_plasma_electron_pressure_at_point_149______________________________ (pres_plasma_electron_profile149)_ 3.68437354744575801e+05 -Total_plasma_electron_pressure_at_point_150______________________________ (pres_plasma_electron_profile150)_ 3.67617815551666194e+05 -Total_plasma_electron_pressure_at_point_151______________________________ (pres_plasma_electron_profile151)_ 3.66793913562646427e+05 -Total_plasma_electron_pressure_at_point_152______________________________ (pres_plasma_electron_profile152)_ 3.65965670783985755e+05 -Total_plasma_electron_pressure_at_point_153______________________________ (pres_plasma_electron_profile153)_ 3.65133109355940484e+05 -Total_plasma_electron_pressure_at_point_154______________________________ (pres_plasma_electron_profile154)_ 3.64296251552308328e+05 -Total_plasma_electron_pressure_at_point_155______________________________ (pres_plasma_electron_profile155)_ 3.63455119780182082e+05 -Total_plasma_electron_pressure_at_point_156______________________________ (pres_plasma_electron_profile156)_ 3.62609736579701595e+05 -Total_plasma_electron_pressure_at_point_157______________________________ (pres_plasma_electron_profile157)_ 3.61760124623803713e+05 -Total_plasma_electron_pressure_at_point_158______________________________ (pres_plasma_electron_profile158)_ 3.60906306717971514e+05 -Total_plasma_electron_pressure_at_point_159______________________________ (pres_plasma_electron_profile159)_ 3.60048305799981521e+05 -Total_plasma_electron_pressure_at_point_160______________________________ (pres_plasma_electron_profile160)_ 3.59186144939649734e+05 -Total_plasma_electron_pressure_at_point_161______________________________ (pres_plasma_electron_profile161)_ 3.58319847338576044e+05 -Total_plasma_electron_pressure_at_point_162______________________________ (pres_plasma_electron_profile162)_ 3.57449436329887365e+05 -Total_plasma_electron_pressure_at_point_163______________________________ (pres_plasma_electron_profile163)_ 3.56574935377978953e+05 -Total_plasma_electron_pressure_at_point_164______________________________ (pres_plasma_electron_profile164)_ 3.55696368078255095e+05 -Total_plasma_electron_pressure_at_point_165______________________________ (pres_plasma_electron_profile165)_ 3.54813758156866999e+05 -Total_plasma_electron_pressure_at_point_166______________________________ (pres_plasma_electron_profile166)_ 3.53927129470450978e+05 -Total_plasma_electron_pressure_at_point_167______________________________ (pres_plasma_electron_profile167)_ 3.53036506005863775e+05 -Total_plasma_electron_pressure_at_point_168______________________________ (pres_plasma_electron_profile168)_ 3.52141911879917199e+05 -Total_plasma_electron_pressure_at_point_169______________________________ (pres_plasma_electron_profile169)_ 3.51243371339111123e+05 -Total_plasma_electron_pressure_at_point_170______________________________ (pres_plasma_electron_profile170)_ 3.50340908759365208e+05 -Total_plasma_electron_pressure_at_point_171______________________________ (pres_plasma_electron_profile171)_ 3.49434548645749455e+05 -Total_plasma_electron_pressure_at_point_172______________________________ (pres_plasma_electron_profile172)_ 3.48524315632212732e+05 -Total_plasma_electron_pressure_at_point_173______________________________ (pres_plasma_electron_profile173)_ 3.47610234481310530e+05 -Total_plasma_electron_pressure_at_point_174______________________________ (pres_plasma_electron_profile174)_ 3.46692330083931447e+05 -Total_plasma_electron_pressure_at_point_175______________________________ (pres_plasma_electron_profile175)_ 3.45770627459021634e+05 -Total_plasma_electron_pressure_at_point_176______________________________ (pres_plasma_electron_profile176)_ 3.44845151753308659e+05 -Total_plasma_electron_pressure_at_point_177______________________________ (pres_plasma_electron_profile177)_ 3.43915928241023852e+05 -Total_plasma_electron_pressure_at_point_178______________________________ (pres_plasma_electron_profile178)_ 3.42982982323622622e+05 -Total_plasma_electron_pressure_at_point_179______________________________ (pres_plasma_electron_profile179)_ 3.42046339529504941e+05 -Total_plasma_electron_pressure_at_point_180______________________________ (pres_plasma_electron_profile180)_ 3.41106025513733155e+05 -Total_plasma_electron_pressure_at_point_181______________________________ (pres_plasma_electron_profile181)_ 3.40162066057749325e+05 -Total_plasma_electron_pressure_at_point_182______________________________ (pres_plasma_electron_profile182)_ 3.39214487069090828e+05 -Total_plasma_electron_pressure_at_point_183______________________________ (pres_plasma_electron_profile183)_ 3.38263314581104962e+05 -Total_plasma_electron_pressure_at_point_184______________________________ (pres_plasma_electron_profile184)_ 3.37308574752662738e+05 -Total_plasma_electron_pressure_at_point_185______________________________ (pres_plasma_electron_profile185)_ 3.36350293867870467e+05 -Total_plasma_electron_pressure_at_point_186______________________________ (pres_plasma_electron_profile186)_ 3.35388498335780983e+05 -Total_plasma_electron_pressure_at_point_187______________________________ (pres_plasma_electron_profile187)_ 3.34423214690103254e+05 -Total_plasma_electron_pressure_at_point_188______________________________ (pres_plasma_electron_profile188)_ 3.33454469588910870e+05 -Total_plasma_electron_pressure_at_point_189______________________________ (pres_plasma_electron_profile189)_ 3.32482289814350021e+05 -Total_plasma_electron_pressure_at_point_190______________________________ (pres_plasma_electron_profile190)_ 3.31506702272344904e+05 -Total_plasma_electron_pressure_at_point_191______________________________ (pres_plasma_electron_profile191)_ 3.30527733992303605e+05 -Total_plasma_electron_pressure_at_point_192______________________________ (pres_plasma_electron_profile192)_ 3.29545412126821582e+05 -Total_plasma_electron_pressure_at_point_193______________________________ (pres_plasma_electron_profile193)_ 3.28559763951384986e+05 -Total_plasma_electron_pressure_at_point_194______________________________ (pres_plasma_electron_profile194)_ 3.27570816864072345e+05 -Total_plasma_electron_pressure_at_point_195______________________________ (pres_plasma_electron_profile195)_ 3.26578598385255551e+05 -Total_plasma_electron_pressure_at_point_196______________________________ (pres_plasma_electron_profile196)_ 3.25583136157299334e+05 -Total_plasma_electron_pressure_at_point_197______________________________ (pres_plasma_electron_profile197)_ 3.24584457944260328e+05 -Total_plasma_electron_pressure_at_point_198______________________________ (pres_plasma_electron_profile198)_ 3.23582591631584626e+05 -Total_plasma_electron_pressure_at_point_199______________________________ (pres_plasma_electron_profile199)_ 3.22577565225804807e+05 -Total_plasma_electron_pressure_at_point_200______________________________ (pres_plasma_electron_profile200)_ 3.21569406854235567e+05 -Total_plasma_electron_pressure_at_point_201______________________________ (pres_plasma_electron_profile201)_ 3.20558144764668425e+05 -Total_plasma_electron_pressure_at_point_202______________________________ (pres_plasma_electron_profile202)_ 3.19543807325066475e+05 -Total_plasma_electron_pressure_at_point_203______________________________ (pres_plasma_electron_profile203)_ 3.18526423023256473e+05 -Total_plasma_electron_pressure_at_point_204______________________________ (pres_plasma_electron_profile204)_ 3.17506020466622082e+05 -Total_plasma_electron_pressure_at_point_205______________________________ (pres_plasma_electron_profile205)_ 3.16482628381794493e+05 -Total_plasma_electron_pressure_at_point_206______________________________ (pres_plasma_electron_profile206)_ 3.15456275614343467e+05 -Total_plasma_electron_pressure_at_point_207______________________________ (pres_plasma_electron_profile207)_ 3.14426991128466965e+05 -Total_plasma_electron_pressure_at_point_208______________________________ (pres_plasma_electron_profile208)_ 3.13394804006680322e+05 -Total_plasma_electron_pressure_at_point_209______________________________ (pres_plasma_electron_profile209)_ 3.12359743449504487e+05 -Total_plasma_electron_pressure_at_point_210______________________________ (pres_plasma_electron_profile210)_ 3.11321838775153679e+05 -Total_plasma_electron_pressure_at_point_211______________________________ (pres_plasma_electron_profile211)_ 3.10281119419222465e+05 -Total_plasma_electron_pressure_at_point_212______________________________ (pres_plasma_electron_profile212)_ 3.09237614934371784e+05 -Total_plasma_electron_pressure_at_point_213______________________________ (pres_plasma_electron_profile213)_ 3.08191354990014806e+05 -Total_plasma_electron_pressure_at_point_214______________________________ (pres_plasma_electron_profile214)_ 3.07142369372001907e+05 -Total_plasma_electron_pressure_at_point_215______________________________ (pres_plasma_electron_profile215)_ 3.06090687982305652e+05 -Total_plasma_electron_pressure_at_point_216______________________________ (pres_plasma_electron_profile216)_ 3.05036340838704549e+05 -Total_plasma_electron_pressure_at_point_217______________________________ (pres_plasma_electron_profile217)_ 3.03979358074466407e+05 -Total_plasma_electron_pressure_at_point_218______________________________ (pres_plasma_electron_profile218)_ 3.02919769938032026e+05 -Total_plasma_electron_pressure_at_point_219______________________________ (pres_plasma_electron_profile219)_ 3.01857606792697276e+05 -Total_plasma_electron_pressure_at_point_220______________________________ (pres_plasma_electron_profile220)_ 3.00792899116296088e+05 -Total_plasma_electron_pressure_at_point_221______________________________ (pres_plasma_electron_profile221)_ 2.99725677500882186e+05 -Total_plasma_electron_pressure_at_point_222______________________________ (pres_plasma_electron_profile222)_ 2.98655972652410681e+05 -Total_plasma_electron_pressure_at_point_223______________________________ (pres_plasma_electron_profile223)_ 2.97583815390419972e+05 -Total_plasma_electron_pressure_at_point_224______________________________ (pres_plasma_electron_profile224)_ 2.96509236647712882e+05 -Total_plasma_electron_pressure_at_point_225______________________________ (pres_plasma_electron_profile225)_ 2.95432267470037506e+05 -Total_plasma_electron_pressure_at_point_226______________________________ (pres_plasma_electron_profile226)_ 2.94352939015768876e+05 -Total_plasma_electron_pressure_at_point_227______________________________ (pres_plasma_electron_profile227)_ 2.93271282555589161e+05 -Total_plasma_electron_pressure_at_point_228______________________________ (pres_plasma_electron_profile228)_ 2.92187329472169222e+05 -Total_plasma_electron_pressure_at_point_229______________________________ (pres_plasma_electron_profile229)_ 2.91101111259849451e+05 -Total_plasma_electron_pressure_at_point_230______________________________ (pres_plasma_electron_profile230)_ 2.90012659524320625e+05 -Total_plasma_electron_pressure_at_point_231______________________________ (pres_plasma_electron_profile231)_ 2.88922005982305156e+05 -Total_plasma_electron_pressure_at_point_232______________________________ (pres_plasma_electron_profile232)_ 2.87829182461238815e+05 -Total_plasma_electron_pressure_at_point_233______________________________ (pres_plasma_electron_profile233)_ 2.86734220898951811e+05 -Total_plasma_electron_pressure_at_point_234______________________________ (pres_plasma_electron_profile234)_ 2.85637153343351092e+05 -Total_plasma_electron_pressure_at_point_235______________________________ (pres_plasma_electron_profile235)_ 2.84538011952102534e+05 -Total_plasma_electron_pressure_at_point_236______________________________ (pres_plasma_electron_profile236)_ 2.83436828992313473e+05 -Total_plasma_electron_pressure_at_point_237______________________________ (pres_plasma_electron_profile237)_ 2.82333636840216292e+05 -Total_plasma_electron_pressure_at_point_238______________________________ (pres_plasma_electron_profile238)_ 2.81228467980851885e+05 -Total_plasma_electron_pressure_at_point_239______________________________ (pres_plasma_electron_profile239)_ 2.80121355007753766e+05 -Total_plasma_electron_pressure_at_point_240______________________________ (pres_plasma_electron_profile240)_ 2.79012330622633744e+05 -Total_plasma_electron_pressure_at_point_241______________________________ (pres_plasma_electron_profile241)_ 2.77901427635066910e+05 -Total_plasma_electron_pressure_at_point_242______________________________ (pres_plasma_electron_profile242)_ 2.76788678962178936e+05 -Total_plasma_electron_pressure_at_point_243______________________________ (pres_plasma_electron_profile243)_ 2.75674117628333042e+05 -Total_plasma_electron_pressure_at_point_244______________________________ (pres_plasma_electron_profile244)_ 2.74557776764819166e+05 -Total_plasma_electron_pressure_at_point_245______________________________ (pres_plasma_electron_profile245)_ 2.73439689609542256e+05 -Total_plasma_electron_pressure_at_point_246______________________________ (pres_plasma_electron_profile246)_ 2.72319889506714593e+05 -Total_plasma_electron_pressure_at_point_247______________________________ (pres_plasma_electron_profile247)_ 2.71198409906546294e+05 -Total_plasma_electron_pressure_at_point_248______________________________ (pres_plasma_electron_profile248)_ 2.70075284364939085e+05 -Total_plasma_electron_pressure_at_point_249______________________________ (pres_plasma_electron_profile249)_ 2.68950546543180651e+05 -Total_plasma_electron_pressure_at_point_250______________________________ (pres_plasma_electron_profile250)_ 2.67824230207641493e+05 -Total_plasma_electron_pressure_at_point_251______________________________ (pres_plasma_electron_profile251)_ 2.66696369229471136e+05 -Total_plasma_electron_pressure_at_point_252______________________________ (pres_plasma_electron_profile252)_ 2.65566997584299301e+05 -Total_plasma_electron_pressure_at_point_253______________________________ (pres_plasma_electron_profile253)_ 2.64436149351934902e+05 -Total_plasma_electron_pressure_at_point_254______________________________ (pres_plasma_electron_profile254)_ 2.63303858716071059e+05 -Total_plasma_electron_pressure_at_point_255______________________________ (pres_plasma_electron_profile255)_ 2.62170159963988699e+05 -Total_plasma_electron_pressure_at_point_256______________________________ (pres_plasma_electron_profile256)_ 2.61035087486264616e+05 -Total_plasma_electron_pressure_at_point_257______________________________ (pres_plasma_electron_profile257)_ 2.59898675776479824e+05 -Total_plasma_electron_pressure_at_point_258______________________________ (pres_plasma_electron_profile258)_ 2.58760959430932126e+05 -Total_plasma_electron_pressure_at_point_259______________________________ (pres_plasma_electron_profile259)_ 2.57621973148349585e+05 -Total_plasma_electron_pressure_at_point_260______________________________ (pres_plasma_electron_profile260)_ 2.56481751729607640e+05 -Total_plasma_electron_pressure_at_point_261______________________________ (pres_plasma_electron_profile261)_ 2.55340330077447812e+05 -Total_plasma_electron_pressure_at_point_262______________________________ (pres_plasma_electron_profile262)_ 2.54197743196200841e+05 -Total_plasma_electron_pressure_at_point_263______________________________ (pres_plasma_electron_profile263)_ 2.53054026191511250e+05 -Total_plasma_electron_pressure_at_point_264______________________________ (pres_plasma_electron_profile264)_ 2.51909214270065830e+05 -Total_plasma_electron_pressure_at_point_265______________________________ (pres_plasma_electron_profile265)_ 2.50763342739325191e+05 -Total_plasma_electron_pressure_at_point_266______________________________ (pres_plasma_electron_profile266)_ 2.49616447007258830e+05 -Total_plasma_electron_pressure_at_point_267______________________________ (pres_plasma_electron_profile267)_ 2.48468562582083425e+05 -Total_plasma_electron_pressure_at_point_268______________________________ (pres_plasma_electron_profile268)_ 2.47319725072005822e+05 -Total_plasma_electron_pressure_at_point_269______________________________ (pres_plasma_electron_profile269)_ 2.46169970184968144e+05 -Total_plasma_electron_pressure_at_point_270______________________________ (pres_plasma_electron_profile270)_ 2.45019333728399331e+05 -Total_plasma_electron_pressure_at_point_271______________________________ (pres_plasma_electron_profile271)_ 2.43867851608967962e+05 -Total_plasma_electron_pressure_at_point_272______________________________ (pres_plasma_electron_profile272)_ 2.42715559832343017e+05 -Total_plasma_electron_pressure_at_point_273______________________________ (pres_plasma_electron_profile273)_ 2.41562494502955844e+05 -Total_plasma_electron_pressure_at_point_274______________________________ (pres_plasma_electron_profile274)_ 2.40408691823769652e+05 -Total_plasma_electron_pressure_at_point_275______________________________ (pres_plasma_electron_profile275)_ 2.39254188096051570e+05 -Total_plasma_electron_pressure_at_point_276______________________________ (pres_plasma_electron_profile276)_ 2.38099019719152391e+05 -Total_plasma_electron_pressure_at_point_277______________________________ (pres_plasma_electron_profile277)_ 2.36943223190289922e+05 -Total_plasma_electron_pressure_at_point_278______________________________ (pres_plasma_electron_profile278)_ 2.35786835104338534e+05 -Total_plasma_electron_pressure_at_point_279______________________________ (pres_plasma_electron_profile279)_ 2.34629892153624503e+05 -Total_plasma_electron_pressure_at_point_280______________________________ (pres_plasma_electron_profile280)_ 2.33472431127728283e+05 -Total_plasma_electron_pressure_at_point_281______________________________ (pres_plasma_electron_profile281)_ 2.32314488913291425e+05 -Total_plasma_electron_pressure_at_point_282______________________________ (pres_plasma_electron_profile282)_ 2.31156102493831830e+05 -Total_plasma_electron_pressure_at_point_283______________________________ (pres_plasma_electron_profile283)_ 2.29997308949564496e+05 -Total_plasma_electron_pressure_at_point_284______________________________ (pres_plasma_electron_profile284)_ 2.28838145457230625e+05 -Total_plasma_electron_pressure_at_point_285______________________________ (pres_plasma_electron_profile285)_ 2.27678649289933062e+05 -Total_plasma_electron_pressure_at_point_286______________________________ (pres_plasma_electron_profile286)_ 2.26518857816980017e+05 -Total_plasma_electron_pressure_at_point_287______________________________ (pres_plasma_electron_profile287)_ 2.25358808503736625e+05 -Total_plasma_electron_pressure_at_point_288______________________________ (pres_plasma_electron_profile288)_ 2.24198538911484618e+05 -Total_plasma_electron_pressure_at_point_289______________________________ (pres_plasma_electron_profile289)_ 2.23038086697291263e+05 -Total_plasma_electron_pressure_at_point_290______________________________ (pres_plasma_electron_profile290)_ 2.21877489613886049e+05 -Total_plasma_electron_pressure_at_point_291______________________________ (pres_plasma_electron_profile291)_ 2.20716785509548063e+05 -Total_plasma_electron_pressure_at_point_292______________________________ (pres_plasma_electron_profile292)_ 2.19556012328001729e+05 -Total_plasma_electron_pressure_at_point_293______________________________ (pres_plasma_electron_profile293)_ 2.18395208108323422e+05 -Total_plasma_electron_pressure_at_point_294______________________________ (pres_plasma_electron_profile294)_ 2.17234410984858114e+05 -Total_plasma_electron_pressure_at_point_295______________________________ (pres_plasma_electron_profile295)_ 2.16073659187146550e+05 -Total_plasma_electron_pressure_at_point_296______________________________ (pres_plasma_electron_profile296)_ 2.14912991039864108e+05 -Total_plasma_electron_pressure_at_point_297______________________________ (pres_plasma_electron_profile297)_ 2.13752444962770853e+05 -Total_plasma_electron_pressure_at_point_298______________________________ (pres_plasma_electron_profile298)_ 2.12592059470673528e+05 -Total_plasma_electron_pressure_at_point_299______________________________ (pres_plasma_electron_profile299)_ 2.11431873173400469e+05 -Total_plasma_electron_pressure_at_point_300______________________________ (pres_plasma_electron_profile300)_ 2.10271924775788735e+05 -Total_plasma_electron_pressure_at_point_301______________________________ (pres_plasma_electron_profile301)_ 2.09112253077685804e+05 -Total_plasma_electron_pressure_at_point_302______________________________ (pres_plasma_electron_profile302)_ 2.07952896973963536e+05 -Total_plasma_electron_pressure_at_point_303______________________________ (pres_plasma_electron_profile303)_ 2.06793895454547834e+05 -Total_plasma_electron_pressure_at_point_304______________________________ (pres_plasma_electron_profile304)_ 2.05635287604462967e+05 -Total_plasma_electron_pressure_at_point_305______________________________ (pres_plasma_electron_profile305)_ 2.04477112603891117e+05 -Total_plasma_electron_pressure_at_point_306______________________________ (pres_plasma_electron_profile306)_ 2.03319409728248458e+05 -Total_plasma_electron_pressure_at_point_307______________________________ (pres_plasma_electron_profile307)_ 2.02162218348277151e+05 -Total_plasma_electron_pressure_at_point_308______________________________ (pres_plasma_electron_profile308)_ 2.01005577930155268e+05 -Total_plasma_electron_pressure_at_point_309______________________________ (pres_plasma_electron_profile309)_ 1.99849528035625117e+05 -Total_plasma_electron_pressure_at_point_310______________________________ (pres_plasma_electron_profile310)_ 1.98694108322138694e+05 -Total_plasma_electron_pressure_at_point_311______________________________ (pres_plasma_electron_profile311)_ 1.97539358543024049e+05 -Total_plasma_electron_pressure_at_point_312______________________________ (pres_plasma_electron_profile312)_ 1.96385318547670118e+05 -Total_plasma_electron_pressure_at_point_313______________________________ (pres_plasma_electron_profile313)_ 1.95232028281734209e+05 -Total_plasma_electron_pressure_at_point_314______________________________ (pres_plasma_electron_profile314)_ 1.94079527787368803e+05 -Total_plasma_electron_pressure_at_point_315______________________________ (pres_plasma_electron_profile315)_ 1.92927857203472813e+05 -Total_plasma_electron_pressure_at_point_316______________________________ (pres_plasma_electron_profile316)_ 1.91777056765964400e+05 -Total_plasma_electron_pressure_at_point_317______________________________ (pres_plasma_electron_profile317)_ 1.90627166808078822e+05 -Total_plasma_electron_pressure_at_point_318______________________________ (pres_plasma_electron_profile318)_ 1.89478227760690614e+05 -Total_plasma_electron_pressure_at_point_319______________________________ (pres_plasma_electron_profile319)_ 1.88330280152662424e+05 -Total_plasma_electron_pressure_at_point_320______________________________ (pres_plasma_electron_profile320)_ 1.87183364611219586e+05 -Total_plasma_electron_pressure_at_point_321______________________________ (pres_plasma_electron_profile321)_ 1.86037521862353664e+05 -Total_plasma_electron_pressure_at_point_322______________________________ (pres_plasma_electron_profile322)_ 1.84892792731254100e+05 -Total_plasma_electron_pressure_at_point_323______________________________ (pres_plasma_electron_profile323)_ 1.83749218142770784e+05 -Total_plasma_electron_pressure_at_point_324______________________________ (pres_plasma_electron_profile324)_ 1.82606839121906552e+05 -Total_plasma_electron_pressure_at_point_325______________________________ (pres_plasma_electron_profile325)_ 1.81465696794343501e+05 -Total_plasma_electron_pressure_at_point_326______________________________ (pres_plasma_electron_profile326)_ 1.80325832387001283e+05 -Total_plasma_electron_pressure_at_point_327______________________________ (pres_plasma_electron_profile327)_ 1.79187287228632049e+05 -Total_plasma_electron_pressure_at_point_328______________________________ (pres_plasma_electron_profile328)_ 1.78050102750449878e+05 -Total_plasma_electron_pressure_at_point_329______________________________ (pres_plasma_electron_profile329)_ 1.76914320486799406e+05 -Total_plasma_electron_pressure_at_point_330______________________________ (pres_plasma_electron_profile330)_ 1.75779982075862150e+05 -Total_plasma_electron_pressure_at_point_331______________________________ (pres_plasma_electron_profile331)_ 1.74647129260404588e+05 -Total_plasma_electron_pressure_at_point_332______________________________ (pres_plasma_electron_profile332)_ 1.73515803888567403e+05 -Total_plasma_electron_pressure_at_point_333______________________________ (pres_plasma_electron_profile333)_ 1.72386047914699593e+05 -Total_plasma_electron_pressure_at_point_334______________________________ (pres_plasma_electron_profile334)_ 1.71257903400237265e+05 -Total_plasma_electron_pressure_at_point_335______________________________ (pres_plasma_electron_profile335)_ 1.70131412514630007e+05 -Total_plasma_electron_pressure_at_point_336______________________________ (pres_plasma_electron_profile336)_ 1.69006617536317121e+05 -Total_plasma_electron_pressure_at_point_337______________________________ (pres_plasma_electron_profile337)_ 1.67883560853754025e+05 -Total_plasma_electron_pressure_at_point_338______________________________ (pres_plasma_electron_profile338)_ 1.66762284966492676e+05 -Total_plasma_electron_pressure_at_point_339______________________________ (pres_plasma_electron_profile339)_ 1.65642832486316969e+05 -Total_plasma_electron_pressure_at_point_340______________________________ (pres_plasma_electron_profile340)_ 1.64525246138435905e+05 -Total_plasma_electron_pressure_at_point_341______________________________ (pres_plasma_electron_profile341)_ 1.63409568762736570e+05 -Total_plasma_electron_pressure_at_point_342______________________________ (pres_plasma_electron_profile342)_ 1.62295843315099715e+05 -Total_plasma_electron_pressure_at_point_343______________________________ (pres_plasma_electron_profile343)_ 1.61184112868779805e+05 -Total_plasma_electron_pressure_at_point_344______________________________ (pres_plasma_electron_profile344)_ 1.60074420615853509e+05 -Total_plasma_electron_pressure_at_point_345______________________________ (pres_plasma_electron_profile345)_ 1.58966809868737269e+05 -Total_plasma_electron_pressure_at_point_346______________________________ (pres_plasma_electron_profile346)_ 1.57861324061779509e+05 -Total_plasma_electron_pressure_at_point_347______________________________ (pres_plasma_electron_profile347)_ 1.56758006752928515e+05 -Total_plasma_electron_pressure_at_point_348______________________________ (pres_plasma_electron_profile348)_ 1.55656901625479979e+05 -Total_plasma_electron_pressure_at_point_349______________________________ (pres_plasma_electron_profile349)_ 1.54558052489907306e+05 -Total_plasma_electron_pressure_at_point_350______________________________ (pres_plasma_electron_profile350)_ 1.53461503285779094e+05 -Total_plasma_electron_pressure_at_point_351______________________________ (pres_plasma_electron_profile351)_ 1.52367298083765374e+05 -Total_plasma_electron_pressure_at_point_352______________________________ (pres_plasma_electron_profile352)_ 1.51275481087740016e+05 -Total_plasma_electron_pressure_at_point_353______________________________ (pres_plasma_electron_profile353)_ 1.50186096636978473e+05 -Total_plasma_electron_pressure_at_point_354______________________________ (pres_plasma_electron_profile354)_ 1.49099189208460477e+05 -Total_plasma_electron_pressure_at_point_355______________________________ (pres_plasma_electron_profile355)_ 1.48014803419277800e+05 -Total_plasma_electron_pressure_at_point_356______________________________ (pres_plasma_electron_profile356)_ 1.46932984029154439e+05 -Total_plasma_electron_pressure_at_point_357______________________________ (pres_plasma_electron_profile357)_ 1.45853775943082670e+05 -Total_plasma_electron_pressure_at_point_358______________________________ (pres_plasma_electron_profile358)_ 1.44777224214081449e+05 -Total_plasma_electron_pressure_at_point_359______________________________ (pres_plasma_electron_profile359)_ 1.43703374046081153e+05 -Total_plasma_electron_pressure_at_point_360______________________________ (pres_plasma_electron_profile360)_ 1.42632270796942088e+05 -Total_plasma_electron_pressure_at_point_361______________________________ (pres_plasma_electron_profile361)_ 1.41563959981610940e+05 -Total_plasma_electron_pressure_at_point_362______________________________ (pres_plasma_electron_profile362)_ 1.40498487275423424e+05 -Total_plasma_electron_pressure_at_point_363______________________________ (pres_plasma_electron_profile363)_ 1.39435898517558235e+05 -Total_plasma_electron_pressure_at_point_364______________________________ (pres_plasma_electron_profile364)_ 1.38376239714650612e+05 -Total_plasma_electron_pressure_at_point_365______________________________ (pres_plasma_electron_profile365)_ 1.37319557044572080e+05 -Total_plasma_electron_pressure_at_point_366______________________________ (pres_plasma_electron_profile366)_ 1.36265896860384877e+05 -Total_plasma_electron_pressure_at_point_367______________________________ (pres_plasma_electron_profile367)_ 1.35215305694478768e+05 -Total_plasma_electron_pressure_at_point_368______________________________ (pres_plasma_electron_profile368)_ 1.34167830262899690e+05 -Total_plasma_electron_pressure_at_point_369______________________________ (pres_plasma_electron_profile369)_ 1.33123517469878861e+05 -Total_plasma_electron_pressure_at_point_370______________________________ (pres_plasma_electron_profile370)_ 1.32082414412572485e+05 -Total_plasma_electron_pressure_at_point_371______________________________ (pres_plasma_electron_profile371)_ 1.31044568386022394e+05 -Total_plasma_electron_pressure_at_point_372______________________________ (pres_plasma_electron_profile372)_ 1.30010026888348526e+05 -Total_plasma_electron_pressure_at_point_373______________________________ (pres_plasma_electron_profile373)_ 1.28978837626184366e+05 -Total_plasma_electron_pressure_at_point_374______________________________ (pres_plasma_electron_profile374)_ 1.27951048520369004e+05 -Total_plasma_electron_pressure_at_point_375______________________________ (pres_plasma_electron_profile375)_ 1.26926707711906653e+05 -Total_plasma_electron_pressure_at_point_376______________________________ (pres_plasma_electron_profile376)_ 1.25905863568209767e+05 -Total_plasma_electron_pressure_at_point_377______________________________ (pres_plasma_electron_profile377)_ 1.24888564689638253e+05 -Total_plasma_electron_pressure_at_point_378______________________________ (pres_plasma_electron_profile378)_ 1.23874859916352128e+05 -Total_plasma_electron_pressure_at_point_379______________________________ (pres_plasma_electron_profile379)_ 1.22864798335492698e+05 -Total_plasma_electron_pressure_at_point_380______________________________ (pres_plasma_electron_profile380)_ 1.21858429288710366e+05 -Total_plasma_electron_pressure_at_point_381______________________________ (pres_plasma_electron_profile381)_ 1.20855802380058405e+05 -Total_plasma_electron_pressure_at_point_382______________________________ (pres_plasma_electron_profile382)_ 1.19856967484270470e+05 -Total_plasma_electron_pressure_at_point_383______________________________ (pres_plasma_electron_profile383)_ 1.18861974755445626e+05 -Total_plasma_electron_pressure_at_point_384______________________________ (pres_plasma_electron_profile384)_ 1.17870874636161054e+05 -Total_plasma_electron_pressure_at_point_385______________________________ (pres_plasma_electron_profile385)_ 1.16883717867038111e+05 -Total_plasma_electron_pressure_at_point_386______________________________ (pres_plasma_electron_profile386)_ 1.15900555496785819e+05 -Total_plasma_electron_pressure_at_point_387______________________________ (pres_plasma_electron_profile387)_ 1.14921438892750652e+05 -Total_plasma_electron_pressure_at_point_388______________________________ (pres_plasma_electron_profile388)_ 1.13946419752000540e+05 -Total_plasma_electron_pressure_at_point_389______________________________ (pres_plasma_electron_profile389)_ 1.12975550112974961e+05 -Total_plasma_electron_pressure_at_point_390______________________________ (pres_plasma_electron_profile390)_ 1.12008882367733953e+05 -Total_plasma_electron_pressure_at_point_391______________________________ (pres_plasma_electron_profile391)_ 1.11046469274843024e+05 -Total_plasma_electron_pressure_at_point_392______________________________ (pres_plasma_electron_profile392)_ 1.10088363972930281e+05 -Total_plasma_electron_pressure_at_point_393______________________________ (pres_plasma_electron_profile393)_ 1.09134619994959008e+05 -Total_plasma_electron_pressure_at_point_394______________________________ (pres_plasma_electron_profile394)_ 1.08185291283258164e+05 -Total_plasma_electron_pressure_at_point_395______________________________ (pres_plasma_electron_profile395)_ 1.07240432205359422e+05 -Total_plasma_electron_pressure_at_point_396______________________________ (pres_plasma_electron_profile396)_ 1.06300097570690516e+05 -Total_plasma_electron_pressure_at_point_397______________________________ (pres_plasma_electron_profile397)_ 1.05364342648181308e+05 -Total_plasma_electron_pressure_at_point_398______________________________ (pres_plasma_electron_profile398)_ 1.04433223184839997e+05 -Total_plasma_electron_pressure_at_point_399______________________________ (pres_plasma_electron_profile399)_ 1.03506795425364995e+05 -Total_plasma_electron_pressure_at_point_400______________________________ (pres_plasma_electron_profile400)_ 1.02585116132859548e+05 -Total_plasma_electron_pressure_at_point_401______________________________ (pres_plasma_electron_profile401)_ 1.01668242610725341e+05 -Total_plasma_electron_pressure_at_point_402______________________________ (pres_plasma_electron_profile402)_ 1.00756232725813548e+05 -Total_plasma_electron_pressure_at_point_403______________________________ (pres_plasma_electron_profile403)_ 9.98491449329228490e+04 -Total_plasma_electron_pressure_at_point_404______________________________ (pres_plasma_electron_profile404)_ 9.89470383007362252e+04 -Total_plasma_electron_pressure_at_point_405______________________________ (pres_plasma_electron_profile405)_ 9.80499725393017870e+04 -Total_plasma_electron_pressure_at_point_406______________________________ (pres_plasma_electron_profile406)_ 9.71580080291668273e+04 -Total_plasma_electron_pressure_at_point_407______________________________ (pres_plasma_electron_profile407)_ 9.62712058522879961e+04 -Total_plasma_electron_pressure_at_point_408______________________________ (pres_plasma_electron_profile408)_ 9.53896278248479794e+04 -Total_plasma_electron_pressure_at_point_409______________________________ (pres_plasma_electron_profile409)_ 9.45133365321253077e+04 -Total_plasma_electron_pressure_at_point_410______________________________ (pres_plasma_electron_profile410)_ 9.36423953655711957e+04 -Total_plasma_electron_pressure_at_point_411______________________________ (pres_plasma_electron_profile411)_ 9.27768685622689663e+04 -Total_plasma_electron_pressure_at_point_412______________________________ (pres_plasma_electron_profile412)_ 9.19168212469615828e+04 -Total_plasma_electron_pressure_at_point_413______________________________ (pres_plasma_electron_profile413)_ 9.10623194768560497e+04 -Total_plasma_electron_pressure_at_point_414______________________________ (pres_plasma_electron_profile414)_ 9.02134302894304710e+04 -Total_plasma_electron_pressure_at_point_415______________________________ (pres_plasma_electron_profile415)_ 8.93702217534941592e+04 -Total_plasma_electron_pressure_at_point_416______________________________ (pres_plasma_electron_profile416)_ 8.85327630237758422e+04 -Total_plasma_electron_pressure_at_point_417______________________________ (pres_plasma_electron_profile417)_ 8.77011243993436656e+04 -Total_plasma_electron_pressure_at_point_418______________________________ (pres_plasma_electron_profile418)_ 8.68753773861930385e+04 -Total_plasma_electron_pressure_at_point_419______________________________ (pres_plasma_electron_profile419)_ 8.60555947643745894e+04 -Total_plasma_electron_pressure_at_point_420______________________________ (pres_plasma_electron_profile420)_ 8.52418506600747060e+04 -Total_plasma_electron_pressure_at_point_421______________________________ (pres_plasma_electron_profile421)_ 8.44342206231082964e+04 -Total_plasma_electron_pressure_at_point_422______________________________ (pres_plasma_electron_profile422)_ 8.36327817103350390e+04 -Total_plasma_electron_pressure_at_point_423______________________________ (pres_plasma_electron_profile423)_ 8.28376125755706598e+04 -Total_plasma_electron_pressure_at_point_424______________________________ (pres_plasma_electron_profile424)_ 8.20487935666315461e+04 -Total_plasma_electron_pressure_at_point_425______________________________ (pres_plasma_electron_profile425)_ 8.12664068302306987e+04 -Total_plasma_electron_pressure_at_point_426______________________________ (pres_plasma_electron_profile426)_ 8.04905364255292807e+04 -Total_plasma_electron_pressure_at_point_427______________________________ (pres_plasma_electron_profile427)_ 7.97212684472524852e+04 -Total_plasma_electron_pressure_at_point_428______________________________ (pres_plasma_electron_profile428)_ 7.89586911593956465e+04 -Total_plasma_electron_pressure_at_point_429______________________________ (pres_plasma_electron_profile429)_ 7.82028951406815322e+04 -Total_plasma_electron_pressure_at_point_430______________________________ (pres_plasma_electron_profile430)_ 7.74539734430900426e+04 -Total_plasma_electron_pressure_at_point_431______________________________ (pres_plasma_electron_profile431)_ 7.67120217649630504e+04 -Total_plasma_electron_pressure_at_point_432______________________________ (pres_plasma_electron_profile432)_ 7.59771386404043151e+04 -Total_plasma_electron_pressure_at_point_433______________________________ (pres_plasma_electron_profile433)_ 7.52494256469440734e+04 -Total_plasma_electron_pressure_at_point_434______________________________ (pres_plasma_electron_profile434)_ 7.45289876337366295e+04 -Total_plasma_electron_pressure_at_point_435______________________________ (pres_plasma_electron_profile435)_ 7.38159329729076271e+04 -Total_plasma_electron_pressure_at_point_436______________________________ (pres_plasma_electron_profile436)_ 7.31103738370860374e+04 -Total_plasma_electron_pressure_at_point_437______________________________ (pres_plasma_electron_profile437)_ 7.24124265066495864e+04 -Total_plasma_electron_pressure_at_point_438______________________________ (pres_plasma_electron_profile438)_ 7.17222117108098610e+04 -Total_plasma_electron_pressure_at_point_439______________________________ (pres_plasma_electron_profile439)_ 7.10398550073764345e+04 -Total_plasma_electron_pressure_at_point_440______________________________ (pres_plasma_electron_profile440)_ 7.03654872069097910e+04 -Total_plasma_electron_pressure_at_point_441______________________________ (pres_plasma_electron_profile441)_ 6.96992448480267922e+04 -Total_plasma_electron_pressure_at_point_442______________________________ (pres_plasma_electron_profile442)_ 6.90412707319186593e+04 -Total_plasma_electron_pressure_at_point_443______________________________ (pres_plasma_electron_profile443)_ 6.83917145257371885e+04 -Total_plasma_electron_pressure_at_point_444______________________________ (pres_plasma_electron_profile444)_ 6.77507334464893793e+04 -Total_plasma_electron_pressure_at_point_445______________________________ (pres_plasma_electron_profile445)_ 6.71184930395601259e+04 -Total_plasma_electron_pressure_at_point_446______________________________ (pres_plasma_electron_profile446)_ 6.64951680691143411e+04 -Total_plasma_electron_pressure_at_point_447______________________________ (pres_plasma_electron_profile447)_ 6.58809435416083143e+04 -Total_plasma_electron_pressure_at_point_448______________________________ (pres_plasma_electron_profile448)_ 6.52760158887517609e+04 -Total_plasma_electron_pressure_at_point_449______________________________ (pres_plasma_electron_profile449)_ 6.46805943428847168e+04 -Total_plasma_electron_pressure_at_point_450______________________________ (pres_plasma_electron_profile450)_ 6.40949025464170118e+04 -Total_plasma_electron_pressure_at_point_451______________________________ (pres_plasma_electron_profile451)_ 6.35191804484866880e+04 -Total_plasma_electron_pressure_at_point_452______________________________ (pres_plasma_electron_profile452)_ 6.29536865574526382e+04 -Total_plasma_electron_pressure_at_point_453______________________________ (pres_plasma_electron_profile453)_ 6.23987006388859372e+04 -Total_plasma_electron_pressure_at_point_454______________________________ (pres_plasma_electron_profile454)_ 6.18545269778355141e+04 -Total_plasma_electron_pressure_at_point_455______________________________ (pres_plasma_electron_profile455)_ 6.13214983650927825e+04 -Total_plasma_electron_pressure_at_point_456______________________________ (pres_plasma_electron_profile456)_ 6.07999810258869693e+04 -Total_plasma_electron_pressure_at_point_457______________________________ (pres_plasma_electron_profile457)_ 6.02903807954098083e+04 -Total_plasma_electron_pressure_at_point_458______________________________ (pres_plasma_electron_profile458)_ 5.97931509745139119e+04 -Total_plasma_electron_pressure_at_point_459______________________________ (pres_plasma_electron_profile459)_ 5.93088024976730303e+04 -Total_plasma_electron_pressure_at_point_460______________________________ (pres_plasma_electron_profile460)_ 5.88379173613630774e+04 -Total_plasma_electron_pressure_at_point_461______________________________ (pres_plasma_electron_profile461)_ 5.83811667822679374e+04 -Total_plasma_electron_pressure_at_point_462______________________________ (pres_plasma_electron_profile462)_ 5.79393364518552407e+04 -Total_plasma_electron_pressure_at_point_463______________________________ (pres_plasma_electron_profile463)_ 5.75133628788739152e+04 -Total_plasma_electron_pressure_at_point_464______________________________ (pres_plasma_electron_profile464)_ 5.71043879437600845e+04 -Total_plasma_electron_pressure_at_point_465______________________________ (pres_plasma_electron_profile465)_ 5.67138453156912874e+04 -Total_plasma_electron_pressure_at_point_466______________________________ (pres_plasma_electron_profile466)_ 5.63436074210315783e+04 -Total_plasma_electron_pressure_at_point_467______________________________ (pres_plasma_electron_profile467)_ 5.59962613622786375e+04 -Total_plasma_electron_pressure_at_point_468______________________________ (pres_plasma_electron_profile468)_ 5.56757101692815631e+04 -Total_plasma_electron_pressure_at_point_469______________________________ (pres_plasma_electron_profile469)_ 5.53888725910648573e+04 -Total_plasma_electron_pressure_at_point_470______________________________ (pres_plasma_electron_profile470)_ 5.51561625399744444e+04 -Total_plasma_electron_pressure_at_point_471______________________________ (pres_plasma_electron_profile471)_ 5.26187824279750421e+04 -Total_plasma_electron_pressure_at_point_472______________________________ (pres_plasma_electron_profile472)_ 5.01309543764393675e+04 -Total_plasma_electron_pressure_at_point_473______________________________ (pres_plasma_electron_profile473)_ 4.76926783853674133e+04 -Total_plasma_electron_pressure_at_point_474______________________________ (pres_plasma_electron_profile474)_ 4.53039544547591940e+04 -Total_plasma_electron_pressure_at_point_475______________________________ (pres_plasma_electron_profile475)_ 4.29647825846146734e+04 -Total_plasma_electron_pressure_at_point_476______________________________ (pres_plasma_electron_profile476)_ 4.06751627749338804e+04 -Total_plasma_electron_pressure_at_point_477______________________________ (pres_plasma_electron_profile477)_ 3.84350950257168079e+04 -Total_plasma_electron_pressure_at_point_478______________________________ (pres_plasma_electron_profile478)_ 3.62445793369634630e+04 -Total_plasma_electron_pressure_at_point_479______________________________ (pres_plasma_electron_profile479)_ 3.41036157086738240e+04 -Total_plasma_electron_pressure_at_point_480______________________________ (pres_plasma_electron_profile480)_ 3.20122041408479163e+04 -Total_plasma_electron_pressure_at_point_481______________________________ (pres_plasma_electron_profile481)_ 2.99703446334857181e+04 -Total_plasma_electron_pressure_at_point_482______________________________ (pres_plasma_electron_profile482)_ 2.79780371865872548e+04 -Total_plasma_electron_pressure_at_point_483______________________________ (pres_plasma_electron_profile483)_ 2.60352818001525011e+04 -Total_plasma_electron_pressure_at_point_484______________________________ (pres_plasma_electron_profile484)_ 2.41420784741814750e+04 -Total_plasma_electron_pressure_at_point_485______________________________ (pres_plasma_electron_profile485)_ 2.22984272086741621e+04 -Total_plasma_electron_pressure_at_point_486______________________________ (pres_plasma_electron_profile486)_ 2.05043280036305732e+04 -Total_plasma_electron_pressure_at_point_487______________________________ (pres_plasma_electron_profile487)_ 1.87597808590507047e+04 -Total_plasma_electron_pressure_at_point_488______________________________ (pres_plasma_electron_profile488)_ 1.70647857749345530e+04 -Total_plasma_electron_pressure_at_point_489______________________________ (pres_plasma_electron_profile489)_ 1.54193427512821236e+04 -Total_plasma_electron_pressure_at_point_490______________________________ (pres_plasma_electron_profile490)_ 1.38234517880934181e+04 -Total_plasma_electron_pressure_at_point_491______________________________ (pres_plasma_electron_profile491)_ 1.22771128853684295e+04 -Total_plasma_electron_pressure_at_point_492______________________________ (pres_plasma_electron_profile492)_ 1.07803260431071631e+04 -Total_plasma_electron_pressure_at_point_493______________________________ (pres_plasma_electron_profile493)_ 9.33309126130961522e+03 -Total_plasma_electron_pressure_at_point_494______________________________ (pres_plasma_electron_profile494)_ 7.93540853997579052e+03 -Total_plasma_electron_pressure_at_point_495______________________________ (pres_plasma_electron_profile495)_ 6.58727787910568259e+03 -Total_plasma_electron_pressure_at_point_496______________________________ (pres_plasma_electron_profile496)_ 5.28869927869929688e+03 -Total_plasma_electron_pressure_at_point_497______________________________ (pres_plasma_electron_profile497)_ 4.03967273875663113e+03 -Total_plasma_electron_pressure_at_point_498______________________________ (pres_plasma_electron_profile498)_ 2.84019825927768625e+03 -Total_plasma_electron_pressure_at_point_499______________________________ (pres_plasma_electron_profile499)_ 1.69027584026246109e+03 -Total_plasma_electron_pressure_at_point_500______________________________ (pres_plasma_electron_profile500)_ 5.89905481710956678e+02 -Total_plasma_ion_pressure_at_point_0_____________________________________ (pres_plasma_ion_total_profile0)_ 3.86272069652638806e+05 -Total_plasma_ion_pressure_at_point_1_____________________________________ (pres_plasma_ion_total_profile1)_ 3.86269370669314289e+05 -Total_plasma_ion_pressure_at_point_2_____________________________________ (pres_plasma_ion_total_profile2)_ 3.86261273787406040e+05 -Total_plasma_ion_pressure_at_point_3_____________________________________ (pres_plasma_ion_total_profile3)_ 3.86247779211108456e+05 -Total_plasma_ion_pressure_at_point_4_____________________________________ (pres_plasma_ion_total_profile4)_ 3.86228887280743453e+05 -Total_plasma_ion_pressure_at_point_5_____________________________________ (pres_plasma_ion_total_profile5)_ 3.86204598472756741e+05 -Total_plasma_ion_pressure_at_point_6_____________________________________ (pres_plasma_ion_total_profile6)_ 3.86174913399712474e+05 -Total_plasma_ion_pressure_at_point_7_____________________________________ (pres_plasma_ion_total_profile7)_ 3.86139832810286782e+05 -Total_plasma_ion_pressure_at_point_8_____________________________________ (pres_plasma_ion_total_profile8)_ 3.86099357589259918e+05 -Total_plasma_ion_pressure_at_point_9_____________________________________ (pres_plasma_ion_total_profile9)_ 3.86053488757506188e+05 -Total_plasma_ion_pressure_at_point_10____________________________________ (pres_plasma_ion_total_profile10)_ 3.86002227471984166e+05 -Total_plasma_ion_pressure_at_point_11____________________________________ (pres_plasma_ion_total_profile11)_ 3.85945575025723083e+05 -Total_plasma_ion_pressure_at_point_12____________________________________ (pres_plasma_ion_total_profile12)_ 3.85883532847810013e+05 -Total_plasma_ion_pressure_at_point_13____________________________________ (pres_plasma_ion_total_profile13)_ 3.85816102503373288e+05 -Total_plasma_ion_pressure_at_point_14____________________________________ (pres_plasma_ion_total_profile14)_ 3.85743285693567421e+05 -Total_plasma_ion_pressure_at_point_15____________________________________ (pres_plasma_ion_total_profile15)_ 3.85665084255553142e+05 -Total_plasma_ion_pressure_at_point_16____________________________________ (pres_plasma_ion_total_profile16)_ 3.85581500162479235e+05 -Total_plasma_ion_pressure_at_point_17____________________________________ (pres_plasma_ion_total_profile17)_ 3.85492535523460305e+05 -Total_plasma_ion_pressure_at_point_18____________________________________ (pres_plasma_ion_total_profile18)_ 3.85398192583554657e+05 -Total_plasma_ion_pressure_at_point_19____________________________________ (pres_plasma_ion_total_profile19)_ 3.85298473723740259e+05 -Total_plasma_ion_pressure_at_point_20____________________________________ (pres_plasma_ion_total_profile20)_ 3.85193381460888893e+05 -Total_plasma_ion_pressure_at_point_21____________________________________ (pres_plasma_ion_total_profile21)_ 3.85082918447739969e+05 -Total_plasma_ion_pressure_at_point_22____________________________________ (pres_plasma_ion_total_profile22)_ 3.84967087472870946e+05 -Total_plasma_ion_pressure_at_point_23____________________________________ (pres_plasma_ion_total_profile23)_ 3.84845891460668412e+05 -Total_plasma_ion_pressure_at_point_24____________________________________ (pres_plasma_ion_total_profile24)_ 3.84719333471296239e+05 -Total_plasma_ion_pressure_at_point_25____________________________________ (pres_plasma_ion_total_profile25)_ 3.84587416700663161e+05 -Total_plasma_ion_pressure_at_point_26____________________________________ (pres_plasma_ion_total_profile26)_ 3.84450144480387680e+05 -Total_plasma_ion_pressure_at_point_27____________________________________ (pres_plasma_ion_total_profile27)_ 3.84307520277763542e+05 -Total_plasma_ion_pressure_at_point_28____________________________________ (pres_plasma_ion_total_profile28)_ 3.84159547695721732e+05 -Total_plasma_ion_pressure_at_point_29____________________________________ (pres_plasma_ion_total_profile29)_ 3.84006230472791940e+05 -Total_plasma_ion_pressure_at_point_30____________________________________ (pres_plasma_ion_total_profile30)_ 3.83847572483062453e+05 -Total_plasma_ion_pressure_at_point_31____________________________________ (pres_plasma_ion_total_profile31)_ 3.83683577736139065e+05 -Total_plasma_ion_pressure_at_point_32____________________________________ (pres_plasma_ion_total_profile32)_ 3.83514250377101300e+05 -Total_plasma_ion_pressure_at_point_33____________________________________ (pres_plasma_ion_total_profile33)_ 3.83339594686458586e+05 -Total_plasma_ion_pressure_at_point_34____________________________________ (pres_plasma_ion_total_profile34)_ 3.83159615080103744e+05 -Total_plasma_ion_pressure_at_point_35____________________________________ (pres_plasma_ion_total_profile35)_ 3.82974316109266307e+05 -Total_plasma_ion_pressure_at_point_36____________________________________ (pres_plasma_ion_total_profile36)_ 3.82783702460462693e+05 -Total_plasma_ion_pressure_at_point_37____________________________________ (pres_plasma_ion_total_profile37)_ 3.82587778955447138e+05 -Total_plasma_ion_pressure_at_point_38____________________________________ (pres_plasma_ion_total_profile38)_ 3.82386550551158376e+05 -Total_plasma_ion_pressure_at_point_39____________________________________ (pres_plasma_ion_total_profile39)_ 3.82180022339667892e+05 -Total_plasma_ion_pressure_at_point_40____________________________________ (pres_plasma_ion_total_profile40)_ 3.81968199548124103e+05 -Total_plasma_ion_pressure_at_point_41____________________________________ (pres_plasma_ion_total_profile41)_ 3.81751087538696826e+05 -Total_plasma_ion_pressure_at_point_42____________________________________ (pres_plasma_ion_total_profile42)_ 3.81528691808519710e+05 -Total_plasma_ion_pressure_at_point_43____________________________________ (pres_plasma_ion_total_profile43)_ 3.81301017989630403e+05 -Total_plasma_ion_pressure_at_point_44____________________________________ (pres_plasma_ion_total_profile44)_ 3.81068071848910884e+05 -Total_plasma_ion_pressure_at_point_45____________________________________ (pres_plasma_ion_total_profile45)_ 3.80829859288024891e+05 -Total_plasma_ion_pressure_at_point_46____________________________________ (pres_plasma_ion_total_profile46)_ 3.80586386343354941e+05 -Total_plasma_ion_pressure_at_point_47____________________________________ (pres_plasma_ion_total_profile47)_ 3.80337659185936500e+05 -Total_plasma_ion_pressure_at_point_48____________________________________ (pres_plasma_ion_total_profile48)_ 3.80083684121392784e+05 -Total_plasma_ion_pressure_at_point_49____________________________________ (pres_plasma_ion_total_profile49)_ 3.79824467589866137e+05 -Total_plasma_ion_pressure_at_point_50____________________________________ (pres_plasma_ion_total_profile50)_ 3.79560016165948648e+05 -Total_plasma_ion_pressure_at_point_51____________________________________ (pres_plasma_ion_total_profile51)_ 3.79290336558611947e+05 -Total_plasma_ion_pressure_at_point_52____________________________________ (pres_plasma_ion_total_profile52)_ 3.79015435611134453e+05 -Total_plasma_ion_pressure_at_point_53____________________________________ (pres_plasma_ion_total_profile53)_ 3.78735320301027503e+05 -Total_plasma_ion_pressure_at_point_54____________________________________ (pres_plasma_ion_total_profile54)_ 3.78449997739961371e+05 -Total_plasma_ion_pressure_at_point_55____________________________________ (pres_plasma_ion_total_profile55)_ 3.78159475173686922e+05 -Total_plasma_ion_pressure_at_point_56____________________________________ (pres_plasma_ion_total_profile56)_ 3.77863759981959127e+05 -Total_plasma_ion_pressure_at_point_57____________________________________ (pres_plasma_ion_total_profile57)_ 3.77562859678455919e+05 -Total_plasma_ion_pressure_at_point_58____________________________________ (pres_plasma_ion_total_profile58)_ 3.77256781910698861e+05 -Total_plasma_ion_pressure_at_point_59____________________________________ (pres_plasma_ion_total_profile59)_ 3.76945534459969494e+05 -Total_plasma_ion_pressure_at_point_60____________________________________ (pres_plasma_ion_total_profile60)_ 3.76629125241225411e+05 -Total_plasma_ion_pressure_at_point_61____________________________________ (pres_plasma_ion_total_profile61)_ 3.76307562303015613e+05 -Total_plasma_ion_pressure_at_point_62____________________________________ (pres_plasma_ion_total_profile62)_ 3.75980853827392973e+05 -Total_plasma_ion_pressure_at_point_63____________________________________ (pres_plasma_ion_total_profile63)_ 3.75649008129826223e+05 -Total_plasma_ion_pressure_at_point_64____________________________________ (pres_plasma_ion_total_profile64)_ 3.75312033659109904e+05 -Total_plasma_ion_pressure_at_point_65____________________________________ (pres_plasma_ion_total_profile65)_ 3.74969938997273392e+05 -Total_plasma_ion_pressure_at_point_66____________________________________ (pres_plasma_ion_total_profile66)_ 3.74622732859487995e+05 -Total_plasma_ion_pressure_at_point_67____________________________________ (pres_plasma_ion_total_profile67)_ 3.74270424093972717e+05 -Total_plasma_ion_pressure_at_point_68____________________________________ (pres_plasma_ion_total_profile68)_ 3.73913021681898739e+05 -Total_plasma_ion_pressure_at_point_69____________________________________ (pres_plasma_ion_total_profile69)_ 3.73550534737292153e+05 -Total_plasma_ion_pressure_at_point_70____________________________________ (pres_plasma_ion_total_profile70)_ 3.73182972506935475e+05 -Total_plasma_ion_pressure_at_point_71____________________________________ (pres_plasma_ion_total_profile71)_ 3.72810344370267820e+05 -Total_plasma_ion_pressure_at_point_72____________________________________ (pres_plasma_ion_total_profile72)_ 3.72432659839282802e+05 -Total_plasma_ion_pressure_at_point_73____________________________________ (pres_plasma_ion_total_profile73)_ 3.72049928558426385e+05 -Total_plasma_ion_pressure_at_point_74____________________________________ (pres_plasma_ion_total_profile74)_ 3.71662160304491234e+05 -Total_plasma_ion_pressure_at_point_75____________________________________ (pres_plasma_ion_total_profile75)_ 3.71269364986512344e+05 -Total_plasma_ion_pressure_at_point_76____________________________________ (pres_plasma_ion_total_profile76)_ 3.70871552645658376e+05 -Total_plasma_ion_pressure_at_point_77____________________________________ (pres_plasma_ion_total_profile77)_ 3.70468733455123671e+05 -Total_plasma_ion_pressure_at_point_78____________________________________ (pres_plasma_ion_total_profile78)_ 3.70060917720017140e+05 -Total_plasma_ion_pressure_at_point_79____________________________________ (pres_plasma_ion_total_profile79)_ 3.69648115877251432e+05 -Total_plasma_ion_pressure_at_point_80____________________________________ (pres_plasma_ion_total_profile80)_ 3.69230338495429198e+05 -Total_plasma_ion_pressure_at_point_81____________________________________ (pres_plasma_ion_total_profile81)_ 3.68807596274728305e+05 -Total_plasma_ion_pressure_at_point_82____________________________________ (pres_plasma_ion_total_profile82)_ 3.68379900046785537e+05 -Total_plasma_ion_pressure_at_point_83____________________________________ (pres_plasma_ion_total_profile83)_ 3.67947260774579947e+05 -Total_plasma_ion_pressure_at_point_84____________________________________ (pres_plasma_ion_total_profile84)_ 3.67509689552312659e+05 -Total_plasma_ion_pressure_at_point_85____________________________________ (pres_plasma_ion_total_profile85)_ 3.67067197605287132e+05 -Total_plasma_ion_pressure_at_point_86____________________________________ (pres_plasma_ion_total_profile86)_ 3.66619796289786231e+05 -Total_plasma_ion_pressure_at_point_87____________________________________ (pres_plasma_ion_total_profile87)_ 3.66167497092949867e+05 -Total_plasma_ion_pressure_at_point_88____________________________________ (pres_plasma_ion_total_profile88)_ 3.65710311632649333e+05 -Total_plasma_ion_pressure_at_point_89____________________________________ (pres_plasma_ion_total_profile89)_ 3.65248251657361106e+05 -Total_plasma_ion_pressure_at_point_90____________________________________ (pres_plasma_ion_total_profile90)_ 3.64781329046038911e+05 -Total_plasma_ion_pressure_at_point_91____________________________________ (pres_plasma_ion_total_profile91)_ 3.64309555807984667e+05 -Total_plasma_ion_pressure_at_point_92____________________________________ (pres_plasma_ion_total_profile92)_ 3.63832944082717295e+05 -Total_plasma_ion_pressure_at_point_93____________________________________ (pres_plasma_ion_total_profile93)_ 3.63351506139841105e+05 -Total_plasma_ion_pressure_at_point_94____________________________________ (pres_plasma_ion_total_profile94)_ 3.62865254378911108e+05 -Total_plasma_ion_pressure_at_point_95____________________________________ (pres_plasma_ion_total_profile95)_ 3.62374201329298841e+05 -Total_plasma_ion_pressure_at_point_96____________________________________ (pres_plasma_ion_total_profile96)_ 3.61878359650055529e+05 -Total_plasma_ion_pressure_at_point_97____________________________________ (pres_plasma_ion_total_profile97)_ 3.61377742129773251e+05 -Total_plasma_ion_pressure_at_point_98____________________________________ (pres_plasma_ion_total_profile98)_ 3.60872361686446413e+05 -Total_plasma_ion_pressure_at_point_99____________________________________ (pres_plasma_ion_total_profile99)_ 3.60362231367330125e+05 -Total_plasma_ion_pressure_at_point_100___________________________________ (pres_plasma_ion_total_profile100)_ 3.59847364348798117e+05 -Total_plasma_ion_pressure_at_point_101___________________________________ (pres_plasma_ion_total_profile101)_ 3.59327773936198151e+05 -Total_plasma_ion_pressure_at_point_102___________________________________ (pres_plasma_ion_total_profile102)_ 3.58803473563707666e+05 -Total_plasma_ion_pressure_at_point_103___________________________________ (pres_plasma_ion_total_profile103)_ 3.58274476794186048e+05 -Total_plasma_ion_pressure_at_point_104___________________________________ (pres_plasma_ion_total_profile104)_ 3.57740797319026955e+05 -Total_plasma_ion_pressure_at_point_105___________________________________ (pres_plasma_ion_total_profile105)_ 3.57202448958008201e+05 -Total_plasma_ion_pressure_at_point_106___________________________________ (pres_plasma_ion_total_profile106)_ 3.56659445659140358e+05 -Total_plasma_ion_pressure_at_point_107___________________________________ (pres_plasma_ion_total_profile107)_ 3.56111801498515124e+05 -Total_plasma_ion_pressure_at_point_108___________________________________ (pres_plasma_ion_total_profile108)_ 3.55559530680149794e+05 -Total_plasma_ion_pressure_at_point_109___________________________________ (pres_plasma_ion_total_profile109)_ 3.55002647535832890e+05 -Total_plasma_ion_pressure_at_point_110___________________________________ (pres_plasma_ion_total_profile110)_ 3.54441166524966422e+05 -Total_plasma_ion_pressure_at_point_111___________________________________ (pres_plasma_ion_total_profile111)_ 3.53875102234408085e+05 -Total_plasma_ion_pressure_at_point_112___________________________________ (pres_plasma_ion_total_profile112)_ 3.53304469378310663e+05 -Total_plasma_ion_pressure_at_point_113___________________________________ (pres_plasma_ion_total_profile113)_ 3.52729282797961088e+05 -Total_plasma_ion_pressure_at_point_114___________________________________ (pres_plasma_ion_total_profile114)_ 3.52149557461617340e+05 -Total_plasma_ion_pressure_at_point_115___________________________________ (pres_plasma_ion_total_profile115)_ 3.51565308464344707e+05 -Total_plasma_ion_pressure_at_point_116___________________________________ (pres_plasma_ion_total_profile116)_ 3.50976551027849724e+05 -Total_plasma_ion_pressure_at_point_117___________________________________ (pres_plasma_ion_total_profile117)_ 3.50383300500312878e+05 -Total_plasma_ion_pressure_at_point_118___________________________________ (pres_plasma_ion_total_profile118)_ 3.49785572356220509e+05 -Total_plasma_ion_pressure_at_point_119___________________________________ (pres_plasma_ion_total_profile119)_ 3.49183382196194434e+05 -Total_plasma_ion_pressure_at_point_120___________________________________ (pres_plasma_ion_total_profile120)_ 3.48576745746820467e+05 -Total_plasma_ion_pressure_at_point_121___________________________________ (pres_plasma_ion_total_profile121)_ 3.47965678860475949e+05 -Total_plasma_ion_pressure_at_point_122___________________________________ (pres_plasma_ion_total_profile122)_ 3.47350197515154665e+05 -Total_plasma_ion_pressure_at_point_123___________________________________ (pres_plasma_ion_total_profile123)_ 3.46730317814291979e+05 -Total_plasma_ion_pressure_at_point_124___________________________________ (pres_plasma_ion_total_profile124)_ 3.46106055986586725e+05 -Total_plasma_ion_pressure_at_point_125___________________________________ (pres_plasma_ion_total_profile125)_ 3.45477428385823616e+05 -Total_plasma_ion_pressure_at_point_126___________________________________ (pres_plasma_ion_total_profile126)_ 3.44844451490692096e+05 -Total_plasma_ion_pressure_at_point_127___________________________________ (pres_plasma_ion_total_profile127)_ 3.44207141904605494e+05 -Total_plasma_ion_pressure_at_point_128___________________________________ (pres_plasma_ion_total_profile128)_ 3.43565516355517786e+05 -Total_plasma_ion_pressure_at_point_129___________________________________ (pres_plasma_ion_total_profile129)_ 3.42919591695739829e+05 -Total_plasma_ion_pressure_at_point_130___________________________________ (pres_plasma_ion_total_profile130)_ 3.42269384901752928e+05 -Total_plasma_ion_pressure_at_point_131___________________________________ (pres_plasma_ion_total_profile131)_ 3.41614913074021810e+05 -Total_plasma_ion_pressure_at_point_132___________________________________ (pres_plasma_ion_total_profile132)_ 3.40956193436806439e+05 -Total_plasma_ion_pressure_at_point_133___________________________________ (pres_plasma_ion_total_profile133)_ 3.40293243337971449e+05 -Total_plasma_ion_pressure_at_point_134___________________________________ (pres_plasma_ion_total_profile134)_ 3.39626080248794984e+05 -Total_plasma_ion_pressure_at_point_135___________________________________ (pres_plasma_ion_total_profile135)_ 3.38954721763775975e+05 -Total_plasma_ion_pressure_at_point_136___________________________________ (pres_plasma_ion_total_profile136)_ 3.38279185600439901e+05 -Total_plasma_ion_pressure_at_point_137___________________________________ (pres_plasma_ion_total_profile137)_ 3.37599489599142340e+05 -Total_plasma_ion_pressure_at_point_138___________________________________ (pres_plasma_ion_total_profile138)_ 3.36915651722873386e+05 -Total_plasma_ion_pressure_at_point_139___________________________________ (pres_plasma_ion_total_profile139)_ 3.36227690057057829e+05 -Total_plasma_ion_pressure_at_point_140___________________________________ (pres_plasma_ion_total_profile140)_ 3.35535622809356195e+05 -Total_plasma_ion_pressure_at_point_141___________________________________ (pres_plasma_ion_total_profile141)_ 3.34839468309462769e+05 -Total_plasma_ion_pressure_at_point_142___________________________________ (pres_plasma_ion_total_profile142)_ 3.34139245008903788e+05 -Total_plasma_ion_pressure_at_point_143___________________________________ (pres_plasma_ion_total_profile143)_ 3.33434971480832959e+05 -Total_plasma_ion_pressure_at_point_144___________________________________ (pres_plasma_ion_total_profile144)_ 3.32726666419825691e+05 -Total_plasma_ion_pressure_at_point_145___________________________________ (pres_plasma_ion_total_profile145)_ 3.32014348641673103e+05 -Total_plasma_ion_pressure_at_point_146___________________________________ (pres_plasma_ion_total_profile146)_ 3.31298037083173578e+05 -Total_plasma_ion_pressure_at_point_147___________________________________ (pres_plasma_ion_total_profile147)_ 3.30577750801922753e+05 -Total_plasma_ion_pressure_at_point_148___________________________________ (pres_plasma_ion_total_profile148)_ 3.29853508976103330e+05 -Total_plasma_ion_pressure_at_point_149___________________________________ (pres_plasma_ion_total_profile149)_ 3.29125330904272327e+05 -Total_plasma_ion_pressure_at_point_150___________________________________ (pres_plasma_ion_total_profile150)_ 3.28393236005147861e+05 -Total_plasma_ion_pressure_at_point_151___________________________________ (pres_plasma_ion_total_profile151)_ 3.27657243817393726e+05 -Total_plasma_ion_pressure_at_point_152___________________________________ (pres_plasma_ion_total_profile152)_ 3.26917373999403208e+05 -Total_plasma_ion_pressure_at_point_153___________________________________ (pres_plasma_ion_total_profile153)_ 3.26173646329081967e+05 -Total_plasma_ion_pressure_at_point_154___________________________________ (pres_plasma_ion_total_profile154)_ 3.25426080703627842e+05 -Total_plasma_ion_pressure_at_point_155___________________________________ (pres_plasma_ion_total_profile155)_ 3.24674697139311815e+05 -Total_plasma_ion_pressure_at_point_156___________________________________ (pres_plasma_ion_total_profile156)_ 3.23919515771255596e+05 -Total_plasma_ion_pressure_at_point_157___________________________________ (pres_plasma_ion_total_profile157)_ 3.23160556853208400e+05 -Total_plasma_ion_pressure_at_point_158___________________________________ (pres_plasma_ion_total_profile158)_ 3.22397840757323313e+05 -Total_plasma_ion_pressure_at_point_159___________________________________ (pres_plasma_ion_total_profile159)_ 3.21631387973931152e+05 -Total_plasma_ion_pressure_at_point_160___________________________________ (pres_plasma_ion_total_profile160)_ 3.20861219111313636e+05 -Total_plasma_ion_pressure_at_point_161___________________________________ (pres_plasma_ion_total_profile161)_ 3.20087354895475321e+05 -Total_plasma_ion_pressure_at_point_162___________________________________ (pres_plasma_ion_total_profile162)_ 3.19309816169913742e+05 -Total_plasma_ion_pressure_at_point_163___________________________________ (pres_plasma_ion_total_profile163)_ 3.18528623895388562e+05 -Total_plasma_ion_pressure_at_point_164___________________________________ (pres_plasma_ion_total_profile164)_ 3.17743799149689905e+05 -Total_plasma_ion_pressure_at_point_165___________________________________ (pres_plasma_ion_total_profile165)_ 3.16955363127404300e+05 -Total_plasma_ion_pressure_at_point_166___________________________________ (pres_plasma_ion_total_profile166)_ 3.16163337139680574e+05 -Total_plasma_ion_pressure_at_point_167___________________________________ (pres_plasma_ion_total_profile167)_ 3.15367742613993643e+05 -Total_plasma_ion_pressure_at_point_168___________________________________ (pres_plasma_ion_total_profile168)_ 3.14568601093907142e+05 -Total_plasma_ion_pressure_at_point_169___________________________________ (pres_plasma_ion_total_profile169)_ 3.13765934238835645e+05 -Total_plasma_ion_pressure_at_point_170___________________________________ (pres_plasma_ion_total_profile170)_ 3.12959763823804038e+05 -Total_plasma_ion_pressure_at_point_171___________________________________ (pres_plasma_ion_total_profile171)_ 3.12150111739207408e+05 -Total_plasma_ion_pressure_at_point_172___________________________________ (pres_plasma_ion_total_profile172)_ 3.11336999990568438e+05 -Total_plasma_ion_pressure_at_point_173___________________________________ (pres_plasma_ion_total_profile173)_ 3.10520450698294269e+05 -Total_plasma_ion_pressure_at_point_174___________________________________ (pres_plasma_ion_total_profile174)_ 3.09700486097431974e+05 -Total_plasma_ion_pressure_at_point_175___________________________________ (pres_plasma_ion_total_profile175)_ 3.08877128537422745e+05 -Total_plasma_ion_pressure_at_point_176___________________________________ (pres_plasma_ion_total_profile176)_ 3.08050400481854624e+05 -Total_plasma_ion_pressure_at_point_177___________________________________ (pres_plasma_ion_total_profile177)_ 3.07220324508215126e+05 -Total_plasma_ion_pressure_at_point_178___________________________________ (pres_plasma_ion_total_profile178)_ 3.06386923307641002e+05 -Total_plasma_ion_pressure_at_point_179___________________________________ (pres_plasma_ion_total_profile179)_ 3.05550219684668817e+05 -Total_plasma_ion_pressure_at_point_180___________________________________ (pres_plasma_ion_total_profile180)_ 3.04710236556982505e+05 -Total_plasma_ion_pressure_at_point_181___________________________________ (pres_plasma_ion_total_profile181)_ 3.03866996955161216e+05 -Total_plasma_ion_pressure_at_point_182___________________________________ (pres_plasma_ion_total_profile182)_ 3.03020524022425176e+05 -Total_plasma_ion_pressure_at_point_183___________________________________ (pres_plasma_ion_total_profile183)_ 3.02170841014380509e+05 -Total_plasma_ion_pressure_at_point_184___________________________________ (pres_plasma_ion_total_profile184)_ 3.01317971298763936e+05 -Total_plasma_ion_pressure_at_point_185___________________________________ (pres_plasma_ion_total_profile185)_ 3.00461938355184917e+05 -Total_plasma_ion_pressure_at_point_186___________________________________ (pres_plasma_ion_total_profile186)_ 2.99602765774867497e+05 -Total_plasma_ion_pressure_at_point_187___________________________________ (pres_plasma_ion_total_profile187)_ 2.98740477260391461e+05 -Total_plasma_ion_pressure_at_point_188___________________________________ (pres_plasma_ion_total_profile188)_ 2.97875096625431499e+05 -Total_plasma_ion_pressure_at_point_189___________________________________ (pres_plasma_ion_total_profile189)_ 2.97006647794496326e+05 -Total_plasma_ion_pressure_at_point_190___________________________________ (pres_plasma_ion_total_profile190)_ 2.96135154802665638e+05 -Total_plasma_ion_pressure_at_point_191___________________________________ (pres_plasma_ion_total_profile191)_ 2.95260641795327596e+05 -Total_plasma_ion_pressure_at_point_192___________________________________ (pres_plasma_ion_total_profile192)_ 2.94383133027913282e+05 -Total_plasma_ion_pressure_at_point_193___________________________________ (pres_plasma_ion_total_profile193)_ 2.93502652865632670e+05 -Total_plasma_ion_pressure_at_point_194___________________________________ (pres_plasma_ion_total_profile194)_ 2.92619225783207105e+05 -Total_plasma_ion_pressure_at_point_195___________________________________ (pres_plasma_ion_total_profile195)_ 2.91732876364602940e+05 -Total_plasma_ion_pressure_at_point_196___________________________________ (pres_plasma_ion_total_profile196)_ 2.90843629302762682e+05 -Total_plasma_ion_pressure_at_point_197___________________________________ (pres_plasma_ion_total_profile197)_ 2.89951509399336472e+05 -Total_plasma_ion_pressure_at_point_198___________________________________ (pres_plasma_ion_total_profile198)_ 2.89056541564411484e+05 -Total_plasma_ion_pressure_at_point_199___________________________________ (pres_plasma_ion_total_profile199)_ 2.88158750816241780e+05 -Total_plasma_ion_pressure_at_point_200___________________________________ (pres_plasma_ion_total_profile200)_ 2.87258162280975899e+05 -Total_plasma_ion_pressure_at_point_201___________________________________ (pres_plasma_ion_total_profile201)_ 2.86354801192384737e+05 -Total_plasma_ion_pressure_at_point_202___________________________________ (pres_plasma_ion_total_profile202)_ 2.85448692891588144e+05 -Total_plasma_ion_pressure_at_point_203___________________________________ (pres_plasma_ion_total_profile203)_ 2.84539862826780591e+05 -Total_plasma_ion_pressure_at_point_204___________________________________ (pres_plasma_ion_total_profile204)_ 2.83628336552956665e+05 -Total_plasma_ion_pressure_at_point_205___________________________________ (pres_plasma_ion_total_profile205)_ 2.82714139731634932e+05 -Total_plasma_ion_pressure_at_point_206___________________________________ (pres_plasma_ion_total_profile206)_ 2.81797298130581737e+05 -Total_plasma_ion_pressure_at_point_207___________________________________ (pres_plasma_ion_total_profile207)_ 2.80877837623534084e+05 -Total_plasma_ion_pressure_at_point_208___________________________________ (pres_plasma_ion_total_profile208)_ 2.79955784189922037e+05 -Total_plasma_ion_pressure_at_point_209___________________________________ (pres_plasma_ion_total_profile209)_ 2.79031163914590259e+05 -Total_plasma_ion_pressure_at_point_210___________________________________ (pres_plasma_ion_total_profile210)_ 2.78104002987518616e+05 -Total_plasma_ion_pressure_at_point_211___________________________________ (pres_plasma_ion_total_profile211)_ 2.77174327703543182e+05 -Total_plasma_ion_pressure_at_point_212___________________________________ (pres_plasma_ion_total_profile212)_ 2.76242164462075219e+05 -Total_plasma_ion_pressure_at_point_213___________________________________ (pres_plasma_ion_total_profile213)_ 2.75307539766821079e+05 -Total_plasma_ion_pressure_at_point_214___________________________________ (pres_plasma_ion_total_profile214)_ 2.74370480225500534e+05 -Total_plasma_ion_pressure_at_point_215___________________________________ (pres_plasma_ion_total_profile215)_ 2.73431012549565232e+05 -Total_plasma_ion_pressure_at_point_216___________________________________ (pres_plasma_ion_total_profile216)_ 2.72489163553916384e+05 -Total_plasma_ion_pressure_at_point_217___________________________________ (pres_plasma_ion_total_profile217)_ 2.71544960156621935e+05 -Total_plasma_ion_pressure_at_point_218___________________________________ (pres_plasma_ion_total_profile218)_ 2.70598429378634086e+05 -Total_plasma_ion_pressure_at_point_219___________________________________ (pres_plasma_ion_total_profile219)_ 2.69649598343504651e+05 -Total_plasma_ion_pressure_at_point_220___________________________________ (pres_plasma_ion_total_profile220)_ 2.68698494277102989e+05 -Total_plasma_ion_pressure_at_point_221___________________________________ (pres_plasma_ion_total_profile221)_ 2.67745144507330551e+05 -Total_plasma_ion_pressure_at_point_222___________________________________ (pres_plasma_ion_total_profile222)_ 2.66789576463837351e+05 -Total_plasma_ion_pressure_at_point_223___________________________________ (pres_plasma_ion_total_profile223)_ 2.65831817677737214e+05 -Total_plasma_ion_pressure_at_point_224___________________________________ (pres_plasma_ion_total_profile224)_ 2.64871895781323139e+05 -Total_plasma_ion_pressure_at_point_225___________________________________ (pres_plasma_ion_total_profile225)_ 2.63909838507782493e+05 -Total_plasma_ion_pressure_at_point_226___________________________________ (pres_plasma_ion_total_profile226)_ 2.62945673690912023e+05 -Total_plasma_ion_pressure_at_point_227___________________________________ (pres_plasma_ion_total_profile227)_ 2.61979429264832608e+05 -Total_plasma_ion_pressure_at_point_228___________________________________ (pres_plasma_ion_total_profile228)_ 2.61011133263704716e+05 -Total_plasma_ion_pressure_at_point_229___________________________________ (pres_plasma_ion_total_profile229)_ 2.60040813821443444e+05 -Total_plasma_ion_pressure_at_point_230___________________________________ (pres_plasma_ion_total_profile230)_ 2.59068499171432981e+05 -Total_plasma_ion_pressure_at_point_231___________________________________ (pres_plasma_ion_total_profile231)_ 2.58094217646242294e+05 -Total_plasma_ion_pressure_at_point_232___________________________________ (pres_plasma_ion_total_profile232)_ 2.57117997677340725e+05 -Total_plasma_ion_pressure_at_point_233___________________________________ (pres_plasma_ion_total_profile233)_ 2.56139867794812919e+05 -Total_plasma_ion_pressure_at_point_234___________________________________ (pres_plasma_ion_total_profile234)_ 2.55159856627075176e+05 -Total_plasma_ion_pressure_at_point_235___________________________________ (pres_plasma_ion_total_profile235)_ 2.54177992900591635e+05 -Total_plasma_ion_pressure_at_point_236___________________________________ (pres_plasma_ion_total_profile236)_ 2.53194305439590360e+05 -Total_plasma_ion_pressure_at_point_237___________________________________ (pres_plasma_ion_total_profile237)_ 2.52208823165780981e+05 -Total_plasma_ion_pressure_at_point_238___________________________________ (pres_plasma_ion_total_profile238)_ 2.51221575098071946e+05 -Total_plasma_ion_pressure_at_point_239___________________________________ (pres_plasma_ion_total_profile239)_ 2.50232590352288156e+05 -Total_plasma_ion_pressure_at_point_240___________________________________ (pres_plasma_ion_total_profile240)_ 2.49241898140890116e+05 -Total_plasma_ion_pressure_at_point_241___________________________________ (pres_plasma_ion_total_profile241)_ 2.48249527772692905e+05 -Total_plasma_ion_pressure_at_point_242___________________________________ (pres_plasma_ion_total_profile242)_ 2.47255508652586432e+05 -Total_plasma_ion_pressure_at_point_243___________________________________ (pres_plasma_ion_total_profile243)_ 2.46259870281256182e+05 -Total_plasma_ion_pressure_at_point_244___________________________________ (pres_plasma_ion_total_profile244)_ 2.45262642254905048e+05 -Total_plasma_ion_pressure_at_point_245___________________________________ (pres_plasma_ion_total_profile245)_ 2.44263854264975380e+05 -Total_plasma_ion_pressure_at_point_246___________________________________ (pres_plasma_ion_total_profile246)_ 2.43263536097873963e+05 -Total_plasma_ion_pressure_at_point_247___________________________________ (pres_plasma_ion_total_profile247)_ 2.42261717634695407e+05 -Total_plasma_ion_pressure_at_point_248___________________________________ (pres_plasma_ion_total_profile248)_ 2.41258428850948781e+05 -Total_plasma_ion_pressure_at_point_249___________________________________ (pres_plasma_ion_total_profile249)_ 2.40253699816284439e+05 -Total_plasma_ion_pressure_at_point_250___________________________________ (pres_plasma_ion_total_profile250)_ 2.39247560694223444e+05 -Total_plasma_ion_pressure_at_point_251___________________________________ (pres_plasma_ion_total_profile251)_ 2.38240041741885652e+05 -Total_plasma_ion_pressure_at_point_252___________________________________ (pres_plasma_ion_total_profile252)_ 2.37231173309723643e+05 -Total_plasma_ion_pressure_at_point_253___________________________________ (pres_plasma_ion_total_profile253)_ 2.36220985841252987e+05 -Total_plasma_ion_pressure_at_point_254___________________________________ (pres_plasma_ion_total_profile254)_ 2.35209509872789233e+05 -Total_plasma_ion_pressure_at_point_255___________________________________ (pres_plasma_ion_total_profile255)_ 2.34196776033182919e+05 -Total_plasma_ion_pressure_at_point_256___________________________________ (pres_plasma_ion_total_profile256)_ 2.33182815043558861e+05 -Total_plasma_ion_pressure_at_point_257___________________________________ (pres_plasma_ion_total_profile257)_ 2.32167657717055670e+05 -Total_plasma_ion_pressure_at_point_258___________________________________ (pres_plasma_ion_total_profile258)_ 2.31151334958568914e+05 -Total_plasma_ion_pressure_at_point_259___________________________________ (pres_plasma_ion_total_profile259)_ 2.30133877764495090e+05 -Total_plasma_ion_pressure_at_point_260___________________________________ (pres_plasma_ion_total_profile260)_ 2.29115317222479061e+05 -Total_plasma_ion_pressure_at_point_261___________________________________ (pres_plasma_ion_total_profile261)_ 2.28095684511162777e+05 -Total_plasma_ion_pressure_at_point_262___________________________________ (pres_plasma_ion_total_profile262)_ 2.27075010899937915e+05 -Total_plasma_ion_pressure_at_point_263___________________________________ (pres_plasma_ion_total_profile263)_ 2.26053327748699696e+05 -Total_plasma_ion_pressure_at_point_264___________________________________ (pres_plasma_ion_total_profile264)_ 2.25030666507604619e+05 -Total_plasma_ion_pressure_at_point_265___________________________________ (pres_plasma_ion_total_profile265)_ 2.24007058716830390e+05 -Total_plasma_ion_pressure_at_point_266___________________________________ (pres_plasma_ion_total_profile266)_ 2.22982536006339418e+05 -Total_plasma_ion_pressure_at_point_267___________________________________ (pres_plasma_ion_total_profile267)_ 2.21957130095644941e+05 -Total_plasma_ion_pressure_at_point_268___________________________________ (pres_plasma_ion_total_profile268)_ 2.20930872793581599e+05 -Total_plasma_ion_pressure_at_point_269___________________________________ (pres_plasma_ion_total_profile269)_ 2.19903795998077432e+05 -Total_plasma_ion_pressure_at_point_270___________________________________ (pres_plasma_ion_total_profile270)_ 2.18875931695932319e+05 -Total_plasma_ion_pressure_at_point_271___________________________________ (pres_plasma_ion_total_profile271)_ 2.17847311962596868e+05 -Total_plasma_ion_pressure_at_point_272___________________________________ (pres_plasma_ion_total_profile272)_ 2.16817968961958715e+05 -Total_plasma_ion_pressure_at_point_273___________________________________ (pres_plasma_ion_total_profile273)_ 2.15787934946130175e+05 -Total_plasma_ion_pressure_at_point_274___________________________________ (pres_plasma_ion_total_profile274)_ 2.14757242255241988e+05 -Total_plasma_ion_pressure_at_point_275___________________________________ (pres_plasma_ion_total_profile275)_ 2.13725923317240056e+05 -Total_plasma_ion_pressure_at_point_276___________________________________ (pres_plasma_ion_total_profile276)_ 2.12694010647688207e+05 -Total_plasma_ion_pressure_at_point_277___________________________________ (pres_plasma_ion_total_profile277)_ 2.11661536849575146e+05 -Total_plasma_ion_pressure_at_point_278___________________________________ (pres_plasma_ion_total_profile278)_ 2.10628534613126103e+05 -Total_plasma_ion_pressure_at_point_279___________________________________ (pres_plasma_ion_total_profile279)_ 2.09595036715620285e+05 -Total_plasma_ion_pressure_at_point_280___________________________________ (pres_plasma_ion_total_profile280)_ 2.08561076021214074e+05 -Total_plasma_ion_pressure_at_point_281___________________________________ (pres_plasma_ion_total_profile281)_ 2.07526685480768589e+05 -Total_plasma_ion_pressure_at_point_282___________________________________ (pres_plasma_ion_total_profile282)_ 2.06491898131684633e+05 -Total_plasma_ion_pressure_at_point_283___________________________________ (pres_plasma_ion_total_profile283)_ 2.05456747097742540e+05 -Total_plasma_ion_pressure_at_point_284___________________________________ (pres_plasma_ion_total_profile284)_ 2.04421265588949755e+05 -Total_plasma_ion_pressure_at_point_285___________________________________ (pres_plasma_ion_total_profile285)_ 2.03385486901393480e+05 -Total_plasma_ion_pressure_at_point_286___________________________________ (pres_plasma_ion_total_profile286)_ 2.02349444417101244e+05 -Total_plasma_ion_pressure_at_point_287___________________________________ (pres_plasma_ion_total_profile287)_ 2.01313171603908384e+05 -Total_plasma_ion_pressure_at_point_288___________________________________ (pres_plasma_ion_total_profile288)_ 2.00276702015332499e+05 -Total_plasma_ion_pressure_at_point_289___________________________________ (pres_plasma_ion_total_profile289)_ 1.99240069290456449e+05 -Total_plasma_ion_pressure_at_point_290___________________________________ (pres_plasma_ion_total_profile290)_ 1.98203307153818314e+05 -Total_plasma_ion_pressure_at_point_291___________________________________ (pres_plasma_ion_total_profile291)_ 1.97166449415310693e+05 -Total_plasma_ion_pressure_at_point_292___________________________________ (pres_plasma_ion_total_profile292)_ 1.96129529970087548e+05 -Total_plasma_ion_pressure_at_point_293___________________________________ (pres_plasma_ion_total_profile293)_ 1.95092582798480726e+05 -Total_plasma_ion_pressure_at_point_294___________________________________ (pres_plasma_ion_total_profile294)_ 1.94055641965925548e+05 -Total_plasma_ion_pressure_at_point_295___________________________________ (pres_plasma_ion_total_profile295)_ 1.93018741622896050e+05 -Total_plasma_ion_pressure_at_point_296___________________________________ (pres_plasma_ion_total_profile296)_ 1.91981916004849772e+05 -Total_plasma_ion_pressure_at_point_297___________________________________ (pres_plasma_ion_total_profile297)_ 1.90945199432183639e+05 -Total_plasma_ion_pressure_at_point_298___________________________________ (pres_plasma_ion_total_profile298)_ 1.89908626310199790e+05 -Total_plasma_ion_pressure_at_point_299___________________________________ (pres_plasma_ion_total_profile299)_ 1.88872231129083288e+05 -Total_plasma_ion_pressure_at_point_300___________________________________ (pres_plasma_ion_total_profile300)_ 1.87836048463890387e+05 -Total_plasma_ion_pressure_at_point_301___________________________________ (pres_plasma_ion_total_profile301)_ 1.86800112974550429e+05 -Total_plasma_ion_pressure_at_point_302___________________________________ (pres_plasma_ion_total_profile302)_ 1.85764459405877948e+05 -Total_plasma_ion_pressure_at_point_303___________________________________ (pres_plasma_ion_total_profile303)_ 1.84729122587599297e+05 -Total_plasma_ion_pressure_at_point_304___________________________________ (pres_plasma_ion_total_profile304)_ 1.83694137434392353e+05 -Total_plasma_ion_pressure_at_point_305___________________________________ (pres_plasma_ion_total_profile305)_ 1.82659538945939654e+05 -Total_plasma_ion_pressure_at_point_306___________________________________ (pres_plasma_ion_total_profile306)_ 1.81625362206996127e+05 -Total_plasma_ion_pressure_at_point_307___________________________________ (pres_plasma_ion_total_profile307)_ 1.80591642387471657e+05 -Total_plasma_ion_pressure_at_point_308___________________________________ (pres_plasma_ion_total_profile308)_ 1.79558414742529043e+05 -Total_plasma_ion_pressure_at_point_309___________________________________ (pres_plasma_ion_total_profile309)_ 1.78525714612698677e+05 -Total_plasma_ion_pressure_at_point_310___________________________________ (pres_plasma_ion_total_profile310)_ 1.77493577424008399e+05 -Total_plasma_ion_pressure_at_point_311___________________________________ (pres_plasma_ion_total_profile311)_ 1.76462038688132365e+05 -Total_plasma_ion_pressure_at_point_312___________________________________ (pres_plasma_ion_total_profile312)_ 1.75431134002555744e+05 -Total_plasma_ion_pressure_at_point_313___________________________________ (pres_plasma_ion_total_profile313)_ 1.74400899050760549e+05 -Total_plasma_ion_pressure_at_point_314___________________________________ (pres_plasma_ion_total_profile314)_ 1.73371369602427847e+05 -Total_plasma_ion_pressure_at_point_315___________________________________ (pres_plasma_ion_total_profile315)_ 1.72342581513662386e+05 -Total_plasma_ion_pressure_at_point_316___________________________________ (pres_plasma_ion_total_profile316)_ 1.71314570727236191e+05 -Total_plasma_ion_pressure_at_point_317___________________________________ (pres_plasma_ion_total_profile317)_ 1.70287373272854951e+05 -Total_plasma_ion_pressure_at_point_318___________________________________ (pres_plasma_ion_total_profile318)_ 1.69261025267445337e+05 -Total_plasma_ion_pressure_at_point_319___________________________________ (pres_plasma_ion_total_profile319)_ 1.68235562915467046e+05 -Total_plasma_ion_pressure_at_point_320___________________________________ (pres_plasma_ion_total_profile320)_ 1.67211022509247065e+05 -Total_plasma_ion_pressure_at_point_321___________________________________ (pres_plasma_ion_total_profile321)_ 1.66187440429340350e+05 -Total_plasma_ion_pressure_at_point_322___________________________________ (pres_plasma_ion_total_profile322)_ 1.65164853144915600e+05 -Total_plasma_ion_pressure_at_point_323___________________________________ (pres_plasma_ion_total_profile323)_ 1.64143297214167978e+05 -Total_plasma_ion_pressure_at_point_324___________________________________ (pres_plasma_ion_total_profile324)_ 1.63122809284759482e+05 -Total_plasma_ion_pressure_at_point_325___________________________________ (pres_plasma_ion_total_profile325)_ 1.62103426094288909e+05 -Total_plasma_ion_pressure_at_point_326___________________________________ (pres_plasma_ion_total_profile326)_ 1.61085184470790700e+05 -Total_plasma_ion_pressure_at_point_327___________________________________ (pres_plasma_ion_total_profile327)_ 1.60068121333266259e+05 -Total_plasma_ion_pressure_at_point_328___________________________________ (pres_plasma_ion_total_profile328)_ 1.59052273692246265e+05 -Total_plasma_ion_pressure_at_point_329___________________________________ (pres_plasma_ion_total_profile329)_ 1.58037678650388145e+05 -Total_plasma_ion_pressure_at_point_330___________________________________ (pres_plasma_ion_total_profile330)_ 1.57024373403106758e+05 -Total_plasma_ion_pressure_at_point_331___________________________________ (pres_plasma_ion_total_profile331)_ 1.56012395239242847e+05 -Total_plasma_ion_pressure_at_point_332___________________________________ (pres_plasma_ion_total_profile332)_ 1.55001781541767908e+05 -Total_plasma_ion_pressure_at_point_333___________________________________ (pres_plasma_ion_total_profile333)_ 1.53992569788529392e+05 -Total_plasma_ion_pressure_at_point_334___________________________________ (pres_plasma_ion_total_profile334)_ 1.52984797553035867e+05 -Total_plasma_ion_pressure_at_point_335___________________________________ (pres_plasma_ion_total_profile335)_ 1.51978502505284385e+05 -Total_plasma_ion_pressure_at_point_336___________________________________ (pres_plasma_ion_total_profile336)_ 1.50973722412632429e+05 -Total_plasma_ion_pressure_at_point_337___________________________________ (pres_plasma_ion_total_profile337)_ 1.49970495140715124e+05 -Total_plasma_ion_pressure_at_point_338___________________________________ (pres_plasma_ion_total_profile338)_ 1.48968858654410054e+05 -Total_plasma_ion_pressure_at_point_339___________________________________ (pres_plasma_ion_total_profile339)_ 1.47968851018851856e+05 -Total_plasma_ion_pressure_at_point_340___________________________________ (pres_plasma_ion_total_profile340)_ 1.46970510400497791e+05 -Total_plasma_ion_pressure_at_point_341___________________________________ (pres_plasma_ion_total_profile341)_ 1.45973875068247027e+05 -Total_plasma_ion_pressure_at_point_342___________________________________ (pres_plasma_ion_total_profile342)_ 1.44978983394616080e+05 -Total_plasma_ion_pressure_at_point_343___________________________________ (pres_plasma_ion_total_profile343)_ 1.43985873856971448e+05 -Total_plasma_ion_pressure_at_point_344___________________________________ (pres_plasma_ion_total_profile344)_ 1.42994585038823599e+05 -Total_plasma_ion_pressure_at_point_345___________________________________ (pres_plasma_ion_total_profile345)_ 1.42005155631182512e+05 -Total_plasma_ion_pressure_at_point_346___________________________________ (pres_plasma_ion_total_profile346)_ 1.41017624433980265e+05 -Total_plasma_ion_pressure_at_point_347___________________________________ (pres_plasma_ion_total_profile347)_ 1.40032030357560579e+05 -Total_plasma_ion_pressure_at_point_348___________________________________ (pres_plasma_ion_total_profile348)_ 1.39048412424240174e+05 -Total_plasma_ion_pressure_at_point_349___________________________________ (pres_plasma_ion_total_profile349)_ 1.38066809769943764e+05 -Total_plasma_ion_pressure_at_point_350___________________________________ (pres_plasma_ion_total_profile350)_ 1.37087261645916762e+05 -Total_plasma_ion_pressure_at_point_351___________________________________ (pres_plasma_ion_total_profile351)_ 1.36109807420517725e+05 -Total_plasma_ion_pressure_at_point_352___________________________________ (pres_plasma_ion_total_profile352)_ 1.35134486581096106e+05 -Total_plasma_ion_pressure_at_point_353___________________________________ (pres_plasma_ion_total_profile353)_ 1.34161338735955855e+05 -Total_plasma_ion_pressure_at_point_354___________________________________ (pres_plasma_ion_total_profile354)_ 1.33190403616412106e+05 -Total_plasma_ion_pressure_at_point_355___________________________________ (pres_plasma_ion_total_profile355)_ 1.32221721078942326e+05 -Total_plasma_ion_pressure_at_point_356___________________________________ (pres_plasma_ion_total_profile356)_ 1.31255331107437232e+05 -Total_plasma_ion_pressure_at_point_357___________________________________ (pres_plasma_ion_total_profile357)_ 1.30291273815556022e+05 -Total_plasma_ion_pressure_at_point_358___________________________________ (pres_plasma_ion_total_profile358)_ 1.29329589449190069e+05 -Total_plasma_ion_pressure_at_point_359___________________________________ (pres_plasma_ion_total_profile359)_ 1.28370318389040011e+05 -Total_plasma_ion_pressure_at_point_360___________________________________ (pres_plasma_ion_total_profile360)_ 1.27413501153312289e+05 -Total_plasma_ion_pressure_at_point_361___________________________________ (pres_plasma_ion_total_profile361)_ 1.26459178400538673e+05 -Total_plasma_ion_pressure_at_point_362___________________________________ (pres_plasma_ion_total_profile362)_ 1.25507390932526512e+05 -Total_plasma_ion_pressure_at_point_363___________________________________ (pres_plasma_ion_total_profile363)_ 1.24558179697444255e+05 -Total_plasma_ion_pressure_at_point_364___________________________________ (pres_plasma_ion_total_profile364)_ 1.23611585793049351e+05 -Total_plasma_ion_pressure_at_point_365___________________________________ (pres_plasma_ion_total_profile365)_ 1.22667650470064778e+05 -Total_plasma_ion_pressure_at_point_366___________________________________ (pres_plasma_ion_total_profile366)_ 1.21726415135711432e+05 -Total_plasma_ion_pressure_at_point_367___________________________________ (pres_plasma_ion_total_profile367)_ 1.20787921357403655e+05 -Total_plasma_ion_pressure_at_point_368___________________________________ (pres_plasma_ion_total_profile368)_ 1.19852210866616006e+05 -Total_plasma_ion_pressure_at_point_369___________________________________ (pres_plasma_ion_total_profile369)_ 1.18919325562928949e+05 -Total_plasma_ion_pressure_at_point_370___________________________________ (pres_plasma_ion_total_profile370)_ 1.17989307518263086e+05 -Total_plasma_ion_pressure_at_point_371___________________________________ (pres_plasma_ion_total_profile371)_ 1.17062198981310357e+05 -Total_plasma_ion_pressure_at_point_372___________________________________ (pres_plasma_ion_total_profile372)_ 1.16138042382172440e+05 -Total_plasma_ion_pressure_at_point_373___________________________________ (pres_plasma_ion_total_profile373)_ 1.15216880337216397e+05 -Total_plasma_ion_pressure_at_point_374___________________________________ (pres_plasma_ion_total_profile374)_ 1.14298755654159220e+05 -Total_plasma_ion_pressure_at_point_375___________________________________ (pres_plasma_ion_total_profile375)_ 1.13383711337391607e+05 -Total_plasma_ion_pressure_at_point_376___________________________________ (pres_plasma_ion_total_profile376)_ 1.12471790593554833e+05 -Total_plasma_ion_pressure_at_point_377___________________________________ (pres_plasma_ion_total_profile377)_ 1.11563036837382329e+05 -Total_plasma_ion_pressure_at_point_378___________________________________ (pres_plasma_ion_total_profile378)_ 1.10657493697821090e+05 -Total_plasma_ion_pressure_at_point_379___________________________________ (pres_plasma_ion_total_profile379)_ 1.09755205024446710e+05 -Total_plasma_ion_pressure_at_point_380___________________________________ (pres_plasma_ion_total_profile380)_ 1.08856214894187855e+05 -Total_plasma_ion_pressure_at_point_381___________________________________ (pres_plasma_ion_total_profile381)_ 1.07960567618377900e+05 -Total_plasma_ion_pressure_at_point_382___________________________________ (pres_plasma_ion_total_profile382)_ 1.07068307750149179e+05 -Total_plasma_ion_pressure_at_point_383___________________________________ (pres_plasma_ion_total_profile383)_ 1.06179480092191283e+05 -Total_plasma_ion_pressure_at_point_384___________________________________ (pres_plasma_ion_total_profile384)_ 1.05294129704891544e+05 -Total_plasma_ion_pressure_at_point_385___________________________________ (pres_plasma_ion_total_profile385)_ 1.04412301914880358e+05 -Total_plasma_ion_pressure_at_point_386___________________________________ (pres_plasma_ion_total_profile386)_ 1.03534042324002978e+05 -Total_plasma_ion_pressure_at_point_387___________________________________ (pres_plasma_ion_total_profile387)_ 1.02659396818743757e+05 -Total_plasma_ion_pressure_at_point_388___________________________________ (pres_plasma_ion_total_profile388)_ 1.01788411580127417e+05 -Total_plasma_ion_pressure_at_point_389___________________________________ (pres_plasma_ion_total_profile389)_ 1.00921133094126097e+05 -Total_plasma_ion_pressure_at_point_390___________________________________ (pres_plasma_ion_total_profile390)_ 1.00057608162601435e+05 -Total_plasma_ion_pressure_at_point_391___________________________________ (pres_plasma_ion_total_profile391)_ 9.91978839148146653e+04 -Total_plasma_ion_pressure_at_point_392___________________________________ (pres_plasma_ion_total_profile392)_ 9.83420078195371461e+04 -Total_plasma_ion_pressure_at_point_393___________________________________ (pres_plasma_ion_total_profile393)_ 9.74900276978000911e+04 -Total_plasma_ion_pressure_at_point_394___________________________________ (pres_plasma_ion_total_profile394)_ 9.66419917363214481e+04 -Total_plasma_ion_pressure_at_point_395___________________________________ (pres_plasma_ion_total_profile395)_ 9.57979485016529215e+04 -Total_plasma_ion_pressure_at_point_396___________________________________ (pres_plasma_ion_total_profile396)_ 9.49579469550922950e+04 -Total_plasma_ion_pressure_at_point_397___________________________________ (pres_plasma_ion_total_profile397)_ 9.41220364684108936e+04 -Total_plasma_ion_pressure_at_point_398___________________________________ (pres_plasma_ion_total_profile398)_ 9.32902668404477590e+04 -Total_plasma_ion_pressure_at_point_399___________________________________ (pres_plasma_ion_total_profile399)_ 9.24626883146289183e+04 -Total_plasma_ion_pressure_at_point_400___________________________________ (pres_plasma_ion_total_profile400)_ 9.16393515974717302e+04 -Total_plasma_ion_pressure_at_point_401___________________________________ (pres_plasma_ion_total_profile401)_ 9.08203078781425866e+04 -Total_plasma_ion_pressure_at_point_402___________________________________ (pres_plasma_ion_total_profile402)_ 9.00056088491376431e+04 -Total_plasma_ion_pressure_at_point_403___________________________________ (pres_plasma_ion_total_profile403)_ 8.91953067281669064e+04 -Total_plasma_ion_pressure_at_point_404___________________________________ (pres_plasma_ion_total_profile404)_ 8.83894542813236767e+04 -Total_plasma_ion_pressure_at_point_405___________________________________ (pres_plasma_ion_total_profile405)_ 8.75881048476331489e+04 -Total_plasma_ion_pressure_at_point_406___________________________________ (pres_plasma_ion_total_profile406)_ 8.67913123650778580e+04 -Total_plasma_ion_pressure_at_point_407___________________________________ (pres_plasma_ion_total_profile407)_ 8.59991313982097781e+04 -Total_plasma_ion_pressure_at_point_408___________________________________ (pres_plasma_ion_total_profile408)_ 8.52116171674655052e+04 -Total_plasma_ion_pressure_at_point_409___________________________________ (pres_plasma_ion_total_profile409)_ 8.44288255803154316e+04 -Total_plasma_ion_pressure_at_point_410___________________________________ (pres_plasma_ion_total_profile410)_ 8.36508132643845456e+04 -Total_plasma_ion_pressure_at_point_411___________________________________ (pres_plasma_ion_total_profile411)_ 8.28776376027015795e+04 -Total_plasma_ion_pressure_at_point_412___________________________________ (pres_plasma_ion_total_profile412)_ 8.21093567712421354e+04 -Total_plasma_ion_pressure_at_point_413___________________________________ (pres_plasma_ion_total_profile413)_ 8.13460297789526667e+04 -Total_plasma_ion_pressure_at_point_414___________________________________ (pres_plasma_ion_total_profile414)_ 8.05877165104563319e+04 -Total_plasma_ion_pressure_at_point_415___________________________________ (pres_plasma_ion_total_profile415)_ 7.98344777716651879e+04 -Total_plasma_ion_pressure_at_point_416___________________________________ (pres_plasma_ion_total_profile416)_ 7.90863753385438467e+04 -Total_plasma_ion_pressure_at_point_417___________________________________ (pres_plasma_ion_total_profile417)_ 7.83434720092959906e+04 -Total_plasma_ion_pressure_at_point_418___________________________________ (pres_plasma_ion_total_profile418)_ 7.76058316602743143e+04 -Total_plasma_ion_pressure_at_point_419___________________________________ (pres_plasma_ion_total_profile419)_ 7.68735193059458106e+04 -Total_plasma_ion_pressure_at_point_420___________________________________ (pres_plasma_ion_total_profile420)_ 7.61466011632814334e+04 -Total_plasma_ion_pressure_at_point_421___________________________________ (pres_plasma_ion_total_profile421)_ 7.54251447209804755e+04 -Total_plasma_ion_pressure_at_point_422___________________________________ (pres_plasma_ion_total_profile422)_ 7.47092188139862556e+04 -Total_plasma_ion_pressure_at_point_423___________________________________ (pres_plasma_ion_total_profile423)_ 7.39988937038040312e+04 -Total_plasma_ion_pressure_at_point_424___________________________________ (pres_plasma_ion_total_profile424)_ 7.32942411651909060e+04 -Total_plasma_ion_pressure_at_point_425___________________________________ (pres_plasma_ion_total_profile425)_ 7.25953345798595838e+04 -Total_plasma_ion_pressure_at_point_426___________________________________ (pres_plasma_ion_total_profile426)_ 7.19022490379138762e+04 -Total_plasma_ion_pressure_at_point_427___________________________________ (pres_plasma_ion_total_profile427)_ 7.12150614478283533e+04 -Total_plasma_ion_pressure_at_point_428___________________________________ (pres_plasma_ion_total_profile428)_ 7.05338506558879744e+04 -Total_plasma_ion_pressure_at_point_429___________________________________ (pres_plasma_ion_total_profile429)_ 6.98586975761253125e+04 -Total_plasma_ion_pressure_at_point_430___________________________________ (pres_plasma_ion_total_profile430)_ 6.91896853319350485e+04 -Total_plasma_ion_pressure_at_point_431___________________________________ (pres_plasma_ion_total_profile431)_ 6.85268994107088511e+04 -Total_plasma_ion_pressure_at_point_432___________________________________ (pres_plasma_ion_total_profile432)_ 6.78704278330263187e+04 -Total_plasma_ion_pressure_at_point_433___________________________________ (pres_plasma_ion_total_profile433)_ 6.72203613381618488e+04 -Total_plasma_ion_pressure_at_point_434___________________________________ (pres_plasma_ion_total_profile434)_ 6.65767935879338766e+04 -Total_plasma_ion_pressure_at_point_435___________________________________ (pres_plasma_ion_total_profile435)_ 6.59398213912333449e+04 -Total_plasma_ion_pressure_at_point_436___________________________________ (pres_plasma_ion_total_profile436)_ 6.53095449519434114e+04 -Total_plasma_ion_pressure_at_point_437___________________________________ (pres_plasma_ion_total_profile437)_ 6.46860681434018261e+04 -Total_plasma_ion_pressure_at_point_438___________________________________ (pres_plasma_ion_total_profile438)_ 6.40694988130925849e+04 -Total_plasma_ion_pressure_at_point_439___________________________________ (pres_plasma_ion_total_profile439)_ 6.34599491218893963e+04 -Total_plasma_ion_pressure_at_point_440___________________________________ (pres_plasma_ion_total_profile440)_ 6.28575359229518435e+04 -Total_plasma_ion_pressure_at_point_441___________________________________ (pres_plasma_ion_total_profile441)_ 6.22623811863160154e+04 -Total_plasma_ion_pressure_at_point_442___________________________________ (pres_plasma_ion_total_profile442)_ 6.16746124763797852e+04 -Total_plasma_ion_pressure_at_point_443___________________________________ (pres_plasma_ion_total_profile443)_ 6.10943634909081302e+04 -Total_plasma_ion_pressure_at_point_444___________________________________ (pres_plasma_ion_total_profile444)_ 6.05217746719566276e+04 -Total_plasma_ion_pressure_at_point_445___________________________________ (pres_plasma_ion_total_profile445)_ 5.99569939013262992e+04 -Total_plasma_ion_pressure_at_point_446___________________________________ (pres_plasma_ion_total_profile446)_ 5.94001772959604059e+04 -Total_plasma_ion_pressure_at_point_447___________________________________ (pres_plasma_ion_total_profile447)_ 5.88514901222478220e+04 -Total_plasma_ion_pressure_at_point_448___________________________________ (pres_plasma_ion_total_profile448)_ 5.83111078527638092e+04 -Total_plasma_ion_pressure_at_point_449___________________________________ (pres_plasma_ion_total_profile449)_ 5.77792173948951095e+04 -Total_plasma_ion_pressure_at_point_450___________________________________ (pres_plasma_ion_total_profile450)_ 5.72560185285532643e+04 -Total_plasma_ion_pressure_at_point_451___________________________________ (pres_plasma_ion_total_profile451)_ 5.67417256004608280e+04 -Total_plasma_ion_pressure_at_point_452___________________________________ (pres_plasma_ion_total_profile452)_ 5.62365695363045306e+04 -Total_plasma_ion_pressure_at_point_453___________________________________ (pres_plasma_ion_total_profile453)_ 5.57408002508527134e+04 -Total_plasma_ion_pressure_at_point_454___________________________________ (pres_plasma_ion_total_profile454)_ 5.52546895621393705e+04 -Total_plasma_ion_pressure_at_point_455___________________________________ (pres_plasma_ion_total_profile455)_ 5.47785347523969613e+04 -Total_plasma_ion_pressure_at_point_456___________________________________ (pres_plasma_ion_total_profile456)_ 5.43126629708632463e+04 -Total_plasma_ion_pressure_at_point_457___________________________________ (pres_plasma_ion_total_profile457)_ 5.38574367503814356e+04 -Total_plasma_ion_pressure_at_point_458___________________________________ (pres_plasma_ion_total_profile458)_ 5.34132610249008067e+04 -Total_plasma_ion_pressure_at_point_459___________________________________ (pres_plasma_ion_total_profile459)_ 5.29805922125222423e+04 -Total_plasma_ion_pressure_at_point_460___________________________________ (pres_plasma_ion_total_profile460)_ 5.25599502110798057e+04 -Total_plasma_ion_pressure_at_point_461___________________________________ (pres_plasma_ion_total_profile461)_ 5.21519346188779091e+04 -Total_plasma_ion_pressure_at_point_462___________________________________ (pres_plasma_ion_total_profile462)_ 5.17572472946204871e+04 -Total_plasma_ion_pressure_at_point_463___________________________________ (pres_plasma_ion_total_profile463)_ 5.13767248221878253e+04 -Total_plasma_ion_pressure_at_point_464___________________________________ (pres_plasma_ion_total_profile464)_ 5.10113872441232743e+04 -Total_plasma_ion_pressure_at_point_465___________________________________ (pres_plasma_ion_total_profile465)_ 5.06625152580444628e+04 -Total_plasma_ion_pressure_at_point_466___________________________________ (pres_plasma_ion_total_profile466)_ 5.03317815036517859e+04 -Total_plasma_ion_pressure_at_point_467___________________________________ (pres_plasma_ion_total_profile467)_ 5.00214970413050978e+04 -Total_plasma_ion_pressure_at_point_468___________________________________ (pres_plasma_ion_total_profile468)_ 4.97351484501312661e+04 -Total_plasma_ion_pressure_at_point_469___________________________________ (pres_plasma_ion_total_profile469)_ 4.94789162531766488e+04 -Total_plasma_ion_pressure_at_point_470___________________________________ (pres_plasma_ion_total_profile470)_ 4.92710362117433251e+04 -Total_plasma_ion_pressure_at_point_471___________________________________ (pres_plasma_ion_total_profile471)_ 4.70043928916850855e+04 -Total_plasma_ion_pressure_at_point_472___________________________________ (pres_plasma_ion_total_profile472)_ 4.47820144597742910e+04 -Total_plasma_ion_pressure_at_point_473___________________________________ (pres_plasma_ion_total_profile473)_ 4.26039009160109563e+04 -Total_plasma_ion_pressure_at_point_474___________________________________ (pres_plasma_ion_total_profile474)_ 4.04700522603950740e+04 -Total_plasma_ion_pressure_at_point_475___________________________________ (pres_plasma_ion_total_profile475)_ 3.83804684929266150e+04 -Total_plasma_ion_pressure_at_point_476___________________________________ (pres_plasma_ion_total_profile476)_ 3.63351496136056303e+04 -Total_plasma_ion_pressure_at_point_477___________________________________ (pres_plasma_ion_total_profile477)_ 3.43340956224320762e+04 -Total_plasma_ion_pressure_at_point_478___________________________________ (pres_plasma_ion_total_profile478)_ 3.23773065194059891e+04 -Total_plasma_ion_pressure_at_point_479___________________________________ (pres_plasma_ion_total_profile479)_ 3.04647823045273326e+04 -Total_plasma_ion_pressure_at_point_480___________________________________ (pres_plasma_ion_total_profile480)_ 2.85965229777961322e+04 -Total_plasma_ion_pressure_at_point_481___________________________________ (pres_plasma_ion_total_profile481)_ 2.67725285392123697e+04 -Total_plasma_ion_pressure_at_point_482___________________________________ (pres_plasma_ion_total_profile482)_ 2.49927989887760741e+04 -Total_plasma_ion_pressure_at_point_483___________________________________ (pres_plasma_ion_total_profile483)_ 2.32573343264872165e+04 -Total_plasma_ion_pressure_at_point_484___________________________________ (pres_plasma_ion_total_profile484)_ 2.15661345523458149e+04 -Total_plasma_ion_pressure_at_point_485___________________________________ (pres_plasma_ion_total_profile485)_ 1.99191996663518512e+04 -Total_plasma_ion_pressure_at_point_486___________________________________ (pres_plasma_ion_total_profile486)_ 1.83165296685053399e+04 -Total_plasma_ion_pressure_at_point_487___________________________________ (pres_plasma_ion_total_profile487)_ 1.67581245588062811e+04 -Total_plasma_ion_pressure_at_point_488___________________________________ (pres_plasma_ion_total_profile488)_ 1.52439843372546657e+04 -Total_plasma_ion_pressure_at_point_489___________________________________ (pres_plasma_ion_total_profile489)_ 1.37741090038504990e+04 -Total_plasma_ion_pressure_at_point_490___________________________________ (pres_plasma_ion_total_profile490)_ 1.23484985585937848e+04 -Total_plasma_ion_pressure_at_point_491___________________________________ (pres_plasma_ion_total_profile491)_ 1.09671530014845157e+04 -Total_plasma_ion_pressure_at_point_492___________________________________ (pres_plasma_ion_total_profile492)_ 9.63007233252269543e+03 -Total_plasma_ion_pressure_at_point_493___________________________________ (pres_plasma_ion_total_profile493)_ 8.33725655170832761e+03 -Total_plasma_ion_pressure_at_point_494___________________________________ (pres_plasma_ion_total_profile494)_ 7.08870565904140585e+03 -Total_plasma_ion_pressure_at_point_495___________________________________ (pres_plasma_ion_total_profile495)_ 5.88441965452193108e+03 -Total_plasma_ion_pressure_at_point_496___________________________________ (pres_plasma_ion_total_profile496)_ 4.72439853814990602e+03 -Total_plasma_ion_pressure_at_point_497___________________________________ (pres_plasma_ion_total_profile497)_ 3.60864230992532976e+03 -Total_plasma_ion_pressure_at_point_498___________________________________ (pres_plasma_ion_total_profile498)_ 2.53715096984820229e+03 -Total_plasma_ion_pressure_at_point_499___________________________________ (pres_plasma_ion_total_profile499)_ 1.50992451791852295e+03 -Total_plasma_ion_pressure_at_point_500___________________________________ (pres_plasma_ion_total_profile500)_ 5.26962954136292296e+02 -Total_plasma_fuel_pressure_at_point_0____________________________________ (pres_plasma_fuel_profile0)____ 3.52232761187787750e+05 -Total_plasma_fuel_pressure_at_point_1____________________________________ (pres_plasma_fuel_profile1)____ 3.52230300045956683e+05 -Total_plasma_fuel_pressure_at_point_2____________________________________ (pres_plasma_fuel_profile2)____ 3.52222916682530660e+05 -Total_plasma_fuel_pressure_at_point_3____________________________________ (pres_plasma_fuel_profile3)____ 3.52210611283709994e+05 -Total_plasma_fuel_pressure_at_point_4____________________________________ (pres_plasma_fuel_profile4)____ 3.52193384159826499e+05 -Total_plasma_fuel_pressure_at_point_5____________________________________ (pres_plasma_fuel_profile5)____ 3.52171235745340353e+05 -Total_plasma_fuel_pressure_at_point_6____________________________________ (pres_plasma_fuel_profile6)____ 3.52144166598834738e+05 -Total_plasma_fuel_pressure_at_point_7____________________________________ (pres_plasma_fuel_profile7)____ 3.52112177403010661e+05 -Total_plasma_fuel_pressure_at_point_8____________________________________ (pres_plasma_fuel_profile8)____ 3.52075268964679039e+05 -Total_plasma_fuel_pressure_at_point_9____________________________________ (pres_plasma_fuel_profile9)____ 3.52033442214752256e+05 -Total_plasma_fuel_pressure_at_point_10___________________________________ (pres_plasma_fuel_profile10)___ 3.51986698208234506e+05 -Total_plasma_fuel_pressure_at_point_11___________________________________ (pres_plasma_fuel_profile11)___ 3.51935038124210085e+05 -Total_plasma_fuel_pressure_at_point_12___________________________________ (pres_plasma_fuel_profile12)___ 3.51878463265830826e+05 -Total_plasma_fuel_pressure_at_point_13___________________________________ (pres_plasma_fuel_profile13)___ 3.51816975060302182e+05 -Total_plasma_fuel_pressure_at_point_14___________________________________ (pres_plasma_fuel_profile14)___ 3.51750575058868271e+05 -Total_plasma_fuel_pressure_at_point_15___________________________________ (pres_plasma_fuel_profile15)___ 3.51679264936794527e+05 -Total_plasma_fuel_pressure_at_point_16___________________________________ (pres_plasma_fuel_profile16)___ 3.51603046493350528e+05 -Total_plasma_fuel_pressure_at_point_17___________________________________ (pres_plasma_fuel_profile17)___ 3.51521921651790268e+05 -Total_plasma_fuel_pressure_at_point_18___________________________________ (pres_plasma_fuel_profile18)___ 3.51435892459331721e+05 -Total_plasma_fuel_pressure_at_point_19___________________________________ (pres_plasma_fuel_profile19)___ 3.51344961087134550e+05 -Total_plasma_fuel_pressure_at_point_20___________________________________ (pres_plasma_fuel_profile20)___ 3.51249129830277467e+05 -Total_plasma_fuel_pressure_at_point_21___________________________________ (pres_plasma_fuel_profile21)___ 3.51148401107733371e+05 -Total_plasma_fuel_pressure_at_point_22___________________________________ (pres_plasma_fuel_profile22)___ 3.51042777462343045e+05 -Total_plasma_fuel_pressure_at_point_23___________________________________ (pres_plasma_fuel_profile23)___ 3.50932261560788320e+05 -Total_plasma_fuel_pressure_at_point_24___________________________________ (pres_plasma_fuel_profile24)___ 3.50816856193563610e+05 -Total_plasma_fuel_pressure_at_point_25___________________________________ (pres_plasma_fuel_profile25)___ 3.50696564274945587e+05 -Total_plasma_fuel_pressure_at_point_26___________________________________ (pres_plasma_fuel_profile26)___ 3.50571388842961867e+05 -Total_plasma_fuel_pressure_at_point_27___________________________________ (pres_plasma_fuel_profile27)___ 3.50441333059359167e+05 -Total_plasma_fuel_pressure_at_point_28___________________________________ (pres_plasma_fuel_profile28)___ 3.50306400209568790e+05 -Total_plasma_fuel_pressure_at_point_29___________________________________ (pres_plasma_fuel_profile29)___ 3.50166593702671293e+05 -Total_plasma_fuel_pressure_at_point_30___________________________________ (pres_plasma_fuel_profile30)___ 3.50021917071360105e+05 -Total_plasma_fuel_pressure_at_point_31___________________________________ (pres_plasma_fuel_profile31)___ 3.49872373971904221e+05 -Total_plasma_fuel_pressure_at_point_32___________________________________ (pres_plasma_fuel_profile32)___ 3.49717968184107682e+05 -Total_plasma_fuel_pressure_at_point_33___________________________________ (pres_plasma_fuel_profile33)___ 3.49558703611270292e+05 -Total_plasma_fuel_pressure_at_point_34___________________________________ (pres_plasma_fuel_profile34)___ 3.49394584280144772e+05 -Total_plasma_fuel_pressure_at_point_35___________________________________ (pres_plasma_fuel_profile35)___ 3.49225614340894390e+05 -Total_plasma_fuel_pressure_at_point_36___________________________________ (pres_plasma_fuel_profile36)___ 3.49051798067047494e+05 -Total_plasma_fuel_pressure_at_point_37___________________________________ (pres_plasma_fuel_profile37)___ 3.48873139855452464e+05 -Total_plasma_fuel_pressure_at_point_38___________________________________ (pres_plasma_fuel_profile38)___ 3.48689644226229808e+05 -Total_plasma_fuel_pressure_at_point_39___________________________________ (pres_plasma_fuel_profile39)___ 3.48501315822724311e+05 -Total_plasma_fuel_pressure_at_point_40___________________________________ (pres_plasma_fuel_profile40)___ 3.48308159411454166e+05 -Total_plasma_fuel_pressure_at_point_41___________________________________ (pres_plasma_fuel_profile41)___ 3.48110179882060969e+05 -Total_plasma_fuel_pressure_at_point_42___________________________________ (pres_plasma_fuel_profile42)___ 3.47907382247256231e+05 -Total_plasma_fuel_pressure_at_point_43___________________________________ (pres_plasma_fuel_profile43)___ 3.47699771642767941e+05 -Total_plasma_fuel_pressure_at_point_44___________________________________ (pres_plasma_fuel_profile44)___ 3.47487353327285033e+05 -Total_plasma_fuel_pressure_at_point_45___________________________________ (pres_plasma_fuel_profile45)___ 3.47270132682401454e+05 -Total_plasma_fuel_pressure_at_point_46___________________________________ (pres_plasma_fuel_profile46)___ 3.47048115212557605e+05 -Total_plasma_fuel_pressure_at_point_47___________________________________ (pres_plasma_fuel_profile47)___ 3.46821306544981198e+05 -Total_plasma_fuel_pressure_at_point_48___________________________________ (pres_plasma_fuel_profile48)___ 3.46589712429627485e+05 -Total_plasma_fuel_pressure_at_point_49___________________________________ (pres_plasma_fuel_profile49)___ 3.46353338739116269e+05 -Total_plasma_fuel_pressure_at_point_50___________________________________ (pres_plasma_fuel_profile50)___ 3.46112191468669800e+05 -Total_plasma_fuel_pressure_at_point_51___________________________________ (pres_plasma_fuel_profile51)___ 3.45866276736047061e+05 -Total_plasma_fuel_pressure_at_point_52___________________________________ (pres_plasma_fuel_profile52)___ 3.45615600781478977e+05 -Total_plasma_fuel_pressure_at_point_53___________________________________ (pres_plasma_fuel_profile53)___ 3.45360169967600494e+05 -Total_plasma_fuel_pressure_at_point_54___________________________________ (pres_plasma_fuel_profile54)___ 3.45099990779382468e+05 -Total_plasma_fuel_pressure_at_point_55___________________________________ (pres_plasma_fuel_profile55)___ 3.44835069824061415e+05 -Total_plasma_fuel_pressure_at_point_56___________________________________ (pres_plasma_fuel_profile56)___ 3.44565413831068901e+05 -Total_plasma_fuel_pressure_at_point_57___________________________________ (pres_plasma_fuel_profile57)___ 3.44291029651957855e+05 -Total_plasma_fuel_pressure_at_point_58___________________________________ (pres_plasma_fuel_profile58)___ 3.44011924260330095e+05 -Total_plasma_fuel_pressure_at_point_59___________________________________ (pres_plasma_fuel_profile59)___ 3.43728104751760198e+05 -Total_plasma_fuel_pressure_at_point_60___________________________________ (pres_plasma_fuel_profile60)___ 3.43439578343719011e+05 -Total_plasma_fuel_pressure_at_point_61___________________________________ (pres_plasma_fuel_profile61)___ 3.43146352375496353e+05 -Total_plasma_fuel_pressure_at_point_62___________________________________ (pres_plasma_fuel_profile62)___ 3.42848434308120923e+05 -Total_plasma_fuel_pressure_at_point_63___________________________________ (pres_plasma_fuel_profile63)___ 3.42545831724280608e+05 -Total_plasma_fuel_pressure_at_point_64___________________________________ (pres_plasma_fuel_profile64)___ 3.42238552328240068e+05 -Total_plasma_fuel_pressure_at_point_65___________________________________ (pres_plasma_fuel_profile65)___ 3.41926603945757670e+05 -Total_plasma_fuel_pressure_at_point_66___________________________________ (pres_plasma_fuel_profile66)___ 3.41609994524000911e+05 -Total_plasma_fuel_pressure_at_point_67___________________________________ (pres_plasma_fuel_profile67)___ 3.41288732131460623e+05 -Total_plasma_fuel_pressure_at_point_68___________________________________ (pres_plasma_fuel_profile68)___ 3.40962824957863428e+05 -Total_plasma_fuel_pressure_at_point_69___________________________________ (pres_plasma_fuel_profile69)___ 3.40632281314083841e+05 -Total_plasma_fuel_pressure_at_point_70___________________________________ (pres_plasma_fuel_profile70)___ 3.40297109632053296e+05 -Total_plasma_fuel_pressure_at_point_71___________________________________ (pres_plasma_fuel_profile71)___ 3.39957318464670330e+05 -Total_plasma_fuel_pressure_at_point_72___________________________________ (pres_plasma_fuel_profile72)___ 3.39612916485706635e+05 -Total_plasma_fuel_pressure_at_point_73___________________________________ (pres_plasma_fuel_profile73)___ 3.39263912489714334e+05 -Total_plasma_fuel_pressure_at_point_74___________________________________ (pres_plasma_fuel_profile74)___ 3.38910315391929413e+05 -Total_plasma_fuel_pressure_at_point_75___________________________________ (pres_plasma_fuel_profile75)___ 3.38552134228176728e+05 -Total_plasma_fuel_pressure_at_point_76___________________________________ (pres_plasma_fuel_profile76)___ 3.38189378154770820e+05 -Total_plasma_fuel_pressure_at_point_77___________________________________ (pres_plasma_fuel_profile77)___ 3.37822056448417425e+05 -Total_plasma_fuel_pressure_at_point_78___________________________________ (pres_plasma_fuel_profile78)___ 3.37450178506112192e+05 -Total_plasma_fuel_pressure_at_point_79___________________________________ (pres_plasma_fuel_profile79)___ 3.37073753845039755e+05 -Total_plasma_fuel_pressure_at_point_80___________________________________ (pres_plasma_fuel_profile80)___ 3.36692792102469481e+05 -Total_plasma_fuel_pressure_at_point_81___________________________________ (pres_plasma_fuel_profile81)___ 3.36307303035651857e+05 -Total_plasma_fuel_pressure_at_point_82___________________________________ (pres_plasma_fuel_profile82)___ 3.35917296521711163e+05 -Total_plasma_fuel_pressure_at_point_83___________________________________ (pres_plasma_fuel_profile83)___ 3.35522782557539991e+05 -Total_plasma_fuel_pressure_at_point_84___________________________________ (pres_plasma_fuel_profile84)___ 3.35123771259689471e+05 -Total_plasma_fuel_pressure_at_point_85___________________________________ (pres_plasma_fuel_profile85)___ 3.34720272864259721e+05 -Total_plasma_fuel_pressure_at_point_86___________________________________ (pres_plasma_fuel_profile86)___ 3.34312297726788267e+05 -Total_plasma_fuel_pressure_at_point_87___________________________________ (pres_plasma_fuel_profile87)___ 3.33899856322137988e+05 -Total_plasma_fuel_pressure_at_point_88___________________________________ (pres_plasma_fuel_profile88)___ 3.33482959244382975e+05 -Total_plasma_fuel_pressure_at_point_89___________________________________ (pres_plasma_fuel_profile89)___ 3.33061617206693103e+05 -Total_plasma_fuel_pressure_at_point_90___________________________________ (pres_plasma_fuel_profile90)___ 3.32635841041217442e+05 -Total_plasma_fuel_pressure_at_point_91___________________________________ (pres_plasma_fuel_profile91)___ 3.32205641698966851e+05 -Total_plasma_fuel_pressure_at_point_92___________________________________ (pres_plasma_fuel_profile92)___ 3.31771030249693897e+05 -Total_plasma_fuel_pressure_at_point_93___________________________________ (pres_plasma_fuel_profile93)___ 3.31332017881773121e+05 -Total_plasma_fuel_pressure_at_point_94___________________________________ (pres_plasma_fuel_profile94)___ 3.30888615902078396e+05 -Total_plasma_fuel_pressure_at_point_95___________________________________ (pres_plasma_fuel_profile95)___ 3.30440835735859873e+05 -Total_plasma_fuel_pressure_at_point_96___________________________________ (pres_plasma_fuel_profile96)___ 3.29988688926620118e+05 -Total_plasma_fuel_pressure_at_point_97___________________________________ (pres_plasma_fuel_profile97)___ 3.29532187135986984e+05 -Total_plasma_fuel_pressure_at_point_98___________________________________ (pres_plasma_fuel_profile98)___ 3.29071342143587186e+05 -Total_plasma_fuel_pressure_at_point_99___________________________________ (pres_plasma_fuel_profile99)___ 3.28606165846917604e+05 -Total_plasma_fuel_pressure_at_point_100__________________________________ (pres_plasma_fuel_profile100)__ 3.28136670261215069e+05 -Total_plasma_fuel_pressure_at_point_101__________________________________ (pres_plasma_fuel_profile101)__ 3.27662867519325519e+05 -Total_plasma_fuel_pressure_at_point_102__________________________________ (pres_plasma_fuel_profile102)__ 3.27184769871571218e+05 -Total_plasma_fuel_pressure_at_point_103__________________________________ (pres_plasma_fuel_profile103)__ 3.26702389685616887e+05 -Total_plasma_fuel_pressure_at_point_104__________________________________ (pres_plasma_fuel_profile104)__ 3.26215739446334541e+05 -Total_plasma_fuel_pressure_at_point_105__________________________________ (pres_plasma_fuel_profile105)__ 3.25724831755666935e+05 -Total_plasma_fuel_pressure_at_point_106__________________________________ (pres_plasma_fuel_profile106)__ 3.25229679332489439e+05 -Total_plasma_fuel_pressure_at_point_107__________________________________ (pres_plasma_fuel_profile107)__ 3.24730295012471499e+05 -Total_plasma_fuel_pressure_at_point_108__________________________________ (pres_plasma_fuel_profile108)__ 3.24226691747935198e+05 -Total_plasma_fuel_pressure_at_point_109__________________________________ (pres_plasma_fuel_profile109)__ 3.23718882607714273e+05 -Total_plasma_fuel_pressure_at_point_110__________________________________ (pres_plasma_fuel_profile110)__ 3.23206880777010228e+05 -Total_plasma_fuel_pressure_at_point_111__________________________________ (pres_plasma_fuel_profile111)__ 3.22690699557248561e+05 -Total_plasma_fuel_pressure_at_point_112__________________________________ (pres_plasma_fuel_profile112)__ 3.22170352365932253e+05 -Total_plasma_fuel_pressure_at_point_113__________________________________ (pres_plasma_fuel_profile113)__ 3.21645852736495202e+05 -Total_plasma_fuel_pressure_at_point_114__________________________________ (pres_plasma_fuel_profile114)__ 3.21117214318153157e+05 -Total_plasma_fuel_pressure_at_point_115__________________________________ (pres_plasma_fuel_profile115)__ 3.20584450875754701e+05 -Total_plasma_fuel_pressure_at_point_116__________________________________ (pres_plasma_fuel_profile116)__ 3.20047576289629447e+05 -Total_plasma_fuel_pressure_at_point_117__________________________________ (pres_plasma_fuel_profile117)__ 3.19506604555436235e+05 -Total_plasma_fuel_pressure_at_point_118__________________________________ (pres_plasma_fuel_profile118)__ 3.18961549784008821e+05 -Total_plasma_fuel_pressure_at_point_119__________________________________ (pres_plasma_fuel_profile119)__ 3.18412426201201393e+05 -Total_plasma_fuel_pressure_at_point_120__________________________________ (pres_plasma_fuel_profile120)__ 3.17859248147731763e+05 -Total_plasma_fuel_pressure_at_point_121__________________________________ (pres_plasma_fuel_profile121)__ 3.17302030079024029e+05 -Total_plasma_fuel_pressure_at_point_122__________________________________ (pres_plasma_fuel_profile122)__ 3.16740786565049493e+05 -Total_plasma_fuel_pressure_at_point_123__________________________________ (pres_plasma_fuel_profile123)__ 3.16175532290166302e+05 -Total_plasma_fuel_pressure_at_point_124__________________________________ (pres_plasma_fuel_profile124)__ 3.15606282052957860e+05 -Total_plasma_fuel_pressure_at_point_125__________________________________ (pres_plasma_fuel_profile125)__ 3.15033050766070432e+05 -Total_plasma_fuel_pressure_at_point_126__________________________________ (pres_plasma_fuel_profile126)__ 3.14455853456048120e+05 -Total_plasma_fuel_pressure_at_point_127__________________________________ (pres_plasma_fuel_profile127)__ 3.13874705263167911e+05 -Total_plasma_fuel_pressure_at_point_128__________________________________ (pres_plasma_fuel_profile128)__ 3.13289621441272553e+05 -Total_plasma_fuel_pressure_at_point_129__________________________________ (pres_plasma_fuel_profile129)__ 3.12700617357603041e+05 -Total_plasma_fuel_pressure_at_point_130__________________________________ (pres_plasma_fuel_profile130)__ 3.12107708492628648e+05 -Total_plasma_fuel_pressure_at_point_131__________________________________ (pres_plasma_fuel_profile131)__ 3.11510910439876257e+05 -Total_plasma_fuel_pressure_at_point_132__________________________________ (pres_plasma_fuel_profile132)__ 3.10910238905758772e+05 -Total_plasma_fuel_pressure_at_point_133__________________________________ (pres_plasma_fuel_profile133)__ 3.10305709709401417e+05 -Total_plasma_fuel_pressure_at_point_134__________________________________ (pres_plasma_fuel_profile134)__ 3.09697338782467705e+05 -Total_plasma_fuel_pressure_at_point_135__________________________________ (pres_plasma_fuel_profile135)__ 3.09085142168982944e+05 -Total_plasma_fuel_pressure_at_point_136__________________________________ (pres_plasma_fuel_profile136)__ 3.08469136025157815e+05 -Total_plasma_fuel_pressure_at_point_137__________________________________ (pres_plasma_fuel_profile137)__ 3.07849336619208974e+05 -Total_plasma_fuel_pressure_at_point_138__________________________________ (pres_plasma_fuel_profile138)__ 3.07225760331180645e+05 -Total_plasma_fuel_pressure_at_point_139__________________________________ (pres_plasma_fuel_profile139)__ 3.06598423652762605e+05 -Total_plasma_fuel_pressure_at_point_140__________________________________ (pres_plasma_fuel_profile140)__ 3.05967343187108403e+05 -Total_plasma_fuel_pressure_at_point_141__________________________________ (pres_plasma_fuel_profile141)__ 3.05332535648651712e+05 -Total_plasma_fuel_pressure_at_point_142__________________________________ (pres_plasma_fuel_profile142)__ 3.04694017862921755e+05 -Total_plasma_fuel_pressure_at_point_143__________________________________ (pres_plasma_fuel_profile143)__ 3.04051806766357273e+05 -Total_plasma_fuel_pressure_at_point_144__________________________________ (pres_plasma_fuel_profile144)__ 3.03405919406118686e+05 -Total_plasma_fuel_pressure_at_point_145__________________________________ (pres_plasma_fuel_profile145)__ 3.02756372939899971e+05 -Total_plasma_fuel_pressure_at_point_146__________________________________ (pres_plasma_fuel_profile146)__ 3.02103184635739366e+05 -Total_plasma_fuel_pressure_at_point_147__________________________________ (pres_plasma_fuel_profile147)__ 3.01446371871827112e+05 -Total_plasma_fuel_pressure_at_point_148__________________________________ (pres_plasma_fuel_profile148)__ 3.00785952136314067e+05 -Total_plasma_fuel_pressure_at_point_149__________________________________ (pres_plasma_fuel_profile149)__ 3.00121943027117872e+05 -Total_plasma_fuel_pressure_at_point_150__________________________________ (pres_plasma_fuel_profile150)__ 2.99454362251728191e+05 -Total_plasma_fuel_pressure_at_point_151__________________________________ (pres_plasma_fuel_profile151)__ 2.98783227627010376e+05 -Total_plasma_fuel_pressure_at_point_152__________________________________ (pres_plasma_fuel_profile152)__ 2.98108557079008664e+05 -Total_plasma_fuel_pressure_at_point_153__________________________________ (pres_plasma_fuel_profile153)__ 2.97430368642747635e+05 -Total_plasma_fuel_pressure_at_point_154__________________________________ (pres_plasma_fuel_profile154)__ 2.96748680462032033e+05 -Total_plasma_fuel_pressure_at_point_155__________________________________ (pres_plasma_fuel_profile155)__ 2.96063510789246357e+05 -Total_plasma_fuel_pressure_at_point_156__________________________________ (pres_plasma_fuel_profile156)__ 2.95374877985152474e+05 -Total_plasma_fuel_pressure_at_point_157__________________________________ (pres_plasma_fuel_profile157)__ 2.94682800518686301e+05 -Total_plasma_fuel_pressure_at_point_158__________________________________ (pres_plasma_fuel_profile158)__ 2.93987296966753143e+05 -Total_plasma_fuel_pressure_at_point_159__________________________________ (pres_plasma_fuel_profile159)__ 2.93288386014022166e+05 -Total_plasma_fuel_pressure_at_point_160__________________________________ (pres_plasma_fuel_profile160)__ 2.92586086452719290e+05 -Total_plasma_fuel_pressure_at_point_161__________________________________ (pres_plasma_fuel_profile161)__ 2.91880417182419042e+05 -Total_plasma_fuel_pressure_at_point_162__________________________________ (pres_plasma_fuel_profile162)__ 2.91171397209835239e+05 -Total_plasma_fuel_pressure_at_point_163__________________________________ (pres_plasma_fuel_profile163)__ 2.90459045648610452e+05 -Total_plasma_fuel_pressure_at_point_164__________________________________ (pres_plasma_fuel_profile164)__ 2.89743381719104713e+05 -Total_plasma_fuel_pressure_at_point_165__________________________________ (pres_plasma_fuel_profile165)__ 2.89024424748181773e+05 -Total_plasma_fuel_pressure_at_point_166__________________________________ (pres_plasma_fuel_profile166)__ 2.88302194168996299e+05 -Total_plasma_fuel_pressure_at_point_167__________________________________ (pres_plasma_fuel_profile167)__ 2.87576709520777746e+05 -Total_plasma_fuel_pressure_at_point_168__________________________________ (pres_plasma_fuel_profile168)__ 2.86847990448614466e+05 -Total_plasma_fuel_pressure_at_point_169__________________________________ (pres_plasma_fuel_profile169)__ 2.86116056703236478e+05 -Total_plasma_fuel_pressure_at_point_170__________________________________ (pres_plasma_fuel_profile170)__ 2.85380928140796372e+05 -Total_plasma_fuel_pressure_at_point_171__________________________________ (pres_plasma_fuel_profile171)__ 2.84642624722650333e+05 -Total_plasma_fuel_pressure_at_point_172__________________________________ (pres_plasma_fuel_profile172)__ 2.83901166515136429e+05 -Total_plasma_fuel_pressure_at_point_173__________________________________ (pres_plasma_fuel_profile173)__ 2.83156573689353478e+05 -Total_plasma_fuel_pressure_at_point_174__________________________________ (pres_plasma_fuel_profile174)__ 2.82408866520938056e+05 -Total_plasma_fuel_pressure_at_point_175__________________________________ (pres_plasma_fuel_profile175)__ 2.81658065389839699e+05 -Total_plasma_fuel_pressure_at_point_176__________________________________ (pres_plasma_fuel_profile176)__ 2.80904190780096222e+05 -Total_plasma_fuel_pressure_at_point_177__________________________________ (pres_plasma_fuel_profile177)__ 2.80147263279607811e+05 -Total_plasma_fuel_pressure_at_point_178__________________________________ (pres_plasma_fuel_profile178)__ 2.79387303579908505e+05 -Total_plasma_fuel_pressure_at_point_179__________________________________ (pres_plasma_fuel_profile179)__ 2.78624332475939300e+05 -Total_plasma_fuel_pressure_at_point_180__________________________________ (pres_plasma_fuel_profile180)__ 2.77858370865817822e+05 -Total_plasma_fuel_pressure_at_point_181__________________________________ (pres_plasma_fuel_profile181)__ 2.77089439750608057e+05 -Total_plasma_fuel_pressure_at_point_182__________________________________ (pres_plasma_fuel_profile182)__ 2.76317560234088858e+05 -Total_plasma_fuel_pressure_at_point_183__________________________________ (pres_plasma_fuel_profile183)__ 2.75542753522521409e+05 -Total_plasma_fuel_pressure_at_point_184__________________________________ (pres_plasma_fuel_profile184)__ 2.74765040924416098e+05 -Total_plasma_fuel_pressure_at_point_185__________________________________ (pres_plasma_fuel_profile185)__ 2.73984443850297539e+05 -Total_plasma_fuel_pressure_at_point_186__________________________________ (pres_plasma_fuel_profile186)__ 2.73200983812469349e+05 -Total_plasma_fuel_pressure_at_point_187__________________________________ (pres_plasma_fuel_profile187)__ 2.72414682424777711e+05 -Total_plasma_fuel_pressure_at_point_188__________________________________ (pres_plasma_fuel_profile188)__ 2.71625561402373714e+05 -Total_plasma_fuel_pressure_at_point_189__________________________________ (pres_plasma_fuel_profile189)__ 2.70833642561475688e+05 -Total_plasma_fuel_pressure_at_point_190__________________________________ (pres_plasma_fuel_profile190)__ 2.70038947819128982e+05 -Total_plasma_fuel_pressure_at_point_191__________________________________ (pres_plasma_fuel_profile191)__ 2.69241499192966789e+05 -Total_plasma_fuel_pressure_at_point_192__________________________________ (pres_plasma_fuel_profile192)__ 2.68441318800968060e+05 -Total_plasma_fuel_pressure_at_point_193__________________________________ (pres_plasma_fuel_profile193)__ 2.67638428861216293e+05 -Total_plasma_fuel_pressure_at_point_194__________________________________ (pres_plasma_fuel_profile194)__ 2.66832851691656397e+05 -Total_plasma_fuel_pressure_at_point_195__________________________________ (pres_plasma_fuel_profile195)__ 2.66024609709850920e+05 -Total_plasma_fuel_pressure_at_point_196__________________________________ (pres_plasma_fuel_profile196)__ 2.65213725432735635e+05 -Total_plasma_fuel_pressure_at_point_197__________________________________ (pres_plasma_fuel_profile197)__ 2.64400221476374078e+05 -Total_plasma_fuel_pressure_at_point_198__________________________________ (pres_plasma_fuel_profile198)__ 2.63584120555711212e+05 -Total_plasma_fuel_pressure_at_point_199__________________________________ (pres_plasma_fuel_profile199)__ 2.62765445484326803e+05 -Total_plasma_fuel_pressure_at_point_200__________________________________ (pres_plasma_fuel_profile200)__ 2.61944219174187310e+05 -Total_plasma_fuel_pressure_at_point_201__________________________________ (pres_plasma_fuel_profile201)__ 2.61120464635397540e+05 -Total_plasma_fuel_pressure_at_point_202__________________________________ (pres_plasma_fuel_profile202)__ 2.60294204975951376e+05 -Total_plasma_fuel_pressure_at_point_203__________________________________ (pres_plasma_fuel_profile203)__ 2.59465463401481567e+05 -Total_plasma_fuel_pressure_at_point_204__________________________________ (pres_plasma_fuel_profile204)__ 2.58634263215009560e+05 -Total_plasma_fuel_pressure_at_point_205__________________________________ (pres_plasma_fuel_profile205)__ 2.57800627816693479e+05 -Total_plasma_fuel_pressure_at_point_206__________________________________ (pres_plasma_fuel_profile206)__ 2.56964580703576474e+05 -Total_plasma_fuel_pressure_at_point_207__________________________________ (pres_plasma_fuel_profile207)__ 2.56126145469334064e+05 -Total_plasma_fuel_pressure_at_point_208__________________________________ (pres_plasma_fuel_profile208)__ 2.55285345804020675e+05 -Total_plasma_fuel_pressure_at_point_209__________________________________ (pres_plasma_fuel_profile209)__ 2.54442205493815971e+05 -Total_plasma_fuel_pressure_at_point_210__________________________________ (pres_plasma_fuel_profile210)__ 2.53596748420770193e+05 -Total_plasma_fuel_pressure_at_point_211__________________________________ (pres_plasma_fuel_profile211)__ 2.52748998562549270e+05 -Total_plasma_fuel_pressure_at_point_212__________________________________ (pres_plasma_fuel_profile212)__ 2.51898979992179287e+05 -Total_plasma_fuel_pressure_at_point_213__________________________________ (pres_plasma_fuel_profile213)__ 2.51046716877790255e+05 -Total_plasma_fuel_pressure_at_point_214__________________________________ (pres_plasma_fuel_profile214)__ 2.50192233482359850e+05 -Total_plasma_fuel_pressure_at_point_215__________________________________ (pres_plasma_fuel_profile215)__ 2.49335554163456574e+05 -Total_plasma_fuel_pressure_at_point_216__________________________________ (pres_plasma_fuel_profile216)__ 2.48476703372982214e+05 -Total_plasma_fuel_pressure_at_point_217__________________________________ (pres_plasma_fuel_profile217)__ 2.47615705656913895e+05 -Total_plasma_fuel_pressure_at_point_218__________________________________ (pres_plasma_fuel_profile218)__ 2.46752585655046540e+05 -Total_plasma_fuel_pressure_at_point_219__________________________________ (pres_plasma_fuel_profile219)__ 2.45887368100733496e+05 -Total_plasma_fuel_pressure_at_point_220__________________________________ (pres_plasma_fuel_profile220)__ 2.45020077820628940e+05 -Total_plasma_fuel_pressure_at_point_221__________________________________ (pres_plasma_fuel_profile221)__ 2.44150739734428033e+05 -Total_plasma_fuel_pressure_at_point_222__________________________________ (pres_plasma_fuel_profile222)__ 2.43279378854608018e+05 -Total_plasma_fuel_pressure_at_point_223__________________________________ (pres_plasma_fuel_profile223)__ 2.42406020286168758e+05 -Total_plasma_fuel_pressure_at_point_224__________________________________ (pres_plasma_fuel_profile224)__ 2.41530689226373041e+05 -Total_plasma_fuel_pressure_at_point_225__________________________________ (pres_plasma_fuel_profile225)__ 2.40653410964486859e+05 -Total_plasma_fuel_pressure_at_point_226__________________________________ (pres_plasma_fuel_profile226)__ 2.39774210881520004e+05 -Total_plasma_fuel_pressure_at_point_227__________________________________ (pres_plasma_fuel_profile227)__ 2.38893114449965040e+05 -Total_plasma_fuel_pressure_at_point_228__________________________________ (pres_plasma_fuel_profile228)__ 2.38010147233538883e+05 -Total_plasma_fuel_pressure_at_point_229__________________________________ (pres_plasma_fuel_profile229)__ 2.37125334886922064e+05 -Total_plasma_fuel_pressure_at_point_230__________________________________ (pres_plasma_fuel_profile230)__ 2.36238703155498923e+05 -Total_plasma_fuel_pressure_at_point_231__________________________________ (pres_plasma_fuel_profile231)__ 2.35350277875098080e+05 -Total_plasma_fuel_pressure_at_point_232__________________________________ (pres_plasma_fuel_profile232)__ 2.34460084971733158e+05 -Total_plasma_fuel_pressure_at_point_233__________________________________ (pres_plasma_fuel_profile233)__ 2.33568150461342884e+05 -Total_plasma_fuel_pressure_at_point_234__________________________________ (pres_plasma_fuel_profile234)__ 2.32674500449532410e+05 -Total_plasma_fuel_pressure_at_point_235__________________________________ (pres_plasma_fuel_profile235)__ 2.31779161131314439e+05 -Total_plasma_fuel_pressure_at_point_236__________________________________ (pres_plasma_fuel_profile236)__ 2.30882158790850517e+05 -Total_plasma_fuel_pressure_at_point_237__________________________________ (pres_plasma_fuel_profile237)__ 2.29983519801193179e+05 -Total_plasma_fuel_pressure_at_point_238__________________________________ (pres_plasma_fuel_profile238)__ 2.29083270624028548e+05 -Total_plasma_fuel_pressure_at_point_239__________________________________ (pres_plasma_fuel_profile239)__ 2.28181437809418654e+05 -Total_plasma_fuel_pressure_at_point_240__________________________________ (pres_plasma_fuel_profile240)__ 2.27278047995545319e+05 -Total_plasma_fuel_pressure_at_point_241__________________________________ (pres_plasma_fuel_profile241)__ 2.26373127908453898e+05 -Total_plasma_fuel_pressure_at_point_242__________________________________ (pres_plasma_fuel_profile242)__ 2.25466704361798271e+05 -Total_plasma_fuel_pressure_at_point_243__________________________________ (pres_plasma_fuel_profile243)__ 2.24558804256586096e+05 -Total_plasma_fuel_pressure_at_point_244__________________________________ (pres_plasma_fuel_profile244)__ 2.23649454580925114e+05 -Total_plasma_fuel_pressure_at_point_245__________________________________ (pres_plasma_fuel_profile245)__ 2.22738682409770001e+05 -Total_plasma_fuel_pressure_at_point_246__________________________________ (pres_plasma_fuel_profile246)__ 2.21826514904671087e+05 -Total_plasma_fuel_pressure_at_point_247__________________________________ (pres_plasma_fuel_profile247)__ 2.20912979313522548e+05 -Total_plasma_fuel_pressure_at_point_248__________________________________ (pres_plasma_fuel_profile248)__ 2.19998102970312932e+05 -Total_plasma_fuel_pressure_at_point_249__________________________________ (pres_plasma_fuel_profile249)__ 2.19081913294876169e+05 -Total_plasma_fuel_pressure_at_point_250__________________________________ (pres_plasma_fuel_profile250)__ 2.18164437792644487e+05 -Total_plasma_fuel_pressure_at_point_251__________________________________ (pres_plasma_fuel_profile251)__ 2.17245704054401169e+05 -Total_plasma_fuel_pressure_at_point_252__________________________________ (pres_plasma_fuel_profile252)__ 2.16325739756037103e+05 -Total_plasma_fuel_pressure_at_point_253__________________________________ (pres_plasma_fuel_profile253)__ 2.15404572658305435e+05 -Total_plasma_fuel_pressure_at_point_254__________________________________ (pres_plasma_fuel_profile254)__ 2.14482230606581492e+05 -Total_plasma_fuel_pressure_at_point_255__________________________________ (pres_plasma_fuel_profile255)__ 2.13558741530621046e+05 -Total_plasma_fuel_pressure_at_point_256__________________________________ (pres_plasma_fuel_profile256)__ 2.12634133444322826e+05 -Total_plasma_fuel_pressure_at_point_257__________________________________ (pres_plasma_fuel_profile257)__ 2.11708434445490770e+05 -Total_plasma_fuel_pressure_at_point_258__________________________________ (pres_plasma_fuel_profile258)__ 2.10781672715599940e+05 -Total_plasma_fuel_pressure_at_point_259__________________________________ (pres_plasma_fuel_profile259)__ 2.09853876519563055e+05 -Total_plasma_fuel_pressure_at_point_260__________________________________ (pres_plasma_fuel_profile260)__ 2.08925074205500190e+05 -Total_plasma_fuel_pressure_at_point_261__________________________________ (pres_plasma_fuel_profile261)__ 2.07995294204509497e+05 -Total_plasma_fuel_pressure_at_point_262__________________________________ (pres_plasma_fuel_profile262)__ 2.07064565030441678e+05 -Total_plasma_fuel_pressure_at_point_263__________________________________ (pres_plasma_fuel_profile263)__ 2.06132915279675886e+05 -Total_plasma_fuel_pressure_at_point_264__________________________________ (pres_plasma_fuel_profile264)__ 2.05200373630898190e+05 -Total_plasma_fuel_pressure_at_point_265__________________________________ (pres_plasma_fuel_profile265)__ 2.04266968844883057e+05 -Total_plasma_fuel_pressure_at_point_266__________________________________ (pres_plasma_fuel_profile266)__ 2.03332729764277639e+05 -Total_plasma_fuel_pressure_at_point_267__________________________________ (pres_plasma_fuel_profile267)__ 2.02397685313388414e+05 -Total_plasma_fuel_pressure_at_point_268__________________________________ (pres_plasma_fuel_profile268)__ 2.01461864497972070e+05 -Total_plasma_fuel_pressure_at_point_269__________________________________ (pres_plasma_fuel_profile269)__ 2.00525296405027446e+05 -Total_plasma_fuel_pressure_at_point_270__________________________________ (pres_plasma_fuel_profile270)__ 1.99588010202593723e+05 -Total_plasma_fuel_pressure_at_point_271__________________________________ (pres_plasma_fuel_profile271)__ 1.98650035139548592e+05 -Total_plasma_fuel_pressure_at_point_272__________________________________ (pres_plasma_fuel_profile272)__ 1.97711400545413606e+05 -Total_plasma_fuel_pressure_at_point_273__________________________________ (pres_plasma_fuel_profile273)__ 1.96772135830160230e+05 -Total_plasma_fuel_pressure_at_point_274__________________________________ (pres_plasma_fuel_profile274)__ 1.95832270484021981e+05 -Total_plasma_fuel_pressure_at_point_275__________________________________ (pres_plasma_fuel_profile275)__ 1.94891834077309089e+05 -Total_plasma_fuel_pressure_at_point_276__________________________________ (pres_plasma_fuel_profile276)__ 1.93950856260228582e+05 -Total_plasma_fuel_pressure_at_point_277__________________________________ (pres_plasma_fuel_profile277)__ 1.93009366762708232e+05 -Total_plasma_fuel_pressure_at_point_278__________________________________ (pres_plasma_fuel_profile278)__ 1.92067395394224819e+05 -Total_plasma_fuel_pressure_at_point_279__________________________________ (pres_plasma_fuel_profile279)__ 1.91124972043637768e+05 -Total_plasma_fuel_pressure_at_point_280__________________________________ (pres_plasma_fuel_profile280)__ 1.90182126679027657e+05 -Total_plasma_fuel_pressure_at_point_281__________________________________ (pres_plasma_fuel_profile281)__ 1.89238889347539283e+05 -Total_plasma_fuel_pressure_at_point_282__________________________________ (pres_plasma_fuel_profile282)__ 1.88295290175230999e+05 -Total_plasma_fuel_pressure_at_point_283__________________________________ (pres_plasma_fuel_profile283)__ 1.87351359366928722e+05 -Total_plasma_fuel_pressure_at_point_284__________________________________ (pres_plasma_fuel_profile284)__ 1.86407127206086821e+05 -Total_plasma_fuel_pressure_at_point_285__________________________________ (pres_plasma_fuel_profile285)__ 1.85462624054653948e+05 -Total_plasma_fuel_pressure_at_point_286__________________________________ (pres_plasma_fuel_profile286)__ 1.84517880352945795e+05 -Total_plasma_fuel_pressure_at_point_287__________________________________ (pres_plasma_fuel_profile287)__ 1.83572926619524165e+05 -Total_plasma_fuel_pressure_at_point_288__________________________________ (pres_plasma_fuel_profile288)__ 1.82627793451082660e+05 -Total_plasma_fuel_pressure_at_point_289__________________________________ (pres_plasma_fuel_profile289)__ 1.81682511522339919e+05 -Total_plasma_fuel_pressure_at_point_290__________________________________ (pres_plasma_fuel_profile290)__ 1.80737111585939128e+05 -Total_plasma_fuel_pressure_at_point_291__________________________________ (pres_plasma_fuel_profile291)__ 1.79791624472356518e+05 -Total_plasma_fuel_pressure_at_point_292__________________________________ (pres_plasma_fuel_profile292)__ 1.78846081089816027e+05 -Total_plasma_fuel_pressure_at_point_293__________________________________ (pres_plasma_fuel_profile293)__ 1.77900512424213608e+05 -Total_plasma_fuel_pressure_at_point_294__________________________________ (pres_plasma_fuel_profile294)__ 1.76954949539048946e+05 -Total_plasma_fuel_pressure_at_point_295__________________________________ (pres_plasma_fuel_profile295)__ 1.76009423575366673e+05 -Total_plasma_fuel_pressure_at_point_296__________________________________ (pres_plasma_fuel_profile296)__ 1.75063965751706040e+05 -Total_plasma_fuel_pressure_at_point_297__________________________________ (pres_plasma_fuel_profile297)__ 1.74118607364060503e+05 -Total_plasma_fuel_pressure_at_point_298__________________________________ (pres_plasma_fuel_profile298)__ 1.73173379785846657e+05 -Total_plasma_fuel_pressure_at_point_299__________________________________ (pres_plasma_fuel_profile299)__ 1.72228314467883931e+05 -Total_plasma_fuel_pressure_at_point_300__________________________________ (pres_plasma_fuel_profile300)__ 1.71283442938383960e+05 -Total_plasma_fuel_pressure_at_point_301__________________________________ (pres_plasma_fuel_profile301)__ 1.70338796802952071e+05 -Total_plasma_fuel_pressure_at_point_302__________________________________ (pres_plasma_fuel_profile302)__ 1.69394407744598604e+05 -Total_plasma_fuel_pressure_at_point_303__________________________________ (pres_plasma_fuel_profile303)__ 1.68450307523763069e+05 -Total_plasma_fuel_pressure_at_point_304__________________________________ (pres_plasma_fuel_profile304)__ 1.67506527978350234e+05 -Total_plasma_fuel_pressure_at_point_305__________________________________ (pres_plasma_fuel_profile305)__ 1.66563101023778727e+05 -Total_plasma_fuel_pressure_at_point_306__________________________________ (pres_plasma_fuel_profile306)__ 1.65620058653042914e+05 -Total_plasma_fuel_pressure_at_point_307__________________________________ (pres_plasma_fuel_profile307)__ 1.64677432936787838e+05 -Total_plasma_fuel_pressure_at_point_308__________________________________ (pres_plasma_fuel_profile308)__ 1.63735256023398862e+05 -Total_plasma_fuel_pressure_at_point_309__________________________________ (pres_plasma_fuel_profile309)__ 1.62793560139106150e+05 -Total_plasma_fuel_pressure_at_point_310__________________________________ (pres_plasma_fuel_profile310)__ 1.61852377588102885e+05 -Total_plasma_fuel_pressure_at_point_311__________________________________ (pres_plasma_fuel_profile311)__ 1.60911740752681362e+05 -Total_plasma_fuel_pressure_at_point_312__________________________________ (pres_plasma_fuel_profile312)__ 1.59971682093382959e+05 -Total_plasma_fuel_pressure_at_point_313__________________________________ (pres_plasma_fuel_profile313)__ 1.59032234149167576e+05 -Total_plasma_fuel_pressure_at_point_314__________________________________ (pres_plasma_fuel_profile314)__ 1.58093429537598131e+05 -Total_plasma_fuel_pressure_at_point_315__________________________________ (pres_plasma_fuel_profile315)__ 1.57155300955045328e+05 -Total_plasma_fuel_pressure_at_point_316__________________________________ (pres_plasma_fuel_profile316)__ 1.56217881176909810e+05 -Total_plasma_fuel_pressure_at_point_317__________________________________ (pres_plasma_fuel_profile317)__ 1.55281203057865001e+05 -Total_plasma_fuel_pressure_at_point_318__________________________________ (pres_plasma_fuel_profile318)__ 1.54345299532119301e+05 -Total_plasma_fuel_pressure_at_point_319__________________________________ (pres_plasma_fuel_profile319)__ 1.53410203613700316e+05 -Total_plasma_fuel_pressure_at_point_320__________________________________ (pres_plasma_fuel_profile320)__ 1.52475948396759952e+05 -Total_plasma_fuel_pressure_at_point_321__________________________________ (pres_plasma_fuel_profile321)__ 1.51542567055903259e+05 -Total_plasma_fuel_pressure_at_point_322__________________________________ (pres_plasma_fuel_profile322)__ 1.50610092846540007e+05 -Total_plasma_fuel_pressure_at_point_323__________________________________ (pres_plasma_fuel_profile323)__ 1.49678559105261258e+05 -Total_plasma_fuel_pressure_at_point_324__________________________________ (pres_plasma_fuel_profile324)__ 1.48747999250240944e+05 -Total_plasma_fuel_pressure_at_point_325__________________________________ (pres_plasma_fuel_profile325)__ 1.47818446781664185e+05 -Total_plasma_fuel_pressure_at_point_326__________________________________ (pres_plasma_fuel_profile326)__ 1.46889935282182356e+05 -Total_plasma_fuel_pressure_at_point_327__________________________________ (pres_plasma_fuel_profile327)__ 1.45962498417397641e+05 -Total_plasma_fuel_pressure_at_point_328__________________________________ (pres_plasma_fuel_profile328)__ 1.45036169936375605e+05 -Total_plasma_fuel_pressure_at_point_329__________________________________ (pres_plasma_fuel_profile329)__ 1.44110983672190137e+05 -Total_plasma_fuel_pressure_at_point_330__________________________________ (pres_plasma_fuel_profile330)__ 1.43186973542498483e+05 -Total_plasma_fuel_pressure_at_point_331__________________________________ (pres_plasma_fuel_profile331)__ 1.42264173550150881e+05 -Total_plasma_fuel_pressure_at_point_332__________________________________ (pres_plasma_fuel_profile332)__ 1.41342617783833324e+05 -Total_plasma_fuel_pressure_at_point_333__________________________________ (pres_plasma_fuel_profile333)__ 1.40422340418747044e+05 -Total_plasma_fuel_pressure_at_point_334__________________________________ (pres_plasma_fuel_profile334)__ 1.39503375717324321e+05 -Total_plasma_fuel_pressure_at_point_335__________________________________ (pres_plasma_fuel_profile335)__ 1.38585758029983233e+05 -Total_plasma_fuel_pressure_at_point_336__________________________________ (pres_plasma_fuel_profile336)__ 1.37669521795922657e+05 -Total_plasma_fuel_pressure_at_point_337__________________________________ (pres_plasma_fuel_profile337)__ 1.36754701543958538e+05 -Total_plasma_fuel_pressure_at_point_338__________________________________ (pres_plasma_fuel_profile338)__ 1.35841331893403869e+05 -Total_plasma_fuel_pressure_at_point_339__________________________________ (pres_plasma_fuel_profile339)__ 1.34929447554993705e+05 -Total_plasma_fuel_pressure_at_point_340__________________________________ (pres_plasma_fuel_profile340)__ 1.34019083331856848e+05 -Total_plasma_fuel_pressure_at_point_341__________________________________ (pres_plasma_fuel_profile341)__ 1.33110274120536749e+05 -Total_plasma_fuel_pressure_at_point_342__________________________________ (pres_plasma_fuel_profile342)__ 1.32203054912063060e+05 -Total_plasma_fuel_pressure_at_point_343__________________________________ (pres_plasma_fuel_profile343)__ 1.31297460793075705e+05 -Total_plasma_fuel_pressure_at_point_344__________________________________ (pres_plasma_fuel_profile344)__ 1.30393526947005026e+05 -Total_plasma_fuel_pressure_at_point_345__________________________________ (pres_plasma_fuel_profile345)__ 1.29491288655307624e+05 -Total_plasma_fuel_pressure_at_point_346__________________________________ (pres_plasma_fuel_profile346)__ 1.28590781298763744e+05 -Total_plasma_fuel_pressure_at_point_347__________________________________ (pres_plasma_fuel_profile347)__ 1.27692040358835511e+05 -Total_plasma_fuel_pressure_at_point_348__________________________________ (pres_plasma_fuel_profile348)__ 1.26795101419090701e+05 -Total_plasma_fuel_pressure_at_point_349__________________________________ (pres_plasma_fuel_profile349)__ 1.25900000166693630e+05 -Total_plasma_fuel_pressure_at_point_350__________________________________ (pres_plasma_fuel_profile350)__ 1.25006772393966967e+05 -Total_plasma_fuel_pressure_at_point_351__________________________________ (pres_plasma_fuel_profile351)__ 1.24115454000026162e+05 -Total_plasma_fuel_pressure_at_point_352__________________________________ (pres_plasma_fuel_profile352)__ 1.23226080992491887e+05 -Total_plasma_fuel_pressure_at_point_353__________________________________ (pres_plasma_fuel_profile353)__ 1.22338689489280325e+05 -Total_plasma_fuel_pressure_at_point_354__________________________________ (pres_plasma_fuel_profile354)__ 1.21453315720478873e+05 -Total_plasma_fuel_pressure_at_point_355__________________________________ (pres_plasma_fuel_profile355)__ 1.20569996030307637e+05 -Total_plasma_fuel_pressure_at_point_356__________________________________ (pres_plasma_fuel_profile356)__ 1.19688766879171933e+05 -Total_plasma_fuel_pressure_at_point_357__________________________________ (pres_plasma_fuel_profile357)__ 1.18809664845810054e+05 -Total_plasma_fuel_pressure_at_point_358__________________________________ (pres_plasma_fuel_profile358)__ 1.17932726629539771e+05 -Total_plasma_fuel_pressure_at_point_359__________________________________ (pres_plasma_fuel_profile359)__ 1.17057989052608449e+05 -Total_plasma_fuel_pressure_at_point_360__________________________________ (pres_plasma_fuel_profile360)__ 1.16185489062651875e+05 -Total_plasma_fuel_pressure_at_point_361__________________________________ (pres_plasma_fuel_profile361)__ 1.15315263735265224e+05 -Total_plasma_fuel_pressure_at_point_362__________________________________ (pres_plasma_fuel_profile362)__ 1.14447350276693556e+05 -Total_plasma_fuel_pressure_at_point_363__________________________________ (pres_plasma_fuel_profile363)__ 1.13581786026645263e+05 -Total_plasma_fuel_pressure_at_point_364__________________________________ (pres_plasma_fuel_profile364)__ 1.12718608461235519e+05 -Total_plasma_fuel_pressure_at_point_365__________________________________ (pres_plasma_fuel_profile365)__ 1.11857855196065371e+05 -Total_plasma_fuel_pressure_at_point_366__________________________________ (pres_plasma_fuel_profile366)__ 1.10999563989442730e+05 -Total_plasma_fuel_pressure_at_point_367__________________________________ (pres_plasma_fuel_profile367)__ 1.10143772745752285e+05 -Total_plasma_fuel_pressure_at_point_368__________________________________ (pres_plasma_fuel_profile368)__ 1.09290519518981571e+05 -Total_plasma_fuel_pressure_at_point_369__________________________________ (pres_plasma_fuel_profile369)__ 1.08439842516410077e+05 -Total_plasma_fuel_pressure_at_point_370__________________________________ (pres_plasma_fuel_profile370)__ 1.07591780102470308e+05 -Total_plasma_fuel_pressure_at_point_371__________________________________ (pres_plasma_fuel_profile371)__ 1.06746370802788631e+05 -Total_plasma_fuel_pressure_at_point_372__________________________________ (pres_plasma_fuel_profile372)__ 1.05903653308414810e+05 -Total_plasma_fuel_pressure_at_point_373__________________________________ (pres_plasma_fuel_profile373)__ 1.05063666480249798e+05 -Total_plasma_fuel_pressure_at_point_374__________________________________ (pres_plasma_fuel_profile374)__ 1.04226449353682212e+05 -Total_plasma_fuel_pressure_at_point_375__________________________________ (pres_plasma_fuel_profile375)__ 1.03392041143443013e+05 -Total_plasma_fuel_pressure_at_point_376__________________________________ (pres_plasma_fuel_profile376)__ 1.02560481248690863e+05 -Total_plasma_fuel_pressure_at_point_377__________________________________ (pres_plasma_fuel_profile377)__ 1.01731809258338923e+05 -Total_plasma_fuel_pressure_at_point_378__________________________________ (pres_plasma_fuel_profile378)__ 1.00906064956636896e+05 -Total_plasma_fuel_pressure_at_point_379__________________________________ (pres_plasma_fuel_profile379)__ 1.00083288329020710e+05 -Total_plasma_fuel_pressure_at_point_380__________________________________ (pres_plasma_fuel_profile380)__ 9.92635195682444028e+04 -Total_plasma_fuel_pressure_at_point_381__________________________________ (pres_plasma_fuel_profile381)__ 9.84467990808103641e+04 -Total_plasma_fuel_pressure_at_point_382__________________________________ (pres_plasma_fuel_profile382)__ 9.76331674937119678e+04 -Total_plasma_fuel_pressure_at_point_383__________________________________ (pres_plasma_fuel_profile383)__ 9.68226656615082611e+04 -Total_plasma_fuel_pressure_at_point_384__________________________________ (pres_plasma_fuel_profile384)__ 9.60153346737469692e+04 -Total_plasma_fuel_pressure_at_point_385__________________________________ (pres_plasma_fuel_profile385)__ 9.52112158627568569e+04 -Total_plasma_fuel_pressure_at_point_386__________________________________ (pres_plasma_fuel_profile386)__ 9.44103508118289319e+04 -Total_plasma_fuel_pressure_at_point_387__________________________________ (pres_plasma_fuel_profile387)__ 9.36127813638100924e+04 -Total_plasma_fuel_pressure_at_point_388__________________________________ (pres_plasma_fuel_profile388)__ 9.28185496301320236e+04 -Total_plasma_fuel_pressure_at_point_389__________________________________ (pres_plasma_fuel_profile389)__ 9.20276980003009521e+04 -Total_plasma_fuel_pressure_at_point_390__________________________________ (pres_plasma_fuel_profile390)__ 9.12402691518756910e+04 -Total_plasma_fuel_pressure_at_point_391__________________________________ (pres_plasma_fuel_profile391)__ 9.04563060609632375e+04 -Total_plasma_fuel_pressure_at_point_392__________________________________ (pres_plasma_fuel_profile392)__ 8.96758520132622943e+04 -Total_plasma_fuel_pressure_at_point_393__________________________________ (pres_plasma_fuel_profile393)__ 8.88989506156893040e+04 -Total_plasma_fuel_pressure_at_point_394__________________________________ (pres_plasma_fuel_profile394)__ 8.81256458086221392e+04 -Total_plasma_fuel_pressure_at_point_395__________________________________ (pres_plasma_fuel_profile395)__ 8.73559818788005505e+04 -Total_plasma_fuel_pressure_at_point_396__________________________________ (pres_plasma_fuel_profile396)__ 8.65900034729242761e+04 -Total_plasma_fuel_pressure_at_point_397__________________________________ (pres_plasma_fuel_profile397)__ 8.58277556119945657e+04 -Total_plasma_fuel_pressure_at_point_398__________________________________ (pres_plasma_fuel_profile398)__ 8.50692837064460764e+04 -Total_plasma_fuel_pressure_at_point_399__________________________________ (pres_plasma_fuel_profile399)__ 8.43146335721222858e+04 -Total_plasma_fuel_pressure_at_point_400__________________________________ (pres_plasma_fuel_profile400)__ 8.35638514471492090e+04 -Total_plasma_fuel_pressure_at_point_401__________________________________ (pres_plasma_fuel_profile401)__ 8.28169840097695123e+04 -Total_plasma_fuel_pressure_at_point_402__________________________________ (pres_plasma_fuel_profile402)__ 8.20740783972009376e+04 -Total_plasma_fuel_pressure_at_point_403__________________________________ (pres_plasma_fuel_profile403)__ 8.13351822255918814e+04 -Total_plasma_fuel_pressure_at_point_404__________________________________ (pres_plasma_fuel_profile404)__ 8.06003436111490009e+04 -Total_plasma_fuel_pressure_at_point_405__________________________________ (pres_plasma_fuel_profile405)__ 7.98696111925226287e+04 -Total_plasma_fuel_pressure_at_point_406__________________________________ (pres_plasma_fuel_profile406)__ 7.91430341545387346e+04 -Total_plasma_fuel_pressure_at_point_407__________________________________ (pres_plasma_fuel_profile407)__ 7.84206622533777845e+04 -Total_plasma_fuel_pressure_at_point_408__________________________________ (pres_plasma_fuel_profile408)__ 7.77025458433065651e+04 -Total_plasma_fuel_pressure_at_point_409__________________________________ (pres_plasma_fuel_profile409)__ 7.69887359050824598e+04 -Total_plasma_fuel_pressure_at_point_410__________________________________ (pres_plasma_fuel_profile410)__ 7.62792840761555854e+04 -Total_plasma_fuel_pressure_at_point_411__________________________________ (pres_plasma_fuel_profile411)__ 7.55742426828115276e+04 -Total_plasma_fuel_pressure_at_point_412__________________________________ (pres_plasma_fuel_profile412)__ 7.48736647744062939e+04 -Total_plasma_fuel_pressure_at_point_413__________________________________ (pres_plasma_fuel_profile413)__ 7.41776041598630836e+04 -Total_plasma_fuel_pressure_at_point_414__________________________________ (pres_plasma_fuel_profile414)__ 7.34861154466149455e+04 -Total_plasma_fuel_pressure_at_point_415__________________________________ (pres_plasma_fuel_profile415)__ 7.27992540821973816e+04 -Total_plasma_fuel_pressure_at_point_416__________________________________ (pres_plasma_fuel_profile416)__ 7.21170763987148530e+04 -Total_plasma_fuel_pressure_at_point_417__________________________________ (pres_plasma_fuel_profile417)__ 7.14396396604285837e+04 -Total_plasma_fuel_pressure_at_point_418__________________________________ (pres_plasma_fuel_profile418)__ 7.07670021147394145e+04 -Total_plasma_fuel_pressure_at_point_419__________________________________ (pres_plasma_fuel_profile419)__ 7.00992230468688795e+04 -Total_plasma_fuel_pressure_at_point_420__________________________________ (pres_plasma_fuel_profile420)__ 6.94363628385747143e+04 -Total_plasma_fuel_pressure_at_point_421__________________________________ (pres_plasma_fuel_profile421)__ 6.87784830312748818e+04 -Total_plasma_fuel_pressure_at_point_422__________________________________ (pres_plasma_fuel_profile422)__ 6.81256463939968817e+04 -Total_plasma_fuel_pressure_at_point_423__________________________________ (pres_plasma_fuel_profile423)__ 6.74779169966177142e+04 -Total_plasma_fuel_pressure_at_point_424__________________________________ (pres_plasma_fuel_profile424)__ 6.68353602889145550e+04 -Total_plasma_fuel_pressure_at_point_425__________________________________ (pres_plasma_fuel_profile425)__ 6.61980431860109966e+04 -Total_plasma_fuel_pressure_at_point_426__________________________________ (pres_plasma_fuel_profile426)__ 6.55660341608738527e+04 -Total_plasma_fuel_pressure_at_point_427__________________________________ (pres_plasma_fuel_profile427)__ 6.49394033446010799e+04 -Total_plasma_fuel_pressure_at_point_428__________________________________ (pres_plasma_fuel_profile428)__ 6.43182226353361038e+04 -Total_plasma_fuel_pressure_at_point_429__________________________________ (pres_plasma_fuel_profile429)__ 6.37025658167545771e+04 -Total_plasma_fuel_pressure_at_point_430__________________________________ (pres_plasma_fuel_profile430)__ 6.30925086871995445e+04 -Total_plasma_fuel_pressure_at_point_431__________________________________ (pres_plasma_fuel_profile431)__ 6.24881292006893345e+04 -Total_plasma_fuel_pressure_at_point_432__________________________________ (pres_plasma_fuel_profile432)__ 6.18895076211991036e+04 -Total_plasma_fuel_pressure_at_point_433__________________________________ (pres_plasma_fuel_profile433)__ 6.12967266918202658e+04 -Total_plasma_fuel_pressure_at_point_434__________________________________ (pres_plasma_fuel_profile434)__ 6.07098718206460107e+04 -Total_plasma_fuel_pressure_at_point_435__________________________________ (pres_plasma_fuel_profile435)__ 6.01290312855137745e+04 -Total_plasma_fuel_pressure_at_point_436__________________________________ (pres_plasma_fuel_profile436)__ 5.95542964600775449e+04 -Total_plasma_fuel_pressure_at_point_437__________________________________ (pres_plasma_fuel_profile437)__ 5.89857620640839741e+04 -Total_plasma_fuel_pressure_at_point_438__________________________________ (pres_plasma_fuel_profile438)__ 5.84235264412137112e+04 -Total_plasma_fuel_pressure_at_point_439__________________________________ (pres_plasma_fuel_profile439)__ 5.78676918684299890e+04 -Total_plasma_fuel_pressure_at_point_440__________________________________ (pres_plasma_fuel_profile440)__ 5.73183649014852708e+04 -Total_plasma_fuel_pressure_at_point_441__________________________________ (pres_plasma_fuel_profile441)__ 5.67756567620959977e+04 -Total_plasma_fuel_pressure_at_point_442__________________________________ (pres_plasma_fuel_profile442)__ 5.62396837733505308e+04 -Total_plasma_fuel_pressure_at_point_443__________________________________ (pres_plasma_fuel_profile443)__ 5.57105678512159429e+04 -Total_plasma_fuel_pressure_at_point_444__________________________________ (pres_plasma_fuel_profile444)__ 5.51884370616253000e+04 -Total_plasma_fuel_pressure_at_point_445__________________________________ (pres_plasma_fuel_profile445)__ 5.46734262546472455e+04 -Total_plasma_fuel_pressure_at_point_446__________________________________ (pres_plasma_fuel_profile446)__ 5.41656777897903085e+04 -Total_plasma_fuel_pressure_at_point_447__________________________________ (pres_plasma_fuel_profile447)__ 5.36653423697354665e+04 -Total_plasma_fuel_pressure_at_point_448__________________________________ (pres_plasma_fuel_profile448)__ 5.31725800039541573e+04 -Total_plasma_fuel_pressure_at_point_449__________________________________ (pres_plasma_fuel_profile449)__ 5.26875611290637098e+04 -Total_plasma_fuel_pressure_at_point_450__________________________________ (pres_plasma_fuel_profile450)__ 5.22104679198455779e+04 -Total_plasma_fuel_pressure_at_point_451__________________________________ (pres_plasma_fuel_profile451)__ 5.17414958342266109e+04 -Total_plasma_fuel_pressure_at_point_452__________________________________ (pres_plasma_fuel_profile452)__ 5.12808554481160245e+04 -Total_plasma_fuel_pressure_at_point_453__________________________________ (pres_plasma_fuel_profile453)__ 5.08287746531369121e+04 -Total_plasma_fuel_pressure_at_point_454__________________________________ (pres_plasma_fuel_profile454)__ 5.03855013140047959e+04 -Total_plasma_fuel_pressure_at_point_455__________________________________ (pres_plasma_fuel_profile455)__ 4.99513065156616576e+04 -Total_plasma_fuel_pressure_at_point_456__________________________________ (pres_plasma_fuel_profile456)__ 4.95264885780958939e+04 -Total_plasma_fuel_pressure_at_point_457__________________________________ (pres_plasma_fuel_profile457)__ 4.91113780868051690e+04 -Total_plasma_fuel_pressure_at_point_458__________________________________ (pres_plasma_fuel_profile458)__ 4.87063442918965156e+04 -Total_plasma_fuel_pressure_at_point_459__________________________________ (pres_plasma_fuel_profile459)__ 4.83118033907099743e+04 -Total_plasma_fuel_pressure_at_point_460__________________________________ (pres_plasma_fuel_profile460)__ 4.79282294663181165e+04 -Total_plasma_fuel_pressure_at_point_461__________________________________ (pres_plasma_fuel_profile461)__ 4.75561692788492655e+04 -Total_plasma_fuel_pressure_at_point_462__________________________________ (pres_plasma_fuel_profile462)__ 4.71962628373764601e+04 -Total_plasma_fuel_pressure_at_point_463__________________________________ (pres_plasma_fuel_profile463)__ 4.68492730038130685e+04 -Total_plasma_fuel_pressure_at_point_464__________________________________ (pres_plasma_fuel_profile464)__ 4.65161299318766032e+04 -Total_plasma_fuel_pressure_at_point_465__________________________________ (pres_plasma_fuel_profile465)__ 4.61980014607497287e+04 -Total_plasma_fuel_pressure_at_point_466__________________________________ (pres_plasma_fuel_profile466)__ 4.58964128327329599e+04 -Total_plasma_fuel_pressure_at_point_467__________________________________ (pres_plasma_fuel_profile467)__ 4.56134714514823718e+04 -Total_plasma_fuel_pressure_at_point_468__________________________________ (pres_plasma_fuel_profile468)__ 4.53523566496223939e+04 -Total_plasma_fuel_pressure_at_point_469__________________________________ (pres_plasma_fuel_profile469)__ 4.51187043062891025e+04 -Total_plasma_fuel_pressure_at_point_470__________________________________ (pres_plasma_fuel_profile470)__ 4.49291431996428655e+04 -Total_plasma_fuel_pressure_at_point_471__________________________________ (pres_plasma_fuel_profile471)__ 4.28622424372607129e+04 -Total_plasma_fuel_pressure_at_point_472__________________________________ (pres_plasma_fuel_profile472)__ 4.08357058249188849e+04 -Total_plasma_fuel_pressure_at_point_473__________________________________ (pres_plasma_fuel_profile473)__ 3.88495333626173888e+04 -Total_plasma_fuel_pressure_at_point_474__________________________________ (pres_plasma_fuel_profile474)__ 3.69037250503562100e+04 -Total_plasma_fuel_pressure_at_point_475__________________________________ (pres_plasma_fuel_profile475)__ 3.49982808881353485e+04 -Total_plasma_fuel_pressure_at_point_476__________________________________ (pres_plasma_fuel_profile476)__ 3.31332008759548116e+04 -Total_plasma_fuel_pressure_at_point_477__________________________________ (pres_plasma_fuel_profile477)__ 3.13084850138145885e+04 -Total_plasma_fuel_pressure_at_point_478__________________________________ (pres_plasma_fuel_profile478)__ 2.95241333017146972e+04 -Total_plasma_fuel_pressure_at_point_479__________________________________ (pres_plasma_fuel_profile479)__ 2.77801457396551159e+04 -Total_plasma_fuel_pressure_at_point_480__________________________________ (pres_plasma_fuel_profile480)__ 2.60765223276358665e+04 -Total_plasma_fuel_pressure_at_point_481__________________________________ (pres_plasma_fuel_profile481)__ 2.44132630656569163e+04 -Total_plasma_fuel_pressure_at_point_482__________________________________ (pres_plasma_fuel_profile482)__ 2.27903679537183125e+04 -Total_plasma_fuel_pressure_at_point_483__________________________________ (pres_plasma_fuel_profile483)__ 2.12078369918200151e+04 -Total_plasma_fuel_pressure_at_point_484__________________________________ (pres_plasma_fuel_profile484)__ 1.96656701799620423e+04 -Total_plasma_fuel_pressure_at_point_485__________________________________ (pres_plasma_fuel_profile485)__ 1.81638675181443868e+04 -Total_plasma_fuel_pressure_at_point_486__________________________________ (pres_plasma_fuel_profile486)__ 1.67024290063670560e+04 -Total_plasma_fuel_pressure_at_point_487__________________________________ (pres_plasma_fuel_profile487)__ 1.52813546446300497e+04 -Total_plasma_fuel_pressure_at_point_488__________________________________ (pres_plasma_fuel_profile488)__ 1.39006444329333553e+04 -Total_plasma_fuel_pressure_at_point_489__________________________________ (pres_plasma_fuel_profile489)__ 1.25602983712769856e+04 -Total_plasma_fuel_pressure_at_point_490__________________________________ (pres_plasma_fuel_profile490)__ 1.12603164596609404e+04 -Total_plasma_fuel_pressure_at_point_491__________________________________ (pres_plasma_fuel_profile491)__ 1.00006986980852125e+04 -Total_plasma_fuel_pressure_at_point_492__________________________________ (pres_plasma_fuel_profile492)__ 8.78144508654980382e+03 -Total_plasma_fuel_pressure_at_point_493__________________________________ (pres_plasma_fuel_profile493)__ 7.60255562505472062e+03 -Total_plasma_fuel_pressure_at_point_494__________________________________ (pres_plasma_fuel_profile494)__ 6.46403031359995566e+03 -Total_plasma_fuel_pressure_at_point_495__________________________________ (pres_plasma_fuel_profile495)__ 5.36586915218551167e+03 -Total_plasma_fuel_pressure_at_point_496__________________________________ (pres_plasma_fuel_profile496)__ 4.30807214081138864e+03 -Total_plasma_fuel_pressure_at_point_497__________________________________ (pres_plasma_fuel_profile497)__ 3.29063927947758657e+03 -Total_plasma_fuel_pressure_at_point_498__________________________________ (pres_plasma_fuel_profile498)__ 2.31357056818410547e+03 -Total_plasma_fuel_pressure_at_point_499__________________________________ (pres_plasma_fuel_profile499)__ 1.37686600693094488e+03 -Total_plasma_fuel_pressure_at_point_500__________________________________ (pres_plasma_fuel_profile500)__ 4.80525595718105478e+02 -H_concentration__________________________________________________________ (f_nd_impurity_electrons(01))__ 8.14787689899803991e-01 OP -He_concentration_________________________________________________________ (f_nd_impurity_electrons(02))__ 7.79113320586695551e-02 -He_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons1_0)___ 8.17704563911436288e+18 OP -He_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons1_1)___ 8.17703069843705651e+18 OP -He_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons1_2)___ 8.17698587640513843e+18 OP -He_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons1_3)___ 8.17691117301860762e+18 OP -He_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons1_4)___ 8.17680658827746202e+18 OP -He_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons1_5)___ 8.17667212218170573e+18 OP -He_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons1_6)___ 8.17650777473133773e+18 OP -He_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons1_7)___ 8.17631354592635494e+18 OP -He_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons1_8)___ 8.17608943576676250e+18 OP -He_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons1_9)___ 8.17583544425255526e+18 OP -He_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons1_10)__ 8.17555157138373632e+18 OP -He_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons1_11)__ 8.17523781716030362e+18 OP -He_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons1_12)__ 8.17489418158226022e+18 OP -He_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons1_13)__ 8.17452066464960205e+18 OP -He_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons1_14)__ 8.17411726636233421e+18 OP -He_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons1_15)__ 8.17368398672045158e+18 OP -He_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons1_16)__ 8.17322082572395725e+18 OP -He_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons1_17)__ 8.17272778337284915e+18 OP -He_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons1_18)__ 8.17220485966713139e+18 OP -He_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons1_19)__ 8.17165205460679885e+18 OP -He_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons1_20)__ 8.17106936819185357e+18 OP -He_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons1_21)__ 8.17045680042229658e+18 OP -He_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons1_22)__ 8.16981435129812685e+18 OP -He_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons1_23)__ 8.16914202081934438e+18 OP -He_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons1_24)__ 8.16843980898594918e+18 OP -He_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons1_25)__ 8.16770771579794227e+18 OP -He_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons1_26)__ 8.16694574125532160e+18 OP -He_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons1_27)__ 8.16615388535808922e+18 OP -He_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons1_28)__ 8.16533214810624614e+18 OP -He_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons1_29)__ 8.16448052949978726e+18 OP -He_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons1_30)__ 8.16359902953871770e+18 OP -He_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons1_31)__ 8.16268764822303437e+18 OP -He_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons1_32)__ 8.16174638555273933e+18 OP -He_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons1_33)__ 8.16077524152783155e+18 OP -He_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons1_34)__ 8.15977421614831104e+18 OP -He_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons1_35)__ 8.15874330941417882e+18 OP -He_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons1_36)__ 8.15768252132543283e+18 OP -He_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons1_37)__ 8.15659185188207514e+18 OP -He_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons1_38)__ 8.15547130108410470e+18 OP -He_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons1_39)__ 8.15432086893152154e+18 OP -He_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons1_40)__ 8.15314055542432563e+18 OP -He_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons1_41)__ 8.15193036056251802e+18 OP -He_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons1_42)__ 8.15069028434609766e+18 OP -He_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons1_43)__ 8.14942032677506355e+18 OP -He_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons1_44)__ 8.14812048784941773e+18 OP -He_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons1_45)__ 8.14679076756916019e+18 OP -He_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons1_46)__ 8.14543116593428890e+18 OP -He_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons1_47)__ 8.14404168294480486e+18 OP -He_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons1_48)__ 8.14262231860070912e+18 OP -He_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons1_49)__ 8.14117307290199962e+18 OP -He_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons1_50)__ 8.13969394584867942e+18 OP -He_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons1_51)__ 8.13818493744074547e+18 OP -He_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons1_52)__ 8.13664604767820083e+18 OP -He_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons1_53)__ 8.13507727656104141e+18 OP -He_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons1_54)__ 8.13347862408927027e+18 OP -He_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons1_55)__ 8.13185009026288538e+18 OP -He_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons1_56)__ 8.13019167508188979e+18 OP -He_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons1_57)__ 8.12850337854627942e+18 OP -He_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons1_58)__ 8.12678520065605837e+18 OP -He_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons1_59)__ 8.12503714141122560e+18 OP -He_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons1_60)__ 8.12325920081177907e+18 OP -He_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons1_61)__ 8.12145137885771981e+18 OP -He_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons1_62)__ 8.11961367554904883e+18 OP -He_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons1_63)__ 8.11774609088576410e+18 OP -He_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons1_64)__ 8.11584862486786662e+18 OP -He_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons1_65)__ 8.11392127749535744e+18 OP -He_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons1_66)__ 8.11196404876823552e+18 OP -He_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons1_67)__ 8.10997693868650086e+18 OP -He_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons1_68)__ 8.10795994725015450e+18 OP -He_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons1_69)__ 8.10591307445919539e+18 OP -He_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons1_70)__ 8.10383632031362253e+18 OP -He_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons1_71)__ 8.10172968481343795e+18 OP -He_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons1_72)__ 8.09959316795864064e+18 OP -He_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons1_73)__ 8.09742676974923264e+18 OP -He_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons1_74)__ 8.09523049018520986e+18 OP -He_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons1_75)__ 8.09300432926657434e+18 OP -He_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons1_76)__ 8.09074828699332710e+18 OP -He_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons1_77)__ 8.08846236336546816e+18 OP -He_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons1_78)__ 8.08614655838299443e+18 OP -He_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons1_79)__ 8.08380087204591002e+18 OP -He_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons1_80)__ 8.08142530435421184e+18 OP -He_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons1_81)__ 8.07901985530790298e+18 OP -He_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons1_82)__ 8.07658452490698035e+18 OP -He_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons1_83)__ 8.07411931315144397e+18 OP -He_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons1_84)__ 8.07162422004129690e+18 OP -He_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons1_85)__ 8.06909924557653709e+18 OP -He_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons1_86)__ 8.06654438975716352e+18 OP -He_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons1_87)__ 8.06395965258317824e+18 OP -He_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons1_88)__ 8.06134503405458125e+18 OP -He_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons1_89)__ 8.05870053417137152e+18 OP -He_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons1_90)__ 8.05602615293354701e+18 OP -He_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons1_91)__ 8.05332189034111181e+18 OP -He_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons1_92)__ 8.05058774639406387e+18 OP -He_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons1_93)__ 8.04782372109240422e+18 OP -He_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons1_94)__ 8.04502981443613082e+18 OP -He_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons1_95)__ 8.04220602642524365e+18 OP -He_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons1_96)__ 8.03935235705974579e+18 OP -He_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons1_97)__ 8.03646880633963520e+18 OP -He_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons1_98)__ 8.03355537426491187e+18 OP -He_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons1_99)__ 8.03061206083557581e+18 OP -He_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons1_100)_ 8.02763886605162803e+18 OP -He_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons1_101)_ 8.02463578991306752e+18 OP -He_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons1_102)_ 8.02160283241989325e+18 OP -He_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons1_103)_ 8.01853999357210726e+18 OP -He_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons1_104)_ 8.01544727336970854e+18 OP -He_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons1_105)_ 8.01232467181269811e+18 OP -He_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons1_106)_ 8.00917218890107392e+18 OP -He_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons1_107)_ 8.00598982463483802e+18 OP -He_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons1_108)_ 8.00277757901398938e+18 OP -He_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons1_109)_ 7.99953545203852800e+18 OP -He_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons1_110)_ 7.99626344370845389e+18 OP -He_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons1_111)_ 7.99296155402376704e+18 OP -He_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons1_112)_ 7.98962978298446746e+18 OP -He_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons1_113)_ 7.98626813059055616e+18 OP -He_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons1_114)_ 7.98287659684203213e+18 OP -He_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons1_115)_ 7.97945518173889536e+18 OP -He_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons1_116)_ 7.97600388528114688e+18 OP -He_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons1_117)_ 7.97252270746878464e+18 OP -He_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons1_118)_ 7.96901164830180966e+18 OP -He_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons1_119)_ 7.96547070778022502e+18 OP -He_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons1_120)_ 7.96189988590402560e+18 OP -He_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons1_121)_ 7.95829918267321242e+18 OP -He_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons1_122)_ 7.95466859808778854e+18 OP -He_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons1_123)_ 7.95100813214775194e+18 OP -He_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons1_124)_ 7.94731778485310157e+18 OP -He_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons1_125)_ 7.94359755620383949e+18 OP -He_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons1_126)_ 7.93984744619996570e+18 OP -He_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons1_127)_ 7.93606745484147814e+18 OP -He_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons1_128)_ 7.93225758212837786e+18 OP -He_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons1_129)_ 7.92841782806066586e+18 OP -He_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons1_130)_ 7.92454819263834214e+18 OP -He_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons1_131)_ 7.92064867586140262e+18 OP -He_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons1_132)_ 7.91671927772985344e+18 OP -He_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons1_133)_ 7.91275999824369050e+18 OP -He_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons1_134)_ 7.90877083740291584e+18 OP -He_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons1_135)_ 7.90475179520752742e+18 OP -He_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons1_136)_ 7.90070287165752832e+18 OP -He_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons1_137)_ 7.89662406675291546e+18 OP -He_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons1_138)_ 7.89251538049368986e+18 OP -He_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons1_139)_ 7.88837681287985254e+18 OP -He_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons1_140)_ 7.88420836391140250e+18 OP -He_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons1_141)_ 7.88001003358833971e+18 OP -He_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons1_142)_ 7.87578182191066317e+18 OP -He_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons1_143)_ 7.87152372887837696e+18 OP -He_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons1_144)_ 7.86723575449147699e+18 OP -He_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons1_145)_ 7.86291789874996224e+18 OP -He_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons1_146)_ 7.85857016165383782e+18 OP -He_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons1_147)_ 7.85419254320309965e+18 OP -He_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons1_148)_ 7.84978504339774771e+18 OP -He_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons1_149)_ 7.84534766223778509e+18 OP -He_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons1_150)_ 7.84088039972320973e+18 OP -He_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons1_151)_ 7.83638325585402163e+18 OP -He_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons1_152)_ 7.83185623063021978e+18 OP -He_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons1_153)_ 7.82729932405180723e+18 OP -He_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons1_154)_ 7.82271253611878093e+18 OP -He_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons1_155)_ 7.81809586683114086e+18 OP -He_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons1_156)_ 7.81344931618889011e+18 OP -He_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons1_157)_ 7.80877288419202662e+18 OP -He_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons1_158)_ 7.80406657084055040e+18 OP -He_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons1_159)_ 7.79933037613446246e+18 OP -He_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons1_160)_ 7.79456430007376077e+18 OP -He_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons1_161)_ 7.78976834265844736e+18 OP -He_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons1_162)_ 7.78494250388852224e+18 OP -He_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons1_163)_ 7.78008678376398234e+18 OP -He_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons1_164)_ 7.77520118228483174e+18 OP -He_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons1_165)_ 7.77028569945106637e+18 OP -He_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons1_166)_ 7.76534033526269030e+18 OP -He_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons1_167)_ 7.76036508971970048e+18 OP -He_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons1_168)_ 7.75535996282209894e+18 OP -He_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons1_169)_ 7.75032495456988570e+18 OP -He_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons1_170)_ 7.74526006496305766e+18 OP -He_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons1_171)_ 7.74016529400161997e+18 OP -He_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons1_172)_ 7.73504064168556749e+18 OP -He_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons1_173)_ 7.72988610801490330e+18 OP -He_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons1_174)_ 7.72470169298962637e+18 OP -He_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons1_175)_ 7.71948739660973670e+18 OP -He_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons1_176)_ 7.71424321887523430e+18 OP -He_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons1_177)_ 7.70896915978612019e+18 OP -He_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons1_178)_ 7.70366521934239334e+18 OP -He_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons1_179)_ 7.69833139754405376e+18 OP -He_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons1_180)_ 7.69296769439110144e+18 OP -He_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons1_181)_ 7.68757410988353638e+18 OP -He_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons1_182)_ 7.68215064402135859e+18 OP -He_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons1_183)_ 7.67669729680457011e+18 OP -He_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons1_184)_ 7.67121406823316685e+18 OP -He_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons1_185)_ 7.66570095830715187e+18 OP -He_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons1_186)_ 7.66015796702652416e+18 OP -He_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons1_187)_ 7.65458509439128474e+18 OP -He_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons1_188)_ 7.64898234040143155e+18 OP -He_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons1_189)_ 7.64334970505696666e+18 OP -He_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons1_190)_ 7.63768718835788902e+18 OP -He_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons1_191)_ 7.63199479030419866e+18 OP -He_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons1_192)_ 7.62627251089589658e+18 OP -He_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons1_193)_ 7.62052035013298074e+18 OP -He_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons1_194)_ 7.61473830801545216e+18 OP -He_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons1_195)_ 7.60892638454331290e+18 OP -He_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons1_196)_ 7.60308457971655987e+18 OP -He_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons1_197)_ 7.59721289353519411e+18 OP -He_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons1_198)_ 7.59131132599921562e+18 OP -He_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons1_199)_ 7.58537987710862541e+18 OP -He_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons1_200)_ 7.57941854686342246e+18 OP -He_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons1_201)_ 7.57342733526360678e+18 OP -He_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons1_202)_ 7.56740624230917939e+18 OP -He_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons1_203)_ 7.56135526800013722e+18 OP -He_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons1_204)_ 7.55527441233648333e+18 OP -He_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons1_205)_ 7.54916367531821773e+18 OP -He_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons1_206)_ 7.54302305694534042e+18 OP -He_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons1_207)_ 7.53685255721785037e+18 OP -He_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons1_208)_ 7.53065217613574656e+18 OP -He_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons1_209)_ 7.52442191369903002e+18 OP -He_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons1_210)_ 7.51816176990770176e+18 OP -He_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons1_211)_ 7.51187174476176077e+18 OP -He_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons1_212)_ 7.50555183826120602e+18 OP -He_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons1_213)_ 7.49920205040604058e+18 OP -He_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons1_214)_ 7.49282238119626138e+18 OP -He_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons1_215)_ 7.48641283063186944e+18 OP -He_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons1_216)_ 7.47997339871286579e+18 OP -He_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons1_217)_ 7.47350408543924941e+18 OP -He_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons1_218)_ 7.46700489081102131e+18 OP -He_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons1_219)_ 7.46047581482817843e+18 OP -He_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons1_220)_ 7.45391685749072589e+18 OP -He_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons1_221)_ 7.44732801879865856e+18 OP -He_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons1_222)_ 7.44070929875197952e+18 OP -He_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons1_223)_ 7.43406069735068672e+18 OP -He_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons1_224)_ 7.42738221459478323e+18 OP -He_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons1_225)_ 7.42067385048426598e+18 OP -He_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons1_226)_ 7.41393560501913702e+18 OP -He_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons1_227)_ 7.40716747819939533e+18 OP -He_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons1_228)_ 7.40036947002504090e+18 OP -He_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons1_229)_ 7.39354158049607373e+18 OP -He_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons1_230)_ 7.38668380961249280e+18 OP -He_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons1_231)_ 7.37979615737430221e+18 OP -He_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons1_232)_ 7.37287862378149683e+18 OP -He_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons1_233)_ 7.36593120883407974e+18 OP -He_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons1_234)_ 7.35895391253205094e+18 OP -He_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons1_235)_ 7.35194673487540838e+18 OP -He_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons1_236)_ 7.34490967586415309e+18 OP -He_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons1_237)_ 7.33784273549828608e+18 OP -He_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons1_238)_ 7.33074591377780634e+18 OP -He_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons1_239)_ 7.32361921070271283e+18 OP -He_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons1_240)_ 7.31646262627300966e+18 OP -He_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons1_241)_ 7.30927616048869069e+18 OP -He_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons1_242)_ 7.30205981334976102e+18 OP -He_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons1_243)_ 7.29481358485621760e+18 OP -He_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons1_244)_ 7.28753747500806349e+18 OP -He_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons1_245)_ 7.28023148380529562e+18 OP -He_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons1_246)_ 7.27289561124791501e+18 OP -He_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons1_247)_ 7.26552985733592269e+18 OP -He_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons1_248)_ 7.25813422206931763e+18 OP -He_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons1_249)_ 7.25070870544809882e+18 OP -He_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons1_250)_ 7.24325330747226931e+18 OP -He_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons1_251)_ 7.23576802814182400e+18 OP -He_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons1_252)_ 7.22825286745677005e+18 OP -He_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons1_253)_ 7.22070782541710234e+18 OP -He_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons1_254)_ 7.21313290202282189e+18 OP -He_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons1_255)_ 7.20552809727392768e+18 OP -He_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons1_256)_ 7.19789341117042278e+18 OP -He_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons1_257)_ 7.19022884371230413e+18 OP -He_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons1_258)_ 7.18253439489957274e+18 OP -He_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons1_259)_ 7.17481006473222861e+18 OP -He_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons1_260)_ 7.16705585321027379e+18 OP -He_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons1_261)_ 7.15927176033370522e+18 OP -He_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons1_262)_ 7.15145778610252390e+18 OP -He_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons1_263)_ 7.14361393051672986e+18 OP -He_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons1_264)_ 7.13574019357632307e+18 OP -He_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons1_265)_ 7.12783657528130458e+18 OP -He_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons1_266)_ 7.11990307563167437e+18 OP -He_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons1_267)_ 7.11193969462743040e+18 OP -He_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons1_268)_ 7.10394643226857370e+18 OP -He_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons1_269)_ 7.09592328855510426e+18 OP -He_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons1_270)_ 7.08787026348702413e+18 OP -He_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons1_271)_ 7.07978735706432922e+18 OP -He_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons1_272)_ 7.07167456928702259e+18 OP -He_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons1_273)_ 7.06353190015510323e+18 OP -He_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons1_274)_ 7.05535934966857216e+18 OP -He_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons1_275)_ 7.04715691782742733e+18 OP -He_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons1_276)_ 7.03892460463167078e+18 OP -He_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons1_277)_ 7.03066241008130150e+18 OP -He_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons1_278)_ 7.02237033417632051e+18 OP -He_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons1_279)_ 7.01404837691672678e+18 OP -He_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons1_280)_ 7.00569653830251930e+18 OP -He_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons1_281)_ 6.99731481833369907e+18 OP -He_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons1_282)_ 6.98890321701026816e+18 OP -He_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons1_283)_ 6.98046173433222349e+18 OP -He_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons1_284)_ 6.97199037029956710e+18 OP -He_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons1_285)_ 6.96348912491229696e+18 OP -He_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons1_286)_ 6.95495799817041510e+18 OP -He_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons1_287)_ 6.94639699007392051e+18 OP -He_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons1_288)_ 6.93780610062281318e+18 OP -He_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons1_289)_ 6.92918532981709312e+18 OP -He_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons1_290)_ 6.92053467765676032e+18 OP -He_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons1_291)_ 6.91185414414181478e+18 OP -He_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons1_292)_ 6.90314372927225856e+18 OP -He_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons1_293)_ 6.89440343304808755e+18 OP -He_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons1_294)_ 6.88563325546930483e+18 OP -He_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons1_295)_ 6.87683319653591040e+18 OP -He_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons1_296)_ 6.86800325624790323e+18 OP -He_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons1_297)_ 6.85914343460528333e+18 OP -He_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons1_298)_ 6.85025373160804966e+18 OP -He_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons1_299)_ 6.84133414725620531e+18 OP -He_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons1_300)_ 6.83238468154974618e+18 OP -He_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons1_301)_ 6.82340533448867533e+18 OP -He_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons1_302)_ 6.81439610607299277e+18 OP -He_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons1_303)_ 6.80535699630269747e+18 OP -He_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons1_304)_ 6.79628800517778944e+18 OP -He_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons1_305)_ 6.78718913269826867e+18 OP -He_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons1_306)_ 6.77806037886413619e+18 OP -He_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons1_307)_ 6.76890174367539098e+18 OP -He_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons1_308)_ 6.75971322713203098e+18 OP -He_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons1_309)_ 6.75049482923406131e+18 OP -He_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons1_310)_ 6.74124654998147686e+18 OP -He_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons1_311)_ 6.73196838937428173e+18 OP -He_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons1_312)_ 6.72266034741247386e+18 OP -He_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons1_313)_ 6.71332242409605427e+18 OP -He_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons1_314)_ 6.70395461942501888e+18 OP -He_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons1_315)_ 6.69455693339937382e+18 OP -He_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons1_316)_ 6.68512936601911398e+18 OP -He_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons1_317)_ 6.67567191728424448e+18 OP -He_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons1_318)_ 6.66618458719475917e+18 OP -He_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons1_319)_ 6.65666737575066317e+18 OP -He_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons1_320)_ 6.64712028295195443e+18 OP -He_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons1_321)_ 6.63754330879863296e+18 OP -He_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons1_322)_ 6.62793645329069978e+18 OP -He_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons1_323)_ 6.61829971642815283e+18 OP -He_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons1_324)_ 6.60863309821099418e+18 OP -He_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons1_325)_ 6.59893659863922278e+18 OP -He_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons1_326)_ 6.58921021771283866e+18 OP -He_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons1_327)_ 6.57945395543184282e+18 OP -He_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons1_328)_ 6.56966781179623219e+18 OP -He_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons1_329)_ 6.55985178680600986e+18 OP -He_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons1_330)_ 6.55000588046117581e+18 OP -He_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons1_331)_ 6.54013009276173005e+18 OP -He_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons1_332)_ 6.53022442370766950e+18 OP -He_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons1_333)_ 6.52028887329899827e+18 OP -He_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons1_334)_ 6.51032344153571430e+18 OP -He_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons1_335)_ 6.50032812841781658e+18 OP -He_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons1_336)_ 6.49030293394530816e+18 OP -He_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons1_337)_ 6.48024785811818598e+18 OP -He_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons1_338)_ 6.47016290093645107e+18 OP -He_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons1_339)_ 6.46004806240010342e+18 OP -He_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons1_340)_ 6.44990334250914509e+18 OP -He_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons1_341)_ 6.43972874126357197e+18 OP -He_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons1_342)_ 6.42952425866338714e+18 OP -He_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons1_343)_ 6.41928989470858957e+18 OP -He_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons1_344)_ 6.40902564939917926e+18 OP -He_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons1_345)_ 6.39873152273515725e+18 OP -He_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons1_346)_ 6.38840751471652352e+18 OP -He_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons1_347)_ 6.37805362534327501e+18 OP -He_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons1_348)_ 6.36766985461541478e+18 OP -He_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons1_349)_ 6.35725620253294182e+18 OP -He_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons1_350)_ 6.34681266909585818e+18 OP -He_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons1_351)_ 6.33633925430415974e+18 OP -He_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons1_352)_ 6.32583595815784960e+18 OP -He_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons1_353)_ 6.31530278065692672e+18 OP -He_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons1_354)_ 6.30473972180139110e+18 OP -He_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons1_355)_ 6.29414678159124275e+18 OP -He_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons1_356)_ 6.28352396002648269e+18 OP -He_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons1_357)_ 6.27287125710710989e+18 OP -He_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons1_358)_ 6.26218867283312435e+18 OP -He_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons1_359)_ 6.25147620720452608e+18 OP -He_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons1_360)_ 6.24073386022131507e+18 OP -He_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons1_361)_ 6.22996163188349133e+18 OP -He_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons1_362)_ 6.21915952219105587e+18 OP -He_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons1_363)_ 6.20832753114400768e+18 OP -He_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons1_364)_ 6.19746565874234778e+18 OP -He_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons1_365)_ 6.18657390498607411e+18 OP -He_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons1_366)_ 6.17565226987518771e+18 OP -He_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons1_367)_ 6.16470075340968858e+18 OP -He_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons1_368)_ 6.15371935558957773e+18 OP -He_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons1_369)_ 6.14270807641485517e+18 OP -He_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons1_370)_ 6.13166691588551782e+18 OP -He_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons1_371)_ 6.12059587400156979e+18 OP -He_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons1_372)_ 6.10949495076300800e+18 OP -He_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons1_373)_ 6.09836414616983450e+18 OP -He_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons1_374)_ 6.08720346022204826e+18 OP -He_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons1_375)_ 6.07601289291964928e+18 OP -He_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons1_376)_ 6.06479244426263859e+18 OP -He_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons1_377)_ 6.05354211425101414e+18 OP -He_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons1_378)_ 6.04226190288477696e+18 OP -He_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons1_379)_ 6.03095181016392909e+18 OP -He_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons1_380)_ 6.01961183608846643e+18 OP -He_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons1_381)_ 6.00824198065839206e+18 OP -He_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons1_382)_ 5.99684224387370598e+18 OP -He_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons1_383)_ 5.98541262573440614e+18 OP -He_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons1_384)_ 5.97395312624049459e+18 OP -He_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons1_385)_ 5.96246374539197133e+18 OP -He_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons1_386)_ 5.95094448318883430e+18 OP -He_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons1_387)_ 5.93939533963108352e+18 OP -He_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons1_388)_ 5.92781631471872205e+18 OP -He_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons1_389)_ 5.91620740845174886e+18 OP -He_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons1_390)_ 5.90456862083016090e+18 OP -He_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons1_391)_ 5.89289995185396122e+18 OP -He_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons1_392)_ 5.88120140152314880e+18 OP -He_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons1_393)_ 5.86947296983772467e+18 OP -He_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons1_394)_ 5.85771465679768678e+18 OP -He_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons1_395)_ 5.84592646240303718e+18 OP -He_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons1_396)_ 5.83410838665377485e+18 OP -He_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons1_397)_ 5.82226042954989978e+18 OP -He_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons1_398)_ 5.81038259109141197e+18 OP -He_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons1_399)_ 5.79847487127831245e+18 OP -He_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons1_400)_ 5.78653727011059917e+18 OP -He_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons1_401)_ 5.77456978758827418e+18 OP -He_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons1_402)_ 5.76257242371133645e+18 OP -He_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons1_403)_ 5.75054517847978701e+18 OP -He_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons1_404)_ 5.73848805189362381e+18 OP -He_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons1_405)_ 5.72640104395284890e+18 OP -He_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons1_406)_ 5.71428415465746125e+18 OP -He_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons1_407)_ 5.70213738400746086e+18 OP -He_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons1_408)_ 5.68996073200284774e+18 OP -He_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons1_409)_ 5.67775419864362291e+18 OP -He_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons1_410)_ 5.66551778392978432e+18 OP -He_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons1_411)_ 5.65325148786133402e+18 OP -He_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons1_412)_ 5.64095531043827098e+18 OP -He_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons1_413)_ 5.62862925166059520e+18 OP -He_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons1_414)_ 5.61627331152830771e+18 OP -He_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons1_415)_ 5.60388749004140646e+18 OP -He_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons1_416)_ 5.59147178719989350e+18 OP -He_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons1_417)_ 5.57902620300376781e+18 OP -He_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons1_418)_ 5.56655073745302835e+18 OP -He_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons1_419)_ 5.55404539054767821e+18 OP -He_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons1_420)_ 5.54151016228771430e+18 OP -He_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons1_421)_ 5.52894505267313869e+18 OP -He_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons1_422)_ 5.51635006170394931e+18 OP -He_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons1_423)_ 5.50372518938014822e+18 OP -He_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons1_424)_ 5.49107043570173440e+18 OP -He_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons1_425)_ 5.47838580066870886e+18 OP -He_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons1_426)_ 5.46567128428107059e+18 OP -He_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons1_427)_ 5.45292688653881856e+18 OP -He_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons1_428)_ 5.44015260744195584e+18 OP -He_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons1_429)_ 5.42734844699047834e+18 OP -He_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons1_430)_ 5.41451440518438912e+18 OP -He_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons1_431)_ 5.40165048202368819e+18 OP -He_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons1_432)_ 5.38875667750837453e+18 OP -He_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons1_433)_ 5.37583299163844710e+18 OP -He_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons1_434)_ 5.36287942441390899e+18 OP -He_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons1_435)_ 5.34989597583475610e+18 OP -He_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons1_436)_ 5.33688264590099251e+18 OP -He_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons1_437)_ 5.32383943461261517e+18 OP -He_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons1_438)_ 5.31076634196962611e+18 OP -He_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons1_439)_ 5.29766336797202432e+18 OP -He_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons1_440)_ 5.28453051261980979e+18 OP -He_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons1_441)_ 5.27136777591298253e+18 OP -He_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons1_442)_ 5.25817515785154355e+18 OP -He_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons1_443)_ 5.24495265843549082e+18 OP -He_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons1_444)_ 5.23170027766482637e+18 OP -He_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons1_445)_ 5.21841801553954918e+18 OP -He_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons1_446)_ 5.20510587205966029e+18 OP -He_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons1_447)_ 5.19176384722515661e+18 OP -He_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons1_448)_ 5.17839194103604224e+18 OP -He_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons1_449)_ 5.16499015349231514e+18 OP -He_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons1_450)_ 5.15155848459397530e+18 OP -He_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons1_451)_ 5.13809693434102272e+18 OP -He_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons1_452)_ 5.12460550273345843e+18 OP -He_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons1_453)_ 5.11108418977128038e+18 OP -He_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons1_454)_ 5.09753299545449062e+18 OP -He_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons1_455)_ 5.08395191978308710e+18 OP -He_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons1_456)_ 5.07034096275707290e+18 OP -He_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons1_457)_ 5.05670012437644390e+18 OP -He_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons1_458)_ 5.04302940464120422e+18 OP -He_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons1_459)_ 5.02932880355135078e+18 OP -He_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons1_460)_ 5.01559832110688666e+18 OP -He_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons1_461)_ 5.00183795730780774e+18 OP -He_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons1_462)_ 4.98804771215411814e+18 OP -He_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons1_463)_ 4.97422758564581478e+18 OP -He_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons1_464)_ 4.96037757778289869e+18 OP -He_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons1_465)_ 4.94649768856537088e+18 OP -He_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons1_466)_ 4.93258791799323034e+18 OP -He_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons1_467)_ 4.91864826606647706e+18 OP -He_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons1_468)_ 4.90467873278511104e+18 OP -He_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons1_469)_ 4.89067931814913331e+18 OP -He_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons1_470)_ 4.87665002215854285e+18 OP -He_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons1_471)_ 4.80971561008969933e+18 OP -He_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons1_472)_ 4.74278119802085683e+18 OP -He_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons1_473)_ 4.67584678595201434e+18 OP -He_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons1_474)_ 4.60891237388317235e+18 OP -He_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons1_475)_ 4.54197796181432883e+18 OP -He_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons1_476)_ 4.47504354974548634e+18 OP -He_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons1_477)_ 4.40810913767664333e+18 OP -He_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons1_478)_ 4.34117472560780083e+18 OP -He_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons1_479)_ 4.27424031353895834e+18 OP -He_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons1_480)_ 4.20730590147011584e+18 OP -He_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons1_481)_ 4.14037148940127283e+18 OP -He_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons1_482)_ 4.07343707733243034e+18 OP -He_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons1_483)_ 4.00650266526358682e+18 OP -He_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons1_484)_ 3.93956825319474432e+18 OP -He_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons1_485)_ 3.87263384112590182e+18 OP -He_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons1_486)_ 3.80569942905705933e+18 OP -He_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons1_487)_ 3.73876501698821632e+18 OP -He_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons1_488)_ 3.67183060491937382e+18 OP -He_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons1_489)_ 3.60489619285053030e+18 OP -He_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons1_490)_ 3.53796178078168781e+18 OP -He_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons1_491)_ 3.47102736871284531e+18 OP -He_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons1_492)_ 3.40409295664400230e+18 OP -He_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons1_493)_ 3.33715854457515981e+18 OP -He_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons1_494)_ 3.27022413250631731e+18 OP -He_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons1_495)_ 3.20328972043747430e+18 OP -He_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons1_496)_ 3.13635530836863181e+18 OP -He_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons1_497)_ 3.06942089629978931e+18 OP -He_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons1_498)_ 3.00248648423094579e+18 OP -He_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons1_499)_ 2.93555207216210330e+18 OP -He_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons1_500)_ 2.86861766009326080e+18 OP +Plasma_thermal_pressure_on_axis_(p₀)_(Pa)________________________________ (pres_plasma_thermal_on_axis)__ 8.47048730775634060e+05 OP +Volume_averaged_plasma_thermal_pressure_(⟨p⟩)_(Pa)_______________________ (pres_plasma_thermal_vol_avg)__ 3.43669031635050604e+05 OP +Total_plasma_pressure_at_point_0_________________________________________ (pres_plasma_thermal_total_profile0)_ 8.47048730775634060e+05 +Total_plasma_pressure_at_point_1_________________________________________ (pres_plasma_thermal_total_profile1)_ 8.47042786940236459e+05 +Total_plasma_pressure_at_point_2_________________________________________ (pres_plasma_thermal_total_profile2)_ 8.47024955584166339e+05 +Total_plasma_pressure_at_point_3_________________________________________ (pres_plasma_thermal_total_profile3)_ 8.46995237157787778e+05 +Total_plasma_pressure_at_point_4_________________________________________ (pres_plasma_thermal_total_profile4)_ 8.46953632411703467e+05 +Total_plasma_pressure_at_point_5_________________________________________ (pres_plasma_thermal_total_profile5)_ 8.46900142396746087e+05 +Total_plasma_pressure_at_point_6_________________________________________ (pres_plasma_thermal_total_profile6)_ 8.46834768463965156e+05 +Total_plasma_pressure_at_point_7_________________________________________ (pres_plasma_thermal_total_profile7)_ 8.46757512264616322e+05 +Total_plasma_pressure_at_point_8_________________________________________ (pres_plasma_thermal_total_profile8)_ 8.46668375750139821e+05 +Total_plasma_pressure_at_point_9_________________________________________ (pres_plasma_thermal_total_profile9)_ 8.46567361172142206e+05 +Total_plasma_pressure_at_point_10________________________________________ (pres_plasma_thermal_total_profile10)_ 8.46454471082371194e+05 +Total_plasma_pressure_at_point_11________________________________________ (pres_plasma_thermal_total_profile11)_ 8.46329708332688548e+05 +Total_plasma_pressure_at_point_12________________________________________ (pres_plasma_thermal_total_profile12)_ 8.46193076075038989e+05 +Total_plasma_pressure_at_point_13________________________________________ (pres_plasma_thermal_total_profile13)_ 8.46044577761417720e+05 +Total_plasma_pressure_at_point_14________________________________________ (pres_plasma_thermal_total_profile14)_ 8.45884217143831891e+05 +Total_plasma_pressure_at_point_15________________________________________ (pres_plasma_thermal_total_profile15)_ 8.45711998274261365e+05 +Total_plasma_pressure_at_point_16________________________________________ (pres_plasma_thermal_total_profile16)_ 8.45527925504615298e+05 +Total_plasma_pressure_at_point_17________________________________________ (pres_plasma_thermal_total_profile17)_ 8.45332003486684989e+05 +Total_plasma_pressure_at_point_18________________________________________ (pres_plasma_thermal_total_profile18)_ 8.45124237172095105e+05 +Total_plasma_pressure_at_point_19________________________________________ (pres_plasma_thermal_total_profile19)_ 8.44904631812249310e+05 +Total_plasma_pressure_at_point_20________________________________________ (pres_plasma_thermal_total_profile20)_ 8.44673192958273925e+05 +Total_plasma_pressure_at_point_21________________________________________ (pres_plasma_thermal_total_profile21)_ 8.44429926460960764e+05 +Total_plasma_pressure_at_point_22________________________________________ (pres_plasma_thermal_total_profile22)_ 8.44174838470701477e+05 +Total_plasma_pressure_at_point_23________________________________________ (pres_plasma_thermal_total_profile23)_ 8.43907935437422944e+05 +Total_plasma_pressure_at_point_24________________________________________ (pres_plasma_thermal_total_profile24)_ 8.43629224110518815e+05 +Total_plasma_pressure_at_point_25________________________________________ (pres_plasma_thermal_total_profile25)_ 8.43338711538776057e+05 +Total_plasma_pressure_at_point_26________________________________________ (pres_plasma_thermal_total_profile26)_ 8.43036405070299283e+05 +Total_plasma_pressure_at_point_27________________________________________ (pres_plasma_thermal_total_profile27)_ 8.42722312352433451e+05 +Total_plasma_pressure_at_point_28________________________________________ (pres_plasma_thermal_total_profile28)_ 8.42396441331679933e+05 +Total_plasma_pressure_at_point_29________________________________________ (pres_plasma_thermal_total_profile29)_ 8.42058800253612804e+05 +Total_plasma_pressure_at_point_30________________________________________ (pres_plasma_thermal_total_profile30)_ 8.41709397662789328e+05 +Total_plasma_pressure_at_point_31________________________________________ (pres_plasma_thermal_total_profile31)_ 8.41348242402658914e+05 +Total_plasma_pressure_at_point_32________________________________________ (pres_plasma_thermal_total_profile32)_ 8.40975343615468126e+05 +Total_plasma_pressure_at_point_33________________________________________ (pres_plasma_thermal_total_profile33)_ 8.40590710742162541e+05 +Total_plasma_pressure_at_point_34________________________________________ (pres_plasma_thermal_total_profile34)_ 8.40194353522284888e+05 +Total_plasma_pressure_at_point_35________________________________________ (pres_plasma_thermal_total_profile35)_ 8.39786281993871904e+05 +Total_plasma_pressure_at_point_36________________________________________ (pres_plasma_thermal_total_profile36)_ 8.39366506493344903e+05 +Total_plasma_pressure_at_point_37________________________________________ (pres_plasma_thermal_total_profile37)_ 8.38935037655400112e+05 +Total_plasma_pressure_at_point_38________________________________________ (pres_plasma_thermal_total_profile38)_ 8.38491886412893189e+05 +Total_plasma_pressure_at_point_39________________________________________ (pres_plasma_thermal_total_profile39)_ 8.38037063996723504e+05 +Total_plasma_pressure_at_point_40________________________________________ (pres_plasma_thermal_total_profile40)_ 8.37570581935711438e+05 +Total_plasma_pressure_at_point_41________________________________________ (pres_plasma_thermal_total_profile41)_ 8.37092452056476148e+05 +Total_plasma_pressure_at_point_42________________________________________ (pres_plasma_thermal_total_profile42)_ 8.36602686483308324e+05 +Total_plasma_pressure_at_point_43________________________________________ (pres_plasma_thermal_total_profile43)_ 8.36101297638037940e+05 +Total_plasma_pressure_at_point_44________________________________________ (pres_plasma_thermal_total_profile44)_ 8.35588298239904107e+05 +Total_plasma_pressure_at_point_45________________________________________ (pres_plasma_thermal_total_profile45)_ 8.35063701305414783e+05 +Total_plasma_pressure_at_point_46________________________________________ (pres_plasma_thermal_total_profile46)_ 8.34527520148209529e+05 +Total_plasma_pressure_at_point_47________________________________________ (pres_plasma_thermal_total_profile47)_ 8.33979768378914800e+05 +Total_plasma_pressure_at_point_48________________________________________ (pres_plasma_thermal_total_profile48)_ 8.33420459904997610e+05 +Total_plasma_pressure_at_point_49________________________________________ (pres_plasma_thermal_total_profile49)_ 8.32849608930616640e+05 +Total_plasma_pressure_at_point_50________________________________________ (pres_plasma_thermal_total_profile50)_ 8.32267229956468800e+05 +Total_plasma_pressure_at_point_51________________________________________ (pres_plasma_thermal_total_profile51)_ 8.31673337779632420e+05 +Total_plasma_pressure_at_point_52________________________________________ (pres_plasma_thermal_total_profile52)_ 8.31067947493410204e+05 +Total_plasma_pressure_at_point_53________________________________________ (pres_plasma_thermal_total_profile53)_ 8.30451074487163569e+05 +Total_plasma_pressure_at_point_54________________________________________ (pres_plasma_thermal_total_profile54)_ 8.29822734446149552e+05 +Total_plasma_pressure_at_point_55________________________________________ (pres_plasma_thermal_total_profile55)_ 8.29182943351350026e+05 +Total_plasma_pressure_at_point_56________________________________________ (pres_plasma_thermal_total_profile56)_ 8.28531717479300685e+05 +Total_plasma_pressure_at_point_57________________________________________ (pres_plasma_thermal_total_profile57)_ 8.27869073401914793e+05 +Total_plasma_pressure_at_point_58________________________________________ (pres_plasma_thermal_total_profile58)_ 8.27195027986304369e+05 +Total_plasma_pressure_at_point_59________________________________________ (pres_plasma_thermal_total_profile59)_ 8.26509598394599278e+05 +Total_plasma_pressure_at_point_60________________________________________ (pres_plasma_thermal_total_profile60)_ 8.25812802083760849e+05 +Total_plasma_pressure_at_point_61________________________________________ (pres_plasma_thermal_total_profile61)_ 8.25104656805394683e+05 +Total_plasma_pressure_at_point_62________________________________________ (pres_plasma_thermal_total_profile62)_ 8.24385180605557514e+05 +Total_plasma_pressure_at_point_63________________________________________ (pres_plasma_thermal_total_profile63)_ 8.23654391824564547e+05 +Total_plasma_pressure_at_point_64________________________________________ (pres_plasma_thermal_total_profile64)_ 8.22912309096789220e+05 +Total_plasma_pressure_at_point_65________________________________________ (pres_plasma_thermal_total_profile65)_ 8.22158951350463438e+05 +Total_plasma_pressure_at_point_66________________________________________ (pres_plasma_thermal_total_profile66)_ 8.21394337807471864e+05 +Total_plasma_pressure_at_point_67________________________________________ (pres_plasma_thermal_total_profile67)_ 8.20618487983145751e+05 +Total_plasma_pressure_at_point_68________________________________________ (pres_plasma_thermal_total_profile68)_ 8.19831421686050016e+05 +Total_plasma_pressure_at_point_69________________________________________ (pres_plasma_thermal_total_profile69)_ 8.19033159017770551e+05 +Total_plasma_pressure_at_point_70________________________________________ (pres_plasma_thermal_total_profile70)_ 8.18223720372696524e+05 +Total_plasma_pressure_at_point_71________________________________________ (pres_plasma_thermal_total_profile71)_ 8.17403126437798725e+05 +Total_plasma_pressure_at_point_72________________________________________ (pres_plasma_thermal_total_profile72)_ 8.16571398192407563e+05 +Total_plasma_pressure_at_point_73________________________________________ (pres_plasma_thermal_total_profile73)_ 8.15728556907983730e+05 +Total_plasma_pressure_at_point_74________________________________________ (pres_plasma_thermal_total_profile74)_ 8.14874624147889437e+05 +Total_plasma_pressure_at_point_75________________________________________ (pres_plasma_thermal_total_profile75)_ 8.14009621767153963e+05 +Total_plasma_pressure_at_point_76________________________________________ (pres_plasma_thermal_total_profile76)_ 8.13133571912238374e+05 +Total_plasma_pressure_at_point_77________________________________________ (pres_plasma_thermal_total_profile77)_ 8.12246497020792565e+05 +Total_plasma_pressure_at_point_78________________________________________ (pres_plasma_thermal_total_profile78)_ 8.11348419821415329e+05 +Total_plasma_pressure_at_point_79________________________________________ (pres_plasma_thermal_total_profile79)_ 8.10439363333405694e+05 +Total_plasma_pressure_at_point_80________________________________________ (pres_plasma_thermal_total_profile80)_ 8.09519350866513327e+05 +Total_plasma_pressure_at_point_81________________________________________ (pres_plasma_thermal_total_profile81)_ 8.08588406020686962e+05 +Total_plasma_pressure_at_point_82________________________________________ (pres_plasma_thermal_total_profile82)_ 8.07646552685816656e+05 +Total_plasma_pressure_at_point_83________________________________________ (pres_plasma_thermal_total_profile83)_ 8.06693815041475696e+05 +Total_plasma_pressure_at_point_84________________________________________ (pres_plasma_thermal_total_profile84)_ 8.05730217556656571e+05 +Total_plasma_pressure_at_point_85________________________________________ (pres_plasma_thermal_total_profile85)_ 8.04755784989506472e+05 +Total_plasma_pressure_at_point_86________________________________________ (pres_plasma_thermal_total_profile86)_ 8.03770542387057096e+05 +Total_plasma_pressure_at_point_87________________________________________ (pres_plasma_thermal_total_profile87)_ 8.02774515084953280e+05 +Total_plasma_pressure_at_point_88________________________________________ (pres_plasma_thermal_total_profile88)_ 8.01767728707176633e+05 +Total_plasma_pressure_at_point_89________________________________________ (pres_plasma_thermal_total_profile89)_ 8.00750209165767650e+05 +Total_plasma_pressure_at_point_90________________________________________ (pres_plasma_thermal_total_profile90)_ 7.99721982660542475e+05 +Total_plasma_pressure_at_point_91________________________________________ (pres_plasma_thermal_total_profile91)_ 7.98683075678808847e+05 +Total_plasma_pressure_at_point_92________________________________________ (pres_plasma_thermal_total_profile92)_ 7.97633514995077159e+05 +Total_plasma_pressure_at_point_93________________________________________ (pres_plasma_thermal_total_profile93)_ 7.96573327670768951e+05 +Total_plasma_pressure_at_point_94________________________________________ (pres_plasma_thermal_total_profile94)_ 7.95502541053921916e+05 +Total_plasma_pressure_at_point_95________________________________________ (pres_plasma_thermal_total_profile95)_ 7.94421182778891758e+05 +Total_plasma_pressure_at_point_96________________________________________ (pres_plasma_thermal_total_profile96)_ 7.93329280766050681e+05 +Total_plasma_pressure_at_point_97________________________________________ (pres_plasma_thermal_total_profile97)_ 7.92226863221483072e+05 +Total_plasma_pressure_at_point_98________________________________________ (pres_plasma_thermal_total_profile98)_ 7.91113958636678755e+05 +Total_plasma_pressure_at_point_99________________________________________ (pres_plasma_thermal_total_profile99)_ 7.89990595788219478e+05 +Total_plasma_pressure_at_point_100_______________________________________ (pres_plasma_thermal_total_profile100)_ 7.88856803737466922e+05 +Total_plasma_pressure_at_point_101_______________________________________ (pres_plasma_thermal_total_profile101)_ 7.87712611830245005e+05 +Total_plasma_pressure_at_point_102_______________________________________ (pres_plasma_thermal_total_profile102)_ 7.86558049696517759e+05 +Total_plasma_pressure_at_point_103_______________________________________ (pres_plasma_thermal_total_profile103)_ 7.85393147250067443e+05 +Total_plasma_pressure_at_point_104_______________________________________ (pres_plasma_thermal_total_profile104)_ 7.84217934688166599e+05 +Total_plasma_pressure_at_point_105_______________________________________ (pres_plasma_thermal_total_profile105)_ 7.83032442491247319e+05 +Total_plasma_pressure_at_point_106_______________________________________ (pres_plasma_thermal_total_profile106)_ 7.81836701422568294e+05 +Total_plasma_pressure_at_point_107_______________________________________ (pres_plasma_thermal_total_profile107)_ 7.80630742527877912e+05 +Total_plasma_pressure_at_point_108_______________________________________ (pres_plasma_thermal_total_profile108)_ 7.79414597135075834e+05 +Total_plasma_pressure_at_point_109_______________________________________ (pres_plasma_thermal_total_profile109)_ 7.78188296853866894e+05 +Total_plasma_pressure_at_point_110_______________________________________ (pres_plasma_thermal_total_profile110)_ 7.76951873575417208e+05 +Total_plasma_pressure_at_point_111_______________________________________ (pres_plasma_thermal_total_profile111)_ 7.75705359472004231e+05 +Total_plasma_pressure_at_point_112_______________________________________ (pres_plasma_thermal_total_profile112)_ 7.74448786996663897e+05 +Total_plasma_pressure_at_point_113_______________________________________ (pres_plasma_thermal_total_profile113)_ 7.73182188882834511e+05 +Total_plasma_pressure_at_point_114_______________________________________ (pres_plasma_thermal_total_profile114)_ 7.71905598143997835e+05 +Total_plasma_pressure_at_point_115_______________________________________ (pres_plasma_thermal_total_profile115)_ 7.70619048073316924e+05 +Total_plasma_pressure_at_point_116_______________________________________ (pres_plasma_thermal_total_profile116)_ 7.69322572243270231e+05 +Total_plasma_pressure_at_point_117_______________________________________ (pres_plasma_thermal_total_profile117)_ 7.68016204505284666e+05 +Total_plasma_pressure_at_point_118_______________________________________ (pres_plasma_thermal_total_profile118)_ 7.66699978989361320e+05 +Total_plasma_pressure_at_point_119_______________________________________ (pres_plasma_thermal_total_profile119)_ 7.65373930103701539e+05 +Total_plasma_pressure_at_point_120_______________________________________ (pres_plasma_thermal_total_profile120)_ 7.64038092534329742e+05 +Total_plasma_pressure_at_point_121_______________________________________ (pres_plasma_thermal_total_profile121)_ 7.62692501244711224e+05 +Total_plasma_pressure_at_point_122_______________________________________ (pres_plasma_thermal_total_profile122)_ 7.61337191475366475e+05 +Total_plasma_pressure_at_point_123_______________________________________ (pres_plasma_thermal_total_profile123)_ 7.59972198743486195e+05 +Total_plasma_pressure_at_point_124_______________________________________ (pres_plasma_thermal_total_profile124)_ 7.58597558842538157e+05 +Total_plasma_pressure_at_point_125_______________________________________ (pres_plasma_thermal_total_profile125)_ 7.57213307841873728e+05 +Total_plasma_pressure_at_point_126_______________________________________ (pres_plasma_thermal_total_profile126)_ 7.55819482086331816e+05 +Total_plasma_pressure_at_point_127_______________________________________ (pres_plasma_thermal_total_profile127)_ 7.54416118195837829e+05 +Total_plasma_pressure_at_point_128_______________________________________ (pres_plasma_thermal_total_profile128)_ 7.53003253064999590e+05 +Total_plasma_pressure_at_point_129_______________________________________ (pres_plasma_thermal_total_profile129)_ 7.51580923862701515e+05 +Total_plasma_pressure_at_point_130_______________________________________ (pres_plasma_thermal_total_profile130)_ 7.50149168031695299e+05 +Total_plasma_pressure_at_point_131_______________________________________ (pres_plasma_thermal_total_profile131)_ 7.48708023288185941e+05 +Total_plasma_pressure_at_point_132_______________________________________ (pres_plasma_thermal_total_profile132)_ 7.47257527621416608e+05 +Total_plasma_pressure_at_point_133_______________________________________ (pres_plasma_thermal_total_profile133)_ 7.45797719293249771e+05 +Total_plasma_pressure_at_point_134_______________________________________ (pres_plasma_thermal_total_profile134)_ 7.44328636837743688e+05 +Total_plasma_pressure_at_point_135_______________________________________ (pres_plasma_thermal_total_profile135)_ 7.42850319060728536e+05 +Total_plasma_pressure_at_point_136_______________________________________ (pres_plasma_thermal_total_profile136)_ 7.41362805039377767e+05 +Total_plasma_pressure_at_point_137_______________________________________ (pres_plasma_thermal_total_profile137)_ 7.39866134121775394e+05 +Total_plasma_pressure_at_point_138_______________________________________ (pres_plasma_thermal_total_profile138)_ 7.38360345926482580e+05 +Total_plasma_pressure_at_point_139_______________________________________ (pres_plasma_thermal_total_profile139)_ 7.36845480342099676e+05 +Total_plasma_pressure_at_point_140_______________________________________ (pres_plasma_thermal_total_profile140)_ 7.35321577526825247e+05 +Total_plasma_pressure_at_point_141_______________________________________ (pres_plasma_thermal_total_profile141)_ 7.33788677908012527e+05 +Total_plasma_pressure_at_point_142_______________________________________ (pres_plasma_thermal_total_profile142)_ 7.32246822181721684e+05 +Total_plasma_pressure_at_point_143_______________________________________ (pres_plasma_thermal_total_profile143)_ 7.30696051312271273e+05 +Total_plasma_pressure_at_point_144_______________________________________ (pres_plasma_thermal_total_profile144)_ 7.29136406531784218e+05 +Total_plasma_pressure_at_point_145_______________________________________ (pres_plasma_thermal_total_profile145)_ 7.27567929339731345e+05 +Total_plasma_pressure_at_point_146_______________________________________ (pres_plasma_thermal_total_profile146)_ 7.25990661502473406e+05 +Total_plasma_pressure_at_point_147_______________________________________ (pres_plasma_thermal_total_profile147)_ 7.24404645052798325e+05 +Total_plasma_pressure_at_point_148_______________________________________ (pres_plasma_thermal_total_profile148)_ 7.22809922289455775e+05 +Total_plasma_pressure_at_point_149_______________________________________ (pres_plasma_thermal_total_profile149)_ 7.21206535776690347e+05 +Total_plasma_pressure_at_point_150_______________________________________ (pres_plasma_thermal_total_profile150)_ 7.19594528343768558e+05 +Total_plasma_pressure_at_point_151_______________________________________ (pres_plasma_thermal_total_profile151)_ 7.17973943084505619e+05 +Total_plasma_pressure_at_point_152_______________________________________ (pres_plasma_thermal_total_profile152)_ 7.16344823356788605e+05 +Total_plasma_pressure_at_point_153_______________________________________ (pres_plasma_thermal_total_profile153)_ 7.14707212782096583e+05 +Total_plasma_pressure_at_point_154_______________________________________ (pres_plasma_thermal_total_profile154)_ 7.13061155245015398e+05 +Total_plasma_pressure_at_point_155_______________________________________ (pres_plasma_thermal_total_profile155)_ 7.11406694892755360e+05 +Total_plasma_pressure_at_point_156_______________________________________ (pres_plasma_thermal_total_profile156)_ 7.09743876134658698e+05 +Total_plasma_pressure_at_point_157_______________________________________ (pres_plasma_thermal_total_profile157)_ 7.08072743641710142e+05 +Total_plasma_pressure_at_point_158_______________________________________ (pres_plasma_thermal_total_profile158)_ 7.06393342346040998e+05 +Total_plasma_pressure_at_point_159_______________________________________ (pres_plasma_thermal_total_profile159)_ 7.04705717440431239e+05 +Total_plasma_pressure_at_point_160_______________________________________ (pres_plasma_thermal_total_profile160)_ 7.03009914377810899e+05 +Total_plasma_pressure_at_point_161_______________________________________ (pres_plasma_thermal_total_profile161)_ 7.01305978870753432e+05 +Total_plasma_pressure_at_point_162_______________________________________ (pres_plasma_thermal_total_profile162)_ 6.99593956890972564e+05 +Total_plasma_pressure_at_point_163_______________________________________ (pres_plasma_thermal_total_profile163)_ 6.97873894668811350e+05 +Total_plasma_pressure_at_point_164_______________________________________ (pres_plasma_thermal_total_profile164)_ 6.96145838692730293e+05 +Total_plasma_pressure_at_point_165_______________________________________ (pres_plasma_thermal_total_profile165)_ 6.94409835708793602e+05 +Total_plasma_pressure_at_point_166_______________________________________ (pres_plasma_thermal_total_profile166)_ 6.92665932720150333e+05 +Total_plasma_pressure_at_point_167_______________________________________ (pres_plasma_thermal_total_profile167)_ 6.90914176986514824e+05 +Total_plasma_pressure_at_point_168_______________________________________ (pres_plasma_thermal_total_profile168)_ 6.89154616023643408e+05 +Total_plasma_pressure_at_point_169_______________________________________ (pres_plasma_thermal_total_profile169)_ 6.87387297602807870e+05 +Total_plasma_pressure_at_point_170_______________________________________ (pres_plasma_thermal_total_profile170)_ 6.85612269750268431e+05 +Total_plasma_pressure_at_point_171_______________________________________ (pres_plasma_thermal_total_profile171)_ 6.83829580746740568e+05 +Total_plasma_pressure_at_point_172_______________________________________ (pres_plasma_thermal_total_profile172)_ 6.82039279126861598e+05 +Total_plasma_pressure_at_point_173_______________________________________ (pres_plasma_thermal_total_profile173)_ 6.80241413678654819e+05 +Total_plasma_pressure_at_point_174_______________________________________ (pres_plasma_thermal_total_profile174)_ 6.78436033442988293e+05 +Total_plasma_pressure_at_point_175_______________________________________ (pres_plasma_thermal_total_profile175)_ 6.76623187713035615e+05 +Total_plasma_pressure_at_point_176_______________________________________ (pres_plasma_thermal_total_profile176)_ 6.74802926033727825e+05 +Total_plasma_pressure_at_point_177_______________________________________ (pres_plasma_thermal_total_profile177)_ 6.72975298201208818e+05 +Total_plasma_pressure_at_point_178_______________________________________ (pres_plasma_thermal_total_profile178)_ 6.71140354262284469e+05 +Total_plasma_pressure_at_point_179_______________________________________ (pres_plasma_thermal_total_profile179)_ 6.69298144513870589e+05 +Total_plasma_pressure_at_point_180_______________________________________ (pres_plasma_thermal_total_profile180)_ 6.67448719502437860e+05 +Total_plasma_pressure_at_point_181_______________________________________ (pres_plasma_thermal_total_profile181)_ 6.65592130023454316e+05 +Total_plasma_pressure_at_point_182_______________________________________ (pres_plasma_thermal_total_profile182)_ 6.63728427120825276e+05 +Total_plasma_pressure_at_point_183_______________________________________ (pres_plasma_thermal_total_profile183)_ 6.61857662086331984e+05 +Total_plasma_pressure_at_point_184_______________________________________ (pres_plasma_thermal_total_profile184)_ 6.59979886459065718e+05 +Total_plasma_pressure_at_point_185_______________________________________ (pres_plasma_thermal_total_profile185)_ 6.58095152024861425e+05 +Total_plasma_pressure_at_point_186_______________________________________ (pres_plasma_thermal_total_profile186)_ 6.56203510815727990e+05 +Total_plasma_pressure_at_point_187_______________________________________ (pres_plasma_thermal_total_profile187)_ 6.54305015109275701e+05 +Total_plasma_pressure_at_point_188_______________________________________ (pres_plasma_thermal_total_profile188)_ 6.52399717428142671e+05 +Total_plasma_pressure_at_point_189_______________________________________ (pres_plasma_thermal_total_profile189)_ 6.50487670539419167e+05 +Total_plasma_pressure_at_point_190_______________________________________ (pres_plasma_thermal_total_profile190)_ 6.48568927454067394e+05 +Total_plasma_pressure_at_point_191_______________________________________ (pres_plasma_thermal_total_profile191)_ 6.46643541426340933e+05 +Total_plasma_pressure_at_point_192_______________________________________ (pres_plasma_thermal_total_profile192)_ 6.44711565953202546e+05 +Total_plasma_pressure_at_point_193_______________________________________ (pres_plasma_thermal_total_profile193)_ 6.42773054773737676e+05 +Total_plasma_pressure_at_point_194_______________________________________ (pres_plasma_thermal_total_profile194)_ 6.40828061868568184e+05 +Total_plasma_pressure_at_point_195_______________________________________ (pres_plasma_thermal_total_profile195)_ 6.38876641459261882e+05 +Total_plasma_pressure_at_point_196_______________________________________ (pres_plasma_thermal_total_profile196)_ 6.36918848007742083e+05 +Total_plasma_pressure_at_point_197_______________________________________ (pres_plasma_thermal_total_profile197)_ 6.34954736215692596e+05 +Total_plasma_pressure_at_point_198_______________________________________ (pres_plasma_thermal_total_profile198)_ 6.32984361023964011e+05 +Total_plasma_pressure_at_point_199_______________________________________ (pres_plasma_thermal_total_profile199)_ 6.31007777611974743e+05 +Total_plasma_pressure_at_point_200_______________________________________ (pres_plasma_thermal_total_profile200)_ 6.29025041397113353e+05 +Total_plasma_pressure_at_point_201_______________________________________ (pres_plasma_thermal_total_profile201)_ 6.27036208034135750e+05 +Total_plasma_pressure_at_point_202_______________________________________ (pres_plasma_thermal_total_profile202)_ 6.25041333414563676e+05 +Total_plasma_pressure_at_point_203_______________________________________ (pres_plasma_thermal_total_profile203)_ 6.23040473666078644e+05 +Total_plasma_pressure_at_point_204_______________________________________ (pres_plasma_thermal_total_profile204)_ 6.21033685151918093e+05 +Total_plasma_pressure_at_point_205_______________________________________ (pres_plasma_thermal_total_profile205)_ 6.19021024470263626e+05 +Total_plasma_pressure_at_point_206_______________________________________ (pres_plasma_thermal_total_profile206)_ 6.17002548453635303e+05 +Total_plasma_pressure_at_point_207_______________________________________ (pres_plasma_thermal_total_profile207)_ 6.14978314168277895e+05 +Total_plasma_pressure_at_point_208_______________________________________ (pres_plasma_thermal_total_profile208)_ 6.12948378913549241e+05 +Total_plasma_pressure_at_point_209_______________________________________ (pres_plasma_thermal_total_profile209)_ 6.10912800221306505e+05 +Total_plasma_pressure_at_point_210_______________________________________ (pres_plasma_thermal_total_profile210)_ 6.08871635855289642e+05 +Total_plasma_pressure_at_point_211_______________________________________ (pres_plasma_thermal_total_profile211)_ 6.06824943810505443e+05 +Total_plasma_pressure_at_point_212_______________________________________ (pres_plasma_thermal_total_profile212)_ 6.04772782312609721e+05 +Total_plasma_pressure_at_point_213_______________________________________ (pres_plasma_thermal_total_profile213)_ 6.02715209817287046e+05 +Total_plasma_pressure_at_point_214_______________________________________ (pres_plasma_thermal_total_profile214)_ 6.00652285009631072e+05 +Total_plasma_pressure_at_point_215_______________________________________ (pres_plasma_thermal_total_profile215)_ 5.98584066803523572e+05 +Total_plasma_pressure_at_point_216_______________________________________ (pres_plasma_thermal_total_profile216)_ 5.96510614341010572e+05 +Total_plasma_pressure_at_point_217_______________________________________ (pres_plasma_thermal_total_profile217)_ 5.94431986991679762e+05 +Total_plasma_pressure_at_point_218_______________________________________ (pres_plasma_thermal_total_profile218)_ 5.92348244352036854e+05 +Total_plasma_pressure_at_point_219_______________________________________ (pres_plasma_thermal_total_profile219)_ 5.90259446244878811e+05 +Total_plasma_pressure_at_point_220_______________________________________ (pres_plasma_thermal_total_profile220)_ 5.88165652718669735e+05 +Total_plasma_pressure_at_point_221_______________________________________ (pres_plasma_thermal_total_profile221)_ 5.86066924046913628e+05 +Total_plasma_pressure_at_point_222_______________________________________ (pres_plasma_thermal_total_profile222)_ 5.83963320727526909e+05 +Total_plasma_pressure_at_point_223_______________________________________ (pres_plasma_thermal_total_profile223)_ 5.81854903482211870e+05 +Total_plasma_pressure_at_point_224_______________________________________ (pres_plasma_thermal_total_profile224)_ 5.79741733255828498e+05 +Total_plasma_pressure_at_point_225_______________________________________ (pres_plasma_thermal_total_profile225)_ 5.77623871215765597e+05 +Total_plasma_pressure_at_point_226_______________________________________ (pres_plasma_thermal_total_profile226)_ 5.75501378751313430e+05 +Total_plasma_pressure_at_point_227_______________________________________ (pres_plasma_thermal_total_profile227)_ 5.73374317473034142e+05 +Total_plasma_pressure_at_point_228_______________________________________ (pres_plasma_thermal_total_profile228)_ 5.71242749212133698e+05 +Total_plasma_pressure_at_point_229_______________________________________ (pres_plasma_thermal_total_profile229)_ 5.69106736019833479e+05 +Total_plasma_pressure_at_point_230_______________________________________ (pres_plasma_thermal_total_profile230)_ 5.66966340166741400e+05 +Total_plasma_pressure_at_point_231_______________________________________ (pres_plasma_thermal_total_profile231)_ 5.64821624142223736e+05 +Total_plasma_pressure_at_point_232_______________________________________ (pres_plasma_thermal_total_profile232)_ 5.62672650653778692e+05 +Total_plasma_pressure_at_point_233_______________________________________ (pres_plasma_thermal_total_profile233)_ 5.60519482626406476e+05 +Total_plasma_pressure_at_point_234_______________________________________ (pres_plasma_thermal_total_profile234)_ 5.58362183201986132e+05 +Total_plasma_pressure_at_point_235_______________________________________ (pres_plasma_thermal_total_profile235)_ 5.56200815738646314e+05 +Total_plasma_pressure_at_point_236_______________________________________ (pres_plasma_thermal_total_profile236)_ 5.54035443810141878e+05 +Total_plasma_pressure_at_point_237_______________________________________ (pres_plasma_thermal_total_profile237)_ 5.51866131205229321e+05 +Total_plasma_pressure_at_point_238_______________________________________ (pres_plasma_thermal_total_profile238)_ 5.49692941927044303e+05 +Total_plasma_pressure_at_point_239_______________________________________ (pres_plasma_thermal_total_profile239)_ 5.47515940192477545e+05 +Total_plasma_pressure_at_point_240_______________________________________ (pres_plasma_thermal_total_profile240)_ 5.45335190431557479e+05 +Total_plasma_pressure_at_point_241_______________________________________ (pres_plasma_thermal_total_profile241)_ 5.43150757286828710e+05 +Total_plasma_pressure_at_point_242_______________________________________ (pres_plasma_thermal_total_profile242)_ 5.40962705612734891e+05 +Total_plasma_pressure_at_point_243_______________________________________ (pres_plasma_thermal_total_profile243)_ 5.38771100475004525e+05 +Total_plasma_pressure_at_point_244_______________________________________ (pres_plasma_thermal_total_profile244)_ 5.36576007150035352e+05 +Total_plasma_pressure_at_point_245_______________________________________ (pres_plasma_thermal_total_profile245)_ 5.34377491124283639e+05 +Total_plasma_pressure_at_point_246_______________________________________ (pres_plasma_thermal_total_profile246)_ 5.32175618093654863e+05 +Total_plasma_pressure_at_point_247_______________________________________ (pres_plasma_thermal_total_profile247)_ 5.29970453962895786e+05 +Total_plasma_pressure_at_point_248_______________________________________ (pres_plasma_thermal_total_profile248)_ 5.27762064844990848e+05 +Total_plasma_pressure_at_point_249_______________________________________ (pres_plasma_thermal_total_profile249)_ 5.25550517060560058e+05 +Total_plasma_pressure_at_point_250_______________________________________ (pres_plasma_thermal_total_profile250)_ 5.23335877137260395e+05 +Total_plasma_pressure_at_point_251_______________________________________ (pres_plasma_thermal_total_profile251)_ 5.21118211809189292e+05 +Total_plasma_pressure_at_point_252_______________________________________ (pres_plasma_thermal_total_profile252)_ 5.18897588016294467e+05 +Total_plasma_pressure_at_point_253_______________________________________ (pres_plasma_thermal_total_profile253)_ 5.16674072903781547e+05 +Total_plasma_pressure_at_point_254_______________________________________ (pres_plasma_thermal_total_profile254)_ 5.14447733821532514e+05 +Total_plasma_pressure_at_point_255_______________________________________ (pres_plasma_thermal_total_profile255)_ 5.12218638323522115e+05 +Total_plasma_pressure_at_point_256_______________________________________ (pres_plasma_thermal_total_profile256)_ 5.09986854167242185e+05 +Total_plasma_pressure_at_point_257_______________________________________ (pres_plasma_thermal_total_profile257)_ 5.07752449313127378e+05 +Total_plasma_pressure_at_point_258_______________________________________ (pres_plasma_thermal_total_profile258)_ 5.05515491923988913e+05 +Total_plasma_pressure_at_point_259_______________________________________ (pres_plasma_thermal_total_profile259)_ 5.03276050364449737e+05 +Total_plasma_pressure_at_point_260_______________________________________ (pres_plasma_thermal_total_profile260)_ 5.01034193200387468e+05 +Total_plasma_pressure_at_point_261_______________________________________ (pres_plasma_thermal_total_profile261)_ 4.98789989198380150e+05 +Total_plasma_pressure_at_point_262_______________________________________ (pres_plasma_thermal_total_profile262)_ 4.96543507325160899e+05 +Total_plasma_pressure_at_point_263_______________________________________ (pres_plasma_thermal_total_profile263)_ 4.94294816747074132e+05 +Total_plasma_pressure_at_point_264_______________________________________ (pres_plasma_thermal_total_profile264)_ 4.92043986829542904e+05 +Total_plasma_pressure_at_point_265_______________________________________ (pres_plasma_thermal_total_profile265)_ 4.89791087136537535e+05 +Total_plasma_pressure_at_point_266_______________________________________ (pres_plasma_thermal_total_profile266)_ 4.87536187430055346e+05 +Total_plasma_pressure_at_point_267_______________________________________ (pres_plasma_thermal_total_profile267)_ 4.85279357669604186e+05 +Total_plasma_pressure_at_point_268_______________________________________ (pres_plasma_thermal_total_profile268)_ 4.83020668011696660e+05 +Total_plasma_pressure_at_point_269_______________________________________ (pres_plasma_thermal_total_profile269)_ 4.80760188809347106e+05 +Total_plasma_pressure_at_point_270_______________________________________ (pres_plasma_thermal_total_profile270)_ 4.78497990611582529e+05 +Total_plasma_pressure_at_point_271_______________________________________ (pres_plasma_thermal_total_profile271)_ 4.76234144162956625e+05 +Total_plasma_pressure_at_point_272_______________________________________ (pres_plasma_thermal_total_profile272)_ 4.73968720403075975e+05 +Total_plasma_pressure_at_point_273_______________________________________ (pres_plasma_thermal_total_profile273)_ 4.71701790466133913e+05 +Total_plasma_pressure_at_point_274_______________________________________ (pres_plasma_thermal_total_profile274)_ 4.69433425680454005e+05 +Total_plasma_pressure_at_point_275_______________________________________ (pres_plasma_thermal_total_profile275)_ 4.67163697568042728e+05 +Total_plasma_pressure_at_point_276_______________________________________ (pres_plasma_thermal_total_profile276)_ 4.64892677844154532e+05 +Total_plasma_pressure_at_point_277_______________________________________ (pres_plasma_thermal_total_profile277)_ 4.62620438416864490e+05 +Total_plasma_pressure_at_point_278_______________________________________ (pres_plasma_thermal_total_profile278)_ 4.60347051386655658e+05 +Total_plasma_pressure_at_point_279_______________________________________ (pres_plasma_thermal_total_profile279)_ 4.58072589046013891e+05 +Total_plasma_pressure_at_point_280_______________________________________ (pres_plasma_thermal_total_profile280)_ 4.55797123879039078e+05 +Total_plasma_pressure_at_point_281_______________________________________ (pres_plasma_thermal_total_profile281)_ 4.53520728561064578e+05 +Total_plasma_pressure_at_point_282_______________________________________ (pres_plasma_thermal_total_profile282)_ 4.51243475958293304e+05 +Total_plasma_pressure_at_point_283_______________________________________ (pres_plasma_thermal_total_profile283)_ 4.48965439127445279e+05 +Total_plasma_pressure_at_point_284_______________________________________ (pres_plasma_thermal_total_profile284)_ 4.46686691315418691e+05 +Total_plasma_pressure_at_point_285_______________________________________ (pres_plasma_thermal_total_profile285)_ 4.44407305958968820e+05 +Total_plasma_pressure_at_point_286_______________________________________ (pres_plasma_thermal_total_profile286)_ 4.42127356684397382e+05 +Total_plasma_pressure_at_point_287_______________________________________ (pres_plasma_thermal_total_profile287)_ 4.39846917307262192e+05 +Total_plasma_pressure_at_point_288_______________________________________ (pres_plasma_thermal_total_profile288)_ 4.37566061832098814e+05 +Total_plasma_pressure_at_point_289_______________________________________ (pres_plasma_thermal_total_profile289)_ 4.35284864452163805e+05 +Total_plasma_pressure_at_point_290_______________________________________ (pres_plasma_thermal_total_profile290)_ 4.33003399549190945e+05 +Total_plasma_pressure_at_point_291_______________________________________ (pres_plasma_thermal_total_profile291)_ 4.30721741693170276e+05 +Total_plasma_pressure_at_point_292_______________________________________ (pres_plasma_thermal_total_profile292)_ 4.28439965642140713e+05 +Total_plasma_pressure_at_point_293_______________________________________ (pres_plasma_thermal_total_profile293)_ 4.26158146342008957e+05 +Total_plasma_pressure_at_point_294_______________________________________ (pres_plasma_thermal_total_profile294)_ 4.23876358926382614e+05 +Total_plasma_pressure_at_point_295_______________________________________ (pres_plasma_thermal_total_profile295)_ 4.21594678716428112e+05 +Total_plasma_pressure_at_point_296_______________________________________ (pres_plasma_thermal_total_profile296)_ 4.19313181220750092e+05 +Total_plasma_pressure_at_point_297_______________________________________ (pres_plasma_thermal_total_profile297)_ 4.17031942135293037e+05 +Total_plasma_pressure_at_point_298_______________________________________ (pres_plasma_thermal_total_profile298)_ 4.14751037343265489e+05 +Total_plasma_pressure_at_point_299_______________________________________ (pres_plasma_thermal_total_profile299)_ 4.12470542915092257e+05 +Total_plasma_pressure_at_point_300_______________________________________ (pres_plasma_thermal_total_profile300)_ 4.10190535108387878e+05 +Total_plasma_pressure_at_point_301_______________________________________ (pres_plasma_thermal_total_profile301)_ 4.07911090367959929e+05 +Total_plasma_pressure_at_point_302_______________________________________ (pres_plasma_thermal_total_profile302)_ 4.05632285325837263e+05 +Total_plasma_pressure_at_point_303_______________________________________ (pres_plasma_thermal_total_profile303)_ 4.03354196801328217e+05 +Total_plasma_pressure_at_point_304_______________________________________ (pres_plasma_thermal_total_profile304)_ 4.01076901801107335e+05 +Total_plasma_pressure_at_point_305_______________________________________ (pres_plasma_thermal_total_profile305)_ 3.98800477519333945e+05 +Total_plasma_pressure_at_point_306_______________________________________ (pres_plasma_thermal_total_profile306)_ 3.96525001337800175e+05 +Total_plasma_pressure_at_point_307_______________________________________ (pres_plasma_thermal_total_profile307)_ 3.94250550826114602e+05 +Total_plasma_pressure_at_point_308_______________________________________ (pres_plasma_thermal_total_profile308)_ 3.91977203741916921e+05 +Total_plasma_pressure_at_point_309_______________________________________ (pres_plasma_thermal_total_profile309)_ 3.89705038031131378e+05 +Total_plasma_pressure_at_point_310_______________________________________ (pres_plasma_thermal_total_profile310)_ 3.87434131828253507e+05 +Total_plasma_pressure_at_point_311_______________________________________ (pres_plasma_thermal_total_profile311)_ 3.85164563456678297e+05 +Total_plasma_pressure_at_point_312_______________________________________ (pres_plasma_thermal_total_profile312)_ 3.82896411429063301e+05 +Total_plasma_pressure_at_point_313_______________________________________ (pres_plasma_thermal_total_profile313)_ 3.80629754447738349e+05 +Total_plasma_pressure_at_point_314_______________________________________ (pres_plasma_thermal_total_profile314)_ 3.78364671405152068e+05 +Total_plasma_pressure_at_point_315_______________________________________ (pres_plasma_thermal_total_profile315)_ 3.76101241384367051e+05 +Total_plasma_pressure_at_point_316_______________________________________ (pres_plasma_thermal_total_profile316)_ 3.73839543659597170e+05 +Total_plasma_pressure_at_point_317_______________________________________ (pres_plasma_thermal_total_profile317)_ 3.71579657696794660e+05 +Total_plasma_pressure_at_point_318_______________________________________ (pres_plasma_thermal_total_profile318)_ 3.69321663154284819e+05 +Total_plasma_pressure_at_point_319_______________________________________ (pres_plasma_thermal_total_profile319)_ 3.67065639883453317e+05 +Total_plasma_pressure_at_point_320_______________________________________ (pres_plasma_thermal_total_profile320)_ 3.64811667929484043e+05 +Total_plasma_pressure_at_point_321_______________________________________ (pres_plasma_thermal_total_profile321)_ 3.62559827532154392e+05 +Total_plasma_pressure_at_point_322_______________________________________ (pres_plasma_thermal_total_profile322)_ 3.60310199126685970e+05 +Total_plasma_pressure_at_point_323_______________________________________ (pres_plasma_thermal_total_profile323)_ 3.58062863344655139e+05 +Total_plasma_pressure_at_point_324_______________________________________ (pres_plasma_thermal_total_profile324)_ 3.55817901014964562e+05 +Total_plasma_pressure_at_point_325_______________________________________ (pres_plasma_thermal_total_profile325)_ 3.53575393164878653e+05 +Total_plasma_pressure_at_point_326_______________________________________ (pres_plasma_thermal_total_profile326)_ 3.51335421021125396e+05 +Total_plasma_pressure_at_point_327_______________________________________ (pres_plasma_thermal_total_profile327)_ 3.49098066011066898e+05 +Total_plasma_pressure_at_point_328_______________________________________ (pres_plasma_thermal_total_profile328)_ 3.46863409763940668e+05 +Total_plasma_pressure_at_point_329_______________________________________ (pres_plasma_thermal_total_profile329)_ 3.44631534112176276e+05 +Total_plasma_pressure_at_point_330_______________________________________ (pres_plasma_thermal_total_profile330)_ 3.42402521092787036e+05 +Total_plasma_pressure_at_point_331_______________________________________ (pres_plasma_thermal_total_profile331)_ 3.40176452948844759e+05 +Total_plasma_pressure_at_point_332_______________________________________ (pres_plasma_thermal_total_profile332)_ 3.37953412131033547e+05 +Total_plasma_pressure_at_point_333_______________________________________ (pres_plasma_thermal_total_profile333)_ 3.35733481299294275e+05 +Total_plasma_pressure_at_point_334_______________________________________ (pres_plasma_thermal_total_profile334)_ 3.33516743324554816e+05 +Total_plasma_pressure_at_point_335_______________________________________ (pres_plasma_thermal_total_profile335)_ 3.31303281290557003e+05 +Total_plasma_pressure_at_point_336_______________________________________ (pres_plasma_thermal_total_profile336)_ 3.29093178495778120e+05 +Total_plasma_pressure_at_point_337_______________________________________ (pres_plasma_thermal_total_profile337)_ 3.26886518455454614e+05 +Total_plasma_pressure_at_point_338_______________________________________ (pres_plasma_thermal_total_profile338)_ 3.24683384903709986e+05 +Total_plasma_pressure_at_point_339_______________________________________ (pres_plasma_thermal_total_profile339)_ 3.22483861795792298e+05 +Total_plasma_pressure_at_point_340_______________________________________ (pres_plasma_thermal_total_profile340)_ 3.20288033310424536e+05 +Total_plasma_pressure_at_point_341_______________________________________ (pres_plasma_thermal_total_profile341)_ 3.18095983852273901e+05 +Total_plasma_pressure_at_point_342_______________________________________ (pres_plasma_thermal_total_profile342)_ 3.15907798054543091e+05 +Total_plasma_pressure_at_point_343_______________________________________ (pres_plasma_thermal_total_profile343)_ 3.13723560781690059e+05 +Total_plasma_pressure_at_point_344_______________________________________ (pres_plasma_thermal_total_profile344)_ 3.11543357132281642e+05 +Total_plasma_pressure_at_point_345_______________________________________ (pres_plasma_thermal_total_profile345)_ 3.09367272441982932e+05 +Total_plasma_pressure_at_point_346_______________________________________ (pres_plasma_thermal_total_profile346)_ 3.07195392286695889e+05 +Total_plasma_pressure_at_point_347_______________________________________ (pres_plasma_thermal_total_profile347)_ 3.05027802485843538e+05 +Total_plasma_pressure_at_point_348_______________________________________ (pres_plasma_thermal_total_profile348)_ 3.02864589105814113e+05 +Total_plasma_pressure_at_point_349_______________________________________ (pres_plasma_thermal_total_profile349)_ 3.00705838463567779e+05 +Total_plasma_pressure_at_point_350_______________________________________ (pres_plasma_thermal_total_profile350)_ 2.98551637130413204e+05 +Total_plasma_pressure_at_point_351_______________________________________ (pres_plasma_thermal_total_profile351)_ 2.96402071935961489e+05 +Total_plasma_pressure_at_point_352_______________________________________ (pres_plasma_thermal_total_profile352)_ 2.94257229972267291e+05 +Total_plasma_pressure_at_point_353_______________________________________ (pres_plasma_thermal_total_profile353)_ 2.92117198598160292e+05 +Total_plasma_pressure_at_point_354_______________________________________ (pres_plasma_thermal_total_profile354)_ 2.89982065443780972e+05 +Total_plasma_pressure_at_point_355_______________________________________ (pres_plasma_thermal_total_profile355)_ 2.87851918415325054e+05 +Total_plasma_pressure_at_point_356_______________________________________ (pres_plasma_thermal_total_profile356)_ 2.85726845700008445e+05 +Total_plasma_pressure_at_point_357_______________________________________ (pres_plasma_thermal_total_profile357)_ 2.83606935771261808e+05 +Total_plasma_pressure_at_point_358_______________________________________ (pres_plasma_thermal_total_profile358)_ 2.81492277394163888e+05 +Total_plasma_pressure_at_point_359_______________________________________ (pres_plasma_thermal_total_profile359)_ 2.79382959631126374e+05 +Total_plasma_pressure_at_point_360_______________________________________ (pres_plasma_thermal_total_profile360)_ 2.77279071847840853e+05 +Total_plasma_pressure_at_point_361_______________________________________ (pres_plasma_thermal_total_profile361)_ 2.75180703719497076e+05 +Total_plasma_pressure_at_point_362_______________________________________ (pres_plasma_thermal_total_profile362)_ 2.73087945237291045e+05 +Total_plasma_pressure_at_point_363_______________________________________ (pres_plasma_thermal_total_profile363)_ 2.71000886715229135e+05 +Total_plasma_pressure_at_point_364_______________________________________ (pres_plasma_thermal_total_profile364)_ 2.68919618797248637e+05 +Total_plasma_pressure_at_point_365_______________________________________ (pres_plasma_thermal_total_profile365)_ 2.66844232464664092e+05 +Total_plasma_pressure_at_point_366_______________________________________ (pres_plasma_thermal_total_profile366)_ 2.64774819043958676e+05 +Total_plasma_pressure_at_point_367_______________________________________ (pres_plasma_thermal_total_profile367)_ 2.62711470214934612e+05 +Total_plasma_pressure_at_point_368_______________________________________ (pres_plasma_thermal_total_profile368)_ 2.60654278019242280e+05 +Total_plasma_pressure_at_point_369_______________________________________ (pres_plasma_thermal_total_profile369)_ 2.58603334869302751e+05 +Total_plasma_pressure_at_point_370_______________________________________ (pres_plasma_thermal_total_profile370)_ 2.56558733557646890e+05 +Total_plasma_pressure_at_point_371_______________________________________ (pres_plasma_thermal_total_profile371)_ 2.54520567266688508e+05 +Total_plasma_pressure_at_point_372_______________________________________ (pres_plasma_thermal_total_profile372)_ 2.52488929578955111e+05 +Total_plasma_pressure_at_point_373_______________________________________ (pres_plasma_thermal_total_profile373)_ 2.50463914487797010e+05 +Total_plasma_pressure_at_point_374_______________________________________ (pres_plasma_thermal_total_profile374)_ 2.48445616408602044e+05 +Total_plasma_pressure_at_point_375_______________________________________ (pres_plasma_thermal_total_profile375)_ 2.46434130190537195e+05 +Total_plasma_pressure_at_point_376_______________________________________ (pres_plasma_thermal_total_profile376)_ 2.44429551128849242e+05 +Total_plasma_pressure_at_point_377_______________________________________ (pres_plasma_thermal_total_profile377)_ 2.42431974977748177e+05 +Total_plasma_pressure_at_point_378_______________________________________ (pres_plasma_thermal_total_profile378)_ 2.40441497963909118e+05 +Total_plasma_pressure_at_point_379_______________________________________ (pres_plasma_thermal_total_profile379)_ 2.38458216800620663e+05 +Total_plasma_pressure_at_point_380_______________________________________ (pres_plasma_thermal_total_profile380)_ 2.36482228702616791e+05 +Total_plasma_pressure_at_point_381_______________________________________ (pres_plasma_thermal_total_profile381)_ 2.34513631401628780e+05 +Total_plasma_pressure_at_point_382_______________________________________ (pres_plasma_thermal_total_profile382)_ 2.32552523162694997e+05 +Total_plasma_pressure_at_point_383_______________________________________ (pres_plasma_thermal_total_profile383)_ 2.30599002801271563e+05 +Total_plasma_pressure_at_point_384_______________________________________ (pres_plasma_thermal_total_profile384)_ 2.28653169701187173e+05 +Total_plasma_pressure_at_point_385_______________________________________ (pres_plasma_thermal_total_profile385)_ 2.26715123833490186e+05 +Total_plasma_pressure_at_point_386_______________________________________ (pres_plasma_thermal_total_profile386)_ 2.24784965776237019e+05 +Total_plasma_pressure_at_point_387_______________________________________ (pres_plasma_thermal_total_profile387)_ 2.22862796735277516e+05 +Total_plasma_pressure_at_point_388_______________________________________ (pres_plasma_thermal_total_profile388)_ 2.20948718566093186e+05 +Total_plasma_pressure_at_point_389_______________________________________ (pres_plasma_thermal_total_profile389)_ 2.19042833796750929e+05 +Total_plasma_pressure_at_point_390_______________________________________ (pres_plasma_thermal_total_profile390)_ 2.17145245652036392e+05 +Total_plasma_pressure_at_point_391_______________________________________ (pres_plasma_thermal_total_profile391)_ 2.15256058078840200e+05 +Total_plasma_pressure_at_point_392_______________________________________ (pres_plasma_thermal_total_profile392)_ 2.13375375772868691e+05 +Total_plasma_pressure_at_point_393_______________________________________ (pres_plasma_thermal_total_profile393)_ 2.11503304206765199e+05 +Total_plasma_pressure_at_point_394_______________________________________ (pres_plasma_thermal_total_profile394)_ 2.09639949659722508e+05 +Total_plasma_pressure_at_point_395_______________________________________ (pres_plasma_thermal_total_profile395)_ 2.07785419248686405e+05 +Total_plasma_pressure_at_point_396_______________________________________ (pres_plasma_thermal_total_profile396)_ 2.05939820961245627e+05 +Total_plasma_pressure_at_point_397_______________________________________ (pres_plasma_thermal_total_profile397)_ 2.04103263690319611e+05 +Total_plasma_pressure_at_point_398_______________________________________ (pres_plasma_thermal_total_profile398)_ 2.02275857270758570e+05 +Total_plasma_pressure_at_point_399_______________________________________ (pres_plasma_thermal_total_profile399)_ 2.00457712517983338e+05 +Total_plasma_pressure_at_point_400_______________________________________ (pres_plasma_thermal_total_profile400)_ 1.98648941268798138e+05 +Total_plasma_pressure_at_point_401_______________________________________ (pres_plasma_thermal_total_profile401)_ 1.96849656424526416e+05 +Total_plasma_pressure_at_point_402_______________________________________ (pres_plasma_thermal_total_profile402)_ 1.95059971996623994e+05 +Total_plasma_pressure_at_point_403_______________________________________ (pres_plasma_thermal_total_profile403)_ 1.93280003154945734e+05 +Total_plasma_pressure_at_point_404_______________________________________ (pres_plasma_thermal_total_profile404)_ 1.91509866278847796e+05 +Total_plasma_pressure_at_point_405_______________________________________ (pres_plasma_thermal_total_profile405)_ 1.89749679011331056e+05 +Total_plasma_pressure_at_point_406_______________________________________ (pres_plasma_thermal_total_profile406)_ 1.87999560316442279e+05 +Total_plasma_pressure_at_point_407_______________________________________ (pres_plasma_thermal_total_profile407)_ 1.86259630540174636e+05 +Total_plasma_pressure_at_point_408_______________________________________ (pres_plasma_thermal_total_profile408)_ 1.84530011475124658e+05 +Total_plasma_pressure_at_point_409_______________________________________ (pres_plasma_thermal_total_profile409)_ 1.82810826429193636e+05 +Total_plasma_pressure_at_point_410_______________________________________ (pres_plasma_thermal_total_profile410)_ 1.81102200298638490e+05 +Total_plasma_pressure_at_point_411_______________________________________ (pres_plasma_thermal_total_profile411)_ 1.79404259645815997e+05 +Total_plasma_pressure_at_point_412_______________________________________ (pres_plasma_thermal_total_profile412)_ 1.77717132781986787e+05 +Total_plasma_pressure_at_point_413_______________________________________ (pres_plasma_thermal_total_profile413)_ 1.76040949855591636e+05 +Total_plasma_pressure_at_point_414_______________________________________ (pres_plasma_thermal_total_profile414)_ 1.74375842946441990e+05 +Total_plasma_pressure_at_point_415_______________________________________ (pres_plasma_thermal_total_profile415)_ 1.72721946166321286e+05 +Total_plasma_pressure_at_point_416_______________________________________ (pres_plasma_thermal_total_profile416)_ 1.71079395766536240e+05 +Total_plasma_pressure_at_point_417_______________________________________ (pres_plasma_thermal_total_profile417)_ 1.69448330253018765e+05 +Total_plasma_pressure_at_point_418_______________________________________ (pres_plasma_thermal_total_profile418)_ 1.67828890509638702e+05 +Total_plasma_pressure_at_point_419_______________________________________ (pres_plasma_thermal_total_profile419)_ 1.66221219930462132e+05 +Total_plasma_pressure_at_point_420_______________________________________ (pres_plasma_thermal_total_profile420)_ 1.64625464561767352e+05 +Total_plasma_pressure_at_point_421_______________________________________ (pres_plasma_thermal_total_profile421)_ 1.63041773254724161e+05 +Total_plasma_pressure_at_point_422_______________________________________ (pres_plasma_thermal_total_profile422)_ 1.61470297829743766e+05 +Total_plasma_pressure_at_point_423_______________________________________ (pres_plasma_thermal_total_profile423)_ 1.59911193253625795e+05 +Total_plasma_pressure_at_point_424_______________________________________ (pres_plasma_thermal_total_profile424)_ 1.58364617830759176e+05 +Total_plasma_pressure_at_point_425_______________________________________ (pres_plasma_thermal_total_profile425)_ 1.56830733409792359e+05 +Total_plasma_pressure_at_point_426_______________________________________ (pres_plasma_thermal_total_profile426)_ 1.55309705607357202e+05 +Total_plasma_pressure_at_point_427_______________________________________ (pres_plasma_thermal_total_profile427)_ 1.53801704050636530e+05 +Total_plasma_pressure_at_point_428_______________________________________ (pres_plasma_thermal_total_profile428)_ 1.52306902640797431e+05 +Total_plasma_pressure_at_point_429_______________________________________ (pres_plasma_thermal_total_profile429)_ 1.50825479839576641e+05 +Total_plasma_pressure_at_point_430_______________________________________ (pres_plasma_thermal_total_profile430)_ 1.49357618981622334e+05 +Total_plasma_pressure_at_point_431_______________________________________ (pres_plasma_thermal_total_profile431)_ 1.47903508615551720e+05 +Total_plasma_pressure_at_point_432_______________________________________ (pres_plasma_thermal_total_profile432)_ 1.46463342877114599e+05 +Total_plasma_pressure_at_point_433_______________________________________ (pres_plasma_thermal_total_profile433)_ 1.45037321898342023e+05 +Total_plasma_pressure_at_point_434_______________________________________ (pres_plasma_thermal_total_profile434)_ 1.43625652257150272e+05 +Total_plasma_pressure_at_point_435_______________________________________ (pres_plasma_thermal_total_profile435)_ 1.42228547472554957e+05 +Total_plasma_pressure_at_point_436_______________________________________ (pres_plasma_thermal_total_profile436)_ 1.40846228551475768e+05 +Total_plasma_pressure_at_point_437_______________________________________ (pres_plasma_thermal_total_profile437)_ 1.39478924594083044e+05 +Total_plasma_pressure_at_point_438_______________________________________ (pres_plasma_thermal_total_profile438)_ 1.38126873465817102e+05 +Total_plasma_pressure_at_point_439_______________________________________ (pres_plasma_thermal_total_profile439)_ 1.36790322545614705e+05 +Total_plasma_pressure_at_point_440_______________________________________ (pres_plasma_thermal_total_profile440)_ 1.35469529561591335e+05 +Total_plasma_pressure_at_point_441_______________________________________ (pres_plasma_thermal_total_profile441)_ 1.34164763527506555e+05 +Total_plasma_pressure_at_point_442_______________________________________ (pres_plasma_thermal_total_profile442)_ 1.32876305795892666e+05 +Total_plasma_pressure_at_point_443_______________________________________ (pres_plasma_thermal_total_profile443)_ 1.31604451246869226e+05 +Total_plasma_pressure_at_point_444_______________________________________ (pres_plasma_thermal_total_profile444)_ 1.30349509635579161e+05 +Total_plasma_pressure_at_point_445_______________________________________ (pres_plasma_thermal_total_profile445)_ 1.29111807126064596e+05 +Total_plasma_pressure_at_point_446_______________________________________ (pres_plasma_thermal_total_profile446)_ 1.27891688045571471e+05 +Total_plasma_pressure_at_point_447_______________________________________ (pres_plasma_thermal_total_profile447)_ 1.26689516901111609e+05 +Total_plasma_pressure_at_point_448_______________________________________ (pres_plasma_thermal_total_profile448)_ 1.25505680710180488e+05 +Total_plasma_pressure_at_point_449_______________________________________ (pres_plasma_thermal_total_profile449)_ 1.24340591710578243e+05 +Total_plasma_pressure_at_point_450_______________________________________ (pres_plasma_thermal_total_profile450)_ 1.23194690531389759e+05 +Total_plasma_pressure_at_point_451_______________________________________ (pres_plasma_thermal_total_profile451)_ 1.22068449929854629e+05 +Total_plasma_pressure_at_point_452_______________________________________ (pres_plasma_thermal_total_profile452)_ 1.20962379229315527e+05 +Total_plasma_pressure_at_point_453_______________________________________ (pres_plasma_thermal_total_profile453)_ 1.19877029634905222e+05 +Total_plasma_pressure_at_point_454_______________________________________ (pres_plasma_thermal_total_profile454)_ 1.18813000660988764e+05 +Total_plasma_pressure_at_point_455_______________________________________ (pres_plasma_thermal_total_profile455)_ 1.17770947985056147e+05 +Total_plasma_pressure_at_point_456_______________________________________ (pres_plasma_thermal_total_profile456)_ 1.16751593158428761e+05 +Total_plasma_pressure_at_point_457_______________________________________ (pres_plasma_thermal_total_profile457)_ 1.15755735773516499e+05 +Total_plasma_pressure_at_point_458_______________________________________ (pres_plasma_thermal_total_profile458)_ 1.14784268941418559e+05 +Total_plasma_pressure_at_point_459_______________________________________ (pres_plasma_thermal_total_profile459)_ 1.13838199325230933e+05 +Total_plasma_pressure_at_point_460_______________________________________ (pres_plasma_thermal_total_profile460)_ 1.12918673597161105e+05 +Total_plasma_pressure_at_point_461_______________________________________ (pres_plasma_thermal_total_profile461)_ 1.12027014214525378e+05 +Total_plasma_pressure_at_point_462_______________________________________ (pres_plasma_thermal_total_profile462)_ 1.11164769177287701e+05 +Total_plasma_pressure_at_point_463_______________________________________ (pres_plasma_thermal_total_profile463)_ 1.10333783631448328e+05 +Total_plasma_pressure_at_point_464_______________________________________ (pres_plasma_thermal_total_profile464)_ 1.09536307354235221e+05 +Total_plasma_pressure_at_point_465_______________________________________ (pres_plasma_thermal_total_profile465)_ 1.08775165016310144e+05 +Total_plasma_pressure_at_point_466_______________________________________ (pres_plasma_thermal_total_profile466)_ 1.08054045744652933e+05 +Total_plasma_pressure_at_point_467_______________________________________ (pres_plasma_thermal_total_profile467)_ 1.07378046748679670e+05 +Total_plasma_pressure_at_point_468_______________________________________ (pres_plasma_thermal_total_profile468)_ 1.06754857928497426e+05 +Total_plasma_pressure_at_point_469_______________________________________ (pres_plasma_thermal_total_profile469)_ 1.06198110870042234e+05 +Total_plasma_pressure_at_point_470_______________________________________ (pres_plasma_thermal_total_profile470)_ 1.05748025848155230e+05 +Total_plasma_pressure_at_point_471_______________________________________ (pres_plasma_thermal_total_profile471)_ 1.00883239660830484e+05 +Total_plasma_pressure_at_point_472_______________________________________ (pres_plasma_thermal_total_profile472)_ 9.61134570475297223e+04 +Total_plasma_pressure_at_point_473_______________________________________ (pres_plasma_thermal_total_profile473)_ 9.14386780082529876e+04 +Total_plasma_pressure_at_point_474_______________________________________ (pres_plasma_thermal_total_profile474)_ 8.68589025430002803e+04 +Total_plasma_pressure_at_point_475_______________________________________ (pres_plasma_thermal_total_profile475)_ 8.23741306517715420e+04 +Total_plasma_pressure_at_point_476_______________________________________ (pres_plasma_thermal_total_profile476)_ 7.79843623345668311e+04 +Total_plasma_pressure_at_point_477_______________________________________ (pres_plasma_thermal_total_profile477)_ 7.36895975913861475e+04 +Total_plasma_pressure_at_point_478_______________________________________ (pres_plasma_thermal_total_profile478)_ 6.94898364222294767e+04 +Total_plasma_pressure_at_point_479_______________________________________ (pres_plasma_thermal_total_profile479)_ 6.53850788270967969e+04 +Total_plasma_pressure_at_point_480_______________________________________ (pres_plasma_thermal_total_profile480)_ 6.13753248059881444e+04 +Total_plasma_pressure_at_point_481_______________________________________ (pres_plasma_thermal_total_profile481)_ 5.74605743589034828e+04 +Total_plasma_pressure_at_point_482_______________________________________ (pres_plasma_thermal_total_profile482)_ 5.36408274858428631e+04 +Total_plasma_pressure_at_point_483_______________________________________ (pres_plasma_thermal_total_profile483)_ 4.99160841868062416e+04 +Total_plasma_pressure_at_point_484_______________________________________ (pres_plasma_thermal_total_profile484)_ 4.62863444617936257e+04 +Total_plasma_pressure_at_point_485_______________________________________ (pres_plasma_thermal_total_profile485)_ 4.27516083108050079e+04 +Total_plasma_pressure_at_point_486_______________________________________ (pres_plasma_thermal_total_profile486)_ 3.93118757338404102e+04 +Total_plasma_pressure_at_point_487_______________________________________ (pres_plasma_thermal_total_profile487)_ 3.59671467308998326e+04 +Total_plasma_pressure_at_point_488_______________________________________ (pres_plasma_thermal_total_profile488)_ 3.27174213019832605e+04 +Total_plasma_pressure_at_point_489_______________________________________ (pres_plasma_thermal_total_profile489)_ 2.95626994470906939e+04 +Total_plasma_pressure_at_point_490_______________________________________ (pres_plasma_thermal_total_profile490)_ 2.65029811662221546e+04 +Total_plasma_pressure_at_point_491_______________________________________ (pres_plasma_thermal_total_profile491)_ 2.35382664593776135e+04 +Total_plasma_pressure_at_point_492_______________________________________ (pres_plasma_thermal_total_profile492)_ 2.06685553265570852e+04 +Total_plasma_pressure_at_point_493_______________________________________ (pres_plasma_thermal_total_profile493)_ 1.78938477677605770e+04 +Total_plasma_pressure_at_point_494_______________________________________ (pres_plasma_thermal_total_profile494)_ 1.52141437829880706e+04 +Total_plasma_pressure_at_point_495_______________________________________ (pres_plasma_thermal_total_profile495)_ 1.26294433722395770e+04 +Total_plasma_pressure_at_point_496_______________________________________ (pres_plasma_thermal_total_profile496)_ 1.01397465355150944e+04 +Total_plasma_pressure_at_point_497_______________________________________ (pres_plasma_thermal_total_profile497)_ 7.74505327281462087e+03 +Total_plasma_pressure_at_point_498_______________________________________ (pres_plasma_thermal_total_profile498)_ 5.44536358413816288e+03 +Total_plasma_pressure_at_point_499_______________________________________ (pres_plasma_thermal_total_profile499)_ 3.24067746948571266e+03 +Total_plasma_pressure_at_point_500_______________________________________ (pres_plasma_thermal_total_profile500)_ 1.13099492885727523e+03 +Total_plasma_electron_pressure_at_point_0________________________________ (pres_plasma_electron_profile0)_ 4.49743342242376239e+05 +Total_plasma_electron_pressure_at_point_1________________________________ (pres_plasma_electron_profile1)_ 4.49740186343193171e+05 +Total_plasma_electron_pressure_at_point_2________________________________ (pres_plasma_electron_profile2)_ 4.49730718725352199e+05 +Total_plasma_electron_pressure_at_point_3________________________________ (pres_plasma_electron_profile3)_ 4.49714939627975516e+05 +Total_plasma_electron_pressure_at_point_4________________________________ (pres_plasma_electron_profile4)_ 4.49692849449598230e+05 +Total_plasma_electron_pressure_at_point_5________________________________ (pres_plasma_electron_profile5)_ 4.49664448748163355e+05 +Total_plasma_electron_pressure_at_point_6________________________________ (pres_plasma_electron_profile6)_ 4.49629738241015177e+05 +Total_plasma_electron_pressure_at_point_7________________________________ (pres_plasma_electron_profile7)_ 4.49588718804893375e+05 +Total_plasma_electron_pressure_at_point_8________________________________ (pres_plasma_electron_profile8)_ 4.49541391475921671e+05 +Total_plasma_electron_pressure_at_point_9________________________________ (pres_plasma_electron_profile9)_ 4.49487757449597993e+05 +Total_plasma_electron_pressure_at_point_10_______________________________ (pres_plasma_electron_profile10)_ 4.49427818080781377e+05 +Total_plasma_electron_pressure_at_point_11_______________________________ (pres_plasma_electron_profile11)_ 4.49361574883677182e+05 +Total_plasma_electron_pressure_at_point_12_______________________________ (pres_plasma_electron_profile12)_ 4.49289029531821026e+05 +Total_plasma_electron_pressure_at_point_13_______________________________ (pres_plasma_electron_profile13)_ 4.49210183858061268e+05 +Total_plasma_electron_pressure_at_point_14_______________________________ (pres_plasma_electron_profile14)_ 4.49125039854538452e+05 +Total_plasma_electron_pressure_at_point_15_______________________________ (pres_plasma_electron_profile15)_ 4.49033599672664946e+05 +Total_plasma_electron_pressure_at_point_16_______________________________ (pres_plasma_electron_profile16)_ 4.48935865623101301e+05 +Total_plasma_electron_pressure_at_point_17_______________________________ (pres_plasma_electron_profile17)_ 4.48831840175731690e+05 +Total_plasma_electron_pressure_at_point_18_______________________________ (pres_plasma_electron_profile18)_ 4.48721525959637540e+05 +Total_plasma_electron_pressure_at_point_19_______________________________ (pres_plasma_electron_profile19)_ 4.48604925763069186e+05 +Total_plasma_electron_pressure_at_point_20_______________________________ (pres_plasma_electron_profile20)_ 4.48482042533415661e+05 +Total_plasma_electron_pressure_at_point_21_______________________________ (pres_plasma_electron_profile21)_ 4.48352879377174308e+05 +Total_plasma_electron_pressure_at_point_22_______________________________ (pres_plasma_electron_profile22)_ 4.48217439559916034e+05 +Total_plasma_electron_pressure_at_point_23_______________________________ (pres_plasma_electron_profile23)_ 4.48075726506251027e+05 +Total_plasma_electron_pressure_at_point_24_______________________________ (pres_plasma_electron_profile24)_ 4.47927743799792137e+05 +Total_plasma_electron_pressure_at_point_25_______________________________ (pres_plasma_electron_profile25)_ 4.47773495183116582e+05 +Total_plasma_electron_pressure_at_point_26_______________________________ (pres_plasma_electron_profile26)_ 4.47612984557724616e+05 +Total_plasma_electron_pressure_at_point_27_______________________________ (pres_plasma_electron_profile27)_ 4.47446215983999660e+05 +Total_plasma_electron_pressure_at_point_28_______________________________ (pres_plasma_electron_profile28)_ 4.47273193681163073e+05 +Total_plasma_electron_pressure_at_point_29_______________________________ (pres_plasma_electron_profile29)_ 4.47093922027229797e+05 +Total_plasma_electron_pressure_at_point_30_______________________________ (pres_plasma_electron_profile30)_ 4.46908405558960978e+05 +Total_plasma_electron_pressure_at_point_31_______________________________ (pres_plasma_electron_profile31)_ 4.46716648971815477e+05 +Total_plasma_electron_pressure_at_point_32_______________________________ (pres_plasma_electron_profile32)_ 4.46518657119899581e+05 +Total_plasma_electron_pressure_at_point_33_______________________________ (pres_plasma_electron_profile33)_ 4.46314435015914612e+05 +Total_plasma_electron_pressure_at_point_34_______________________________ (pres_plasma_electron_profile34)_ 4.46103987831103383e+05 +Total_plasma_electron_pressure_at_point_35_______________________________ (pres_plasma_electron_profile35)_ 4.45887320895194774e+05 +Total_plasma_electron_pressure_at_point_36_______________________________ (pres_plasma_electron_profile36)_ 4.45664439696346177e+05 +Total_plasma_electron_pressure_at_point_37_______________________________ (pres_plasma_electron_profile37)_ 4.45435349881084869e+05 +Total_plasma_electron_pressure_at_point_38_______________________________ (pres_plasma_electron_profile38)_ 4.45200057254246960e+05 +Total_plasma_electron_pressure_at_point_39_______________________________ (pres_plasma_electron_profile39)_ 4.44958567778915807e+05 +Total_plasma_electron_pressure_at_point_40_______________________________ (pres_plasma_electron_profile40)_ 4.44710887576357054e+05 +Total_plasma_electron_pressure_at_point_41_______________________________ (pres_plasma_electron_profile41)_ 4.44457022925953381e+05 +Total_plasma_electron_pressure_at_point_42_______________________________ (pres_plasma_electron_profile42)_ 4.44196980265137274e+05 +Total_plasma_electron_pressure_at_point_43_______________________________ (pres_plasma_electron_profile43)_ 4.43930766189320828e+05 +Total_plasma_electron_pressure_at_point_44_______________________________ (pres_plasma_electron_profile44)_ 4.43658387451826246e+05 +Total_plasma_electron_pressure_at_point_45_______________________________ (pres_plasma_electron_profile45)_ 4.43379850963811856e+05 +Total_plasma_electron_pressure_at_point_46_______________________________ (pres_plasma_electron_profile46)_ 4.43095163794198772e+05 +Total_plasma_electron_pressure_at_point_47_______________________________ (pres_plasma_electron_profile47)_ 4.42804333169594407e+05 +Total_plasma_electron_pressure_at_point_48_______________________________ (pres_plasma_electron_profile48)_ 4.42507366474214708e+05 +Total_plasma_electron_pressure_at_point_49_______________________________ (pres_plasma_electron_profile49)_ 4.42204271249804995e+05 +Total_plasma_electron_pressure_at_point_50_______________________________ (pres_plasma_electron_profile50)_ 4.41895055195558467e+05 +Total_plasma_electron_pressure_at_point_51_______________________________ (pres_plasma_electron_profile51)_ 4.41579726168033259e+05 +Total_plasma_electron_pressure_at_point_52_______________________________ (pres_plasma_electron_profile52)_ 4.41258292181068507e+05 +Total_plasma_electron_pressure_at_point_53_______________________________ (pres_plasma_electron_profile53)_ 4.40930761405696860e+05 +Total_plasma_electron_pressure_at_point_54_______________________________ (pres_plasma_electron_profile54)_ 4.40597142170057865e+05 +Total_plasma_electron_pressure_at_point_55_______________________________ (pres_plasma_electron_profile55)_ 4.40257442959306994e+05 +Total_plasma_electron_pressure_at_point_56_______________________________ (pres_plasma_electron_profile56)_ 4.39911672415524954e+05 +Total_plasma_electron_pressure_at_point_57_______________________________ (pres_plasma_electron_profile57)_ 4.39559839337624260e+05 +Total_plasma_electron_pressure_at_point_58_______________________________ (pres_plasma_electron_profile58)_ 4.39201952681254188e+05 +Total_plasma_electron_pressure_at_point_59_______________________________ (pres_plasma_electron_profile59)_ 4.38838021558704728e+05 +Total_plasma_electron_pressure_at_point_60_______________________________ (pres_plasma_electron_profile60)_ 4.38468055238807574e+05 +Total_plasma_electron_pressure_at_point_61_______________________________ (pres_plasma_electron_profile61)_ 4.38092063146836765e+05 +Total_plasma_electron_pressure_at_point_62_______________________________ (pres_plasma_electron_profile62)_ 4.37710054864406178e+05 +Total_plasma_electron_pressure_at_point_63_______________________________ (pres_plasma_electron_profile63)_ 4.37322040129367204e+05 +Total_plasma_electron_pressure_at_point_64_______________________________ (pres_plasma_electron_profile64)_ 4.36928028835702396e+05 +Total_plasma_electron_pressure_at_point_65_______________________________ (pres_plasma_electron_profile65)_ 4.36528031033419538e+05 +Total_plasma_electron_pressure_at_point_66_______________________________ (pres_plasma_electron_profile66)_ 4.36122056928442267e+05 +Total_plasma_electron_pressure_at_point_67_______________________________ (pres_plasma_electron_profile67)_ 4.35710116882500472e+05 +Total_plasma_electron_pressure_at_point_68_______________________________ (pres_plasma_electron_profile68)_ 4.35292221413017891e+05 +Total_plasma_electron_pressure_at_point_69_______________________________ (pres_plasma_electron_profile69)_ 4.34868381192998204e+05 +Total_plasma_electron_pressure_at_point_70_______________________________ (pres_plasma_electron_profile70)_ 4.34438607050910301e+05 +Total_plasma_electron_pressure_at_point_71_______________________________ (pres_plasma_electron_profile71)_ 4.34002909970570181e+05 +Total_plasma_electron_pressure_at_point_72_______________________________ (pres_plasma_electron_profile72)_ 4.33561301091023081e+05 +Total_plasma_electron_pressure_at_point_73_______________________________ (pres_plasma_electron_profile73)_ 4.33113791706421878e+05 +Total_plasma_electron_pressure_at_point_74_______________________________ (pres_plasma_electron_profile74)_ 4.32660393265905441e+05 +Total_plasma_electron_pressure_at_point_75_______________________________ (pres_plasma_electron_profile75)_ 4.32201117373474408e+05 +Total_plasma_electron_pressure_at_point_76_______________________________ (pres_plasma_electron_profile76)_ 4.31735975787865813e+05 +Total_plasma_electron_pressure_at_point_77_______________________________ (pres_plasma_electron_profile77)_ 4.31264980422424735e+05 +Total_plasma_electron_pressure_at_point_78_______________________________ (pres_plasma_electron_profile78)_ 4.30788143344976124e+05 +Total_plasma_electron_pressure_at_point_79_______________________________ (pres_plasma_electron_profile79)_ 4.30305476777693490e+05 +Total_plasma_electron_pressure_at_point_80_______________________________ (pres_plasma_electron_profile80)_ 4.29816993096966005e+05 +Total_plasma_electron_pressure_at_point_81_______________________________ (pres_plasma_electron_profile81)_ 4.29322704833264987e+05 +Total_plasma_electron_pressure_at_point_82_______________________________ (pres_plasma_electron_profile82)_ 4.28822624671007041e+05 +Total_plasma_electron_pressure_at_point_83_______________________________ (pres_plasma_electron_profile83)_ 4.28316765448416932e+05 +Total_plasma_electron_pressure_at_point_84_______________________________ (pres_plasma_electron_profile84)_ 4.27805140157387883e+05 +Total_plasma_electron_pressure_at_point_85_______________________________ (pres_plasma_electron_profile85)_ 4.27287761943340360e+05 +Total_plasma_electron_pressure_at_point_86_______________________________ (pres_plasma_electron_profile86)_ 4.26764644105079351e+05 +Total_plasma_electron_pressure_at_point_87_______________________________ (pres_plasma_electron_profile87)_ 4.26235800094649545e+05 +Total_plasma_electron_pressure_at_point_88_______________________________ (pres_plasma_electron_profile88)_ 4.25701243517189403e+05 +Total_plasma_electron_pressure_at_point_89_______________________________ (pres_plasma_electron_profile89)_ 4.25160988130783022e+05 +Total_plasma_electron_pressure_at_point_90_______________________________ (pres_plasma_electron_profile90)_ 4.24615047846309957e+05 +Total_plasma_electron_pressure_at_point_91_______________________________ (pres_plasma_electron_profile91)_ 4.24063436727294466e+05 +Total_plasma_electron_pressure_at_point_92_______________________________ (pres_plasma_electron_profile92)_ 4.23506168989751895e+05 +Total_plasma_electron_pressure_at_point_93_______________________________ (pres_plasma_electron_profile93)_ 4.22943259002033970e+05 +Total_plasma_electron_pressure_at_point_94_______________________________ (pres_plasma_electron_profile94)_ 4.22374721284672443e+05 +Total_plasma_electron_pressure_at_point_95_______________________________ (pres_plasma_electron_profile95)_ 4.21800570510220306e+05 +Total_plasma_electron_pressure_at_point_96_______________________________ (pres_plasma_electron_profile96)_ 4.21220821503092127e+05 +Total_plasma_electron_pressure_at_point_97_______________________________ (pres_plasma_electron_profile97)_ 4.20635489239402406e+05 +Total_plasma_electron_pressure_at_point_98_______________________________ (pres_plasma_electron_profile98)_ 4.20044588846802246e+05 +Total_plasma_electron_pressure_at_point_99_______________________________ (pres_plasma_electron_profile99)_ 4.19448135604313575e+05 +Total_plasma_electron_pressure_at_point_100______________________________ (pres_plasma_electron_profile100)_ 4.18846144942163199e+05 +Total_plasma_electron_pressure_at_point_101______________________________ (pres_plasma_electron_profile101)_ 4.18238632441613881e+05 +Total_plasma_electron_pressure_at_point_102______________________________ (pres_plasma_electron_profile102)_ 4.17625613834793563e+05 +Total_plasma_electron_pressure_at_point_103______________________________ (pres_plasma_electron_profile103)_ 4.17007105004524579e+05 +Total_plasma_electron_pressure_at_point_104______________________________ (pres_plasma_electron_profile104)_ 4.16383121984149155e+05 +Total_plasma_electron_pressure_at_point_105______________________________ (pres_plasma_electron_profile105)_ 4.15753680957354256e+05 +Total_plasma_electron_pressure_at_point_106______________________________ (pres_plasma_electron_profile106)_ 4.15118798257994407e+05 +Total_plasma_electron_pressure_at_point_107______________________________ (pres_plasma_electron_profile107)_ 4.14478490369913052e+05 +Total_plasma_electron_pressure_at_point_108______________________________ (pres_plasma_electron_profile108)_ 4.13832773926762631e+05 +Total_plasma_electron_pressure_at_point_109______________________________ (pres_plasma_electron_profile109)_ 4.13181665711821232e+05 +Total_plasma_electron_pressure_at_point_110______________________________ (pres_plasma_electron_profile110)_ 4.12525182657809695e+05 +Total_plasma_electron_pressure_at_point_111______________________________ (pres_plasma_electron_profile111)_ 4.11863341846705647e+05 +Total_plasma_electron_pressure_at_point_112______________________________ (pres_plasma_electron_profile112)_ 4.11196160509556532e+05 +Total_plasma_electron_pressure_at_point_113______________________________ (pres_plasma_electron_profile113)_ 4.10523656026290380e+05 +Total_plasma_electron_pressure_at_point_114______________________________ (pres_plasma_electron_profile114)_ 4.09845845925525122e+05 +Total_plasma_electron_pressure_at_point_115______________________________ (pres_plasma_electron_profile115)_ 4.09162747884376615e+05 +Total_plasma_electron_pressure_at_point_116______________________________ (pres_plasma_electron_profile116)_ 4.08474379728263884e+05 +Total_plasma_electron_pressure_at_point_117______________________________ (pres_plasma_electron_profile117)_ 4.07780759430714708e+05 +Total_plasma_electron_pressure_at_point_118______________________________ (pres_plasma_electron_profile118)_ 4.07081905113166722e+05 +Total_plasma_electron_pressure_at_point_119______________________________ (pres_plasma_electron_profile119)_ 4.06377835044768988e+05 +Total_plasma_electron_pressure_at_point_120______________________________ (pres_plasma_electron_profile120)_ 4.05668567642181646e+05 +Total_plasma_electron_pressure_at_point_121______________________________ (pres_plasma_electron_profile121)_ 4.04954121469372767e+05 +Total_plasma_electron_pressure_at_point_122______________________________ (pres_plasma_electron_profile122)_ 4.04234515237414103e+05 +Total_plasma_electron_pressure_at_point_123______________________________ (pres_plasma_electron_profile123)_ 4.03509767804276082e+05 +Total_plasma_electron_pressure_at_point_124______________________________ (pres_plasma_electron_profile124)_ 4.02779898174619710e+05 +Total_plasma_electron_pressure_at_point_125______________________________ (pres_plasma_electron_profile125)_ 4.02044925499587087e+05 +Total_plasma_electron_pressure_at_point_126______________________________ (pres_plasma_electron_profile126)_ 4.01304869076591334e+05 +Total_plasma_electron_pressure_at_point_127______________________________ (pres_plasma_electron_profile127)_ 4.00559748349103669e+05 +Total_plasma_electron_pressure_at_point_128______________________________ (pres_plasma_electron_profile128)_ 3.99809582906438969e+05 +Total_plasma_electron_pressure_at_point_129______________________________ (pres_plasma_electron_profile129)_ 3.99054392483539996e+05 +Total_plasma_electron_pressure_at_point_130______________________________ (pres_plasma_electron_profile130)_ 3.98294196960760397e+05 +Total_plasma_electron_pressure_at_point_131______________________________ (pres_plasma_electron_profile131)_ 3.97529016363644856e+05 +Total_plasma_electron_pressure_at_point_132______________________________ (pres_plasma_electron_profile132)_ 3.96758870862708194e+05 +Total_plasma_electron_pressure_at_point_133______________________________ (pres_plasma_electron_profile133)_ 3.95983780773213774e+05 +Total_plasma_electron_pressure_at_point_134______________________________ (pres_plasma_electron_profile134)_ 3.95203766554948059e+05 +Total_plasma_electron_pressure_at_point_135______________________________ (pres_plasma_electron_profile135)_ 3.94418848811995646e+05 +Total_plasma_electron_pressure_at_point_136______________________________ (pres_plasma_electron_profile136)_ 3.93629048292511841e+05 +Total_plasma_electron_pressure_at_point_137______________________________ (pres_plasma_electron_profile137)_ 3.92834385888492747e+05 +Total_plasma_electron_pressure_at_point_138______________________________ (pres_plasma_electron_profile138)_ 3.92034882635545335e+05 +Total_plasma_electron_pressure_at_point_139______________________________ (pres_plasma_electron_profile139)_ 3.91230559712654620e+05 +Total_plasma_electron_pressure_at_point_140______________________________ (pres_plasma_electron_profile140)_ 3.90421438441949838e+05 +Total_plasma_electron_pressure_at_point_141______________________________ (pres_plasma_electron_profile141)_ 3.89607540288468590e+05 +Total_plasma_electron_pressure_at_point_142______________________________ (pres_plasma_electron_profile142)_ 3.88788886859919585e+05 +Total_plasma_electron_pressure_at_point_143______________________________ (pres_plasma_electron_profile143)_ 3.87965499906443991e+05 +Total_plasma_electron_pressure_at_point_144______________________________ (pres_plasma_electron_profile144)_ 3.87137401320374629e+05 +Total_plasma_electron_pressure_at_point_145______________________________ (pres_plasma_electron_profile145)_ 3.86304613135993714e+05 +Total_plasma_electron_pressure_at_point_146______________________________ (pres_plasma_electron_profile146)_ 3.85467157529289427e+05 +Total_plasma_electron_pressure_at_point_147______________________________ (pres_plasma_electron_profile147)_ 3.84625056817710458e+05 +Total_plasma_electron_pressure_at_point_148______________________________ (pres_plasma_electron_profile148)_ 3.83778333459918562e+05 +Total_plasma_electron_pressure_at_point_149______________________________ (pres_plasma_electron_profile149)_ 3.82927010055541119e+05 +Total_plasma_electron_pressure_at_point_150______________________________ (pres_plasma_electron_profile150)_ 3.82071109344919736e+05 +Total_plasma_electron_pressure_at_point_151______________________________ (pres_plasma_electron_profile151)_ 3.81210654208859021e+05 +Total_plasma_electron_pressure_at_point_152______________________________ (pres_plasma_electron_profile152)_ 3.80345667668373266e+05 +Total_plasma_electron_pressure_at_point_153______________________________ (pres_plasma_electron_profile153)_ 3.79476172884432075e+05 +Total_plasma_electron_pressure_at_point_154______________________________ (pres_plasma_electron_profile154)_ 3.78602193157702277e+05 +Total_plasma_electron_pressure_at_point_155______________________________ (pres_plasma_electron_profile155)_ 3.77723751928292040e+05 +Total_plasma_electron_pressure_at_point_156______________________________ (pres_plasma_electron_profile156)_ 3.76840872775489406e+05 +Total_plasma_electron_pressure_at_point_157______________________________ (pres_plasma_electron_profile157)_ 3.75953579417502449e+05 +Total_plasma_electron_pressure_at_point_158______________________________ (pres_plasma_electron_profile158)_ 3.75061895711195713e+05 +Total_plasma_electron_pressure_at_point_159______________________________ (pres_plasma_electron_profile159)_ 3.74165845651826181e+05 +Total_plasma_electron_pressure_at_point_160______________________________ (pres_plasma_electron_profile160)_ 3.73265453372778196e+05 +Total_plasma_electron_pressure_at_point_161______________________________ (pres_plasma_electron_profile161)_ 3.72360743145294953e+05 +Total_plasma_electron_pressure_at_point_162______________________________ (pres_plasma_electron_profile162)_ 3.71451739378210623e+05 +Total_plasma_electron_pressure_at_point_163______________________________ (pres_plasma_electron_profile163)_ 3.70538466617679689e+05 +Total_plasma_electron_pressure_at_point_164______________________________ (pres_plasma_electron_profile164)_ 3.69620949546905118e+05 +Total_plasma_electron_pressure_at_point_165______________________________ (pres_plasma_electron_profile165)_ 3.68699212985865073e+05 +Total_plasma_electron_pressure_at_point_166______________________________ (pres_plasma_electron_profile166)_ 3.67773281891038117e+05 +Total_plasma_electron_pressure_at_point_167______________________________ (pres_plasma_electron_profile167)_ 3.66843181355126668e+05 +Total_plasma_electron_pressure_at_point_168______________________________ (pres_plasma_electron_profile168)_ 3.65908936606779811e+05 +Total_plasma_electron_pressure_at_point_169______________________________ (pres_plasma_electron_profile169)_ 3.64970573010313325e+05 +Total_plasma_electron_pressure_at_point_170______________________________ (pres_plasma_electron_profile170)_ 3.64028116065429640e+05 +Total_plasma_electron_pressure_at_point_171______________________________ (pres_plasma_electron_profile171)_ 3.63081591406935360e+05 +Total_plasma_electron_pressure_at_point_172______________________________ (pres_plasma_electron_profile172)_ 3.62131024804457847e+05 +Total_plasma_electron_pressure_at_point_173______________________________ (pres_plasma_electron_profile173)_ 3.61176442162160296e+05 +Total_plasma_electron_pressure_at_point_174______________________________ (pres_plasma_electron_profile174)_ 3.60217869518454769e+05 +Total_plasma_electron_pressure_at_point_175______________________________ (pres_plasma_electron_profile175)_ 3.59255333045715874e+05 +Total_plasma_electron_pressure_at_point_176______________________________ (pres_plasma_electron_profile176)_ 3.58288859049989551e+05 +Total_plasma_electron_pressure_at_point_177______________________________ (pres_plasma_electron_profile177)_ 3.57318473970704246e+05 +Total_plasma_electron_pressure_at_point_178______________________________ (pres_plasma_electron_profile178)_ 3.56344204380377894e+05 +Total_plasma_electron_pressure_at_point_179______________________________ (pres_plasma_electron_profile179)_ 3.55366076984325424e+05 +Total_plasma_electron_pressure_at_point_180______________________________ (pres_plasma_electron_profile180)_ 3.54384118620363530e+05 +Total_plasma_electron_pressure_at_point_181______________________________ (pres_plasma_electron_profile181)_ 3.53398356258515094e+05 +Total_plasma_electron_pressure_at_point_182______________________________ (pres_plasma_electron_profile182)_ 3.52408817000711511e+05 +Total_plasma_electron_pressure_at_point_183______________________________ (pres_plasma_electron_profile183)_ 3.51415528080494609e+05 +Total_plasma_electron_pressure_at_point_184______________________________ (pres_plasma_electron_profile184)_ 3.50418516862716584e+05 +Total_plasma_electron_pressure_at_point_185______________________________ (pres_plasma_electron_profile185)_ 3.49417810843238665e+05 +Total_plasma_electron_pressure_at_point_186______________________________ (pres_plasma_electron_profile186)_ 3.48413437648629071e+05 +Total_plasma_electron_pressure_at_point_187______________________________ (pres_plasma_electron_profile187)_ 3.47405425035859051e+05 +Total_plasma_electron_pressure_at_point_188______________________________ (pres_plasma_electron_profile188)_ 3.46393800891998166e+05 +Total_plasma_electron_pressure_at_point_189______________________________ (pres_plasma_electron_profile189)_ 3.45378593233908410e+05 +Total_plasma_electron_pressure_at_point_190______________________________ (pres_plasma_electron_profile190)_ 3.44359830207936524e+05 +Total_plasma_electron_pressure_at_point_191______________________________ (pres_plasma_electron_profile191)_ 3.43337540089605900e+05 +Total_plasma_electron_pressure_at_point_192______________________________ (pres_plasma_electron_profile192)_ 3.42311751283306687e+05 +Total_plasma_electron_pressure_at_point_193______________________________ (pres_plasma_electron_profile193)_ 3.41282492321985308e+05 +Total_plasma_electron_pressure_at_point_194______________________________ (pres_plasma_electron_profile194)_ 3.40249791866832471e+05 +Total_plasma_electron_pressure_at_point_195______________________________ (pres_plasma_electron_profile195)_ 3.39213678706970066e+05 +Total_plasma_electron_pressure_at_point_196______________________________ (pres_plasma_electron_profile196)_ 3.38174181759137427e+05 +Total_plasma_electron_pressure_at_point_197______________________________ (pres_plasma_electron_profile197)_ 3.37131330067375733e+05 +Total_plasma_electron_pressure_at_point_198______________________________ (pres_plasma_electron_profile198)_ 3.36085152802712284e+05 +Total_plasma_electron_pressure_at_point_199______________________________ (pres_plasma_electron_profile199)_ 3.35035679262842983e+05 +Total_plasma_electron_pressure_at_point_200______________________________ (pres_plasma_electron_profile200)_ 3.33982938871814695e+05 +Total_plasma_electron_pressure_at_point_201______________________________ (pres_plasma_electron_profile201)_ 3.32926961179705278e+05 +Total_plasma_electron_pressure_at_point_202______________________________ (pres_plasma_electron_profile202)_ 3.31867775862304086e+05 +Total_plasma_electron_pressure_at_point_203______________________________ (pres_plasma_electron_profile203)_ 3.30805412720790599e+05 +Total_plasma_electron_pressure_at_point_204______________________________ (pres_plasma_electron_profile204)_ 3.29739901681412943e+05 +Total_plasma_electron_pressure_at_point_205______________________________ (pres_plasma_electron_profile205)_ 3.28671272795164317e+05 +Total_plasma_electron_pressure_at_point_206______________________________ (pres_plasma_electron_profile206)_ 3.27599556237460172e+05 +Total_plasma_electron_pressure_at_point_207______________________________ (pres_plasma_electron_profile207)_ 3.26524782307813177e+05 +Total_plasma_electron_pressure_at_point_208______________________________ (pres_plasma_electron_profile208)_ 3.25446981429508014e+05 +Total_plasma_electron_pressure_at_point_209______________________________ (pres_plasma_electron_profile209)_ 3.24366184149275534e+05 +Total_plasma_electron_pressure_at_point_210______________________________ (pres_plasma_electron_profile210)_ 3.23282421136965917e+05 +Total_plasma_electron_pressure_at_point_211______________________________ (pres_plasma_electron_profile211)_ 3.22195723185220850e+05 +Total_plasma_electron_pressure_at_point_212______________________________ (pres_plasma_electron_profile212)_ 3.21106121209146106e+05 +Total_plasma_electron_pressure_at_point_213______________________________ (pres_plasma_electron_profile213)_ 3.20013646245981916e+05 +Total_plasma_electron_pressure_at_point_214______________________________ (pres_plasma_electron_profile214)_ 3.18918329454773979e+05 +Total_plasma_electron_pressure_at_point_215______________________________ (pres_plasma_electron_profile215)_ 3.17820202116043947e+05 +Total_plasma_electron_pressure_at_point_216______________________________ (pres_plasma_electron_profile216)_ 3.16719295631457877e+05 +Total_plasma_electron_pressure_at_point_217______________________________ (pres_plasma_electron_profile217)_ 3.15615641523495957e+05 +Total_plasma_electron_pressure_at_point_218______________________________ (pres_plasma_electron_profile218)_ 3.14509271435121191e+05 +Total_plasma_electron_pressure_at_point_219______________________________ (pres_plasma_electron_profile219)_ 3.13400217129446741e+05 +Total_plasma_electron_pressure_at_point_220______________________________ (pres_plasma_electron_profile220)_ 3.12288510489404434e+05 +Total_plasma_electron_pressure_at_point_221______________________________ (pres_plasma_electron_profile221)_ 3.11174183517411642e+05 +Total_plasma_electron_pressure_at_point_222______________________________ (pres_plasma_electron_profile222)_ 3.10057268335038563e+05 +Total_plasma_electron_pressure_at_point_223______________________________ (pres_plasma_electron_profile223)_ 3.08937797182675102e+05 +Total_plasma_electron_pressure_at_point_224______________________________ (pres_plasma_electron_profile224)_ 3.07815802419197338e+05 +Total_plasma_electron_pressure_at_point_225______________________________ (pres_plasma_electron_profile225)_ 3.06691316521633998e+05 +Total_plasma_electron_pressure_at_point_226______________________________ (pres_plasma_electron_profile226)_ 3.05564372084832983e+05 +Total_plasma_electron_pressure_at_point_227______________________________ (pres_plasma_electron_profile227)_ 3.04435001821127255e+05 +Total_plasma_electron_pressure_at_point_228______________________________ (pres_plasma_electron_profile228)_ 3.03303238560001424e+05 +Total_plasma_electron_pressure_at_point_229______________________________ (pres_plasma_electron_profile229)_ 3.02169115247757931e+05 +Total_plasma_electron_pressure_at_point_230______________________________ (pres_plasma_electron_profile230)_ 3.01032664947183221e+05 +Total_plasma_electron_pressure_at_point_231______________________________ (pres_plasma_electron_profile231)_ 2.99893920837214391e+05 +Total_plasma_electron_pressure_at_point_232______________________________ (pres_plasma_electron_profile232)_ 2.98752916212606127e+05 +Total_plasma_electron_pressure_at_point_233______________________________ (pres_plasma_electron_profile233)_ 2.97609684483596822e+05 +Total_plasma_electron_pressure_at_point_234______________________________ (pres_plasma_electron_profile234)_ 2.96464259175577085e+05 +Total_plasma_electron_pressure_at_point_235______________________________ (pres_plasma_electron_profile235)_ 2.95316673928756325e+05 +Total_plasma_electron_pressure_at_point_236______________________________ (pres_plasma_electron_profile236)_ 2.94166962497831206e+05 +Total_plasma_electron_pressure_at_point_237______________________________ (pres_plasma_electron_profile237)_ 2.93015158751654148e+05 +Total_plasma_electron_pressure_at_point_238______________________________ (pres_plasma_electron_profile238)_ 2.91861296672903060e+05 +Total_plasma_electron_pressure_at_point_239______________________________ (pres_plasma_electron_profile239)_ 2.90705410357749788e+05 +Total_plasma_electron_pressure_at_point_240______________________________ (pres_plasma_electron_profile240)_ 2.89547534015532292e+05 +Total_plasma_electron_pressure_at_point_241______________________________ (pres_plasma_electron_profile241)_ 2.88387701968424721e+05 +Total_plasma_electron_pressure_at_point_242______________________________ (pres_plasma_electron_profile242)_ 2.87225948651109880e+05 +Total_plasma_electron_pressure_at_point_243______________________________ (pres_plasma_electron_profile243)_ 2.86062308610452630e+05 +Total_plasma_electron_pressure_at_point_244______________________________ (pres_plasma_electron_profile244)_ 2.84896816505173629e+05 +Total_plasma_electron_pressure_at_point_245______________________________ (pres_plasma_electron_profile245)_ 2.83729507105524826e+05 +Total_plasma_electron_pressure_at_point_246______________________________ (pres_plasma_electron_profile246)_ 2.82560415292965772e+05 +Total_plasma_electron_pressure_at_point_247______________________________ (pres_plasma_electron_profile247)_ 2.81389576059841085e+05 +Total_plasma_electron_pressure_at_point_248______________________________ (pres_plasma_electron_profile248)_ 2.80217024509059847e+05 +Total_plasma_electron_pressure_at_point_249______________________________ (pres_plasma_electron_profile249)_ 2.79042795853775926e+05 +Total_plasma_electron_pressure_at_point_250______________________________ (pres_plasma_electron_profile250)_ 2.77866925417070161e+05 +Total_plasma_electron_pressure_at_point_251______________________________ (pres_plasma_electron_profile251)_ 2.76689448631633713e+05 +Total_plasma_electron_pressure_at_point_252______________________________ (pres_plasma_electron_profile252)_ 2.75510401039454504e+05 +Total_plasma_electron_pressure_at_point_253______________________________ (pres_plasma_electron_profile253)_ 2.74329818291502947e+05 +Total_plasma_electron_pressure_at_point_254______________________________ (pres_plasma_electron_profile254)_ 2.73147736147422926e+05 +Total_plasma_electron_pressure_at_point_255______________________________ (pres_plasma_electron_profile255)_ 2.71964190475222189e+05 +Total_plasma_electron_pressure_at_point_256______________________________ (pres_plasma_electron_profile256)_ 2.70779217250966467e+05 +Total_plasma_electron_pressure_at_point_257______________________________ (pres_plasma_electron_profile257)_ 2.69592852558474697e+05 +Total_plasma_electron_pressure_at_point_258______________________________ (pres_plasma_electron_profile258)_ 2.68405132589018322e+05 +Total_plasma_electron_pressure_at_point_259______________________________ (pres_plasma_electron_profile259)_ 2.67216093641021347e+05 +Total_plasma_electron_pressure_at_point_260______________________________ (pres_plasma_electron_profile260)_ 2.66025772119764646e+05 +Total_plasma_electron_pressure_at_point_261______________________________ (pres_plasma_electron_profile261)_ 2.64834204537091719e+05 +Total_plasma_electron_pressure_at_point_262______________________________ (pres_plasma_electron_profile262)_ 2.63641427511118993e+05 +Total_plasma_electron_pressure_at_point_263______________________________ (pres_plasma_electron_profile263)_ 2.62447477765947173e+05 +Total_plasma_electron_pressure_at_point_264______________________________ (pres_plasma_electron_profile264)_ 2.61252392131378467e+05 +Total_plasma_electron_pressure_at_point_265______________________________ (pres_plasma_electron_profile265)_ 2.60056207542634394e+05 +Total_plasma_electron_pressure_at_point_266______________________________ (pres_plasma_electron_profile266)_ 2.58858961040079506e+05 +Total_plasma_electron_pressure_at_point_267______________________________ (pres_plasma_electron_profile267)_ 2.57660689768947399e+05 +Total_plasma_electron_pressure_at_point_268______________________________ (pres_plasma_electron_profile268)_ 2.56461430979071825e+05 +Total_plasma_electron_pressure_at_point_269______________________________ (pres_plasma_electron_profile269)_ 2.55261222024619899e+05 +Total_plasma_electron_pressure_at_point_270______________________________ (pres_plasma_electron_profile270)_ 2.54060100363832258e+05 +Total_plasma_electron_pressure_at_point_271______________________________ (pres_plasma_electron_profile271)_ 2.52858103558765026e+05 +Total_plasma_electron_pressure_at_point_272______________________________ (pres_plasma_electron_profile272)_ 2.51655269275038445e+05 +Total_plasma_electron_pressure_at_point_273______________________________ (pres_plasma_electron_profile273)_ 2.50451635281589144e+05 +Total_plasma_electron_pressure_at_point_274______________________________ (pres_plasma_electron_profile274)_ 2.49247239450427907e+05 +Total_plasma_electron_pressure_at_point_275______________________________ (pres_plasma_electron_profile275)_ 2.48042119756402040e+05 +Total_plasma_electron_pressure_at_point_276______________________________ (pres_plasma_electron_profile276)_ 2.46836314276964520e+05 +Total_plasma_electron_pressure_at_point_277______________________________ (pres_plasma_electron_profile277)_ 2.45629861191947159e+05 +Total_plasma_electron_pressure_at_point_278______________________________ (pres_plasma_electron_profile278)_ 2.44422798783341277e+05 +Total_plasma_electron_pressure_at_point_279______________________________ (pres_plasma_electron_profile279)_ 2.43215165435082832e+05 +Total_plasma_electron_pressure_at_point_280______________________________ (pres_plasma_electron_profile280)_ 2.42006999632845866e+05 +Total_plasma_electron_pressure_at_point_281______________________________ (pres_plasma_electron_profile281)_ 2.40798339963840408e+05 +Total_plasma_electron_pressure_at_point_282______________________________ (pres_plasma_electron_profile282)_ 2.39589225116619462e+05 +Total_plasma_electron_pressure_at_point_283______________________________ (pres_plasma_electron_profile283)_ 2.38379693880891544e+05 +Total_plasma_electron_pressure_at_point_284______________________________ (pres_plasma_electron_profile284)_ 2.37169785147340997e+05 +Total_plasma_electron_pressure_at_point_285______________________________ (pres_plasma_electron_profile285)_ 2.35959537907457445e+05 +Total_plasma_electron_pressure_at_point_286______________________________ (pres_plasma_electron_profile286)_ 2.34748991253370710e+05 +Total_plasma_electron_pressure_at_point_287______________________________ (pres_plasma_electron_profile287)_ 2.33538184377696918e+05 +Total_plasma_electron_pressure_at_point_288______________________________ (pres_plasma_electron_profile288)_ 2.32327156573390443e+05 +Total_plasma_electron_pressure_at_point_289______________________________ (pres_plasma_electron_profile289)_ 2.31115947233607731e+05 +Total_plasma_electron_pressure_at_point_290______________________________ (pres_plasma_electron_profile290)_ 2.29904595851577906e+05 +Total_plasma_electron_pressure_at_point_291______________________________ (pres_plasma_electron_profile291)_ 2.28693142020485218e+05 +Total_plasma_electron_pressure_at_point_292______________________________ (pres_plasma_electron_profile292)_ 2.27481625433359324e+05 +Total_plasma_electron_pressure_at_point_293______________________________ (pres_plasma_electron_profile293)_ 2.26270085882978688e+05 +Total_plasma_electron_pressure_at_point_294______________________________ (pres_plasma_electron_profile294)_ 2.25058563261782256e+05 +Total_plasma_electron_pressure_at_point_295______________________________ (pres_plasma_electron_profile295)_ 2.23847097561794071e+05 +Total_plasma_electron_pressure_at_point_296______________________________ (pres_plasma_electron_profile296)_ 2.22635728874558961e+05 +Total_plasma_electron_pressure_at_point_297______________________________ (pres_plasma_electron_profile297)_ 2.21424497391090525e+05 +Total_plasma_electron_pressure_at_point_298______________________________ (pres_plasma_electron_profile298)_ 2.20213443401830911e+05 +Total_plasma_electron_pressure_at_point_299______________________________ (pres_plasma_electron_profile299)_ 2.19002607296625298e+05 +Total_plasma_electron_pressure_at_point_300______________________________ (pres_plasma_electron_profile300)_ 2.17792029564707802e+05 +Total_plasma_electron_pressure_at_point_301______________________________ (pres_plasma_electron_profile301)_ 2.16581750794703461e+05 +Total_plasma_electron_pressure_at_point_302______________________________ (pres_plasma_electron_profile302)_ 2.15371811674642988e+05 +Total_plasma_electron_pressure_at_point_303______________________________ (pres_plasma_electron_profile303)_ 2.14162252991993708e+05 +Total_plasma_electron_pressure_at_point_304______________________________ (pres_plasma_electron_profile304)_ 2.12953115633705806e+05 +Total_plasma_electron_pressure_at_point_305______________________________ (pres_plasma_electron_profile305)_ 2.11744440586274985e+05 +Total_plasma_electron_pressure_at_point_306______________________________ (pres_plasma_electron_profile306)_ 2.10536268935821281e+05 +Total_plasma_electron_pressure_at_point_307______________________________ (pres_plasma_electron_profile307)_ 2.09328641868186474e+05 +Total_plasma_electron_pressure_at_point_308______________________________ (pres_plasma_electron_profile308)_ 2.08121600669048144e+05 +Total_plasma_electron_pressure_at_point_309______________________________ (pres_plasma_electron_profile309)_ 2.06915186724054103e+05 +Total_plasma_electron_pressure_at_point_310______________________________ (pres_plasma_electron_profile310)_ 2.05709441518974811e+05 +Total_plasma_electron_pressure_at_point_311______________________________ (pres_plasma_electron_profile311)_ 2.04504406639877387e+05 +Total_plasma_electron_pressure_at_point_312______________________________ (pres_plasma_electron_profile312)_ 2.03300123773318686e+05 +Total_plasma_electron_pressure_at_point_313______________________________ (pres_plasma_electron_profile313)_ 2.02096634706562618e+05 +Total_plasma_electron_pressure_at_point_314______________________________ (pres_plasma_electron_profile314)_ 2.00893981327817251e+05 +Total_plasma_electron_pressure_at_point_315______________________________ (pres_plasma_electron_profile315)_ 1.99692205626497860e+05 +Total_plasma_electron_pressure_at_point_316______________________________ (pres_plasma_electron_profile316)_ 1.98491349693512078e+05 +Total_plasma_electron_pressure_at_point_317______________________________ (pres_plasma_electron_profile317)_ 1.97291455721571721e+05 +Total_plasma_electron_pressure_at_point_318______________________________ (pres_plasma_electron_profile318)_ 1.96092566005529632e+05 +Total_plasma_electron_pressure_at_point_319______________________________ (pres_plasma_electron_profile319)_ 1.94894722942744731e+05 +Total_plasma_electron_pressure_at_point_320______________________________ (pres_plasma_electron_profile320)_ 1.93697969033473812e+05 +Total_plasma_electron_pressure_at_point_321______________________________ (pres_plasma_electron_profile321)_ 1.92502346881293633e+05 +Total_plasma_electron_pressure_at_point_322______________________________ (pres_plasma_electron_profile322)_ 1.91307899193552817e+05 +Total_plasma_electron_pressure_at_point_323______________________________ (pres_plasma_electron_profile323)_ 1.90114668781855085e+05 +Total_plasma_electron_pressure_at_point_324______________________________ (pres_plasma_electron_profile324)_ 1.88922698562575330e+05 +Total_plasma_electron_pressure_at_point_325______________________________ (pres_plasma_electron_profile325)_ 1.87732031557409209e+05 +Total_plasma_electron_pressure_at_point_326______________________________ (pres_plasma_electron_profile326)_ 1.86542710893958196e+05 +Total_plasma_electron_pressure_at_point_327______________________________ (pres_plasma_electron_profile327)_ 1.85354779806351202e+05 +Total_plasma_electron_pressure_at_point_328______________________________ (pres_plasma_electron_profile328)_ 1.84168281635903462e+05 +Total_plasma_electron_pressure_at_point_329______________________________ (pres_plasma_electron_profile329)_ 1.82983259831815813e+05 +Total_plasma_electron_pressure_at_point_330______________________________ (pres_plasma_electron_profile330)_ 1.81799757951913431e+05 +Total_plasma_electron_pressure_at_point_331______________________________ (pres_plasma_electron_profile331)_ 1.80617819663428963e+05 +Total_plasma_electron_pressure_at_point_332______________________________ (pres_plasma_electron_profile332)_ 1.79437488743827533e+05 +Total_plasma_electron_pressure_at_point_333______________________________ (pres_plasma_electron_profile333)_ 1.78258809081679763e+05 +Total_plasma_electron_pressure_at_point_334______________________________ (pres_plasma_electron_profile334)_ 1.77081824677580589e+05 +Total_plasma_electron_pressure_at_point_335______________________________ (pres_plasma_electron_profile335)_ 1.75906579645119200e+05 +Total_plasma_electron_pressure_at_point_336______________________________ (pres_plasma_electron_profile336)_ 1.74733118211899331e+05 +Total_plasma_electron_pressure_at_point_337______________________________ (pres_plasma_electron_profile337)_ 1.73561484720613604e+05 +Total_plasma_electron_pressure_at_point_338______________________________ (pres_plasma_electron_profile338)_ 1.72391723630173568e+05 +Total_plasma_electron_pressure_at_point_339______________________________ (pres_plasma_electron_profile339)_ 1.71223879516897548e+05 +Total_plasma_electron_pressure_at_point_340______________________________ (pres_plasma_electron_profile340)_ 1.70057997075758671e+05 +Total_plasma_electron_pressure_at_point_341______________________________ (pres_plasma_electron_profile341)_ 1.68894121121695760e+05 +Total_plasma_electron_pressure_at_point_342______________________________ (pres_plasma_electron_profile342)_ 1.67732296590989456e+05 +Total_plasma_electron_pressure_at_point_343______________________________ (pres_plasma_electron_profile343)_ 1.66572568542706169e+05 +Total_plasma_electron_pressure_at_point_344______________________________ (pres_plasma_electron_profile344)_ 1.65414982160213025e+05 +Total_plasma_electron_pressure_at_point_345______________________________ (pres_plasma_electron_profile345)_ 1.64259582752765418e+05 +Total_plasma_electron_pressure_at_point_346______________________________ (pres_plasma_electron_profile346)_ 1.63106415757173265e+05 +Total_plasma_electron_pressure_at_point_347______________________________ (pres_plasma_electron_profile347)_ 1.61955526739544759e+05 +Total_plasma_electron_pressure_at_point_348______________________________ (pres_plasma_electron_profile348)_ 1.60806961397115199e+05 +Total_plasma_electron_pressure_at_point_349______________________________ (pres_plasma_electron_profile349)_ 1.59660765560161730e+05 +Total_plasma_electron_pressure_at_point_350______________________________ (pres_plasma_electron_profile350)_ 1.58516985194008797e+05 +Total_plasma_electron_pressure_at_point_351______________________________ (pres_plasma_electron_profile351)_ 1.57375666401127382e+05 +Total_plasma_electron_pressure_at_point_352______________________________ (pres_plasma_electron_profile352)_ 1.56236855423333647e+05 +Total_plasma_electron_pressure_at_point_353______________________________ (pres_plasma_electron_profile353)_ 1.55100598644088954e+05 +Total_plasma_electron_pressure_at_point_354______________________________ (pres_plasma_electron_profile354)_ 1.53966942590907973e+05 +Total_plasma_electron_pressure_at_point_355______________________________ (pres_plasma_electron_profile355)_ 1.52835933937877853e+05 +Total_plasma_electron_pressure_at_point_356______________________________ (pres_plasma_electron_profile356)_ 1.51707619508294330e+05 +Total_plasma_electron_pressure_at_point_357______________________________ (pres_plasma_electron_profile357)_ 1.50582046277419751e+05 +Total_plasma_electron_pressure_at_point_358______________________________ (pres_plasma_electron_profile358)_ 1.49459261375368165e+05 +Total_plasma_electron_pressure_at_point_359______________________________ (pres_plasma_electron_profile359)_ 1.48339312090123363e+05 +Total_plasma_electron_pressure_at_point_360______________________________ (pres_plasma_electron_profile360)_ 1.47222245870696643e+05 +Total_plasma_electron_pressure_at_point_361______________________________ (pres_plasma_electron_profile361)_ 1.46108110330428433e+05 +Total_plasma_electron_pressure_at_point_362______________________________ (pres_plasma_electron_profile362)_ 1.44996953250443708e+05 +Total_plasma_electron_pressure_at_point_363______________________________ (pres_plasma_electron_profile363)_ 1.43888822583264671e+05 +Total_plasma_electron_pressure_at_point_364______________________________ (pres_plasma_electron_profile364)_ 1.42783766456591460e+05 +Total_plasma_electron_pressure_at_point_365______________________________ (pres_plasma_electron_profile365)_ 1.41681833177255787e+05 +Total_plasma_electron_pressure_at_point_366______________________________ (pres_plasma_electron_profile366)_ 1.40583071235357755e+05 +Total_plasma_electron_pressure_at_point_367______________________________ (pres_plasma_electron_profile367)_ 1.39487529308593483e+05 +Total_plasma_electron_pressure_at_point_368______________________________ (pres_plasma_electron_profile368)_ 1.38395256266783486e+05 +Total_plasma_electron_pressure_at_point_369______________________________ (pres_plasma_electron_profile369)_ 1.37306301176610228e+05 +Total_plasma_electron_pressure_at_point_370______________________________ (pres_plasma_electron_profile370)_ 1.36220713306576799e+05 +Total_plasma_electron_pressure_at_point_371______________________________ (pres_plasma_electron_profile371)_ 1.35138542132195842e+05 +Total_plasma_electron_pressure_at_point_372______________________________ (pres_plasma_electron_profile372)_ 1.34059837341421749e+05 +Total_plasma_electron_pressure_at_point_373______________________________ (pres_plasma_electron_profile373)_ 1.32984648840336624e+05 +Total_plasma_electron_pressure_at_point_374______________________________ (pres_plasma_electron_profile374)_ 1.31913026759104861e+05 +Total_plasma_electron_pressure_at_point_375______________________________ (pres_plasma_electron_profile375)_ 1.30845021458207266e+05 +Total_plasma_electron_pressure_at_point_376______________________________ (pres_plasma_electron_profile376)_ 1.29780683534972210e+05 +Total_plasma_electron_pressure_at_point_377______________________________ (pres_plasma_electron_profile377)_ 1.28720063830416126e+05 +Total_plasma_electron_pressure_at_point_378______________________________ (pres_plasma_electron_profile378)_ 1.27663213436412378e+05 +Total_plasma_electron_pressure_at_point_379______________________________ (pres_plasma_electron_profile379)_ 1.26610183703203380e+05 +Total_plasma_electron_pressure_at_point_380______________________________ (pres_plasma_electron_profile380)_ 1.25561026247275600e+05 +Total_plasma_electron_pressure_at_point_381______________________________ (pres_plasma_electron_profile381)_ 1.24515792959616985e+05 +Total_plasma_electron_pressure_at_point_382______________________________ (pres_plasma_electron_profile382)_ 1.23474536014376659e+05 +Total_plasma_electron_pressure_at_point_383______________________________ (pres_plasma_electron_profile383)_ 1.22437307877949846e+05 +Total_plasma_electron_pressure_at_point_384______________________________ (pres_plasma_electron_profile384)_ 1.21404161318511105e+05 +Total_plasma_electron_pressure_at_point_385______________________________ (pres_plasma_electron_profile385)_ 1.20375149416021231e+05 +Total_plasma_electron_pressure_at_point_386______________________________ (pres_plasma_electron_profile386)_ 1.19350325572733942e+05 +Total_plasma_electron_pressure_at_point_387______________________________ (pres_plasma_electron_profile387)_ 1.18329743524232021e+05 +Total_plasma_electron_pressure_at_point_388______________________________ (pres_plasma_electron_profile388)_ 1.17313457351022284e+05 +Total_plasma_electron_pressure_at_point_389______________________________ (pres_plasma_electron_profile389)_ 1.16301521490723055e+05 +Total_plasma_electron_pressure_at_point_390______________________________ (pres_plasma_electron_profile390)_ 1.15293990750877725e+05 +Total_plasma_electron_pressure_at_point_391______________________________ (pres_plasma_electron_profile391)_ 1.14290920322433769e+05 +Total_plasma_electron_pressure_at_point_392______________________________ (pres_plasma_electron_profile392)_ 1.13292365793924881e+05 +Total_plasma_electron_pressure_at_point_393______________________________ (pres_plasma_electron_profile393)_ 1.12298383166401953e+05 +Total_plasma_electron_pressure_at_point_394______________________________ (pres_plasma_electron_profile394)_ 1.11309028869156115e+05 +Total_plasma_electron_pressure_at_point_395______________________________ (pres_plasma_electron_profile395)_ 1.10324359776286161e+05 +Total_plasma_electron_pressure_at_point_396______________________________ (pres_plasma_electron_profile396)_ 1.09344433224161621e+05 +Total_plasma_electron_pressure_at_point_397______________________________ (pres_plasma_electron_profile397)_ 1.08369307029840464e+05 +Total_plasma_electron_pressure_at_point_398______________________________ (pres_plasma_electron_profile398)_ 1.07399039510501912e+05 +Total_plasma_electron_pressure_at_point_399______________________________ (pres_plasma_electron_profile399)_ 1.06433689503962349e+05 +Total_plasma_electron_pressure_at_point_400______________________________ (pres_plasma_electron_profile400)_ 1.05473316390345193e+05 +Total_plasma_electron_pressure_at_point_401______________________________ (pres_plasma_electron_profile401)_ 1.04517980114983773e+05 +Total_plasma_electron_pressure_at_point_402______________________________ (pres_plasma_electron_profile402)_ 1.03567741212639943e+05 +Total_plasma_electron_pressure_at_point_403______________________________ (pres_plasma_electron_profile403)_ 1.02622660833131391e+05 +Total_plasma_electron_pressure_at_point_404______________________________ (pres_plasma_electron_profile404)_ 1.01682800768464542e+05 +Total_plasma_electron_pressure_at_point_405______________________________ (pres_plasma_electron_profile405)_ 1.00748223481582158e+05 +Total_plasma_electron_pressure_at_point_406______________________________ (pres_plasma_electron_profile406)_ 9.98189921368407522e+04 +Total_plasma_electron_pressure_at_point_407______________________________ (pres_plasma_electron_profile407)_ 9.88951706323458493e+04 +Total_plasma_electron_pressure_at_point_408______________________________ (pres_plasma_electron_profile408)_ 9.79768236342818709e+04 +Total_plasma_electron_pressure_at_point_409______________________________ (pres_plasma_electron_profile409)_ 9.70640166133893072e+04 +Total_plasma_electron_pressure_at_point_410______________________________ (pres_plasma_electron_profile410)_ 9.61568158837513911e+04 +Total_plasma_electron_pressure_at_point_411______________________________ (pres_plasma_electron_profile411)_ 9.52552886440725706e+04 +Total_plasma_electron_pressure_at_point_412______________________________ (pres_plasma_electron_profile412)_ 9.43595030216436862e+04 +Total_plasma_electron_pressure_at_point_413______________________________ (pres_plasma_electron_profile413)_ 9.34695281192124530e+04 +Total_plasma_electron_pressure_at_point_414______________________________ (pres_plasma_electron_profile414)_ 9.25854340649942169e+04 +Total_plasma_electron_pressure_at_point_415______________________________ (pres_plasma_electron_profile415)_ 9.17072920660866948e+04 +Total_plasma_electron_pressure_at_point_416______________________________ (pres_plasma_electron_profile416)_ 9.08351744655745861e+04 +Total_plasma_electron_pressure_at_point_417______________________________ (pres_plasma_electron_profile417)_ 8.99691548036433087e+04 +Total_plasma_electron_pressure_at_point_418______________________________ (pres_plasma_electron_profile418)_ 8.91093078830523737e+04 +Total_plasma_electron_pressure_at_point_419______________________________ (pres_plasma_electron_profile419)_ 8.82557098393583292e+04 +Total_plasma_electron_pressure_at_point_420______________________________ (pres_plasma_electron_profile420)_ 8.74084382163186092e+04 +Total_plasma_electron_pressure_at_point_421______________________________ (pres_plasma_electron_profile421)_ 8.65675720469571388e+04 +Total_plasma_electron_pressure_at_point_422______________________________ (pres_plasma_electron_profile422)_ 8.57331919408264657e+04 +Total_plasma_electron_pressure_at_point_423______________________________ (pres_plasma_electron_profile423)_ 8.49053801780644717e+04 +Total_plasma_electron_pressure_at_point_424______________________________ (pres_plasma_electron_profile424)_ 8.40842208109132625e+04 +Total_plasma_electron_pressure_at_point_425______________________________ (pres_plasma_electron_profile425)_ 8.32697997734513192e+04 +Total_plasma_electron_pressure_at_point_426______________________________ (pres_plasma_electron_profile426)_ 8.24622050003803888e+04 +Total_plasma_electron_pressure_at_point_427______________________________ (pres_plasma_electron_profile427)_ 8.16615265558176616e+04 +Total_plasma_electron_pressure_at_point_428______________________________ (pres_plasma_electron_profile428)_ 8.08678567731664953e+04 +Total_plasma_electron_pressure_at_point_429______________________________ (pres_plasma_electron_profile429)_ 8.00812904072798265e+04 +Total_plasma_electron_pressure_at_point_430______________________________ (pres_plasma_electron_profile430)_ 7.93019248002991808e+04 +Total_plasma_electron_pressure_at_point_431______________________________ (pres_plasma_electron_profile431)_ 7.85298600627402921e+04 +Total_plasma_electron_pressure_at_point_432______________________________ (pres_plasma_electron_profile432)_ 7.77651992716255190e+04 +Total_plasma_electron_pressure_at_point_433______________________________ (pres_plasma_electron_profile433)_ 7.70080486877226795e+04 +Total_plasma_electron_pressure_at_point_434______________________________ (pres_plasma_electron_profile434)_ 7.62585179942638497e+04 +Total_plasma_electron_pressure_at_point_435______________________________ (pres_plasma_electron_profile435)_ 7.55167205598808941e+04 +Total_plasma_electron_pressure_at_point_436______________________________ (pres_plasma_electron_profile436)_ 7.47827737289332144e+04 +Total_plasma_electron_pressure_at_point_437______________________________ (pres_plasma_electron_profile437)_ 7.40567991429186077e+04 +Total_plasma_electron_pressure_at_point_438______________________________ (pres_plasma_electron_profile438)_ 7.33389230972841615e+04 +Total_plasma_electron_pressure_at_point_439______________________________ (pres_plasma_electron_profile439)_ 7.26292769386994769e+04 +Total_plasma_electron_pressure_at_point_440______________________________ (pres_plasma_electron_profile440)_ 7.19279975087651255e+04 +Total_plasma_electron_pressure_at_point_441______________________________ (pres_plasma_electron_profile441)_ 7.12352276412319188e+04 +Total_plasma_electron_pressure_at_point_442______________________________ (pres_plasma_electron_profile442)_ 7.05511167211630673e+04 +Total_plasma_electron_pressure_at_point_443______________________________ (pres_plasma_electron_profile443)_ 6.98758213161393360e+04 +Total_plasma_electron_pressure_at_point_444______________________________ (pres_plasma_electron_profile444)_ 6.92095058916845883e+04 +Total_plasma_electron_pressure_at_point_445______________________________ (pres_plasma_electron_profile445)_ 6.85523436256823188e+04 +Total_plasma_electron_pressure_at_point_446______________________________ (pres_plasma_electron_profile446)_ 6.79045173398295592e+04 +Total_plasma_electron_pressure_at_point_447______________________________ (pres_plasma_electron_profile447)_ 6.72662205703371728e+04 +Total_plasma_electron_pressure_at_point_448______________________________ (pres_plasma_electron_profile448)_ 6.66376588054322056e+04 +Total_plasma_electron_pressure_at_point_449______________________________ (pres_plasma_electron_profile449)_ 6.60190509241464024e+04 +Total_plasma_electron_pressure_at_point_450______________________________ (pres_plasma_electron_profile450)_ 6.54106308799586259e+04 +Total_plasma_electron_pressure_at_point_451______________________________ (pres_plasma_electron_profile451)_ 6.48126496848983807e+04 +Total_plasma_electron_pressure_at_point_452______________________________ (pres_plasma_electron_profile452)_ 6.42253777658892941e+04 +Total_plasma_electron_pressure_at_point_453______________________________ (pres_plasma_electron_profile453)_ 6.36491077871307862e+04 +Total_plasma_electron_pressure_at_point_454______________________________ (pres_plasma_electron_profile454)_ 6.30841580627699150e+04 +Total_plasma_electron_pressure_at_point_455______________________________ (pres_plasma_electron_profile455)_ 6.25308767269518430e+04 +Total_plasma_electron_pressure_at_point_456______________________________ (pres_plasma_electron_profile456)_ 6.19896468897516825e+04 +Total_plasma_electron_pressure_at_point_457______________________________ (pres_plasma_electron_profile457)_ 6.14608930974202012e+04 +Total_plasma_electron_pressure_at_point_458______________________________ (pres_plasma_electron_profile458)_ 6.09450895502674102e+04 +Total_plasma_electron_pressure_at_point_459______________________________ (pres_plasma_electron_profile459)_ 6.04427707394138997e+04 +Total_plasma_electron_pressure_at_point_460______________________________ (pres_plasma_electron_profile460)_ 5.99545454942839133e+04 +Total_plasma_electron_pressure_at_point_461______________________________ (pres_plasma_electron_profile461)_ 5.94811159779901354e+04 +Total_plasma_electron_pressure_at_point_462______________________________ (pres_plasma_electron_profile462)_ 5.90233041062645498e+04 +Total_plasma_electron_pressure_at_point_463______________________________ (pres_plasma_electron_profile463)_ 5.85820895655158965e+04 +Total_plasma_electron_pressure_at_point_464______________________________ (pres_plasma_electron_profile464)_ 5.81586668824497028e+04 +Total_plasma_electron_pressure_at_point_465______________________________ (pres_plasma_electron_profile465)_ 5.77545358253532104e+04 +Total_plasma_electron_pressure_at_point_466______________________________ (pres_plasma_electron_profile466)_ 5.73716551484722877e+04 +Total_plasma_electron_pressure_at_point_467______________________________ (pres_plasma_electron_profile467)_ 5.70127312321078643e+04 +Total_plasma_electron_pressure_at_point_468______________________________ (pres_plasma_electron_profile468)_ 5.66818470543106741e+04 +Total_plasma_electron_pressure_at_point_469______________________________ (pres_plasma_electron_profile469)_ 5.63862403509938886e+04 +Total_plasma_electron_pressure_at_point_470______________________________ (pres_plasma_electron_profile470)_ 5.61472662109212979e+04 +Total_plasma_electron_pressure_at_point_471______________________________ (pres_plasma_electron_profile471)_ 5.35642917967119283e+04 +Total_plasma_electron_pressure_at_point_472______________________________ (pres_plasma_electron_profile472)_ 5.10317598462642345e+04 +Total_plasma_electron_pressure_at_point_473______________________________ (pres_plasma_electron_profile473)_ 4.85496703595782237e+04 +Total_plasma_electron_pressure_at_point_474______________________________ (pres_plasma_electron_profile474)_ 4.61180233366539251e+04 +Total_plasma_electron_pressure_at_point_475______________________________ (pres_plasma_electron_profile475)_ 4.37368187774912731e+04 +Total_plasma_electron_pressure_at_point_476______________________________ (pres_plasma_electron_profile476)_ 4.14060566820903186e+04 +Total_plasma_electron_pressure_at_point_477______________________________ (pres_plasma_electron_profile477)_ 3.91257370504510545e+04 +Total_plasma_electron_pressure_at_point_478______________________________ (pres_plasma_electron_profile478)_ 3.68958598825734734e+04 +Total_plasma_electron_pressure_at_point_479______________________________ (pres_plasma_electron_profile479)_ 3.47164251784575608e+04 +Total_plasma_electron_pressure_at_point_480______________________________ (pres_plasma_electron_profile480)_ 3.25874329381033422e+04 +Total_plasma_electron_pressure_at_point_481______________________________ (pres_plasma_electron_profile481)_ 3.05088831615108029e+04 +Total_plasma_electron_pressure_at_point_482______________________________ (pres_plasma_electron_profile482)_ 2.84807758486799539e+04 +Total_plasma_electron_pressure_at_point_483______________________________ (pres_plasma_electron_profile483)_ 2.65031109996107843e+04 +Total_plasma_electron_pressure_at_point_484______________________________ (pres_plasma_electron_profile484)_ 2.45758886143032978e+04 +Total_plasma_electron_pressure_at_point_485______________________________ (pres_plasma_electron_profile485)_ 2.26991086927574870e+04 +Total_plasma_electron_pressure_at_point_486______________________________ (pres_plasma_electron_profile486)_ 2.08727712349733665e+04 +Total_plasma_electron_pressure_at_point_487______________________________ (pres_plasma_electron_profile487)_ 1.90968762409509291e+04 +Total_plasma_electron_pressure_at_point_488______________________________ (pres_plasma_electron_profile488)_ 1.73714237106901746e+04 +Total_plasma_electron_pressure_at_point_489______________________________ (pres_plasma_electron_profile489)_ 1.56964136441911014e+04 +Total_plasma_electron_pressure_at_point_490______________________________ (pres_plasma_electron_profile490)_ 1.40718460414537185e+04 +Total_plasma_electron_pressure_at_point_491______________________________ (pres_plasma_electron_profile491)_ 1.24977209024780132e+04 +Total_plasma_electron_pressure_at_point_492______________________________ (pres_plasma_electron_profile492)_ 1.09740382272639908e+04 +Total_plasma_electron_pressure_at_point_493______________________________ (pres_plasma_electron_profile493)_ 9.50079801581165339e+03 +Total_plasma_electron_pressure_at_point_494______________________________ (pres_plasma_electron_profile494)_ 8.07800026812099895e+03 +Total_plasma_electron_pressure_at_point_495______________________________ (pres_plasma_electron_profile495)_ 6.70564498419202755e+03 +Total_plasma_electron_pressure_at_point_496______________________________ (pres_plasma_electron_profile496)_ 5.38373216402474009e+03 +Total_plasma_electron_pressure_at_point_497______________________________ (pres_plasma_electron_profile497)_ 4.11226180761913383e+03 +Total_plasma_electron_pressure_at_point_498______________________________ (pres_plasma_electron_profile498)_ 2.89123391497521379e+03 +Total_plasma_electron_pressure_at_point_499______________________________ (pres_plasma_electron_profile499)_ 1.72064848609297496e+03 +Total_plasma_electron_pressure_at_point_500______________________________ (pres_plasma_electron_profile500)_ 6.00505520972420300e+02 +Total_plasma_ion_pressure_at_point_0_____________________________________ (pres_plasma_ion_total_profile0)_ 3.97305388533257821e+05 +Total_plasma_ion_pressure_at_point_1_____________________________________ (pres_plasma_ion_total_profile1)_ 3.97302600597043289e+05 +Total_plasma_ion_pressure_at_point_2_____________________________________ (pres_plasma_ion_total_profile2)_ 3.97294236858814140e+05 +Total_plasma_ion_pressure_at_point_3_____________________________________ (pres_plasma_ion_total_profile3)_ 3.97280297529812262e+05 +Total_plasma_ion_pressure_at_point_4_____________________________________ (pres_plasma_ion_total_profile4)_ 3.97260782962105237e+05 +Total_plasma_ion_pressure_at_point_5_____________________________________ (pres_plasma_ion_total_profile5)_ 3.97235693648582732e+05 +Total_plasma_ion_pressure_at_point_6_____________________________________ (pres_plasma_ion_total_profile6)_ 3.97205030222949979e+05 +Total_plasma_ion_pressure_at_point_7_____________________________________ (pres_plasma_ion_total_profile7)_ 3.97168793459722889e+05 +Total_plasma_ion_pressure_at_point_8_____________________________________ (pres_plasma_ion_total_profile8)_ 3.97126984274218092e+05 +Total_plasma_ion_pressure_at_point_9_____________________________________ (pres_plasma_ion_total_profile9)_ 3.97079603722544154e+05 +Total_plasma_ion_pressure_at_point_10____________________________________ (pres_plasma_ion_total_profile10)_ 3.97026653001589817e+05 +Total_plasma_ion_pressure_at_point_11____________________________________ (pres_plasma_ion_total_profile11)_ 3.96968133449011308e+05 +Total_plasma_ion_pressure_at_point_12____________________________________ (pres_plasma_ion_total_profile12)_ 3.96904046543217963e+05 +Total_plasma_ion_pressure_at_point_13____________________________________ (pres_plasma_ion_total_profile13)_ 3.96834393903356511e+05 +Total_plasma_ion_pressure_at_point_14____________________________________ (pres_plasma_ion_total_profile14)_ 3.96759177289293439e+05 +Total_plasma_ion_pressure_at_point_15____________________________________ (pres_plasma_ion_total_profile15)_ 3.96678398601596418e+05 +Total_plasma_ion_pressure_at_point_16____________________________________ (pres_plasma_ion_total_profile16)_ 3.96592059881513997e+05 +Total_plasma_ion_pressure_at_point_17____________________________________ (pres_plasma_ion_total_profile17)_ 3.96500163310953358e+05 +Total_plasma_ion_pressure_at_point_18____________________________________ (pres_plasma_ion_total_profile18)_ 3.96402711212457623e+05 +Total_plasma_ion_pressure_at_point_19____________________________________ (pres_plasma_ion_total_profile19)_ 3.96299706049180066e+05 +Total_plasma_ion_pressure_at_point_20____________________________________ (pres_plasma_ion_total_profile20)_ 3.96191150424858264e+05 +Total_plasma_ion_pressure_at_point_21____________________________________ (pres_plasma_ion_total_profile21)_ 3.96077047083786456e+05 +Total_plasma_ion_pressure_at_point_22____________________________________ (pres_plasma_ion_total_profile22)_ 3.95957398910785443e+05 +Total_plasma_ion_pressure_at_point_23____________________________________ (pres_plasma_ion_total_profile23)_ 3.95832208931171917e+05 +Total_plasma_ion_pressure_at_point_24____________________________________ (pres_plasma_ion_total_profile24)_ 3.95701480310726620e+05 +Total_plasma_ion_pressure_at_point_25____________________________________ (pres_plasma_ion_total_profile25)_ 3.95565216355659533e+05 +Total_plasma_ion_pressure_at_point_26____________________________________ (pres_plasma_ion_total_profile26)_ 3.95423420512574725e+05 +Total_plasma_ion_pressure_at_point_27____________________________________ (pres_plasma_ion_total_profile27)_ 3.95276096368433791e+05 +Total_plasma_ion_pressure_at_point_28____________________________________ (pres_plasma_ion_total_profile28)_ 3.95123247650516860e+05 +Total_plasma_ion_pressure_at_point_29____________________________________ (pres_plasma_ion_total_profile29)_ 3.94964878226383007e+05 +Total_plasma_ion_pressure_at_point_30____________________________________ (pres_plasma_ion_total_profile30)_ 3.94800992103828292e+05 +Total_plasma_ion_pressure_at_point_31____________________________________ (pres_plasma_ion_total_profile31)_ 3.94631593430843437e+05 +Total_plasma_ion_pressure_at_point_32____________________________________ (pres_plasma_ion_total_profile32)_ 3.94456686495568603e+05 +Total_plasma_ion_pressure_at_point_33____________________________________ (pres_plasma_ion_total_profile33)_ 3.94276275726247870e+05 +Total_plasma_ion_pressure_at_point_34____________________________________ (pres_plasma_ion_total_profile34)_ 3.94090365691181505e+05 +Total_plasma_ion_pressure_at_point_35____________________________________ (pres_plasma_ion_total_profile35)_ 3.93898961098677129e+05 +Total_plasma_ion_pressure_at_point_36____________________________________ (pres_plasma_ion_total_profile36)_ 3.93702066796998726e+05 +Total_plasma_ion_pressure_at_point_37____________________________________ (pres_plasma_ion_total_profile37)_ 3.93499687774315302e+05 +Total_plasma_ion_pressure_at_point_38____________________________________ (pres_plasma_ion_total_profile38)_ 3.93291829158646287e+05 +Total_plasma_ion_pressure_at_point_39____________________________________ (pres_plasma_ion_total_profile39)_ 3.93078496217807697e+05 +Total_plasma_ion_pressure_at_point_40____________________________________ (pres_plasma_ion_total_profile40)_ 3.92859694359354442e+05 +Total_plasma_ion_pressure_at_point_41____________________________________ (pres_plasma_ion_total_profile41)_ 3.92635429130522825e+05 +Total_plasma_ion_pressure_at_point_42____________________________________ (pres_plasma_ion_total_profile42)_ 3.92405706218171050e+05 +Total_plasma_ion_pressure_at_point_43____________________________________ (pres_plasma_ion_total_profile43)_ 3.92170531448717054e+05 +Total_plasma_ion_pressure_at_point_44____________________________________ (pres_plasma_ion_total_profile44)_ 3.91929910788077861e+05 +Total_plasma_ion_pressure_at_point_45____________________________________ (pres_plasma_ion_total_profile45)_ 3.91683850341602985e+05 +Total_plasma_ion_pressure_at_point_46____________________________________ (pres_plasma_ion_total_profile46)_ 3.91432356354010815e+05 +Total_plasma_ion_pressure_at_point_47____________________________________ (pres_plasma_ion_total_profile47)_ 3.91175435209320451e+05 +Total_plasma_ion_pressure_at_point_48____________________________________ (pres_plasma_ion_total_profile48)_ 3.90913093430782901e+05 +Total_plasma_ion_pressure_at_point_49____________________________________ (pres_plasma_ion_total_profile49)_ 3.90645337680811703e+05 +Total_plasma_ion_pressure_at_point_50____________________________________ (pres_plasma_ion_total_profile50)_ 3.90372174760910275e+05 +Total_plasma_ion_pressure_at_point_51____________________________________ (pres_plasma_ion_total_profile51)_ 3.90093611611599161e+05 +Total_plasma_ion_pressure_at_point_52____________________________________ (pres_plasma_ion_total_profile52)_ 3.89809655312341754e+05 +Total_plasma_ion_pressure_at_point_53____________________________________ (pres_plasma_ion_total_profile53)_ 3.89520313081466709e+05 +Total_plasma_ion_pressure_at_point_54____________________________________ (pres_plasma_ion_total_profile54)_ 3.89225592276091629e+05 +Total_plasma_ion_pressure_at_point_55____________________________________ (pres_plasma_ion_total_profile55)_ 3.88925500392043090e+05 +Total_plasma_ion_pressure_at_point_56____________________________________ (pres_plasma_ion_total_profile56)_ 3.88620045063775789e+05 +Total_plasma_ion_pressure_at_point_57____________________________________ (pres_plasma_ion_total_profile57)_ 3.88309234064290533e+05 +Total_plasma_ion_pressure_at_point_58____________________________________ (pres_plasma_ion_total_profile58)_ 3.87993075305050181e+05 +Total_plasma_ion_pressure_at_point_59____________________________________ (pres_plasma_ion_total_profile59)_ 3.87671576835894550e+05 +Total_plasma_ion_pressure_at_point_60____________________________________ (pres_plasma_ion_total_profile60)_ 3.87344746844953275e+05 +Total_plasma_ion_pressure_at_point_61____________________________________ (pres_plasma_ion_total_profile61)_ 3.87012593658557977e+05 +Total_plasma_ion_pressure_at_point_62____________________________________ (pres_plasma_ion_total_profile62)_ 3.86675125741151394e+05 +Total_plasma_ion_pressure_at_point_63____________________________________ (pres_plasma_ion_total_profile63)_ 3.86332351695197343e+05 +Total_plasma_ion_pressure_at_point_64____________________________________ (pres_plasma_ion_total_profile64)_ 3.85984280261086766e+05 +Total_plasma_ion_pressure_at_point_65____________________________________ (pres_plasma_ion_total_profile65)_ 3.85630920317043900e+05 +Total_plasma_ion_pressure_at_point_66____________________________________ (pres_plasma_ion_total_profile66)_ 3.85272280879029655e+05 +Total_plasma_ion_pressure_at_point_67____________________________________ (pres_plasma_ion_total_profile67)_ 3.84908371100645221e+05 +Total_plasma_ion_pressure_at_point_68____________________________________ (pres_plasma_ion_total_profile68)_ 3.84539200273032126e+05 +Total_plasma_ion_pressure_at_point_69____________________________________ (pres_plasma_ion_total_profile69)_ 3.84164777824772347e+05 +Total_plasma_ion_pressure_at_point_70____________________________________ (pres_plasma_ion_total_profile70)_ 3.83785113321786223e+05 +Total_plasma_ion_pressure_at_point_71____________________________________ (pres_plasma_ion_total_profile71)_ 3.83400216467228543e+05 +Total_plasma_ion_pressure_at_point_72____________________________________ (pres_plasma_ion_total_profile72)_ 3.83010097101384425e+05 +Total_plasma_ion_pressure_at_point_73____________________________________ (pres_plasma_ion_total_profile73)_ 3.82614765201561851e+05 +Total_plasma_ion_pressure_at_point_74____________________________________ (pres_plasma_ion_total_profile74)_ 3.82214230881983938e+05 +Total_plasma_ion_pressure_at_point_75____________________________________ (pres_plasma_ion_total_profile75)_ 3.81808504393679497e+05 +Total_plasma_ion_pressure_at_point_76____________________________________ (pres_plasma_ion_total_profile76)_ 3.81397596124372503e+05 +Total_plasma_ion_pressure_at_point_77____________________________________ (pres_plasma_ion_total_profile77)_ 3.80981516598367831e+05 +Total_plasma_ion_pressure_at_point_78____________________________________ (pres_plasma_ion_total_profile78)_ 3.80560276476439205e+05 +Total_plasma_ion_pressure_at_point_79____________________________________ (pres_plasma_ion_total_profile79)_ 3.80133886555712146e+05 +Total_plasma_ion_pressure_at_point_80____________________________________ (pres_plasma_ion_total_profile80)_ 3.79702357769547321e+05 +Total_plasma_ion_pressure_at_point_81____________________________________ (pres_plasma_ion_total_profile81)_ 3.79265701187421975e+05 +Total_plasma_ion_pressure_at_point_82____________________________________ (pres_plasma_ion_total_profile82)_ 3.78823928014809615e+05 +Total_plasma_ion_pressure_at_point_83____________________________________ (pres_plasma_ion_total_profile83)_ 3.78377049593058706e+05 +Total_plasma_ion_pressure_at_point_84____________________________________ (pres_plasma_ion_total_profile84)_ 3.77925077399268688e+05 +Total_plasma_ion_pressure_at_point_85____________________________________ (pres_plasma_ion_total_profile85)_ 3.77468023046166054e+05 +Total_plasma_ion_pressure_at_point_86____________________________________ (pres_plasma_ion_total_profile86)_ 3.77005898281977803e+05 +Total_plasma_ion_pressure_at_point_87____________________________________ (pres_plasma_ion_total_profile87)_ 3.76538714990303793e+05 +Total_plasma_ion_pressure_at_point_88____________________________________ (pres_plasma_ion_total_profile88)_ 3.76066485189987230e+05 +Total_plasma_ion_pressure_at_point_89____________________________________ (pres_plasma_ion_total_profile89)_ 3.75589221034984628e+05 +Total_plasma_ion_pressure_at_point_90____________________________________ (pres_plasma_ion_total_profile90)_ 3.75106934814232460e+05 +Total_plasma_ion_pressure_at_point_91____________________________________ (pres_plasma_ion_total_profile91)_ 3.74619638951514324e+05 +Total_plasma_ion_pressure_at_point_92____________________________________ (pres_plasma_ion_total_profile92)_ 3.74127346005325322e+05 +Total_plasma_ion_pressure_at_point_93____________________________________ (pres_plasma_ion_total_profile93)_ 3.73630068668734981e+05 +Total_plasma_ion_pressure_at_point_94____________________________________ (pres_plasma_ion_total_profile94)_ 3.73127819769249531e+05 +Total_plasma_ion_pressure_at_point_95____________________________________ (pres_plasma_ion_total_profile95)_ 3.72620612268671452e+05 +Total_plasma_ion_pressure_at_point_96____________________________________ (pres_plasma_ion_total_profile96)_ 3.72108459262958553e+05 +Total_plasma_ion_pressure_at_point_97____________________________________ (pres_plasma_ion_total_profile97)_ 3.71591373982080724e+05 +Total_plasma_ion_pressure_at_point_98____________________________________ (pres_plasma_ion_total_profile98)_ 3.71069369789876509e+05 +Total_plasma_ion_pressure_at_point_99____________________________________ (pres_plasma_ion_total_profile99)_ 3.70542460183905845e+05 +Total_plasma_ion_pressure_at_point_100___________________________________ (pres_plasma_ion_total_profile100)_ 3.70010658795303723e+05 +Total_plasma_ion_pressure_at_point_101___________________________________ (pres_plasma_ion_total_profile101)_ 3.69473979388631182e+05 +Total_plasma_ion_pressure_at_point_102___________________________________ (pres_plasma_ion_total_profile102)_ 3.68932435861724196e+05 +Total_plasma_ion_pressure_at_point_103___________________________________ (pres_plasma_ion_total_profile103)_ 3.68386042245542922e+05 +Total_plasma_ion_pressure_at_point_104___________________________________ (pres_plasma_ion_total_profile104)_ 3.67834812704017444e+05 +Total_plasma_ion_pressure_at_point_105___________________________________ (pres_plasma_ion_total_profile105)_ 3.67278761533893063e+05 +Total_plasma_ion_pressure_at_point_106___________________________________ (pres_plasma_ion_total_profile106)_ 3.66717903164573887e+05 +Total_plasma_ion_pressure_at_point_107___________________________________ (pres_plasma_ion_total_profile107)_ 3.66152252157964918e+05 +Total_plasma_ion_pressure_at_point_108___________________________________ (pres_plasma_ion_total_profile108)_ 3.65581823208313144e+05 +Total_plasma_ion_pressure_at_point_109___________________________________ (pres_plasma_ion_total_profile109)_ 3.65006631142045604e+05 +Total_plasma_ion_pressure_at_point_110___________________________________ (pres_plasma_ion_total_profile110)_ 3.64426690917607513e+05 +Total_plasma_ion_pressure_at_point_111___________________________________ (pres_plasma_ion_total_profile111)_ 3.63842017625298642e+05 +Total_plasma_ion_pressure_at_point_112___________________________________ (pres_plasma_ion_total_profile112)_ 3.63252626487107365e+05 +Total_plasma_ion_pressure_at_point_113___________________________________ (pres_plasma_ion_total_profile113)_ 3.62658532856544189e+05 +Total_plasma_ion_pressure_at_point_114___________________________________ (pres_plasma_ion_total_profile114)_ 3.62059752218472655e+05 +Total_plasma_ion_pressure_at_point_115___________________________________ (pres_plasma_ion_total_profile115)_ 3.61456300188940309e+05 +Total_plasma_ion_pressure_at_point_116___________________________________ (pres_plasma_ion_total_profile116)_ 3.60848192515006405e+05 +Total_plasma_ion_pressure_at_point_117___________________________________ (pres_plasma_ion_total_profile117)_ 3.60235445074569958e+05 +Total_plasma_ion_pressure_at_point_118___________________________________ (pres_plasma_ion_total_profile118)_ 3.59618073876194598e+05 +Total_plasma_ion_pressure_at_point_119___________________________________ (pres_plasma_ion_total_profile119)_ 3.58996095058932493e+05 +Total_plasma_ion_pressure_at_point_120___________________________________ (pres_plasma_ion_total_profile120)_ 3.58369524892148154e+05 +Total_plasma_ion_pressure_at_point_121___________________________________ (pres_plasma_ion_total_profile121)_ 3.57738379775338515e+05 +Total_plasma_ion_pressure_at_point_122___________________________________ (pres_plasma_ion_total_profile122)_ 3.57102676237952430e+05 +Total_plasma_ion_pressure_at_point_123___________________________________ (pres_plasma_ion_total_profile123)_ 3.56462430939210113e+05 +Total_plasma_ion_pressure_at_point_124___________________________________ (pres_plasma_ion_total_profile124)_ 3.55817660667918390e+05 +Total_plasma_ion_pressure_at_point_125___________________________________ (pres_plasma_ion_total_profile125)_ 3.55168382342286641e+05 +Total_plasma_ion_pressure_at_point_126___________________________________ (pres_plasma_ion_total_profile126)_ 3.54514613009740540e+05 +Total_plasma_ion_pressure_at_point_127___________________________________ (pres_plasma_ion_total_profile127)_ 3.53856369846734160e+05 +Total_plasma_ion_pressure_at_point_128___________________________________ (pres_plasma_ion_total_profile128)_ 3.53193670158560679e+05 +Total_plasma_ion_pressure_at_point_129___________________________________ (pres_plasma_ion_total_profile129)_ 3.52526531379161577e+05 +Total_plasma_ion_pressure_at_point_130___________________________________ (pres_plasma_ion_total_profile130)_ 3.51854971070934844e+05 +Total_plasma_ion_pressure_at_point_131___________________________________ (pres_plasma_ion_total_profile131)_ 3.51179006924541143e+05 +Total_plasma_ion_pressure_at_point_132___________________________________ (pres_plasma_ion_total_profile132)_ 3.50498656758708414e+05 +Total_plasma_ion_pressure_at_point_133___________________________________ (pres_plasma_ion_total_profile133)_ 3.49813938520035939e+05 +Total_plasma_ion_pressure_at_point_134___________________________________ (pres_plasma_ion_total_profile134)_ 3.49124870282795629e+05 +Total_plasma_ion_pressure_at_point_135___________________________________ (pres_plasma_ion_total_profile135)_ 3.48431470248732890e+05 +Total_plasma_ion_pressure_at_point_136___________________________________ (pres_plasma_ion_total_profile136)_ 3.47733756746865925e+05 +Total_plasma_ion_pressure_at_point_137___________________________________ (pres_plasma_ion_total_profile137)_ 3.47031748233282589e+05 +Total_plasma_ion_pressure_at_point_138___________________________________ (pres_plasma_ion_total_profile138)_ 3.46325463290937245e+05 +Total_plasma_ion_pressure_at_point_139___________________________________ (pres_plasma_ion_total_profile139)_ 3.45614920629444998e+05 +Total_plasma_ion_pressure_at_point_140___________________________________ (pres_plasma_ion_total_profile140)_ 3.44900139084875467e+05 +Total_plasma_ion_pressure_at_point_141___________________________________ (pres_plasma_ion_total_profile141)_ 3.44181137619543937e+05 +Total_plasma_ion_pressure_at_point_142___________________________________ (pres_plasma_ion_total_profile142)_ 3.43457935321802099e+05 +Total_plasma_ion_pressure_at_point_143___________________________________ (pres_plasma_ion_total_profile143)_ 3.42730551405827340e+05 +Total_plasma_ion_pressure_at_point_144___________________________________ (pres_plasma_ion_total_profile144)_ 3.41999005211409589e+05 +Total_plasma_ion_pressure_at_point_145___________________________________ (pres_plasma_ion_total_profile145)_ 3.41263316203737690e+05 +Total_plasma_ion_pressure_at_point_146___________________________________ (pres_plasma_ion_total_profile146)_ 3.40523503973183979e+05 +Total_plasma_ion_pressure_at_point_147___________________________________ (pres_plasma_ion_total_profile147)_ 3.39779588235087926e+05 +Total_plasma_ion_pressure_at_point_148___________________________________ (pres_plasma_ion_total_profile148)_ 3.39031588829537155e+05 +Total_plasma_ion_pressure_at_point_149___________________________________ (pres_plasma_ion_total_profile149)_ 3.38279525721149170e+05 +Total_plasma_ion_pressure_at_point_150___________________________________ (pres_plasma_ion_total_profile150)_ 3.37523418998848763e+05 +Total_plasma_ion_pressure_at_point_151___________________________________ (pres_plasma_ion_total_profile151)_ 3.36763288875646540e+05 +Total_plasma_ion_pressure_at_point_152___________________________________ (pres_plasma_ion_total_profile152)_ 3.35999155688415281e+05 +Total_plasma_ion_pressure_at_point_153___________________________________ (pres_plasma_ion_total_profile153)_ 3.35231039897664450e+05 +Total_plasma_ion_pressure_at_point_154___________________________________ (pres_plasma_ion_total_profile154)_ 3.34458962087313179e+05 +Total_plasma_ion_pressure_at_point_155___________________________________ (pres_plasma_ion_total_profile155)_ 3.33682942964463320e+05 +Total_plasma_ion_pressure_at_point_156___________________________________ (pres_plasma_ion_total_profile156)_ 3.32903003359169292e+05 +Total_plasma_ion_pressure_at_point_157___________________________________ (pres_plasma_ion_total_profile157)_ 3.32119164224207751e+05 +Total_plasma_ion_pressure_at_point_158___________________________________ (pres_plasma_ion_total_profile158)_ 3.31331446634845284e+05 +Total_plasma_ion_pressure_at_point_159___________________________________ (pres_plasma_ion_total_profile159)_ 3.30539871788605058e+05 +Total_plasma_ion_pressure_at_point_160___________________________________ (pres_plasma_ion_total_profile160)_ 3.29744461005032645e+05 +Total_plasma_ion_pressure_at_point_161___________________________________ (pres_plasma_ion_total_profile161)_ 3.28945235725458537e+05 +Total_plasma_ion_pressure_at_point_162___________________________________ (pres_plasma_ion_total_profile162)_ 3.28142217512761999e+05 +Total_plasma_ion_pressure_at_point_163___________________________________ (pres_plasma_ion_total_profile163)_ 3.27335428051131661e+05 +Total_plasma_ion_pressure_at_point_164___________________________________ (pres_plasma_ion_total_profile164)_ 3.26524889145825233e+05 +Total_plasma_ion_pressure_at_point_165___________________________________ (pres_plasma_ion_total_profile165)_ 3.25710622722928529e+05 +Total_plasma_ion_pressure_at_point_166___________________________________ (pres_plasma_ion_total_profile166)_ 3.24892650829112274e+05 +Total_plasma_ion_pressure_at_point_167___________________________________ (pres_plasma_ion_total_profile167)_ 3.24070995631388098e+05 +Total_plasma_ion_pressure_at_point_168___________________________________ (pres_plasma_ion_total_profile168)_ 3.23245679416863539e+05 +Total_plasma_ion_pressure_at_point_169___________________________________ (pres_plasma_ion_total_profile169)_ 3.22416724592494604e+05 +Total_plasma_ion_pressure_at_point_170___________________________________ (pres_plasma_ion_total_profile170)_ 3.21584153684838850e+05 +Total_plasma_ion_pressure_at_point_171___________________________________ (pres_plasma_ion_total_profile171)_ 3.20747989339805150e+05 +Total_plasma_ion_pressure_at_point_172___________________________________ (pres_plasma_ion_total_profile172)_ 3.19908254322403693e+05 +Total_plasma_ion_pressure_at_point_173___________________________________ (pres_plasma_ion_total_profile173)_ 3.19064971516494523e+05 +Total_plasma_ion_pressure_at_point_174___________________________________ (pres_plasma_ion_total_profile174)_ 3.18218163924533525e+05 +Total_plasma_ion_pressure_at_point_175___________________________________ (pres_plasma_ion_total_profile175)_ 3.17367854667319742e+05 +Total_plasma_ion_pressure_at_point_176___________________________________ (pres_plasma_ion_total_profile176)_ 3.16514066983738216e+05 +Total_plasma_ion_pressure_at_point_177___________________________________ (pres_plasma_ion_total_profile177)_ 3.15656824230504571e+05 +Total_plasma_ion_pressure_at_point_178___________________________________ (pres_plasma_ion_total_profile178)_ 3.14796149881906575e+05 +Total_plasma_ion_pressure_at_point_179___________________________________ (pres_plasma_ion_total_profile179)_ 3.13932067529545224e+05 +Total_plasma_ion_pressure_at_point_180___________________________________ (pres_plasma_ion_total_profile180)_ 3.13064600882074272e+05 +Total_plasma_ion_pressure_at_point_181___________________________________ (pres_plasma_ion_total_profile181)_ 3.12193773764939164e+05 +Total_plasma_ion_pressure_at_point_182___________________________________ (pres_plasma_ion_total_profile182)_ 3.11319610120113706e+05 +Total_plasma_ion_pressure_at_point_183___________________________________ (pres_plasma_ion_total_profile183)_ 3.10442134005837317e+05 +Total_plasma_ion_pressure_at_point_184___________________________________ (pres_plasma_ion_total_profile184)_ 3.09561369596349134e+05 +Total_plasma_ion_pressure_at_point_185___________________________________ (pres_plasma_ion_total_profile185)_ 3.08677341181622818e+05 +Total_plasma_ion_pressure_at_point_186___________________________________ (pres_plasma_ion_total_profile186)_ 3.07790073167098861e+05 +Total_plasma_ion_pressure_at_point_187___________________________________ (pres_plasma_ion_total_profile187)_ 3.06899590073416592e+05 +Total_plasma_ion_pressure_at_point_188___________________________________ (pres_plasma_ion_total_profile188)_ 3.06005916536144563e+05 +Total_plasma_ion_pressure_at_point_189___________________________________ (pres_plasma_ion_total_profile189)_ 3.05109077305510815e+05 +Total_plasma_ion_pressure_at_point_190___________________________________ (pres_plasma_ion_total_profile190)_ 3.04209097246130812e+05 +Total_plasma_ion_pressure_at_point_191___________________________________ (pres_plasma_ion_total_profile191)_ 3.03306001336735033e+05 +Total_plasma_ion_pressure_at_point_192___________________________________ (pres_plasma_ion_total_profile192)_ 3.02399814669895801e+05 +Total_plasma_ion_pressure_at_point_193___________________________________ (pres_plasma_ion_total_profile193)_ 3.01490562451752310e+05 +Total_plasma_ion_pressure_at_point_194___________________________________ (pres_plasma_ion_total_profile194)_ 3.00578270001735655e+05 +Total_plasma_ion_pressure_at_point_195___________________________________ (pres_plasma_ion_total_profile195)_ 2.99662962752291816e+05 +Total_plasma_ion_pressure_at_point_196___________________________________ (pres_plasma_ion_total_profile196)_ 2.98744666248604597e+05 +Total_plasma_ion_pressure_at_point_197___________________________________ (pres_plasma_ion_total_profile197)_ 2.97823406148316863e+05 +Total_plasma_ion_pressure_at_point_198___________________________________ (pres_plasma_ion_total_profile198)_ 2.96899208221251727e+05 +Total_plasma_ion_pressure_at_point_199___________________________________ (pres_plasma_ion_total_profile199)_ 2.95972098349131760e+05 +Total_plasma_ion_pressure_at_point_200___________________________________ (pres_plasma_ion_total_profile200)_ 2.95042102525298658e+05 +Total_plasma_ion_pressure_at_point_201___________________________________ (pres_plasma_ion_total_profile201)_ 2.94109246854430472e+05 +Total_plasma_ion_pressure_at_point_202___________________________________ (pres_plasma_ion_total_profile202)_ 2.93173557552259532e+05 +Total_plasma_ion_pressure_at_point_203___________________________________ (pres_plasma_ion_total_profile203)_ 2.92235060945288104e+05 +Total_plasma_ion_pressure_at_point_204___________________________________ (pres_plasma_ion_total_profile204)_ 2.91293783470505092e+05 +Total_plasma_ion_pressure_at_point_205___________________________________ (pres_plasma_ion_total_profile205)_ 2.90349751675099309e+05 +Total_plasma_ion_pressure_at_point_206___________________________________ (pres_plasma_ion_total_profile206)_ 2.89402992216175073e+05 +Total_plasma_ion_pressure_at_point_207___________________________________ (pres_plasma_ion_total_profile207)_ 2.88453531860464660e+05 +Total_plasma_ion_pressure_at_point_208___________________________________ (pres_plasma_ion_total_profile208)_ 2.87501397484041285e+05 +Total_plasma_ion_pressure_at_point_209___________________________________ (pres_plasma_ion_total_profile209)_ 2.86546616072030913e+05 +Total_plasma_ion_pressure_at_point_210___________________________________ (pres_plasma_ion_total_profile210)_ 2.85589214718323667e+05 +Total_plasma_ion_pressure_at_point_211___________________________________ (pres_plasma_ion_total_profile211)_ 2.84629220625284594e+05 +Total_plasma_ion_pressure_at_point_212___________________________________ (pres_plasma_ion_total_profile212)_ 2.83666661103463557e+05 +Total_plasma_ion_pressure_at_point_213___________________________________ (pres_plasma_ion_total_profile213)_ 2.82701563571305189e+05 +Total_plasma_ion_pressure_at_point_214___________________________________ (pres_plasma_ion_total_profile214)_ 2.81733955554857093e+05 +Total_plasma_ion_pressure_at_point_215___________________________________ (pres_plasma_ion_total_profile215)_ 2.80763864687479683e+05 +Total_plasma_ion_pressure_at_point_216___________________________________ (pres_plasma_ion_total_profile216)_ 2.79791318709552696e+05 +Total_plasma_ion_pressure_at_point_217___________________________________ (pres_plasma_ion_total_profile217)_ 2.78816345468183805e+05 +Total_plasma_ion_pressure_at_point_218___________________________________ (pres_plasma_ion_total_profile218)_ 2.77838972916915664e+05 +Total_plasma_ion_pressure_at_point_219___________________________________ (pres_plasma_ion_total_profile219)_ 2.76859229115432070e+05 +Total_plasma_ion_pressure_at_point_220___________________________________ (pres_plasma_ion_total_profile220)_ 2.75877142229265359e+05 +Total_plasma_ion_pressure_at_point_221___________________________________ (pres_plasma_ion_total_profile221)_ 2.74892740529501927e+05 +Total_plasma_ion_pressure_at_point_222___________________________________ (pres_plasma_ion_total_profile222)_ 2.73906052392488287e+05 +Total_plasma_ion_pressure_at_point_223___________________________________ (pres_plasma_ion_total_profile223)_ 2.72917106299536768e+05 +Total_plasma_ion_pressure_at_point_224___________________________________ (pres_plasma_ion_total_profile224)_ 2.71925930836631160e+05 +Total_plasma_ion_pressure_at_point_225___________________________________ (pres_plasma_ion_total_profile225)_ 2.70932554694131599e+05 +Total_plasma_ion_pressure_at_point_226___________________________________ (pres_plasma_ion_total_profile226)_ 2.69937006666480447e+05 +Total_plasma_ion_pressure_at_point_227___________________________________ (pres_plasma_ion_total_profile227)_ 2.68939315651906945e+05 +Total_plasma_ion_pressure_at_point_228___________________________________ (pres_plasma_ion_total_profile228)_ 2.67939510652132332e+05 +Total_plasma_ion_pressure_at_point_229___________________________________ (pres_plasma_ion_total_profile229)_ 2.66937620772075607e+05 +Total_plasma_ion_pressure_at_point_230___________________________________ (pres_plasma_ion_total_profile230)_ 2.65933675219558179e+05 +Total_plasma_ion_pressure_at_point_231___________________________________ (pres_plasma_ion_total_profile231)_ 2.64927703305009345e+05 +Total_plasma_ion_pressure_at_point_232___________________________________ (pres_plasma_ion_total_profile232)_ 2.63919734441172564e+05 +Total_plasma_ion_pressure_at_point_233___________________________________ (pres_plasma_ion_total_profile233)_ 2.62909798142809712e+05 +Total_plasma_ion_pressure_at_point_234___________________________________ (pres_plasma_ion_total_profile234)_ 2.61897924026408989e+05 +Total_plasma_ion_pressure_at_point_235___________________________________ (pres_plasma_ion_total_profile235)_ 2.60884141809889989e+05 +Total_plasma_ion_pressure_at_point_236___________________________________ (pres_plasma_ion_total_profile236)_ 2.59868481312310731e+05 +Total_plasma_ion_pressure_at_point_237___________________________________ (pres_plasma_ion_total_profile237)_ 2.58850972453575232e+05 +Total_plasma_ion_pressure_at_point_238___________________________________ (pres_plasma_ion_total_profile238)_ 2.57831645254141215e+05 +Total_plasma_ion_pressure_at_point_239___________________________________ (pres_plasma_ion_total_profile239)_ 2.56810529834727728e+05 +Total_plasma_ion_pressure_at_point_240___________________________________ (pres_plasma_ion_total_profile240)_ 2.55787656416025158e+05 +Total_plasma_ion_pressure_at_point_241___________________________________ (pres_plasma_ion_total_profile241)_ 2.54763055318403931e+05 +Total_plasma_ion_pressure_at_point_242___________________________________ (pres_plasma_ion_total_profile242)_ 2.53736756961625069e+05 +Total_plasma_ion_pressure_at_point_243___________________________________ (pres_plasma_ion_total_profile243)_ 2.52708791864551924e+05 +Total_plasma_ion_pressure_at_point_244___________________________________ (pres_plasma_ion_total_profile244)_ 2.51679190644861665e+05 +Total_plasma_ion_pressure_at_point_245___________________________________ (pres_plasma_ion_total_profile245)_ 2.50647984018758812e+05 +Total_plasma_ion_pressure_at_point_246___________________________________ (pres_plasma_ion_total_profile246)_ 2.49615202800689091e+05 +Total_plasma_ion_pressure_at_point_247___________________________________ (pres_plasma_ion_total_profile247)_ 2.48580877903054730e+05 +Total_plasma_ion_pressure_at_point_248___________________________________ (pres_plasma_ion_total_profile248)_ 2.47545040335931059e+05 +Total_plasma_ion_pressure_at_point_249___________________________________ (pres_plasma_ion_total_profile249)_ 2.46507721206784161e+05 +Total_plasma_ion_pressure_at_point_250___________________________________ (pres_plasma_ion_total_profile250)_ 2.45468951720190205e+05 +Total_plasma_ion_pressure_at_point_251___________________________________ (pres_plasma_ion_total_profile251)_ 2.44428763177555578e+05 +Total_plasma_ion_pressure_at_point_252___________________________________ (pres_plasma_ion_total_profile252)_ 2.43387186976839963e+05 +Total_plasma_ion_pressure_at_point_253___________________________________ (pres_plasma_ion_total_profile253)_ 2.42344254612278630e+05 +Total_plasma_ion_pressure_at_point_254___________________________________ (pres_plasma_ion_total_profile254)_ 2.41299997674109589e+05 +Total_plasma_ion_pressure_at_point_255___________________________________ (pres_plasma_ion_total_profile255)_ 2.40254447848299926e+05 +Total_plasma_ion_pressure_at_point_256___________________________________ (pres_plasma_ion_total_profile256)_ 2.39207636916275689e+05 +Total_plasma_ion_pressure_at_point_257___________________________________ (pres_plasma_ion_total_profile257)_ 2.38159596754652681e+05 +Total_plasma_ion_pressure_at_point_258___________________________________ (pres_plasma_ion_total_profile258)_ 2.37110359334970621e+05 +Total_plasma_ion_pressure_at_point_259___________________________________ (pres_plasma_ion_total_profile259)_ 2.36059956723428390e+05 +Total_plasma_ion_pressure_at_point_260___________________________________ (pres_plasma_ion_total_profile260)_ 2.35008421080622822e+05 +Total_plasma_ion_pressure_at_point_261___________________________________ (pres_plasma_ion_total_profile261)_ 2.33955784661288402e+05 +Total_plasma_ion_pressure_at_point_262___________________________________ (pres_plasma_ion_total_profile262)_ 2.32902079814041877e+05 +Total_plasma_ion_pressure_at_point_263___________________________________ (pres_plasma_ion_total_profile263)_ 2.31847338981126988e+05 +Total_plasma_ion_pressure_at_point_264___________________________________ (pres_plasma_ion_total_profile264)_ 2.30791594698164467e+05 +Total_plasma_ion_pressure_at_point_265___________________________________ (pres_plasma_ion_total_profile265)_ 2.29734879593903170e+05 +Total_plasma_ion_pressure_at_point_266___________________________________ (pres_plasma_ion_total_profile266)_ 2.28677226389975811e+05 +Total_plasma_ion_pressure_at_point_267___________________________________ (pres_plasma_ion_total_profile267)_ 2.27618667900656787e+05 +Total_plasma_ion_pressure_at_point_268___________________________________ (pres_plasma_ion_total_profile268)_ 2.26559237032624806e+05 +Total_plasma_ion_pressure_at_point_269___________________________________ (pres_plasma_ion_total_profile269)_ 2.25498966784727178e+05 +Total_plasma_ion_pressure_at_point_270___________________________________ (pres_plasma_ion_total_profile270)_ 2.24437890247750300e+05 +Total_plasma_ion_pressure_at_point_271___________________________________ (pres_plasma_ion_total_profile271)_ 2.23376040604191629e+05 +Total_plasma_ion_pressure_at_point_272___________________________________ (pres_plasma_ion_total_profile272)_ 2.22313451128037530e+05 +Total_plasma_ion_pressure_at_point_273___________________________________ (pres_plasma_ion_total_profile273)_ 2.21250155184544768e+05 +Total_plasma_ion_pressure_at_point_274___________________________________ (pres_plasma_ion_total_profile274)_ 2.20186186230026098e+05 +Total_plasma_ion_pressure_at_point_275___________________________________ (pres_plasma_ion_total_profile275)_ 2.19121577811640687e+05 +Total_plasma_ion_pressure_at_point_276___________________________________ (pres_plasma_ion_total_profile276)_ 2.18056363567189983e+05 +Total_plasma_ion_pressure_at_point_277___________________________________ (pres_plasma_ion_total_profile277)_ 2.16990577224917302e+05 +Total_plasma_ion_pressure_at_point_278___________________________________ (pres_plasma_ion_total_profile278)_ 2.15924252603314380e+05 +Total_plasma_ion_pressure_at_point_279___________________________________ (pres_plasma_ion_total_profile279)_ 2.14857423610931059e+05 +Total_plasma_ion_pressure_at_point_280___________________________________ (pres_plasma_ion_total_profile280)_ 2.13790124246193242e+05 +Total_plasma_ion_pressure_at_point_281___________________________________ (pres_plasma_ion_total_profile281)_ 2.12722388597224141e+05 +Total_plasma_ion_pressure_at_point_282___________________________________ (pres_plasma_ion_total_profile282)_ 2.11654250841673871e+05 +Total_plasma_ion_pressure_at_point_283___________________________________ (pres_plasma_ion_total_profile283)_ 2.10585745246553735e+05 +Total_plasma_ion_pressure_at_point_284___________________________________ (pres_plasma_ion_total_profile284)_ 2.09516906168077723e+05 +Total_plasma_ion_pressure_at_point_285___________________________________ (pres_plasma_ion_total_profile285)_ 2.08447768051511404e+05 +Total_plasma_ion_pressure_at_point_286___________________________________ (pres_plasma_ion_total_profile286)_ 2.07378365431026672e+05 +Total_plasma_ion_pressure_at_point_287___________________________________ (pres_plasma_ion_total_profile287)_ 2.06308732929565303e+05 +Total_plasma_ion_pressure_at_point_288___________________________________ (pres_plasma_ion_total_profile288)_ 2.05238905258708372e+05 +Total_plasma_ion_pressure_at_point_289___________________________________ (pres_plasma_ion_total_profile289)_ 2.04168917218556075e+05 +Total_plasma_ion_pressure_at_point_290___________________________________ (pres_plasma_ion_total_profile290)_ 2.03098803697613039e+05 +Total_plasma_ion_pressure_at_point_291___________________________________ (pres_plasma_ion_total_profile291)_ 2.02028599672685028e+05 +Total_plasma_ion_pressure_at_point_292___________________________________ (pres_plasma_ion_total_profile292)_ 2.00958340208781417e+05 +Total_plasma_ion_pressure_at_point_293___________________________________ (pres_plasma_ion_total_profile293)_ 1.99888060459030297e+05 +Total_plasma_ion_pressure_at_point_294___________________________________ (pres_plasma_ion_total_profile294)_ 1.98817795664600388e+05 +Total_plasma_ion_pressure_at_point_295___________________________________ (pres_plasma_ion_total_profile295)_ 1.97747581154634070e+05 +Total_plasma_ion_pressure_at_point_296___________________________________ (pres_plasma_ion_total_profile296)_ 1.96677452346191159e+05 +Total_plasma_ion_pressure_at_point_297___________________________________ (pres_plasma_ion_total_profile297)_ 1.95607444744202512e+05 +Total_plasma_ion_pressure_at_point_298___________________________________ (pres_plasma_ion_total_profile298)_ 1.94537593941434578e+05 +Total_plasma_ion_pressure_at_point_299___________________________________ (pres_plasma_ion_total_profile299)_ 1.93467935618466960e+05 +Total_plasma_ion_pressure_at_point_300___________________________________ (pres_plasma_ion_total_profile300)_ 1.92398505543680076e+05 +Total_plasma_ion_pressure_at_point_301___________________________________ (pres_plasma_ion_total_profile301)_ 1.91329339573256439e+05 +Total_plasma_ion_pressure_at_point_302___________________________________ (pres_plasma_ion_total_profile302)_ 1.90260473651194276e+05 +Total_plasma_ion_pressure_at_point_303___________________________________ (pres_plasma_ion_total_profile303)_ 1.89191943809334480e+05 +Total_plasma_ion_pressure_at_point_304___________________________________ (pres_plasma_ion_total_profile304)_ 1.88123786167401558e+05 +Total_plasma_ion_pressure_at_point_305___________________________________ (pres_plasma_ion_total_profile305)_ 1.87056036933058960e+05 +Total_plasma_ion_pressure_at_point_306___________________________________ (pres_plasma_ion_total_profile306)_ 1.85988732401978923e+05 +Total_plasma_ion_pressure_at_point_307___________________________________ (pres_plasma_ion_total_profile307)_ 1.84921908957928128e+05 +Total_plasma_ion_pressure_at_point_308___________________________________ (pres_plasma_ion_total_profile308)_ 1.83855603072868806e+05 +Total_plasma_ion_pressure_at_point_309___________________________________ (pres_plasma_ion_total_profile309)_ 1.82789851307077275e+05 +Total_plasma_ion_pressure_at_point_310___________________________________ (pres_plasma_ion_total_profile310)_ 1.81724690309278725e+05 +Total_plasma_ion_pressure_at_point_311___________________________________ (pres_plasma_ion_total_profile311)_ 1.80660156816800882e+05 +Total_plasma_ion_pressure_at_point_312___________________________________ (pres_plasma_ion_total_profile312)_ 1.79596287655744585e+05 +Total_plasma_ion_pressure_at_point_313___________________________________ (pres_plasma_ion_total_profile313)_ 1.78533119741175731e+05 +Total_plasma_ion_pressure_at_point_314___________________________________ (pres_plasma_ion_total_profile314)_ 1.77470690077334817e+05 +Total_plasma_ion_pressure_at_point_315___________________________________ (pres_plasma_ion_total_profile315)_ 1.76409035757869191e+05 +Total_plasma_ion_pressure_at_point_316___________________________________ (pres_plasma_ion_total_profile316)_ 1.75348193966085062e+05 +Total_plasma_ion_pressure_at_point_317___________________________________ (pres_plasma_ion_total_profile317)_ 1.74288201975222939e+05 +Total_plasma_ion_pressure_at_point_318___________________________________ (pres_plasma_ion_total_profile318)_ 1.73229097148755187e+05 +Total_plasma_ion_pressure_at_point_319___________________________________ (pres_plasma_ion_total_profile319)_ 1.72170916940708586e+05 +Total_plasma_ion_pressure_at_point_320___________________________________ (pres_plasma_ion_total_profile320)_ 1.71113698896010232e+05 +Total_plasma_ion_pressure_at_point_321___________________________________ (pres_plasma_ion_total_profile321)_ 1.70057480650860787e+05 +Total_plasma_ion_pressure_at_point_322___________________________________ (pres_plasma_ion_total_profile322)_ 1.69002299933133123e+05 +Total_plasma_ion_pressure_at_point_323___________________________________ (pres_plasma_ion_total_profile323)_ 1.67948194562800025e+05 +Total_plasma_ion_pressure_at_point_324___________________________________ (pres_plasma_ion_total_profile324)_ 1.66895202452389203e+05 +Total_plasma_ion_pressure_at_point_325___________________________________ (pres_plasma_ion_total_profile325)_ 1.65843361607469444e+05 +Total_plasma_ion_pressure_at_point_326___________________________________ (pres_plasma_ion_total_profile326)_ 1.64792710127167171e+05 +Total_plasma_ion_pressure_at_point_327___________________________________ (pres_plasma_ion_total_profile327)_ 1.63743286204715725e+05 +Total_plasma_ion_pressure_at_point_328___________________________________ (pres_plasma_ion_total_profile328)_ 1.62695128128037206e+05 +Total_plasma_ion_pressure_at_point_329___________________________________ (pres_plasma_ion_total_profile329)_ 1.61648274280360434e+05 +Total_plasma_ion_pressure_at_point_330___________________________________ (pres_plasma_ion_total_profile330)_ 1.60602763140873605e+05 +Total_plasma_ion_pressure_at_point_331___________________________________ (pres_plasma_ion_total_profile331)_ 1.59558633285415766e+05 +Total_plasma_ion_pressure_at_point_332___________________________________ (pres_plasma_ion_total_profile332)_ 1.58515923387206014e+05 +Total_plasma_ion_pressure_at_point_333___________________________________ (pres_plasma_ion_total_profile333)_ 1.57474672217614483e+05 +Total_plasma_ion_pressure_at_point_334___________________________________ (pres_plasma_ion_total_profile334)_ 1.56434918646974227e+05 +Total_plasma_ion_pressure_at_point_335___________________________________ (pres_plasma_ion_total_profile335)_ 1.55396701645437774e+05 +Total_plasma_ion_pressure_at_point_336___________________________________ (pres_plasma_ion_total_profile336)_ 1.54360060283878789e+05 +Total_plasma_ion_pressure_at_point_337___________________________________ (pres_plasma_ion_total_profile337)_ 1.53325033734841010e+05 +Total_plasma_ion_pressure_at_point_338___________________________________ (pres_plasma_ion_total_profile338)_ 1.52291661273536418e+05 +Total_plasma_ion_pressure_at_point_339___________________________________ (pres_plasma_ion_total_profile339)_ 1.51259982278894749e+05 +Total_plasma_ion_pressure_at_point_340___________________________________ (pres_plasma_ion_total_profile340)_ 1.50230036234665866e+05 +Total_plasma_ion_pressure_at_point_341___________________________________ (pres_plasma_ion_total_profile341)_ 1.49201862730578141e+05 +Total_plasma_ion_pressure_at_point_342___________________________________ (pres_plasma_ion_total_profile342)_ 1.48175501463553606e+05 +Total_plasma_ion_pressure_at_point_343___________________________________ (pres_plasma_ion_total_profile343)_ 1.47150992238983919e+05 +Total_plasma_ion_pressure_at_point_344___________________________________ (pres_plasma_ion_total_profile344)_ 1.46128374972068617e+05 +Total_plasma_ion_pressure_at_point_345___________________________________ (pres_plasma_ion_total_profile345)_ 1.45107689689217514e+05 +Total_plasma_ion_pressure_at_point_346___________________________________ (pres_plasma_ion_total_profile346)_ 1.44088976529522653e+05 +Total_plasma_ion_pressure_at_point_347___________________________________ (pres_plasma_ion_total_profile347)_ 1.43072275746298750e+05 +Total_plasma_ion_pressure_at_point_348___________________________________ (pres_plasma_ion_total_profile348)_ 1.42057627708698914e+05 +Total_plasma_ion_pressure_at_point_349___________________________________ (pres_plasma_ion_total_profile349)_ 1.41045072903406020e+05 +Total_plasma_ion_pressure_at_point_350___________________________________ (pres_plasma_ion_total_profile350)_ 1.40034651936404407e+05 +Total_plasma_ion_pressure_at_point_351___________________________________ (pres_plasma_ion_total_profile351)_ 1.39026405534834106e+05 +Total_plasma_ion_pressure_at_point_352___________________________________ (pres_plasma_ion_total_profile352)_ 1.38020374548933614e+05 +Total_plasma_ion_pressure_at_point_353___________________________________ (pres_plasma_ion_total_profile353)_ 1.37016599954071309e+05 +Total_plasma_ion_pressure_at_point_354___________________________________ (pres_plasma_ion_total_profile354)_ 1.36015122852872970e+05 +Total_plasma_ion_pressure_at_point_355___________________________________ (pres_plasma_ion_total_profile355)_ 1.35015984477447200e+05 +Total_plasma_ion_pressure_at_point_356___________________________________ (pres_plasma_ion_total_profile356)_ 1.34019226191714144e+05 +Total_plasma_ion_pressure_at_point_357___________________________________ (pres_plasma_ion_total_profile357)_ 1.33024889493842027e+05 +Total_plasma_ion_pressure_at_point_358___________________________________ (pres_plasma_ion_total_profile358)_ 1.32033016018795694e+05 +Total_plasma_ion_pressure_at_point_359___________________________________ (pres_plasma_ion_total_profile359)_ 1.31043647541003025e+05 +Total_plasma_ion_pressure_at_point_360___________________________________ (pres_plasma_ion_total_profile360)_ 1.30056825977144224e+05 +Total_plasma_ion_pressure_at_point_361___________________________________ (pres_plasma_ion_total_profile361)_ 1.29072593389068672e+05 +Total_plasma_ion_pressure_at_point_362___________________________________ (pres_plasma_ion_total_profile362)_ 1.28090991986847366e+05 +Total_plasma_ion_pressure_at_point_363___________________________________ (pres_plasma_ion_total_profile363)_ 1.27112064131964478e+05 +Total_plasma_ion_pressure_at_point_364___________________________________ (pres_plasma_ion_total_profile364)_ 1.26135852340657191e+05 +Total_plasma_ion_pressure_at_point_365___________________________________ (pres_plasma_ion_total_profile365)_ 1.25162399287408305e+05 +Total_plasma_ion_pressure_at_point_366___________________________________ (pres_plasma_ion_total_profile366)_ 1.24191747808600892e+05 +Total_plasma_ion_pressure_at_point_367___________________________________ (pres_plasma_ion_total_profile367)_ 1.23223940906341129e+05 +Total_plasma_ion_pressure_at_point_368___________________________________ (pres_plasma_ion_total_profile368)_ 1.22259021752458808e+05 +Total_plasma_ion_pressure_at_point_369___________________________________ (pres_plasma_ion_total_profile369)_ 1.21297033692692508e+05 +Total_plasma_ion_pressure_at_point_370___________________________________ (pres_plasma_ion_total_profile370)_ 1.20338020251070091e+05 +Total_plasma_ion_pressure_at_point_371___________________________________ (pres_plasma_ion_total_profile371)_ 1.19382025134492666e+05 +Total_plasma_ion_pressure_at_point_372___________________________________ (pres_plasma_ion_total_profile372)_ 1.18429092237533361e+05 +Total_plasma_ion_pressure_at_point_373___________________________________ (pres_plasma_ion_total_profile373)_ 1.17479265647460372e+05 +Total_plasma_ion_pressure_at_point_374___________________________________ (pres_plasma_ion_total_profile374)_ 1.16532589649497182e+05 +Total_plasma_ion_pressure_at_point_375___________________________________ (pres_plasma_ion_total_profile375)_ 1.15589108732329929e+05 +Total_plasma_ion_pressure_at_point_376___________________________________ (pres_plasma_ion_total_profile376)_ 1.14648867593877032e+05 +Total_plasma_ion_pressure_at_point_377___________________________________ (pres_plasma_ion_total_profile377)_ 1.13711911147332037e+05 +Total_plasma_ion_pressure_at_point_378___________________________________ (pres_plasma_ion_total_profile378)_ 1.12778284527496726e+05 +Total_plasma_ion_pressure_at_point_379___________________________________ (pres_plasma_ion_total_profile379)_ 1.11848033097417298e+05 +Total_plasma_ion_pressure_at_point_380___________________________________ (pres_plasma_ion_total_profile380)_ 1.10921202455341190e+05 +Total_plasma_ion_pressure_at_point_381___________________________________ (pres_plasma_ion_total_profile381)_ 1.09997838442011795e+05 +Total_plasma_ion_pressure_at_point_382___________________________________ (pres_plasma_ion_total_profile382)_ 1.09077987148318338e+05 +Total_plasma_ion_pressure_at_point_383___________________________________ (pres_plasma_ion_total_profile383)_ 1.08161694923321731e+05 +Total_plasma_ion_pressure_at_point_384___________________________________ (pres_plasma_ion_total_profile384)_ 1.07249008382676082e+05 +Total_plasma_ion_pressure_at_point_385___________________________________ (pres_plasma_ion_total_profile385)_ 1.06339974417468969e+05 +Total_plasma_ion_pressure_at_point_386___________________________________ (pres_plasma_ion_total_profile386)_ 1.05434640203503062e+05 +Total_plasma_ion_pressure_at_point_387___________________________________ (pres_plasma_ion_total_profile387)_ 1.04533053211045481e+05 +Total_plasma_ion_pressure_at_point_388___________________________________ (pres_plasma_ion_total_profile388)_ 1.03635261215070888e+05 +Total_plasma_ion_pressure_at_point_389___________________________________ (pres_plasma_ion_total_profile389)_ 1.02741312306027874e+05 +Total_plasma_ion_pressure_at_point_390___________________________________ (pres_plasma_ion_total_profile390)_ 1.01851254901158682e+05 +Total_plasma_ion_pressure_at_point_391___________________________________ (pres_plasma_ion_total_profile391)_ 1.00965137756406431e+05 +Total_plasma_ion_pressure_at_point_392___________________________________ (pres_plasma_ion_total_profile392)_ 1.00083009978943825e+05 +Total_plasma_ion_pressure_at_point_393___________________________________ (pres_plasma_ion_total_profile393)_ 9.92049210403632314e+04 +Total_plasma_ion_pressure_at_point_394___________________________________ (pres_plasma_ion_total_profile394)_ 9.83309207905663789e+04 +Total_plasma_ion_pressure_at_point_395___________________________________ (pres_plasma_ion_total_profile395)_ 9.74610594724002585e+04 +Total_plasma_ion_pressure_at_point_396___________________________________ (pres_plasma_ion_total_profile396)_ 9.65953877370839909e+04 +Total_plasma_ion_pressure_at_point_397___________________________________ (pres_plasma_ion_total_profile397)_ 9.57339566604791326e+04 +Total_plasma_ion_pressure_at_point_398___________________________________ (pres_plasma_ion_total_profile398)_ 9.48768177602566575e+04 +Total_plasma_ion_pressure_at_point_399___________________________________ (pres_plasma_ion_total_profile399)_ 9.40240230140209751e+04 +Total_plasma_ion_pressure_at_point_400___________________________________ (pres_plasma_ion_total_profile400)_ 9.31756248784529453e+04 +Total_plasma_ion_pressure_at_point_401___________________________________ (pres_plasma_ion_total_profile401)_ 9.23316763095426577e+04 +Total_plasma_ion_pressure_at_point_402___________________________________ (pres_plasma_ion_total_profile402)_ 9.14922307839840505e+04 +Total_plasma_ion_pressure_at_point_403___________________________________ (pres_plasma_ion_total_profile403)_ 9.06573423218143434e+04 +Total_plasma_ion_pressure_at_point_404___________________________________ (pres_plasma_ion_total_profile404)_ 8.98270655103832687e+04 +Total_plasma_ion_pressure_at_point_405___________________________________ (pres_plasma_ion_total_profile405)_ 8.90014555297488987e+04 +Total_plasma_ion_pressure_at_point_406___________________________________ (pres_plasma_ion_total_profile406)_ 8.81805681796015415e+04 +Total_plasma_ion_pressure_at_point_407___________________________________ (pres_plasma_ion_total_profile407)_ 8.73644599078287865e+04 +Total_plasma_ion_pressure_at_point_408___________________________________ (pres_plasma_ion_total_profile408)_ 8.65531878408427874e+04 +Total_plasma_ion_pressure_at_point_409___________________________________ (pres_plasma_ion_total_profile409)_ 8.57468098158043285e+04 +Total_plasma_ion_pressure_at_point_410___________________________________ (pres_plasma_ion_total_profile410)_ 8.49453844148870994e+04 +Total_plasma_ion_pressure_at_point_411___________________________________ (pres_plasma_ion_total_profile411)_ 8.41489710017434118e+04 +Total_plasma_ion_pressure_at_point_412___________________________________ (pres_plasma_ion_total_profile412)_ 8.33576297603430867e+04 +Total_plasma_ion_pressure_at_point_413___________________________________ (pres_plasma_ion_total_profile413)_ 8.25714217363791977e+04 +Total_plasma_ion_pressure_at_point_414___________________________________ (pres_plasma_ion_total_profile414)_ 8.17904088814477727e+04 +Total_plasma_ion_pressure_at_point_415___________________________________ (pres_plasma_ion_total_profile415)_ 8.10146541002345766e+04 +Total_plasma_ion_pressure_at_point_416___________________________________ (pres_plasma_ion_total_profile416)_ 8.02442213009616535e+04 +Total_plasma_ion_pressure_at_point_417___________________________________ (pres_plasma_ion_total_profile417)_ 7.94791754493754415e+04 +Total_plasma_ion_pressure_at_point_418___________________________________ (pres_plasma_ion_total_profile418)_ 7.87195826265863143e+04 +Total_plasma_ion_pressure_at_point_419___________________________________ (pres_plasma_ion_total_profile419)_ 7.79655100911037880e+04 +Total_plasma_ion_pressure_at_point_420___________________________________ (pres_plasma_ion_total_profile420)_ 7.72170263454487285e+04 +Total_plasma_ion_pressure_at_point_421___________________________________ (pres_plasma_ion_total_profile421)_ 7.64742012077670079e+04 +Total_plasma_ion_pressure_at_point_422___________________________________ (pres_plasma_ion_total_profile422)_ 7.57371058889173146e+04 +Total_plasma_ion_pressure_at_point_423___________________________________ (pres_plasma_ion_total_profile423)_ 7.50058130755613238e+04 +Total_plasma_ion_pressure_at_point_424___________________________________ (pres_plasma_ion_total_profile424)_ 7.42803970198459137e+04 +Total_plasma_ion_pressure_at_point_425___________________________________ (pres_plasma_ion_total_profile425)_ 7.35609336363410548e+04 +Total_plasma_ion_pressure_at_point_426___________________________________ (pres_plasma_ion_total_profile426)_ 7.28475006069768278e+04 +Total_plasma_ion_pressure_at_point_427___________________________________ (pres_plasma_ion_total_profile427)_ 7.21401774948188686e+04 +Total_plasma_ion_pressure_at_point_428___________________________________ (pres_plasma_ion_total_profile428)_ 7.14390458676309499e+04 +Total_plasma_ion_pressure_at_point_429___________________________________ (pres_plasma_ion_total_profile429)_ 7.07441894322968292e+04 +Total_plasma_ion_pressure_at_point_430___________________________________ (pres_plasma_ion_total_profile430)_ 7.00556941813231533e+04 +Total_plasma_ion_pressure_at_point_431___________________________________ (pres_plasma_ion_total_profile431)_ 6.93736485528114281e+04 +Total_plasma_ion_pressure_at_point_432___________________________________ (pres_plasma_ion_total_profile432)_ 6.86981436054890946e+04 +Total_plasma_ion_pressure_at_point_433___________________________________ (pres_plasma_ion_total_profile433)_ 6.80292732106193434e+04 +Total_plasma_ion_pressure_at_point_434___________________________________ (pres_plasma_ion_total_profile434)_ 6.73671342628864222e+04 +Total_plasma_ion_pressure_at_point_435___________________________________ (pres_plasma_ion_total_profile435)_ 6.67118269126740634e+04 +Total_plasma_ion_pressure_at_point_436___________________________________ (pres_plasma_ion_total_profile436)_ 6.60634548225425533e+04 +Total_plasma_ion_pressure_at_point_437___________________________________ (pres_plasma_ion_total_profile437)_ 6.54221254511644220e+04 +Total_plasma_ion_pressure_at_point_438___________________________________ (pres_plasma_ion_total_profile438)_ 6.47879503685329473e+04 +Total_plasma_ion_pressure_at_point_439___________________________________ (pres_plasma_ion_total_profile439)_ 6.41610456069152206e+04 +Total_plasma_ion_pressure_at_point_440___________________________________ (pres_plasma_ion_total_profile440)_ 6.35415320528261946e+04 +Total_plasma_ion_pressure_at_point_441___________________________________ (pres_plasma_ion_total_profile441)_ 6.29295358862746434e+04 +Total_plasma_ion_pressure_at_point_442___________________________________ (pres_plasma_ion_total_profile442)_ 6.23251890747295838e+04 +Total_plasma_ion_pressure_at_point_443___________________________________ (pres_plasma_ion_total_profile443)_ 6.17286299307298832e+04 +Total_plasma_ion_pressure_at_point_444___________________________________ (pres_plasma_ion_total_profile444)_ 6.11400037438945728e+04 +Total_plasma_ion_pressure_at_point_445___________________________________ (pres_plasma_ion_total_profile445)_ 6.05594635003822768e+04 +Total_plasma_ion_pressure_at_point_446___________________________________ (pres_plasma_ion_total_profile446)_ 5.99871707057419044e+04 +Total_plasma_ion_pressure_at_point_447___________________________________ (pres_plasma_ion_total_profile447)_ 5.94232963307744430e+04 +Total_plasma_ion_pressure_at_point_448___________________________________ (pres_plasma_ion_total_profile448)_ 5.88680219047482824e+04 +Total_plasma_ion_pressure_at_point_449___________________________________ (pres_plasma_ion_total_profile449)_ 5.83215407864318477e+04 +Total_plasma_ion_pressure_at_point_450___________________________________ (pres_plasma_ion_total_profile450)_ 5.77840596514311328e+04 +Total_plasma_ion_pressure_at_point_451___________________________________ (pres_plasma_ion_total_profile451)_ 5.72558002449562409e+04 +Total_plasma_ion_pressure_at_point_452___________________________________ (pres_plasma_ion_total_profile452)_ 5.67370014634262334e+04 +Total_plasma_ion_pressure_at_point_453___________________________________ (pres_plasma_ion_total_profile453)_ 5.62279218477744434e+04 +Total_plasma_ion_pressure_at_point_454___________________________________ (pres_plasma_ion_total_profile454)_ 5.57288425982188419e+04 +Total_plasma_ion_pressure_at_point_455___________________________________ (pres_plasma_ion_total_profile455)_ 5.52400712581042972e+04 +Total_plasma_ion_pressure_at_point_456___________________________________ (pres_plasma_ion_total_profile456)_ 5.47619462686770712e+04 +Total_plasma_ion_pressure_at_point_457___________________________________ (pres_plasma_ion_total_profile457)_ 5.42948426760963048e+04 +Total_plasma_ion_pressure_at_point_458___________________________________ (pres_plasma_ion_total_profile458)_ 5.38391793911511559e+04 +Total_plasma_ion_pressure_at_point_459___________________________________ (pres_plasma_ion_total_profile459)_ 5.33954285858170260e+04 +Total_plasma_ion_pressure_at_point_460___________________________________ (pres_plasma_ion_total_profile460)_ 5.29641281028771918e+04 +Total_plasma_ion_pressure_at_point_461___________________________________ (pres_plasma_ion_total_profile461)_ 5.25458982365352422e+04 +Total_plasma_ion_pressure_at_point_462___________________________________ (pres_plasma_ion_total_profile462)_ 5.21414650710231508e+04 +Total_plasma_ion_pressure_at_point_463___________________________________ (pres_plasma_ion_total_profile463)_ 5.17516940659324318e+04 +Total_plasma_ion_pressure_at_point_464___________________________________ (pres_plasma_ion_total_profile464)_ 5.13776404717855185e+04 +Total_plasma_ion_pressure_at_point_465___________________________________ (pres_plasma_ion_total_profile465)_ 5.10206291909569409e+04 +Total_plasma_ion_pressure_at_point_466___________________________________ (pres_plasma_ion_total_profile466)_ 5.06823905961806449e+04 +Total_plasma_ion_pressure_at_point_467___________________________________ (pres_plasma_ion_total_profile467)_ 5.03653155165718053e+04 +Total_plasma_ion_pressure_at_point_468___________________________________ (pres_plasma_ion_total_profile468)_ 5.00730108741867516e+04 +Total_plasma_ion_pressure_at_point_469___________________________________ (pres_plasma_ion_total_profile469)_ 4.98118705190483379e+04 +Total_plasma_ion_pressure_at_point_470___________________________________ (pres_plasma_ion_total_profile470)_ 4.96007596372339394e+04 +Total_plasma_ion_pressure_at_point_471___________________________________ (pres_plasma_ion_total_profile471)_ 4.73189478641185560e+04 +Total_plasma_ion_pressure_at_point_472___________________________________ (pres_plasma_ion_total_profile472)_ 4.50816972012654878e+04 +Total_plasma_ion_pressure_at_point_473___________________________________ (pres_plasma_ion_total_profile473)_ 4.28890076486747566e+04 +Total_plasma_ion_pressure_at_point_474___________________________________ (pres_plasma_ion_total_profile474)_ 4.07408792063463552e+04 +Total_plasma_ion_pressure_at_point_475___________________________________ (pres_plasma_ion_total_profile475)_ 3.86373118742802690e+04 +Total_plasma_ion_pressure_at_point_476___________________________________ (pres_plasma_ion_total_profile476)_ 3.65783056524765125e+04 +Total_plasma_ion_pressure_at_point_477___________________________________ (pres_plasma_ion_total_profile477)_ 3.45638605409350930e+04 +Total_plasma_ion_pressure_at_point_478___________________________________ (pres_plasma_ion_total_profile478)_ 3.25939765396560106e+04 +Total_plasma_ion_pressure_at_point_479___________________________________ (pres_plasma_ion_total_profile479)_ 3.06686536486392361e+04 +Total_plasma_ion_pressure_at_point_480___________________________________ (pres_plasma_ion_total_profile480)_ 2.87878918678847986e+04 +Total_plasma_ion_pressure_at_point_481___________________________________ (pres_plasma_ion_total_profile481)_ 2.69516911973926835e+04 +Total_plasma_ion_pressure_at_point_482___________________________________ (pres_plasma_ion_total_profile482)_ 2.51600516371629055e+04 +Total_plasma_ion_pressure_at_point_483___________________________________ (pres_plasma_ion_total_profile483)_ 2.34129731871954536e+04 +Total_plasma_ion_pressure_at_point_484___________________________________ (pres_plasma_ion_total_profile484)_ 2.17104558474903279e+04 +Total_plasma_ion_pressure_at_point_485___________________________________ (pres_plasma_ion_total_profile485)_ 2.00524996180475209e+04 +Total_plasma_ion_pressure_at_point_486___________________________________ (pres_plasma_ion_total_profile486)_ 1.84391044988670474e+04 +Total_plasma_ion_pressure_at_point_487___________________________________ (pres_plasma_ion_total_profile487)_ 1.68702704899489036e+04 +Total_plasma_ion_pressure_at_point_488___________________________________ (pres_plasma_ion_total_profile488)_ 1.53459975912930859e+04 +Total_plasma_ion_pressure_at_point_489___________________________________ (pres_plasma_ion_total_profile489)_ 1.38662858028995943e+04 +Total_plasma_ion_pressure_at_point_490___________________________________ (pres_plasma_ion_total_profile490)_ 1.24311351247684361e+04 +Total_plasma_ion_pressure_at_point_491___________________________________ (pres_plasma_ion_total_profile491)_ 1.10405455568996022e+04 +Total_plasma_ion_pressure_at_point_492___________________________________ (pres_plasma_ion_total_profile492)_ 9.69451709929309618e+03 +Total_plasma_ion_pressure_at_point_493___________________________________ (pres_plasma_ion_total_profile493)_ 8.39304975194892177e+03 +Total_plasma_ion_pressure_at_point_494___________________________________ (pres_plasma_ion_total_profile494)_ 7.13614351486707073e+03 +Total_plasma_ion_pressure_at_point_495___________________________________ (pres_plasma_ion_total_profile495)_ 5.92379838804754854e+03 +Total_plasma_ion_pressure_at_point_496___________________________________ (pres_plasma_ion_total_profile496)_ 4.75601437149035428e+03 +Total_plasma_ion_pressure_at_point_497___________________________________ (pres_plasma_ion_total_profile497)_ 3.63279146519548704e+03 +Total_plasma_ion_pressure_at_point_498___________________________________ (pres_plasma_ion_total_profile498)_ 2.55412966916294909e+03 +Total_plasma_ion_pressure_at_point_499___________________________________ (pres_plasma_ion_total_profile499)_ 1.52002898339273770e+03 +Total_plasma_ion_pressure_at_point_500___________________________________ (pres_plasma_ion_total_profile500)_ 5.30489407884855041e+02 +Total_plasma_fuel_pressure_at_point_0____________________________________ (pres_plasma_fuel_profile0)____ 3.57792057557356195e+05 +Total_plasma_fuel_pressure_at_point_1____________________________________ (pres_plasma_fuel_profile1)____ 3.57789546890591213e+05 +Total_plasma_fuel_pressure_at_point_2____________________________________ (pres_plasma_fuel_profile2)____ 3.57782014953707869e+05 +Total_plasma_fuel_pressure_at_point_3____________________________________ (pres_plasma_fuel_profile3)____ 3.57769461936939100e+05 +Total_plasma_fuel_pressure_at_point_4____________________________________ (pres_plasma_fuel_profile4)____ 3.57751888157338486e+05 +Total_plasma_fuel_pressure_at_point_5____________________________________ (pres_plasma_fuel_profile5)____ 3.57729294058775937e+05 +Total_plasma_fuel_pressure_at_point_6____________________________________ (pres_plasma_fuel_profile6)____ 3.57701680211932864e+05 +Total_plasma_fuel_pressure_at_point_7____________________________________ (pres_plasma_fuel_profile7)____ 3.57669047314296826e+05 +Total_plasma_fuel_pressure_at_point_8____________________________________ (pres_plasma_fuel_profile8)____ 3.57631396190153318e+05 +Total_plasma_fuel_pressure_at_point_9____________________________________ (pres_plasma_fuel_profile9)____ 3.57588727790577337e+05 +Total_plasma_fuel_pressure_at_point_10___________________________________ (pres_plasma_fuel_profile10)___ 3.57541043193423189e+05 +Total_plasma_fuel_pressure_at_point_11___________________________________ (pres_plasma_fuel_profile11)___ 3.57488343603312678e+05 +Total_plasma_fuel_pressure_at_point_12___________________________________ (pres_plasma_fuel_profile12)___ 3.57430630351622473e+05 +Total_plasma_fuel_pressure_at_point_13___________________________________ (pres_plasma_fuel_profile13)___ 3.57367904896469903e+05 +Total_plasma_fuel_pressure_at_point_14___________________________________ (pres_plasma_fuel_profile14)___ 3.57300168822696840e+05 +Total_plasma_fuel_pressure_at_point_15___________________________________ (pres_plasma_fuel_profile15)___ 3.57227423841853219e+05 +Total_plasma_fuel_pressure_at_point_16___________________________________ (pres_plasma_fuel_profile16)___ 3.57149671792178822e+05 +Total_plasma_fuel_pressure_at_point_17___________________________________ (pres_plasma_fuel_profile17)___ 3.57066914638582908e+05 +Total_plasma_fuel_pressure_at_point_18___________________________________ (pres_plasma_fuel_profile18)___ 3.56979154472623835e+05 +Total_plasma_fuel_pressure_at_point_19___________________________________ (pres_plasma_fuel_profile19)___ 3.56886393512486422e+05 +Total_plasma_fuel_pressure_at_point_20___________________________________ (pres_plasma_fuel_profile20)___ 3.56788634102957963e+05 +Total_plasma_fuel_pressure_at_point_21___________________________________ (pres_plasma_fuel_profile21)___ 3.56685878715403378e+05 +Total_plasma_fuel_pressure_at_point_22___________________________________ (pres_plasma_fuel_profile22)___ 3.56578129947738606e+05 +Total_plasma_fuel_pressure_at_point_23___________________________________ (pres_plasma_fuel_profile23)___ 3.56465390524402785e+05 +Total_plasma_fuel_pressure_at_point_24___________________________________ (pres_plasma_fuel_profile24)___ 3.56347663296328974e+05 +Total_plasma_fuel_pressure_at_point_25___________________________________ (pres_plasma_fuel_profile25)___ 3.56224951240914059e+05 +Total_plasma_fuel_pressure_at_point_26___________________________________ (pres_plasma_fuel_profile26)___ 3.56097257461985748e+05 +Total_plasma_fuel_pressure_at_point_27___________________________________ (pres_plasma_fuel_profile27)___ 3.55964585189770558e+05 +Total_plasma_fuel_pressure_at_point_28___________________________________ (pres_plasma_fuel_profile28)___ 3.55826937780858250e+05 +Total_plasma_fuel_pressure_at_point_29___________________________________ (pres_plasma_fuel_profile29)___ 3.55684318718166440e+05 +Total_plasma_fuel_pressure_at_point_30___________________________________ (pres_plasma_fuel_profile30)___ 3.55536731610902643e+05 +Total_plasma_fuel_pressure_at_point_31___________________________________ (pres_plasma_fuel_profile31)___ 3.55384180194526154e+05 +Total_plasma_fuel_pressure_at_point_32___________________________________ (pres_plasma_fuel_profile32)___ 3.55226668330707646e+05 +Total_plasma_fuel_pressure_at_point_33___________________________________ (pres_plasma_fuel_profile33)___ 3.55064200007287494e+05 +Total_plasma_fuel_pressure_at_point_34___________________________________ (pres_plasma_fuel_profile34)___ 3.54896779338233639e+05 +Total_plasma_fuel_pressure_at_point_35___________________________________ (pres_plasma_fuel_profile35)___ 3.54724410563596815e+05 +Total_plasma_fuel_pressure_at_point_36___________________________________ (pres_plasma_fuel_profile36)___ 3.54547098049465276e+05 +Total_plasma_fuel_pressure_at_point_37___________________________________ (pres_plasma_fuel_profile37)___ 3.54364846287918161e+05 +Total_plasma_fuel_pressure_at_point_38___________________________________ (pres_plasma_fuel_profile38)___ 3.54177659896976431e+05 +Total_plasma_fuel_pressure_at_point_39___________________________________ (pres_plasma_fuel_profile39)___ 3.53985543620554497e+05 +Total_plasma_fuel_pressure_at_point_40___________________________________ (pres_plasma_fuel_profile40)___ 3.53788502328407951e+05 +Total_plasma_fuel_pressure_at_point_41___________________________________ (pres_plasma_fuel_profile41)___ 3.53586541016082338e+05 +Total_plasma_fuel_pressure_at_point_42___________________________________ (pres_plasma_fuel_profile42)___ 3.53379664804858796e+05 +Total_plasma_fuel_pressure_at_point_43___________________________________ (pres_plasma_fuel_profile43)___ 3.53167878941699222e+05 +Total_plasma_fuel_pressure_at_point_44___________________________________ (pres_plasma_fuel_profile44)___ 3.52951188799189986e+05 +Total_plasma_fuel_pressure_at_point_45___________________________________ (pres_plasma_fuel_profile45)___ 3.52729599875483895e+05 +Total_plasma_fuel_pressure_at_point_46___________________________________ (pres_plasma_fuel_profile46)___ 3.52503117794241291e+05 +Total_plasma_fuel_pressure_at_point_47___________________________________ (pres_plasma_fuel_profile47)___ 3.52271748304569570e+05 +Total_plasma_fuel_pressure_at_point_48___________________________________ (pres_plasma_fuel_profile48)___ 3.52035497280961019e+05 +Total_plasma_fuel_pressure_at_point_49___________________________________ (pres_plasma_fuel_profile49)___ 3.51794370723229949e+05 +Total_plasma_fuel_pressure_at_point_50___________________________________ (pres_plasma_fuel_profile50)___ 3.51548374756448087e+05 +Total_plasma_fuel_pressure_at_point_51___________________________________ (pres_plasma_fuel_profile51)___ 3.51297515630878101e+05 +Total_plasma_fuel_pressure_at_point_52___________________________________ (pres_plasma_fuel_profile52)___ 3.51041799721907533e+05 +Total_plasma_fuel_pressure_at_point_53___________________________________ (pres_plasma_fuel_profile53)___ 3.50781233529978432e+05 +Total_plasma_fuel_pressure_at_point_54___________________________________ (pres_plasma_fuel_profile54)___ 3.50515823680518894e+05 +Total_plasma_fuel_pressure_at_point_55___________________________________ (pres_plasma_fuel_profile55)___ 3.50245576923870598e+05 +Total_plasma_fuel_pressure_at_point_56___________________________________ (pres_plasma_fuel_profile56)___ 3.49970500135216687e+05 +Total_plasma_fuel_pressure_at_point_57___________________________________ (pres_plasma_fuel_profile57)___ 3.49690600314507377e+05 +Total_plasma_fuel_pressure_at_point_58___________________________________ (pres_plasma_fuel_profile58)___ 3.49405884586384520e+05 +Total_plasma_fuel_pressure_at_point_59___________________________________ (pres_plasma_fuel_profile59)___ 3.49116360200104769e+05 +Total_plasma_fuel_pressure_at_point_60___________________________________ (pres_plasma_fuel_profile60)___ 3.48822034529461234e+05 +Total_plasma_fuel_pressure_at_point_61___________________________________ (pres_plasma_fuel_profile61)___ 3.48522915072704491e+05 +Total_plasma_fuel_pressure_at_point_62___________________________________ (pres_plasma_fuel_profile62)___ 3.48219009452460392e+05 +Total_plasma_fuel_pressure_at_point_63___________________________________ (pres_plasma_fuel_profile63)___ 3.47910325415649626e+05 +Total_plasma_fuel_pressure_at_point_64___________________________________ (pres_plasma_fuel_profile64)___ 3.47596870833402150e+05 +Total_plasma_fuel_pressure_at_point_65___________________________________ (pres_plasma_fuel_profile65)___ 3.47278653700973606e+05 +Total_plasma_fuel_pressure_at_point_66___________________________________ (pres_plasma_fuel_profile66)___ 3.46955682137657946e+05 +Total_plasma_fuel_pressure_at_point_67___________________________________ (pres_plasma_fuel_profile67)___ 3.46627964386700478e+05 +Total_plasma_fuel_pressure_at_point_68___________________________________ (pres_plasma_fuel_profile68)___ 3.46295508815208043e+05 +Total_plasma_fuel_pressure_at_point_69___________________________________ (pres_plasma_fuel_profile69)___ 3.45958323914059030e+05 +Total_plasma_fuel_pressure_at_point_70___________________________________ (pres_plasma_fuel_profile70)___ 3.45616418297811644e+05 +Total_plasma_fuel_pressure_at_point_71___________________________________ (pres_plasma_fuel_profile71)___ 3.45269800704609719e+05 +Total_plasma_fuel_pressure_at_point_72___________________________________ (pres_plasma_fuel_profile72)___ 3.44918479996089707e+05 +Total_plasma_fuel_pressure_at_point_73___________________________________ (pres_plasma_fuel_profile73)___ 3.44562465157283295e+05 +Total_plasma_fuel_pressure_at_point_74___________________________________ (pres_plasma_fuel_profile74)___ 3.44201765296520840e+05 +Total_plasma_fuel_pressure_at_point_75___________________________________ (pres_plasma_fuel_profile75)___ 3.43836389645332587e+05 +Total_plasma_fuel_pressure_at_point_76___________________________________ (pres_plasma_fuel_profile76)___ 3.43466347558348847e+05 +Total_plasma_fuel_pressure_at_point_77___________________________________ (pres_plasma_fuel_profile77)___ 3.43091648513198073e+05 +Total_plasma_fuel_pressure_at_point_78___________________________________ (pres_plasma_fuel_profile78)___ 3.42712302110404591e+05 +Total_plasma_fuel_pressure_at_point_79___________________________________ (pres_plasma_fuel_profile79)___ 3.42328318073284230e+05 +Total_plasma_fuel_pressure_at_point_80___________________________________ (pres_plasma_fuel_profile80)___ 3.41939706247839029e+05 +Total_plasma_fuel_pressure_at_point_81___________________________________ (pres_plasma_fuel_profile81)___ 3.41546476602650131e+05 +Total_plasma_fuel_pressure_at_point_82___________________________________ (pres_plasma_fuel_profile82)___ 3.41148639228769694e+05 +Total_plasma_fuel_pressure_at_point_83___________________________________ (pres_plasma_fuel_profile83)___ 3.40746204339611693e+05 +Total_plasma_fuel_pressure_at_point_84___________________________________ (pres_plasma_fuel_profile84)___ 3.40339182270840276e+05 +Total_plasma_fuel_pressure_at_point_85___________________________________ (pres_plasma_fuel_profile85)___ 3.39927583480257948e+05 +Total_plasma_fuel_pressure_at_point_86___________________________________ (pres_plasma_fuel_profile86)___ 3.39511418547691777e+05 +Total_plasma_fuel_pressure_at_point_87___________________________________ (pres_plasma_fuel_profile87)___ 3.39090698174878431e+05 +Total_plasma_fuel_pressure_at_point_88___________________________________ (pres_plasma_fuel_profile88)___ 3.38665433185347472e+05 +Total_plasma_fuel_pressure_at_point_89___________________________________ (pres_plasma_fuel_profile89)___ 3.38235634524304536e+05 +Total_plasma_fuel_pressure_at_point_90___________________________________ (pres_plasma_fuel_profile90)___ 3.37801313258510665e+05 +Total_plasma_fuel_pressure_at_point_91___________________________________ (pres_plasma_fuel_profile91)___ 3.37362480576163332e+05 +Total_plasma_fuel_pressure_at_point_92___________________________________ (pres_plasma_fuel_profile92)___ 3.36919147786773799e+05 +Total_plasma_fuel_pressure_at_point_93___________________________________ (pres_plasma_fuel_profile93)___ 3.36471326321044064e+05 +Total_plasma_fuel_pressure_at_point_94___________________________________ (pres_plasma_fuel_profile94)___ 3.36019027730742469e+05 +Total_plasma_fuel_pressure_at_point_95___________________________________ (pres_plasma_fuel_profile95)___ 3.35562263688577514e+05 +Total_plasma_fuel_pressure_at_point_96___________________________________ (pres_plasma_fuel_profile96)___ 3.35101045988070895e+05 +Total_plasma_fuel_pressure_at_point_97___________________________________ (pres_plasma_fuel_profile97)___ 3.34635386543428292e+05 +Total_plasma_fuel_pressure_at_point_98___________________________________ (pres_plasma_fuel_profile98)___ 3.34165297389410553e+05 +Total_plasma_fuel_pressure_at_point_99___________________________________ (pres_plasma_fuel_profile99)___ 3.33690790681200568e+05 +Total_plasma_fuel_pressure_at_point_100__________________________________ (pres_plasma_fuel_profile100)__ 3.33211878694272134e+05 +Total_plasma_fuel_pressure_at_point_101__________________________________ (pres_plasma_fuel_profile101)__ 3.32728573824255436e+05 +Total_plasma_fuel_pressure_at_point_102__________________________________ (pres_plasma_fuel_profile102)__ 3.32240888586800662e+05 +Total_plasma_fuel_pressure_at_point_103__________________________________ (pres_plasma_fuel_profile103)__ 3.31748835617442674e+05 +Total_plasma_fuel_pressure_at_point_104__________________________________ (pres_plasma_fuel_profile104)__ 3.31252427671462123e+05 +Total_plasma_fuel_pressure_at_point_105__________________________________ (pres_plasma_fuel_profile105)__ 3.30751677623745869e+05 +Total_plasma_fuel_pressure_at_point_106__________________________________ (pres_plasma_fuel_profile106)__ 3.30246598468646058e+05 +Total_plasma_fuel_pressure_at_point_107__________________________________ (pres_plasma_fuel_profile107)__ 3.29737203319838329e+05 +Total_plasma_fuel_pressure_at_point_108__________________________________ (pres_plasma_fuel_profile108)__ 3.29223505410178273e+05 +Total_plasma_fuel_pressure_at_point_109__________________________________ (pres_plasma_fuel_profile109)__ 3.28705518091556034e+05 +Total_plasma_fuel_pressure_at_point_110__________________________________ (pres_plasma_fuel_profile110)__ 3.28183254834749911e+05 +Total_plasma_fuel_pressure_at_point_111__________________________________ (pres_plasma_fuel_profile111)__ 3.27656729229279794e+05 +Total_plasma_fuel_pressure_at_point_112__________________________________ (pres_plasma_fuel_profile112)__ 3.27125954983256990e+05 +Total_plasma_fuel_pressure_at_point_113__________________________________ (pres_plasma_fuel_profile113)__ 3.26590945923234860e+05 +Total_plasma_fuel_pressure_at_point_114__________________________________ (pres_plasma_fuel_profile114)__ 3.26051715994056081e+05 +Total_plasma_fuel_pressure_at_point_115__________________________________ (pres_plasma_fuel_profile115)__ 3.25508279258700903e+05 +Total_plasma_fuel_pressure_at_point_116__________________________________ (pres_plasma_fuel_profile116)__ 3.24960649898131553e+05 +Total_plasma_fuel_pressure_at_point_117__________________________________ (pres_plasma_fuel_profile117)__ 3.24408842211137642e+05 +Total_plasma_fuel_pressure_at_point_118__________________________________ (pres_plasma_fuel_profile118)__ 3.23852870614178304e+05 +Total_plasma_fuel_pressure_at_point_119__________________________________ (pres_plasma_fuel_profile119)__ 3.23292749641223869e+05 +Total_plasma_fuel_pressure_at_point_120__________________________________ (pres_plasma_fuel_profile120)__ 3.22728493943596841e+05 +Total_plasma_fuel_pressure_at_point_121__________________________________ (pres_plasma_fuel_profile121)__ 3.22160118289809965e+05 +Total_plasma_fuel_pressure_at_point_122__________________________________ (pres_plasma_fuel_profile122)__ 3.21587637565404235e+05 +Total_plasma_fuel_pressure_at_point_123__________________________________ (pres_plasma_fuel_profile123)__ 3.21011066772785154e+05 +Total_plasma_fuel_pressure_at_point_124__________________________________ (pres_plasma_fuel_profile124)__ 3.20430421031057485e+05 +Total_plasma_fuel_pressure_at_point_125__________________________________ (pres_plasma_fuel_profile125)__ 3.19845715575859009e+05 +Total_plasma_fuel_pressure_at_point_126__________________________________ (pres_plasma_fuel_profile126)__ 3.19256965759192419e+05 +Total_plasma_fuel_pressure_at_point_127__________________________________ (pres_plasma_fuel_profile127)__ 3.18664187049257103e+05 +Total_plasma_fuel_pressure_at_point_128__________________________________ (pres_plasma_fuel_profile128)__ 3.18067395030277548e+05 +Total_plasma_fuel_pressure_at_point_129__________________________________ (pres_plasma_fuel_profile129)__ 3.17466605402332381e+05 +Total_plasma_fuel_pressure_at_point_130__________________________________ (pres_plasma_fuel_profile130)__ 3.16861833981181204e+05 +Total_plasma_fuel_pressure_at_point_131__________________________________ (pres_plasma_fuel_profile131)__ 3.16253096698090085e+05 +Total_plasma_fuel_pressure_at_point_132__________________________________ (pres_plasma_fuel_profile132)__ 3.15640409599655657e+05 +Total_plasma_fuel_pressure_at_point_133__________________________________ (pres_plasma_fuel_profile133)__ 3.15023788847628923e+05 +Total_plasma_fuel_pressure_at_point_134__________________________________ (pres_plasma_fuel_profile134)__ 3.14403250718735624e+05 +Total_plasma_fuel_pressure_at_point_135__________________________________ (pres_plasma_fuel_profile135)__ 3.13778811604497780e+05 +Total_plasma_fuel_pressure_at_point_136__________________________________ (pres_plasma_fuel_profile136)__ 3.13150488011052134e+05 +Total_plasma_fuel_pressure_at_point_137__________________________________ (pres_plasma_fuel_profile137)__ 3.12518296558967791e+05 +Total_plasma_fuel_pressure_at_point_138__________________________________ (pres_plasma_fuel_profile138)__ 3.11882253983063041e+05 +Total_plasma_fuel_pressure_at_point_139__________________________________ (pres_plasma_fuel_profile139)__ 3.11242377132220136e+05 +Total_plasma_fuel_pressure_at_point_140__________________________________ (pres_plasma_fuel_profile140)__ 3.10598682969199319e+05 +Total_plasma_fuel_pressure_at_point_141__________________________________ (pres_plasma_fuel_profile141)__ 3.09951188570451224e+05 +Total_plasma_fuel_pressure_at_point_142__________________________________ (pres_plasma_fuel_profile142)__ 3.09299911125927989e+05 +Total_plasma_fuel_pressure_at_point_143__________________________________ (pres_plasma_fuel_profile143)__ 3.08644867938893673e+05 +Total_plasma_fuel_pressure_at_point_144__________________________________ (pres_plasma_fuel_profile144)__ 3.07986076425732346e+05 +Total_plasma_fuel_pressure_at_point_145__________________________________ (pres_plasma_fuel_profile145)__ 3.07323554115755600e+05 +Total_plasma_fuel_pressure_at_point_146__________________________________ (pres_plasma_fuel_profile146)__ 3.06657318651008711e+05 +Total_plasma_fuel_pressure_at_point_147__________________________________ (pres_plasma_fuel_profile147)__ 3.05987387786075531e+05 +Total_plasma_fuel_pressure_at_point_148__________________________________ (pres_plasma_fuel_profile148)__ 3.05313779387881688e+05 +Total_plasma_fuel_pressure_at_point_149__________________________________ (pres_plasma_fuel_profile149)__ 3.04636511435497436e+05 +Total_plasma_fuel_pressure_at_point_150__________________________________ (pres_plasma_fuel_profile150)__ 3.03955602019938000e+05 +Total_plasma_fuel_pressure_at_point_151__________________________________ (pres_plasma_fuel_profile151)__ 3.03271069343963289e+05 +Total_plasma_fuel_pressure_at_point_152__________________________________ (pres_plasma_fuel_profile152)__ 3.02582931721877074e+05 +Total_plasma_fuel_pressure_at_point_153__________________________________ (pres_plasma_fuel_profile153)__ 3.01891207579323556e+05 +Total_plasma_fuel_pressure_at_point_154__________________________________ (pres_plasma_fuel_profile154)__ 3.01195915453083406e+05 +Total_plasma_fuel_pressure_at_point_155__________________________________ (pres_plasma_fuel_profile155)__ 3.00497073990868812e+05 +Total_plasma_fuel_pressure_at_point_156__________________________________ (pres_plasma_fuel_profile156)__ 2.99794701951116731e+05 +Total_plasma_fuel_pressure_at_point_157__________________________________ (pres_plasma_fuel_profile157)__ 2.99088818202780909e+05 +Total_plasma_fuel_pressure_at_point_158__________________________________ (pres_plasma_fuel_profile158)__ 2.98379441725123266e+05 +Total_plasma_fuel_pressure_at_point_159__________________________________ (pres_plasma_fuel_profile159)__ 2.97666591607503477e+05 +Total_plasma_fuel_pressure_at_point_160__________________________________ (pres_plasma_fuel_profile160)__ 2.96950287049167731e+05 +Total_plasma_fuel_pressure_at_point_161__________________________________ (pres_plasma_fuel_profile161)__ 2.96230547359035816e+05 +Total_plasma_fuel_pressure_at_point_162__________________________________ (pres_plasma_fuel_profile162)__ 2.95507391955487430e+05 +Total_plasma_fuel_pressure_at_point_163__________________________________ (pres_plasma_fuel_profile163)__ 2.94780840366147109e+05 +Total_plasma_fuel_pressure_at_point_164__________________________________ (pres_plasma_fuel_profile164)__ 2.94050912227667810e+05 +Total_plasma_fuel_pressure_at_point_165__________________________________ (pres_plasma_fuel_profile165)__ 2.93317627285513794e+05 +Total_plasma_fuel_pressure_at_point_166__________________________________ (pres_plasma_fuel_profile166)__ 2.92581005393741711e+05 +Total_plasma_fuel_pressure_at_point_167__________________________________ (pres_plasma_fuel_profile167)__ 2.91841066514780803e+05 +Total_plasma_fuel_pressure_at_point_168__________________________________ (pres_plasma_fuel_profile168)__ 2.91097830719212245e+05 +Total_plasma_fuel_pressure_at_point_169__________________________________ (pres_plasma_fuel_profile169)__ 2.90351318185546435e+05 +Total_plasma_fuel_pressure_at_point_170__________________________________ (pres_plasma_fuel_profile170)__ 2.89601549200000416e+05 +Total_plasma_fuel_pressure_at_point_171__________________________________ (pres_plasma_fuel_profile171)__ 2.88848544156272779e+05 +Total_plasma_fuel_pressure_at_point_172__________________________________ (pres_plasma_fuel_profile172)__ 2.88092323555318464e+05 +Total_plasma_fuel_pressure_at_point_173__________________________________ (pres_plasma_fuel_profile173)__ 2.87332908005122037e+05 +Total_plasma_fuel_pressure_at_point_174__________________________________ (pres_plasma_fuel_profile174)__ 2.86570318220469286e+05 +Total_plasma_fuel_pressure_at_point_175__________________________________ (pres_plasma_fuel_profile175)__ 2.85804575022719800e+05 +Total_plasma_fuel_pressure_at_point_176__________________________________ (pres_plasma_fuel_profile176)__ 2.85035699339574610e+05 +Total_plasma_fuel_pressure_at_point_177__________________________________ (pres_plasma_fuel_profile177)__ 2.84263712204847077e+05 +Total_plasma_fuel_pressure_at_point_178__________________________________ (pres_plasma_fuel_profile178)__ 2.83488634758229717e+05 +Total_plasma_fuel_pressure_at_point_179__________________________________ (pres_plasma_fuel_profile179)__ 2.82710488245060726e+05 +Total_plasma_fuel_pressure_at_point_180__________________________________ (pres_plasma_fuel_profile180)__ 2.81929294016090396e+05 +Total_plasma_fuel_pressure_at_point_181__________________________________ (pres_plasma_fuel_profile181)__ 2.81145073527244851e+05 +Total_plasma_fuel_pressure_at_point_182__________________________________ (pres_plasma_fuel_profile182)__ 2.80357848339389777e+05 +Total_plasma_fuel_pressure_at_point_183__________________________________ (pres_plasma_fuel_profile183)__ 2.79567640118093230e+05 +Total_plasma_fuel_pressure_at_point_184__________________________________ (pres_plasma_fuel_profile184)__ 2.78774470633386692e+05 +Total_plasma_fuel_pressure_at_point_185__________________________________ (pres_plasma_fuel_profile185)__ 2.77978361759525724e+05 +Total_plasma_fuel_pressure_at_point_186__________________________________ (pres_plasma_fuel_profile186)__ 2.77179335474749387e+05 +Total_plasma_fuel_pressure_at_point_187__________________________________ (pres_plasma_fuel_profile187)__ 2.76377413861038513e+05 +Total_plasma_fuel_pressure_at_point_188__________________________________ (pres_plasma_fuel_profile188)__ 2.75572619103873149e+05 +Total_plasma_fuel_pressure_at_point_189__________________________________ (pres_plasma_fuel_profile189)__ 2.74764973491989484e+05 +Total_plasma_fuel_pressure_at_point_190__________________________________ (pres_plasma_fuel_profile190)__ 2.73954499417135085e+05 +Total_plasma_fuel_pressure_at_point_191__________________________________ (pres_plasma_fuel_profile191)__ 2.73141219373823260e+05 +Total_plasma_fuel_pressure_at_point_192__________________________________ (pres_plasma_fuel_profile192)__ 2.72325155959087308e+05 +Total_plasma_fuel_pressure_at_point_193__________________________________ (pres_plasma_fuel_profile193)__ 2.71506331872232724e+05 +Total_plasma_fuel_pressure_at_point_194__________________________________ (pres_plasma_fuel_profile194)__ 2.70684769914589706e+05 +Total_plasma_fuel_pressure_at_point_195__________________________________ (pres_plasma_fuel_profile195)__ 2.69860492989263672e+05 +Total_plasma_fuel_pressure_at_point_196__________________________________ (pres_plasma_fuel_profile196)__ 2.69033524100885552e+05 +Total_plasma_fuel_pressure_at_point_197__________________________________ (pres_plasma_fuel_profile197)__ 2.68203886355361145e+05 +Total_plasma_fuel_pressure_at_point_198__________________________________ (pres_plasma_fuel_profile198)__ 2.67371602959619544e+05 +Total_plasma_fuel_pressure_at_point_199__________________________________ (pres_plasma_fuel_profile199)__ 2.66536697221360693e+05 +Total_plasma_fuel_pressure_at_point_200__________________________________ (pres_plasma_fuel_profile200)__ 2.65699192548802996e+05 +Total_plasma_fuel_pressure_at_point_201__________________________________ (pres_plasma_fuel_profile201)__ 2.64859112450427900e+05 +Total_plasma_fuel_pressure_at_point_202__________________________________ (pres_plasma_fuel_profile202)__ 2.64016480534726812e+05 +Total_plasma_fuel_pressure_at_point_203__________________________________ (pres_plasma_fuel_profile203)__ 2.63171320509944519e+05 +Total_plasma_fuel_pressure_at_point_204__________________________________ (pres_plasma_fuel_profile204)__ 2.62323656183824176e+05 +Total_plasma_fuel_pressure_at_point_205__________________________________ (pres_plasma_fuel_profile205)__ 2.61473511463349249e+05 +Total_plasma_fuel_pressure_at_point_206__________________________________ (pres_plasma_fuel_profile206)__ 2.60620910354486958e+05 +Total_plasma_fuel_pressure_at_point_207__________________________________ (pres_plasma_fuel_profile207)__ 2.59765876961930044e+05 +Total_plasma_fuel_pressure_at_point_208__________________________________ (pres_plasma_fuel_profile208)__ 2.58908435488837335e+05 +Total_plasma_fuel_pressure_at_point_209__________________________________ (pres_plasma_fuel_profile209)__ 2.58048610236575216e+05 +Total_plasma_fuel_pressure_at_point_210__________________________________ (pres_plasma_fuel_profile210)__ 2.57186425604457094e+05 +Total_plasma_fuel_pressure_at_point_211__________________________________ (pres_plasma_fuel_profile211)__ 2.56321906089482945e+05 +Total_plasma_fuel_pressure_at_point_212__________________________________ (pres_plasma_fuel_profile212)__ 2.55455076286078664e+05 +Total_plasma_fuel_pressure_at_point_213__________________________________ (pres_plasma_fuel_profile213)__ 2.54585960885833891e+05 +Total_plasma_fuel_pressure_at_point_214__________________________________ (pres_plasma_fuel_profile214)__ 2.53714584677240200e+05 +Total_plasma_fuel_pressure_at_point_215__________________________________ (pres_plasma_fuel_profile215)__ 2.52840972545429104e+05 +Total_plasma_fuel_pressure_at_point_216__________________________________ (pres_plasma_fuel_profile216)__ 2.51965149471908255e+05 +Total_plasma_fuel_pressure_at_point_217__________________________________ (pres_plasma_fuel_profile217)__ 2.51087140534298436e+05 +Total_plasma_fuel_pressure_at_point_218__________________________________ (pres_plasma_fuel_profile218)__ 2.50206970906070317e+05 +Total_plasma_fuel_pressure_at_point_219__________________________________ (pres_plasma_fuel_profile219)__ 2.49324665856279811e+05 +Total_plasma_fuel_pressure_at_point_220__________________________________ (pres_plasma_fuel_profile220)__ 2.48440250749304105e+05 +Total_plasma_fuel_pressure_at_point_221__________________________________ (pres_plasma_fuel_profile221)__ 2.47553751044576755e+05 +Total_plasma_fuel_pressure_at_point_222__________________________________ (pres_plasma_fuel_profile222)__ 2.46665192296323046e+05 +Total_plasma_fuel_pressure_at_point_223__________________________________ (pres_plasma_fuel_profile223)__ 2.45774600153295061e+05 +Total_plasma_fuel_pressure_at_point_224__________________________________ (pres_plasma_fuel_profile224)__ 2.44882000358505931e+05 +Total_plasma_fuel_pressure_at_point_225__________________________________ (pres_plasma_fuel_profile225)__ 2.43987418748965225e+05 +Total_plasma_fuel_pressure_at_point_226__________________________________ (pres_plasma_fuel_profile226)__ 2.43090881255412794e+05 +Total_plasma_fuel_pressure_at_point_227__________________________________ (pres_plasma_fuel_profile227)__ 2.42192413902053755e+05 +Total_plasma_fuel_pressure_at_point_228__________________________________ (pres_plasma_fuel_profile228)__ 2.41292042806292651e+05 +Total_plasma_fuel_pressure_at_point_229__________________________________ (pres_plasma_fuel_profile229)__ 2.40389794178468175e+05 +Total_plasma_fuel_pressure_at_point_230__________________________________ (pres_plasma_fuel_profile230)__ 2.39485694321587711e+05 +Total_plasma_fuel_pressure_at_point_231__________________________________ (pres_plasma_fuel_profile231)__ 2.38579769631061645e+05 +Total_plasma_fuel_pressure_at_point_232__________________________________ (pres_plasma_fuel_profile232)__ 2.37672046594439104e+05 +Total_plasma_fuel_pressure_at_point_233__________________________________ (pres_plasma_fuel_profile233)__ 2.36762551791141566e+05 +Total_plasma_fuel_pressure_at_point_234__________________________________ (pres_plasma_fuel_profile234)__ 2.35851311892199825e+05 +Total_plasma_fuel_pressure_at_point_235__________________________________ (pres_plasma_fuel_profile235)__ 2.34938353659988410e+05 +Total_plasma_fuel_pressure_at_point_236__________________________________ (pres_plasma_fuel_profile236)__ 2.34023703947961709e+05 +Total_plasma_fuel_pressure_at_point_237__________________________________ (pres_plasma_fuel_profile237)__ 2.33107389700390544e+05 +Total_plasma_fuel_pressure_at_point_238__________________________________ (pres_plasma_fuel_profile238)__ 2.32189437952099222e+05 +Total_plasma_fuel_pressure_at_point_239__________________________________ (pres_plasma_fuel_profile239)__ 2.31269875828201941e+05 +Total_plasma_fuel_pressure_at_point_240__________________________________ (pres_plasma_fuel_profile240)__ 2.30348730543841666e+05 +Total_plasma_fuel_pressure_at_point_241__________________________________ (pres_plasma_fuel_profile241)__ 2.29426029403928114e+05 +Total_plasma_fuel_pressure_at_point_242__________________________________ (pres_plasma_fuel_profile242)__ 2.28501799802876776e+05 +Total_plasma_fuel_pressure_at_point_243__________________________________ (pres_plasma_fuel_profile243)__ 2.27576069224349339e+05 +Total_plasma_fuel_pressure_at_point_244__________________________________ (pres_plasma_fuel_profile244)__ 2.26648865240994142e+05 +Total_plasma_fuel_pressure_at_point_245__________________________________ (pres_plasma_fuel_profile245)__ 2.25720215514187759e+05 +Total_plasma_fuel_pressure_at_point_246__________________________________ (pres_plasma_fuel_profile246)__ 2.24790147793777694e+05 +Total_plasma_fuel_pressure_at_point_247__________________________________ (pres_plasma_fuel_profile247)__ 2.23858689917825861e+05 +Total_plasma_fuel_pressure_at_point_248__________________________________ (pres_plasma_fuel_profile248)__ 2.22925869812353369e+05 +Total_plasma_fuel_pressure_at_point_249__________________________________ (pres_plasma_fuel_profile249)__ 2.21991715491086245e+05 +Total_plasma_fuel_pressure_at_point_250__________________________________ (pres_plasma_fuel_profile250)__ 2.21056255055202550e+05 +Total_plasma_fuel_pressure_at_point_251__________________________________ (pres_plasma_fuel_profile251)__ 2.20119516693080688e+05 +Total_plasma_fuel_pressure_at_point_252__________________________________ (pres_plasma_fuel_profile252)__ 2.19181528680049669e+05 +Total_plasma_fuel_pressure_at_point_253__________________________________ (pres_plasma_fuel_profile253)__ 2.18242319378139277e+05 +Total_plasma_fuel_pressure_at_point_254__________________________________ (pres_plasma_fuel_profile254)__ 2.17301917235834175e+05 +Total_plasma_fuel_pressure_at_point_255__________________________________ (pres_plasma_fuel_profile255)__ 2.16360350787827541e+05 +Total_plasma_fuel_pressure_at_point_256__________________________________ (pres_plasma_fuel_profile256)__ 2.15417648654777731e+05 +Total_plasma_fuel_pressure_at_point_257__________________________________ (pres_plasma_fuel_profile257)__ 2.14473839543066017e+05 +Total_plasma_fuel_pressure_at_point_258__________________________________ (pres_plasma_fuel_profile258)__ 2.13528952244557120e+05 +Total_plasma_fuel_pressure_at_point_259__________________________________ (pres_plasma_fuel_profile259)__ 2.12583015636360709e+05 +Total_plasma_fuel_pressure_at_point_260__________________________________ (pres_plasma_fuel_profile260)__ 2.11636058680596121e+05 +Total_plasma_fuel_pressure_at_point_261__________________________________ (pres_plasma_fuel_profile261)__ 2.10688110424158309e+05 +Total_plasma_fuel_pressure_at_point_262__________________________________ (pres_plasma_fuel_profile262)__ 2.09739199998487253e+05 +Total_plasma_fuel_pressure_at_point_263__________________________________ (pres_plasma_fuel_profile263)__ 2.08789356619338621e+05 +Total_plasma_fuel_pressure_at_point_264__________________________________ (pres_plasma_fuel_profile264)__ 2.07838609586558421e+05 +Total_plasma_fuel_pressure_at_point_265__________________________________ (pres_plasma_fuel_profile265)__ 2.06886988283858838e+05 +Total_plasma_fuel_pressure_at_point_266__________________________________ (pres_plasma_fuel_profile266)__ 2.05934522178598301e+05 +Total_plasma_fuel_pressure_at_point_267__________________________________ (pres_plasma_fuel_profile267)__ 2.04981240821563406e+05 +Total_plasma_fuel_pressure_at_point_268__________________________________ (pres_plasma_fuel_profile268)__ 2.04027173846755148e+05 +Total_plasma_fuel_pressure_at_point_269__________________________________ (pres_plasma_fuel_profile269)__ 2.03072350971176726e+05 +Total_plasma_fuel_pressure_at_point_270__________________________________ (pres_plasma_fuel_profile270)__ 2.02116801994626643e+05 +Total_plasma_fuel_pressure_at_point_271__________________________________ (pres_plasma_fuel_profile271)__ 2.01160556799493555e+05 +Total_plasma_fuel_pressure_at_point_272__________________________________ (pres_plasma_fuel_profile272)__ 2.00203645350556239e+05 +Total_plasma_fuel_pressure_at_point_273__________________________________ (pres_plasma_fuel_profile273)__ 1.99246097694786586e+05 +Total_plasma_fuel_pressure_at_point_274__________________________________ (pres_plasma_fuel_profile274)__ 1.98287943961156765e+05 +Total_plasma_fuel_pressure_at_point_275__________________________________ (pres_plasma_fuel_profile275)__ 1.97329214360450336e+05 +Total_plasma_fuel_pressure_at_point_276__________________________________ (pres_plasma_fuel_profile276)__ 1.96369939185078489e+05 +Total_plasma_fuel_pressure_at_point_277__________________________________ (pres_plasma_fuel_profile277)__ 1.95410148808899539e+05 +Total_plasma_fuel_pressure_at_point_278__________________________________ (pres_plasma_fuel_profile278)__ 1.94449873687044601e+05 +Total_plasma_fuel_pressure_at_point_279__________________________________ (pres_plasma_fuel_profile279)__ 1.93489144355746597e+05 +Total_plasma_fuel_pressure_at_point_280__________________________________ (pres_plasma_fuel_profile280)__ 1.92527991432175710e+05 +Total_plasma_fuel_pressure_at_point_281__________________________________ (pres_plasma_fuel_profile281)__ 1.91566445614278986e+05 +Total_plasma_fuel_pressure_at_point_282__________________________________ (pres_plasma_fuel_profile282)__ 1.90604537680626469e+05 +Total_plasma_fuel_pressure_at_point_283__________________________________ (pres_plasma_fuel_profile283)__ 1.89642298490262270e+05 +Total_plasma_fuel_pressure_at_point_284__________________________________ (pres_plasma_fuel_profile284)__ 1.88679758982561529e+05 +Total_plasma_fuel_pressure_at_point_285__________________________________ (pres_plasma_fuel_profile285)__ 1.87716950177094695e+05 +Total_plasma_fuel_pressure_at_point_286__________________________________ (pres_plasma_fuel_profile286)__ 1.86753903173496248e+05 +Total_plasma_fuel_pressure_at_point_287__________________________________ (pres_plasma_fuel_profile287)__ 1.85790649151342310e+05 +Total_plasma_fuel_pressure_at_point_288__________________________________ (pres_plasma_fuel_profile288)__ 1.84827219370032806e+05 +Total_plasma_fuel_pressure_at_point_289__________________________________ (pres_plasma_fuel_profile289)__ 1.83863645168683142e+05 +Total_plasma_fuel_pressure_at_point_290__________________________________ (pres_plasma_fuel_profile290)__ 1.82899957966021146e+05 +Total_plasma_fuel_pressure_at_point_291__________________________________ (pres_plasma_fuel_profile291)__ 1.81936189260293904e+05 +Total_plasma_fuel_pressure_at_point_292__________________________________ (pres_plasma_fuel_profile292)__ 1.80972370629179961e+05 +Total_plasma_fuel_pressure_at_point_293__________________________________ (pres_plasma_fuel_profile293)__ 1.80008533729713003e+05 +Total_plasma_fuel_pressure_at_point_294__________________________________ (pres_plasma_fuel_profile294)__ 1.79044710298211197e+05 +Total_plasma_fuel_pressure_at_point_295__________________________________ (pres_plasma_fuel_profile295)__ 1.78080932150217268e+05 +Total_plasma_fuel_pressure_at_point_296__________________________________ (pres_plasma_fuel_profile296)__ 1.77117231180447678e+05 +Total_plasma_fuel_pressure_at_point_297__________________________________ (pres_plasma_fuel_profile297)__ 1.76153639362750779e+05 +Total_plasma_fuel_pressure_at_point_298__________________________________ (pres_plasma_fuel_profile298)__ 1.75190188750075060e+05 +Total_plasma_fuel_pressure_at_point_299__________________________________ (pres_plasma_fuel_profile299)__ 1.74226911474448862e+05 +Total_plasma_fuel_pressure_at_point_300__________________________________ (pres_plasma_fuel_profile300)__ 1.73263839746969141e+05 +Total_plasma_fuel_pressure_at_point_301__________________________________ (pres_plasma_fuel_profile301)__ 1.72301005857802927e+05 +Total_plasma_fuel_pressure_at_point_302__________________________________ (pres_plasma_fuel_profile302)__ 1.71338442176199227e+05 +Total_plasma_fuel_pressure_at_point_303__________________________________ (pres_plasma_fuel_profile303)__ 1.70376181150513556e+05 +Total_plasma_fuel_pressure_at_point_304__________________________________ (pres_plasma_fuel_profile304)__ 1.69414255308244727e+05 +Total_plasma_fuel_pressure_at_point_305__________________________________ (pres_plasma_fuel_profile305)__ 1.68452697256084706e+05 +Total_plasma_fuel_pressure_at_point_306__________________________________ (pres_plasma_fuel_profile306)__ 1.67491539679981390e+05 +Total_plasma_fuel_pressure_at_point_307__________________________________ (pres_plasma_fuel_profile307)__ 1.66530815345215873e+05 +Total_plasma_fuel_pressure_at_point_308__________________________________ (pres_plasma_fuel_profile308)__ 1.65570557096493547e+05 +Total_plasma_fuel_pressure_at_point_309__________________________________ (pres_plasma_fuel_profile309)__ 1.64610797858050646e+05 +Total_plasma_fuel_pressure_at_point_310__________________________________ (pres_plasma_fuel_profile310)__ 1.63651570633775817e+05 +Total_plasma_fuel_pressure_at_point_311__________________________________ (pres_plasma_fuel_profile311)__ 1.62692908507348388e+05 +Total_plasma_fuel_pressure_at_point_312__________________________________ (pres_plasma_fuel_profile312)__ 1.61734844642392069e+05 +Total_plasma_fuel_pressure_at_point_313__________________________________ (pres_plasma_fuel_profile313)__ 1.60777412282647681e+05 +Total_plasma_fuel_pressure_at_point_314__________________________________ (pres_plasma_fuel_profile314)__ 1.59820644752162014e+05 +Total_plasma_fuel_pressure_at_point_315__________________________________ (pres_plasma_fuel_profile315)__ 1.58864575455496873e+05 +Total_plasma_fuel_pressure_at_point_316__________________________________ (pres_plasma_fuel_profile316)__ 1.57909237877956068e+05 +Total_plasma_fuel_pressure_at_point_317__________________________________ (pres_plasma_fuel_profile317)__ 1.56954665585833427e+05 +Total_plasma_fuel_pressure_at_point_318__________________________________ (pres_plasma_fuel_profile318)__ 1.56000892226680735e+05 +Total_plasma_fuel_pressure_at_point_319__________________________________ (pres_plasma_fuel_profile319)__ 1.55047951529598387e+05 +Total_plasma_fuel_pressure_at_point_320__________________________________ (pres_plasma_fuel_profile320)__ 1.54095877305546601e+05 +Total_plasma_fuel_pressure_at_point_321__________________________________ (pres_plasma_fuel_profile321)__ 1.53144703447681823e+05 +Total_plasma_fuel_pressure_at_point_322__________________________________ (pres_plasma_fuel_profile322)__ 1.52194463931715582e+05 +Total_plasma_fuel_pressure_at_point_323__________________________________ (pres_plasma_fuel_profile323)__ 1.51245192816299590e+05 +Total_plasma_fuel_pressure_at_point_324__________________________________ (pres_plasma_fuel_profile324)__ 1.50296924243435729e+05 +Total_plasma_fuel_pressure_at_point_325__________________________________ (pres_plasma_fuel_profile325)__ 1.49349692438913655e+05 +Total_plasma_fuel_pressure_at_point_326__________________________________ (pres_plasma_fuel_profile326)__ 1.48403531712775992e+05 +Total_plasma_fuel_pressure_at_point_327__________________________________ (pres_plasma_fuel_profile327)__ 1.47458476459813101e+05 +Total_plasma_fuel_pressure_at_point_328__________________________________ (pres_plasma_fuel_profile328)__ 1.46514561160086974e+05 +Total_plasma_fuel_pressure_at_point_329__________________________________ (pres_plasma_fuel_profile329)__ 1.45571820379487821e+05 +Total_plasma_fuel_pressure_at_point_330__________________________________ (pres_plasma_fuel_profile330)__ 1.44630288770321611e+05 +Total_plasma_fuel_pressure_at_point_331__________________________________ (pres_plasma_fuel_profile331)__ 1.43690001071932988e+05 +Total_plasma_fuel_pressure_at_point_332__________________________________ (pres_plasma_fuel_profile332)__ 1.42750992111361935e+05 +Total_plasma_fuel_pressure_at_point_333__________________________________ (pres_plasma_fuel_profile333)__ 1.41813296804037993e+05 +Total_plasma_fuel_pressure_at_point_334__________________________________ (pres_plasma_fuel_profile334)__ 1.40876950154511374e+05 +Total_plasma_fuel_pressure_at_point_335__________________________________ (pres_plasma_fuel_profile335)__ 1.39941987257224449e+05 +Total_plasma_fuel_pressure_at_point_336__________________________________ (pres_plasma_fuel_profile336)__ 1.39008443297323713e+05 +Total_plasma_fuel_pressure_at_point_337__________________________________ (pres_plasma_fuel_profile337)__ 1.38076353551514185e+05 +Total_plasma_fuel_pressure_at_point_338__________________________________ (pres_plasma_fuel_profile338)__ 1.37145753388958547e+05 +Total_plasma_fuel_pressure_at_point_339__________________________________ (pres_plasma_fuel_profile339)__ 1.36216678272222111e+05 +Total_plasma_fuel_pressure_at_point_340__________________________________ (pres_plasma_fuel_profile340)__ 1.35289163758265669e+05 +Total_plasma_fuel_pressure_at_point_341__________________________________ (pres_plasma_fuel_profile341)__ 1.34363245499488461e+05 +Total_plasma_fuel_pressure_at_point_342__________________________________ (pres_plasma_fuel_profile342)__ 1.33438959244822821e+05 +Total_plasma_fuel_pressure_at_point_343__________________________________ (pres_plasma_fuel_profile343)__ 1.32516340840882913e+05 +Total_plasma_fuel_pressure_at_point_344__________________________________ (pres_plasma_fuel_profile344)__ 1.31595426233170088e+05 +Total_plasma_fuel_pressure_at_point_345__________________________________ (pres_plasma_fuel_profile345)__ 1.30676251467335664e+05 +Total_plasma_fuel_pressure_at_point_346__________________________________ (pres_plasma_fuel_profile346)__ 1.29758852690506654e+05 +Total_plasma_fuel_pressure_at_point_347__________________________________ (pres_plasma_fuel_profile347)__ 1.28843266152672921e+05 +Total_plasma_fuel_pressure_at_point_348__________________________________ (pres_plasma_fuel_profile348)__ 1.27929528208142132e+05 +Total_plasma_fuel_pressure_at_point_349__________________________________ (pres_plasma_fuel_profile349)__ 1.27017675317063113e+05 +Total_plasma_fuel_pressure_at_point_350__________________________________ (pres_plasma_fuel_profile350)__ 1.26107744047021071e+05 +Total_plasma_fuel_pressure_at_point_351__________________________________ (pres_plasma_fuel_profile351)__ 1.25199771074707780e+05 +Total_plasma_fuel_pressure_at_point_352__________________________________ (pres_plasma_fuel_profile352)__ 1.24293793187670744e+05 +Total_plasma_fuel_pressure_at_point_353__________________________________ (pres_plasma_fuel_profile353)__ 1.23389847286142845e+05 +Total_plasma_fuel_pressure_at_point_354__________________________________ (pres_plasma_fuel_profile354)__ 1.22487970384958229e+05 +Total_plasma_fuel_pressure_at_point_355__________________________________ (pres_plasma_fuel_profile355)__ 1.21588199615556296e+05 +Total_plasma_fuel_pressure_at_point_356__________________________________ (pres_plasma_fuel_profile356)__ 1.20690572228078949e+05 +Total_plasma_fuel_pressure_at_point_357__________________________________ (pres_plasma_fuel_profile357)__ 1.19795125593564779e+05 +Total_plasma_fuel_pressure_at_point_358__________________________________ (pres_plasma_fuel_profile358)__ 1.18901897206244088e+05 +Total_plasma_fuel_pressure_at_point_359__________________________________ (pres_plasma_fuel_profile359)__ 1.18010924685940103e+05 +Total_plasma_fuel_pressure_at_point_360__________________________________ (pres_plasma_fuel_profile360)__ 1.17122245780580983e+05 +Total_plasma_fuel_pressure_at_point_361__________________________________ (pres_plasma_fuel_profile361)__ 1.16235898368826529e+05 +Total_plasma_fuel_pressure_at_point_362__________________________________ (pres_plasma_fuel_profile362)__ 1.15351920462816954e+05 +Total_plasma_fuel_pressure_at_point_363__________________________________ (pres_plasma_fuel_profile363)__ 1.14470350211047175e+05 +Total_plasma_fuel_pressure_at_point_364__________________________________ (pres_plasma_fuel_profile364)__ 1.13591225901374375e+05 +Total_plasma_fuel_pressure_at_point_365__________________________________ (pres_plasma_fuel_profile365)__ 1.12714585964163314e+05 +Total_plasma_fuel_pressure_at_point_366__________________________________ (pres_plasma_fuel_profile366)__ 1.11840468975577533e+05 +Total_plasma_fuel_pressure_at_point_367__________________________________ (pres_plasma_fuel_profile367)__ 1.10968913661021958e+05 +Total_plasma_fuel_pressure_at_point_368__________________________________ (pres_plasma_fuel_profile368)__ 1.10099958898745521e+05 +Total_plasma_fuel_pressure_at_point_369__________________________________ (pres_plasma_fuel_profile369)__ 1.09233643723610221e+05 +Total_plasma_fuel_pressure_at_point_370__________________________________ (pres_plasma_fuel_profile370)__ 1.08370007331035769e+05 +Total_plasma_fuel_pressure_at_point_371__________________________________ (pres_plasma_fuel_profile371)__ 1.07509089081127895e+05 +Total_plasma_fuel_pressure_at_point_372__________________________________ (pres_plasma_fuel_profile372)__ 1.06650928502999668e+05 +Total_plasma_fuel_pressure_at_point_373__________________________________ (pres_plasma_fuel_profile373)__ 1.05795565299295078e+05 +Total_plasma_fuel_pressure_at_point_374__________________________________ (pres_plasma_fuel_profile374)__ 1.04943039350926134e+05 +Total_plasma_fuel_pressure_at_point_375__________________________________ (pres_plasma_fuel_profile375)__ 1.04093390722032389e+05 +Total_plasma_fuel_pressure_at_point_376__________________________________ (pres_plasma_fuel_profile376)__ 1.03246659665176936e+05 +Total_plasma_fuel_pressure_at_point_377__________________________________ (pres_plasma_fuel_profile377)__ 1.02402886626788095e+05 +Total_plasma_fuel_pressure_at_point_378__________________________________ (pres_plasma_fuel_profile378)__ 1.01562112252862818e+05 +Total_plasma_fuel_pressure_at_point_379__________________________________ (pres_plasma_fuel_profile379)__ 1.00724377394942727e+05 +Total_plasma_fuel_pressure_at_point_380__________________________________ (pres_plasma_fuel_profile380)__ 9.98897231163792312e+04 +Total_plasma_fuel_pressure_at_point_381__________________________________ (pres_plasma_fuel_profile381)__ 9.90581906989026174e+04 +Total_plasma_fuel_pressure_at_point_382__________________________________ (pres_plasma_fuel_profile382)__ 9.82298216495112283e+04 +Total_plasma_fuel_pressure_at_point_383__________________________________ (pres_plasma_fuel_profile383)__ 9.74046577076989925e+04 +Total_plasma_fuel_pressure_at_point_384__________________________________ (pres_plasma_fuel_profile384)__ 9.65827408530395187e+04 +Total_plasma_fuel_pressure_at_point_385__________________________________ (pres_plasma_fuel_profile385)__ 9.57641133131471142e+04 +Total_plasma_fuel_pressure_at_point_386__________________________________ (pres_plasma_fuel_profile386)__ 9.49488175720353029e+04 +Total_plasma_fuel_pressure_at_point_387__________________________________ (pres_plasma_fuel_profile387)__ 9.41368963788966357e+04 +Total_plasma_fuel_pressure_at_point_388__________________________________ (pres_plasma_fuel_profile388)__ 9.33283927573269902e+04 +Total_plasma_fuel_pressure_at_point_389__________________________________ (pres_plasma_fuel_profile389)__ 9.25233500150212785e+04 +Total_plasma_fuel_pressure_at_point_390__________________________________ (pres_plasma_fuel_profile390)__ 9.17218117539673403e+04 +Total_plasma_fuel_pressure_at_point_391__________________________________ (pres_plasma_fuel_profile391)__ 9.09238218811689731e+04 +Total_plasma_fuel_pressure_at_point_392__________________________________ (pres_plasma_fuel_profile392)__ 9.01294246199286426e+04 +Total_plasma_fuel_pressure_at_point_393__________________________________ (pres_plasma_fuel_profile393)__ 8.93386645217257319e+04 +Total_plasma_fuel_pressure_at_point_394__________________________________ (pres_plasma_fuel_profile394)__ 8.85515864787248720e+04 +Total_plasma_fuel_pressure_at_point_395__________________________________ (pres_plasma_fuel_profile395)__ 8.77682357369562087e+04 +Total_plasma_fuel_pressure_at_point_396__________________________________ (pres_plasma_fuel_profile396)__ 8.69886579102081305e+04 +Total_plasma_fuel_pressure_at_point_397__________________________________ (pres_plasma_fuel_profile397)__ 8.62128989946793445e+04 +Total_plasma_fuel_pressure_at_point_398__________________________________ (pres_plasma_fuel_profile398)__ 8.54410053844385839e+04 +Total_plasma_fuel_pressure_at_point_399__________________________________ (pres_plasma_fuel_profile399)__ 8.46730238877460797e+04 +Total_plasma_fuel_pressure_at_point_400__________________________________ (pres_plasma_fuel_profile400)__ 8.39090017442928074e+04 +Total_plasma_fuel_pressure_at_point_401__________________________________ (pres_plasma_fuel_profile401)__ 8.31489866434210562e+04 +Total_plasma_fuel_pressure_at_point_402__________________________________ (pres_plasma_fuel_profile402)__ 8.23930267433911940e+04 +Total_plasma_fuel_pressure_at_point_403__________________________________ (pres_plasma_fuel_profile403)__ 8.16411706917695992e+04 +Total_plasma_fuel_pressure_at_point_404__________________________________ (pres_plasma_fuel_profile404)__ 8.08934676470140985e+04 +Total_plasma_fuel_pressure_at_point_405__________________________________ (pres_plasma_fuel_profile405)__ 8.01499673013440188e+04 +Total_plasma_fuel_pressure_at_point_406__________________________________ (pres_plasma_fuel_profile406)__ 7.94107199049864867e+04 +Total_plasma_fuel_pressure_at_point_407__________________________________ (pres_plasma_fuel_profile407)__ 7.86757762919005327e+04 +Total_plasma_fuel_pressure_at_point_408__________________________________ (pres_plasma_fuel_profile408)__ 7.79451879070882569e+04 +Total_plasma_fuel_pressure_at_point_409__________________________________ (pres_plasma_fuel_profile409)__ 7.72190068356140691e+04 +Total_plasma_fuel_pressure_at_point_410__________________________________ (pres_plasma_fuel_profile410)__ 7.64972858334613265e+04 +Total_plasma_fuel_pressure_at_point_411__________________________________ (pres_plasma_fuel_profile411)__ 7.57800783603713789e+04 +Total_plasma_fuel_pressure_at_point_412__________________________________ (pres_plasma_fuel_profile412)__ 7.50674386148197955e+04 +Total_plasma_fuel_pressure_at_point_413__________________________________ (pres_plasma_fuel_profile413)__ 7.43594215713041776e+04 +Total_plasma_fuel_pressure_at_point_414__________________________________ (pres_plasma_fuel_profile414)__ 7.36560830201300414e+04 +Total_plasma_fuel_pressure_at_point_415__________________________________ (pres_plasma_fuel_profile415)__ 7.29574796099047235e+04 +Total_plasma_fuel_pressure_at_point_416__________________________________ (pres_plasma_fuel_profile416)__ 7.22636688929668744e+04 +Total_plasma_fuel_pressure_at_point_417__________________________________ (pres_plasma_fuel_profile417)__ 7.15747093740052078e+04 +Total_plasma_fuel_pressure_at_point_418__________________________________ (pres_plasma_fuel_profile418)__ 7.08906605621457711e+04 +Total_plasma_fuel_pressure_at_point_419__________________________________ (pres_plasma_fuel_profile419)__ 7.02115830268175632e+04 +Total_plasma_fuel_pressure_at_point_420__________________________________ (pres_plasma_fuel_profile420)__ 6.95375384577398363e+04 +Total_plasma_fuel_pressure_at_point_421__________________________________ (pres_plasma_fuel_profile421)__ 6.88685897294136375e+04 +Total_plasma_fuel_pressure_at_point_422__________________________________ (pres_plasma_fuel_profile422)__ 6.82048009705429431e+04 +Total_plasma_fuel_pressure_at_point_423__________________________________ (pres_plasma_fuel_profile423)__ 6.75462376388612611e+04 +Total_plasma_fuel_pressure_at_point_424__________________________________ (pres_plasma_fuel_profile424)__ 6.68929666018946009e+04 +Total_plasma_fuel_pressure_at_point_425__________________________________ (pres_plasma_fuel_profile425)__ 6.62450562242586748e+04 +Total_plasma_fuel_pressure_at_point_426__________________________________ (pres_plasma_fuel_profile426)__ 6.56025764621593989e+04 +Total_plasma_fuel_pressure_at_point_427__________________________________ (pres_plasma_fuel_profile427)__ 6.49655989658532199e+04 +Total_plasma_fuel_pressure_at_point_428__________________________________ (pres_plasma_fuel_profile428)__ 6.43341971909208296e+04 +Total_plasma_fuel_pressure_at_point_429__________________________________ (pres_plasma_fuel_profile429)__ 6.37084465193203723e+04 +Total_plasma_fuel_pressure_at_point_430__________________________________ (pres_plasma_fuel_profile430)__ 6.30884243913201572e+04 +Total_plasma_fuel_pressure_at_point_431__________________________________ (pres_plasma_fuel_profile431)__ 6.24742104495608946e+04 +Total_plasma_fuel_pressure_at_point_432__________________________________ (pres_plasma_fuel_profile432)__ 6.18658866966793066e+04 +Total_plasma_fuel_pressure_at_point_433__________________________________ (pres_plasma_fuel_profile433)__ 6.12635376681319103e+04 +Total_plasma_fuel_pressure_at_point_434__________________________________ (pres_plasma_fuel_profile434)__ 6.06672506221071235e+04 +Total_plasma_fuel_pressure_at_point_435__________________________________ (pres_plasma_fuel_profile435)__ 6.00771157487027958e+04 +Total_plasma_fuel_pressure_at_point_436__________________________________ (pres_plasma_fuel_profile436)__ 5.94932264008957281e+04 +Total_plasma_fuel_pressure_at_point_437__________________________________ (pres_plasma_fuel_profile437)__ 5.89156793502391447e+04 +Total_plasma_fuel_pressure_at_point_438__________________________________ (pres_plasma_fuel_profile438)__ 5.83445750707226107e+04 +Total_plasma_fuel_pressure_at_point_439__________________________________ (pres_plasma_fuel_profile439)__ 5.77800180548216522e+04 +Total_plasma_fuel_pressure_at_point_440__________________________________ (pres_plasma_fuel_profile440)__ 5.72221171664886715e+04 +Total_plasma_fuel_pressure_at_point_441__________________________________ (pres_plasma_fuel_profile441)__ 5.66709860367145084e+04 +Total_plasma_fuel_pressure_at_point_442__________________________________ (pres_plasma_fuel_profile442)__ 5.61267435083682576e+04 +Total_plasma_fuel_pressure_at_point_443__________________________________ (pres_plasma_fuel_profile443)__ 5.55895141383506780e+04 +Total_plasma_fuel_pressure_at_point_444__________________________________ (pres_plasma_fuel_profile444)__ 5.50594287667491444e+04 +Total_plasma_fuel_pressure_at_point_445__________________________________ (pres_plasma_fuel_profile445)__ 5.45366251647443205e+04 +Total_plasma_fuel_pressure_at_point_446__________________________________ (pres_plasma_fuel_profile446)__ 5.40212487756257324e+04 +Total_plasma_fuel_pressure_at_point_447__________________________________ (pres_plasma_fuel_profile447)__ 5.35134535665844378e+04 +Total_plasma_fuel_pressure_at_point_448__________________________________ (pres_plasma_fuel_profile448)__ 5.30134030132045227e+04 +Total_plasma_fuel_pressure_at_point_449__________________________________ (pres_plasma_fuel_profile449)__ 5.25212712440872856e+04 +Total_plasma_fuel_pressure_at_point_450__________________________________ (pres_plasma_fuel_profile450)__ 5.20372443802682174e+04 +Total_plasma_fuel_pressure_at_point_451__________________________________ (pres_plasma_fuel_profile451)__ 5.15615221136650944e+04 +Total_plasma_fuel_pressure_at_point_452__________________________________ (pres_plasma_fuel_profile452)__ 5.10943195816603329e+04 +Total_plasma_fuel_pressure_at_point_453__________________________________ (pres_plasma_fuel_profile453)__ 5.06358696124389535e+04 +Total_plasma_fuel_pressure_at_point_454__________________________________ (pres_plasma_fuel_profile454)__ 5.01864254399299898e+04 +Total_plasma_fuel_pressure_at_point_455__________________________________ (pres_plasma_fuel_profile455)__ 4.97462640212785773e+04 +Total_plasma_fuel_pressure_at_point_456__________________________________ (pres_plasma_fuel_profile456)__ 4.93156901386330501e+04 +Total_plasma_fuel_pressure_at_point_457__________________________________ (pres_plasma_fuel_profile457)__ 4.88950415385753295e+04 +Total_plasma_fuel_pressure_at_point_458__________________________________ (pres_plasma_fuel_profile458)__ 4.84846954698352492e+04 +Total_plasma_fuel_pressure_at_point_459__________________________________ (pres_plasma_fuel_profile459)__ 4.80850771453283305e+04 +Total_plasma_fuel_pressure_at_point_460__________________________________ (pres_plasma_fuel_profile460)__ 4.76966709175995420e+04 +Total_plasma_fuel_pressure_at_point_461__________________________________ (pres_plasma_fuel_profile461)__ 4.73200353905485463e+04 +Total_plasma_fuel_pressure_at_point_462__________________________________ (pres_plasma_fuel_profile462)__ 4.69558244369362292e+04 +Total_plasma_fuel_pressure_at_point_463__________________________________ (pres_plasma_fuel_profile463)__ 4.66048174435439651e+04 +Total_plasma_fuel_pressure_at_point_464__________________________________ (pres_plasma_fuel_profile464)__ 4.62679647127500939e+04 +Total_plasma_fuel_pressure_at_point_465__________________________________ (pres_plasma_fuel_profile465)__ 4.59464593810192309e+04 +Total_plasma_fuel_pressure_at_point_466__________________________________ (pres_plasma_fuel_profile466)__ 4.56418597298111563e+04 +Total_plasma_fuel_pressure_at_point_467__________________________________ (pres_plasma_fuel_profile467)__ 4.53563188124019434e+04 +Total_plasma_fuel_pressure_at_point_468__________________________________ (pres_plasma_fuel_profile468)__ 4.50930848305558538e+04 +Total_plasma_fuel_pressure_at_point_469__________________________________ (pres_plasma_fuel_profile469)__ 4.48579157448277110e+04 +Total_plasma_fuel_pressure_at_point_470__________________________________ (pres_plasma_fuel_profile470)__ 4.46678005363328775e+04 +Total_plasma_fuel_pressure_at_point_471__________________________________ (pres_plasma_fuel_profile471)__ 4.26129224681658961e+04 +Total_plasma_fuel_pressure_at_point_472__________________________________ (pres_plasma_fuel_profile472)__ 4.05981737609085540e+04 +Total_plasma_fuel_pressure_at_point_473__________________________________ (pres_plasma_fuel_profile473)__ 3.86235544145608583e+04 +Total_plasma_fuel_pressure_at_point_474__________________________________ (pres_plasma_fuel_profile474)__ 3.66890644291228236e+04 +Total_plasma_fuel_pressure_at_point_475__________________________________ (pres_plasma_fuel_profile475)__ 3.47947038045944209e+04 +Total_plasma_fuel_pressure_at_point_476__________________________________ (pres_plasma_fuel_profile476)__ 3.29404725409756647e+04 +Total_plasma_fuel_pressure_at_point_477__________________________________ (pres_plasma_fuel_profile477)__ 3.11263706382665587e+04 +Total_plasma_fuel_pressure_at_point_478__________________________________ (pres_plasma_fuel_profile478)__ 2.93523980964671100e+04 +Total_plasma_fuel_pressure_at_point_479__________________________________ (pres_plasma_fuel_profile479)__ 2.76185549155772860e+04 +Total_plasma_fuel_pressure_at_point_480__________________________________ (pres_plasma_fuel_profile480)__ 2.59248410955971231e+04 +Total_plasma_fuel_pressure_at_point_481__________________________________ (pres_plasma_fuel_profile481)__ 2.42712566365265993e+04 +Total_plasma_fuel_pressure_at_point_482__________________________________ (pres_plasma_fuel_profile482)__ 2.26578015383657330e+04 +Total_plasma_fuel_pressure_at_point_483__________________________________ (pres_plasma_fuel_profile483)__ 2.10844758011145095e+04 +Total_plasma_fuel_pressure_at_point_484__________________________________ (pres_plasma_fuel_profile484)__ 1.95512794247729325e+04 +Total_plasma_fuel_pressure_at_point_485__________________________________ (pres_plasma_fuel_profile485)__ 1.80582124093409948e+04 +Total_plasma_fuel_pressure_at_point_486__________________________________ (pres_plasma_fuel_profile486)__ 1.66052747548187072e+04 +Total_plasma_fuel_pressure_at_point_487__________________________________ (pres_plasma_fuel_profile487)__ 1.51924664612060715e+04 +Total_plasma_fuel_pressure_at_point_488__________________________________ (pres_plasma_fuel_profile488)__ 1.38197875285030768e+04 +Total_plasma_fuel_pressure_at_point_489__________________________________ (pres_plasma_fuel_profile489)__ 1.24872379567097287e+04 +Total_plasma_fuel_pressure_at_point_490__________________________________ (pres_plasma_fuel_profile490)__ 1.11948177458260307e+04 +Total_plasma_fuel_pressure_at_point_491__________________________________ (pres_plasma_fuel_profile491)__ 9.94252689585197913e+03 +Total_plasma_fuel_pressure_at_point_492__________________________________ (pres_plasma_fuel_profile492)__ 8.73036540678757228e+03 +Total_plasma_fuel_pressure_at_point_493__________________________________ (pres_plasma_fuel_profile493)__ 7.55833327863281465e+03 +Total_plasma_fuel_pressure_at_point_494__________________________________ (pres_plasma_fuel_profile494)__ 6.42643051138770079e+03 +Total_plasma_fuel_pressure_at_point_495__________________________________ (pres_plasma_fuel_profile495)__ 5.33465710505223433e+03 +Total_plasma_fuel_pressure_at_point_496__________________________________ (pres_plasma_fuel_profile496)__ 4.28301305962641527e+03 +Total_plasma_fuel_pressure_at_point_497__________________________________ (pres_plasma_fuel_profile497)__ 3.27149837511024134e+03 +Total_plasma_fuel_pressure_at_point_498__________________________________ (pres_plasma_fuel_profile498)__ 2.30011305150371572e+03 +Total_plasma_fuel_pressure_at_point_499__________________________________ (pres_plasma_fuel_profile499)__ 1.36885708880683546e+03 +Total_plasma_fuel_pressure_at_point_500__________________________________ (pres_plasma_fuel_profile500)__ 4.77730487019603004e+02 +H_concentration__________________________________________________________ (f_nd_impurity_electrons(01))__ 7.95779991487233662e-01 OP +He_concentration_________________________________________________________ (f_nd_impurity_electrons(02))__ 8.70076989100456027e-02 +He_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons1_0)___ 9.29581552838618726e+18 OP +He_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons1_1)___ 9.29579854358191923e+18 OP +He_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons1_2)___ 9.29574758916911514e+18 OP +He_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons1_3)___ 9.29566266514777088e+18 OP +He_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons1_4)___ 9.29554377151789261e+18 OP +He_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons1_5)___ 9.29539090827947622e+18 OP +He_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons1_6)___ 9.29520407543252378e+18 OP +He_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons1_7)___ 9.29498327297703322e+18 OP +He_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons1_8)___ 9.29472850091300659e+18 OP +He_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons1_9)___ 9.29443975924044186e+18 OP +He_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons1_10)__ 9.29411704795934106e+18 OP +He_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons1_11)__ 9.29376036706970419e+18 OP +He_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons1_12)__ 9.29336971657152922e+18 OP +He_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons1_13)__ 9.29294509646482022e+18 OP +He_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons1_14)__ 9.29248650674957107e+18 OP +He_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons1_15)__ 9.29199394742578586e+18 OP +He_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons1_16)__ 9.29146741849346458e+18 OP +He_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons1_17)__ 9.29090691995260518e+18 OP +He_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons1_18)__ 9.29031245180320973e+18 OP +He_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons1_19)__ 9.28968401404527616e+18 OP +He_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons1_20)__ 9.28902160667880653e+18 OP +He_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons1_21)__ 9.28832522970379878e+18 OP +He_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons1_22)__ 9.28759488312025498e+18 OP +He_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons1_23)__ 9.28683056692817510e+18 OP +He_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons1_24)__ 9.28603228112755712e+18 OP +He_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons1_25)__ 9.28520002571840307e+18 OP +He_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons1_26)__ 9.28433380070071091e+18 OP +He_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons1_27)__ 9.28343360607448474e+18 OP +He_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons1_28)__ 9.28249944183971840e+18 OP +He_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons1_29)__ 9.28153130799641600e+18 OP +He_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons1_30)__ 9.28052920454457754e+18 OP +He_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons1_31)__ 9.27949313148420301e+18 OP +He_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons1_32)__ 9.27842308881529242e+18 OP +He_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons1_33)__ 9.27731907653784166e+18 OP +He_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons1_34)__ 9.27618109465185485e+18 OP +He_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons1_35)__ 9.27500914315732992e+18 OP +He_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons1_36)__ 9.27380322205427098e+18 OP +He_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons1_37)__ 9.27256333134267392e+18 OP +He_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons1_38)__ 9.27128947102253875e+18 OP +He_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons1_39)__ 9.26998164109386752e+18 OP +He_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons1_40)__ 9.26863984155666022e+18 OP +He_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons1_41)__ 9.26726407241091482e+18 OP +He_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons1_42)__ 9.26585433365663334e+18 OP +He_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons1_43)__ 9.26441062529381581e+18 OP +He_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons1_44)__ 9.26293294732246016e+18 OP +He_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons1_45)__ 9.26142129974256640e+18 OP +He_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons1_46)__ 9.25987568255413862e+18 OP +He_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons1_47)__ 9.25829609575717274e+18 OP +He_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons1_48)__ 9.25668253935166874e+18 OP +He_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons1_49)__ 9.25503501333762867e+18 OP +He_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons1_50)__ 9.25335351771505050e+18 OP +He_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons1_51)__ 9.25163805248393626e+18 OP +He_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons1_52)__ 9.24988861764428800e+18 OP +He_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons1_53)__ 9.24810521319609958e+18 OP +He_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons1_54)__ 9.24628783913937510e+18 OP +He_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons1_55)__ 9.24443649547411251e+18 OP +He_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons1_56)__ 9.24255118220031386e+18 OP +He_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons1_57)__ 9.24063189931797914e+18 OP +He_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons1_58)__ 9.23867864682710630e+18 OP +He_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons1_59)__ 9.23669142472769741e+18 OP +He_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons1_60)__ 9.23467023301975040e+18 OP +He_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons1_61)__ 9.23261507170326938e+18 OP +He_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons1_62)__ 9.23052594077824819e+18 OP +He_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons1_63)__ 9.22840284024469299e+18 OP +He_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons1_64)__ 9.22624577010259763e+18 OP +He_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons1_65)__ 9.22405473035196826e+18 OP +He_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons1_66)__ 9.22182972099280077e+18 OP +He_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons1_67)__ 9.21957074202509517e+18 OP +He_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons1_68)__ 9.21727779344885453e+18 OP +He_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons1_69)__ 9.21495087526407578e+18 OP +He_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons1_70)__ 9.21258998747076096e+18 OP +He_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons1_71)__ 9.21019513006890701e+18 OP +He_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons1_72)__ 9.20776630305851904e+18 OP +He_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons1_73)__ 9.20530350643959398e+18 OP +He_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons1_74)__ 9.20280674021213082e+18 OP +He_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons1_75)__ 9.20027600437612954e+18 OP +He_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons1_76)__ 9.19771129893159424e+18 OP +He_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons1_77)__ 9.19511262387851981e+18 OP +He_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons1_78)__ 9.19247997921691034e+18 OP +He_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons1_79)__ 9.18981336494676378e+18 OP +He_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons1_80)__ 9.18711278106807808e+18 OP +He_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons1_81)__ 9.18437822758085734e+18 OP +He_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons1_82)__ 9.18160970448509850e+18 OP +He_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons1_83)__ 9.17880721178080358e+18 OP +He_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons1_84)__ 9.17597074946797261e+18 OP +He_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons1_85)__ 9.17310031754660250e+18 OP +He_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons1_86)__ 9.17019591601669734e+18 OP +He_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons1_87)__ 9.16725754487825510e+18 OP +He_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons1_88)__ 9.16428520413127578e+18 OP +He_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons1_89)__ 9.16127889377576038e+18 OP +He_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons1_90)__ 9.15823861381170586e+18 OP +He_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons1_91)__ 9.15516436423911526e+18 OP +He_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons1_92)__ 9.15205614505798861e+18 OP +He_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons1_93)__ 9.14891395626832282e+18 OP +He_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons1_94)__ 9.14573779787012301e+18 OP +He_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons1_95)__ 9.14252766986338611e+18 OP +He_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons1_96)__ 9.13928357224811110e+18 OP +He_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons1_97)__ 9.13600550502429798e+18 OP +He_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons1_98)__ 9.13269346819195085e+18 OP +He_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons1_99)__ 9.12934746175106458e+18 OP +He_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons1_100)_ 9.12596748570164224e+18 OP +He_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons1_101)_ 9.12255354004368282e+18 OP +He_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons1_102)_ 9.11910562477718733e+18 OP +He_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons1_103)_ 9.11562373990215270e+18 OP +He_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons1_104)_ 9.11210788541858202e+18 OP +He_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons1_105)_ 9.10855806132647731e+18 OP +He_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons1_106)_ 9.10497426762583245e+18 OP +He_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons1_107)_ 9.10135650431665152e+18 OP +He_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons1_108)_ 9.09770477139893350e+18 OP +He_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons1_109)_ 9.09401906887267942e+18 OP +He_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons1_110)_ 9.09029939673788723e+18 OP +He_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons1_111)_ 9.08654575499455898e+18 OP +He_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons1_112)_ 9.08275814364269363e+18 OP +He_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons1_113)_ 9.07893656268229120e+18 OP +He_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons1_114)_ 9.07508101211335270e+18 OP +He_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons1_115)_ 9.07119149193587712e+18 OP +He_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons1_116)_ 9.06726800214986342e+18 OP +He_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons1_117)_ 9.06331054275531264e+18 OP +He_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons1_118)_ 9.05931911375222682e+18 OP +He_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons1_119)_ 9.05529371514060288e+18 OP +He_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons1_120)_ 9.05123434692044186e+18 OP +He_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons1_121)_ 9.04714100909174579e+18 OP +He_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons1_122)_ 9.04301370165451059e+18 OP +He_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons1_123)_ 9.03885242460873830e+18 OP +He_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons1_124)_ 9.03465717795443098e+18 OP +He_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons1_125)_ 9.03042796169158451e+18 OP +He_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons1_126)_ 9.02616477582020198e+18 OP +He_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons1_127)_ 9.02186762034028339e+18 OP +He_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons1_128)_ 9.01753649525182874e+18 OP +He_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons1_129)_ 9.01317140055483597e+18 OP +He_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons1_130)_ 9.00877233624930611e+18 OP +He_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons1_131)_ 9.00433930233524019e+18 OP +He_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons1_132)_ 8.99987229881263514e+18 OP +He_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons1_133)_ 8.99537132568149504e+18 OP +He_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons1_134)_ 8.99083638294181786e+18 OP +He_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons1_135)_ 8.98626747059360256e+18 OP +He_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons1_136)_ 8.98166458863685222e+18 OP +He_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons1_137)_ 8.97702773707156378e+18 OP +He_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons1_138)_ 8.97235691589773926e+18 OP +He_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons1_139)_ 8.96765212511537664e+18 OP +He_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons1_140)_ 8.96291336472447795e+18 OP +He_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons1_141)_ 8.95814063472504320e+18 OP +He_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons1_142)_ 8.95333393511706931e+18 OP +He_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons1_143)_ 8.94849326590055936e+18 OP +He_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons1_144)_ 8.94361862707551334e+18 OP +He_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons1_145)_ 8.93871001864193229e+18 OP +He_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons1_146)_ 8.93376744059981107e+18 OP +He_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons1_147)_ 8.92879089294915379e+18 OP +He_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons1_148)_ 8.92378037568995840e+18 OP +He_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons1_149)_ 8.91873588882222797e+18 OP +He_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons1_150)_ 8.91365743234596045e+18 OP +He_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons1_151)_ 8.90854500626115482e+18 OP +He_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons1_152)_ 8.90339861056781312e+18 OP +He_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons1_153)_ 8.89821824526593536e+18 OP +He_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons1_154)_ 8.89300391035551949e+18 OP +He_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons1_155)_ 8.88775560583656653e+18 OP +He_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons1_156)_ 8.88247333170907648e+18 OP +He_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons1_157)_ 8.87715708797305037e+18 OP +He_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons1_158)_ 8.87180687462848819e+18 OP +He_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons1_159)_ 8.86642269167538790e+18 OP +He_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons1_160)_ 8.86100453911375053e+18 OP +He_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons1_161)_ 8.85555241694357709e+18 OP +He_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons1_162)_ 8.85006632516486554e+18 OP +He_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons1_163)_ 8.84454626377761894e+18 OP +He_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons1_164)_ 8.83899223278183322e+18 OP +He_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons1_165)_ 8.83340423217751245e+18 OP +He_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons1_166)_ 8.82778226196465357e+18 OP +He_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons1_167)_ 8.82212632214325862e+18 OP +He_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons1_168)_ 8.81643641271332762e+18 OP +He_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons1_169)_ 8.81071253367485645e+18 OP +He_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons1_170)_ 8.80495468502785024e+18 OP +He_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons1_171)_ 8.79916286677230797e+18 OP +He_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons1_172)_ 8.79333707890822758e+18 OP +He_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons1_173)_ 8.78747732143561114e+18 OP +He_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons1_174)_ 8.78158359435445658e+18 OP +He_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons1_175)_ 8.77565589766476698e+18 OP +He_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons1_176)_ 8.76969423136653926e+18 OP +He_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons1_177)_ 8.76369859545977446e+18 OP +He_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons1_178)_ 8.75766898994447360e+18 OP +He_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons1_179)_ 8.75160541482063462e+18 OP +He_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons1_180)_ 8.74550787008825958e+18 OP +He_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons1_181)_ 8.73937635574734746e+18 OP +He_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons1_182)_ 8.73321087179789926e+18 OP +He_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons1_183)_ 8.72701141823991296e+18 OP +He_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons1_184)_ 8.72077799507338957e+18 OP +He_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons1_185)_ 8.71451060229833011e+18 OP +He_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons1_186)_ 8.70820923991473357e+18 OP +He_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons1_187)_ 8.70187390792260096e+18 OP +He_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons1_188)_ 8.69550460632192922e+18 OP +He_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons1_189)_ 8.68910133511272243e+18 OP +He_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons1_190)_ 8.68266409429497754e+18 OP +He_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons1_191)_ 8.67619288386869760e+18 OP +He_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons1_192)_ 8.66968770383387955e+18 OP +He_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons1_193)_ 8.66314855419052339e+18 OP +He_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons1_194)_ 8.65657543493863219e+18 OP +He_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons1_195)_ 8.64996834607820288e+18 OP +He_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons1_196)_ 8.64332728760923750e+18 OP +He_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons1_197)_ 8.63665225953173504e+18 OP +He_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons1_198)_ 8.62994326184569446e+18 OP +He_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons1_199)_ 8.62320029455111885e+18 OP +He_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons1_200)_ 8.61642335764800512e+18 OP +He_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons1_201)_ 8.60961245113635533e+18 OP +He_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons1_202)_ 8.60276757501616742e+18 OP +He_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons1_203)_ 8.59588872928744346e+18 OP +He_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons1_204)_ 8.58897591395018342e+18 OP +He_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons1_205)_ 8.58202912900438528e+18 OP +He_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons1_206)_ 8.57504837445005005e+18 OP +He_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons1_207)_ 8.56803365028717875e+18 OP +He_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons1_208)_ 8.56098495651576934e+18 OP +He_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons1_209)_ 8.55390229313582490e+18 OP +He_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons1_210)_ 8.54678566014734131e+18 OP +He_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons1_211)_ 8.53963505755032269e+18 OP +He_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons1_212)_ 8.53245048534476595e+18 OP +He_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons1_213)_ 8.52523194353067418e+18 OP +He_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons1_214)_ 8.51797943210804224e+18 OP +He_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons1_215)_ 8.51069295107687629e+18 OP +He_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons1_216)_ 8.50337250043717325e+18 OP +He_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons1_217)_ 8.49601808018893005e+18 OP +He_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons1_218)_ 8.48862969033215283e+18 OP +He_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons1_219)_ 8.48120733086683853e+18 OP +He_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons1_220)_ 8.47375100179298714e+18 OP +He_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons1_221)_ 8.46626070311059866e+18 OP +He_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons1_222)_ 8.45873643481967309e+18 OP +He_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons1_223)_ 8.45117819692021146e+18 OP +He_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons1_224)_ 8.44358598941221274e+18 OP +He_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons1_225)_ 8.43595981229567590e+18 OP +He_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons1_226)_ 8.42829966557060301e+18 OP +He_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons1_227)_ 8.42060554923699302e+18 OP +He_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons1_228)_ 8.41287746329484698e+18 OP +He_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons1_229)_ 8.40511540774416179e+18 OP +He_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons1_230)_ 8.39731938258494157e+18 OP +He_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons1_231)_ 8.38948938781718323e+18 OP +He_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons1_232)_ 8.38162542344088986e+18 OP +He_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons1_233)_ 8.37372748945605734e+18 OP +He_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons1_234)_ 8.36579558586268877e+18 OP +He_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons1_235)_ 8.35782971266078515e+18 OP +He_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons1_236)_ 8.34982986985034342e+18 OP +He_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons1_237)_ 8.34179605743136358e+18 OP +He_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons1_238)_ 8.33372827540384870e+18 OP +He_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons1_239)_ 8.32562652376779571e+18 OP +He_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons1_240)_ 8.31749080252320563e+18 OP +He_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons1_241)_ 8.30932111167007846e+18 OP +He_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons1_242)_ 8.30111745120841523e+18 OP +He_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons1_243)_ 8.29287982113821491e+18 OP +He_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons1_244)_ 8.28460822145947750e+18 OP +He_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons1_245)_ 8.27630265217220301e+18 OP +He_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons1_246)_ 8.26796311327639142e+18 OP +He_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons1_247)_ 8.25958960477204275e+18 OP +He_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons1_248)_ 8.25118212665915904e+18 OP +He_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons1_249)_ 8.24274067893773619e+18 OP +He_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons1_250)_ 8.23426526160777830e+18 OP +He_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons1_251)_ 8.22575587466928128e+18 OP +He_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons1_252)_ 8.21721251812225024e+18 OP +He_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons1_253)_ 8.20863519196667904e+18 OP +He_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons1_254)_ 8.20002389620257382e+18 OP +He_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons1_255)_ 8.19137863082993050e+18 OP +He_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons1_256)_ 8.18269939584875008e+18 OP +He_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons1_257)_ 8.17398619125903258e+18 OP +He_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons1_258)_ 8.16523901706077901e+18 OP +He_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons1_259)_ 8.15645787325398733e+18 OP +He_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons1_260)_ 8.14764275983866061e+18 OP +He_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons1_261)_ 8.13879367681479373e+18 OP +He_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons1_262)_ 8.12991062418239283e+18 OP +He_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons1_263)_ 8.12099360194145382e+18 OP +He_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons1_264)_ 8.11204261009197875e+18 OP +He_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons1_265)_ 8.10305764863396557e+18 OP +He_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons1_266)_ 8.09403871756741632e+18 OP +He_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons1_267)_ 8.08498581689232998e+18 OP +He_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons1_268)_ 8.07589894660870656e+18 OP +He_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons1_269)_ 8.06677810671654707e+18 OP +He_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons1_270)_ 8.05762329721585050e+18 OP +He_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons1_271)_ 8.04843451810661683e+18 OP +He_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons1_272)_ 8.03921176938884506e+18 OP +He_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons1_273)_ 8.02995505106253722e+18 OP +He_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons1_274)_ 8.02066436312769229e+18 OP +He_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons1_275)_ 8.01133970558431130e+18 OP +He_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons1_276)_ 8.00198107843239322e+18 OP +He_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons1_277)_ 7.99258848167193702e+18 OP +He_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons1_278)_ 7.98316191530294477e+18 OP +He_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons1_279)_ 7.97370137932541542e+18 OP +He_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons1_280)_ 7.96420687373935002e+18 OP +He_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons1_281)_ 7.95467839854474752e+18 OP +He_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons1_282)_ 7.94511595374160691e+18 OP +He_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons1_283)_ 7.93551953932993126e+18 OP +He_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons1_284)_ 7.92588915530971750e+18 OP +He_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons1_285)_ 7.91622480168096768e+18 OP +He_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons1_286)_ 7.90652647844367872e+18 OP +He_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons1_287)_ 7.89679418559785472e+18 OP +He_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons1_288)_ 7.88702792314349363e+18 OP +He_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons1_289)_ 7.87722769108059443e+18 OP +He_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons1_290)_ 7.86739348940915814e+18 OP +He_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons1_291)_ 7.85752531812918784e+18 OP +He_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons1_292)_ 7.84762317724067840e+18 OP +He_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons1_293)_ 7.83768706674363187e+18 OP +He_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons1_294)_ 7.82771698663805030e+18 OP +He_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons1_295)_ 7.81771293692392960e+18 OP +He_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons1_296)_ 7.80767491760127283e+18 OP +He_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons1_297)_ 7.79760292867008000e+18 OP +He_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons1_298)_ 7.78749697013034803e+18 OP +He_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons1_299)_ 7.77735704198208205e+18 OP +He_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons1_300)_ 7.76718314422527693e+18 OP +He_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons1_301)_ 7.75697527685993574e+18 OP +He_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons1_302)_ 7.74673343988605850e+18 OP +He_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons1_303)_ 7.73645763330364314e+18 OP +He_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons1_304)_ 7.72614785711269069e+18 OP +He_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons1_305)_ 7.71580411131320218e+18 OP +He_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons1_306)_ 7.70542639590517658e+18 OP +He_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons1_307)_ 7.69501471088861389e+18 OP +He_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons1_308)_ 7.68456905626351514e+18 OP +He_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons1_309)_ 7.67408943202987827e+18 OP +He_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons1_310)_ 7.66357583818770330e+18 OP +He_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons1_311)_ 7.65302827473699430e+18 OP +He_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons1_312)_ 7.64244674167774618e+18 OP +He_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons1_313)_ 7.63183123900996403e+18 OP +He_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons1_314)_ 7.62118176673364173e+18 OP +He_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons1_315)_ 7.61049832484878438e+18 OP +He_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons1_316)_ 7.59978091335538893e+18 OP +He_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons1_317)_ 7.58902953225345843e+18 OP +He_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons1_318)_ 7.57824418154298778e+18 OP +He_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons1_319)_ 7.56742486122398310e+18 OP +He_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons1_320)_ 7.55657157129644134e+18 OP +He_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons1_321)_ 7.54568431176036147e+18 OP +He_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons1_322)_ 7.53476308261574451e+18 OP +He_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons1_323)_ 7.52380788386259149e+18 OP +He_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons1_324)_ 7.51281871550090240e+18 OP +He_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons1_325)_ 7.50179557753067520e+18 OP +He_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons1_326)_ 7.49073846995191091e+18 OP +He_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons1_327)_ 7.47964739276460954e+18 OP +He_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons1_328)_ 7.46852234596877107e+18 OP +He_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons1_329)_ 7.45736332956439757e+18 OP +He_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons1_330)_ 7.44617034355148493e+18 OP +He_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons1_331)_ 7.43494338793003725e+18 OP +He_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons1_332)_ 7.42368246270005146e+18 OP +He_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons1_333)_ 7.41238756786152960e+18 OP +He_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons1_334)_ 7.40105870341447066e+18 OP +He_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons1_335)_ 7.38969586935887462e+18 OP +He_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons1_336)_ 7.37829906569474253e+18 OP +He_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons1_337)_ 7.36686829242207130e+18 OP +He_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons1_338)_ 7.35540354954086400e+18 OP +He_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons1_339)_ 7.34390483705112166e+18 OP +He_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons1_340)_ 7.33237215495284122e+18 OP +He_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons1_341)_ 7.32080550324602266e+18 OP +He_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons1_342)_ 7.30920488193066906e+18 OP +He_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons1_343)_ 7.29757029100677734e+18 OP +He_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons1_344)_ 7.28590173047434957e+18 OP +He_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons1_345)_ 7.27419920033338368e+18 OP +He_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons1_346)_ 7.26246270058388173e+18 OP +He_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons1_347)_ 7.25069223122584371e+18 OP +He_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons1_348)_ 7.23888779225926758e+18 OP +He_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons1_349)_ 7.22704938368415334e+18 OP +He_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons1_350)_ 7.21517700550050406e+18 OP +He_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons1_351)_ 7.20327065770831667e+18 OP +He_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons1_352)_ 7.19133034030759526e+18 OP +He_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons1_353)_ 7.17935605329833267e+18 OP +He_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons1_354)_ 7.16734779668053606e+18 OP +He_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons1_355)_ 7.15530557045420237e+18 OP +He_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons1_356)_ 7.14322937461933056e+18 OP +He_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons1_357)_ 7.13111920917592269e+18 OP +He_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons1_358)_ 7.11897507412397875e+18 OP +He_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons1_359)_ 7.10679696946349568e+18 OP +He_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons1_360)_ 7.09458489519447654e+18 OP +He_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons1_361)_ 7.08233885131692032e+18 OP +He_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons1_362)_ 7.07005883783082803e+18 OP +He_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons1_363)_ 7.05774485473619866e+18 OP +He_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons1_364)_ 7.04539690203303219e+18 OP +He_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons1_365)_ 7.03301497972132864e+18 OP +He_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons1_366)_ 7.02059908780109005e+18 OP +He_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons1_367)_ 7.00814922627231130e+18 OP +He_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons1_368)_ 6.99566539513499648e+18 OP +He_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons1_369)_ 6.98314759438914662e+18 OP +He_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons1_370)_ 6.97059582403475866e+18 OP +He_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons1_371)_ 6.95801008407183258e+18 OP +He_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons1_372)_ 6.94539037450037248e+18 OP +He_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons1_373)_ 6.93273669532037222e+18 OP +He_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons1_374)_ 6.92004904653183693e+18 OP +He_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons1_375)_ 6.90732742813476454e+18 OP +He_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons1_376)_ 6.89457184012915610e+18 OP +He_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons1_377)_ 6.88178228251500954e+18 OP +He_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons1_378)_ 6.86895875529232589e+18 OP +He_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons1_379)_ 6.85610125846110720e+18 OP +He_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons1_380)_ 6.84320979202134938e+18 OP +He_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons1_381)_ 6.83028435597305446e+18 OP +He_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons1_382)_ 6.81732495031622451e+18 OP +He_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons1_383)_ 6.80433157505085645e+18 OP +He_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons1_384)_ 6.79130423017695232e+18 OP +He_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons1_385)_ 6.77824291569451008e+18 OP +He_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons1_386)_ 6.76514763160353280e+18 OP +He_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons1_387)_ 6.75201837790401741e+18 OP +He_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons1_388)_ 6.73885515459596390e+18 OP +He_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons1_389)_ 6.72565796167937536e+18 OP +He_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons1_390)_ 6.71242679915424973e+18 OP +He_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons1_391)_ 6.69916166702058701e+18 OP +He_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons1_392)_ 6.68586256527838515e+18 OP +He_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons1_393)_ 6.67252949392764928e+18 OP +He_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons1_394)_ 6.65916245296837530e+18 OP +He_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons1_395)_ 6.64576144240056525e+18 OP +He_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons1_396)_ 6.63232646222421709e+18 OP +He_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons1_397)_ 6.61885751243933286e+18 OP +He_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons1_398)_ 6.60535459304591053e+18 OP +He_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons1_399)_ 6.59181770404395315e+18 OP +He_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons1_400)_ 6.57824684543345766e+18 OP +He_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons1_401)_ 6.56464201721442611e+18 OP +He_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons1_402)_ 6.55100321938685645e+18 OP +He_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons1_403)_ 6.53733045195075174e+18 OP +He_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons1_404)_ 6.52362371490610790e+18 OP +He_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons1_405)_ 6.50988300825292800e+18 OP +He_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons1_406)_ 6.49610833199121203e+18 OP +He_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons1_407)_ 6.48229968612095898e+18 OP +He_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons1_408)_ 6.46845707064216883e+18 OP +He_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons1_409)_ 6.45458048555484160e+18 OP +He_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons1_410)_ 6.44066993085897626e+18 OP +He_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons1_411)_ 6.42672540655457587e+18 OP +He_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons1_412)_ 6.41274691264163635e+18 OP +He_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons1_413)_ 6.39873444912016179e+18 OP +He_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons1_414)_ 6.38468801599015014e+18 OP +He_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons1_415)_ 6.37060761325160141e+18 OP +He_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons1_416)_ 6.35649324090451558e+18 OP +He_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons1_417)_ 6.34234489894889370e+18 OP +He_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons1_418)_ 6.32816258738473267e+18 OP +He_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons1_419)_ 6.31394630621203661e+18 OP +He_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons1_420)_ 6.29969605543080243e+18 OP +He_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons1_421)_ 6.28541183504103322e+18 OP +He_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons1_422)_ 6.27109364504272589e+18 OP +He_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons1_423)_ 6.25674148543588147e+18 OP +He_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons1_424)_ 6.24235535622049997e+18 OP +He_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons1_425)_ 6.22793525739658240e+18 OP +He_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons1_426)_ 6.21348118896412877e+18 OP +He_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons1_427)_ 6.19899315092313600e+18 OP +He_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons1_428)_ 6.18447114327360819e+18 OP +He_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons1_429)_ 6.16991516601554227e+18 OP +He_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons1_430)_ 6.15532521914894029e+18 OP +He_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons1_431)_ 6.14070130267380019e+18 OP +He_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons1_432)_ 6.12604341659012403e+18 OP +He_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons1_433)_ 6.11135156089791078e+18 OP +He_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons1_434)_ 6.09662573559716147e+18 OP +He_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons1_435)_ 6.08186594068787302e+18 OP +He_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons1_436)_ 6.06707217617004954e+18 OP +He_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons1_437)_ 6.05224444204368896e+18 OP +He_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons1_438)_ 6.03738273830879130e+18 OP +He_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons1_439)_ 6.02248706496535654e+18 OP +He_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons1_440)_ 6.00755742201338470e+18 OP +He_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons1_441)_ 5.99259380945287578e+18 OP +He_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons1_442)_ 5.97759622728383078e+18 OP +He_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons1_443)_ 5.96256467550624870e+18 OP +He_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons1_444)_ 5.94749915412012954e+18 OP +He_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons1_445)_ 5.93239966312547328e+18 OP +He_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons1_446)_ 5.91726620252227994e+18 OP +He_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons1_447)_ 5.90209877231055053e+18 OP +He_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons1_448)_ 5.88689737249028403e+18 OP +He_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons1_449)_ 5.87166200306147942e+18 OP +He_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons1_450)_ 5.85639266402413875e+18 OP +He_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons1_451)_ 5.84108935537826099e+18 OP +He_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons1_452)_ 5.82575207712384717e+18 OP +He_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons1_453)_ 5.81038082926089523e+18 OP +He_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons1_454)_ 5.79497561178940723e+18 OP +He_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons1_455)_ 5.77953642470938112e+18 OP +He_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons1_456)_ 5.76406326802081997e+18 OP +He_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons1_457)_ 5.74855614172372070e+18 OP +He_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons1_458)_ 5.73301504581808538e+18 OP +He_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons1_459)_ 5.71743998030391194e+18 OP +He_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons1_460)_ 5.70183094518120243e+18 OP +He_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons1_461)_ 5.68618794044995584e+18 OP +He_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons1_462)_ 5.67051096611017216e+18 OP +He_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons1_463)_ 5.65480002216185139e+18 OP +He_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons1_464)_ 5.63905510860499456e+18 OP +He_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons1_465)_ 5.62327622543959962e+18 OP +He_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons1_466)_ 5.60746337266566861e+18 OP +He_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons1_467)_ 5.59161655028320051e+18 OP +He_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons1_468)_ 5.57573575829219635e+18 OP +He_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons1_469)_ 5.55982099669265408e+18 OP +He_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons1_470)_ 5.54387226548457574e+18 OP +He_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons1_471)_ 5.46777990105635635e+18 OP +He_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons1_472)_ 5.39168753662813594e+18 OP +He_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons1_473)_ 5.31559517219991654e+18 OP +He_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons1_474)_ 5.23950280777169715e+18 OP +He_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons1_475)_ 5.16341044334347776e+18 OP +He_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons1_476)_ 5.08731807891525734e+18 OP +He_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons1_477)_ 5.01122571448703795e+18 OP +He_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons1_478)_ 4.93513335005881856e+18 OP +He_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons1_479)_ 4.85904098563059814e+18 OP +He_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons1_480)_ 4.78294862120237875e+18 OP +He_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons1_481)_ 4.70685625677415936e+18 OP +He_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons1_482)_ 4.63076389234593997e+18 OP +He_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons1_483)_ 4.55467152791772006e+18 OP +He_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons1_484)_ 4.47857916348950067e+18 OP +He_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons1_485)_ 4.40248679906128077e+18 OP +He_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons1_486)_ 4.32639443463306138e+18 OP +He_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons1_487)_ 4.25030207020484147e+18 OP +He_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons1_488)_ 4.17420970577662208e+18 OP +He_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons1_489)_ 4.09811734134840166e+18 OP +He_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons1_490)_ 4.02202497692018227e+18 OP +He_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons1_491)_ 3.94593261249196288e+18 OP +He_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons1_492)_ 3.86984024806374298e+18 OP +He_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons1_493)_ 3.79374788363552358e+18 OP +He_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons1_494)_ 3.71765551920730368e+18 OP +He_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons1_495)_ 3.64156315477908429e+18 OP +He_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons1_496)_ 3.56547079035086490e+18 OP +He_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons1_497)_ 3.48937842592264448e+18 OP +He_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons1_498)_ 3.41328606149442509e+18 OP +He_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons1_499)_ 3.33719369706620518e+18 OP +He_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons1_500)_ 3.26110133263798579e+18 OP Be_concentration_________________________________________________________ (f_nd_impurity_electrons(03))__ 0.00000000000000000e+00 C_concentration__________________________________________________________ (f_nd_impurity_electrons(04))__ 0.00000000000000000e+00 N_concentration__________________________________________________________ (f_nd_impurity_electrons(05))__ 0.00000000000000000e+00 @@ -5013,1512 +5016,1512 @@ Ar_concentration_________________________________________________________ (f_nd_ Fe_concentration_________________________________________________________ (f_nd_impurity_electrons(10))__ 0.00000000000000000e+00 Ni_concentration_________________________________________________________ (f_nd_impurity_electrons(11))__ 0.00000000000000000e+00 Kr_concentration_________________________________________________________ (f_nd_impurity_electrons(12))__ 0.00000000000000000e+00 -Xe_concentration_________________________________________________________ (f_nd_impurity_electrons(13))__ 5.96634627889471502e-04 -Xe_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons12_0)__ 6.26187289219289840e+16 OP -Xe_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons12_1)__ 6.26186145082075120e+16 OP -Xe_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons12_2)__ 6.26182712670431280e+16 OP -Xe_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons12_3)__ 6.26176991984358080e+16 OP -Xe_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons12_4)__ 6.26168983023855520e+16 OP -Xe_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons12_5)__ 6.26158685788923760e+16 OP -Xe_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons12_6)__ 6.26146100279562800e+16 OP -Xe_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons12_7)__ 6.26131226495772400e+16 OP -Xe_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons12_8)__ 6.26114064437552880e+16 OP -Xe_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons12_9)__ 6.26094614104904000e+16 OP -Xe_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons12_10)_ 6.26072875497825920e+16 OP -Xe_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons12_11)_ 6.26048848616318400e+16 OP -Xe_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons12_12)_ 6.26022533460381680e+16 OP -Xe_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons12_13)_ 6.25993930030015680e+16 OP -Xe_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons12_14)_ 6.25963038325220480e+16 OP -Xe_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons12_15)_ 6.25929858345995920e+16 OP -Xe_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons12_16)_ 6.25894390092342160e+16 OP -Xe_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons12_17)_ 6.25856633564258960e+16 OP -Xe_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons12_18)_ 6.25816588761746720e+16 OP -Xe_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons12_19)_ 6.25774255684805040e+16 OP -Xe_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons12_20)_ 6.25729634333434080e+16 OP -Xe_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons12_21)_ 6.25682724707633840e+16 OP -Xe_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons12_22)_ 6.25633526807404320e+16 OP -Xe_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons12_23)_ 6.25582040632745600e+16 OP -Xe_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons12_24)_ 6.25528266183657440e+16 OP -Xe_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons12_25)_ 6.25472203460140160e+16 OP -Xe_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons12_26)_ 6.25413852462193520e+16 OP -Xe_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons12_27)_ 6.25353213189817600e+16 OP -Xe_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons12_28)_ 6.25290285643012560e+16 OP -Xe_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons12_29)_ 6.25225069821778080e+16 OP -Xe_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons12_30)_ 6.25157565726114400e+16 OP -Xe_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons12_31)_ 6.25087773356021280e+16 OP -Xe_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons12_32)_ 6.25015692711499120e+16 OP -Xe_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons12_33)_ 6.24941323792547520e+16 OP -Xe_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons12_34)_ 6.24864666599166720e+16 OP -Xe_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons12_35)_ 6.24785721131356560e+16 OP -Xe_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons12_36)_ 6.24704487389117120e+16 OP -Xe_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons12_37)_ 6.24620965372448480e+16 OP -Xe_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons12_38)_ 6.24535155081350480e+16 OP -Xe_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons12_39)_ 6.24447056515823280e+16 OP -Xe_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons12_40)_ 6.24356669675866720e+16 OP -Xe_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons12_41)_ 6.24263994561480960e+16 OP -Xe_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons12_42)_ 6.24169031172665920e+16 OP -Xe_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons12_43)_ 6.24071779509421520e+16 OP -Xe_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons12_44)_ 6.23972239571747840e+16 OP -Xe_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons12_45)_ 6.23870411359645040e+16 OP -Xe_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons12_46)_ 6.23766294873112880e+16 OP -Xe_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons12_47)_ 6.23659890112151360e+16 OP -Xe_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons12_48)_ 6.23551197076760640e+16 OP -Xe_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons12_49)_ 6.23440215766940560e+16 OP -Xe_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons12_50)_ 6.23326946182691280e+16 OP -Xe_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons12_51)_ 6.23211388324012720e+16 OP -Xe_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons12_52)_ 6.23093542190904960e+16 OP -Xe_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons12_53)_ 6.22973407783367760e+16 OP -Xe_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons12_54)_ 6.22850985101401360e+16 OP -Xe_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons12_55)_ 6.22726274145005600e+16 OP -Xe_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons12_56)_ 6.22599274914180720e+16 OP -Xe_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons12_57)_ 6.22469987408926320e+16 OP -Xe_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons12_58)_ 6.22338411629242800e+16 OP -Xe_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons12_59)_ 6.22204547575130080e+16 OP -Xe_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons12_60)_ 6.22068395246588000e+16 OP -Xe_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons12_61)_ 6.21929954643616640e+16 OP -Xe_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons12_62)_ 6.21789225766216000e+16 OP -Xe_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons12_63)_ 6.21646208614386080e+16 OP -Xe_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons12_64)_ 6.21500903188126800e+16 OP -Xe_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons12_65)_ 6.21353309487438320e+16 OP -Xe_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons12_66)_ 6.21203427512320560e+16 OP -Xe_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons12_67)_ 6.21051257262773440e+16 OP -Xe_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons12_68)_ 6.20896798738797200e+16 OP -Xe_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons12_69)_ 6.20740051940391600e+16 OP -Xe_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons12_70)_ 6.20581016867556720e+16 OP -Xe_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons12_71)_ 6.20419693520292560e+16 OP -Xe_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons12_72)_ 6.20256081898599040e+16 OP -Xe_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons12_73)_ 6.20090182002476480e+16 OP -Xe_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons12_74)_ 6.19921993831924480e+16 OP -Xe_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons12_75)_ 6.19751517386943200e+16 OP -Xe_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons12_76)_ 6.19578752667532640e+16 OP -Xe_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons12_77)_ 6.19403699673692800e+16 OP -Xe_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons12_78)_ 6.19226358405423600e+16 OP -Xe_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons12_79)_ 6.19046728862725280e+16 OP -Xe_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons12_80)_ 6.18864811045597600e+16 OP -Xe_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons12_81)_ 6.18680604954040720e+16 OP -Xe_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons12_82)_ 6.18494110588054480e+16 OP -Xe_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons12_83)_ 6.18305327947638880e+16 OP -Xe_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons12_84)_ 6.18114257032794160e+16 OP -Xe_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons12_85)_ 6.17920897843520080e+16 OP -Xe_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons12_86)_ 6.17725250379816720e+16 OP -Xe_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons12_87)_ 6.17527314641684080e+16 OP -Xe_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons12_88)_ 6.17327090629122320e+16 OP -Xe_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons12_89)_ 6.17124578342131120e+16 OP -Xe_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons12_90)_ 6.16919777780710560e+16 OP -Xe_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons12_91)_ 6.16712688944860880e+16 OP -Xe_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons12_92)_ 6.16503311834581840e+16 OP -Xe_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons12_93)_ 6.16291646449873680e+16 OP -Xe_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons12_94)_ 6.16077692790736080e+16 OP -Xe_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons12_95)_ 6.15861450857169120e+16 OP -Xe_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons12_96)_ 6.15642920649173040e+16 OP -Xe_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons12_97)_ 6.15422102166747680e+16 OP -Xe_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons12_98)_ 6.15198995409892960e+16 OP -Xe_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons12_99)_ 6.14973600378608960e+16 OP -Xe_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons12_100)_ 6.14745917072895760e+16 OP -Xe_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons12_101)_ 6.14515945492753280e+16 OP -Xe_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons12_102)_ 6.14283685638181440e+16 OP -Xe_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons12_103)_ 6.14049137509180400e+16 OP -Xe_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons12_104)_ 6.13812301105750000e+16 OP -Xe_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons12_105)_ 6.13573176427890400e+16 OP -Xe_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons12_106)_ 6.13331763475601440e+16 OP -Xe_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons12_107)_ 6.13088062248883280e+16 OP -Xe_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons12_108)_ 6.12842072747735840e+16 OP -Xe_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons12_109)_ 6.12593794972159120e+16 OP -Xe_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons12_110)_ 6.12343228922153040e+16 OP -Xe_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons12_111)_ 6.12090374597717680e+16 OP -Xe_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons12_112)_ 6.11835231998853120e+16 OP -Xe_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons12_113)_ 6.11577801125559280e+16 OP -Xe_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons12_114)_ 6.11318081977836160e+16 OP -Xe_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons12_115)_ 6.11056074555683680e+16 OP -Xe_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons12_116)_ 6.10791778859102000e+16 OP -Xe_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons12_117)_ 6.10525194888090960e+16 OP -Xe_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons12_118)_ 6.10256322642650720e+16 OP -Xe_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons12_119)_ 6.09985162122781280e+16 OP -Xe_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons12_120)_ 6.09711713328482480e+16 OP -Xe_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons12_121)_ 6.09435976259754320e+16 OP -Xe_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons12_122)_ 6.09157950916596960e+16 OP -Xe_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons12_123)_ 6.08877637299010320e+16 OP -Xe_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons12_124)_ 6.08595035406994400e+16 OP -Xe_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons12_125)_ 6.08310145240549120e+16 OP -Xe_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons12_126)_ 6.08022966799674720e+16 OP -Xe_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons12_127)_ 6.07733500084370960e+16 OP -Xe_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons12_128)_ 6.07441745094637840e+16 OP -Xe_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons12_129)_ 6.07147701830475520e+16 OP -Xe_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons12_130)_ 6.06851370291884000e+16 OP -Xe_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons12_131)_ 6.06552750478862960e+16 OP -Xe_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons12_132)_ 6.06251842391412880e+16 OP -Xe_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons12_133)_ 6.05948646029533360e+16 OP -Xe_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons12_134)_ 6.05643161393224640e+16 OP -Xe_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons12_135)_ 6.05335388482486640e+16 OP -Xe_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons12_136)_ 6.05025327297319440e+16 OP -Xe_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons12_137)_ 6.04712977837722880e+16 OP -Xe_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons12_138)_ 6.04398340103696960e+16 OP -Xe_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons12_139)_ 6.04081414095241920e+16 OP -Xe_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons12_140)_ 6.03762199812357520e+16 OP -Xe_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons12_141)_ 6.03440697255043840e+16 OP -Xe_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons12_142)_ 6.03116906423300880e+16 OP -Xe_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons12_143)_ 6.02790827317128720e+16 OP -Xe_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons12_144)_ 6.02462459936527280e+16 OP -Xe_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons12_145)_ 6.02131804281496400e+16 OP -Xe_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons12_146)_ 6.01798860352036400e+16 OP -Xe_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons12_147)_ 6.01463628148146960e+16 OP -Xe_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons12_148)_ 6.01126107669828320e+16 OP -Xe_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons12_149)_ 6.00786298917080480e+16 OP -Xe_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons12_150)_ 6.00444201889903280e+16 OP -Xe_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons12_151)_ 6.00099816588296880e+16 OP -Xe_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons12_152)_ 5.99753143012261040e+16 OP -Xe_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons12_153)_ 5.99404181161796080e+16 OP -Xe_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons12_154)_ 5.99052931036901760e+16 OP -Xe_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons12_155)_ 5.98699392637578080e+16 OP -Xe_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons12_156)_ 5.98343565963825280e+16 OP -Xe_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons12_157)_ 5.97985451015643200e+16 OP -Xe_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons12_158)_ 5.97625047793031680e+16 OP -Xe_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons12_159)_ 5.97262356295991040e+16 OP -Xe_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons12_160)_ 5.96897376524521040e+16 OP -Xe_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons12_161)_ 5.96530108478621840e+16 OP -Xe_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons12_162)_ 5.96160552158293440e+16 OP -Xe_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons12_163)_ 5.95788707563535520e+16 OP -Xe_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons12_164)_ 5.95414574694348480e+16 OP -Xe_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons12_165)_ 5.95038153550732080e+16 OP -Xe_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons12_166)_ 5.94659444132686400e+16 OP -Xe_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons12_167)_ 5.94278446440211520e+16 OP -Xe_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons12_168)_ 5.93895160473307280e+16 OP -Xe_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons12_169)_ 5.93509586231973840e+16 OP -Xe_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons12_170)_ 5.93121723716211040e+16 OP -Xe_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons12_171)_ 5.92731572926019040e+16 OP -Xe_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons12_172)_ 5.92339133861397760e+16 OP -Xe_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons12_173)_ 5.91944406522347120e+16 OP -Xe_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons12_174)_ 5.91547390908867280e+16 OP -Xe_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons12_175)_ 5.91148087020958160e+16 OP -Xe_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons12_176)_ 5.90746494858619680e+16 OP -Xe_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons12_177)_ 5.90342614421852000e+16 OP -Xe_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons12_178)_ 5.89936445710654960e+16 OP -Xe_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons12_179)_ 5.89527988725028720e+16 OP -Xe_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons12_180)_ 5.89117243464973200e+16 OP -Xe_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons12_181)_ 5.88704209930488400e+16 OP -Xe_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons12_182)_ 5.88288888121574240e+16 OP -Xe_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons12_183)_ 5.87871278038230880e+16 OP -Xe_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons12_184)_ 5.87451379680458240e+16 OP -Xe_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons12_185)_ 5.87029193048256240e+16 OP -Xe_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons12_186)_ 5.86604718141625040e+16 OP -Xe_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons12_187)_ 5.86177954960564560e+16 OP -Xe_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons12_188)_ 5.85748903505074720e+16 OP -Xe_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons12_189)_ 5.85317563775155760e+16 OP -Xe_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons12_190)_ 5.84883935770807360e+16 OP -Xe_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons12_191)_ 5.84448019492029760e+16 OP -Xe_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons12_192)_ 5.84009814938822880e+16 OP -Xe_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons12_193)_ 5.83569322111186720e+16 OP -Xe_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons12_194)_ 5.83126541009121200e+16 OP -Xe_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons12_195)_ 5.82681471632626560e+16 OP -Xe_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons12_196)_ 5.82234113981702480e+16 OP -Xe_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons12_197)_ 5.81784468056349200e+16 OP -Xe_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons12_198)_ 5.81332533856566640e+16 OP -Xe_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons12_199)_ 5.80878311382354800e+16 OP -Xe_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons12_200)_ 5.80421800633713760e+16 OP -Xe_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons12_201)_ 5.79963001610643280e+16 OP -Xe_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons12_202)_ 5.79501914313143680e+16 OP -Xe_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons12_203)_ 5.79038538741214640e+16 OP -Xe_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons12_204)_ 5.78572874894856400e+16 OP -Xe_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons12_205)_ 5.78104922774068880e+16 OP -Xe_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons12_206)_ 5.77634682378852160e+16 OP -Xe_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons12_207)_ 5.77162153709206160e+16 OP -Xe_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons12_208)_ 5.76687336765130720e+16 OP -Xe_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons12_209)_ 5.76210231546626080e+16 OP -Xe_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons12_210)_ 5.75730838053692160e+16 OP -Xe_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons12_211)_ 5.75249156286329040e+16 OP -Xe_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons12_212)_ 5.74765186244536480e+16 OP -Xe_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons12_213)_ 5.74278927928314800e+16 OP -Xe_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons12_214)_ 5.73790381337663760e+16 OP -Xe_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons12_215)_ 5.73299546472583440e+16 OP -Xe_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons12_216)_ 5.72806423333073840e+16 OP -Xe_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons12_217)_ 5.72311011919134960e+16 OP -Xe_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons12_218)_ 5.71813312230766880e+16 OP -Xe_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons12_219)_ 5.71313324267969440e+16 OP -Xe_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons12_220)_ 5.70811048030742800e+16 OP -Xe_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons12_221)_ 5.70306483519086800e+16 OP -Xe_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons12_222)_ 5.69799630733001520e+16 OP -Xe_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons12_223)_ 5.69290489672486960e+16 OP -Xe_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons12_224)_ 5.68779060337543120e+16 OP -Xe_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons12_225)_ 5.68265342728170000e+16 OP -Xe_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons12_226)_ 5.67749336844367680e+16 OP -Xe_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons12_227)_ 5.67231042686136080e+16 OP -Xe_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons12_228)_ 5.66710460253475120e+16 OP -Xe_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons12_229)_ 5.66187589546384960e+16 OP -Xe_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons12_230)_ 5.65662430564865360e+16 OP -Xe_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons12_231)_ 5.65134983308916640e+16 OP -Xe_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons12_232)_ 5.64605247778538560e+16 OP -Xe_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons12_233)_ 5.64073223973731200e+16 OP -Xe_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons12_234)_ 5.63538911894494720e+16 OP -Xe_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons12_235)_ 5.63002311540828880e+16 OP -Xe_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons12_236)_ 5.62463422912733680e+16 OP -Xe_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons12_237)_ 5.61922246010209280e+16 OP -Xe_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons12_238)_ 5.61378780833255520e+16 OP -Xe_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons12_239)_ 5.60833027381872480e+16 OP -Xe_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons12_240)_ 5.60284985656060320e+16 OP -Xe_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons12_241)_ 5.59734655655818640e+16 OP -Xe_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons12_242)_ 5.59182037381147840e+16 OP -Xe_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons12_243)_ 5.58627130832047680e+16 OP -Xe_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons12_244)_ 5.58069936008518400e+16 OP -Xe_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons12_245)_ 5.57510452910559680e+16 OP -Xe_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons12_246)_ 5.56948681538171760e+16 OP -Xe_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons12_247)_ 5.56384621891354560e+16 OP -Xe_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons12_248)_ 5.55818273970108080e+16 OP -Xe_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons12_249)_ 5.55249637774432240e+16 OP -Xe_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons12_250)_ 5.54678713304327200e+16 OP -Xe_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons12_251)_ 5.54105500559792800e+16 OP -Xe_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons12_252)_ 5.53529999540829200e+16 OP -Xe_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons12_253)_ 5.52952210247436320e+16 OP -Xe_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons12_254)_ 5.52372132679614160e+16 OP -Xe_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons12_255)_ 5.51789766837362720e+16 OP -Xe_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons12_256)_ 5.51205112720682000e+16 OP -Xe_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons12_257)_ 5.50618170329572000e+16 OP -Xe_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons12_258)_ 5.50028939664032720e+16 OP -Xe_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons12_259)_ 5.49437420724064000e+16 OP -Xe_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons12_260)_ 5.48843613509666320e+16 OP -Xe_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons12_261)_ 5.48247518020839120e+16 OP -Xe_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons12_262)_ 5.47649134257582640e+16 OP -Xe_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons12_263)_ 5.47048462219896960e+16 OP -Xe_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons12_264)_ 5.46445501907782000e+16 OP -Xe_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons12_265)_ 5.45840253321237760e+16 OP -Xe_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons12_266)_ 5.45232716460264240e+16 OP -Xe_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons12_267)_ 5.44622891324861520e+16 OP -Xe_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons12_268)_ 5.44010777915029360e+16 OP -Xe_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons12_269)_ 5.43396376230768000e+16 OP -Xe_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons12_270)_ 5.42779686272077440e+16 OP -Xe_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons12_271)_ 5.42160708038957440e+16 OP -Xe_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons12_272)_ 5.41539441531408240e+16 OP -Xe_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons12_273)_ 5.40915886749429760e+16 OP -Xe_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons12_274)_ 5.40290043693022000e+16 OP -Xe_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons12_275)_ 5.39661912362184960e+16 OP -Xe_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons12_276)_ 5.39031492756918640e+16 OP -Xe_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons12_277)_ 5.38398784877223040e+16 OP -Xe_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons12_278)_ 5.37763788723098240e+16 OP -Xe_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons12_279)_ 5.37126504294544160e+16 OP -Xe_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons12_280)_ 5.36486931591560640e+16 OP -Xe_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons12_281)_ 5.35845070614147920e+16 OP -Xe_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons12_282)_ 5.35200921362306000e+16 OP -Xe_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons12_283)_ 5.34554483836034800e+16 OP -Xe_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons12_284)_ 5.33905758035334240e+16 OP -Xe_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons12_285)_ 5.33254743960204400e+16 OP -Xe_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons12_286)_ 5.32601441610645360e+16 OP -Xe_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons12_287)_ 5.31945850986656960e+16 OP -Xe_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons12_288)_ 5.31287972088239280e+16 OP -Xe_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons12_289)_ 5.30627804915392320e+16 OP -Xe_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons12_290)_ 5.29965349468116160e+16 OP -Xe_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons12_291)_ 5.29300605746410560e+16 OP -Xe_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons12_292)_ 5.28633573750275840e+16 OP -Xe_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons12_293)_ 5.27964253479711760e+16 OP -Xe_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons12_294)_ 5.27292644934718480e+16 OP -Xe_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons12_295)_ 5.26618748115295840e+16 OP -Xe_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons12_296)_ 5.25942563021444000e+16 OP -Xe_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons12_297)_ 5.25264089653162880e+16 OP -Xe_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons12_298)_ 5.24583328010452320e+16 OP -Xe_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons12_299)_ 5.23900278093312720e+16 OP -Xe_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons12_300)_ 5.23214939901743600e+16 OP -Xe_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons12_301)_ 5.22527313435745280e+16 OP -Xe_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons12_302)_ 5.21837398695317760e+16 OP -Xe_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons12_303)_ 5.21145195680460960e+16 OP -Xe_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons12_304)_ 5.20450704391174800e+16 OP -Xe_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons12_305)_ 5.19753924827459360e+16 OP -Xe_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons12_306)_ 5.19054856989314800e+16 OP -Xe_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons12_307)_ 5.18353500876740800e+16 OP -Xe_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons12_308)_ 5.17649856489737520e+16 OP -Xe_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons12_309)_ 5.16943923828305040e+16 OP -Xe_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons12_310)_ 5.16235702892443200e+16 OP -Xe_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons12_311)_ 5.15525193682152240e+16 OP -Xe_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons12_312)_ 5.14812396197431840e+16 OP -Xe_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons12_313)_ 5.14097310438282320e+16 OP -Xe_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons12_314)_ 5.13379936404703360e+16 OP -Xe_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons12_315)_ 5.12660274096695200e+16 OP -Xe_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons12_316)_ 5.11938323514257680e+16 OP -Xe_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons12_317)_ 5.11214084657390960e+16 OP -Xe_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons12_318)_ 5.10487557526094880e+16 OP -Xe_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons12_319)_ 5.09758742120369520e+16 OP -Xe_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons12_320)_ 5.09027638440214960e+16 OP -Xe_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons12_321)_ 5.08294246485631200e+16 OP -Xe_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons12_322)_ 5.07558566256618080e+16 OP -Xe_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons12_323)_ 5.06820597753175600e+16 OP -Xe_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons12_324)_ 5.06080340975303920e+16 OP -Xe_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons12_325)_ 5.05337795923002960e+16 OP -Xe_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons12_326)_ 5.04592962596272720e+16 OP -Xe_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons12_327)_ 5.03845840995113200e+16 OP -Xe_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons12_328)_ 5.03096431119524320e+16 OP -Xe_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons12_329)_ 5.02344732969506240e+16 OP -Xe_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons12_330)_ 5.01590746545058800e+16 OP -Xe_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons12_331)_ 5.00834471846182320e+16 OP -Xe_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons12_332)_ 5.00075908872876320e+16 OP -Xe_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons12_333)_ 4.99315057625141120e+16 OP -Xe_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons12_334)_ 4.98551918102976640e+16 OP -Xe_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons12_335)_ 4.97786490306382880e+16 OP -Xe_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons12_336)_ 4.97018774235359920e+16 OP -Xe_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons12_337)_ 4.96248769889907600e+16 OP -Xe_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons12_338)_ 4.95476477270025920e+16 OP -Xe_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons12_339)_ 4.94701896375715040e+16 OP -Xe_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons12_340)_ 4.93925027206974960e+16 OP -Xe_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons12_341)_ 4.93145869763805520e+16 OP -Xe_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons12_342)_ 4.92364424046206720e+16 OP -Xe_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons12_343)_ 4.91580690054178720e+16 OP -Xe_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons12_344)_ 4.90794667787721520e+16 OP -Xe_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons12_345)_ 4.90006357246834960e+16 OP -Xe_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons12_346)_ 4.89215758431519200e+16 OP -Xe_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons12_347)_ 4.88422871341774080e+16 OP -Xe_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons12_348)_ 4.87627695977599680e+16 OP -Xe_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons12_349)_ 4.86830232338996000e+16 OP -Xe_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons12_350)_ 4.86030480425963120e+16 OP -Xe_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons12_351)_ 4.85228440238500880e+16 OP -Xe_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons12_352)_ 4.84424111776609360e+16 OP -Xe_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons12_353)_ 4.83617495040288560e+16 OP -Xe_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons12_354)_ 4.82808590029538480e+16 OP -Xe_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons12_355)_ 4.81997396744359120e+16 OP -Xe_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons12_356)_ 4.81183915184750560e+16 OP -Xe_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons12_357)_ 4.80368145350712640e+16 OP -Xe_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons12_358)_ 4.79550087242245520e+16 OP -Xe_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons12_359)_ 4.78729740859349040e+16 OP -Xe_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons12_360)_ 4.77907106202023280e+16 OP -Xe_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons12_361)_ 4.77082183270268320e+16 OP -Xe_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons12_362)_ 4.76254972064084000e+16 OP -Xe_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons12_363)_ 4.75425472583470480e+16 OP -Xe_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons12_364)_ 4.74593684828427680e+16 OP -Xe_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons12_365)_ 4.73759608798955520e+16 OP -Xe_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons12_366)_ 4.72923244495054080e+16 OP -Xe_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons12_367)_ 4.72084591916723360e+16 OP -Xe_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons12_368)_ 4.71243651063963440e+16 OP -Xe_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons12_369)_ 4.70400421936774160e+16 OP -Xe_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons12_370)_ 4.69554904535155600e+16 OP -Xe_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons12_371)_ 4.68707098859107840e+16 OP -Xe_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons12_372)_ 4.67857004908630800e+16 OP -Xe_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons12_373)_ 4.67004622683724400e+16 OP -Xe_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons12_374)_ 4.66149952184388800e+16 OP -Xe_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons12_375)_ 4.65292993410623920e+16 OP -Xe_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons12_376)_ 4.64433746362429760e+16 OP -Xe_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons12_377)_ 4.63572211039806240e+16 OP -Xe_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons12_378)_ 4.62708387442753440e+16 OP -Xe_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons12_379)_ 4.61842275571271520e+16 OP -Xe_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons12_380)_ 4.60973875425360080e+16 OP -Xe_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons12_381)_ 4.60103187005019520e+16 OP -Xe_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons12_382)_ 4.59230210310249680e+16 OP -Xe_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons12_383)_ 4.58354945341050560e+16 OP -Xe_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons12_384)_ 4.57477392097422080e+16 OP -Xe_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons12_385)_ 4.56597550579364480e+16 OP -Xe_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons12_386)_ 4.55715420786877520e+16 OP -Xe_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons12_387)_ 4.54831002719961120e+16 OP -Xe_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons12_388)_ 4.53944296378615680e+16 OP -Xe_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons12_389)_ 4.53055301762840880e+16 OP -Xe_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons12_390)_ 4.52164018872636800e+16 OP -Xe_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons12_391)_ 4.51270447708003360e+16 OP -Xe_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons12_392)_ 4.50374588268940720e+16 OP -Xe_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons12_393)_ 4.49476440555448800e+16 OP -Xe_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons12_394)_ 4.48576004567527520e+16 OP -Xe_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons12_395)_ 4.47673280305177120e+16 OP -Xe_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons12_396)_ 4.46768267768397280e+16 OP -Xe_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons12_397)_ 4.45860966957188240e+16 OP -Xe_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons12_398)_ 4.44951377871549920e+16 OP -Xe_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons12_399)_ 4.44039500511482320e+16 OP -Xe_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons12_400)_ 4.43125334876985360e+16 OP -Xe_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons12_401)_ 4.42208880968059280e+16 OP -Xe_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons12_402)_ 4.41290138784703840e+16 OP -Xe_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons12_403)_ 4.40369108326919200e+16 OP -Xe_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons12_404)_ 4.39445789594705120e+16 OP -Xe_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons12_405)_ 4.38520182588061840e+16 OP -Xe_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons12_406)_ 4.37592287306989280e+16 OP -Xe_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons12_407)_ 4.36662103751487520e+16 OP -Xe_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons12_408)_ 4.35729631921556400e+16 OP -Xe_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons12_409)_ 4.34794871817196080e+16 OP -Xe_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons12_410)_ 4.33857823438406320e+16 OP -Xe_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons12_411)_ 4.32918486785187440e+16 OP -Xe_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons12_412)_ 4.31976861857539120e+16 OP -Xe_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons12_413)_ 4.31032948655461680e+16 OP -Xe_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons12_414)_ 4.30086747178954880e+16 OP -Xe_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons12_415)_ 4.29138257428018800e+16 OP -Xe_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons12_416)_ 4.28187479402653440e+16 OP -Xe_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons12_417)_ 4.27234413102858880e+16 OP -Xe_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons12_418)_ 4.26279058528634960e+16 OP -Xe_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons12_419)_ 4.25321415679981760e+16 OP -Xe_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons12_420)_ 4.24361484556899280e+16 OP -Xe_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons12_421)_ 4.23399265159387520e+16 OP -Xe_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons12_422)_ 4.22434757487446560e+16 OP -Xe_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons12_423)_ 4.21467961541076240e+16 OP -Xe_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons12_424)_ 4.20498877320276640e+16 OP -Xe_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons12_425)_ 4.19527504825047760e+16 OP -Xe_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons12_426)_ 4.18553844055389760e+16 OP -Xe_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons12_427)_ 4.17577895011302320e+16 OP -Xe_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons12_428)_ 4.16599657692785680e+16 OP -Xe_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons12_429)_ 4.15619132099839600e+16 OP -Xe_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons12_430)_ 4.14636318232464400e+16 OP -Xe_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons12_431)_ 4.13651216090659840e+16 OP -Xe_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons12_432)_ 4.12663825674426080e+16 OP -Xe_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons12_433)_ 4.11674146983762960e+16 OP -Xe_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons12_434)_ 4.10682180018670640e+16 OP -Xe_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons12_435)_ 4.09687924779148960e+16 OP -Xe_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons12_436)_ 4.08691381265198080e+16 OP -Xe_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons12_437)_ 4.07692549476817840e+16 OP -Xe_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons12_438)_ 4.06691429414008400e+16 OP -Xe_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons12_439)_ 4.05688021076769600e+16 OP -Xe_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons12_440)_ 4.04682324465101600e+16 OP -Xe_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons12_441)_ 4.03674339579004240e+16 OP -Xe_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons12_442)_ 4.02664066418477680e+16 OP -Xe_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons12_443)_ 4.01651504983521760e+16 OP -Xe_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons12_444)_ 4.00636655274136640e+16 OP -Xe_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons12_445)_ 3.99619517290322160e+16 OP -Xe_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons12_446)_ 3.98600091032078480e+16 OP -Xe_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons12_447)_ 3.97578376499405520e+16 OP -Xe_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons12_448)_ 3.96554373692303280e+16 OP -Xe_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons12_449)_ 3.95528082610771680e+16 OP -Xe_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons12_450)_ 3.94499503254810880e+16 OP -Xe_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons12_451)_ 3.93468635624420800e+16 OP -Xe_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons12_452)_ 3.92435479719601440e+16 OP -Xe_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons12_453)_ 3.91400035540352720e+16 OP -Xe_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons12_454)_ 3.90362303086674800e+16 OP -Xe_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons12_455)_ 3.89322282358567520e+16 OP -Xe_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons12_456)_ 3.88279973356031120e+16 OP -Xe_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons12_457)_ 3.87235376079065280e+16 OP -Xe_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons12_458)_ 3.86188490527670320e+16 OP -Xe_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons12_459)_ 3.85139316701845920e+16 OP -Xe_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons12_460)_ 3.84087854601592320e+16 OP -Xe_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons12_461)_ 3.83034104226909440e+16 OP -Xe_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons12_462)_ 3.81978065577797280e+16 OP -Xe_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons12_463)_ 3.80919738654255760e+16 OP -Xe_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons12_464)_ 3.79859123456285040e+16 OP -Xe_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons12_465)_ 3.78796219983885040e+16 OP -Xe_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons12_466)_ 3.77731028237055760e+16 OP -Xe_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons12_467)_ 3.76663548215797200e+16 OP -Xe_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons12_468)_ 3.75593779920109360e+16 OP -Xe_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons12_469)_ 3.74521723349992240e+16 OP -Xe_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons12_470)_ 3.73447378505445920e+16 OP -Xe_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons12_471)_ 3.68321630173018160e+16 OP -Xe_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons12_472)_ 3.63195881840590560e+16 OP -Xe_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons12_473)_ 3.58070133508162840e+16 OP -Xe_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons12_474)_ 3.52944385175735200e+16 OP -Xe_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons12_475)_ 3.47818636843307480e+16 OP -Xe_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons12_476)_ 3.42692888510879800e+16 OP -Xe_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons12_477)_ 3.37567140178452080e+16 OP -Xe_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons12_478)_ 3.32441391846024400e+16 OP -Xe_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons12_479)_ 3.27315643513596720e+16 OP -Xe_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons12_480)_ 3.22189895181169040e+16 OP -Xe_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons12_481)_ 3.17064146848741320e+16 OP -Xe_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons12_482)_ 3.11938398516313640e+16 OP -Xe_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons12_483)_ 3.06812650183885920e+16 OP -Xe_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons12_484)_ 3.01686901851458280e+16 OP -Xe_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons12_485)_ 2.96561153519030600e+16 OP -Xe_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons12_486)_ 2.91435405186602920e+16 OP -Xe_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons12_487)_ 2.86309656854175200e+16 OP -Xe_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons12_488)_ 2.81183908521747520e+16 OP -Xe_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons12_489)_ 2.76058160189319800e+16 OP -Xe_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons12_490)_ 2.70932411856892120e+16 OP -Xe_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons12_491)_ 2.65806663524464480e+16 OP -Xe_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons12_492)_ 2.60680915192036760e+16 OP -Xe_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons12_493)_ 2.55555166859609080e+16 OP -Xe_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons12_494)_ 2.50429418527181400e+16 OP -Xe_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons12_495)_ 2.45303670194753680e+16 OP -Xe_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons12_496)_ 2.40177921862326000e+16 OP -Xe_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons12_497)_ 2.35052173529898320e+16 OP -Xe_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons12_498)_ 2.29926425197470600e+16 OP -Xe_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons12_499)_ 2.24800676865042960e+16 OP -Xe_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons12_500)_ 2.19674928532615240e+16 OP +Xe_concentration_________________________________________________________ (f_nd_impurity_electrons(13))__ 6.12023394218243070e-04 +Xe_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons12_0)__ 6.53879673061058720e+16 OP +Xe_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons12_1)__ 6.53878478327984560e+16 OP +Xe_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons12_2)__ 6.53874894128762480e+16 OP +Xe_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons12_3)__ 6.53868920463392160e+16 OP +Xe_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons12_4)__ 6.53860557331873840e+16 OP +Xe_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons12_5)__ 6.53849804734207440e+16 OP +Xe_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons12_6)__ 6.53836662670392720e+16 OP +Xe_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons12_7)__ 6.53821131140430080e+16 OP +Xe_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons12_8)__ 6.53803210144319280e+16 OP +Xe_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons12_9)__ 6.53782899682060320e+16 OP +Xe_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons12_10)_ 6.53760199753653360e+16 OP +Xe_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons12_11)_ 6.53735110359098240e+16 OP +Xe_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons12_12)_ 6.53707631498394960e+16 OP +Xe_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons12_13)_ 6.53677763171543680e+16 OP +Xe_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons12_14)_ 6.53645505378544240e+16 OP +Xe_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons12_15)_ 6.53610858119396640e+16 OP +Xe_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons12_16)_ 6.53573821394101040e+16 OP +Xe_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons12_17)_ 6.53534395202657280e+16 OP +Xe_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons12_18)_ 6.53492579545065440e+16 OP +Xe_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons12_19)_ 6.53448374421325440e+16 OP +Xe_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons12_20)_ 6.53401779831437280e+16 OP +Xe_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons12_21)_ 6.53352795775401120e+16 OP +Xe_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons12_22)_ 6.53301422253216800e+16 OP +Xe_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons12_23)_ 6.53247659264884480e+16 OP +Xe_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons12_24)_ 6.53191506810403840e+16 OP +Xe_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons12_25)_ 6.53132964889775280e+16 OP +Xe_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons12_26)_ 6.53072033502998480e+16 OP +Xe_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons12_27)_ 6.53008712650073680e+16 OP +Xe_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons12_28)_ 6.52943002331000720e+16 OP +Xe_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons12_29)_ 6.52874902545779680e+16 OP +Xe_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons12_30)_ 6.52804413294410560e+16 OP +Xe_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons12_31)_ 6.52731534576893280e+16 OP +Xe_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons12_32)_ 6.52656266393228000e+16 OP +Xe_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons12_33)_ 6.52578608743414480e+16 OP +Xe_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons12_34)_ 6.52498561627452880e+16 OP +Xe_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons12_35)_ 6.52416125045343120e+16 OP +Xe_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons12_36)_ 6.52331298997085360e+16 OP +Xe_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons12_37)_ 6.52244083482679520e+16 OP +Xe_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons12_38)_ 6.52154478502125440e+16 OP +Xe_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons12_39)_ 6.52062484055423280e+16 OP +Xe_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons12_40)_ 6.51968100142573120e+16 OP +Xe_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons12_41)_ 6.51871326763574720e+16 OP +Xe_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons12_42)_ 6.51772163918428320e+16 OP +Xe_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons12_43)_ 6.51670611607133840e+16 OP +Xe_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons12_44)_ 6.51566669829691120e+16 OP +Xe_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons12_45)_ 6.51460338586100320e+16 OP +Xe_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons12_46)_ 6.51351617876361440e+16 OP +Xe_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons12_47)_ 6.51240507700474560e+16 OP +Xe_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons12_48)_ 6.51127008058439440e+16 OP +Xe_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons12_49)_ 6.51011118950256240e+16 OP +Xe_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons12_50)_ 6.50892840375924960e+16 OP +Xe_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons12_51)_ 6.50772172335445440e+16 OP +Xe_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons12_52)_ 6.50649114828818080e+16 OP +Xe_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons12_53)_ 6.50523667856042400e+16 OP +Xe_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons12_54)_ 6.50395831417118640e+16 OP +Xe_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons12_55)_ 6.50265605512046800e+16 OP +Xe_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons12_56)_ 6.50132990140826880e+16 OP +Xe_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons12_57)_ 6.49997985303458880e+16 OP +Xe_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons12_58)_ 6.49860590999942640e+16 OP +Xe_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons12_59)_ 6.49720807230278480e+16 OP +Xe_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons12_60)_ 6.49578633994466000e+16 OP +Xe_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons12_61)_ 6.49434071292505680e+16 OP +Xe_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons12_62)_ 6.49287119124397040e+16 OP +Xe_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons12_63)_ 6.49137777490140400e+16 OP +Xe_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons12_64)_ 6.48986046389735600e+16 OP +Xe_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons12_65)_ 6.48831925823182720e+16 OP +Xe_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons12_66)_ 6.48675415790481680e+16 OP +Xe_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons12_67)_ 6.48516516291632560e+16 OP +Xe_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons12_68)_ 6.48355227326635360e+16 OP +Xe_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons12_69)_ 6.48191548895490000e+16 OP +Xe_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons12_70)_ 6.48025480998196560e+16 OP +Xe_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons12_71)_ 6.47857023634754960e+16 OP +Xe_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons12_72)_ 6.47686176805165360e+16 OP +Xe_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons12_73)_ 6.47512940509427600e+16 OP +Xe_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons12_74)_ 6.47337314747541680e+16 OP +Xe_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons12_75)_ 6.47159299519507680e+16 OP +Xe_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons12_76)_ 6.46978894825325680e+16 OP +Xe_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons12_77)_ 6.46796100664995440e+16 OP +Xe_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons12_78)_ 6.46610917038517200e+16 OP +Xe_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons12_79)_ 6.46423343945890800e+16 OP +Xe_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons12_80)_ 6.46233381387116240e+16 OP +Xe_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons12_81)_ 6.46041029362193680e+16 OP +Xe_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons12_82)_ 6.45846287871122880e+16 OP +Xe_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons12_83)_ 6.45649156913904080e+16 OP +Xe_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons12_84)_ 6.45449636490537200e+16 OP +Xe_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons12_85)_ 6.45247726601022080e+16 OP +Xe_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons12_86)_ 6.45043427245358880e+16 OP +Xe_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons12_87)_ 6.44836738423547680e+16 OP +Xe_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons12_88)_ 6.44627660135588320e+16 OP +Xe_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons12_89)_ 6.44416192381480960e+16 OP +Xe_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons12_90)_ 6.44202335161225280e+16 OP +Xe_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons12_91)_ 6.43986088474821600e+16 OP +Xe_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons12_92)_ 6.43767452322269840e+16 OP +Xe_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons12_93)_ 6.43546426703569840e+16 OP +Xe_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons12_94)_ 6.43323011618721920e+16 OP +Xe_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons12_95)_ 6.43097207067725840e+16 OP +Xe_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons12_96)_ 6.42869013050581600e+16 OP +Xe_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons12_97)_ 6.42638429567289200e+16 OP +Xe_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons12_98)_ 6.42405456617848880e+16 OP +Xe_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons12_99)_ 6.42170094202260320e+16 OP +Xe_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons12_100)_ 6.41932342320523680e+16 OP +Xe_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons12_101)_ 6.41692200972638960e+16 OP +Xe_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons12_102)_ 6.41449670158606080e+16 OP +Xe_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons12_103)_ 6.41204749878425040e+16 OP +Xe_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons12_104)_ 6.40957440132095920e+16 OP +Xe_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons12_105)_ 6.40707740919618880e+16 OP +Xe_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons12_106)_ 6.40455652240993520e+16 OP +Xe_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons12_107)_ 6.40201174096220080e+16 OP +Xe_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons12_108)_ 6.39944306485298560e+16 OP +Xe_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons12_109)_ 6.39685049408229040e+16 OP +Xe_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons12_110)_ 6.39423402865011200e+16 OP +Xe_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons12_111)_ 6.39159366855645520e+16 OP +Xe_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons12_112)_ 6.38892941380131520e+16 OP +Xe_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons12_113)_ 6.38624126438469440e+16 OP +Xe_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons12_114)_ 6.38352922030659360e+16 OP +Xe_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons12_115)_ 6.38079328156701120e+16 OP +Xe_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons12_116)_ 6.37803344816594720e+16 OP +Xe_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons12_117)_ 6.37524972010340240e+16 OP +Xe_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons12_118)_ 6.37244209737937760e+16 OP +Xe_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons12_119)_ 6.36961057999387040e+16 OP +Xe_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons12_120)_ 6.36675516794688240e+16 OP +Xe_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons12_121)_ 6.36387586123841440e+16 OP +Xe_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons12_122)_ 6.36097265986846320e+16 OP +Xe_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons12_123)_ 6.35804556383703200e+16 OP +Xe_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons12_124)_ 6.35509457314412080e+16 OP +Xe_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons12_125)_ 6.35211968778972640e+16 OP +Xe_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons12_126)_ 6.34912090777385200e+16 OP +Xe_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons12_127)_ 6.34609823309649680e+16 OP +Xe_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons12_128)_ 6.34305166375766160e+16 OP +Xe_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons12_129)_ 6.33998119975734320e+16 OP +Xe_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons12_130)_ 6.33688684109554480e+16 OP +Xe_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons12_131)_ 6.33376858777226560e+16 OP +Xe_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons12_132)_ 6.33062643978750400e+16 OP +Xe_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons12_133)_ 6.32746039714126240e+16 OP +Xe_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons12_134)_ 6.32427045983354000e+16 OP +Xe_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons12_135)_ 6.32105662786433520e+16 OP +Xe_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons12_136)_ 6.31781890123365120e+16 OP +Xe_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons12_137)_ 6.31455727994148400e+16 OP +Xe_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons12_138)_ 6.31127176398783760e+16 OP +Xe_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons12_139)_ 6.30796235337270880e+16 OP +Xe_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons12_140)_ 6.30462904809610000e+16 OP +Xe_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons12_141)_ 6.30127184815801040e+16 OP +Xe_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons12_142)_ 6.29789075355843760e+16 OP +Xe_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons12_143)_ 6.29448576429738480e+16 OP +Xe_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons12_144)_ 6.29105688037485200e+16 OP +Xe_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons12_145)_ 6.28760410179083840e+16 OP +Xe_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons12_146)_ 6.28412742854534240e+16 OP +Xe_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons12_147)_ 6.28062686063836560e+16 OP +Xe_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons12_148)_ 6.27710239806990640e+16 OP +Xe_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons12_149)_ 6.27355404083996800e+16 OP +Xe_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons12_150)_ 6.26998178894854800e+16 OP +Xe_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons12_151)_ 6.26638564239564640e+16 OP +Xe_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons12_152)_ 6.26276560118126480e+16 OP +Xe_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons12_153)_ 6.25912166530540240e+16 OP +Xe_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons12_154)_ 6.25545383476805760e+16 OP +Xe_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons12_155)_ 6.25176210956923200e+16 OP +Xe_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons12_156)_ 6.24804648970892560e+16 OP +Xe_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons12_157)_ 6.24430697518713840e+16 OP +Xe_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons12_158)_ 6.24054356600387040e+16 OP +Xe_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons12_159)_ 6.23675626215912000e+16 OP +Xe_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons12_160)_ 6.23294506365288960e+16 OP +Xe_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons12_161)_ 6.22910997048517840e+16 OP +Xe_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons12_162)_ 6.22525098265598400e+16 OP +Xe_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons12_163)_ 6.22136810016531120e+16 OP +Xe_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons12_164)_ 6.21746132301315520e+16 OP +Xe_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons12_165)_ 6.21353065119952080e+16 OP +Xe_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons12_166)_ 6.20957608472440320e+16 OP +Xe_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons12_167)_ 6.20559762358780480e+16 OP +Xe_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons12_168)_ 6.20159526778972640e+16 OP +Xe_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons12_169)_ 6.19756901733016560e+16 OP +Xe_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons12_170)_ 6.19351887220912400e+16 OP +Xe_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons12_171)_ 6.18944483242660160e+16 OP +Xe_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons12_172)_ 6.18534689798259760e+16 OP +Xe_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons12_173)_ 6.18122506887711360e+16 OP +Xe_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons12_174)_ 6.17707934511014720e+16 OP +Xe_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons12_175)_ 6.17290972668170160e+16 OP +Xe_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons12_176)_ 6.16871621359177280e+16 OP +Xe_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons12_177)_ 6.16449880584036400e+16 OP +Xe_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons12_178)_ 6.16025750342747520e+16 OP +Xe_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons12_179)_ 6.15599230635310320e+16 OP +Xe_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons12_180)_ 6.15170321461725120e+16 OP +Xe_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons12_181)_ 6.14739022821991840e+16 OP +Xe_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons12_182)_ 6.14305334716110400e+16 OP +Xe_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons12_183)_ 6.13869257144080800e+16 OP +Xe_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons12_184)_ 6.13430790105903200e+16 OP +Xe_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons12_185)_ 6.12989933601577440e+16 OP +Xe_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons12_186)_ 6.12546687631103680e+16 OP +Xe_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons12_187)_ 6.12101052194481680e+16 OP +Xe_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons12_188)_ 6.11653027291711600e+16 OP +Xe_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons12_189)_ 6.11202612922793440e+16 OP +Xe_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons12_190)_ 6.10749809087727120e+16 OP +Xe_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons12_191)_ 6.10294615786512800e+16 OP +Xe_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons12_192)_ 6.09837033019150320e+16 OP +Xe_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons12_193)_ 6.09377060785639680e+16 OP +Xe_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons12_194)_ 6.08914699085980960e+16 OP +Xe_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons12_195)_ 6.08449947920174160e+16 OP +Xe_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons12_196)_ 6.07982807288219280e+16 OP +Xe_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons12_197)_ 6.07513277190116240e+16 OP +Xe_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons12_198)_ 6.07041357625865040e+16 OP +Xe_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons12_199)_ 6.06567048595465840e+16 OP +Xe_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons12_200)_ 6.06090350098918480e+16 OP +Xe_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons12_201)_ 6.05611262136223040e+16 OP +Xe_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons12_202)_ 6.05129784707379440e+16 OP +Xe_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons12_203)_ 6.04645917812387760e+16 OP +Xe_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons12_204)_ 6.04159661451248080e+16 OP +Xe_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons12_205)_ 6.03671015623960160e+16 OP +Xe_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons12_206)_ 6.03179980330524080e+16 OP +Xe_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons12_207)_ 6.02686555570940080e+16 OP +Xe_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons12_208)_ 6.02190741345207840e+16 OP +Xe_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons12_209)_ 6.01692537653327520e+16 OP +Xe_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons12_210)_ 6.01191944495299120e+16 OP +Xe_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons12_211)_ 6.00688961871122640e+16 OP +Xe_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons12_212)_ 6.00183589780798000e+16 OP +Xe_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons12_213)_ 5.99675828224325280e+16 OP +Xe_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons12_214)_ 5.99165677201704320e+16 OP +Xe_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons12_215)_ 5.98653136712935440e+16 OP +Xe_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons12_216)_ 5.98138206758018400e+16 OP +Xe_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons12_217)_ 5.97620887336953120e+16 OP +Xe_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons12_218)_ 5.97101178449739920e+16 OP +Xe_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons12_219)_ 5.96579080096378560e+16 OP +Xe_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons12_220)_ 5.96054592276869040e+16 OP +Xe_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons12_221)_ 5.95527714991211440e+16 OP +Xe_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons12_222)_ 5.94998448239405760e+16 OP +Xe_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons12_223)_ 5.94466792021452000e+16 OP +Xe_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons12_224)_ 5.93932746337350080e+16 OP +Xe_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons12_225)_ 5.93396311187100000e+16 OP +Xe_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons12_226)_ 5.92857486570701920e+16 OP +Xe_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons12_227)_ 5.92316272488155600e+16 OP +Xe_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons12_228)_ 5.91772668939461360e+16 OP +Xe_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons12_229)_ 5.91226675924618800e+16 OP +Xe_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons12_230)_ 5.90678293443628320e+16 OP +Xe_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons12_231)_ 5.90127521496489520e+16 OP +Xe_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons12_232)_ 5.89574360083202880e+16 OP +Xe_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons12_233)_ 5.89018809203767920e+16 OP +Xe_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons12_234)_ 5.88460868858184880e+16 OP +Xe_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons12_235)_ 5.87900539046453920e+16 OP +Xe_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons12_236)_ 5.87337819768574720e+16 OP +Xe_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons12_237)_ 5.86772711024547360e+16 OP +Xe_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons12_238)_ 5.86205212814372000e+16 OP +Xe_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons12_239)_ 5.85635325138048480e+16 OP +Xe_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons12_240)_ 5.85063047995576800e+16 OP +Xe_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons12_241)_ 5.84488381386957040e+16 OP +Xe_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons12_242)_ 5.83911325312189200e+16 OP +Xe_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons12_243)_ 5.83331879771273280e+16 OP +Xe_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons12_244)_ 5.82750044764209200e+16 OP +Xe_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons12_245)_ 5.82165820290997040e+16 OP +Xe_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons12_246)_ 5.81579206351636800e+16 OP +Xe_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons12_247)_ 5.80990202946128400e+16 OP +Xe_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons12_248)_ 5.80398810074471920e+16 OP +Xe_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons12_249)_ 5.79805027736667280e+16 OP +Xe_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons12_250)_ 5.79208855932714640e+16 OP +Xe_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons12_251)_ 5.78610294662613760e+16 OP +Xe_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons12_252)_ 5.78009343926364960e+16 OP +Xe_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons12_253)_ 5.77406003723967840e+16 OP +Xe_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons12_254)_ 5.76800274055422800e+16 OP +Xe_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons12_255)_ 5.76192154920729520e+16 OP +Xe_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons12_256)_ 5.75581646319888160e+16 OP +Xe_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons12_257)_ 5.74968748252898720e+16 OP +Xe_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons12_258)_ 5.74353460719761200e+16 OP +Xe_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons12_259)_ 5.73735783720475520e+16 OP +Xe_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons12_260)_ 5.73115717255041760e+16 OP +Xe_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons12_261)_ 5.72493261323459840e+16 OP +Xe_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons12_262)_ 5.71868415925729920e+16 OP +Xe_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons12_263)_ 5.71241181061851760e+16 OP +Xe_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons12_264)_ 5.70611556731825600e+16 OP +Xe_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons12_265)_ 5.69979542935651280e+16 OP +Xe_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons12_266)_ 5.69345139673328880e+16 OP +Xe_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons12_267)_ 5.68708346944858320e+16 OP +Xe_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons12_268)_ 5.68069164750239680e+16 OP +Xe_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons12_269)_ 5.67427593089472960e+16 OP +Xe_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons12_270)_ 5.66783631962558160e+16 OP +Xe_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons12_271)_ 5.66137281369495200e+16 OP +Xe_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons12_272)_ 5.65488541310284080e+16 OP +Xe_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons12_273)_ 5.64837411784924960e+16 OP +Xe_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons12_274)_ 5.64183892793417680e+16 OP +Xe_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons12_275)_ 5.63527984335762320e+16 OP +Xe_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons12_276)_ 5.62869686411958880e+16 OP +Xe_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons12_277)_ 5.62208999022007280e+16 OP +Xe_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons12_278)_ 5.61545922165907600e+16 OP +Xe_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons12_279)_ 5.60880455843659760e+16 OP +Xe_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons12_280)_ 5.60212600055263840e+16 OP +Xe_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons12_281)_ 5.59542354800719840e+16 OP +Xe_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons12_282)_ 5.58869720080027680e+16 OP +Xe_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons12_283)_ 5.58194695893187600e+16 OP +Xe_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons12_284)_ 5.57517282240199200e+16 OP +Xe_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons12_285)_ 5.56837479121062800e+16 OP +Xe_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons12_286)_ 5.56155286535778160e+16 OP +Xe_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons12_287)_ 5.55470704484345520e+16 OP +Xe_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons12_288)_ 5.54783732966764800e+16 OP +Xe_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons12_289)_ 5.54094371983035920e+16 OP +Xe_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons12_290)_ 5.53402621533158880e+16 OP +Xe_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons12_291)_ 5.52708481617133840e+16 OP +Xe_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons12_292)_ 5.52011952234960640e+16 OP +Xe_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons12_293)_ 5.51313033386639360e+16 OP +Xe_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons12_294)_ 5.50611725072170000e+16 OP +Xe_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons12_295)_ 5.49908027291552400e+16 OP +Xe_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons12_296)_ 5.49201940044786800e+16 OP +Xe_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons12_297)_ 5.48493463331873120e+16 OP +Xe_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons12_298)_ 5.47782597152811200e+16 OP +Xe_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons12_299)_ 5.47069341507601280e+16 OP +Xe_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons12_300)_ 5.46353696396243200e+16 OP +Xe_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons12_301)_ 5.45635661818736960e+16 OP +Xe_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons12_302)_ 5.44915237775082800e+16 OP +Xe_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons12_303)_ 5.44192424265280400e+16 OP +Xe_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons12_304)_ 5.43467221289329920e+16 OP +Xe_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons12_305)_ 5.42739628847231360e+16 OP +Xe_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons12_306)_ 5.42009646938984640e+16 OP +Xe_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons12_307)_ 5.41277275564589920e+16 OP +Xe_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons12_308)_ 5.40542514724046960e+16 OP +Xe_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons12_309)_ 5.39805364417355920e+16 OP +Xe_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons12_310)_ 5.39065824644516720e+16 OP +Xe_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons12_311)_ 5.38323895405529600e+16 OP +Xe_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons12_312)_ 5.37579576700394240e+16 OP +Xe_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons12_313)_ 5.36832868529110880e+16 OP +Xe_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons12_314)_ 5.36083770891679280e+16 OP +Xe_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons12_315)_ 5.35332283788099680e+16 OP +Xe_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons12_316)_ 5.34578407218371840e+16 OP +Xe_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons12_317)_ 5.33822141182496080e+16 OP +Xe_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons12_318)_ 5.33063485680472000e+16 OP +Xe_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons12_319)_ 5.32302440712299920e+16 OP +Xe_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons12_320)_ 5.31539006277979760e+16 OP +Xe_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons12_321)_ 5.30773182377511440e+16 OP +Xe_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons12_322)_ 5.30004969010894960e+16 OP +Xe_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons12_323)_ 5.29234366178130480e+16 OP +Xe_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons12_324)_ 5.28461373879217920e+16 OP +Xe_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons12_325)_ 5.27685992114157200e+16 OP +Xe_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons12_326)_ 5.26908220882948320e+16 OP +Xe_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons12_327)_ 5.26128060185591360e+16 OP +Xe_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons12_328)_ 5.25345510022086320e+16 OP +Xe_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons12_329)_ 5.24560570392433200e+16 OP +Xe_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons12_330)_ 5.23773241296631840e+16 OP +Xe_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons12_331)_ 5.22983522734682560e+16 OP +Xe_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons12_332)_ 5.22191414706585040e+16 OP +Xe_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons12_333)_ 5.21396917212339520e+16 OP +Xe_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons12_334)_ 5.20600030251945760e+16 OP +Xe_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons12_335)_ 5.19800753825404000e+16 OP +Xe_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons12_336)_ 5.18999087932714160e+16 OP +Xe_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons12_337)_ 5.18195032573876080e+16 OP +Xe_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons12_338)_ 5.17388587748890000e+16 OP +Xe_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons12_339)_ 5.16579753457755840e+16 OP +Xe_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons12_340)_ 5.15768529700473520e+16 OP +Xe_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons12_341)_ 5.14954916477043040e+16 OP +Xe_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons12_342)_ 5.14138913787464480e+16 OP +Xe_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons12_343)_ 5.13320521631737840e+16 OP +Xe_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons12_344)_ 5.12499740009863120e+16 OP +Xe_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons12_345)_ 5.11676568921840160e+16 OP +Xe_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons12_346)_ 5.10851008367669280e+16 OP +Xe_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons12_347)_ 5.10023058347350240e+16 OP +Xe_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons12_348)_ 5.09192718860883040e+16 OP +Xe_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons12_349)_ 5.08359989908267680e+16 OP +Xe_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons12_350)_ 5.07524871489504240e+16 OP +Xe_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons12_351)_ 5.06687363604592720e+16 OP +Xe_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons12_352)_ 5.05847466253533200e+16 OP +Xe_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons12_353)_ 5.05005179436325360e+16 OP +Xe_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons12_354)_ 5.04160503152969600e+16 OP +Xe_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons12_355)_ 5.03313437403465680e+16 OP +Xe_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons12_356)_ 5.02463982187813600e+16 OP +Xe_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons12_357)_ 5.01612137506013440e+16 OP +Xe_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons12_358)_ 5.00757903358065280e+16 OP +Xe_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons12_359)_ 4.99901279743968880e+16 OP +Xe_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons12_360)_ 4.99042266663724400e+16 OP +Xe_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons12_361)_ 4.98180864117331760e+16 OP +Xe_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons12_362)_ 4.97317072104791120e+16 OP +Xe_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons12_363)_ 4.96450890626102320e+16 OP +Xe_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons12_364)_ 4.95582319681265440e+16 OP +Xe_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons12_365)_ 4.94711359270280400e+16 OP +Xe_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons12_366)_ 4.93838009393147360e+16 OP +Xe_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons12_367)_ 4.92962270049866080e+16 OP +Xe_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons12_368)_ 4.92084141240436720e+16 OP +Xe_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons12_369)_ 4.91203622964859360e+16 OP +Xe_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons12_370)_ 4.90320715223133760e+16 OP +Xe_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons12_371)_ 4.89435418015260080e+16 OP +Xe_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons12_372)_ 4.88547731341238480e+16 OP +Xe_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons12_373)_ 4.87657655201068480e+16 OP +Xe_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons12_374)_ 4.86765189594750560e+16 OP +Xe_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons12_375)_ 4.85870334522284480e+16 OP +Xe_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons12_376)_ 4.84973089983670320e+16 OP +Xe_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons12_377)_ 4.84073455978908080e+16 OP +Xe_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons12_378)_ 4.83171432507997600e+16 OP +Xe_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons12_379)_ 4.82267019570939120e+16 OP +Xe_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons12_380)_ 4.81360217167732560e+16 OP +Xe_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons12_381)_ 4.80451025298377760e+16 OP +Xe_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons12_382)_ 4.79539443962874960e+16 OP +Xe_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons12_383)_ 4.78625473161224000e+16 OP +Xe_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons12_384)_ 4.77709112893424960e+16 OP +Xe_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons12_385)_ 4.76790363159477840e+16 OP +Xe_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons12_386)_ 4.75869223959382640e+16 OP +Xe_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons12_387)_ 4.74945695293139280e+16 OP +Xe_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons12_388)_ 4.74019777160747760e+16 OP +Xe_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons12_389)_ 4.73091469562208240e+16 OP +Xe_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons12_390)_ 4.72160772497520480e+16 OP +Xe_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons12_391)_ 4.71227685966684800e+16 OP +Xe_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons12_392)_ 4.70292209969700800e+16 OP +Xe_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons12_393)_ 4.69354344506568880e+16 OP +Xe_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons12_394)_ 4.68414089577288640e+16 OP +Xe_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons12_395)_ 4.67471445181860560e+16 OP +Xe_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons12_396)_ 4.66526411320284160e+16 OP +Xe_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons12_397)_ 4.65578987992559760e+16 OP +Xe_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons12_398)_ 4.64629175198687120e+16 OP +Xe_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons12_399)_ 4.63676972938666560e+16 OP +Xe_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons12_400)_ 4.62722381212497760e+16 OP +Xe_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons12_401)_ 4.61765400020180960e+16 OP +Xe_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons12_402)_ 4.60806029361716000e+16 OP +Xe_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons12_403)_ 4.59844269237102960e+16 OP +Xe_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons12_404)_ 4.58880119646341680e+16 OP +Xe_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons12_405)_ 4.57913580589432400e+16 OP +Xe_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons12_406)_ 4.56944652066375040e+16 OP +Xe_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons12_407)_ 4.55973334077169680e+16 OP +Xe_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons12_408)_ 4.54999626621816000e+16 OP +Xe_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons12_409)_ 4.54023529700314320e+16 OP +Xe_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons12_410)_ 4.53045043312664480e+16 OP +Xe_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons12_411)_ 4.52064167458866560e+16 OP +Xe_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons12_412)_ 4.51080902138920400e+16 OP +Xe_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons12_413)_ 4.50095247352826320e+16 OP +Xe_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons12_414)_ 4.49107203100584080e+16 OP +Xe_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons12_415)_ 4.48116769382193680e+16 OP +Xe_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons12_416)_ 4.47123946197655200e+16 OP +Xe_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons12_417)_ 4.46128733546968720e+16 OP +Xe_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons12_418)_ 4.45131131430134000e+16 OP +Xe_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons12_419)_ 4.44131139847151200e+16 OP +Xe_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons12_420)_ 4.43128758798020320e+16 OP +Xe_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons12_421)_ 4.42123988282741360e+16 OP +Xe_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons12_422)_ 4.41116828301314240e+16 OP +Xe_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons12_423)_ 4.40107278853739040e+16 OP +Xe_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons12_424)_ 4.39095339940015680e+16 OP +Xe_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons12_425)_ 4.38081011560144240e+16 OP +Xe_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons12_426)_ 4.37064293714124800e+16 OP +Xe_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons12_427)_ 4.36045186401957120e+16 OP +Xe_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons12_428)_ 4.35023689623641360e+16 OP +Xe_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons12_429)_ 4.33999803379177520e+16 OP +Xe_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons12_430)_ 4.32973527668565520e+16 OP +Xe_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons12_431)_ 4.31944862491805440e+16 OP +Xe_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons12_432)_ 4.30913807848897280e+16 OP +Xe_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons12_433)_ 4.29880363739840960e+16 OP +Xe_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons12_434)_ 4.28844530164636640e+16 OP +Xe_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons12_435)_ 4.27806307123284080e+16 OP +Xe_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons12_436)_ 4.26765694615783520e+16 OP +Xe_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons12_437)_ 4.25722692642134800e+16 OP +Xe_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons12_438)_ 4.24677301202338000e+16 OP +Xe_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons12_439)_ 4.23629520296393040e+16 OP +Xe_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons12_440)_ 4.22579349924300080e+16 OP +Xe_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons12_441)_ 4.21526790086058880e+16 OP +Xe_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons12_442)_ 4.20471840781669680e+16 OP +Xe_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons12_443)_ 4.19414502011132320e+16 OP +Xe_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons12_444)_ 4.18354773774446880e+16 OP +Xe_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons12_445)_ 4.17292656071613200e+16 OP +Xe_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons12_446)_ 4.16228148902631600e+16 OP +Xe_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons12_447)_ 4.15161252267501760e+16 OP +Xe_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons12_448)_ 4.14091966166223920e+16 OP +Xe_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons12_449)_ 4.13020290598797920e+16 OP +Xe_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons12_450)_ 4.11946225565223760e+16 OP +Xe_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons12_451)_ 4.10869771065501600e+16 OP +Xe_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons12_452)_ 4.09790927099631280e+16 OP +Xe_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons12_453)_ 4.08709693667612800e+16 OP +Xe_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons12_454)_ 4.07626070769446320e+16 OP +Xe_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons12_455)_ 4.06540058405131680e+16 OP +Xe_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons12_456)_ 4.05451656574668960e+16 OP +Xe_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons12_457)_ 4.04360865278058080e+16 OP +Xe_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons12_458)_ 4.03267684515299120e+16 OP +Xe_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons12_459)_ 4.02172114286392080e+16 OP +Xe_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons12_460)_ 4.01074154591336880e+16 OP +Xe_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons12_461)_ 3.99973805430133600e+16 OP +Xe_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons12_462)_ 3.98871066802782240e+16 OP +Xe_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons12_463)_ 3.97765938709282720e+16 OP +Xe_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons12_464)_ 3.96658421149635120e+16 OP +Xe_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons12_465)_ 3.95548514123839360e+16 OP +Xe_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons12_466)_ 3.94436217631895600e+16 OP +Xe_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons12_467)_ 3.93321531673803680e+16 OP +Xe_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons12_468)_ 3.92204456249563680e+16 OP +Xe_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons12_469)_ 3.91084991359175520e+16 OP +Xe_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons12_470)_ 3.89963137002639360e+16 OP +Xe_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons12_471)_ 3.84610701788877680e+16 OP +Xe_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons12_472)_ 3.79258266575115920e+16 OP +Xe_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons12_473)_ 3.73905831361354160e+16 OP +Xe_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons12_474)_ 3.68553396147592480e+16 OP +Xe_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons12_475)_ 3.63200960933830800e+16 OP +Xe_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons12_476)_ 3.57848525720069040e+16 OP +Xe_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons12_477)_ 3.52496090506307320e+16 OP +Xe_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons12_478)_ 3.47143655292545640e+16 OP +Xe_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons12_479)_ 3.41791220078783880e+16 OP +Xe_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons12_480)_ 3.36438784865022200e+16 OP +Xe_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons12_481)_ 3.31086349651260480e+16 OP +Xe_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons12_482)_ 3.25733914437498760e+16 OP +Xe_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons12_483)_ 3.20381479223737040e+16 OP +Xe_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons12_484)_ 3.15029044009975360e+16 OP +Xe_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons12_485)_ 3.09676608796213600e+16 OP +Xe_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons12_486)_ 3.04324173582451920e+16 OP +Xe_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons12_487)_ 2.98971738368690160e+16 OP +Xe_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons12_488)_ 2.93619303154928480e+16 OP +Xe_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons12_489)_ 2.88266867941166720e+16 OP +Xe_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons12_490)_ 2.82914432727405040e+16 OP +Xe_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons12_491)_ 2.77561997513643320e+16 OP +Xe_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons12_492)_ 2.72209562299881600e+16 OP +Xe_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons12_493)_ 2.66857127086119880e+16 OP +Xe_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons12_494)_ 2.61504691872358120e+16 OP +Xe_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons12_495)_ 2.56152256658596440e+16 OP +Xe_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons12_496)_ 2.50799821444834760e+16 OP +Xe_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons12_497)_ 2.45447386231073000e+16 OP +Xe_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons12_498)_ 2.40094951017311320e+16 OP +Xe_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons12_499)_ 2.34742515803549560e+16 OP +Xe_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons12_500)_ 2.29390080589787880e+16 OP W_concentration__________________________________________________________ (f_nd_impurity_electrons(14))__ 5.00000000000000041e-06 -W_concentration_at_point_0_______________________________________________ (f_nd_impurity_electrons13_0)__ 5.24766129845964188e+14 OP -W_concentration_at_point_1_______________________________________________ (f_nd_impurity_electrons13_1)__ 5.24765171020276562e+14 OP -W_concentration_at_point_2_______________________________________________ (f_nd_impurity_electrons13_2)__ 5.24762294543213875e+14 OP -W_concentration_at_point_3_______________________________________________ (f_nd_impurity_electrons13_3)__ 5.24757500414776000e+14 OP -W_concentration_at_point_4_______________________________________________ (f_nd_impurity_electrons13_4)__ 5.24750788634962875e+14 OP -W_concentration_at_point_5_______________________________________________ (f_nd_impurity_electrons13_5)__ 5.24742159203774688e+14 OP -W_concentration_at_point_6_______________________________________________ (f_nd_impurity_electrons13_6)__ 5.24731612121211312e+14 OP -W_concentration_at_point_7_______________________________________________ (f_nd_impurity_electrons13_7)__ 5.24719147387272750e+14 OP -W_concentration_at_point_8_______________________________________________ (f_nd_impurity_electrons13_8)__ 5.24704765001959125e+14 OP -W_concentration_at_point_9_______________________________________________ (f_nd_impurity_electrons13_9)__ 5.24688464965270312e+14 OP -W_concentration_at_point_10______________________________________________ (f_nd_impurity_electrons13_10)_ 5.24670247277206312e+14 OP -W_concentration_at_point_11______________________________________________ (f_nd_impurity_electrons13_11)_ 5.24650111937767062e+14 OP -W_concentration_at_point_12______________________________________________ (f_nd_impurity_electrons13_12)_ 5.24628058946952750e+14 OP -W_concentration_at_point_13______________________________________________ (f_nd_impurity_electrons13_13)_ 5.24604088304763250e+14 OP -W_concentration_at_point_14______________________________________________ (f_nd_impurity_electrons13_14)_ 5.24578200011198688e+14 OP -W_concentration_at_point_15______________________________________________ (f_nd_impurity_electrons13_15)_ 5.24550394066258875e+14 OP -W_concentration_at_point_16______________________________________________ (f_nd_impurity_electrons13_16)_ 5.24520670469943938e+14 OP -W_concentration_at_point_17______________________________________________ (f_nd_impurity_electrons13_17)_ 5.24489029222253750e+14 OP -W_concentration_at_point_18______________________________________________ (f_nd_impurity_electrons13_18)_ 5.24455470323188562e+14 OP -W_concentration_at_point_19______________________________________________ (f_nd_impurity_electrons13_19)_ 5.24419993772748125e+14 OP -W_concentration_at_point_20______________________________________________ (f_nd_impurity_electrons13_20)_ 5.24382599570932500e+14 OP -W_concentration_at_point_21______________________________________________ (f_nd_impurity_electrons13_21)_ 5.24343287717741750e+14 OP -W_concentration_at_point_22______________________________________________ (f_nd_impurity_electrons13_22)_ 5.24302058213175812e+14 OP -W_concentration_at_point_23______________________________________________ (f_nd_impurity_electrons13_23)_ 5.24258911057234812e+14 OP -W_concentration_at_point_24______________________________________________ (f_nd_impurity_electrons13_24)_ 5.24213846249918500e+14 OP -W_concentration_at_point_25______________________________________________ (f_nd_impurity_electrons13_25)_ 5.24166863791227188e+14 OP -W_concentration_at_point_26______________________________________________ (f_nd_impurity_electrons13_26)_ 5.24117963681160625e+14 OP -W_concentration_at_point_27______________________________________________ (f_nd_impurity_electrons13_27)_ 5.24067145919718875e+14 OP -W_concentration_at_point_28______________________________________________ (f_nd_impurity_electrons13_28)_ 5.24014410506902125e+14 OP -W_concentration_at_point_29______________________________________________ (f_nd_impurity_electrons13_29)_ 5.23959757442710062e+14 OP -W_concentration_at_point_30______________________________________________ (f_nd_impurity_electrons13_30)_ 5.23903186727142875e+14 OP -W_concentration_at_point_31______________________________________________ (f_nd_impurity_electrons13_31)_ 5.23844698360200500e+14 OP -W_concentration_at_point_32______________________________________________ (f_nd_impurity_electrons13_32)_ 5.23784292341883062e+14 OP -W_concentration_at_point_33______________________________________________ (f_nd_impurity_electrons13_33)_ 5.23721968672190438e+14 OP -W_concentration_at_point_34______________________________________________ (f_nd_impurity_electrons13_34)_ 5.23657727351122625e+14 OP -W_concentration_at_point_35______________________________________________ (f_nd_impurity_electrons13_35)_ 5.23591568378679688e+14 OP -W_concentration_at_point_36______________________________________________ (f_nd_impurity_electrons13_36)_ 5.23523491754861500e+14 OP -W_concentration_at_point_37______________________________________________ (f_nd_impurity_electrons13_37)_ 5.23453497479668250e+14 OP -W_concentration_at_point_38______________________________________________ (f_nd_impurity_electrons13_38)_ 5.23381585553099750e+14 OP -W_concentration_at_point_39______________________________________________ (f_nd_impurity_electrons13_39)_ 5.23307755975156188e+14 OP -W_concentration_at_point_40______________________________________________ (f_nd_impurity_electrons13_40)_ 5.23232008745837375e+14 OP -W_concentration_at_point_41______________________________________________ (f_nd_impurity_electrons13_41)_ 5.23154343865143500e+14 OP -W_concentration_at_point_42______________________________________________ (f_nd_impurity_electrons13_42)_ 5.23074761333074438e+14 OP -W_concentration_at_point_43______________________________________________ (f_nd_impurity_electrons13_43)_ 5.22993261149630188e+14 OP -W_concentration_at_point_44______________________________________________ (f_nd_impurity_electrons13_44)_ 5.22909843314810750e+14 OP -W_concentration_at_point_45______________________________________________ (f_nd_impurity_electrons13_45)_ 5.22824507828616250e+14 OP -W_concentration_at_point_46______________________________________________ (f_nd_impurity_electrons13_46)_ 5.22737254691046562e+14 OP -W_concentration_at_point_47______________________________________________ (f_nd_impurity_electrons13_47)_ 5.22648083902101625e+14 OP -W_concentration_at_point_48______________________________________________ (f_nd_impurity_electrons13_48)_ 5.22556995461781625e+14 OP -W_concentration_at_point_49______________________________________________ (f_nd_impurity_electrons13_49)_ 5.22463989370086375e+14 OP -W_concentration_at_point_50______________________________________________ (f_nd_impurity_electrons13_50)_ 5.22369065627016125e+14 OP -W_concentration_at_point_51______________________________________________ (f_nd_impurity_electrons13_51)_ 5.22272224232570625e+14 OP -W_concentration_at_point_52______________________________________________ (f_nd_impurity_electrons13_52)_ 5.22173465186750000e+14 OP -W_concentration_at_point_53______________________________________________ (f_nd_impurity_electrons13_53)_ 5.22072788489554125e+14 OP -W_concentration_at_point_54______________________________________________ (f_nd_impurity_electrons13_54)_ 5.21970194140983188e+14 OP -W_concentration_at_point_55______________________________________________ (f_nd_impurity_electrons13_55)_ 5.21865682141037000e+14 OP -W_concentration_at_point_56______________________________________________ (f_nd_impurity_electrons13_56)_ 5.21759252489715750e+14 OP -W_concentration_at_point_57______________________________________________ (f_nd_impurity_electrons13_57)_ 5.21650905187019188e+14 OP -W_concentration_at_point_58______________________________________________ (f_nd_impurity_electrons13_58)_ 5.21540640232947562e+14 OP -W_concentration_at_point_59______________________________________________ (f_nd_impurity_electrons13_59)_ 5.21428457627500938e+14 OP -W_concentration_at_point_60______________________________________________ (f_nd_impurity_electrons13_60)_ 5.21314357370679000e+14 OP -W_concentration_at_point_61______________________________________________ (f_nd_impurity_electrons13_61)_ 5.21198339462481875e+14 OP -W_concentration_at_point_62______________________________________________ (f_nd_impurity_electrons13_62)_ 5.21080403902909688e+14 OP -W_concentration_at_point_63______________________________________________ (f_nd_impurity_electrons13_63)_ 5.20960550691962250e+14 OP -W_concentration_at_point_64______________________________________________ (f_nd_impurity_electrons13_64)_ 5.20838779829639625e+14 OP -W_concentration_at_point_65______________________________________________ (f_nd_impurity_electrons13_65)_ 5.20715091315941938e+14 OP -W_concentration_at_point_66______________________________________________ (f_nd_impurity_electrons13_66)_ 5.20589485150869062e+14 OP -W_concentration_at_point_67______________________________________________ (f_nd_impurity_electrons13_67)_ 5.20461961334421000e+14 OP -W_concentration_at_point_68______________________________________________ (f_nd_impurity_electrons13_68)_ 5.20332519866597812e+14 OP -W_concentration_at_point_69______________________________________________ (f_nd_impurity_electrons13_69)_ 5.20201160747399438e+14 OP -W_concentration_at_point_70______________________________________________ (f_nd_impurity_electrons13_70)_ 5.20067883976825938e+14 OP -W_concentration_at_point_71______________________________________________ (f_nd_impurity_electrons13_71)_ 5.19932689554877250e+14 OP -W_concentration_at_point_72______________________________________________ (f_nd_impurity_electrons13_72)_ 5.19795577481553375e+14 OP -W_concentration_at_point_73______________________________________________ (f_nd_impurity_electrons13_73)_ 5.19656547756854500e+14 OP -W_concentration_at_point_74______________________________________________ (f_nd_impurity_electrons13_74)_ 5.19515600380780312e+14 OP -W_concentration_at_point_75______________________________________________ (f_nd_impurity_electrons13_75)_ 5.19372735353331000e+14 OP -W_concentration_at_point_76______________________________________________ (f_nd_impurity_electrons13_76)_ 5.19227952674506562e+14 OP -W_concentration_at_point_77______________________________________________ (f_nd_impurity_electrons13_77)_ 5.19081252344306938e+14 OP -W_concentration_at_point_78______________________________________________ (f_nd_impurity_electrons13_78)_ 5.18932634362732125e+14 OP -W_concentration_at_point_79______________________________________________ (f_nd_impurity_electrons13_79)_ 5.18782098729782188e+14 OP -W_concentration_at_point_80______________________________________________ (f_nd_impurity_electrons13_80)_ 5.18629645445457062e+14 OP -W_concentration_at_point_81______________________________________________ (f_nd_impurity_electrons13_81)_ 5.18475274509756875e+14 OP -W_concentration_at_point_82______________________________________________ (f_nd_impurity_electrons13_82)_ 5.18318985922681438e+14 OP -W_concentration_at_point_83______________________________________________ (f_nd_impurity_electrons13_83)_ 5.18160779684230812e+14 OP -W_concentration_at_point_84______________________________________________ (f_nd_impurity_electrons13_84)_ 5.18000655794405062e+14 OP -W_concentration_at_point_85______________________________________________ (f_nd_impurity_electrons13_85)_ 5.17838614253204250e+14 OP -W_concentration_at_point_86______________________________________________ (f_nd_impurity_electrons13_86)_ 5.17674655060628125e+14 OP -W_concentration_at_point_87______________________________________________ (f_nd_impurity_electrons13_87)_ 5.17508778216676938e+14 OP -W_concentration_at_point_88______________________________________________ (f_nd_impurity_electrons13_88)_ 5.17340983721350625e+14 OP -W_concentration_at_point_89______________________________________________ (f_nd_impurity_electrons13_89)_ 5.17171271574649125e+14 OP -W_concentration_at_point_90______________________________________________ (f_nd_impurity_electrons13_90)_ 5.16999641776572375e+14 OP -W_concentration_at_point_91______________________________________________ (f_nd_impurity_electrons13_91)_ 5.16826094327120562e+14 OP -W_concentration_at_point_92______________________________________________ (f_nd_impurity_electrons13_92)_ 5.16650629226293562e+14 OP -W_concentration_at_point_93______________________________________________ (f_nd_impurity_electrons13_93)_ 5.16473246474091438e+14 OP -W_concentration_at_point_94______________________________________________ (f_nd_impurity_electrons13_94)_ 5.16293946070514125e+14 OP -W_concentration_at_point_95______________________________________________ (f_nd_impurity_electrons13_95)_ 5.16112728015561562e+14 OP -W_concentration_at_point_96______________________________________________ (f_nd_impurity_electrons13_96)_ 5.15929592309233938e+14 OP -W_concentration_at_point_97______________________________________________ (f_nd_impurity_electrons13_97)_ 5.15744538951531188e+14 OP -W_concentration_at_point_98______________________________________________ (f_nd_impurity_electrons13_98)_ 5.15557567942453188e+14 OP -W_concentration_at_point_99______________________________________________ (f_nd_impurity_electrons13_99)_ 5.15368679282000062e+14 OP -W_concentration_at_point_100_____________________________________________ (f_nd_impurity_electrons13_100)_ 5.15177872970171875e+14 OP -W_concentration_at_point_101_____________________________________________ (f_nd_impurity_electrons13_101)_ 5.14985149006968438e+14 OP -W_concentration_at_point_102_____________________________________________ (f_nd_impurity_electrons13_102)_ 5.14790507392389812e+14 OP -W_concentration_at_point_103_____________________________________________ (f_nd_impurity_electrons13_103)_ 5.14593948126436125e+14 OP -W_concentration_at_point_104_____________________________________________ (f_nd_impurity_electrons13_104)_ 5.14395471209107188e+14 OP -W_concentration_at_point_105_____________________________________________ (f_nd_impurity_electrons13_105)_ 5.14195076640403188e+14 OP -W_concentration_at_point_106_____________________________________________ (f_nd_impurity_electrons13_106)_ 5.13992764420323938e+14 OP -W_concentration_at_point_107_____________________________________________ (f_nd_impurity_electrons13_107)_ 5.13788534548869562e+14 OP -W_concentration_at_point_108_____________________________________________ (f_nd_impurity_electrons13_108)_ 5.13582387026040062e+14 OP -W_concentration_at_point_109_____________________________________________ (f_nd_impurity_electrons13_109)_ 5.13374321851835375e+14 OP -W_concentration_at_point_110_____________________________________________ (f_nd_impurity_electrons13_110)_ 5.13164339026255500e+14 OP -W_concentration_at_point_111_____________________________________________ (f_nd_impurity_electrons13_111)_ 5.12952438549300500e+14 OP -W_concentration_at_point_112_____________________________________________ (f_nd_impurity_electrons13_112)_ 5.12738620420970312e+14 OP -W_concentration_at_point_113_____________________________________________ (f_nd_impurity_electrons13_113)_ 5.12522884641264938e+14 OP -W_concentration_at_point_114_____________________________________________ (f_nd_impurity_electrons13_114)_ 5.12305231210184500e+14 OP -W_concentration_at_point_115_____________________________________________ (f_nd_impurity_electrons13_115)_ 5.12085660127728812e+14 OP -W_concentration_at_point_116_____________________________________________ (f_nd_impurity_electrons13_116)_ 5.11864171393898062e+14 OP -W_concentration_at_point_117_____________________________________________ (f_nd_impurity_electrons13_117)_ 5.11640765008692062e+14 OP -W_concentration_at_point_118_____________________________________________ (f_nd_impurity_electrons13_118)_ 5.11415440972110938e+14 OP -W_concentration_at_point_119_____________________________________________ (f_nd_impurity_electrons13_119)_ 5.11188199284154750e+14 OP -W_concentration_at_point_120_____________________________________________ (f_nd_impurity_electrons13_120)_ 5.10959039944823312e+14 OP -W_concentration_at_point_121_____________________________________________ (f_nd_impurity_electrons13_121)_ 5.10727962954116688e+14 OP -W_concentration_at_point_122_____________________________________________ (f_nd_impurity_electrons13_122)_ 5.10494968312034938e+14 OP -W_concentration_at_point_123_____________________________________________ (f_nd_impurity_electrons13_123)_ 5.10260056018578000e+14 OP -W_concentration_at_point_124_____________________________________________ (f_nd_impurity_electrons13_124)_ 5.10023226073745938e+14 OP -W_concentration_at_point_125_____________________________________________ (f_nd_impurity_electrons13_125)_ 5.09784478477538688e+14 OP -W_concentration_at_point_126_____________________________________________ (f_nd_impurity_electrons13_126)_ 5.09543813229956312e+14 OP -W_concentration_at_point_127_____________________________________________ (f_nd_impurity_electrons13_127)_ 5.09301230330998812e+14 OP -W_concentration_at_point_128_____________________________________________ (f_nd_impurity_electrons13_128)_ 5.09056729780666062e+14 OP -W_concentration_at_point_129_____________________________________________ (f_nd_impurity_electrons13_129)_ 5.08810311578958188e+14 OP -W_concentration_at_point_130_____________________________________________ (f_nd_impurity_electrons13_130)_ 5.08561975725875250e+14 OP -W_concentration_at_point_131_____________________________________________ (f_nd_impurity_electrons13_131)_ 5.08311722221417000e+14 OP -W_concentration_at_point_132_____________________________________________ (f_nd_impurity_electrons13_132)_ 5.08059551065583688e+14 OP -W_concentration_at_point_133_____________________________________________ (f_nd_impurity_electrons13_133)_ 5.07805462258375125e+14 OP -W_concentration_at_point_134_____________________________________________ (f_nd_impurity_electrons13_134)_ 5.07549455799791500e+14 OP -W_concentration_at_point_135_____________________________________________ (f_nd_impurity_electrons13_135)_ 5.07291531689832625e+14 OP -W_concentration_at_point_136_____________________________________________ (f_nd_impurity_electrons13_136)_ 5.07031689928498750e+14 OP -W_concentration_at_point_137_____________________________________________ (f_nd_impurity_electrons13_137)_ 5.06769930515789625e+14 OP -W_concentration_at_point_138_____________________________________________ (f_nd_impurity_electrons13_138)_ 5.06506253451705250e+14 OP -W_concentration_at_point_139_____________________________________________ (f_nd_impurity_electrons13_139)_ 5.06240658736245812e+14 OP -W_concentration_at_point_140_____________________________________________ (f_nd_impurity_electrons13_140)_ 5.05973146369411250e+14 OP -W_concentration_at_point_141_____________________________________________ (f_nd_impurity_electrons13_141)_ 5.05703716351201500e+14 OP -W_concentration_at_point_142_____________________________________________ (f_nd_impurity_electrons13_142)_ 5.05432368681616562e+14 OP -W_concentration_at_point_143_____________________________________________ (f_nd_impurity_electrons13_143)_ 5.05159103360656562e+14 OP -W_concentration_at_point_144_____________________________________________ (f_nd_impurity_electrons13_144)_ 5.04883920388321312e+14 OP -W_concentration_at_point_145_____________________________________________ (f_nd_impurity_electrons13_145)_ 5.04606819764610875e+14 OP -W_concentration_at_point_146_____________________________________________ (f_nd_impurity_electrons13_146)_ 5.04327801489525375e+14 OP -W_concentration_at_point_147_____________________________________________ (f_nd_impurity_electrons13_147)_ 5.04046865563064625e+14 OP -W_concentration_at_point_148_____________________________________________ (f_nd_impurity_electrons13_148)_ 5.03764011985228688e+14 OP -W_concentration_at_point_149_____________________________________________ (f_nd_impurity_electrons13_149)_ 5.03479240756017688e+14 OP -W_concentration_at_point_150_____________________________________________ (f_nd_impurity_electrons13_150)_ 5.03192551875431500e+14 OP -W_concentration_at_point_151_____________________________________________ (f_nd_impurity_electrons13_151)_ 5.02903945343470188e+14 OP -W_concentration_at_point_152_____________________________________________ (f_nd_impurity_electrons13_152)_ 5.02613421160133625e+14 OP -W_concentration_at_point_153_____________________________________________ (f_nd_impurity_electrons13_153)_ 5.02320979325422000e+14 OP -W_concentration_at_point_154_____________________________________________ (f_nd_impurity_electrons13_154)_ 5.02026619839335188e+14 OP -W_concentration_at_point_155_____________________________________________ (f_nd_impurity_electrons13_155)_ 5.01730342701873125e+14 OP -W_concentration_at_point_156_____________________________________________ (f_nd_impurity_electrons13_156)_ 5.01432147913036000e+14 OP -W_concentration_at_point_157_____________________________________________ (f_nd_impurity_electrons13_157)_ 5.01132035472823688e+14 OP -W_concentration_at_point_158_____________________________________________ (f_nd_impurity_electrons13_158)_ 5.00830005381236188e+14 OP -W_concentration_at_point_159_____________________________________________ (f_nd_impurity_electrons13_159)_ 5.00526057638273625e+14 OP -W_concentration_at_point_160_____________________________________________ (f_nd_impurity_electrons13_160)_ 5.00220192243935875e+14 OP -W_concentration_at_point_161_____________________________________________ (f_nd_impurity_electrons13_161)_ 4.99912409198222938e+14 OP -W_concentration_at_point_162_____________________________________________ (f_nd_impurity_electrons13_162)_ 4.99602708501134938e+14 OP -W_concentration_at_point_163_____________________________________________ (f_nd_impurity_electrons13_163)_ 4.99291090152671625e+14 OP -W_concentration_at_point_164_____________________________________________ (f_nd_impurity_electrons13_164)_ 4.98977554152833250e+14 OP -W_concentration_at_point_165_____________________________________________ (f_nd_impurity_electrons13_165)_ 4.98662100501619625e+14 OP -W_concentration_at_point_166_____________________________________________ (f_nd_impurity_electrons13_166)_ 4.98344729199030875e+14 OP -W_concentration_at_point_167_____________________________________________ (f_nd_impurity_electrons13_167)_ 4.98025440245067000e+14 OP -W_concentration_at_point_168_____________________________________________ (f_nd_impurity_electrons13_168)_ 4.97704233639727938e+14 OP -W_concentration_at_point_169_____________________________________________ (f_nd_impurity_electrons13_169)_ 4.97381109383013812e+14 OP -W_concentration_at_point_170_____________________________________________ (f_nd_impurity_electrons13_170)_ 4.97056067474924375e+14 OP -W_concentration_at_point_171_____________________________________________ (f_nd_impurity_electrons13_171)_ 4.96729107915459938e+14 OP -W_concentration_at_point_172_____________________________________________ (f_nd_impurity_electrons13_172)_ 4.96400230704620188e+14 OP -W_concentration_at_point_173_____________________________________________ (f_nd_impurity_electrons13_173)_ 4.96069435842405375e+14 OP -W_concentration_at_point_174_____________________________________________ (f_nd_impurity_electrons13_174)_ 4.95736723328815375e+14 OP -W_concentration_at_point_175_____________________________________________ (f_nd_impurity_electrons13_175)_ 4.95402093163850250e+14 OP -W_concentration_at_point_176_____________________________________________ (f_nd_impurity_electrons13_176)_ 4.95065545347509875e+14 OP -W_concentration_at_point_177_____________________________________________ (f_nd_impurity_electrons13_177)_ 4.94727079879794500e+14 OP -W_concentration_at_point_178_____________________________________________ (f_nd_impurity_electrons13_178)_ 4.94386696760703812e+14 OP -W_concentration_at_point_179_____________________________________________ (f_nd_impurity_electrons13_179)_ 4.94044395990238062e+14 OP -W_concentration_at_point_180_____________________________________________ (f_nd_impurity_electrons13_180)_ 4.93700177568397125e+14 OP -W_concentration_at_point_181_____________________________________________ (f_nd_impurity_electrons13_181)_ 4.93354041495181000e+14 OP -W_concentration_at_point_182_____________________________________________ (f_nd_impurity_electrons13_182)_ 4.93005987770589688e+14 OP -W_concentration_at_point_183_____________________________________________ (f_nd_impurity_electrons13_183)_ 4.92656016394623375e+14 OP -W_concentration_at_point_184_____________________________________________ (f_nd_impurity_electrons13_184)_ 4.92304127367281750e+14 OP -W_concentration_at_point_185_____________________________________________ (f_nd_impurity_electrons13_185)_ 4.91950320688565000e+14 OP -W_concentration_at_point_186_____________________________________________ (f_nd_impurity_electrons13_186)_ 4.91594596358473125e+14 OP -W_concentration_at_point_187_____________________________________________ (f_nd_impurity_electrons13_187)_ 4.91236954377006062e+14 OP -W_concentration_at_point_188_____________________________________________ (f_nd_impurity_electrons13_188)_ 4.90877394744163812e+14 OP -W_concentration_at_point_189_____________________________________________ (f_nd_impurity_electrons13_189)_ 4.90515917459946500e+14 OP -W_concentration_at_point_190_____________________________________________ (f_nd_impurity_electrons13_190)_ 4.90152522524353938e+14 OP -W_concentration_at_point_191_____________________________________________ (f_nd_impurity_electrons13_191)_ 4.89787209937386250e+14 OP -W_concentration_at_point_192_____________________________________________ (f_nd_impurity_electrons13_192)_ 4.89419979699043438e+14 OP -W_concentration_at_point_193_____________________________________________ (f_nd_impurity_electrons13_193)_ 4.89050831809325438e+14 OP -W_concentration_at_point_194_____________________________________________ (f_nd_impurity_electrons13_194)_ 4.88679766268232188e+14 OP -W_concentration_at_point_195_____________________________________________ (f_nd_impurity_electrons13_195)_ 4.88306783075763938e+14 OP -W_concentration_at_point_196_____________________________________________ (f_nd_impurity_electrons13_196)_ 4.87931882231920438e+14 OP -W_concentration_at_point_197_____________________________________________ (f_nd_impurity_electrons13_197)_ 4.87555063736701812e+14 OP -W_concentration_at_point_198_____________________________________________ (f_nd_impurity_electrons13_198)_ 4.87176327590108000e+14 OP -W_concentration_at_point_199_____________________________________________ (f_nd_impurity_electrons13_199)_ 4.86795673792139062e+14 OP -W_concentration_at_point_200_____________________________________________ (f_nd_impurity_electrons13_200)_ 4.86413102342795000e+14 OP -W_concentration_at_point_201_____________________________________________ (f_nd_impurity_electrons13_201)_ 4.86028613242075688e+14 OP -W_concentration_at_point_202_____________________________________________ (f_nd_impurity_electrons13_202)_ 4.85642206489981312e+14 OP -W_concentration_at_point_203_____________________________________________ (f_nd_impurity_electrons13_203)_ 4.85253882086511625e+14 OP -W_concentration_at_point_204_____________________________________________ (f_nd_impurity_electrons13_204)_ 4.84863640031666875e+14 OP -W_concentration_at_point_205_____________________________________________ (f_nd_impurity_electrons13_205)_ 4.84471480325447000e+14 OP -W_concentration_at_point_206_____________________________________________ (f_nd_impurity_electrons13_206)_ 4.84077402967851938e+14 OP -W_concentration_at_point_207_____________________________________________ (f_nd_impurity_electrons13_207)_ 4.83681407958881750e+14 OP -W_concentration_at_point_208_____________________________________________ (f_nd_impurity_electrons13_208)_ 4.83283495298536375e+14 OP -W_concentration_at_point_209_____________________________________________ (f_nd_impurity_electrons13_209)_ 4.82883664986815812e+14 OP -W_concentration_at_point_210_____________________________________________ (f_nd_impurity_electrons13_210)_ 4.82481917023720125e+14 OP -W_concentration_at_point_211_____________________________________________ (f_nd_impurity_electrons13_211)_ 4.82078251409249250e+14 OP -W_concentration_at_point_212_____________________________________________ (f_nd_impurity_electrons13_212)_ 4.81672668143403188e+14 OP -W_concentration_at_point_213_____________________________________________ (f_nd_impurity_electrons13_213)_ 4.81265167226182062e+14 OP -W_concentration_at_point_214_____________________________________________ (f_nd_impurity_electrons13_214)_ 4.80855748657585750e+14 OP -W_concentration_at_point_215_____________________________________________ (f_nd_impurity_electrons13_215)_ 4.80444412437614250e+14 OP -W_concentration_at_point_216_____________________________________________ (f_nd_impurity_electrons13_216)_ 4.80031158566267562e+14 OP -W_concentration_at_point_217_____________________________________________ (f_nd_impurity_electrons13_217)_ 4.79615987043545812e+14 OP -W_concentration_at_point_218_____________________________________________ (f_nd_impurity_electrons13_218)_ 4.79198897869448875e+14 OP -W_concentration_at_point_219_____________________________________________ (f_nd_impurity_electrons13_219)_ 4.78779891043976688e+14 OP -W_concentration_at_point_220_____________________________________________ (f_nd_impurity_electrons13_220)_ 4.78358966567129438e+14 OP -W_concentration_at_point_221_____________________________________________ (f_nd_impurity_electrons13_221)_ 4.77936124438907000e+14 OP -W_concentration_at_point_222_____________________________________________ (f_nd_impurity_electrons13_222)_ 4.77511364659309375e+14 OP -W_concentration_at_point_223_____________________________________________ (f_nd_impurity_electrons13_223)_ 4.77084687228336562e+14 OP -W_concentration_at_point_224_____________________________________________ (f_nd_impurity_electrons13_224)_ 4.76656092145988688e+14 OP -W_concentration_at_point_225_____________________________________________ (f_nd_impurity_electrons13_225)_ 4.76225579412265562e+14 OP -W_concentration_at_point_226_____________________________________________ (f_nd_impurity_electrons13_226)_ 4.75793149027167375e+14 OP -W_concentration_at_point_227_____________________________________________ (f_nd_impurity_electrons13_227)_ 4.75358800990694000e+14 OP -W_concentration_at_point_228_____________________________________________ (f_nd_impurity_electrons13_228)_ 4.74922535302845438e+14 OP -W_concentration_at_point_229_____________________________________________ (f_nd_impurity_electrons13_229)_ 4.74484351963621750e+14 OP -W_concentration_at_point_230_____________________________________________ (f_nd_impurity_electrons13_230)_ 4.74044250973022812e+14 OP -W_concentration_at_point_231_____________________________________________ (f_nd_impurity_electrons13_231)_ 4.73602232331048812e+14 OP -W_concentration_at_point_232_____________________________________________ (f_nd_impurity_electrons13_232)_ 4.73158296037699625e+14 OP -W_concentration_at_point_233_____________________________________________ (f_nd_impurity_electrons13_233)_ 4.72712442092975250e+14 OP -W_concentration_at_point_234_____________________________________________ (f_nd_impurity_electrons13_234)_ 4.72264670496875875e+14 OP -W_concentration_at_point_235_____________________________________________ (f_nd_impurity_electrons13_235)_ 4.71814981249401188e+14 OP -W_concentration_at_point_236_____________________________________________ (f_nd_impurity_electrons13_236)_ 4.71363374350551312e+14 OP -W_concentration_at_point_237_____________________________________________ (f_nd_impurity_electrons13_237)_ 4.70909849800326375e+14 OP -W_concentration_at_point_238_____________________________________________ (f_nd_impurity_electrons13_238)_ 4.70454407598726250e+14 OP -W_concentration_at_point_239_____________________________________________ (f_nd_impurity_electrons13_239)_ 4.69997047745750938e+14 OP -W_concentration_at_point_240_____________________________________________ (f_nd_impurity_electrons13_240)_ 4.69537770241400562e+14 OP -W_concentration_at_point_241_____________________________________________ (f_nd_impurity_electrons13_241)_ 4.69076575085674875e+14 OP -W_concentration_at_point_242_____________________________________________ (f_nd_impurity_electrons13_242)_ 4.68613462278574125e+14 OP -W_concentration_at_point_243_____________________________________________ (f_nd_impurity_electrons13_243)_ 4.68148431820098125e+14 OP -W_concentration_at_point_244_____________________________________________ (f_nd_impurity_electrons13_244)_ 4.67681483710247125e+14 OP -W_concentration_at_point_245_____________________________________________ (f_nd_impurity_electrons13_245)_ 4.67212617949020875e+14 OP -W_concentration_at_point_246_____________________________________________ (f_nd_impurity_electrons13_246)_ 4.66741834536419438e+14 OP -W_concentration_at_point_247_____________________________________________ (f_nd_impurity_electrons13_247)_ 4.66269133472442875e+14 OP -W_concentration_at_point_248_____________________________________________ (f_nd_impurity_electrons13_248)_ 4.65794514757091188e+14 OP -W_concentration_at_point_249_____________________________________________ (f_nd_impurity_electrons13_249)_ 4.65317978390364250e+14 OP -W_concentration_at_point_250_____________________________________________ (f_nd_impurity_electrons13_250)_ 4.64839524372262312e+14 OP -W_concentration_at_point_251_____________________________________________ (f_nd_impurity_electrons13_251)_ 4.64359152702785000e+14 OP -W_concentration_at_point_252_____________________________________________ (f_nd_impurity_electrons13_252)_ 4.63876863381932750e+14 OP -W_concentration_at_point_253_____________________________________________ (f_nd_impurity_electrons13_253)_ 4.63392656409705250e+14 OP -W_concentration_at_point_254_____________________________________________ (f_nd_impurity_electrons13_254)_ 4.62906531786102562e+14 OP -W_concentration_at_point_255_____________________________________________ (f_nd_impurity_electrons13_255)_ 4.62418489511124688e+14 OP -W_concentration_at_point_256_____________________________________________ (f_nd_impurity_electrons13_256)_ 4.61928529584771750e+14 OP -W_concentration_at_point_257_____________________________________________ (f_nd_impurity_electrons13_257)_ 4.61436652007043625e+14 OP -W_concentration_at_point_258_____________________________________________ (f_nd_impurity_electrons13_258)_ 4.60942856777940312e+14 OP -W_concentration_at_point_259_____________________________________________ (f_nd_impurity_electrons13_259)_ 4.60447143897461750e+14 OP -W_concentration_at_point_260_____________________________________________ (f_nd_impurity_electrons13_260)_ 4.59949513365608250e+14 OP -W_concentration_at_point_261_____________________________________________ (f_nd_impurity_electrons13_261)_ 4.59449965182379438e+14 OP -W_concentration_at_point_262_____________________________________________ (f_nd_impurity_electrons13_262)_ 4.58948499347775438e+14 OP -W_concentration_at_point_263_____________________________________________ (f_nd_impurity_electrons13_263)_ 4.58445115861796312e+14 OP -W_concentration_at_point_264_____________________________________________ (f_nd_impurity_electrons13_264)_ 4.57939814724442062e+14 OP -W_concentration_at_point_265_____________________________________________ (f_nd_impurity_electrons13_265)_ 4.57432595935712688e+14 OP -W_concentration_at_point_266_____________________________________________ (f_nd_impurity_electrons13_266)_ 4.56923459495608125e+14 OP -W_concentration_at_point_267_____________________________________________ (f_nd_impurity_electrons13_267)_ 4.56412405404128438e+14 OP -W_concentration_at_point_268_____________________________________________ (f_nd_impurity_electrons13_268)_ 4.55899433661273500e+14 OP -W_concentration_at_point_269_____________________________________________ (f_nd_impurity_electrons13_269)_ 4.55384544267043438e+14 OP -W_concentration_at_point_270_____________________________________________ (f_nd_impurity_electrons13_270)_ 4.54867737221438312e+14 OP -W_concentration_at_point_271_____________________________________________ (f_nd_impurity_electrons13_271)_ 4.54349012524457875e+14 OP -W_concentration_at_point_272_____________________________________________ (f_nd_impurity_electrons13_272)_ 4.53828370176102375e+14 OP -W_concentration_at_point_273_____________________________________________ (f_nd_impurity_electrons13_273)_ 4.53305810176371625e+14 OP -W_concentration_at_point_274_____________________________________________ (f_nd_impurity_electrons13_274)_ 4.52781332525265812e+14 OP -W_concentration_at_point_275_____________________________________________ (f_nd_impurity_electrons13_275)_ 4.52254937222784812e+14 OP -W_concentration_at_point_276_____________________________________________ (f_nd_impurity_electrons13_276)_ 4.51726624268928625e+14 OP -W_concentration_at_point_277_____________________________________________ (f_nd_impurity_electrons13_277)_ 4.51196393663697312e+14 OP -W_concentration_at_point_278_____________________________________________ (f_nd_impurity_electrons13_278)_ 4.50664245407090875e+14 OP -W_concentration_at_point_279_____________________________________________ (f_nd_impurity_electrons13_279)_ 4.50130179499109312e+14 OP -W_concentration_at_point_280_____________________________________________ (f_nd_impurity_electrons13_280)_ 4.49594195939752438e+14 OP -W_concentration_at_point_281_____________________________________________ (f_nd_impurity_electrons13_281)_ 4.49056294729020500e+14 OP -W_concentration_at_point_282_____________________________________________ (f_nd_impurity_electrons13_282)_ 4.48516475866913438e+14 OP -W_concentration_at_point_283_____________________________________________ (f_nd_impurity_electrons13_283)_ 4.47974739353431188e+14 OP -W_concentration_at_point_284_____________________________________________ (f_nd_impurity_electrons13_284)_ 4.47431085188573812e+14 OP -W_concentration_at_point_285_____________________________________________ (f_nd_impurity_electrons13_285)_ 4.46885513372341188e+14 OP -W_concentration_at_point_286_____________________________________________ (f_nd_impurity_electrons13_286)_ 4.46338023904733438e+14 OP -W_concentration_at_point_287_____________________________________________ (f_nd_impurity_electrons13_287)_ 4.45788616785750562e+14 OP -W_concentration_at_point_288_____________________________________________ (f_nd_impurity_electrons13_288)_ 4.45237292015392500e+14 OP -W_concentration_at_point_289_____________________________________________ (f_nd_impurity_electrons13_289)_ 4.44684049593659250e+14 OP -W_concentration_at_point_290_____________________________________________ (f_nd_impurity_electrons13_290)_ 4.44128889520550938e+14 OP -W_concentration_at_point_291_____________________________________________ (f_nd_impurity_electrons13_291)_ 4.43571811796067312e+14 OP -W_concentration_at_point_292_____________________________________________ (f_nd_impurity_electrons13_292)_ 4.43012816420208688e+14 OP -W_concentration_at_point_293_____________________________________________ (f_nd_impurity_electrons13_293)_ 4.42451903392974812e+14 OP -W_concentration_at_point_294_____________________________________________ (f_nd_impurity_electrons13_294)_ 4.41889072714365812e+14 OP -W_concentration_at_point_295_____________________________________________ (f_nd_impurity_electrons13_295)_ 4.41324324384381625e+14 OP -W_concentration_at_point_296_____________________________________________ (f_nd_impurity_electrons13_296)_ 4.40757658403022312e+14 OP -W_concentration_at_point_297_____________________________________________ (f_nd_impurity_electrons13_297)_ 4.40189074770287875e+14 OP -W_concentration_at_point_298_____________________________________________ (f_nd_impurity_electrons13_298)_ 4.39618573486178188e+14 OP -W_concentration_at_point_299_____________________________________________ (f_nd_impurity_electrons13_299)_ 4.39046154550693438e+14 OP -W_concentration_at_point_300_____________________________________________ (f_nd_impurity_electrons13_300)_ 4.38471817963833375e+14 OP -W_concentration_at_point_301_____________________________________________ (f_nd_impurity_electrons13_301)_ 4.37895563725598250e+14 OP -W_concentration_at_point_302_____________________________________________ (f_nd_impurity_electrons13_302)_ 4.37317391835988000e+14 OP -W_concentration_at_point_303_____________________________________________ (f_nd_impurity_electrons13_303)_ 4.36737302295002625e+14 OP -W_concentration_at_point_304_____________________________________________ (f_nd_impurity_electrons13_304)_ 4.36155295102641938e+14 OP -W_concentration_at_point_305_____________________________________________ (f_nd_impurity_electrons13_305)_ 4.35571370258906188e+14 OP -W_concentration_at_point_306_____________________________________________ (f_nd_impurity_electrons13_306)_ 4.34985527763795375e+14 OP -W_concentration_at_point_307_____________________________________________ (f_nd_impurity_electrons13_307)_ 4.34397767617309250e+14 OP -W_concentration_at_point_308_____________________________________________ (f_nd_impurity_electrons13_308)_ 4.33808089819448000e+14 OP -W_concentration_at_point_309_____________________________________________ (f_nd_impurity_electrons13_309)_ 4.33216494370211625e+14 OP -W_concentration_at_point_310_____________________________________________ (f_nd_impurity_electrons13_310)_ 4.32622981269600062e+14 OP -W_concentration_at_point_311_____________________________________________ (f_nd_impurity_electrons13_311)_ 4.32027550517613375e+14 OP -W_concentration_at_point_312_____________________________________________ (f_nd_impurity_electrons13_312)_ 4.31430202114251500e+14 OP -W_concentration_at_point_313_____________________________________________ (f_nd_impurity_electrons13_313)_ 4.30830936059514562e+14 OP -W_concentration_at_point_314_____________________________________________ (f_nd_impurity_electrons13_314)_ 4.30229752353402312e+14 OP -W_concentration_at_point_315_____________________________________________ (f_nd_impurity_electrons13_315)_ 4.29626650995915062e+14 OP -W_concentration_at_point_316_____________________________________________ (f_nd_impurity_electrons13_316)_ 4.29021631987052500e+14 OP -W_concentration_at_point_317_____________________________________________ (f_nd_impurity_electrons13_317)_ 4.28414695326814875e+14 OP -W_concentration_at_point_318_____________________________________________ (f_nd_impurity_electrons13_318)_ 4.27805841015202000e+14 OP -W_concentration_at_point_319_____________________________________________ (f_nd_impurity_electrons13_319)_ 4.27195069052214000e+14 OP -W_concentration_at_point_320_____________________________________________ (f_nd_impurity_electrons13_320)_ 4.26582379437850875e+14 OP -W_concentration_at_point_321_____________________________________________ (f_nd_impurity_electrons13_321)_ 4.25967772172112625e+14 OP -W_concentration_at_point_322_____________________________________________ (f_nd_impurity_electrons13_322)_ 4.25351247254999250e+14 OP -W_concentration_at_point_323_____________________________________________ (f_nd_impurity_electrons13_323)_ 4.24732804686510625e+14 OP -W_concentration_at_point_324_____________________________________________ (f_nd_impurity_electrons13_324)_ 4.24112444466646812e+14 OP -W_concentration_at_point_325_____________________________________________ (f_nd_impurity_electrons13_325)_ 4.23490166595407938e+14 OP -W_concentration_at_point_326_____________________________________________ (f_nd_impurity_electrons13_326)_ 4.22865971072793812e+14 OP -W_concentration_at_point_327_____________________________________________ (f_nd_impurity_electrons13_327)_ 4.22239857898804625e+14 OP -W_concentration_at_point_328_____________________________________________ (f_nd_impurity_electrons13_328)_ 4.21611827073440188e+14 OP -W_concentration_at_point_329_____________________________________________ (f_nd_impurity_electrons13_329)_ 4.20981878596700625e+14 OP -W_concentration_at_point_330_____________________________________________ (f_nd_impurity_electrons13_330)_ 4.20350012468585875e+14 OP -W_concentration_at_point_331_____________________________________________ (f_nd_impurity_electrons13_331)_ 4.19716228689096062e+14 OP -W_concentration_at_point_332_____________________________________________ (f_nd_impurity_electrons13_332)_ 4.19080527258231000e+14 OP -W_concentration_at_point_333_____________________________________________ (f_nd_impurity_electrons13_333)_ 4.18442908175990812e+14 OP -W_concentration_at_point_334_____________________________________________ (f_nd_impurity_electrons13_334)_ 4.17803371442375500e+14 OP -W_concentration_at_point_335_____________________________________________ (f_nd_impurity_electrons13_335)_ 4.17161917057385000e+14 OP -W_concentration_at_point_336_____________________________________________ (f_nd_impurity_electrons13_336)_ 4.16518545021019375e+14 OP -W_concentration_at_point_337_____________________________________________ (f_nd_impurity_electrons13_337)_ 4.15873255333278562e+14 OP -W_concentration_at_point_338_____________________________________________ (f_nd_impurity_electrons13_338)_ 4.15226047994162500e+14 OP -W_concentration_at_point_339_____________________________________________ (f_nd_impurity_electrons13_339)_ 4.14576923003671375e+14 OP -W_concentration_at_point_340_____________________________________________ (f_nd_impurity_electrons13_340)_ 4.13925880361805125e+14 OP -W_concentration_at_point_341_____________________________________________ (f_nd_impurity_electrons13_341)_ 4.13272920068563625e+14 OP -W_concentration_at_point_342_____________________________________________ (f_nd_impurity_electrons13_342)_ 4.12618042123947000e+14 OP -W_concentration_at_point_343_____________________________________________ (f_nd_impurity_electrons13_343)_ 4.11961246527955250e+14 OP -W_concentration_at_point_344_____________________________________________ (f_nd_impurity_electrons13_344)_ 4.11302533280588312e+14 OP -W_concentration_at_point_345_____________________________________________ (f_nd_impurity_electrons13_345)_ 4.10641902381846250e+14 OP -W_concentration_at_point_346_____________________________________________ (f_nd_impurity_electrons13_346)_ 4.09979353831729000e+14 OP -W_concentration_at_point_347_____________________________________________ (f_nd_impurity_electrons13_347)_ 4.09314887630236562e+14 OP -W_concentration_at_point_348_____________________________________________ (f_nd_impurity_electrons13_348)_ 4.08648503777369000e+14 OP -W_concentration_at_point_349_____________________________________________ (f_nd_impurity_electrons13_349)_ 4.07980202273126250e+14 OP -W_concentration_at_point_350_____________________________________________ (f_nd_impurity_electrons13_350)_ 4.07309983117508500e+14 OP -W_concentration_at_point_351_____________________________________________ (f_nd_impurity_electrons13_351)_ 4.06637846310515375e+14 OP -W_concentration_at_point_352_____________________________________________ (f_nd_impurity_electrons13_352)_ 4.05963791852147188e+14 OP -W_concentration_at_point_353_____________________________________________ (f_nd_impurity_electrons13_353)_ 4.05287819742403812e+14 OP -W_concentration_at_point_354_____________________________________________ (f_nd_impurity_electrons13_354)_ 4.04609929981285312e+14 OP -W_concentration_at_point_355_____________________________________________ (f_nd_impurity_electrons13_355)_ 4.03930122568791625e+14 OP -W_concentration_at_point_356_____________________________________________ (f_nd_impurity_electrons13_356)_ 4.03248397504922750e+14 OP -W_concentration_at_point_357_____________________________________________ (f_nd_impurity_electrons13_357)_ 4.02564754789678812e+14 OP -W_concentration_at_point_358_____________________________________________ (f_nd_impurity_electrons13_358)_ 4.01879194423059688e+14 OP -W_concentration_at_point_359_____________________________________________ (f_nd_impurity_electrons13_359)_ 4.01191716405065375e+14 OP -W_concentration_at_point_360_____________________________________________ (f_nd_impurity_electrons13_360)_ 4.00502320735695875e+14 OP -W_concentration_at_point_361_____________________________________________ (f_nd_impurity_electrons13_361)_ 3.99811007414951250e+14 OP -W_concentration_at_point_362_____________________________________________ (f_nd_impurity_electrons13_362)_ 3.99117776442831438e+14 OP -W_concentration_at_point_363_____________________________________________ (f_nd_impurity_electrons13_363)_ 3.98422627819336562e+14 OP -W_concentration_at_point_364_____________________________________________ (f_nd_impurity_electrons13_364)_ 3.97725561544466438e+14 OP -W_concentration_at_point_365_____________________________________________ (f_nd_impurity_electrons13_365)_ 3.97026577618221188e+14 OP -W_concentration_at_point_366_____________________________________________ (f_nd_impurity_electrons13_366)_ 3.96325676040600750e+14 OP -W_concentration_at_point_367_____________________________________________ (f_nd_impurity_electrons13_367)_ 3.95622856811605125e+14 OP -W_concentration_at_point_368_____________________________________________ (f_nd_impurity_electrons13_368)_ 3.94918119931234438e+14 OP -W_concentration_at_point_369_____________________________________________ (f_nd_impurity_electrons13_369)_ 3.94211465399488562e+14 OP -W_concentration_at_point_370_____________________________________________ (f_nd_impurity_electrons13_370)_ 3.93502893216367438e+14 OP -W_concentration_at_point_371_____________________________________________ (f_nd_impurity_electrons13_371)_ 3.92792403381871250e+14 OP -W_concentration_at_point_372_____________________________________________ (f_nd_impurity_electrons13_372)_ 3.92079995895999875e+14 OP -W_concentration_at_point_373_____________________________________________ (f_nd_impurity_electrons13_373)_ 3.91365670758753375e+14 OP -W_concentration_at_point_374_____________________________________________ (f_nd_impurity_electrons13_374)_ 3.90649427970131688e+14 OP -W_concentration_at_point_375_____________________________________________ (f_nd_impurity_electrons13_375)_ 3.89931267530134875e+14 OP -W_concentration_at_point_376_____________________________________________ (f_nd_impurity_electrons13_376)_ 3.89211189438762875e+14 OP -W_concentration_at_point_377_____________________________________________ (f_nd_impurity_electrons13_377)_ 3.88489193696015688e+14 OP -W_concentration_at_point_378_____________________________________________ (f_nd_impurity_electrons13_378)_ 3.87765280301893312e+14 OP -W_concentration_at_point_379_____________________________________________ (f_nd_impurity_electrons13_379)_ 3.87039449256395938e+14 OP -W_concentration_at_point_380_____________________________________________ (f_nd_impurity_electrons13_380)_ 3.86311700559523188e+14 OP -W_concentration_at_point_381_____________________________________________ (f_nd_impurity_electrons13_381)_ 3.85582034211275438e+14 OP -W_concentration_at_point_382_____________________________________________ (f_nd_impurity_electrons13_382)_ 3.84850450211652500e+14 OP -W_concentration_at_point_383_____________________________________________ (f_nd_impurity_electrons13_383)_ 3.84116948560654375e+14 OP -W_concentration_at_point_384_____________________________________________ (f_nd_impurity_electrons13_384)_ 3.83381529258281062e+14 OP -W_concentration_at_point_385_____________________________________________ (f_nd_impurity_electrons13_385)_ 3.82644192304532688e+14 OP -W_concentration_at_point_386_____________________________________________ (f_nd_impurity_electrons13_386)_ 3.81904937699409125e+14 OP -W_concentration_at_point_387_____________________________________________ (f_nd_impurity_electrons13_387)_ 3.81163765442910312e+14 OP -W_concentration_at_point_388_____________________________________________ (f_nd_impurity_electrons13_388)_ 3.80420675535036438e+14 OP -W_concentration_at_point_389_____________________________________________ (f_nd_impurity_electrons13_389)_ 3.79675667975787438e+14 OP -W_concentration_at_point_390_____________________________________________ (f_nd_impurity_electrons13_390)_ 3.78928742765163188e+14 OP -W_concentration_at_point_391_____________________________________________ (f_nd_impurity_electrons13_391)_ 3.78179899903163812e+14 OP -W_concentration_at_point_392_____________________________________________ (f_nd_impurity_electrons13_392)_ 3.77429139389789250e+14 OP -W_concentration_at_point_393_____________________________________________ (f_nd_impurity_electrons13_393)_ 3.76676461225039562e+14 OP -W_concentration_at_point_394_____________________________________________ (f_nd_impurity_electrons13_394)_ 3.75921865408914688e+14 OP -W_concentration_at_point_395_____________________________________________ (f_nd_impurity_electrons13_395)_ 3.75165351941414688e+14 OP -W_concentration_at_point_396_____________________________________________ (f_nd_impurity_electrons13_396)_ 3.74406920822539500e+14 OP -W_concentration_at_point_397_____________________________________________ (f_nd_impurity_electrons13_397)_ 3.73646572052289188e+14 OP -W_concentration_at_point_398_____________________________________________ (f_nd_impurity_electrons13_398)_ 3.72884305630663688e+14 OP -W_concentration_at_point_399_____________________________________________ (f_nd_impurity_electrons13_399)_ 3.72120121557663062e+14 OP -W_concentration_at_point_400_____________________________________________ (f_nd_impurity_electrons13_400)_ 3.71354019833287188e+14 OP -W_concentration_at_point_401_____________________________________________ (f_nd_impurity_electrons13_401)_ 3.70586000457536250e+14 OP -W_concentration_at_point_402_____________________________________________ (f_nd_impurity_electrons13_402)_ 3.69816063430410125e+14 OP -W_concentration_at_point_403_____________________________________________ (f_nd_impurity_electrons13_403)_ 3.69044208751908875e+14 OP -W_concentration_at_point_404_____________________________________________ (f_nd_impurity_electrons13_404)_ 3.68270436422032438e+14 OP -W_concentration_at_point_405_____________________________________________ (f_nd_impurity_electrons13_405)_ 3.67494746440780812e+14 OP -W_concentration_at_point_406_____________________________________________ (f_nd_impurity_electrons13_406)_ 3.66717138808154062e+14 OP -W_concentration_at_point_407_____________________________________________ (f_nd_impurity_electrons13_407)_ 3.65937613524152188e+14 OP -W_concentration_at_point_408_____________________________________________ (f_nd_impurity_electrons13_408)_ 3.65156170588775062e+14 OP -W_concentration_at_point_409_____________________________________________ (f_nd_impurity_electrons13_409)_ 3.64372810002022938e+14 OP -W_concentration_at_point_410_____________________________________________ (f_nd_impurity_electrons13_410)_ 3.63587531763895500e+14 OP -W_concentration_at_point_411_____________________________________________ (f_nd_impurity_electrons13_411)_ 3.62800335874392938e+14 OP -W_concentration_at_point_412_____________________________________________ (f_nd_impurity_electrons13_412)_ 3.62011222333515250e+14 OP -W_concentration_at_point_413_____________________________________________ (f_nd_impurity_electrons13_413)_ 3.61220191141262375e+14 OP -W_concentration_at_point_414_____________________________________________ (f_nd_impurity_electrons13_414)_ 3.60427242297634375e+14 OP -W_concentration_at_point_415_____________________________________________ (f_nd_impurity_electrons13_415)_ 3.59632375802631188e+14 OP -W_concentration_at_point_416_____________________________________________ (f_nd_impurity_electrons13_416)_ 3.58835591656252812e+14 OP -W_concentration_at_point_417_____________________________________________ (f_nd_impurity_electrons13_417)_ 3.58036889858499312e+14 OP -W_concentration_at_point_418_____________________________________________ (f_nd_impurity_electrons13_418)_ 3.57236270409370625e+14 OP -W_concentration_at_point_419_____________________________________________ (f_nd_impurity_electrons13_419)_ 3.56433733308866812e+14 OP -W_concentration_at_point_420_____________________________________________ (f_nd_impurity_electrons13_420)_ 3.55629278556987812e+14 OP -W_concentration_at_point_421_____________________________________________ (f_nd_impurity_electrons13_421)_ 3.54822906153733750e+14 OP -W_concentration_at_point_422_____________________________________________ (f_nd_impurity_electrons13_422)_ 3.54014616099104438e+14 OP -W_concentration_at_point_423_____________________________________________ (f_nd_impurity_electrons13_423)_ 3.53204408393100000e+14 OP -W_concentration_at_point_424_____________________________________________ (f_nd_impurity_electrons13_424)_ 3.52392283035720375e+14 OP -W_concentration_at_point_425_____________________________________________ (f_nd_impurity_electrons13_425)_ 3.51578240026965625e+14 OP -W_concentration_at_point_426_____________________________________________ (f_nd_impurity_electrons13_426)_ 3.50762279366835750e+14 OP -W_concentration_at_point_427_____________________________________________ (f_nd_impurity_electrons13_427)_ 3.49944401055330625e+14 OP -W_concentration_at_point_428_____________________________________________ (f_nd_impurity_electrons13_428)_ 3.49124605092450438e+14 OP -W_concentration_at_point_429_____________________________________________ (f_nd_impurity_electrons13_429)_ 3.48302891478194938e+14 OP -W_concentration_at_point_430_____________________________________________ (f_nd_impurity_electrons13_430)_ 3.47479260212564375e+14 OP -W_concentration_at_point_431_____________________________________________ (f_nd_impurity_electrons13_431)_ 3.46653711295558688e+14 OP -W_concentration_at_point_432_____________________________________________ (f_nd_impurity_electrons13_432)_ 3.45826244727177812e+14 OP -W_concentration_at_point_433_____________________________________________ (f_nd_impurity_electrons13_433)_ 3.44996860507421750e+14 OP -W_concentration_at_point_434_____________________________________________ (f_nd_impurity_electrons13_434)_ 3.44165558636290625e+14 OP -W_concentration_at_point_435_____________________________________________ (f_nd_impurity_electrons13_435)_ 3.43332339113784250e+14 OP -W_concentration_at_point_436_____________________________________________ (f_nd_impurity_electrons13_436)_ 3.42497201939902750e+14 OP -W_concentration_at_point_437_____________________________________________ (f_nd_impurity_electrons13_437)_ 3.41660147114646000e+14 OP -W_concentration_at_point_438_____________________________________________ (f_nd_impurity_electrons13_438)_ 3.40821174638014250e+14 OP -W_concentration_at_point_439_____________________________________________ (f_nd_impurity_electrons13_439)_ 3.39980284510007250e+14 OP -W_concentration_at_point_440_____________________________________________ (f_nd_impurity_electrons13_440)_ 3.39137476730625062e+14 OP -W_concentration_at_point_441_____________________________________________ (f_nd_impurity_electrons13_441)_ 3.38292751299867750e+14 OP -W_concentration_at_point_442_____________________________________________ (f_nd_impurity_electrons13_442)_ 3.37446108217735375e+14 OP -W_concentration_at_point_443_____________________________________________ (f_nd_impurity_electrons13_443)_ 3.36597547484227688e+14 OP -W_concentration_at_point_444_____________________________________________ (f_nd_impurity_electrons13_444)_ 3.35747069099344938e+14 OP -W_concentration_at_point_445_____________________________________________ (f_nd_impurity_electrons13_445)_ 3.34894673063086938e+14 OP -W_concentration_at_point_446_____________________________________________ (f_nd_impurity_electrons13_446)_ 3.34040359375453938e+14 OP -W_concentration_at_point_447_____________________________________________ (f_nd_impurity_electrons13_447)_ 3.33184128036445625e+14 OP -W_concentration_at_point_448_____________________________________________ (f_nd_impurity_electrons13_448)_ 3.32325979046062250e+14 OP -W_concentration_at_point_449_____________________________________________ (f_nd_impurity_electrons13_449)_ 3.31465912404303625e+14 OP -W_concentration_at_point_450_____________________________________________ (f_nd_impurity_electrons13_450)_ 3.30603928111169938e+14 OP -W_concentration_at_point_451_____________________________________________ (f_nd_impurity_electrons13_451)_ 3.29740026166661000e+14 OP -W_concentration_at_point_452_____________________________________________ (f_nd_impurity_electrons13_452)_ 3.28874206570777000e+14 OP -W_concentration_at_point_453_____________________________________________ (f_nd_impurity_electrons13_453)_ 3.28006469323517750e+14 OP -W_concentration_at_point_454_____________________________________________ (f_nd_impurity_electrons13_454)_ 3.27136814424883438e+14 OP -W_concentration_at_point_455_____________________________________________ (f_nd_impurity_electrons13_455)_ 3.26265241874873875e+14 OP -W_concentration_at_point_456_____________________________________________ (f_nd_impurity_electrons13_456)_ 3.25391751673489250e+14 OP -W_concentration_at_point_457_____________________________________________ (f_nd_impurity_electrons13_457)_ 3.24516343820729375e+14 OP -W_concentration_at_point_458_____________________________________________ (f_nd_impurity_electrons13_458)_ 3.23639018316594438e+14 OP -W_concentration_at_point_459_____________________________________________ (f_nd_impurity_electrons13_459)_ 3.22759775161084188e+14 OP -W_concentration_at_point_460_____________________________________________ (f_nd_impurity_electrons13_460)_ 3.21878614354198938e+14 OP -W_concentration_at_point_461_____________________________________________ (f_nd_impurity_electrons13_461)_ 3.20995535895938438e+14 OP -W_concentration_at_point_462_____________________________________________ (f_nd_impurity_electrons13_462)_ 3.20110539786302812e+14 OP -W_concentration_at_point_463_____________________________________________ (f_nd_impurity_electrons13_463)_ 3.19223626025292000e+14 OP -W_concentration_at_point_464_____________________________________________ (f_nd_impurity_electrons13_464)_ 3.18334794612906062e+14 OP -W_concentration_at_point_465_____________________________________________ (f_nd_impurity_electrons13_465)_ 3.17444045549144938e+14 OP -W_concentration_at_point_466_____________________________________________ (f_nd_impurity_electrons13_466)_ 3.16551378834008688e+14 OP -W_concentration_at_point_467_____________________________________________ (f_nd_impurity_electrons13_467)_ 3.15656794467497250e+14 OP -W_concentration_at_point_468_____________________________________________ (f_nd_impurity_electrons13_468)_ 3.14760292449610688e+14 OP -W_concentration_at_point_469_____________________________________________ (f_nd_impurity_electrons13_469)_ 3.13861872780349000e+14 OP -W_concentration_at_point_470_____________________________________________ (f_nd_impurity_electrons13_470)_ 3.12961535459712125e+14 OP -W_concentration_at_point_471_____________________________________________ (f_nd_impurity_electrons13_471)_ 3.08665984973010125e+14 OP -W_concentration_at_point_472_____________________________________________ (f_nd_impurity_electrons13_472)_ 3.04370434486308250e+14 OP -W_concentration_at_point_473_____________________________________________ (f_nd_impurity_electrons13_473)_ 3.00074883999606312e+14 OP -W_concentration_at_point_474_____________________________________________ (f_nd_impurity_electrons13_474)_ 2.95779333512904375e+14 OP -W_concentration_at_point_475_____________________________________________ (f_nd_impurity_electrons13_475)_ 2.91483783026202438e+14 OP -W_concentration_at_point_476_____________________________________________ (f_nd_impurity_electrons13_476)_ 2.87188232539500500e+14 OP -W_concentration_at_point_477_____________________________________________ (f_nd_impurity_electrons13_477)_ 2.82892682052798562e+14 OP -W_concentration_at_point_478_____________________________________________ (f_nd_impurity_electrons13_478)_ 2.78597131566096656e+14 OP -W_concentration_at_point_479_____________________________________________ (f_nd_impurity_electrons13_479)_ 2.74301581079394750e+14 OP -W_concentration_at_point_480_____________________________________________ (f_nd_impurity_electrons13_480)_ 2.70006030592692812e+14 OP -W_concentration_at_point_481_____________________________________________ (f_nd_impurity_electrons13_481)_ 2.65710480105990875e+14 OP -W_concentration_at_point_482_____________________________________________ (f_nd_impurity_electrons13_482)_ 2.61414929619288938e+14 OP -W_concentration_at_point_483_____________________________________________ (f_nd_impurity_electrons13_483)_ 2.57119379132587000e+14 OP -W_concentration_at_point_484_____________________________________________ (f_nd_impurity_electrons13_484)_ 2.52823828645885062e+14 OP -W_concentration_at_point_485_____________________________________________ (f_nd_impurity_electrons13_485)_ 2.48528278159183156e+14 OP -W_concentration_at_point_486_____________________________________________ (f_nd_impurity_electrons13_486)_ 2.44232727672481250e+14 OP -W_concentration_at_point_487_____________________________________________ (f_nd_impurity_electrons13_487)_ 2.39937177185779281e+14 OP -W_concentration_at_point_488_____________________________________________ (f_nd_impurity_electrons13_488)_ 2.35641626699077375e+14 OP -W_concentration_at_point_489_____________________________________________ (f_nd_impurity_electrons13_489)_ 2.31346076212375406e+14 OP -W_concentration_at_point_490_____________________________________________ (f_nd_impurity_electrons13_490)_ 2.27050525725673500e+14 OP -W_concentration_at_point_491_____________________________________________ (f_nd_impurity_electrons13_491)_ 2.22754975238971562e+14 OP -W_concentration_at_point_492_____________________________________________ (f_nd_impurity_electrons13_492)_ 2.18459424752269625e+14 OP -W_concentration_at_point_493_____________________________________________ (f_nd_impurity_electrons13_493)_ 2.14163874265567688e+14 OP -W_concentration_at_point_494_____________________________________________ (f_nd_impurity_electrons13_494)_ 2.09868323778865781e+14 OP -W_concentration_at_point_495_____________________________________________ (f_nd_impurity_electrons13_495)_ 2.05572773292163812e+14 OP -W_concentration_at_point_496_____________________________________________ (f_nd_impurity_electrons13_496)_ 2.01277222805461906e+14 OP -W_concentration_at_point_497_____________________________________________ (f_nd_impurity_electrons13_497)_ 1.96981672318760000e+14 OP -W_concentration_at_point_498_____________________________________________ (f_nd_impurity_electrons13_498)_ 1.92686121832058031e+14 OP -W_concentration_at_point_499_____________________________________________ (f_nd_impurity_electrons13_499)_ 1.88390571345356125e+14 OP -W_concentration_at_point_500_____________________________________________ (f_nd_impurity_electrons13_500)_ 1.84095020858654188e+14 OP -Volume_averaged_plasma_effective_charge_(⟨Zₑ⟩)___________________________ (n_charge_plasma_effective_vol_avg)_ 2.56247582201384372e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile0)_ 2.70213649678517243e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile1)_ 2.70213599862905252e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile2)_ 2.70213450415188028e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile3)_ 2.70213201332720843e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile4)_ 2.70212852611096022e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile5)_ 2.70212404244142457e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile6)_ 2.70211856223925295e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile7)_ 2.70211208540745496e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile8)_ 2.70210461183139561e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile9)_ 2.70209614137878651e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile10)_ 2.70208667389968094e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile11)_ 2.70207620922646630e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile12)_ 2.70206474717385348e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile13)_ 2.70205228753887150e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile14)_ 2.70203883010085244e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile15)_ 2.70202437462142298e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile16)_ 2.70200892084449285e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile17)_ 2.70199246849623842e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile18)_ 2.70197501728509470e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile19)_ 2.70195656690173180e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile20)_ 2.70193711701904737e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile21)_ 2.70191666729214752e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile22)_ 2.70189521735832416e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile23)_ 2.70187276683704480e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile24)_ 2.70184931532992767e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile25)_ 2.70182486242072128e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile26)_ 2.70179940767528626e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile27)_ 2.70177295064157219e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile28)_ 2.70174549084959148e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile29)_ 2.70171702781140066e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile30)_ 2.70168756102107066e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile31)_ 2.70165708995466325e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile32)_ 2.70162561407020352e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile33)_ 2.70159313280765367e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile34)_ 2.70155964558888328e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile35)_ 2.70152515181763908e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile36)_ 2.70148965087951431e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile37)_ 2.70145314214192034e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile38)_ 2.70141562495404974e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile39)_ 2.70137709864684750e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile40)_ 2.70133756253297230e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile41)_ 2.70129701590676552e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile42)_ 2.70125545804421074e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile43)_ 2.70121288820290228e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile44)_ 2.70116930562200119e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile45)_ 2.70112470952220018e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile46)_ 2.70107909910568145e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile47)_ 2.70103247355607889e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile48)_ 2.70098483203842976e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile49)_ 2.70093617369914085e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile50)_ 2.70088649766593614e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile51)_ 2.70083580304781767e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile52)_ 2.70078408893501898e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile53)_ 2.70073135439895173e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile54)_ 2.70067759849216849e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile55)_ 2.70062282024830758e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile56)_ 2.70056701868204341e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile57)_ 2.70051019278903670e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile58)_ 2.70045234154588476e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile59)_ 2.70039346391006507e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile60)_ 2.70033355881988424e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile61)_ 2.70027262519442157e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile62)_ 2.70021066193347403e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile63)_ 2.70014766791750160e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile64)_ 2.70008364200756468e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile65)_ 2.70001858304526809e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile66)_ 2.69995248985270342e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile67)_ 2.69988536123238276e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile68)_ 2.69981719596718239e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile69)_ 2.69974799282027522e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile70)_ 2.69967775053506909e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile71)_ 2.69960646783514191e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile72)_ 2.69953414342417508e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile73)_ 2.69946077598588463e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile74)_ 2.69938636418395550e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile75)_ 2.69931090666197138e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile76)_ 2.69923440204334364e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile77)_ 2.69915684893124075e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile78)_ 2.69907824590851408e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile79)_ 2.69899859153762689e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile80)_ 2.69891788436057700e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile81)_ 2.69883612289882269e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile82)_ 2.69875330565320581e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile83)_ 2.69866943110387103e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile84)_ 2.69858449771019071e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile85)_ 2.69849551756592954e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile86)_ 2.69839809013520826e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile87)_ 2.69829947267633408e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile88)_ 2.69819966338137407e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile89)_ 2.69809866041883195e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile90)_ 2.69799646193354770e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile91)_ 2.69789306604660695e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile92)_ 2.69778847085523754e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile93)_ 2.69768267443271492e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile94)_ 2.69757567482826000e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile95)_ 2.69746747006693788e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile96)_ 2.69735805814955354e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile97)_ 2.69724743705255232e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile98)_ 2.69713560472790848e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile99)_ 2.69702255910302124e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile100)_ 2.69690829808060784e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile101)_ 2.69679281953859418e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile102)_ 2.69667612133000034e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile103)_ 2.69655820128283219e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile104)_ 2.69643905719996724e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile105)_ 2.69631868685903786e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile106)_ 2.69619708801231805e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile107)_ 2.69607425838660486e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile108)_ 2.69595019568309802e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile109)_ 2.69582489757728228e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile110)_ 2.69569836171880306e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile111)_ 2.69557058573134478e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile112)_ 2.69544156721250738e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile113)_ 2.69531130373367978e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile114)_ 2.69517979283991149e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile115)_ 2.69504703204978524e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile116)_ 2.69491301885528811e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile117)_ 2.69477775072167569e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile118)_ 2.69464122508734594e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile119)_ 2.69450343936369840e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile120)_ 2.69436439093500146e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile121)_ 2.69422407715825596e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile122)_ 2.69408249536305533e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile123)_ 2.69393964285144394e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile124)_ 2.69379551689778030e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile125)_ 2.69365011474858917e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile126)_ 2.69350343362241773e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile127)_ 2.69335547070969383e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile128)_ 2.69320622317257197e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile129)_ 2.69305568814479157e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile130)_ 2.69290386273152027e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile131)_ 2.69275096043468398e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile132)_ 2.69259717415653022e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile133)_ 2.69244209393150369e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile134)_ 2.69228571676137696e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile135)_ 2.69212803961870062e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile136)_ 2.69196905944664255e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile137)_ 2.69180877315883071e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile138)_ 2.69164717763918881e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile139)_ 2.69148426974177690e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile140)_ 2.69132004629062083e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile141)_ 2.69115450407955104e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile142)_ 2.69098763987203249e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile143)_ 2.69081945040099413e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile144)_ 2.69064993236866146e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile145)_ 2.69047908244638112e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile146)_ 2.69030689727444727e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile147)_ 2.69013337346192793e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile148)_ 2.68995850758648647e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile149)_ 2.68978229619420306e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile150)_ 2.68960473579939618e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile151)_ 2.68942582288443788e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile152)_ 2.68924555389957476e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile153)_ 2.68906392526273974e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile154)_ 2.68888093335936817e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile155)_ 2.68869657454220867e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile156)_ 2.68851084513113570e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile157)_ 2.68832374141295682e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile158)_ 2.68813525964122224e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile159)_ 2.68794539603602844e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile160)_ 2.68775414678382729e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile161)_ 2.68756150803722527e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile162)_ 2.68736747591478675e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile163)_ 2.68717204650083508e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile164)_ 2.68696336619629417e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile165)_ 2.68674451078513288e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile166)_ 2.68652410088027516e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile167)_ 2.68630213203402457e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile168)_ 2.68607859976008045e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile169)_ 2.68585349953330743e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile170)_ 2.68562682678950893e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile171)_ 2.68539857692519623e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile172)_ 2.68516874529735805e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile173)_ 2.68493732722322820e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile174)_ 2.68470431798005027e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile175)_ 2.68446971280484270e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile176)_ 2.68423350689416207e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile177)_ 2.68399569540386329e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile178)_ 2.68375627344886158e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile179)_ 2.68351523610288911e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile180)_ 2.68327257839825473e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile181)_ 2.68302829532559839e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile182)_ 2.68278238183364692e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile183)_ 2.68253483282896665e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile184)_ 2.68228564317571871e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile185)_ 2.68203480769540503e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile186)_ 2.68178232116662452e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile187)_ 2.68152817832481638e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile188)_ 2.68127237386201189e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile189)_ 2.68101490242657947e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile190)_ 2.68075202337077156e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile191)_ 2.68043809043040770e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile192)_ 2.68012213644296304e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile193)_ 2.67980415485218559e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile194)_ 2.67948413904883820e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile195)_ 2.67916208237039344e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile196)_ 2.67883797810074054e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile197)_ 2.67851181946988381e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile198)_ 2.67818359965363628e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile199)_ 2.67785331177332742e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile200)_ 2.67752094889549541e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile201)_ 2.67718650403158609e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile202)_ 2.67684997013765447e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile203)_ 2.67651134011405700e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile204)_ 2.67617060680515317e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile205)_ 2.67582776299900260e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile206)_ 2.67548280142706307e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile207)_ 2.67513571476388501e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile208)_ 2.67478649562681614e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile209)_ 2.67443513657569465e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile210)_ 2.67408163011255340e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile211)_ 2.67372596868131707e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile212)_ 2.67336814466750372e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile213)_ 2.67300949852143521e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile214)_ 2.67264927525017804e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile215)_ 2.67228687784821606e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile216)_ 2.67192229850462182e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile217)_ 2.67155552934888529e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile218)_ 2.67118656245062214e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile219)_ 2.67081538981928546e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile220)_ 2.67044200340388116e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile221)_ 2.67006639509268595e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile222)_ 2.66968855671296090e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile223)_ 2.66930848003068411e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile224)_ 2.66892615675026290e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile225)_ 2.66854157851427010e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile226)_ 2.66815473690317262e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile227)_ 2.66776562343506463e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile228)_ 2.66737422956540815e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile229)_ 2.66698054668677242e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile230)_ 2.66658456612858386e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile231)_ 2.66618627915687645e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile232)_ 2.66578567697404312e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile233)_ 2.66534960595471082e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile234)_ 2.66490836401808462e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile235)_ 2.66446457731068120e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile236)_ 2.66401823606574117e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile237)_ 2.66356933044703359e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile238)_ 2.66311785054864547e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile239)_ 2.66266378639477308e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile240)_ 2.66220712793952119e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile241)_ 2.66174786506671879e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile242)_ 2.66128598758973389e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile243)_ 2.66082148525130302e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile244)_ 2.66035434772337220e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile245)_ 2.65988456460694245e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile246)_ 2.65941212543193695e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile247)_ 2.65893701965706475e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile248)_ 2.65845923666971284e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile249)_ 2.65797876578583780e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile250)_ 2.65747320540759668e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile251)_ 2.65692086580763132e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile252)_ 2.65636544524395113e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile253)_ 2.65580693144484759e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile254)_ 2.65524531205940173e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile255)_ 2.65468057465749219e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile256)_ 2.65411270672983379e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile257)_ 2.65354169568802467e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile258)_ 2.65296752886462706e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile259)_ 2.65239019351326100e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile260)_ 2.65180967680873181e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile261)_ 2.65122596584716952e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile262)_ 2.65063904764620784e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile263)_ 2.65004890914517954e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile264)_ 2.64945553720534477e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile265)_ 2.64885891861014944e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile266)_ 2.64824240738195060e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile267)_ 2.64755224644412746e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile268)_ 2.64685834374186779e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile269)_ 2.64616068412464100e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile270)_ 2.64545925235872792e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile271)_ 2.64475403312779234e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile272)_ 2.64404501103349343e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile273)_ 2.64333217059614567e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile274)_ 2.64261549625543024e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile275)_ 2.64189497237115090e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile276)_ 2.64117058322404752e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile277)_ 2.64044231301665988e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile278)_ 2.63971014587425046e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile279)_ 2.63897406584578542e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile280)_ 2.63823405690497426e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile281)_ 2.63744354674224901e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile282)_ 2.63661431023596515e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile283)_ 2.63578068604244775e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile284)_ 2.63494265644388781e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile285)_ 2.63410020365032116e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile286)_ 2.63325330980129824e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile287)_ 2.63240195696764356e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile288)_ 2.63154612715330183e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile289)_ 2.63068580229728299e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile290)_ 2.62982096427570600e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile291)_ 2.62895159490394770e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile292)_ 2.62807767593889485e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile293)_ 2.62719918908131245e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile294)_ 2.62631611597832304e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile295)_ 2.62529908649982202e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile296)_ 2.62427305741686379e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile297)_ 2.62324173636637026e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile298)_ 2.62220510277828600e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile299)_ 2.62116313604613804e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile300)_ 2.62011581553088435e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile301)_ 2.61906312056494350e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile302)_ 2.61800503045639266e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile303)_ 2.61694152449336714e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile304)_ 2.61587258194863814e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile305)_ 2.61479818208440262e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile306)_ 2.61371830415727358e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile307)_ 2.61259132152732887e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile308)_ 2.61133979322951193e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile309)_ 2.61008197626728355e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile310)_ 2.60881784798357685e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile311)_ 2.60754738576028755e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile312)_ 2.60627056702575155e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile313)_ 2.60498736926253116e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile314)_ 2.60369777001551794e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile315)_ 2.60240174690037573e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile316)_ 2.60109927761232296e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile317)_ 2.59979033993527908e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile318)_ 2.59847491175137968e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile319)_ 2.59705816054816019e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile320)_ 2.59553944059825392e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile321)_ 2.59401332309576205e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile322)_ 2.59247978490196962e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile323)_ 2.59093880306958813e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile324)_ 2.58939035485666746e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile325)_ 2.58783441774105327e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile326)_ 2.58627096943541268e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile327)_ 2.58469998790285560e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile328)_ 2.58312145137317239e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile329)_ 2.58153533835970350e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile330)_ 2.57984757198426085e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile331)_ 2.57793860444140499e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile332)_ 2.57602073210889637e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile333)_ 2.57409393417126564e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile334)_ 2.57215819029862969e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile335)_ 2.57021348067210686e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile336)_ 2.56825978601021054e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile337)_ 2.56629708759625119e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile338)_ 2.56432536730679050e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile339)_ 2.56234460764119065e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile340)_ 2.56035479175229375e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile341)_ 2.55802808706673668e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile342)_ 2.55566811719675746e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile343)_ 2.55329773888550360e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile344)_ 2.55091694035208505e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile345)_ 2.54852571083035562e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile346)_ 2.54612404061393915e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile347)_ 2.54371192110295441e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile348)_ 2.54128934485251623e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile349)_ 2.53885630562306641e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile350)_ 2.53641279843261680e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile351)_ 2.53362360062271197e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile352)_ 2.53077523694439588e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile353)_ 2.52791515761343621e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile354)_ 2.52504336935585849e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile355)_ 2.52215988074036979e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile356)_ 2.51926470225312826e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile357)_ 2.51635784637533666e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile358)_ 2.51343932766375344e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile359)_ 2.51050916283424108e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile360)_ 2.50739717694388498e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile361)_ 2.50402187133730791e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile362)_ 2.50063384865163263e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile363)_ 2.49723314667540564e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile364)_ 2.49381980625186550e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile365)_ 2.49039387139645907e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile366)_ 2.48695538941878880e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile367)_ 2.48350441104915642e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile368)_ 2.48004099056990857e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile369)_ 2.47646870590529655e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile370)_ 2.47278435962056164e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile371)_ 2.46908733760891419e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile372)_ 2.46537771760547164e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile373)_ 2.46165558189059297e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile374)_ 2.45792101746203295e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile375)_ 2.45417411621369297e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile376)_ 2.45041497512127915e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile377)_ 2.44664369643513568e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile378)_ 2.44280486223293503e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile379)_ 2.43894041965977948e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile380)_ 2.43506406759721905e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile381)_ 2.43117593516548958e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile382)_ 2.42727615795894769e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile383)_ 2.42336487829249458e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile384)_ 2.41944224545776798e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile385)_ 2.41550841598959698e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile386)_ 2.41165238307817331e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile387)_ 2.40789214826433806e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile388)_ 2.40412147173698720e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile389)_ 2.40034052892375716e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile390)_ 2.39654950358526486e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile391)_ 2.39274858814066071e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile392)_ 2.38893798400674884e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile393)_ 2.38511790195132045e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile394)_ 2.38142852181058462e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile395)_ 2.37793126135584654e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile396)_ 2.37442551738895569e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile397)_ 2.37091151409884526e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile398)_ 2.36738948609890754e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile399)_ 2.36385967885013182e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile400)_ 2.36032234910298433e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile401)_ 2.35677776535900119e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile402)_ 2.35357360126560389e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile403)_ 2.35057785377241180e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile404)_ 2.34757605284964432e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile405)_ 2.34456846181111622e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile406)_ 2.34155535628871858e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile407)_ 2.33853702475910108e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile408)_ 2.33551376909555275e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile409)_ 2.33249619379893280e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile410)_ 2.32996108838915372e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile411)_ 2.32742217788936134e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile412)_ 2.32487976074057690e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile413)_ 2.32233414948284533e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile414)_ 2.31978567139014347e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile415)_ 2.31723466913826615e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile416)_ 2.31468150150786833e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile417)_ 2.31237335735673755e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile418)_ 2.31024685911405747e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile419)_ 2.30811916230351555e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile420)_ 2.30599062395037224e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile421)_ 2.30386161817407897e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile422)_ 2.30173253701510339e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile423)_ 2.29960379131045567e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile424)_ 2.29757199562375503e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile425)_ 2.29587449283617095e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile426)_ 2.29417803966853828e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile427)_ 2.29248303199074988e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile428)_ 2.29078988516591098e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile429)_ 2.28909903507997647e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile430)_ 2.28741093924208183e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile431)_ 2.28572607796243421e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile432)_ 2.28430526653270016e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile433)_ 2.28291685600081218e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile434)_ 2.28153227367985689e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile435)_ 2.28015200528111395e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile436)_ 2.27877656174133625e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile437)_ 2.27740648077237129e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile438)_ 2.27604232854701838e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile439)_ 2.27478412031186261e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile440)_ 2.27364087779450941e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile441)_ 2.27250415547219786e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile442)_ 2.27137454782406989e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile443)_ 2.27025268312404327e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile444)_ 2.26913922600170537e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile445)_ 2.26803488030519107e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile446)_ 2.26694039231848032e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile447)_ 2.26591293833975449e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile448)_ 2.26491017439380826e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile449)_ 2.26391896342552057e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile450)_ 2.26294020236279136e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile451)_ 2.26197485065483628e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile452)_ 2.26102393722953909e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile453)_ 2.26008856872364472e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile454)_ 2.25916993931936183e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile455)_ 2.25835202210998531e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile456)_ 2.25764276580901013e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile457)_ 2.25695034720440324e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile458)_ 2.25627613401556104e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile459)_ 2.25562164250954744e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile460)_ 2.25498856844769735e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile461)_ 2.25437882866645722e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile462)_ 2.25379461857388064e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile463)_ 2.25323849445289381e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile464)_ 2.25271349640923857e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile465)_ 2.25222344318824996e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile466)_ 2.25177422947500494e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile467)_ 2.25137078587003181e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile468)_ 2.25102238120214215e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile469)_ 2.25074496939742152e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile470)_ 2.25058414108314908e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile471)_ 2.24658701427153051e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile472)_ 2.24274641019935972e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile473)_ 2.23884285153841711e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile474)_ 2.23481147057192553e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile475)_ 2.23064912020006956e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile476)_ 2.22614729429828317e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile477)_ 2.22126434070181888e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile478)_ 2.21616803816691776e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile479)_ 2.21044788531375858e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile480)_ 2.20339847315570792e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile481)_ 2.19534555605596848e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile482)_ 2.18517061662376255e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile483)_ 2.17111880095395193e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile484)_ 2.15068652385187864e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile485)_ 2.11948626358536085e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile486)_ 2.06957314548559035e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile487)_ 2.00182889237150707e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile488)_ 1.93216313199110745e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile489)_ 1.88187266105025786e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile490)_ 1.85047609879265162e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile491)_ 1.83071534501724709e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile492)_ 1.81486074602192859e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile493)_ 1.79986006262379239e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile494)_ 1.78148552116003223e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile495)_ 1.75413652047673896e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile496)_ 1.71076459718740148e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile497)_ 1.59103582539566779e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile498)_ 1.46073661890838968e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile499)_ 1.35664269142663185e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile500)_ 1.21417998388673998e+00 OP +W_concentration_at_point_0_______________________________________________ (f_nd_impurity_electrons13_0)__ 5.34194999111333000e+14 OP +W_concentration_at_point_1_______________________________________________ (f_nd_impurity_electrons13_1)__ 5.34194023059530562e+14 OP +W_concentration_at_point_2_______________________________________________ (f_nd_impurity_electrons13_2)__ 5.34191094904123500e+14 OP +W_concentration_at_point_3_______________________________________________ (f_nd_impurity_electrons13_3)__ 5.34186214645111562e+14 OP +W_concentration_at_point_4_______________________________________________ (f_nd_impurity_electrons13_4)__ 5.34179382282494875e+14 OP +W_concentration_at_point_5_______________________________________________ (f_nd_impurity_electrons13_5)__ 5.34170597816273500e+14 OP +W_concentration_at_point_6_______________________________________________ (f_nd_impurity_electrons13_6)__ 5.34159861246447250e+14 OP +W_concentration_at_point_7_______________________________________________ (f_nd_impurity_electrons13_7)__ 5.34147172573016250e+14 OP +W_concentration_at_point_8_______________________________________________ (f_nd_impurity_electrons13_8)__ 5.34132531795980562e+14 OP +W_concentration_at_point_9_______________________________________________ (f_nd_impurity_electrons13_9)__ 5.34115938915340000e+14 OP +W_concentration_at_point_10______________________________________________ (f_nd_impurity_electrons13_10)_ 5.34097393931094812e+14 OP +W_concentration_at_point_11______________________________________________ (f_nd_impurity_electrons13_11)_ 5.34076896843244812e+14 OP +W_concentration_at_point_12______________________________________________ (f_nd_impurity_electrons13_12)_ 5.34054447651790000e+14 OP +W_concentration_at_point_13______________________________________________ (f_nd_impurity_electrons13_13)_ 5.34030046356730500e+14 OP +W_concentration_at_point_14______________________________________________ (f_nd_impurity_electrons13_14)_ 5.34003692958066188e+14 OP +W_concentration_at_point_15______________________________________________ (f_nd_impurity_electrons13_15)_ 5.33975387455797062e+14 OP +W_concentration_at_point_16______________________________________________ (f_nd_impurity_electrons13_16)_ 5.33945129849923188e+14 OP +W_concentration_at_point_17______________________________________________ (f_nd_impurity_electrons13_17)_ 5.33912920140444562e+14 OP +W_concentration_at_point_18______________________________________________ (f_nd_impurity_electrons13_18)_ 5.33878758327361250e+14 OP +W_concentration_at_point_19______________________________________________ (f_nd_impurity_electrons13_19)_ 5.33842644410673125e+14 OP +W_concentration_at_point_20______________________________________________ (f_nd_impurity_electrons13_20)_ 5.33804578390380188e+14 OP +W_concentration_at_point_21______________________________________________ (f_nd_impurity_electrons13_21)_ 5.33764560266482500e+14 OP +W_concentration_at_point_22______________________________________________ (f_nd_impurity_electrons13_22)_ 5.33722590038980062e+14 OP +W_concentration_at_point_23______________________________________________ (f_nd_impurity_electrons13_23)_ 5.33678667707872938e+14 OP +W_concentration_at_point_24______________________________________________ (f_nd_impurity_electrons13_24)_ 5.33632793273160875e+14 OP +W_concentration_at_point_25______________________________________________ (f_nd_impurity_electrons13_25)_ 5.33584966734844188e+14 OP +W_concentration_at_point_26______________________________________________ (f_nd_impurity_electrons13_26)_ 5.33535188092922625e+14 OP +W_concentration_at_point_27______________________________________________ (f_nd_impurity_electrons13_27)_ 5.33483457347396438e+14 OP +W_concentration_at_point_28______________________________________________ (f_nd_impurity_electrons13_28)_ 5.33429774498265375e+14 OP +W_concentration_at_point_29______________________________________________ (f_nd_impurity_electrons13_29)_ 5.33374139545529562e+14 OP +W_concentration_at_point_30______________________________________________ (f_nd_impurity_electrons13_30)_ 5.33316552489189062e+14 OP +W_concentration_at_point_31______________________________________________ (f_nd_impurity_electrons13_31)_ 5.33257013329243812e+14 OP +W_concentration_at_point_32______________________________________________ (f_nd_impurity_electrons13_32)_ 5.33195522065693750e+14 OP +W_concentration_at_point_33______________________________________________ (f_nd_impurity_electrons13_33)_ 5.33132078698538875e+14 OP +W_concentration_at_point_34______________________________________________ (f_nd_impurity_electrons13_34)_ 5.33066683227779250e+14 OP +W_concentration_at_point_35______________________________________________ (f_nd_impurity_electrons13_35)_ 5.32999335653414875e+14 OP +W_concentration_at_point_36______________________________________________ (f_nd_impurity_electrons13_36)_ 5.32930035975445750e+14 OP +W_concentration_at_point_37______________________________________________ (f_nd_impurity_electrons13_37)_ 5.32858784193871938e+14 OP +W_concentration_at_point_38______________________________________________ (f_nd_impurity_electrons13_38)_ 5.32785580308693188e+14 OP +W_concentration_at_point_39______________________________________________ (f_nd_impurity_electrons13_39)_ 5.32710424319909750e+14 OP +W_concentration_at_point_40______________________________________________ (f_nd_impurity_electrons13_40)_ 5.32633316227521625e+14 OP +W_concentration_at_point_41______________________________________________ (f_nd_impurity_electrons13_41)_ 5.32554256031528625e+14 OP +W_concentration_at_point_42______________________________________________ (f_nd_impurity_electrons13_42)_ 5.32473243731930938e+14 OP +W_concentration_at_point_43______________________________________________ (f_nd_impurity_electrons13_43)_ 5.32390279328728500e+14 OP +W_concentration_at_point_44______________________________________________ (f_nd_impurity_electrons13_44)_ 5.32305362821921250e+14 OP +W_concentration_at_point_45______________________________________________ (f_nd_impurity_electrons13_45)_ 5.32218494211509188e+14 OP +W_concentration_at_point_46______________________________________________ (f_nd_impurity_electrons13_46)_ 5.32129673497492375e+14 OP +W_concentration_at_point_47______________________________________________ (f_nd_impurity_electrons13_47)_ 5.32038900679870938e+14 OP +W_concentration_at_point_48______________________________________________ (f_nd_impurity_electrons13_48)_ 5.31946175758644562e+14 OP +W_concentration_at_point_49______________________________________________ (f_nd_impurity_electrons13_49)_ 5.31851498733813500e+14 OP +W_concentration_at_point_50______________________________________________ (f_nd_impurity_electrons13_50)_ 5.31754869605377688e+14 OP +W_concentration_at_point_51______________________________________________ (f_nd_impurity_electrons13_51)_ 5.31656288373337000e+14 OP +W_concentration_at_point_52______________________________________________ (f_nd_impurity_electrons13_52)_ 5.31555755037691812e+14 OP +W_concentration_at_point_53______________________________________________ (f_nd_impurity_electrons13_53)_ 5.31453269598441625e+14 OP +W_concentration_at_point_54______________________________________________ (f_nd_impurity_electrons13_54)_ 5.31348832055586688e+14 OP +W_concentration_at_point_55______________________________________________ (f_nd_impurity_electrons13_55)_ 5.31242442409127000e+14 OP +W_concentration_at_point_56______________________________________________ (f_nd_impurity_electrons13_56)_ 5.31134100659062562e+14 OP +W_concentration_at_point_57______________________________________________ (f_nd_impurity_electrons13_57)_ 5.31023806805393438e+14 OP +W_concentration_at_point_58______________________________________________ (f_nd_impurity_electrons13_58)_ 5.30911560848119438e+14 OP +W_concentration_at_point_59______________________________________________ (f_nd_impurity_electrons13_59)_ 5.30797362787240812e+14 OP +W_concentration_at_point_60______________________________________________ (f_nd_impurity_electrons13_60)_ 5.30681212622757250e+14 OP +W_concentration_at_point_61______________________________________________ (f_nd_impurity_electrons13_61)_ 5.30563110354669125e+14 OP +W_concentration_at_point_62______________________________________________ (f_nd_impurity_electrons13_62)_ 5.30443055982976062e+14 OP +W_concentration_at_point_63______________________________________________ (f_nd_impurity_electrons13_63)_ 5.30321049507678312e+14 OP +W_concentration_at_point_64______________________________________________ (f_nd_impurity_electrons13_64)_ 5.30197090928775812e+14 OP +W_concentration_at_point_65______________________________________________ (f_nd_impurity_electrons13_65)_ 5.30071180246268500e+14 OP +W_concentration_at_point_66______________________________________________ (f_nd_impurity_electrons13_66)_ 5.29943317460156438e+14 OP +W_concentration_at_point_67______________________________________________ (f_nd_impurity_electrons13_67)_ 5.29813502570439625e+14 OP +W_concentration_at_point_68______________________________________________ (f_nd_impurity_electrons13_68)_ 5.29681735577118000e+14 OP +W_concentration_at_point_69______________________________________________ (f_nd_impurity_electrons13_69)_ 5.29548016480191625e+14 OP +W_concentration_at_point_70______________________________________________ (f_nd_impurity_electrons13_70)_ 5.29412345279660562e+14 OP +W_concentration_at_point_71______________________________________________ (f_nd_impurity_electrons13_71)_ 5.29274721975524625e+14 OP +W_concentration_at_point_72______________________________________________ (f_nd_impurity_electrons13_72)_ 5.29135146567784000e+14 OP +W_concentration_at_point_73______________________________________________ (f_nd_impurity_electrons13_73)_ 5.28993619056438625e+14 OP +W_concentration_at_point_74______________________________________________ (f_nd_impurity_electrons13_74)_ 5.28850139441488438e+14 OP +W_concentration_at_point_75______________________________________________ (f_nd_impurity_electrons13_75)_ 5.28704707722933438e+14 OP +W_concentration_at_point_76______________________________________________ (f_nd_impurity_electrons13_76)_ 5.28557323900773812e+14 OP +W_concentration_at_point_77______________________________________________ (f_nd_impurity_electrons13_77)_ 5.28407987975009312e+14 OP +W_concentration_at_point_78______________________________________________ (f_nd_impurity_electrons13_78)_ 5.28256699945640062e+14 OP +W_concentration_at_point_79______________________________________________ (f_nd_impurity_electrons13_79)_ 5.28103459812666125e+14 OP +W_concentration_at_point_80______________________________________________ (f_nd_impurity_electrons13_80)_ 5.27948267576087312e+14 OP +W_concentration_at_point_81______________________________________________ (f_nd_impurity_electrons13_81)_ 5.27791123235903750e+14 OP +W_concentration_at_point_82______________________________________________ (f_nd_impurity_electrons13_82)_ 5.27632026792115438e+14 OP +W_concentration_at_point_83______________________________________________ (f_nd_impurity_electrons13_83)_ 5.27470978244722375e+14 OP +W_concentration_at_point_84______________________________________________ (f_nd_impurity_electrons13_84)_ 5.27307977593724625e+14 OP +W_concentration_at_point_85______________________________________________ (f_nd_impurity_electrons13_85)_ 5.27143024839122000e+14 OP +W_concentration_at_point_86______________________________________________ (f_nd_impurity_electrons13_86)_ 5.26976119980914625e+14 OP +W_concentration_at_point_87______________________________________________ (f_nd_impurity_electrons13_87)_ 5.26807263019102562e+14 OP +W_concentration_at_point_88______________________________________________ (f_nd_impurity_electrons13_88)_ 5.26636453953685688e+14 OP +W_concentration_at_point_89______________________________________________ (f_nd_impurity_electrons13_89)_ 5.26463692784664125e+14 OP +W_concentration_at_point_90______________________________________________ (f_nd_impurity_electrons13_90)_ 5.26288979512037688e+14 OP +W_concentration_at_point_91______________________________________________ (f_nd_impurity_electrons13_91)_ 5.26112314135806500e+14 OP +W_concentration_at_point_92______________________________________________ (f_nd_impurity_electrons13_92)_ 5.25933696655970562e+14 OP +W_concentration_at_point_93______________________________________________ (f_nd_impurity_electrons13_93)_ 5.25753127072529812e+14 OP +W_concentration_at_point_94______________________________________________ (f_nd_impurity_electrons13_94)_ 5.25570605385484438e+14 OP +W_concentration_at_point_95______________________________________________ (f_nd_impurity_electrons13_95)_ 5.25386131594834188e+14 OP +W_concentration_at_point_96______________________________________________ (f_nd_impurity_electrons13_96)_ 5.25199705700579188e+14 OP +W_concentration_at_point_97______________________________________________ (f_nd_impurity_electrons13_97)_ 5.25011327702719438e+14 OP +W_concentration_at_point_98______________________________________________ (f_nd_impurity_electrons13_98)_ 5.24820997601255000e+14 OP +W_concentration_at_point_99______________________________________________ (f_nd_impurity_electrons13_99)_ 5.24628715396185688e+14 OP +W_concentration_at_point_100_____________________________________________ (f_nd_impurity_electrons13_100)_ 5.24434481087511625e+14 OP +W_concentration_at_point_101_____________________________________________ (f_nd_impurity_electrons13_101)_ 5.24238294675232812e+14 OP +W_concentration_at_point_102_____________________________________________ (f_nd_impurity_electrons13_102)_ 5.24040156159349250e+14 OP +W_concentration_at_point_103_____________________________________________ (f_nd_impurity_electrons13_103)_ 5.23840065539860875e+14 OP +W_concentration_at_point_104_____________________________________________ (f_nd_impurity_electrons13_104)_ 5.23638022816767688e+14 OP +W_concentration_at_point_105_____________________________________________ (f_nd_impurity_electrons13_105)_ 5.23434027990069938e+14 OP +W_concentration_at_point_106_____________________________________________ (f_nd_impurity_electrons13_106)_ 5.23228081059767312e+14 OP +W_concentration_at_point_107_____________________________________________ (f_nd_impurity_electrons13_107)_ 5.23020182025859875e+14 OP +W_concentration_at_point_108_____________________________________________ (f_nd_impurity_electrons13_108)_ 5.22810330888347688e+14 OP +W_concentration_at_point_109_____________________________________________ (f_nd_impurity_electrons13_109)_ 5.22598527647230812e+14 OP +W_concentration_at_point_110_____________________________________________ (f_nd_impurity_electrons13_110)_ 5.22384772302509062e+14 OP +W_concentration_at_point_111_____________________________________________ (f_nd_impurity_electrons13_111)_ 5.22169064854182688e+14 OP +W_concentration_at_point_112_____________________________________________ (f_nd_impurity_electrons13_112)_ 5.21951405302251375e+14 OP +W_concentration_at_point_113_____________________________________________ (f_nd_impurity_electrons13_113)_ 5.21731793646715438e+14 OP +W_concentration_at_point_114_____________________________________________ (f_nd_impurity_electrons13_114)_ 5.21510229887574688e+14 OP +W_concentration_at_point_115_____________________________________________ (f_nd_impurity_electrons13_115)_ 5.21286714024829188e+14 OP +W_concentration_at_point_116_____________________________________________ (f_nd_impurity_electrons13_116)_ 5.21061246058478938e+14 OP +W_concentration_at_point_117_____________________________________________ (f_nd_impurity_electrons13_117)_ 5.20833825988523812e+14 OP +W_concentration_at_point_118_____________________________________________ (f_nd_impurity_electrons13_118)_ 5.20604453814964125e+14 OP +W_concentration_at_point_119_____________________________________________ (f_nd_impurity_electrons13_119)_ 5.20373129537799500e+14 OP +W_concentration_at_point_120_____________________________________________ (f_nd_impurity_electrons13_120)_ 5.20139853157030188e+14 OP +W_concentration_at_point_121_____________________________________________ (f_nd_impurity_electrons13_121)_ 5.19904624672656125e+14 OP +W_concentration_at_point_122_____________________________________________ (f_nd_impurity_electrons13_122)_ 5.19667444084677250e+14 OP +W_concentration_at_point_123_____________________________________________ (f_nd_impurity_electrons13_123)_ 5.19428311393093562e+14 OP +W_concentration_at_point_124_____________________________________________ (f_nd_impurity_electrons13_124)_ 5.19187226597905250e+14 OP +W_concentration_at_point_125_____________________________________________ (f_nd_impurity_electrons13_125)_ 5.18944189699112000e+14 OP +W_concentration_at_point_126_____________________________________________ (f_nd_impurity_electrons13_126)_ 5.18699200696714062e+14 OP +W_concentration_at_point_127_____________________________________________ (f_nd_impurity_electrons13_127)_ 5.18452259590711438e+14 OP +W_concentration_at_point_128_____________________________________________ (f_nd_impurity_electrons13_128)_ 5.18203366381104062e+14 OP +W_concentration_at_point_129_____________________________________________ (f_nd_impurity_electrons13_129)_ 5.17952521067891812e+14 OP +W_concentration_at_point_130_____________________________________________ (f_nd_impurity_electrons13_130)_ 5.17699723651074812e+14 OP +W_concentration_at_point_131_____________________________________________ (f_nd_impurity_electrons13_131)_ 5.17444974130653125e+14 OP +W_concentration_at_point_132_____________________________________________ (f_nd_impurity_electrons13_132)_ 5.17188272506626562e+14 OP +W_concentration_at_point_133_____________________________________________ (f_nd_impurity_electrons13_133)_ 5.16929618778995312e+14 OP +W_concentration_at_point_134_____________________________________________ (f_nd_impurity_electrons13_134)_ 5.16669012947759312e+14 OP +W_concentration_at_point_135_____________________________________________ (f_nd_impurity_electrons13_135)_ 5.16406455012918438e+14 OP +W_concentration_at_point_136_____________________________________________ (f_nd_impurity_electrons13_136)_ 5.16141944974472938e+14 OP +W_concentration_at_point_137_____________________________________________ (f_nd_impurity_electrons13_137)_ 5.15875482832422562e+14 OP +W_concentration_at_point_138_____________________________________________ (f_nd_impurity_electrons13_138)_ 5.15607068586767500e+14 OP +W_concentration_at_point_139_____________________________________________ (f_nd_impurity_electrons13_139)_ 5.15336702237507625e+14 OP +W_concentration_at_point_140_____________________________________________ (f_nd_impurity_electrons13_140)_ 5.15064383784643000e+14 OP +W_concentration_at_point_141_____________________________________________ (f_nd_impurity_electrons13_141)_ 5.14790113228173688e+14 OP +W_concentration_at_point_142_____________________________________________ (f_nd_impurity_electrons13_142)_ 5.14513890568099500e+14 OP +W_concentration_at_point_143_____________________________________________ (f_nd_impurity_electrons13_143)_ 5.14235715804420562e+14 OP +W_concentration_at_point_144_____________________________________________ (f_nd_impurity_electrons13_144)_ 5.13955588937136938e+14 OP +W_concentration_at_point_145_____________________________________________ (f_nd_impurity_electrons13_145)_ 5.13673509966248562e+14 OP +W_concentration_at_point_146_____________________________________________ (f_nd_impurity_electrons13_146)_ 5.13389478891755312e+14 OP +W_concentration_at_point_147_____________________________________________ (f_nd_impurity_electrons13_147)_ 5.13103495713657375e+14 OP +W_concentration_at_point_148_____________________________________________ (f_nd_impurity_electrons13_148)_ 5.12815560431954562e+14 OP +W_concentration_at_point_149_____________________________________________ (f_nd_impurity_electrons13_149)_ 5.12525673046647062e+14 OP +W_concentration_at_point_150_____________________________________________ (f_nd_impurity_electrons13_150)_ 5.12233833557734812e+14 OP +W_concentration_at_point_151_____________________________________________ (f_nd_impurity_electrons13_151)_ 5.11940041965217750e+14 OP +W_concentration_at_point_152_____________________________________________ (f_nd_impurity_electrons13_152)_ 5.11644298269096000e+14 OP +W_concentration_at_point_153_____________________________________________ (f_nd_impurity_electrons13_153)_ 5.11346602469369500e+14 OP +W_concentration_at_point_154_____________________________________________ (f_nd_impurity_electrons13_154)_ 5.11046954566038125e+14 OP +W_concentration_at_point_155_____________________________________________ (f_nd_impurity_electrons13_155)_ 5.10745354559102062e+14 OP +W_concentration_at_point_156_____________________________________________ (f_nd_impurity_electrons13_156)_ 5.10441802448561125e+14 OP +W_concentration_at_point_157_____________________________________________ (f_nd_impurity_electrons13_157)_ 5.10136298234415562e+14 OP +W_concentration_at_point_158_____________________________________________ (f_nd_impurity_electrons13_158)_ 5.09828841916665250e+14 OP +W_concentration_at_point_159_____________________________________________ (f_nd_impurity_electrons13_159)_ 5.09519433495310062e+14 OP +W_concentration_at_point_160_____________________________________________ (f_nd_impurity_electrons13_160)_ 5.09208072970350125e+14 OP +W_concentration_at_point_161_____________________________________________ (f_nd_impurity_electrons13_161)_ 5.08894760341785500e+14 OP +W_concentration_at_point_162_____________________________________________ (f_nd_impurity_electrons13_162)_ 5.08579495609616000e+14 OP +W_concentration_at_point_163_____________________________________________ (f_nd_impurity_electrons13_163)_ 5.08262278773841875e+14 OP +W_concentration_at_point_164_____________________________________________ (f_nd_impurity_electrons13_164)_ 5.07943109834462875e+14 OP +W_concentration_at_point_165_____________________________________________ (f_nd_impurity_electrons13_165)_ 5.07621988791479188e+14 OP +W_concentration_at_point_166_____________________________________________ (f_nd_impurity_electrons13_166)_ 5.07298915644890688e+14 OP +W_concentration_at_point_167_____________________________________________ (f_nd_impurity_electrons13_167)_ 5.06973890394697438e+14 OP +W_concentration_at_point_168_____________________________________________ (f_nd_impurity_electrons13_168)_ 5.06646913040899500e+14 OP +W_concentration_at_point_169_____________________________________________ (f_nd_impurity_electrons13_169)_ 5.06317983583496625e+14 OP +W_concentration_at_point_170_____________________________________________ (f_nd_impurity_electrons13_170)_ 5.05987102022489062e+14 OP +W_concentration_at_point_171_____________________________________________ (f_nd_impurity_electrons13_171)_ 5.05654268357876812e+14 OP +W_concentration_at_point_172_____________________________________________ (f_nd_impurity_electrons13_172)_ 5.05319482589659688e+14 OP +W_concentration_at_point_173_____________________________________________ (f_nd_impurity_electrons13_173)_ 5.04982744717837875e+14 OP +W_concentration_at_point_174_____________________________________________ (f_nd_impurity_electrons13_174)_ 5.04644054742411250e+14 OP +W_concentration_at_point_175_____________________________________________ (f_nd_impurity_electrons13_175)_ 5.04303412663379938e+14 OP +W_concentration_at_point_176_____________________________________________ (f_nd_impurity_electrons13_176)_ 5.03960818480743750e+14 OP +W_concentration_at_point_177_____________________________________________ (f_nd_impurity_electrons13_177)_ 5.03616272194502875e+14 OP +W_concentration_at_point_178_____________________________________________ (f_nd_impurity_electrons13_178)_ 5.03269773804657250e+14 OP +W_concentration_at_point_179_____________________________________________ (f_nd_impurity_electrons13_179)_ 5.02921323311206750e+14 OP +W_concentration_at_point_180_____________________________________________ (f_nd_impurity_electrons13_180)_ 5.02570920714151562e+14 OP +W_concentration_at_point_181_____________________________________________ (f_nd_impurity_electrons13_181)_ 5.02218566013491625e+14 OP +W_concentration_at_point_182_____________________________________________ (f_nd_impurity_electrons13_182)_ 5.01864259209226938e+14 OP +W_concentration_at_point_183_____________________________________________ (f_nd_impurity_electrons13_183)_ 5.01508000301357438e+14 OP +W_concentration_at_point_184_____________________________________________ (f_nd_impurity_electrons13_184)_ 5.01149789289883188e+14 OP +W_concentration_at_point_185_____________________________________________ (f_nd_impurity_electrons13_185)_ 5.00789626174804188e+14 OP +W_concentration_at_point_186_____________________________________________ (f_nd_impurity_electrons13_186)_ 5.00427510956120438e+14 OP +W_concentration_at_point_187_____________________________________________ (f_nd_impurity_electrons13_187)_ 5.00063443633831875e+14 OP +W_concentration_at_point_188_____________________________________________ (f_nd_impurity_electrons13_188)_ 4.99697424207938562e+14 OP +W_concentration_at_point_189_____________________________________________ (f_nd_impurity_electrons13_189)_ 4.99329452678440500e+14 OP +W_concentration_at_point_190_____________________________________________ (f_nd_impurity_electrons13_190)_ 4.98959529045337688e+14 OP +W_concentration_at_point_191_____________________________________________ (f_nd_impurity_electrons13_191)_ 4.98587653308630125e+14 OP +W_concentration_at_point_192_____________________________________________ (f_nd_impurity_electrons13_192)_ 4.98213825468317750e+14 OP +W_concentration_at_point_193_____________________________________________ (f_nd_impurity_electrons13_193)_ 4.97838045524400562e+14 OP +W_concentration_at_point_194_____________________________________________ (f_nd_impurity_electrons13_194)_ 4.97460313476878688e+14 OP +W_concentration_at_point_195_____________________________________________ (f_nd_impurity_electrons13_195)_ 4.97080629325752062e+14 OP +W_concentration_at_point_196_____________________________________________ (f_nd_impurity_electrons13_196)_ 4.96698993071020625e+14 OP +W_concentration_at_point_197_____________________________________________ (f_nd_impurity_electrons13_197)_ 4.96315404712684438e+14 OP +W_concentration_at_point_198_____________________________________________ (f_nd_impurity_electrons13_198)_ 4.95929864250743500e+14 OP +W_concentration_at_point_199_____________________________________________ (f_nd_impurity_electrons13_199)_ 4.95542371685197812e+14 OP +W_concentration_at_point_200_____________________________________________ (f_nd_impurity_electrons13_200)_ 4.95152927016047312e+14 OP +W_concentration_at_point_201_____________________________________________ (f_nd_impurity_electrons13_201)_ 4.94761530243292062e+14 OP +W_concentration_at_point_202_____________________________________________ (f_nd_impurity_electrons13_202)_ 4.94368181366932062e+14 OP +W_concentration_at_point_203_____________________________________________ (f_nd_impurity_electrons13_203)_ 4.93972880386967250e+14 OP +W_concentration_at_point_204_____________________________________________ (f_nd_impurity_electrons13_204)_ 4.93575627303397812e+14 OP +W_concentration_at_point_205_____________________________________________ (f_nd_impurity_electrons13_205)_ 4.93176422116223500e+14 OP +W_concentration_at_point_206_____________________________________________ (f_nd_impurity_electrons13_206)_ 4.92775264825444375e+14 OP +W_concentration_at_point_207_____________________________________________ (f_nd_impurity_electrons13_207)_ 4.92372155431060625e+14 OP +W_concentration_at_point_208_____________________________________________ (f_nd_impurity_electrons13_208)_ 4.91967093933072000e+14 OP +W_concentration_at_point_209_____________________________________________ (f_nd_impurity_electrons13_209)_ 4.91560080331478688e+14 OP +W_concentration_at_point_210_____________________________________________ (f_nd_impurity_electrons13_210)_ 4.91151114626280500e+14 OP +W_concentration_at_point_211_____________________________________________ (f_nd_impurity_electrons13_211)_ 4.90740196817477688e+14 OP +W_concentration_at_point_212_____________________________________________ (f_nd_impurity_electrons13_212)_ 4.90327326905070000e+14 OP +W_concentration_at_point_213_____________________________________________ (f_nd_impurity_electrons13_213)_ 4.89912504889057625e+14 OP +W_concentration_at_point_214_____________________________________________ (f_nd_impurity_electrons13_214)_ 4.89495730769440375e+14 OP +W_concentration_at_point_215_____________________________________________ (f_nd_impurity_electrons13_215)_ 4.89077004546218500e+14 OP +W_concentration_at_point_216_____________________________________________ (f_nd_impurity_electrons13_216)_ 4.88656326219391812e+14 OP +W_concentration_at_point_217_____________________________________________ (f_nd_impurity_electrons13_217)_ 4.88233695788960250e+14 OP +W_concentration_at_point_218_____________________________________________ (f_nd_impurity_electrons13_218)_ 4.87809113254924062e+14 OP +W_concentration_at_point_219_____________________________________________ (f_nd_impurity_electrons13_219)_ 4.87382578617283062e+14 OP +W_concentration_at_point_220_____________________________________________ (f_nd_impurity_electrons13_220)_ 4.86954091876037312e+14 OP +W_concentration_at_point_221_____________________________________________ (f_nd_impurity_electrons13_221)_ 4.86523653031186812e+14 OP +W_concentration_at_point_222_____________________________________________ (f_nd_impurity_electrons13_222)_ 4.86091262082731500e+14 OP +W_concentration_at_point_223_____________________________________________ (f_nd_impurity_electrons13_223)_ 4.85656919030671500e+14 OP +W_concentration_at_point_224_____________________________________________ (f_nd_impurity_electrons13_224)_ 4.85220623875006688e+14 OP +W_concentration_at_point_225_____________________________________________ (f_nd_impurity_electrons13_225)_ 4.84782376615737062e+14 OP +W_concentration_at_point_226_____________________________________________ (f_nd_impurity_electrons13_226)_ 4.84342177252862750e+14 OP +W_concentration_at_point_227_____________________________________________ (f_nd_impurity_electrons13_227)_ 4.83900025786383625e+14 OP +W_concentration_at_point_228_____________________________________________ (f_nd_impurity_electrons13_228)_ 4.83455922216299750e+14 OP +W_concentration_at_point_229_____________________________________________ (f_nd_impurity_electrons13_229)_ 4.83009866542611062e+14 OP +W_concentration_at_point_230_____________________________________________ (f_nd_impurity_electrons13_230)_ 4.82561858765317688e+14 OP +W_concentration_at_point_231_____________________________________________ (f_nd_impurity_electrons13_231)_ 4.82111898884419438e+14 OP +W_concentration_at_point_232_____________________________________________ (f_nd_impurity_electrons13_232)_ 4.81659986899916562e+14 OP +W_concentration_at_point_233_____________________________________________ (f_nd_impurity_electrons13_233)_ 4.81206122811808875e+14 OP +W_concentration_at_point_234_____________________________________________ (f_nd_impurity_electrons13_234)_ 4.80750306620096375e+14 OP +W_concentration_at_point_235_____________________________________________ (f_nd_impurity_electrons13_235)_ 4.80292538324779188e+14 OP +W_concentration_at_point_236_____________________________________________ (f_nd_impurity_electrons13_236)_ 4.79832817925857250e+14 OP +W_concentration_at_point_237_____________________________________________ (f_nd_impurity_electrons13_237)_ 4.79371145423330438e+14 OP +W_concentration_at_point_238_____________________________________________ (f_nd_impurity_electrons13_238)_ 4.78907520817199000e+14 OP +W_concentration_at_point_239_____________________________________________ (f_nd_impurity_electrons13_239)_ 4.78441944107462688e+14 OP +W_concentration_at_point_240_____________________________________________ (f_nd_impurity_electrons13_240)_ 4.77974415294121625e+14 OP +W_concentration_at_point_241_____________________________________________ (f_nd_impurity_electrons13_241)_ 4.77504934377175812e+14 OP +W_concentration_at_point_242_____________________________________________ (f_nd_impurity_electrons13_242)_ 4.77033501356625250e+14 OP +W_concentration_at_point_243_____________________________________________ (f_nd_impurity_electrons13_243)_ 4.76560116232469938e+14 OP +W_concentration_at_point_244_____________________________________________ (f_nd_impurity_electrons13_244)_ 4.76084779004709812e+14 OP +W_concentration_at_point_245_____________________________________________ (f_nd_impurity_electrons13_245)_ 4.75607489673344875e+14 OP +W_concentration_at_point_246_____________________________________________ (f_nd_impurity_electrons13_246)_ 4.75128248238375250e+14 OP +W_concentration_at_point_247_____________________________________________ (f_nd_impurity_electrons13_247)_ 4.74647054699800875e+14 OP +W_concentration_at_point_248_____________________________________________ (f_nd_impurity_electrons13_248)_ 4.74163909057621750e+14 OP +W_concentration_at_point_249_____________________________________________ (f_nd_impurity_electrons13_249)_ 4.73678811311837812e+14 OP +W_concentration_at_point_250_____________________________________________ (f_nd_impurity_electrons13_250)_ 4.73191761462449125e+14 OP +W_concentration_at_point_251_____________________________________________ (f_nd_impurity_electrons13_251)_ 4.72702759509455625e+14 OP +W_concentration_at_point_252_____________________________________________ (f_nd_impurity_electrons13_252)_ 4.72211805452857438e+14 OP +W_concentration_at_point_253_____________________________________________ (f_nd_impurity_electrons13_253)_ 4.71718899292654438e+14 OP +W_concentration_at_point_254_____________________________________________ (f_nd_impurity_electrons13_254)_ 4.71224041028846750e+14 OP +W_concentration_at_point_255_____________________________________________ (f_nd_impurity_electrons13_255)_ 4.70727230661434188e+14 OP +W_concentration_at_point_256_____________________________________________ (f_nd_impurity_electrons13_256)_ 4.70228468190416938e+14 OP +W_concentration_at_point_257_____________________________________________ (f_nd_impurity_electrons13_257)_ 4.69727753615794875e+14 OP +W_concentration_at_point_258_____________________________________________ (f_nd_impurity_electrons13_258)_ 4.69225086937568062e+14 OP +W_concentration_at_point_259_____________________________________________ (f_nd_impurity_electrons13_259)_ 4.68720468155736500e+14 OP +W_concentration_at_point_260_____________________________________________ (f_nd_impurity_electrons13_260)_ 4.68213897270300250e+14 OP +W_concentration_at_point_261_____________________________________________ (f_nd_impurity_electrons13_261)_ 4.67705374281259062e+14 OP +W_concentration_at_point_262_____________________________________________ (f_nd_impurity_electrons13_262)_ 4.67194899188613250e+14 OP +W_concentration_at_point_263_____________________________________________ (f_nd_impurity_electrons13_263)_ 4.66682471992362562e+14 OP +W_concentration_at_point_264_____________________________________________ (f_nd_impurity_electrons13_264)_ 4.66168092692507250e+14 OP +W_concentration_at_point_265_____________________________________________ (f_nd_impurity_electrons13_265)_ 4.65651761289047062e+14 OP +W_concentration_at_point_266_____________________________________________ (f_nd_impurity_electrons13_266)_ 4.65133477781982125e+14 OP +W_concentration_at_point_267_____________________________________________ (f_nd_impurity_electrons13_267)_ 4.64613242171312438e+14 OP +W_concentration_at_point_268_____________________________________________ (f_nd_impurity_electrons13_268)_ 4.64091054457038000e+14 OP +W_concentration_at_point_269_____________________________________________ (f_nd_impurity_electrons13_269)_ 4.63566914639158750e+14 OP +W_concentration_at_point_270_____________________________________________ (f_nd_impurity_electrons13_270)_ 4.63040822717674812e+14 OP +W_concentration_at_point_271_____________________________________________ (f_nd_impurity_electrons13_271)_ 4.62512778692586062e+14 OP +W_concentration_at_point_272_____________________________________________ (f_nd_impurity_electrons13_272)_ 4.61982782563892562e+14 OP +W_concentration_at_point_273_____________________________________________ (f_nd_impurity_electrons13_273)_ 4.61450834331594312e+14 OP +W_concentration_at_point_274_____________________________________________ (f_nd_impurity_electrons13_274)_ 4.60916933995691250e+14 OP +W_concentration_at_point_275_____________________________________________ (f_nd_impurity_electrons13_275)_ 4.60381081556183500e+14 OP +W_concentration_at_point_276_____________________________________________ (f_nd_impurity_electrons13_276)_ 4.59843277013070938e+14 OP +W_concentration_at_point_277_____________________________________________ (f_nd_impurity_electrons13_277)_ 4.59303520366353562e+14 OP +W_concentration_at_point_278_____________________________________________ (f_nd_impurity_electrons13_278)_ 4.58761811616031500e+14 OP +W_concentration_at_point_279_____________________________________________ (f_nd_impurity_electrons13_279)_ 4.58218150762104625e+14 OP +W_concentration_at_point_280_____________________________________________ (f_nd_impurity_electrons13_280)_ 4.57672537804573062e+14 OP +W_concentration_at_point_281_____________________________________________ (f_nd_impurity_electrons13_281)_ 4.57124972743436625e+14 OP +W_concentration_at_point_282_____________________________________________ (f_nd_impurity_electrons13_282)_ 4.56575455578695500e+14 OP +W_concentration_at_point_283_____________________________________________ (f_nd_impurity_electrons13_283)_ 4.56023986310349688e+14 OP +W_concentration_at_point_284_____________________________________________ (f_nd_impurity_electrons13_284)_ 4.55470564938398938e+14 OP +W_concentration_at_point_285_____________________________________________ (f_nd_impurity_electrons13_285)_ 4.54915191462843562e+14 OP +W_concentration_at_point_286_____________________________________________ (f_nd_impurity_electrons13_286)_ 4.54357865883683250e+14 OP +W_concentration_at_point_287_____________________________________________ (f_nd_impurity_electrons13_287)_ 4.53798588200918312e+14 OP +W_concentration_at_point_288_____________________________________________ (f_nd_impurity_electrons13_288)_ 4.53237358414548625e+14 OP +W_concentration_at_point_289_____________________________________________ (f_nd_impurity_electrons13_289)_ 4.52674176524574125e+14 OP +W_concentration_at_point_290_____________________________________________ (f_nd_impurity_electrons13_290)_ 4.52109042530994812e+14 OP +W_concentration_at_point_291_____________________________________________ (f_nd_impurity_electrons13_291)_ 4.51541956433810812e+14 OP +W_concentration_at_point_292_____________________________________________ (f_nd_impurity_electrons13_292)_ 4.50972918233022000e+14 OP +W_concentration_at_point_293_____________________________________________ (f_nd_impurity_electrons13_293)_ 4.50401927928628438e+14 OP +W_concentration_at_point_294_____________________________________________ (f_nd_impurity_electrons13_294)_ 4.49828985520630188e+14 OP +W_concentration_at_point_295_____________________________________________ (f_nd_impurity_electrons13_295)_ 4.49254091009027062e+14 OP +W_concentration_at_point_296_____________________________________________ (f_nd_impurity_electrons13_296)_ 4.48677244393819188e+14 OP +W_concentration_at_point_297_____________________________________________ (f_nd_impurity_electrons13_297)_ 4.48098445675006625e+14 OP +W_concentration_at_point_298_____________________________________________ (f_nd_impurity_electrons13_298)_ 4.47517694852589188e+14 OP +W_concentration_at_point_299_____________________________________________ (f_nd_impurity_electrons13_299)_ 4.46934991926567125e+14 OP +W_concentration_at_point_300_____________________________________________ (f_nd_impurity_electrons13_300)_ 4.46350336896940125e+14 OP +W_concentration_at_point_301_____________________________________________ (f_nd_impurity_electrons13_301)_ 4.45763729763708500e+14 OP +W_concentration_at_point_302_____________________________________________ (f_nd_impurity_electrons13_302)_ 4.45175170526872062e+14 OP +W_concentration_at_point_303_____________________________________________ (f_nd_impurity_electrons13_303)_ 4.44584659186430875e+14 OP +W_concentration_at_point_304_____________________________________________ (f_nd_impurity_electrons13_304)_ 4.43992195742384875e+14 OP +W_concentration_at_point_305_____________________________________________ (f_nd_impurity_electrons13_305)_ 4.43397780194734188e+14 OP +W_concentration_at_point_306_____________________________________________ (f_nd_impurity_electrons13_306)_ 4.42801412543478688e+14 OP +W_concentration_at_point_307_____________________________________________ (f_nd_impurity_electrons13_307)_ 4.42203092788618500e+14 OP +W_concentration_at_point_308_____________________________________________ (f_nd_impurity_electrons13_308)_ 4.41602820930153438e+14 OP +W_concentration_at_point_309_____________________________________________ (f_nd_impurity_electrons13_309)_ 4.41000596968083625e+14 OP +W_concentration_at_point_310_____________________________________________ (f_nd_impurity_electrons13_310)_ 4.40396420902409062e+14 OP +W_concentration_at_point_311_____________________________________________ (f_nd_impurity_electrons13_311)_ 4.39790292733129812e+14 OP +W_concentration_at_point_312_____________________________________________ (f_nd_impurity_electrons13_312)_ 4.39182212460245688e+14 OP +W_concentration_at_point_313_____________________________________________ (f_nd_impurity_electrons13_313)_ 4.38572180083756938e+14 OP +W_concentration_at_point_314_____________________________________________ (f_nd_impurity_electrons13_314)_ 4.37960195603663312e+14 OP +W_concentration_at_point_315_____________________________________________ (f_nd_impurity_electrons13_315)_ 4.37346259019964938e+14 OP +W_concentration_at_point_316_____________________________________________ (f_nd_impurity_electrons13_316)_ 4.36730370332661812e+14 OP +W_concentration_at_point_317_____________________________________________ (f_nd_impurity_electrons13_317)_ 4.36112529541753938e+14 OP +W_concentration_at_point_318_____________________________________________ (f_nd_impurity_electrons13_318)_ 4.35492736647241188e+14 OP +W_concentration_at_point_319_____________________________________________ (f_nd_impurity_electrons13_319)_ 4.34870991649123812e+14 OP +W_concentration_at_point_320_____________________________________________ (f_nd_impurity_electrons13_320)_ 4.34247294547401625e+14 OP +W_concentration_at_point_321_____________________________________________ (f_nd_impurity_electrons13_321)_ 4.33621645342074688e+14 OP +W_concentration_at_point_322_____________________________________________ (f_nd_impurity_electrons13_322)_ 4.32994044033142875e+14 OP +W_concentration_at_point_323_____________________________________________ (f_nd_impurity_electrons13_323)_ 4.32364490620606438e+14 OP +W_concentration_at_point_324_____________________________________________ (f_nd_impurity_electrons13_324)_ 4.31732985104465188e+14 OP +W_concentration_at_point_325_____________________________________________ (f_nd_impurity_electrons13_325)_ 4.31099527484719250e+14 OP +W_concentration_at_point_326_____________________________________________ (f_nd_impurity_electrons13_326)_ 4.30464117761368438e+14 OP +W_concentration_at_point_327_____________________________________________ (f_nd_impurity_electrons13_327)_ 4.29826755934412812e+14 OP +W_concentration_at_point_328_____________________________________________ (f_nd_impurity_electrons13_328)_ 4.29187442003852500e+14 OP +W_concentration_at_point_329_____________________________________________ (f_nd_impurity_electrons13_329)_ 4.28546175969687500e+14 OP +W_concentration_at_point_330_____________________________________________ (f_nd_impurity_electrons13_330)_ 4.27902957831917625e+14 OP +W_concentration_at_point_331_____________________________________________ (f_nd_impurity_electrons13_331)_ 4.27257787590543062e+14 OP +W_concentration_at_point_332_____________________________________________ (f_nd_impurity_electrons13_332)_ 4.26610665245563625e+14 OP +W_concentration_at_point_333_____________________________________________ (f_nd_impurity_electrons13_333)_ 4.25961590796979625e+14 OP +W_concentration_at_point_334_____________________________________________ (f_nd_impurity_electrons13_334)_ 4.25310564244790688e+14 OP +W_concentration_at_point_335_____________________________________________ (f_nd_impurity_electrons13_335)_ 4.24657585588997062e+14 OP +W_concentration_at_point_336_____________________________________________ (f_nd_impurity_electrons13_336)_ 4.24002654829598688e+14 OP +W_concentration_at_point_337_____________________________________________ (f_nd_impurity_electrons13_337)_ 4.23345771966595438e+14 OP +W_concentration_at_point_338_____________________________________________ (f_nd_impurity_electrons13_338)_ 4.22686936999987500e+14 OP +W_concentration_at_point_339_____________________________________________ (f_nd_impurity_electrons13_339)_ 4.22026149929774812e+14 OP +W_concentration_at_point_340_____________________________________________ (f_nd_impurity_electrons13_340)_ 4.21363410755957375e+14 OP +W_concentration_at_point_341_____________________________________________ (f_nd_impurity_electrons13_341)_ 4.20698719478535062e+14 OP +W_concentration_at_point_342_____________________________________________ (f_nd_impurity_electrons13_342)_ 4.20032076097508125e+14 OP +W_concentration_at_point_343_____________________________________________ (f_nd_impurity_electrons13_343)_ 4.19363480612876312e+14 OP +W_concentration_at_point_344_____________________________________________ (f_nd_impurity_electrons13_344)_ 4.18692933024639812e+14 OP +W_concentration_at_point_345_____________________________________________ (f_nd_impurity_electrons13_345)_ 4.18020433332798438e+14 OP +W_concentration_at_point_346_____________________________________________ (f_nd_impurity_electrons13_346)_ 4.17345981537352438e+14 OP +W_concentration_at_point_347_____________________________________________ (f_nd_impurity_electrons13_347)_ 4.16669577638301625e+14 OP +W_concentration_at_point_348_____________________________________________ (f_nd_impurity_electrons13_348)_ 4.15991221635646062e+14 OP +W_concentration_at_point_349_____________________________________________ (f_nd_impurity_electrons13_349)_ 4.15310913529385625e+14 OP +W_concentration_at_point_350_____________________________________________ (f_nd_impurity_electrons13_350)_ 4.14628653319520562e+14 OP +W_concentration_at_point_351_____________________________________________ (f_nd_impurity_electrons13_351)_ 4.13944441006050625e+14 OP +W_concentration_at_point_352_____________________________________________ (f_nd_impurity_electrons13_352)_ 4.13258276588976062e+14 OP +W_concentration_at_point_353_____________________________________________ (f_nd_impurity_electrons13_353)_ 4.12570160068296562e+14 OP +W_concentration_at_point_354_____________________________________________ (f_nd_impurity_electrons13_354)_ 4.11880091444012438e+14 OP +W_concentration_at_point_355_____________________________________________ (f_nd_impurity_electrons13_355)_ 4.11188070716123500e+14 OP +W_concentration_at_point_356_____________________________________________ (f_nd_impurity_electrons13_356)_ 4.10494097884629750e+14 OP +W_concentration_at_point_357_____________________________________________ (f_nd_impurity_electrons13_357)_ 4.09798172949531312e+14 OP +W_concentration_at_point_358_____________________________________________ (f_nd_impurity_electrons13_358)_ 4.09100295910828125e+14 OP +W_concentration_at_point_359_____________________________________________ (f_nd_impurity_electrons13_359)_ 4.08400466768520125e+14 OP +W_concentration_at_point_360_____________________________________________ (f_nd_impurity_electrons13_360)_ 4.07698685522607312e+14 OP +W_concentration_at_point_361_____________________________________________ (f_nd_impurity_electrons13_361)_ 4.06994952173089812e+14 OP +W_concentration_at_point_362_____________________________________________ (f_nd_impurity_electrons13_362)_ 4.06289266719967500e+14 OP +W_concentration_at_point_363_____________________________________________ (f_nd_impurity_electrons13_363)_ 4.05581629163240438e+14 OP +W_concentration_at_point_364_____________________________________________ (f_nd_impurity_electrons13_364)_ 4.04872039502908625e+14 OP +W_concentration_at_point_365_____________________________________________ (f_nd_impurity_electrons13_365)_ 4.04160497738972062e+14 OP +W_concentration_at_point_366_____________________________________________ (f_nd_impurity_electrons13_366)_ 4.03447003871430750e+14 OP +W_concentration_at_point_367_____________________________________________ (f_nd_impurity_electrons13_367)_ 4.02731557900284562e+14 OP +W_concentration_at_point_368_____________________________________________ (f_nd_impurity_electrons13_368)_ 4.02014159825533688e+14 OP +W_concentration_at_point_369_____________________________________________ (f_nd_impurity_electrons13_369)_ 4.01294809647178062e+14 OP +W_concentration_at_point_370_____________________________________________ (f_nd_impurity_electrons13_370)_ 4.00573507365217688e+14 OP +W_concentration_at_point_371_____________________________________________ (f_nd_impurity_electrons13_371)_ 3.99850252979652500e+14 OP +W_concentration_at_point_372_____________________________________________ (f_nd_impurity_electrons13_372)_ 3.99125046490482625e+14 OP +W_concentration_at_point_373_____________________________________________ (f_nd_impurity_electrons13_373)_ 3.98397887897707812e+14 OP +W_concentration_at_point_374_____________________________________________ (f_nd_impurity_electrons13_374)_ 3.97668777201328438e+14 OP +W_concentration_at_point_375_____________________________________________ (f_nd_impurity_electrons13_375)_ 3.96937714401344188e+14 OP +W_concentration_at_point_376_____________________________________________ (f_nd_impurity_electrons13_376)_ 3.96204699497755250e+14 OP +W_concentration_at_point_377_____________________________________________ (f_nd_impurity_electrons13_377)_ 3.95469732490561500e+14 OP +W_concentration_at_point_378_____________________________________________ (f_nd_impurity_electrons13_378)_ 3.94732813379762938e+14 OP +W_concentration_at_point_379_____________________________________________ (f_nd_impurity_electrons13_379)_ 3.93993942165359688e+14 OP +W_concentration_at_point_380_____________________________________________ (f_nd_impurity_electrons13_380)_ 3.93253118847351625e+14 OP +W_concentration_at_point_381_____________________________________________ (f_nd_impurity_electrons13_381)_ 3.92510343425738812e+14 OP +W_concentration_at_point_382_____________________________________________ (f_nd_impurity_electrons13_382)_ 3.91765615900521188e+14 OP +W_concentration_at_point_383_____________________________________________ (f_nd_impurity_electrons13_383)_ 3.91018936271698875e+14 OP +W_concentration_at_point_384_____________________________________________ (f_nd_impurity_electrons13_384)_ 3.90270304539271750e+14 OP +W_concentration_at_point_385_____________________________________________ (f_nd_impurity_electrons13_385)_ 3.89519720703239875e+14 OP +W_concentration_at_point_386_____________________________________________ (f_nd_impurity_electrons13_386)_ 3.88767184763603312e+14 OP +W_concentration_at_point_387_____________________________________________ (f_nd_impurity_electrons13_387)_ 3.88012696720361938e+14 OP +W_concentration_at_point_388_____________________________________________ (f_nd_impurity_electrons13_388)_ 3.87256256573515750e+14 OP +W_concentration_at_point_389_____________________________________________ (f_nd_impurity_electrons13_389)_ 3.86497864323064812e+14 OP +W_concentration_at_point_390_____________________________________________ (f_nd_impurity_electrons13_390)_ 3.85737519969009125e+14 OP +W_concentration_at_point_391_____________________________________________ (f_nd_impurity_electrons13_391)_ 3.84975223511348688e+14 OP +W_concentration_at_point_392_____________________________________________ (f_nd_impurity_electrons13_392)_ 3.84210974950083438e+14 OP +W_concentration_at_point_393_____________________________________________ (f_nd_impurity_electrons13_393)_ 3.83444774285213500e+14 OP +W_concentration_at_point_394_____________________________________________ (f_nd_impurity_electrons13_394)_ 3.82676621516738688e+14 OP +W_concentration_at_point_395_____________________________________________ (f_nd_impurity_electrons13_395)_ 3.81906516644659250e+14 OP +W_concentration_at_point_396_____________________________________________ (f_nd_impurity_electrons13_396)_ 3.81134459668974938e+14 OP +W_concentration_at_point_397_____________________________________________ (f_nd_impurity_electrons13_397)_ 3.80360450589685875e+14 OP +W_concentration_at_point_398_____________________________________________ (f_nd_impurity_electrons13_398)_ 3.79584489406792062e+14 OP +W_concentration_at_point_399_____________________________________________ (f_nd_impurity_electrons13_399)_ 3.78806576120293500e+14 OP +W_concentration_at_point_400_____________________________________________ (f_nd_impurity_electrons13_400)_ 3.78026710730190125e+14 OP +W_concentration_at_point_401_____________________________________________ (f_nd_impurity_electrons13_401)_ 3.77244893236482062e+14 OP +W_concentration_at_point_402_____________________________________________ (f_nd_impurity_electrons13_402)_ 3.76461123639169188e+14 OP +W_concentration_at_point_403_____________________________________________ (f_nd_impurity_electrons13_403)_ 3.75675401938251625e+14 OP +W_concentration_at_point_404_____________________________________________ (f_nd_impurity_electrons13_404)_ 3.74887728133729188e+14 OP +W_concentration_at_point_405_____________________________________________ (f_nd_impurity_electrons13_405)_ 3.74098102225602000e+14 OP +W_concentration_at_point_406_____________________________________________ (f_nd_impurity_electrons13_406)_ 3.73306524213870125e+14 OP +W_concentration_at_point_407_____________________________________________ (f_nd_impurity_electrons13_407)_ 3.72512994098533500e+14 OP +W_concentration_at_point_408_____________________________________________ (f_nd_impurity_electrons13_408)_ 3.71717511879592062e+14 OP +W_concentration_at_point_409_____________________________________________ (f_nd_impurity_electrons13_409)_ 3.70920077557045875e+14 OP +W_concentration_at_point_410_____________________________________________ (f_nd_impurity_electrons13_410)_ 3.70120691130894875e+14 OP +W_concentration_at_point_411_____________________________________________ (f_nd_impurity_electrons13_411)_ 3.69319352601139125e+14 OP +W_concentration_at_point_412_____________________________________________ (f_nd_impurity_electrons13_412)_ 3.68516061967778562e+14 OP +W_concentration_at_point_413_____________________________________________ (f_nd_impurity_electrons13_413)_ 3.67710819230813312e+14 OP +W_concentration_at_point_414_____________________________________________ (f_nd_impurity_electrons13_414)_ 3.66903624390243250e+14 OP +W_concentration_at_point_415_____________________________________________ (f_nd_impurity_electrons13_415)_ 3.66094477446068500e+14 OP +W_concentration_at_point_416_____________________________________________ (f_nd_impurity_electrons13_416)_ 3.65283378398288938e+14 OP +W_concentration_at_point_417_____________________________________________ (f_nd_impurity_electrons13_417)_ 3.64470327246904625e+14 OP +W_concentration_at_point_418_____________________________________________ (f_nd_impurity_electrons13_418)_ 3.63655323991915500e+14 OP +W_concentration_at_point_419_____________________________________________ (f_nd_impurity_electrons13_419)_ 3.62838368633321688e+14 OP +W_concentration_at_point_420_____________________________________________ (f_nd_impurity_electrons13_420)_ 3.62019461171123000e+14 OP +W_concentration_at_point_421_____________________________________________ (f_nd_impurity_electrons13_421)_ 3.61198601605319688e+14 OP +W_concentration_at_point_422_____________________________________________ (f_nd_impurity_electrons13_422)_ 3.60375789935911500e+14 OP +W_concentration_at_point_423_____________________________________________ (f_nd_impurity_electrons13_423)_ 3.59551026162898625e+14 OP +W_concentration_at_point_424_____________________________________________ (f_nd_impurity_electrons13_424)_ 3.58724310286280875e+14 OP +W_concentration_at_point_425_____________________________________________ (f_nd_impurity_electrons13_425)_ 3.57895642306058500e+14 OP +W_concentration_at_point_426_____________________________________________ (f_nd_impurity_electrons13_426)_ 3.57065022222231312e+14 OP +W_concentration_at_point_427_____________________________________________ (f_nd_impurity_electrons13_427)_ 3.56232450034799312e+14 OP +W_concentration_at_point_428_____________________________________________ (f_nd_impurity_electrons13_428)_ 3.55397925743762625e+14 OP +W_concentration_at_point_429_____________________________________________ (f_nd_impurity_electrons13_429)_ 3.54561449349121125e+14 OP +W_concentration_at_point_430_____________________________________________ (f_nd_impurity_electrons13_430)_ 3.53723020850874875e+14 OP +W_concentration_at_point_431_____________________________________________ (f_nd_impurity_electrons13_431)_ 3.52882640249023812e+14 OP +W_concentration_at_point_432_____________________________________________ (f_nd_impurity_electrons13_432)_ 3.52040307543568062e+14 OP +W_concentration_at_point_433_____________________________________________ (f_nd_impurity_electrons13_433)_ 3.51196022734507438e+14 OP +W_concentration_at_point_434_____________________________________________ (f_nd_impurity_electrons13_434)_ 3.50349785821842188e+14 OP +W_concentration_at_point_435_____________________________________________ (f_nd_impurity_electrons13_435)_ 3.49501596805572062e+14 OP +W_concentration_at_point_436_____________________________________________ (f_nd_impurity_electrons13_436)_ 3.48651455685697250e+14 OP +W_concentration_at_point_437_____________________________________________ (f_nd_impurity_electrons13_437)_ 3.47799362462217625e+14 OP +W_concentration_at_point_438_____________________________________________ (f_nd_impurity_electrons13_438)_ 3.46945317135133250e+14 OP +W_concentration_at_point_439_____________________________________________ (f_nd_impurity_electrons13_439)_ 3.46089319704444125e+14 OP +W_concentration_at_point_440_____________________________________________ (f_nd_impurity_electrons13_440)_ 3.45231370170150188e+14 OP +W_concentration_at_point_441_____________________________________________ (f_nd_impurity_electrons13_441)_ 3.44371468532251500e+14 OP +W_concentration_at_point_442_____________________________________________ (f_nd_impurity_electrons13_442)_ 3.43509614790748125e+14 OP +W_concentration_at_point_443_____________________________________________ (f_nd_impurity_electrons13_443)_ 3.42645808945639875e+14 OP +W_concentration_at_point_444_____________________________________________ (f_nd_impurity_electrons13_444)_ 3.41780050996926938e+14 OP +W_concentration_at_point_445_____________________________________________ (f_nd_impurity_electrons13_445)_ 3.40912340944609188e+14 OP +W_concentration_at_point_446_____________________________________________ (f_nd_impurity_electrons13_446)_ 3.40042678788686688e+14 OP +W_concentration_at_point_447_____________________________________________ (f_nd_impurity_electrons13_447)_ 3.39171064529159438e+14 OP +W_concentration_at_point_448_____________________________________________ (f_nd_impurity_electrons13_448)_ 3.38297498166027438e+14 OP +W_concentration_at_point_449_____________________________________________ (f_nd_impurity_electrons13_449)_ 3.37421979699290625e+14 OP +W_concentration_at_point_450_____________________________________________ (f_nd_impurity_electrons13_450)_ 3.36544509128949062e+14 OP +W_concentration_at_point_451_____________________________________________ (f_nd_impurity_electrons13_451)_ 3.35665086455002812e+14 OP +W_concentration_at_point_452_____________________________________________ (f_nd_impurity_electrons13_452)_ 3.34783711677451750e+14 OP +W_concentration_at_point_453_____________________________________________ (f_nd_impurity_electrons13_453)_ 3.33900384796295875e+14 OP +W_concentration_at_point_454_____________________________________________ (f_nd_impurity_electrons13_454)_ 3.33015105811535312e+14 OP +W_concentration_at_point_455_____________________________________________ (f_nd_impurity_electrons13_455)_ 3.32127874723169875e+14 OP +W_concentration_at_point_456_____________________________________________ (f_nd_impurity_electrons13_456)_ 3.31238691531199812e+14 OP +W_concentration_at_point_457_____________________________________________ (f_nd_impurity_electrons13_457)_ 3.30347556235624875e+14 OP +W_concentration_at_point_458_____________________________________________ (f_nd_impurity_electrons13_458)_ 3.29454468836445188e+14 OP +W_concentration_at_point_459_____________________________________________ (f_nd_impurity_electrons13_459)_ 3.28559429333660750e+14 OP +W_concentration_at_point_460_____________________________________________ (f_nd_impurity_electrons13_460)_ 3.27662437727271625e+14 OP +W_concentration_at_point_461_____________________________________________ (f_nd_impurity_electrons13_461)_ 3.26763494017277625e+14 OP +W_concentration_at_point_462_____________________________________________ (f_nd_impurity_electrons13_462)_ 3.25862598203678938e+14 OP +W_concentration_at_point_463_____________________________________________ (f_nd_impurity_electrons13_463)_ 3.24959750286475438e+14 OP +W_concentration_at_point_464_____________________________________________ (f_nd_impurity_electrons13_464)_ 3.24054950265667188e+14 OP +W_concentration_at_point_465_____________________________________________ (f_nd_impurity_electrons13_465)_ 3.23148198141254125e+14 OP +W_concentration_at_point_466_____________________________________________ (f_nd_impurity_electrons13_466)_ 3.22239493913236375e+14 OP +W_concentration_at_point_467_____________________________________________ (f_nd_impurity_electrons13_467)_ 3.21328837581613875e+14 OP +W_concentration_at_point_468_____________________________________________ (f_nd_impurity_electrons13_468)_ 3.20416229146386562e+14 OP +W_concentration_at_point_469_____________________________________________ (f_nd_impurity_electrons13_469)_ 3.19501668607554500e+14 OP +W_concentration_at_point_470_____________________________________________ (f_nd_impurity_electrons13_470)_ 3.18585155965117688e+14 OP +W_concentration_at_point_471_____________________________________________ (f_nd_impurity_electrons13_471)_ 3.14212418530302375e+14 OP +W_concentration_at_point_472_____________________________________________ (f_nd_impurity_electrons13_472)_ 3.09839681095487000e+14 OP +W_concentration_at_point_473_____________________________________________ (f_nd_impurity_electrons13_473)_ 3.05466943660671688e+14 OP +W_concentration_at_point_474_____________________________________________ (f_nd_impurity_electrons13_474)_ 3.01094206225856375e+14 OP +W_concentration_at_point_475_____________________________________________ (f_nd_impurity_electrons13_475)_ 2.96721468791041000e+14 OP +W_concentration_at_point_476_____________________________________________ (f_nd_impurity_electrons13_476)_ 2.92348731356225625e+14 OP +W_concentration_at_point_477_____________________________________________ (f_nd_impurity_electrons13_477)_ 2.87975993921410312e+14 OP +W_concentration_at_point_478_____________________________________________ (f_nd_impurity_electrons13_478)_ 2.83603256486595000e+14 OP +W_concentration_at_point_479_____________________________________________ (f_nd_impurity_electrons13_479)_ 2.79230519051779625e+14 OP +W_concentration_at_point_480_____________________________________________ (f_nd_impurity_electrons13_480)_ 2.74857781616964312e+14 OP +W_concentration_at_point_481_____________________________________________ (f_nd_impurity_electrons13_481)_ 2.70485044182148969e+14 OP +W_concentration_at_point_482_____________________________________________ (f_nd_impurity_electrons13_482)_ 2.66112306747333625e+14 OP +W_concentration_at_point_483_____________________________________________ (f_nd_impurity_electrons13_483)_ 2.61739569312518281e+14 OP +W_concentration_at_point_484_____________________________________________ (f_nd_impurity_electrons13_484)_ 2.57366831877702969e+14 OP +W_concentration_at_point_485_____________________________________________ (f_nd_impurity_electrons13_485)_ 2.52994094442887594e+14 OP +W_concentration_at_point_486_____________________________________________ (f_nd_impurity_electrons13_486)_ 2.48621357008072281e+14 OP +W_concentration_at_point_487_____________________________________________ (f_nd_impurity_electrons13_487)_ 2.44248619573256906e+14 OP +W_concentration_at_point_488_____________________________________________ (f_nd_impurity_electrons13_488)_ 2.39875882138441594e+14 OP +W_concentration_at_point_489_____________________________________________ (f_nd_impurity_electrons13_489)_ 2.35503144703626219e+14 OP +W_concentration_at_point_490_____________________________________________ (f_nd_impurity_electrons13_490)_ 2.31130407268810906e+14 OP +W_concentration_at_point_491_____________________________________________ (f_nd_impurity_electrons13_491)_ 2.26757669833995562e+14 OP +W_concentration_at_point_492_____________________________________________ (f_nd_impurity_electrons13_492)_ 2.22384932399180219e+14 OP +W_concentration_at_point_493_____________________________________________ (f_nd_impurity_electrons13_493)_ 2.18012194964364875e+14 OP +W_concentration_at_point_494_____________________________________________ (f_nd_impurity_electrons13_494)_ 2.13639457529549500e+14 OP +W_concentration_at_point_495_____________________________________________ (f_nd_impurity_electrons13_495)_ 2.09266720094734188e+14 OP +W_concentration_at_point_496_____________________________________________ (f_nd_impurity_electrons13_496)_ 2.04893982659918875e+14 OP +W_concentration_at_point_497_____________________________________________ (f_nd_impurity_electrons13_497)_ 2.00521245225103500e+14 OP +W_concentration_at_point_498_____________________________________________ (f_nd_impurity_electrons13_498)_ 1.96148507790288188e+14 OP +W_concentration_at_point_499_____________________________________________ (f_nd_impurity_electrons13_499)_ 1.91775770355472812e+14 OP +W_concentration_at_point_500_____________________________________________ (f_nd_impurity_electrons13_500)_ 1.87403032920657500e+14 OP +Volume_averaged_plasma_effective_charge_(⟨Zₑ⟩)___________________________ (n_charge_plasma_effective_vol_avg)_ 2.62276718906693374e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile0)_ 2.76168441917185037e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile1)_ 2.76168396861639964e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile2)_ 2.76168261694195172e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile3)_ 2.76168036412421980e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile4)_ 2.76167721012272382e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile5)_ 2.76167315488078868e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile6)_ 2.76166819832554244e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile7)_ 2.76166234036790881e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile8)_ 2.76165558090260888e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile9)_ 2.76164791980815005e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile10)_ 2.76163935694682072e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile11)_ 2.76162989216468491e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile12)_ 2.76161952529157340e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile13)_ 2.76160825614107708e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile14)_ 2.76159608451052829e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile15)_ 2.76158301018100616e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile16)_ 2.76156903291730771e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile17)_ 2.76155415246794922e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile18)_ 2.76153836856514534e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile19)_ 2.76152168092479844e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile20)_ 2.76150408924648172e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile21)_ 2.76148559321342679e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile22)_ 2.76146619249250369e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile23)_ 2.76144588673420532e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile24)_ 2.76142467557262927e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile25)_ 2.76140255862545780e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile26)_ 2.76137953549393833e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile27)_ 2.76135560576286343e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile28)_ 2.76133076900054864e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile29)_ 2.76130502475880668e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile30)_ 2.76127837257293196e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile31)_ 2.76125081196166811e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile32)_ 2.76122234242718667e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile33)_ 2.76119296345506227e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile34)_ 2.76116102221043791e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile35)_ 2.76112545065217851e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile36)_ 2.76108884038091595e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile37)_ 2.76105119073766714e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile38)_ 2.76101250104446994e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile39)_ 2.76097277060433921e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile40)_ 2.76093199870123529e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile41)_ 2.76089018460002755e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile42)_ 2.76084732754645179e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile43)_ 2.76080342676707335e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile44)_ 2.76075848146924896e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile45)_ 2.76071249084108050e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile46)_ 2.76066545405137598e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile47)_ 2.76061737024960552e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile48)_ 2.76056823856585565e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile49)_ 2.76051805811078577e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile50)_ 2.76046682797558107e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile51)_ 2.76041454723190238e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile52)_ 2.76036121493184083e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile53)_ 2.76030683010786682e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile54)_ 2.76025139177278156e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile55)_ 2.76019489891965941e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile56)_ 2.76013735052180165e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile57)_ 2.76007874553267918e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile58)_ 2.76001908288587749e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile59)_ 2.75995836149504337e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile60)_ 2.75989658025382356e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile61)_ 2.75983373803581067e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile62)_ 2.75976983369448181e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile63)_ 2.75970486606313781e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile64)_ 2.75963883395484322e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile65)_ 2.75957173616236329e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile66)_ 2.75950357145810088e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile67)_ 2.75943433859402942e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile68)_ 2.75936403630163163e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile69)_ 2.75929266329182710e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile70)_ 2.75922021825490749e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile71)_ 2.75914669986046812e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile72)_ 2.75907210675733472e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile73)_ 2.75899643757349589e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile74)_ 2.75891969091602585e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile75)_ 2.75884186537101384e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile76)_ 2.75876295950348860e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile77)_ 2.75868297185734290e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile78)_ 2.75860190095525493e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile79)_ 2.75851974529861232e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile80)_ 2.75843650336742785e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile81)_ 2.75835217362026608e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile82)_ 2.75826675449415326e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile83)_ 2.75818024440450182e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile84)_ 2.75809264174502111e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile85)_ 2.75800394488763301e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile86)_ 2.75791415218238800e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile87)_ 2.75782326195737193e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile88)_ 2.75773127251862249e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile89)_ 2.75763818215003553e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile90)_ 2.75754398911327403e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile91)_ 2.75744869164767792e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile92)_ 2.75735228797016552e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile93)_ 2.75725477627514159e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile94)_ 2.75715615473440012e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile95)_ 2.75705642149702745e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile96)_ 2.75695557468929930e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile97)_ 2.75685361241458571e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile98)_ 2.75675053275324711e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile99)_ 2.75664633376253043e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile100)_ 2.75654101347646563e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile101)_ 2.75643456990576219e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile102)_ 2.75632700103769945e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile103)_ 2.75621830483602048e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile104)_ 2.75610847924082059e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile105)_ 2.75599752216844118e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile106)_ 2.75588041099315006e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile107)_ 2.75575367873776811e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile108)_ 2.75562567334179986e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile109)_ 2.75549639237925481e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile110)_ 2.75536583339708629e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile111)_ 2.75523399391506052e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile112)_ 2.75510087142562154e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile113)_ 2.75496646339375983e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile114)_ 2.75483076725687459e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile115)_ 2.75469378042463431e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile116)_ 2.75455550027884088e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile117)_ 2.75441592417328840e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile118)_ 2.75427504943361789e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile119)_ 2.75413287335717749e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile120)_ 2.75398939321287495e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile121)_ 2.75384460624103200e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile122)_ 2.75369850965323382e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile123)_ 2.75355110063218067e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile124)_ 2.75340237633153739e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile125)_ 2.75325233387577528e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile126)_ 2.75310097036002421e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile127)_ 2.75294828284990922e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile128)_ 2.75279426838139862e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile129)_ 2.75263892396063836e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile130)_ 2.75248224656379614e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile131)_ 2.75232423313689401e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile132)_ 2.75216488059564535e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile133)_ 2.75200418582529149e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile134)_ 2.75184214568042762e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile135)_ 2.75167875698483932e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile136)_ 2.75151401653132632e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile137)_ 2.75134792108153325e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile138)_ 2.75118046736577426e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile139)_ 2.75101165208285225e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile140)_ 2.75084147189988881e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile141)_ 2.75066992345213812e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile142)_ 2.75049700334280889e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile143)_ 2.75032270814287916e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile144)_ 2.75014703439091157e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile145)_ 2.74997037498490515e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile146)_ 2.74979266487660512e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile147)_ 2.74961357133496920e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile148)_ 2.74943309078190179e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile149)_ 2.74925121960607965e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile150)_ 2.74906795416276140e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile151)_ 2.74888329077358939e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile152)_ 2.74869722572639263e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile153)_ 2.74850975527498509e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile154)_ 2.74832087563897032e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile155)_ 2.74813058300353230e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile156)_ 2.74793887351923383e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile157)_ 2.74774574330181087e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile158)_ 2.74755118843196300e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile159)_ 2.74735520495514463e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile160)_ 2.74715778888135320e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile161)_ 2.74695893618491560e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile162)_ 2.74675864280427540e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile163)_ 2.74655690464177438e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile164)_ 2.74635371756343316e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile165)_ 2.74614907739873537e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile166)_ 2.74594297994040160e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile167)_ 2.74573542094416956e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile168)_ 2.74552639612856719e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile169)_ 2.74531590117468616e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile170)_ 2.74510393172595446e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile171)_ 2.74489048338790642e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile172)_ 2.74467555172795041e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile173)_ 2.74445913227513572e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile174)_ 2.74424122051991759e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile175)_ 2.74400211098577751e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile176)_ 2.74375820345769750e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile177)_ 2.74351263469968343e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile178)_ 2.74326539959316662e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile179)_ 2.74301649297602212e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile180)_ 2.74276590964230627e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile181)_ 2.74251364434198752e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile182)_ 2.74225969178067785e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile183)_ 2.74200404661936403e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile184)_ 2.74174670347413407e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile185)_ 2.74148765691590590e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile186)_ 2.74122690147015158e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile187)_ 2.74096443161662284e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile188)_ 2.74070024178907090e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile189)_ 2.74043432637497153e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile190)_ 2.74016667971524042e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile191)_ 2.73989729610395560e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile192)_ 2.73962616978807283e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile193)_ 2.73935329496714264e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile194)_ 2.73907866579302350e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile195)_ 2.73880227636960027e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile196)_ 2.73852412075249019e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile197)_ 2.73824419294875998e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile198)_ 2.73796248691663635e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile199)_ 2.73766661330087935e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile200)_ 2.73732319202625396e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile201)_ 2.73697761381002680e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile202)_ 2.73662987125294377e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile203)_ 2.73627995689647907e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile204)_ 2.73592786322249593e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile205)_ 2.73557358265290862e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile206)_ 2.73521710754934411e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile207)_ 2.73485843021279829e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile208)_ 2.73449754288330116e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile209)_ 2.73413443773957665e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile210)_ 2.73376910689869801e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile211)_ 2.73340154241575473e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile212)_ 2.73303173628351193e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile213)_ 2.73265968043206842e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile214)_ 2.73228536672852496e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile215)_ 2.73190878697664319e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile216)_ 2.73152993291650992e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile217)_ 2.73114879622420403e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile218)_ 2.73076536851146168e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile219)_ 2.73037964132534361e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile220)_ 2.72999185245943599e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile221)_ 2.72960360918730283e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile222)_ 2.72921305311845774e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile223)_ 2.72882017558262246e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile224)_ 2.72842496784353994e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile225)_ 2.72802742109865282e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile226)_ 2.72762752647879481e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile227)_ 2.72722527504787138e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile228)_ 2.72682065780255423e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile229)_ 2.72641366567197307e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile230)_ 2.72600428951741458e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile231)_ 2.72559252013202169e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile232)_ 2.72517834824050409e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile233)_ 2.72476176449884466e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile234)_ 2.72434275949401528e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile235)_ 2.72392132374369966e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile236)_ 2.72349744769601454e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile237)_ 2.72307112172924892e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile238)_ 2.72264233615159457e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile239)_ 2.72219892772321392e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile240)_ 2.72172666571253163e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile241)_ 2.72125169925558730e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile242)_ 2.72077401759352844e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile243)_ 2.72029360989105973e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile244)_ 2.71981046523622760e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile245)_ 2.71932457264020311e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile246)_ 2.71883592103708160e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile247)_ 2.71834449928369493e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile248)_ 2.71785029615942975e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile249)_ 2.71735330036606282e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile250)_ 2.71685350052760599e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile251)_ 2.71635088519016676e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile252)_ 2.71584544282182083e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile253)_ 2.71533716181250107e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile254)_ 2.71482603047390025e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile255)_ 2.71431203703939383e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile256)_ 2.71376036207036853e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile257)_ 2.71316947071075631e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile258)_ 2.71257529773622696e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile259)_ 2.71197782963533074e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile260)_ 2.71137705281006447e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile261)_ 2.71077295357594261e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile262)_ 2.71016551816209095e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile263)_ 2.70955473271136871e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile264)_ 2.70894058328051557e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile265)_ 2.70832305584033151e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile266)_ 2.70770213627587975e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile267)_ 2.70707781038672923e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile268)_ 2.70645006388722464e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile269)_ 2.70581888240679236e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile270)_ 2.70518425149027708e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile271)_ 2.70454615659832420e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile272)_ 2.70381395894491439e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile273)_ 2.70307579884997784e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile274)_ 2.70233364578708501e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile275)_ 2.70158748310174879e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile276)_ 2.70083729405033512e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile277)_ 2.70008306180084157e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile278)_ 2.69932476943372812e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile279)_ 2.69856239994280989e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile280)_ 2.69779593623620562e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile281)_ 2.69702536113735691e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile282)_ 2.69625065738610648e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile283)_ 2.69547180763985184e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile284)_ 2.69468879447476439e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile285)_ 2.69390160038708748e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile286)_ 2.69303363907668203e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile287)_ 2.69215150223419020e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile288)_ 2.69126469556219883e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile289)_ 2.69037319972661759e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile290)_ 2.68947699531822249e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile291)_ 2.68857606285471951e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile292)_ 2.68767038278291359e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile293)_ 2.68675993548098901e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile294)_ 2.68584470126091057e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile295)_ 2.68492466037094424e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile296)_ 2.68399979299830571e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile297)_ 2.68307007927194086e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile298)_ 2.68213549926544115e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile299)_ 2.68109118051325579e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile300)_ 2.68000520714070234e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile301)_ 2.67891361822339347e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile302)_ 2.67781639145157824e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile303)_ 2.67671350448102396e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile304)_ 2.67560493493754947e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile305)_ 2.67449066042176442e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile306)_ 2.67337065851401823e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile307)_ 2.67224490677957904e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile308)_ 2.67111338277403343e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile309)_ 2.66997606404893117e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile310)_ 2.66883292815767925e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile311)_ 2.66761049584260190e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile312)_ 2.66628557004920852e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile313)_ 2.66495396687186137e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile314)_ 2.66361566185417997e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile315)_ 2.66227063059464841e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile316)_ 2.66091884875544915e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile317)_ 2.65956029207167388e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile318)_ 2.65819493636091408e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile319)_ 2.65682275753324948e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile320)_ 2.65544373160165570e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile321)_ 2.65405783469284318e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile322)_ 2.65265987786181956e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile323)_ 2.65105959430493465e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile324)_ 2.64945147978661222e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile325)_ 2.64783550938925227e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile326)_ 2.64621165841495021e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile327)_ 2.64457990240138541e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile328)_ 2.64294021713835514e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile329)_ 2.64129257868496836e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile330)_ 2.63963696338752607e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile331)_ 2.63797334789812554e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile332)_ 2.63630170919399864e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile333)_ 2.63457281954924927e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile334)_ 2.63256069249174152e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile335)_ 2.63053913919063964e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile336)_ 2.62850813752371115e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile337)_ 2.62646766592426717e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile338)_ 2.62441770341039282e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile339)_ 2.62235822961532206e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile340)_ 2.62028922481899107e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile341)_ 2.61821066998083385e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile342)_ 2.61612254677384914e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile343)_ 2.61400117384724329e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile344)_ 2.61152403881816220e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile345)_ 2.60903590792299234e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile346)_ 2.60653676834138892e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile347)_ 2.60402660836575439e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile348)_ 2.60150541745143782e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile349)_ 2.59897318626885809e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile350)_ 2.59642990675764018e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile351)_ 2.59387557218283415e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile352)_ 2.59131017719329915e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile353)_ 2.58862487492923199e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile354)_ 2.58563391323415903e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile355)_ 2.58263057817974628e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile356)_ 2.57961487723061511e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile357)_ 2.57658681988568272e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile358)_ 2.57354641776204529e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile359)_ 2.57049368468207406e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile360)_ 2.56742863676385280e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile361)_ 2.56435129251508309e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile362)_ 2.56124407569111012e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile363)_ 2.55769877545659741e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile364)_ 2.55414006059521315e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile365)_ 2.55056797278736846e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile366)_ 2.54698255710403698e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile367)_ 2.54338386213932832e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile368)_ 2.53977194014814334e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile369)_ 2.53614684718912109e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile370)_ 2.53250864327309300e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile371)_ 2.52878575025900920e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile372)_ 2.52491529316068197e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile373)_ 2.52103149493914058e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile374)_ 2.51713444160057387e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile375)_ 2.51322422422318636e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile376)_ 2.50930093915253982e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile377)_ 2.50536468820452418e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile378)_ 2.50141557887630750e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile379)_ 2.49745372456560233e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile380)_ 2.49341629798324060e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile381)_ 2.48935661070547409e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile382)_ 2.48528444154445305e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile383)_ 2.48119993393106286e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile384)_ 2.47710323856099635e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile385)_ 2.47299451367613043e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile386)_ 2.46887392535729644e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile387)_ 2.46474164782897898e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile388)_ 2.46074415332447716e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile389)_ 2.45679435368319110e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile390)_ 2.45283367754181558e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile391)_ 2.44886232067342924e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile392)_ 2.44488048825376003e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile393)_ 2.44088839523531620e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile394)_ 2.43688626673742226e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile395)_ 2.43287433845297008e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile396)_ 2.42915776818654772e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile397)_ 2.42548507036956273e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile398)_ 2.42180363348253813e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile399)_ 2.41811370902332756e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile400)_ 2.41441556032554772e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile401)_ 2.41070946304846867e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile402)_ 2.40699570568909493e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile403)_ 2.40341191436679935e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile404)_ 2.40027356741155407e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile405)_ 2.39712883473343918e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile406)_ 2.39397800003090788e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile407)_ 2.39082136050201921e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile408)_ 2.38765922743114878e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile409)_ 2.38449192680420996e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile410)_ 2.38131979995406518e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile411)_ 2.37856061692874254e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile412)_ 2.37590108088601459e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile413)_ 2.37323789115632344e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile414)_ 2.37057138648878318e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile415)_ 2.36790192187020798e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile416)_ 2.36522986927382917e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile417)_ 2.36255561844810957e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile418)_ 2.36011082018875129e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile419)_ 2.35788381904506839e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile420)_ 2.35565565177170111e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile421)_ 2.35342670741218729e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile422)_ 2.35119739395314387e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile423)_ 2.34896813925746484e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile424)_ 2.34673939205359394e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile425)_ 2.34465421172270538e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile426)_ 2.34287745762780908e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile427)_ 2.34110197091523853e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile428)_ 2.33932818539337051e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile429)_ 2.33755655661260198e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile430)_ 2.33578756303794544e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile431)_ 2.33402170730410319e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile432)_ 2.33230292612896095e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile433)_ 2.33084761378721561e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile434)_ 2.32939609988086938e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile435)_ 2.32794889378295666e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile436)_ 2.32650653163377852e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile437)_ 2.32506957798969927e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile438)_ 2.32363862761627038e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile439)_ 2.32221430744429735e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile440)_ 2.32098669349689146e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile441)_ 2.31979394114345361e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile442)_ 2.31860847201064502e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile443)_ 2.31743094763618362e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile444)_ 2.31626206815137481e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile445)_ 2.31510257531665742e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile446)_ 2.31395325593119860e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile447)_ 2.31284051537348168e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile448)_ 2.31178718813661055e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile449)_ 2.31074583717107407e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile450)_ 2.30971740939573600e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile451)_ 2.30870291801314131e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile452)_ 2.30770344986133891e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile453)_ 2.30672017410698205e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile454)_ 2.30575435263096695e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile455)_ 2.30484035801737042e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile456)_ 2.30409455751023451e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile457)_ 2.30336635821086544e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile458)_ 2.30265720569280674e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile459)_ 2.30196870249429075e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile460)_ 2.30130264073285407e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile461)_ 2.30066104592007559e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile462)_ 2.30004623753887705e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile463)_ 2.29946091574755762e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile464)_ 2.29890829089121373e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile465)_ 2.29839228772077409e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile466)_ 2.29791925754100035e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile467)_ 2.29749441789074726e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile468)_ 2.29712750626619133e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile469)_ 2.29683533875810930e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile470)_ 2.29666594781906364e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile471)_ 2.29256916076762085e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile472)_ 2.28863270778124539e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile473)_ 2.28463162706091216e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile474)_ 2.28049934996540316e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile475)_ 2.27623259987934334e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile476)_ 2.27161759537847052e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile477)_ 2.26661163034253521e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile478)_ 2.26138685579864207e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile479)_ 2.25552234617390557e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile480)_ 2.24829465959230701e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile481)_ 2.24003833810516584e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile482)_ 2.22960639181560927e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile483)_ 2.21519959847364456e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile484)_ 2.19425090093429453e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile485)_ 2.16226073912241334e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile486)_ 2.11107910130968390e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile487)_ 2.04160673402112858e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile488)_ 1.97016037624127494e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile489)_ 1.91858469108174412e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile490)_ 1.88638830259290669e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile491)_ 1.86612752685338523e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile492)_ 1.84987438405921756e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile493)_ 1.83449754243583363e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile494)_ 1.81565928053843617e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile495)_ 1.78761375380416365e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile496)_ 1.74313113053421631e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile497)_ 1.62032265644412776e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile498)_ 1.48667293375746490e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile499)_ 1.37990803121821126e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile500)_ 1.23379729895942214e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile0_0)___ 1.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile0_1)___ 1.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile0_2)___ 1.00000000000000000e+00 OP @@ -9402,16 +9405,16 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_375)_ 8.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_376)_ 8.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_377)_ 8.00000000000000000e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_378)_ 7.99990539582006388e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_379)_ 7.99978715363660520e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_380)_ 7.99966837204386749e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_381)_ 7.99954905260872362e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_382)_ 7.99942919709564926e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_383)_ 7.99930880747590756e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_384)_ 7.99918788593714147e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_385)_ 7.99906643489338354e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_386)_ 7.99899999999999967e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_387)_ 7.99899999999999967e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_378)_ 8.00000000000000000e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_379)_ 8.00000000000000000e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_380)_ 7.99989540977582259e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_381)_ 7.99977426409983750e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_382)_ 7.99965256220848708e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_383)_ 7.99953030586354341e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_384)_ 7.99940749704393994e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_385)_ 7.99928413795603177e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_386)_ 7.99916023104430352e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_387)_ 7.99903577900257101e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_388)_ 7.99899999999999967e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_389)_ 7.99899999999999967e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_390)_ 7.99899999999999967e+00 OP @@ -9855,19 +9858,19 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_327)_ 9.99900000000000055e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_328)_ 9.99900000000000055e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_329)_ 9.99900000000000055e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_330)_ 9.99897122479341505e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_331)_ 9.99887703248832338e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_332)_ 9.99878233818084539e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_333)_ 9.99868713984195701e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_334)_ 9.99859143545589113e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_335)_ 9.99849522302136684e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_336)_ 9.99839850055287904e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_337)_ 9.99830126608203607e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_338)_ 9.99820351765895765e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_339)_ 9.99810525335373512e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_340)_ 9.99800647125795550e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_341)_ 9.99799999999999933e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_342)_ 9.99799999999999933e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_330)_ 9.99900000000000055e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_331)_ 9.99900000000000055e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_332)_ 9.99900000000000055e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_333)_ 9.99898532344668212e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_334)_ 9.99888850224302494e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_335)_ 9.99879116131179657e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_336)_ 9.99869329852249678e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_337)_ 9.99859491175984871e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_338)_ 9.99849599892519159e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_339)_ 9.99839655793792126e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_340)_ 9.99829658673700550e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_341)_ 9.99819608328256315e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_342)_ 9.99809504555750905e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_343)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_344)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_345)_ 9.99799999999999933e+00 OP @@ -9942,14 +9945,14 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_414)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_415)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_416)_ 9.99799999999999933e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_417)_ 9.99792224293620357e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_418)_ 9.99778661003782609e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_419)_ 9.99765077740200780e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_420)_ 9.99751476730694932e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_421)_ 9.99737860320526117e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_422)_ 9.99724230978253381e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_423)_ 9.99710591301933782e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_424)_ 9.99699999999999989e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_417)_ 9.99799999999999933e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_418)_ 9.99792897802451108e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_419)_ 9.99779043521050426e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_420)_ 9.99765169129049447e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_421)_ 9.99751276996257943e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_422)_ 9.99737369619475480e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_423)_ 9.99723449628941729e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_424)_ 9.99709519795169221e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_425)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_426)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_427)_ 9.99699999999999989e+00 OP @@ -9990,11 +9993,11 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_462)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_463)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_464)_ 9.99699999999999989e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_465)_ 9.99699484513653402e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_466)_ 9.99692467959987319e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_467)_ 9.99686165059283205e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_468)_ 9.99680721058905419e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_469)_ 9.99676385721932270e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_465)_ 9.99699999999999989e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_466)_ 9.99692979326187903e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_467)_ 9.99686503684883121e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_468)_ 9.99680910003525725e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_469)_ 9.99676455148820686e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_470)_ 9.99673872070360581e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_471)_ 9.99611338281042450e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_472)_ 9.99600000000000044e+00 OP @@ -10377,17 +10380,17 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_348)_ 1.39900000000000002e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_349)_ 1.39900000000000002e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_350)_ 1.39900000000000002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_351)_ 1.39890954452736711e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_352)_ 1.39880576700407886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_353)_ 1.39870145662822498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_354)_ 1.39859661201266068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_355)_ 1.39849123182353772e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_356)_ 1.39838531478324519e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_357)_ 1.39827885967347640e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_358)_ 1.39817186533842683e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_359)_ 1.39806433068812730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_360)_ 1.39800000000000004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_361)_ 1.39800000000000004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_351)_ 1.39900000000000002e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_352)_ 1.39900000000000002e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_353)_ 1.39897138147091642e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_354)_ 1.39886517451801708e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_355)_ 1.39875841723722019e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_356)_ 1.39865110816939389e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_357)_ 1.39854324591283934e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_358)_ 1.39843482912651087e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_359)_ 1.39832585653337311e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_360)_ 1.39821632692390807e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_361)_ 1.39810623915976997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_362)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_363)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_364)_ 1.39800000000000004e+01 OP @@ -10443,14 +10446,14 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_414)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_415)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_416)_ 1.39800000000000004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_417)_ 1.39792224293620340e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_418)_ 1.39778661003782751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_419)_ 1.39765077740200780e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_420)_ 1.39751476730694915e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_421)_ 1.39737860320526064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_422)_ 1.39724230978253345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_423)_ 1.39710591301933871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_424)_ 1.39700000000000006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_417)_ 1.39800000000000004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_418)_ 1.39792897802451090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_419)_ 1.39779043521050408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_420)_ 1.39765169129049536e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_421)_ 1.39751276996258014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_422)_ 1.39737369619475587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_423)_ 1.39723449628941712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_424)_ 1.39709519795169257e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_425)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_426)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_427)_ 1.39700000000000006e+01 OP @@ -10473,14 +10476,14 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_444)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_445)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_446)_ 1.39700000000000006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_447)_ 1.39689904972401138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_448)_ 1.39677436021581247e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_449)_ 1.39665105068113693e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_450)_ 1.39652923466784120e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_451)_ 1.39640903369187335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_452)_ 1.39629057811511821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_453)_ 1.39617400818288111e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_454)_ 1.39605947526280794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_447)_ 1.39695533087139747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_448)_ 1.39682756841487503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_449)_ 1.39670119929079117e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_450)_ 1.39657634044243899e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_451)_ 1.39645311705802744e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_452)_ 1.39633166347600994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_453)_ 1.39621212425454466e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_454)_ 1.39609465544803175e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_455)_ 1.39600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_456)_ 1.39600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_457)_ 1.39600000000000009e+01 OP @@ -10691,41 +10694,41 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_161)_ 1.79699999999999989e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_162)_ 1.79699999999999989e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_163)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_164)_ 1.79698010563391044e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_165)_ 1.79694548390923288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_166)_ 1.79691061366286746e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_167)_ 1.79687549413508094e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_168)_ 1.79684012455939985e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_169)_ 1.79680450416256967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_170)_ 1.79676863216450933e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_171)_ 1.79673250777827000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_172)_ 1.79669613020999179e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_173)_ 1.79665949865885786e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_174)_ 1.79662261231705216e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_175)_ 1.79658547036971399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_176)_ 1.79654807199489426e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_177)_ 1.79651041636350826e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_178)_ 1.79647250263929230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_179)_ 1.79643432997875756e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_180)_ 1.79639589753114244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_181)_ 1.79635720443836817e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_182)_ 1.79631824983499158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_183)_ 1.79627903284815673e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_184)_ 1.79623955259754950e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_185)_ 1.79619980819534995e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_186)_ 1.79615979874618219e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_187)_ 1.79611952334706935e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_188)_ 1.79607898108738304e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_189)_ 1.79603817104879475e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_190)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_191)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_192)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_193)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_194)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_195)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_196)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_197)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_198)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_164)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_165)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_166)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_167)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_168)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_169)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_170)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_171)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_172)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_173)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_174)_ 1.79699999999999989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_175)_ 1.79696774749488348e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_176)_ 1.79693009314184451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_177)_ 1.79689217924994047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_178)_ 1.79685400496534911e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_179)_ 1.79681556942680594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_180)_ 1.79677687176555558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_181)_ 1.79673791110530132e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_182)_ 1.79669868656215606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_183)_ 1.79665919724459329e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_184)_ 1.79661944225339560e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_185)_ 1.79657942068160494e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_186)_ 1.79653913161447107e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_187)_ 1.79649857412940044e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_188)_ 1.79645774729590535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_189)_ 1.79641665017555070e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_190)_ 1.79637528182190280e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_191)_ 1.79633364128047681e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_192)_ 1.79629172758868307e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_193)_ 1.79624953977577420e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_194)_ 1.79620707686279317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_195)_ 1.79616433786251619e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_196)_ 1.79612132177940254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_197)_ 1.79607802760953774e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_198)_ 1.79603445434057889e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_199)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_200)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_201)_ 1.79600000000000009e+01 OP @@ -10777,28 +10780,28 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_247)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_248)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_249)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_250)_ 1.79597999108076500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_251)_ 1.79592058715898233e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_252)_ 1.79586084075708818e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_253)_ 1.79580075036271936e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_254)_ 1.79574031445274400e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_255)_ 1.79567953149323678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_256)_ 1.79561839993945540e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_257)_ 1.79555691823581896e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_258)_ 1.79549508481588944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_259)_ 1.79543289810235329e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_260)_ 1.79537035650700822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_261)_ 1.79530745843074975e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_262)_ 1.79524420226356192e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_263)_ 1.79518058638450952e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_264)_ 1.79511660916173348e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_265)_ 1.79505226895245009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_266)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_267)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_268)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_269)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_270)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_271)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_250)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_251)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_252)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_253)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_254)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_255)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_256)_ 1.79596967029549575e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_257)_ 1.79590766765397376e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_258)_ 1.79584530856581637e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_259)_ 1.79578259140430099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_260)_ 1.79571951453114416e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_261)_ 1.79565607629647879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_262)_ 1.79559227503883498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_263)_ 1.79552810908512086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_264)_ 1.79546357675060904e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_265)_ 1.79539867633892385e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_266)_ 1.79533340614203105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_267)_ 1.79526776444023355e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_268)_ 1.79520174950216536e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_269)_ 1.79513535958479302e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_270)_ 1.79506859293341954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_271)_ 1.79500144778168966e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_272)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_273)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_274)_ 1.79499999999999993e+01 OP @@ -10822,22 +10825,22 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_292)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_293)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_294)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_295)_ 1.79492597950293558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_296)_ 1.79484940652857006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_297)_ 1.79477241184410552e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_298)_ 1.79469499347161516e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_299)_ 1.79461714942524004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_300)_ 1.79453887771142462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_301)_ 1.79446017632916650e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_302)_ 1.79438104327027865e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_303)_ 1.79430147651966507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_304)_ 1.79422147405561283e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_305)_ 1.79414103385009760e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_306)_ 1.79406015386910695e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_307)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_308)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_309)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_310)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_295)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_296)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_297)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_298)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_299)_ 1.79494149758295265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_300)_ 1.79486244613997954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_301)_ 1.79478295741250555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_302)_ 1.79470302930280816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_303)_ 1.79462265970499857e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_304)_ 1.79454184650529243e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_305)_ 1.79446058758230258e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_306)_ 1.79437888080734034e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_307)_ 1.79429672404473841e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_308)_ 1.79421411515218843e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_309)_ 1.79413105198109690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_310)_ 1.79404753237696006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_311)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_312)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_313)_ 1.79400000000000013e+01 OP @@ -10846,20 +10849,20 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_316)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_317)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_318)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_319)_ 1.79395659975798800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_320)_ 1.79386945079368729e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_321)_ 1.79378183166168057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_322)_ 1.79369374029426822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_323)_ 1.79360517462641411e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_324)_ 1.79351613259649589e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_325)_ 1.79342661214708592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_326)_ 1.79333661122576942e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_327)_ 1.79324612778600034e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_328)_ 1.79315515978799169e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_329)_ 1.79306370519964915e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_330)_ 1.79299999999999997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_331)_ 1.79299999999999997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_332)_ 1.79299999999999997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_319)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_320)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_321)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_322)_ 1.79399769521089922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_323)_ 1.79390815077078898e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_324)_ 1.79381811995479836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_325)_ 1.79372760058256908e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_326)_ 1.79363659047707991e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_327)_ 1.79354508746548262e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_328)_ 1.79345308937997743e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_329)_ 1.79336059405872952e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_330)_ 1.79326759934682336e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_331)_ 1.79317410309726633e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_332)_ 1.79308010317203141e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_333)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_334)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_335)_ 1.79299999999999997e+01 OP @@ -10868,18 +10871,18 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_338)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_339)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_340)_ 1.79299999999999997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_341)_ 1.79290927317978870e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_342)_ 1.79281171203346510e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_343)_ 1.79271363937697785e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_344)_ 1.79261505344539316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_345)_ 1.79251595250324343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_346)_ 1.79241633484644254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_347)_ 1.79231619880428497e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_348)_ 1.79221554274152872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_349)_ 1.79211436506056820e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_350)_ 1.79201266420370118e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_351)_ 1.79200000000000017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_352)_ 1.79200000000000017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_341)_ 1.79299999999999997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_342)_ 1.79299999999999997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_343)_ 1.79299361951434726e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_344)_ 1.79289382132898503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_345)_ 1.79279349521719844e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_346)_ 1.79269263931429066e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_347)_ 1.79259125178701808e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_348)_ 1.79248933083567223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_349)_ 1.79238687469625226e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_350)_ 1.79228388164273476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_351)_ 1.79218034998943736e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_352)_ 1.79207627809349042e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_353)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_354)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_355)_ 1.79200000000000017e+01 OP @@ -10887,17 +10890,17 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_357)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_358)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_359)_ 1.79200000000000017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_360)_ 1.79195559791031549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_361)_ 1.79184534884652429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_362)_ 1.79173454847318645e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_363)_ 1.79162319598809354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_364)_ 1.79151129067507853e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_365)_ 1.79139883190836713e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_366)_ 1.79128581915711500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_367)_ 1.79117225199013888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_368)_ 1.79105813008085057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_369)_ 1.79100000000000001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_370)_ 1.79100000000000001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_360)_ 1.79200000000000017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_361)_ 1.79200000000000017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_362)_ 1.79199552599858762e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_363)_ 1.79188264915009761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_364)_ 1.79176920277352636e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_365)_ 1.79165518604285730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_366)_ 1.79154059822544092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_367)_ 1.79142543868678672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_368)_ 1.79130970689556470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_369)_ 1.79119340242882465e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_370)_ 1.79107652497744532e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_371)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_372)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_373)_ 1.79100000000000001e+01 OP @@ -10905,98 +10908,98 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_375)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_376)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_377)_ 1.79100000000000001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_378)_ 1.79090539582006407e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_379)_ 1.79078715363660521e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_380)_ 1.79066837204386751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_381)_ 1.79054905260872381e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_382)_ 1.79042919709564927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_383)_ 1.79030880747590793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_384)_ 1.79018788593714184e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_385)_ 1.79006643489338373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_386)_ 1.78994435167614476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_387)_ 1.78982161753761631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_388)_ 1.78969836161394369e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_389)_ 1.78957458734056658e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_390)_ 1.78945029843702024e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_391)_ 1.78932549891997574e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_392)_ 1.78920019311687000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_393)_ 1.78907438568015387e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_394)_ 1.78894803441865555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_395)_ 1.78882112381542804e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_396)_ 1.78869372719713482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_397)_ 1.78856585067777445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_398)_ 1.78843750077836816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_399)_ 1.78830868444563507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_400)_ 1.78817940907154451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_401)_ 1.78804968251378362e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_402)_ 1.78791955341884652e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_403)_ 1.78778901543402284e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_404)_ 1.78765805306500383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_405)_ 1.78752667625218251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_406)_ 1.78739489551930433e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_407)_ 1.78726272200056435e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_408)_ 1.78713016746903612e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_409)_ 1.78699724424970796e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_410)_ 1.78686396006883328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_411)_ 1.78673033431907982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_412)_ 1.78659638164334957e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_413)_ 1.78646211748843200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_414)_ 1.78632755814323367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_415)_ 1.78619272077900462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_416)_ 1.78605762349169588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_417)_ 1.78592224293620347e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_418)_ 1.78578661003782742e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_419)_ 1.78565077740200771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_420)_ 1.78551476730694922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_421)_ 1.78537860320526072e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_422)_ 1.78524230978253371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_423)_ 1.78510591301933879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_424)_ 1.78493881994747454e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_425)_ 1.78466550939834221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_426)_ 1.78439216491205705e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_427)_ 1.78411885026940347e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_428)_ 1.78384563258777540e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_429)_ 1.78357258249981996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_430)_ 1.78329977434416165e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_431)_ 1.78302728636936223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_432)_ 1.78287778608912646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_433)_ 1.78274219396070421e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_434)_ 1.78260689171850153e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_435)_ 1.78247192741068829e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_436)_ 1.78233735167198581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_437)_ 1.78220321788259461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_438)_ 1.78206958234086912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_439)_ 1.78187284414829037e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_440)_ 1.78160758541440565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_441)_ 1.78134370170957830e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_442)_ 1.78108133329780394e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_443)_ 1.78082062857677741e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_444)_ 1.78056174468989248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_445)_ 1.78030484820951926e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_446)_ 1.78005011590386317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_447)_ 1.77979809944802270e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_448)_ 1.77954872043162489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_449)_ 1.77930210136227380e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_450)_ 1.77905846933568235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_451)_ 1.77881806738374664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_452)_ 1.77858115623023636e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_453)_ 1.77834801636576216e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_454)_ 1.77811895052561582e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_455)_ 1.77789418431156427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_456)_ 1.77767406638519390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_457)_ 1.77745910262813176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_458)_ 1.77724972293963468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_459)_ 1.77704640378728840e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_460)_ 1.77684967785698262e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_461)_ 1.77666014701537165e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_462)_ 1.77647850022989715e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_463)_ 1.77630553921581189e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_464)_ 1.77614221674342900e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_465)_ 1.77598453540960115e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_466)_ 1.77577403879962219e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_467)_ 1.77558495177849593e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_468)_ 1.77542163176716450e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_469)_ 1.77529157165796612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_378)_ 1.79100000000000001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_379)_ 1.79100000000000001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_380)_ 1.79089540977582260e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_381)_ 1.79077426409983751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_382)_ 1.79065256220848745e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_383)_ 1.79053030586354325e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_384)_ 1.79040749704394031e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_385)_ 1.79028413795603143e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_386)_ 1.79016023104430353e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_387)_ 1.79003577900257120e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_388)_ 1.78991061561783944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_389)_ 1.78978484442080052e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_390)_ 1.78965853677560851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_391)_ 1.78953169650308688e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_392)_ 1.78940432773806322e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_393)_ 1.78927643494402098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_394)_ 1.78914802292842872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_395)_ 1.78901909685877634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_396)_ 1.78888956200423870e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_397)_ 1.78875950676659343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_398)_ 1.78862895485828126e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_399)_ 1.78849791306887447e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_400)_ 1.78836638864051842e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_401)_ 1.78823438928906278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_402)_ 1.78810192322620800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_403)_ 1.78796901470554275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_404)_ 1.78783570873838507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_405)_ 1.78770196412751261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_406)_ 1.78756779130637931e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_407)_ 1.78743320133184511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_408)_ 1.78729820591362163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_409)_ 1.78716281744518852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_410)_ 1.78702704903626355e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_411)_ 1.78689090992319883e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_412)_ 1.78675441821460836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_413)_ 1.78661759052788369e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_414)_ 1.78648044319755996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_415)_ 1.78634299346359491e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_416)_ 1.78620525951536528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_417)_ 1.78606726053803122e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_418)_ 1.78592897802451098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_419)_ 1.78579043521050416e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_420)_ 1.78565169129049544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_421)_ 1.78551276996258004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_422)_ 1.78537369619475577e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_423)_ 1.78523449628941719e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_424)_ 1.78509519795169282e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_425)_ 1.78491157318404916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_426)_ 1.78463248467653131e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_427)_ 1.78435338385088471e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_428)_ 1.78407433894997531e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_429)_ 1.78379542184817836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_430)_ 1.78351670824981312e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_431)_ 1.78323827790132050e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_432)_ 1.78298013757541263e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_433)_ 1.78284154442040510e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_434)_ 1.78270322539882358e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_435)_ 1.78256522961755124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_436)_ 1.78242760886119562e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_437)_ 1.78229041775719850e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_438)_ 1.78215371395515874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_439)_ 1.78201755832218183e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_440)_ 1.78176372417229700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_441)_ 1.78149364876736698e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_442)_ 1.78122507994802568e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_443)_ 1.78095817010032036e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_444)_ 1.78069308067109731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_445)_ 1.78042998287529244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_446)_ 1.78016905848932048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_447)_ 1.77991066174279489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_448)_ 1.77965513682975001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_449)_ 1.77940239858158229e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_450)_ 1.77915268088487792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_451)_ 1.77890623411605482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_452)_ 1.77866332695201983e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_453)_ 1.77842424850908927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_454)_ 1.77818931089606345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_455)_ 1.77795881244998881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_456)_ 1.77773298241414821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_457)_ 1.77751240705283138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_458)_ 1.77729752975717297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_459)_ 1.77708884194258303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_460)_ 1.77688689297295426e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_461)_ 1.77669230348906559e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_462)_ 1.77650578383179649e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_463)_ 1.77632816040625450e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_464)_ 1.77616041505660682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_465)_ 1.77600374714703442e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_466)_ 1.77578937978563935e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_467)_ 1.77559511054649342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_468)_ 1.77542730010577223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_469)_ 1.77529365446462108e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_470)_ 1.77521616211081863e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_471)_ 1.77334014843127150e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_472)_ 1.77193294108828354e+01 OP @@ -11028,476 +11031,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_498)_ 1.56871625497990657e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_499)_ 1.37557983829949482e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_500)_ 9.01695775214311013e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_0)___ 2.57041131980371702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_1)___ 2.57041112533141352e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_2)___ 2.57041054191085969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_3)___ 2.57040956953112314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_4)___ 2.57040820817398199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_5)___ 2.57040645781392598e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_6)___ 2.57040431841815220e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_7)___ 2.57040178994656543e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_8)___ 2.57039887235177531e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_9)___ 2.57039556557909386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_10)__ 2.57039186956653296e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_11)__ 2.57038778424479943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_12)__ 2.57038330953729357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_13)__ 2.57037844536010418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_14)__ 2.57037319162200326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_15)__ 2.57036754822444209e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_16)__ 2.57036151506154553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_17)__ 2.57035509202010743e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_18)__ 2.57034827897958245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_19)__ 2.57034107581208175e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_20)__ 2.57033348238236563e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_21)__ 2.57032549854783454e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_22)__ 2.57031712415852418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_23)__ 2.57030835905709623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_24)__ 2.57029920307882911e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_25)__ 2.57028965605161055e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_26)__ 2.57027971779592797e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_27)__ 2.57026938812485852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_28)__ 2.57025866684405884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_29)__ 2.57024755375175644e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_30)__ 2.57023604863873665e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_31)__ 2.57022415128833259e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_32)__ 2.57021186147641316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_33)__ 2.57019917897137198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_34)__ 2.57018610353411354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_35)__ 2.57017263491804115e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_36)__ 2.57015877286904413e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_37)__ 2.57014451712548393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_38)__ 2.57012986741817926e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_39)__ 2.57011482347039255e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_40)__ 2.57009938499781505e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_41)__ 2.57008355170855118e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_42)__ 2.57006732330310328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_43)__ 2.57005069947435558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_44)__ 2.57003367990755649e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_45)__ 2.57001626428030363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_46)__ 2.56999845226252503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_47)__ 2.56998024351646173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_48)__ 2.56996163769664996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_49)__ 2.56994263444990239e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_50)__ 2.56992323341528888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_51)__ 2.56990343422411662e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_52)__ 2.56988323649991202e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_53)__ 2.56986263985839791e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_54)__ 2.56984164390747516e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_55)__ 2.56982024824719950e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_56)__ 2.56979845246976133e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_57)__ 2.56977625615946366e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_58)__ 2.56975365889269867e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_59)__ 2.56973066023792533e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_60)__ 2.56970725975564633e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_61)__ 2.56968345699838352e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_62)__ 2.56965925151065520e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_63)__ 2.56963464282894947e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_64)__ 2.56960963048170044e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_65)__ 2.56958421398926227e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_66)__ 2.56955839286388326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_67)__ 2.56953216660967882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_68)__ 2.56950553472260594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_69)__ 2.56947849669043400e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_70)__ 2.56945105199271744e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_71)__ 2.56942320010076912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_72)__ 2.56939494047762906e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_73)__ 2.56936627257803671e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_74)__ 2.56933719584840041e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_75)__ 2.56930770972676861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_76)__ 2.56927781364279753e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_77)__ 2.56924750701772062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_78)__ 2.56921678926431731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_79)__ 2.56918565978688136e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_80)__ 2.56915411798118676e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_81)__ 2.56912216323445541e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_82)__ 2.56908979492532410e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_83)__ 2.56905701242381070e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_84)__ 2.56902381509127800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_85)__ 2.56899020050470490e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_86)__ 2.56895616539217642e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_87)__ 2.56892171340490272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_88)__ 2.56888684386915287e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_89)__ 2.56885155610236140e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_90)__ 2.56881584941308887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_91)__ 2.56877972310098421e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_92)__ 2.56874317645674779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_93)__ 2.56870620876208946e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_94)__ 2.56866881928969129e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_95)__ 2.56863100730316702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_96)__ 2.56859277205702057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_97)__ 2.56855411279660544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_98)__ 2.56851502875808357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_99)__ 2.56847551916838164e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_100)_ 2.56843558324514980e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_101)_ 2.56839522019671769e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_102)_ 2.56835442922205104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_103)_ 2.56831320951070623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_104)_ 2.56827156024278658e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_105)_ 2.56822948058889651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_106)_ 2.56818696971009466e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_107)_ 2.56814402675784912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_108)_ 2.56810065087398876e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_109)_ 2.56805684119065525e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_110)_ 2.56801259683025691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_111)_ 2.56796791690541752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_112)_ 2.56792280051892838e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_113)_ 2.56787724676369784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_114)_ 2.56783125472270015e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_115)_ 2.56778482346892609e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_116)_ 2.56773795206532967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_117)_ 2.56769063956477588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_118)_ 2.56764288500998887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_119)_ 2.56759468743349757e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_120)_ 2.56754604585758237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_121)_ 2.56749695929421975e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_122)_ 2.56744742674502682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_123)_ 2.56739744720120697e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_124)_ 2.56734701964349199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_125)_ 2.56729614304208482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_126)_ 2.56724481635660382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_127)_ 2.56719303853602163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_128)_ 2.56714080851860871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_129)_ 2.56708812523187255e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_130)_ 2.56703498759249840e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_131)_ 2.56698149074348763e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_132)_ 2.56692772067787445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_133)_ 2.56687349531142566e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_134)_ 2.56681881352275099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_135)_ 2.56676367417938600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_136)_ 2.56670807613772638e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_137)_ 2.56665201824296503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_138)_ 2.56659549932902706e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_139)_ 2.56653851821850338e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_140)_ 2.56648107372258600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_141)_ 2.56642316464099984e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_142)_ 2.56636478976193629e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_143)_ 2.56630594786198394e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_144)_ 2.56624663770606176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_145)_ 2.56618685804734739e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_146)_ 2.56612660762720886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_147)_ 2.56606588517513288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_148)_ 2.56600468940865447e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_149)_ 2.56594301903328308e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_150)_ 2.56588087274243222e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_151)_ 2.56581824921734487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_152)_ 2.56575514712701853e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_153)_ 2.56569156512813237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_154)_ 2.56562750186497119e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_155)_ 2.56556295596934874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_156)_ 2.56549792606053195e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_157)_ 2.56543241074516288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_158)_ 2.56536640861718119e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_159)_ 2.56529991825774566e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_160)_ 2.56523293823515317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_161)_ 2.56516546710476092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_162)_ 2.56509750340890470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_163)_ 2.56502904567681753e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_164)_ 2.56494031690173152e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_165)_ 2.56483645172769847e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_166)_ 2.56473184098860223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_167)_ 2.56462648240524231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_168)_ 2.56452037367820012e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_169)_ 2.56441351248770886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_170)_ 2.56430589649352783e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_171)_ 2.56419752333481057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_172)_ 2.56408839062997522e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_173)_ 2.56397849597657341e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_174)_ 2.56386783695115597e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_175)_ 2.56375641110914216e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_176)_ 2.56364421598468262e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_177)_ 2.56353124909052461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_178)_ 2.56341750791787746e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_179)_ 2.56330298993627252e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_180)_ 2.56318769259342751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_181)_ 2.56307161331510471e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_182)_ 2.56295474950497422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_183)_ 2.56283709854446968e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_184)_ 2.56271865779264871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_185)_ 2.56259942458604932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_186)_ 2.56247939623854677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_187)_ 2.56235857004120824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_188)_ 2.56223694326214861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_189)_ 2.56211451314638374e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_190)_ 2.56199413211885805e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_191)_ 2.56191068890611007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_192)_ 2.56182669964751675e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_193)_ 2.56174216242669850e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_194)_ 2.56165707531123701e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_195)_ 2.56157143635257576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_196)_ 2.56148524358591771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_197)_ 2.56139849503012265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_198)_ 2.56131118868760446e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_199)_ 2.56122332254422922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_200)_ 2.56113489456921002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_201)_ 2.56104590271500427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_202)_ 2.56095634491720858e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_203)_ 2.56086621909445427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_204)_ 2.56077552314830399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_205)_ 2.56068425496314376e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_206)_ 2.56059241240607918e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_207)_ 2.56049999332682994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_208)_ 2.56040699555762288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_209)_ 2.56031341691308612e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_210)_ 2.56021925519014317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_211)_ 2.56012450816790533e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_212)_ 2.56002917360756683e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_213)_ 2.55990049493752814e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_214)_ 2.55975661830324341e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_215)_ 2.55961185565435976e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_216)_ 2.55946620354506571e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_217)_ 2.55931965850204435e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_218)_ 2.55917221702431377e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_219)_ 2.55902387558306970e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_220)_ 2.55887463062152634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_221)_ 2.55872447855475862e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_222)_ 2.55857341576954553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_223)_ 2.55842143862421132e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_224)_ 2.55826854344847163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_225)_ 2.55811472654327510e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_226)_ 2.55795998418065089e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_227)_ 2.55780431260355243e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_228)_ 2.55764770802570496e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_229)_ 2.55749016663145419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_230)_ 2.55733168457561391e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_231)_ 2.55717225798331675e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_232)_ 2.55701188294986537e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_233)_ 2.55679949306617900e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_234)_ 2.55658175988804821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_235)_ 2.55636273824485762e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_236)_ 2.55614242273570547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_237)_ 2.55592080791870160e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_238)_ 2.55569788831078526e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_239)_ 2.55547365838754175e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_240)_ 2.55524811258302229e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_241)_ 2.55502124528956891e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_242)_ 2.55479305085764317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_243)_ 2.55456352359565635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_244)_ 2.55433265776980498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_245)_ 2.55410044760391273e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_246)_ 2.55386688727927229e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_247)_ 2.55363197093449621e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_248)_ 2.55339569266537012e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_249)_ 2.55315804652471314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_250)_ 2.55293997324229451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_251)_ 2.55276176147694649e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_252)_ 2.55258252227126405e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_253)_ 2.55240225108815757e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_254)_ 2.55222094335823186e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_255)_ 2.55203859447971055e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_256)_ 2.55185519981836642e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_257)_ 2.55167075470745743e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_258)_ 2.55148525444766818e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_259)_ 2.55129869430705973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_260)_ 2.55111106952102453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_261)_ 2.55092237529224946e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_262)_ 2.55073260679068596e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_263)_ 2.55054175915352843e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_264)_ 2.55034982748520065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_265)_ 2.55015680685735013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_266)_ 2.54994962280344168e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_267)_ 2.54968602281386012e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_268)_ 2.54942093215416854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_269)_ 2.54915434399268648e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_270)_ 2.54888625145363505e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_271)_ 2.54861664761721585e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_272)_ 2.54834552551969935e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_273)_ 2.54807287815353298e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_274)_ 2.54779869846746791e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_275)_ 2.54752297936670047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_276)_ 2.54724571371303448e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_277)_ 2.54696689432506425e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_278)_ 2.54668651397837529e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_279)_ 2.54640456540576849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_280)_ 2.54612104129750740e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_281)_ 2.54583701598205572e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_282)_ 2.54555220889146554e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_283)_ 2.54526581461730075e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_284)_ 2.54497782573190854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_285)_ 2.54468823476696784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_286)_ 2.54439703421388934e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_287)_ 2.54410421652424290e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_288)_ 2.54380977411021760e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_289)_ 2.54351369934511418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_290)_ 2.54321598456386901e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_291)_ 2.54291662206361622e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_292)_ 2.54261560410428302e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_293)_ 2.54231292290922468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_294)_ 2.54200857066589947e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_295)_ 2.54170391801174311e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_296)_ 2.54139762611428068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_297)_ 2.54108964737642289e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_298)_ 2.54077997388646111e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_299)_ 2.54046859770095992e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_300)_ 2.54015551084569786e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_301)_ 2.53984070531666610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_302)_ 2.53952417308111471e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_303)_ 2.53920590607866039e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_304)_ 2.53888589622245036e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_305)_ 2.53856413540038943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_306)_ 2.53824061547642756e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_307)_ 2.53791436814732201e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_308)_ 2.53758359675810361e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_309)_ 2.53725102150322464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_310)_ 2.53691663407189480e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_311)_ 2.53658042613667867e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_312)_ 2.53624238935524495e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_313)_ 2.53590251537220084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_314)_ 2.53556079582101326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_315)_ 2.53521722232602578e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_316)_ 2.53487178650456677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_317)_ 2.53452447996916064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_318)_ 2.53417529432984274e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_319)_ 2.53378299878993865e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_320)_ 2.53334725396843581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_321)_ 2.53290915830840326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_322)_ 2.53246870147134082e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_323)_ 2.53202587313207061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_324)_ 2.53158066298247881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_325)_ 2.53113306073542859e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_326)_ 2.53068305612884785e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_327)_ 2.53023063893000248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_328)_ 2.52977579893995888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_329)_ 2.52931852599824580e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_330)_ 2.52885612396707700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_331)_ 2.52838516244161511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_332)_ 2.52791169090422869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_333)_ 2.52743569920978821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_334)_ 2.52695717727945386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_335)_ 2.52647611510683170e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_336)_ 2.52599250276439271e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_337)_ 2.52550633041017747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_338)_ 2.52501758829478646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_339)_ 2.52452626676867808e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_340)_ 2.52403235628978138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_341)_ 2.52354636589894419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_342)_ 2.52305856016732548e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_343)_ 2.52256819688488854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_344)_ 2.52207526722696542e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_345)_ 2.52157976251621712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_346)_ 2.52108167423221303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_347)_ 2.52058099402142481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_348)_ 2.52007771370764253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_349)_ 2.51957182530283994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_350)_ 2.51906332101850587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_351)_ 2.51845726716420302e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_352)_ 2.51783460202447351e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_353)_ 2.51720873976934989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_354)_ 2.51657967207596407e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_355)_ 2.51594739094122630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_356)_ 2.51531188869947080e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_357)_ 2.51467315804085843e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_358)_ 2.51403119203056029e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_359)_ 2.51338598412876308e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_360)_ 2.51277798955157650e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_361)_ 2.51222674423262049e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_362)_ 2.51167274236593165e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_363)_ 2.51111597994046640e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_364)_ 2.51055645337539133e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_365)_ 2.50999415954183505e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_366)_ 2.50942909578557476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_367)_ 2.50886125995069342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_368)_ 2.50829065040425299e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_369)_ 2.50766652416192954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_370)_ 2.50698696187656438e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_371)_ 2.50630412631829849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_372)_ 2.50561801834536020e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_373)_ 2.50492863959822785e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_374)_ 2.50423599253712013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_375)_ 2.50354008048110686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_376)_ 2.50284090764892007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_377)_ 2.50213847920153576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_378)_ 2.50143237492038395e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_379)_ 2.50072292181963078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_380)_ 2.50001023226320633e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_381)_ 2.49929431565234275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_382)_ 2.49857518257389586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_383)_ 2.49785284485544921e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_384)_ 2.49712731562285235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_385)_ 2.49639860936030402e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_386)_ 2.49561046173301442e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_387)_ 2.49475132276331557e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_388)_ 2.49388853129760619e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_389)_ 2.49302211138396608e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_390)_ 2.49215208905914167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_391)_ 2.49127849243983057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_392)_ 2.49040135181809106e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_393)_ 2.48952069976107779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_394)_ 2.48868820651193339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_395)_ 2.48792674289256901e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_396)_ 2.48716236318280934e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_397)_ 2.48639510406664783e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_398)_ 2.48562500467020833e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_399)_ 2.48485210667380976e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_400)_ 2.48407645442926714e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_401)_ 2.48329809508270216e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_402)_ 2.48243687393192545e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_403)_ 2.48152310803816007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_404)_ 2.48060637145502625e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_405)_ 2.47968673376527846e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_406)_ 2.47876426863513117e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_407)_ 2.47783905400394957e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_408)_ 2.47691117228325197e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_409)_ 2.47598070974795519e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_410)_ 2.47504772048183170e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_411)_ 2.47411234023355924e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_412)_ 2.47317467150344612e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_413)_ 2.47223482241902310e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_414)_ 2.47129290700263553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_415)_ 2.47034904545303284e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_416)_ 2.46940336444187061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_417)_ 2.46853345761722025e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_418)_ 2.46771966022696496e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_419)_ 2.46690466441204670e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_420)_ 2.46608860384169404e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_421)_ 2.46527161923156406e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_422)_ 2.46445385869520059e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_423)_ 2.46363547811603212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_424)_ 2.46278586981616030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_425)_ 2.46182928289419678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_426)_ 2.46087257719219892e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_427)_ 2.45991597594291207e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_428)_ 2.45895971405721454e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_429)_ 2.45800403874937032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_430)_ 2.45704921020456624e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_431)_ 2.45609550229276792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_432)_ 2.45526671653476001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_433)_ 2.45445316376422511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_434)_ 2.45364135031100865e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_435)_ 2.45283156446413102e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_436)_ 2.45202411003191614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_437)_ 2.45121930729556858e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_438)_ 2.45041749404521454e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_439)_ 2.44961853244487138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_440)_ 2.44882275624321721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_441)_ 2.44803110512873445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_442)_ 2.44724399989341208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_443)_ 2.44646188573033214e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_444)_ 2.44568523406967770e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_445)_ 2.44491454462855771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_446)_ 2.44415034771158943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_447)_ 2.44339429834406801e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_448)_ 2.44264616129487457e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_449)_ 2.44190630408682061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_450)_ 2.44117540800704660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_451)_ 2.44045420215124018e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_452)_ 2.43974346869070864e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_453)_ 2.43904404909728605e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_454)_ 2.43835685157684736e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_455)_ 2.43773546077891048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_456)_ 2.43718516596298471e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_457)_ 2.43664775657032884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_458)_ 2.43612430734908614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_459)_ 2.43561600946822026e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_460)_ 2.43512419464245617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_461)_ 2.43465036753842874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_462)_ 2.43419625057474214e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_463)_ 2.43376384803952952e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_464)_ 2.43335554185857177e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_465)_ 2.43296907081920182e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_466)_ 2.43254807759924390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_467)_ 2.43216990355699174e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_468)_ 2.43184326353432887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_469)_ 2.43158314331593211e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_0)___ 2.57122043507046705e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_1)___ 2.57122024032865006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_2)___ 2.57121965609951459e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_3)___ 2.57121868237200886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_4)___ 2.57121731912771168e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_5)___ 2.57121556634083248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_6)___ 2.57121342397820918e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_7)___ 2.57121089199930708e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_8)___ 2.57120797035621607e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_9)___ 2.57120465899364810e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_10)__ 2.57120095784893508e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_11)__ 2.57119686685202424e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_12)__ 2.57119238592547461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_13)__ 2.57118751498445377e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_14)__ 2.57118225393673150e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_15)__ 2.57117660268267727e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_16)__ 2.57117056111525208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_17)__ 2.57116412912000456e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_18)__ 2.57115730657506418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_19)__ 2.57115009335113456e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_20)__ 2.57114248931148666e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_21)__ 2.57113449431195065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_22)__ 2.57112610820090950e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_23)__ 2.57111733081928904e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_24)__ 2.57110816200055119e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_25)__ 2.57109860157068297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_26)__ 2.57108864934818868e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_27)__ 2.57107830514407851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_28)__ 2.57106756876185969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_29)__ 2.57105643999752580e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_30)__ 2.57104491863954330e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_31)__ 2.57103300446884404e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_32)__ 2.57102069725880895e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_33)__ 2.57100799677525984e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_34)__ 2.57099488038027744e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_35)__ 2.57098133335435932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_36)__ 2.57096739057564250e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_37)__ 2.57095305177840885e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_38)__ 2.57093831668927884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_39)__ 2.57092318502719408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_40)__ 2.57090765650340458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_41)__ 2.57089173082145095e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_42)__ 2.57087540767714984e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_43)__ 2.57085868675857547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_44)__ 2.57084156774604438e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_45)__ 2.57082405031209689e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_46)__ 2.57080613412148011e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_47)__ 2.57078781883112804e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_48)__ 2.57076910409014445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_49)__ 2.57074998953978238e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_50)__ 2.57073047481342591e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_51)__ 2.57071055953656824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_52)__ 2.57069024332679277e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_53)__ 2.57066952579375148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_54)__ 2.57064840653914253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_55)__ 2.57062688515669073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_56)__ 2.57060496123212268e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_57)__ 2.57058263434314576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_58)__ 2.57055990405942403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_59)__ 2.57053676994255511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_60)__ 2.57051323154604532e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_61)__ 2.57048928841528550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_62)__ 2.57046494008752617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_63)__ 2.57044018609185194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_64)__ 2.57041502594915414e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_65)__ 2.57038945917210739e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_66)__ 2.57036348526513976e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_67)__ 2.57033710372440609e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_68)__ 2.57031031403776176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_69)__ 2.57028311568473207e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_70)__ 2.57025550813648458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_71)__ 2.57022749085580031e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_72)__ 2.57019906329704284e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_73)__ 2.57017022490612774e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_74)__ 2.57014097512049418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_75)__ 2.57011131336907077e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_76)__ 2.57008123907224579e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_77)__ 2.57005075164183374e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_78)__ 2.57001985048104409e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_79)__ 2.56998853498444610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_80)__ 2.56995680453793689e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_81)__ 2.56992465851870584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_82)__ 2.56989209629520090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_83)__ 2.56985911722709197e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_84)__ 2.56982572066523716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_85)__ 2.56979190595164475e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_86)__ 2.56975767241943700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_87)__ 2.56972301939281245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_88)__ 2.56968794618700933e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_89)__ 2.56965245210826545e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_90)__ 2.56961653645378050e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_91)__ 2.56958019851167592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_92)__ 2.56954343756095547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_93)__ 2.56950625287146401e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_94)__ 2.56946864370384773e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_95)__ 2.56943060930951077e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_96)__ 2.56939214893057475e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_97)__ 2.56935326179983434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_98)__ 2.56931394714071608e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_99)__ 2.56927420416723251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_100)_ 2.56923403208393957e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_101)_ 2.56919343008588967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_102)_ 2.56915239735858805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_103)_ 2.56911093307794651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_104)_ 2.56906903641023483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_105)_ 2.56902670651203593e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_106)_ 2.56898393962001244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_107)_ 2.56894073286241458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_108)_ 2.56889709020648276e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_109)_ 2.56885301076940458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_110)_ 2.56880849365843282e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_111)_ 2.56876353797083432e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_112)_ 2.56871814279383948e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_113)_ 2.56867230720459041e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_114)_ 2.56862603027008731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_115)_ 2.56857931104713622e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_116)_ 2.56853214858229464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_117)_ 2.56848454191181794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_118)_ 2.56843649006160284e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_119)_ 2.56838799204713304e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_120)_ 2.56833904687342276e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_121)_ 2.56828965353495882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_122)_ 2.56823981101564520e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_123)_ 2.56818951828874198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_124)_ 2.56813877431680844e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_125)_ 2.56808757805164412e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_126)_ 2.56803592843422592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_127)_ 2.56798382439465058e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_128)_ 2.56793126485207068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_129)_ 2.56787824871463499e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_130)_ 2.56782477487942238e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_131)_ 2.56777084223238248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_132)_ 2.56771644964826784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_133)_ 2.56766159599057140e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_134)_ 2.56760628011146075e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_135)_ 2.56755050085171135e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_136)_ 2.56749425704063974e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_137)_ 2.56743754749603781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_138)_ 2.56738037102410139e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_139)_ 2.56732272641936490e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_140)_ 2.56726461246462918e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_141)_ 2.56720602793089299e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_142)_ 2.56714697157728011e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_143)_ 2.56708744215097049e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_144)_ 2.56702743838712522e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_145)_ 2.56696712991384608e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_146)_ 2.56690648892927555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_147)_ 2.56684537221333535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_148)_ 2.56678377845917254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_149)_ 2.56672170634760946e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_150)_ 2.56665915454706521e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_151)_ 2.56659612171347966e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_152)_ 2.56653260649023665e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_153)_ 2.56646860750808337e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_154)_ 2.56640412338505364e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_155)_ 2.56633915272638724e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_156)_ 2.56627369412444857e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_157)_ 2.56620774615864562e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_158)_ 2.56614130739534971e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_159)_ 2.56607437638780951e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_160)_ 2.56600695167607107e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_161)_ 2.56593903178689047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_162)_ 2.56587061523365101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_163)_ 2.56580170051627725e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_164)_ 2.56573228612114690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_165)_ 2.56566237052100590e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_166)_ 2.56559195217487961e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_167)_ 2.56552102952798329e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_168)_ 2.56544960101163468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_169)_ 2.56537766504316167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_170)_ 2.56530522002581343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_171)_ 2.56523226434866771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_172)_ 2.56515879638653921e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_173)_ 2.56508481449988572e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_174)_ 2.56501031703471511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_175)_ 2.56490324248465029e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_176)_ 2.56479027942553373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_177)_ 2.56467653774982125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_178)_ 2.56456201489604716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_179)_ 2.56444670828041836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_180)_ 2.56433061529666695e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_181)_ 2.56421373331590381e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_182)_ 2.56409605968646837e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_183)_ 2.56397759173378006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_184)_ 2.56385832676018737e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_185)_ 2.56373826204481539e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_186)_ 2.56361739484341342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_187)_ 2.56349572238820151e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_188)_ 2.56337324188771589e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_189)_ 2.56324995052665194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_190)_ 2.56312584546570861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_191)_ 2.56300092384143028e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_192)_ 2.56287518276604871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_193)_ 2.56274861932732279e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_194)_ 2.56262123058837901e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_195)_ 2.56249301358754877e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_196)_ 2.56236396533820781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_197)_ 2.56223408282861271e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_198)_ 2.56210336302173616e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_199)_ 2.56198103222566580e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_200)_ 2.56189196640394137e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_201)_ 2.56180233111351576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_202)_ 2.56171212424228578e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_203)_ 2.56162134366058254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_204)_ 2.56152998722105707e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_205)_ 2.56143805275856771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_206)_ 2.56134553809006604e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_207)_ 2.56125244101448111e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_208)_ 2.56115875931260746e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_209)_ 2.56106449074698617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_210)_ 2.56096963306179326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_211)_ 2.56087418398272142e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_212)_ 2.56077814121686558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_213)_ 2.56068150245260533e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_214)_ 2.56058426535948982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_215)_ 2.56048642758812051e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_216)_ 2.56038798677003498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_217)_ 2.56028894051758975e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_218)_ 2.56018928642384367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_219)_ 2.56008902206244109e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_220)_ 2.55998232778207750e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_221)_ 2.55983103370037099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_222)_ 2.55967881886894091e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_223)_ 2.55952567955332455e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_224)_ 2.55937161198925018e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_225)_ 2.55921661238246223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_226)_ 2.55906067690855075e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_227)_ 2.55890380171277876e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_228)_ 2.55874598290991067e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_229)_ 2.55858721658404242e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_230)_ 2.55842749878843136e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_231)_ 2.55826682554532816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_232)_ 2.55810519284580771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_233)_ 2.55794259664960428e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_234)_ 2.55777903288494493e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_235)_ 2.55761449744838636e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_236)_ 2.55744898620465158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_237)_ 2.55728249498646925e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_238)_ 2.55711501959441527e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_239)_ 2.55692829487713844e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_240)_ 2.55670093819331434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_241)_ 2.55647224389735932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_242)_ 2.55624220618034030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_243)_ 2.55601081918915831e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_244)_ 2.55577807702635269e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_245)_ 2.55554397374990963e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_246)_ 2.55530850337307527e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_247)_ 2.55507165986417064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_248)_ 2.55483343714641400e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_249)_ 2.55459382909774568e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_250)_ 2.55435282955066079e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_251)_ 2.55411043229204360e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_252)_ 2.55386663106301093e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_253)_ 2.55362141955875863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_254)_ 2.55337479142841914e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_255)_ 2.55312674027491830e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_256)_ 2.55290901088648745e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_257)_ 2.55272300296192114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_258)_ 2.55253592569744860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_259)_ 2.55234777421290282e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_260)_ 2.55215854359343233e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_261)_ 2.55196822888943657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_262)_ 2.55177682511650481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_263)_ 2.55158432725536244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_264)_ 2.55139073025182697e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_265)_ 2.55119602901677105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_266)_ 2.55100021842609372e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_267)_ 2.55080329332070050e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_268)_ 2.55060524850649593e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_269)_ 2.55040607875437928e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_270)_ 2.55020577880025847e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_271)_ 2.55000434334506885e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_272)_ 2.54973232275336983e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_273)_ 2.54945723287726125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_274)_ 2.54918058796608022e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_275)_ 2.54890238067611463e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_276)_ 2.54862260361681123e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_277)_ 2.54834124935090749e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_278)_ 2.54805831039458077e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_279)_ 2.54777377921762032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_280)_ 2.54748764824361871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_281)_ 2.54719990985018754e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_282)_ 2.54691055636919543e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_283)_ 2.54661958008703202e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_284)_ 2.54632697324489712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_285)_ 2.54603272803911480e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_286)_ 2.54573857165012711e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_287)_ 2.54544298783741105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_288)_ 2.54514575294214147e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_289)_ 2.54484685903748584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_290)_ 2.54454629815404196e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_291)_ 2.54424406228033710e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_292)_ 2.54394014336336127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_293)_ 2.54363453330914027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_294)_ 2.54332722398334674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_295)_ 2.54301820721194893e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_296)_ 2.54270747478190700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_297)_ 2.54239501844190663e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_298)_ 2.54208082990314495e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_299)_ 2.54176599033181070e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_300)_ 2.54144978455991790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_301)_ 2.54113182965002196e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_302)_ 2.54081211721123346e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_303)_ 2.54049063881999402e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_304)_ 2.54016738602117016e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_305)_ 2.53984235032921042e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_306)_ 2.53951552322936109e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_307)_ 2.53918689617895303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_308)_ 2.53885646060875274e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_309)_ 2.53852420792438700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_310)_ 2.53819012950784000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_311)_ 2.53785256359271010e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_312)_ 2.53751097775007075e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_313)_ 2.53716751919780990e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_314)_ 2.53682217914130987e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_315)_ 2.53647494877085720e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_316)_ 2.53612581926367753e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_317)_ 2.53577478178607123e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_318)_ 2.53542182749565157e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_319)_ 2.53506694754369235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_320)_ 2.53471013307758639e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_321)_ 2.53435137524342231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_322)_ 2.53398847605449582e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_323)_ 2.53354075385394459e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_324)_ 2.53309059977399151e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_325)_ 2.53263800291284547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_326)_ 2.53218295238539959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_327)_ 2.53172543732741246e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_328)_ 2.53126544689988791e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_329)_ 2.53080297029364694e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_330)_ 2.53033799673411721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_331)_ 2.52987051548633133e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_332)_ 2.52940051586015748e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_333)_ 2.52892661723340950e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_334)_ 2.52844251121511832e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_335)_ 2.52795580655898142e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_336)_ 2.52746649261248351e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_337)_ 2.52697455879924640e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_338)_ 2.52647999462595720e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_339)_ 2.52598278968960379e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_340)_ 2.52548293368502925e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_341)_ 2.52498041641282178e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_342)_ 2.52447522778755022e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_343)_ 2.52396809757173664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_344)_ 2.52346910664492583e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_345)_ 2.52296747608599219e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_346)_ 2.52246319657145328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_347)_ 2.52195625893509003e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_348)_ 2.52144665417836009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_349)_ 2.52093437348126166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_350)_ 2.52041940821367341e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_351)_ 2.51990174994718608e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_352)_ 2.51938139046745100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_353)_ 2.51882828882549887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_354)_ 2.51819104710810215e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_355)_ 2.51755050342332076e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_356)_ 2.51690664901636296e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_357)_ 2.51625947547703639e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_358)_ 2.51560897475906451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_359)_ 2.51495513920023868e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_360)_ 2.51429796154344807e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_361)_ 2.51363743495861982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_362)_ 2.51297762999293752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_363)_ 2.51241324575048637e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_364)_ 2.51184601386763013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_365)_ 2.51127593021428623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_366)_ 2.51070299112720470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_367)_ 2.51012719343393336e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_368)_ 2.50954853447782220e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_369)_ 2.50896701214412303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_370)_ 2.50838262488722705e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_371)_ 2.50775864738906513e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_372)_ 2.50706262010536989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_373)_ 2.50636321263578061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_374)_ 2.50566042619276033e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_375)_ 2.50495426284307072e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_376)_ 2.50424472554934070e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_377)_ 2.50353181821346560e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_378)_ 2.50281554572192384e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_379)_ 2.50209591399309943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_380)_ 2.50137245865493654e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_381)_ 2.50064558459902457e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_382)_ 2.49991537325092530e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_383)_ 2.49918183518126078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_384)_ 2.49844498226364173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_385)_ 2.49770482773618987e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_386)_ 2.49696138626582140e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_387)_ 2.49621467401542887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_388)_ 2.49537430932487716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_389)_ 2.49449391094560440e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_390)_ 2.49360975742926030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_391)_ 2.49272187552160958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_392)_ 2.49183029416644253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_393)_ 2.49093504460814614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_394)_ 2.49003616049900032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_395)_ 2.48913367801143295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_396)_ 2.48833737202543084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_397)_ 2.48755704059956138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_398)_ 2.48677372914968657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_399)_ 2.48598747841324794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_400)_ 2.48519833184311061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_401)_ 2.48440633573437637e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_402)_ 2.48361153935724879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_403)_ 2.48278310293879869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_404)_ 2.48184996116869669e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_405)_ 2.48091374889258844e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_406)_ 2.47997453914465495e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_407)_ 2.47903240932291595e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_408)_ 2.47808744139535158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_409)_ 2.47713972211631877e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_410)_ 2.47618934325384537e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_411)_ 2.47523636946239058e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_412)_ 2.47428092750225765e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_413)_ 2.47332313369518566e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_414)_ 2.47236310238291956e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_415)_ 2.47140095424516488e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_416)_ 2.47043681660755752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_417)_ 2.46947082376621836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_418)_ 2.46857386814706565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_419)_ 2.46774261126302399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_420)_ 2.46691014774297237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_421)_ 2.46607661977547998e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_422)_ 2.46524217716853471e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_423)_ 2.46440697773650292e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_424)_ 2.46357118771015529e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_425)_ 2.46269050614417218e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_426)_ 2.46171369636785862e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_427)_ 2.46073684347809660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_428)_ 2.45976018632491353e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_429)_ 2.45878397646862474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_430)_ 2.45780847887434675e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_431)_ 2.45683397265462169e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_432)_ 2.45588082545247630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_433)_ 2.45504926652243114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_434)_ 2.45421935239294200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_435)_ 2.45339137770530726e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_436)_ 2.45256565316717392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_437)_ 2.45174250654319117e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_438)_ 2.45092228373095189e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_439)_ 2.45010534993309079e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_440)_ 2.44929117251689057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_441)_ 2.44848094630210120e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_442)_ 2.44767523984407660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_443)_ 2.44687451030096099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_444)_ 2.44607924201329183e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_445)_ 2.44528994862587759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_446)_ 2.44450717546796135e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_447)_ 2.44373198522838457e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_448)_ 2.44296541048924958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_449)_ 2.44220719574474714e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_450)_ 2.44145804265463369e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_451)_ 2.44071870234816437e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_452)_ 2.43998998085605940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_453)_ 2.43927274552726701e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_454)_ 2.43856793268818990e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_455)_ 2.43789703112497200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_456)_ 2.43733245603536979e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_457)_ 2.43678101763207842e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_458)_ 2.43624382439293221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_459)_ 2.43572210485645719e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_460)_ 2.43521723243238526e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_461)_ 2.43473075872266307e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_462)_ 2.43426445957949085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_463)_ 2.43382040101563604e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_464)_ 2.43340103764151685e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_465)_ 2.43300936786758584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_466)_ 2.43257875957127823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_467)_ 2.43219022109298635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_468)_ 2.43185460021154434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_469)_ 2.43158730892924204e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_470)_ 2.43143232422163713e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_471)_ 2.42768029686254252e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_472)_ 2.42433235272070853e+01 OP @@ -11529,476 +11532,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_498)_ 1.72686501991962658e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_499)_ 1.61073314312430398e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_500)_ 1.03943400039871836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_0)__ 2.75211697970557552e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_1)__ 2.75211668799712044e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_2)__ 2.75211581286628970e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_3)__ 2.75211435429668470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_4)__ 2.75211231226097297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_5)__ 2.75210968672088860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_6)__ 2.75210647762722793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_7)__ 2.75210268491984777e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_8)__ 2.75209830852766295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_9)__ 2.75209334836864095e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_10)_ 2.75208780434979907e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_11)_ 2.75208167636719914e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_12)_ 2.75207496430594070e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_13)_ 2.75206766804015643e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_14)_ 2.75205978743300470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_15)_ 2.75205132233666276e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_16)_ 2.75204227259231828e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_17)_ 2.75203263803016078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_18)_ 2.75202241846937348e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_19)_ 2.75201161371812262e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_20)_ 2.75200022357354825e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_21)_ 2.75198824782175180e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_22)_ 2.75197568623778643e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_23)_ 2.75196253858564432e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_24)_ 2.75194880461824347e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_25)_ 2.75193448407741563e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_26)_ 2.75191957669389176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_27)_ 2.75190408218728741e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_28)_ 2.75188800026608824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_29)_ 2.75187133062763500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_30)_ 2.75185407295810514e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_31)_ 2.75183622693249887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_32)_ 2.75181779221461973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_33)_ 2.75179876845705778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_34)_ 2.75177915530117012e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_35)_ 2.75175895237706172e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_36)_ 2.75173815930356618e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_37)_ 2.75171677568822588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_38)_ 2.75169480112726852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_39)_ 2.75167223520558863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_40)_ 2.75164907749672238e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_41)_ 2.75162532756282658e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_42)_ 2.75160098495465490e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_43)_ 2.75157604921153300e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_44)_ 2.75155051986133472e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_45)_ 2.75152439642045508e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_46)_ 2.75149767839378718e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_47)_ 2.75147036527469240e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_48)_ 2.75144245654497475e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_49)_ 2.75141395167485356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_50)_ 2.75138485012293295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_51)_ 2.75135515133617474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_52)_ 2.75132485474986765e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_53)_ 2.75129395978759668e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_54)_ 2.75126246586121219e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_55)_ 2.75123037237079906e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_56)_ 2.75119767870464216e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_57)_ 2.75116438423919547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_58)_ 2.75113048833904799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_59)_ 2.75109599035688781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_60)_ 2.75106088963346949e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_61)_ 2.75102518549757527e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_62)_ 2.75098887726598278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_63)_ 2.75095196424342419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_64)_ 2.75091444572255064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_65)_ 2.75087632098389321e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_66)_ 2.75083758929582451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_67)_ 2.75079824991451822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_68)_ 2.75075830208390890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_69)_ 2.75071774503565081e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_70)_ 2.75067657798907632e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_71)_ 2.75063480015115367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_72)_ 2.75059241071644323e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_73)_ 2.75054940886705452e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_74)_ 2.75050579377260043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_75)_ 2.75046156459015272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_76)_ 2.75041672046419592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_77)_ 2.75037126052658074e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_78)_ 2.75032518389647613e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_79)_ 2.75027848968032202e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_80)_ 2.75023117697177959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_81)_ 2.75018324485168257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_82)_ 2.75013469238798614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_83)_ 2.75008551863571604e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_84)_ 2.75003572263691680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_85)_ 2.74998530075705716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_86)_ 2.74993424808826461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_87)_ 2.74988257010735389e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_88)_ 2.74983026580372929e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_89)_ 2.74977733415354209e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_90)_ 2.74972377411963294e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_91)_ 2.74966958465147648e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_92)_ 2.74961476468512132e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_93)_ 2.74955931314313382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_94)_ 2.74950322893453674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_95)_ 2.74944651095475017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_96)_ 2.74938915808553048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_97)_ 2.74933116919490814e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_98)_ 2.74927254313712481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_99)_ 2.74921327875257191e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_100)_ 2.74915337486772451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_101)_ 2.74909283029507669e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_102)_ 2.74903164383307654e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_103)_ 2.74896981426605933e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_104)_ 2.74890734036417967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_105)_ 2.74884422088334439e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_106)_ 2.74878045456514180e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_107)_ 2.74871604013677349e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_108)_ 2.74865097631098294e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_109)_ 2.74858526178598268e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_110)_ 2.74851889524538535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_111)_ 2.74845187535812627e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_112)_ 2.74838420077839238e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_113)_ 2.74831587014554621e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_114)_ 2.74824688208404986e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_115)_ 2.74817723520338895e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_116)_ 2.74810692809799413e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_117)_ 2.74803595934716327e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_118)_ 2.74796432751498294e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_119)_ 2.74789203115024598e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_120)_ 2.74781906878637336e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_121)_ 2.74774543894132890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_122)_ 2.74767114011754003e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_123)_ 2.74759617080181044e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_124)_ 2.74752052946523762e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_125)_ 2.74744421456312722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_126)_ 2.74736722453490536e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_127)_ 2.74728955780403190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_128)_ 2.74721121277791269e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_129)_ 2.74713218784780864e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_130)_ 2.74705248138874722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_131)_ 2.74696298148697480e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_132)_ 2.74685544135574879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_133)_ 2.74674699062285086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_134)_ 2.74663762704550187e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_135)_ 2.74652734835877155e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_136)_ 2.74641615227545230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_137)_ 2.74630403648592996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_138)_ 2.74619099865805367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_139)_ 2.74607703643700667e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_140)_ 2.74596214744517191e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_141)_ 2.74584632928199959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_142)_ 2.74572957952387213e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_143)_ 2.74561189572396778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_144)_ 2.74549327541212342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_145)_ 2.74537371609469467e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_146)_ 2.74525321525441761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_147)_ 2.74513177035026565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_148)_ 2.74500937881730849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_149)_ 2.74488603806656606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_150)_ 2.74476174548486469e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_151)_ 2.74463649843468964e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_152)_ 2.74451029425403661e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_153)_ 2.74438313025626464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_154)_ 2.74425500372994229e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_155)_ 2.74412591193869737e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_156)_ 2.74399585212106381e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_157)_ 2.74386482149032602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_158)_ 2.74373281723436264e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_159)_ 2.74359983651549122e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_160)_ 2.74346587647030624e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_161)_ 2.74333093420952210e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_162)_ 2.74319500681781001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_163)_ 2.74305809135363496e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_164)_ 2.74294031690173163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_165)_ 2.74283645172769859e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_166)_ 2.74273184098860234e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_167)_ 2.74262648240524243e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_168)_ 2.74252037367820023e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_169)_ 2.74241351248770897e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_170)_ 2.74230589649352794e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_171)_ 2.74219752333481068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_172)_ 2.74208839062997534e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_173)_ 2.74197849597657317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_174)_ 2.74186783695115608e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_175)_ 2.74175641110914228e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_176)_ 2.74164421598468238e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_177)_ 2.74153124909052472e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_178)_ 2.74141750791787722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_179)_ 2.74130298993627264e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_180)_ 2.74118769259342727e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_181)_ 2.74107161331510483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_182)_ 2.74095474950497398e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_183)_ 2.74083709854446944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_184)_ 2.74071865779264847e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_185)_ 2.74059942458604944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_186)_ 2.74047939623854653e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_187)_ 2.74035857004120800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_188)_ 2.74023694326214837e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_189)_ 2.74011451314638350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_190)_ 2.73998826423771575e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_191)_ 2.73982137781221944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_192)_ 2.73965339929503351e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_193)_ 2.73948432485339666e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_194)_ 2.73931415062247403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_195)_ 2.73914287270515153e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_196)_ 2.73897048717183509e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_197)_ 2.73879699006024460e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_198)_ 2.73862237737520857e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_199)_ 2.73844664508845810e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_200)_ 2.73826978913841970e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_201)_ 2.73809180543000821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_202)_ 2.73791268983441647e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_203)_ 2.73773243818890855e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_204)_ 2.73755104629660764e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_205)_ 2.73736850992628682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_206)_ 2.73718482481215801e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_207)_ 2.73699998665365953e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_208)_ 2.73681399111524541e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_209)_ 2.73662683382617224e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_210)_ 2.73643851038028600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_211)_ 2.73624901633581068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_212)_ 2.73605834721513332e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_213)_ 2.73583415822921339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_214)_ 2.73559436383873837e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_215)_ 2.73535309275726597e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_216)_ 2.73511033924177624e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_217)_ 2.73486609750340683e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_218)_ 2.73462036170718967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_219)_ 2.73437312597178277e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_220)_ 2.73412438436921015e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_221)_ 2.73387413092459752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_222)_ 2.73362235961590869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_223)_ 2.73336906437368548e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_224)_ 2.73311423908078588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_225)_ 2.73285787757212510e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_226)_ 2.73259997363441798e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_227)_ 2.73234052100592031e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_228)_ 2.73207951337617487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_229)_ 2.73181694438575704e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_230)_ 2.73155280762602324e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_231)_ 2.73128709663886085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_232)_ 2.73101980491644198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_233)_ 2.73079949306617884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_234)_ 2.73058175988804805e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_235)_ 2.73036273824485747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_236)_ 2.73014242273570531e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_237)_ 2.72992080791870144e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_238)_ 2.72969788831078510e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_239)_ 2.72947365838754159e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_240)_ 2.72924811258302213e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_241)_ 2.72902124528956875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_242)_ 2.72879305085764301e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_243)_ 2.72856352359565619e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_244)_ 2.72833265776980483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_245)_ 2.72810044760391257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_246)_ 2.72786688727927213e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_247)_ 2.72763197093449605e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_248)_ 2.72739569266536996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_249)_ 2.72715804652471299e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_250)_ 2.72689995540382419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_251)_ 2.72660293579491047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_252)_ 2.72630420378543974e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_253)_ 2.72600375181359560e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_254)_ 2.72570157226371954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_255)_ 2.72539765746618414e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_256)_ 2.72509199969727725e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_257)_ 2.72478459117909537e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_258)_ 2.72447542407944674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_259)_ 2.72416449051176564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_260)_ 2.72385178253504030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_261)_ 2.72353729215374862e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_262)_ 2.72322101131780983e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_263)_ 2.72290293192254751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_264)_ 2.72258304580866763e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_265)_ 2.72226134476224999e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_266)_ 2.72193702850430199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_267)_ 2.72160752851732504e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_268)_ 2.72127616519271065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_269)_ 2.72094292999085781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_270)_ 2.72060781431704406e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_271)_ 2.72027080952152005e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_272)_ 2.71993190689962425e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_273)_ 2.71959109769191620e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_274)_ 2.71924837308433496e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_275)_ 2.71890372420837565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_276)_ 2.71855714214129343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_277)_ 2.71820861790633046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_278)_ 2.71785814247296891e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_279)_ 2.71750570675721086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_280)_ 2.71715130162188423e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_281)_ 2.71679626997756962e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_282)_ 2.71644026111433163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_283)_ 2.71608226827162582e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_284)_ 2.71572228216488547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_285)_ 2.71536029345870986e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_286)_ 2.71499629276736165e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_287)_ 2.71463027065530369e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_288)_ 2.71426221763777207e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_289)_ 2.71389212418139252e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_290)_ 2.71351998070483624e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_291)_ 2.71314577757952016e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_292)_ 2.71276950513035366e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_293)_ 2.71239115363653092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_294)_ 2.71201071333237458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_295)_ 2.71162989751467869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_296)_ 2.71124703264285074e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_297)_ 2.71086205922052841e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_298)_ 2.71047496735807663e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_299)_ 2.71008574712619961e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_300)_ 2.70969438855712248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_301)_ 2.70930088164583260e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_302)_ 2.70890521635139336e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_303)_ 2.70850738259832546e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_304)_ 2.70810737027806319e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_305)_ 2.70770516925048703e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_306)_ 2.70730076934553452e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_307)_ 2.70687155222098355e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_308)_ 2.70637539513715559e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_309)_ 2.70587653225483713e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_310)_ 2.70537495110784256e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_311)_ 2.70487063920501853e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_312)_ 2.70436358403286761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_313)_ 2.70385377305830126e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_314)_ 2.70334119373152006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_315)_ 2.70282583348903884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_316)_ 2.70230767975684998e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_317)_ 2.70178671995374131e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_318)_ 2.70126294149476429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_319)_ 2.70073959854792669e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_320)_ 2.70021670476212314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_321)_ 2.69969098997008388e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_322)_ 2.69916244176560909e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_323)_ 2.69863104775848477e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_324)_ 2.69809679557897475e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_325)_ 2.69755967288251419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_326)_ 2.69701966735461731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_327)_ 2.69647676671600287e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_328)_ 2.69593095872795061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_329)_ 2.69538223119789500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_330)_ 2.69482734876049257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_331)_ 2.69426219492993830e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_332)_ 2.69369402908507460e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_333)_ 2.69312283905174574e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_334)_ 2.69254861273534480e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_335)_ 2.69197133812819800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_336)_ 2.69139100331727157e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_337)_ 2.69080759649221299e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_338)_ 2.69022110595374393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_339)_ 2.68963152012241409e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_340)_ 2.68903882754773775e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_341)_ 2.68845563907873313e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_342)_ 2.68787027220079047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_343)_ 2.68728183626186627e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_344)_ 2.68669032067235882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_345)_ 2.68609571501946043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_346)_ 2.68549800907865581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_347)_ 2.68489719282570967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_348)_ 2.68429325644917078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_349)_ 2.68368619036340768e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_350)_ 2.68307598522220658e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_351)_ 2.68245726716420272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_352)_ 2.68183460202447321e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_353)_ 2.68120873976934995e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_354)_ 2.68057967207596413e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_355)_ 2.67994739094122600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_356)_ 2.67931188869947086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_357)_ 2.67867315804085848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_358)_ 2.67803119203056035e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_359)_ 2.67738598412876314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_360)_ 2.67673358746189187e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_361)_ 2.67607209307914466e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_362)_ 2.67540729083911799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_363)_ 2.67473917592855983e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_364)_ 2.67406774405046974e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_365)_ 2.67339299145020242e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_366)_ 2.67271491494269000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_367)_ 2.67203351194083218e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_368)_ 2.67134878048510380e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_369)_ 2.67066652416192980e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_370)_ 2.66998696187656464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_371)_ 2.66930412631829874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_372)_ 2.66861801834536010e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_373)_ 2.66792863959822775e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_374)_ 2.66723599253712003e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_375)_ 2.66654008048110676e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_376)_ 2.66584090764891997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_377)_ 2.66513847920153566e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_378)_ 2.66443237492038385e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_379)_ 2.66372292181963068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_380)_ 2.66301023226320623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_381)_ 2.66229431565234265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_382)_ 2.66157518257389576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_383)_ 2.66085284485544911e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_384)_ 2.66012731562285225e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_385)_ 2.65939860936030392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_386)_ 2.65866611005686941e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_387)_ 2.65792970522569902e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_388)_ 2.65719016968366226e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_389)_ 2.65644752404339961e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_390)_ 2.65570179062212119e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_391)_ 2.65495299351985459e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_392)_ 2.65420115870122082e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_393)_ 2.65344631408092404e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_394)_ 2.65274017209327795e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_395)_ 2.65210561907714073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_396)_ 2.65146863598567428e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_397)_ 2.65082925338887314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_398)_ 2.65018750389184028e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_399)_ 2.64954342222817516e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_400)_ 2.64889704535772275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_401)_ 2.64824841256891865e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_402)_ 2.64751732051307940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_403)_ 2.64673409260413735e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_404)_ 2.64594831839002254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_405)_ 2.64516005751309571e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_406)_ 2.64436937311582696e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_407)_ 2.64357633200338569e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_408)_ 2.64278100481421596e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_409)_ 2.64198346549824734e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_410)_ 2.64118376041299854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_411)_ 2.64038200591447918e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_412)_ 2.63957828986009666e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_413)_ 2.63877270493059122e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_414)_ 2.63796534885940162e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_415)_ 2.63715632467402799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_416)_ 2.63634574095017449e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_417)_ 2.63561121468101689e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_418)_ 2.63493305018913730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_419)_ 2.63425388701003875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_420)_ 2.63357383653474493e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_421)_ 2.63289301602630310e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_422)_ 2.63221154891266700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_423)_ 2.63152956509669345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_424)_ 2.63084704986868587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_425)_ 2.63016377349585504e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_426)_ 2.62948041228014198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_427)_ 2.62879712567350872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_428)_ 2.62811408146943890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_429)_ 2.62743145624955012e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_430)_ 2.62674943586040470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_431)_ 2.62606821592340580e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_432)_ 2.62538893044563366e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_433)_ 2.62471096980352101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_434)_ 2.62403445859250724e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_435)_ 2.62335963705344284e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_436)_ 2.62268675835993008e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_437)_ 2.62201608941297408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_438)_ 2.62134791170434553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_439)_ 2.62074568829658077e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_440)_ 2.62021517082881168e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_441)_ 2.61968740341915662e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_442)_ 2.61916266659560826e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_443)_ 2.61864125715355485e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_444)_ 2.61812348937978534e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_445)_ 2.61760969641903856e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_446)_ 2.61710023180772637e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_447)_ 2.61659619889604542e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_448)_ 2.61609744086324980e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_449)_ 2.61560420272454728e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_450)_ 2.61511693867136437e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_451)_ 2.61463613476749330e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_452)_ 2.61416231246047239e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_453)_ 2.61369603273152400e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_454)_ 2.61323790105123166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_455)_ 2.61278836862312858e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_456)_ 2.61234813277038782e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_457)_ 2.61191820525626319e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_458)_ 2.61149944587926903e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_459)_ 2.61109280757457611e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_460)_ 2.61069935571396492e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_461)_ 2.61032029403074297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_462)_ 2.60995700045979397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_463)_ 2.60961107843162381e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_464)_ 2.60928443348685768e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_465)_ 2.60897938054613441e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_466)_ 2.60869871839949603e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_467)_ 2.60844660237132793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_468)_ 2.60822884235621935e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_469)_ 2.60805542887728805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_0)__ 2.75333065260570073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_1)__ 2.75333036049297490e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_2)__ 2.75332948414927188e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_3)__ 2.75332802355801327e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_4)__ 2.75332597869156750e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_5)__ 2.75332334951124835e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_6)__ 2.75332013596731358e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_7)__ 2.75331633799896025e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_8)__ 2.75331195553432373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_9)__ 2.75330698849047231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_10)_ 2.75330143677340260e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_11)_ 2.75329530027803635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_12)_ 2.75328857888821190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_13)_ 2.75328127247668064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_14)_ 2.75327338090509741e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_15)_ 2.75326490402401589e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_16)_ 2.75325584167287793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_17)_ 2.75324619368000683e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_18)_ 2.75323595986259626e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_19)_ 2.75322514002670182e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_20)_ 2.75321373396722962e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_21)_ 2.75320174146792596e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_22)_ 2.75318916230136423e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_23)_ 2.75317599622893354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_24)_ 2.75316224300082695e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_25)_ 2.75314790235602445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_26)_ 2.75313297402228265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_27)_ 2.75311745771611776e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_28)_ 2.75310135314278988e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_29)_ 2.75308465999628851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_30)_ 2.75306737795931511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_31)_ 2.75304950670326569e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_32)_ 2.75303104588821341e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_33)_ 2.75301199516288939e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_34)_ 2.75299232057041614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_35)_ 2.75297200003153897e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_36)_ 2.75295108586346373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_37)_ 2.75292957766761361e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_38)_ 2.75290747503391806e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_39)_ 2.75288477754079111e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_40)_ 2.75286148475510686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_41)_ 2.75283759623217676e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_42)_ 2.75281311151572474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_43)_ 2.75278803013786302e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_44)_ 2.75276235161906619e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_45)_ 2.75273607546814532e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_46)_ 2.75270920118222016e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_47)_ 2.75268172824669186e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_48)_ 2.75265365613521631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_49)_ 2.75262498430967355e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_50)_ 2.75259571222013868e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_51)_ 2.75256583930485235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_52)_ 2.75253536499018914e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_53)_ 2.75250428869062702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_54)_ 2.75247260980871360e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_55)_ 2.75244032773503591e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_56)_ 2.75240744184818382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_57)_ 2.75237395151471844e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_58)_ 2.75233985608913621e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_59)_ 2.75230515491383265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_60)_ 2.75226984731906796e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_61)_ 2.75223393262292824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_62)_ 2.75219741013128925e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_63)_ 2.75216027913777772e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_64)_ 2.75212253892373120e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_65)_ 2.75208418875816108e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_66)_ 2.75204522789770927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_67)_ 2.75200565558660912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_68)_ 2.75196547105664244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_69)_ 2.75192467352709791e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_70)_ 2.75188326220472703e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_71)_ 2.75184123628370045e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_72)_ 2.75179859494556389e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_73)_ 2.75175533735919160e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_74)_ 2.75171146268074089e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_75)_ 2.75166697005360597e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_76)_ 2.75162185860836850e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_77)_ 2.75157612746275078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_78)_ 2.75152977572156630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_79)_ 2.75148280247666932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_80)_ 2.75143520680690550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_81)_ 2.75138698777805892e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_82)_ 2.75133814444280098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_83)_ 2.75128867584063777e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_84)_ 2.75123858099785572e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_85)_ 2.75118785892746693e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_86)_ 2.75113650862915513e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_87)_ 2.75108452908921883e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_88)_ 2.75103191928051416e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_89)_ 2.75097867816239834e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_90)_ 2.75092480468067073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_91)_ 2.75087029776751386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_92)_ 2.75081515634143301e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_93)_ 2.75075937930719618e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_94)_ 2.75070296555577158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_95)_ 2.75064591396426614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_96)_ 2.75058822339586193e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_97)_ 2.75052989269975150e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_98)_ 2.75047092071107393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_99)_ 2.75041130625084875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_100)_ 2.75035104812590916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_101)_ 2.75029014512883414e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_102)_ 2.75022859603788206e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_103)_ 2.75016639961691958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_104)_ 2.75010355461535205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_105)_ 2.75004005976805388e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_106)_ 2.74997590943001882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_107)_ 2.74991109929362167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_108)_ 2.74984563530972395e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_109)_ 2.74977951615410667e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_110)_ 2.74971274048764869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_111)_ 2.74964530695625093e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_112)_ 2.74957721419075902e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_113)_ 2.74950846080688542e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_114)_ 2.74943904540513060e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_115)_ 2.74936896657070413e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_116)_ 2.74929822287344194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_117)_ 2.74922681286772672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_118)_ 2.74915473509240371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_119)_ 2.74908198807069901e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_120)_ 2.74900857031013359e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_121)_ 2.74893448030243803e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_122)_ 2.74885971652346761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_123)_ 2.74878427743311242e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_124)_ 2.74870816147521246e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_125)_ 2.74863136707746563e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_126)_ 2.74855389265133851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_127)_ 2.74847573659197550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_128)_ 2.74839689727810601e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_129)_ 2.74831737307195212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_130)_ 2.74823716231913338e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_131)_ 2.74815626334857335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_132)_ 2.74807467447240121e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_133)_ 2.74799239398585691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_134)_ 2.74790942016719093e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_135)_ 2.74782575127756665e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_136)_ 2.74774138556095942e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_137)_ 2.74765632124405634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_138)_ 2.74757055653615190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_139)_ 2.74748408962904698e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_140)_ 2.74739691869694376e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_141)_ 2.74730904189633875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_142)_ 2.74722045736591980e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_143)_ 2.74713116322645519e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_144)_ 2.74704115758068745e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_145)_ 2.74693425982769206e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_146)_ 2.74681297785855065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_147)_ 2.74669074442666989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_148)_ 2.74656755691834498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_149)_ 2.74644341269521881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_150)_ 2.74631830909412997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_151)_ 2.74619224342695922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_152)_ 2.74606521298047284e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_153)_ 2.74593721501616628e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_154)_ 2.74580824677010717e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_155)_ 2.74567830545277438e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_156)_ 2.74554738824889668e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_157)_ 2.74541549231729149e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_158)_ 2.74528261479069897e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_159)_ 2.74514875277561892e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_160)_ 2.74501390335214168e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_161)_ 2.74487806357378084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_162)_ 2.74474123046730227e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_163)_ 2.74460340103255405e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_164)_ 2.74446457224229370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_165)_ 2.74432474104201205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_166)_ 2.74418390434975947e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_167)_ 2.74404205905596683e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_168)_ 2.74389920202326927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_169)_ 2.74375533008632360e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_170)_ 2.74361044005162711e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_171)_ 2.74346452869733568e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_172)_ 2.74331759277307832e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_173)_ 2.74316962899977135e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_174)_ 2.74302063406943084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_175)_ 2.74290324248465041e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_176)_ 2.74279027942553384e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_177)_ 2.74267653774982101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_178)_ 2.74256201489604727e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_179)_ 2.74244670828041812e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_180)_ 2.74233061529666706e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_181)_ 2.74221373331590392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_182)_ 2.74209605968646848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_183)_ 2.74197759173378017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_184)_ 2.74185832676018748e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_185)_ 2.74173826204481514e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_186)_ 2.74161739484341318e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_187)_ 2.74149572238820163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_188)_ 2.74137324188771601e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_189)_ 2.74124995052665206e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_190)_ 2.74112584546570837e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_191)_ 2.74100092384143039e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_192)_ 2.74087518276604882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_193)_ 2.74074861932732290e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_194)_ 2.74062123058837876e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_195)_ 2.74049301358754853e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_196)_ 2.74036396533820756e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_197)_ 2.74023408282861247e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_198)_ 2.74010336302173592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_199)_ 2.73996206445133090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_200)_ 2.73978393280788275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_201)_ 2.73960466222703154e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_202)_ 2.73942424848457158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_203)_ 2.73924268732116474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_204)_ 2.73905997444211380e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_205)_ 2.73887610551713507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_206)_ 2.73869107618013139e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_207)_ 2.73850488202896223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_208)_ 2.73831751862521422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_209)_ 2.73812898149397199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_210)_ 2.73793926612358618e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_211)_ 2.73774836796544285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_212)_ 2.73755628243373081e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_213)_ 2.73736300490520996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_214)_ 2.73716853071897894e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_215)_ 2.73697285517624032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_216)_ 2.73677597354006927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_217)_ 2.73657788103517881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_218)_ 2.73637857284768664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_219)_ 2.73617804412488184e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_220)_ 2.73597054630346221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_221)_ 2.73571838950061839e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_222)_ 2.73546469811490134e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_223)_ 2.73520946592220753e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_224)_ 2.73495268664874978e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_225)_ 2.73469435397076985e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_226)_ 2.73443446151425107e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_227)_ 2.73417300285463121e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_228)_ 2.73390997151651760e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_229)_ 2.73364536097340398e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_230)_ 2.73337916464738555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_231)_ 2.73311137590887974e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_232)_ 2.73284198807634588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_233)_ 2.73257099441600673e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_234)_ 2.73229838814157482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_235)_ 2.73202416241397685e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_236)_ 2.73174831034108578e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_237)_ 2.73147082497744869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_238)_ 2.73119169932402528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_239)_ 2.73092829487713828e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_240)_ 2.73070093819331419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_241)_ 2.73047224389735916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_242)_ 2.73024220618034015e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_243)_ 2.73001081918915816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_244)_ 2.72977807702635253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_245)_ 2.72954397374990947e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_246)_ 2.72930850337307511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_247)_ 2.72907165986417048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_248)_ 2.72883343714641384e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_249)_ 2.72859382909774553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_250)_ 2.72835282955066063e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_251)_ 2.72811043229204344e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_252)_ 2.72786663106301077e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_253)_ 2.72762141955875848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_254)_ 2.72737479142841899e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_255)_ 2.72712674027491815e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_256)_ 2.72684835147747897e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_257)_ 2.72653833826986833e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_258)_ 2.72622654282908101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_259)_ 2.72591295702150411e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_260)_ 2.72559757265571996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_261)_ 2.72528038148239418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_262)_ 2.72496137519417445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_263)_ 2.72464054542560383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_264)_ 2.72431788375304507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_265)_ 2.72399338169461842e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_266)_ 2.72366703071015586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_267)_ 2.72333882220116763e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_268)_ 2.72300874751082631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_269)_ 2.72267679792396535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_270)_ 2.72234296466709758e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_271)_ 2.72200723890844820e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_272)_ 2.72166540344171182e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_273)_ 2.72132154109657627e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_274)_ 2.72097573495760017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_275)_ 2.72062797584514335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_276)_ 2.72027825452101411e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_277)_ 2.71992656168863434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_278)_ 2.71957288799322612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_279)_ 2.71921722402202555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_280)_ 2.71885956030452363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_281)_ 2.71849988731273449e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_282)_ 2.71813819546149418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_283)_ 2.71777447510879000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_284)_ 2.71740871655612146e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_285)_ 2.71704091004889356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_286)_ 2.71667321456265896e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_287)_ 2.71630373479676415e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_288)_ 2.71593219117767681e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_289)_ 2.71555857379685719e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_290)_ 2.71518287269255261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_291)_ 2.71480507785042136e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_292)_ 2.71442517920420130e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_293)_ 2.71404316663642540e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_294)_ 2.71365902997918305e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_295)_ 2.71327275901493614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_296)_ 2.71288434347738345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_297)_ 2.71249377305238326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_298)_ 2.71210103737893071e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_299)_ 2.71170748791476335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_300)_ 2.71131223069989744e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_301)_ 2.71091478706252751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_302)_ 2.71051514651404162e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_303)_ 2.71011329852499223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_304)_ 2.70970923252646294e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_305)_ 2.70930293791151300e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_306)_ 2.70889440403670143e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_307)_ 2.70848362022369145e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_308)_ 2.70807057576094117e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_309)_ 2.70765525990548390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_310)_ 2.70723766188480006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_311)_ 2.70677884538906532e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_312)_ 2.70626646662510630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_313)_ 2.70575127879671484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_314)_ 2.70523326871196517e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_315)_ 2.70471242315628579e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_316)_ 2.70418872889551629e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_317)_ 2.70366217267910685e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_318)_ 2.70313274124347771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_319)_ 2.70260042131553888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_320)_ 2.70206519961637994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_321)_ 2.70152706286513364e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_322)_ 2.70098617126539544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_323)_ 2.70044890462473397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_324)_ 2.69990871972878992e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_325)_ 2.69936560349541494e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_326)_ 2.69881954286247954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_327)_ 2.69827052479289513e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_328)_ 2.69771853627986538e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_329)_ 2.69716356435237650e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_330)_ 2.69660559608094061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_331)_ 2.69604461858359734e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_332)_ 2.69548061903218894e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_333)_ 2.69491194068009143e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_334)_ 2.69433101345814201e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_335)_ 2.69374696787077781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_336)_ 2.69315979113498045e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_337)_ 2.69256947055909599e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_338)_ 2.69197599355114896e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_339)_ 2.69137934762752487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_340)_ 2.69077952042203528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_341)_ 2.69017649969538617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_342)_ 2.68957027334506051e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_343)_ 2.68896171708608414e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_344)_ 2.68836292797391110e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_345)_ 2.68776097130319087e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_346)_ 2.68715583588574383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_347)_ 2.68654751072210800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_348)_ 2.68593598501403186e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_349)_ 2.68532124817751381e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_350)_ 2.68470328985640769e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_351)_ 2.68408209993662332e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_352)_ 2.68345766856094095e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_353)_ 2.68282828882549857e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_354)_ 2.68219104710810186e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_355)_ 2.68155050342332046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_356)_ 2.68090664901636266e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_357)_ 2.68025947547703609e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_358)_ 2.67960897475906457e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_359)_ 2.67895513920023873e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_360)_ 2.67829796154344812e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_361)_ 2.67763743495861988e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_362)_ 2.67697315599152503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_363)_ 2.67629589490058351e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_364)_ 2.67561521664115638e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_365)_ 2.67493111625714342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_366)_ 2.67424358935264586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_367)_ 2.67355263212072032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_368)_ 2.67285824137338679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_369)_ 2.67216041457294793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_370)_ 2.67145914986467261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_371)_ 2.67075864738906539e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_372)_ 2.67006262010537014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_373)_ 2.66936321263578087e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_374)_ 2.66866042619276023e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_375)_ 2.66795426284307062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_376)_ 2.66724472554934096e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_377)_ 2.66653181821346550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_378)_ 2.66581554572192374e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_379)_ 2.66509591399309933e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_380)_ 2.66437245865493644e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_381)_ 2.66364558459902447e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_382)_ 2.66291537325092520e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_383)_ 2.66218183518126068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_384)_ 2.66144498226364163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_385)_ 2.66070482773618977e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_386)_ 2.65996138626582130e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_387)_ 2.65921467401542877e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_388)_ 2.65846369370703748e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_389)_ 2.65770906652480363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_390)_ 2.65695122065365155e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_391)_ 2.65619017901852246e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_392)_ 2.65542596642837943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_393)_ 2.65465860966412528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_394)_ 2.65388813757057171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_395)_ 2.65311458115265673e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_396)_ 2.65244781002119261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_397)_ 2.65179753383296806e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_398)_ 2.65114477429140543e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_399)_ 2.65048956534437359e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_400)_ 2.64983194320259230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_401)_ 2.64917194644531371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_402)_ 2.64850961613104090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_403)_ 2.64781408823325641e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_404)_ 2.64701425243031174e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_405)_ 2.64621178476507595e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_406)_ 2.64540674783827576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_407)_ 2.64459920799107095e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_408)_ 2.64378923548173006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_409)_ 2.64297690467113036e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_410)_ 2.64216229421758158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_411)_ 2.64134545953919186e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_412)_ 2.64052650928764940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_413)_ 2.63970554316730173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_414)_ 2.63888265918535971e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_415)_ 2.63805796078156973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_416)_ 2.63723155709219199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_417)_ 2.63640356322818690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_418)_ 2.63564489012255478e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_419)_ 2.63495217605251995e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_420)_ 2.63425845645247669e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_421)_ 2.63356384981290006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_422)_ 2.63286848097377870e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_423)_ 2.63217248144708549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_424)_ 2.63147598975846257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_425)_ 2.63077893296012277e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_426)_ 2.63008121169132778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_427)_ 2.62938345962721201e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_428)_ 2.62868584737493833e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_429)_ 2.62798855462044614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_430)_ 2.62729177062453338e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_431)_ 2.62659569475330166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_432)_ 2.62590068787706379e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_433)_ 2.62520772210202615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_434)_ 2.62451612699411854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_435)_ 2.62382614808775614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_436)_ 2.62313804430597841e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_437)_ 2.62245208878599279e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_438)_ 2.62176856977579327e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_439)_ 2.62108779161090908e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_440)_ 2.62052744834459368e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_441)_ 2.61998729753473434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_442)_ 2.61945015989605139e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_443)_ 2.61891634020064075e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_444)_ 2.61838616134219464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_445)_ 2.61785996575058526e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_446)_ 2.61733811697864098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_447)_ 2.61682132348558980e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_448)_ 2.61631027365949969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_449)_ 2.61580479716316496e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_450)_ 2.61530536176975588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_451)_ 2.61481246823210967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_452)_ 2.61432665390403969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_453)_ 2.61384849701817785e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_454)_ 2.61337862179212657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_455)_ 2.61291762489997765e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_456)_ 2.61246596482829574e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_457)_ 2.61202481410566278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_458)_ 2.61159505951434596e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_459)_ 2.61117768388516573e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_460)_ 2.61077378594590819e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_461)_ 2.61038460697813051e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_462)_ 2.61001156766359266e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_463)_ 2.60965632081250902e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_464)_ 2.60932083011321367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_465)_ 2.60900749429406886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_466)_ 2.60871917304751904e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_467)_ 2.60846014739532421e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_468)_ 2.60823640014102978e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_469)_ 2.60805820595282789e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_470)_ 2.60795488281442474e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_471)_ 2.60545353124169523e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_472)_ 2.60339941163242514e+01 OP @@ -12030,476 +12033,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_498)_ 1.85900551394373856e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_499)_ 1.77955216357063293e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_500)_ 9.56367475234246989e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_0)__ 3.46352829950929220e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_1)__ 3.46352781332853397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_2)__ 3.46352635477714941e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_3)__ 3.46352392382780749e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_4)__ 3.46352052043495462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_5)__ 3.46351614453481460e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_6)__ 3.46351079604538015e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_7)__ 3.46350447486641286e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_8)__ 3.46349718087943828e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_9)__ 3.46348891394773446e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_10)_ 3.46347967391633205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_11)_ 3.46346946061199787e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_12)_ 3.46345827384323428e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_13)_ 3.46344611340026063e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_14)_ 3.46343297905500762e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_15)_ 3.46341887056110451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_16)_ 3.46340378765386347e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_17)_ 3.46338773005026823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_18)_ 3.46337069744895558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_19)_ 3.46335268953020474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_20)_ 3.46333370595591319e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_21)_ 3.46331374636958600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_22)_ 3.46329281039631027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_23)_ 3.46327089764274021e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_24)_ 3.46324800769707224e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_25)_ 3.46322414012902584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_26)_ 3.46319929448981938e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_27)_ 3.46317347031214524e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_28)_ 3.46314666711014709e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_29)_ 3.46311888437939146e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_30)_ 3.46309012159684144e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_31)_ 3.46306037822083113e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_32)_ 3.46302965369103291e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_33)_ 3.46299794742842977e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_34)_ 3.46296525883528332e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_35)_ 3.46293158729510253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_36)_ 3.46289693217261032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_37)_ 3.46286129281370947e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_38)_ 3.46282466854544779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_39)_ 3.46278705867598049e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_40)_ 3.46274846249453674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_41)_ 3.46270887927137778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_42)_ 3.46266830825775784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_43)_ 3.46262674868588860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_44)_ 3.46258419976889087e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_45)_ 3.46254066070075837e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_46)_ 3.46249613065631223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_47)_ 3.46245060879115414e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_48)_ 3.46240409424162436e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_49)_ 3.46235658612475561e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_50)_ 3.46230808353822184e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_51)_ 3.46225858556029138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_52)_ 3.46220809124977933e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_53)_ 3.46215659964599425e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_54)_ 3.46210410976868701e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_55)_ 3.46205062061799822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_56)_ 3.46199613117440350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_57)_ 3.46194064039865950e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_58)_ 3.46188414723174702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_59)_ 3.46182665059481351e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_60)_ 3.46176814938911548e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_61)_ 3.46170864249595880e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_62)_ 3.46164812877663763e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_63)_ 3.46158660707237331e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_64)_ 3.46152407620425109e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_65)_ 3.46146053497315549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_66)_ 3.46139598215970778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_67)_ 3.46133041652419706e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_68)_ 3.46126383680651486e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_69)_ 3.46119624172608411e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_70)_ 3.46112762998179377e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_71)_ 3.46105800025192281e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_72)_ 3.46098735119407266e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_73)_ 3.46091568144509125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_74)_ 3.46084298962100121e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_75)_ 3.46076927431692098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_76)_ 3.46069453410699310e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_77)_ 3.46061876754430102e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_78)_ 3.46054197316079382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_79)_ 3.46046414946720304e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_80)_ 3.46038529495296672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_81)_ 3.46030540808613836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_82)_ 3.46022448731331025e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_83)_ 3.46014253105952676e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_84)_ 3.46005953772819481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_85)_ 3.45997550126176208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_86)_ 3.45989041348044140e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_87)_ 3.45980428351225626e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_88)_ 3.45971710967288217e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_89)_ 3.45962889025590314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_90)_ 3.45953962353272146e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_91)_ 3.45944930775246036e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_92)_ 3.45935794114186876e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_93)_ 3.45926552190522330e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_94)_ 3.45917204822422804e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_95)_ 3.45907751825791721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_96)_ 3.45898193014255071e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_97)_ 3.45888528199151324e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_98)_ 3.45878757189520840e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_99)_ 3.45868879792095356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_100)_ 3.45858895811287397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_101)_ 3.45848805049179404e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_102)_ 3.45838607305512724e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_103)_ 3.45828302377676522e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_104)_ 3.45817890060696627e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_105)_ 3.45807370147224091e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_106)_ 3.45796742427523682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_107)_ 3.45786006689462297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_108)_ 3.45775162718497100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_109)_ 3.45764210297663794e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_110)_ 3.45753149207564192e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_111)_ 3.45741979226354346e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_112)_ 3.45730700129732043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_113)_ 3.45719311690924371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_114)_ 3.45707813680675002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_115)_ 3.45696205867231470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_116)_ 3.45684488016332310e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_117)_ 3.45672659891193845e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_118)_ 3.45660721252497112e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_119)_ 3.45648671858374357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_120)_ 3.45636511464395539e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_121)_ 3.45624239823554831e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_122)_ 3.45611856686256687e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_123)_ 3.45599361800301708e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_124)_ 3.45586754910872926e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_125)_ 3.45574035760521170e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_126)_ 3.45561204089150849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_127)_ 3.45548259634005319e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_128)_ 3.45535202129652106e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_129)_ 3.45522031307968120e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_130)_ 3.45508746898124528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_131)_ 3.45495372685871800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_132)_ 3.45481930169468541e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_133)_ 3.45468373827856325e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_134)_ 3.45454703380687747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_135)_ 3.45440918544846483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_136)_ 3.45427019034431524e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_137)_ 3.45413004560741257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_138)_ 3.45398874832256695e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_139)_ 3.45384629554625846e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_140)_ 3.45370268430646519e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_141)_ 3.45355791160249979e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_142)_ 3.45341197440484038e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_143)_ 3.45326486965496002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_144)_ 3.45311659426515405e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_145)_ 3.45296714511836811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_146)_ 3.45281651906802196e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_147)_ 3.45266471293783184e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_148)_ 3.45251172352163564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_149)_ 3.45235754758320752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_150)_ 3.45220218185608090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_151)_ 3.45204562304336164e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_152)_ 3.45188786781754615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_153)_ 3.45172891282033092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_154)_ 3.45156875466242781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_155)_ 3.45140738992337148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_156)_ 3.45124481515132970e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_157)_ 3.45108102686290721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_158)_ 3.45091602154295316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_159)_ 3.45074979564436362e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_160)_ 3.45058234558788257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_161)_ 3.45041366776190301e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_162)_ 3.45024375852226228e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_163)_ 3.45007261419204383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_164)_ 3.44988063380346333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_165)_ 3.44967290345539723e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_166)_ 3.44946368197720474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_167)_ 3.44925296481048491e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_168)_ 3.44904074735640052e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_169)_ 3.44882702497541800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_170)_ 3.44861179298705594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_171)_ 3.44839504666962142e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_172)_ 3.44817678125995073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_173)_ 3.44795699195314640e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_174)_ 3.44773567390231221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_175)_ 3.44751282221828461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_176)_ 3.44728843196936481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_177)_ 3.44706249818104951e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_178)_ 3.44683501583575449e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_179)_ 3.44660597987254533e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_180)_ 3.44637538518685460e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_181)_ 3.44614322663020971e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_182)_ 3.44590949900994801e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_183)_ 3.44567419708893894e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_184)_ 3.44543731558529700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_185)_ 3.44519884917209893e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_186)_ 3.44495879247709311e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_187)_ 3.44471714008241605e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_188)_ 3.44447388652429680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_189)_ 3.44422902629276706e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_190)_ 3.44398533029714429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_191)_ 3.44377672226527451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_192)_ 3.44356674911879139e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_193)_ 3.44335540606674613e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_194)_ 3.44314268827809258e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_195)_ 3.44292859088143928e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_196)_ 3.44271310896479363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_197)_ 3.44249623757530614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_198)_ 3.44227797171901102e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_199)_ 3.44205830636057257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_200)_ 3.44183723642302439e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_201)_ 3.44161475678751003e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_202)_ 3.44139086229302080e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_203)_ 3.44116554773613572e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_204)_ 3.44093880787075932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_205)_ 3.44071063740785874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_206)_ 3.44048103101519729e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_207)_ 3.44024998331707437e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_208)_ 3.44001748889405690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_209)_ 3.43978354228271499e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_210)_ 3.43954813797535763e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_211)_ 3.43931127041976339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_212)_ 3.43907293401891678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_213)_ 3.43883415822921350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_214)_ 3.43859436383873884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_215)_ 3.43835309275726573e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_216)_ 3.43811033924177636e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_217)_ 3.43786609750340730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_218)_ 3.43762036170718943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_219)_ 3.43737312597178288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_220)_ 3.43712438436921062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_221)_ 3.43687413092459764e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_222)_ 3.43662235961590881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_223)_ 3.43636906437368594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_224)_ 3.43611423908078635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_225)_ 3.43585787757212557e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_226)_ 3.43559997363441809e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_227)_ 3.43534052100592078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_228)_ 3.43507951337617499e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_229)_ 3.43481694438575715e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_230)_ 3.43455280762602371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_231)_ 3.43428709663886167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_232)_ 3.43401980491644210e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_233)_ 3.43374936633272441e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_234)_ 3.43347719986006084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_235)_ 3.43320342280607278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_236)_ 3.43292802841963152e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_237)_ 3.43265100989837677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_238)_ 3.43237236038848224e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_239)_ 3.43209207298442749e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_240)_ 3.43181014072877772e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_241)_ 3.43152655661196135e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_242)_ 3.43124131357205400e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_243)_ 3.43095440449457030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_244)_ 3.43066582221225644e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_245)_ 3.43037555950489050e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_246)_ 3.43008360909908987e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_247)_ 3.42978996366812012e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_248)_ 3.42949461583171242e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_249)_ 3.42919755815589156e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_250)_ 3.42891996432305959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_251)_ 3.42868234863592818e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_252)_ 3.42844336302835160e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_253)_ 3.42820300145087629e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_254)_ 3.42796125781097558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_255)_ 3.42771812597294740e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_256)_ 3.42747359975782189e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_257)_ 3.42722767294327610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_258)_ 3.42698033926355734e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_259)_ 3.42673159240941274e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_260)_ 3.42648142602803247e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_261)_ 3.42622983372299927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_262)_ 3.42597680905424795e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_263)_ 3.42572234553803767e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_264)_ 3.42546643664693420e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_265)_ 3.42520907580979994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_266)_ 3.42493702850430211e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_267)_ 3.42460752851732479e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_268)_ 3.42427616519271112e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_269)_ 3.42394292999085792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_270)_ 3.42360781431704382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_271)_ 3.42327080952152016e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_272)_ 3.42293190689962401e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_273)_ 3.42259109769191667e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_274)_ 3.42224837308433507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_275)_ 3.42190372420837576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_276)_ 3.42155714214129318e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_277)_ 3.42120861790633057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_278)_ 3.42085814247296938e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_279)_ 3.42050570675721062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_280)_ 3.42015130162188470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_281)_ 3.41979626997756938e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_282)_ 3.41944026111433175e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_283)_ 3.41908226827162594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_284)_ 3.41872228216488523e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_285)_ 3.41836029345870998e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_286)_ 3.41799629276736212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_287)_ 3.41763027065530380e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_288)_ 3.41726221763777218e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_289)_ 3.41689212418139263e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_290)_ 3.41651998070483600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_291)_ 3.41614577757951992e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_292)_ 3.41576950513035342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_293)_ 3.41539115363653067e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_294)_ 3.41501071333237434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_295)_ 3.41470391801174245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_296)_ 3.41439762611428037e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_297)_ 3.41408964737642293e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_298)_ 3.41377997388646079e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_299)_ 3.41346859770095961e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_300)_ 3.41315551084569790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_301)_ 3.41284070531666615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_302)_ 3.41252417308111475e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_303)_ 3.41220590607866043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_304)_ 3.41188589622245004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_305)_ 3.41156413540038912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_306)_ 3.41124061547642725e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_307)_ 3.41091436814732205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_308)_ 3.41058359675810365e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_309)_ 3.41025102150322468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_310)_ 3.40991663407189520e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_311)_ 3.40958042613667871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_312)_ 3.40924238935524500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_313)_ 3.40890251537220053e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_314)_ 3.40856079582101330e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_315)_ 3.40821722232602582e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_316)_ 3.40787178650456681e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_317)_ 3.40752447996916104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_318)_ 3.40717529432984279e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_319)_ 3.40682639903195081e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_320)_ 3.40647780317474869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_321)_ 3.40612732664672251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_322)_ 3.40577496117707312e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_323)_ 3.40542069850565667e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_324)_ 3.40506453038598309e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_325)_ 3.40470644858834319e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_326)_ 3.40434644490307861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_327)_ 3.40398451114400231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_328)_ 3.40362063915196700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_329)_ 3.40325482079859682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_330)_ 3.40285612396707720e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_331)_ 3.40238516244161531e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_332)_ 3.40191169090422889e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_333)_ 3.40143569920978805e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_334)_ 3.40095717727945370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_335)_ 3.40047611510683154e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_336)_ 3.39999250276439255e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_337)_ 3.39950633041017696e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_338)_ 3.39901758829478595e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_339)_ 3.39852626676867828e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_340)_ 3.39803235628978086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_341)_ 3.39772781953936658e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_342)_ 3.39743513610039471e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_343)_ 3.39714091813093333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_344)_ 3.39684516033617925e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_345)_ 3.39654785750973005e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_346)_ 3.39624900453932810e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_347)_ 3.39594859641285467e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_348)_ 3.39564662822458558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_349)_ 3.39534309518170403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_350)_ 3.39503799261110331e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_351)_ 3.39463817810946864e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_352)_ 3.39422306801631564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_353)_ 3.39380582651290013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_354)_ 3.39338644805064291e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_355)_ 3.39296492729415107e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_356)_ 3.39254125913298026e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_357)_ 3.39211543869390582e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_358)_ 3.39168746135370682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_359)_ 3.39125732275250868e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_360)_ 3.39082239164126094e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_361)_ 3.39038139538609613e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_362)_ 3.38993819389274478e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_363)_ 3.38949278395237314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_364)_ 3.38904516270031309e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_365)_ 3.38859532763346820e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_366)_ 3.38814327662845969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_367)_ 3.38768900796055448e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_368)_ 3.38723252032340199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_369)_ 3.38677768277461979e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_370)_ 3.38632464125104278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_371)_ 3.38586941754553195e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_372)_ 3.38541201223023975e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_373)_ 3.38495242639881866e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_374)_ 3.38449066169141304e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_375)_ 3.38402672032073752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_376)_ 3.38356060509928014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_377)_ 3.38309231946769060e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_378)_ 3.38262158328025606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_379)_ 3.38214861454642062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_380)_ 3.38167348817547051e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_381)_ 3.38119621043489502e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_382)_ 3.38071678838259686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_383)_ 3.38023522990363290e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_384)_ 3.37975154374856785e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_385)_ 3.37926573957353611e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_386)_ 3.37877740670457953e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_387)_ 3.37828647015046570e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_388)_ 3.37779344645577453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_389)_ 3.37729834936226609e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_390)_ 3.37680119374808072e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_391)_ 3.37630199567990275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_392)_ 3.37580077246748047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_393)_ 3.37529754272061595e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_394)_ 3.37484410325596684e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_395)_ 3.37446337144628430e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_396)_ 3.37408118159140429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_397)_ 3.37369755203332389e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_398)_ 3.37331250233510431e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_399)_ 3.37292605333690503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_400)_ 3.37253822721463337e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_401)_ 3.37214904754135105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_402)_ 3.37167821367538636e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_403)_ 3.37115606173609166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_404)_ 3.37063221226001488e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_405)_ 3.37010670500873033e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_406)_ 3.36957958207721759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_407)_ 3.36905088800225698e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_408)_ 3.36852066987614407e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_409)_ 3.36798897699883142e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_410)_ 3.36745584027533198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_411)_ 3.36692133727631955e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_412)_ 3.36638552657339787e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_413)_ 3.36584846995372757e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_414)_ 3.36531023257293427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_415)_ 3.36477088311601875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_416)_ 3.36423049396678309e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_417)_ 3.36361121468101700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_418)_ 3.36293305018913742e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_419)_ 3.36225388701003922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_420)_ 3.36157383653474540e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_421)_ 3.36089301602630357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_422)_ 3.36021154891266747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_423)_ 3.35952956509669391e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_424)_ 3.35887763989494914e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_425)_ 3.35833101879668448e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_426)_ 3.35778432982411417e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_427)_ 3.35723770053880699e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_428)_ 3.35669126517555085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_429)_ 3.35614516499963997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_430)_ 3.35559954868832335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_431)_ 3.35505457273872452e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_432)_ 3.35438893044563287e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_433)_ 3.35371096980352092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_434)_ 3.35303445859250715e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_435)_ 3.35235963705344275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_436)_ 3.35168675835993000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_437)_ 3.35101608941297400e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_438)_ 3.35034791170434545e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_439)_ 3.34961853244487102e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_440)_ 3.34882275624321721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_441)_ 3.34803110512873445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_442)_ 3.34724399989341208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_443)_ 3.34646188573033214e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_444)_ 3.34568523406967770e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_445)_ 3.34491454462855700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_446)_ 3.34415034771158872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_447)_ 3.34349524862005651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_448)_ 3.34287180107906181e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_449)_ 3.34225525340568410e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_450)_ 3.34164617333920546e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_451)_ 3.34104516845936672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_452)_ 3.34045289057559032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_453)_ 3.33987004091440483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_454)_ 3.33929737631403967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_455)_ 3.33862964509047515e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_456)_ 3.33785923234817901e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_457)_ 3.33710685919846100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_458)_ 3.33637403028872086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_459)_ 3.33566241325550834e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_460)_ 3.33497387249943884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_461)_ 3.33431051455380043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_462)_ 3.33367475080463933e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_463)_ 3.33306938725534181e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_464)_ 3.33249775860200046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_465)_ 3.33196391595573544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_466)_ 3.33147275719911846e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_467)_ 3.33103155414982339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_468)_ 3.33065047412338373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_469)_ 3.33034700053525441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_0)__ 3.46566130521140110e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_1)__ 3.46566072098594944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_2)__ 3.46565896829854339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_3)__ 3.46565604711602617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_4)__ 3.46565195738313463e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_5)__ 3.46564669902249634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_6)__ 3.46564027193462678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_7)__ 3.46563267599792013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_8)__ 3.46562391106864709e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_9)__ 3.46561397698094424e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_10)_ 3.46560287354680554e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_11)_ 3.46559060055607233e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_12)_ 3.46557715777642343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_13)_ 3.46556254495336091e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_14)_ 3.46554676181019445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_15)_ 3.46552980804803141e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_16)_ 3.46551168334575550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_17)_ 3.46549238736001328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_18)_ 3.46547191972519215e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_19)_ 3.46545028005340328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_20)_ 3.46542746793445886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_21)_ 3.46540348293585154e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_22)_ 3.46537832460272810e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_23)_ 3.46535199245786742e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_24)_ 3.46532448600165353e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_25)_ 3.46529580471204852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_26)_ 3.46526594804456494e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_27)_ 3.46523491543223514e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_28)_ 3.46520270628557938e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_29)_ 3.46516931999257665e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_30)_ 3.46513475591862985e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_31)_ 3.46509901340653101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_32)_ 3.46506209177642646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_33)_ 3.46502399032577841e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_34)_ 3.46498720095069359e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_35)_ 3.46495333338589830e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_36)_ 3.46491847643910589e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_37)_ 3.46488262944602212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_38)_ 3.46484579172319656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_39)_ 3.46480796256798484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_40)_ 3.46476914125851110e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_41)_ 3.46472932705362737e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_42)_ 3.46468851919287388e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_43)_ 3.46464671689643779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_44)_ 3.46460391936511058e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_45)_ 3.46456012578024186e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_46)_ 3.46451533530369957e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_47)_ 3.46446954707781956e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_48)_ 3.46442276022536078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_49)_ 3.46437497384945559e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_50)_ 3.46432618703356425e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_51)_ 3.46427639884142025e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_52)_ 3.46422560831698192e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_53)_ 3.46417381448437780e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_54)_ 3.46412101634785614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_55)_ 3.46406721289172594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_56)_ 3.46401240308030651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_57)_ 3.46395658585786421e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_58)_ 3.46389976014855989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_59)_ 3.46384192485638778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_60)_ 3.46378307886511294e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_61)_ 3.46372322103821375e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_62)_ 3.46366235021881579e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_63)_ 3.46360046522962932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_64)_ 3.46353756487288535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_65)_ 3.46347364793026813e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_66)_ 3.46340871316284833e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_67)_ 3.46334275931101487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_68)_ 3.46327578509440386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_69)_ 3.46320778921182963e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_70)_ 3.46313877034121163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_71)_ 3.46306872713950114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_72)_ 3.46299765824260675e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_73)_ 3.46292556226531900e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_74)_ 3.46285243780123508e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_75)_ 3.46277828342267640e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_76)_ 3.46270309768061395e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_77)_ 3.46262687910458453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_78)_ 3.46254962620261040e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_79)_ 3.46247133746111544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_80)_ 3.46239201134484205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_81)_ 3.46231164629676442e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_82)_ 3.46223024073800190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_83)_ 3.46214779306773011e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_84)_ 3.46206430166309289e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_85)_ 3.46197976487911205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_86)_ 3.46189418104859215e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_87)_ 3.46180754848203094e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_88)_ 3.46171986546752350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_89)_ 3.46163113027066345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_90)_ 3.46154134113445124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_91)_ 3.46145049627918979e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_92)_ 3.46135859390238849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_93)_ 3.46126563217866021e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_94)_ 3.46117160925961898e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_95)_ 3.46107652327377693e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_96)_ 3.46098037232643634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_97)_ 3.46088315449958586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_98)_ 3.46078486785179038e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_99)_ 3.46068551041808163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_100)_ 3.46058508020984874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_101)_ 3.46048357521472383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_102)_ 3.46038099339647047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_103)_ 3.46027733269486575e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_104)_ 3.46017259102558725e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_105)_ 3.46006676628009018e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_106)_ 3.45995984905003127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_107)_ 3.45985183215603627e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_108)_ 3.45974272551620672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_109)_ 3.45963252692351162e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_110)_ 3.45952123414608153e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_111)_ 3.45940884492708491e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_112)_ 3.45929535698459816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_113)_ 3.45918076801147549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_114)_ 3.45906507567521828e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_115)_ 3.45894827761784072e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_116)_ 3.45883037145573695e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_117)_ 3.45871135477954468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_118)_ 3.45859122515400657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_119)_ 3.45846998011783171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_120)_ 3.45834761718355637e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_121)_ 3.45822413383739686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_122)_ 3.45809952753911247e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_123)_ 3.45797379572185406e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_124)_ 3.45784693579202127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_125)_ 3.45771894512910976e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_126)_ 3.45758982108556410e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_127)_ 3.45745956098662575e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_128)_ 3.45732816213017671e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_129)_ 3.45719562178658677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_130)_ 3.45706193719855577e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_131)_ 3.45692710558095584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_132)_ 3.45679112412066871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_133)_ 3.45665398997642797e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_134)_ 3.45651570027865134e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_135)_ 3.45637625212927730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_136)_ 3.45623564260159952e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_137)_ 3.45609386874009346e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_138)_ 3.45595092756025295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_139)_ 3.45580681604841189e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_140)_ 3.45566153116157295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_141)_ 3.45551506982723140e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_142)_ 3.45536742894319957e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_143)_ 3.45521860537742569e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_144)_ 3.45506859596781197e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_145)_ 3.45491782478461502e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_146)_ 3.45476622232318817e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_147)_ 3.45461343053333749e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_148)_ 3.45445944614793135e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_149)_ 3.45430426586902328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_150)_ 3.45414788636766232e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_151)_ 3.45399030428369898e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_152)_ 3.45383151622559055e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_153)_ 3.45367151877020788e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_154)_ 3.45351030846263427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_155)_ 3.45334788181596792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_156)_ 3.45318423531112089e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_157)_ 3.45301936539661440e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_158)_ 3.45285326848837357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_159)_ 3.45268594096952341e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_160)_ 3.45251737919017714e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_161)_ 3.45234757946722581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_162)_ 3.45217653808412734e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_163)_ 3.45200425129069259e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_164)_ 3.45183071530286725e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_165)_ 3.45165592630251510e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_166)_ 3.45147988043719920e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_167)_ 3.45130257381995875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_168)_ 3.45112400252908671e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_169)_ 3.45094416260790453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_170)_ 3.45076305006453410e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_171)_ 3.45058066087166964e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_172)_ 3.45039699096634820e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_173)_ 3.45021203624971449e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_174)_ 3.45002579258678850e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_175)_ 3.44980648496930087e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_176)_ 3.44958055885106774e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_177)_ 3.44935307549964207e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_178)_ 3.44912402979209460e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_179)_ 3.44889341656083630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_180)_ 3.44866123059333418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_181)_ 3.44842746663180790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_182)_ 3.44819211937293701e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_183)_ 3.44795518346756040e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_184)_ 3.44771665352037502e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_185)_ 3.44747652408963035e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_186)_ 3.44723478968682642e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_187)_ 3.44699144477640331e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_188)_ 3.44674648377543207e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_189)_ 3.44649990105330417e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_190)_ 3.44625169093141679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_191)_ 3.44600184768286084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_192)_ 3.44575036553209770e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_193)_ 3.44549723865464586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_194)_ 3.44524246117675759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_195)_ 3.44498602717509712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_196)_ 3.44472793067641518e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_197)_ 3.44446816565722500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_198)_ 3.44420672604347189e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_199)_ 3.44395258056416367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_200)_ 3.44372991600985330e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_201)_ 3.44350582778378893e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_202)_ 3.44328031060571433e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_203)_ 3.44305335915145605e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_204)_ 3.44282496805264202e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_205)_ 3.44259513189641879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_206)_ 3.44236384522516445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_207)_ 3.44213110253620300e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_208)_ 3.44189689828151799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_209)_ 3.44166122686746476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_210)_ 3.44142408265448267e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_211)_ 3.44118545995680378e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_212)_ 3.44094535304216365e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_213)_ 3.44070375613151285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_214)_ 3.44046066339872354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_215)_ 3.44021606897030097e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_216)_ 3.43996996692508716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_217)_ 3.43972235129397390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_218)_ 3.43947321605960852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_219)_ 3.43922255515610189e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_220)_ 3.43897054630346233e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_221)_ 3.43871838950061814e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_222)_ 3.43846469811490110e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_223)_ 3.43820946592220764e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_224)_ 3.43795268664875024e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_225)_ 3.43769435397077032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_226)_ 3.43743446151425118e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_227)_ 3.43717300285463097e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_228)_ 3.43690997151651771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_229)_ 3.43664536097340445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_230)_ 3.43637916464738566e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_231)_ 3.43611137590888021e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_232)_ 3.43584198807634635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_233)_ 3.43557099441600684e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_234)_ 3.43529838814157529e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_235)_ 3.43502416241397768e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_236)_ 3.43474831034108590e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_237)_ 3.43447082497744915e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_238)_ 3.43419169932402610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_239)_ 3.43391036859642327e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_240)_ 3.43362617274164350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_241)_ 3.43334030487169954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_242)_ 3.43305275772542586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_243)_ 3.43276352398644775e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_244)_ 3.43247259628294046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_245)_ 3.43217996718738689e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_246)_ 3.43188562921634457e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_247)_ 3.43158957483021325e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_248)_ 3.43129179643301754e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_249)_ 3.43099228637218232e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_250)_ 3.43069103693832602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_251)_ 3.43038804036505454e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_252)_ 3.43008328882876370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_253)_ 3.42977677444844815e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_254)_ 3.42946848928552370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_255)_ 3.42915842534364756e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_256)_ 3.42887868118198327e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_257)_ 3.42863067061589462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_258)_ 3.42838123426326504e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_259)_ 3.42813036561720352e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_260)_ 3.42787805812457620e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_261)_ 3.42762430518591543e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_262)_ 3.42736910015533951e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_263)_ 3.42711243634048301e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_264)_ 3.42685430700243572e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_265)_ 3.42659470535569497e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_266)_ 3.42633362456812449e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_267)_ 3.42607105776093448e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_268)_ 3.42580699800866100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_269)_ 3.42554143833917237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_270)_ 3.42527437173367773e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_271)_ 3.42500579112675823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_272)_ 3.42466540344171193e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_273)_ 3.42432154109657674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_274)_ 3.42397573495760028e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_275)_ 3.42362797584514311e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_276)_ 3.42327825452101422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_277)_ 3.42292656168863445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_278)_ 3.42257288799322623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_279)_ 3.42221722402202602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_280)_ 3.42185956030452374e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_281)_ 3.42149988731273424e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_282)_ 3.42113819546149429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_283)_ 3.42077447510879011e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_284)_ 3.42040871655612122e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_285)_ 3.42004091004889403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_286)_ 3.41967321456265907e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_287)_ 3.41930373479676391e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_288)_ 3.41893219117767657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_289)_ 3.41855857379685730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_290)_ 3.41818287269255237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_291)_ 3.41780507785042147e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_292)_ 3.41742517920420141e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_293)_ 3.41704316663642516e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_294)_ 3.41665902997918280e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_295)_ 3.41627275901493590e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_296)_ 3.41588434347738357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_297)_ 3.41549377305238337e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_298)_ 3.41510103737893047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_299)_ 3.41476599033181074e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_300)_ 3.41444978455991759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_301)_ 3.41413182965002164e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_302)_ 3.41381211721123350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_303)_ 3.41349063881999371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_304)_ 3.41316738602116985e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_305)_ 3.41284235032921046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_306)_ 3.41251552322936078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_307)_ 3.41218689617895308e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_308)_ 3.41185646060875243e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_309)_ 3.41152420792438704e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_310)_ 3.41119012950783969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_311)_ 3.41085256359271014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_312)_ 3.41051097775007079e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_313)_ 3.41016751919780958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_314)_ 3.40982217914131027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_315)_ 3.40947494877085688e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_316)_ 3.40912581926367722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_317)_ 3.40877478178607092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_318)_ 3.40842182749565197e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_319)_ 3.40806694754369275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_320)_ 3.40771013307758679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_321)_ 3.40735137524342235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_322)_ 3.40699078084359712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_323)_ 3.40663260308315614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_324)_ 3.40627247981919297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_325)_ 3.40591040233027655e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_326)_ 3.40554636190831985e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_327)_ 3.40518034986193001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_328)_ 3.40481235751991065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_329)_ 3.40444237623491759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_330)_ 3.40407039738729367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_331)_ 3.40369641238906482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_332)_ 3.40332041268812588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_333)_ 3.40292661723340970e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_334)_ 3.40244251121511851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_335)_ 3.40195580655898127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_336)_ 3.40146649261248371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_337)_ 3.40097455879924624e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_338)_ 3.40047999462595740e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_339)_ 3.39998278968960363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_340)_ 3.39948293368502945e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_341)_ 3.39898041641282163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_342)_ 3.39847522778755007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_343)_ 3.39798085854304190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_344)_ 3.39768146398695521e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_345)_ 3.39738048565159545e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_346)_ 3.39707791794287175e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_347)_ 3.39677375536105401e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_348)_ 3.39646799250701577e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_349)_ 3.39616062408875692e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_350)_ 3.39585164492820439e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_351)_ 3.39554104996831185e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_352)_ 3.39522883428047066e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_353)_ 3.39488552588366588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_354)_ 3.39446069807206854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_355)_ 3.39403366894888094e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_356)_ 3.39360443267757503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_357)_ 3.39317298365135755e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_358)_ 3.39273931650604297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_359)_ 3.39230342613349265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_360)_ 3.39186530769563177e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_361)_ 3.39142495663907937e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_362)_ 3.39098210399434947e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_363)_ 3.39053059660038869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_364)_ 3.39007681109410370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_365)_ 3.38962074417142887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_366)_ 3.38916239290176335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_367)_ 3.38870175474714657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_368)_ 3.38823882758225778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_369)_ 3.38777360971529831e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_370)_ 3.38730609990978166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_371)_ 3.38683909825937661e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_372)_ 3.38637508007024621e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_373)_ 3.38590880842385360e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_374)_ 3.38544028412850651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_375)_ 3.38496950856204677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_376)_ 3.38449648369956009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_377)_ 3.38402121214231002e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_378)_ 3.38354369714794885e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_379)_ 3.38306394266206638e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_380)_ 3.38258163910329088e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_381)_ 3.38209705639934981e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_382)_ 3.38161024883395029e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_383)_ 3.38112122345417347e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_384)_ 3.38062998817576101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_385)_ 3.38013655182412620e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_386)_ 3.37964092417721389e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_387)_ 3.37914311601028601e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_388)_ 3.37864246247135824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_389)_ 3.37813937768320258e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_390)_ 3.37763414710243453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_391)_ 3.37712678601234799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_392)_ 3.37661731095225264e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_393)_ 3.37610573977608368e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_394)_ 3.37559209171371464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_395)_ 3.37507638743510441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_396)_ 3.37466868601271557e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_397)_ 3.37427852029978084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_398)_ 3.37388686457484326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_399)_ 3.37349373920662430e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_400)_ 3.37309916592155545e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_401)_ 3.37270316786718780e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_402)_ 3.37230576967862419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_403)_ 3.37187605882217056e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_404)_ 3.37134283495354126e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_405)_ 3.37080785651005073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_406)_ 3.37027116522551680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_407)_ 3.36973280532738073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_408)_ 3.36919282365448680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_409)_ 3.36865126978075367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_410)_ 3.36810819614505448e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_411)_ 3.36756363969279420e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_412)_ 3.36701767285843303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_413)_ 3.36647036211153434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_414)_ 3.36592177279023943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_415)_ 3.36537197385437992e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_416)_ 3.36482103806146142e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_417)_ 3.36426904215212446e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_418)_ 3.36364489012255490e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_419)_ 3.36295217605252006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_420)_ 3.36225845645247716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_421)_ 3.36156384981290017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_422)_ 3.36086848097377882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_423)_ 3.36017248144708631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_424)_ 3.35947598975846304e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_425)_ 3.35882314636809838e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_426)_ 3.35826496935306267e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_427)_ 3.35770676770176948e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_428)_ 3.35714867789995068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_429)_ 3.35659084369635679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_430)_ 3.35603341649962630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_431)_ 3.35547655580264106e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_432)_ 3.35490068787706335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_433)_ 3.35420772210202571e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_434)_ 3.35351612699411845e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_435)_ 3.35282614808775605e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_436)_ 3.35213804430597833e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_437)_ 3.35145208878599234e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_438)_ 3.35076856977579354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_439)_ 3.35008779161090899e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_440)_ 3.34929117251689021e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_441)_ 3.34848094630210085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_442)_ 3.34767523984407660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_443)_ 3.34687451030096099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_444)_ 3.34607924201329183e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_445)_ 3.34528994862587723e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_446)_ 3.34450717546796099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_447)_ 3.34377665435698646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_448)_ 3.34313784207437408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_449)_ 3.34250599645395567e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_450)_ 3.34188170221219494e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_451)_ 3.34126558529013664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_452)_ 3.34065831738004917e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_453)_ 3.34006062127272259e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_454)_ 3.33947327724015821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_455)_ 3.33885584357496086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_456)_ 3.33806543844951804e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_457)_ 3.33729342468490984e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_458)_ 3.33654135415010558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_459)_ 3.33581094679904027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_460)_ 3.33510412540533991e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_461)_ 3.33442306221172871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_462)_ 3.33377024341128703e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_463)_ 3.33314856142189058e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_464)_ 3.33256145269812407e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_465)_ 3.33201311501462030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_466)_ 3.33150855283315792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_467)_ 3.33105525794181787e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_468)_ 3.33066370024680154e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_469)_ 3.33035186041744922e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_470)_ 3.33017104492524325e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_471)_ 3.32579367967296662e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_472)_ 3.32073176435313400e+01 OP @@ -12531,476 +12534,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_498)_ 2.21545456573476756e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_499)_ 1.61356138848025381e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_500)_ 1.27291631291117842e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_0)__ 5.10564527921486757e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_1)__ 5.10564450132565426e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_2)__ 5.10564216764343897e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_3)__ 5.10563827812449205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_4)__ 5.10563283269592816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_5)__ 5.10562583125570271e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_6)__ 5.10561727367260758e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_7)__ 5.10560715978626050e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_8)__ 5.10559548940710073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_9)__ 5.10558226231637562e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_10)_ 5.10556747826613062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_11)_ 5.10555113697919722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_12)_ 5.10553323814917448e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_13)_ 5.10551378144041621e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_14)_ 5.10549276648801253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_15)_ 5.10547019289776713e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_16)_ 5.10544606024618162e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_17)_ 5.10542036808042852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_18)_ 5.10539311591832927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_19)_ 5.10536430324832722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_20)_ 5.10533392952946130e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_21)_ 5.10530199419133766e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_22)_ 5.10526849663409692e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_23)_ 5.10523343622838439e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_24)_ 5.10519681231531592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_25)_ 5.10515862420644169e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_26)_ 5.10511887118371135e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_27)_ 5.10507755249943287e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_28)_ 5.10503466737623555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_29)_ 5.10499021500702597e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_30)_ 5.10494419455494679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_31)_ 5.10489660515332986e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_32)_ 5.10484744590565285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_33)_ 5.10479671588548740e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_34)_ 5.10474441413645295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_35)_ 5.10469053967216411e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_36)_ 5.10463509147617671e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_37)_ 5.10457806850193521e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_38)_ 5.10451946967271581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_39)_ 5.10445929388156898e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_40)_ 5.10439753999125898e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_41)_ 5.10433420683420422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_42)_ 5.10426929321241261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_43)_ 5.10420279789742111e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_44)_ 5.10413471963022545e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_45)_ 5.10406505712121401e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_46)_ 5.10399380905009892e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_47)_ 5.10392097406584639e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_48)_ 5.10384655078659932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_49)_ 5.10377053779960903e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_50)_ 5.10369293366115429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_51)_ 5.10361373689646598e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_52)_ 5.10353294599964755e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_53)_ 5.10345055943359114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_54)_ 5.10336657562989942e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_55)_ 5.10328099298879678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_56)_ 5.10319380987904552e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_57)_ 5.10310502463785483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_58)_ 5.10301463557079487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_59)_ 5.10292264095170083e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_60)_ 5.10282903902258482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_61)_ 5.10273382799353428e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_62)_ 5.10263700604262027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_63)_ 5.10253857131579736e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_64)_ 5.10243852192680123e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_65)_ 5.10233685595704856e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_66)_ 5.10223357145553251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_67)_ 5.10212866643871550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_68)_ 5.10202213889042326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_69)_ 5.10191398676173478e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_70)_ 5.10180420797086995e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_71)_ 5.10169280040307598e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_72)_ 5.10157976191051574e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_73)_ 5.10146509031214563e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_74)_ 5.10134878339360114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_75)_ 5.10123083890707392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_76)_ 5.10111125457118888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_77)_ 5.10099002807088127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_78)_ 5.10086715705726945e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_79)_ 5.10074263914752493e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_80)_ 5.10061647192474581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_81)_ 5.10048865293782043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_82)_ 5.10035917970129660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_83)_ 5.10022804969524231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_84)_ 5.10009526036511147e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_85)_ 5.09995590227117148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_86)_ 5.09980274426479383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_87)_ 5.09964771032206130e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_88)_ 5.09949079741118823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_89)_ 5.09933200246062626e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_90)_ 5.09917132235889881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_91)_ 5.09900875395442910e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_92)_ 5.09884429405536395e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_93)_ 5.09867793942940111e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_94)_ 5.09850968680361021e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_95)_ 5.09833953286425086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_96)_ 5.09816747425659145e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_97)_ 5.09799350758472372e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_98)_ 5.09781762941137515e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_99)_ 5.09763983625771644e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_100)_ 5.09746012460317317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_101)_ 5.09727849088522973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_102)_ 5.09709493149922892e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_103)_ 5.09690944279817728e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_104)_ 5.09672202109253902e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_105)_ 5.09653266265003353e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_106)_ 5.09634136369542574e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_107)_ 5.09614812041032081e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_108)_ 5.09595292893294811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_109)_ 5.09575578535794875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_110)_ 5.09555668573615606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_111)_ 5.09535562607437882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_112)_ 5.09515260233517751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_113)_ 5.09494761043663900e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_114)_ 5.09474064625214993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_115)_ 5.09453170561016648e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_116)_ 5.09432078429398203e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_117)_ 5.09410787804148981e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_118)_ 5.09389298254494847e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_119)_ 5.09367609345073831e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_120)_ 5.09345720635911974e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_121)_ 5.09323631682398741e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_122)_ 5.09301342035262010e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_123)_ 5.09278851240543062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_124)_ 5.09256158839571285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_125)_ 5.09233264368938165e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_126)_ 5.09210167360471573e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_127)_ 5.09186867341209606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_128)_ 5.09163363833373808e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_129)_ 5.09139656354342591e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_130)_ 5.09115744416624167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_131)_ 5.09091670834569285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_132)_ 5.09067474305043461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_133)_ 5.09043072890141417e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_134)_ 5.09018466085237904e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_135)_ 5.08993653380723643e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_136)_ 5.08968634261976831e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_137)_ 5.08943408209334223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_138)_ 5.08917974698062068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_139)_ 5.08892333198326483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_140)_ 5.08866483175163680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_141)_ 5.08840424088449907e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_142)_ 5.08814155392871257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_143)_ 5.08787676537892750e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_144)_ 5.08760986967727717e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_145)_ 5.08734086121306248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_146)_ 5.08706973432243927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_147)_ 5.08679648328809790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_148)_ 5.08652110233894419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_149)_ 5.08624358564977399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_150)_ 5.08596392734094565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_151)_ 5.08568212147805099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_152)_ 5.08539816207158282e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_153)_ 5.08511204307659526e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_154)_ 5.08482375839236980e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_155)_ 5.08453330186206927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_156)_ 5.08424066727239392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_157)_ 5.08394584835323329e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_158)_ 5.08364883877731657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_159)_ 5.08334963215985525e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_160)_ 5.08304822205818922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_161)_ 5.08274460197142517e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_162)_ 5.08243876534007200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_163)_ 5.08213070554567921e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_164)_ 5.08180105633910557e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_165)_ 5.08145483909232851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_166)_ 5.08110613662867436e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_167)_ 5.08075494135080845e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_168)_ 5.08040124559400041e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_169)_ 5.08004504162569646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_170)_ 5.07968632164509302e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_171)_ 5.07932507778270192e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_172)_ 5.07896130209991767e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_173)_ 5.07859498658857760e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_174)_ 5.07822612317052062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_175)_ 5.07785470369714105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_176)_ 5.07748071994894161e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_177)_ 5.07710416363508230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_178)_ 5.07672502639292489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_179)_ 5.07634329978757535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_180)_ 5.07595897531142413e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_181)_ 5.07557204438368288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_182)_ 5.07518249834991408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_183)_ 5.07479032848156564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_184)_ 5.07439552597549550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_185)_ 5.07399808195349777e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_186)_ 5.07359798746182236e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_187)_ 5.07319523347069321e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_188)_ 5.07278981087382803e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_189)_ 5.07238171048794584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_190)_ 5.07196479271314686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_191)_ 5.07146413343665898e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_192)_ 5.07096019788510048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_193)_ 5.07045297456019028e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_194)_ 5.06994245186742205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_195)_ 5.06942861811545455e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_196)_ 5.06891146151550558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_197)_ 5.06839097018073446e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_198)_ 5.06786713212562603e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_199)_ 5.06733993526537461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_200)_ 5.06680936741525940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_201)_ 5.06627541629002422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_202)_ 5.06573806950325007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_203)_ 5.06519731456672559e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_204)_ 5.06465313888982323e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_205)_ 5.06410552977886113e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_206)_ 5.06355447443647435e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_207)_ 5.06299995996097891e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_208)_ 5.06244197334573656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_209)_ 5.06188050147851669e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_210)_ 5.06131553114085833e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_211)_ 5.06074704900743200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_212)_ 5.06017504164540028e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_213)_ 5.05960197975011212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_214)_ 5.05902647321297252e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_215)_ 5.05844742261743860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_216)_ 5.05786481418026312e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_217)_ 5.05727863400817697e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_218)_ 5.05668886809725535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_219)_ 5.05609550233227836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_220)_ 5.05549852248610492e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_221)_ 5.05489791421903476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_222)_ 5.05429366307818100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_223)_ 5.05368575449684485e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_224)_ 5.05307417379388610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_225)_ 5.05245890617310067e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_226)_ 5.05183993672260314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_227)_ 5.05121725041420859e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_228)_ 5.05059083210281941e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_229)_ 5.04996066652581632e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_230)_ 5.04932673830245520e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_231)_ 5.04868903193326659e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_232)_ 5.04804753179946104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_233)_ 5.04734835246508169e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_234)_ 5.04664071963615655e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_235)_ 5.04592889929578732e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_236)_ 5.04521287389104174e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_237)_ 5.04449262573577926e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_238)_ 5.04376813701005204e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_239)_ 5.04303938975951098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_240)_ 5.04230636589482231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_241)_ 5.04156904719109917e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_242)_ 5.04082741528734033e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_243)_ 5.04008145168588229e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_244)_ 5.03933113775186641e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_245)_ 5.03857645471271596e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_246)_ 5.03781738365763445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_247)_ 5.03705390553711183e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_248)_ 5.03628600116245266e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_249)_ 5.03551365120531784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_250)_ 5.03469986621147285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_251)_ 5.03380880738473167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_252)_ 5.03291261135631984e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_253)_ 5.03201125544078778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_254)_ 5.03110471679115889e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_255)_ 5.03019297239855305e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_256)_ 5.02927599909183272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_257)_ 5.02835377353728674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_258)_ 5.02742627223834049e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_259)_ 5.02649347153529789e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_260)_ 5.02555534760512188e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_261)_ 5.02461187646124685e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_262)_ 5.02366303395342939e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_263)_ 5.02270879576764244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_264)_ 5.02174913742600282e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_265)_ 5.02078403428674989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_266)_ 5.01978589691462673e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_267)_ 5.01866559695890544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_268)_ 5.01753896165521738e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_269)_ 5.01640596196891693e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_270)_ 5.01526656867794998e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_271)_ 5.01412075237316799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_272)_ 5.01296848345872235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_273)_ 5.01180973215251555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_274)_ 5.01064446848673910e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_275)_ 5.00947266230847745e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_276)_ 5.00829428328039725e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_277)_ 5.00710930088152324e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_278)_ 5.00591768440809446e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_279)_ 5.00471940297451638e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_280)_ 5.00351442551440613e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_281)_ 5.00222582591476339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_282)_ 5.00087299223446067e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_283)_ 4.99951261943217773e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_284)_ 4.99814467222656447e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_285)_ 4.99676911514309765e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_286)_ 4.99538591251597452e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_287)_ 4.99399502849015349e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_288)_ 4.99259642702353332e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_289)_ 4.99119007188929160e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_290)_ 4.98977592667837726e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_291)_ 4.98835395480217656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_292)_ 4.98692411949534318e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_293)_ 4.98548638381881730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_294)_ 4.98404071066302308e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_295)_ 4.98237154906458670e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_296)_ 4.98068694362854316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_297)_ 4.97899306057032547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_298)_ 4.97728985637553620e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_299)_ 4.97557728735527860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_300)_ 4.97385530965133853e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_301)_ 4.97212387924166350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_302)_ 4.97038295194613085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_303)_ 4.96863248343263137e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_304)_ 4.96687242922347707e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_305)_ 4.96510274470214199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_306)_ 4.96332338512035065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_307)_ 4.96146480092076345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_308)_ 4.95939747973814775e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_309)_ 4.95731888439515487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_310)_ 4.95522896294934370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_311)_ 4.95312766335424257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_312)_ 4.95101493347028168e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_313)_ 4.94889072107625410e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_314)_ 4.94675497388133252e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_315)_ 4.94460763953766076e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_316)_ 4.94244866565354144e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_317)_ 4.94027799980725462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_318)_ 4.93809558956151733e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_319)_ 4.93574139298164383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_320)_ 4.93321407301692787e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_321)_ 4.93067311818873861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_322)_ 4.92811846853377702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_323)_ 4.92555006416600989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_324)_ 4.92296784529837765e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_325)_ 4.92037175226548555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_326)_ 4.91776172554731730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_327)_ 4.91513770579401452e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_328)_ 4.91249963385176116e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_329)_ 4.90984745078982669e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_330)_ 4.90702164297612384e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_331)_ 4.90381910460298442e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_332)_ 4.90059949814875679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_333)_ 4.89736275462655968e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_334)_ 4.89410880550028793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_335)_ 4.89083758272645639e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_336)_ 4.88754901879787198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_337)_ 4.88424304678920720e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_338)_ 4.88091960040454822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_339)_ 4.87757861402701280e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_340)_ 4.87422002277051405e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_341)_ 4.87028020037134297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_342)_ 4.86628019337206865e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_343)_ 4.86225921445608691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_344)_ 4.85821719126111802e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_345)_ 4.85415405263297899e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_346)_ 4.85006972870414756e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_347)_ 4.84596415097568354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_348)_ 4.84183725240266654e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_349)_ 4.83768896748328672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_350)_ 4.83351923235174539e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_351)_ 4.82874859278625550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_352)_ 4.82387104919170895e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_353)_ 4.81896846152657474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_354)_ 4.81404076459505248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_355)_ 4.80908789570627206e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_356)_ 4.80410979481252269e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_357)_ 4.79910640465339213e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_358)_ 4.79407767090605645e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_359)_ 4.78902354234197816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_360)_ 4.78364668924671008e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_361)_ 4.77780348886577713e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_362)_ 4.77193106907887596e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_363)_ 4.76602938736894544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_364)_ 4.76009840577914858e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_365)_ 4.75413809114345298e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_366)_ 4.74814841532709551e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_367)_ 4.74212935547735128e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_368)_ 4.73608089428508237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_369)_ 4.72983197953833354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_370)_ 4.72337613782736483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_371)_ 4.71688920002383867e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_372)_ 4.71037117428092245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_373)_ 4.70382207618316386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_374)_ 4.69724192910264051e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_375)_ 4.69063076457051622e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_376)_ 4.68398862266474225e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_377)_ 4.67731555241459134e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_378)_ 4.67051295756371303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_379)_ 4.66365491092309767e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_380)_ 4.65676557854432716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_381)_ 4.64984505130598151e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_382)_ 4.64289343154765888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_383)_ 4.63591083360267362e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_384)_ 4.62889738435423936e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_385)_ 4.62185322381627302e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_386)_ 4.61493934218796937e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_387)_ 4.60818896456890812e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_388)_ 4.60140988876690500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_389)_ 4.59460230373116190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_390)_ 4.58776641403611194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_391)_ 4.58090244059866691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_392)_ 4.57401062142785761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_393)_ 4.56709121240846940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_394)_ 4.56040172093277931e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_395)_ 4.55405619077140855e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_396)_ 4.54768635985674408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_397)_ 4.54129253388873124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_398)_ 4.53487503891840333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_399)_ 4.52843422228175072e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_400)_ 4.52197045357722658e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_401)_ 4.51548412568918565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_402)_ 4.50962124359155467e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_403)_ 4.50413864822896102e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_404)_ 4.49863822873015806e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_405)_ 4.49312040259166992e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_406)_ 4.48758561181078761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_407)_ 4.48203432402369799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_408)_ 4.47646703369951027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_409)_ 4.47090354873977489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_410)_ 4.46623860240915747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_411)_ 4.46156170116779549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_412)_ 4.45687335751722884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_413)_ 4.45217411209511553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_414)_ 4.44746453501317660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_415)_ 4.44274522726516352e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_416)_ 4.43801682220935163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_417)_ 4.43374504514989809e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_418)_ 4.42981169109699664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_419)_ 4.42587254465822539e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_420)_ 4.42192825190152092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_421)_ 4.41797949295255918e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_422)_ 4.41402698369346993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_423)_ 4.41007147756082247e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_424)_ 4.40629642939595527e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_425)_ 4.40315335808093309e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_426)_ 4.40000989648865399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_427)_ 4.39686677809813986e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_428)_ 4.39372477475941992e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_429)_ 4.39058469874793147e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_430)_ 4.38744740495786161e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_431)_ 4.38431379324766723e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_432)_ 4.38167793569340702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_433)_ 4.37910168525337937e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_434)_ 4.37653094265152731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_435)_ 4.37396662080308190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_436)_ 4.37140968176773441e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_437)_ 4.36886113976930019e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_438)_ 4.36632206447651257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_439)_ 4.36398275318632329e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_440)_ 4.36186068331524623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_441)_ 4.35974961367662530e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_442)_ 4.35765066638243255e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_443)_ 4.35556502861421890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_444)_ 4.35349395751914088e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_445)_ 4.35143878567615303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_446)_ 4.34940092723090501e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_447)_ 4.34748574586017043e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_448)_ 4.34561540323718631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_449)_ 4.34376576021705176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_450)_ 4.34193852001761655e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_451)_ 4.34013550537810033e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_452)_ 4.33835867172677254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_453)_ 4.33661012274321536e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_454)_ 4.33489212894211846e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_455)_ 4.33336510586938601e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_456)_ 4.33204439831116375e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_457)_ 4.33075461576878951e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_458)_ 4.32949833763780774e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_459)_ 4.32827842272372934e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_460)_ 4.32709806714189540e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_461)_ 4.32596088209222955e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_462)_ 4.32487100137938185e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_463)_ 4.32383323529487171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_464)_ 4.32285330046057226e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_465)_ 4.32193814163840386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_466)_ 4.32109615519848802e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_467)_ 4.32033980711398371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_468)_ 4.31968652706865797e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_469)_ 4.31916628663186444e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_0)__ 5.10877152274663473e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_1)__ 5.10877084115027458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_2)__ 5.10876879634830061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_3)__ 5.10876538830203017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_4)__ 5.10876061694699004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_5)__ 5.10875448219291286e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_6)__ 5.10874698392373148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_7)__ 5.10873812199757396e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_8)__ 5.10872789624675505e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_9)__ 5.10871630647776840e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_10)_ 5.10870335247127301e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_11)_ 5.10868903398208474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_12)_ 5.10867335073916067e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_13)_ 5.10865630244558773e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_14)_ 5.10863788877855995e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_15)_ 5.10861810938936998e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_16)_ 5.10859696390338129e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_17)_ 5.10857445192001549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_18)_ 5.10855057301272382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_19)_ 5.10852532672897084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_20)_ 5.10849871259020247e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_21)_ 5.10847073009182679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_22)_ 5.10844137870318278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_23)_ 5.10841065786751187e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_24)_ 5.10837856700192887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_25)_ 5.10834510549738994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_26)_ 5.10831027271865921e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_27)_ 5.10827406800427397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_28)_ 5.10823649066650916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_29)_ 5.10819753999133894e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_30)_ 5.10815721523840125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_31)_ 5.10811551564095296e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_32)_ 5.10807244040583086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_33)_ 5.10802798871340826e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_34)_ 5.10797952152110923e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_35)_ 5.10792533341743678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_36)_ 5.10786956230256948e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_37)_ 5.10781220711363559e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_38)_ 5.10775326675711483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_39)_ 5.10769274010877652e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_40)_ 5.10763062601361781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_41)_ 5.10756692328580399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_42)_ 5.10750163070859884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_43)_ 5.10743474703430067e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_44)_ 5.10736627098417628e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_45)_ 5.10729620124838704e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_46)_ 5.10722453648591994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_47)_ 5.10715127532451163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_48)_ 5.10707641636057659e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_49)_ 5.10699995815912899e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_50)_ 5.10692189925370315e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_51)_ 5.10684223814627316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_52)_ 5.10676097330717127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_53)_ 5.10667810317500468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_54)_ 5.10659362615656960e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_55)_ 5.10650754062676171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_56)_ 5.10641984492849019e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_57)_ 5.10633053737258251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_58)_ 5.10623961623769631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_59)_ 5.10614707977022064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_60)_ 5.10605292618418076e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_61)_ 5.10595715366114220e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_62)_ 5.10585976035010489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_63)_ 5.10576074436740655e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_64)_ 5.10566010379661677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_65)_ 5.10555783668842906e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_66)_ 5.10545394106055781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_67)_ 5.10534841489762385e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_68)_ 5.10524125615104651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_69)_ 5.10513246273892776e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_70)_ 5.10502203254593852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_71)_ 5.10490996342320145e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_72)_ 5.10479625318817014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_73)_ 5.10468089962451046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_74)_ 5.10456390048197619e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_75)_ 5.10444525347628257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_76)_ 5.10432495628898195e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_77)_ 5.10420300656733517e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_78)_ 5.10407940192417584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_79)_ 5.10395413993778462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_80)_ 5.10382721815174776e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_81)_ 5.10369863407482356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_82)_ 5.10356838518080238e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_83)_ 5.10343646890836737e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_84)_ 5.10330288266094811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_85)_ 5.10316762380657849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_86)_ 5.10303068967774749e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_87)_ 5.10289207757124998e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_88)_ 5.10275178474803752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_89)_ 5.10260980843306200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_90)_ 5.10246614581512148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_91)_ 5.10232079404670316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_92)_ 5.10217375024382136e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_93)_ 5.10202501148585625e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_94)_ 5.10187457481539042e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_95)_ 5.10172243723804328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_96)_ 5.10156859572229848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_97)_ 5.10141304719933757e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_98)_ 5.10125578856286381e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_99)_ 5.10109681666893024e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_100)_ 5.10093612833575705e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_101)_ 5.10077372034355818e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_102)_ 5.10060958943435239e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_103)_ 5.10044373231178554e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_104)_ 5.10027614564093881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_105)_ 5.10010682604814392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_106)_ 5.09992772829005645e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_107)_ 5.09973329788086431e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_108)_ 5.09953690592917184e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_109)_ 5.09933854846232038e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_110)_ 5.09913822146294677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_111)_ 5.09893592086875316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_112)_ 5.09873164257227671e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_113)_ 5.09852538242065592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_114)_ 5.09831713621539251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_115)_ 5.09810689971211275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_116)_ 5.09789466862032583e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_117)_ 5.09768043860318016e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_118)_ 5.09746420527721185e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_119)_ 5.09724596421209739e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_120)_ 5.09702571093040078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_121)_ 5.09680344090731481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_122)_ 5.09657914957040248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_123)_ 5.09635283229933762e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_124)_ 5.09612448442563775e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_125)_ 5.09589410123239688e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_126)_ 5.09566167795401554e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_127)_ 5.09542720977592651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_128)_ 5.09519069183431768e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_129)_ 5.09495211921585565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_130)_ 5.09471148695740084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_131)_ 5.09446879004572040e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_132)_ 5.09422402341720399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_133)_ 5.09397718195757037e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_134)_ 5.09372826050157244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_135)_ 5.09347725383269960e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_136)_ 5.09322415668287860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_137)_ 5.09296896373216867e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_138)_ 5.09271166960845605e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_139)_ 5.09245226888714129e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_140)_ 5.09219075609083092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_141)_ 5.09192712568901698e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_142)_ 5.09166137209775940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_143)_ 5.09139348967936627e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_144)_ 5.09112347274206201e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_145)_ 5.09085208461230678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_146)_ 5.09057920018173888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_147)_ 5.09030417496000709e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_148)_ 5.09002700306627602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_149)_ 5.08974767856424180e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_150)_ 5.08946619546179235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_151)_ 5.08918254771065790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_152)_ 5.08889672920606344e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_153)_ 5.08860873378637422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_154)_ 5.08831855523274115e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_155)_ 5.08802618726874272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_156)_ 5.08773162356001762e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_157)_ 5.08743485771390525e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_158)_ 5.08713588327907260e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_159)_ 5.08683469374514274e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_160)_ 5.08653128254231888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_161)_ 5.08622564304100635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_162)_ 5.08591776855142967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_163)_ 5.08560765232324670e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_164)_ 5.08529528754516065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_165)_ 5.08498066734452721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_166)_ 5.08466378478695873e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_167)_ 5.08434463287592564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_168)_ 5.08402320455235639e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_169)_ 5.08369949269422747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_170)_ 5.08337349011616055e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_171)_ 5.08304518956900537e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_172)_ 5.08271458373942622e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_173)_ 5.08238166524948625e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_174)_ 5.08204642665621904e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_175)_ 5.08167747494883528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_176)_ 5.08130093141844625e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_177)_ 5.08092179249940443e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_178)_ 5.08054004965349080e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_179)_ 5.08015569426806124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_180)_ 5.07976871765555700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_181)_ 5.07937911105301296e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_182)_ 5.07898686562156172e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_183)_ 5.07859197244593403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_184)_ 5.07819442253395792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_185)_ 5.07779420681605060e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_186)_ 5.07739131614471120e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_187)_ 5.07698574129400555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_188)_ 5.07657747295905324e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_189)_ 5.07616650175550674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_190)_ 5.07575281821902848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_191)_ 5.07533641280476786e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_192)_ 5.07491727588682906e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_193)_ 5.07449539775774312e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_194)_ 5.07407076862792934e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_195)_ 5.07364337862516166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_196)_ 5.07321321779402581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_197)_ 5.07278027609537503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_198)_ 5.07234454340578722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_199)_ 5.07188619335399338e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_200)_ 5.07135179842364821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_201)_ 5.07081398668109458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_202)_ 5.07027274545371469e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_203)_ 5.06972806196349453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_204)_ 5.06917992332634171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_205)_ 5.06862831655140553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_206)_ 5.06807322854039484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_207)_ 5.06751464608688664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_208)_ 5.06695255587564333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_209)_ 5.06638694448191629e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_210)_ 5.06581779837075885e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_211)_ 5.06524510389632852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_212)_ 5.06466884730119276e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_213)_ 5.06408901471563055e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_214)_ 5.06350559215693750e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_215)_ 5.06291856552872162e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_216)_ 5.06232792062020849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_217)_ 5.06173364310553708e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_218)_ 5.06113571854306059e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_219)_ 5.06053413237464511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_220)_ 5.05992931112830959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_221)_ 5.05932413480148426e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_222)_ 5.05871527547576321e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_223)_ 5.05810271821329778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_224)_ 5.05748644795699960e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_225)_ 5.05686644952984778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_226)_ 5.05624270763420256e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_227)_ 5.05561520685111461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_228)_ 5.05498393163964224e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_229)_ 5.05434886633616927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_230)_ 5.05370999515372574e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_231)_ 5.05306730218131150e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_232)_ 5.05242077138322969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_233)_ 5.05177038659841600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_234)_ 5.05111613153977927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_235)_ 5.05045798979354501e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_236)_ 5.04979594481860588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_237)_ 5.04912997994587656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_238)_ 5.04846007837766066e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_239)_ 5.04776695835069944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_240)_ 5.04702804912827148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_241)_ 5.04628479266641747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_242)_ 5.04553717008610576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_243)_ 5.04478516236476366e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_244)_ 5.04402875033564513e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_245)_ 5.04326791468720614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_246)_ 5.04250263596249440e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_247)_ 5.04173289455855453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_248)_ 5.04095867072584483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_249)_ 5.04017994456767369e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_250)_ 5.03939669603964759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_251)_ 5.03860890494914173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_252)_ 5.03781655095478484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_253)_ 5.03701961356596613e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_254)_ 5.03621807214236199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_255)_ 5.03541190589348489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_256)_ 5.03454505443243718e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_257)_ 5.03361501480960527e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_258)_ 5.03267962848724295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_259)_ 5.03173887106451332e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_260)_ 5.03079271796716085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_261)_ 5.02984114444718315e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_262)_ 5.02888412558252398e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_263)_ 5.02792163627681177e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_264)_ 5.02695365125913511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_265)_ 5.02598014508385589e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_266)_ 5.02500109213046784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_267)_ 5.02401646660350352e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_268)_ 5.02302624253247885e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_269)_ 5.02203039377189668e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_270)_ 5.02102889400129300e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_271)_ 5.02002171672534487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_272)_ 5.01886237170182099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_273)_ 5.01769323972836006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_274)_ 5.01651749885584124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_275)_ 5.01533511787348729e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_276)_ 5.01414606537144749e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_277)_ 5.01295030974135614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_278)_ 5.01174781917696848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_279)_ 5.01053856167488689e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_280)_ 5.00932250503538015e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_281)_ 5.00809961686329714e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_282)_ 5.00686986456908016e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_283)_ 5.00563321536988610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_284)_ 5.00438963629081215e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_285)_ 5.00313909416623801e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_286)_ 5.00175821533810279e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_287)_ 5.00035419222770230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_288)_ 4.99894232647517143e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_289)_ 4.99752258042805764e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_290)_ 4.99609491623170001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_291)_ 4.99465929583160104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_292)_ 4.99321568097596540e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_293)_ 4.99176403321841633e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_294)_ 4.99030431392089611e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_295)_ 4.98883648425675759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_296)_ 4.98736050521405758e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_297)_ 4.98587633759905628e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_298)_ 4.98438394203993695e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_299)_ 4.98271294682495807e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_300)_ 4.98097381507954822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_301)_ 4.97922506307512052e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_302)_ 4.97746664466178359e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_303)_ 4.97569851350996615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_304)_ 4.97392062311643599e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_305)_ 4.97213292681065653e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_306)_ 4.97033537776148506e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_307)_ 4.96852792898424127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_308)_ 4.96671053334814019e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_309)_ 4.96488314358412808e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_310)_ 4.96304571229311975e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_311)_ 4.96107852245443937e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_312)_ 4.95894361093794203e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_313)_ 4.95679699498631194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_314)_ 4.95463861963318735e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_315)_ 4.95246842981785704e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_316)_ 4.95028637039798411e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_317)_ 4.94809238616294422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_318)_ 4.94588642184782259e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_319)_ 4.94366842214807818e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_320)_ 4.94143833173491558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_321)_ 4.93919609527138945e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_322)_ 4.93693316111607672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_323)_ 4.93433637235287961e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_324)_ 4.93172547868915032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_325)_ 4.92910041689450438e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_326)_ 4.92646112383531687e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_327)_ 4.92380753649899319e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_328)_ 4.92113959201934890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_329)_ 4.91845722770315277e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_330)_ 4.91576038105787916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_331)_ 4.91304898982072089e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_332)_ 4.91032299198891309e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_333)_ 4.90750099718718573e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_334)_ 4.90420907626280567e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_335)_ 4.90089948460107436e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_336)_ 4.89757214976488839e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_337)_ 4.89422699983487632e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_338)_ 4.89086396345651053e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_339)_ 4.88748296988930662e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_340)_ 4.88408394905820060e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_341)_ 4.88066683160718924e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_342)_ 4.87723154895534208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_343)_ 4.87373840008824217e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_344)_ 4.86964667448839208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_345)_ 4.86553330390513707e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_346)_ 4.86139821188591625e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_347)_ 4.85724132326773770e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_348)_ 4.85306256426255160e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_349)_ 4.84886186254634453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_350)_ 4.84463914735212100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_351)_ 4.84039434956692602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_352)_ 4.83612740183309811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_353)_ 4.83165492913307304e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_354)_ 4.82666320234679986e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_355)_ 4.82164561014934563e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_356)_ 4.81660208396150864e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_357)_ 4.81153255790345113e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_358)_ 4.80643696894600581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_359)_ 4.80131525706853779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_360)_ 4.79616736542367619e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_361)_ 4.79099324050918938e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_362)_ 4.78576287792513924e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_363)_ 4.77978040495515586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_364)_ 4.77376774699688227e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_365)_ 4.76772486027143358e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_366)_ 4.76165170594837193e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_367)_ 4.75554825039969487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_368)_ 4.74941446546491761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_369)_ 4.74325032872770578e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_370)_ 4.73705582380460655e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_371)_ 4.73070715019612180e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_372)_ 4.72409489100101680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_373)_ 4.71745052003991816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_374)_ 4.71077404883122384e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_375)_ 4.70406549700917225e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_376)_ 4.69732489271873845e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_377)_ 4.69055227302792446e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_378)_ 4.68374768435827562e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_379)_ 4.67691118293444603e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_380)_ 4.66993376699771972e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_381)_ 4.66290731779057097e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_382)_ 4.65584860809227834e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_383)_ 4.64875774008551943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_384)_ 4.64163482854853484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_385)_ 4.63448000144983325e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_386)_ 4.62729340056960581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_387)_ 4.62007518214914441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_388)_ 4.61308385898117734e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_389)_ 4.60616644314403487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_390)_ 4.59921952265847338e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_391)_ 4.59224330766978994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_392)_ 4.58523802559347686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_393)_ 4.57820392192114909e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_394)_ 4.57114126106357261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_395)_ 4.56405032723268675e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_396)_ 4.55747810021192450e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_397)_ 4.55097533832967827e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_398)_ 4.54444774291405480e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_399)_ 4.53789565344373358e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_400)_ 4.53131943202592211e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_401)_ 4.52471946445313691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_402)_ 4.51809616131040883e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_403)_ 4.51169861763279343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_404)_ 4.50609976701218073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_405)_ 4.50048249335553052e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_406)_ 4.49484723486793101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_407)_ 4.48919445593749487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_408)_ 4.48352464837210931e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_409)_ 4.47783833269791245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_410)_ 4.47213605952307134e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_411)_ 4.46718184731195223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_412)_ 4.46240463751128686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_413)_ 4.45761566847592690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_414)_ 4.45281551191459712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_415)_ 4.44800477122582407e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_416)_ 4.44318408303778654e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_417)_ 4.43835411883109074e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_418)_ 4.43394036271081688e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_419)_ 4.42992262110461610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_420)_ 4.42589904742436602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_421)_ 4.42187032891482019e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_422)_ 4.41783718964791703e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_423)_ 4.41380039239309738e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_424)_ 4.40976074059908356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_425)_ 4.40598309161656587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_426)_ 4.40277357378010805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_427)_ 4.39956391428517577e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_428)_ 4.39635489792471645e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_429)_ 4.39314735125405278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_430)_ 4.38994214487285390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_431)_ 4.38674019586518682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_432)_ 4.38362261393284172e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_433)_ 4.38098934398769941e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_434)_ 4.37836128257765083e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_435)_ 4.37573936273347357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_436)_ 4.37312456836271792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_437)_ 4.37051793738677219e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_438)_ 4.36792056514801459e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_439)_ 4.36533360812145474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_440)_ 4.36310979337837423e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_441)_ 4.36094919013893687e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_442)_ 4.35880063958420436e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_443)_ 4.35666536080256179e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_444)_ 4.35454464536877808e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_445)_ 4.35243986300233985e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_446)_ 4.35035246791456345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_447)_ 4.34832996307096096e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_448)_ 4.34641352622312382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_449)_ 4.34451798936186790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_450)_ 4.34264510663658498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_451)_ 4.34079675587041081e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_452)_ 4.33897495214014839e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_453)_ 4.33718186381816793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_454)_ 4.33541983172047551e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_455)_ 4.33375287469993324e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_456)_ 4.33239789448488821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_457)_ 4.33107444231698864e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_458)_ 4.32978517854303817e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_459)_ 4.32853305165549713e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_460)_ 4.32732135783772520e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_461)_ 4.32615382093439180e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_462)_ 4.32503470299077790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_463)_ 4.32396896243752664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_464)_ 4.32296249033964060e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_465)_ 4.32202248288220616e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_466)_ 4.32115751914255668e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_467)_ 4.32038044218597292e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_468)_ 4.31970920042308890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_469)_ 4.31917461785848431e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_470)_ 4.31886464844327449e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_471)_ 4.31136059372508527e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_472)_ 4.30413117598555885e+01 OP @@ -13032,476 +13035,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_498)_ 2.35829477290757055e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_499)_ 1.95598792195493942e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_500)_ 1.20636325044855823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_0)__ 6.39052073617247842e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_1)__ 6.39051694396256451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_2)__ 6.39050556726176495e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_3)__ 6.39048660585689774e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_4)__ 6.39046005939264887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_5)__ 6.39042592737155246e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_6)__ 6.39038420915396301e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_7)__ 6.39033490395802133e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_8)__ 6.39027801085961613e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_9)__ 6.39021352879233078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_10)_ 6.39014145654738854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_11)_ 6.39006179277358655e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_12)_ 6.38997453597722611e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_13)_ 6.38987968452203035e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_14)_ 6.38977723662906030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_15)_ 6.38966719037661548e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_16)_ 6.38954954370013652e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_17)_ 6.38942429439209008e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_18)_ 6.38929144010185581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_19)_ 6.38915097833559500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_20)_ 6.38900290645612401e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_21)_ 6.38884722168277008e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_22)_ 6.38868392109122141e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_23)_ 6.38851300161337363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_24)_ 6.38833446003716432e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_25)_ 6.38814829300640383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_26)_ 6.38795449702059273e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_27)_ 6.38775306843473558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_28)_ 6.38754400345914846e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_29)_ 6.38732729815925211e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_30)_ 6.38710294845536453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_31)_ 6.38687095012248349e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_32)_ 6.38663129879005638e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_33)_ 6.38638398994175063e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_34)_ 6.38612901891520863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_35)_ 6.38586638090179903e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_36)_ 6.38559607094636092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_37)_ 6.38531808394693456e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_38)_ 6.38503241465449136e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_39)_ 6.38473905767264966e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_40)_ 6.38443800745738841e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_41)_ 6.38412925831674443e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_42)_ 6.38381280441051331e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_43)_ 6.38348863974992895e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_44)_ 6.38315675819734878e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_45)_ 6.38281715346591767e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_46)_ 6.38246981911923328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_47)_ 6.38211474857100001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_48)_ 6.38175193508467231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_49)_ 6.38138137177309517e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_50)_ 6.38100305159812820e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_51)_ 6.38061696737027333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_52)_ 6.38022311174828047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_53)_ 6.37982147723875670e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_54)_ 6.37941205619575982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_55)_ 6.37899484082038555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_56)_ 6.37856982316034617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_57)_ 6.37813699510954208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_58)_ 6.37769634840762407e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_59)_ 6.37724787463954286e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_60)_ 6.37679156523510073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_61)_ 6.37632741146847977e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_62)_ 6.37585540445777568e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_63)_ 6.37537553516451325e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_64)_ 6.37488779439315678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_65)_ 6.37439217279061268e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_66)_ 6.37388866084572072e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_67)_ 6.37337724888873822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_68)_ 6.37285792709081491e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_69)_ 6.37233068546345791e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_70)_ 6.37179551385799030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_71)_ 6.37125240196499618e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_72)_ 6.37070133931376432e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_73)_ 6.37014231527171049e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_74)_ 6.36957531904380687e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_75)_ 6.36900033967198524e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_76)_ 6.36841736603454649e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_77)_ 6.36782638684554811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_78)_ 6.36722739065418892e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_79)_ 6.36662036584418587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_80)_ 6.36600530063313670e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_81)_ 6.36538218307187549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_82)_ 6.36475100104382037e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_83)_ 6.36411174226430703e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_84)_ 6.36346439427991726e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_85)_ 6.36280890984174192e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_86)_ 6.36214522514744090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_87)_ 6.36147341139560041e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_88)_ 6.36079345544848138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_89)_ 6.36010534399604595e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_90)_ 6.35940906355522912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_91)_ 6.35870460046919277e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_92)_ 6.35799194090657664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_93)_ 6.35727107086073886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_94)_ 6.35654197614897782e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_95)_ 6.35580464241175420e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_96)_ 6.35505905511189724e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_97)_ 6.35430519953380468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_98)_ 6.35354306078262496e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_99)_ 6.35277262378343721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_100)_ 6.35199387328041851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_101)_ 6.35120679383599551e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_102)_ 6.35041136982999390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_103)_ 6.34960758545877013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_104)_ 6.34879542473433744e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_105)_ 6.34797487148347770e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_106)_ 6.34714590934684608e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_107)_ 6.34630852177805806e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_108)_ 6.34546269204277706e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_109)_ 6.34460840321777795e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_110)_ 6.34374563819000912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_111)_ 6.34287437965564109e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_112)_ 6.34199461011910230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_113)_ 6.34110631189210210e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_114)_ 6.34020946709265090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_115)_ 6.33930405764405620e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_116)_ 6.33839006527392286e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_117)_ 6.33746747151312348e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_118)_ 6.33653625769477742e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_119)_ 6.33559640495319982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_120)_ 6.33464789422285364e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_121)_ 6.33369070623727879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_122)_ 6.33272482152802070e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_123)_ 6.33175022042353461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_124)_ 6.33076688304808997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_125)_ 6.32977478932065409e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_126)_ 6.32877391895376959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_127)_ 6.32776425145241745e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_128)_ 6.32674576611286597e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_129)_ 6.32571844202151468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_130)_ 6.32468225805371702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_131)_ 6.32362981486974860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_132)_ 6.32255441355748786e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_133)_ 6.32146990622850922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_134)_ 6.32037627045501935e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_135)_ 6.31927348358771823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_136)_ 6.31816152275452581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_137)_ 6.31704036485930018e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_138)_ 6.31590998658053948e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_139)_ 6.31477036437006873e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_140)_ 6.31362147445172113e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_141)_ 6.31246329281999863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_142)_ 6.31129579523872408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_143)_ 6.31011895723968053e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_144)_ 6.30893275412123415e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_145)_ 6.30773716094694663e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_146)_ 6.30653215254417532e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_147)_ 6.30531770350265859e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_148)_ 6.30409378817308692e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_149)_ 6.30286038066566263e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_150)_ 6.30161745484864824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_151)_ 6.30036498434689562e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_152)_ 6.29910294254036813e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_153)_ 6.29783130256264769e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_154)_ 6.29655003729942351e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_155)_ 6.29525911938697504e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_156)_ 6.29395852121063939e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_157)_ 6.29264821490326014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_158)_ 6.29132817234362847e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_159)_ 6.28999836515491211e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_160)_ 6.28865876470306375e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_161)_ 6.28730934209522232e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_162)_ 6.28595006817809931e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_163)_ 6.28458091353635098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_164)_ 6.28318433099033342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_165)_ 6.28176484027854656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_166)_ 6.28033516017756455e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_167)_ 6.27889525953831509e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_168)_ 6.27744510693540221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_169)_ 6.27598467066535690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_170)_ 6.27451391874488138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_171)_ 6.27303281890907840e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_172)_ 6.27154133860966354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_173)_ 6.27003944501316965e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_174)_ 6.26852710499913499e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_175)_ 6.26700428515827781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_176)_ 6.26547095179066105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_177)_ 6.26392707090383780e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_178)_ 6.26237260821099113e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_179)_ 6.26080752912905893e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_180)_ 6.25923179877684035e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_181)_ 6.25764538197309932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_182)_ 6.25604824323464754e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_183)_ 6.25444034677441891e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_184)_ 6.25282165649953257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_185)_ 6.25119213600934245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_186)_ 6.24955174859347125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_187)_ 6.24790045722984360e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_188)_ 6.24623822458269515e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_189)_ 6.24456501300057809e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_190)_ 6.24287677449601546e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_191)_ 6.24112446702830610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_192)_ 6.23936069259785171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_193)_ 6.23758541096066708e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_194)_ 6.23579858153597684e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_195)_ 6.23400016340409167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_196)_ 6.23219011530427025e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_197)_ 6.23036839563257061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_198)_ 6.22853496243969076e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_199)_ 6.22668977342881078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_200)_ 6.22483278595340863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_201)_ 6.22296395701508587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_202)_ 6.22108324326137421e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_203)_ 6.21919060098353995e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_204)_ 6.21728598611438059e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_205)_ 6.21536935422601289e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_206)_ 6.21344066052765953e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_207)_ 6.21149985986342656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_208)_ 6.20954690671007796e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_209)_ 6.20758175517480737e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_210)_ 6.20560435899300344e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_211)_ 6.20361467152601165e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_212)_ 6.20161264575889959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_213)_ 6.19957376077123428e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_214)_ 6.19751152901315194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_215)_ 6.19543659771248727e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_216)_ 6.19334891747927472e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_217)_ 6.19124843852930056e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_218)_ 6.18913511068183055e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_219)_ 6.18700888335733197e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_220)_ 6.18486970557520905e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_221)_ 6.18271752595154069e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_222)_ 6.18055229269681661e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_223)_ 6.17837395361369488e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_224)_ 6.17618245609475807e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_225)_ 6.17397774712027712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_226)_ 6.17175977325599590e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_227)_ 6.16952848065091572e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_228)_ 6.16728381503510406e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_229)_ 6.16502572171751027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_230)_ 6.16275414558379993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_231)_ 6.16046903109420541e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_232)_ 6.15817032228140206e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_233)_ 6.15574429699451500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_234)_ 6.15329479874054215e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_235)_ 6.15083080525464965e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_236)_ 6.14835225577668396e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_237)_ 6.14585908908539125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_238)_ 6.14335124349633546e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_239)_ 6.14082865685984487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_240)_ 6.13829126655899984e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_241)_ 6.13573900950765108e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_242)_ 6.13317182214848557e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_243)_ 6.13058964045113157e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_244)_ 6.12799239991030618e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_245)_ 6.12538003554401698e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_246)_ 6.12275248189181198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_247)_ 6.12010967301308000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_248)_ 6.11745154248541212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_249)_ 6.11477802340302290e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_250)_ 6.11205958079594751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_251)_ 6.10926759647215931e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_252)_ 6.10645951558313484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_253)_ 6.10363526704780028e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_254)_ 6.10079477927896434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_255)_ 6.09793798018213096e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_256)_ 6.09506479715440790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_257)_ 6.09217515708349779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_258)_ 6.08926898634679858e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_259)_ 6.08634621081059919e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_260)_ 6.08340675582938104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_261)_ 6.08045054624523900e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_262)_ 6.07747750638741167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_263)_ 6.07448756007194604e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_264)_ 6.07148063060147507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_265)_ 6.06845664076514879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_266)_ 6.06539547364129916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_267)_ 6.06223227376632039e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_268)_ 6.05905118585002427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_269)_ 6.05585212791223526e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_270)_ 6.05263501744362173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_271)_ 6.04939977140659124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_272)_ 6.04614630623639115e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_273)_ 6.04287453784239688e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_274)_ 6.03958438160961606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_275)_ 6.03627575240040528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_276)_ 6.03294856455641479e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_277)_ 6.02960273190077061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_278)_ 6.02623816774050098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_279)_ 6.02285478486922159e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_280)_ 6.01945249557008779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_281)_ 6.01592195377120689e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_282)_ 6.01229066336618274e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_283)_ 6.00863913637058147e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_284)_ 6.00496727808183053e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_285)_ 6.00127499327883953e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_286)_ 5.99756218622708914e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_287)_ 5.99382876068409587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_288)_ 5.99007461990527332e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_289)_ 5.98629966665020277e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_290)_ 5.98250380318932713e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_291)_ 5.97868693131110405e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_292)_ 5.97484895232960511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_293)_ 5.97098976709261393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_294)_ 5.96710927599021801e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_295)_ 5.96300289315853007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_296)_ 5.95886795254278780e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_297)_ 5.95471023958170775e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_298)_ 5.95052964746722566e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_299)_ 5.94632606896295712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_300)_ 5.94209939641692273e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_301)_ 5.93784952177499221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_302)_ 5.93357633659504771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_303)_ 5.92927973206191368e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_304)_ 5.92495959900308122e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_305)_ 5.92061582790525804e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_306)_ 5.91624830893177105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_307)_ 5.91177974609934225e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_308)_ 5.90706625380297723e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_309)_ 5.90232705642095397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_310)_ 5.89756203552450344e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_311)_ 5.89277107244767393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_312)_ 5.88795404831224261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_313)_ 5.88311084405386069e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_314)_ 5.87824134044943989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_315)_ 5.87334541814586686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_316)_ 5.86842295769007549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_317)_ 5.86347383956054173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_318)_ 5.85849794420026058e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_319)_ 5.85339598547926414e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_320)_ 5.84816704762123081e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_321)_ 5.84290989970083956e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_322)_ 5.83762441765609097e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_323)_ 5.83231047758484848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_324)_ 5.82696795578974687e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_325)_ 5.82159672882514272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_326)_ 5.81619667354617391e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_327)_ 5.81076766716003021e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_328)_ 5.80530958727950690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_329)_ 5.79982231197895146e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_330)_ 5.79418716198517103e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_331)_ 5.78825304676435337e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_332)_ 5.78228730539328524e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_333)_ 5.77628981004333184e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_334)_ 5.77026043372112198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_335)_ 5.76419905034608036e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_336)_ 5.75810553483135124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_337)_ 5.75197976316823585e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_338)_ 5.74582161251430890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_339)_ 5.73963096128534715e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_340)_ 5.73340768925124564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_341)_ 5.72710275668627489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_342)_ 5.72076128217523063e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_343)_ 5.71438655950355212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_344)_ 5.70797847395055200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_345)_ 5.70153691271082010e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_346)_ 5.69506176501877022e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_347)_ 5.68855292227852303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_348)_ 5.68201027819934978e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_349)_ 5.67543372893691824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_350)_ 5.66882317324057254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_351)_ 5.66193948333359813e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_352)_ 5.65498638927328727e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_353)_ 5.64799759409107480e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_354)_ 5.64097300484826647e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_355)_ 5.63391253217702612e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_356)_ 5.62681609047742555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_357)_ 5.61968359812292064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_358)_ 5.61251497767459142e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_359)_ 5.60531015610452172e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_360)_ 5.59798065790143937e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_361)_ 5.59048372156363840e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_362)_ 5.58294929617667108e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_363)_ 5.57537732719034551e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_364)_ 5.56776776590532307e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_365)_ 5.56012056976895863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_366)_ 5.55243570268382030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_367)_ 5.54471313532943171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_368)_ 5.53695284549784148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_369)_ 5.52916502786219297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_370)_ 5.52135006158049393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_371)_ 5.51349745266043598e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_372)_ 5.50560721097164318e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_373)_ 5.49767935537961989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_374)_ 5.48971391417688110e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_375)_ 5.48171092553273027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_376)_ 5.47367043796258272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_377)_ 5.46559251081766320e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_378)_ 5.45737770740448198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_379)_ 5.44910075456235958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_380)_ 5.44078604307073945e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_381)_ 5.43243368261066735e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_382)_ 5.42404379669545094e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_383)_ 5.41561652331357166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_384)_ 5.40715201559994441e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_385)_ 5.39865044253688069e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_386)_ 5.39016026565399784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_387)_ 5.38169161009553889e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_388)_ 5.37318695136211701e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_389)_ 5.36464652649909368e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_390)_ 5.35607059215439421e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_391)_ 5.34745942547832769e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_392)_ 5.33881332506403936e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_393)_ 5.33013261193062462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_394)_ 5.32141437488723525e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_395)_ 5.31265754326454314e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_396)_ 5.30386717660230644e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_397)_ 5.29504369676644870e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_398)_ 5.28618755370739635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_399)_ 5.27729922674881564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_400)_ 5.26837922593657240e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_401)_ 5.25942809345107634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_402)_ 5.25044918590041121e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_403)_ 5.24144206494757867e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_404)_ 5.23240566148525872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_405)_ 5.22334066140060074e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_406)_ 5.21424779083200747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_407)_ 5.20512781803893176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_408)_ 5.19598155536348116e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_409)_ 5.18680985322984185e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_410)_ 5.17761324474948097e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_411)_ 5.16839306801651048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_412)_ 5.15915033339110849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_413)_ 5.14988610670179909e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_414)_ 5.14060151188311920e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_415)_ 5.13129773375132245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_416)_ 5.12197602092700706e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_417)_ 5.11279027672562663e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_418)_ 5.10370287253443990e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_419)_ 5.09460208593452037e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_420)_ 5.08548940956558368e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_421)_ 5.07636641475246506e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_422)_ 5.06723475542974171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_423)_ 5.05809617229569355e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_424)_ 5.04898105826665429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_425)_ 5.03996181014528659e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_426)_ 5.03094144209787615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_427)_ 5.02192205889031484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_428)_ 5.01290587539659498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_429)_ 5.00389522249406298e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_430)_ 4.99489255335734086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_431)_ 4.98590045018895651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_432)_ 4.97742273752585405e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_433)_ 4.96901602556365916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_434)_ 4.96062728654708991e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_435)_ 4.95225949946268784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_436)_ 4.94391580366313264e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_437)_ 4.93559950872087541e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_438)_ 4.92731410513388326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_439)_ 4.91924890237456722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_440)_ 4.91142376972496990e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_441)_ 4.90363920043255561e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_442)_ 4.89589933228521872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_443)_ 4.88820854301493242e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_444)_ 4.88057146835183104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_445)_ 4.87299302218081465e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_446)_ 4.86547841916396138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_447)_ 4.85854868509661202e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_448)_ 4.85181545165387007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_449)_ 4.84515673678138583e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_450)_ 4.83857867206341794e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_451)_ 4.83208781936116125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_452)_ 4.82569121821637879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_453)_ 4.81939644187557334e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_454)_ 4.81321166419162694e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_455)_ 4.80735460778910664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_456)_ 4.80185165962984755e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_457)_ 4.79647756570329022e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_458)_ 4.79124307349086394e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_459)_ 4.78616009468220369e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_460)_ 4.78124194642456430e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_461)_ 4.77650367538428924e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_462)_ 4.77196250574742393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_463)_ 4.76763848039529776e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_464)_ 4.76355541858571954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_465)_ 4.75976803114401363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_466)_ 4.75661058199433100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_467)_ 4.75377427667743788e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_468)_ 4.75132447650746670e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_469)_ 4.74937357486949239e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_0)__ 6.40629848387410732e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_1)__ 6.40629468640867259e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_2)__ 6.40628329394053253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_3)__ 6.40626430625416958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_4)__ 6.40623772299037455e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_5)__ 6.40620354364622813e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_6)__ 6.40616176757507532e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_7)__ 6.40611239398648280e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_8)__ 6.40605542194620767e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_9)__ 6.40599085037613776e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_10)_ 6.40591867805423476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_11)_ 6.40583890361447175e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_12)_ 6.40575152554675498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_13)_ 6.40565654219684433e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_14)_ 6.40555395176626376e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_15)_ 6.40544375231220329e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_16)_ 6.40532594174741234e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_17)_ 6.40520051784008615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_18)_ 6.40506747821374915e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_19)_ 6.40492682034712146e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_20)_ 6.40477854157398525e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_21)_ 6.40462263908303555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_22)_ 6.40445910991773104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_23)_ 6.40428795097613630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_24)_ 6.40410915901074702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_25)_ 6.40392273062831805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_26)_ 6.40372866228967439e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_27)_ 6.40352695030952788e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_28)_ 6.40331759085626402e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_29)_ 6.40310057995174731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_30)_ 6.40287591347109526e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_31)_ 6.40264358714245390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_32)_ 6.40240359654677462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_33)_ 6.40215593711756128e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_34)_ 6.40190016741540973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_35)_ 6.40163600041000649e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_36)_ 6.40136411622502521e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_37)_ 6.40108450967897227e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_38)_ 6.40079717544093398e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_39)_ 6.40050210803028392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_40)_ 6.40019930181638870e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_41)_ 6.39988875101829464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_42)_ 6.39957044970441871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_43)_ 6.39924439179221736e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_44)_ 6.39891057104786114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_45)_ 6.39856898108588865e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_46)_ 6.39821961536885837e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_47)_ 6.39786246720699339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_48)_ 6.39749752975781263e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_49)_ 6.39712479602575570e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_50)_ 6.39674425886180344e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_51)_ 6.39635591096308076e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_52)_ 6.39595974487245940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_53)_ 6.39555575297814940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_54)_ 6.39514392751327705e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_55)_ 6.39472426055546492e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_56)_ 6.39429674402638923e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_57)_ 6.39386136969134071e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_58)_ 6.39341812915876986e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_59)_ 6.39296701387982509e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_60)_ 6.39250801514788307e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_61)_ 6.39204112409806768e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_62)_ 6.39156633170676116e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_63)_ 6.39108362879110743e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_64)_ 6.39059300600850548e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_65)_ 6.39009445385609283e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_66)_ 6.38958796267021967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_67)_ 6.38907352262591743e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_68)_ 6.38855112373635166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_69)_ 6.38802075585227271e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_70)_ 6.38748240866145025e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_71)_ 6.38693607168810615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_72)_ 6.38638173429232978e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_73)_ 6.38581938566948963e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_74)_ 6.38524901484963294e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_75)_ 6.38467061069687674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_76)_ 6.38408416190878825e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_77)_ 6.38348965701575821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_78)_ 6.38288708438035854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_79)_ 6.38227643219670000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_80)_ 6.38165768848976924e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_81)_ 6.38103084111476377e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_82)_ 6.38039587775641266e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_83)_ 6.37975278592829227e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_84)_ 6.37910155297212427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_85)_ 6.37844216605707146e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_86)_ 6.37777461217901802e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_87)_ 6.37709887815984331e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_88)_ 6.37641495064668149e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_89)_ 6.37572281611117617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_90)_ 6.37502246084871800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_91)_ 6.37431387097767796e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_92)_ 6.37359703243862796e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_93)_ 6.37287193099354852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_94)_ 6.37213855222503014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_95)_ 6.37139688153546047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_96)_ 6.37064690414620500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_97)_ 6.36988860509677011e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_98)_ 6.36912196924396312e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_99)_ 6.36834698126103476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_100)_ 6.36756362563681719e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_101)_ 6.36677188667484515e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_102)_ 6.36597174849246841e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_103)_ 6.36516319501995440e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_104)_ 6.36434620999957801e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_105)_ 6.36352077698470140e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_106)_ 6.36268682259024345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_107)_ 6.36184429081707989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_108)_ 6.36099325902641155e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_109)_ 6.36013371000338879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_110)_ 6.35926562633943533e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_111)_ 6.35838899043126347e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_112)_ 6.35750378447986719e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_113)_ 6.35660999048950970e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_114)_ 6.35570759026670018e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_115)_ 6.35479656541915503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_116)_ 6.35387689735474623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_117)_ 6.35294856728044692e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_118)_ 6.35201155620125064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_119)_ 6.35106584491908990e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_120)_ 6.35011141403173767e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_121)_ 6.34914824393169681e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_122)_ 6.34817631480507814e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_123)_ 6.34719560663046423e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_124)_ 6.34620609917776477e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_125)_ 6.34520777200705481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_126)_ 6.34420060446740237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_127)_ 6.34318457569568181e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_128)_ 6.34215966461537874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_129)_ 6.34112584993537709e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_130)_ 6.34008311014873698e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_131)_ 6.33903142353145554e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_132)_ 6.33797076814121922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_133)_ 6.33690112181614040e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_134)_ 6.33582246217348199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_135)_ 6.33473476660836639e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_136)_ 6.33363801229247514e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_137)_ 6.33253217617273236e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_138)_ 6.33141723496997599e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_139)_ 6.33029316517761416e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_140)_ 6.32915994306026803e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_141)_ 6.32801754465240691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_142)_ 6.32686594575695977e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_143)_ 6.32570512194392052e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_144)_ 6.32453504854893680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_145)_ 6.32334259827692051e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_146)_ 6.32212977858550857e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_147)_ 6.32090744426670099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_148)_ 6.31967556918345039e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_149)_ 6.31843412695218802e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_150)_ 6.31718309094130177e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_151)_ 6.31592243426959357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_152)_ 6.31465212980472828e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_153)_ 6.31337215016166482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_154)_ 6.31208246770107451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_155)_ 6.31078305452774515e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_156)_ 6.30947388248896814e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_157)_ 6.30815492317291415e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_158)_ 6.30682614790699176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_159)_ 6.30548752775619121e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_160)_ 6.30413903352141887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_161)_ 6.30278063573780756e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_162)_ 6.30141230467302194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_163)_ 6.30003401032554251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_164)_ 6.29864572242293761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_165)_ 6.29724741042012113e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_166)_ 6.29583904349759393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_167)_ 6.29442059055967036e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_168)_ 6.29299202023269473e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_169)_ 6.29155330086323517e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_170)_ 6.29010440051627029e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_171)_ 6.28864528697335743e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_172)_ 6.28717592773078522e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_173)_ 6.28569628999771552e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_174)_ 6.28420634069430832e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_175)_ 6.28267764729022531e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_176)_ 6.28113381881562916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_177)_ 6.27957934924755676e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_178)_ 6.27801420357931121e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_179)_ 6.27643834649905017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_180)_ 6.27485174238778356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_181)_ 6.27325435531735280e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_182)_ 6.27164614904840221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_183)_ 6.27002708702833047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_184)_ 6.26839713238922798e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_185)_ 6.26675624794580912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_186)_ 6.26510439619331621e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_187)_ 6.26344153930542333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_188)_ 6.26176763913211900e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_189)_ 6.26008265719757730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_190)_ 6.25838655469801779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_191)_ 6.25667929249954824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_192)_ 6.25496083113599965e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_193)_ 6.25323113080674631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_194)_ 6.25149015137451158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_195)_ 6.24973785236316459e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_196)_ 6.24797419295550611e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_197)_ 6.24619913199103891e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_198)_ 6.24441262796372740e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_199)_ 6.24260167673897612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_200)_ 6.24073129448276944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_201)_ 6.23884895338383174e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_202)_ 6.23695460908800285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_203)_ 6.23504821687223085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_204)_ 6.23312973164219457e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_205)_ 6.23119910792991973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_206)_ 6.22925629989138159e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_207)_ 6.22730126130410397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_208)_ 6.22533394556475059e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_209)_ 6.22335430568670702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_210)_ 6.22136229429765564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_211)_ 6.21935786363714911e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_212)_ 6.21734096555417324e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_213)_ 6.21531155150470696e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_214)_ 6.21326957254928018e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_215)_ 6.21121497935052531e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_216)_ 6.20914772217072937e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_217)_ 6.20706775086937981e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_218)_ 6.20497501490071173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_219)_ 6.20286946331125861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_220)_ 6.20074669820977604e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_221)_ 6.19857814970531678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_222)_ 6.19639640378815102e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_223)_ 6.19420140693098418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_224)_ 6.19199310517924815e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_225)_ 6.18977144414862224e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_226)_ 6.18753636902255977e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_227)_ 6.18528782454982746e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_228)_ 6.18302575504205265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_229)_ 6.18075010437127403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_230)_ 6.17846081596751660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_231)_ 6.17615783281636723e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_232)_ 6.17384109745657454e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_233)_ 6.17151055197765785e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_234)_ 6.16916613801754252e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_235)_ 6.16680779676020308e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_236)_ 6.16443546893333760e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_237)_ 6.16204909480605920e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_238)_ 6.15964861418661940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_239)_ 6.15719331736780688e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_240)_ 6.15463555467478685e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_241)_ 6.15206274384529337e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_242)_ 6.14947481952882882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_243)_ 6.14687171587802936e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_244)_ 6.14425336654646514e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_245)_ 6.14161970468648306e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_246)_ 6.13897066294709646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_247)_ 6.13630617347191958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_248)_ 6.13362616789715602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_249)_ 6.13093057734963978e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_250)_ 6.12821933244493451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_251)_ 6.12549236328549114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_252)_ 6.12274959945887005e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_253)_ 6.11999097003603580e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_254)_ 6.11721640356971363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_255)_ 6.11442582809283124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_256)_ 6.11157450388830270e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_257)_ 6.10866037973676228e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_258)_ 6.10572950259336196e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_259)_ 6.10278179600214017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_260)_ 6.09981718296376982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_261)_ 6.09683558593450599e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_262)_ 6.09383692682524085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_263)_ 6.09082112700067739e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_264)_ 6.08778810727862307e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_265)_ 6.08473778792941360e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_266)_ 6.08167008867546528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_267)_ 6.07858492869097660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_268)_ 6.07548222660176691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_269)_ 6.07236190048527433e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_270)_ 6.06922386787071630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_271)_ 6.06606804573941290e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_272)_ 6.06278787304043547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_273)_ 6.05948679452713321e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_274)_ 6.05616705559296378e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_275)_ 6.05282856811337453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_276)_ 6.04947124340173374e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_277)_ 6.04609499221088811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_278)_ 6.04269972473496964e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_279)_ 6.03928535061144487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_280)_ 6.03585177892342557e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_281)_ 6.03239891820224940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_282)_ 6.02892667643034343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_283)_ 6.02543496104438390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_284)_ 6.02192367893876366e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_285)_ 6.01839273646937656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_286)_ 6.01466678853911816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_287)_ 6.01089809492699061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_288)_ 6.00710835001230237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_289)_ 6.00329745272794355e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_290)_ 5.99946530146403560e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_291)_ 5.99561179407429634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_292)_ 5.99173682788285333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_293)_ 5.98784029969153764e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_294)_ 5.98392210578766708e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_295)_ 5.97998214195234823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_296)_ 5.97602030346931130e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_297)_ 5.97203648513430920e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_298)_ 5.96803058126509356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_299)_ 5.96384086947944283e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_300)_ 5.95957209155889132e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_301)_ 5.95527970027529534e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_302)_ 5.95096358235165042e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_303)_ 5.94662362406991676e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_304)_ 5.94225971128579786e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_305)_ 5.93787172944433834e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_306)_ 5.93345956359637370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_307)_ 5.92902309841586543e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_308)_ 5.92456221821816342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_309)_ 5.92007680697922467e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_310)_ 5.91556674835584033e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_311)_ 5.91089903119612217e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_312)_ 5.90603143293850863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_313)_ 5.90113714856879241e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_314)_ 5.89621605276366694e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_315)_ 5.89126801998471521e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_316)_ 5.88629292450740422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_317)_ 5.88129064045151395e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_318)_ 5.87626104181303646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_319)_ 5.87120400249761829e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_320)_ 5.86611939635560802e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_321)_ 5.86100709721876925e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_322)_ 5.85586171265395237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_323)_ 5.85048904624733765e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_324)_ 5.84508719728789856e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_325)_ 5.83965603495414811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_326)_ 5.83419542862479474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_327)_ 5.82870524792895210e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_328)_ 5.82318536279865384e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_329)_ 5.81763564352376505e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_330)_ 5.81205596080940623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_331)_ 5.80644618583597492e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_332)_ 5.80080619032189020e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_333)_ 5.79507537714096230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_334)_ 5.78897564131049265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_335)_ 5.78284316264316729e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_336)_ 5.77667780691729362e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_337)_ 5.77047944087050624e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_338)_ 5.76424793228706420e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_339)_ 5.75798315008901014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_340)_ 5.75168496443137087e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_341)_ 5.74535324680155597e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_342)_ 5.73898787012313321e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_343)_ 5.73258526843257883e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_344)_ 5.72609838638403588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_345)_ 5.71957718911789996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_346)_ 5.71302155542889167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_347)_ 5.70643136615616982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_348)_ 5.69980650431867915e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_349)_ 5.69314685525640058e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_350)_ 5.68645230677775331e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_351)_ 5.67972274931341943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_352)_ 5.67295807607686342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_353)_ 5.66608255855140257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_354)_ 5.65896669270714057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_355)_ 5.65181395489374836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_356)_ 5.64462424734938466e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_357)_ 5.63739747616023905e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_358)_ 5.63013355147622079e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_359)_ 5.62283238773600047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_360)_ 5.61549390390183660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_361)_ 5.60811802370458921e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_362)_ 5.60069576790395161e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_363)_ 5.59302014220661547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_364)_ 5.58530578859977354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_365)_ 5.57755265091429209e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_366)_ 5.56976067932998617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_367)_ 5.56192983070149580e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_368)_ 5.55406006889838437e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_369)_ 5.54615136516007610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_370)_ 5.53820369846628822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_371)_ 5.53022444497425241e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_372)_ 5.52222013121175692e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_373)_ 5.51417694531147973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_374)_ 5.50609490121674483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_375)_ 5.49797402269531403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_376)_ 5.48981434381742091e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_377)_ 5.48161590945485599e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_378)_ 5.47337877580212364e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_379)_ 5.46510301092064594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_380)_ 5.45667868430759313e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_381)_ 5.44819848698862046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_382)_ 5.43967935459412928e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_383)_ 5.43112141044804062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_384)_ 5.42252479307581794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_385)_ 5.41388965692221262e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_386)_ 5.40521617310124753e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_387)_ 5.39650453018000178e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_388)_ 5.38783247763093129e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_389)_ 5.37915426503524330e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_390)_ 5.37043903751699361e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_391)_ 5.36168705871300872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_392)_ 5.35289861392636155e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_393)_ 5.34407401113744172e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_394)_ 5.33521358206157288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_395)_ 5.32631768325555228e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_396)_ 5.31737977829245523e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_397)_ 5.30840596689495570e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_398)_ 5.29939788522139565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_399)_ 5.29035600175235246e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_400)_ 5.28128081619577188e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_401)_ 5.27217286094532867e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_402)_ 5.26303270260836413e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_403)_ 5.25386201468244636e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_404)_ 5.24466390294858229e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_405)_ 5.23543552479837118e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_406)_ 5.22617760014017207e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_407)_ 5.21689089189731305e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_408)_ 5.20757620803989383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_409)_ 5.19823440371799848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_410)_ 5.18886638350218803e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_411)_ 5.17947278470070600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_412)_ 5.17005485680796610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_413)_ 5.16061374642397013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_414)_ 5.15115058063163431e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_415)_ 5.14166654898805291e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_416)_ 5.13216290656020746e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_417)_ 5.12264097712415065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_418)_ 5.11324152764223285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_419)_ 5.10395915910376843e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_420)_ 5.09466331646319048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_421)_ 5.08535558749286096e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_422)_ 5.07603764504863548e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_423)_ 5.06671125139094869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_424)_ 5.05737826276339959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_425)_ 5.04808191507362309e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_426)_ 5.03887199432552606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_427)_ 5.02966166707919911e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_428)_ 5.02045318534918650e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_429)_ 5.01124892098989108e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_430)_ 5.00205137224384089e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_431)_ 4.99286317074357839e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_432)_ 4.98376852967558861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_433)_ 4.97517575406512336e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_434)_ 4.96659997472706962e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_435)_ 4.95804423628817617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_436)_ 4.94951174939413221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_437)_ 4.94100590094631045e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_438)_ 4.93253026521983600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_439)_ 4.92408861597527263e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_440)_ 4.91602986308275618e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_441)_ 4.90806263863732823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_442)_ 4.90013985846675340e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_443)_ 4.89226601795944731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_444)_ 4.88444587979736866e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_445)_ 4.87668449482112862e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_446)_ 4.86898722543495168e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_447)_ 4.86158786705545864e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_448)_ 4.85468869440324440e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_449)_ 4.84786476170272422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_450)_ 4.84112238389170386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_451)_ 4.83446832113347824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_452)_ 4.82790982770453425e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_453)_ 4.82145470974540373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_454)_ 4.81511139419371119e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_455)_ 4.80897031124972187e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_456)_ 4.80332456035369830e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_457)_ 4.79781017632078388e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_458)_ 4.79243824392932396e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_459)_ 4.78722104856457236e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_460)_ 4.78217232432385373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_461)_ 4.77730758722663396e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_462)_ 4.77264459579490889e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_463)_ 4.76820401015636151e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_464)_ 4.76401037641516965e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_465)_ 4.76009367867586022e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_466)_ 4.75684069678458883e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_467)_ 4.75392665819739904e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_468)_ 4.75140950158658342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_469)_ 4.74940481696931585e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_470)_ 4.74824243166227831e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_471)_ 4.72010222646906996e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_472)_ 4.69365882176566842e+01 OP @@ -13533,1538 +13536,1538 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_498)_ 2.22801102788747691e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_499)_ 1.97175159294354501e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_500)_ 1.35498706286133856e+01 OP -Volume_averaged_mass-weighted_plasma_effective_charge_(⟨Zₑ⟩ₘ)____________ (n_charge_plasma_effective_mass_weighted_vol_avg)_ 4.26329374835799413e-01 OP -Average_mass_of_all_ions_(amu)___________________________________________ (m_ions_total_amu)_____________ 2.73089399075073125e+00 OP -Total_mass_of_all_ions_in_plasma_(kg)____________________________________ (m_plasma_ions_total)__________ 6.10311717817044403e-04 OP +Volume_averaged_mass-weighted_plasma_effective_charge_(⟨Zₑ⟩ₘ)____________ (n_charge_plasma_effective_mass_weighted_vol_avg)_ 4.27892231320192384e-01 OP +Average_mass_of_all_ions_(amu)___________________________________________ (m_ions_total_amu)_____________ 2.75082843523598175e+00 OP +Total_mass_of_all_ions_in_plasma_(kg)____________________________________ (m_plasma_ions_total)__________ 6.18880334915468009e-04 OP Average_mass_of_all_fuel_ions_(amu)______________________________________ (m_fuel_amu)___________________ 2.51452696425700006e+00 OP -Total_mass_of_all_fuel_ions_in_plasma_(kg)_______________________________ (m_plasma_fuel_ions)___________ 5.12435966816946593e-04 OP +Total_mass_of_all_fuel_ions_in_plasma_(kg)_______________________________ (m_plasma_fuel_ions)___________ 5.09454866992840481e-04 OP Average_mass_of_all_beam_ions_(amu)______________________________________ (m_beam_amu)___________________ 2.01355421449150329e+00 OP -Total_mass_of_all_alpha_particles_in_plasma_(kg)_________________________ (m_plasma_alpha)_______________ 7.79961803517537712e-05 OP -Total_mass_of_all_electrons_in_plasma_(kg)_______________________________ (m_plasma_electron)____________ 1.37242655155683782e-07 OP -Total_mass_of_the_plasma_(kg)____________________________________________ (m_plasma)_____________________ 6.10448960472200126e-04 OP +Total_mass_of_all_alpha_particles_in_plasma_(kg)_________________________ (m_plasma_alpha)_______________ 8.86675361595709203e-05 OP +Total_mass_of_all_electrons_in_plasma_(kg)_______________________________ (m_plasma_electron)____________ 1.39708671828550419e-07 OP +Total_mass_of_the_plasma_(kg)____________________________________________ (m_plasma)_____________________ 6.19020043587296606e-04 OP # Plasma density limits # Plasma_density_limit_model_used__________________________________________ (i_density_limit)______________ 7 -Density_limit_from_scaling_(nₑ<)(/m³)____________________________________ (nd_plasma_electrons_max)______ 7.36380083434616668e+19 OP -Old_ASDEX_model__________________________________________________________ (nd_plasma_electron_max_array(1))_ 5.32520612774513541e+19 OP -Borrass_ITER_model_I_____________________________________________________ (nd_plasma_electron_max_array(2))_ 1.09440682959023538e+20 OP -Borrass_ITER_model_II____________________________________________________ (nd_plasma_electron_max_array(3))_ 4.32008692413795205e+19 OP -JET_edge_radiation_model_________________________________________________ (nd_plasma_electron_max_array(4))_ 2.12188067839230948e+21 OP -JET_simplified_model_____________________________________________________ (nd_plasma_electron_max_array(5))_ 4.09713814292284899e+20 OP -Hugill-Murakami_Mq_model_________________________________________________ (nd_plasma_electron_max_array(6))_ 6.58864188280160584e+19 OP -Greenwald_model__________________________________________________________ (nd_plasma_electron_max_array(7))_ 7.36380083434616668e+19 OP -ASDEX_New________________________________________________________________ (nd_plasma_electron_max_array(8))_ 8.74962351476857897e+20 OP +Density_limit_from_scaling_(nₑ<)(/m³)____________________________________ (nd_plasma_electrons_max)______ 7.49612131682629878e+19 OP +Old_ASDEX_model__________________________________________________________ (nd_plasma_electron_max_array(1))_ 5.32467641546511647e+19 OP +Borrass_ITER_model_I_____________________________________________________ (nd_plasma_electron_max_array(2))_ 1.08869542435499377e+20 OP +Borrass_ITER_model_II____________________________________________________ (nd_plasma_electron_max_array(3))_ 4.28635291497600942e+19 OP +JET_edge_radiation_model_________________________________________________ (nd_plasma_electron_max_array(4))_ 2.16616819768938280e+21 OP +JET_simplified_model_____________________________________________________ (nd_plasma_electron_max_array(5))_ 4.07397322844233531e+20 OP +Hugill-Murakami_Mq_model_________________________________________________ (nd_plasma_electron_max_array(6))_ 6.70703349773431849e+19 OP +Greenwald_model__________________________________________________________ (nd_plasma_electron_max_array(7))_ 7.49612131682629878e+19 OP +ASDEX_New________________________________________________________________ (nd_plasma_electron_max_array(8))_ 9.06639803490199667e+20 OP # Plasma Reactions : # Deuterium_fuel_fraction__________________________________________________ (f_plasma_fuel_deuterium)______ 5.00000000000000000e-01 Tritium_fuel_fraction____________________________________________________ (f_plasma_fuel_tritium)________ 5.00000000000000000e-01 3-Helium_fuel_fraction___________________________________________________ (f_plasma_fuel_helium3)________ 0.00000000000000000e+00 -Fusion_rate:_total_(reactions/sec)_______________________________________ (fusrat_total)_________________ 5.79316919431855997e+20 OP -Fusion_rate_density:_total_(reactions/m³/sec)____________________________ (fusden_total)_________________ 3.06813774889233088e+17 OP -Fusion_rate_density:_plasma_(reactions/m³/sec)___________________________ (fusden_plasma)________________ 3.06813774889233088e+17 OP -Total_fusion_power_(MW)__________________________________________________ (p_fusion_total_mw)____________ 1.62505179266176174e+03 OP -D-T_fusion_power:_total_(MW)_____________________________________________ (p_dt_total_mw)________________ 1.62310382710618933e+03 OP -DT_fusion_rate_at_point_0________________________________________________ fusrat_plasma_dt_profile0______ 1.06340800390747174e+18 -DT_fusion_rate_at_point_1________________________________________________ fusrat_plasma_dt_profile1______ 1.06339864429410918e+18 -DT_fusion_rate_at_point_2________________________________________________ fusrat_plasma_dt_profile2______ 1.06337056557165466e+18 -DT_fusion_rate_at_point_3________________________________________________ fusrat_plasma_dt_profile3______ 1.06332376809302413e+18 -DT_fusion_rate_at_point_4________________________________________________ fusrat_plasma_dt_profile4______ 1.06325825244648448e+18 -DT_fusion_rate_at_point_5________________________________________________ fusrat_plasma_dt_profile5______ 1.06317401945575539e+18 -DT_fusion_rate_at_point_6________________________________________________ fusrat_plasma_dt_profile6______ 1.06307107018015706e+18 -DT_fusion_rate_at_point_7________________________________________________ fusrat_plasma_dt_profile7______ 1.06294940591479437e+18 -DT_fusion_rate_at_point_8________________________________________________ fusrat_plasma_dt_profile8______ 1.06280902819079424e+18 -DT_fusion_rate_at_point_9________________________________________________ fusrat_plasma_dt_profile9______ 1.06264993877557658e+18 -DT_fusion_rate_at_point_10_______________________________________________ fusrat_plasma_dt_profile10_____ 1.06247213967316211e+18 -DT_fusion_rate_at_point_11_______________________________________________ fusrat_plasma_dt_profile11_____ 1.06227563312454003e+18 -DT_fusion_rate_at_point_12_______________________________________________ fusrat_plasma_dt_profile12_____ 1.06206042160805798e+18 -DT_fusion_rate_at_point_13_______________________________________________ fusrat_plasma_dt_profile13_____ 1.06182650783986701e+18 -DT_fusion_rate_at_point_14_______________________________________________ fusrat_plasma_dt_profile14_____ 1.06157389477440128e+18 -DT_fusion_rate_at_point_15_______________________________________________ fusrat_plasma_dt_profile15_____ 1.06130258560490803e+18 -DT_fusion_rate_at_point_16_______________________________________________ fusrat_plasma_dt_profile16_____ 1.06101258376400883e+18 -DT_fusion_rate_at_point_17_______________________________________________ fusrat_plasma_dt_profile17_____ 1.06070389292431744e+18 -DT_fusion_rate_at_point_18_______________________________________________ fusrat_plasma_dt_profile18_____ 1.06037651699908288e+18 -DT_fusion_rate_at_point_19_______________________________________________ fusrat_plasma_dt_profile19_____ 1.06003046014289062e+18 -DT_fusion_rate_at_point_20_______________________________________________ fusrat_plasma_dt_profile20_____ 1.05966572675239910e+18 -DT_fusion_rate_at_point_21_______________________________________________ fusrat_plasma_dt_profile21_____ 1.05928232146711194e+18 -DT_fusion_rate_at_point_22_______________________________________________ fusrat_plasma_dt_profile22_____ 1.05888024917021453e+18 -DT_fusion_rate_at_point_23_______________________________________________ fusrat_plasma_dt_profile23_____ 1.05845951498942234e+18 -DT_fusion_rate_at_point_24_______________________________________________ fusrat_plasma_dt_profile24_____ 1.05802012429790336e+18 -DT_fusion_rate_at_point_25_______________________________________________ fusrat_plasma_dt_profile25_____ 1.05756208271522061e+18 -DT_fusion_rate_at_point_26_______________________________________________ fusrat_plasma_dt_profile26_____ 1.05708539610833088e+18 -DT_fusion_rate_at_point_27_______________________________________________ fusrat_plasma_dt_profile27_____ 1.05659007059261632e+18 -DT_fusion_rate_at_point_28_______________________________________________ fusrat_plasma_dt_profile28_____ 1.05607611253296794e+18 -DT_fusion_rate_at_point_29_______________________________________________ fusrat_plasma_dt_profile29_____ 1.05554352854491341e+18 -DT_fusion_rate_at_point_30_______________________________________________ fusrat_plasma_dt_profile30_____ 1.05499232549577690e+18 -DT_fusion_rate_at_point_31_______________________________________________ fusrat_plasma_dt_profile31_____ 1.05442251050588915e+18 -DT_fusion_rate_at_point_32_______________________________________________ fusrat_plasma_dt_profile32_____ 1.05383409094985587e+18 -DT_fusion_rate_at_point_33_______________________________________________ fusrat_plasma_dt_profile33_____ 1.05322707445783526e+18 -DT_fusion_rate_at_point_34_______________________________________________ fusrat_plasma_dt_profile34_____ 1.05260146891689638e+18 -DT_fusion_rate_at_point_35_______________________________________________ fusrat_plasma_dt_profile35_____ 1.05195728247239808e+18 -DT_fusion_rate_at_point_36_______________________________________________ fusrat_plasma_dt_profile36_____ 1.05129452352941926e+18 -DT_fusion_rate_at_point_37_______________________________________________ fusrat_plasma_dt_profile37_____ 1.05061320075424013e+18 -DT_fusion_rate_at_point_38_______________________________________________ fusrat_plasma_dt_profile38_____ 1.04991332307585088e+18 -DT_fusion_rate_at_point_39_______________________________________________ fusrat_plasma_dt_profile39_____ 1.04919489968752755e+18 -DT_fusion_rate_at_point_40_______________________________________________ fusrat_plasma_dt_profile40_____ 1.04845794004842970e+18 -DT_fusion_rate_at_point_41_______________________________________________ fusrat_plasma_dt_profile41_____ 1.04770245388525952e+18 -DT_fusion_rate_at_point_42_______________________________________________ fusrat_plasma_dt_profile42_____ 1.04692845119396595e+18 -DT_fusion_rate_at_point_43_______________________________________________ fusrat_plasma_dt_profile43_____ 1.04613594224147686e+18 -DT_fusion_rate_at_point_44_______________________________________________ fusrat_plasma_dt_profile44_____ 1.04532493756749837e+18 -DT_fusion_rate_at_point_45_______________________________________________ fusrat_plasma_dt_profile45_____ 1.04449544798634790e+18 -DT_fusion_rate_at_point_46_______________________________________________ fusrat_plasma_dt_profile46_____ 1.04364748458883187e+18 -DT_fusion_rate_at_point_47_______________________________________________ fusrat_plasma_dt_profile47_____ 1.04278105874417357e+18 -DT_fusion_rate_at_point_48_______________________________________________ fusrat_plasma_dt_profile48_____ 1.04189618210199488e+18 -DT_fusion_rate_at_point_49_______________________________________________ fusrat_plasma_dt_profile49_____ 1.04099286659431872e+18 -DT_fusion_rate_at_point_50_______________________________________________ fusrat_plasma_dt_profile50_____ 1.04007112443765517e+18 -DT_fusion_rate_at_point_51_______________________________________________ fusrat_plasma_dt_profile51_____ 1.03913096813509901e+18 -DT_fusion_rate_at_point_52_______________________________________________ fusrat_plasma_dt_profile52_____ 1.03817241047849498e+18 -DT_fusion_rate_at_point_53_______________________________________________ fusrat_plasma_dt_profile53_____ 1.03719546455064640e+18 -DT_fusion_rate_at_point_54_______________________________________________ fusrat_plasma_dt_profile54_____ 1.03620014372756787e+18 -DT_fusion_rate_at_point_55_______________________________________________ fusrat_plasma_dt_profile55_____ 1.03518646168078618e+18 -DT_fusion_rate_at_point_56_______________________________________________ fusrat_plasma_dt_profile56_____ 1.03415443237969280e+18 -DT_fusion_rate_at_point_57_______________________________________________ fusrat_plasma_dt_profile57_____ 1.03310407009393664e+18 -DT_fusion_rate_at_point_58_______________________________________________ fusrat_plasma_dt_profile58_____ 1.03203538939587610e+18 -DT_fusion_rate_at_point_59_______________________________________________ fusrat_plasma_dt_profile59_____ 1.03094840516307187e+18 -DT_fusion_rate_at_point_60_______________________________________________ fusrat_plasma_dt_profile60_____ 1.02984313258082176e+18 -DT_fusion_rate_at_point_61_______________________________________________ fusrat_plasma_dt_profile61_____ 1.02871958714476621e+18 -DT_fusion_rate_at_point_62_______________________________________________ fusrat_plasma_dt_profile62_____ 1.02757778466352051e+18 -DT_fusion_rate_at_point_63_______________________________________________ fusrat_plasma_dt_profile63_____ 1.02641774126136768e+18 -DT_fusion_rate_at_point_64_______________________________________________ fusrat_plasma_dt_profile64_____ 1.02523947338099277e+18 -DT_fusion_rate_at_point_65_______________________________________________ fusrat_plasma_dt_profile65_____ 1.02404299778629005e+18 -DT_fusion_rate_at_point_66_______________________________________________ fusrat_plasma_dt_profile66_____ 1.02282833156517478e+18 -DT_fusion_rate_at_point_67_______________________________________________ fusrat_plasma_dt_profile67_____ 1.02159549213250637e+18 -DT_fusion_rate_at_point_68_______________________________________________ fusrat_plasma_dt_profile68_____ 1.02034449723300122e+18 -DT_fusion_rate_at_point_69_______________________________________________ fusrat_plasma_dt_profile69_____ 1.01907536494424077e+18 -DT_fusion_rate_at_point_70_______________________________________________ fusrat_plasma_dt_profile70_____ 1.01778811367970995e+18 -DT_fusion_rate_at_point_71_______________________________________________ fusrat_plasma_dt_profile71_____ 1.01648276219189133e+18 -DT_fusion_rate_at_point_72_______________________________________________ fusrat_plasma_dt_profile72_____ 1.01515932957540915e+18 -DT_fusion_rate_at_point_73_______________________________________________ fusrat_plasma_dt_profile73_____ 1.01381783527023232e+18 -DT_fusion_rate_at_point_74_______________________________________________ fusrat_plasma_dt_profile74_____ 1.01245829906491814e+18 -DT_fusion_rate_at_point_75_______________________________________________ fusrat_plasma_dt_profile75_____ 1.01108074109992077e+18 -DT_fusion_rate_at_point_76_______________________________________________ fusrat_plasma_dt_profile76_____ 1.00968518187094502e+18 -DT_fusion_rate_at_point_77_______________________________________________ fusrat_plasma_dt_profile77_____ 1.00827164223235238e+18 -DT_fusion_rate_at_point_78_______________________________________________ fusrat_plasma_dt_profile78_____ 1.00684014340061990e+18 -DT_fusion_rate_at_point_79_______________________________________________ fusrat_plasma_dt_profile79_____ 1.00539070695786291e+18 -DT_fusion_rate_at_point_80_______________________________________________ fusrat_plasma_dt_profile80_____ 1.00392335485540480e+18 -DT_fusion_rate_at_point_81_______________________________________________ fusrat_plasma_dt_profile81_____ 1.00243810941738419e+18 -DT_fusion_rate_at_point_82_______________________________________________ fusrat_plasma_dt_profile82_____ 1.00093499334445555e+18 -DT_fusion_rate_at_point_83_______________________________________________ fusrat_plasma_dt_profile83_____ 9.99414029717500672e+17 -DT_fusion_rate_at_point_84_______________________________________________ fusrat_plasma_dt_profile84_____ 9.97875242001433984e+17 -DT_fusion_rate_at_point_85_______________________________________________ fusrat_plasma_dt_profile85_____ 9.96318654049025152e+17 -DT_fusion_rate_at_point_86_______________________________________________ fusrat_plasma_dt_profile86_____ 9.94744290104819328e+17 -DT_fusion_rate_at_point_87_______________________________________________ fusrat_plasma_dt_profile87_____ 9.93152174809073408e+17 -DT_fusion_rate_at_point_88_______________________________________________ fusrat_plasma_dt_profile88_____ 9.91542333201773440e+17 -DT_fusion_rate_at_point_89_______________________________________________ fusrat_plasma_dt_profile89_____ 9.89914790726702080e+17 -DT_fusion_rate_at_point_90_______________________________________________ fusrat_plasma_dt_profile90_____ 9.88269573235558016e+17 -DT_fusion_rate_at_point_91_______________________________________________ fusrat_plasma_dt_profile91_____ 9.86606706992144256e+17 -DT_fusion_rate_at_point_92_______________________________________________ fusrat_plasma_dt_profile92_____ 9.84926218676595840e+17 -DT_fusion_rate_at_point_93_______________________________________________ fusrat_plasma_dt_profile93_____ 9.83228135389681024e+17 -DT_fusion_rate_at_point_94_______________________________________________ fusrat_plasma_dt_profile94_____ 9.81512484657154688e+17 -DT_fusion_rate_at_point_95_______________________________________________ fusrat_plasma_dt_profile95_____ 9.79779294434168832e+17 -DT_fusion_rate_at_point_96_______________________________________________ fusrat_plasma_dt_profile96_____ 9.78028593109744512e+17 -DT_fusion_rate_at_point_97_______________________________________________ fusrat_plasma_dt_profile97_____ 9.76260409511299072e+17 -DT_fusion_rate_at_point_98_______________________________________________ fusrat_plasma_dt_profile98_____ 9.74474772909234048e+17 -DT_fusion_rate_at_point_99_______________________________________________ fusrat_plasma_dt_profile99_____ 9.72671713021582976e+17 -DT_fusion_rate_at_point_100______________________________________________ fusrat_plasma_dt_profile100____ 9.70851260018727168e+17 -DT_fusion_rate_at_point_101______________________________________________ fusrat_plasma_dt_profile101____ 9.69013444528148736e+17 -DT_fusion_rate_at_point_102______________________________________________ fusrat_plasma_dt_profile102____ 9.67158297639268224e+17 -DT_fusion_rate_at_point_103______________________________________________ fusrat_plasma_dt_profile103____ 9.65285850908332288e+17 -DT_fusion_rate_at_point_104______________________________________________ fusrat_plasma_dt_profile104____ 9.63396136363361536e+17 -DT_fusion_rate_at_point_105______________________________________________ fusrat_plasma_dt_profile105____ 9.61489186509163392e+17 -DT_fusion_rate_at_point_106______________________________________________ fusrat_plasma_dt_profile106____ 9.59565034332399872e+17 -DT_fusion_rate_at_point_107______________________________________________ fusrat_plasma_dt_profile107____ 9.57623713306724096e+17 -DT_fusion_rate_at_point_108______________________________________________ fusrat_plasma_dt_profile108____ 9.55665257397982720e+17 -DT_fusion_rate_at_point_109______________________________________________ fusrat_plasma_dt_profile109____ 9.53689701069464320e+17 -DT_fusion_rate_at_point_110______________________________________________ fusrat_plasma_dt_profile110____ 9.51697079287229184e+17 -DT_fusion_rate_at_point_111______________________________________________ fusrat_plasma_dt_profile111____ 9.49687427525485568e+17 -DT_fusion_rate_at_point_112______________________________________________ fusrat_plasma_dt_profile112____ 9.47660781772046720e+17 -DT_fusion_rate_at_point_113______________________________________________ fusrat_plasma_dt_profile113____ 9.45617178533830272e+17 -DT_fusion_rate_at_point_114______________________________________________ fusrat_plasma_dt_profile114____ 9.43556654842446464e+17 -DT_fusion_rate_at_point_115______________________________________________ fusrat_plasma_dt_profile115____ 9.41479248259825408e+17 -DT_fusion_rate_at_point_116______________________________________________ fusrat_plasma_dt_profile116____ 9.39384996883926400e+17 -DT_fusion_rate_at_point_117______________________________________________ fusrat_plasma_dt_profile117____ 9.37273939354501120e+17 -DT_fusion_rate_at_point_118______________________________________________ fusrat_plasma_dt_profile118____ 9.35146114858931584e+17 -DT_fusion_rate_at_point_119______________________________________________ fusrat_plasma_dt_profile119____ 9.33001563138123136e+17 -DT_fusion_rate_at_point_120______________________________________________ fusrat_plasma_dt_profile120____ 9.30840324492469248e+17 -DT_fusion_rate_at_point_121______________________________________________ fusrat_plasma_dt_profile121____ 9.28662439787876736e+17 -DT_fusion_rate_at_point_122______________________________________________ fusrat_plasma_dt_profile122____ 9.26467950461863680e+17 -DT_fusion_rate_at_point_123______________________________________________ fusrat_plasma_dt_profile123____ 9.24256898529716352e+17 -DT_fusion_rate_at_point_124______________________________________________ fusrat_plasma_dt_profile124____ 9.22029326590713600e+17 -DT_fusion_rate_at_point_125______________________________________________ fusrat_plasma_dt_profile125____ 9.19785277834427520e+17 -DT_fusion_rate_at_point_126______________________________________________ fusrat_plasma_dt_profile126____ 9.17524796047069056e+17 -DT_fusion_rate_at_point_127______________________________________________ fusrat_plasma_dt_profile127____ 9.15247925617927040e+17 -DT_fusion_rate_at_point_128______________________________________________ fusrat_plasma_dt_profile128____ 9.12954711545845760e+17 -DT_fusion_rate_at_point_129______________________________________________ fusrat_plasma_dt_profile129____ 9.10645199445801600e+17 -DT_fusion_rate_at_point_130______________________________________________ fusrat_plasma_dt_profile130____ 9.08319435555513984e+17 -DT_fusion_rate_at_point_131______________________________________________ fusrat_plasma_dt_profile131____ 9.05977466742150144e+17 -DT_fusion_rate_at_point_132______________________________________________ fusrat_plasma_dt_profile132____ 9.03619340509080064e+17 -DT_fusion_rate_at_point_133______________________________________________ fusrat_plasma_dt_profile133____ 9.01245105002712960e+17 -DT_fusion_rate_at_point_134______________________________________________ fusrat_plasma_dt_profile134____ 8.98854809019382016e+17 -DT_fusion_rate_at_point_135______________________________________________ fusrat_plasma_dt_profile135____ 8.96448502012323712e+17 -DT_fusion_rate_at_point_136______________________________________________ fusrat_plasma_dt_profile136____ 8.94026234098699904e+17 -DT_fusion_rate_at_point_137______________________________________________ fusrat_plasma_dt_profile137____ 8.91588056066700928e+17 -DT_fusion_rate_at_point_138______________________________________________ fusrat_plasma_dt_profile138____ 8.89134019382718976e+17 -DT_fusion_rate_at_point_139______________________________________________ fusrat_plasma_dt_profile139____ 8.86664176198577664e+17 -DT_fusion_rate_at_point_140______________________________________________ fusrat_plasma_dt_profile140____ 8.84178579358843136e+17 -DT_fusion_rate_at_point_141______________________________________________ fusrat_plasma_dt_profile141____ 8.81677282408194688e+17 -DT_fusion_rate_at_point_142______________________________________________ fusrat_plasma_dt_profile142____ 8.79160339598863488e+17 -DT_fusion_rate_at_point_143______________________________________________ fusrat_plasma_dt_profile143____ 8.76627805898146944e+17 -DT_fusion_rate_at_point_144______________________________________________ fusrat_plasma_dt_profile144____ 8.74079736995983872e+17 -DT_fusion_rate_at_point_145______________________________________________ fusrat_plasma_dt_profile145____ 8.71516189312598528e+17 -DT_fusion_rate_at_point_146______________________________________________ fusrat_plasma_dt_profile146____ 8.68937220006214656e+17 -DT_fusion_rate_at_point_147______________________________________________ fusrat_plasma_dt_profile147____ 8.66342886980841984e+17 -DT_fusion_rate_at_point_148______________________________________________ fusrat_plasma_dt_profile148____ 8.63733248894116224e+17 -DT_fusion_rate_at_point_149______________________________________________ fusrat_plasma_dt_profile149____ 8.61108365165221632e+17 -DT_fusion_rate_at_point_150______________________________________________ fusrat_plasma_dt_profile150____ 8.58468295982877440e+17 -DT_fusion_rate_at_point_151______________________________________________ fusrat_plasma_dt_profile151____ 8.55813102313378944e+17 -DT_fusion_rate_at_point_152______________________________________________ fusrat_plasma_dt_profile152____ 8.53142845908727808e+17 -DT_fusion_rate_at_point_153______________________________________________ fusrat_plasma_dt_profile153____ 8.50457589314812672e+17 -DT_fusion_rate_at_point_154______________________________________________ fusrat_plasma_dt_profile154____ 8.47757395879656576e+17 -DT_fusion_rate_at_point_155______________________________________________ fusrat_plasma_dt_profile155____ 8.45042329761742592e+17 -DT_fusion_rate_at_point_156______________________________________________ fusrat_plasma_dt_profile156____ 8.42312455938392960e+17 -DT_fusion_rate_at_point_157______________________________________________ fusrat_plasma_dt_profile157____ 8.39567840214220288e+17 -DT_fusion_rate_at_point_158______________________________________________ fusrat_plasma_dt_profile158____ 8.36808549229640832e+17 -DT_fusion_rate_at_point_159______________________________________________ fusrat_plasma_dt_profile159____ 8.34034650469456640e+17 -DT_fusion_rate_at_point_160______________________________________________ fusrat_plasma_dt_profile160____ 8.31246212271501184e+17 -DT_fusion_rate_at_point_161______________________________________________ fusrat_plasma_dt_profile161____ 8.28443303835340544e+17 -DT_fusion_rate_at_point_162______________________________________________ fusrat_plasma_dt_profile162____ 8.25625995231051904e+17 -DT_fusion_rate_at_point_163______________________________________________ fusrat_plasma_dt_profile163____ 8.22794357408055680e+17 -DT_fusion_rate_at_point_164______________________________________________ fusrat_plasma_dt_profile164____ 8.19948462204010624e+17 -DT_fusion_rate_at_point_165______________________________________________ fusrat_plasma_dt_profile165____ 8.17088382353774720e+17 -DT_fusion_rate_at_point_166______________________________________________ fusrat_plasma_dt_profile166____ 8.14214191498422912e+17 -DT_fusion_rate_at_point_167______________________________________________ fusrat_plasma_dt_profile167____ 8.11325964194327808e+17 -DT_fusion_rate_at_point_168______________________________________________ fusrat_plasma_dt_profile168____ 8.08423775922301568e+17 -DT_fusion_rate_at_point_169______________________________________________ fusrat_plasma_dt_profile169____ 8.05507703096789248e+17 -DT_fusion_rate_at_point_170______________________________________________ fusrat_plasma_dt_profile170____ 8.02577823075128448e+17 -DT_fusion_rate_at_point_171______________________________________________ fusrat_plasma_dt_profile171____ 7.99634214166863744e+17 -DT_fusion_rate_at_point_172______________________________________________ fusrat_plasma_dt_profile172____ 7.96676955643114496e+17 -DT_fusion_rate_at_point_173______________________________________________ fusrat_plasma_dt_profile173____ 7.93706127746001152e+17 -DT_fusion_rate_at_point_174______________________________________________ fusrat_plasma_dt_profile174____ 7.90721811698125440e+17 -DT_fusion_rate_at_point_175______________________________________________ fusrat_plasma_dt_profile175____ 7.87724089712102656e+17 -DT_fusion_rate_at_point_176______________________________________________ fusrat_plasma_dt_profile176____ 7.84713045000144512e+17 -DT_fusion_rate_at_point_177______________________________________________ fusrat_plasma_dt_profile177____ 7.81688761783701760e+17 -DT_fusion_rate_at_point_178______________________________________________ fusrat_plasma_dt_profile178____ 7.78651325303140992e+17 -DT_fusion_rate_at_point_179______________________________________________ fusrat_plasma_dt_profile179____ 7.75600821827485952e+17 -DT_fusion_rate_at_point_180______________________________________________ fusrat_plasma_dt_profile180____ 7.72537338664195328e+17 -DT_fusion_rate_at_point_181______________________________________________ fusrat_plasma_dt_profile181____ 7.69460964168989824e+17 -DT_fusion_rate_at_point_182______________________________________________ fusrat_plasma_dt_profile182____ 7.66371787755726080e+17 -DT_fusion_rate_at_point_183______________________________________________ fusrat_plasma_dt_profile183____ 7.63269899906309760e+17 -DT_fusion_rate_at_point_184______________________________________________ fusrat_plasma_dt_profile184____ 7.60155392180649728e+17 -DT_fusion_rate_at_point_185______________________________________________ fusrat_plasma_dt_profile185____ 7.57028357226651648e+17 -DT_fusion_rate_at_point_186______________________________________________ fusrat_plasma_dt_profile186____ 7.53888888790255744e+17 -DT_fusion_rate_at_point_187______________________________________________ fusrat_plasma_dt_profile187____ 7.50737081725498752e+17 -DT_fusion_rate_at_point_188______________________________________________ fusrat_plasma_dt_profile188____ 7.47573032004623872e+17 -DT_fusion_rate_at_point_189______________________________________________ fusrat_plasma_dt_profile189____ 7.44396836728205952e+17 -DT_fusion_rate_at_point_190______________________________________________ fusrat_plasma_dt_profile190____ 7.41208594135325184e+17 -DT_fusion_rate_at_point_191______________________________________________ fusrat_plasma_dt_profile191____ 7.38008403613756544e+17 -DT_fusion_rate_at_point_192______________________________________________ fusrat_plasma_dt_profile192____ 7.34796365710188032e+17 -DT_fusion_rate_at_point_193______________________________________________ fusrat_plasma_dt_profile193____ 7.31572582140458752e+17 -DT_fusion_rate_at_point_194______________________________________________ fusrat_plasma_dt_profile194____ 7.28337155799829376e+17 -DT_fusion_rate_at_point_195______________________________________________ fusrat_plasma_dt_profile195____ 7.25090190773260288e+17 -DT_fusion_rate_at_point_196______________________________________________ fusrat_plasma_dt_profile196____ 7.21831792345709568e+17 -DT_fusion_rate_at_point_197______________________________________________ fusrat_plasma_dt_profile197____ 7.18562067012440704e+17 -DT_fusion_rate_at_point_198______________________________________________ fusrat_plasma_dt_profile198____ 7.15281122489352064e+17 -DT_fusion_rate_at_point_199______________________________________________ fusrat_plasma_dt_profile199____ 7.11989067723299200e+17 -DT_fusion_rate_at_point_200______________________________________________ fusrat_plasma_dt_profile200____ 7.08686012902431616e+17 -DT_fusion_rate_at_point_201______________________________________________ fusrat_plasma_dt_profile201____ 7.05372069466535424e+17 -DT_fusion_rate_at_point_202______________________________________________ fusrat_plasma_dt_profile202____ 7.02047350117356928e+17 -DT_fusion_rate_at_point_203______________________________________________ fusrat_plasma_dt_profile203____ 6.98711968828941184e+17 -DT_fusion_rate_at_point_204______________________________________________ fusrat_plasma_dt_profile204____ 6.95366040857952768e+17 -DT_fusion_rate_at_point_205______________________________________________ fusrat_plasma_dt_profile205____ 6.92009682753984512e+17 -DT_fusion_rate_at_point_206______________________________________________ fusrat_plasma_dt_profile206____ 6.88643012369856640e+17 -DT_fusion_rate_at_point_207______________________________________________ fusrat_plasma_dt_profile207____ 6.85266148871888640e+17 -DT_fusion_rate_at_point_208______________________________________________ fusrat_plasma_dt_profile208____ 6.81879212750158848e+17 -DT_fusion_rate_at_point_209______________________________________________ fusrat_plasma_dt_profile209____ 6.78482325828726272e+17 -DT_fusion_rate_at_point_210______________________________________________ fusrat_plasma_dt_profile210____ 6.75075611275832832e+17 -DT_fusion_rate_at_point_211______________________________________________ fusrat_plasma_dt_profile211____ 6.71659193614056448e+17 -DT_fusion_rate_at_point_212______________________________________________ fusrat_plasma_dt_profile212____ 6.68233198730441600e+17 -DT_fusion_rate_at_point_213______________________________________________ fusrat_plasma_dt_profile213____ 6.64797753886568960e+17 -DT_fusion_rate_at_point_214______________________________________________ fusrat_plasma_dt_profile214____ 6.61352987728585984e+17 -DT_fusion_rate_at_point_215______________________________________________ fusrat_plasma_dt_profile215____ 6.57899030297187072e+17 -DT_fusion_rate_at_point_216______________________________________________ fusrat_plasma_dt_profile216____ 6.54436013037521792e+17 -DT_fusion_rate_at_point_217______________________________________________ fusrat_plasma_dt_profile217____ 6.50964068809051264e+17 -DT_fusion_rate_at_point_218______________________________________________ fusrat_plasma_dt_profile218____ 6.47483331895330048e+17 -DT_fusion_rate_at_point_219______________________________________________ fusrat_plasma_dt_profile219____ 6.43993938013715200e+17 -DT_fusion_rate_at_point_220______________________________________________ fusrat_plasma_dt_profile220____ 6.40496024324995712e+17 -DT_fusion_rate_at_point_221______________________________________________ fusrat_plasma_dt_profile221____ 6.36989729442931072e+17 -DT_fusion_rate_at_point_222______________________________________________ fusrat_plasma_dt_profile222____ 6.33475193443707264e+17 -DT_fusion_rate_at_point_223______________________________________________ fusrat_plasma_dt_profile223____ 6.29952557875283584e+17 -DT_fusion_rate_at_point_224______________________________________________ fusrat_plasma_dt_profile224____ 6.26421965766641536e+17 -DT_fusion_rate_at_point_225______________________________________________ fusrat_plasma_dt_profile225____ 6.22883561636922624e+17 -DT_fusion_rate_at_point_226______________________________________________ fusrat_plasma_dt_profile226____ 6.19337491504447488e+17 -DT_fusion_rate_at_point_227______________________________________________ fusrat_plasma_dt_profile227____ 6.15783902895607936e+17 -DT_fusion_rate_at_point_228______________________________________________ fusrat_plasma_dt_profile228____ 6.12222944853633792e+17 -DT_fusion_rate_at_point_229______________________________________________ fusrat_plasma_dt_profile229____ 6.08654767947209344e+17 -DT_fusion_rate_at_point_230______________________________________________ fusrat_plasma_dt_profile230____ 6.05079524278958720e+17 -DT_fusion_rate_at_point_231______________________________________________ fusrat_plasma_dt_profile231____ 6.01497367493765632e+17 -DT_fusion_rate_at_point_232______________________________________________ fusrat_plasma_dt_profile232____ 5.97908452786931456e+17 -DT_fusion_rate_at_point_233______________________________________________ fusrat_plasma_dt_profile233____ 5.94312936912170496e+17 -DT_fusion_rate_at_point_234______________________________________________ fusrat_plasma_dt_profile234____ 5.90710978189421824e+17 -DT_fusion_rate_at_point_235______________________________________________ fusrat_plasma_dt_profile235____ 5.87102736512473472e+17 -DT_fusion_rate_at_point_236______________________________________________ fusrat_plasma_dt_profile236____ 5.83488373356389760e+17 -DT_fusion_rate_at_point_237______________________________________________ fusrat_plasma_dt_profile237____ 5.79868051784742656e+17 -DT_fusion_rate_at_point_238______________________________________________ fusrat_plasma_dt_profile238____ 5.76241936456618112e+17 -DT_fusion_rate_at_point_239______________________________________________ fusrat_plasma_dt_profile239____ 5.72610193633399936e+17 -DT_fusion_rate_at_point_240______________________________________________ fusrat_plasma_dt_profile240____ 5.68972991185333440e+17 -DT_fusion_rate_at_point_241______________________________________________ fusrat_plasma_dt_profile241____ 5.65330498597827392e+17 -DT_fusion_rate_at_point_242______________________________________________ fusrat_plasma_dt_profile242____ 5.61682886977515520e+17 -DT_fusion_rate_at_point_243______________________________________________ fusrat_plasma_dt_profile243____ 5.58030329058047552e+17 -DT_fusion_rate_at_point_244______________________________________________ fusrat_plasma_dt_profile244____ 5.54372999205611520e+17 -DT_fusion_rate_at_point_245______________________________________________ fusrat_plasma_dt_profile245____ 5.50711073424165312e+17 -DT_fusion_rate_at_point_246______________________________________________ fusrat_plasma_dt_profile246____ 5.47044729360373184e+17 -DT_fusion_rate_at_point_247______________________________________________ fusrat_plasma_dt_profile247____ 5.43374146308232384e+17 -DT_fusion_rate_at_point_248______________________________________________ fusrat_plasma_dt_profile248____ 5.39699505213385088e+17 -DT_fusion_rate_at_point_249______________________________________________ fusrat_plasma_dt_profile249____ 5.36020988677089920e+17 -DT_fusion_rate_at_point_250______________________________________________ fusrat_plasma_dt_profile250____ 5.32338780959858240e+17 -DT_fusion_rate_at_point_251______________________________________________ fusrat_plasma_dt_profile251____ 5.28653067984726976e+17 -DT_fusion_rate_at_point_252______________________________________________ fusrat_plasma_dt_profile252____ 5.24964037340160704e+17 -DT_fusion_rate_at_point_253______________________________________________ fusrat_plasma_dt_profile253____ 5.21271878282577408e+17 -DT_fusion_rate_at_point_254______________________________________________ fusrat_plasma_dt_profile254____ 5.17576781738471232e+17 -DT_fusion_rate_at_point_255______________________________________________ fusrat_plasma_dt_profile255____ 5.13878940306128832e+17 -DT_fusion_rate_at_point_256______________________________________________ fusrat_plasma_dt_profile256____ 5.10178548256919488e+17 -DT_fusion_rate_at_point_257______________________________________________ fusrat_plasma_dt_profile257____ 5.06475801536145728e+17 -DT_fusion_rate_at_point_258______________________________________________ fusrat_plasma_dt_profile258____ 5.02770897763446016e+17 -DT_fusion_rate_at_point_259______________________________________________ fusrat_plasma_dt_profile259____ 4.99064036232724800e+17 -DT_fusion_rate_at_point_260______________________________________________ fusrat_plasma_dt_profile260____ 4.95355417911597824e+17 -DT_fusion_rate_at_point_261______________________________________________ fusrat_plasma_dt_profile261____ 4.91645245440342400e+17 -DT_fusion_rate_at_point_262______________________________________________ fusrat_plasma_dt_profile262____ 4.87933723130334592e+17 -DT_fusion_rate_at_point_263______________________________________________ fusrat_plasma_dt_profile263____ 4.84221056961949952e+17 -DT_fusion_rate_at_point_264______________________________________________ fusrat_plasma_dt_profile264____ 4.80507454581922176e+17 -DT_fusion_rate_at_point_265______________________________________________ fusrat_plasma_dt_profile265____ 4.76793125300135232e+17 -DT_fusion_rate_at_point_266______________________________________________ fusrat_plasma_dt_profile266____ 4.73078280085840064e+17 -DT_fusion_rate_at_point_267______________________________________________ fusrat_plasma_dt_profile267____ 4.69363131563261504e+17 -DT_fusion_rate_at_point_268______________________________________________ fusrat_plasma_dt_profile268____ 4.65647894006606272e+17 -DT_fusion_rate_at_point_269______________________________________________ fusrat_plasma_dt_profile269____ 4.61932783334423744e+17 -DT_fusion_rate_at_point_270______________________________________________ fusrat_plasma_dt_profile270____ 4.58218017103322432e+17 -DT_fusion_rate_at_point_271______________________________________________ fusrat_plasma_dt_profile271____ 4.54503814501010112e+17 -DT_fusion_rate_at_point_272______________________________________________ fusrat_plasma_dt_profile272____ 4.50790396338658944e+17 -DT_fusion_rate_at_point_273______________________________________________ fusrat_plasma_dt_profile273____ 4.47077985042542080e+17 -DT_fusion_rate_at_point_274______________________________________________ fusrat_plasma_dt_profile274____ 4.43366804644963648e+17 -DT_fusion_rate_at_point_275______________________________________________ fusrat_plasma_dt_profile275____ 4.39657080774427968e+17 -DT_fusion_rate_at_point_276______________________________________________ fusrat_plasma_dt_profile276____ 4.35949040645050240e+17 -DT_fusion_rate_at_point_277______________________________________________ fusrat_plasma_dt_profile277____ 4.32242913045176640e+17 -DT_fusion_rate_at_point_278______________________________________________ fusrat_plasma_dt_profile278____ 4.28538928325198848e+17 -DT_fusion_rate_at_point_279______________________________________________ fusrat_plasma_dt_profile279____ 4.24837318384543040e+17 -DT_fusion_rate_at_point_280______________________________________________ fusrat_plasma_dt_profile280____ 4.21138316657806336e+17 -DT_fusion_rate_at_point_281______________________________________________ fusrat_plasma_dt_profile281____ 4.17442158100028096e+17 -DT_fusion_rate_at_point_282______________________________________________ fusrat_plasma_dt_profile282____ 4.13749079171068032e+17 -DT_fusion_rate_at_point_283______________________________________________ fusrat_plasma_dt_profile283____ 4.10059317819071552e+17 -DT_fusion_rate_at_point_284______________________________________________ fusrat_plasma_dt_profile284____ 4.06373113463005056e+17 -DT_fusion_rate_at_point_285______________________________________________ fusrat_plasma_dt_profile285____ 4.02690706974232576e+17 -DT_fusion_rate_at_point_286______________________________________________ fusrat_plasma_dt_profile286____ 3.99012340657110720e+17 -DT_fusion_rate_at_point_287______________________________________________ fusrat_plasma_dt_profile287____ 3.95338258228596480e+17 -DT_fusion_rate_at_point_288______________________________________________ fusrat_plasma_dt_profile288____ 3.91668704796812608e+17 -DT_fusion_rate_at_point_289______________________________________________ fusrat_plasma_dt_profile289____ 3.88003926838588672e+17 -DT_fusion_rate_at_point_290______________________________________________ fusrat_plasma_dt_profile290____ 3.84344172175919296e+17 -DT_fusion_rate_at_point_291______________________________________________ fusrat_plasma_dt_profile291____ 3.80689689951342400e+17 -DT_fusion_rate_at_point_292______________________________________________ fusrat_plasma_dt_profile292____ 3.77040730602194688e+17 -DT_fusion_rate_at_point_293______________________________________________ fusrat_plasma_dt_profile293____ 3.73397545833740864e+17 -DT_fusion_rate_at_point_294______________________________________________ fusrat_plasma_dt_profile294____ 3.69760388591136256e+17 -DT_fusion_rate_at_point_295______________________________________________ fusrat_plasma_dt_profile295____ 3.66129513030212096e+17 -DT_fusion_rate_at_point_296______________________________________________ fusrat_plasma_dt_profile296____ 3.62505174487054848e+17 -DT_fusion_rate_at_point_297______________________________________________ fusrat_plasma_dt_profile297____ 3.58887629446358080e+17 -DT_fusion_rate_at_point_298______________________________________________ fusrat_plasma_dt_profile298____ 3.55277135508522304e+17 -DT_fusion_rate_at_point_299______________________________________________ fusrat_plasma_dt_profile299____ 3.51673951355485568e+17 -DT_fusion_rate_at_point_300______________________________________________ fusrat_plasma_dt_profile300____ 3.48078336715254336e+17 -DT_fusion_rate_at_point_301______________________________________________ fusrat_plasma_dt_profile301____ 3.44490552325119424e+17 -DT_fusion_rate_at_point_302______________________________________________ fusrat_plasma_dt_profile302____ 3.40910859893530112e+17 -DT_fusion_rate_at_point_303______________________________________________ fusrat_plasma_dt_profile303____ 3.37339522060605952e+17 -DT_fusion_rate_at_point_304______________________________________________ fusrat_plasma_dt_profile304____ 3.33776802357264704e+17 -DT_fusion_rate_at_point_305______________________________________________ fusrat_plasma_dt_profile305____ 3.30222965162944768e+17 -DT_fusion_rate_at_point_306______________________________________________ fusrat_plasma_dt_profile306____ 3.26678275661902336e+17 -DT_fusion_rate_at_point_307______________________________________________ fusrat_plasma_dt_profile307____ 3.23142999798057216e+17 -DT_fusion_rate_at_point_308______________________________________________ fusrat_plasma_dt_profile308____ 3.19617404228372992e+17 -DT_fusion_rate_at_point_309______________________________________________ fusrat_plasma_dt_profile309____ 3.16101756274753280e+17 -DT_fusion_rate_at_point_310______________________________________________ fusrat_plasma_dt_profile310____ 3.12596323874420992e+17 -DT_fusion_rate_at_point_311______________________________________________ fusrat_plasma_dt_profile311____ 3.09101375528783488e+17 -DT_fusion_rate_at_point_312______________________________________________ fusrat_plasma_dt_profile312____ 3.05617180250744064e+17 -DT_fusion_rate_at_point_313______________________________________________ fusrat_plasma_dt_profile313____ 3.02144007510455424e+17 -DT_fusion_rate_at_point_314______________________________________________ fusrat_plasma_dt_profile314____ 2.98682127179493376e+17 -DT_fusion_rate_at_point_315______________________________________________ fusrat_plasma_dt_profile315____ 2.95231809473438016e+17 -DT_fusion_rate_at_point_316______________________________________________ fusrat_plasma_dt_profile316____ 2.91793324892840576e+17 -DT_fusion_rate_at_point_317______________________________________________ fusrat_plasma_dt_profile317____ 2.88366944162568640e+17 -DT_fusion_rate_at_point_318______________________________________________ fusrat_plasma_dt_profile318____ 2.84952938169511936e+17 -DT_fusion_rate_at_point_319______________________________________________ fusrat_plasma_dt_profile319____ 2.81551577898638976e+17 -DT_fusion_rate_at_point_320______________________________________________ fusrat_plasma_dt_profile320____ 2.78163134367386336e+17 -DT_fusion_rate_at_point_321______________________________________________ fusrat_plasma_dt_profile321____ 2.74787878558385184e+17 -DT_fusion_rate_at_point_322______________________________________________ fusrat_plasma_dt_profile322____ 2.71426081350495104e+17 -DT_fusion_rate_at_point_323______________________________________________ fusrat_plasma_dt_profile323____ 2.68078013448158048e+17 -DT_fusion_rate_at_point_324______________________________________________ fusrat_plasma_dt_profile324____ 2.64743945309050336e+17 -DT_fusion_rate_at_point_325______________________________________________ fusrat_plasma_dt_profile325____ 2.61424147070035680e+17 -DT_fusion_rate_at_point_326______________________________________________ fusrat_plasma_dt_profile326____ 2.58118888471414496e+17 -DT_fusion_rate_at_point_327______________________________________________ fusrat_plasma_dt_profile327____ 2.54828438779466656e+17 -DT_fusion_rate_at_point_328______________________________________________ fusrat_plasma_dt_profile328____ 2.51553066707285312e+17 -DT_fusion_rate_at_point_329______________________________________________ fusrat_plasma_dt_profile329____ 2.48293040333908288e+17 -DT_fusion_rate_at_point_330______________________________________________ fusrat_plasma_dt_profile330____ 2.45048627021745152e+17 -DT_fusion_rate_at_point_331______________________________________________ fusrat_plasma_dt_profile331____ 2.41820093332307232e+17 -DT_fusion_rate_at_point_332______________________________________________ fusrat_plasma_dt_profile332____ 2.38607704940249184e+17 -DT_fusion_rate_at_point_333______________________________________________ fusrat_plasma_dt_profile333____ 2.35411726545727840e+17 -DT_fusion_rate_at_point_334______________________________________________ fusrat_plasma_dt_profile334____ 2.32232421785091776e+17 -DT_fusion_rate_at_point_335______________________________________________ fusrat_plasma_dt_profile335____ 2.29070053139915488e+17 -DT_fusion_rate_at_point_336______________________________________________ fusrat_plasma_dt_profile336____ 2.25924881844394080e+17 -DT_fusion_rate_at_point_337______________________________________________ fusrat_plasma_dt_profile337____ 2.22797167791112672e+17 -DT_fusion_rate_at_point_338______________________________________________ fusrat_plasma_dt_profile338____ 2.19687169435219520e+17 -DT_fusion_rate_at_point_339______________________________________________ fusrat_plasma_dt_profile339____ 2.16595143697017600e+17 -DT_fusion_rate_at_point_340______________________________________________ fusrat_plasma_dt_profile340____ 2.13521345863006208e+17 -DT_fusion_rate_at_point_341______________________________________________ fusrat_plasma_dt_profile341____ 2.10466029485400672e+17 -DT_fusion_rate_at_point_342______________________________________________ fusrat_plasma_dt_profile342____ 2.07429446280159360e+17 -DT_fusion_rate_at_point_343______________________________________________ fusrat_plasma_dt_profile343____ 2.04411846023557120e+17 -DT_fusion_rate_at_point_344______________________________________________ fusrat_plasma_dt_profile344____ 2.01413476447338400e+17 -DT_fusion_rate_at_point_345______________________________________________ fusrat_plasma_dt_profile345____ 1.98434583132493760e+17 -DT_fusion_rate_at_point_346______________________________________________ fusrat_plasma_dt_profile346____ 1.95475409401704960e+17 -DT_fusion_rate_at_point_347______________________________________________ fusrat_plasma_dt_profile347____ 1.92536196210501376e+17 -DT_fusion_rate_at_point_348______________________________________________ fusrat_plasma_dt_profile348____ 1.89617182037185792e+17 -DT_fusion_rate_at_point_349______________________________________________ fusrat_plasma_dt_profile349____ 1.86718602771576128e+17 -DT_fusion_rate_at_point_350______________________________________________ fusrat_plasma_dt_profile350____ 1.83840691602630912e+17 -DT_fusion_rate_at_point_351______________________________________________ fusrat_plasma_dt_profile351____ 1.80983678905005984e+17 -DT_fusion_rate_at_point_352______________________________________________ fusrat_plasma_dt_profile352____ 1.78147792124626112e+17 -DT_fusion_rate_at_point_353______________________________________________ fusrat_plasma_dt_profile353____ 1.75333255663323104e+17 -DT_fusion_rate_at_point_354______________________________________________ fusrat_plasma_dt_profile354____ 1.72540290762626752e+17 -DT_fusion_rate_at_point_355______________________________________________ fusrat_plasma_dt_profile355____ 1.69769115386776128e+17 -DT_fusion_rate_at_point_356______________________________________________ fusrat_plasma_dt_profile356____ 1.67019944105040384e+17 -DT_fusion_rate_at_point_357______________________________________________ fusrat_plasma_dt_profile357____ 1.64292987973427328e+17 -DT_fusion_rate_at_point_358______________________________________________ fusrat_plasma_dt_profile358____ 1.61588454415873504e+17 -DT_fusion_rate_at_point_359______________________________________________ fusrat_plasma_dt_profile359____ 1.58906547105006528e+17 -DT_fusion_rate_at_point_360______________________________________________ fusrat_plasma_dt_profile360____ 1.56247465842580096e+17 -DT_fusion_rate_at_point_361______________________________________________ fusrat_plasma_dt_profile361____ 1.53611406439678400e+17 -DT_fusion_rate_at_point_362______________________________________________ fusrat_plasma_dt_profile362____ 1.50998560596802784e+17 -DT_fusion_rate_at_point_363______________________________________________ fusrat_plasma_dt_profile363____ 1.48409115783944288e+17 -DT_fusion_rate_at_point_364______________________________________________ fusrat_plasma_dt_profile364____ 1.45843255120761376e+17 -DT_fusion_rate_at_point_365______________________________________________ fusrat_plasma_dt_profile365____ 1.43301157256978544e+17 -DT_fusion_rate_at_point_366______________________________________________ fusrat_plasma_dt_profile366____ 1.40782996253132992e+17 -DT_fusion_rate_at_point_367______________________________________________ fusrat_plasma_dt_profile367____ 1.38288941461789456e+17 -DT_fusion_rate_at_point_368______________________________________________ fusrat_plasma_dt_profile368____ 1.35819157409364000e+17 -DT_fusion_rate_at_point_369______________________________________________ fusrat_plasma_dt_profile369____ 1.33373803678684160e+17 -DT_fusion_rate_at_point_370______________________________________________ fusrat_plasma_dt_profile370____ 1.30953034792432208e+17 -DT_fusion_rate_at_point_371______________________________________________ fusrat_plasma_dt_profile371____ 1.28557000097609440e+17 -DT_fusion_rate_at_point_372______________________________________________ fusrat_plasma_dt_profile372____ 1.26185843651174960e+17 -DT_fusion_rate_at_point_373______________________________________________ fusrat_plasma_dt_profile373____ 1.23839704107005328e+17 -DT_fusion_rate_at_point_374______________________________________________ fusrat_plasma_dt_profile374____ 1.21518714604339728e+17 -DT_fusion_rate_at_point_375______________________________________________ fusrat_plasma_dt_profile375____ 1.19223002657856672e+17 -DT_fusion_rate_at_point_376______________________________________________ fusrat_plasma_dt_profile376____ 1.16952690049561168e+17 -DT_fusion_rate_at_point_377______________________________________________ fusrat_plasma_dt_profile377____ 1.14707892722635600e+17 -DT_fusion_rate_at_point_378______________________________________________ fusrat_plasma_dt_profile378____ 1.12488720677434320e+17 -DT_fusion_rate_at_point_379______________________________________________ fusrat_plasma_dt_profile379____ 1.10295277869787792e+17 -DT_fusion_rate_at_point_380______________________________________________ fusrat_plasma_dt_profile380____ 1.08127662111798320e+17 -DT_fusion_rate_at_point_381______________________________________________ fusrat_plasma_dt_profile381____ 1.05985964975305392e+17 -DT_fusion_rate_at_point_382______________________________________________ fusrat_plasma_dt_profile382____ 1.03870271698198720e+17 -DT_fusion_rate_at_point_383______________________________________________ fusrat_plasma_dt_profile383____ 1.01780661093769040e+17 -DT_fusion_rate_at_point_384______________________________________________ fusrat_plasma_dt_profile384____ 9.97172054632815360e+16 -DT_fusion_rate_at_point_385______________________________________________ fusrat_plasma_dt_profile385____ 9.76799705119582080e+16 -DT_fusion_rate_at_point_386______________________________________________ fusrat_plasma_dt_profile386____ 9.56690152685638720e+16 -DT_fusion_rate_at_point_387______________________________________________ fusrat_plasma_dt_profile387____ 9.36843920087860960e+16 -DT_fusion_rate_at_point_388______________________________________________ fusrat_plasma_dt_profile388____ 9.17261461826030080e+16 -DT_fusion_rate_at_point_389______________________________________________ fusrat_plasma_dt_profile389____ 8.97943163458342720e+16 -DT_fusion_rate_at_point_390______________________________________________ fusrat_plasma_dt_profile390____ 8.78889340960691680e+16 -DT_fusion_rate_at_point_391______________________________________________ fusrat_plasma_dt_profile391____ 8.60100240131719040e+16 -DT_fusion_rate_at_point_392______________________________________________ fusrat_plasma_dt_profile392____ 8.41576036045553600e+16 -DT_fusion_rate_at_point_393______________________________________________ fusrat_plasma_dt_profile393____ 8.23316832554248640e+16 -DT_fusion_rate_at_point_394______________________________________________ fusrat_plasma_dt_profile394____ 8.05322661841841440e+16 -DT_fusion_rate_at_point_395______________________________________________ fusrat_plasma_dt_profile395____ 7.87593484032018720e+16 -DT_fusion_rate_at_point_396______________________________________________ fusrat_plasma_dt_profile396____ 7.70129186851322400e+16 -DT_fusion_rate_at_point_397______________________________________________ fusrat_plasma_dt_profile397____ 7.52929585349852800e+16 -DT_fusion_rate_at_point_398______________________________________________ fusrat_plasma_dt_profile398____ 7.35994421681352960e+16 -DT_fusion_rate_at_point_399______________________________________________ fusrat_plasma_dt_profile399____ 7.19323364944645120e+16 -DT_fusion_rate_at_point_400______________________________________________ fusrat_plasma_dt_profile400____ 7.02916011088259280e+16 -DT_fusion_rate_at_point_401______________________________________________ fusrat_plasma_dt_profile401____ 6.86771882880151440e+16 -DT_fusion_rate_at_point_402______________________________________________ fusrat_plasma_dt_profile402____ 6.70890429944345440e+16 -DT_fusion_rate_at_point_403______________________________________________ fusrat_plasma_dt_profile403____ 6.55271028866377840e+16 -DT_fusion_rate_at_point_404______________________________________________ fusrat_plasma_dt_profile404____ 6.39912983369270080e+16 -DT_fusion_rate_at_point_405______________________________________________ fusrat_plasma_dt_profile405____ 6.24815524561891440e+16 -DT_fusion_rate_at_point_406______________________________________________ fusrat_plasma_dt_profile406____ 6.09977811261419920e+16 -DT_fusion_rate_at_point_407______________________________________________ fusrat_plasma_dt_profile407____ 5.95398930391668800e+16 -DT_fusion_rate_at_point_408______________________________________________ fusrat_plasma_dt_profile408____ 5.81077897458975840e+16 -DT_fusion_rate_at_point_409______________________________________________ fusrat_plasma_dt_profile409____ 5.67013657107382400e+16 -DT_fusion_rate_at_point_410______________________________________________ fusrat_plasma_dt_profile410____ 5.53205083754755200e+16 -DT_fusion_rate_at_point_411______________________________________________ fusrat_plasma_dt_profile411____ 5.39650982311557760e+16 -DT_fusion_rate_at_point_412______________________________________________ fusrat_plasma_dt_profile412____ 5.26350088983930880e+16 -DT_fusion_rate_at_point_413______________________________________________ fusrat_plasma_dt_profile413____ 5.13301072162771440e+16 -DT_fusion_rate_at_point_414______________________________________________ fusrat_plasma_dt_profile414____ 5.00502533400496480e+16 -DT_fusion_rate_at_point_415______________________________________________ fusrat_plasma_dt_profile415____ 4.87953008477232560e+16 -DT_fusion_rate_at_point_416______________________________________________ fusrat_plasma_dt_profile416____ 4.75650968558181280e+16 -DT_fusion_rate_at_point_417______________________________________________ fusrat_plasma_dt_profile417____ 4.63594821443997440e+16 -DT_fusion_rate_at_point_418______________________________________________ fusrat_plasma_dt_profile418____ 4.51782912916085040e+16 -DT_fusion_rate_at_point_419______________________________________________ fusrat_plasma_dt_profile419____ 4.40213528178826720e+16 -DT_fusion_rate_at_point_420______________________________________________ fusrat_plasma_dt_profile420____ 4.28884893400888560e+16 -DT_fusion_rate_at_point_421______________________________________________ fusrat_plasma_dt_profile421____ 4.17795177357926400e+16 -DT_fusion_rate_at_point_422______________________________________________ fusrat_plasma_dt_profile422____ 4.06942493179219840e+16 -DT_fusion_rate_at_point_423______________________________________________ fusrat_plasma_dt_profile423____ 3.96324900201018800e+16 -DT_fusion_rate_at_point_424______________________________________________ fusrat_plasma_dt_profile424____ 3.85940405929706160e+16 -DT_fusion_rate_at_point_425______________________________________________ fusrat_plasma_dt_profile425____ 3.75786968118269840e+16 -DT_fusion_rate_at_point_426______________________________________________ fusrat_plasma_dt_profile426____ 3.65862496960014240e+16 -DT_fusion_rate_at_point_427______________________________________________ fusrat_plasma_dt_profile427____ 3.56164857404034560e+16 -DT_fusion_rate_at_point_428______________________________________________ fusrat_plasma_dt_profile428____ 3.46691871597602640e+16 -DT_fusion_rate_at_point_429______________________________________________ fusrat_plasma_dt_profile429____ 3.37441321461427440e+16 -DT_fusion_rate_at_point_430______________________________________________ fusrat_plasma_dt_profile430____ 3.28410951404722200e+16 -DT_fusion_rate_at_point_431______________________________________________ fusrat_plasma_dt_profile431____ 3.19598471188097240e+16 -DT_fusion_rate_at_point_432______________________________________________ fusrat_plasma_dt_profile432____ 3.11001558943726240e+16 -DT_fusion_rate_at_point_433______________________________________________ fusrat_plasma_dt_profile433____ 3.02617864363791240e+16 -DT_fusion_rate_at_point_434______________________________________________ fusrat_plasma_dt_profile434____ 2.94445012070217240e+16 -DT_fusion_rate_at_point_435______________________________________________ fusrat_plasma_dt_profile435____ 2.86480605181009960e+16 -DT_fusion_rate_at_point_436______________________________________________ fusrat_plasma_dt_profile436____ 2.78722229091351160e+16 -DT_fusion_rate_at_point_437______________________________________________ fusrat_plasma_dt_profile437____ 2.71167455490984960e+16 -DT_fusion_rate_at_point_438______________________________________________ fusrat_plasma_dt_profile438____ 2.63813846643557600e+16 -DT_fusion_rate_at_point_439______________________________________________ fusrat_plasma_dt_profile439____ 2.56658959958558080e+16 -DT_fusion_rate_at_point_440______________________________________________ fusrat_plasma_dt_profile440____ 2.49700352892622640e+16 -DT_fusion_rate_at_point_441______________________________________________ fusrat_plasma_dt_profile441____ 2.42935588224436920e+16 -DT_fusion_rate_at_point_442______________________________________________ fusrat_plasma_dt_profile442____ 2.36362239756690520e+16 -DT_fusion_rate_at_point_443______________________________________________ fusrat_plasma_dt_profile443____ 2.29977898509981680e+16 -DT_fusion_rate_at_point_444______________________________________________ fusrat_plasma_dt_profile444____ 2.23780179487841400e+16 -DT_fusion_rate_at_point_445______________________________________________ fusrat_plasma_dt_profile445____ 2.17766729109940400e+16 -DT_fusion_rate_at_point_446______________________________________________ fusrat_plasma_dt_profile446____ 2.11935233433284480e+16 -DT_fusion_rate_at_point_447______________________________________________ fusrat_plasma_dt_profile447____ 2.06283427310105640e+16 -DT_fusion_rate_at_point_448______________________________________________ fusrat_plasma_dt_profile448____ 2.00809104668504160e+16 -DT_fusion_rate_at_point_449______________________________________________ fusrat_plasma_dt_profile449____ 1.95510130150324480e+16 -DT_fusion_rate_at_point_450______________________________________________ fusrat_plasma_dt_profile450____ 1.90384452404513520e+16 -DT_fusion_rate_at_point_451______________________________________________ fusrat_plasma_dt_profile451____ 1.85430119418861800e+16 -DT_fusion_rate_at_point_452______________________________________________ fusrat_plasma_dt_profile452____ 1.80645296387058600e+16 -DT_fusion_rate_at_point_453______________________________________________ fusrat_plasma_dt_profile453____ 1.76028286763621800e+16 -DT_fusion_rate_at_point_454______________________________________________ fusrat_plasma_dt_profile454____ 1.71577557374991500e+16 -DT_fusion_rate_at_point_455______________________________________________ fusrat_plasma_dt_profile455____ 1.67291768759212060e+16 -DT_fusion_rate_at_point_456______________________________________________ fusrat_plasma_dt_profile456____ 1.63169812343636880e+16 -DT_fusion_rate_at_point_457______________________________________________ fusrat_plasma_dt_profile457____ 1.59210856711413360e+16 -DT_fusion_rate_at_point_458______________________________________________ fusrat_plasma_dt_profile458____ 1.55414406171515200e+16 -DT_fusion_rate_at_point_459______________________________________________ fusrat_plasma_dt_profile459____ 1.51780376336098080e+16 -DT_fusion_rate_at_point_460______________________________________________ fusrat_plasma_dt_profile460____ 1.48309193781965140e+16 -DT_fusion_rate_at_point_461______________________________________________ fusrat_plasma_dt_profile461____ 1.45001930794507220e+16 -DT_fusion_rate_at_point_462______________________________________________ fusrat_plasma_dt_profile462____ 1.41860492956042720e+16 -DT_fusion_rate_at_point_463______________________________________________ fusrat_plasma_dt_profile463____ 1.38887889616423700e+16 -DT_fusion_rate_at_point_464______________________________________________ fusrat_plasma_dt_profile464____ 1.36088640995403220e+16 -DT_fusion_rate_at_point_465______________________________________________ fusrat_plasma_dt_profile465____ 1.33469425171201900e+16 -DT_fusion_rate_at_point_466______________________________________________ fusrat_plasma_dt_profile466____ 1.31040182500506200e+16 -DT_fusion_rate_at_point_467______________________________________________ fusrat_plasma_dt_profile467____ 1.28816197425671880e+16 -DT_fusion_rate_at_point_468______________________________________________ fusrat_plasma_dt_profile468____ 1.26822654258342080e+16 -DT_fusion_rate_at_point_469______________________________________________ fusrat_plasma_dt_profile469____ 1.25107574827812540e+16 -DT_fusion_rate_at_point_470______________________________________________ fusrat_plasma_dt_profile470____ 1.23822036943037140e+16 -DT_fusion_rate_at_point_471______________________________________________ fusrat_plasma_dt_profile471____ 1.07382207239092740e+16 -DT_fusion_rate_at_point_472______________________________________________ fusrat_plasma_dt_profile472____ 9.25746698883794600e+15 -DT_fusion_rate_at_point_473______________________________________________ fusrat_plasma_dt_profile473____ 7.93016590043586500e+15 -DT_fusion_rate_at_point_474______________________________________________ fusrat_plasma_dt_profile474____ 6.74658523527063100e+15 -DT_fusion_rate_at_point_475______________________________________________ fusrat_plasma_dt_profile475____ 5.69706804044287600e+15 -DT_fusion_rate_at_point_476______________________________________________ fusrat_plasma_dt_profile476____ 4.77206441098296300e+15 -DT_fusion_rate_at_point_477______________________________________________ fusrat_plasma_dt_profile477____ 3.96216391532122800e+15 -DT_fusion_rate_at_point_478______________________________________________ fusrat_plasma_dt_profile478____ 3.25812842221331350e+15 -DT_fusion_rate_at_point_479______________________________________________ fusrat_plasma_dt_profile479____ 2.65092506348716650e+15 -DT_fusion_rate_at_point_480______________________________________________ fusrat_plasma_dt_profile480____ 2.13175905279895725e+15 -DT_fusion_rate_at_point_481______________________________________________ fusrat_plasma_dt_profile481____ 1.69210607256537175e+15 -DT_fusion_rate_at_point_482______________________________________________ fusrat_plasma_dt_profile482____ 1.32374394073306900e+15 -DT_fusion_rate_at_point_483______________________________________________ fusrat_plasma_dt_profile483____ 1.01878327735500288e+15 -DT_fusion_rate_at_point_484______________________________________________ fusrat_plasma_dt_profile484____ 7.69696909178055250e+14 -DT_fusion_rate_at_point_485______________________________________________ fusrat_plasma_dt_profile485____ 5.69347779300989375e+14 -DT_fusion_rate_at_point_486______________________________________________ fusrat_plasma_dt_profile486____ 4.11015168329606000e+14 -DT_fusion_rate_at_point_487______________________________________________ fusrat_plasma_dt_profile487____ 2.88419081775692812e+14 -DT_fusion_rate_at_point_488______________________________________________ fusrat_plasma_dt_profile488____ 1.95742711573503188e+14 -DT_fusion_rate_at_point_489______________________________________________ fusrat_plasma_dt_profile489____ 1.27652928828417875e+14 -DT_fusion_rate_at_point_490______________________________________________ fusrat_plasma_dt_profile490____ 7.93187936002859062e+13 -DT_fusion_rate_at_point_491______________________________________________ fusrat_plasma_dt_profile491____ 4.64280450716392656e+13 -DT_fusion_rate_at_point_492______________________________________________ fusrat_plasma_dt_profile492____ 2.52014071900063633e+13 -DT_fusion_rate_at_point_493______________________________________________ fusrat_plasma_dt_profile493____ 1.24042153045082207e+13 -DT_fusion_rate_at_point_494______________________________________________ fusrat_plasma_dt_profile494____ 5.35417676136815918e+12 -DT_fusion_rate_at_point_495______________________________________________ fusrat_plasma_dt_profile495____ 1.92276494496797241e+12 -DT_fusion_rate_at_point_496______________________________________________ fusrat_plasma_dt_profile496____ 5.25454708483098694e+11 -DT_fusion_rate_at_point_497______________________________________________ fusrat_plasma_dt_profile497____ 9.24438676955388489e+10 -DT_fusion_rate_at_point_498______________________________________________ fusrat_plasma_dt_profile498____ 7.26157360496385670e+09 -DT_fusion_rate_at_point_499______________________________________________ fusrat_plasma_dt_profile499____ 8.95535442630783170e+07 -DT_fusion_rate_at_point_500______________________________________________ fusrat_plasma_dt_profile500____ 6.12486477363998119e+02 -D-D_->_T_fusion_rate_at_point_0__________________________________________ fusrat_plasma_dd_triton_profile0_ 6.75198758404522500e+15 -D-D_->_T_fusion_rate_at_point_1__________________________________________ fusrat_plasma_dd_triton_profile1_ 6.75190567080852400e+15 -D-D_->_T_fusion_rate_at_point_2__________________________________________ fusrat_plasma_dd_triton_profile2_ 6.75165993509594600e+15 -D-D_->_T_fusion_rate_at_point_3__________________________________________ fusrat_plasma_dd_triton_profile3_ 6.75125038889982100e+15 -D-D_->_T_fusion_rate_at_point_4__________________________________________ fusrat_plasma_dd_triton_profile4_ 6.75067705220695400e+15 -D-D_->_T_fusion_rate_at_point_5__________________________________________ fusrat_plasma_dd_triton_profile5_ 6.74993995299770800e+15 -D-D_->_T_fusion_rate_at_point_6__________________________________________ fusrat_plasma_dd_triton_profile6_ 6.74903912724514100e+15 -D-D_->_T_fusion_rate_at_point_7__________________________________________ fusrat_plasma_dd_triton_profile7_ 6.74797461891346800e+15 -D-D_->_T_fusion_rate_at_point_8__________________________________________ fusrat_plasma_dd_triton_profile8_ 6.74674647995650200e+15 -D-D_->_T_fusion_rate_at_point_9__________________________________________ fusrat_plasma_dd_triton_profile9_ 6.74535477031570100e+15 -D-D_->_T_fusion_rate_at_point_10_________________________________________ fusrat_plasma_dd_triton_profile10_ 6.74379955791783100e+15 -D-D_->_T_fusion_rate_at_point_11_________________________________________ fusrat_plasma_dd_triton_profile11_ 6.74208091867246500e+15 -D-D_->_T_fusion_rate_at_point_12_________________________________________ fusrat_plasma_dd_triton_profile12_ 6.74019893646911600e+15 -D-D_->_T_fusion_rate_at_point_13_________________________________________ fusrat_plasma_dd_triton_profile13_ 6.73815370317399700e+15 -D-D_->_T_fusion_rate_at_point_14_________________________________________ fusrat_plasma_dd_triton_profile14_ 6.73594531862665700e+15 -D-D_->_T_fusion_rate_at_point_15_________________________________________ fusrat_plasma_dd_triton_profile15_ 6.73357389063611900e+15 -D-D_->_T_fusion_rate_at_point_16_________________________________________ fusrat_plasma_dd_triton_profile16_ 6.73103953497685800e+15 -D-D_->_T_fusion_rate_at_point_17_________________________________________ fusrat_plasma_dd_triton_profile17_ 6.72834237538439000e+15 -D-D_->_T_fusion_rate_at_point_18_________________________________________ fusrat_plasma_dd_triton_profile18_ 6.72548254355061200e+15 -D-D_->_T_fusion_rate_at_point_19_________________________________________ fusrat_plasma_dd_triton_profile19_ 6.72246017911881400e+15 -D-D_->_T_fusion_rate_at_point_20_________________________________________ fusrat_plasma_dd_triton_profile20_ 6.71927542967843100e+15 -D-D_->_T_fusion_rate_at_point_21_________________________________________ fusrat_plasma_dd_triton_profile21_ 6.71592845075938600e+15 -D-D_->_T_fusion_rate_at_point_22_________________________________________ fusrat_plasma_dd_triton_profile22_ 6.71241940582626700e+15 -D-D_->_T_fusion_rate_at_point_23_________________________________________ fusrat_plasma_dd_triton_profile23_ 6.70874846627208700e+15 -D-D_->_T_fusion_rate_at_point_24_________________________________________ fusrat_plasma_dd_triton_profile24_ 6.70491581141184100e+15 -D-D_->_T_fusion_rate_at_point_25_________________________________________ fusrat_plasma_dd_triton_profile25_ 6.70092162847567700e+15 -D-D_->_T_fusion_rate_at_point_26_________________________________________ fusrat_plasma_dd_triton_profile26_ 6.69676611260180200e+15 -D-D_->_T_fusion_rate_at_point_27_________________________________________ fusrat_plasma_dd_triton_profile27_ 6.69244946682909200e+15 -D-D_->_T_fusion_rate_at_point_28_________________________________________ fusrat_plasma_dd_triton_profile28_ 6.68797190208937300e+15 -D-D_->_T_fusion_rate_at_point_29_________________________________________ fusrat_plasma_dd_triton_profile29_ 6.68333363719942600e+15 -D-D_->_T_fusion_rate_at_point_30_________________________________________ fusrat_plasma_dd_triton_profile30_ 6.67853489885268200e+15 -D-D_->_T_fusion_rate_at_point_31_________________________________________ fusrat_plasma_dd_triton_profile31_ 6.67357592161057000e+15 -D-D_->_T_fusion_rate_at_point_32_________________________________________ fusrat_plasma_dd_triton_profile32_ 6.66845694789368500e+15 -D-D_->_T_fusion_rate_at_point_33_________________________________________ fusrat_plasma_dd_triton_profile33_ 6.66317822797245500e+15 -D-D_->_T_fusion_rate_at_point_34_________________________________________ fusrat_plasma_dd_triton_profile34_ 6.65774001995772300e+15 -D-D_->_T_fusion_rate_at_point_35_________________________________________ fusrat_plasma_dd_triton_profile35_ 6.65214258979086200e+15 -D-D_->_T_fusion_rate_at_point_36_________________________________________ fusrat_plasma_dd_triton_profile36_ 6.64638621123364100e+15 -D-D_->_T_fusion_rate_at_point_37_________________________________________ fusrat_plasma_dd_triton_profile37_ 6.64047116585782100e+15 -D-D_->_T_fusion_rate_at_point_38_________________________________________ fusrat_plasma_dd_triton_profile38_ 6.63439774303440400e+15 -D-D_->_T_fusion_rate_at_point_39_________________________________________ fusrat_plasma_dd_triton_profile39_ 6.62816623992259200e+15 -D-D_->_T_fusion_rate_at_point_40_________________________________________ fusrat_plasma_dd_triton_profile40_ 6.62177696145843500e+15 -D-D_->_T_fusion_rate_at_point_41_________________________________________ fusrat_plasma_dd_triton_profile41_ 6.61523022034316300e+15 -D-D_->_T_fusion_rate_at_point_42_________________________________________ fusrat_plasma_dd_triton_profile42_ 6.60852633703128000e+15 -D-D_->_T_fusion_rate_at_point_43_________________________________________ fusrat_plasma_dd_triton_profile43_ 6.60166563971826300e+15 -D-D_->_T_fusion_rate_at_point_44_________________________________________ fusrat_plasma_dd_triton_profile44_ 6.59464846432799700e+15 -D-D_->_T_fusion_rate_at_point_45_________________________________________ fusrat_plasma_dd_triton_profile45_ 6.58747515449993600e+15 -D-D_->_T_fusion_rate_at_point_46_________________________________________ fusrat_plasma_dd_triton_profile46_ 6.58014606157588200e+15 -D-D_->_T_fusion_rate_at_point_47_________________________________________ fusrat_plasma_dd_triton_profile47_ 6.57266154458655500e+15 -D-D_->_T_fusion_rate_at_point_48_________________________________________ fusrat_plasma_dd_triton_profile48_ 6.56502197023775600e+15 -D-D_->_T_fusion_rate_at_point_49_________________________________________ fusrat_plasma_dd_triton_profile49_ 6.55722771289632100e+15 -D-D_->_T_fusion_rate_at_point_50_________________________________________ fusrat_plasma_dd_triton_profile50_ 6.54927915457567700e+15 -D-D_->_T_fusion_rate_at_point_51_________________________________________ fusrat_plasma_dd_triton_profile51_ 6.54117668492120200e+15 -D-D_->_T_fusion_rate_at_point_52_________________________________________ fusrat_plasma_dd_triton_profile52_ 6.53292070119513900e+15 -D-D_->_T_fusion_rate_at_point_53_________________________________________ fusrat_plasma_dd_triton_profile53_ 6.52451160826133300e+15 -D-D_->_T_fusion_rate_at_point_54_________________________________________ fusrat_plasma_dd_triton_profile54_ 6.51594981856959000e+15 -D-D_->_T_fusion_rate_at_point_55_________________________________________ fusrat_plasma_dd_triton_profile55_ 6.50723575213974800e+15 -D-D_->_T_fusion_rate_at_point_56_________________________________________ fusrat_plasma_dd_triton_profile56_ 6.49836983654543700e+15 -D-D_->_T_fusion_rate_at_point_57_________________________________________ fusrat_plasma_dd_triton_profile57_ 6.48935250689752500e+15 -D-D_->_T_fusion_rate_at_point_58_________________________________________ fusrat_plasma_dd_triton_profile58_ 6.48018420582729700e+15 -D-D_->_T_fusion_rate_at_point_59_________________________________________ fusrat_plasma_dd_triton_profile59_ 6.47086538346928900e+15 -D-D_->_T_fusion_rate_at_point_60_________________________________________ fusrat_plasma_dd_triton_profile60_ 6.46139649744377400e+15 -D-D_->_T_fusion_rate_at_point_61_________________________________________ fusrat_plasma_dd_triton_profile61_ 6.45177801283901600e+15 -D-D_->_T_fusion_rate_at_point_62_________________________________________ fusrat_plasma_dd_triton_profile62_ 6.44201040219322600e+15 -D-D_->_T_fusion_rate_at_point_63_________________________________________ fusrat_plasma_dd_triton_profile63_ 6.43209414547609800e+15 -D-D_->_T_fusion_rate_at_point_64_________________________________________ fusrat_plasma_dd_triton_profile64_ 6.42202973007017000e+15 -D-D_->_T_fusion_rate_at_point_65_________________________________________ fusrat_plasma_dd_triton_profile65_ 6.41181765075174700e+15 -D-D_->_T_fusion_rate_at_point_66_________________________________________ fusrat_plasma_dd_triton_profile66_ 6.40145840967164900e+15 -D-D_->_T_fusion_rate_at_point_67_________________________________________ fusrat_plasma_dd_triton_profile67_ 6.39095251633553300e+15 -D-D_->_T_fusion_rate_at_point_68_________________________________________ fusrat_plasma_dd_triton_profile68_ 6.38030048758396600e+15 -D-D_->_T_fusion_rate_at_point_69_________________________________________ fusrat_plasma_dd_triton_profile69_ 6.36950284757218100e+15 -D-D_->_T_fusion_rate_at_point_70_________________________________________ fusrat_plasma_dd_triton_profile70_ 6.35856012774950500e+15 -D-D_->_T_fusion_rate_at_point_71_________________________________________ fusrat_plasma_dd_triton_profile71_ 6.34747286683849600e+15 -D-D_->_T_fusion_rate_at_point_72_________________________________________ fusrat_plasma_dd_triton_profile72_ 6.33624161081376000e+15 -D-D_->_T_fusion_rate_at_point_73_________________________________________ fusrat_plasma_dd_triton_profile73_ 6.32486691288044100e+15 -D-D_->_T_fusion_rate_at_point_74_________________________________________ fusrat_plasma_dd_triton_profile74_ 6.31334933345242800e+15 -D-D_->_T_fusion_rate_at_point_75_________________________________________ fusrat_plasma_dd_triton_profile75_ 6.30168944013024200e+15 -D-D_->_T_fusion_rate_at_point_76_________________________________________ fusrat_plasma_dd_triton_profile76_ 6.28988780767858000e+15 -D-D_->_T_fusion_rate_at_point_77_________________________________________ fusrat_plasma_dd_triton_profile77_ 6.27794501800360600e+15 -D-D_->_T_fusion_rate_at_point_78_________________________________________ fusrat_plasma_dd_triton_profile78_ 6.26586166012986800e+15 -D-D_->_T_fusion_rate_at_point_79_________________________________________ fusrat_plasma_dd_triton_profile79_ 6.25363833017692900e+15 -D-D_->_T_fusion_rate_at_point_80_________________________________________ fusrat_plasma_dd_triton_profile80_ 6.24127563133571400e+15 -D-D_->_T_fusion_rate_at_point_81_________________________________________ fusrat_plasma_dd_triton_profile81_ 6.22877417384444000e+15 -D-D_->_T_fusion_rate_at_point_82_________________________________________ fusrat_plasma_dd_triton_profile82_ 6.21613457496440900e+15 -D-D_->_T_fusion_rate_at_point_83_________________________________________ fusrat_plasma_dd_triton_profile83_ 6.20335745895528100e+15 -D-D_->_T_fusion_rate_at_point_84_________________________________________ fusrat_plasma_dd_triton_profile84_ 6.19044345705019400e+15 -D-D_->_T_fusion_rate_at_point_85_________________________________________ fusrat_plasma_dd_triton_profile85_ 6.17739320743047600e+15 -D-D_->_T_fusion_rate_at_point_86_________________________________________ fusrat_plasma_dd_triton_profile86_ 6.16420735520008800e+15 -D-D_->_T_fusion_rate_at_point_87_________________________________________ fusrat_plasma_dd_triton_profile87_ 6.15088655235970700e+15 -D-D_->_T_fusion_rate_at_point_88_________________________________________ fusrat_plasma_dd_triton_profile88_ 6.13743145778057200e+15 -D-D_->_T_fusion_rate_at_point_89_________________________________________ fusrat_plasma_dd_triton_profile89_ 6.12384273717789400e+15 -D-D_->_T_fusion_rate_at_point_90_________________________________________ fusrat_plasma_dd_triton_profile90_ 6.11012106308406500e+15 -D-D_->_T_fusion_rate_at_point_91_________________________________________ fusrat_plasma_dd_triton_profile91_ 6.09626711482148400e+15 -D-D_->_T_fusion_rate_at_point_92_________________________________________ fusrat_plasma_dd_triton_profile92_ 6.08228157847505800e+15 -D-D_->_T_fusion_rate_at_point_93_________________________________________ fusrat_plasma_dd_triton_profile93_ 6.06816514686443100e+15 -D-D_->_T_fusion_rate_at_point_94_________________________________________ fusrat_plasma_dd_triton_profile94_ 6.05391851951585900e+15 -D-D_->_T_fusion_rate_at_point_95_________________________________________ fusrat_plasma_dd_triton_profile95_ 6.03954240263376500e+15 -D-D_->_T_fusion_rate_at_point_96_________________________________________ fusrat_plasma_dd_triton_profile96_ 6.02503750907202600e+15 -D-D_->_T_fusion_rate_at_point_97_________________________________________ fusrat_plasma_dd_triton_profile97_ 6.01040455830481300e+15 -D-D_->_T_fusion_rate_at_point_98_________________________________________ fusrat_plasma_dd_triton_profile98_ 5.99564427639729000e+15 -D-D_->_T_fusion_rate_at_point_99_________________________________________ fusrat_plasma_dd_triton_profile99_ 5.98075739597580700e+15 -D-D_->_T_fusion_rate_at_point_100________________________________________ fusrat_plasma_dd_triton_profile100_ 5.96574465619793100e+15 -D-D_->_T_fusion_rate_at_point_101________________________________________ fusrat_plasma_dd_triton_profile101_ 5.95060680272202600e+15 -D-D_->_T_fusion_rate_at_point_102________________________________________ fusrat_plasma_dd_triton_profile102_ 5.93534458767662200e+15 -D-D_->_T_fusion_rate_at_point_103________________________________________ fusrat_plasma_dd_triton_profile103_ 5.91995876962933100e+15 -D-D_->_T_fusion_rate_at_point_104________________________________________ fusrat_plasma_dd_triton_profile104_ 5.90445011355558700e+15 -D-D_->_T_fusion_rate_at_point_105________________________________________ fusrat_plasma_dd_triton_profile105_ 5.88881939080694000e+15 -D-D_->_T_fusion_rate_at_point_106________________________________________ fusrat_plasma_dd_triton_profile106_ 5.87306737907909500e+15 -D-D_->_T_fusion_rate_at_point_107________________________________________ fusrat_plasma_dd_triton_profile107_ 5.85719486237956700e+15 -D-D_->_T_fusion_rate_at_point_108________________________________________ fusrat_plasma_dd_triton_profile108_ 5.84120263099509000e+15 -D-D_->_T_fusion_rate_at_point_109________________________________________ fusrat_plasma_dd_triton_profile109_ 5.82509148145862500e+15 -D-D_->_T_fusion_rate_at_point_110________________________________________ fusrat_plasma_dd_triton_profile110_ 5.80886221651609100e+15 -D-D_->_T_fusion_rate_at_point_111________________________________________ fusrat_plasma_dd_triton_profile111_ 5.79251564509269700e+15 -D-D_->_T_fusion_rate_at_point_112________________________________________ fusrat_plasma_dd_triton_profile112_ 5.77605258225906000e+15 -D-D_->_T_fusion_rate_at_point_113________________________________________ fusrat_plasma_dd_triton_profile113_ 5.75947384919686800e+15 -D-D_->_T_fusion_rate_at_point_114________________________________________ fusrat_plasma_dd_triton_profile114_ 5.74278027316432400e+15 -D-D_->_T_fusion_rate_at_point_115________________________________________ fusrat_plasma_dd_triton_profile115_ 5.72597268746117000e+15 -D-D_->_T_fusion_rate_at_point_116________________________________________ fusrat_plasma_dd_triton_profile116_ 5.70905193139345000e+15 -D-D_->_T_fusion_rate_at_point_117________________________________________ fusrat_plasma_dd_triton_profile117_ 5.69201885023785500e+15 -D-D_->_T_fusion_rate_at_point_118________________________________________ fusrat_plasma_dd_triton_profile118_ 5.67487429520588600e+15 -D-D_->_T_fusion_rate_at_point_119________________________________________ fusrat_plasma_dd_triton_profile119_ 5.65761912340746800e+15 -D-D_->_T_fusion_rate_at_point_120________________________________________ fusrat_plasma_dd_triton_profile120_ 5.64025419781445700e+15 -D-D_->_T_fusion_rate_at_point_121________________________________________ fusrat_plasma_dd_triton_profile121_ 5.62278038722362900e+15 -D-D_->_T_fusion_rate_at_point_122________________________________________ fusrat_plasma_dd_triton_profile122_ 5.60519856621946400e+15 -D-D_->_T_fusion_rate_at_point_123________________________________________ fusrat_plasma_dd_triton_profile123_ 5.58750961513650900e+15 -D-D_->_T_fusion_rate_at_point_124________________________________________ fusrat_plasma_dd_triton_profile124_ 5.56971442002143700e+15 -D-D_->_T_fusion_rate_at_point_125________________________________________ fusrat_plasma_dd_triton_profile125_ 5.55181387259477500e+15 -D-D_->_T_fusion_rate_at_point_126________________________________________ fusrat_plasma_dd_triton_profile126_ 5.53380887021230400e+15 -D-D_->_T_fusion_rate_at_point_127________________________________________ fusrat_plasma_dd_triton_profile127_ 5.51570031582605900e+15 -D-D_->_T_fusion_rate_at_point_128________________________________________ fusrat_plasma_dd_triton_profile128_ 5.49748911794506200e+15 -D-D_->_T_fusion_rate_at_point_129________________________________________ fusrat_plasma_dd_triton_profile129_ 5.47917619059570200e+15 -D-D_->_T_fusion_rate_at_point_130________________________________________ fusrat_plasma_dd_triton_profile130_ 5.46076245328170600e+15 -D-D_->_T_fusion_rate_at_point_131________________________________________ fusrat_plasma_dd_triton_profile131_ 5.44224883094385500e+15 -D-D_->_T_fusion_rate_at_point_132________________________________________ fusrat_plasma_dd_triton_profile132_ 5.42363625391932400e+15 -D-D_->_T_fusion_rate_at_point_133________________________________________ fusrat_plasma_dd_triton_profile133_ 5.40492565790063600e+15 -D-D_->_T_fusion_rate_at_point_134________________________________________ fusrat_plasma_dd_triton_profile134_ 5.38611798389437600e+15 -D-D_->_T_fusion_rate_at_point_135________________________________________ fusrat_plasma_dd_triton_profile135_ 5.36721417817941700e+15 -D-D_->_T_fusion_rate_at_point_136________________________________________ fusrat_plasma_dd_triton_profile136_ 5.34821519226494300e+15 -D-D_->_T_fusion_rate_at_point_137________________________________________ fusrat_plasma_dd_triton_profile137_ 5.32912198284799500e+15 -D-D_->_T_fusion_rate_at_point_138________________________________________ fusrat_plasma_dd_triton_profile138_ 5.30993551177079700e+15 -D-D_->_T_fusion_rate_at_point_139________________________________________ fusrat_plasma_dd_triton_profile139_ 5.29065674597763300e+15 -D-D_->_T_fusion_rate_at_point_140________________________________________ fusrat_plasma_dd_triton_profile140_ 5.27128665747138500e+15 -D-D_->_T_fusion_rate_at_point_141________________________________________ fusrat_plasma_dd_triton_profile141_ 5.25182622326979400e+15 -D-D_->_T_fusion_rate_at_point_142________________________________________ fusrat_plasma_dd_triton_profile142_ 5.23227642536128200e+15 -D-D_->_T_fusion_rate_at_point_143________________________________________ fusrat_plasma_dd_triton_profile143_ 5.21263825066049000e+15 -D-D_->_T_fusion_rate_at_point_144________________________________________ fusrat_plasma_dd_triton_profile144_ 5.19291269096339200e+15 -D-D_->_T_fusion_rate_at_point_145________________________________________ fusrat_plasma_dd_triton_profile145_ 5.17310074290210100e+15 -D-D_->_T_fusion_rate_at_point_146________________________________________ fusrat_plasma_dd_triton_profile146_ 5.15320340789933700e+15 -D-D_->_T_fusion_rate_at_point_147________________________________________ fusrat_plasma_dd_triton_profile147_ 5.13322169212248000e+15 -D-D_->_T_fusion_rate_at_point_148________________________________________ fusrat_plasma_dd_triton_profile148_ 5.11315660643731900e+15 -D-D_->_T_fusion_rate_at_point_149________________________________________ fusrat_plasma_dd_triton_profile149_ 5.09300916636139600e+15 -D-D_->_T_fusion_rate_at_point_150________________________________________ fusrat_plasma_dd_triton_profile150_ 5.07278039201702600e+15 -D-D_->_T_fusion_rate_at_point_151________________________________________ fusrat_plasma_dd_triton_profile151_ 5.05247130808393400e+15 -D-D_->_T_fusion_rate_at_point_152________________________________________ fusrat_plasma_dd_triton_profile152_ 5.03208294375154600e+15 -D-D_->_T_fusion_rate_at_point_153________________________________________ fusrat_plasma_dd_triton_profile153_ 5.01161633267090400e+15 -D-D_->_T_fusion_rate_at_point_154________________________________________ fusrat_plasma_dd_triton_profile154_ 4.99107251290621500e+15 -D-D_->_T_fusion_rate_at_point_155________________________________________ fusrat_plasma_dd_triton_profile155_ 4.97045252688603800e+15 -D-D_->_T_fusion_rate_at_point_156________________________________________ fusrat_plasma_dd_triton_profile156_ 4.94975742135414300e+15 -D-D_->_T_fusion_rate_at_point_157________________________________________ fusrat_plasma_dd_triton_profile157_ 4.92898824731985700e+15 -D-D_->_T_fusion_rate_at_point_158________________________________________ fusrat_plasma_dd_triton_profile158_ 4.90814606000830300e+15 -D-D_->_T_fusion_rate_at_point_159________________________________________ fusrat_plasma_dd_triton_profile159_ 4.88723191880996600e+15 -D-D_->_T_fusion_rate_at_point_160________________________________________ fusrat_plasma_dd_triton_profile160_ 4.86624688723012700e+15 -D-D_->_T_fusion_rate_at_point_161________________________________________ fusrat_plasma_dd_triton_profile161_ 4.84519203283777600e+15 -D-D_->_T_fusion_rate_at_point_162________________________________________ fusrat_plasma_dd_triton_profile162_ 4.82406842721423700e+15 -D-D_->_T_fusion_rate_at_point_163________________________________________ fusrat_plasma_dd_triton_profile163_ 4.80287714590136200e+15 -D-D_->_T_fusion_rate_at_point_164________________________________________ fusrat_plasma_dd_triton_profile164_ 4.78161926834937900e+15 -D-D_->_T_fusion_rate_at_point_165________________________________________ fusrat_plasma_dd_triton_profile165_ 4.76029587786434300e+15 -D-D_->_T_fusion_rate_at_point_166________________________________________ fusrat_plasma_dd_triton_profile166_ 4.73890806155523300e+15 -D-D_->_T_fusion_rate_at_point_167________________________________________ fusrat_plasma_dd_triton_profile167_ 4.71745691028062900e+15 -D-D_->_T_fusion_rate_at_point_168________________________________________ fusrat_plasma_dd_triton_profile168_ 4.69594351859503800e+15 -D-D_->_T_fusion_rate_at_point_169________________________________________ fusrat_plasma_dd_triton_profile169_ 4.67436898469480800e+15 -D-D_->_T_fusion_rate_at_point_170________________________________________ fusrat_plasma_dd_triton_profile170_ 4.65273441036370300e+15 -D-D_->_T_fusion_rate_at_point_171________________________________________ fusrat_plasma_dd_triton_profile171_ 4.63104090091802100e+15 -D-D_->_T_fusion_rate_at_point_172________________________________________ fusrat_plasma_dd_triton_profile172_ 4.60928956515140700e+15 -D-D_->_T_fusion_rate_at_point_173________________________________________ fusrat_plasma_dd_triton_profile173_ 4.58748151527916700e+15 -D-D_->_T_fusion_rate_at_point_174________________________________________ fusrat_plasma_dd_triton_profile174_ 4.56561786688233900e+15 -D-D_->_T_fusion_rate_at_point_175________________________________________ fusrat_plasma_dd_triton_profile175_ 4.54369973885119800e+15 -D-D_->_T_fusion_rate_at_point_176________________________________________ fusrat_plasma_dd_triton_profile176_ 4.52172825332851800e+15 -D-D_->_T_fusion_rate_at_point_177________________________________________ fusrat_plasma_dd_triton_profile177_ 4.49970453565232600e+15 -D-D_->_T_fusion_rate_at_point_178________________________________________ fusrat_plasma_dd_triton_profile178_ 4.47762971429833600e+15 -D-D_->_T_fusion_rate_at_point_179________________________________________ fusrat_plasma_dd_triton_profile179_ 4.45550492082193500e+15 -D-D_->_T_fusion_rate_at_point_180________________________________________ fusrat_plasma_dd_triton_profile180_ 4.43333128979978300e+15 -D-D_->_T_fusion_rate_at_point_181________________________________________ fusrat_plasma_dd_triton_profile181_ 4.41110995877103550e+15 -D-D_->_T_fusion_rate_at_point_182________________________________________ fusrat_plasma_dd_triton_profile182_ 4.38884206817807750e+15 -D-D_->_T_fusion_rate_at_point_183________________________________________ fusrat_plasma_dd_triton_profile183_ 4.36652876130696500e+15 -D-D_->_T_fusion_rate_at_point_184________________________________________ fusrat_plasma_dd_triton_profile184_ 4.34417118422737300e+15 -D-D_->_T_fusion_rate_at_point_185________________________________________ fusrat_plasma_dd_triton_profile185_ 4.32177048573216000e+15 -D-D_->_T_fusion_rate_at_point_186________________________________________ fusrat_plasma_dd_triton_profile186_ 4.29932781727653800e+15 -D-D_->_T_fusion_rate_at_point_187________________________________________ fusrat_plasma_dd_triton_profile187_ 4.27684433291679150e+15 -D-D_->_T_fusion_rate_at_point_188________________________________________ fusrat_plasma_dd_triton_profile188_ 4.25432118924861600e+15 -D-D_->_T_fusion_rate_at_point_189________________________________________ fusrat_plasma_dd_triton_profile189_ 4.23175954534500700e+15 -D-D_->_T_fusion_rate_at_point_190________________________________________ fusrat_plasma_dd_triton_profile190_ 4.20916056269376500e+15 -D-D_->_T_fusion_rate_at_point_191________________________________________ fusrat_plasma_dd_triton_profile191_ 4.18652540513454350e+15 -D-D_->_T_fusion_rate_at_point_192________________________________________ fusrat_plasma_dd_triton_profile192_ 4.16385523879549050e+15 -D-D_->_T_fusion_rate_at_point_193________________________________________ fusrat_plasma_dd_triton_profile193_ 4.14115123202946800e+15 -D-D_->_T_fusion_rate_at_point_194________________________________________ fusrat_plasma_dd_triton_profile194_ 4.11841455534983300e+15 -D-D_->_T_fusion_rate_at_point_195________________________________________ fusrat_plasma_dd_triton_profile195_ 4.09564638136579550e+15 -D-D_->_T_fusion_rate_at_point_196________________________________________ fusrat_plasma_dd_triton_profile196_ 4.07284788471736000e+15 -D-D_->_T_fusion_rate_at_point_197________________________________________ fusrat_plasma_dd_triton_profile197_ 4.05002024200977200e+15 -D-D_->_T_fusion_rate_at_point_198________________________________________ fusrat_plasma_dd_triton_profile198_ 4.02716463174762450e+15 -D-D_->_T_fusion_rate_at_point_199________________________________________ fusrat_plasma_dd_triton_profile199_ 4.00428223426843650e+15 -D-D_->_T_fusion_rate_at_point_200________________________________________ fusrat_plasma_dd_triton_profile200_ 3.98137423167585500e+15 -D-D_->_T_fusion_rate_at_point_201________________________________________ fusrat_plasma_dd_triton_profile201_ 3.95844180777235950e+15 -D-D_->_T_fusion_rate_at_point_202________________________________________ fusrat_plasma_dd_triton_profile202_ 3.93548614799159100e+15 -D-D_->_T_fusion_rate_at_point_203________________________________________ fusrat_plasma_dd_triton_profile203_ 3.91250843933015450e+15 -D-D_->_T_fusion_rate_at_point_204________________________________________ fusrat_plasma_dd_triton_profile204_ 3.88950987027902900e+15 -D-D_->_T_fusion_rate_at_point_205________________________________________ fusrat_plasma_dd_triton_profile205_ 3.86649163075451500e+15 -D-D_->_T_fusion_rate_at_point_206________________________________________ fusrat_plasma_dd_triton_profile206_ 3.84345491202871850e+15 -D-D_->_T_fusion_rate_at_point_207________________________________________ fusrat_plasma_dd_triton_profile207_ 3.82040090665957250e+15 -D-D_->_T_fusion_rate_at_point_208________________________________________ fusrat_plasma_dd_triton_profile208_ 3.79733080842040750e+15 -D-D_->_T_fusion_rate_at_point_209________________________________________ fusrat_plasma_dd_triton_profile209_ 3.77424581222908350e+15 -D-D_->_T_fusion_rate_at_point_210________________________________________ fusrat_plasma_dd_triton_profile210_ 3.75114711407663000e+15 -D-D_->_T_fusion_rate_at_point_211________________________________________ fusrat_plasma_dd_triton_profile211_ 3.72803591095540950e+15 -D-D_->_T_fusion_rate_at_point_212________________________________________ fusrat_plasma_dd_triton_profile212_ 3.70491340078685850e+15 -D-D_->_T_fusion_rate_at_point_213________________________________________ fusrat_plasma_dd_triton_profile213_ 3.68178078234872200e+15 -D-D_->_T_fusion_rate_at_point_214________________________________________ fusrat_plasma_dd_triton_profile214_ 3.65863925520180050e+15 -D-D_->_T_fusion_rate_at_point_215________________________________________ fusrat_plasma_dd_triton_profile215_ 3.63549001961629600e+15 -D-D_->_T_fusion_rate_at_point_216________________________________________ fusrat_plasma_dd_triton_profile216_ 3.61233427649757800e+15 -D-D_->_T_fusion_rate_at_point_217________________________________________ fusrat_plasma_dd_triton_profile217_ 3.58917322731154000e+15 -D-D_->_T_fusion_rate_at_point_218________________________________________ fusrat_plasma_dd_triton_profile218_ 3.56600807400946700e+15 -D-D_->_T_fusion_rate_at_point_219________________________________________ fusrat_plasma_dd_triton_profile219_ 3.54284001895235600e+15 -D-D_->_T_fusion_rate_at_point_220________________________________________ fusrat_plasma_dd_triton_profile220_ 3.51967026483485350e+15 -D-D_->_T_fusion_rate_at_point_221________________________________________ fusrat_plasma_dd_triton_profile221_ 3.49650001460858550e+15 -D-D_->_T_fusion_rate_at_point_222________________________________________ fusrat_plasma_dd_triton_profile222_ 3.47333047140508900e+15 -D-D_->_T_fusion_rate_at_point_223________________________________________ fusrat_plasma_dd_triton_profile223_ 3.45016283845816850e+15 -D-D_->_T_fusion_rate_at_point_224________________________________________ fusrat_plasma_dd_triton_profile224_ 3.42699831902584200e+15 -D-D_->_T_fusion_rate_at_point_225________________________________________ fusrat_plasma_dd_triton_profile225_ 3.40383811631168350e+15 -D-D_->_T_fusion_rate_at_point_226________________________________________ fusrat_plasma_dd_triton_profile226_ 3.38068343338573400e+15 -D-D_->_T_fusion_rate_at_point_227________________________________________ fusrat_plasma_dd_triton_profile227_ 3.35753547310489250e+15 -D-D_->_T_fusion_rate_at_point_228________________________________________ fusrat_plasma_dd_triton_profile228_ 3.33439543803276100e+15 -D-D_->_T_fusion_rate_at_point_229________________________________________ fusrat_plasma_dd_triton_profile229_ 3.31126453035901350e+15 -D-D_->_T_fusion_rate_at_point_230________________________________________ fusrat_plasma_dd_triton_profile230_ 3.28814395181823900e+15 -D-D_->_T_fusion_rate_at_point_231________________________________________ fusrat_plasma_dd_triton_profile231_ 3.26503490360824450e+15 -D-D_->_T_fusion_rate_at_point_232________________________________________ fusrat_plasma_dd_triton_profile232_ 3.24193858630787300e+15 -D-D_->_T_fusion_rate_at_point_233________________________________________ fusrat_plasma_dd_triton_profile233_ 3.21885619979427400e+15 -D-D_->_T_fusion_rate_at_point_234________________________________________ fusrat_plasma_dd_triton_profile234_ 3.19578894315963650e+15 -D-D_->_T_fusion_rate_at_point_235________________________________________ fusrat_plasma_dd_triton_profile235_ 3.17273801462740750e+15 -D-D_->_T_fusion_rate_at_point_236________________________________________ fusrat_plasma_dd_triton_profile236_ 3.14970461146797950e+15 -D-D_->_T_fusion_rate_at_point_237________________________________________ fusrat_plasma_dd_triton_profile237_ 3.12668992991383650e+15 -D-D_->_T_fusion_rate_at_point_238________________________________________ fusrat_plasma_dd_triton_profile238_ 3.10369516507415300e+15 -D-D_->_T_fusion_rate_at_point_239________________________________________ fusrat_plasma_dd_triton_profile239_ 3.08072151084886450e+15 -D-D_->_T_fusion_rate_at_point_240________________________________________ fusrat_plasma_dd_triton_profile240_ 3.05777015984216900e+15 -D-D_->_T_fusion_rate_at_point_241________________________________________ fusrat_plasma_dd_triton_profile241_ 3.03484230327551050e+15 -D-D_->_T_fusion_rate_at_point_242________________________________________ fusrat_plasma_dd_triton_profile242_ 3.01193913089999900e+15 -D-D_->_T_fusion_rate_at_point_243________________________________________ fusrat_plasma_dd_triton_profile243_ 2.98906183090825400e+15 -D-D_->_T_fusion_rate_at_point_244________________________________________ fusrat_plasma_dd_triton_profile244_ 2.96621158984574100e+15 -D-D_->_T_fusion_rate_at_point_245________________________________________ fusrat_plasma_dd_triton_profile245_ 2.94338959252149650e+15 -D-D_->_T_fusion_rate_at_point_246________________________________________ fusrat_plasma_dd_triton_profile246_ 2.92059702191832200e+15 -D-D_->_T_fusion_rate_at_point_247________________________________________ fusrat_plasma_dd_triton_profile247_ 2.89783505910237800e+15 -D-D_->_T_fusion_rate_at_point_248________________________________________ fusrat_plasma_dd_triton_profile248_ 2.87510488313227150e+15 -D-D_->_T_fusion_rate_at_point_249________________________________________ fusrat_plasma_dd_triton_profile249_ 2.85240767096750200e+15 -D-D_->_T_fusion_rate_at_point_250________________________________________ fusrat_plasma_dd_triton_profile250_ 2.82974459737638300e+15 -D-D_->_T_fusion_rate_at_point_251________________________________________ fusrat_plasma_dd_triton_profile251_ 2.80711683484334400e+15 -D-D_->_T_fusion_rate_at_point_252________________________________________ fusrat_plasma_dd_triton_profile252_ 2.78452555347570450e+15 -D-D_->_T_fusion_rate_at_point_253________________________________________ fusrat_plasma_dd_triton_profile253_ 2.76197192090980750e+15 -D-D_->_T_fusion_rate_at_point_254________________________________________ fusrat_plasma_dd_triton_profile254_ 2.73945710221660000e+15 -D-D_->_T_fusion_rate_at_point_255________________________________________ fusrat_plasma_dd_triton_profile255_ 2.71698225980663250e+15 -D-D_->_T_fusion_rate_at_point_256________________________________________ fusrat_plasma_dd_triton_profile256_ 2.69454855333444700e+15 -D-D_->_T_fusion_rate_at_point_257________________________________________ fusrat_plasma_dd_triton_profile257_ 2.67215713960235200e+15 -D-D_->_T_fusion_rate_at_point_258________________________________________ fusrat_plasma_dd_triton_profile258_ 2.64980917246367000e+15 -D-D_->_T_fusion_rate_at_point_259________________________________________ fusrat_plasma_dd_triton_profile259_ 2.62750580272529650e+15 -D-D_->_T_fusion_rate_at_point_260________________________________________ fusrat_plasma_dd_triton_profile260_ 2.60524817804973400e+15 -D-D_->_T_fusion_rate_at_point_261________________________________________ fusrat_plasma_dd_triton_profile261_ 2.58303744285645400e+15 -D-D_->_T_fusion_rate_at_point_262________________________________________ fusrat_plasma_dd_triton_profile262_ 2.56087473822270800e+15 -D-D_->_T_fusion_rate_at_point_263________________________________________ fusrat_plasma_dd_triton_profile263_ 2.53876120178370200e+15 -D-D_->_T_fusion_rate_at_point_264________________________________________ fusrat_plasma_dd_triton_profile264_ 2.51669796763214850e+15 -D-D_->_T_fusion_rate_at_point_265________________________________________ fusrat_plasma_dd_triton_profile265_ 2.49468616621723000e+15 -D-D_->_T_fusion_rate_at_point_266________________________________________ fusrat_plasma_dd_triton_profile266_ 2.47272692424291700e+15 -D-D_->_T_fusion_rate_at_point_267________________________________________ fusrat_plasma_dd_triton_profile267_ 2.45082136456569250e+15 -D-D_->_T_fusion_rate_at_point_268________________________________________ fusrat_plasma_dd_triton_profile268_ 2.42897060609164150e+15 -D-D_->_T_fusion_rate_at_point_269________________________________________ fusrat_plasma_dd_triton_profile269_ 2.40717576367291050e+15 -D-D_->_T_fusion_rate_at_point_270________________________________________ fusrat_plasma_dd_triton_profile270_ 2.38543794800357100e+15 -D-D_->_T_fusion_rate_at_point_271________________________________________ fusrat_plasma_dd_triton_profile271_ 2.36375826551478650e+15 -D-D_->_T_fusion_rate_at_point_272________________________________________ fusrat_plasma_dd_triton_profile272_ 2.34213781826946600e+15 -D-D_->_T_fusion_rate_at_point_273________________________________________ fusrat_plasma_dd_triton_profile273_ 2.32057770385615600e+15 -D-D_->_T_fusion_rate_at_point_274________________________________________ fusrat_plasma_dd_triton_profile274_ 2.29907901528240200e+15 -D-D_->_T_fusion_rate_at_point_275________________________________________ fusrat_plasma_dd_triton_profile275_ 2.27764284086740500e+15 -D-D_->_T_fusion_rate_at_point_276________________________________________ fusrat_plasma_dd_triton_profile276_ 2.25627026413410150e+15 -D-D_->_T_fusion_rate_at_point_277________________________________________ fusrat_plasma_dd_triton_profile277_ 2.23496236370056175e+15 -D-D_->_T_fusion_rate_at_point_278________________________________________ fusrat_plasma_dd_triton_profile278_ 2.21372021317076925e+15 -D-D_->_T_fusion_rate_at_point_279________________________________________ fusrat_plasma_dd_triton_profile279_ 2.19254488102476300e+15 -D-D_->_T_fusion_rate_at_point_280________________________________________ fusrat_plasma_dd_triton_profile280_ 2.17143743050813600e+15 -D-D_->_T_fusion_rate_at_point_281________________________________________ fusrat_plasma_dd_triton_profile281_ 2.15039891952088725e+15 -D-D_->_T_fusion_rate_at_point_282________________________________________ fusrat_plasma_dd_triton_profile282_ 2.12943040050564625e+15 -D-D_->_T_fusion_rate_at_point_283________________________________________ fusrat_plasma_dd_triton_profile283_ 2.10853292033524425e+15 -D-D_->_T_fusion_rate_at_point_284________________________________________ fusrat_plasma_dd_triton_profile284_ 2.08770752019966200e+15 -D-D_->_T_fusion_rate_at_point_285________________________________________ fusrat_plasma_dd_triton_profile285_ 2.06695523549231075e+15 -D-D_->_T_fusion_rate_at_point_286________________________________________ fusrat_plasma_dd_triton_profile286_ 2.04627709569569225e+15 -D-D_->_T_fusion_rate_at_point_287________________________________________ fusrat_plasma_dd_triton_profile287_ 2.02567412426641275e+15 -D-D_->_T_fusion_rate_at_point_288________________________________________ fusrat_plasma_dd_triton_profile288_ 2.00514733851955375e+15 -D-D_->_T_fusion_rate_at_point_289________________________________________ fusrat_plasma_dd_triton_profile289_ 1.98469774951242050e+15 -D-D_->_T_fusion_rate_at_point_290________________________________________ fusrat_plasma_dd_triton_profile290_ 1.96432636192761325e+15 -D-D_->_T_fusion_rate_at_point_291________________________________________ fusrat_plasma_dd_triton_profile291_ 1.94403417395552875e+15 -D-D_->_T_fusion_rate_at_point_292________________________________________ fusrat_plasma_dd_triton_profile292_ 1.92382217717615000e+15 -D-D_->_T_fusion_rate_at_point_293________________________________________ fusrat_plasma_dd_triton_profile293_ 1.90369135644026250e+15 -D-D_->_T_fusion_rate_at_point_294________________________________________ fusrat_plasma_dd_triton_profile294_ 1.88364268975003050e+15 -D-D_->_T_fusion_rate_at_point_295________________________________________ fusrat_plasma_dd_triton_profile295_ 1.86367714813890325e+15 -D-D_->_T_fusion_rate_at_point_296________________________________________ fusrat_plasma_dd_triton_profile296_ 1.84379569555096000e+15 -D-D_->_T_fusion_rate_at_point_297________________________________________ fusrat_plasma_dd_triton_profile297_ 1.82399928871960325e+15 -D-D_->_T_fusion_rate_at_point_298________________________________________ fusrat_plasma_dd_triton_profile298_ 1.80428887704560625e+15 -D-D_->_T_fusion_rate_at_point_299________________________________________ fusrat_plasma_dd_triton_profile299_ 1.78466540247460800e+15 -D-D_->_T_fusion_rate_at_point_300________________________________________ fusrat_plasma_dd_triton_profile300_ 1.76512979937395425e+15 -D-D_->_T_fusion_rate_at_point_301________________________________________ fusrat_plasma_dd_triton_profile301_ 1.74568299440894850e+15 -D-D_->_T_fusion_rate_at_point_302________________________________________ fusrat_plasma_dd_triton_profile302_ 1.72632590641850100e+15 -D-D_->_T_fusion_rate_at_point_303________________________________________ fusrat_plasma_dd_triton_profile303_ 1.70705944629018400e+15 -D-D_->_T_fusion_rate_at_point_304________________________________________ fusrat_plasma_dd_triton_profile304_ 1.68788451683471500e+15 -D-D_->_T_fusion_rate_at_point_305________________________________________ fusrat_plasma_dd_triton_profile305_ 1.66880201265983600e+15 -D-D_->_T_fusion_rate_at_point_306________________________________________ fusrat_plasma_dd_triton_profile306_ 1.64981282004363075e+15 -D-D_->_T_fusion_rate_at_point_307________________________________________ fusrat_plasma_dd_triton_profile307_ 1.63091781680728100e+15 -D-D_->_T_fusion_rate_at_point_308________________________________________ fusrat_plasma_dd_triton_profile308_ 1.61211787218724100e+15 -D-D_->_T_fusion_rate_at_point_309________________________________________ fusrat_plasma_dd_triton_profile309_ 1.59341384670690900e+15 -D-D_->_T_fusion_rate_at_point_310________________________________________ fusrat_plasma_dd_triton_profile310_ 1.57480659204770575e+15 -D-D_->_T_fusion_rate_at_point_311________________________________________ fusrat_plasma_dd_triton_profile311_ 1.55629695091966325e+15 -D-D_->_T_fusion_rate_at_point_312________________________________________ fusrat_plasma_dd_triton_profile312_ 1.53788575693146025e+15 -D-D_->_T_fusion_rate_at_point_313________________________________________ fusrat_plasma_dd_triton_profile313_ 1.51957383445999525e+15 -D-D_->_T_fusion_rate_at_point_314________________________________________ fusrat_plasma_dd_triton_profile314_ 1.50136199851940000e+15 -D-D_->_T_fusion_rate_at_point_315________________________________________ fusrat_plasma_dd_triton_profile315_ 1.48325105462963425e+15 -D-D_->_T_fusion_rate_at_point_316________________________________________ fusrat_plasma_dd_triton_profile316_ 1.46524179868455825e+15 -D-D_->_T_fusion_rate_at_point_317________________________________________ fusrat_plasma_dd_triton_profile317_ 1.44733501681957850e+15 -D-D_->_T_fusion_rate_at_point_318________________________________________ fusrat_plasma_dd_triton_profile318_ 1.42953148527884225e+15 -D-D_->_T_fusion_rate_at_point_319________________________________________ fusrat_plasma_dd_triton_profile319_ 1.41183197028199575e+15 -D-D_->_T_fusion_rate_at_point_320________________________________________ fusrat_plasma_dd_triton_profile320_ 1.39423722789055400e+15 -D-D_->_T_fusion_rate_at_point_321________________________________________ fusrat_plasma_dd_triton_profile321_ 1.37674800387386150e+15 -D-D_->_T_fusion_rate_at_point_322________________________________________ fusrat_plasma_dd_triton_profile322_ 1.35936503357467125e+15 -D-D_->_T_fusion_rate_at_point_323________________________________________ fusrat_plasma_dd_triton_profile323_ 1.34208904177440300e+15 -D-D_->_T_fusion_rate_at_point_324________________________________________ fusrat_plasma_dd_triton_profile324_ 1.32492074255802325e+15 -D-D_->_T_fusion_rate_at_point_325________________________________________ fusrat_plasma_dd_triton_profile325_ 1.30786083917864875e+15 -D-D_->_T_fusion_rate_at_point_326________________________________________ fusrat_plasma_dd_triton_profile326_ 1.29091002392182450e+15 -D-D_->_T_fusion_rate_at_point_327________________________________________ fusrat_plasma_dd_triton_profile327_ 1.27406897796956925e+15 -D-D_->_T_fusion_rate_at_point_328________________________________________ fusrat_plasma_dd_triton_profile328_ 1.25733837126415100e+15 -D-D_->_T_fusion_rate_at_point_329________________________________________ fusrat_plasma_dd_triton_profile329_ 1.24071886237165925e+15 -D-D_->_T_fusion_rate_at_point_330________________________________________ fusrat_plasma_dd_triton_profile330_ 1.22421109834537400e+15 -D-D_->_T_fusion_rate_at_point_331________________________________________ fusrat_plasma_dd_triton_profile331_ 1.20781571458899200e+15 -D-D_->_T_fusion_rate_at_point_332________________________________________ fusrat_plasma_dd_triton_profile332_ 1.19153333471969925e+15 -D-D_->_T_fusion_rate_at_point_333________________________________________ fusrat_plasma_dd_triton_profile333_ 1.17536457043116225e+15 -D-D_->_T_fusion_rate_at_point_334________________________________________ fusrat_plasma_dd_triton_profile334_ 1.15931002135643100e+15 -D-D_->_T_fusion_rate_at_point_335________________________________________ fusrat_plasma_dd_triton_profile335_ 1.14337027493081400e+15 -D-D_->_T_fusion_rate_at_point_336________________________________________ fusrat_plasma_dd_triton_profile336_ 1.12754590625476900e+15 -D-D_->_T_fusion_rate_at_point_337________________________________________ fusrat_plasma_dd_triton_profile337_ 1.11183747795679750e+15 -D-D_->_T_fusion_rate_at_point_338________________________________________ fusrat_plasma_dd_triton_profile338_ 1.09624554005645138e+15 -D-D_->_T_fusion_rate_at_point_339________________________________________ fusrat_plasma_dd_triton_profile339_ 1.08077062982742650e+15 -D-D_->_T_fusion_rate_at_point_340________________________________________ fusrat_plasma_dd_triton_profile340_ 1.06541327166083500e+15 -D-D_->_T_fusion_rate_at_point_341________________________________________ fusrat_plasma_dd_triton_profile341_ 1.05017397692866050e+15 -D-D_->_T_fusion_rate_at_point_342________________________________________ fusrat_plasma_dd_triton_profile342_ 1.03505324384748650e+15 -D-D_->_T_fusion_rate_at_point_343________________________________________ fusrat_plasma_dd_triton_profile343_ 1.02005155734248688e+15 -D-D_->_T_fusion_rate_at_point_344________________________________________ fusrat_plasma_dd_triton_profile344_ 1.00516938891179538e+15 -D-D_->_T_fusion_rate_at_point_345________________________________________ fusrat_plasma_dd_triton_profile345_ 9.90407196491242750e+14 -D-D_->_T_fusion_rate_at_point_346________________________________________ fusrat_plasma_dd_triton_profile346_ 9.75765424319568625e+14 -D-D_->_T_fusion_rate_at_point_347________________________________________ fusrat_plasma_dd_triton_profile347_ 9.61244502804122375e+14 -D-D_->_T_fusion_rate_at_point_348________________________________________ fusrat_plasma_dd_triton_profile348_ 9.46844848387139000e+14 -D-D_->_T_fusion_rate_at_point_349________________________________________ fusrat_plasma_dd_triton_profile349_ 9.32566863412633125e+14 -D-D_->_T_fusion_rate_at_point_350________________________________________ fusrat_plasma_dd_triton_profile350_ 9.18410935994001000e+14 -D-D_->_T_fusion_rate_at_point_351________________________________________ fusrat_plasma_dd_triton_profile351_ 9.04377439882342875e+14 -D-D_->_T_fusion_rate_at_point_352________________________________________ fusrat_plasma_dd_triton_profile352_ 8.90466734335646375e+14 -D-D_->_T_fusion_rate_at_point_353________________________________________ fusrat_plasma_dd_triton_profile353_ 8.76679163988840875e+14 -D-D_->_T_fusion_rate_at_point_354________________________________________ fusrat_plasma_dd_triton_profile354_ 8.63015058724823625e+14 -D-D_->_T_fusion_rate_at_point_355________________________________________ fusrat_plasma_dd_triton_profile355_ 8.49474733546545250e+14 -D-D_->_T_fusion_rate_at_point_356________________________________________ fusrat_plasma_dd_triton_profile356_ 8.36058488450196875e+14 -D-D_->_T_fusion_rate_at_point_357________________________________________ fusrat_plasma_dd_triton_profile357_ 8.22766608299623375e+14 -D-D_->_T_fusion_rate_at_point_358________________________________________ fusrat_plasma_dd_triton_profile358_ 8.09599362702027125e+14 -D-D_->_T_fusion_rate_at_point_359________________________________________ fusrat_plasma_dd_triton_profile359_ 7.96557005885047625e+14 -D-D_->_T_fusion_rate_at_point_360________________________________________ fusrat_plasma_dd_triton_profile360_ 7.83639776575324750e+14 -D-D_->_T_fusion_rate_at_point_361________________________________________ fusrat_plasma_dd_triton_profile361_ 7.70847897878632375e+14 -D-D_->_T_fusion_rate_at_point_362________________________________________ fusrat_plasma_dd_triton_profile362_ 7.58181577161683750e+14 -D-D_->_T_fusion_rate_at_point_363________________________________________ fusrat_plasma_dd_triton_profile363_ 7.45641005935711250e+14 -D-D_->_T_fusion_rate_at_point_364________________________________________ fusrat_plasma_dd_triton_profile364_ 7.33226359741934375e+14 -D-D_->_T_fusion_rate_at_point_365________________________________________ fusrat_plasma_dd_triton_profile365_ 7.20937798039018625e+14 -D-D_->_T_fusion_rate_at_point_366________________________________________ fusrat_plasma_dd_triton_profile366_ 7.08775464092650750e+14 -D-D_->_T_fusion_rate_at_point_367________________________________________ fusrat_plasma_dd_triton_profile367_ 6.96739484867339000e+14 -D-D_->_T_fusion_rate_at_point_368________________________________________ fusrat_plasma_dd_triton_profile368_ 6.84829970920570500e+14 -D-D_->_T_fusion_rate_at_point_369________________________________________ fusrat_plasma_dd_triton_profile369_ 6.73047016299463000e+14 -D-D_->_T_fusion_rate_at_point_370________________________________________ fusrat_plasma_dd_triton_profile370_ 6.61390698440019250e+14 -D-D_->_T_fusion_rate_at_point_371________________________________________ fusrat_plasma_dd_triton_profile371_ 6.49861078069158375e+14 -D-D_->_T_fusion_rate_at_point_372________________________________________ fusrat_plasma_dd_triton_profile372_ 6.38458199109628125e+14 -D-D_->_T_fusion_rate_at_point_373________________________________________ fusrat_plasma_dd_triton_profile373_ 6.27182088587991000e+14 -D-D_->_T_fusion_rate_at_point_374________________________________________ fusrat_plasma_dd_triton_profile374_ 6.16032756545795500e+14 -D-D_->_T_fusion_rate_at_point_375________________________________________ fusrat_plasma_dd_triton_profile375_ 6.05010195954129750e+14 -D-D_->_T_fusion_rate_at_point_376________________________________________ fusrat_plasma_dd_triton_profile376_ 5.94114382631699375e+14 -D-D_->_T_fusion_rate_at_point_377________________________________________ fusrat_plasma_dd_triton_profile377_ 5.83345275166614625e+14 -D-D_->_T_fusion_rate_at_point_378________________________________________ fusrat_plasma_dd_triton_profile378_ 5.72702814842058500e+14 -D-D_->_T_fusion_rate_at_point_379________________________________________ fusrat_plasma_dd_triton_profile379_ 5.62186925566032438e+14 -D-D_->_T_fusion_rate_at_point_380________________________________________ fusrat_plasma_dd_triton_profile380_ 5.51797513805349375e+14 -D-D_->_T_fusion_rate_at_point_381________________________________________ fusrat_plasma_dd_triton_profile381_ 5.41534468524111312e+14 -D-D_->_T_fusion_rate_at_point_382________________________________________ fusrat_plasma_dd_triton_profile382_ 5.31397661126832312e+14 -D-D_->_T_fusion_rate_at_point_383________________________________________ fusrat_plasma_dd_triton_profile383_ 5.21386945406463438e+14 -D-D_->_T_fusion_rate_at_point_384________________________________________ fusrat_plasma_dd_triton_profile384_ 5.11502157497510188e+14 -D-D_->_T_fusion_rate_at_point_385________________________________________ fusrat_plasma_dd_triton_profile385_ 5.01743115834503250e+14 -D-D_->_T_fusion_rate_at_point_386________________________________________ fusrat_plasma_dd_triton_profile386_ 4.92109621116033062e+14 -D-D_->_T_fusion_rate_at_point_387________________________________________ fusrat_plasma_dd_triton_profile387_ 4.82601456274622688e+14 -D-D_->_T_fusion_rate_at_point_388________________________________________ fusrat_plasma_dd_triton_profile388_ 4.73218386452685125e+14 -D-D_->_T_fusion_rate_at_point_389________________________________________ fusrat_plasma_dd_triton_profile389_ 4.63960158984838875e+14 -D-D_->_T_fusion_rate_at_point_390________________________________________ fusrat_plasma_dd_triton_profile390_ 4.54826503386857562e+14 -D-D_->_T_fusion_rate_at_point_391________________________________________ fusrat_plasma_dd_triton_profile391_ 4.45817131351560438e+14 -D-D_->_T_fusion_rate_at_point_392________________________________________ fusrat_plasma_dd_triton_profile392_ 4.36931736751922438e+14 -D-D_->_T_fusion_rate_at_point_393________________________________________ fusrat_plasma_dd_triton_profile393_ 4.28169995651744875e+14 -D-D_->_T_fusion_rate_at_point_394________________________________________ fusrat_plasma_dd_triton_profile394_ 4.19531566324210000e+14 -D-D_->_T_fusion_rate_at_point_395________________________________________ fusrat_plasma_dd_triton_profile395_ 4.11016089278648062e+14 -D-D_->_T_fusion_rate_at_point_396________________________________________ fusrat_plasma_dd_triton_profile396_ 4.02623187295905375e+14 -D-D_->_T_fusion_rate_at_point_397________________________________________ fusrat_plasma_dd_triton_profile397_ 3.94352465472666375e+14 -D-D_->_T_fusion_rate_at_point_398________________________________________ fusrat_plasma_dd_triton_profile398_ 3.86203511275130125e+14 -D-D_->_T_fusion_rate_at_point_399________________________________________ fusrat_plasma_dd_triton_profile399_ 3.78175894602462938e+14 -D-D_->_T_fusion_rate_at_point_400________________________________________ fusrat_plasma_dd_triton_profile400_ 3.70269167860441812e+14 -D-D_->_T_fusion_rate_at_point_401________________________________________ fusrat_plasma_dd_triton_profile401_ 3.62482866045763000e+14 -D-D_->_T_fusion_rate_at_point_402________________________________________ fusrat_plasma_dd_triton_profile402_ 3.54816506841474312e+14 -D-D_->_T_fusion_rate_at_point_403________________________________________ fusrat_plasma_dd_triton_profile403_ 3.47269590724048812e+14 -D-D_->_T_fusion_rate_at_point_404________________________________________ fusrat_plasma_dd_triton_profile404_ 3.39841601082620188e+14 -D-D_->_T_fusion_rate_at_point_405________________________________________ fusrat_plasma_dd_triton_profile405_ 3.32532004350947562e+14 -D-D_->_T_fusion_rate_at_point_406________________________________________ fusrat_plasma_dd_triton_profile406_ 3.25340250152696062e+14 -D-D_->_T_fusion_rate_at_point_407________________________________________ fusrat_plasma_dd_triton_profile407_ 3.18265771460667562e+14 -D-D_->_T_fusion_rate_at_point_408________________________________________ fusrat_plasma_dd_triton_profile408_ 3.11307984770639750e+14 -D-D_->_T_fusion_rate_at_point_409________________________________________ fusrat_plasma_dd_triton_profile409_ 3.04466290290541875e+14 -D-D_->_T_fusion_rate_at_point_410________________________________________ fusrat_plasma_dd_triton_profile410_ 2.97740072145702438e+14 -D-D_->_T_fusion_rate_at_point_411________________________________________ fusrat_plasma_dd_triton_profile411_ 2.91128698601000250e+14 -D-D_->_T_fusion_rate_at_point_412________________________________________ fusrat_plasma_dd_triton_profile412_ 2.84631522300770250e+14 -D-D_->_T_fusion_rate_at_point_413________________________________________ fusrat_plasma_dd_triton_profile413_ 2.78247880527414625e+14 -D-D_->_T_fusion_rate_at_point_414________________________________________ fusrat_plasma_dd_triton_profile414_ 2.71977095479709781e+14 -D-D_->_T_fusion_rate_at_point_415________________________________________ fusrat_plasma_dd_triton_profile415_ 2.65818474571902438e+14 -D-D_->_T_fusion_rate_at_point_416________________________________________ fusrat_plasma_dd_triton_profile416_ 2.59771310754775062e+14 -D-D_->_T_fusion_rate_at_point_417________________________________________ fusrat_plasma_dd_triton_profile417_ 2.53834882859948094e+14 -D-D_->_T_fusion_rate_at_point_418________________________________________ fusrat_plasma_dd_triton_profile418_ 2.48008455968818844e+14 -D-D_->_T_fusion_rate_at_point_419________________________________________ fusrat_plasma_dd_triton_profile419_ 2.42291281807657969e+14 -D-D_->_T_fusion_rate_at_point_420________________________________________ fusrat_plasma_dd_triton_profile420_ 2.36682599170525094e+14 -D-D_->_T_fusion_rate_at_point_421________________________________________ fusrat_plasma_dd_triton_profile421_ 2.31181634371841562e+14 -D-D_->_T_fusion_rate_at_point_422________________________________________ fusrat_plasma_dd_triton_profile422_ 2.25787601730638031e+14 -D-D_->_T_fusion_rate_at_point_423________________________________________ fusrat_plasma_dd_triton_profile423_ 2.20499704088717656e+14 -D-D_->_T_fusion_rate_at_point_424________________________________________ fusrat_plasma_dd_triton_profile424_ 2.15317133365208875e+14 -D-D_->_T_fusion_rate_at_point_425________________________________________ fusrat_plasma_dd_triton_profile425_ 2.10239071150290000e+14 -D-D_->_T_fusion_rate_at_point_426________________________________________ fusrat_plasma_dd_triton_profile426_ 2.05264689341157375e+14 -D-D_->_T_fusion_rate_at_point_427________________________________________ fusrat_plasma_dd_triton_profile427_ 2.00393150823718062e+14 -D-D_->_T_fusion_rate_at_point_428________________________________________ fusrat_plasma_dd_triton_profile428_ 1.95623610203906000e+14 -D-D_->_T_fusion_rate_at_point_429________________________________________ fusrat_plasma_dd_triton_profile429_ 1.90955214593026625e+14 -D-D_->_T_fusion_rate_at_point_430________________________________________ fusrat_plasma_dd_triton_profile430_ 1.86387104452128750e+14 -D-D_->_T_fusion_rate_at_point_431________________________________________ fusrat_plasma_dd_triton_profile431_ 1.81918414501089562e+14 -D-D_->_T_fusion_rate_at_point_432________________________________________ fusrat_plasma_dd_triton_profile432_ 1.77548274698904250e+14 -D-D_->_T_fusion_rate_at_point_433________________________________________ fusrat_plasma_dd_triton_profile433_ 1.73275811302627250e+14 -D-D_->_T_fusion_rate_at_point_434________________________________________ fusrat_plasma_dd_triton_profile434_ 1.69100148013534469e+14 -D-D_->_T_fusion_rate_at_point_435________________________________________ fusrat_plasma_dd_triton_profile435_ 1.65020407220408531e+14 -D-D_->_T_fusion_rate_at_point_436________________________________________ fusrat_plasma_dd_triton_profile436_ 1.61035711351447094e+14 -D-D_->_T_fusion_rate_at_point_437________________________________________ fusrat_plasma_dd_triton_profile437_ 1.57145184348192125e+14 -D-D_->_T_fusion_rate_at_point_438________________________________________ fusrat_plasma_dd_triton_profile438_ 1.53347953277174812e+14 -D-D_->_T_fusion_rate_at_point_439________________________________________ fusrat_plasma_dd_triton_profile439_ 1.49643150097733906e+14 -D-D_->_T_fusion_rate_at_point_440________________________________________ fusrat_plasma_dd_triton_profile440_ 1.46029913607844438e+14 -D-D_->_T_fusion_rate_at_point_441________________________________________ fusrat_plasma_dd_triton_profile441_ 1.42507391593886625e+14 -D-D_->_T_fusion_rate_at_point_442________________________________________ fusrat_plasma_dd_triton_profile442_ 1.39074743215365719e+14 -D-D_->_T_fusion_rate_at_point_443________________________________________ fusrat_plasma_dd_triton_profile443_ 1.35731141661824156e+14 -D-D_->_T_fusion_rate_at_point_444________________________________________ fusrat_plasma_dd_triton_profile444_ 1.32475777127010172e+14 -D-D_->_T_fusion_rate_at_point_445________________________________________ fusrat_plasma_dd_triton_profile445_ 1.29307860155107125e+14 -D-D_->_T_fusion_rate_at_point_446________________________________________ fusrat_plasma_dd_triton_profile446_ 1.26226625426230578e+14 -D-D_->_T_fusion_rate_at_point_447________________________________________ fusrat_plasma_dd_triton_profile447_ 1.23231336064143391e+14 -D-D_->_T_fusion_rate_at_point_448________________________________________ fusrat_plasma_dd_triton_profile448_ 1.20321288569436531e+14 -D-D_->_T_fusion_rate_at_point_449________________________________________ fusrat_plasma_dd_triton_profile449_ 1.17495818507801000e+14 -D-D_->_T_fusion_rate_at_point_450________________________________________ fusrat_plasma_dd_triton_profile450_ 1.14754307117648953e+14 -D-D_->_T_fusion_rate_at_point_451________________________________________ fusrat_plasma_dd_triton_profile451_ 1.12096189047378703e+14 -D-D_->_T_fusion_rate_at_point_452________________________________________ fusrat_plasma_dd_triton_profile452_ 1.09520961494528469e+14 -D-D_->_T_fusion_rate_at_point_453________________________________________ fusrat_plasma_dd_triton_profile453_ 1.07028195103613406e+14 -D-D_->_T_fusion_rate_at_point_454________________________________________ fusrat_plasma_dd_triton_profile454_ 1.04617547096615266e+14 -D-D_->_T_fusion_rate_at_point_455________________________________________ fusrat_plasma_dd_triton_profile455_ 1.02288777275244969e+14 -D-D_->_T_fusion_rate_at_point_456________________________________________ fusrat_plasma_dd_triton_profile456_ 1.00041767771369094e+14 -D-D_->_T_fusion_rate_at_point_457________________________________________ fusrat_plasma_dd_triton_profile457_ 9.78765477701075000e+13 -D-D_->_T_fusion_rate_at_point_458________________________________________ fusrat_plasma_dd_triton_profile458_ 9.57933249532992031e+13 -D-D_->_T_fusion_rate_at_point_459________________________________________ fusrat_plasma_dd_triton_profile459_ 9.37925262189810000e+13 -D-D_->_T_fusion_rate_at_point_460________________________________________ fusrat_plasma_dd_triton_profile460_ 9.18748515199090781e+13 -D-D_->_T_fusion_rate_at_point_461________________________________________ fusrat_plasma_dd_triton_profile461_ 9.00413467912414375e+13 -D-D_->_T_fusion_rate_at_point_462________________________________________ fusrat_plasma_dd_triton_profile462_ 8.82935056054448438e+13 -D-D_->_T_fusion_rate_at_point_463________________________________________ fusrat_plasma_dd_triton_profile463_ 8.66334158486766875e+13 -D-D_->_T_fusion_rate_at_point_464________________________________________ fusrat_plasma_dd_triton_profile464_ 8.50639805674992344e+13 -D-D_->_T_fusion_rate_at_point_465________________________________________ fusrat_plasma_dd_triton_profile465_ 8.35892689682014688e+13 -D-D_->_T_fusion_rate_at_point_466________________________________________ fusrat_plasma_dd_triton_profile466_ 8.22151154911323594e+13 -D-D_->_T_fusion_rate_at_point_467________________________________________ fusrat_plasma_dd_triton_profile467_ 8.09502487506838906e+13 -D-D_->_T_fusion_rate_at_point_468________________________________________ fusrat_plasma_dd_triton_profile468_ 7.98087612703649219e+13 -D-D_->_T_fusion_rate_at_point_469________________________________________ fusrat_plasma_dd_triton_profile469_ 7.88171206606686719e+13 -D-D_->_T_fusion_rate_at_point_470________________________________________ fusrat_plasma_dd_triton_profile470_ 7.80576250249509688e+13 -D-D_->_T_fusion_rate_at_point_471________________________________________ fusrat_plasma_dd_triton_profile471_ 6.87991457755248203e+13 -D-D_->_T_fusion_rate_at_point_472________________________________________ fusrat_plasma_dd_triton_profile472_ 6.03287333485401016e+13 -D-D_->_T_fusion_rate_at_point_473________________________________________ fusrat_plasma_dd_triton_profile473_ 5.26087477043695000e+13 -D-D_->_T_fusion_rate_at_point_474________________________________________ fusrat_plasma_dd_triton_profile474_ 4.56017099216748828e+13 -D-D_->_T_fusion_rate_at_point_475________________________________________ fusrat_plasma_dd_triton_profile475_ 3.92703181078523594e+13 -D-D_->_T_fusion_rate_at_point_476________________________________________ fusrat_plasma_dd_triton_profile476_ 3.35774653039579609e+13 -D-D_->_T_fusion_rate_at_point_477________________________________________ fusrat_plasma_dd_triton_profile477_ 2.84862597555669219e+13 -D-D_->_T_fusion_rate_at_point_478________________________________________ fusrat_plasma_dd_triton_profile478_ 2.39600480072986484e+13 -D-D_->_T_fusion_rate_at_point_479________________________________________ fusrat_plasma_dd_triton_profile479_ 1.99624413875788867e+13 -D-D_->_T_fusion_rate_at_point_480________________________________________ fusrat_plasma_dd_triton_profile480_ 1.64573465879320137e+13 -D-D_->_T_fusion_rate_at_point_481________________________________________ fusrat_plasma_dd_triton_profile481_ 1.34090012158209004e+13 -D-D_->_T_fusion_rate_at_point_482________________________________________ fusrat_plasma_dd_triton_profile482_ 1.07820154221733262e+13 -D-D_->_T_fusion_rate_at_point_483________________________________________ fusrat_plasma_dd_triton_profile483_ 8.54142098742457617e+12 -D-D_->_T_fusion_rate_at_point_484________________________________________ fusrat_plasma_dd_triton_profile484_ 6.65272960962937402e+12 -D-D_->_T_fusion_rate_at_point_485________________________________________ fusrat_plasma_dd_triton_profile485_ 5.08200259499715234e+12 -D-D_->_T_fusion_rate_at_point_486________________________________________ fusrat_plasma_dd_triton_profile486_ 3.79593472839732568e+12 -D-D_->_T_fusion_rate_at_point_487________________________________________ fusrat_plasma_dd_triton_profile487_ 2.76195582376584814e+12 -D-D_->_T_fusion_rate_at_point_488________________________________________ fusrat_plasma_dd_triton_profile488_ 1.94835434309386670e+12 -D-D_->_T_fusion_rate_at_point_489________________________________________ fusrat_plasma_dd_triton_profile489_ 1.32442853322553101e+12 -D-D_->_T_fusion_rate_at_point_490________________________________________ fusrat_plasma_dd_triton_profile490_ 8.60671724929821289e+11 -D-D_->_T_fusion_rate_at_point_491________________________________________ fusrat_plasma_dd_triton_profile491_ 5.28999632149840088e+11 -D-D_->_T_fusion_rate_at_point_492________________________________________ fusrat_plasma_dd_triton_profile492_ 3.03028327086924500e+11 -D-D_->_T_fusion_rate_at_point_493________________________________________ fusrat_plasma_dd_triton_profile493_ 1.58411236896574646e+11 -D-D_->_T_fusion_rate_at_point_494________________________________________ fusrat_plasma_dd_triton_profile494_ 7.32402598457300873e+10 -D-D_->_T_fusion_rate_at_point_495________________________________________ fusrat_plasma_dd_triton_profile495_ 2.85063235663972282e+10 -D-D_->_T_fusion_rate_at_point_496________________________________________ fusrat_plasma_dd_triton_profile496_ 8.59134259353750038e+09 -D-D_->_T_fusion_rate_at_point_497________________________________________ fusrat_plasma_dd_triton_profile497_ 1.71408681223409510e+09 -D-D_->_T_fusion_rate_at_point_498________________________________________ fusrat_plasma_dd_triton_profile498_ 1.60653212249471605e+08 -D-D_->_T_fusion_rate_at_point_499________________________________________ fusrat_plasma_dd_triton_profile499_ 2.65450094152898202e+06 -D-D_->_T_fusion_rate_at_point_500________________________________________ fusrat_plasma_dd_triton_profile500_ 3.86654838447298275e+01 -D-D_->_3He_fusion_rate_at_point_0________________________________________ fusrat_plasma_dd_helion_profile0_ 7.44868685464361500e+15 -D-D_->_3He_fusion_rate_at_point_1________________________________________ fusrat_plasma_dd_helion_profile1_ 7.44859390129149900e+15 -D-D_->_3He_fusion_rate_at_point_2________________________________________ fusrat_plasma_dd_helion_profile2_ 7.44831504598270500e+15 -D-D_->_3He_fusion_rate_at_point_3________________________________________ fusrat_plasma_dd_helion_profile3_ 7.44785030295961100e+15 -D-D_->_3He_fusion_rate_at_point_4________________________________________ fusrat_plasma_dd_helion_profile4_ 7.44719969595893700e+15 -D-D_->_3He_fusion_rate_at_point_5________________________________________ fusrat_plasma_dd_helion_profile5_ 7.44636325821062700e+15 -D-D_->_3He_fusion_rate_at_point_6________________________________________ fusrat_plasma_dd_helion_profile6_ 7.44534103243661100e+15 -D-D_->_3He_fusion_rate_at_point_7________________________________________ fusrat_plasma_dd_helion_profile7_ 7.44413307084892900e+15 -D-D_->_3He_fusion_rate_at_point_8________________________________________ fusrat_plasma_dd_helion_profile8_ 7.44273943514759700e+15 -D-D_->_3He_fusion_rate_at_point_9________________________________________ fusrat_plasma_dd_helion_profile9_ 7.44116019651805200e+15 -D-D_->_3He_fusion_rate_at_point_10_______________________________________ fusrat_plasma_dd_helion_profile10_ 7.43939543562818800e+15 -D-D_->_3He_fusion_rate_at_point_11_______________________________________ fusrat_plasma_dd_helion_profile11_ 7.43744524262501700e+15 -D-D_->_3He_fusion_rate_at_point_12_______________________________________ fusrat_plasma_dd_helion_profile12_ 7.43530971713094300e+15 -D-D_->_3He_fusion_rate_at_point_13_______________________________________ fusrat_plasma_dd_helion_profile13_ 7.43298896823956300e+15 -D-D_->_3He_fusion_rate_at_point_14_______________________________________ fusrat_plasma_dd_helion_profile14_ 7.43048311451118200e+15 -D-D_->_3He_fusion_rate_at_point_15_______________________________________ fusrat_plasma_dd_helion_profile15_ 7.42779228396791800e+15 -D-D_->_3He_fusion_rate_at_point_16_______________________________________ fusrat_plasma_dd_helion_profile16_ 7.42491661408829000e+15 -D-D_->_3He_fusion_rate_at_point_17_______________________________________ fusrat_plasma_dd_helion_profile17_ 7.42185625180159100e+15 -D-D_->_3He_fusion_rate_at_point_18_______________________________________ fusrat_plasma_dd_helion_profile18_ 7.41861135348173700e+15 -D-D_->_3He_fusion_rate_at_point_19_______________________________________ fusrat_plasma_dd_helion_profile19_ 7.41518208494077100e+15 -D-D_->_3He_fusion_rate_at_point_20_______________________________________ fusrat_plasma_dd_helion_profile20_ 7.41156862142197000e+15 -D-D_->_3He_fusion_rate_at_point_21_______________________________________ fusrat_plasma_dd_helion_profile21_ 7.40777114759253300e+15 -D-D_->_3He_fusion_rate_at_point_22_______________________________________ fusrat_plasma_dd_helion_profile22_ 7.40378985753592200e+15 -D-D_->_3He_fusion_rate_at_point_23_______________________________________ fusrat_plasma_dd_helion_profile23_ 7.39962495474377300e+15 -D-D_->_3He_fusion_rate_at_point_24_______________________________________ fusrat_plasma_dd_helion_profile24_ 7.39527665210737400e+15 -D-D_->_3He_fusion_rate_at_point_25_______________________________________ fusrat_plasma_dd_helion_profile25_ 7.39074517190884900e+15 -D-D_->_3He_fusion_rate_at_point_26_______________________________________ fusrat_plasma_dd_helion_profile26_ 7.38603074581189400e+15 -D-D_->_3He_fusion_rate_at_point_27_______________________________________ fusrat_plasma_dd_helion_profile27_ 7.38113361485205400e+15 -D-D_->_3He_fusion_rate_at_point_28_______________________________________ fusrat_plasma_dd_helion_profile28_ 7.37605402942670100e+15 -D-D_->_3He_fusion_rate_at_point_29_______________________________________ fusrat_plasma_dd_helion_profile29_ 7.37079224928459800e+15 -D-D_->_3He_fusion_rate_at_point_30_______________________________________ fusrat_plasma_dd_helion_profile30_ 7.36534854351501000e+15 -D-D_->_3He_fusion_rate_at_point_31_______________________________________ fusrat_plasma_dd_helion_profile31_ 7.35972319053648300e+15 -D-D_->_3He_fusion_rate_at_point_32_______________________________________ fusrat_plasma_dd_helion_profile32_ 7.35391647808521100e+15 -D-D_->_3He_fusion_rate_at_point_33_______________________________________ fusrat_plasma_dd_helion_profile33_ 7.34792870320295200e+15 -D-D_->_3He_fusion_rate_at_point_34_______________________________________ fusrat_plasma_dd_helion_profile34_ 7.34176017222463800e+15 -D-D_->_3He_fusion_rate_at_point_35_______________________________________ fusrat_plasma_dd_helion_profile35_ 7.33541120076555000e+15 -D-D_->_3He_fusion_rate_at_point_36_______________________________________ fusrat_plasma_dd_helion_profile36_ 7.32888211370805000e+15 -D-D_->_3He_fusion_rate_at_point_37_______________________________________ fusrat_plasma_dd_helion_profile37_ 7.32217324518798100e+15 -D-D_->_3He_fusion_rate_at_point_38_______________________________________ fusrat_plasma_dd_helion_profile38_ 7.31528493858063300e+15 -D-D_->_3He_fusion_rate_at_point_39_______________________________________ fusrat_plasma_dd_helion_profile39_ 7.30821754648636200e+15 -D-D_->_3He_fusion_rate_at_point_40_______________________________________ fusrat_plasma_dd_helion_profile40_ 7.30097143071573700e+15 -D-D_->_3He_fusion_rate_at_point_41_______________________________________ fusrat_plasma_dd_helion_profile41_ 7.29354696227433500e+15 -D-D_->_3He_fusion_rate_at_point_42_______________________________________ fusrat_plasma_dd_helion_profile42_ 7.28594452134713800e+15 -D-D_->_3He_fusion_rate_at_point_43_______________________________________ fusrat_plasma_dd_helion_profile43_ 7.27816449728250700e+15 -D-D_->_3He_fusion_rate_at_point_44_______________________________________ fusrat_plasma_dd_helion_profile44_ 7.27020728857582300e+15 -D-D_->_3He_fusion_rate_at_point_45_______________________________________ fusrat_plasma_dd_helion_profile45_ 7.26207330285263100e+15 -D-D_->_3He_fusion_rate_at_point_46_______________________________________ fusrat_plasma_dd_helion_profile46_ 7.25376295685143500e+15 -D-D_->_3He_fusion_rate_at_point_47_______________________________________ fusrat_plasma_dd_helion_profile47_ 7.24527667640616600e+15 -D-D_->_3He_fusion_rate_at_point_48_______________________________________ fusrat_plasma_dd_helion_profile48_ 7.23661489642808500e+15 -D-D_->_3He_fusion_rate_at_point_49_______________________________________ fusrat_plasma_dd_helion_profile49_ 7.22777806088748500e+15 -D-D_->_3He_fusion_rate_at_point_50_______________________________________ fusrat_plasma_dd_helion_profile50_ 7.21876662279478500e+15 -D-D_->_3He_fusion_rate_at_point_51_______________________________________ fusrat_plasma_dd_helion_profile51_ 7.20958104418142600e+15 -D-D_->_3He_fusion_rate_at_point_52_______________________________________ fusrat_plasma_dd_helion_profile52_ 7.20022179608023700e+15 -D-D_->_3He_fusion_rate_at_point_53_______________________________________ fusrat_plasma_dd_helion_profile53_ 7.19068935850537800e+15 -D-D_->_3He_fusion_rate_at_point_54_______________________________________ fusrat_plasma_dd_helion_profile54_ 7.18098422043208900e+15 -D-D_->_3He_fusion_rate_at_point_55_______________________________________ fusrat_plasma_dd_helion_profile55_ 7.17110687977573000e+15 -D-D_->_3He_fusion_rate_at_point_56_______________________________________ fusrat_plasma_dd_helion_profile56_ 7.16105784337068100e+15 -D-D_->_3He_fusion_rate_at_point_57_______________________________________ fusrat_plasma_dd_helion_profile57_ 7.15083762694870100e+15 -D-D_->_3He_fusion_rate_at_point_58_______________________________________ fusrat_plasma_dd_helion_profile58_ 7.14044675511696200e+15 -D-D_->_3He_fusion_rate_at_point_59_______________________________________ fusrat_plasma_dd_helion_profile59_ 7.12988576133561000e+15 -D-D_->_3He_fusion_rate_at_point_60_______________________________________ fusrat_plasma_dd_helion_profile60_ 7.11915518789494600e+15 -D-D_->_3He_fusion_rate_at_point_61_______________________________________ fusrat_plasma_dd_helion_profile61_ 7.10825558589228700e+15 -D-D_->_3He_fusion_rate_at_point_62_______________________________________ fusrat_plasma_dd_helion_profile62_ 7.09718751520829400e+15 -D-D_->_3He_fusion_rate_at_point_63_______________________________________ fusrat_plasma_dd_helion_profile63_ 7.08595154448297900e+15 -D-D_->_3He_fusion_rate_at_point_64_______________________________________ fusrat_plasma_dd_helion_profile64_ 7.07454825109130400e+15 -D-D_->_3He_fusion_rate_at_point_65_______________________________________ fusrat_plasma_dd_helion_profile65_ 7.06297822111833300e+15 -D-D_->_3He_fusion_rate_at_point_66_______________________________________ fusrat_plasma_dd_helion_profile66_ 7.05124204933404400e+15 -D-D_->_3He_fusion_rate_at_point_67_______________________________________ fusrat_plasma_dd_helion_profile67_ 7.03934033916766300e+15 -D-D_->_3He_fusion_rate_at_point_68_______________________________________ fusrat_plasma_dd_helion_profile68_ 7.02727370268169600e+15 -D-D_->_3He_fusion_rate_at_point_69_______________________________________ fusrat_plasma_dd_helion_profile69_ 7.01504276054540500e+15 -D-D_->_3He_fusion_rate_at_point_70_______________________________________ fusrat_plasma_dd_helion_profile70_ 7.00264814200803900e+15 -D-D_->_3He_fusion_rate_at_point_71_______________________________________ fusrat_plasma_dd_helion_profile71_ 6.99009048487157200e+15 -D-D_->_3He_fusion_rate_at_point_72_______________________________________ fusrat_plasma_dd_helion_profile72_ 6.97737043546305200e+15 -D-D_->_3He_fusion_rate_at_point_73_______________________________________ fusrat_plasma_dd_helion_profile73_ 6.96448864860651700e+15 -D-D_->_3He_fusion_rate_at_point_74_______________________________________ fusrat_plasma_dd_helion_profile74_ 6.95144578759456900e+15 -D-D_->_3He_fusion_rate_at_point_75_______________________________________ fusrat_plasma_dd_helion_profile75_ 6.93824252415948100e+15 -D-D_->_3He_fusion_rate_at_point_76_______________________________________ fusrat_plasma_dd_helion_profile76_ 6.92487953844395400e+15 -D-D_->_3He_fusion_rate_at_point_77_______________________________________ fusrat_plasma_dd_helion_profile77_ 6.91135751897139300e+15 -D-D_->_3He_fusion_rate_at_point_78_______________________________________ fusrat_plasma_dd_helion_profile78_ 6.89767716261580300e+15 -D-D_->_3He_fusion_rate_at_point_79_______________________________________ fusrat_plasma_dd_helion_profile79_ 6.88383917457139300e+15 -D-D_->_3He_fusion_rate_at_point_80_______________________________________ fusrat_plasma_dd_helion_profile80_ 6.86984426832149800e+15 -D-D_->_3He_fusion_rate_at_point_81_______________________________________ fusrat_plasma_dd_helion_profile81_ 6.85569316560743200e+15 -D-D_->_3He_fusion_rate_at_point_82_______________________________________ fusrat_plasma_dd_helion_profile82_ 6.84138659639663800e+15 -D-D_->_3He_fusion_rate_at_point_83_______________________________________ fusrat_plasma_dd_helion_profile83_ 6.82692529885061800e+15 -D-D_->_3He_fusion_rate_at_point_84_______________________________________ fusrat_plasma_dd_helion_profile84_ 6.81231001929238400e+15 -D-D_->_3He_fusion_rate_at_point_85_______________________________________ fusrat_plasma_dd_helion_profile85_ 6.79754151217346300e+15 -D-D_->_3He_fusion_rate_at_point_86_______________________________________ fusrat_plasma_dd_helion_profile86_ 6.78262054004056300e+15 -D-D_->_3He_fusion_rate_at_point_87_______________________________________ fusrat_plasma_dd_helion_profile87_ 6.76754787350175800e+15 -D-D_->_3He_fusion_rate_at_point_88_______________________________________ fusrat_plasma_dd_helion_profile88_ 6.75232429119238600e+15 -D-D_->_3He_fusion_rate_at_point_89_______________________________________ fusrat_plasma_dd_helion_profile89_ 6.73695057974030600e+15 -D-D_->_3He_fusion_rate_at_point_90_______________________________________ fusrat_plasma_dd_helion_profile90_ 6.72142753373101500e+15 -D-D_->_3He_fusion_rate_at_point_91_______________________________________ fusrat_plasma_dd_helion_profile91_ 6.70575595567214900e+15 -D-D_->_3He_fusion_rate_at_point_92_______________________________________ fusrat_plasma_dd_helion_profile92_ 6.68993665595764700e+15 -D-D_->_3He_fusion_rate_at_point_93_______________________________________ fusrat_plasma_dd_helion_profile93_ 6.67397045283151000e+15 -D-D_->_3He_fusion_rate_at_point_94_______________________________________ fusrat_plasma_dd_helion_profile94_ 6.65785817235113700e+15 -D-D_->_3He_fusion_rate_at_point_95_______________________________________ fusrat_plasma_dd_helion_profile95_ 6.64160064835020500e+15 -D-D_->_3He_fusion_rate_at_point_96_______________________________________ fusrat_plasma_dd_helion_profile96_ 6.62519872240121600e+15 -D-D_->_3He_fusion_rate_at_point_97_______________________________________ fusrat_plasma_dd_helion_profile97_ 6.60865324377753000e+15 -D-D_->_3He_fusion_rate_at_point_98_______________________________________ fusrat_plasma_dd_helion_profile98_ 6.59196506941507900e+15 -D-D_->_3He_fusion_rate_at_point_99_______________________________________ fusrat_plasma_dd_helion_profile99_ 6.57513506387358700e+15 -D-D_->_3He_fusion_rate_at_point_100______________________________________ fusrat_plasma_dd_helion_profile100_ 6.55816409929741800e+15 -D-D_->_3He_fusion_rate_at_point_101______________________________________ fusrat_plasma_dd_helion_profile101_ 6.54105305537597000e+15 -D-D_->_3He_fusion_rate_at_point_102______________________________________ fusrat_plasma_dd_helion_profile102_ 6.52380281930370900e+15 -D-D_->_3He_fusion_rate_at_point_103______________________________________ fusrat_plasma_dd_helion_profile103_ 6.50641428573971000e+15 -D-D_->_3He_fusion_rate_at_point_104______________________________________ fusrat_plasma_dd_helion_profile104_ 6.48888835676683300e+15 -D-D_->_3He_fusion_rate_at_point_105______________________________________ fusrat_plasma_dd_helion_profile105_ 6.47122594185047100e+15 -D-D_->_3He_fusion_rate_at_point_106______________________________________ fusrat_plasma_dd_helion_profile106_ 6.45342795779684300e+15 -D-D_->_3He_fusion_rate_at_point_107______________________________________ fusrat_plasma_dd_helion_profile107_ 6.43549532871091900e+15 -D-D_->_3He_fusion_rate_at_point_108______________________________________ fusrat_plasma_dd_helion_profile108_ 6.41742898595387300e+15 -D-D_->_3He_fusion_rate_at_point_109______________________________________ fusrat_plasma_dd_helion_profile109_ 6.39922986810014700e+15 -D-D_->_3He_fusion_rate_at_point_110______________________________________ fusrat_plasma_dd_helion_profile110_ 6.38089892089409400e+15 -D-D_->_3He_fusion_rate_at_point_111______________________________________ fusrat_plasma_dd_helion_profile111_ 6.36243709720616300e+15 -D-D_->_3He_fusion_rate_at_point_112______________________________________ fusrat_plasma_dd_helion_profile112_ 6.34384535698869600e+15 -D-D_->_3He_fusion_rate_at_point_113______________________________________ fusrat_plasma_dd_helion_profile113_ 6.32512466723129700e+15 -D-D_->_3He_fusion_rate_at_point_114______________________________________ fusrat_plasma_dd_helion_profile114_ 6.30627600191574400e+15 -D-D_->_3He_fusion_rate_at_point_115______________________________________ fusrat_plasma_dd_helion_profile115_ 6.28730034197051500e+15 -D-D_->_3He_fusion_rate_at_point_116______________________________________ fusrat_plasma_dd_helion_profile116_ 6.26819867522489400e+15 -D-D_->_3He_fusion_rate_at_point_117______________________________________ fusrat_plasma_dd_helion_profile117_ 6.24897199636257700e+15 -D-D_->_3He_fusion_rate_at_point_118______________________________________ fusrat_plasma_dd_helion_profile118_ 6.22962130687493700e+15 -D-D_->_3He_fusion_rate_at_point_119______________________________________ fusrat_plasma_dd_helion_profile119_ 6.21014761501381500e+15 -D-D_->_3He_fusion_rate_at_point_120______________________________________ fusrat_plasma_dd_helion_profile120_ 6.19055193574390500e+15 -D-D_->_3He_fusion_rate_at_point_121______________________________________ fusrat_plasma_dd_helion_profile121_ 6.17083529069469400e+15 -D-D_->_3He_fusion_rate_at_point_122______________________________________ fusrat_plasma_dd_helion_profile122_ 6.15099870811196800e+15 -D-D_->_3He_fusion_rate_at_point_123______________________________________ fusrat_plasma_dd_helion_profile123_ 6.13104322280888900e+15 -D-D_->_3He_fusion_rate_at_point_124______________________________________ fusrat_plasma_dd_helion_profile124_ 6.11096987611669500e+15 -D-D_->_3He_fusion_rate_at_point_125______________________________________ fusrat_plasma_dd_helion_profile125_ 6.09077971583486600e+15 -D-D_->_3He_fusion_rate_at_point_126______________________________________ fusrat_plasma_dd_helion_profile126_ 6.07047379618094600e+15 -D-D_->_3He_fusion_rate_at_point_127______________________________________ fusrat_plasma_dd_helion_profile127_ 6.05005317773989200e+15 -D-D_->_3He_fusion_rate_at_point_128______________________________________ fusrat_plasma_dd_helion_profile128_ 6.02951892741298000e+15 -D-D_->_3He_fusion_rate_at_point_129______________________________________ fusrat_plasma_dd_helion_profile129_ 6.00887211836634100e+15 -D-D_->_3He_fusion_rate_at_point_130______________________________________ fusrat_plasma_dd_helion_profile130_ 5.98811382997896800e+15 -D-D_->_3He_fusion_rate_at_point_131______________________________________ fusrat_plasma_dd_helion_profile131_ 5.96724514779036300e+15 -D-D_->_3He_fusion_rate_at_point_132______________________________________ fusrat_plasma_dd_helion_profile132_ 5.94626716344769200e+15 -D-D_->_3He_fusion_rate_at_point_133______________________________________ fusrat_plasma_dd_helion_profile133_ 5.92518097465256300e+15 -D-D_->_3He_fusion_rate_at_point_134______________________________________ fusrat_plasma_dd_helion_profile134_ 5.90398768510730100e+15 -D-D_->_3He_fusion_rate_at_point_135______________________________________ fusrat_plasma_dd_helion_profile135_ 5.88268840446084200e+15 -D-D_->_3He_fusion_rate_at_point_136______________________________________ fusrat_plasma_dd_helion_profile136_ 5.86128424825417400e+15 -D-D_->_3He_fusion_rate_at_point_137______________________________________ fusrat_plasma_dd_helion_profile137_ 5.83977633786525500e+15 -D-D_->_3He_fusion_rate_at_point_138______________________________________ fusrat_plasma_dd_helion_profile138_ 5.81816580045369300e+15 -D-D_->_3He_fusion_rate_at_point_139______________________________________ fusrat_plasma_dd_helion_profile139_ 5.79645376890469700e+15 -D-D_->_3He_fusion_rate_at_point_140______________________________________ fusrat_plasma_dd_helion_profile140_ 5.77464138177287500e+15 -D-D_->_3He_fusion_rate_at_point_141______________________________________ fusrat_plasma_dd_helion_profile141_ 5.75272978322538200e+15 -D-D_->_3He_fusion_rate_at_point_142______________________________________ fusrat_plasma_dd_helion_profile142_ 5.73072012298474100e+15 -D-D_->_3He_fusion_rate_at_point_143______________________________________ fusrat_plasma_dd_helion_profile143_ 5.70861355627114400e+15 -D-D_->_3He_fusion_rate_at_point_144______________________________________ fusrat_plasma_dd_helion_profile144_ 5.68641124374436200e+15 -D-D_->_3He_fusion_rate_at_point_145______________________________________ fusrat_plasma_dd_helion_profile145_ 5.66411435144521600e+15 -D-D_->_3He_fusion_rate_at_point_146______________________________________ fusrat_plasma_dd_helion_profile146_ 5.64172405073649400e+15 -D-D_->_3He_fusion_rate_at_point_147______________________________________ fusrat_plasma_dd_helion_profile147_ 5.61924151824359800e+15 -D-D_->_3He_fusion_rate_at_point_148______________________________________ fusrat_plasma_dd_helion_profile148_ 5.59666793579458400e+15 -D-D_->_3He_fusion_rate_at_point_149______________________________________ fusrat_plasma_dd_helion_profile149_ 5.57400449035983800e+15 -D-D_->_3He_fusion_rate_at_point_150______________________________________ fusrat_plasma_dd_helion_profile150_ 5.55125237399128100e+15 -D-D_->_3He_fusion_rate_at_point_151______________________________________ fusrat_plasma_dd_helion_profile151_ 5.52841278376110100e+15 -D-D_->_3He_fusion_rate_at_point_152______________________________________ fusrat_plasma_dd_helion_profile152_ 5.50548692170008500e+15 -D-D_->_3He_fusion_rate_at_point_153______________________________________ fusrat_plasma_dd_helion_profile153_ 5.48247599473546000e+15 -D-D_->_3He_fusion_rate_at_point_154______________________________________ fusrat_plasma_dd_helion_profile154_ 5.45938121462826100e+15 -D-D_->_3He_fusion_rate_at_point_155______________________________________ fusrat_plasma_dd_helion_profile155_ 5.43620379791030800e+15 -D-D_->_3He_fusion_rate_at_point_156______________________________________ fusrat_plasma_dd_helion_profile156_ 5.41294496582068900e+15 -D-D_->_3He_fusion_rate_at_point_157______________________________________ fusrat_plasma_dd_helion_profile157_ 5.38960594424176900e+15 -D-D_->_3He_fusion_rate_at_point_158______________________________________ fusrat_plasma_dd_helion_profile158_ 5.36618796363479700e+15 -D-D_->_3He_fusion_rate_at_point_159______________________________________ fusrat_plasma_dd_helion_profile159_ 5.34269225897499300e+15 -D-D_->_3He_fusion_rate_at_point_160______________________________________ fusrat_plasma_dd_helion_profile160_ 5.31912006968621900e+15 -D-D_->_3He_fusion_rate_at_point_161______________________________________ fusrat_plasma_dd_helion_profile161_ 5.29547263957521800e+15 -D-D_->_3He_fusion_rate_at_point_162______________________________________ fusrat_plasma_dd_helion_profile162_ 5.27175121676527300e+15 -D-D_->_3He_fusion_rate_at_point_163______________________________________ fusrat_plasma_dd_helion_profile163_ 5.24795705362957200e+15 -D-D_->_3He_fusion_rate_at_point_164______________________________________ fusrat_plasma_dd_helion_profile164_ 5.22409140672397200e+15 -D-D_->_3He_fusion_rate_at_point_165______________________________________ fusrat_plasma_dd_helion_profile165_ 5.20015553671937400e+15 -D-D_->_3He_fusion_rate_at_point_166______________________________________ fusrat_plasma_dd_helion_profile166_ 5.17615070833362700e+15 -D-D_->_3He_fusion_rate_at_point_167______________________________________ fusrat_plasma_dd_helion_profile167_ 5.15207819026291000e+15 -D-D_->_3He_fusion_rate_at_point_168______________________________________ fusrat_plasma_dd_helion_profile168_ 5.12793925511276900e+15 -D-D_->_3He_fusion_rate_at_point_169______________________________________ fusrat_plasma_dd_helion_profile169_ 5.10373517932854400e+15 -D-D_->_3He_fusion_rate_at_point_170______________________________________ fusrat_plasma_dd_helion_profile170_ 5.07946724312543700e+15 -D-D_->_3He_fusion_rate_at_point_171______________________________________ fusrat_plasma_dd_helion_profile171_ 5.05513673041804300e+15 -D-D_->_3He_fusion_rate_at_point_172______________________________________ fusrat_plasma_dd_helion_profile172_ 5.03074492874948200e+15 -D-D_->_3He_fusion_rate_at_point_173______________________________________ fusrat_plasma_dd_helion_profile173_ 5.00629312921998100e+15 -D-D_->_3He_fusion_rate_at_point_174______________________________________ fusrat_plasma_dd_helion_profile174_ 4.98178262641505200e+15 -D-D_->_3He_fusion_rate_at_point_175______________________________________ fusrat_plasma_dd_helion_profile175_ 4.95721471833316900e+15 -D-D_->_3He_fusion_rate_at_point_176______________________________________ fusrat_plasma_dd_helion_profile176_ 4.93259070631293900e+15 -D-D_->_3He_fusion_rate_at_point_177______________________________________ fusrat_plasma_dd_helion_profile177_ 4.90791189495990600e+15 -D-D_->_3He_fusion_rate_at_point_178______________________________________ fusrat_plasma_dd_helion_profile178_ 4.88317959207270700e+15 -D-D_->_3He_fusion_rate_at_point_179______________________________________ fusrat_plasma_dd_helion_profile179_ 4.85839510856895900e+15 -D-D_->_3He_fusion_rate_at_point_180______________________________________ fusrat_plasma_dd_helion_profile180_ 4.83355975841048900e+15 -D-D_->_3He_fusion_rate_at_point_181______________________________________ fusrat_plasma_dd_helion_profile181_ 4.80867485852820200e+15 -D-D_->_3He_fusion_rate_at_point_182______________________________________ fusrat_plasma_dd_helion_profile182_ 4.78374172874640500e+15 -D-D_->_3He_fusion_rate_at_point_183______________________________________ fusrat_plasma_dd_helion_profile183_ 4.75876169170669700e+15 -D-D_->_3He_fusion_rate_at_point_184______________________________________ fusrat_plasma_dd_helion_profile184_ 4.73373607279132600e+15 -D-D_->_3He_fusion_rate_at_point_185______________________________________ fusrat_plasma_dd_helion_profile185_ 4.70866620004613900e+15 -D-D_->_3He_fusion_rate_at_point_186______________________________________ fusrat_plasma_dd_helion_profile186_ 4.68355340410296000e+15 -D-D_->_3He_fusion_rate_at_point_187______________________________________ fusrat_plasma_dd_helion_profile187_ 4.65839901810157400e+15 -D-D_->_3He_fusion_rate_at_point_188______________________________________ fusrat_plasma_dd_helion_profile188_ 4.63320437761113200e+15 -D-D_->_3He_fusion_rate_at_point_189______________________________________ fusrat_plasma_dd_helion_profile189_ 4.60797082055117200e+15 -D-D_->_3He_fusion_rate_at_point_190______________________________________ fusrat_plasma_dd_helion_profile190_ 4.58269968711206900e+15 -D-D_->_3He_fusion_rate_at_point_191______________________________________ fusrat_plasma_dd_helion_profile191_ 4.55739231967503600e+15 -D-D_->_3He_fusion_rate_at_point_192______________________________________ fusrat_plasma_dd_helion_profile192_ 4.53205006273163900e+15 -D-D_->_3He_fusion_rate_at_point_193______________________________________ fusrat_plasma_dd_helion_profile193_ 4.50667426280280400e+15 -D-D_->_3He_fusion_rate_at_point_194______________________________________ fusrat_plasma_dd_helion_profile194_ 4.48126626835733900e+15 -D-D_->_3He_fusion_rate_at_point_195______________________________________ fusrat_plasma_dd_helion_profile195_ 4.45582742972999350e+15 -D-D_->_3He_fusion_rate_at_point_196______________________________________ fusrat_plasma_dd_helion_profile196_ 4.43035909903895250e+15 -D-D_->_3He_fusion_rate_at_point_197______________________________________ fusrat_plasma_dd_helion_profile197_ 4.40486263010294350e+15 -D-D_->_3He_fusion_rate_at_point_198______________________________________ fusrat_plasma_dd_helion_profile198_ 4.37933937835773750e+15 -D-D_->_3He_fusion_rate_at_point_199______________________________________ fusrat_plasma_dd_helion_profile199_ 4.35379070077221650e+15 -D-D_->_3He_fusion_rate_at_point_200______________________________________ fusrat_plasma_dd_helion_profile200_ 4.32821795576395700e+15 -D-D_->_3He_fusion_rate_at_point_201______________________________________ fusrat_plasma_dd_helion_profile201_ 4.30262250311427350e+15 -D-D_->_3He_fusion_rate_at_point_202______________________________________ fusrat_plasma_dd_helion_profile202_ 4.27700570388276650e+15 -D-D_->_3He_fusion_rate_at_point_203______________________________________ fusrat_plasma_dd_helion_profile203_ 4.25136892032141100e+15 -D-D_->_3He_fusion_rate_at_point_204______________________________________ fusrat_plasma_dd_helion_profile204_ 4.22571351578811200e+15 -D-D_->_3He_fusion_rate_at_point_205______________________________________ fusrat_plasma_dd_helion_profile205_ 4.20004085465974800e+15 -D-D_->_3He_fusion_rate_at_point_206______________________________________ fusrat_plasma_dd_helion_profile206_ 4.17435230224473350e+15 -D-D_->_3He_fusion_rate_at_point_207______________________________________ fusrat_plasma_dd_helion_profile207_ 4.14864922469508450e+15 -D-D_->_3He_fusion_rate_at_point_208______________________________________ fusrat_plasma_dd_helion_profile208_ 4.12293298891794350e+15 -D-D_->_3He_fusion_rate_at_point_209______________________________________ fusrat_plasma_dd_helion_profile209_ 4.09720496248664000e+15 -D-D_->_3He_fusion_rate_at_point_210______________________________________ fusrat_plasma_dd_helion_profile210_ 4.07146651355121900e+15 -D-D_->_3He_fusion_rate_at_point_211______________________________________ fusrat_plasma_dd_helion_profile211_ 4.04571901074844900e+15 -D-D_->_3He_fusion_rate_at_point_212______________________________________ fusrat_plasma_dd_helion_profile212_ 4.01996382311137550e+15 -D-D_->_3He_fusion_rate_at_point_213______________________________________ fusrat_plasma_dd_helion_profile213_ 3.99420231997827000e+15 -D-D_->_3He_fusion_rate_at_point_214______________________________________ fusrat_plasma_dd_helion_profile214_ 3.96843587090118850e+15 -D-D_->_3He_fusion_rate_at_point_215______________________________________ fusrat_plasma_dd_helion_profile215_ 3.94266584555390300e+15 -D-D_->_3He_fusion_rate_at_point_216______________________________________ fusrat_plasma_dd_helion_profile216_ 3.91689361363942500e+15 -D-D_->_3He_fusion_rate_at_point_217______________________________________ fusrat_plasma_dd_helion_profile217_ 3.89112054479689450e+15 -D-D_->_3He_fusion_rate_at_point_218______________________________________ fusrat_plasma_dd_helion_profile218_ 3.86534800850809300e+15 -D-D_->_3He_fusion_rate_at_point_219______________________________________ fusrat_plasma_dd_helion_profile219_ 3.83957737400330600e+15 -D-D_->_3He_fusion_rate_at_point_220______________________________________ fusrat_plasma_dd_helion_profile220_ 3.81381001016678700e+15 -D-D_->_3He_fusion_rate_at_point_221______________________________________ fusrat_plasma_dd_helion_profile221_ 3.78804728544159700e+15 -D-D_->_3He_fusion_rate_at_point_222______________________________________ fusrat_plasma_dd_helion_profile222_ 3.76229056773402350e+15 -D-D_->_3He_fusion_rate_at_point_223______________________________________ fusrat_plasma_dd_helion_profile223_ 3.73654122431741100e+15 -D-D_->_3He_fusion_rate_at_point_224______________________________________ fusrat_plasma_dd_helion_profile224_ 3.71080062173550400e+15 -D-D_->_3He_fusion_rate_at_point_225______________________________________ fusrat_plasma_dd_helion_profile225_ 3.68507012570523700e+15 -D-D_->_3He_fusion_rate_at_point_226______________________________________ fusrat_plasma_dd_helion_profile226_ 3.65935110101906500e+15 -D-D_->_3He_fusion_rate_at_point_227______________________________________ fusrat_plasma_dd_helion_profile227_ 3.63364491144669900e+15 -D-D_->_3He_fusion_rate_at_point_228______________________________________ fusrat_plasma_dd_helion_profile228_ 3.60795291963636700e+15 -D-D_->_3He_fusion_rate_at_point_229______________________________________ fusrat_plasma_dd_helion_profile229_ 3.58227648701552550e+15 -D-D_->_3He_fusion_rate_at_point_230______________________________________ fusrat_plasma_dd_helion_profile230_ 3.55661697369107750e+15 -D-D_->_3He_fusion_rate_at_point_231______________________________________ fusrat_plasma_dd_helion_profile231_ 3.53097573834899350e+15 -D-D_->_3He_fusion_rate_at_point_232______________________________________ fusrat_plasma_dd_helion_profile232_ 3.50535413815353500e+15 -D-D_->_3He_fusion_rate_at_point_233______________________________________ fusrat_plasma_dd_helion_profile233_ 3.47975352864578950e+15 -D-D_->_3He_fusion_rate_at_point_234______________________________________ fusrat_plasma_dd_helion_profile234_ 3.45417526364181050e+15 -D-D_->_3He_fusion_rate_at_point_235______________________________________ fusrat_plasma_dd_helion_profile235_ 3.42862069513017900e+15 -D-D_->_3He_fusion_rate_at_point_236______________________________________ fusrat_plasma_dd_helion_profile236_ 3.40309117316899650e+15 -D-D_->_3He_fusion_rate_at_point_237______________________________________ fusrat_plasma_dd_helion_profile237_ 3.37758804578244050e+15 -D-D_->_3He_fusion_rate_at_point_238______________________________________ fusrat_plasma_dd_helion_profile238_ 3.35211265885671750e+15 -D-D_->_3He_fusion_rate_at_point_239______________________________________ fusrat_plasma_dd_helion_profile239_ 3.32666635603548400e+15 -D-D_->_3He_fusion_rate_at_point_240______________________________________ fusrat_plasma_dd_helion_profile240_ 3.30125047861480900e+15 -D-D_->_3He_fusion_rate_at_point_241______________________________________ fusrat_plasma_dd_helion_profile241_ 3.27586636543750900e+15 -D-D_->_3He_fusion_rate_at_point_242______________________________________ fusrat_plasma_dd_helion_profile242_ 3.25051535278703900e+15 -D-D_->_3He_fusion_rate_at_point_243______________________________________ fusrat_plasma_dd_helion_profile243_ 3.22519877428077800e+15 -D-D_->_3He_fusion_rate_at_point_244______________________________________ fusrat_plasma_dd_helion_profile244_ 3.19991796076284500e+15 -D-D_->_3He_fusion_rate_at_point_245______________________________________ fusrat_plasma_dd_helion_profile245_ 3.17467424019634050e+15 -D-D_->_3He_fusion_rate_at_point_246______________________________________ fusrat_plasma_dd_helion_profile246_ 3.14946893755508550e+15 -D-D_->_3He_fusion_rate_at_point_247______________________________________ fusrat_plasma_dd_helion_profile247_ 3.12430337471478900e+15 -D-D_->_3He_fusion_rate_at_point_248______________________________________ fusrat_plasma_dd_helion_profile248_ 3.09917887034373850e+15 -D-D_->_3He_fusion_rate_at_point_249______________________________________ fusrat_plasma_dd_helion_profile249_ 3.07409673979290650e+15 -D-D_->_3He_fusion_rate_at_point_250______________________________________ fusrat_plasma_dd_helion_profile250_ 3.04905829498555500e+15 -D-D_->_3He_fusion_rate_at_point_251______________________________________ fusrat_plasma_dd_helion_profile251_ 3.02406484430629250e+15 -D-D_->_3He_fusion_rate_at_point_252______________________________________ fusrat_plasma_dd_helion_profile252_ 2.99911769248962600e+15 -D-D_->_3He_fusion_rate_at_point_253______________________________________ fusrat_plasma_dd_helion_profile253_ 2.97421814050793250e+15 -D-D_->_3He_fusion_rate_at_point_254______________________________________ fusrat_plasma_dd_helion_profile254_ 2.94936748545896350e+15 -D-D_->_3He_fusion_rate_at_point_255______________________________________ fusrat_plasma_dd_helion_profile255_ 2.92456702045275300e+15 -D-D_->_3He_fusion_rate_at_point_256______________________________________ fusrat_plasma_dd_helion_profile256_ 2.89981803449805700e+15 -D-D_->_3He_fusion_rate_at_point_257______________________________________ fusrat_plasma_dd_helion_profile257_ 2.87512181238820150e+15 -D-D_->_3He_fusion_rate_at_point_258______________________________________ fusrat_plasma_dd_helion_profile258_ 2.85047963458647050e+15 -D-D_->_3He_fusion_rate_at_point_259______________________________________ fusrat_plasma_dd_helion_profile259_ 2.82589277711090750e+15 -D-D_->_3He_fusion_rate_at_point_260______________________________________ fusrat_plasma_dd_helion_profile260_ 2.80136251141861650e+15 -D-D_->_3He_fusion_rate_at_point_261______________________________________ fusrat_plasma_dd_helion_profile261_ 2.77689010428954300e+15 -D-D_->_3He_fusion_rate_at_point_262______________________________________ fusrat_plasma_dd_helion_profile262_ 2.75247681770969800e+15 -D-D_->_3He_fusion_rate_at_point_263______________________________________ fusrat_plasma_dd_helion_profile263_ 2.72812390875392100e+15 -D-D_->_3He_fusion_rate_at_point_264______________________________________ fusrat_plasma_dd_helion_profile264_ 2.70383262946805450e+15 -D-D_->_3He_fusion_rate_at_point_265______________________________________ fusrat_plasma_dd_helion_profile265_ 2.67960422675061600e+15 -D-D_->_3He_fusion_rate_at_point_266______________________________________ fusrat_plasma_dd_helion_profile266_ 2.65543994223399350e+15 -D-D_->_3He_fusion_rate_at_point_267______________________________________ fusrat_plasma_dd_helion_profile267_ 2.63134101216504350e+15 -D-D_->_3He_fusion_rate_at_point_268______________________________________ fusrat_plasma_dd_helion_profile268_ 2.60730866728528050e+15 -D-D_->_3He_fusion_rate_at_point_269______________________________________ fusrat_plasma_dd_helion_profile269_ 2.58334413271042950e+15 -D-D_->_3He_fusion_rate_at_point_270______________________________________ fusrat_plasma_dd_helion_profile270_ 2.55944862780957600e+15 -D-D_->_3He_fusion_rate_at_point_271______________________________________ fusrat_plasma_dd_helion_profile271_ 2.53562336608373100e+15 -D-D_->_3He_fusion_rate_at_point_272______________________________________ fusrat_plasma_dd_helion_profile272_ 2.51186955504394300e+15 -D-D_->_3He_fusion_rate_at_point_273______________________________________ fusrat_plasma_dd_helion_profile273_ 2.48818839608886700e+15 -D-D_->_3He_fusion_rate_at_point_274______________________________________ fusrat_plasma_dd_helion_profile274_ 2.46458108438184650e+15 -D-D_->_3He_fusion_rate_at_point_275______________________________________ fusrat_plasma_dd_helion_profile275_ 2.44104880872750650e+15 -D-D_->_3He_fusion_rate_at_point_276______________________________________ fusrat_plasma_dd_helion_profile276_ 2.41759275144783050e+15 -D-D_->_3He_fusion_rate_at_point_277______________________________________ fusrat_plasma_dd_helion_profile277_ 2.39421408825778500e+15 -D-D_->_3He_fusion_rate_at_point_278______________________________________ fusrat_plasma_dd_helion_profile278_ 2.37091398814038450e+15 -D-D_->_3He_fusion_rate_at_point_279______________________________________ fusrat_plasma_dd_helion_profile279_ 2.34769361322134650e+15 -D-D_->_3He_fusion_rate_at_point_280______________________________________ fusrat_plasma_dd_helion_profile280_ 2.32455411864324000e+15 -D-D_->_3He_fusion_rate_at_point_281______________________________________ fusrat_plasma_dd_helion_profile281_ 2.30149665243912500e+15 -D-D_->_3He_fusion_rate_at_point_282______________________________________ fusrat_plasma_dd_helion_profile282_ 2.27852235540577100e+15 -D-D_->_3He_fusion_rate_at_point_283______________________________________ fusrat_plasma_dd_helion_profile283_ 2.25563236097636800e+15 -D-D_->_3He_fusion_rate_at_point_284______________________________________ fusrat_plasma_dd_helion_profile284_ 2.23282779509280450e+15 -D-D_->_3He_fusion_rate_at_point_285______________________________________ fusrat_plasma_dd_helion_profile285_ 2.21010977607746775e+15 -D-D_->_3He_fusion_rate_at_point_286______________________________________ fusrat_plasma_dd_helion_profile286_ 2.18747941450460050e+15 -D-D_->_3He_fusion_rate_at_point_287______________________________________ fusrat_plasma_dd_helion_profile287_ 2.16493781307120150e+15 -D-D_->_3He_fusion_rate_at_point_288______________________________________ fusrat_plasma_dd_helion_profile288_ 2.14248606646751350e+15 -D-D_->_3He_fusion_rate_at_point_289______________________________________ fusrat_plasma_dd_helion_profile289_ 2.12012526124703650e+15 -D-D_->_3He_fusion_rate_at_point_290______________________________________ fusrat_plasma_dd_helion_profile290_ 2.09785647569614575e+15 -D-D_->_3He_fusion_rate_at_point_291______________________________________ fusrat_plasma_dd_helion_profile291_ 2.07568077970328000e+15 -D-D_->_3He_fusion_rate_at_point_292______________________________________ fusrat_plasma_dd_helion_profile292_ 2.05359923462770350e+15 -D-D_->_3He_fusion_rate_at_point_293______________________________________ fusrat_plasma_dd_helion_profile293_ 2.03161289316789100e+15 -D-D_->_3He_fusion_rate_at_point_294______________________________________ fusrat_plasma_dd_helion_profile294_ 2.00972279922948150e+15 -D-D_->_3He_fusion_rate_at_point_295______________________________________ fusrat_plasma_dd_helion_profile295_ 1.98792998779285875e+15 -D-D_->_3He_fusion_rate_at_point_296______________________________________ fusrat_plasma_dd_helion_profile296_ 1.96623548478037750e+15 -D-D_->_3He_fusion_rate_at_point_297______________________________________ fusrat_plasma_dd_helion_profile297_ 1.94464030692314675e+15 -D-D_->_3He_fusion_rate_at_point_298______________________________________ fusrat_plasma_dd_helion_profile298_ 1.92314546162753525e+15 -D-D_->_3He_fusion_rate_at_point_299______________________________________ fusrat_plasma_dd_helion_profile299_ 1.90175194684127725e+15 -D-D_->_3He_fusion_rate_at_point_300______________________________________ fusrat_plasma_dd_helion_profile300_ 1.88046075091922550e+15 -D-D_->_3He_fusion_rate_at_point_301______________________________________ fusrat_plasma_dd_helion_profile301_ 1.85927285248882550e+15 -D-D_->_3He_fusion_rate_at_point_302______________________________________ fusrat_plasma_dd_helion_profile302_ 1.83818922031521250e+15 -D-D_->_3He_fusion_rate_at_point_303______________________________________ fusrat_plasma_dd_helion_profile303_ 1.81721081316603925e+15 -D-D_->_3He_fusion_rate_at_point_304______________________________________ fusrat_plasma_dd_helion_profile304_ 1.79633857967600000e+15 -D-D_->_3He_fusion_rate_at_point_305______________________________________ fusrat_plasma_dd_helion_profile305_ 1.77557345821106375e+15 -D-D_->_3He_fusion_rate_at_point_306______________________________________ fusrat_plasma_dd_helion_profile306_ 1.75491637673244325e+15 -D-D_->_3He_fusion_rate_at_point_307______________________________________ fusrat_plasma_dd_helion_profile307_ 1.73436825266032200e+15 -D-D_->_3He_fusion_rate_at_point_308______________________________________ fusrat_plasma_dd_helion_profile308_ 1.71392999273731650e+15 -D-D_->_3He_fusion_rate_at_point_309______________________________________ fusrat_plasma_dd_helion_profile309_ 1.69360249289174400e+15 -D-D_->_3He_fusion_rate_at_point_310______________________________________ fusrat_plasma_dd_helion_profile310_ 1.67338663810064350e+15 -D-D_->_3He_fusion_rate_at_point_311______________________________________ fusrat_plasma_dd_helion_profile311_ 1.65328330225265900e+15 -D-D_->_3He_fusion_rate_at_point_312______________________________________ fusrat_plasma_dd_helion_profile312_ 1.63329334801068150e+15 -D-D_->_3He_fusion_rate_at_point_313______________________________________ fusrat_plasma_dd_helion_profile313_ 1.61341762667439750e+15 -D-D_->_3He_fusion_rate_at_point_314______________________________________ fusrat_plasma_dd_helion_profile314_ 1.59365697804264775e+15 -D-D_->_3He_fusion_rate_at_point_315______________________________________ fusrat_plasma_dd_helion_profile315_ 1.57401223027570950e+15 -D-D_->_3He_fusion_rate_at_point_316______________________________________ fusrat_plasma_dd_helion_profile316_ 1.55448419975744200e+15 -D-D_->_3He_fusion_rate_at_point_317______________________________________ fusrat_plasma_dd_helion_profile317_ 1.53507369095738875e+15 -D-D_->_3He_fusion_rate_at_point_318______________________________________ fusrat_plasma_dd_helion_profile318_ 1.51578149629280275e+15 -D-D_->_3He_fusion_rate_at_point_319______________________________________ fusrat_plasma_dd_helion_profile319_ 1.49660839599063775e+15 -D-D_->_3He_fusion_rate_at_point_320______________________________________ fusrat_plasma_dd_helion_profile320_ 1.47755515794955050e+15 -D-D_->_3He_fusion_rate_at_point_321______________________________________ fusrat_plasma_dd_helion_profile321_ 1.45862253760189800e+15 -D-D_->_3He_fusion_rate_at_point_322______________________________________ fusrat_plasma_dd_helion_profile322_ 1.43981127777577300e+15 -D-D_->_3He_fusion_rate_at_point_323______________________________________ fusrat_plasma_dd_helion_profile323_ 1.42112210855713750e+15 -D-D_->_3He_fusion_rate_at_point_324______________________________________ fusrat_plasma_dd_helion_profile324_ 1.40255574715200975e+15 -D-D_->_3He_fusion_rate_at_point_325______________________________________ fusrat_plasma_dd_helion_profile325_ 1.38411289774880675e+15 -D-D_->_3He_fusion_rate_at_point_326______________________________________ fusrat_plasma_dd_helion_profile326_ 1.36579425138082125e+15 -D-D_->_3He_fusion_rate_at_point_327______________________________________ fusrat_plasma_dd_helion_profile327_ 1.34760048578889275e+15 -D-D_->_3He_fusion_rate_at_point_328______________________________________ fusrat_plasma_dd_helion_profile328_ 1.32953226528429025e+15 -D-D_->_3He_fusion_rate_at_point_329______________________________________ fusrat_plasma_dd_helion_profile329_ 1.31159024061184450e+15 -D-D_->_3He_fusion_rate_at_point_330______________________________________ fusrat_plasma_dd_helion_profile330_ 1.29377504881335925e+15 -D-D_->_3He_fusion_rate_at_point_331______________________________________ fusrat_plasma_dd_helion_profile331_ 1.27608731309135350e+15 -D-D_->_3He_fusion_rate_at_point_332______________________________________ fusrat_plasma_dd_helion_profile332_ 1.25852764267314425e+15 -D-D_->_3He_fusion_rate_at_point_333______________________________________ fusrat_plasma_dd_helion_profile333_ 1.24109663267534000e+15 -D-D_->_3He_fusion_rate_at_point_334______________________________________ fusrat_plasma_dd_helion_profile334_ 1.22379486396875975e+15 -D-D_->_3He_fusion_rate_at_point_335______________________________________ fusrat_plasma_dd_helion_profile335_ 1.20662290304382050e+15 -D-D_->_3He_fusion_rate_at_point_336______________________________________ fusrat_plasma_dd_helion_profile336_ 1.18958130187646075e+15 -D-D_->_3He_fusion_rate_at_point_337______________________________________ fusrat_plasma_dd_helion_profile337_ 1.17267059779461625e+15 -D-D_->_3He_fusion_rate_at_point_338______________________________________ fusrat_plasma_dd_helion_profile338_ 1.15589131334530050e+15 -D-D_->_3He_fusion_rate_at_point_339______________________________________ fusrat_plasma_dd_helion_profile339_ 1.13924395616235975e+15 -D-D_->_3He_fusion_rate_at_point_340______________________________________ fusrat_plasma_dd_helion_profile340_ 1.12272901883490888e+15 -D-D_->_3He_fusion_rate_at_point_341______________________________________ fusrat_plasma_dd_helion_profile341_ 1.10634697877654338e+15 -D-D_->_3He_fusion_rate_at_point_342______________________________________ fusrat_plasma_dd_helion_profile342_ 1.09009829809536275e+15 -D-D_->_3He_fusion_rate_at_point_343______________________________________ fusrat_plasma_dd_helion_profile343_ 1.07398342346483725e+15 -D-D_->_3He_fusion_rate_at_point_344______________________________________ fusrat_plasma_dd_helion_profile344_ 1.05800278599562788e+15 -D-D_->_3He_fusion_rate_at_point_345______________________________________ fusrat_plasma_dd_helion_profile345_ 1.04215680110835400e+15 -D-D_->_3He_fusion_rate_at_point_346______________________________________ fusrat_plasma_dd_helion_profile346_ 1.02644586840743612e+15 -D-D_->_3He_fusion_rate_at_point_347______________________________________ fusrat_plasma_dd_helion_profile347_ 1.01087037155601388e+15 -D-D_->_3He_fusion_rate_at_point_348______________________________________ fusrat_plasma_dd_helion_profile348_ 9.95430678152056250e+14 -D-D_->_3He_fusion_rate_at_point_349______________________________________ fusrat_plasma_dd_helion_profile349_ 9.80127139605696875e+14 -D-D_->_3He_fusion_rate_at_point_350______________________________________ fusrat_plasma_dd_helion_profile350_ 9.64960091017878625e+14 -D-D_->_3He_fusion_rate_at_point_351______________________________________ fusrat_plasma_dd_helion_profile351_ 9.49929851060383000e+14 -D-D_->_3He_fusion_rate_at_point_352______________________________________ fusrat_plasma_dd_helion_profile352_ 9.35036721857315375e+14 -D-D_->_3He_fusion_rate_at_point_353______________________________________ fusrat_plasma_dd_helion_profile353_ 9.20280988868113375e+14 -D-D_->_3He_fusion_rate_at_point_354______________________________________ fusrat_plasma_dd_helion_profile354_ 9.05662920772179000e+14 -D-D_->_3He_fusion_rate_at_point_355______________________________________ fusrat_plasma_dd_helion_profile355_ 8.91182769355198500e+14 -D-D_->_3He_fusion_rate_at_point_356______________________________________ fusrat_plasma_dd_helion_profile356_ 8.76840769397248375e+14 -D-D_->_3He_fusion_rate_at_point_357______________________________________ fusrat_plasma_dd_helion_profile357_ 8.62637138562773125e+14 -D-D_->_3He_fusion_rate_at_point_358______________________________________ fusrat_plasma_dd_helion_profile358_ 8.48572077292512500e+14 -D-D_->_3He_fusion_rate_at_point_359______________________________________ fusrat_plasma_dd_helion_profile359_ 8.34645768697504000e+14 -D-D_->_3He_fusion_rate_at_point_360______________________________________ fusrat_plasma_dd_helion_profile360_ 8.20858378455230250e+14 -D-D_->_3He_fusion_rate_at_point_361______________________________________ fusrat_plasma_dd_helion_profile361_ 8.07210054708017500e+14 -D-D_->_3He_fusion_rate_at_point_362______________________________________ fusrat_plasma_dd_helion_profile362_ 7.93700927963810625e+14 -D-D_->_3He_fusion_rate_at_point_363______________________________________ fusrat_plasma_dd_helion_profile363_ 7.80331110999399875e+14 -D-D_->_3He_fusion_rate_at_point_364______________________________________ fusrat_plasma_dd_helion_profile364_ 7.67100698766247875e+14 -D-D_->_3He_fusion_rate_at_point_365______________________________________ fusrat_plasma_dd_helion_profile365_ 7.54009768298992625e+14 -D-D_->_3He_fusion_rate_at_point_366______________________________________ fusrat_plasma_dd_helion_profile366_ 7.41058378626794750e+14 -D-D_->_3He_fusion_rate_at_point_367______________________________________ fusrat_plasma_dd_helion_profile367_ 7.28246570687598125e+14 -D-D_->_3He_fusion_rate_at_point_368______________________________________ fusrat_plasma_dd_helion_profile368_ 7.15574367245485375e+14 -D-D_->_3He_fusion_rate_at_point_369______________________________________ fusrat_plasma_dd_helion_profile369_ 7.03041772811216625e+14 -D-D_->_3He_fusion_rate_at_point_370______________________________________ fusrat_plasma_dd_helion_profile370_ 6.90648773566114875e+14 -D-D_->_3He_fusion_rate_at_point_371______________________________________ fusrat_plasma_dd_helion_profile371_ 6.78395337289430500e+14 -D-D_->_3He_fusion_rate_at_point_372______________________________________ fusrat_plasma_dd_helion_profile372_ 6.66281413289335375e+14 -D-D_->_3He_fusion_rate_at_point_373______________________________________ fusrat_plasma_dd_helion_profile373_ 6.54306932337684250e+14 -D-D_->_3He_fusion_rate_at_point_374______________________________________ fusrat_plasma_dd_helion_profile374_ 6.42471806608722875e+14 -D-D_->_3He_fusion_rate_at_point_375______________________________________ fusrat_plasma_dd_helion_profile375_ 6.30775929621887375e+14 -D-D_->_3He_fusion_rate_at_point_376______________________________________ fusrat_plasma_dd_helion_profile376_ 6.19219176188855375e+14 -D-D_->_3He_fusion_rate_at_point_377______________________________________ fusrat_plasma_dd_helion_profile377_ 6.07801402365055000e+14 -D-D_->_3He_fusion_rate_at_point_378______________________________________ fusrat_plasma_dd_helion_profile378_ 5.96522445405765875e+14 -D-D_->_3He_fusion_rate_at_point_379______________________________________ fusrat_plasma_dd_helion_profile379_ 5.85382123727036125e+14 -D-D_->_3He_fusion_rate_at_point_380______________________________________ fusrat_plasma_dd_helion_profile380_ 5.74380236871580125e+14 -D-D_->_3He_fusion_rate_at_point_381______________________________________ fusrat_plasma_dd_helion_profile381_ 5.63516565479876875e+14 -D-D_->_3He_fusion_rate_at_point_382______________________________________ fusrat_plasma_dd_helion_profile382_ 5.52790871266646938e+14 -D-D_->_3He_fusion_rate_at_point_383______________________________________ fusrat_plasma_dd_helion_profile383_ 5.42202897002955125e+14 -D-D_->_3He_fusion_rate_at_point_384______________________________________ fusrat_plasma_dd_helion_profile384_ 5.31752366504126875e+14 -D-D_->_3He_fusion_rate_at_point_385______________________________________ fusrat_plasma_dd_helion_profile385_ 5.21438984623730500e+14 -D-D_->_3He_fusion_rate_at_point_386______________________________________ fusrat_plasma_dd_helion_profile386_ 5.11262437253839875e+14 -D-D_->_3He_fusion_rate_at_point_387______________________________________ fusrat_plasma_dd_helion_profile387_ 5.01222391331852250e+14 -D-D_->_3He_fusion_rate_at_point_388______________________________________ fusrat_plasma_dd_helion_profile388_ 4.91318494854079125e+14 -D-D_->_3He_fusion_rate_at_point_389______________________________________ fusrat_plasma_dd_helion_profile389_ 4.81550376896412500e+14 -D-D_->_3He_fusion_rate_at_point_390______________________________________ fusrat_plasma_dd_helion_profile390_ 4.71917647642307875e+14 -D-D_->_3He_fusion_rate_at_point_391______________________________________ fusrat_plasma_dd_helion_profile391_ 4.62419898418395125e+14 -D-D_->_3He_fusion_rate_at_point_392______________________________________ fusrat_plasma_dd_helion_profile392_ 4.53056701737998188e+14 -D-D_->_3He_fusion_rate_at_point_393______________________________________ fusrat_plasma_dd_helion_profile393_ 4.43827611352878375e+14 -D-D_->_3He_fusion_rate_at_point_394______________________________________ fusrat_plasma_dd_helion_profile394_ 4.34732162313527250e+14 -D-D_->_3He_fusion_rate_at_point_395______________________________________ fusrat_plasma_dd_helion_profile395_ 4.25769871038339750e+14 -D-D_->_3He_fusion_rate_at_point_396______________________________________ fusrat_plasma_dd_helion_profile396_ 4.16940235392013062e+14 -D-D_->_3He_fusion_rate_at_point_397______________________________________ fusrat_plasma_dd_helion_profile397_ 4.08242734773557875e+14 -D-D_->_3He_fusion_rate_at_point_398______________________________________ fusrat_plasma_dd_helion_profile398_ 3.99676830214278375e+14 -D-D_->_3He_fusion_rate_at_point_399______________________________________ fusrat_plasma_dd_helion_profile399_ 3.91241964486146438e+14 -D-D_->_3He_fusion_rate_at_point_400______________________________________ fusrat_plasma_dd_helion_profile400_ 3.82937562220973750e+14 -D-D_->_3He_fusion_rate_at_point_401______________________________________ fusrat_plasma_dd_helion_profile401_ 3.74763030040837250e+14 -D-D_->_3He_fusion_rate_at_point_402______________________________________ fusrat_plasma_dd_helion_profile402_ 3.66717756700210812e+14 -D-D_->_3He_fusion_rate_at_point_403______________________________________ fusrat_plasma_dd_helion_profile403_ 3.58801113240305375e+14 -D-D_->_3He_fusion_rate_at_point_404______________________________________ fusrat_plasma_dd_helion_profile404_ 3.51012453156123750e+14 -D-D_->_3He_fusion_rate_at_point_405______________________________________ fusrat_plasma_dd_helion_profile405_ 3.43351112576791750e+14 -D-D_->_3He_fusion_rate_at_point_406______________________________________ fusrat_plasma_dd_helion_profile406_ 3.35816410459719000e+14 -D-D_->_3He_fusion_rate_at_point_407______________________________________ fusrat_plasma_dd_helion_profile407_ 3.28407648799239125e+14 -D-D_->_3He_fusion_rate_at_point_408______________________________________ fusrat_plasma_dd_helion_profile408_ 3.21124112850342812e+14 -D-D_->_3He_fusion_rate_at_point_409______________________________________ fusrat_plasma_dd_helion_profile409_ 3.13965071368243562e+14 -D-D_->_3He_fusion_rate_at_point_410______________________________________ fusrat_plasma_dd_helion_profile410_ 3.06929776864478812e+14 -D-D_->_3He_fusion_rate_at_point_411______________________________________ fusrat_plasma_dd_helion_profile411_ 3.00017465880377562e+14 -D-D_->_3He_fusion_rate_at_point_412______________________________________ fusrat_plasma_dd_helion_profile412_ 2.93227359278719000e+14 -D-D_->_3He_fusion_rate_at_point_413______________________________________ fusrat_plasma_dd_helion_profile413_ 2.86558662554536000e+14 -D-D_->_3He_fusion_rate_at_point_414______________________________________ fusrat_plasma_dd_helion_profile414_ 2.80010566166025875e+14 -D-D_->_3He_fusion_rate_at_point_415______________________________________ fusrat_plasma_dd_helion_profile415_ 2.73582245886662312e+14 -D-D_->_3He_fusion_rate_at_point_416______________________________________ fusrat_plasma_dd_helion_profile416_ 2.67272863179667250e+14 -D-D_->_3He_fusion_rate_at_point_417______________________________________ fusrat_plasma_dd_helion_profile417_ 2.61081565596117781e+14 -D-D_->_3He_fusion_rate_at_point_418______________________________________ fusrat_plasma_dd_helion_profile418_ 2.55007487198065000e+14 -D-D_->_3He_fusion_rate_at_point_419______________________________________ fusrat_plasma_dd_helion_profile419_ 2.49049749008188062e+14 -D-D_->_3He_fusion_rate_at_point_420______________________________________ fusrat_plasma_dd_helion_profile420_ 2.43207459487646625e+14 -D-D_->_3He_fusion_rate_at_point_421______________________________________ fusrat_plasma_dd_helion_profile421_ 2.37479715043964656e+14 -D-D_->_3He_fusion_rate_at_point_422______________________________________ fusrat_plasma_dd_helion_profile422_ 2.31865600570974188e+14 -D-D_->_3He_fusion_rate_at_point_423______________________________________ fusrat_plasma_dd_helion_profile423_ 2.26364190023066375e+14 -D-D_->_3He_fusion_rate_at_point_424______________________________________ fusrat_plasma_dd_helion_profile424_ 2.20974547026243844e+14 -D-D_->_3He_fusion_rate_at_point_425______________________________________ fusrat_plasma_dd_helion_profile425_ 2.15695725528768375e+14 -D-D_->_3He_fusion_rate_at_point_426______________________________________ fusrat_plasma_dd_helion_profile426_ 2.10526770494522000e+14 -D-D_->_3He_fusion_rate_at_point_427______________________________________ fusrat_plasma_dd_helion_profile427_ 2.05466718642584375e+14 -D-D_->_3He_fusion_rate_at_point_428______________________________________ fusrat_plasma_dd_helion_profile428_ 2.00514599236989000e+14 -D-D_->_3He_fusion_rate_at_point_429______________________________________ fusrat_plasma_dd_helion_profile429_ 1.95669434931111500e+14 -D-D_->_3He_fusion_rate_at_point_430______________________________________ fusrat_plasma_dd_helion_profile430_ 1.90930242671779281e+14 -D-D_->_3He_fusion_rate_at_point_431______________________________________ fusrat_plasma_dd_helion_profile431_ 1.86296034668873562e+14 -D-D_->_3He_fusion_rate_at_point_432______________________________________ fusrat_plasma_dd_helion_profile432_ 1.81765819437034062e+14 -D-D_->_3He_fusion_rate_at_point_433______________________________________ fusrat_plasma_dd_helion_profile433_ 1.77338602917053344e+14 -D-D_->_3He_fusion_rate_at_point_434______________________________________ fusrat_plasma_dd_helion_profile434_ 1.73013389685698875e+14 -D-D_->_3He_fusion_rate_at_point_435______________________________________ fusrat_plasma_dd_helion_profile435_ 1.68789184264070094e+14 -D-D_->_3He_fusion_rate_at_point_436______________________________________ fusrat_plasma_dd_helion_profile436_ 1.64664992536235812e+14 -D-D_->_3He_fusion_rate_at_point_437______________________________________ fusrat_plasma_dd_helion_profile437_ 1.60639823291849594e+14 -D-D_->_3He_fusion_rate_at_point_438______________________________________ fusrat_plasma_dd_helion_profile438_ 1.56712689908794656e+14 -D-D_->_3He_fusion_rate_at_point_439______________________________________ fusrat_plasma_dd_helion_profile439_ 1.52882612194746469e+14 -D-D_->_3He_fusion_rate_at_point_440______________________________________ fusrat_plasma_dd_helion_profile440_ 1.49148618410013906e+14 -D-D_->_3He_fusion_rate_at_point_441______________________________________ fusrat_plasma_dd_helion_profile441_ 1.45509747498226500e+14 -D-D_->_3He_fusion_rate_at_point_442______________________________________ fusrat_plasma_dd_helion_profile442_ 1.41965051556632875e+14 -D-D_->_3He_fusion_rate_at_point_443______________________________________ fusrat_plasma_dd_helion_profile443_ 1.38513598584210781e+14 -D-D_->_3He_fusion_rate_at_point_444______________________________________ fusrat_plasma_dd_helion_profile444_ 1.35154475553772406e+14 -D-D_->_3He_fusion_rate_at_point_445______________________________________ fusrat_plasma_dd_helion_profile445_ 1.31886791864308078e+14 -D-D_->_3He_fusion_rate_at_point_446______________________________________ fusrat_plasma_dd_helion_profile446_ 1.28709683242501562e+14 -D-D_->_3He_fusion_rate_at_point_447______________________________________ fusrat_plasma_dd_helion_profile447_ 1.25622316178540781e+14 -D-D_->_3He_fusion_rate_at_point_448______________________________________ fusrat_plasma_dd_helion_profile448_ 1.22623893002205250e+14 -D-D_->_3He_fusion_rate_at_point_449______________________________________ fusrat_plasma_dd_helion_profile449_ 1.19713657732273734e+14 -D-D_->_3He_fusion_rate_at_point_450______________________________________ fusrat_plasma_dd_helion_profile450_ 1.16890902867901984e+14 -D-D_->_3He_fusion_rate_at_point_451______________________________________ fusrat_plasma_dd_helion_profile451_ 1.14154977337878422e+14 -D-D_->_3He_fusion_rate_at_point_452______________________________________ fusrat_plasma_dd_helion_profile452_ 1.11505295887324969e+14 -D-D_->_3He_fusion_rate_at_point_453______________________________________ fusrat_plasma_dd_helion_profile453_ 1.08941350268242562e+14 -D-D_->_3He_fusion_rate_at_point_454______________________________________ fusrat_plasma_dd_helion_profile454_ 1.06462722720675047e+14 -D-D_->_3He_fusion_rate_at_point_455______________________________________ fusrat_plasma_dd_helion_profile455_ 1.04069102400929688e+14 -D-D_->_3He_fusion_rate_at_point_456______________________________________ fusrat_plasma_dd_helion_profile456_ 1.01760305657023875e+14 -D-D_->_3He_fusion_rate_at_point_457______________________________________ fusrat_plasma_dd_helion_profile457_ 9.95363014091695781e+13 -D-D_->_3He_fusion_rate_at_point_458______________________________________ fusrat_plasma_dd_helion_profile458_ 9.73972434306081719e+13 -D-D_->_3He_fusion_rate_at_point_459______________________________________ fusrat_plasma_dd_helion_profile459_ 9.53435121541693906e+13 -D-D_->_3He_fusion_rate_at_point_460______________________________________ fusrat_plasma_dd_helion_profile460_ 9.33757699526006094e+13 -D-D_->_3He_fusion_rate_at_point_461______________________________________ fusrat_plasma_dd_helion_profile461_ 9.14950360261353594e+13 -D-D_->_3He_fusion_rate_at_point_462______________________________________ fusrat_plasma_dd_helion_profile462_ 8.97027907993951094e+13 -D-D_->_3He_fusion_rate_at_point_463______________________________________ fusrat_plasma_dd_helion_profile463_ 8.80011265687560938e+13 -D-D_->_3He_fusion_rate_at_point_464______________________________________ fusrat_plasma_dd_helion_profile464_ 8.63929743492791562e+13 -D-D_->_3He_fusion_rate_at_point_465______________________________________ fusrat_plasma_dd_helion_profile465_ 8.48824644418631406e+13 -D-D_->_3He_fusion_rate_at_point_466______________________________________ fusrat_plasma_dd_helion_profile466_ 8.34755418863607344e+13 -D-D_->_3He_fusion_rate_at_point_467______________________________________ fusrat_plasma_dd_helion_profile467_ 8.21811263478927969e+13 -D-D_->_3He_fusion_rate_at_point_468______________________________________ fusrat_plasma_dd_helion_profile468_ 8.10136497041207812e+13 -D-D_->_3He_fusion_rate_at_point_469______________________________________ fusrat_plasma_dd_helion_profile469_ 8.00002602090821562e+13 -D-D_->_3He_fusion_rate_at_point_470______________________________________ fusrat_plasma_dd_helion_profile470_ 7.92254761188834219e+13 -D-D_->_3He_fusion_rate_at_point_471______________________________________ fusrat_plasma_dd_helion_profile471_ 6.97441629624044141e+13 -D-D_->_3He_fusion_rate_at_point_472______________________________________ fusrat_plasma_dd_helion_profile472_ 6.10825505964686016e+13 -D-D_->_3He_fusion_rate_at_point_473______________________________________ fusrat_plasma_dd_helion_profile473_ 5.31999991942241172e+13 -D-D_->_3He_fusion_rate_at_point_474______________________________________ fusrat_plasma_dd_helion_profile474_ 4.60561649590400781e+13 -D-D_->_3He_fusion_rate_at_point_475______________________________________ fusrat_plasma_dd_helion_profile475_ 3.96110182585511250e+13 -D-D_->_3He_fusion_rate_at_point_476______________________________________ fusrat_plasma_dd_helion_profile476_ 3.38248637492645430e+13 -D-D_->_3He_fusion_rate_at_point_477______________________________________ fusrat_plasma_dd_helion_profile477_ 2.86583628533180391e+13 -D-D_->_3He_fusion_rate_at_point_478______________________________________ fusrat_plasma_dd_helion_profile478_ 2.40725590320597148e+13 -D-D_->_3He_fusion_rate_at_point_479______________________________________ fusrat_plasma_dd_helion_profile479_ 2.00289064057226797e+13 -D-D_->_3He_fusion_rate_at_point_480______________________________________ fusrat_plasma_dd_helion_profile480_ 1.64893024005414844e+13 -D-D_->_3He_fusion_rate_at_point_481______________________________________ fusrat_plasma_dd_helion_profile481_ 1.34161252718411465e+13 -D-D_->_3He_fusion_rate_at_point_482______________________________________ fusrat_plasma_dd_helion_profile482_ 1.07722775636482773e+13 -D-D_->_3He_fusion_rate_at_point_483______________________________________ fusrat_plasma_dd_helion_profile483_ 8.52123683450926172e+12 -D-D_->_3He_fusion_rate_at_point_484______________________________________ fusrat_plasma_dd_helion_profile484_ 6.62711532067990332e+12 -D-D_->_3He_fusion_rate_at_point_485______________________________________ fusrat_plasma_dd_helion_profile485_ 5.05473064007331836e+12 -D-D_->_3He_fusion_rate_at_point_486______________________________________ fusrat_plasma_dd_helion_profile486_ 3.76969018439925439e+12 -D-D_->_3He_fusion_rate_at_point_487______________________________________ fusrat_plasma_dd_helion_profile487_ 2.73849252464855029e+12 -D-D_->_3He_fusion_rate_at_point_488______________________________________ fusrat_plasma_dd_helion_profile488_ 1.92864998382667090e+12 -D-D_->_3He_fusion_rate_at_point_489______________________________________ fusrat_plasma_dd_helion_profile489_ 1.30883751132699268e+12 -D-D_->_3He_fusion_rate_at_point_490______________________________________ fusrat_plasma_dd_helion_profile490_ 8.49074083134623291e+11 -D-D_->_3He_fusion_rate_at_point_491______________________________________ fusrat_plasma_dd_helion_profile491_ 5.20943909940690552e+11 -D-D_->_3He_fusion_rate_at_point_492______________________________________ fusrat_plasma_dd_helion_profile492_ 2.97865406512278931e+11 -D-D_->_3He_fusion_rate_at_point_493______________________________________ fusrat_plasma_dd_helion_profile493_ 1.55415359660193939e+11 -D-D_->_3He_fusion_rate_at_point_494______________________________________ fusrat_plasma_dd_helion_profile494_ 7.17123210853053284e+10 -D-D_->_3He_fusion_rate_at_point_495______________________________________ fusrat_plasma_dd_helion_profile495_ 2.78534526468021164e+10 -D-D_->_3He_fusion_rate_at_point_496______________________________________ fusrat_plasma_dd_helion_profile496_ 8.37608195434672165e+09 -D-D_->_3He_fusion_rate_at_point_497______________________________________ fusrat_plasma_dd_helion_profile497_ 1.66720017030159378e+09 -D-D_->_3He_fusion_rate_at_point_498______________________________________ fusrat_plasma_dd_helion_profile498_ 1.55857098838984519e+08 -D-D_->_3He_fusion_rate_at_point_499______________________________________ fusrat_plasma_dd_helion_profile499_ 2.56777539450890198e+06 -D-D_->_3He_fusion_rate_at_point_500______________________________________ fusrat_plasma_dd_helion_profile500_ 3.72676546988180704e+01 +Fusion_rate:_total_(reactions/sec)_______________________________________ (fusrat_total)_________________ 5.88001517663528616e+20 OP +Fusion_rate_density:_total_(reactions/m³/sec)____________________________ (fusden_total)_________________ 3.11413251064395072e+17 OP +Fusion_rate_density:_plasma_(reactions/m³/sec)___________________________ (fusden_plasma)________________ 3.11413251064395072e+17 OP +Total_fusion_power_(MW)__________________________________________________ (p_fusion_total_mw)____________ 1.64934744441023304e+03 OP +D-T_fusion_power:_total_(MW)_____________________________________________ (p_dt_total_mw)________________ 1.64735369756583532e+03 OP +DT_fusion_rate_at_point_0________________________________________________ fusrat_plasma_dt_profile0______ 1.07351287334220339e+18 +DT_fusion_rate_at_point_1________________________________________________ fusrat_plasma_dt_profile1______ 1.07350355507584666e+18 +DT_fusion_rate_at_point_2________________________________________________ fusrat_plasma_dt_profile2______ 1.07347560038330432e+18 +DT_fusion_rate_at_point_3________________________________________________ fusrat_plasma_dt_profile3______ 1.07342900958416256e+18 +DT_fusion_rate_at_point_4________________________________________________ fusrat_plasma_dt_profile4______ 1.07336378321114010e+18 +DT_fusion_rate_at_point_5________________________________________________ fusrat_plasma_dt_profile5______ 1.07327992201018816e+18 +DT_fusion_rate_at_point_6________________________________________________ fusrat_plasma_dt_profile6______ 1.07317742694063398e+18 +DT_fusion_rate_at_point_7________________________________________________ fusrat_plasma_dt_profile7______ 1.07305629917537971e+18 +DT_fusion_rate_at_point_8________________________________________________ fusrat_plasma_dt_profile8______ 1.07291654010111334e+18 +DT_fusion_rate_at_point_9________________________________________________ fusrat_plasma_dt_profile9______ 1.07275815131859712e+18 +DT_fusion_rate_at_point_10_______________________________________________ fusrat_plasma_dt_profile10_____ 1.07258113464297126e+18 +DT_fusion_rate_at_point_11_______________________________________________ fusrat_plasma_dt_profile11_____ 1.07238549210411098e+18 +DT_fusion_rate_at_point_12_______________________________________________ fusrat_plasma_dt_profile12_____ 1.07217122594702118e+18 +DT_fusion_rate_at_point_13_______________________________________________ fusrat_plasma_dt_profile13_____ 1.07193833863228173e+18 +DT_fusion_rate_at_point_14_______________________________________________ fusrat_plasma_dt_profile14_____ 1.07168683283652454e+18 +DT_fusion_rate_at_point_15_______________________________________________ fusrat_plasma_dt_profile15_____ 1.07141671145294502e+18 +DT_fusion_rate_at_point_16_______________________________________________ fusrat_plasma_dt_profile16_____ 1.07112797759188992e+18 +DT_fusion_rate_at_point_17_______________________________________________ fusrat_plasma_dt_profile17_____ 1.07082063458143718e+18 +DT_fusion_rate_at_point_18_______________________________________________ fusrat_plasma_dt_profile18_____ 1.07049468596807539e+18 +DT_fusion_rate_at_point_19_______________________________________________ fusrat_plasma_dt_profile19_____ 1.07015013551736397e+18 +DT_fusion_rate_at_point_20_______________________________________________ fusrat_plasma_dt_profile20_____ 1.06978698721468762e+18 +DT_fusion_rate_at_point_21_______________________________________________ fusrat_plasma_dt_profile21_____ 1.06940524526602880e+18 +DT_fusion_rate_at_point_22_______________________________________________ fusrat_plasma_dt_profile22_____ 1.06900491409877990e+18 +DT_fusion_rate_at_point_23_______________________________________________ fusrat_plasma_dt_profile23_____ 1.06858599836260838e+18 +DT_fusion_rate_at_point_24_______________________________________________ fusrat_plasma_dt_profile24_____ 1.06814850293036314e+18 +DT_fusion_rate_at_point_25_______________________________________________ fusrat_plasma_dt_profile25_____ 1.06769243289901850e+18 +DT_fusion_rate_at_point_26_______________________________________________ fusrat_plasma_dt_profile26_____ 1.06721779359066560e+18 +DT_fusion_rate_at_point_27_______________________________________________ fusrat_plasma_dt_profile27_____ 1.06672459055353984e+18 +DT_fusion_rate_at_point_28_______________________________________________ fusrat_plasma_dt_profile28_____ 1.06621282956310784e+18 +DT_fusion_rate_at_point_29_______________________________________________ fusrat_plasma_dt_profile29_____ 1.06568251662317338e+18 +DT_fusion_rate_at_point_30_______________________________________________ fusrat_plasma_dt_profile30_____ 1.06513365796704781e+18 +DT_fusion_rate_at_point_31_______________________________________________ fusrat_plasma_dt_profile31_____ 1.06456626005875686e+18 +DT_fusion_rate_at_point_32_______________________________________________ fusrat_plasma_dt_profile32_____ 1.06398032959428864e+18 +DT_fusion_rate_at_point_33_______________________________________________ fusrat_plasma_dt_profile33_____ 1.06337587350287910e+18 +DT_fusion_rate_at_point_34_______________________________________________ fusrat_plasma_dt_profile34_____ 1.06275289894836685e+18 +DT_fusion_rate_at_point_35_______________________________________________ fusrat_plasma_dt_profile35_____ 1.06211141333055501e+18 +DT_fusion_rate_at_point_36_______________________________________________ fusrat_plasma_dt_profile36_____ 1.06145142428665472e+18 +DT_fusion_rate_at_point_37_______________________________________________ fusrat_plasma_dt_profile37_____ 1.06077293969274099e+18 +DT_fusion_rate_at_point_38_______________________________________________ fusrat_plasma_dt_profile38_____ 1.06007596766527309e+18 +DT_fusion_rate_at_point_39_______________________________________________ fusrat_plasma_dt_profile39_____ 1.05936051656265587e+18 +DT_fusion_rate_at_point_40_______________________________________________ fusrat_plasma_dt_profile40_____ 1.05862659498684339e+18 +DT_fusion_rate_at_point_41_______________________________________________ fusrat_plasma_dt_profile41_____ 1.05787421178497946e+18 +DT_fusion_rate_at_point_42_______________________________________________ fusrat_plasma_dt_profile42_____ 1.05710337605110502e+18 +DT_fusion_rate_at_point_43_______________________________________________ fusrat_plasma_dt_profile43_____ 1.05631409712788710e+18 +DT_fusion_rate_at_point_44_______________________________________________ fusrat_plasma_dt_profile44_____ 1.05550638460841331e+18 +DT_fusion_rate_at_point_45_______________________________________________ fusrat_plasma_dt_profile45_____ 1.05468024833801152e+18 +DT_fusion_rate_at_point_46_______________________________________________ fusrat_plasma_dt_profile46_____ 1.05383569841613786e+18 +DT_fusion_rate_at_point_47_______________________________________________ fusrat_plasma_dt_profile47_____ 1.05297274519829363e+18 +DT_fusion_rate_at_point_48_______________________________________________ fusrat_plasma_dt_profile48_____ 1.05209139929799731e+18 +DT_fusion_rate_at_point_49_______________________________________________ fusrat_plasma_dt_profile49_____ 1.05119167158879834e+18 +DT_fusion_rate_at_point_50_______________________________________________ fusrat_plasma_dt_profile50_____ 1.05027357320634189e+18 +DT_fusion_rate_at_point_51_______________________________________________ fusrat_plasma_dt_profile51_____ 1.04933711555047795e+18 +DT_fusion_rate_at_point_52_______________________________________________ fusrat_plasma_dt_profile52_____ 1.04838231028742042e+18 +DT_fusion_rate_at_point_53_______________________________________________ fusrat_plasma_dt_profile53_____ 1.04740916935194445e+18 +DT_fusion_rate_at_point_54_______________________________________________ fusrat_plasma_dt_profile54_____ 1.04641770494964928e+18 +DT_fusion_rate_at_point_55_______________________________________________ fusrat_plasma_dt_profile55_____ 1.04540792955924979e+18 +DT_fusion_rate_at_point_56_______________________________________________ fusrat_plasma_dt_profile56_____ 1.04437985593492646e+18 +DT_fusion_rate_at_point_57_______________________________________________ fusrat_plasma_dt_profile57_____ 1.04333349710872755e+18 +DT_fusion_rate_at_point_58_______________________________________________ fusrat_plasma_dt_profile58_____ 1.04226886639300250e+18 +DT_fusion_rate_at_point_59_______________________________________________ fusrat_plasma_dt_profile59_____ 1.04118597738291379e+18 +DT_fusion_rate_at_point_60_______________________________________________ fusrat_plasma_dt_profile60_____ 1.04008484395895616e+18 +DT_fusion_rate_at_point_61_______________________________________________ fusrat_plasma_dt_profile61_____ 1.03896548028957286e+18 +DT_fusion_rate_at_point_62_______________________________________________ fusrat_plasma_dt_profile62_____ 1.03782790083378125e+18 +DT_fusion_rate_at_point_63_______________________________________________ fusrat_plasma_dt_profile63_____ 1.03667212034387648e+18 +DT_fusion_rate_at_point_64_______________________________________________ fusrat_plasma_dt_profile64_____ 1.03549815386816077e+18 +DT_fusion_rate_at_point_65_______________________________________________ fusrat_plasma_dt_profile65_____ 1.03430601675374822e+18 +DT_fusion_rate_at_point_66_______________________________________________ fusrat_plasma_dt_profile66_____ 1.03309572464940518e+18 +DT_fusion_rate_at_point_67_______________________________________________ fusrat_plasma_dt_profile67_____ 1.03186729350843597e+18 +DT_fusion_rate_at_point_68_______________________________________________ fusrat_plasma_dt_profile68_____ 1.03062073959164390e+18 +DT_fusion_rate_at_point_69_______________________________________________ fusrat_plasma_dt_profile69_____ 1.02935607947031296e+18 +DT_fusion_rate_at_point_70_______________________________________________ fusrat_plasma_dt_profile70_____ 1.02807333002926605e+18 +DT_fusion_rate_at_point_71_______________________________________________ fusrat_plasma_dt_profile71_____ 1.02677250846996582e+18 +DT_fusion_rate_at_point_72_______________________________________________ fusrat_plasma_dt_profile72_____ 1.02545363231366733e+18 +DT_fusion_rate_at_point_73_______________________________________________ fusrat_plasma_dt_profile73_____ 1.02411671940461952e+18 +DT_fusion_rate_at_point_74_______________________________________________ fusrat_plasma_dt_profile74_____ 1.02276178791333274e+18 +DT_fusion_rate_at_point_75_______________________________________________ fusrat_plasma_dt_profile75_____ 1.02138885633988595e+18 +DT_fusion_rate_at_point_76_______________________________________________ fusrat_plasma_dt_profile76_____ 1.01999794351729702e+18 +DT_fusion_rate_at_point_77_______________________________________________ fusrat_plasma_dt_profile77_____ 1.01858906861494093e+18 +DT_fusion_rate_at_point_78_______________________________________________ fusrat_plasma_dt_profile78_____ 1.01716225114202342e+18 +DT_fusion_rate_at_point_79_______________________________________________ fusrat_plasma_dt_profile79_____ 1.01571751095111578e+18 +DT_fusion_rate_at_point_80_______________________________________________ fusrat_plasma_dt_profile80_____ 1.01425486824173235e+18 +DT_fusion_rate_at_point_81_______________________________________________ fusrat_plasma_dt_profile81_____ 1.01277434356397568e+18 +DT_fusion_rate_at_point_82_______________________________________________ fusrat_plasma_dt_profile82_____ 1.01127595782222733e+18 +DT_fusion_rate_at_point_83_______________________________________________ fusrat_plasma_dt_profile83_____ 1.00975973227890253e+18 +DT_fusion_rate_at_point_84_______________________________________________ fusrat_plasma_dt_profile84_____ 1.00822568855825958e+18 +DT_fusion_rate_at_point_85_______________________________________________ fusrat_plasma_dt_profile85_____ 1.00667384865025510e+18 +DT_fusion_rate_at_point_86_______________________________________________ fusrat_plasma_dt_profile86_____ 1.00510423491447744e+18 +DT_fusion_rate_at_point_87_______________________________________________ fusrat_plasma_dt_profile87_____ 1.00351687008411136e+18 +DT_fusion_rate_at_point_88_______________________________________________ fusrat_plasma_dt_profile88_____ 1.00191177726998797e+18 +DT_fusion_rate_at_point_89_______________________________________________ fusrat_plasma_dt_profile89_____ 1.00028897996466662e+18 +DT_fusion_rate_at_point_90_______________________________________________ fusrat_plasma_dt_profile90_____ 9.98648502046593152e+17 +DT_fusion_rate_at_point_91_______________________________________________ fusrat_plasma_dt_profile91_____ 9.96990367784311552e+17 +DT_fusion_rate_at_point_92_______________________________________________ fusrat_plasma_dt_profile92_____ 9.95314601840732288e+17 +DT_fusion_rate_at_point_93_______________________________________________ fusrat_plasma_dt_profile93_____ 9.93621229277455744e+17 +DT_fusion_rate_at_point_94_______________________________________________ fusrat_plasma_dt_profile94_____ 9.91910275559175424e+17 +DT_fusion_rate_at_point_95_______________________________________________ fusrat_plasma_dt_profile95_____ 9.90181766558109568e+17 +DT_fusion_rate_at_point_96_______________________________________________ fusrat_plasma_dt_profile96_____ 9.88435728558525312e+17 +DT_fusion_rate_at_point_97_______________________________________________ fusrat_plasma_dt_profile97_____ 9.86672188261300864e+17 +DT_fusion_rate_at_point_98_______________________________________________ fusrat_plasma_dt_profile98_____ 9.84891172788559744e+17 +DT_fusion_rate_at_point_99_______________________________________________ fusrat_plasma_dt_profile99_____ 9.83092709688357760e+17 +DT_fusion_rate_at_point_100______________________________________________ fusrat_plasma_dt_profile100____ 9.81276826939448960e+17 +DT_fusion_rate_at_point_101______________________________________________ fusrat_plasma_dt_profile101____ 9.79443552956094080e+17 +DT_fusion_rate_at_point_102______________________________________________ fusrat_plasma_dt_profile102____ 9.77592916592940160e+17 +DT_fusion_rate_at_point_103______________________________________________ fusrat_plasma_dt_profile103____ 9.75724947149967104e+17 +DT_fusion_rate_at_point_104______________________________________________ fusrat_plasma_dt_profile104____ 9.73839674377490176e+17 +DT_fusion_rate_at_point_105______________________________________________ fusrat_plasma_dt_profile105____ 9.71937128481232256e+17 +DT_fusion_rate_at_point_106______________________________________________ fusrat_plasma_dt_profile106____ 9.70017340127451136e+17 +DT_fusion_rate_at_point_107______________________________________________ fusrat_plasma_dt_profile107____ 9.68080340448145408e+17 +DT_fusion_rate_at_point_108______________________________________________ fusrat_plasma_dt_profile108____ 9.66126161046309632e+17 +DT_fusion_rate_at_point_109______________________________________________ fusrat_plasma_dt_profile109____ 9.64154834001267072e+17 +DT_fusion_rate_at_point_110______________________________________________ fusrat_plasma_dt_profile110____ 9.62166391874057984e+17 +DT_fusion_rate_at_point_111______________________________________________ fusrat_plasma_dt_profile111____ 9.60160867712905216e+17 +DT_fusion_rate_at_point_112______________________________________________ fusrat_plasma_dt_profile112____ 9.58138295058726400e+17 +DT_fusion_rate_at_point_113______________________________________________ fusrat_plasma_dt_profile113____ 9.56098707950741376e+17 +DT_fusion_rate_at_point_114______________________________________________ fusrat_plasma_dt_profile114____ 9.54042140932115200e+17 +DT_fusion_rate_at_point_115______________________________________________ fusrat_plasma_dt_profile115____ 9.51968629055694976e+17 +DT_fusion_rate_at_point_116______________________________________________ fusrat_plasma_dt_profile116____ 9.49878207889793536e+17 +DT_fusion_rate_at_point_117______________________________________________ fusrat_plasma_dt_profile117____ 9.47770913524057856e+17 +DT_fusion_rate_at_point_118______________________________________________ fusrat_plasma_dt_profile118____ 9.45646782575393024e+17 +DT_fusion_rate_at_point_119______________________________________________ fusrat_plasma_dt_profile119____ 9.43505852193952512e+17 +DT_fusion_rate_at_point_120______________________________________________ fusrat_plasma_dt_profile120____ 9.41348160069222912e+17 +DT_fusion_rate_at_point_121______________________________________________ fusrat_plasma_dt_profile121____ 9.39173744436138496e+17 +DT_fusion_rate_at_point_122______________________________________________ fusrat_plasma_dt_profile122____ 9.36982644081299328e+17 +DT_fusion_rate_at_point_123______________________________________________ fusrat_plasma_dt_profile123____ 9.34774898349241472e+17 +DT_fusion_rate_at_point_124______________________________________________ fusrat_plasma_dt_profile124____ 9.32550547148774528e+17 +DT_fusion_rate_at_point_125______________________________________________ fusrat_plasma_dt_profile125____ 9.30309630959407872e+17 +DT_fusion_rate_at_point_126______________________________________________ fusrat_plasma_dt_profile126____ 9.28052190837828352e+17 +DT_fusion_rate_at_point_127______________________________________________ fusrat_plasma_dt_profile127____ 9.25778268424456448e+17 +DT_fusion_rate_at_point_128______________________________________________ fusrat_plasma_dt_profile128____ 9.23487905950076416e+17 +DT_fusion_rate_at_point_129______________________________________________ fusrat_plasma_dt_profile129____ 9.21181146242532992e+17 +DT_fusion_rate_at_point_130______________________________________________ fusrat_plasma_dt_profile130____ 9.18858032733501696e+17 +DT_fusion_rate_at_point_131______________________________________________ fusrat_plasma_dt_profile131____ 9.16518609465334656e+17 +DT_fusion_rate_at_point_132______________________________________________ fusrat_plasma_dt_profile132____ 9.14162921097966976e+17 +DT_fusion_rate_at_point_133______________________________________________ fusrat_plasma_dt_profile133____ 9.11791012915914752e+17 +DT_fusion_rate_at_point_134______________________________________________ fusrat_plasma_dt_profile134____ 9.09402930835324928e+17 +DT_fusion_rate_at_point_135______________________________________________ fusrat_plasma_dt_profile135____ 9.06998721411111296e+17 +DT_fusion_rate_at_point_136______________________________________________ fusrat_plasma_dt_profile136____ 9.04578431844165504e+17 +DT_fusion_rate_at_point_137______________________________________________ fusrat_plasma_dt_profile137____ 9.02142109988622592e+17 +DT_fusion_rate_at_point_138______________________________________________ fusrat_plasma_dt_profile138____ 8.99689804359231488e+17 +DT_fusion_rate_at_point_139______________________________________________ fusrat_plasma_dt_profile139____ 8.97221564138761856e+17 +DT_fusion_rate_at_point_140______________________________________________ fusrat_plasma_dt_profile140____ 8.94737439185516800e+17 +DT_fusion_rate_at_point_141______________________________________________ fusrat_plasma_dt_profile141____ 8.92237480040898432e+17 +DT_fusion_rate_at_point_142______________________________________________ fusrat_plasma_dt_profile142____ 8.89721737937064576e+17 +DT_fusion_rate_at_point_143______________________________________________ fusrat_plasma_dt_profile143____ 8.87190264804639744e+17 +DT_fusion_rate_at_point_144______________________________________________ fusrat_plasma_dt_profile144____ 8.84643113280516096e+17 +DT_fusion_rate_at_point_145______________________________________________ fusrat_plasma_dt_profile145____ 8.82080336715722880e+17 +DT_fusion_rate_at_point_146______________________________________________ fusrat_plasma_dt_profile146____ 8.79501989183371392e+17 +DT_fusion_rate_at_point_147______________________________________________ fusrat_plasma_dt_profile147____ 8.76908125486673664e+17 +DT_fusion_rate_at_point_148______________________________________________ fusrat_plasma_dt_profile148____ 8.74298801167032576e+17 +DT_fusion_rate_at_point_149______________________________________________ fusrat_plasma_dt_profile149____ 8.71674072512213248e+17 +DT_fusion_rate_at_point_150______________________________________________ fusrat_plasma_dt_profile150____ 8.69033996564580224e+17 +DT_fusion_rate_at_point_151______________________________________________ fusrat_plasma_dt_profile151____ 8.66378631129419008e+17 +DT_fusion_rate_at_point_152______________________________________________ fusrat_plasma_dt_profile152____ 8.63708034783320832e+17 +DT_fusion_rate_at_point_153______________________________________________ fusrat_plasma_dt_profile153____ 8.61022266882652800e+17 +DT_fusion_rate_at_point_154______________________________________________ fusrat_plasma_dt_profile154____ 8.58321387572092032e+17 +DT_fusion_rate_at_point_155______________________________________________ fusrat_plasma_dt_profile155____ 8.55605457793238400e+17 +DT_fusion_rate_at_point_156______________________________________________ fusrat_plasma_dt_profile156____ 8.52874539293300352e+17 +DT_fusion_rate_at_point_157______________________________________________ fusrat_plasma_dt_profile157____ 8.50128694633862656e+17 +DT_fusion_rate_at_point_158______________________________________________ fusrat_plasma_dt_profile158____ 8.47367987199706496e+17 +DT_fusion_rate_at_point_159______________________________________________ fusrat_plasma_dt_profile159____ 8.44592481207725056e+17 +DT_fusion_rate_at_point_160______________________________________________ fusrat_plasma_dt_profile160____ 8.41802241715899648e+17 +DT_fusion_rate_at_point_161______________________________________________ fusrat_plasma_dt_profile161____ 8.38997334632349056e+17 +DT_fusion_rate_at_point_162______________________________________________ fusrat_plasma_dt_profile162____ 8.36177826724457344e+17 +DT_fusion_rate_at_point_163______________________________________________ fusrat_plasma_dt_profile163____ 8.33343785628069120e+17 +DT_fusion_rate_at_point_164______________________________________________ fusrat_plasma_dt_profile164____ 8.30495279856753024e+17 +DT_fusion_rate_at_point_165______________________________________________ fusrat_plasma_dt_profile165____ 8.27632378811141120e+17 +DT_fusion_rate_at_point_166______________________________________________ fusrat_plasma_dt_profile166____ 8.24755152788340096e+17 +DT_fusion_rate_at_point_167______________________________________________ fusrat_plasma_dt_profile167____ 8.21863672991407104e+17 +DT_fusion_rate_at_point_168______________________________________________ fusrat_plasma_dt_profile168____ 8.18958011538897280e+17 +DT_fusion_rate_at_point_169______________________________________________ fusrat_plasma_dt_profile169____ 8.16038241474481024e+17 +DT_fusion_rate_at_point_170______________________________________________ fusrat_plasma_dt_profile170____ 8.13104436776630912e+17 +DT_fusion_rate_at_point_171______________________________________________ fusrat_plasma_dt_profile171____ 8.10156672368374016e+17 +DT_fusion_rate_at_point_172______________________________________________ fusrat_plasma_dt_profile172____ 8.07195024127103744e+17 +DT_fusion_rate_at_point_173______________________________________________ fusrat_plasma_dt_profile173____ 8.04219568894478976e+17 +DT_fusion_rate_at_point_174______________________________________________ fusrat_plasma_dt_profile174____ 8.01230384486361728e+17 +DT_fusion_rate_at_point_175______________________________________________ fusrat_plasma_dt_profile175____ 7.98227549702838272e+17 +DT_fusion_rate_at_point_176______________________________________________ fusrat_plasma_dt_profile176____ 7.95211144338294272e+17 +DT_fusion_rate_at_point_177______________________________________________ fusrat_plasma_dt_profile177____ 7.92181249191563776e+17 +DT_fusion_rate_at_point_178______________________________________________ fusrat_plasma_dt_profile178____ 7.89137946076116992e+17 +DT_fusion_rate_at_point_179______________________________________________ fusrat_plasma_dt_profile179____ 7.86081317830336512e+17 +DT_fusion_rate_at_point_180______________________________________________ fusrat_plasma_dt_profile180____ 7.83011448327831424e+17 +DT_fusion_rate_at_point_181______________________________________________ fusrat_plasma_dt_profile181____ 7.79928422487820032e+17 +DT_fusion_rate_at_point_182______________________________________________ fusrat_plasma_dt_profile182____ 7.76832326285566080e+17 +DT_fusion_rate_at_point_183______________________________________________ fusrat_plasma_dt_profile183____ 7.73723246762866816e+17 +DT_fusion_rate_at_point_184______________________________________________ fusrat_plasma_dt_profile184____ 7.70601272038605952e+17 +DT_fusion_rate_at_point_185______________________________________________ fusrat_plasma_dt_profile185____ 7.67466491319346560e+17 +DT_fusion_rate_at_point_186______________________________________________ fusrat_plasma_dt_profile186____ 7.64318994909986176e+17 +DT_fusion_rate_at_point_187______________________________________________ fusrat_plasma_dt_profile187____ 7.61158874224447104e+17 +DT_fusion_rate_at_point_188______________________________________________ fusrat_plasma_dt_profile188____ 7.57986221796434432e+17 +DT_fusion_rate_at_point_189______________________________________________ fusrat_plasma_dt_profile189____ 7.54801131290218880e+17 +DT_fusion_rate_at_point_190______________________________________________ fusrat_plasma_dt_profile190____ 7.51603697511482624e+17 +DT_fusion_rate_at_point_191______________________________________________ fusrat_plasma_dt_profile191____ 7.48394016418192128e+17 +DT_fusion_rate_at_point_192______________________________________________ fusrat_plasma_dt_profile192____ 7.45172185131520896e+17 +DT_fusion_rate_at_point_193______________________________________________ fusrat_plasma_dt_profile193____ 7.41938301946808192e+17 +DT_fusion_rate_at_point_194______________________________________________ fusrat_plasma_dt_profile194____ 7.38692466344553600e+17 +DT_fusion_rate_at_point_195______________________________________________ fusrat_plasma_dt_profile195____ 7.35434779001444096e+17 +DT_fusion_rate_at_point_196______________________________________________ fusrat_plasma_dt_profile196____ 7.32165341801412992e+17 +DT_fusion_rate_at_point_197______________________________________________ fusrat_plasma_dt_profile197____ 7.28884257846729856e+17 +DT_fusion_rate_at_point_198______________________________________________ fusrat_plasma_dt_profile198____ 7.25591631469117696e+17 +DT_fusion_rate_at_point_199______________________________________________ fusrat_plasma_dt_profile199____ 7.22287568240888192e+17 +DT_fusion_rate_at_point_200______________________________________________ fusrat_plasma_dt_profile200____ 7.18972174986106368e+17 +DT_fusion_rate_at_point_201______________________________________________ fusrat_plasma_dt_profile201____ 7.15645559791767552e+17 +DT_fusion_rate_at_point_202______________________________________________ fusrat_plasma_dt_profile202____ 7.12307832018991360e+17 +DT_fusion_rate_at_point_203______________________________________________ fusrat_plasma_dt_profile203____ 7.08959102314227712e+17 +DT_fusion_rate_at_point_204______________________________________________ fusrat_plasma_dt_profile204____ 7.05599482620477568e+17 +DT_fusion_rate_at_point_205______________________________________________ fusrat_plasma_dt_profile205____ 7.02229086188507008e+17 +DT_fusion_rate_at_point_206______________________________________________ fusrat_plasma_dt_profile206____ 6.98848027588076928e+17 +DT_fusion_rate_at_point_207______________________________________________ fusrat_plasma_dt_profile207____ 6.95456422719167360e+17 +DT_fusion_rate_at_point_208______________________________________________ fusrat_plasma_dt_profile208____ 6.92054388823187456e+17 +DT_fusion_rate_at_point_209______________________________________________ fusrat_plasma_dt_profile209____ 6.88642044494198784e+17 +DT_fusion_rate_at_point_210______________________________________________ fusrat_plasma_dt_profile210____ 6.85219509690097024e+17 +DT_fusion_rate_at_point_211______________________________________________ fusrat_plasma_dt_profile211____ 6.81786905743808512e+17 +DT_fusion_rate_at_point_212______________________________________________ fusrat_plasma_dt_profile212____ 6.78344355374438656e+17 +DT_fusion_rate_at_point_213______________________________________________ fusrat_plasma_dt_profile213____ 6.74891982698413056e+17 +DT_fusion_rate_at_point_214______________________________________________ fusrat_plasma_dt_profile214____ 6.71429913240578432e+17 +DT_fusion_rate_at_point_215______________________________________________ fusrat_plasma_dt_profile215____ 6.67958273945282816e+17 +DT_fusion_rate_at_point_216______________________________________________ fusrat_plasma_dt_profile216____ 6.64477193187395200e+17 +DT_fusion_rate_at_point_217______________________________________________ fusrat_plasma_dt_profile217____ 6.60986800783304704e+17 +DT_fusion_rate_at_point_218______________________________________________ fusrat_plasma_dt_profile218____ 6.57487228001853312e+17 +DT_fusion_rate_at_point_219______________________________________________ fusrat_plasma_dt_profile219____ 6.53978607575224704e+17 +DT_fusion_rate_at_point_220______________________________________________ fusrat_plasma_dt_profile220____ 6.50461073709764736e+17 +DT_fusion_rate_at_point_221______________________________________________ fusrat_plasma_dt_profile221____ 6.46934762096744192e+17 +DT_fusion_rate_at_point_222______________________________________________ fusrat_plasma_dt_profile222____ 6.43399809923045248e+17 +DT_fusion_rate_at_point_223______________________________________________ fusrat_plasma_dt_profile223____ 6.39856355881770240e+17 +DT_fusion_rate_at_point_224______________________________________________ fusrat_plasma_dt_profile224____ 6.36304540182775040e+17 +DT_fusion_rate_at_point_225______________________________________________ fusrat_plasma_dt_profile225____ 6.32744504563096576e+17 +DT_fusion_rate_at_point_226______________________________________________ fusrat_plasma_dt_profile226____ 6.29176392297302912e+17 +DT_fusion_rate_at_point_227______________________________________________ fusrat_plasma_dt_profile227____ 6.25600348207724672e+17 +DT_fusion_rate_at_point_228______________________________________________ fusrat_plasma_dt_profile228____ 6.22016518674581888e+17 +DT_fusion_rate_at_point_229______________________________________________ fusrat_plasma_dt_profile229____ 6.18425051645998848e+17 +DT_fusion_rate_at_point_230______________________________________________ fusrat_plasma_dt_profile230____ 6.14826096647884032e+17 +DT_fusion_rate_at_point_231______________________________________________ fusrat_plasma_dt_profile231____ 6.11219804793684992e+17 +DT_fusion_rate_at_point_232______________________________________________ fusrat_plasma_dt_profile232____ 6.07606328793998848e+17 +DT_fusion_rate_at_point_233______________________________________________ fusrat_plasma_dt_profile233____ 6.03985822966036992e+17 +DT_fusion_rate_at_point_234______________________________________________ fusrat_plasma_dt_profile234____ 6.00358443242935168e+17 +DT_fusion_rate_at_point_235______________________________________________ fusrat_plasma_dt_profile235____ 5.96724347182890624e+17 +DT_fusion_rate_at_point_236______________________________________________ fusrat_plasma_dt_profile236____ 5.93083693978133888e+17 +DT_fusion_rate_at_point_237______________________________________________ fusrat_plasma_dt_profile237____ 5.89436644463710976e+17 +DT_fusion_rate_at_point_238______________________________________________ fusrat_plasma_dt_profile238____ 5.85783361126081920e+17 +DT_fusion_rate_at_point_239______________________________________________ fusrat_plasma_dt_profile239____ 5.82124008111505664e+17 +DT_fusion_rate_at_point_240______________________________________________ fusrat_plasma_dt_profile240____ 5.78458751234226560e+17 +DT_fusion_rate_at_point_241______________________________________________ fusrat_plasma_dt_profile241____ 5.74787757984429312e+17 +DT_fusion_rate_at_point_242______________________________________________ fusrat_plasma_dt_profile242____ 5.71111197535965248e+17 +DT_fusion_rate_at_point_243______________________________________________ fusrat_plasma_dt_profile243____ 5.67429240753840512e+17 +DT_fusion_rate_at_point_244______________________________________________ fusrat_plasma_dt_profile244____ 5.63742060201443968e+17 +DT_fusion_rate_at_point_245______________________________________________ fusrat_plasma_dt_profile245____ 5.60049830147516416e+17 +DT_fusion_rate_at_point_246______________________________________________ fusrat_plasma_dt_profile246____ 5.56352726572844160e+17 +DT_fusion_rate_at_point_247______________________________________________ fusrat_plasma_dt_profile247____ 5.52650927176658048e+17 +DT_fusion_rate_at_point_248______________________________________________ fusrat_plasma_dt_profile248____ 5.48944611382744512e+17 +DT_fusion_rate_at_point_249______________________________________________ fusrat_plasma_dt_profile249____ 5.45233960345234560e+17 +DT_fusion_rate_at_point_250______________________________________________ fusrat_plasma_dt_profile250____ 5.41519156954074944e+17 +DT_fusion_rate_at_point_251______________________________________________ fusrat_plasma_dt_profile251____ 5.37800385840161088e+17 +DT_fusion_rate_at_point_252______________________________________________ fusrat_plasma_dt_profile252____ 5.34077833380118656e+17 +DT_fusion_rate_at_point_253______________________________________________ fusrat_plasma_dt_profile253____ 5.30351687700720896e+17 +DT_fusion_rate_at_point_254______________________________________________ fusrat_plasma_dt_profile254____ 5.26622138682932032e+17 +DT_fusion_rate_at_point_255______________________________________________ fusrat_plasma_dt_profile255____ 5.22889377965553408e+17 +DT_fusion_rate_at_point_256______________________________________________ fusrat_plasma_dt_profile256____ 5.19153598948470592e+17 +DT_fusion_rate_at_point_257______________________________________________ fusrat_plasma_dt_profile257____ 5.15414996795470144e+17 +DT_fusion_rate_at_point_258______________________________________________ fusrat_plasma_dt_profile258____ 5.11673768436632128e+17 +DT_fusion_rate_at_point_259______________________________________________ fusrat_plasma_dt_profile259____ 5.07930112570262976e+17 +DT_fusion_rate_at_point_260______________________________________________ fusrat_plasma_dt_profile260____ 5.04184229664359168e+17 +DT_fusion_rate_at_point_261______________________________________________ fusrat_plasma_dt_profile261____ 5.00436321957599616e+17 +DT_fusion_rate_at_point_262______________________________________________ fusrat_plasma_dt_profile262____ 4.96686593459824192e+17 +DT_fusion_rate_at_point_263______________________________________________ fusrat_plasma_dt_profile263____ 4.92935249952002176e+17 +DT_fusion_rate_at_point_264______________________________________________ fusrat_plasma_dt_profile264____ 4.89182498985673664e+17 +DT_fusion_rate_at_point_265______________________________________________ fusrat_plasma_dt_profile265____ 4.85428549881825600e+17 +DT_fusion_rate_at_point_266______________________________________________ fusrat_plasma_dt_profile266____ 4.81673613729210048e+17 +DT_fusion_rate_at_point_267______________________________________________ fusrat_plasma_dt_profile267____ 4.77917903382072768e+17 +DT_fusion_rate_at_point_268______________________________________________ fusrat_plasma_dt_profile268____ 4.74161633457276096e+17 +DT_fusion_rate_at_point_269______________________________________________ fusrat_plasma_dt_profile269____ 4.70405020330792512e+17 +DT_fusion_rate_at_point_270______________________________________________ fusrat_plasma_dt_profile270____ 4.66648282133565760e+17 +DT_fusion_rate_at_point_271______________________________________________ fusrat_plasma_dt_profile271____ 4.62891638746697920e+17 +DT_fusion_rate_at_point_272______________________________________________ fusrat_plasma_dt_profile272____ 4.59135311795958144e+17 +DT_fusion_rate_at_point_273______________________________________________ fusrat_plasma_dt_profile273____ 4.55379524645593280e+17 +DT_fusion_rate_at_point_274______________________________________________ fusrat_plasma_dt_profile274____ 4.51624502391404352e+17 +DT_fusion_rate_at_point_275______________________________________________ fusrat_plasma_dt_profile275____ 4.47870471853088320e+17 +DT_fusion_rate_at_point_276______________________________________________ fusrat_plasma_dt_profile276____ 4.44117661565807872e+17 +DT_fusion_rate_at_point_277______________________________________________ fusrat_plasma_dt_profile277____ 4.40366301770977152e+17 +DT_fusion_rate_at_point_278______________________________________________ fusrat_plasma_dt_profile278____ 4.36616624406241472e+17 +DT_fusion_rate_at_point_279______________________________________________ fusrat_plasma_dt_profile279____ 4.32868863094615808e+17 +DT_fusion_rate_at_point_280______________________________________________ fusrat_plasma_dt_profile280____ 4.29123253132783808e+17 +DT_fusion_rate_at_point_281______________________________________________ fusrat_plasma_dt_profile281____ 4.25380031478508672e+17 +DT_fusion_rate_at_point_282______________________________________________ fusrat_plasma_dt_profile282____ 4.21639436737151744e+17 +DT_fusion_rate_at_point_283______________________________________________ fusrat_plasma_dt_profile283____ 4.17901709147266624e+17 +DT_fusion_rate_at_point_284______________________________________________ fusrat_plasma_dt_profile284____ 4.14167090565243072e+17 +DT_fusion_rate_at_point_285______________________________________________ fusrat_plasma_dt_profile285____ 4.10435824448994176e+17 +DT_fusion_rate_at_point_286______________________________________________ fusrat_plasma_dt_profile286____ 4.06708155840628160e+17 +DT_fusion_rate_at_point_287______________________________________________ fusrat_plasma_dt_profile287____ 4.02984331348125504e+17 +DT_fusion_rate_at_point_288______________________________________________ fusrat_plasma_dt_profile288____ 3.99264599125952576e+17 +DT_fusion_rate_at_point_289______________________________________________ fusrat_plasma_dt_profile289____ 3.95549208854622208e+17 +DT_fusion_rate_at_point_290______________________________________________ fusrat_plasma_dt_profile290____ 3.91838411719155136e+17 +DT_fusion_rate_at_point_291______________________________________________ fusrat_plasma_dt_profile291____ 3.88132460386425536e+17 +DT_fusion_rate_at_point_292______________________________________________ fusrat_plasma_dt_profile292____ 3.84431608981358720e+17 +DT_fusion_rate_at_point_293______________________________________________ fusrat_plasma_dt_profile293____ 3.80736113061971776e+17 +DT_fusion_rate_at_point_294______________________________________________ fusrat_plasma_dt_profile294____ 3.77046229593206784e+17 +DT_fusion_rate_at_point_295______________________________________________ fusrat_plasma_dt_profile295____ 3.73362216919557568e+17 +DT_fusion_rate_at_point_296______________________________________________ fusrat_plasma_dt_profile296____ 3.69684334736437056e+17 +DT_fusion_rate_at_point_297______________________________________________ fusrat_plasma_dt_profile297____ 3.66012844060288704e+17 +DT_fusion_rate_at_point_298______________________________________________ fusrat_plasma_dt_profile298____ 3.62348007197388480e+17 +DT_fusion_rate_at_point_299______________________________________________ fusrat_plasma_dt_profile299____ 3.58690087711332224e+17 +DT_fusion_rate_at_point_300______________________________________________ fusrat_plasma_dt_profile300____ 3.55039350389172224e+17 +DT_fusion_rate_at_point_301______________________________________________ fusrat_plasma_dt_profile301____ 3.51396061206179328e+17 +DT_fusion_rate_at_point_302______________________________________________ fusrat_plasma_dt_profile302____ 3.47760487289205696e+17 +DT_fusion_rate_at_point_303______________________________________________ fusrat_plasma_dt_profile303____ 3.44132896878625152e+17 +DT_fusion_rate_at_point_304______________________________________________ fusrat_plasma_dt_profile304____ 3.40513559288819520e+17 +DT_fusion_rate_at_point_305______________________________________________ fusrat_plasma_dt_profile305____ 3.36902744867193152e+17 +DT_fusion_rate_at_point_306______________________________________________ fusrat_plasma_dt_profile306____ 3.33300724951686016e+17 +DT_fusion_rate_at_point_307______________________________________________ fusrat_plasma_dt_profile307____ 3.29707771826762816e+17 +DT_fusion_rate_at_point_308______________________________________________ fusrat_plasma_dt_profile308____ 3.26124158677850880e+17 +DT_fusion_rate_at_point_309______________________________________________ fusrat_plasma_dt_profile309____ 3.22550159544210944e+17 +DT_fusion_rate_at_point_310______________________________________________ fusrat_plasma_dt_profile310____ 3.18986049270207424e+17 +DT_fusion_rate_at_point_311______________________________________________ fusrat_plasma_dt_profile311____ 3.15432103454963648e+17 +DT_fusion_rate_at_point_312______________________________________________ fusrat_plasma_dt_profile312____ 3.11888598400370048e+17 +DT_fusion_rate_at_point_313______________________________________________ fusrat_plasma_dt_profile313____ 3.08355811057439040e+17 +DT_fusion_rate_at_point_314______________________________________________ fusrat_plasma_dt_profile314____ 3.04834018970964544e+17 +DT_fusion_rate_at_point_315______________________________________________ fusrat_plasma_dt_profile315____ 3.01323500222488128e+17 +DT_fusion_rate_at_point_316______________________________________________ fusrat_plasma_dt_profile316____ 2.97824533371532544e+17 +DT_fusion_rate_at_point_317______________________________________________ fusrat_plasma_dt_profile317____ 2.94337397395097600e+17 +DT_fusion_rate_at_point_318______________________________________________ fusrat_plasma_dt_profile318____ 2.90862371625390720e+17 +DT_fusion_rate_at_point_319______________________________________________ fusrat_plasma_dt_profile319____ 2.87399735685785344e+17 +DT_fusion_rate_at_point_320______________________________________________ fusrat_plasma_dt_profile320____ 2.83949769424977120e+17 +DT_fusion_rate_at_point_321______________________________________________ fusrat_plasma_dt_profile321____ 2.80512752849339392e+17 +DT_fusion_rate_at_point_322______________________________________________ fusrat_plasma_dt_profile322____ 2.77088966053449696e+17 +DT_fusion_rate_at_point_323______________________________________________ fusrat_plasma_dt_profile323____ 2.73678689148786816e+17 +DT_fusion_rate_at_point_324______________________________________________ fusrat_plasma_dt_profile324____ 2.70282202190574464e+17 +DT_fusion_rate_at_point_325______________________________________________ fusrat_plasma_dt_profile325____ 2.66899785102773760e+17 +DT_fusion_rate_at_point_326______________________________________________ fusrat_plasma_dt_profile326____ 2.63531717601211456e+17 +DT_fusion_rate_at_point_327______________________________________________ fusrat_plasma_dt_profile327____ 2.60178279114832320e+17 +DT_fusion_rate_at_point_328______________________________________________ fusrat_plasma_dt_profile328____ 2.56839748705080448e+17 +DT_fusion_rate_at_point_329______________________________________________ fusrat_plasma_dt_profile329____ 2.53516404983396576e+17 +DT_fusion_rate_at_point_330______________________________________________ fusrat_plasma_dt_profile330____ 2.50208526026837568e+17 +DT_fusion_rate_at_point_331______________________________________________ fusrat_plasma_dt_profile331____ 2.46916389291812640e+17 +DT_fusion_rate_at_point_332______________________________________________ fusrat_plasma_dt_profile332____ 2.43640271525942848e+17 +DT_fusion_rate_at_point_333______________________________________________ fusrat_plasma_dt_profile333____ 2.40380448678046176e+17 +DT_fusion_rate_at_point_334______________________________________________ fusrat_plasma_dt_profile334____ 2.37137195806254944e+17 +DT_fusion_rate_at_point_335______________________________________________ fusrat_plasma_dt_profile335____ 2.33910786984277952e+17 +DT_fusion_rate_at_point_336______________________________________________ fusrat_plasma_dt_profile336____ 2.30701495205815104e+17 +DT_fusion_rate_at_point_337______________________________________________ fusrat_plasma_dt_profile337____ 2.27509592287136096e+17 +DT_fusion_rate_at_point_338______________________________________________ fusrat_plasma_dt_profile338____ 2.24335348767852000e+17 +DT_fusion_rate_at_point_339______________________________________________ fusrat_plasma_dt_profile339____ 2.21179033809882720e+17 +DT_fusion_rate_at_point_340______________________________________________ fusrat_plasma_dt_profile340____ 2.18040915094655008e+17 +DT_fusion_rate_at_point_341______________________________________________ fusrat_plasma_dt_profile341____ 2.14921258718552512e+17 +DT_fusion_rate_at_point_342______________________________________________ fusrat_plasma_dt_profile342____ 2.11820329086641664e+17 +DT_fusion_rate_at_point_343______________________________________________ fusrat_plasma_dt_profile343____ 2.08738388804713920e+17 +DT_fusion_rate_at_point_344______________________________________________ fusrat_plasma_dt_profile344____ 2.05675698569671520e+17 +DT_fusion_rate_at_point_345______________________________________________ fusrat_plasma_dt_profile345____ 2.02632517058294400e+17 +DT_fusion_rate_at_point_346______________________________________________ fusrat_plasma_dt_profile346____ 1.99609100814440288e+17 +DT_fusion_rate_at_point_347______________________________________________ fusrat_plasma_dt_profile347____ 1.96605704134707968e+17 +DT_fusion_rate_at_point_348______________________________________________ fusrat_plasma_dt_profile348____ 1.93622578952623872e+17 +DT_fusion_rate_at_point_349______________________________________________ fusrat_plasma_dt_profile349____ 1.90659974721401728e+17 +DT_fusion_rate_at_point_350______________________________________________ fusrat_plasma_dt_profile350____ 1.87718138295328960e+17 +DT_fusion_rate_at_point_351______________________________________________ fusrat_plasma_dt_profile351____ 1.84797313809841664e+17 +DT_fusion_rate_at_point_352______________________________________________ fusrat_plasma_dt_profile352____ 1.81897742560358144e+17 +DT_fusion_rate_at_point_353______________________________________________ fusrat_plasma_dt_profile353____ 1.79019662879929120e+17 +DT_fusion_rate_at_point_354______________________________________________ fusrat_plasma_dt_profile354____ 1.76163310015787616e+17 +DT_fusion_rate_at_point_355______________________________________________ fusrat_plasma_dt_profile355____ 1.73328916004870432e+17 +DT_fusion_rate_at_point_356______________________________________________ fusrat_plasma_dt_profile356____ 1.70516709548394400e+17 +DT_fusion_rate_at_point_357______________________________________________ fusrat_plasma_dt_profile357____ 1.67726915885573952e+17 +DT_fusion_rate_at_point_358______________________________________________ fusrat_plasma_dt_profile358____ 1.64959756666570752e+17 +DT_fusion_rate_at_point_359______________________________________________ fusrat_plasma_dt_profile359____ 1.62215449824770080e+17 +DT_fusion_rate_at_point_360______________________________________________ fusrat_plasma_dt_profile360____ 1.59494209448486624e+17 +DT_fusion_rate_at_point_361______________________________________________ fusrat_plasma_dt_profile361____ 1.56796245652198720e+17 +DT_fusion_rate_at_point_362______________________________________________ fusrat_plasma_dt_profile362____ 1.54121764447432352e+17 +DT_fusion_rate_at_point_363______________________________________________ fusrat_plasma_dt_profile363____ 1.51470967613392352e+17 +DT_fusion_rate_at_point_364______________________________________________ fusrat_plasma_dt_profile364____ 1.48844052567478624e+17 +DT_fusion_rate_at_point_365______________________________________________ fusrat_plasma_dt_profile365____ 1.46241212235797088e+17 +DT_fusion_rate_at_point_366______________________________________________ fusrat_plasma_dt_profile366____ 1.43662634923803248e+17 +DT_fusion_rate_at_point_367______________________________________________ fusrat_plasma_dt_profile367____ 1.41108504187208832e+17 +DT_fusion_rate_at_point_368______________________________________________ fusrat_plasma_dt_profile368____ 1.38578998703290496e+17 +DT_fusion_rate_at_point_369______________________________________________ fusrat_plasma_dt_profile369____ 1.36074292142746336e+17 +DT_fusion_rate_at_point_370______________________________________________ fusrat_plasma_dt_profile370____ 1.33594553042245392e+17 +DT_fusion_rate_at_point_371______________________________________________ fusrat_plasma_dt_profile371____ 1.31139944677828928e+17 +DT_fusion_rate_at_point_372______________________________________________ fusrat_plasma_dt_profile372____ 1.28710624939314400e+17 +DT_fusion_rate_at_point_373______________________________________________ fusrat_plasma_dt_profile373____ 1.26306746205871680e+17 +DT_fusion_rate_at_point_374______________________________________________ fusrat_plasma_dt_profile374____ 1.23928455222936144e+17 +DT_fusion_rate_at_point_375______________________________________________ fusrat_plasma_dt_profile375____ 1.21575892980627120e+17 +DT_fusion_rate_at_point_376______________________________________________ fusrat_plasma_dt_profile376____ 1.19249194593855024e+17 +DT_fusion_rate_at_point_377______________________________________________ fusrat_plasma_dt_profile377____ 1.16948489184291184e+17 +DT_fusion_rate_at_point_378______________________________________________ fusrat_plasma_dt_profile378____ 1.14673899764387856e+17 +DT_fusion_rate_at_point_379______________________________________________ fusrat_plasma_dt_profile379____ 1.12425543123636960e+17 +DT_fusion_rate_at_point_380______________________________________________ fusrat_plasma_dt_profile380____ 1.10203529717258128e+17 +DT_fusion_rate_at_point_381______________________________________________ fusrat_plasma_dt_profile381____ 1.08007963557515168e+17 +DT_fusion_rate_at_point_382______________________________________________ fusrat_plasma_dt_profile382____ 1.05838942107855312e+17 +DT_fusion_rate_at_point_383______________________________________________ fusrat_plasma_dt_profile383____ 1.03696556180079008e+17 +DT_fusion_rate_at_point_384______________________________________________ fusrat_plasma_dt_profile384____ 1.01580889834741600e+17 +DT_fusion_rate_at_point_385______________________________________________ fusrat_plasma_dt_profile385____ 9.94920202849974080e+16 +DT_fusion_rate_at_point_386______________________________________________ fusrat_plasma_dt_profile386____ 9.74300178040961920e+16 +DT_fusion_rate_at_point_387______________________________________________ fusrat_plasma_dt_profile387____ 9.53949456367449920e+16 +DT_fusion_rate_at_point_388______________________________________________ fusrat_plasma_dt_profile388____ 9.33868599145489440e+16 +DT_fusion_rate_at_point_389______________________________________________ fusrat_plasma_dt_profile389____ 9.14058095757507040e+16 +DT_fusion_rate_at_point_390______________________________________________ fusrat_plasma_dt_profile390____ 8.94518362894816960e+16 +DT_fusion_rate_at_point_391______________________________________________ fusrat_plasma_dt_profile391____ 8.75249743847483520e+16 +DT_fusion_rate_at_point_392______________________________________________ fusrat_plasma_dt_profile392____ 8.56252507843700160e+16 +DT_fusion_rate_at_point_393______________________________________________ fusrat_plasma_dt_profile393____ 8.37526849440913760e+16 +DT_fusion_rate_at_point_394______________________________________________ fusrat_plasma_dt_profile394____ 8.19072887970852320e+16 +DT_fusion_rate_at_point_395______________________________________________ fusrat_plasma_dt_profile395____ 8.00890667040699520e+16 +DT_fusion_rate_at_point_396______________________________________________ fusrat_plasma_dt_profile396____ 7.82980154092580800e+16 +DT_fusion_rate_at_point_397______________________________________________ fusrat_plasma_dt_profile397____ 7.65341240023562720e+16 +DT_fusion_rate_at_point_398______________________________________________ fusrat_plasma_dt_profile398____ 7.47973738868320320e+16 +DT_fusion_rate_at_point_399______________________________________________ fusrat_plasma_dt_profile399____ 7.30877387546646400e+16 +DT_fusion_rate_at_point_400______________________________________________ fusrat_plasma_dt_profile400____ 7.14051845677942400e+16 +DT_fusion_rate_at_point_401______________________________________________ fusrat_plasma_dt_profile401____ 6.97496695464792000e+16 +DT_fusion_rate_at_point_402______________________________________________ fusrat_plasma_dt_profile402____ 6.81211441647745440e+16 +DT_fusion_rate_at_point_403______________________________________________ fusrat_plasma_dt_profile403____ 6.65195511533371840e+16 +DT_fusion_rate_at_point_404______________________________________________ fusrat_plasma_dt_profile404____ 6.49448255097623840e+16 +DT_fusion_rate_at_point_405______________________________________________ fusrat_plasma_dt_profile405____ 6.33968945166546880e+16 +DT_fusion_rate_at_point_406______________________________________________ fusrat_plasma_dt_profile406____ 6.18756777676323360e+16 +DT_fusion_rate_at_point_407______________________________________________ fusrat_plasma_dt_profile407____ 6.03810872014626880e+16 +DT_fusion_rate_at_point_408______________________________________________ fusrat_plasma_dt_profile408____ 5.89130271445196640e+16 +DT_fusion_rate_at_point_409______________________________________________ fusrat_plasma_dt_profile409____ 5.74713943617605520e+16 +DT_fusion_rate_at_point_410______________________________________________ fusrat_plasma_dt_profile410____ 5.60560781164061440e+16 +DT_fusion_rate_at_point_411______________________________________________ fusrat_plasma_dt_profile411____ 5.46669602385153360e+16 +DT_fusion_rate_at_point_412______________________________________________ fusrat_plasma_dt_profile412____ 5.33039152026398960e+16 +DT_fusion_rate_at_point_413______________________________________________ fusrat_plasma_dt_profile413____ 5.19668102147464880e+16 +DT_fusion_rate_at_point_414______________________________________________ fusrat_plasma_dt_profile414____ 5.06555053085917440e+16 +DT_fusion_rate_at_point_415______________________________________________ fusrat_plasma_dt_profile415____ 4.93698534517401680e+16 +DT_fusion_rate_at_point_416______________________________________________ fusrat_plasma_dt_profile416____ 4.81097006614166560e+16 +DT_fusion_rate_at_point_417______________________________________________ fusrat_plasma_dt_profile417____ 4.68748861303876240e+16 +DT_fusion_rate_at_point_418______________________________________________ fusrat_plasma_dt_profile418____ 4.56652423630786000e+16 +DT_fusion_rate_at_point_419______________________________________________ fusrat_plasma_dt_profile419____ 4.44805953221365840e+16 +DT_fusion_rate_at_point_420______________________________________________ fusrat_plasma_dt_profile420____ 4.33207645856638960e+16 +DT_fusion_rate_at_point_421______________________________________________ fusrat_plasma_dt_profile421____ 4.21855635153642480e+16 +DT_fusion_rate_at_point_422______________________________________________ fusrat_plasma_dt_profile422____ 4.10747994358602080e+16 +DT_fusion_rate_at_point_423______________________________________________ fusrat_plasma_dt_profile423____ 3.99882738254673840e+16 +DT_fusion_rate_at_point_424______________________________________________ fusrat_plasma_dt_profile424____ 3.89257825187393840e+16 +DT_fusion_rate_at_point_425______________________________________________ fusrat_plasma_dt_profile425____ 3.78871159211368800e+16 +DT_fusion_rate_at_point_426______________________________________________ fusrat_plasma_dt_profile426____ 3.68720592362158560e+16 +DT_fusion_rate_at_point_427______________________________________________ fusrat_plasma_dt_profile427____ 3.58803927057873920e+16 +DT_fusion_rate_at_point_428______________________________________________ fusrat_plasma_dt_profile428____ 3.49118918635658880e+16 +DT_fusion_rate_at_point_429______________________________________________ fusrat_plasma_dt_profile429____ 3.39663278028991600e+16 +DT_fusion_rate_at_point_430______________________________________________ fusrat_plasma_dt_profile430____ 3.30434674592734960e+16 +DT_fusion_rate_at_point_431______________________________________________ fusrat_plasma_dt_profile431____ 3.21430739083943960e+16 +DT_fusion_rate_at_point_432______________________________________________ fusrat_plasma_dt_profile432____ 3.12649066807842680e+16 +DT_fusion_rate_at_point_433______________________________________________ fusrat_plasma_dt_profile433____ 3.04087220939980760e+16 +DT_fusion_rate_at_point_434______________________________________________ fusrat_plasma_dt_profile434____ 2.95742736037573680e+16 +DT_fusion_rate_at_point_435______________________________________________ fusrat_plasma_dt_profile435____ 2.87613121755338920e+16 +DT_fusion_rate_at_point_436______________________________________________ fusrat_plasma_dt_profile436____ 2.79695866784038720e+16 +DT_fusion_rate_at_point_437______________________________________________ fusrat_plasma_dt_profile437____ 2.71988443033298240e+16 +DT_fusion_rate_at_point_438______________________________________________ fusrat_plasma_dt_profile438____ 2.64488310084499800e+16 +DT_fusion_rate_at_point_439______________________________________________ fusrat_plasma_dt_profile439____ 2.57192919944543720e+16 +DT_fusion_rate_at_point_440______________________________________________ fusrat_plasma_dt_profile440____ 2.50099722137482480e+16 +DT_fusion_rate_at_point_441______________________________________________ fusrat_plasma_dt_profile441____ 2.43206169178593600e+16 +DT_fusion_rate_at_point_442______________________________________________ fusrat_plasma_dt_profile442____ 2.36509722484811160e+16 +DT_fusion_rate_at_point_443______________________________________________ fusrat_plasma_dt_profile443____ 2.30007858787005560e+16 +DT_fusion_rate_at_point_444______________________________________________ fusrat_plasma_dt_profile444____ 2.23698077124107960e+16 +DT_fusion_rate_at_point_445______________________________________________ fusrat_plasma_dt_profile445____ 2.17577906517217360e+16 +DT_fusion_rate_at_point_446______________________________________________ fusrat_plasma_dt_profile446____ 2.11644914444871880e+16 +DT_fusion_rate_at_point_447______________________________________________ fusrat_plasma_dt_profile447____ 2.05896716270055800e+16 +DT_fusion_rate_at_point_448______________________________________________ fusrat_plasma_dt_profile448____ 2.00330985807341320e+16 +DT_fusion_rate_at_point_449______________________________________________ fusrat_plasma_dt_profile449____ 1.94945467267800520e+16 +DT_fusion_rate_at_point_450______________________________________________ fusrat_plasma_dt_profile450____ 1.89737988883986720e+16 +DT_fusion_rate_at_point_451______________________________________________ fusrat_plasma_dt_profile451____ 1.84706478603263160e+16 +DT_fusion_rate_at_point_452______________________________________________ fusrat_plasma_dt_profile452____ 1.79848982353514500e+16 +DT_fusion_rate_at_point_453______________________________________________ fusrat_plasma_dt_profile453____ 1.75163685543288600e+16 +DT_fusion_rate_at_point_454______________________________________________ fusrat_plasma_dt_profile454____ 1.70648938677462840e+16 +DT_fusion_rate_at_point_455______________________________________________ fusrat_plasma_dt_profile455____ 1.66303288278337700e+16 +DT_fusion_rate_at_point_456______________________________________________ fusrat_plasma_dt_profile456____ 1.62125514745819120e+16 +DT_fusion_rate_at_point_457______________________________________________ fusrat_plasma_dt_profile457____ 1.58114679441572320e+16 +DT_fusion_rate_at_point_458______________________________________________ fusrat_plasma_dt_profile458____ 1.54270184260955280e+16 +DT_fusion_rate_at_point_459______________________________________________ fusrat_plasma_dt_profile459____ 1.50591848468640720e+16 +DT_fusion_rate_at_point_460______________________________________________ fusrat_plasma_dt_profile460____ 1.47080009983651220e+16 +DT_fusion_rate_at_point_461______________________________________________ fusrat_plasma_dt_profile461____ 1.43735662282079980e+16 +DT_fusion_rate_at_point_462______________________________________________ fusrat_plasma_dt_profile462____ 1.40560644954572900e+16 +DT_fusion_rate_at_point_463______________________________________________ fusrat_plasma_dt_profile463____ 1.37557918422891140e+16 +DT_fusion_rate_at_point_464______________________________________________ fusrat_plasma_dt_profile464____ 1.34731977401435800e+16 +DT_fusion_rate_at_point_465______________________________________________ fusrat_plasma_dt_profile465____ 1.32089507967844960e+16 +DT_fusion_rate_at_point_466______________________________________________ fusrat_plasma_dt_profile466____ 1.29640509184818240e+16 +DT_fusion_rate_at_point_467______________________________________________ fusrat_plasma_dt_profile467____ 1.27400407360004180e+16 +DT_fusion_rate_at_point_468______________________________________________ fusrat_plasma_dt_profile468____ 1.25394682968802380e+16 +DT_fusion_rate_at_point_469______________________________________________ fusrat_plasma_dt_profile469____ 1.23672010761825300e+16 +DT_fusion_rate_at_point_470______________________________________________ fusrat_plasma_dt_profile470____ 1.22385736881710940e+16 +DT_fusion_rate_at_point_471______________________________________________ fusrat_plasma_dt_profile471____ 1.06136604480079840e+16 +DT_fusion_rate_at_point_472______________________________________________ fusrat_plasma_dt_profile472____ 9.15008303092494600e+15 +DT_fusion_rate_at_point_473______________________________________________ fusrat_plasma_dt_profile473____ 7.83817825388823800e+15 +DT_fusion_rate_at_point_474______________________________________________ fusrat_plasma_dt_profile474____ 6.66832678446175600e+15 +DT_fusion_rate_at_point_475______________________________________________ fusrat_plasma_dt_profile475____ 5.63098368762584100e+15 +DT_fusion_rate_at_point_476______________________________________________ fusrat_plasma_dt_profile476____ 4.71670983456535100e+15 +DT_fusion_rate_at_point_477______________________________________________ fusrat_plasma_dt_profile477____ 3.91620395201374150e+15 +DT_fusion_rate_at_point_478______________________________________________ fusrat_plasma_dt_profile478____ 3.22033506839547550e+15 +DT_fusion_rate_at_point_479______________________________________________ fusrat_plasma_dt_profile479____ 2.62017509421465800e+15 +DT_fusion_rate_at_point_480______________________________________________ fusrat_plasma_dt_profile480____ 2.10703126012279275e+15 +DT_fusion_rate_at_point_481______________________________________________ fusrat_plasma_dt_profile481____ 1.67247812817196700e+15 +DT_fusion_rate_at_point_482______________________________________________ fusrat_plasma_dt_profile482____ 1.30838889125888050e+15 +DT_fusion_rate_at_point_483______________________________________________ fusrat_plasma_dt_profile483____ 1.00696568397769312e+15 +DT_fusion_rate_at_point_484______________________________________________ fusrat_plasma_dt_profile484____ 7.60768646122880375e+14 +DT_fusion_rate_at_point_485______________________________________________ fusrat_plasma_dt_profile485____ 5.62743508603180125e+14 +DT_fusion_rate_at_point_486______________________________________________ fusrat_plasma_dt_profile486____ 4.06247510438875438e+14 +DT_fusion_rate_at_point_487______________________________________________ fusrat_plasma_dt_profile487____ 2.85073503273922188e+14 +DT_fusion_rate_at_point_488______________________________________________ fusrat_plasma_dt_profile488____ 1.93472152345289875e+14 +DT_fusion_rate_at_point_489______________________________________________ fusrat_plasma_dt_profile489____ 1.26172191521624344e+14 +DT_fusion_rate_at_point_490______________________________________________ fusrat_plasma_dt_profile490____ 7.83987183784187344e+13 +DT_fusion_rate_at_point_491______________________________________________ fusrat_plasma_dt_profile491____ 4.58894930850140781e+13 +DT_fusion_rate_at_point_492______________________________________________ fusrat_plasma_dt_profile492____ 2.49090781055707383e+13 +DT_fusion_rate_at_point_493______________________________________________ fusrat_plasma_dt_profile493____ 1.22603299700199453e+13 +DT_fusion_rate_at_point_494______________________________________________ fusrat_plasma_dt_profile494____ 5.29206984889471680e+12 +DT_fusion_rate_at_point_495______________________________________________ fusrat_plasma_dt_profile495____ 1.90046142391021582e+12 +DT_fusion_rate_at_point_496______________________________________________ fusrat_plasma_dt_profile496____ 5.19359584798729004e+11 +DT_fusion_rate_at_point_497______________________________________________ fusrat_plasma_dt_profile497____ 9.13715453842735443e+10 +DT_fusion_rate_at_point_498______________________________________________ fusrat_plasma_dt_profile498____ 7.17734143699417591e+09 +DT_fusion_rate_at_point_499______________________________________________ fusrat_plasma_dt_profile499____ 8.85147488733996898e+07 +DT_fusion_rate_at_point_500______________________________________________ fusrat_plasma_dt_profile500____ 6.05381810160016926e+02 +D-D_->_T_fusion_rate_at_point_0__________________________________________ fusrat_plasma_dd_triton_profile0_ 6.91261200678207000e+15 +D-D_->_T_fusion_rate_at_point_1__________________________________________ fusrat_plasma_dd_triton_profile1_ 6.91252824793721400e+15 +D-D_->_T_fusion_rate_at_point_2__________________________________________ fusrat_plasma_dd_triton_profile2_ 6.91227697547179000e+15 +D-D_->_T_fusion_rate_at_point_3__________________________________________ fusrat_plasma_dd_triton_profile3_ 6.91185820159304000e+15 +D-D_->_T_fusion_rate_at_point_4__________________________________________ fusrat_plasma_dd_triton_profile4_ 6.91127194664584600e+15 +D-D_->_T_fusion_rate_at_point_5__________________________________________ fusrat_plasma_dd_triton_profile5_ 6.91051823911202100e+15 +D-D_->_T_fusion_rate_at_point_6__________________________________________ fusrat_plasma_dd_triton_profile6_ 6.90959711560916200e+15 +D-D_->_T_fusion_rate_at_point_7__________________________________________ fusrat_plasma_dd_triton_profile7_ 6.90850862088938000e+15 +D-D_->_T_fusion_rate_at_point_8__________________________________________ fusrat_plasma_dd_triton_profile8_ 6.90725280783756200e+15 +D-D_->_T_fusion_rate_at_point_9__________________________________________ fusrat_plasma_dd_triton_profile9_ 6.90582973746943100e+15 +D-D_->_T_fusion_rate_at_point_10_________________________________________ fusrat_plasma_dd_triton_profile10_ 6.90423947892925600e+15 +D-D_->_T_fusion_rate_at_point_11_________________________________________ fusrat_plasma_dd_triton_profile11_ 6.90248210948727900e+15 +D-D_->_T_fusion_rate_at_point_12_________________________________________ fusrat_plasma_dd_triton_profile12_ 6.90055771453681500e+15 +D-D_->_T_fusion_rate_at_point_13_________________________________________ fusrat_plasma_dd_triton_profile13_ 6.89846638759110600e+15 +D-D_->_T_fusion_rate_at_point_14_________________________________________ fusrat_plasma_dd_triton_profile14_ 6.89620823027978300e+15 +D-D_->_T_fusion_rate_at_point_15_________________________________________ fusrat_plasma_dd_triton_profile15_ 6.89378335234509800e+15 +D-D_->_T_fusion_rate_at_point_16_________________________________________ fusrat_plasma_dd_triton_profile16_ 6.89119187163782700e+15 +D-D_->_T_fusion_rate_at_point_17_________________________________________ fusrat_plasma_dd_triton_profile17_ 6.88843391411286100e+15 +D-D_->_T_fusion_rate_at_point_18_________________________________________ fusrat_plasma_dd_triton_profile18_ 6.88550961382447400e+15 +D-D_->_T_fusion_rate_at_point_19_________________________________________ fusrat_plasma_dd_triton_profile19_ 6.88241911292138600e+15 +D-D_->_T_fusion_rate_at_point_20_________________________________________ fusrat_plasma_dd_triton_profile20_ 6.87916256164136100e+15 +D-D_->_T_fusion_rate_at_point_21_________________________________________ fusrat_plasma_dd_triton_profile21_ 6.87574011830565800e+15 +D-D_->_T_fusion_rate_at_point_22_________________________________________ fusrat_plasma_dd_triton_profile22_ 6.87215194931307300e+15 +D-D_->_T_fusion_rate_at_point_23_________________________________________ fusrat_plasma_dd_triton_profile23_ 6.86839822913370600e+15 +D-D_->_T_fusion_rate_at_point_24_________________________________________ fusrat_plasma_dd_triton_profile24_ 6.86447914030248600e+15 +D-D_->_T_fusion_rate_at_point_25_________________________________________ fusrat_plasma_dd_triton_profile25_ 6.86039487341227200e+15 +D-D_->_T_fusion_rate_at_point_26_________________________________________ fusrat_plasma_dd_triton_profile26_ 6.85614562710672800e+15 +D-D_->_T_fusion_rate_at_point_27_________________________________________ fusrat_plasma_dd_triton_profile27_ 6.85173160807292400e+15 +D-D_->_T_fusion_rate_at_point_28_________________________________________ fusrat_plasma_dd_triton_profile28_ 6.84715303103351500e+15 +D-D_->_T_fusion_rate_at_point_29_________________________________________ fusrat_plasma_dd_triton_profile29_ 6.84241011873877700e+15 +D-D_->_T_fusion_rate_at_point_30_________________________________________ fusrat_plasma_dd_triton_profile30_ 6.83750310195814300e+15 +D-D_->_T_fusion_rate_at_point_31_________________________________________ fusrat_plasma_dd_triton_profile31_ 6.83243221947163300e+15 +D-D_->_T_fusion_rate_at_point_32_________________________________________ fusrat_plasma_dd_triton_profile32_ 6.82719771806084700e+15 +D-D_->_T_fusion_rate_at_point_33_________________________________________ fusrat_plasma_dd_triton_profile33_ 6.82179985249968000e+15 +D-D_->_T_fusion_rate_at_point_34_________________________________________ fusrat_plasma_dd_triton_profile34_ 6.81623888554478000e+15 +D-D_->_T_fusion_rate_at_point_35_________________________________________ fusrat_plasma_dd_triton_profile35_ 6.81051508792561300e+15 +D-D_->_T_fusion_rate_at_point_36_________________________________________ fusrat_plasma_dd_triton_profile36_ 6.80462873833435700e+15 +D-D_->_T_fusion_rate_at_point_37_________________________________________ fusrat_plasma_dd_triton_profile37_ 6.79858012341530500e+15 +D-D_->_T_fusion_rate_at_point_38_________________________________________ fusrat_plasma_dd_triton_profile38_ 6.79236953775412700e+15 +D-D_->_T_fusion_rate_at_point_39_________________________________________ fusrat_plasma_dd_triton_profile39_ 6.78599728386676100e+15 +D-D_->_T_fusion_rate_at_point_40_________________________________________ fusrat_plasma_dd_triton_profile40_ 6.77946367218799400e+15 +D-D_->_T_fusion_rate_at_point_41_________________________________________ fusrat_plasma_dd_triton_profile41_ 6.77276902105972200e+15 +D-D_->_T_fusion_rate_at_point_42_________________________________________ fusrat_plasma_dd_triton_profile42_ 6.76591365671898400e+15 +D-D_->_T_fusion_rate_at_point_43_________________________________________ fusrat_plasma_dd_triton_profile43_ 6.75889791328552600e+15 +D-D_->_T_fusion_rate_at_point_44_________________________________________ fusrat_plasma_dd_triton_profile44_ 6.75172213274927800e+15 +D-D_->_T_fusion_rate_at_point_45_________________________________________ fusrat_plasma_dd_triton_profile45_ 6.74438666495735700e+15 +D-D_->_T_fusion_rate_at_point_46_________________________________________ fusrat_plasma_dd_triton_profile46_ 6.73689186760080700e+15 +D-D_->_T_fusion_rate_at_point_47_________________________________________ fusrat_plasma_dd_triton_profile47_ 6.72923810620103100e+15 +D-D_->_T_fusion_rate_at_point_48_________________________________________ fusrat_plasma_dd_triton_profile48_ 6.72142575409597100e+15 +D-D_->_T_fusion_rate_at_point_49_________________________________________ fusrat_plasma_dd_triton_profile49_ 6.71345519242591200e+15 +D-D_->_T_fusion_rate_at_point_50_________________________________________ fusrat_plasma_dd_triton_profile50_ 6.70532681011898400e+15 +D-D_->_T_fusion_rate_at_point_51_________________________________________ fusrat_plasma_dd_triton_profile51_ 6.69704100387636800e+15 +D-D_->_T_fusion_rate_at_point_52_________________________________________ fusrat_plasma_dd_triton_profile52_ 6.68859817815724900e+15 +D-D_->_T_fusion_rate_at_point_53_________________________________________ fusrat_plasma_dd_triton_profile53_ 6.67999874516336800e+15 +D-D_->_T_fusion_rate_at_point_54_________________________________________ fusrat_plasma_dd_triton_profile54_ 6.67124312482328500e+15 +D-D_->_T_fusion_rate_at_point_55_________________________________________ fusrat_plasma_dd_triton_profile55_ 6.66233174477643600e+15 +D-D_->_T_fusion_rate_at_point_56_________________________________________ fusrat_plasma_dd_triton_profile56_ 6.65326504035673100e+15 +D-D_->_T_fusion_rate_at_point_57_________________________________________ fusrat_plasma_dd_triton_profile57_ 6.64404345457593300e+15 +D-D_->_T_fusion_rate_at_point_58_________________________________________ fusrat_plasma_dd_triton_profile58_ 6.63466743810671500e+15 +D-D_->_T_fusion_rate_at_point_59_________________________________________ fusrat_plasma_dd_triton_profile59_ 6.62513744926540700e+15 +D-D_->_T_fusion_rate_at_point_60_________________________________________ fusrat_plasma_dd_triton_profile60_ 6.61545395399439600e+15 +D-D_->_T_fusion_rate_at_point_61_________________________________________ fusrat_plasma_dd_triton_profile61_ 6.60561742584429200e+15 +D-D_->_T_fusion_rate_at_point_62_________________________________________ fusrat_plasma_dd_triton_profile62_ 6.59562834595568100e+15 +D-D_->_T_fusion_rate_at_point_63_________________________________________ fusrat_plasma_dd_triton_profile63_ 6.58548720304069100e+15 +D-D_->_T_fusion_rate_at_point_64_________________________________________ fusrat_plasma_dd_triton_profile64_ 6.57519449336409700e+15 +D-D_->_T_fusion_rate_at_point_65_________________________________________ fusrat_plasma_dd_triton_profile65_ 6.56475072072431500e+15 +D-D_->_T_fusion_rate_at_point_66_________________________________________ fusrat_plasma_dd_triton_profile66_ 6.55415639643384500e+15 +D-D_->_T_fusion_rate_at_point_67_________________________________________ fusrat_plasma_dd_triton_profile67_ 6.54341203929960700e+15 +D-D_->_T_fusion_rate_at_point_68_________________________________________ fusrat_plasma_dd_triton_profile68_ 6.53251817560285500e+15 +D-D_->_T_fusion_rate_at_point_69_________________________________________ fusrat_plasma_dd_triton_profile69_ 6.52147533907881000e+15 +D-D_->_T_fusion_rate_at_point_70_________________________________________ fusrat_plasma_dd_triton_profile70_ 6.51028407089598800e+15 +D-D_->_T_fusion_rate_at_point_71_________________________________________ fusrat_plasma_dd_triton_profile71_ 6.49894491963518200e+15 +D-D_->_T_fusion_rate_at_point_72_________________________________________ fusrat_plasma_dd_triton_profile72_ 6.48745844126819900e+15 +D-D_->_T_fusion_rate_at_point_73_________________________________________ fusrat_plasma_dd_triton_profile73_ 6.47582519913617700e+15 +D-D_->_T_fusion_rate_at_point_74_________________________________________ fusrat_plasma_dd_triton_profile74_ 6.46404576392771200e+15 +D-D_->_T_fusion_rate_at_point_75_________________________________________ fusrat_plasma_dd_triton_profile75_ 6.45212071365655700e+15 +D-D_->_T_fusion_rate_at_point_76_________________________________________ fusrat_plasma_dd_triton_profile76_ 6.44005063363910900e+15 +D-D_->_T_fusion_rate_at_point_77_________________________________________ fusrat_plasma_dd_triton_profile77_ 6.42783611647149700e+15 +D-D_->_T_fusion_rate_at_point_78_________________________________________ fusrat_plasma_dd_triton_profile78_ 6.41547776200639200e+15 +D-D_->_T_fusion_rate_at_point_79_________________________________________ fusrat_plasma_dd_triton_profile79_ 6.40297617732952800e+15 +D-D_->_T_fusion_rate_at_point_80_________________________________________ fusrat_plasma_dd_triton_profile80_ 6.39033197673582000e+15 +D-D_->_T_fusion_rate_at_point_81_________________________________________ fusrat_plasma_dd_triton_profile81_ 6.37754578170531300e+15 +D-D_->_T_fusion_rate_at_point_82_________________________________________ fusrat_plasma_dd_triton_profile82_ 6.36461822087862900e+15 +D-D_->_T_fusion_rate_at_point_83_________________________________________ fusrat_plasma_dd_triton_profile83_ 6.35154993003227400e+15 +D-D_->_T_fusion_rate_at_point_84_________________________________________ fusrat_plasma_dd_triton_profile84_ 6.33834155205349800e+15 +D-D_->_T_fusion_rate_at_point_85_________________________________________ fusrat_plasma_dd_triton_profile85_ 6.32499373691491400e+15 +D-D_->_T_fusion_rate_at_point_86_________________________________________ fusrat_plasma_dd_triton_profile86_ 6.31150714164875300e+15 +D-D_->_T_fusion_rate_at_point_87_________________________________________ fusrat_plasma_dd_triton_profile87_ 6.29788243032085200e+15 +D-D_->_T_fusion_rate_at_point_88_________________________________________ fusrat_plasma_dd_triton_profile88_ 6.28412027400425000e+15 +D-D_->_T_fusion_rate_at_point_89_________________________________________ fusrat_plasma_dd_triton_profile89_ 6.27022135075254300e+15 +D-D_->_T_fusion_rate_at_point_90_________________________________________ fusrat_plasma_dd_triton_profile90_ 6.25618634557286400e+15 +D-D_->_T_fusion_rate_at_point_91_________________________________________ fusrat_plasma_dd_triton_profile91_ 6.24201595039856100e+15 +D-D_->_T_fusion_rate_at_point_92_________________________________________ fusrat_plasma_dd_triton_profile92_ 6.22771086406157500e+15 +D-D_->_T_fusion_rate_at_point_93_________________________________________ fusrat_plasma_dd_triton_profile93_ 6.21327179226445600e+15 +D-D_->_T_fusion_rate_at_point_94_________________________________________ fusrat_plasma_dd_triton_profile94_ 6.19869944755208000e+15 +D-D_->_T_fusion_rate_at_point_95_________________________________________ fusrat_plasma_dd_triton_profile95_ 6.18399454928307000e+15 +D-D_->_T_fusion_rate_at_point_96_________________________________________ fusrat_plasma_dd_triton_profile96_ 6.16915782360083900e+15 +D-D_->_T_fusion_rate_at_point_97_________________________________________ fusrat_plasma_dd_triton_profile97_ 6.15419000340435300e+15 +D-D_->_T_fusion_rate_at_point_98_________________________________________ fusrat_plasma_dd_triton_profile98_ 6.13909182831855800e+15 +D-D_->_T_fusion_rate_at_point_99_________________________________________ fusrat_plasma_dd_triton_profile99_ 6.12386404466447000e+15 +D-D_->_T_fusion_rate_at_point_100________________________________________ fusrat_plasma_dd_triton_profile100_ 6.10850740542897600e+15 +D-D_->_T_fusion_rate_at_point_101________________________________________ fusrat_plasma_dd_triton_profile101_ 6.09302267023428100e+15 +D-D_->_T_fusion_rate_at_point_102________________________________________ fusrat_plasma_dd_triton_profile102_ 6.07741060530701400e+15 +D-D_->_T_fusion_rate_at_point_103________________________________________ fusrat_plasma_dd_triton_profile103_ 6.06167198344707000e+15 +D-D_->_T_fusion_rate_at_point_104________________________________________ fusrat_plasma_dd_triton_profile104_ 6.04580758399604400e+15 +D-D_->_T_fusion_rate_at_point_105________________________________________ fusrat_plasma_dd_triton_profile105_ 6.02981819280541300e+15 +D-D_->_T_fusion_rate_at_point_106________________________________________ fusrat_plasma_dd_triton_profile106_ 6.01370460220435400e+15 +D-D_->_T_fusion_rate_at_point_107________________________________________ fusrat_plasma_dd_triton_profile107_ 5.99746761096720700e+15 +D-D_->_T_fusion_rate_at_point_108________________________________________ fusrat_plasma_dd_triton_profile108_ 5.98110802428070900e+15 +D-D_->_T_fusion_rate_at_point_109________________________________________ fusrat_plasma_dd_triton_profile109_ 5.96462665371074700e+15 +D-D_->_T_fusion_rate_at_point_110________________________________________ fusrat_plasma_dd_triton_profile110_ 5.94802431716891600e+15 +D-D_->_T_fusion_rate_at_point_111________________________________________ fusrat_plasma_dd_triton_profile111_ 5.93130183887869800e+15 +D-D_->_T_fusion_rate_at_point_112________________________________________ fusrat_plasma_dd_triton_profile112_ 5.91446004934127400e+15 +D-D_->_T_fusion_rate_at_point_113________________________________________ fusrat_plasma_dd_triton_profile113_ 5.89749978530109100e+15 +D-D_->_T_fusion_rate_at_point_114________________________________________ fusrat_plasma_dd_triton_profile114_ 5.88042188971096900e+15 +D-D_->_T_fusion_rate_at_point_115________________________________________ fusrat_plasma_dd_triton_profile115_ 5.86322721169702700e+15 +D-D_->_T_fusion_rate_at_point_116________________________________________ fusrat_plasma_dd_triton_profile116_ 5.84591660652313500e+15 +D-D_->_T_fusion_rate_at_point_117________________________________________ fusrat_plasma_dd_triton_profile117_ 5.82849093555514900e+15 +D-D_->_T_fusion_rate_at_point_118________________________________________ fusrat_plasma_dd_triton_profile118_ 5.81095106622473100e+15 +D-D_->_T_fusion_rate_at_point_119________________________________________ fusrat_plasma_dd_triton_profile119_ 5.79329787199282800e+15 +D-D_->_T_fusion_rate_at_point_120________________________________________ fusrat_plasma_dd_triton_profile120_ 5.77553223231293100e+15 +D-D_->_T_fusion_rate_at_point_121________________________________________ fusrat_plasma_dd_triton_profile121_ 5.75765503259381600e+15 +D-D_->_T_fusion_rate_at_point_122________________________________________ fusrat_plasma_dd_triton_profile122_ 5.73966716416210900e+15 +D-D_->_T_fusion_rate_at_point_123________________________________________ fusrat_plasma_dd_triton_profile123_ 5.72156952422443400e+15 +D-D_->_T_fusion_rate_at_point_124________________________________________ fusrat_plasma_dd_triton_profile124_ 5.70336301582920500e+15 +D-D_->_T_fusion_rate_at_point_125________________________________________ fusrat_plasma_dd_triton_profile125_ 5.68504854782814700e+15 +D-D_->_T_fusion_rate_at_point_126________________________________________ fusrat_plasma_dd_triton_profile126_ 5.66662703483743000e+15 +D-D_->_T_fusion_rate_at_point_127________________________________________ fusrat_plasma_dd_triton_profile127_ 5.64809939719843100e+15 +D-D_->_T_fusion_rate_at_point_128________________________________________ fusrat_plasma_dd_triton_profile128_ 5.62946656093825700e+15 +D-D_->_T_fusion_rate_at_point_129________________________________________ fusrat_plasma_dd_triton_profile129_ 5.61072945772979700e+15 +D-D_->_T_fusion_rate_at_point_130________________________________________ fusrat_plasma_dd_triton_profile130_ 5.59188902485151300e+15 +D-D_->_T_fusion_rate_at_point_131________________________________________ fusrat_plasma_dd_triton_profile131_ 5.57294620514690600e+15 +D-D_->_T_fusion_rate_at_point_132________________________________________ fusrat_plasma_dd_triton_profile132_ 5.55390194698352100e+15 +D-D_->_T_fusion_rate_at_point_133________________________________________ fusrat_plasma_dd_triton_profile133_ 5.53475720421173600e+15 +D-D_->_T_fusion_rate_at_point_134________________________________________ fusrat_plasma_dd_triton_profile134_ 5.51551293612314000e+15 +D-D_->_T_fusion_rate_at_point_135________________________________________ fusrat_plasma_dd_triton_profile135_ 5.49617010740855100e+15 +D-D_->_T_fusion_rate_at_point_136________________________________________ fusrat_plasma_dd_triton_profile136_ 5.47672968811571100e+15 +D-D_->_T_fusion_rate_at_point_137________________________________________ fusrat_plasma_dd_triton_profile137_ 5.45719265360662800e+15 +D-D_->_T_fusion_rate_at_point_138________________________________________ fusrat_plasma_dd_triton_profile138_ 5.43755998451459300e+15 +D-D_->_T_fusion_rate_at_point_139________________________________________ fusrat_plasma_dd_triton_profile139_ 5.41783266670072900e+15 +D-D_->_T_fusion_rate_at_point_140________________________________________ fusrat_plasma_dd_triton_profile140_ 5.39801169121036600e+15 +D-D_->_T_fusion_rate_at_point_141________________________________________ fusrat_plasma_dd_triton_profile141_ 5.37809805422892300e+15 +D-D_->_T_fusion_rate_at_point_142________________________________________ fusrat_plasma_dd_triton_profile142_ 5.35809275703748400e+15 +D-D_->_T_fusion_rate_at_point_143________________________________________ fusrat_plasma_dd_triton_profile143_ 5.33799680596802600e+15 +D-D_->_T_fusion_rate_at_point_144________________________________________ fusrat_plasma_dd_triton_profile144_ 5.31781121235825000e+15 +D-D_->_T_fusion_rate_at_point_145________________________________________ fusrat_plasma_dd_triton_profile145_ 5.29753699250612800e+15 +D-D_->_T_fusion_rate_at_point_146________________________________________ fusrat_plasma_dd_triton_profile146_ 5.27717516762399400e+15 +D-D_->_T_fusion_rate_at_point_147________________________________________ fusrat_plasma_dd_triton_profile147_ 5.25672676379237500e+15 +D-D_->_T_fusion_rate_at_point_148________________________________________ fusrat_plasma_dd_triton_profile148_ 5.23619281191335700e+15 +D-D_->_T_fusion_rate_at_point_149________________________________________ fusrat_plasma_dd_triton_profile149_ 5.21557434766370400e+15 +D-D_->_T_fusion_rate_at_point_150________________________________________ fusrat_plasma_dd_triton_profile150_ 5.19487241144751100e+15 +D-D_->_T_fusion_rate_at_point_151________________________________________ fusrat_plasma_dd_triton_profile151_ 5.17408804834851400e+15 +D-D_->_T_fusion_rate_at_point_152________________________________________ fusrat_plasma_dd_triton_profile152_ 5.15322230808211300e+15 +D-D_->_T_fusion_rate_at_point_153________________________________________ fusrat_plasma_dd_triton_profile153_ 5.13227624494693200e+15 +D-D_->_T_fusion_rate_at_point_154________________________________________ fusrat_plasma_dd_triton_profile154_ 5.11125091777602300e+15 +D-D_->_T_fusion_rate_at_point_155________________________________________ fusrat_plasma_dd_triton_profile155_ 5.09014738988778100e+15 +D-D_->_T_fusion_rate_at_point_156________________________________________ fusrat_plasma_dd_triton_profile156_ 5.06896672903637500e+15 +D-D_->_T_fusion_rate_at_point_157________________________________________ fusrat_plasma_dd_triton_profile157_ 5.04771000736189000e+15 +D-D_->_T_fusion_rate_at_point_158________________________________________ fusrat_plasma_dd_triton_profile158_ 5.02637830134009100e+15 +D-D_->_T_fusion_rate_at_point_159________________________________________ fusrat_plasma_dd_triton_profile159_ 5.00497269173171400e+15 +D-D_->_T_fusion_rate_at_point_160________________________________________ fusrat_plasma_dd_triton_profile160_ 4.98349426353155700e+15 +D-D_->_T_fusion_rate_at_point_161________________________________________ fusrat_plasma_dd_triton_profile161_ 4.96194410591698900e+15 +D-D_->_T_fusion_rate_at_point_162________________________________________ fusrat_plasma_dd_triton_profile162_ 4.94032331219626600e+15 +D-D_->_T_fusion_rate_at_point_163________________________________________ fusrat_plasma_dd_triton_profile163_ 4.91863297975634400e+15 +D-D_->_T_fusion_rate_at_point_164________________________________________ fusrat_plasma_dd_triton_profile164_ 4.89687421001035100e+15 +D-D_->_T_fusion_rate_at_point_165________________________________________ fusrat_plasma_dd_triton_profile165_ 4.87504810834467800e+15 +D-D_->_T_fusion_rate_at_point_166________________________________________ fusrat_plasma_dd_triton_profile166_ 4.85315578406570400e+15 +D-D_->_T_fusion_rate_at_point_167________________________________________ fusrat_plasma_dd_triton_profile167_ 4.83119835034608500e+15 +D-D_->_T_fusion_rate_at_point_168________________________________________ fusrat_plasma_dd_triton_profile168_ 4.80917692417070800e+15 +D-D_->_T_fusion_rate_at_point_169________________________________________ fusrat_plasma_dd_triton_profile169_ 4.78709262628219300e+15 +D-D_->_T_fusion_rate_at_point_170________________________________________ fusrat_plasma_dd_triton_profile170_ 4.76494658112609600e+15 +D-D_->_T_fusion_rate_at_point_171________________________________________ fusrat_plasma_dd_triton_profile171_ 4.74273991679564100e+15 +D-D_->_T_fusion_rate_at_point_172________________________________________ fusrat_plasma_dd_triton_profile172_ 4.72047376497606300e+15 +D-D_->_T_fusion_rate_at_point_173________________________________________ fusrat_plasma_dd_triton_profile173_ 4.69814926088862300e+15 +D-D_->_T_fusion_rate_at_point_174________________________________________ fusrat_plasma_dd_triton_profile174_ 4.67576754323414000e+15 +D-D_->_T_fusion_rate_at_point_175________________________________________ fusrat_plasma_dd_triton_profile175_ 4.65332975413619300e+15 +D-D_->_T_fusion_rate_at_point_176________________________________________ fusrat_plasma_dd_triton_profile176_ 4.63083703908386800e+15 +D-D_->_T_fusion_rate_at_point_177________________________________________ fusrat_plasma_dd_triton_profile177_ 4.60829054687415700e+15 +D-D_->_T_fusion_rate_at_point_178________________________________________ fusrat_plasma_dd_triton_profile178_ 4.58569142955389400e+15 +D-D_->_T_fusion_rate_at_point_179________________________________________ fusrat_plasma_dd_triton_profile179_ 4.56304084236134000e+15 +D-D_->_T_fusion_rate_at_point_180________________________________________ fusrat_plasma_dd_triton_profile180_ 4.54033994366733400e+15 +D-D_->_T_fusion_rate_at_point_181________________________________________ fusrat_plasma_dd_triton_profile181_ 4.51758989491602100e+15 +D-D_->_T_fusion_rate_at_point_182________________________________________ fusrat_plasma_dd_triton_profile182_ 4.49479186056520600e+15 +D-D_->_T_fusion_rate_at_point_183________________________________________ fusrat_plasma_dd_triton_profile183_ 4.47194700802625800e+15 +D-D_->_T_fusion_rate_at_point_184________________________________________ fusrat_plasma_dd_triton_profile184_ 4.44905650760363850e+15 +D-D_->_T_fusion_rate_at_point_185________________________________________ fusrat_plasma_dd_triton_profile185_ 4.42612153243395900e+15 +D-D_->_T_fusion_rate_at_point_186________________________________________ fusrat_plasma_dd_triton_profile186_ 4.40314325842468200e+15 +D-D_->_T_fusion_rate_at_point_187________________________________________ fusrat_plasma_dd_triton_profile187_ 4.38012286419234200e+15 +D-D_->_T_fusion_rate_at_point_188________________________________________ fusrat_plasma_dd_triton_profile188_ 4.35706153100040550e+15 +D-D_->_T_fusion_rate_at_point_189________________________________________ fusrat_plasma_dd_triton_profile189_ 4.33396044269663050e+15 +D-D_->_T_fusion_rate_at_point_190________________________________________ fusrat_plasma_dd_triton_profile190_ 4.31082078565010450e+15 +D-D_->_T_fusion_rate_at_point_191________________________________________ fusrat_plasma_dd_triton_profile191_ 4.28764374868771550e+15 +D-D_->_T_fusion_rate_at_point_192________________________________________ fusrat_plasma_dd_triton_profile192_ 4.26443052303033200e+15 +D-D_->_T_fusion_rate_at_point_193________________________________________ fusrat_plasma_dd_triton_profile193_ 4.24118230222844850e+15 +D-D_->_T_fusion_rate_at_point_194________________________________________ fusrat_plasma_dd_triton_profile194_ 4.21790028209744650e+15 +D-D_->_T_fusion_rate_at_point_195________________________________________ fusrat_plasma_dd_triton_profile195_ 4.19458566065240100e+15 +D-D_->_T_fusion_rate_at_point_196________________________________________ fusrat_plasma_dd_triton_profile196_ 4.17123963804247100e+15 +D-D_->_T_fusion_rate_at_point_197________________________________________ fusrat_plasma_dd_triton_profile197_ 4.14786341648478150e+15 +D-D_->_T_fusion_rate_at_point_198________________________________________ fusrat_plasma_dd_triton_profile198_ 4.12445820019796050e+15 +D-D_->_T_fusion_rate_at_point_199________________________________________ fusrat_plasma_dd_triton_profile199_ 4.10102519533513750e+15 +D-D_->_T_fusion_rate_at_point_200________________________________________ fusrat_plasma_dd_triton_profile200_ 4.07756560991656400e+15 +D-D_->_T_fusion_rate_at_point_201________________________________________ fusrat_plasma_dd_triton_profile201_ 4.05408065376172150e+15 +D-D_->_T_fusion_rate_at_point_202________________________________________ fusrat_plasma_dd_triton_profile202_ 4.03057153842102400e+15 +D-D_->_T_fusion_rate_at_point_203________________________________________ fusrat_plasma_dd_triton_profile203_ 4.00703947710704000e+15 +D-D_->_T_fusion_rate_at_point_204________________________________________ fusrat_plasma_dd_triton_profile204_ 3.98348568462528300e+15 +D-D_->_T_fusion_rate_at_point_205________________________________________ fusrat_plasma_dd_triton_profile205_ 3.95991137730447100e+15 +D-D_->_T_fusion_rate_at_point_206________________________________________ fusrat_plasma_dd_triton_profile206_ 3.93631777292642950e+15 +D-D_->_T_fusion_rate_at_point_207________________________________________ fusrat_plasma_dd_triton_profile207_ 3.91270609065542500e+15 +D-D_->_T_fusion_rate_at_point_208________________________________________ fusrat_plasma_dd_triton_profile208_ 3.88907755096711000e+15 +D-D_->_T_fusion_rate_at_point_209________________________________________ fusrat_plasma_dd_triton_profile209_ 3.86543337557693050e+15 +D-D_->_T_fusion_rate_at_point_210________________________________________ fusrat_plasma_dd_triton_profile210_ 3.84177478736811850e+15 +D-D_->_T_fusion_rate_at_point_211________________________________________ fusrat_plasma_dd_triton_profile211_ 3.81810301031917050e+15 +D-D_->_T_fusion_rate_at_point_212________________________________________ fusrat_plasma_dd_triton_profile212_ 3.79441926943085650e+15 +D-D_->_T_fusion_rate_at_point_213________________________________________ fusrat_plasma_dd_triton_profile213_ 3.77072479065273950e+15 +D-D_->_T_fusion_rate_at_point_214________________________________________ fusrat_plasma_dd_triton_profile214_ 3.74702080080923150e+15 +D-D_->_T_fusion_rate_at_point_215________________________________________ fusrat_plasma_dd_triton_profile215_ 3.72330852752515700e+15 +D-D_->_T_fusion_rate_at_point_216________________________________________ fusrat_plasma_dd_triton_profile216_ 3.69958919915079100e+15 +D-D_->_T_fusion_rate_at_point_217________________________________________ fusrat_plasma_dd_triton_profile217_ 3.67586404468643950e+15 +D-D_->_T_fusion_rate_at_point_218________________________________________ fusrat_plasma_dd_triton_profile218_ 3.65213429370654950e+15 +D-D_->_T_fusion_rate_at_point_219________________________________________ fusrat_plasma_dd_triton_profile219_ 3.62840117628323250e+15 +D-D_->_T_fusion_rate_at_point_220________________________________________ fusrat_plasma_dd_triton_profile220_ 3.60466592290937400e+15 +D-D_->_T_fusion_rate_at_point_221________________________________________ fusrat_plasma_dd_triton_profile221_ 3.58092976442120250e+15 +D-D_->_T_fusion_rate_at_point_222________________________________________ fusrat_plasma_dd_triton_profile222_ 3.55719393192033650e+15 +D-D_->_T_fusion_rate_at_point_223________________________________________ fusrat_plasma_dd_triton_profile223_ 3.53345965669534450e+15 +D-D_->_T_fusion_rate_at_point_224________________________________________ fusrat_plasma_dd_triton_profile224_ 3.50972817014279300e+15 +D-D_->_T_fusion_rate_at_point_225________________________________________ fusrat_plasma_dd_triton_profile225_ 3.48600070368775000e+15 +D-D_->_T_fusion_rate_at_point_226________________________________________ fusrat_plasma_dd_triton_profile226_ 3.46227848870379050e+15 +D-D_->_T_fusion_rate_at_point_227________________________________________ fusrat_plasma_dd_triton_profile227_ 3.43856275643249600e+15 +D-D_->_T_fusion_rate_at_point_228________________________________________ fusrat_plasma_dd_triton_profile228_ 3.41485473790235600e+15 +D-D_->_T_fusion_rate_at_point_229________________________________________ fusrat_plasma_dd_triton_profile229_ 3.39115566384726050e+15 +D-D_->_T_fusion_rate_at_point_230________________________________________ fusrat_plasma_dd_triton_profile230_ 3.36746676462431050e+15 +D-D_->_T_fusion_rate_at_point_231________________________________________ fusrat_plasma_dd_triton_profile231_ 3.34378927013124950e+15 +D-D_->_T_fusion_rate_at_point_232________________________________________ fusrat_plasma_dd_triton_profile232_ 3.32012440972321100e+15 +D-D_->_T_fusion_rate_at_point_233________________________________________ fusrat_plasma_dd_triton_profile233_ 3.29647341212903700e+15 +D-D_->_T_fusion_rate_at_point_234________________________________________ fusrat_plasma_dd_triton_profile234_ 3.27283750536697850e+15 +D-D_->_T_fusion_rate_at_point_235________________________________________ fusrat_plasma_dd_triton_profile235_ 3.24921791665988950e+15 +D-D_->_T_fusion_rate_at_point_236________________________________________ fusrat_plasma_dd_triton_profile236_ 3.22561587234983650e+15 +D-D_->_T_fusion_rate_at_point_237________________________________________ fusrat_plasma_dd_triton_profile237_ 3.20203259781217650e+15 +D-D_->_T_fusion_rate_at_point_238________________________________________ fusrat_plasma_dd_triton_profile238_ 3.17846931736908000e+15 +D-D_->_T_fusion_rate_at_point_239________________________________________ fusrat_plasma_dd_triton_profile239_ 3.15492725420244650e+15 +D-D_->_T_fusion_rate_at_point_240________________________________________ fusrat_plasma_dd_triton_profile240_ 3.13140763026632500e+15 +D-D_->_T_fusion_rate_at_point_241________________________________________ fusrat_plasma_dd_triton_profile241_ 3.10791166619870300e+15 +D-D_->_T_fusion_rate_at_point_242________________________________________ fusrat_plasma_dd_triton_profile242_ 3.08444058123274450e+15 +D-D_->_T_fusion_rate_at_point_243________________________________________ fusrat_plasma_dd_triton_profile243_ 3.06099559310748250e+15 +D-D_->_T_fusion_rate_at_point_244________________________________________ fusrat_plasma_dd_triton_profile244_ 3.03757791797787700e+15 +D-D_->_T_fusion_rate_at_point_245________________________________________ fusrat_plasma_dd_triton_profile245_ 3.01418877032432300e+15 +D-D_->_T_fusion_rate_at_point_246________________________________________ fusrat_plasma_dd_triton_profile246_ 2.99082936286158900e+15 +D-D_->_T_fusion_rate_at_point_247________________________________________ fusrat_plasma_dd_triton_profile247_ 2.96750090644710400e+15 +D-D_->_T_fusion_rate_at_point_248________________________________________ fusrat_plasma_dd_triton_profile248_ 2.94420460998873200e+15 +D-D_->_T_fusion_rate_at_point_249________________________________________ fusrat_plasma_dd_triton_profile249_ 2.92094168035187700e+15 +D-D_->_T_fusion_rate_at_point_250________________________________________ fusrat_plasma_dd_triton_profile250_ 2.89771332226603600e+15 +D-D_->_T_fusion_rate_at_point_251________________________________________ fusrat_plasma_dd_triton_profile251_ 2.87452073823073900e+15 +D-D_->_T_fusion_rate_at_point_252________________________________________ fusrat_plasma_dd_triton_profile252_ 2.85136512842085650e+15 +D-D_->_T_fusion_rate_at_point_253________________________________________ fusrat_plasma_dd_triton_profile253_ 2.82824769059132300e+15 +D-D_->_T_fusion_rate_at_point_254________________________________________ fusrat_plasma_dd_triton_profile254_ 2.80516961998125200e+15 +D-D_->_T_fusion_rate_at_point_255________________________________________ fusrat_plasma_dd_triton_profile255_ 2.78213210921739700e+15 +D-D_->_T_fusion_rate_at_point_256________________________________________ fusrat_plasma_dd_triton_profile256_ 2.75913634821704500e+15 +D-D_->_T_fusion_rate_at_point_257________________________________________ fusrat_plasma_dd_triton_profile257_ 2.73618352409021650e+15 +D-D_->_T_fusion_rate_at_point_258________________________________________ fusrat_plasma_dd_triton_profile258_ 2.71327482104132600e+15 +D-D_->_T_fusion_rate_at_point_259________________________________________ fusrat_plasma_dd_triton_profile259_ 2.69041142027012350e+15 +D-D_->_T_fusion_rate_at_point_260________________________________________ fusrat_plasma_dd_triton_profile260_ 2.66759449987207350e+15 +D-D_->_T_fusion_rate_at_point_261________________________________________ fusrat_plasma_dd_triton_profile261_ 2.64482523473804000e+15 +D-D_->_T_fusion_rate_at_point_262________________________________________ fusrat_plasma_dd_triton_profile262_ 2.62210479645338050e+15 +D-D_->_T_fusion_rate_at_point_263________________________________________ fusrat_plasma_dd_triton_profile263_ 2.59943435319634850e+15 +D-D_->_T_fusion_rate_at_point_264________________________________________ fusrat_plasma_dd_triton_profile264_ 2.57681506963590550e+15 +D-D_->_T_fusion_rate_at_point_265________________________________________ fusrat_plasma_dd_triton_profile265_ 2.55424810682880500e+15 +D-D_->_T_fusion_rate_at_point_266________________________________________ fusrat_plasma_dd_triton_profile266_ 2.53173462211613000e+15 +D-D_->_T_fusion_rate_at_point_267________________________________________ fusrat_plasma_dd_triton_profile267_ 2.50927576901904850e+15 +D-D_->_T_fusion_rate_at_point_268________________________________________ fusrat_plasma_dd_triton_profile268_ 2.48687269713403750e+15 +D-D_->_T_fusion_rate_at_point_269________________________________________ fusrat_plasma_dd_triton_profile269_ 2.46452655202733950e+15 +D-D_->_T_fusion_rate_at_point_270________________________________________ fusrat_plasma_dd_triton_profile270_ 2.44223847512881850e+15 +D-D_->_T_fusion_rate_at_point_271________________________________________ fusrat_plasma_dd_triton_profile271_ 2.42000960362512450e+15 +D-D_->_T_fusion_rate_at_point_272________________________________________ fusrat_plasma_dd_triton_profile272_ 2.39784107035218700e+15 +D-D_->_T_fusion_rate_at_point_273________________________________________ fusrat_plasma_dd_triton_profile273_ 2.37573400368706000e+15 +D-D_->_T_fusion_rate_at_point_274________________________________________ fusrat_plasma_dd_triton_profile274_ 2.35368952743905050e+15 +D-D_->_T_fusion_rate_at_point_275________________________________________ fusrat_plasma_dd_triton_profile275_ 2.33170876074021300e+15 +D-D_->_T_fusion_rate_at_point_276________________________________________ fusrat_plasma_dd_triton_profile276_ 2.30979281793513100e+15 +D-D_->_T_fusion_rate_at_point_277________________________________________ fusrat_plasma_dd_triton_profile277_ 2.28794280847003100e+15 +D-D_->_T_fusion_rate_at_point_278________________________________________ fusrat_plasma_dd_triton_profile278_ 2.26615983678122800e+15 +D-D_->_T_fusion_rate_at_point_279________________________________________ fusrat_plasma_dd_triton_profile279_ 2.24444500218285625e+15 +D-D_->_T_fusion_rate_at_point_280________________________________________ fusrat_plasma_dd_triton_profile280_ 2.22279939875392125e+15 +D-D_->_T_fusion_rate_at_point_281________________________________________ fusrat_plasma_dd_triton_profile281_ 2.20122411522468575e+15 +D-D_->_T_fusion_rate_at_point_282________________________________________ fusrat_plasma_dd_triton_profile282_ 2.17972023486234000e+15 +D-D_->_T_fusion_rate_at_point_283________________________________________ fusrat_plasma_dd_triton_profile283_ 2.15828883535598650e+15 +D-D_->_T_fusion_rate_at_point_284________________________________________ fusrat_plasma_dd_triton_profile284_ 2.13693098870092800e+15 +D-D_->_T_fusion_rate_at_point_285________________________________________ fusrat_plasma_dd_triton_profile285_ 2.11564776108228925e+15 +D-D_->_T_fusion_rate_at_point_286________________________________________ fusrat_plasma_dd_triton_profile286_ 2.09444021275790000e+15 +D-D_->_T_fusion_rate_at_point_287________________________________________ fusrat_plasma_dd_triton_profile287_ 2.07330939794052275e+15 +D-D_->_T_fusion_rate_at_point_288________________________________________ fusrat_plasma_dd_triton_profile288_ 2.05225636467936250e+15 +D-D_->_T_fusion_rate_at_point_289________________________________________ fusrat_plasma_dd_triton_profile289_ 2.03128215474088225e+15 +D-D_->_T_fusion_rate_at_point_290________________________________________ fusrat_plasma_dd_triton_profile290_ 2.01038780348894875e+15 +D-D_->_T_fusion_rate_at_point_291________________________________________ fusrat_plasma_dd_triton_profile291_ 1.98957433976423550e+15 +D-D_->_T_fusion_rate_at_point_292________________________________________ fusrat_plasma_dd_triton_profile292_ 1.96884278576297875e+15 +D-D_->_T_fusion_rate_at_point_293________________________________________ fusrat_plasma_dd_triton_profile293_ 1.94819415691502325e+15 +D-D_->_T_fusion_rate_at_point_294________________________________________ fusrat_plasma_dd_triton_profile294_ 1.92762946176115750e+15 +D-D_->_T_fusion_rate_at_point_295________________________________________ fusrat_plasma_dd_triton_profile295_ 1.90714970182978625e+15 +D-D_->_T_fusion_rate_at_point_296________________________________________ fusrat_plasma_dd_triton_profile296_ 1.88675587151290625e+15 +D-D_->_T_fusion_rate_at_point_297________________________________________ fusrat_plasma_dd_triton_profile297_ 1.86644895794138150e+15 +D-D_->_T_fusion_rate_at_point_298________________________________________ fusrat_plasma_dd_triton_profile298_ 1.84622994085954250e+15 +D-D_->_T_fusion_rate_at_point_299________________________________________ fusrat_plasma_dd_triton_profile299_ 1.82609979249912075e+15 +D-D_->_T_fusion_rate_at_point_300________________________________________ fusrat_plasma_dd_triton_profile300_ 1.80605947745247325e+15 +D-D_->_T_fusion_rate_at_point_301________________________________________ fusrat_plasma_dd_triton_profile301_ 1.78610995254516100e+15 +D-D_->_T_fusion_rate_at_point_302________________________________________ fusrat_plasma_dd_triton_profile302_ 1.76625216670783600e+15 +D-D_->_T_fusion_rate_at_point_303________________________________________ fusrat_plasma_dd_triton_profile303_ 1.74648706084747625e+15 +D-D_->_T_fusion_rate_at_point_304________________________________________ fusrat_plasma_dd_triton_profile304_ 1.72681556771795050e+15 +D-D_->_T_fusion_rate_at_point_305________________________________________ fusrat_plasma_dd_triton_profile305_ 1.70723861178992950e+15 +D-D_->_T_fusion_rate_at_point_306________________________________________ fusrat_plasma_dd_triton_profile306_ 1.68775710912014575e+15 +D-D_->_T_fusion_rate_at_point_307________________________________________ fusrat_plasma_dd_triton_profile307_ 1.66837196722002875e+15 +D-D_->_T_fusion_rate_at_point_308________________________________________ fusrat_plasma_dd_triton_profile308_ 1.64908408492364300e+15 +D-D_->_T_fusion_rate_at_point_309________________________________________ fusrat_plasma_dd_triton_profile309_ 1.62989435225509075e+15 +D-D_->_T_fusion_rate_at_point_310________________________________________ fusrat_plasma_dd_triton_profile310_ 1.61080365029519875e+15 +D-D_->_T_fusion_rate_at_point_311________________________________________ fusrat_plasma_dd_triton_profile311_ 1.59181285104765900e+15 +D-D_->_T_fusion_rate_at_point_312________________________________________ fusrat_plasma_dd_triton_profile312_ 1.57292281730451975e+15 +D-D_->_T_fusion_rate_at_point_313________________________________________ fusrat_plasma_dd_triton_profile313_ 1.55413440251112625e+15 +D-D_->_T_fusion_rate_at_point_314________________________________________ fusrat_plasma_dd_triton_profile314_ 1.53544845063042300e+15 +D-D_->_T_fusion_rate_at_point_315________________________________________ fusrat_plasma_dd_triton_profile315_ 1.51686579600675500e+15 +D-D_->_T_fusion_rate_at_point_316________________________________________ fusrat_plasma_dd_triton_profile316_ 1.49838726322902800e+15 +D-D_->_T_fusion_rate_at_point_317________________________________________ fusrat_plasma_dd_triton_profile317_ 1.48001366699338725e+15 +D-D_->_T_fusion_rate_at_point_318________________________________________ fusrat_plasma_dd_triton_profile318_ 1.46174581196532900e+15 +D-D_->_T_fusion_rate_at_point_319________________________________________ fusrat_plasma_dd_triton_profile319_ 1.44358449264130100e+15 +D-D_->_T_fusion_rate_at_point_320________________________________________ fusrat_plasma_dd_triton_profile320_ 1.42553049320978950e+15 +D-D_->_T_fusion_rate_at_point_321________________________________________ fusrat_plasma_dd_triton_profile321_ 1.40758458741194075e+15 +D-D_->_T_fusion_rate_at_point_322________________________________________ fusrat_plasma_dd_triton_profile322_ 1.38974753840168400e+15 +D-D_->_T_fusion_rate_at_point_323________________________________________ fusrat_plasma_dd_triton_profile323_ 1.37202009860541725e+15 +D-D_->_T_fusion_rate_at_point_324________________________________________ fusrat_plasma_dd_triton_profile324_ 1.35440300958125925e+15 +D-D_->_T_fusion_rate_at_point_325________________________________________ fusrat_plasma_dd_triton_profile325_ 1.33689700187787600e+15 +D-D_->_T_fusion_rate_at_point_326________________________________________ fusrat_plasma_dd_triton_profile326_ 1.31950279489292825e+15 +D-D_->_T_fusion_rate_at_point_327________________________________________ fusrat_plasma_dd_triton_profile327_ 1.30222109673114375e+15 +D-D_->_T_fusion_rate_at_point_328________________________________________ fusrat_plasma_dd_triton_profile328_ 1.28505260406203150e+15 +D-D_->_T_fusion_rate_at_point_329________________________________________ fusrat_plasma_dd_triton_profile329_ 1.26799800197730100e+15 +D-D_->_T_fusion_rate_at_point_330________________________________________ fusrat_plasma_dd_triton_profile330_ 1.25105796384794675e+15 +D-D_->_T_fusion_rate_at_point_331________________________________________ fusrat_plasma_dd_triton_profile331_ 1.23423315118110125e+15 +D-D_->_T_fusion_rate_at_point_332________________________________________ fusrat_plasma_dd_triton_profile332_ 1.21752421347662225e+15 +D-D_->_T_fusion_rate_at_point_333________________________________________ fusrat_plasma_dd_triton_profile333_ 1.20093178808348500e+15 +D-D_->_T_fusion_rate_at_point_334________________________________________ fusrat_plasma_dd_triton_profile334_ 1.18445650005598800e+15 +D-D_->_T_fusion_rate_at_point_335________________________________________ fusrat_plasma_dd_triton_profile335_ 1.16809896200981650e+15 +D-D_->_T_fusion_rate_at_point_336________________________________________ fusrat_plasma_dd_triton_profile336_ 1.15185977397798625e+15 +D-D_->_T_fusion_rate_at_point_337________________________________________ fusrat_plasma_dd_triton_profile337_ 1.13573952326673425e+15 +D-D_->_T_fusion_rate_at_point_338________________________________________ fusrat_plasma_dd_triton_profile338_ 1.11973878431134812e+15 +D-D_->_T_fusion_rate_at_point_339________________________________________ fusrat_plasma_dd_triton_profile339_ 1.10385811853201700e+15 +D-D_->_T_fusion_rate_at_point_340________________________________________ fusrat_plasma_dd_triton_profile340_ 1.08809807418971212e+15 +D-D_->_T_fusion_rate_at_point_341________________________________________ fusrat_plasma_dd_triton_profile341_ 1.07245918624216888e+15 +D-D_->_T_fusion_rate_at_point_342________________________________________ fusrat_plasma_dd_triton_profile342_ 1.05694197620000012e+15 +D-D_->_T_fusion_rate_at_point_343________________________________________ fusrat_plasma_dd_triton_profile343_ 1.04154695198298075e+15 +D-D_->_T_fusion_rate_at_point_344________________________________________ fusrat_plasma_dd_triton_profile344_ 1.02627460777657162e+15 +D-D_->_T_fusion_rate_at_point_345________________________________________ fusrat_plasma_dd_triton_profile345_ 1.01112542388872462e+15 +D-D_->_T_fusion_rate_at_point_346________________________________________ fusrat_plasma_dd_triton_profile346_ 9.96099866607028875e+14 +D-D_->_T_fusion_rate_at_point_347________________________________________ fusrat_plasma_dd_triton_profile347_ 9.81198388056230500e+14 +D-D_->_T_fusion_rate_at_point_348________________________________________ fusrat_plasma_dd_triton_profile348_ 9.66421426056234375e+14 +D-D_->_T_fusion_rate_at_point_349________________________________________ fusrat_plasma_dd_triton_profile349_ 9.51769403980582375e+14 +D-D_->_T_fusion_rate_at_point_350________________________________________ fusrat_plasma_dd_triton_profile350_ 9.37242730615542000e+14 +D-D_->_T_fusion_rate_at_point_351________________________________________ fusrat_plasma_dd_triton_profile351_ 9.22841800019818250e+14 +D-D_->_T_fusion_rate_at_point_352________________________________________ fusrat_plasma_dd_triton_profile352_ 9.08566991384975125e+14 +D-D_->_T_fusion_rate_at_point_353________________________________________ fusrat_plasma_dd_triton_profile353_ 8.94418668896648000e+14 +D-D_->_T_fusion_rate_at_point_354________________________________________ fusrat_plasma_dd_triton_profile354_ 8.80397181596630250e+14 +D-D_->_T_fusion_rate_at_point_355________________________________________ fusrat_plasma_dd_triton_profile355_ 8.66502863245852625e+14 +D-D_->_T_fusion_rate_at_point_356________________________________________ fusrat_plasma_dd_triton_profile356_ 8.52736032188438125e+14 +D-D_->_T_fusion_rate_at_point_357________________________________________ fusrat_plasma_dd_triton_profile357_ 8.39096991216806500e+14 +D-D_->_T_fusion_rate_at_point_358________________________________________ fusrat_plasma_dd_triton_profile358_ 8.25586027438016125e+14 +D-D_->_T_fusion_rate_at_point_359________________________________________ fusrat_plasma_dd_triton_profile359_ 8.12203412141347125e+14 +D-D_->_T_fusion_rate_at_point_360________________________________________ fusrat_plasma_dd_triton_profile360_ 7.98949400667290500e+14 +D-D_->_T_fusion_rate_at_point_361________________________________________ fusrat_plasma_dd_triton_profile361_ 7.85824232278000875e+14 +D-D_->_T_fusion_rate_at_point_362________________________________________ fusrat_plasma_dd_triton_profile362_ 7.72828130029328625e+14 +D-D_->_T_fusion_rate_at_point_363________________________________________ fusrat_plasma_dd_triton_profile363_ 7.59961300644541000e+14 +D-D_->_T_fusion_rate_at_point_364________________________________________ fusrat_plasma_dd_triton_profile364_ 7.47223934389841000e+14 +D-D_->_T_fusion_rate_at_point_365________________________________________ fusrat_plasma_dd_triton_profile365_ 7.34616204951784750e+14 +D-D_->_T_fusion_rate_at_point_366________________________________________ fusrat_plasma_dd_triton_profile366_ 7.22138269316748875e+14 +D-D_->_T_fusion_rate_at_point_367________________________________________ fusrat_plasma_dd_triton_profile367_ 7.09790267652536375e+14 +D-D_->_T_fusion_rate_at_point_368________________________________________ fusrat_plasma_dd_triton_profile368_ 6.97572323192281625e+14 +D-D_->_T_fusion_rate_at_point_369________________________________________ fusrat_plasma_dd_triton_profile369_ 6.85484542120754250e+14 +D-D_->_T_fusion_rate_at_point_370________________________________________ fusrat_plasma_dd_triton_profile370_ 6.73527013463240500e+14 +D-D_->_T_fusion_rate_at_point_371________________________________________ fusrat_plasma_dd_triton_profile371_ 6.61699808977111375e+14 +D-D_->_T_fusion_rate_at_point_372________________________________________ fusrat_plasma_dd_triton_profile372_ 6.50002983046246625e+14 +D-D_->_T_fusion_rate_at_point_373________________________________________ fusrat_plasma_dd_triton_profile373_ 6.38436572578464250e+14 +D-D_->_T_fusion_rate_at_point_374________________________________________ fusrat_plasma_dd_triton_profile374_ 6.27000596906120500e+14 +D-D_->_T_fusion_rate_at_point_375________________________________________ fusrat_plasma_dd_triton_profile375_ 6.15695057690032750e+14 +D-D_->_T_fusion_rate_at_point_376________________________________________ fusrat_plasma_dd_triton_profile376_ 6.04519938826932875e+14 +D-D_->_T_fusion_rate_at_point_377________________________________________ fusrat_plasma_dd_triton_profile377_ 5.93475206360580875e+14 +D-D_->_T_fusion_rate_at_point_378________________________________________ fusrat_plasma_dd_triton_profile378_ 5.82560808396777750e+14 +D-D_->_T_fusion_rate_at_point_379________________________________________ fusrat_plasma_dd_triton_profile379_ 5.71776675022437500e+14 +D-D_->_T_fusion_rate_at_point_380________________________________________ fusrat_plasma_dd_triton_profile380_ 5.61122718228928125e+14 +D-D_->_T_fusion_rate_at_point_381________________________________________ fusrat_plasma_dd_triton_profile381_ 5.50598831839898812e+14 +D-D_->_T_fusion_rate_at_point_382________________________________________ fusrat_plasma_dd_triton_profile382_ 5.40204891443800375e+14 +D-D_->_T_fusion_rate_at_point_383________________________________________ fusrat_plasma_dd_triton_profile383_ 5.29940754331326938e+14 +D-D_->_T_fusion_rate_at_point_384________________________________________ fusrat_plasma_dd_triton_profile384_ 5.19806259438016812e+14 +D-D_->_T_fusion_rate_at_point_385________________________________________ fusrat_plasma_dd_triton_profile385_ 5.09801227292255750e+14 +D-D_->_T_fusion_rate_at_point_386________________________________________ fusrat_plasma_dd_triton_profile386_ 4.99925459968922125e+14 +D-D_->_T_fusion_rate_at_point_387________________________________________ fusrat_plasma_dd_triton_profile387_ 4.90178741048957875e+14 +D-D_->_T_fusion_rate_at_point_388________________________________________ fusrat_plasma_dd_triton_profile388_ 4.80560835585120375e+14 +D-D_->_T_fusion_rate_at_point_389________________________________________ fusrat_plasma_dd_triton_profile389_ 4.71071490074206875e+14 +D-D_->_T_fusion_rate_at_point_390________________________________________ fusrat_plasma_dd_triton_profile390_ 4.61710432436042875e+14 +D-D_->_T_fusion_rate_at_point_391________________________________________ fusrat_plasma_dd_triton_profile391_ 4.52477371999552375e+14 +D-D_->_T_fusion_rate_at_point_392________________________________________ fusrat_plasma_dd_triton_profile392_ 4.43371999496208875e+14 +D-D_->_T_fusion_rate_at_point_393________________________________________ fusrat_plasma_dd_triton_profile393_ 4.34393987061226000e+14 +D-D_->_T_fusion_rate_at_point_394________________________________________ fusrat_plasma_dd_triton_profile394_ 4.25542988242813125e+14 +D-D_->_T_fusion_rate_at_point_395________________________________________ fusrat_plasma_dd_triton_profile395_ 4.16818638019870500e+14 +D-D_->_T_fusion_rate_at_point_396________________________________________ fusrat_plasma_dd_triton_profile396_ 4.08220552828506812e+14 +D-D_->_T_fusion_rate_at_point_397________________________________________ fusrat_plasma_dd_triton_profile397_ 3.99748330597761312e+14 +D-D_->_T_fusion_rate_at_point_398________________________________________ fusrat_plasma_dd_triton_profile398_ 3.91401550794952812e+14 +D-D_->_T_fusion_rate_at_point_399________________________________________ fusrat_plasma_dd_triton_profile399_ 3.83179774481094500e+14 +D-D_->_T_fusion_rate_at_point_400________________________________________ fusrat_plasma_dd_triton_profile400_ 3.75082544376814500e+14 +D-D_->_T_fusion_rate_at_point_401________________________________________ fusrat_plasma_dd_triton_profile401_ 3.67109384939273625e+14 +D-D_->_T_fusion_rate_at_point_402________________________________________ fusrat_plasma_dd_triton_profile402_ 3.59259802450573562e+14 +D-D_->_T_fusion_rate_at_point_403________________________________________ fusrat_plasma_dd_triton_profile403_ 3.51533285118184562e+14 +D-D_->_T_fusion_rate_at_point_404________________________________________ fusrat_plasma_dd_triton_profile404_ 3.43929303187950312e+14 +D-D_->_T_fusion_rate_at_point_405________________________________________ fusrat_plasma_dd_triton_profile405_ 3.36447309070253000e+14 +D-D_->_T_fusion_rate_at_point_406________________________________________ fusrat_plasma_dd_triton_profile406_ 3.29086737479964062e+14 +D-D_->_T_fusion_rate_at_point_407________________________________________ fusrat_plasma_dd_triton_profile407_ 3.21847005590831500e+14 +D-D_->_T_fusion_rate_at_point_408________________________________________ fusrat_plasma_dd_triton_profile408_ 3.14727513205002250e+14 +D-D_->_T_fusion_rate_at_point_409________________________________________ fusrat_plasma_dd_triton_profile409_ 3.07727642938432688e+14 +D-D_->_T_fusion_rate_at_point_410________________________________________ fusrat_plasma_dd_triton_profile410_ 3.00846760422949750e+14 +D-D_->_T_fusion_rate_at_point_411________________________________________ fusrat_plasma_dd_triton_profile411_ 2.94084214525841375e+14 +D-D_->_T_fusion_rate_at_point_412________________________________________ fusrat_plasma_dd_triton_profile412_ 2.87439337587842562e+14 +D-D_->_T_fusion_rate_at_point_413________________________________________ fusrat_plasma_dd_triton_profile413_ 2.80911445680523406e+14 +D-D_->_T_fusion_rate_at_point_414________________________________________ fusrat_plasma_dd_triton_profile414_ 2.74499838884081750e+14 +D-D_->_T_fusion_rate_at_point_415________________________________________ fusrat_plasma_dd_triton_profile415_ 2.68203801586701062e+14 +D-D_->_T_fusion_rate_at_point_416________________________________________ fusrat_plasma_dd_triton_profile416_ 2.62022602806666312e+14 +D-D_->_T_fusion_rate_at_point_417________________________________________ fusrat_plasma_dd_triton_profile417_ 2.55955496538561000e+14 +D-D_->_T_fusion_rate_at_point_418________________________________________ fusrat_plasma_dd_triton_profile418_ 2.50001722124988781e+14 +D-D_->_T_fusion_rate_at_point_419________________________________________ fusrat_plasma_dd_triton_profile419_ 2.44160504655380250e+14 +D-D_->_T_fusion_rate_at_point_420________________________________________ fusrat_plasma_dd_triton_profile420_ 2.38431055393587469e+14 +D-D_->_T_fusion_rate_at_point_421________________________________________ fusrat_plasma_dd_triton_profile421_ 2.32812572236177219e+14 +D-D_->_T_fusion_rate_at_point_422________________________________________ fusrat_plasma_dd_triton_profile422_ 2.27304240203458750e+14 +D-D_->_T_fusion_rate_at_point_423________________________________________ fusrat_plasma_dd_triton_profile423_ 2.21905231965573188e+14 +D-D_->_T_fusion_rate_at_point_424________________________________________ fusrat_plasma_dd_triton_profile424_ 2.16614708406156688e+14 +D-D_->_T_fusion_rate_at_point_425________________________________________ fusrat_plasma_dd_triton_profile425_ 2.11431819226427875e+14 +D-D_->_T_fusion_rate_at_point_426________________________________________ fusrat_plasma_dd_triton_profile426_ 2.06355703592841219e+14 +D-D_->_T_fusion_rate_at_point_427________________________________________ fusrat_plasma_dd_triton_profile427_ 2.01385490831848719e+14 +D-D_->_T_fusion_rate_at_point_428________________________________________ fusrat_plasma_dd_triton_profile428_ 1.96520301175761750e+14 +D-D_->_T_fusion_rate_at_point_429________________________________________ fusrat_plasma_dd_triton_profile429_ 1.91759246564176344e+14 +D-D_->_T_fusion_rate_at_point_430________________________________________ fusrat_plasma_dd_triton_profile430_ 1.87101431506085531e+14 +D-D_->_T_fusion_rate_at_point_431________________________________________ fusrat_plasma_dd_triton_profile431_ 1.82545954008430375e+14 +D-D_->_T_fusion_rate_at_point_432________________________________________ fusrat_plasma_dd_triton_profile432_ 1.78091906577720719e+14 +D-D_->_T_fusion_rate_at_point_433________________________________________ fusrat_plasma_dd_triton_profile433_ 1.73738377302277875e+14 +D-D_->_T_fusion_rate_at_point_434________________________________________ fusrat_plasma_dd_triton_profile434_ 1.69484451023818594e+14 +D-D_->_T_fusion_rate_at_point_435________________________________________ fusrat_plasma_dd_triton_profile435_ 1.65329210608436719e+14 +D-D_->_T_fusion_rate_at_point_436________________________________________ fusrat_plasma_dd_triton_profile436_ 1.61271738328662031e+14 +D-D_->_T_fusion_rate_at_point_437________________________________________ fusrat_plasma_dd_triton_profile437_ 1.57311117370201375e+14 +D-D_->_T_fusion_rate_at_point_438________________________________________ fusrat_plasma_dd_triton_profile438_ 1.53446433479298844e+14 +D-D_->_T_fusion_rate_at_point_439________________________________________ fusrat_plasma_dd_triton_profile439_ 1.49676776769447094e+14 +D-D_->_T_fusion_rate_at_point_440________________________________________ fusrat_plasma_dd_triton_profile440_ 1.46001243709614875e+14 +D-D_->_T_fusion_rate_at_point_441________________________________________ fusrat_plasma_dd_triton_profile441_ 1.42418939320312500e+14 +D-D_->_T_fusion_rate_at_point_442________________________________________ fusrat_plasma_dd_triton_profile442_ 1.38928979608961609e+14 +D-D_->_T_fusion_rate_at_point_443________________________________________ fusrat_plasma_dd_triton_profile443_ 1.35530494282368281e+14 +D-D_->_T_fusion_rate_at_point_444________________________________________ fusrat_plasma_dd_triton_profile444_ 1.32222629782025812e+14 +D-D_->_T_fusion_rate_at_point_445________________________________________ fusrat_plasma_dd_triton_profile445_ 1.29004552697878562e+14 +D-D_->_T_fusion_rate_at_point_446________________________________________ fusrat_plasma_dd_triton_profile446_ 1.25875453628746312e+14 +D-D_->_T_fusion_rate_at_point_447________________________________________ fusrat_plasma_dd_triton_profile447_ 1.22834551573595875e+14 +D-D_->_T_fusion_rate_at_point_448________________________________________ fusrat_plasma_dd_triton_profile448_ 1.19881098958466625e+14 +D-D_->_T_fusion_rate_at_point_449________________________________________ fusrat_plasma_dd_triton_profile449_ 1.17014387430610297e+14 +D-D_->_T_fusion_rate_at_point_450________________________________________ fusrat_plasma_dd_triton_profile450_ 1.14233754586589500e+14 +D-D_->_T_fusion_rate_at_point_451________________________________________ fusrat_plasma_dd_triton_profile451_ 1.11538591847805203e+14 +D-D_->_T_fusion_rate_at_point_452________________________________________ fusrat_plasma_dd_triton_profile452_ 1.08928353759840859e+14 +D-D_->_T_fusion_rate_at_point_453________________________________________ fusrat_plasma_dd_triton_profile453_ 1.06402569077844344e+14 +D-D_->_T_fusion_rate_at_point_454________________________________________ fusrat_plasma_dd_triton_profile454_ 1.03960854119168266e+14 +D-D_->_T_fusion_rate_at_point_455________________________________________ fusrat_plasma_dd_triton_profile455_ 1.01602929032184641e+14 +D-D_->_T_fusion_rate_at_point_456________________________________________ fusrat_plasma_dd_triton_profile456_ 9.93286378711376562e+13 +D-D_->_T_fusion_rate_at_point_457________________________________________ fusrat_plasma_dd_triton_profile457_ 9.71379737204151875e+13 +D-D_->_T_fusion_rate_at_point_458________________________________________ fusrat_plasma_dd_triton_profile458_ 9.50311106429303125e+13 +D-D_->_T_fusion_rate_at_point_459________________________________________ fusrat_plasma_dd_triton_profile459_ 9.30084450478288750e+13 +D-D_->_T_fusion_rate_at_point_460________________________________________ fusrat_plasma_dd_triton_profile460_ 9.10706503801489531e+13 +D-D_->_T_fusion_rate_at_point_461________________________________________ fusrat_plasma_dd_triton_profile461_ 8.92187511953232969e+13 +D-D_->_T_fusion_rate_at_point_462________________________________________ fusrat_plasma_dd_triton_profile462_ 8.74542264065638906e+13 +D-D_->_T_fusion_rate_at_point_463________________________________________ fusrat_plasma_dd_triton_profile463_ 8.57791582533281406e+13 +D-D_->_T_fusion_rate_at_point_464________________________________________ fusrat_plasma_dd_triton_profile464_ 8.41964565945849375e+13 +D-D_->_T_fusion_rate_at_point_465________________________________________ fusrat_plasma_dd_triton_profile465_ 8.27102153838392969e+13 +D-D_->_T_fusion_rate_at_point_466________________________________________ fusrat_plasma_dd_triton_profile466_ 8.13263210928382812e+13 +D-D_->_T_fusion_rate_at_point_467________________________________________ fusrat_plasma_dd_triton_profile467_ 8.00535992869872656e+13 +D-D_->_T_fusion_rate_at_point_468________________________________________ fusrat_plasma_dd_triton_profile468_ 7.89063229924358750e+13 +D-D_->_T_fusion_rate_at_point_469________________________________________ fusrat_plasma_dd_triton_profile469_ 7.79113337176607188e+13 +D-D_->_T_fusion_rate_at_point_470________________________________________ fusrat_plasma_dd_triton_profile470_ 7.71521789962937969e+13 +D-D_->_T_fusion_rate_at_point_471________________________________________ fusrat_plasma_dd_triton_profile471_ 6.80010954467127422e+13 +D-D_->_T_fusion_rate_at_point_472________________________________________ fusrat_plasma_dd_triton_profile472_ 5.96289373708006797e+13 +D-D_->_T_fusion_rate_at_point_473________________________________________ fusrat_plasma_dd_triton_profile473_ 5.19985013425781406e+13 +D-D_->_T_fusion_rate_at_point_474________________________________________ fusrat_plasma_dd_triton_profile474_ 4.50727431854289609e+13 +D-D_->_T_fusion_rate_at_point_475________________________________________ fusrat_plasma_dd_triton_profile475_ 3.88147936979885859e+13 +D-D_->_T_fusion_rate_at_point_476________________________________________ fusrat_plasma_dd_triton_profile476_ 3.31879763513780469e+13 +D-D_->_T_fusion_rate_at_point_477________________________________________ fusrat_plasma_dd_triton_profile477_ 2.81558273249270000e+13 +D-D_->_T_fusion_rate_at_point_478________________________________________ fusrat_plasma_dd_triton_profile478_ 2.36821183328086953e+13 +D-D_->_T_fusion_rate_at_point_479________________________________________ fusrat_plasma_dd_triton_profile479_ 1.97308828015867148e+13 +D-D_->_T_fusion_rate_at_point_480________________________________________ fusrat_plasma_dd_triton_profile480_ 1.62664460947961504e+13 +D-D_->_T_fusion_rate_at_point_481________________________________________ fusrat_plasma_dd_triton_profile481_ 1.32534606533807383e+13 +D-D_->_T_fusion_rate_at_point_482________________________________________ fusrat_plasma_dd_triton_profile482_ 1.06569471403519551e+13 +D-D_->_T_fusion_rate_at_point_483________________________________________ fusrat_plasma_dd_triton_profile483_ 8.44234295744761719e+12 +D-D_->_T_fusion_rate_at_point_484________________________________________ fusrat_plasma_dd_triton_profile484_ 6.57555985711841309e+12 +D-D_->_T_fusion_rate_at_point_485________________________________________ fusrat_plasma_dd_triton_profile485_ 5.02305282467305078e+12 +D-D_->_T_fusion_rate_at_point_486________________________________________ fusrat_plasma_dd_triton_profile486_ 3.75190297590971729e+12 +D-D_->_T_fusion_rate_at_point_487________________________________________ fusrat_plasma_dd_triton_profile487_ 2.72991792956709521e+12 +D-D_->_T_fusion_rate_at_point_488________________________________________ fusrat_plasma_dd_triton_profile488_ 1.92575399236826611e+12 +D-D_->_T_fusion_rate_at_point_489________________________________________ fusrat_plasma_dd_triton_profile489_ 1.30906554267507593e+12 +D-D_->_T_fusion_rate_at_point_490________________________________________ fusrat_plasma_dd_triton_profile490_ 8.50688180143951660e+11 +D-D_->_T_fusion_rate_at_point_491________________________________________ fusrat_plasma_dd_triton_profile491_ 5.22863388369196411e+11 +D-D_->_T_fusion_rate_at_point_492________________________________________ fusrat_plasma_dd_triton_profile492_ 2.99513285535970642e+11 +D-D_->_T_fusion_rate_at_point_493________________________________________ fusrat_plasma_dd_triton_profile493_ 1.56573712051348724e+11 +D-D_->_T_fusion_rate_at_point_494________________________________________ fusrat_plasma_dd_triton_profile494_ 7.23906938693896637e+10 +D-D_->_T_fusion_rate_at_point_495________________________________________ fusrat_plasma_dd_triton_profile495_ 2.81756584013148956e+10 +D-D_->_T_fusion_rate_at_point_496________________________________________ fusrat_plasma_dd_triton_profile496_ 8.49168548726934147e+09 +D-D_->_T_fusion_rate_at_point_497________________________________________ fusrat_plasma_dd_triton_profile497_ 1.69420389757438159e+09 +D-D_->_T_fusion_rate_at_point_498________________________________________ fusrat_plasma_dd_triton_profile498_ 1.58789681134147495e+08 +D-D_->_T_fusion_rate_at_point_499________________________________________ fusrat_plasma_dd_triton_profile499_ 2.62370949309833953e+06 +D-D_->_T_fusion_rate_at_point_500________________________________________ fusrat_plasma_dd_triton_profile500_ 3.82169753385829054e+01 +D-D_->_3He_fusion_rate_at_point_0________________________________________ fusrat_plasma_dd_helion_profile0_ 7.63693519305538400e+15 +D-D_->_3He_fusion_rate_at_point_1________________________________________ fusrat_plasma_dd_helion_profile1_ 7.63683998666246200e+15 +D-D_->_3He_fusion_rate_at_point_2________________________________________ fusrat_plasma_dd_helion_profile2_ 7.63655437232537800e+15 +D-D_->_3He_fusion_rate_at_point_3________________________________________ fusrat_plasma_dd_helion_profile3_ 7.63607836456912100e+15 +D-D_->_3He_fusion_rate_at_point_4________________________________________ fusrat_plasma_dd_helion_profile4_ 7.63541198760127900e+15 +D-D_->_3He_fusion_rate_at_point_5________________________________________ fusrat_plasma_dd_helion_profile5_ 7.63455527531112000e+15 +D-D_->_3He_fusion_rate_at_point_6________________________________________ fusrat_plasma_dd_helion_profile6_ 7.63350827126814500e+15 +D-D_->_3He_fusion_rate_at_point_7________________________________________ fusrat_plasma_dd_helion_profile7_ 7.63227102872038500e+15 +D-D_->_3He_fusion_rate_at_point_8________________________________________ fusrat_plasma_dd_helion_profile8_ 7.63084361059212200e+15 +D-D_->_3He_fusion_rate_at_point_9________________________________________ fusrat_plasma_dd_helion_profile9_ 7.62922608948136200e+15 +D-D_->_3He_fusion_rate_at_point_10_______________________________________ fusrat_plasma_dd_helion_profile10_ 7.62741854765689100e+15 +D-D_->_3He_fusion_rate_at_point_11_______________________________________ fusrat_plasma_dd_helion_profile11_ 7.62542107705483100e+15 +D-D_->_3He_fusion_rate_at_point_12_______________________________________ fusrat_plasma_dd_helion_profile12_ 7.62323377927491900e+15 +D-D_->_3He_fusion_rate_at_point_13_______________________________________ fusrat_plasma_dd_helion_profile13_ 7.62085676557632100e+15 +D-D_->_3He_fusion_rate_at_point_14_______________________________________ fusrat_plasma_dd_helion_profile14_ 7.61829015687307500e+15 +D-D_->_3He_fusion_rate_at_point_15_______________________________________ fusrat_plasma_dd_helion_profile15_ 7.61553408372913800e+15 +D-D_->_3He_fusion_rate_at_point_16_______________________________________ fusrat_plasma_dd_helion_profile16_ 7.61258868635302300e+15 +D-D_->_3He_fusion_rate_at_point_17_______________________________________ fusrat_plasma_dd_helion_profile17_ 7.60945411459203900e+15 +D-D_->_3He_fusion_rate_at_point_18_______________________________________ fusrat_plasma_dd_helion_profile18_ 7.60613052792613900e+15 +D-D_->_3He_fusion_rate_at_point_19_______________________________________ fusrat_plasma_dd_helion_profile19_ 7.60261809546137500e+15 +D-D_->_3He_fusion_rate_at_point_20_______________________________________ fusrat_plasma_dd_helion_profile20_ 7.59891699592294700e+15 +D-D_->_3He_fusion_rate_at_point_21_______________________________________ fusrat_plasma_dd_helion_profile21_ 7.59502741764789400e+15 +D-D_->_3He_fusion_rate_at_point_22_______________________________________ fusrat_plasma_dd_helion_profile22_ 7.59094955857728100e+15 +D-D_->_3He_fusion_rate_at_point_23_______________________________________ fusrat_plasma_dd_helion_profile23_ 7.58668362624812100e+15 +D-D_->_3He_fusion_rate_at_point_24_______________________________________ fusrat_plasma_dd_helion_profile24_ 7.58222983778479800e+15 +D-D_->_3He_fusion_rate_at_point_25_______________________________________ fusrat_plasma_dd_helion_profile25_ 7.57758841989019100e+15 +D-D_->_3He_fusion_rate_at_point_26_______________________________________ fusrat_plasma_dd_helion_profile26_ 7.57275960883624000e+15 +D-D_->_3He_fusion_rate_at_point_27_______________________________________ fusrat_plasma_dd_helion_profile27_ 7.56774365045433300e+15 +D-D_->_3He_fusion_rate_at_point_28_______________________________________ fusrat_plasma_dd_helion_profile28_ 7.56254080012507200e+15 +D-D_->_3He_fusion_rate_at_point_29_______________________________________ fusrat_plasma_dd_helion_profile29_ 7.55715132276782000e+15 +D-D_->_3He_fusion_rate_at_point_30_______________________________________ fusrat_plasma_dd_helion_profile30_ 7.55157549282973100e+15 +D-D_->_3He_fusion_rate_at_point_31_______________________________________ fusrat_plasma_dd_helion_profile31_ 7.54581359427443500e+15 +D-D_->_3He_fusion_rate_at_point_32_______________________________________ fusrat_plasma_dd_helion_profile32_ 7.53986592057033500e+15 +D-D_->_3He_fusion_rate_at_point_33_______________________________________ fusrat_plasma_dd_helion_profile33_ 7.53373277467842800e+15 +D-D_->_3He_fusion_rate_at_point_34_______________________________________ fusrat_plasma_dd_helion_profile34_ 7.52741446903984400e+15 +D-D_->_3He_fusion_rate_at_point_35_______________________________________ fusrat_plasma_dd_helion_profile35_ 7.52091132556292000e+15 +D-D_->_3He_fusion_rate_at_point_36_______________________________________ fusrat_plasma_dd_helion_profile36_ 7.51422367560982700e+15 +D-D_->_3He_fusion_rate_at_point_37_______________________________________ fusrat_plasma_dd_helion_profile37_ 7.50735185998288000e+15 +D-D_->_3He_fusion_rate_at_point_38_______________________________________ fusrat_plasma_dd_helion_profile38_ 7.50029622891042300e+15 +D-D_->_3He_fusion_rate_at_point_39_______________________________________ fusrat_plasma_dd_helion_profile39_ 7.49305714203231500e+15 +D-D_->_3He_fusion_rate_at_point_40_______________________________________ fusrat_plasma_dd_helion_profile40_ 7.48563496838499100e+15 +D-D_->_3He_fusion_rate_at_point_41_______________________________________ fusrat_plasma_dd_helion_profile41_ 7.47803008638611800e+15 +D-D_->_3He_fusion_rate_at_point_42_______________________________________ fusrat_plasma_dd_helion_profile42_ 7.47024288381895000e+15 +D-D_->_3He_fusion_rate_at_point_43_______________________________________ fusrat_plasma_dd_helion_profile43_ 7.46227375781610000e+15 +D-D_->_3He_fusion_rate_at_point_44_______________________________________ fusrat_plasma_dd_helion_profile44_ 7.45412311484311200e+15 +D-D_->_3He_fusion_rate_at_point_45_______________________________________ fusrat_plasma_dd_helion_profile45_ 7.44579137068146500e+15 +D-D_->_3He_fusion_rate_at_point_46_______________________________________ fusrat_plasma_dd_helion_profile46_ 7.43727895041131300e+15 +D-D_->_3He_fusion_rate_at_point_47_______________________________________ fusrat_plasma_dd_helion_profile47_ 7.42858628839367200e+15 +D-D_->_3He_fusion_rate_at_point_48_______________________________________ fusrat_plasma_dd_helion_profile48_ 7.41971382825237700e+15 +D-D_->_3He_fusion_rate_at_point_49_______________________________________ fusrat_plasma_dd_helion_profile49_ 7.41066202285546900e+15 +D-D_->_3He_fusion_rate_at_point_50_______________________________________ fusrat_plasma_dd_helion_profile50_ 7.40143133429634400e+15 +D-D_->_3He_fusion_rate_at_point_51_______________________________________ fusrat_plasma_dd_helion_profile51_ 7.39202223387434300e+15 +D-D_->_3He_fusion_rate_at_point_52_______________________________________ fusrat_plasma_dd_helion_profile52_ 7.38243520207503700e+15 +D-D_->_3He_fusion_rate_at_point_53_______________________________________ fusrat_plasma_dd_helion_profile53_ 7.37267072855009000e+15 +D-D_->_3He_fusion_rate_at_point_54_______________________________________ fusrat_plasma_dd_helion_profile54_ 7.36272931209672200e+15 +D-D_->_3He_fusion_rate_at_point_55_______________________________________ fusrat_plasma_dd_helion_profile55_ 7.35261146063671500e+15 +D-D_->_3He_fusion_rate_at_point_56_______________________________________ fusrat_plasma_dd_helion_profile56_ 7.34231769119511100e+15 +D-D_->_3He_fusion_rate_at_point_57_______________________________________ fusrat_plasma_dd_helion_profile57_ 7.33184852987841000e+15 +D-D_->_3He_fusion_rate_at_point_58_______________________________________ fusrat_plasma_dd_helion_profile58_ 7.32120451185243100e+15 +D-D_->_3He_fusion_rate_at_point_59_______________________________________ fusrat_plasma_dd_helion_profile59_ 7.31038618131973900e+15 +D-D_->_3He_fusion_rate_at_point_60_______________________________________ fusrat_plasma_dd_helion_profile60_ 7.29939409149664600e+15 +D-D_->_3He_fusion_rate_at_point_61_______________________________________ fusrat_plasma_dd_helion_profile61_ 7.28822880458988900e+15 +D-D_->_3He_fusion_rate_at_point_62_______________________________________ fusrat_plasma_dd_helion_profile62_ 7.27689089177276700e+15 +D-D_->_3He_fusion_rate_at_point_63_______________________________________ fusrat_plasma_dd_helion_profile63_ 7.26538093316102900e+15 +D-D_->_3He_fusion_rate_at_point_64_______________________________________ fusrat_plasma_dd_helion_profile64_ 7.25369951778822000e+15 +D-D_->_3He_fusion_rate_at_point_65_______________________________________ fusrat_plasma_dd_helion_profile65_ 7.24184724358070700e+15 +D-D_->_3He_fusion_rate_at_point_66_______________________________________ fusrat_plasma_dd_helion_profile66_ 7.22982471733224100e+15 +D-D_->_3He_fusion_rate_at_point_67_______________________________________ fusrat_plasma_dd_helion_profile67_ 7.21763255467816400e+15 +D-D_->_3He_fusion_rate_at_point_68_______________________________________ fusrat_plasma_dd_helion_profile68_ 7.20527138006917700e+15 +D-D_->_3He_fusion_rate_at_point_69_______________________________________ fusrat_plasma_dd_helion_profile69_ 7.19274182674466800e+15 +D-D_->_3He_fusion_rate_at_point_70_______________________________________ fusrat_plasma_dd_helion_profile70_ 7.18004453670576200e+15 +D-D_->_3He_fusion_rate_at_point_71_______________________________________ fusrat_plasma_dd_helion_profile71_ 7.16718016068773000e+15 +D-D_->_3He_fusion_rate_at_point_72_______________________________________ fusrat_plasma_dd_helion_profile72_ 7.15414935813228900e+15 +D-D_->_3He_fusion_rate_at_point_73_______________________________________ fusrat_plasma_dd_helion_profile73_ 7.14095279715918800e+15 +D-D_->_3He_fusion_rate_at_point_74_______________________________________ fusrat_plasma_dd_helion_profile74_ 7.12759115453760800e+15 +D-D_->_3He_fusion_rate_at_point_75_______________________________________ fusrat_plasma_dd_helion_profile75_ 7.11406511565703500e+15 +D-D_->_3He_fusion_rate_at_point_76_______________________________________ fusrat_plasma_dd_helion_profile76_ 7.10037537449782800e+15 +D-D_->_3He_fusion_rate_at_point_77_______________________________________ fusrat_plasma_dd_helion_profile77_ 7.08652263360118500e+15 +D-D_->_3He_fusion_rate_at_point_78_______________________________________ fusrat_plasma_dd_helion_profile78_ 7.07250760403893600e+15 +D-D_->_3He_fusion_rate_at_point_79_______________________________________ fusrat_plasma_dd_helion_profile79_ 7.05833100538271700e+15 +D-D_->_3He_fusion_rate_at_point_80_______________________________________ fusrat_plasma_dd_helion_profile80_ 7.04399356567289400e+15 +D-D_->_3He_fusion_rate_at_point_81_______________________________________ fusrat_plasma_dd_helion_profile81_ 7.02949602138696700e+15 +D-D_->_3He_fusion_rate_at_point_82_______________________________________ fusrat_plasma_dd_helion_profile82_ 7.01483911740758500e+15 +D-D_->_3He_fusion_rate_at_point_83_______________________________________ fusrat_plasma_dd_helion_profile83_ 7.00002360699017100e+15 +D-D_->_3He_fusion_rate_at_point_84_______________________________________ fusrat_plasma_dd_helion_profile84_ 6.98505025173014800e+15 +D-D_->_3He_fusion_rate_at_point_85_______________________________________ fusrat_plasma_dd_helion_profile85_ 6.96991982152967000e+15 +D-D_->_3He_fusion_rate_at_point_86_______________________________________ fusrat_plasma_dd_helion_profile86_ 6.95463309456402200e+15 +D-D_->_3He_fusion_rate_at_point_87_______________________________________ fusrat_plasma_dd_helion_profile87_ 6.93919085724757300e+15 +D-D_->_3He_fusion_rate_at_point_88_______________________________________ fusrat_plasma_dd_helion_profile88_ 6.92359390419930900e+15 +D-D_->_3He_fusion_rate_at_point_89_______________________________________ fusrat_plasma_dd_helion_profile89_ 6.90784303820794800e+15 +D-D_->_3He_fusion_rate_at_point_90_______________________________________ fusrat_plasma_dd_helion_profile90_ 6.89193907019666000e+15 +D-D_->_3He_fusion_rate_at_point_91_______________________________________ fusrat_plasma_dd_helion_profile91_ 6.87588281918735400e+15 +D-D_->_3He_fusion_rate_at_point_92_______________________________________ fusrat_plasma_dd_helion_profile92_ 6.85967511226449100e+15 +D-D_->_3He_fusion_rate_at_point_93_______________________________________ fusrat_plasma_dd_helion_profile93_ 6.84331678453865500e+15 +D-D_->_3He_fusion_rate_at_point_94_______________________________________ fusrat_plasma_dd_helion_profile94_ 6.82680867910945400e+15 +D-D_->_3He_fusion_rate_at_point_95_______________________________________ fusrat_plasma_dd_helion_profile95_ 6.81015164702822100e+15 +D-D_->_3He_fusion_rate_at_point_96_______________________________________ fusrat_plasma_dd_helion_profile96_ 6.79334654726019500e+15 +D-D_->_3He_fusion_rate_at_point_97_______________________________________ fusrat_plasma_dd_helion_profile97_ 6.77639424664622600e+15 +D-D_->_3He_fusion_rate_at_point_98_______________________________________ fusrat_plasma_dd_helion_profile98_ 6.75929561986424400e+15 +D-D_->_3He_fusion_rate_at_point_99_______________________________________ fusrat_plasma_dd_helion_profile99_ 6.74205154939008000e+15 +D-D_->_3He_fusion_rate_at_point_100______________________________________ fusrat_plasma_dd_helion_profile100_ 6.72466292545803900e+15 +D-D_->_3He_fusion_rate_at_point_101______________________________________ fusrat_plasma_dd_helion_profile101_ 6.70713064602098500e+15 +D-D_->_3He_fusion_rate_at_point_102______________________________________ fusrat_plasma_dd_helion_profile102_ 6.68945561670996900e+15 +D-D_->_3He_fusion_rate_at_point_103______________________________________ fusrat_plasma_dd_helion_profile103_ 6.67163875079351600e+15 +D-D_->_3He_fusion_rate_at_point_104______________________________________ fusrat_plasma_dd_helion_profile104_ 6.65368096913639800e+15 +D-D_->_3He_fusion_rate_at_point_105______________________________________ fusrat_plasma_dd_helion_profile105_ 6.63558320015803300e+15 +D-D_->_3He_fusion_rate_at_point_106______________________________________ fusrat_plasma_dd_helion_profile106_ 6.61734637979051700e+15 +D-D_->_3He_fusion_rate_at_point_107______________________________________ fusrat_plasma_dd_helion_profile107_ 6.59897145143604600e+15 +D-D_->_3He_fusion_rate_at_point_108______________________________________ fusrat_plasma_dd_helion_profile108_ 6.58045936592414700e+15 +D-D_->_3He_fusion_rate_at_point_109______________________________________ fusrat_plasma_dd_helion_profile109_ 6.56181108146831100e+15 +D-D_->_3He_fusion_rate_at_point_110______________________________________ fusrat_plasma_dd_helion_profile110_ 6.54302756362222100e+15 +D-D_->_3He_fusion_rate_at_point_111______________________________________ fusrat_plasma_dd_helion_profile111_ 6.52410978523566800e+15 +D-D_->_3He_fusion_rate_at_point_112______________________________________ fusrat_plasma_dd_helion_profile112_ 6.50505872640987000e+15 +D-D_->_3He_fusion_rate_at_point_113______________________________________ fusrat_plasma_dd_helion_profile113_ 6.48587537445251700e+15 +D-D_->_3He_fusion_rate_at_point_114______________________________________ fusrat_plasma_dd_helion_profile114_ 6.46656072383226100e+15 +D-D_->_3He_fusion_rate_at_point_115______________________________________ fusrat_plasma_dd_helion_profile115_ 6.44711577613283500e+15 +D-D_->_3He_fusion_rate_at_point_116______________________________________ fusrat_plasma_dd_helion_profile116_ 6.42754154000680000e+15 +D-D_->_3He_fusion_rate_at_point_117______________________________________ fusrat_plasma_dd_helion_profile117_ 6.40783903112869500e+15 +D-D_->_3He_fusion_rate_at_point_118______________________________________ fusrat_plasma_dd_helion_profile118_ 6.38800927214793500e+15 +D-D_->_3He_fusion_rate_at_point_119______________________________________ fusrat_plasma_dd_helion_profile119_ 6.36805329264111800e+15 +D-D_->_3He_fusion_rate_at_point_120______________________________________ fusrat_plasma_dd_helion_profile120_ 6.34797212906409300e+15 +D-D_->_3He_fusion_rate_at_point_121______________________________________ fusrat_plasma_dd_helion_profile121_ 6.32776682470333200e+15 +D-D_->_3He_fusion_rate_at_point_122______________________________________ fusrat_plasma_dd_helion_profile122_ 6.30743842962713400e+15 +D-D_->_3He_fusion_rate_at_point_123______________________________________ fusrat_plasma_dd_helion_profile123_ 6.28698800063619900e+15 +D-D_->_3He_fusion_rate_at_point_124______________________________________ fusrat_plasma_dd_helion_profile124_ 6.26641660121383100e+15 +D-D_->_3He_fusion_rate_at_point_125______________________________________ fusrat_plasma_dd_helion_profile125_ 6.24572530147577000e+15 +D-D_->_3He_fusion_rate_at_point_126______________________________________ fusrat_plasma_dd_helion_profile126_ 6.22491517811944000e+15 +D-D_->_3He_fusion_rate_at_point_127______________________________________ fusrat_plasma_dd_helion_profile127_ 6.20398731437293500e+15 +D-D_->_3He_fusion_rate_at_point_128______________________________________ fusrat_plasma_dd_helion_profile128_ 6.18294279994339000e+15 +D-D_->_3He_fusion_rate_at_point_129______________________________________ fusrat_plasma_dd_helion_profile129_ 6.16178273096501700e+15 +D-D_->_3He_fusion_rate_at_point_130______________________________________ fusrat_plasma_dd_helion_profile130_ 6.14050820994674500e+15 +D-D_->_3He_fusion_rate_at_point_131______________________________________ fusrat_plasma_dd_helion_profile131_ 6.11912034571922800e+15 +D-D_->_3He_fusion_rate_at_point_132______________________________________ fusrat_plasma_dd_helion_profile132_ 6.09762025338163100e+15 +D-D_->_3He_fusion_rate_at_point_133______________________________________ fusrat_plasma_dd_helion_profile133_ 6.07600905424784700e+15 +D-D_->_3He_fusion_rate_at_point_134______________________________________ fusrat_plasma_dd_helion_profile134_ 6.05428787579226800e+15 +D-D_->_3He_fusion_rate_at_point_135______________________________________ fusrat_plasma_dd_helion_profile135_ 6.03245785159519900e+15 +D-D_->_3He_fusion_rate_at_point_136______________________________________ fusrat_plasma_dd_helion_profile136_ 6.01052012128770900e+15 +D-D_->_3He_fusion_rate_at_point_137______________________________________ fusrat_plasma_dd_helion_profile137_ 5.98847583049611000e+15 +D-D_->_3He_fusion_rate_at_point_138______________________________________ fusrat_plasma_dd_helion_profile138_ 5.96632613078603000e+15 +D-D_->_3He_fusion_rate_at_point_139______________________________________ fusrat_plasma_dd_helion_profile139_ 5.94407217960587900e+15 +D-D_->_3He_fusion_rate_at_point_140______________________________________ fusrat_plasma_dd_helion_profile140_ 5.92171514023004400e+15 +D-D_->_3He_fusion_rate_at_point_141______________________________________ fusrat_plasma_dd_helion_profile141_ 5.89925618170156200e+15 +D-D_->_3He_fusion_rate_at_point_142______________________________________ fusrat_plasma_dd_helion_profile142_ 5.87669647877428400e+15 +D-D_->_3He_fusion_rate_at_point_143______________________________________ fusrat_plasma_dd_helion_profile143_ 5.85403721185467900e+15 +D-D_->_3He_fusion_rate_at_point_144______________________________________ fusrat_plasma_dd_helion_profile144_ 5.83127956694315100e+15 +D-D_->_3He_fusion_rate_at_point_145______________________________________ fusrat_plasma_dd_helion_profile145_ 5.80842473557490900e+15 +D-D_->_3He_fusion_rate_at_point_146______________________________________ fusrat_plasma_dd_helion_profile146_ 5.78547391476032000e+15 +D-D_->_3He_fusion_rate_at_point_147______________________________________ fusrat_plasma_dd_helion_profile147_ 5.76242830692495500e+15 +D-D_->_3He_fusion_rate_at_point_148______________________________________ fusrat_plasma_dd_helion_profile148_ 5.73928911984899300e+15 +D-D_->_3He_fusion_rate_at_point_149______________________________________ fusrat_plasma_dd_helion_profile149_ 5.71605756660633200e+15 +D-D_->_3He_fusion_rate_at_point_150______________________________________ fusrat_plasma_dd_helion_profile150_ 5.69273486550314500e+15 +D-D_->_3He_fusion_rate_at_point_151______________________________________ fusrat_plasma_dd_helion_profile151_ 5.66932224001599600e+15 +D-D_->_3He_fusion_rate_at_point_152______________________________________ fusrat_plasma_dd_helion_profile152_ 5.64582091872952100e+15 +D-D_->_3He_fusion_rate_at_point_153______________________________________ fusrat_plasma_dd_helion_profile153_ 5.62223213527365200e+15 +D-D_->_3He_fusion_rate_at_point_154______________________________________ fusrat_plasma_dd_helion_profile154_ 5.59855712826029900e+15 +D-D_->_3He_fusion_rate_at_point_155______________________________________ fusrat_plasma_dd_helion_profile155_ 5.57479714121971300e+15 +D-D_->_3He_fusion_rate_at_point_156______________________________________ fusrat_plasma_dd_helion_profile156_ 5.55095342253624500e+15 +D-D_->_3He_fusion_rate_at_point_157______________________________________ fusrat_plasma_dd_helion_profile157_ 5.52702722538374100e+15 +D-D_->_3He_fusion_rate_at_point_158______________________________________ fusrat_plasma_dd_helion_profile158_ 5.50301980766041300e+15 +D-D_->_3He_fusion_rate_at_point_159______________________________________ fusrat_plasma_dd_helion_profile159_ 5.47893243192326700e+15 +D-D_->_3He_fusion_rate_at_point_160______________________________________ fusrat_plasma_dd_helion_profile160_ 5.45476636532205800e+15 +D-D_->_3He_fusion_rate_at_point_161______________________________________ fusrat_plasma_dd_helion_profile161_ 5.43052287953279600e+15 +D-D_->_3He_fusion_rate_at_point_162______________________________________ fusrat_plasma_dd_helion_profile162_ 5.40620325069076200e+15 +D-D_->_3He_fusion_rate_at_point_163______________________________________ fusrat_plasma_dd_helion_profile163_ 5.38180875932303700e+15 +D-D_->_3He_fusion_rate_at_point_164______________________________________ fusrat_plasma_dd_helion_profile164_ 5.35734069028062400e+15 +D-D_->_3He_fusion_rate_at_point_165______________________________________ fusrat_plasma_dd_helion_profile165_ 5.33280033267002000e+15 +D-D_->_3He_fusion_rate_at_point_166______________________________________ fusrat_plasma_dd_helion_profile166_ 5.30818897978437500e+15 +D-D_->_3He_fusion_rate_at_point_167______________________________________ fusrat_plasma_dd_helion_profile167_ 5.28350792903414300e+15 +D-D_->_3He_fusion_rate_at_point_168______________________________________ fusrat_plasma_dd_helion_profile168_ 5.25875848187728400e+15 +D-D_->_3He_fusion_rate_at_point_169______________________________________ fusrat_plasma_dd_helion_profile169_ 5.23394194374897200e+15 +D-D_->_3He_fusion_rate_at_point_170______________________________________ fusrat_plasma_dd_helion_profile170_ 5.20905962399080100e+15 +D-D_->_3He_fusion_rate_at_point_171______________________________________ fusrat_plasma_dd_helion_profile171_ 5.18411283577959400e+15 +D-D_->_3He_fusion_rate_at_point_172______________________________________ fusrat_plasma_dd_helion_profile172_ 5.15910289605563600e+15 +D-D_->_3He_fusion_rate_at_point_173______________________________________ fusrat_plasma_dd_helion_profile173_ 5.13403112545049000e+15 +D-D_->_3He_fusion_rate_at_point_174______________________________________ fusrat_plasma_dd_helion_profile174_ 5.10889884821432100e+15 +D-D_->_3He_fusion_rate_at_point_175______________________________________ fusrat_plasma_dd_helion_profile175_ 5.08370739214272000e+15 +D-D_->_3He_fusion_rate_at_point_176______________________________________ fusrat_plasma_dd_helion_profile176_ 5.05845808850303400e+15 +D-D_->_3He_fusion_rate_at_point_177______________________________________ fusrat_plasma_dd_helion_profile177_ 5.03315227196028600e+15 +D-D_->_3He_fusion_rate_at_point_178______________________________________ fusrat_plasma_dd_helion_profile178_ 5.00779128050249700e+15 +D-D_->_3He_fusion_rate_at_point_179______________________________________ fusrat_plasma_dd_helion_profile179_ 4.98237645536560700e+15 +D-D_->_3He_fusion_rate_at_point_180______________________________________ fusrat_plasma_dd_helion_profile180_ 4.95690914095791000e+15 +D-D_->_3He_fusion_rate_at_point_181______________________________________ fusrat_plasma_dd_helion_profile181_ 4.93139068478389600e+15 +D-D_->_3He_fusion_rate_at_point_182______________________________________ fusrat_plasma_dd_helion_profile182_ 4.90582243736774400e+15 +D-D_->_3He_fusion_rate_at_point_183______________________________________ fusrat_plasma_dd_helion_profile183_ 4.88020575217623900e+15 +D-D_->_3He_fusion_rate_at_point_184______________________________________ fusrat_plasma_dd_helion_profile184_ 4.85454198554119600e+15 +D-D_->_3He_fusion_rate_at_point_185______________________________________ fusrat_plasma_dd_helion_profile185_ 4.82883249658143000e+15 +D-D_->_3He_fusion_rate_at_point_186______________________________________ fusrat_plasma_dd_helion_profile186_ 4.80307864712420100e+15 +D-D_->_3He_fusion_rate_at_point_187______________________________________ fusrat_plasma_dd_helion_profile187_ 4.77728180162617600e+15 +D-D_->_3He_fusion_rate_at_point_188______________________________________ fusrat_plasma_dd_helion_profile188_ 4.75144332709388300e+15 +D-D_->_3He_fusion_rate_at_point_189______________________________________ fusrat_plasma_dd_helion_profile189_ 4.72556459300368400e+15 +D-D_->_3He_fusion_rate_at_point_190______________________________________ fusrat_plasma_dd_helion_profile190_ 4.69964697122124000e+15 +D-D_->_3He_fusion_rate_at_point_191______________________________________ fusrat_plasma_dd_helion_profile191_ 4.67369183592045600e+15 +D-D_->_3He_fusion_rate_at_point_192______________________________________ fusrat_plasma_dd_helion_profile192_ 4.64770056350195100e+15 +D-D_->_3He_fusion_rate_at_point_193______________________________________ fusrat_plasma_dd_helion_profile193_ 4.62167453251103700e+15 +D-D_->_3He_fusion_rate_at_point_194______________________________________ fusrat_plasma_dd_helion_profile194_ 4.59561512355512600e+15 +D-D_->_3He_fusion_rate_at_point_195______________________________________ fusrat_plasma_dd_helion_profile195_ 4.56952371922072600e+15 +D-D_->_3He_fusion_rate_at_point_196______________________________________ fusrat_plasma_dd_helion_profile196_ 4.54340170398986700e+15 +D-D_->_3He_fusion_rate_at_point_197______________________________________ fusrat_plasma_dd_helion_profile197_ 4.51725046415599500e+15 +D-D_->_3He_fusion_rate_at_point_198______________________________________ fusrat_plasma_dd_helion_profile198_ 4.49107138773945650e+15 +D-D_->_3He_fusion_rate_at_point_199______________________________________ fusrat_plasma_dd_helion_profile199_ 4.46486586440238000e+15 +D-D_->_3He_fusion_rate_at_point_200______________________________________ fusrat_plasma_dd_helion_profile200_ 4.43863528536308000e+15 +D-D_->_3He_fusion_rate_at_point_201______________________________________ fusrat_plasma_dd_helion_profile201_ 4.41238104330996000e+15 +D-D_->_3He_fusion_rate_at_point_202______________________________________ fusrat_plasma_dd_helion_profile202_ 4.38610453231485100e+15 +D-D_->_3He_fusion_rate_at_point_203______________________________________ fusrat_plasma_dd_helion_profile203_ 4.35980714774592000e+15 +D-D_->_3He_fusion_rate_at_point_204______________________________________ fusrat_plasma_dd_helion_profile204_ 4.33349028617998400e+15 +D-D_->_3He_fusion_rate_at_point_205______________________________________ fusrat_plasma_dd_helion_profile205_ 4.30715534531433850e+15 +D-D_->_3He_fusion_rate_at_point_206______________________________________ fusrat_plasma_dd_helion_profile206_ 4.28080372387806150e+15 +D-D_->_3He_fusion_rate_at_point_207______________________________________ fusrat_plasma_dd_helion_profile207_ 4.25443682154282300e+15 +D-D_->_3He_fusion_rate_at_point_208______________________________________ fusrat_plasma_dd_helion_profile208_ 4.22805603883310900e+15 +D-D_->_3He_fusion_rate_at_point_209______________________________________ fusrat_plasma_dd_helion_profile209_ 4.20166277703599350e+15 +D-D_->_3He_fusion_rate_at_point_210______________________________________ fusrat_plasma_dd_helion_profile210_ 4.17525843811035150e+15 +D-D_->_3He_fusion_rate_at_point_211______________________________________ fusrat_plasma_dd_helion_profile211_ 4.14884442459553350e+15 +D-D_->_3He_fusion_rate_at_point_212______________________________________ fusrat_plasma_dd_helion_profile212_ 4.12242213951957100e+15 +D-D_->_3He_fusion_rate_at_point_213______________________________________ fusrat_plasma_dd_helion_profile213_ 4.09599298630676000e+15 +D-D_->_3He_fusion_rate_at_point_214______________________________________ fusrat_plasma_dd_helion_profile214_ 4.06955836868480250e+15 +D-D_->_3He_fusion_rate_at_point_215______________________________________ fusrat_plasma_dd_helion_profile215_ 4.04311969059140100e+15 +D-D_->_3He_fusion_rate_at_point_216______________________________________ fusrat_plasma_dd_helion_profile216_ 4.01667835608026650e+15 +D-D_->_3He_fusion_rate_at_point_217______________________________________ fusrat_plasma_dd_helion_profile217_ 3.99023576922666050e+15 +D-D_->_3He_fusion_rate_at_point_218______________________________________ fusrat_plasma_dd_helion_profile218_ 3.96379333403236350e+15 +D-D_->_3He_fusion_rate_at_point_219______________________________________ fusrat_plasma_dd_helion_profile219_ 3.93735245433013550e+15 +D-D_->_3He_fusion_rate_at_point_220______________________________________ fusrat_plasma_dd_helion_profile220_ 3.91091453368759750e+15 +D-D_->_3He_fusion_rate_at_point_221______________________________________ fusrat_plasma_dd_helion_profile221_ 3.88448097531064300e+15 +D-D_->_3He_fusion_rate_at_point_222______________________________________ fusrat_plasma_dd_helion_profile222_ 3.85805318194622650e+15 +D-D_->_3He_fusion_rate_at_point_223______________________________________ fusrat_plasma_dd_helion_profile223_ 3.83163255578469400e+15 +D-D_->_3He_fusion_rate_at_point_224______________________________________ fusrat_plasma_dd_helion_profile224_ 3.80522049836152650e+15 +D-D_->_3He_fusion_rate_at_point_225______________________________________ fusrat_plasma_dd_helion_profile225_ 3.77881841045852100e+15 +D-D_->_3He_fusion_rate_at_point_226______________________________________ fusrat_plasma_dd_helion_profile226_ 3.75242769200451650e+15 +D-D_->_3He_fusion_rate_at_point_227______________________________________ fusrat_plasma_dd_helion_profile227_ 3.72604974197544250e+15 +D-D_->_3He_fusion_rate_at_point_228______________________________________ fusrat_plasma_dd_helion_profile228_ 3.69968595829396650e+15 +D-D_->_3He_fusion_rate_at_point_229______________________________________ fusrat_plasma_dd_helion_profile229_ 3.67333773772848750e+15 +D-D_->_3He_fusion_rate_at_point_230______________________________________ fusrat_plasma_dd_helion_profile230_ 3.64700647579161800e+15 +D-D_->_3He_fusion_rate_at_point_231______________________________________ fusrat_plasma_dd_helion_profile231_ 3.62069356663812150e+15 +D-D_->_3He_fusion_rate_at_point_232______________________________________ fusrat_plasma_dd_helion_profile232_ 3.59440040296232350e+15 +D-D_->_3He_fusion_rate_at_point_233______________________________________ fusrat_plasma_dd_helion_profile233_ 3.56812837589488400e+15 +D-D_->_3He_fusion_rate_at_point_234______________________________________ fusrat_plasma_dd_helion_profile234_ 3.54187887489915750e+15 +D-D_->_3He_fusion_rate_at_point_235______________________________________ fusrat_plasma_dd_helion_profile235_ 3.51565328766685850e+15 +D-D_->_3He_fusion_rate_at_point_236______________________________________ fusrat_plasma_dd_helion_profile236_ 3.48945300001325750e+15 +D-D_->_3He_fusion_rate_at_point_237______________________________________ fusrat_plasma_dd_helion_profile237_ 3.46327939577182350e+15 +D-D_->_3He_fusion_rate_at_point_238______________________________________ fusrat_plasma_dd_helion_profile238_ 3.43713385668825350e+15 +D-D_->_3He_fusion_rate_at_point_239______________________________________ fusrat_plasma_dd_helion_profile239_ 3.41101776231400250e+15 +D-D_->_3He_fusion_rate_at_point_240______________________________________ fusrat_plasma_dd_helion_profile240_ 3.38493248989924150e+15 +D-D_->_3He_fusion_rate_at_point_241______________________________________ fusrat_plasma_dd_helion_profile241_ 3.35887941428522250e+15 +D-D_->_3He_fusion_rate_at_point_242______________________________________ fusrat_plasma_dd_helion_profile242_ 3.33285990779614000e+15 +D-D_->_3He_fusion_rate_at_point_243______________________________________ fusrat_plasma_dd_helion_profile243_ 3.30687534013040050e+15 +D-D_->_3He_fusion_rate_at_point_244______________________________________ fusrat_plasma_dd_helion_profile244_ 3.28092707825133650e+15 +D-D_->_3He_fusion_rate_at_point_245______________________________________ fusrat_plasma_dd_helion_profile245_ 3.25501648627735850e+15 +D-D_->_3He_fusion_rate_at_point_246______________________________________ fusrat_plasma_dd_helion_profile246_ 3.22914492537154450e+15 +D-D_->_3He_fusion_rate_at_point_247______________________________________ fusrat_plasma_dd_helion_profile247_ 3.20331375363068500e+15 +D-D_->_3He_fusion_rate_at_point_248______________________________________ fusrat_plasma_dd_helion_profile248_ 3.17752432597374400e+15 +D-D_->_3He_fusion_rate_at_point_249______________________________________ fusrat_plasma_dd_helion_profile249_ 3.15177799402977000e+15 +D-D_->_3He_fusion_rate_at_point_250______________________________________ fusrat_plasma_dd_helion_profile250_ 3.12607610602521350e+15 +D-D_->_3He_fusion_rate_at_point_251______________________________________ fusrat_plasma_dd_helion_profile251_ 3.10042000667076000e+15 +D-D_->_3He_fusion_rate_at_point_252______________________________________ fusrat_plasma_dd_helion_profile252_ 3.07481103704749750e+15 +D-D_->_3He_fusion_rate_at_point_253______________________________________ fusrat_plasma_dd_helion_profile253_ 3.04925053449258950e+15 +D-D_->_3He_fusion_rate_at_point_254______________________________________ fusrat_plasma_dd_helion_profile254_ 3.02373983248435200e+15 +D-D_->_3He_fusion_rate_at_point_255______________________________________ fusrat_plasma_dd_helion_profile255_ 2.99828026052680350e+15 +D-D_->_3He_fusion_rate_at_point_256______________________________________ fusrat_plasma_dd_helion_profile256_ 2.97287314403358550e+15 +D-D_->_3He_fusion_rate_at_point_257______________________________________ fusrat_plasma_dd_helion_profile257_ 2.94751980421139200e+15 +D-D_->_3He_fusion_rate_at_point_258______________________________________ fusrat_plasma_dd_helion_profile258_ 2.92222155794278350e+15 +D-D_->_3He_fusion_rate_at_point_259______________________________________ fusrat_plasma_dd_helion_profile259_ 2.89697971766845750e+15 +D-D_->_3He_fusion_rate_at_point_260______________________________________ fusrat_plasma_dd_helion_profile260_ 2.87179559126896650e+15 +D-D_->_3He_fusion_rate_at_point_261______________________________________ fusrat_plasma_dd_helion_profile261_ 2.84667048194583900e+15 +D-D_->_3He_fusion_rate_at_point_262______________________________________ fusrat_plasma_dd_helion_profile262_ 2.82160568810217750e+15 +D-D_->_3He_fusion_rate_at_point_263______________________________________ fusrat_plasma_dd_helion_profile263_ 2.79660250322266300e+15 +D-D_->_3He_fusion_rate_at_point_264______________________________________ fusrat_plasma_dd_helion_profile264_ 2.77166221575303150e+15 +D-D_->_3He_fusion_rate_at_point_265______________________________________ fusrat_plasma_dd_helion_profile265_ 2.74678610897894250e+15 +D-D_->_3He_fusion_rate_at_point_266______________________________________ fusrat_plasma_dd_helion_profile266_ 2.72197546090434850e+15 +D-D_->_3He_fusion_rate_at_point_267______________________________________ fusrat_plasma_dd_helion_profile267_ 2.69723154412924050e+15 +D-D_->_3He_fusion_rate_at_point_268______________________________________ fusrat_plasma_dd_helion_profile268_ 2.67255562572691500e+15 +D-D_->_3He_fusion_rate_at_point_269______________________________________ fusrat_plasma_dd_helion_profile269_ 2.64794896712060050e+15 +D-D_->_3He_fusion_rate_at_point_270______________________________________ fusrat_plasma_dd_helion_profile270_ 2.62341282395959950e+15 +D-D_->_3He_fusion_rate_at_point_271______________________________________ fusrat_plasma_dd_helion_profile271_ 2.59894844599482700e+15 +D-D_->_3He_fusion_rate_at_point_272______________________________________ fusrat_plasma_dd_helion_profile272_ 2.57455707695384250e+15 +D-D_->_3He_fusion_rate_at_point_273______________________________________ fusrat_plasma_dd_helion_profile273_ 2.55023995441531350e+15 +D-D_->_3He_fusion_rate_at_point_274______________________________________ fusrat_plasma_dd_helion_profile274_ 2.52599830968289650e+15 +D-D_->_3He_fusion_rate_at_point_275______________________________________ fusrat_plasma_dd_helion_profile275_ 2.50183336765865350e+15 +D-D_->_3He_fusion_rate_at_point_276______________________________________ fusrat_plasma_dd_helion_profile276_ 2.47774634671585650e+15 +D-D_->_3He_fusion_rate_at_point_277______________________________________ fusrat_plasma_dd_helion_profile277_ 2.45373845857127400e+15 +D-D_->_3He_fusion_rate_at_point_278______________________________________ fusrat_plasma_dd_helion_profile278_ 2.42981090815694950e+15 +D-D_->_3He_fusion_rate_at_point_279______________________________________ fusrat_plasma_dd_helion_profile279_ 2.40596489349139000e+15 +D-D_->_3He_fusion_rate_at_point_280______________________________________ fusrat_plasma_dd_helion_profile280_ 2.38220160555028800e+15 +D-D_->_3He_fusion_rate_at_point_281______________________________________ fusrat_plasma_dd_helion_profile281_ 2.35852222813664900e+15 +D-D_->_3He_fusion_rate_at_point_282______________________________________ fusrat_plasma_dd_helion_profile282_ 2.33492793775047550e+15 +D-D_->_3He_fusion_rate_at_point_283______________________________________ fusrat_plasma_dd_helion_profile283_ 2.31141990345783850e+15 +D-D_->_3He_fusion_rate_at_point_284______________________________________ fusrat_plasma_dd_helion_profile284_ 2.28799928675952500e+15 +D-D_->_3He_fusion_rate_at_point_285______________________________________ fusrat_plasma_dd_helion_profile285_ 2.26466724145911600e+15 +D-D_->_3He_fusion_rate_at_point_286______________________________________ fusrat_plasma_dd_helion_profile286_ 2.24142491353056525e+15 +D-D_->_3He_fusion_rate_at_point_287______________________________________ fusrat_plasma_dd_helion_profile287_ 2.21827344098531400e+15 +D-D_->_3He_fusion_rate_at_point_288______________________________________ fusrat_plasma_dd_helion_profile288_ 2.19521395373884275e+15 +D-D_->_3He_fusion_rate_at_point_289______________________________________ fusrat_plasma_dd_helion_profile289_ 2.17224757347681725e+15 +D-D_->_3He_fusion_rate_at_point_290______________________________________ fusrat_plasma_dd_helion_profile290_ 2.14937541352066900e+15 +D-D_->_3He_fusion_rate_at_point_291______________________________________ fusrat_plasma_dd_helion_profile291_ 2.12659857869275350e+15 +D-D_->_3He_fusion_rate_at_point_292______________________________________ fusrat_plasma_dd_helion_profile292_ 2.10391816518099900e+15 +D-D_->_3He_fusion_rate_at_point_293______________________________________ fusrat_plasma_dd_helion_profile293_ 2.08133526040312850e+15 +D-D_->_3He_fusion_rate_at_point_294______________________________________ fusrat_plasma_dd_helion_profile294_ 2.05885094287037575e+15 +D-D_->_3He_fusion_rate_at_point_295______________________________________ fusrat_plasma_dd_helion_profile295_ 2.03646628205079500e+15 +D-D_->_3He_fusion_rate_at_point_296______________________________________ fusrat_plasma_dd_helion_profile296_ 2.01418233823209950e+15 +D-D_->_3He_fusion_rate_at_point_297______________________________________ fusrat_plasma_dd_helion_profile297_ 1.99200016238408800e+15 +D-D_->_3He_fusion_rate_at_point_298______________________________________ fusrat_plasma_dd_helion_profile298_ 1.96992079602060450e+15 +D-D_->_3He_fusion_rate_at_point_299______________________________________ fusrat_plasma_dd_helion_profile299_ 1.94794527106114125e+15 +D-D_->_3He_fusion_rate_at_point_300______________________________________ fusrat_plasma_dd_helion_profile300_ 1.92607460969198175e+15 +D-D_->_3He_fusion_rate_at_point_301______________________________________ fusrat_plasma_dd_helion_profile301_ 1.90430982422697200e+15 +D-D_->_3He_fusion_rate_at_point_302______________________________________ fusrat_plasma_dd_helion_profile302_ 1.88265191696790325e+15 +D-D_->_3He_fusion_rate_at_point_303______________________________________ fusrat_plasma_dd_helion_profile303_ 1.86110188006451675e+15 +D-D_->_3He_fusion_rate_at_point_304______________________________________ fusrat_plasma_dd_helion_profile304_ 1.83966069537413675e+15 +D-D_->_3He_fusion_rate_at_point_305______________________________________ fusrat_plasma_dd_helion_profile305_ 1.81832933432096650e+15 +D-D_->_3He_fusion_rate_at_point_306______________________________________ fusrat_plasma_dd_helion_profile306_ 1.79710875775503625e+15 +D-D_->_3He_fusion_rate_at_point_307______________________________________ fusrat_plasma_dd_helion_profile307_ 1.77599991581082700e+15 +D-D_->_3He_fusion_rate_at_point_308______________________________________ fusrat_plasma_dd_helion_profile308_ 1.75500374776557075e+15 +D-D_->_3He_fusion_rate_at_point_309______________________________________ fusrat_plasma_dd_helion_profile309_ 1.73412118189728225e+15 +D-D_->_3He_fusion_rate_at_point_310______________________________________ fusrat_plasma_dd_helion_profile310_ 1.71335313534247575e+15 +D-D_->_3He_fusion_rate_at_point_311______________________________________ fusrat_plasma_dd_helion_profile311_ 1.69270051395363225e+15 +D-D_->_3He_fusion_rate_at_point_312______________________________________ fusrat_plasma_dd_helion_profile312_ 1.67216421215640875e+15 +D-D_->_3He_fusion_rate_at_point_313______________________________________ fusrat_plasma_dd_helion_profile313_ 1.65174511280663075e+15 +D-D_->_3He_fusion_rate_at_point_314______________________________________ fusrat_plasma_dd_helion_profile314_ 1.63144408704702775e+15 +D-D_->_3He_fusion_rate_at_point_315______________________________________ fusrat_plasma_dd_helion_profile315_ 1.61126199416384000e+15 +D-D_->_3He_fusion_rate_at_point_316______________________________________ fusrat_plasma_dd_helion_profile316_ 1.59119968144317900e+15 +D-D_->_3He_fusion_rate_at_point_317______________________________________ fusrat_plasma_dd_helion_profile317_ 1.57125798402726300e+15 +D-D_->_3He_fusion_rate_at_point_318______________________________________ fusrat_plasma_dd_helion_profile318_ 1.55143772477052450e+15 +D-D_->_3He_fusion_rate_at_point_319______________________________________ fusrat_plasma_dd_helion_profile319_ 1.53173971409559100e+15 +D-D_->_3He_fusion_rate_at_point_320______________________________________ fusrat_plasma_dd_helion_profile320_ 1.51216474984916500e+15 +D-D_->_3He_fusion_rate_at_point_321______________________________________ fusrat_plasma_dd_helion_profile321_ 1.49271361715786425e+15 +D-D_->_3He_fusion_rate_at_point_322______________________________________ fusrat_plasma_dd_helion_profile322_ 1.47338708828399275e+15 +D-D_->_3He_fusion_rate_at_point_323______________________________________ fusrat_plasma_dd_helion_profile323_ 1.45418592248131800e+15 +D-D_->_3He_fusion_rate_at_point_324______________________________________ fusrat_plasma_dd_helion_profile324_ 1.43511086585083250e+15 +D-D_->_3He_fusion_rate_at_point_325______________________________________ fusrat_plasma_dd_helion_profile325_ 1.41616265119658475e+15 +D-D_->_3He_fusion_rate_at_point_326______________________________________ fusrat_plasma_dd_helion_profile326_ 1.39734199788154725e+15 +D-D_->_3He_fusion_rate_at_point_327______________________________________ fusrat_plasma_dd_helion_profile327_ 1.37864961168362400e+15 +D-D_->_3He_fusion_rate_at_point_328______________________________________ fusrat_plasma_dd_helion_profile328_ 1.36008618465172025e+15 +D-D_->_3He_fusion_rate_at_point_329______________________________________ fusrat_plasma_dd_helion_profile329_ 1.34165239496206150e+15 +D-D_->_3He_fusion_rate_at_point_330______________________________________ fusrat_plasma_dd_helion_profile330_ 1.32334890677462700e+15 +D-D_->_3He_fusion_rate_at_point_331______________________________________ fusrat_plasma_dd_helion_profile331_ 1.30517637008987500e+15 +D-D_->_3He_fusion_rate_at_point_332______________________________________ fusrat_plasma_dd_helion_profile332_ 1.28713542060570325e+15 +D-D_->_3He_fusion_rate_at_point_333______________________________________ fusrat_plasma_dd_helion_profile333_ 1.26922667957473025e+15 +D-D_->_3He_fusion_rate_at_point_334______________________________________ fusrat_plasma_dd_helion_profile334_ 1.25145075366191475e+15 +D-D_->_3He_fusion_rate_at_point_335______________________________________ fusrat_plasma_dd_helion_profile335_ 1.23380823480257475e+15 +D-D_->_3He_fusion_rate_at_point_336______________________________________ fusrat_plasma_dd_helion_profile336_ 1.21629970006082900e+15 +D-D_->_3He_fusion_rate_at_point_337______________________________________ fusrat_plasma_dd_helion_profile337_ 1.19892571148851075e+15 +D-D_->_3He_fusion_rate_at_point_338______________________________________ fusrat_plasma_dd_helion_profile338_ 1.18168681598461225e+15 +D-D_->_3He_fusion_rate_at_point_339______________________________________ fusrat_plasma_dd_helion_profile339_ 1.16458354515529000e+15 +D-D_->_3He_fusion_rate_at_point_340______________________________________ fusrat_plasma_dd_helion_profile340_ 1.14761641517449800e+15 +D-D_->_3He_fusion_rate_at_point_341______________________________________ fusrat_plasma_dd_helion_profile341_ 1.13078592664527450e+15 +D-D_->_3He_fusion_rate_at_point_342______________________________________ fusrat_plasma_dd_helion_profile342_ 1.11409256446177800e+15 +D-D_->_3He_fusion_rate_at_point_343______________________________________ fusrat_plasma_dd_helion_profile343_ 1.09753679767207625e+15 +D-D_->_3He_fusion_rate_at_point_344______________________________________ fusrat_plasma_dd_helion_profile344_ 1.08111907934179212e+15 +D-D_->_3He_fusion_rate_at_point_345______________________________________ fusrat_plasma_dd_helion_profile345_ 1.06483984641862912e+15 +D-D_->_3He_fusion_rate_at_point_346______________________________________ fusrat_plasma_dd_helion_profile346_ 1.04869951959787850e+15 +D-D_->_3He_fusion_rate_at_point_347______________________________________ fusrat_plasma_dd_helion_profile347_ 1.03269850318891775e+15 +D-D_->_3He_fusion_rate_at_point_348______________________________________ fusrat_plasma_dd_helion_profile348_ 1.01683718498282412e+15 +D-D_->_3He_fusion_rate_at_point_349______________________________________ fusrat_plasma_dd_helion_profile349_ 1.00111593612113800e+15 +D-D_->_3He_fusion_rate_at_point_350______________________________________ fusrat_plasma_dd_helion_profile350_ 9.85535110965842125e+14 +D-D_->_3He_fusion_rate_at_point_351______________________________________ fusrat_plasma_dd_helion_profile351_ 9.70095046970665250e+14 +D-D_->_3He_fusion_rate_at_point_352______________________________________ fusrat_plasma_dd_helion_profile352_ 9.54796064553758625e+14 +D-D_->_3He_fusion_rate_at_point_353______________________________________ fusrat_plasma_dd_helion_profile353_ 9.39638466971810000e+14 +D-D_->_3He_fusion_rate_at_point_354______________________________________ fusrat_plasma_dd_helion_profile354_ 9.24622540195736375e+14 +D-D_->_3He_fusion_rate_at_point_355______________________________________ fusrat_plasma_dd_helion_profile355_ 9.09748552787970750e+14 +D-D_->_3He_fusion_rate_at_point_356______________________________________ fusrat_plasma_dd_helion_profile356_ 8.95016755781481875e+14 +D-D_->_3He_fusion_rate_at_point_357______________________________________ fusrat_plasma_dd_helion_profile357_ 8.80427382560588500e+14 +D-D_->_3He_fusion_rate_at_point_358______________________________________ fusrat_plasma_dd_helion_profile358_ 8.65980648743680125e+14 +D-D_->_3He_fusion_rate_at_point_359______________________________________ fusrat_plasma_dd_helion_profile359_ 8.51676752067936875e+14 +D-D_->_3He_fusion_rate_at_point_360______________________________________ fusrat_plasma_dd_helion_profile360_ 8.37515872276141625e+14 +D-D_->_3He_fusion_rate_at_point_361______________________________________ fusrat_plasma_dd_helion_profile361_ 8.23498171005699125e+14 +D-D_->_3He_fusion_rate_at_point_362______________________________________ fusrat_plasma_dd_helion_profile362_ 8.09623791679975125e+14 +D-D_->_3He_fusion_rate_at_point_363______________________________________ fusrat_plasma_dd_helion_profile363_ 7.95892859402043625e+14 +D-D_->_3He_fusion_rate_at_point_364______________________________________ fusrat_plasma_dd_helion_profile364_ 7.82305480850994000e+14 +D-D_->_3He_fusion_rate_at_point_365______________________________________ fusrat_plasma_dd_helion_profile365_ 7.68861744180885625e+14 +D-D_->_3He_fusion_rate_at_point_366______________________________________ fusrat_plasma_dd_helion_profile366_ 7.55561718922492125e+14 +D-D_->_3He_fusion_rate_at_point_367______________________________________ fusrat_plasma_dd_helion_profile367_ 7.42405455887967625e+14 +D-D_->_3He_fusion_rate_at_point_368______________________________________ fusrat_plasma_dd_helion_profile368_ 7.29392987078540875e+14 +D-D_->_3He_fusion_rate_at_point_369______________________________________ fusrat_plasma_dd_helion_profile369_ 7.16524325595423500e+14 +D-D_->_3He_fusion_rate_at_point_370______________________________________ fusrat_plasma_dd_helion_profile370_ 7.03799465554021375e+14 +D-D_->_3He_fusion_rate_at_point_371______________________________________ fusrat_plasma_dd_helion_profile371_ 6.91218382001629500e+14 +D-D_->_3He_fusion_rate_at_point_372______________________________________ fusrat_plasma_dd_helion_profile372_ 6.78781030838767250e+14 +D-D_->_3He_fusion_rate_at_point_373______________________________________ fusrat_plasma_dd_helion_profile373_ 6.66487348744279250e+14 +D-D_->_3He_fusion_rate_at_point_374______________________________________ fusrat_plasma_dd_helion_profile374_ 6.54337253104403750e+14 +D-D_->_3He_fusion_rate_at_point_375______________________________________ fusrat_plasma_dd_helion_profile375_ 6.42330641945955875e+14 +D-D_->_3He_fusion_rate_at_point_376______________________________________ fusrat_plasma_dd_helion_profile376_ 6.30467393873797375e+14 +D-D_->_3He_fusion_rate_at_point_377______________________________________ fusrat_plasma_dd_helion_profile377_ 6.18747368012795125e+14 +D-D_->_3He_fusion_rate_at_point_378______________________________________ fusrat_plasma_dd_helion_profile378_ 6.07170403954429375e+14 +D-D_->_3He_fusion_rate_at_point_379______________________________________ fusrat_plasma_dd_helion_profile379_ 5.95736321708277625e+14 +D-D_->_3He_fusion_rate_at_point_380______________________________________ fusrat_plasma_dd_helion_profile380_ 5.84444921658533375e+14 +D-D_->_3He_fusion_rate_at_point_381______________________________________ fusrat_plasma_dd_helion_profile381_ 5.73295984525823125e+14 +D-D_->_3He_fusion_rate_at_point_382______________________________________ fusrat_plasma_dd_helion_profile382_ 5.62289271334475250e+14 +D-D_->_3He_fusion_rate_at_point_383______________________________________ fusrat_plasma_dd_helion_profile383_ 5.51424523385515375e+14 +D-D_->_3He_fusion_rate_at_point_384______________________________________ fusrat_plasma_dd_helion_profile384_ 5.40701462235598000e+14 +D-D_->_3He_fusion_rate_at_point_385______________________________________ fusrat_plasma_dd_helion_profile385_ 5.30119789682116500e+14 +D-D_->_3He_fusion_rate_at_point_386______________________________________ fusrat_plasma_dd_helion_profile386_ 5.19679187754728125e+14 +D-D_->_3He_fusion_rate_at_point_387______________________________________ fusrat_plasma_dd_helion_profile387_ 5.09379318713592750e+14 +D-D_->_3He_fusion_rate_at_point_388______________________________________ fusrat_plasma_dd_helion_profile388_ 4.99219825054538625e+14 +D-D_->_3He_fusion_rate_at_point_389______________________________________ fusrat_plasma_dd_helion_profile389_ 4.89200329521484375e+14 +D-D_->_3He_fusion_rate_at_point_390______________________________________ fusrat_plasma_dd_helion_profile390_ 4.79320435126369250e+14 +D-D_->_3He_fusion_rate_at_point_391______________________________________ fusrat_plasma_dd_helion_profile391_ 4.69579725176914188e+14 +D-D_->_3He_fusion_rate_at_point_392______________________________________ fusrat_plasma_dd_helion_profile392_ 4.59977763312523562e+14 +D-D_->_3He_fusion_rate_at_point_393______________________________________ fusrat_plasma_dd_helion_profile393_ 4.50514093548641250e+14 +D-D_->_3He_fusion_rate_at_point_394______________________________________ fusrat_plasma_dd_helion_profile394_ 4.41188240329919062e+14 +D-D_->_3He_fusion_rate_at_point_395______________________________________ fusrat_plasma_dd_helion_profile395_ 4.31999708592534625e+14 +D-D_->_3He_fusion_rate_at_point_396______________________________________ fusrat_plasma_dd_helion_profile396_ 4.22947983836041375e+14 +D-D_->_3He_fusion_rate_at_point_397______________________________________ fusrat_plasma_dd_helion_profile397_ 4.14032532205127500e+14 +D-D_->_3He_fusion_rate_at_point_398______________________________________ fusrat_plasma_dd_helion_profile398_ 4.05252800581688375e+14 +D-D_->_3He_fusion_rate_at_point_399______________________________________ fusrat_plasma_dd_helion_profile399_ 3.96608216687644875e+14 +D-D_->_3He_fusion_rate_at_point_400______________________________________ fusrat_plasma_dd_helion_profile400_ 3.88098189198930188e+14 +D-D_->_3He_fusion_rate_at_point_401______________________________________ fusrat_plasma_dd_helion_profile401_ 3.79722107871135938e+14 +D-D_->_3He_fusion_rate_at_point_402______________________________________ fusrat_plasma_dd_helion_profile402_ 3.71479343677274375e+14 +D-D_->_3He_fusion_rate_at_point_403______________________________________ fusrat_plasma_dd_helion_profile403_ 3.63369248958210062e+14 +D-D_->_3He_fusion_rate_at_point_404______________________________________ fusrat_plasma_dd_helion_profile404_ 3.55391157586254688e+14 +D-D_->_3He_fusion_rate_at_point_405______________________________________ fusrat_plasma_dd_helion_profile405_ 3.47544385142547188e+14 +D-D_->_3He_fusion_rate_at_point_406______________________________________ fusrat_plasma_dd_helion_profile406_ 3.39828229108782875e+14 +D-D_->_3He_fusion_rate_at_point_407______________________________________ fusrat_plasma_dd_helion_profile407_ 3.32241969073965875e+14 +D-D_->_3He_fusion_rate_at_point_408______________________________________ fusrat_plasma_dd_helion_profile408_ 3.24784866956832812e+14 +D-D_->_3He_fusion_rate_at_point_409______________________________________ fusrat_plasma_dd_helion_profile409_ 3.17456167244716562e+14 +D-D_->_3He_fusion_rate_at_point_410______________________________________ fusrat_plasma_dd_helion_profile410_ 3.10255097249576938e+14 +D-D_->_3He_fusion_rate_at_point_411______________________________________ fusrat_plasma_dd_helion_profile411_ 3.03180867382067375e+14 +D-D_->_3He_fusion_rate_at_point_412______________________________________ fusrat_plasma_dd_helion_profile412_ 2.96232671444492625e+14 +D-D_->_3He_fusion_rate_at_point_413______________________________________ fusrat_plasma_dd_helion_profile413_ 2.89409686943640188e+14 +D-D_->_3He_fusion_rate_at_point_414______________________________________ fusrat_plasma_dd_helion_profile414_ 2.82711075424484812e+14 +D-D_->_3He_fusion_rate_at_point_415______________________________________ fusrat_plasma_dd_helion_profile415_ 2.76135982825905219e+14 +D-D_->_3He_fusion_rate_at_point_416______________________________________ fusrat_plasma_dd_helion_profile416_ 2.69683539859593594e+14 +D-D_->_3He_fusion_rate_at_point_417______________________________________ fusrat_plasma_dd_helion_profile417_ 2.63352862413476000e+14 +D-D_->_3He_fusion_rate_at_point_418______________________________________ fusrat_plasma_dd_helion_profile418_ 2.57143051981073969e+14 +D-D_->_3He_fusion_rate_at_point_419______________________________________ fusrat_plasma_dd_helion_profile419_ 2.51053196118355969e+14 +D-D_->_3He_fusion_rate_at_point_420______________________________________ fusrat_plasma_dd_helion_profile420_ 2.45082368929793156e+14 +D-D_->_3He_fusion_rate_at_point_421______________________________________ fusrat_plasma_dd_helion_profile421_ 2.39229631585501781e+14 +D-D_->_3He_fusion_rate_at_point_422______________________________________ fusrat_plasma_dd_helion_profile422_ 2.33494032871547031e+14 +D-D_->_3He_fusion_rate_at_point_423______________________________________ fusrat_plasma_dd_helion_profile423_ 2.27874609775702250e+14 +D-D_->_3He_fusion_rate_at_point_424______________________________________ fusrat_plasma_dd_helion_profile424_ 2.22370388111224594e+14 +D-D_->_3He_fusion_rate_at_point_425______________________________________ fusrat_plasma_dd_helion_profile425_ 2.16980383181488781e+14 +D-D_->_3He_fusion_rate_at_point_426______________________________________ fusrat_plasma_dd_helion_profile426_ 2.11703600488666312e+14 +D-D_->_3He_fusion_rate_at_point_427______________________________________ fusrat_plasma_dd_helion_profile427_ 2.06539036490017531e+14 +D-D_->_3He_fusion_rate_at_point_428______________________________________ fusrat_plasma_dd_helion_profile428_ 2.01485679405833125e+14 +D-D_->_3He_fusion_rate_at_point_429______________________________________ fusrat_plasma_dd_helion_profile429_ 1.96542510083563531e+14 +D-D_->_3He_fusion_rate_at_point_430______________________________________ fusrat_plasma_dd_helion_profile430_ 1.91708502923305406e+14 +D-D_->_3He_fusion_rate_at_point_431______________________________________ fusrat_plasma_dd_helion_profile431_ 1.86982626870516906e+14 +D-D_->_3He_fusion_rate_at_point_432______________________________________ fusrat_plasma_dd_helion_profile432_ 1.82363846482688688e+14 +D-D_->_3He_fusion_rate_at_point_433______________________________________ fusrat_plasma_dd_helion_profile433_ 1.77851123077660812e+14 +D-D_->_3He_fusion_rate_at_point_434______________________________________ fusrat_plasma_dd_helion_profile434_ 1.73443415972478469e+14 +D-D_->_3He_fusion_rate_at_point_435______________________________________ fusrat_plasma_dd_helion_profile435_ 1.69139683823039500e+14 +D-D_->_3He_fusion_rate_at_point_436______________________________________ fusrat_plasma_dd_helion_profile436_ 1.64938886076462344e+14 +D-D_->_3He_fusion_rate_at_point_437______________________________________ fusrat_plasma_dd_helion_profile437_ 1.60839984550072094e+14 +D-D_->_3He_fusion_rate_at_point_438______________________________________ fusrat_plasma_dd_helion_profile438_ 1.56841945153300000e+14 +D-D_->_3He_fusion_rate_at_point_439______________________________________ fusrat_plasma_dd_helion_profile439_ 1.52943739771662781e+14 +D-D_->_3He_fusion_rate_at_point_440______________________________________ fusrat_plasma_dd_helion_profile440_ 1.49144348335511094e+14 +D-D_->_3He_fusion_rate_at_point_441______________________________________ fusrat_plasma_dd_helion_profile441_ 1.45442761100501406e+14 +D-D_->_3He_fusion_rate_at_point_442______________________________________ fusrat_plasma_dd_helion_profile442_ 1.41837981172033188e+14 +D-D_->_3He_fusion_rate_at_point_443______________________________________ fusrat_plasma_dd_helion_profile443_ 1.38329027312396141e+14 +D-D_->_3He_fusion_rate_at_point_444______________________________________ fusrat_plasma_dd_helion_profile444_ 1.34914937077508922e+14 +D-D_->_3He_fusion_rate_at_point_445______________________________________ fusrat_plasma_dd_helion_profile445_ 1.31594770340306688e+14 +D-D_->_3He_fusion_rate_at_point_446______________________________________ fusrat_plasma_dd_helion_profile446_ 1.28367613270739750e+14 +D-D_->_3He_fusion_rate_at_point_447______________________________________ fusrat_plasma_dd_helion_profile447_ 1.25232582858767531e+14 +D-D_->_3He_fusion_rate_at_point_448______________________________________ fusrat_plasma_dd_helion_profile448_ 1.22188832087908375e+14 +D-D_->_3He_fusion_rate_at_point_449______________________________________ fusrat_plasma_dd_helion_profile449_ 1.19235555894382891e+14 +D-D_->_3He_fusion_rate_at_point_450______________________________________ fusrat_plasma_dd_helion_profile450_ 1.16371998083032719e+14 +D-D_->_3He_fusion_rate_at_point_451______________________________________ fusrat_plasma_dd_helion_profile451_ 1.13597459419182938e+14 +D-D_->_3He_fusion_rate_at_point_452______________________________________ fusrat_plasma_dd_helion_profile452_ 1.10911307180248141e+14 +D-D_->_3He_fusion_rate_at_point_453______________________________________ fusrat_plasma_dd_helion_profile453_ 1.08312986539056188e+14 +D-D_->_3He_fusion_rate_at_point_454______________________________________ fusrat_plasma_dd_helion_profile454_ 1.05802034273089500e+14 +D-D_->_3He_fusion_rate_at_point_455______________________________________ fusrat_plasma_dd_helion_profile455_ 1.03378095466131219e+14 +D-D_->_3He_fusion_rate_at_point_456______________________________________ fusrat_plasma_dd_helion_profile456_ 1.01040944116309156e+14 +D-D_->_3He_fusion_rate_at_point_457______________________________________ fusrat_plasma_dd_helion_profile457_ 9.87905089277154688e+13 +D-D_->_3He_fusion_rate_at_point_458______________________________________ fusrat_plasma_dd_helion_profile458_ 9.66269061086228281e+13 +D-D_->_3He_fusion_rate_at_point_459______________________________________ fusrat_plasma_dd_helion_profile459_ 9.45504818422882188e+13 +D-D_->_3He_fusion_rate_at_point_460______________________________________ fusrat_plasma_dd_helion_profile460_ 9.25618684395858594e+13 +D-D_->_3He_fusion_rate_at_point_461______________________________________ fusrat_plasma_dd_helion_profile461_ 9.06620604021897656e+13 +D-D_->_3He_fusion_rate_at_point_462______________________________________ fusrat_plasma_dd_helion_profile462_ 8.88525204524319375e+13 +D-D_->_3He_fusion_rate_at_point_463______________________________________ fusrat_plasma_dd_helion_profile463_ 8.71353325317733125e+13 +D-D_->_3He_fusion_rate_at_point_464______________________________________ fusrat_plasma_dd_helion_profile464_ 8.55134321842076719e+13 +D-D_->_3He_fusion_rate_at_point_465______________________________________ fusrat_plasma_dd_helion_profile465_ 8.39909727437588750e+13 +D-D_->_3He_fusion_rate_at_point_466______________________________________ fusrat_plasma_dd_helion_profile466_ 8.25739503867096406e+13 +D-D_->_3He_fusion_rate_at_point_467______________________________________ fusrat_plasma_dd_helion_profile467_ 8.12713821289994375e+13 +D-D_->_3He_fusion_rate_at_point_468______________________________________ fusrat_plasma_dd_helion_profile468_ 8.00978830958796406e+13 +D-D_->_3He_fusion_rate_at_point_469______________________________________ fusrat_plasma_dd_helion_profile469_ 7.90809835354317812e+13 +D-D_->_3He_fusion_rate_at_point_470______________________________________ fusrat_plasma_dd_helion_profile470_ 7.83064833529955625e+13 +D-D_->_3He_fusion_rate_at_point_471______________________________________ fusrat_plasma_dd_helion_profile471_ 6.89351507056756250e+13 +D-D_->_3He_fusion_rate_at_point_472______________________________________ fusrat_plasma_dd_helion_profile472_ 6.03740105551831562e+13 +D-D_->_3He_fusion_rate_at_point_473______________________________________ fusrat_plasma_dd_helion_profile473_ 5.25828944849842500e+13 +D-D_->_3He_fusion_rate_at_point_474______________________________________ fusrat_plasma_dd_helion_profile474_ 4.55219266749004844e+13 +D-D_->_3He_fusion_rate_at_point_475______________________________________ fusrat_plasma_dd_helion_profile475_ 3.91515418248035234e+13 +D-D_->_3He_fusion_rate_at_point_476______________________________________ fusrat_plasma_dd_helion_profile476_ 3.34325050457829453e+13 +D-D_->_3He_fusion_rate_at_point_477______________________________________ fusrat_plasma_dd_helion_profile477_ 2.83259340761798906e+13 +D-D_->_3He_fusion_rate_at_point_478______________________________________ fusrat_plasma_dd_helion_profile478_ 2.37933242620007188e+13 +D-D_->_3He_fusion_rate_at_point_479______________________________________ fusrat_plasma_dd_helion_profile479_ 1.97965768446117578e+13 +D-D_->_3He_fusion_rate_at_point_480______________________________________ fusrat_plasma_dd_helion_profile480_ 1.62980312291584863e+13 +D-D_->_3He_fusion_rate_at_point_481______________________________________ fusrat_plasma_dd_helion_profile481_ 1.32605020723974961e+13 +D-D_->_3He_fusion_rate_at_point_482______________________________________ fusrat_plasma_dd_helion_profile482_ 1.06473222381886504e+13 +D-D_->_3He_fusion_rate_at_point_483______________________________________ fusrat_plasma_dd_helion_profile483_ 8.42239293490833105e+12 +D-D_->_3He_fusion_rate_at_point_484______________________________________ fusrat_plasma_dd_helion_profile484_ 6.55024268656318945e+12 +D-D_->_3He_fusion_rate_at_point_485______________________________________ fusrat_plasma_dd_helion_profile485_ 4.99609721659261133e+12 +D-D_->_3He_fusion_rate_at_point_486______________________________________ fusrat_plasma_dd_helion_profile486_ 3.72596286108341992e+12 +D-D_->_3He_fusion_rate_at_point_487______________________________________ fusrat_plasma_dd_helion_profile487_ 2.70672679797985156e+12 +D-D_->_3He_fusion_rate_at_point_488______________________________________ fusrat_plasma_dd_helion_profile488_ 1.90627819800859888e+12 +D-D_->_3He_fusion_rate_at_point_489______________________________________ fusrat_plasma_dd_helion_profile489_ 1.29365537215212378e+12 +D-D_->_3He_fusion_rate_at_point_490______________________________________ fusrat_plasma_dd_helion_profile490_ 8.39225067662217651e+11 +D-D_->_3He_fusion_rate_at_point_491______________________________________ fusrat_plasma_dd_helion_profile491_ 5.14901110223710266e+11 +D-D_->_3He_fusion_rate_at_point_492______________________________________ fusrat_plasma_dd_helion_profile492_ 2.94410253356969849e+11 +D-D_->_3He_fusion_rate_at_point_493______________________________________ fusrat_plasma_dd_helion_profile493_ 1.53612586130360443e+11 +D-D_->_3He_fusion_rate_at_point_494______________________________________ fusrat_plasma_dd_helion_profile494_ 7.08804787596936646e+10 +D-D_->_3He_fusion_rate_at_point_495______________________________________ fusrat_plasma_dd_helion_profile495_ 2.75303605968534317e+10 +D-D_->_3He_fusion_rate_at_point_496______________________________________ fusrat_plasma_dd_helion_profile496_ 8.27892180966071701e+09 +D-D_->_3He_fusion_rate_at_point_497______________________________________ fusrat_plasma_dd_helion_profile497_ 1.64786112722036171e+09 +D-D_->_3He_fusion_rate_at_point_498______________________________________ fusrat_plasma_dd_helion_profile498_ 1.54049201261564344e+08 +D-D_->_3He_fusion_rate_at_point_499______________________________________ fusrat_plasma_dd_helion_profile499_ 2.53798993751224643e+06 +D-D_->_3He_fusion_rate_at_point_500______________________________________ fusrat_plasma_dd_helion_profile500_ 3.68353606092448302e+01 D-3He_fusion_rate_at_point_0_____________________________________________ fusrat_plasma_dhe3_profile0____ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_1_____________________________________________ fusrat_plasma_dhe3_profile1____ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_2_____________________________________________ fusrat_plasma_dhe3_profile2____ 0.00000000000000000e+00 @@ -15566,3638 +15569,3637 @@ D-3He_fusion_rate_at_point_497___________________________________________ fusrat D-3He_fusion_rate_at_point_498___________________________________________ fusrat_plasma_dhe3_profile498__ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_499___________________________________________ fusrat_plasma_dhe3_profile499__ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_500___________________________________________ fusrat_plasma_dhe3_profile500__ 0.00000000000000000e+00 -D-T_fusion_power:_plasma_(MW)____________________________________________ (p_plasma_dt_mw)_______________ 1.62310382710618933e+03 OP +D-T_fusion_power:_plasma_(MW)____________________________________________ (p_plasma_dt_mw)_______________ 1.64735369756583532e+03 OP D-T_fusion_power:_beam_(MW)______________________________________________ (p_beam_dt_mw)_________________ 0.00000000000000000e+00 OP -D-D_fusion_power_(MW)____________________________________________________ (p_dd_total_mw)________________ 1.94796555557246309e+00 OP -D-D_branching_ratio_for_tritium_producing_reactions______________________ (f_dd_branching_trit)__________ 4.74775433182917816e-01 OP +D-D_fusion_power_(MW)____________________________________________________ (p_dd_total_mw)________________ 1.99374684439789274e+00 OP +D-D_branching_ratio_for_tritium_producing_reactions______________________ (f_dd_branching_trit)__________ 4.74301858763706119e-01 OP D-He3_fusion_power_(MW)__________________________________________________ (p_dhe3_total_mw)______________ 0.00000000000000000e+00 OP -Alpha_rate_density:_total_(particles/m³/sec)_____________________________ (fusden_alpha_total)___________ 3.05033318804660224e+17 OP -Alpha_rate_density:_plasma_(particles/m³/sec)____________________________ (fusden_plasma_alpha)__________ 3.05033318804660224e+17 OP -Alpha_power:_total_(MW)__________________________________________________ (p_alpha_total_mw)_____________ 3.26768857671449155e+02 OP -Alpha_power_density:_total_(MW/m³)_______________________________________ (pden_alpha_total_mw)__________ 1.73061036844467525e-01 OP -Alpha_power:_plasma_only_(MW)____________________________________________ (p_plasma_alpha_mw)____________ 3.26768857671449155e+02 OP -Alpha_power_density:_plasma_(MW/m³)______________________________________ (pden_plasma_alpha_mw)_________ 1.73061036844467525e-01 OP +Alpha_rate_density:_total_(particles/m³/sec)_____________________________ (fusden_alpha_total)___________ 3.09590648008595584e+17 OP +Alpha_rate_density:_plasma_(particles/m³/sec)____________________________ (fusden_plasma_alpha)__________ 3.09590648008595584e+17 OP +Alpha_power:_total_(MW)__________________________________________________ (p_alpha_total_mw)_____________ 3.31650925187060238e+02 OP +Alpha_power_density:_total_(MW/m³)_______________________________________ (pden_alpha_total_mw)__________ 1.75646643296789862e-01 OP +Alpha_power:_plasma_only_(MW)____________________________________________ (p_plasma_alpha_mw)____________ 3.31650925187060238e+02 OP +Alpha_power_density:_plasma_(MW/m³)______________________________________ (pden_plasma_alpha_mw)_________ 1.75646643296789862e-01 OP Alpha_power:_beam-plasma_(MW)____________________________________________ (p_beam_alpha_mw)______________ 0.00000000000000000e+00 OP -Alpha_power_per_unit_volume_transferred_to_electrons_(MW/m³)_____________ (f_pden_alpha_electron_mw)_____ 1.18123088962480652e-01 OP -Alpha_power_per_unit_volume_transferred_to_ions_(MW/m³)__________________ (f_pden_alpha_ions_mw)_________ 4.62848960397634693e-02 OP -Neutron_power:_total_(MW)________________________________________________ (p_neutron_total_mw)___________ 1.29705365311273226e+03 OP -Neutron_power_density:_total_(MW/m³)_____________________________________ (pden_neutron_total_mw)________ 6.86936483636048645e-01 OP -Neutron_power:_plasma_only_(MW)__________________________________________ (p_plasma_neutron_mw)__________ 1.29705365311273226e+03 OP -Neutron_power_density:_plasma_(MW/m³)____________________________________ (pden_plasma_neutron_mw)_______ 6.86936483636048645e-01 OP +Alpha_power_per_unit_volume_transferred_to_electrons_(MW/m³)_____________ (f_pden_alpha_electron_mw)_____ 1.19472347848388047e-01 OP +Alpha_power_per_unit_volume_transferred_to_ions_(MW/m³)__________________ (f_pden_alpha_ions_mw)_________ 4.73919632835623147e-02 OP +Neutron_power:_total_(MW)________________________________________________ (p_neutron_total_mw)___________ 1.31643953009935831e+03 OP +Neutron_power_density:_total_(MW/m³)_____________________________________ (pden_neutron_total_mw)________ 6.97203496220420993e-01 OP +Neutron_power:_plasma_only_(MW)__________________________________________ (p_plasma_neutron_mw)__________ 1.31643953009935831e+03 OP +Neutron_power_density:_plasma_(MW/m³)____________________________________ (pden_plasma_neutron_mw)_______ 6.97203496220420993e-01 OP Neutron_power:_beam-plasma_(MW)__________________________________________ (p_beam_neutron_mw)____________ 0.00000000000000000e+00 OP -Average_neutron_flux_at_plasma_surface_(MW/m²)___________________________ (pflux_plasma_surface_neutron_avg_mw)_ 1.10496369559306684e+00 OP -Charged_particle_power_(p,_3He,_T)_(excluding_alphas)_(MW)_______________ (p_non_alpha_charged_mw)_______ 1.22928187758053520e+00 OP -Charged_particle_power_density_(p,_3He,_T)_(excluding_alphas)_(MW)_______ (pden_non_alpha_charged_mw)____ 6.51043669902295766e-04 OP -Total_charged_particle_power_(including_alphas)_(MW)_____________________ (p_charged_particle_mw)________ 3.27998139549029702e+02 OP +Average_neutron_flux_at_plasma_surface_(MW/m²)___________________________ (pflux_plasma_surface_neutron_avg_mw)_ 1.12147857933474682e+00 OP +Charged_particle_power_(p,_3He,_T)_(excluding_alphas)_(MW)_______________ (p_non_alpha_charged_mw)_______ 1.25698912381439887e+00 OP +Charged_particle_power_density_(p,_3He,_T)_(excluding_alphas)_(MW)_______ (pden_non_alpha_charged_mw)____ 6.65717787863980242e-04 OP +Total_charged_particle_power_(including_alphas)_(MW)_____________________ (p_charged_particle_mw)________ 3.32907914310874617e+02 OP # Plasma Radiation (excluding SOL): # -Plasma_total_synchrotron_radiation_power_(Pₛₙ)_(MW)______________________ (p_plasma_sync_mw)_____________ 1.38039014889703751e+01 OP -Plasma_total_synchrotron_radiation_power_density_(MW/m³)_________________ (pden_plasma_sync_mw)__________ 7.31072575643682433e-03 OP +Plasma_total_synchrotron_radiation_power_(Pₛₙ)_(MW)______________________ (p_plasma_sync_mw)_____________ 1.48020088195996493e+01 OP +Plasma_total_synchrotron_radiation_power_density_(MW/m³)_________________ (pden_plasma_sync_mw)__________ 7.83933637979670681e-03 OP Synchrotron_wall_reflectivity_factor_____________________________________ (f_sync_reflect)_______________ 5.99999999999999978e-01 Plasma_normalised_minor_radius_defining_'core'_region_(ρᵢₙₙₑᵣ)___________ (radius_plasma_core_norm)______ 7.50000000000000000e-01 Fractional_scaling_of_radiation_power_along_core_profile_________________ (f_p_plasma_core_rad_reduction)_ 5.99999999999999978e-01 -Plasma_total_radiation_power_from_core_region_(MW)_(Pᵧ,ᵢₙₙₑᵣ)____________ (p_plasma_inner_rad_mw)________ 8.99028815615043300e+01 OP -Plasma_total_radiation_power_from_edge_region_(MW)_(Pᵧ,ₒᵤₜₑᵣ)____________ (p_plasma_outer_rad_mw)________ 1.36763198991777614e+02 OP -Plasma_total_radiation_power_from_inside_last_closed_flux_surface_(Pᵧ)_(MW)_ (p_plasma_rad_mw)______________ 2.26666080553281915e+02 OP -Separatrix_radiation_fraction_(fᵧ)_______________________________________ (f_p_plasma_separatrix_rad)____ 5.78998850574579338e-01 OP -Power_incident_on_the_divertor_targets_(MW)______________________________ (ptarmw)_______________________ 3.29626493572442669e+01 OP -Divertor_poloidal_angle_subtended_by_plasma_(degrees)____________________ (deg_div_poloidal_plasma)______ 2.61014530600482715e+01 OP +Plasma_total_radiation_power_from_core_region_(MW)_(Pᵧ,ᵢₙₙₑᵣ)____________ (p_plasma_inner_rad_mw)________ 9.50238592612283526e+01 OP +Plasma_total_radiation_power_from_edge_region_(MW)_(Pᵧ,ₒᵤₜₑᵣ)____________ (p_plasma_outer_rad_mw)________ 1.44627763362900168e+02 OP +Plasma_total_radiation_power_from_inside_last_closed_flux_surface_(Pᵧ)_(MW)_ (p_plasma_rad_mw)______________ 2.39651622624128521e+02 OP +Separatrix_radiation_fraction_(fᵧ)_______________________________________ (f_p_plasma_separatrix_rad)____ 5.96808998298930193e-01 OP +Power_incident_on_the_divertor_targets_(MW)______________________________ (ptarmw)_______________________ 3.23806705530640571e+01 OP Fraction_of_power_to_the_lower_divertor__________________________________ (f_p_div_lower)________________ 1.00000000000000000e+00 IP Outboard_side_heat_flux_decay_length_(m)_________________________________ (lambdaio)_____________________ 1.57000000000000000e-03 OP Fraction_of_power_on_the_inner_targets___________________________________ (fio)__________________________ 4.09999999999999976e-01 OP Fraction_of_power_incident_on_the_lower_inner_target_____________________ (fLI)__________________________ 4.09999999999999976e-01 OP Fraction_of_power_incident_on_the_lower_outer_target_____________________ (fLO)__________________________ 5.90000000000000080e-01 OP -Power_incident_on_the_lower_inner_target_(MW)____________________________ (pLImw)________________________ 1.35146862364701494e+01 OP -Power_incident_on_the_lower_outer_target_(MW)____________________________ (pLOmw)________________________ 1.94479631207741193e+01 OP -Ohmic_heating_power_(MW)_________________________________________________ (p_plasma_ohmic_mw)____________ 6.20394683971129401e-01 OP +Power_incident_on_the_lower_inner_target_(MW)____________________________ (pLImw)________________________ 1.32760749267562623e+01 OP +Power_incident_on_the_lower_outer_target_(MW)____________________________ (pLOmw)________________________ 1.91045956263077947e+01 OP +Ohmic_heating_power_(MW)_________________________________________________ (p_plasma_ohmic_mw)____________ 6.26262020444869449e-01 OP Fraction_of_alpha_power_deposited_in_plasma______________________________ (f_p_alpha_plasma_deposited)___ 9.49999999999999956e-01 IP -Fraction_of_alpha_power_to_electrons_____________________________________ (f_alpha_electron)_____________ 7.18475376733485938e-01 OP -Fraction_of_alpha_power_to_ions__________________________________________ (f_alpha_ion)__________________ 2.81524623266514062e-01 OP -Ion_transport_(MW)_______________________________________________________ (p_ion_transport_loss_mw)______ 1.42290362646802834e+02 OP -Electron_transport_(MW)__________________________________________________ (p_electron_transport_loss_mw)_ 1.59286083131907333e+02 OP +Fraction_of_alpha_power_to_electrons_____________________________________ (f_alpha_electron)_____________ 7.15985024226741706e-01 OP +Fraction_of_alpha_power_to_ions__________________________________________ (f_alpha_ion)__________________ 2.84014975773258294e-01 OP +Ion_transport_(MW)_______________________________________________________ (p_ion_transport_loss_mw)______ 1.43777400026142971e+02 OP +Electron_transport_(MW)__________________________________________________ (p_electron_transport_loss_mw)_ 1.62753716141113443e+02 OP Injection_power_to_ions_(MW)_____________________________________________ (p_hcd_injected_ions_mw)_______ 0.00000000000000000e+00 OP -Injection_power_to_electrons_(MW)________________________________________ (p_hcd_injected_electrons_mw)__ 7.91992359900749534e+01 OP +Injection_power_to_electrons_(MW)________________________________________ (p_hcd_injected_electrons_mw)__ 8.46033453174823507e+01 OP # Plasma Exhaust # -Plasma_separatrix_power_(Pₛₑₚ)_(MW)______________________________________ (p_plasma_separatrix_mw)_______ 1.64813246786221384e+02 OP -Plasma_separatrix_power_over_major_radius_(Pₛₑₚ_/_R₀)_(MW/m)_____________ (p_plasma_separatrix_rmajor_mw)_ 2.06016558478333316e+01 OP -EU-DEMO_divertor_protection_re-attachment_metric_(PₛₑₚBₜ_/_q₉₅AR₀)_(MWT/m)_ (p_div_bt_q_aspect_rmajor_mw)__ 9.99990064166419046e+00 OP +Plasma_separatrix_power_(Pₛₑₚ)_(MW)______________________________________ (p_plasma_separatrix_mw)_______ 1.61903352765320307e+02 OP +Plasma_separatrix_power_over_major_radius_(Pₛₑₚ_/_R₀)_(MW/m)_____________ (p_plasma_separatrix_rmajor_mw)_ 2.02379190953010486e+01 OP +EU-DEMO_divertor_protection_re-attachment_metric_(PₛₑₚBₜ_/_q₉₅AR₀)_(MWT/m)_ (p_div_bt_q_aspect_rmajor_mw)__ 9.99986150178709643e+00 OP # H-mode Power Threshold Scalings : # L-H_threshold_scaling_switch_____________________________________________ (i_l_h_threshold)______________ 19 -L-H_threshold_power_(MW)_________________________________________________ (p_l_h_threshold_mw)___________ 9.17007273294534997e+01 OP -ITER_1996_scaling:_nominal_(MW)__________________________________________ (l_h_threshold_powers(1))______ 1.30479780531968260e+02 OP -ITER_1996_scaling:_upper_bound_(MW)______________________________________ (l_h_threshold_powers(2))______ 3.14917244599324874e+02 OP -ITER_1996_scaling:_lower_bound_(MW)______________________________________ (l_h_threshold_powers(3))______ 5.40617366026862598e+01 OP -ITER_1997_scaling_(1)_(MW)_______________________________________________ (l_h_threshold_powers(4))______ 2.01157733739017061e+02 OP -ITER_1997_scaling_(2)_(MW)_______________________________________________ (l_h_threshold_powers(5))______ 1.61164633350474588e+02 OP -Martin_2008_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(6))______ 9.17007273294534997e+01 OP -Martin_2008_scaling:_95%_upper_bound_(MW)________________________________ (l_h_threshold_powers(7))______ 1.16374030598953340e+02 OP -Martin_2008_scaling:_95%_lower_bound_(MW)________________________________ (l_h_threshold_powers(8))______ 7.22585902611350122e+01 OP -Snipes_2000_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(9))______ 6.38354461615172823e+01 OP -Snipes_2000_scaling:_upper_bound_(MW)____________________________________ (l_h_threshold_powers(10))_____ 9.34248254122491346e+01 OP -Snipes_2000_scaling:_lower_bound_(MW)____________________________________ (l_h_threshold_powers(11))_____ 4.32686804745179217e+01 OP -Snipes_2000_scaling_(closed_divertor):_nominal_(MW)______________________ (l_h_threshold_powers(12))_____ 2.97669802884392816e+01 OP -Snipes_2000_scaling_(closed_divertor):_upper_bound_(MW)__________________ (l_h_threshold_powers(13))_____ 4.12399842763666413e+01 OP -Snipes_2000_scaling_(closed_divertor):_lower_bound_(MW)__________________ (l_h_threshold_powers(14))_____ 2.13350746543547771e+01 OP -Hubbard_2012_L-I_threshold_-_nominal_(MW)________________________________ (l_h_threshold_powers(15))_____ 2.70759406837413472e+01 OP -Hubbard_2012_L-I_threshold_-_lower_bound_(MW)____________________________ (l_h_threshold_powers(16))_____ 1.41373302444704940e+01 OP -Hubbard_2012_L-I_threshold_-_upper_bound_(MW)____________________________ (l_h_threshold_powers(17))_____ 5.18560825298834871e+01 OP -Hubbard_2017_L-I_threshold_______________________________________________ (l_h_threshold_powers(18))_____ 2.54965187167333056e+02 OP -Martin_2008_aspect_ratio_corrected_scaling:_nominal_(MW)_________________ (l_h_threshold_powers(19))_____ 9.17007273294534997e+01 OP -Martin_2008_aspect_ratio_corrected_scaling:_95%_upper_bound_(MW)_________ (l_h_threshold_powers(20))_____ 1.16374030598953340e+02 OP -Martin_2008_aspect_ratio_corrected_scaling:_95%_lower_bound_(MW)_________ (l_h_threshold_powers(21))_____ 7.22585902611350122e+01 OP +L-H_threshold_power_(MW)_________________________________________________ (p_l_h_threshold_mw)___________ 9.24460896412625033e+01 OP +ITER_1996_scaling:_nominal_(MW)__________________________________________ (l_h_threshold_powers(1))______ 1.32663013868510404e+02 OP +ITER_1996_scaling:_upper_bound_(MW)______________________________________ (l_h_threshold_powers(2))______ 3.21615244054883476e+02 OP +ITER_1996_scaling:_lower_bound_(MW)______________________________________ (l_h_threshold_powers(3))______ 5.47221426084695892e+01 OP +ITER_1997_scaling_(1)_(MW)_______________________________________________ (l_h_threshold_powers(4))______ 2.05087259844955611e+02 OP +ITER_1997_scaling_(2)_(MW)_______________________________________________ (l_h_threshold_powers(5))______ 1.63954179660424472e+02 OP +Martin_2008_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(6))______ 9.24460896412625033e+01 OP +Martin_2008_scaling:_95%_upper_bound_(MW)________________________________ (l_h_threshold_powers(7))______ 1.17405253357792517e+02 OP +Martin_2008_scaling:_95%_lower_bound_(MW)________________________________ (l_h_threshold_powers(8))______ 7.27929904914317660e+01 OP +Snipes_2000_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(9))______ 6.42010285164580665e+01 OP +Snipes_2000_scaling:_upper_bound_(MW)____________________________________ (l_h_threshold_powers(10))_____ 9.40278844076016753e+01 OP +Snipes_2000_scaling:_lower_bound_(MW)____________________________________ (l_h_threshold_powers(11))_____ 4.34849981886140000e+01 OP +Snipes_2000_scaling_(closed_divertor):_nominal_(MW)______________________ (l_h_threshold_powers(12))_____ 2.98667790122970871e+01 OP +Snipes_2000_scaling_(closed_divertor):_upper_bound_(MW)__________________ (l_h_threshold_powers(13))_____ 4.14310016235071359e+01 OP +Snipes_2000_scaling_(closed_divertor):_lower_bound_(MW)__________________ (l_h_threshold_powers(14))_____ 2.13793473086700736e+01 OP +Hubbard_2012_L-I_threshold_-_nominal_(MW)________________________________ (l_h_threshold_powers(15))_____ 2.78535950938565371e+01 OP +Hubbard_2012_L-I_threshold_-_lower_bound_(MW)____________________________ (l_h_threshold_powers(16))_____ 1.44349957519900922e+01 OP +Hubbard_2012_L-I_threshold_-_upper_bound_(MW)____________________________ (l_h_threshold_powers(17))_____ 5.37459638355314269e+01 OP +Hubbard_2017_L-I_threshold_______________________________________________ (l_h_threshold_powers(18))_____ 2.59764987291037244e+02 OP +Martin_2008_aspect_ratio_corrected_scaling:_nominal_(MW)_________________ (l_h_threshold_powers(19))_____ 9.24460896412625033e+01 OP +Martin_2008_aspect_ratio_corrected_scaling:_95%_upper_bound_(MW)_________ (l_h_threshold_powers(20))_____ 1.17405253357792517e+02 OP +Martin_2008_aspect_ratio_corrected_scaling:_95%_lower_bound_(MW)_________ (l_h_threshold_powers(21))_____ 7.27929904914317660e+01 OP # Plasma Energy Confinement # Confinement_scaling_law__________________________________________________ (tauelaw)______________________ "IPB98(y,2)" -Confinement_H_factor_____________________________________________________ (hfact)________________________ 1.19999713327972768e+00 -Global_thermal_energy_confinement_time,_from_scaling_(τₑ)_(s)____________ (t_energy_confinement)_________ 3.13405866279800271e+00 OP -Directly_calculated_total_energy_confinement_time_(τₑᵦ)_(s)______________ (t_energy_confinement_beta)____ 3.59562669716488070e+00 OP -Ion_energy_confinement_time,_from_scaling_(s)____________________________ (t_ion_energy_confinement)_____ 3.13405866279800271e+00 OP -Electron_energy_confinement_time,_from_scaling_(s)_______________________ (t_electron_energy_confinement)_ 3.13405866279800271e+00 OP -Fusion_double_product_(nτ)_(s/m³)________________________________________ (ntau)_________________________ 2.50072466708771504e+20 OP -Lawson_Triple_product_(nTτ)_(keV_s/m³)___________________________________ (nTtau)________________________ 3.11918998538316730e+21 OP -Transport_loss_power_assumed_in_scaling_law_(MW)_________________________ (p_plasma_loss_mw)_____________ 3.01576445777998970e+02 OP +Confinement_H_factor_____________________________________________________ (hfact)________________________ 1.19999574841169188e+00 +Global_thermal_energy_confinement_time,_from_scaling_(τₑ)_(s)____________ (t_energy_confinement)_________ 3.17540007130566426e+00 OP +Directly_calculated_total_energy_confinement_time_(τₑᵦ)_(s)______________ (t_energy_confinement_beta)____ 3.62856351119345133e+00 OP +Ion_energy_confinement_time,_from_scaling_(s)____________________________ (t_ion_energy_confinement)_____ 3.17540007130566471e+00 OP +Electron_energy_confinement_time,_from_scaling_(s)_______________________ (t_electron_energy_confinement)_ 3.17540007130566426e+00 OP +Fusion_double_product_(nτ)_(s/m³)________________________________________ (ntau)_________________________ 2.57923824191297389e+20 OP +Lawson_Triple_product_(nTτ)_(keV_s/m³)___________________________________ (nTtau)________________________ 3.26909432066725537e+21 OP +Transport_loss_power_assumed_in_scaling_law_(MW)_________________________ (p_plasma_loss_mw)_____________ 3.06531116128220447e+02 OP Switch_for_radiation_loss_term_usage_in_power_balance____________________ (i_rad_loss)___________________ 1 -Radiation_power_subtracted_from_plasma_heating_power_balance_(MW)________ _______________________________ 8.99028815615043300e+01 ITV -H*_non-radiation_corrected_______________________________________________ (hstar)________________________ 1.41633752669338220e+00 OP -Alpha_particle_confinement_time_(τ_α)_(s)________________________________ (t_alpha_confinement)__________ 2.03803719777290411e+01 OP -Alpha_particle_to_energy_confinement_time_ratio_(τ_α/τₑ)_________________ (f_alpha_energy_confinement)___ 6.50286869855014071e+00 OP +Radiation_power_subtracted_from_plasma_heating_power_balance_(MW)________ _______________________________ 9.50238592612283526e+01 ITV +H*_non-radiation_corrected_______________________________________________ (hstar)________________________ 1.40629666185013247e+00 OP +Alpha_particle_confinement_time_(τ_α)_(s)________________________________ (t_alpha_confinement)__________ 2.28277369282385791e+01 OP +Alpha_particle_to_energy_confinement_time_ratio_(τ_α/τₑ)_________________ (f_alpha_energy_confinement)___ 7.18893254885273336e+00 OP Lower_limit_on_f_alpha_energy_confinement_((τ_α/τₑ)>)____________________ (f_alpha_energy_confinement_min)_ 5.00000000000000000e+00 # Energy confinement times, and required H-factors : # -Normalized_plasma_pressure_beta_as_defined_by_McDonald_et_al_____________ (beta_mcdonald)________________ 3.89403914328839487e-02 OP -Normalized_ion_Larmor_radius_____________________________________________ (rho_star)_____________________ 2.09465052879505287e-03 OP -Normalized_collisionality________________________________________________ (nu_star)______________________ 3.46843248208375489e-03 OP +Normalized_plasma_pressure_beta_as_defined_by_McDonald_et_al_____________ (beta_mcdonald)________________ 3.96849240352809274e-02 OP +Normalized_ion_Larmor_radius_____________________________________________ (rho_star)_____________________ 2.10347060009622019e-03 OP +Normalized_collisionality________________________________________________ (nu_star)______________________ 3.42851586889692883e-03 OP # Plasma Volt-Second Requirements: # -Total_plasma_volt-seconds_required_for_pulse_(Wb)________________________ (vs_plasma_total_required)_____ 5.27733672835846505e+02 OP -Total_plasma_inductive_flux_consumption_for_plasma_current_ramp-up_(Wb)__ (vs_plasma_ind_ramp)___________ 2.06214337399072065e+02 OP -Plasma_resistive_flux_consumption_for_plasma_current_ramp-up_(Wb)________ (vs_plasma_res_ramp)___________ 4.96147122590616547e+01 OP -Total_flux_consumption_for_plasma_current_ramp-up_(Wb)___________________ (vs_plasma_ramp_required)______ 2.55829049658133727e+02 OP +Total_plasma_volt-seconds_required_for_pulse_(Wb)________________________ (vs_plasma_total_required)_____ 5.30057912550384231e+02 OP +Total_plasma_inductive_flux_consumption_for_plasma_current_ramp-up_(Wb)__ (vs_plasma_ind_ramp)___________ 2.09919812494905983e+02 OP +Plasma_resistive_flux_consumption_for_plasma_current_ramp-up_(Wb)________ (vs_plasma_res_ramp)___________ 5.05062413495299722e+01 OP +Total_flux_consumption_for_plasma_current_ramp-up_(Wb)___________________ (vs_plasma_ramp_required)______ 2.60426053844435955e+02 OP Ejima_coefficient_(Cₑⱼᵢₘₐ)_______________________________________________ (ejima_coeff)__________________ 2.99999999999999989e-01 -Internal_plasma_V-s______________________________________________________ (vs_plasma_internal)___________ 7.44220683885924785e+01 -Plasma_volt-seconds_needed_for_flat-top_(heat_+_burn_times)_(Wb)_________ (vs_plasma_burn_required)______ 2.71904623177712779e+02 OP -Plasma_loop_voltage_during_burn_(Vₗₒₒₚ)_(V)______________________________ (v_plasma_loop_burn)___________ 3.77119245868201072e-02 OP +Internal_plasma_V-s______________________________________________________ (vs_plasma_internal)___________ 7.57593620242949584e+01 +Plasma_volt-seconds_needed_for_flat-top_(heat_+_burn_times)_(Wb)_________ (vs_plasma_burn_required)______ 2.69631858705948275e+02 OP +Plasma_loop_voltage_during_burn_(Vₗₒₒₚ)_(V)______________________________ (v_plasma_loop_burn)___________ 3.73966010251366235e-02 OP Coefficient_for_sawtooth_effects_on_burn_V-s_requirement_________________ (csawth)_______________________ 1.00000000000000000e+00 -Plasma_resistance_(Ω)_(ohm)______________________________________________ (res_plasma)___________________ 4.05611558478647318e-09 OP -Plasma_resistive_diffusion_time_(τᵣₑₛ)_(s)_______________________________ (t_plasma_res_diffusion)_______ 3.00099877957112358e+03 OP -Plasma_inductance_(H)____________________________________________________ (ind_plasma)___________________ 1.25351485782182824e-05 OP -Plasma_magnetic_energy_stored_(J)________________________________________ (e_plasma_magnetic_stored)_____ 1.69620458359906626e+09 OP +Plasma_resistance_(Ω)_(ohm)______________________________________________ (res_plasma)___________________ 4.04804239727848516e-09 OP +Plasma_resistive_diffusion_time_(τᵣₑₛ)_(s)_______________________________ (t_plasma_res_diffusion)_______ 3.00698380231480769e+03 OP +Plasma_inductance_(H)____________________________________________________ (ind_plasma)___________________ 1.25351485781733693e-05 OP +Plasma_magnetic_energy_stored_(J)________________________________________ (e_plasma_magnetic_stored)_____ 1.75771062477178335e+09 OP Normalised_internal_inductance_model_used________________________________ (i_ind_plasma_internal_norm)___ 0 Plasma_normalised_internal_inductance_(lᵢ)_______________________________ (ind_plasma_internal_norm)_____ 9.00000000000000022e-01 OP J._Wesson_plasma_normalised_internal_inductance__________________________ (ind_plasma_internal_norm_wesson)_ 9.32164081030445235e-01 OP J._Menard_plasma_normalised_internal_inductance__________________________ (ind_plasma_internal_norm_menard)_ 1.54999999999999982e+00 OP -ITER_lᵢ(3)_plasma_normalised_internal_inductance_________________________ (ind_plasma_internal_norm_iter_3)_ 8.13990037192073301e-01 OP +ITER_lᵢ(3)_plasma_normalised_internal_inductance_________________________ (ind_plasma_internal_norm_iter_3)_ 8.13990037192072413e-01 OP # Plasma Bootstrap Current Fraction # Plasma_bootstrap_current_fraction_scaling_used___________________________ (i_bootstrap_current)__________ 4 Bootstrap_current_fraction_multiplier____________________________________ (cboot)________________________ 1.00000000000000000e+00 -Bootstrap_fraction_(ITER_IPDG89_scaling)_________________________________ (f_c_plasma_bootstrap_iter89)__ 3.88681575552250358e-01 OP -Bootstrap_fraction_(Nevins_scaling)______________________________________ (f_c_plasma_bootstrap_nevins)__ 3.96908811108281689e-01 OP -Bootstrap_fraction_(Wilson_scaling)______________________________________ (f_c_plasma_bootstrap_wilson)__ 5.18362322446408119e-01 OP -Bootstrap_fraction_(Sauter_scaling)______________________________________ (f_c_plasma_bootstrap_sauter)__ 4.22833658317523231e-01 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_0________________ (j_plasma_bootstrap_sauter_profile0)_ 2.50767124426135297e+03 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_1________________ (j_plasma_bootstrap_sauter_profile1)_ 5.86260035191923816e+03 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_2________________ (j_plasma_bootstrap_sauter_profile2)_ 8.96210191408743594e+03 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_3________________ (j_plasma_bootstrap_sauter_profile3)_ 1.17308428395833998e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_4________________ (j_plasma_bootstrap_sauter_profile4)_ 1.42060528546346377e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_5________________ (j_plasma_bootstrap_sauter_profile5)_ 1.64365655188396595e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_6________________ (j_plasma_bootstrap_sauter_profile6)_ 1.84655901615454313e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_7________________ (j_plasma_bootstrap_sauter_profile7)_ 2.03284616617574939e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_8________________ (j_plasma_bootstrap_sauter_profile8)_ 2.20534768154987723e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_9________________ (j_plasma_bootstrap_sauter_profile9)_ 2.36632191901051629e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_10_______________ (j_plasma_bootstrap_sauter_profile10)_ 2.51757681415038751e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_11_______________ (j_plasma_bootstrap_sauter_profile11)_ 2.66056799554376958e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_12_______________ (j_plasma_bootstrap_sauter_profile12)_ 2.79647542189310152e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_13_______________ (j_plasma_bootstrap_sauter_profile13)_ 2.92626249470581097e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_14_______________ (j_plasma_bootstrap_sauter_profile14)_ 3.05072154809367275e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_15_______________ (j_plasma_bootstrap_sauter_profile15)_ 3.17050893469397051e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_16_______________ (j_plasma_bootstrap_sauter_profile16)_ 3.28617220785159734e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_17_______________ (j_plasma_bootstrap_sauter_profile17)_ 3.39817129659965067e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_18_______________ (j_plasma_bootstrap_sauter_profile18)_ 3.50689509955592075e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_19_______________ (j_plasma_bootstrap_sauter_profile19)_ 3.61267456906331427e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_20_______________ (j_plasma_bootstrap_sauter_profile20)_ 3.71579309157190728e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_21_______________ (j_plasma_bootstrap_sauter_profile21)_ 3.81649477320727092e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_22_______________ (j_plasma_bootstrap_sauter_profile22)_ 3.91499109274869334e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_23_______________ (j_plasma_bootstrap_sauter_profile23)_ 4.01146627480818934e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_24_______________ (j_plasma_bootstrap_sauter_profile24)_ 4.10608165385567991e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_25_______________ (j_plasma_bootstrap_sauter_profile25)_ 4.19897923815650720e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_26_______________ (j_plasma_bootstrap_sauter_profile26)_ 4.29028463555722847e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_27_______________ (j_plasma_bootstrap_sauter_profile27)_ 4.38010946789720911e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_28_______________ (j_plasma_bootstrap_sauter_profile28)_ 4.46855337313827331e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_29_______________ (j_plasma_bootstrap_sauter_profile29)_ 4.55570567372456644e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_30_______________ (j_plasma_bootstrap_sauter_profile30)_ 4.64164677318634494e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_31_______________ (j_plasma_bootstrap_sauter_profile31)_ 4.72644933049893370e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_32_______________ (j_plasma_bootstrap_sauter_profile32)_ 4.81017925189338712e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_33_______________ (j_plasma_bootstrap_sauter_profile33)_ 4.89289653201123219e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_34_______________ (j_plasma_bootstrap_sauter_profile34)_ 4.97465597011599675e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_35_______________ (j_plasma_bootstrap_sauter_profile35)_ 5.05550778245052134e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_36_______________ (j_plasma_bootstrap_sauter_profile36)_ 5.13549812768729098e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_37_______________ (j_plasma_bootstrap_sauter_profile37)_ 5.21466955953419601e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_38_______________ (j_plasma_bootstrap_sauter_profile38)_ 5.29306141792946073e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_39_______________ (j_plasma_bootstrap_sauter_profile39)_ 5.37071016843589241e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_40_______________ (j_plasma_bootstrap_sauter_profile40)_ 5.44764969756556384e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_41_______________ (j_plasma_bootstrap_sauter_profile41)_ 5.52391157068743123e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_42_______________ (j_plasma_bootstrap_sauter_profile42)_ 5.59952525789318170e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_43_______________ (j_plasma_bootstrap_sauter_profile43)_ 5.67451833250774871e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_44_______________ (j_plasma_bootstrap_sauter_profile44)_ 5.74891664598190837e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_45_______________ (j_plasma_bootstrap_sauter_profile45)_ 5.82274448246072643e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_46_______________ (j_plasma_bootstrap_sauter_profile46)_ 5.89602469579649696e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_47_______________ (j_plasma_bootstrap_sauter_profile47)_ 5.96877883127796376e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_48_______________ (j_plasma_bootstrap_sauter_profile48)_ 6.04102723413102940e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_49_______________ (j_plasma_bootstrap_sauter_profile49)_ 6.11278914639641371e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_50_______________ (j_plasma_bootstrap_sauter_profile50)_ 6.18408279372808029e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_51_______________ (j_plasma_bootstrap_sauter_profile51)_ 6.25492546328783064e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_52_______________ (j_plasma_bootstrap_sauter_profile52)_ 6.32533357382816466e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_53_______________ (j_plasma_bootstrap_sauter_profile53)_ 6.39532273890574288e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_54_______________ (j_plasma_bootstrap_sauter_profile54)_ 6.46490782403237536e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_55_______________ (j_plasma_bootstrap_sauter_profile55)_ 6.53410299840239895e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_56_______________ (j_plasma_bootstrap_sauter_profile56)_ 6.60292178186800738e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_57_______________ (j_plasma_bootstrap_sauter_profile57)_ 6.67137708763154078e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_58_______________ (j_plasma_bootstrap_sauter_profile58)_ 6.73948126120586967e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_59_______________ (j_plasma_bootstrap_sauter_profile59)_ 6.80724611591673020e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_60_______________ (j_plasma_bootstrap_sauter_profile60)_ 6.87468296541912423e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_61_______________ (j_plasma_bootstrap_sauter_profile61)_ 6.94180265346111846e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_62_______________ (j_plasma_bootstrap_sauter_profile62)_ 7.00861558122948190e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_63_______________ (j_plasma_bootstrap_sauter_profile63)_ 7.07513173248725943e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_64_______________ (j_plasma_bootstrap_sauter_profile64)_ 7.14136069668505370e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_65_______________ (j_plasma_bootstrap_sauter_profile65)_ 7.20731169035290804e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_66_______________ (j_plasma_bootstrap_sauter_profile66)_ 7.27299357674658822e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_67_______________ (j_plasma_bootstrap_sauter_profile67)_ 7.33841488415877684e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_68_______________ (j_plasma_bootstrap_sauter_profile68)_ 7.40358382278616627e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_69_______________ (j_plasma_bootstrap_sauter_profile69)_ 7.46850830039760040e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_70_______________ (j_plasma_bootstrap_sauter_profile70)_ 7.53319593692058261e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_71_______________ (j_plasma_bootstrap_sauter_profile71)_ 7.59765407796864893e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_72_______________ (j_plasma_bootstrap_sauter_profile72)_ 7.66188980749082839e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_73_______________ (j_plasma_bootstrap_sauter_profile73)_ 7.72590995950603829e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_74_______________ (j_plasma_bootstrap_sauter_profile74)_ 7.78972112911188742e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_75_______________ (j_plasma_bootstrap_sauter_profile75)_ 7.85332968275434105e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_76_______________ (j_plasma_bootstrap_sauter_profile76)_ 7.91674176783265575e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_77_______________ (j_plasma_bootstrap_sauter_profile77)_ 7.97996332171963877e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_78_______________ (j_plasma_bootstrap_sauter_profile78)_ 8.04300008017347573e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_79_______________ (j_plasma_bootstrap_sauter_profile79)_ 8.10585758531891188e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_80_______________ (j_plasma_bootstrap_sauter_profile80)_ 8.16854119305932545e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_81_______________ (j_plasma_bootstrap_sauter_profile81)_ 8.23105608008793206e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_82_______________ (j_plasma_bootstrap_sauter_profile82)_ 8.29340725050783949e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_83_______________ (j_plasma_bootstrap_sauter_profile83)_ 8.35559954204374517e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_84_______________ (j_plasma_bootstrap_sauter_profile84)_ 8.41763763189684832e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_85_______________ (j_plasma_bootstrap_sauter_profile85)_ 8.47952604231218138e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_86_______________ (j_plasma_bootstrap_sauter_profile86)_ 8.54126914577443822e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_87_______________ (j_plasma_bootstrap_sauter_profile87)_ 8.60287116998029815e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_88_______________ (j_plasma_bootstrap_sauter_profile88)_ 8.66433620254238922e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_89_______________ (j_plasma_bootstrap_sauter_profile89)_ 8.72566819538995624e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_90_______________ (j_plasma_bootstrap_sauter_profile90)_ 8.78687096897911542e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_91_______________ (j_plasma_bootstrap_sauter_profile91)_ 8.84794821630672377e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_92_______________ (j_plasma_bootstrap_sauter_profile92)_ 8.90890350667986495e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_93_______________ (j_plasma_bootstrap_sauter_profile93)_ 8.96974028931804351e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_94_______________ (j_plasma_bootstrap_sauter_profile94)_ 9.03046189675980568e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_95_______________ (j_plasma_bootstrap_sauter_profile95)_ 9.09107154812751978e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_96_______________ (j_plasma_bootstrap_sauter_profile96)_ 9.15157235223200987e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_97_______________ (j_plasma_bootstrap_sauter_profile97)_ 9.21196731049930822e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_98_______________ (j_plasma_bootstrap_sauter_profile98)_ 9.27225931978121080e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_99_______________ (j_plasma_bootstrap_sauter_profile99)_ 9.33245117504505324e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_100______________ (j_plasma_bootstrap_sauter_profile100)_ 9.39254557194768422e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_101______________ (j_plasma_bootstrap_sauter_profile101)_ 9.45254510922747577e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_102______________ (j_plasma_bootstrap_sauter_profile102)_ 9.51245229105832987e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_103______________ (j_plasma_bootstrap_sauter_profile103)_ 9.57226952929923573e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_104______________ (j_plasma_bootstrap_sauter_profile104)_ 9.63199914557588054e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_105______________ (j_plasma_bootstrap_sauter_profile105)_ 9.69164337337140896e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_106______________ (j_plasma_bootstrap_sauter_profile106)_ 9.75120435992558196e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_107______________ (j_plasma_bootstrap_sauter_profile107)_ 9.81068416813415097e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_108______________ (j_plasma_bootstrap_sauter_profile108)_ 9.87008477832921053e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_109______________ (j_plasma_bootstrap_sauter_profile109)_ 9.92940808997697750e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_110______________ (j_plasma_bootstrap_sauter_profile110)_ 9.98865592334338435e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_111______________ (j_plasma_bootstrap_sauter_profile111)_ 1.00478300210732676e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_112______________ (j_plasma_bootstrap_sauter_profile112)_ 1.01069320496859829e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_113______________ (j_plasma_bootstrap_sauter_profile113)_ 1.01659636010370756e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_114______________ (j_plasma_bootstrap_sauter_profile114)_ 1.02249261937122836e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_115______________ (j_plasma_bootstrap_sauter_profile115)_ 1.02838212743750526e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_116______________ (j_plasma_bootstrap_sauter_profile116)_ 1.03426502190513638e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_117______________ (j_plasma_bootstrap_sauter_profile117)_ 1.04014143343800868e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_118______________ (j_plasma_bootstrap_sauter_profile118)_ 1.04601148587840900e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_119______________ (j_plasma_bootstrap_sauter_profile119)_ 1.05187529636461142e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_120______________ (j_plasma_bootstrap_sauter_profile120)_ 1.05773297544003392e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_121______________ (j_plasma_bootstrap_sauter_profile121)_ 1.06358462716016526e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_122______________ (j_plasma_bootstrap_sauter_profile122)_ 1.06943034919538884e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_123______________ (j_plasma_bootstrap_sauter_profile123)_ 1.07527023292952043e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_124______________ (j_plasma_bootstrap_sauter_profile124)_ 1.08110436355591228e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_125______________ (j_plasma_bootstrap_sauter_profile125)_ 1.08693282016917015e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_126______________ (j_plasma_bootstrap_sauter_profile126)_ 1.09275567585476791e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_127______________ (j_plasma_bootstrap_sauter_profile127)_ 1.09857299777332693e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_128______________ (j_plasma_bootstrap_sauter_profile128)_ 1.10438484724590264e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_129______________ (j_plasma_bootstrap_sauter_profile129)_ 1.11019127983055441e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_130______________ (j_plasma_bootstrap_sauter_profile130)_ 1.11599234540389021e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_131______________ (j_plasma_bootstrap_sauter_profile131)_ 1.12178808823215848e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_132______________ (j_plasma_bootstrap_sauter_profile132)_ 1.12757854704638739e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_133______________ (j_plasma_bootstrap_sauter_profile133)_ 1.13336375510972095e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_134______________ (j_plasma_bootstrap_sauter_profile134)_ 1.13914374028780425e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_135______________ (j_plasma_bootstrap_sauter_profile135)_ 1.14491852511171339e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_136______________ (j_plasma_bootstrap_sauter_profile136)_ 1.15068812684339413e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_137______________ (j_plasma_bootstrap_sauter_profile137)_ 1.15645255753595688e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_138______________ (j_plasma_bootstrap_sauter_profile138)_ 1.16221182409389803e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_139______________ (j_plasma_bootstrap_sauter_profile139)_ 1.16796592832965034e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_140______________ (j_plasma_bootstrap_sauter_profile140)_ 1.17371486702176480e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_141______________ (j_plasma_bootstrap_sauter_profile141)_ 1.17945863196506019e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_142______________ (j_plasma_bootstrap_sauter_profile142)_ 1.18519721002834573e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_143______________ (j_plasma_bootstrap_sauter_profile143)_ 1.19093058320191441e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_144______________ (j_plasma_bootstrap_sauter_profile144)_ 1.19665872864782359e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_145______________ (j_plasma_bootstrap_sauter_profile145)_ 1.20238161874772966e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_146______________ (j_plasma_bootstrap_sauter_profile146)_ 1.20809922115118912e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_147______________ (j_plasma_bootstrap_sauter_profile147)_ 1.21381149881919133e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_148______________ (j_plasma_bootstrap_sauter_profile148)_ 1.21951841006887305e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_149______________ (j_plasma_bootstrap_sauter_profile149)_ 1.22521990861635597e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_150______________ (j_plasma_bootstrap_sauter_profile150)_ 1.23091594361946947e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_151______________ (j_plasma_bootstrap_sauter_profile151)_ 1.23660645971585574e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_152______________ (j_plasma_bootstrap_sauter_profile152)_ 1.24229139706419941e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_153______________ (j_plasma_bootstrap_sauter_profile153)_ 1.24797069138404317e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_154______________ (j_plasma_bootstrap_sauter_profile154)_ 1.25364427398818050e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_155______________ (j_plasma_bootstrap_sauter_profile155)_ 1.25931207182403334e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_156______________ (j_plasma_bootstrap_sauter_profile156)_ 1.26497400750700588e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_157______________ (j_plasma_bootstrap_sauter_profile157)_ 1.27062999935623753e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_158______________ (j_plasma_bootstrap_sauter_profile158)_ 1.27627996142505697e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_159______________ (j_plasma_bootstrap_sauter_profile159)_ 1.28192380353702247e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_160______________ (j_plasma_bootstrap_sauter_profile160)_ 1.28756143131748759e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_161______________ (j_plasma_bootstrap_sauter_profile161)_ 1.29319274622305253e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_162______________ (j_plasma_bootstrap_sauter_profile162)_ 1.29881764557386050e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_163______________ (j_plasma_bootstrap_sauter_profile163)_ 1.30443602258219151e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_164______________ (j_plasma_bootstrap_sauter_profile164)_ 1.31004776638167561e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_165______________ (j_plasma_bootstrap_sauter_profile165)_ 1.31565276205718255e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_166______________ (j_plasma_bootstrap_sauter_profile166)_ 1.32125089066896529e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_167______________ (j_plasma_bootstrap_sauter_profile167)_ 1.32684202928363695e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_168______________ (j_plasma_bootstrap_sauter_profile168)_ 1.33242605099831620e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_169______________ (j_plasma_bootstrap_sauter_profile169)_ 1.33800282496715692e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_170______________ (j_plasma_bootstrap_sauter_profile170)_ 1.34357221642633231e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_171______________ (j_plasma_bootstrap_sauter_profile171)_ 1.34913408671976271e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_172______________ (j_plasma_bootstrap_sauter_profile172)_ 1.35468829332129273e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_173______________ (j_plasma_bootstrap_sauter_profile173)_ 1.36023468986107095e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_174______________ (j_plasma_bootstrap_sauter_profile174)_ 1.36577312614702940e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_175______________ (j_plasma_bootstrap_sauter_profile175)_ 1.37130344818816084e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_176______________ (j_plasma_bootstrap_sauter_profile176)_ 1.37682549821598397e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_177______________ (j_plasma_bootstrap_sauter_profile177)_ 1.38233911470841180e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_178______________ (j_plasma_bootstrap_sauter_profile178)_ 1.38784413240851631e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_179______________ (j_plasma_bootstrap_sauter_profile179)_ 1.39334038234845590e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_180______________ (j_plasma_bootstrap_sauter_profile180)_ 1.39882769186798047e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_181______________ (j_plasma_bootstrap_sauter_profile181)_ 1.40430588463504799e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_182______________ (j_plasma_bootstrap_sauter_profile182)_ 1.40977478066627460e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_183______________ (j_plasma_bootstrap_sauter_profile183)_ 1.41523419634588936e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_184______________ (j_plasma_bootstrap_sauter_profile184)_ 1.42068394444622856e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_185______________ (j_plasma_bootstrap_sauter_profile185)_ 1.42612383414453332e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_186______________ (j_plasma_bootstrap_sauter_profile186)_ 1.43155367104185687e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_187______________ (j_plasma_bootstrap_sauter_profile187)_ 1.43697325718434964e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_188______________ (j_plasma_bootstrap_sauter_profile188)_ 1.44238239107603760e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_189______________ (j_plasma_bootstrap_sauter_profile189)_ 1.44778086770052323e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_190______________ (j_plasma_bootstrap_sauter_profile190)_ 1.45316847853685933e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_191______________ (j_plasma_bootstrap_sauter_profile191)_ 1.45854501157665480e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_192______________ (j_plasma_bootstrap_sauter_profile192)_ 1.46391025134069234e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_193______________ (j_plasma_bootstrap_sauter_profile193)_ 1.46926397889581422e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_194______________ (j_plasma_bootstrap_sauter_profile194)_ 1.47460597187106352e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_195______________ (j_plasma_bootstrap_sauter_profile195)_ 1.47993600447426288e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_196______________ (j_plasma_bootstrap_sauter_profile196)_ 1.48525384750701138e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_197______________ (j_plasma_bootstrap_sauter_profile197)_ 1.49055926838096435e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_198______________ (j_plasma_bootstrap_sauter_profile198)_ 1.49585203113254218e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_199______________ (j_plasma_bootstrap_sauter_profile199)_ 1.50113189643961116e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_200______________ (j_plasma_bootstrap_sauter_profile200)_ 1.50639862163430924e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_201______________ (j_plasma_bootstrap_sauter_profile201)_ 1.51165196072019869e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_202______________ (j_plasma_bootstrap_sauter_profile202)_ 1.51689166438464366e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_203______________ (j_plasma_bootstrap_sauter_profile203)_ 1.52211748001544096e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_204______________ (j_plasma_bootstrap_sauter_profile204)_ 1.52732915171255561e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_205______________ (j_plasma_bootstrap_sauter_profile205)_ 1.53252642030536663e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_206______________ (j_plasma_bootstrap_sauter_profile206)_ 1.53770902336422965e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_207______________ (j_plasma_bootstrap_sauter_profile207)_ 1.54287669521425734e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_208______________ (j_plasma_bootstrap_sauter_profile208)_ 1.54802916694975342e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_209______________ (j_plasma_bootstrap_sauter_profile209)_ 1.55316616644938011e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_210______________ (j_plasma_bootstrap_sauter_profile210)_ 1.55828741838570160e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_211______________ (j_plasma_bootstrap_sauter_profile211)_ 1.56339264424049325e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_212______________ (j_plasma_bootstrap_sauter_profile212)_ 1.56848156231817353e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_213______________ (j_plasma_bootstrap_sauter_profile213)_ 1.57355388775835105e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_214______________ (j_plasma_bootstrap_sauter_profile214)_ 1.57860933254825533e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_215______________ (j_plasma_bootstrap_sauter_profile215)_ 1.58364760553524829e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_216______________ (j_plasma_bootstrap_sauter_profile216)_ 1.58866841244007373e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_217______________ (j_plasma_bootstrap_sauter_profile217)_ 1.59367145586921863e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_218______________ (j_plasma_bootstrap_sauter_profile218)_ 1.59865643532666320e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_219______________ (j_plasma_bootstrap_sauter_profile219)_ 1.60362304722572444e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_220______________ (j_plasma_bootstrap_sauter_profile220)_ 1.60857098490254430e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_221______________ (j_plasma_bootstrap_sauter_profile221)_ 1.61349993862851523e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_222______________ (j_plasma_bootstrap_sauter_profile222)_ 1.61840959561729862e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_223______________ (j_plasma_bootstrap_sauter_profile223)_ 1.62329964004393085e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_224______________ (j_plasma_bootstrap_sauter_profile224)_ 1.62816975305146800e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_225______________ (j_plasma_bootstrap_sauter_profile225)_ 1.63301961276372604e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_226______________ (j_plasma_bootstrap_sauter_profile226)_ 1.63784889429712348e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_227______________ (j_plasma_bootstrap_sauter_profile227)_ 1.64265726977127575e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_228______________ (j_plasma_bootstrap_sauter_profile228)_ 1.64744440832192166e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_229______________ (j_plasma_bootstrap_sauter_profile229)_ 1.65220997611115919e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_230______________ (j_plasma_bootstrap_sauter_profile230)_ 1.65695363633723697e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_231______________ (j_plasma_bootstrap_sauter_profile231)_ 1.66167504924741312e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_232______________ (j_plasma_bootstrap_sauter_profile232)_ 1.66637387214858696e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_233______________ (j_plasma_bootstrap_sauter_profile233)_ 1.67104975941817247e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_234______________ (j_plasma_bootstrap_sauter_profile234)_ 1.67570236251309369e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_235______________ (j_plasma_bootstrap_sauter_profile235)_ 1.68033132998268498e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_236______________ (j_plasma_bootstrap_sauter_profile236)_ 1.68493630747857416e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_237______________ (j_plasma_bootstrap_sauter_profile237)_ 1.68951693776485190e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_238______________ (j_plasma_bootstrap_sauter_profile238)_ 1.69407286072808201e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_239______________ (j_plasma_bootstrap_sauter_profile239)_ 1.69860371338871948e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_240______________ (j_plasma_bootstrap_sauter_profile240)_ 1.70310912991091667e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_241______________ (j_plasma_bootstrap_sauter_profile241)_ 1.70758874161107786e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_242______________ (j_plasma_bootstrap_sauter_profile242)_ 1.71204217697042943e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_243______________ (j_plasma_bootstrap_sauter_profile243)_ 1.71646906164380925e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_244______________ (j_plasma_bootstrap_sauter_profile244)_ 1.72086901846944558e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_245______________ (j_plasma_bootstrap_sauter_profile245)_ 1.72524166747737792e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_246______________ (j_plasma_bootstrap_sauter_profile246)_ 1.72958662590237975e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_247______________ (j_plasma_bootstrap_sauter_profile247)_ 1.73390350819069630e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_248______________ (j_plasma_bootstrap_sauter_profile248)_ 1.73819192600981420e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_249______________ (j_plasma_bootstrap_sauter_profile249)_ 1.74245148825934506e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_250______________ (j_plasma_bootstrap_sauter_profile250)_ 1.74668180107877764e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_251______________ (j_plasma_bootstrap_sauter_profile251)_ 1.75088246785710449e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_252______________ (j_plasma_bootstrap_sauter_profile252)_ 1.75505308924247947e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_253______________ (j_plasma_bootstrap_sauter_profile253)_ 1.75919326314973441e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_254______________ (j_plasma_bootstrap_sauter_profile254)_ 1.76330258477022260e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_255______________ (j_plasma_bootstrap_sauter_profile255)_ 1.76738064658099669e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_256______________ (j_plasma_bootstrap_sauter_profile256)_ 1.77142703835129127e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_257______________ (j_plasma_bootstrap_sauter_profile257)_ 1.77544134715305991e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_258______________ (j_plasma_bootstrap_sauter_profile258)_ 1.77942315736827353e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_259______________ (j_plasma_bootstrap_sauter_profile259)_ 1.78337205069747375e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_260______________ (j_plasma_bootstrap_sauter_profile260)_ 1.78728760616773827e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_261______________ (j_plasma_bootstrap_sauter_profile261)_ 1.79116940013954591e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_262______________ (j_plasma_bootstrap_sauter_profile262)_ 1.79501700631578162e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_263______________ (j_plasma_bootstrap_sauter_profile263)_ 1.79882999574962887e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_264______________ (j_plasma_bootstrap_sauter_profile264)_ 1.80260793685021083e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_265______________ (j_plasma_bootstrap_sauter_profile265)_ 1.80635039539128426e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_266______________ (j_plasma_bootstrap_sauter_profile266)_ 1.81005693451723258e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_267______________ (j_plasma_bootstrap_sauter_profile267)_ 1.81372711475145567e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_268______________ (j_plasma_bootstrap_sauter_profile268)_ 1.81736049400121876e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_269______________ (j_plasma_bootstrap_sauter_profile269)_ 1.82095662756538775e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_270______________ (j_plasma_bootstrap_sauter_profile270)_ 1.82451506814069959e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_271______________ (j_plasma_bootstrap_sauter_profile271)_ 1.82803536582685920e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_272______________ (j_plasma_bootstrap_sauter_profile272)_ 1.83151706813332799e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_273______________ (j_plasma_bootstrap_sauter_profile273)_ 1.83495971998448862e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_274______________ (j_plasma_bootstrap_sauter_profile274)_ 1.83836286372550268e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_275______________ (j_plasma_bootstrap_sauter_profile275)_ 1.84172603912616818e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_276______________ (j_plasma_bootstrap_sauter_profile276)_ 1.84504878338740411e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_277______________ (j_plasma_bootstrap_sauter_profile277)_ 1.84833063114549324e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_278______________ (j_plasma_bootstrap_sauter_profile278)_ 1.85157111447456758e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_279______________ (j_plasma_bootstrap_sauter_profile279)_ 1.85476976289346843e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_280______________ (j_plasma_bootstrap_sauter_profile280)_ 1.85792610336699145e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_281______________ (j_plasma_bootstrap_sauter_profile281)_ 1.86103966031112068e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_282______________ (j_plasma_bootstrap_sauter_profile282)_ 1.86410995559429226e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_283______________ (j_plasma_bootstrap_sauter_profile283)_ 1.86713650854208099e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_284______________ (j_plasma_bootstrap_sauter_profile284)_ 1.87011883593726059e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_285______________ (j_plasma_bootstrap_sauter_profile285)_ 1.87305645202399639e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_286______________ (j_plasma_bootstrap_sauter_profile286)_ 1.87594886850791750e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_287______________ (j_plasma_bootstrap_sauter_profile287)_ 1.87879559455775394e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_288______________ (j_plasma_bootstrap_sauter_profile288)_ 1.88159613680578361e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_289______________ (j_plasma_bootstrap_sauter_profile289)_ 1.88434999934851803e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_290______________ (j_plasma_bootstrap_sauter_profile290)_ 1.88705668374596513e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_291______________ (j_plasma_bootstrap_sauter_profile291)_ 1.88971568902153987e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_292______________ (j_plasma_bootstrap_sauter_profile292)_ 1.89232651166018710e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_293______________ (j_plasma_bootstrap_sauter_profile293)_ 1.89488864560709044e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_294______________ (j_plasma_bootstrap_sauter_profile294)_ 1.89740158226529427e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_295______________ (j_plasma_bootstrap_sauter_profile295)_ 1.89986481049249036e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_296______________ (j_plasma_bootstrap_sauter_profile296)_ 1.90227781659814384e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_297______________ (j_plasma_bootstrap_sauter_profile297)_ 1.90464008433843672e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_298______________ (j_plasma_bootstrap_sauter_profile298)_ 1.90695109491252078e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_299______________ (j_plasma_bootstrap_sauter_profile299)_ 1.90921032695644040e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_300______________ (j_plasma_bootstrap_sauter_profile300)_ 1.91141725653699250e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_301______________ (j_plasma_bootstrap_sauter_profile301)_ 1.91357135714455886e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_302______________ (j_plasma_bootstrap_sauter_profile302)_ 1.91567209968644282e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_303______________ (j_plasma_bootstrap_sauter_profile303)_ 1.91771895247624401e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_304______________ (j_plasma_bootstrap_sauter_profile304)_ 1.91971138122689270e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_305______________ (j_plasma_bootstrap_sauter_profile305)_ 1.92164884903857543e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_306______________ (j_plasma_bootstrap_sauter_profile306)_ 1.92353081638832722e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_307______________ (j_plasma_bootstrap_sauter_profile307)_ 1.92535674111774802e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_308______________ (j_plasma_bootstrap_sauter_profile308)_ 1.92712607841895951e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_309______________ (j_plasma_bootstrap_sauter_profile309)_ 1.92883828082174383e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_310______________ (j_plasma_bootstrap_sauter_profile310)_ 1.93049279817692674e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_311______________ (j_plasma_bootstrap_sauter_profile311)_ 1.93208907764095056e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_312______________ (j_plasma_bootstrap_sauter_profile312)_ 1.93362656365640840e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_313______________ (j_plasma_bootstrap_sauter_profile313)_ 1.93510469793566765e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_314______________ (j_plasma_bootstrap_sauter_profile314)_ 1.93652291943717137e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_315______________ (j_plasma_bootstrap_sauter_profile315)_ 1.93788066434686043e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_316______________ (j_plasma_bootstrap_sauter_profile316)_ 1.93917736605302780e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_317______________ (j_plasma_bootstrap_sauter_profile317)_ 1.94041245512248017e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_318______________ (j_plasma_bootstrap_sauter_profile318)_ 1.94158535927380668e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_319______________ (j_plasma_bootstrap_sauter_profile319)_ 1.94269550335020991e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_320______________ (j_plasma_bootstrap_sauter_profile320)_ 1.94374230928940611e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_321______________ (j_plasma_bootstrap_sauter_profile321)_ 1.94472519609164970e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_322______________ (j_plasma_bootstrap_sauter_profile322)_ 1.94564357978775952e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_323______________ (j_plasma_bootstrap_sauter_profile323)_ 1.94649687340250093e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_324______________ (j_plasma_bootstrap_sauter_profile324)_ 1.94728448691879952e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_325______________ (j_plasma_bootstrap_sauter_profile325)_ 1.94800582723636762e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_326______________ (j_plasma_bootstrap_sauter_profile326)_ 1.94866029813180387e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_327______________ (j_plasma_bootstrap_sauter_profile327)_ 1.94924730021302472e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_328______________ (j_plasma_bootstrap_sauter_profile328)_ 1.94976623087334883e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_329______________ (j_plasma_bootstrap_sauter_profile329)_ 1.95021648424264451e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_330______________ (j_plasma_bootstrap_sauter_profile330)_ 1.95059745113517478e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_331______________ (j_plasma_bootstrap_sauter_profile331)_ 1.95090851899499481e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_332______________ (j_plasma_bootstrap_sauter_profile332)_ 1.95114907183750736e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_333______________ (j_plasma_bootstrap_sauter_profile333)_ 1.95131849018994137e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_334______________ (j_plasma_bootstrap_sauter_profile334)_ 1.95141615102648473e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_335______________ (j_plasma_bootstrap_sauter_profile335)_ 1.95144142770129489e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_336______________ (j_plasma_bootstrap_sauter_profile336)_ 1.95139368987717608e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_337______________ (j_plasma_bootstrap_sauter_profile337)_ 1.95127230345069984e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_338______________ (j_plasma_bootstrap_sauter_profile338)_ 1.95107663047364797e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_339______________ (j_plasma_bootstrap_sauter_profile339)_ 1.95080602907095541e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_340______________ (j_plasma_bootstrap_sauter_profile340)_ 1.95045985335111356e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_341______________ (j_plasma_bootstrap_sauter_profile341)_ 1.95003745331739658e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_342______________ (j_plasma_bootstrap_sauter_profile342)_ 1.94953817477015080e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_343______________ (j_plasma_bootstrap_sauter_profile343)_ 1.94896135920393921e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_344______________ (j_plasma_bootstrap_sauter_profile344)_ 1.94830634370335611e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_345______________ (j_plasma_bootstrap_sauter_profile345)_ 1.94757246082828904e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_346______________ (j_plasma_bootstrap_sauter_profile346)_ 1.94675903849751136e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_347______________ (j_plasma_bootstrap_sauter_profile347)_ 1.94586539986381278e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_348______________ (j_plasma_bootstrap_sauter_profile348)_ 1.94489086318302638e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_349______________ (j_plasma_bootstrap_sauter_profile349)_ 1.94383474167752487e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_350______________ (j_plasma_bootstrap_sauter_profile350)_ 1.94269634339141281e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_351______________ (j_plasma_bootstrap_sauter_profile351)_ 1.94147497103820235e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_352______________ (j_plasma_bootstrap_sauter_profile352)_ 1.94016992184142029e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_353______________ (j_plasma_bootstrap_sauter_profile353)_ 1.93878048736693570e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_354______________ (j_plasma_bootstrap_sauter_profile354)_ 1.93730595334528218e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_355______________ (j_plasma_bootstrap_sauter_profile355)_ 1.93574559948682436e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_356______________ (j_plasma_bootstrap_sauter_profile356)_ 1.93409869928505272e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_357______________ (j_plasma_bootstrap_sauter_profile357)_ 1.93236451981238090e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_358______________ (j_plasma_bootstrap_sauter_profile358)_ 1.93054232150196069e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_359______________ (j_plasma_bootstrap_sauter_profile359)_ 1.92863135792084708e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_360______________ (j_plasma_bootstrap_sauter_profile360)_ 1.92663087552971556e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_361______________ (j_plasma_bootstrap_sauter_profile361)_ 1.92454011343140941e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_362______________ (j_plasma_bootstrap_sauter_profile362)_ 1.92235830310371850e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_363______________ (j_plasma_bootstrap_sauter_profile363)_ 1.92008466812074766e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_364______________ (j_plasma_bootstrap_sauter_profile364)_ 1.91771842385790980e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_365______________ (j_plasma_bootstrap_sauter_profile365)_ 1.91525877718101372e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_366______________ (j_plasma_bootstrap_sauter_profile366)_ 1.91270492611993570e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_367______________ (j_plasma_bootstrap_sauter_profile367)_ 1.91005605952299025e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_368______________ (j_plasma_bootstrap_sauter_profile368)_ 1.90731135669481213e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_369______________ (j_plasma_bootstrap_sauter_profile369)_ 1.90446998701198958e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_370______________ (j_plasma_bootstrap_sauter_profile370)_ 1.90153110951990122e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_371______________ (j_plasma_bootstrap_sauter_profile371)_ 1.89849387250600528e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_372______________ (j_plasma_bootstrap_sauter_profile372)_ 1.89535741305084492e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_373______________ (j_plasma_bootstrap_sauter_profile373)_ 1.89212085655193107e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_374______________ (j_plasma_bootstrap_sauter_profile374)_ 1.88878331622406462e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_375______________ (j_plasma_bootstrap_sauter_profile375)_ 1.88534389256909111e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_376______________ (j_plasma_bootstrap_sauter_profile376)_ 1.88180167281654169e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_377______________ (j_plasma_bootstrap_sauter_profile377)_ 1.87815573033293011e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_378______________ (j_plasma_bootstrap_sauter_profile378)_ 1.87440512399631174e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_379______________ (j_plasma_bootstrap_sauter_profile379)_ 1.87054889753557160e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_380______________ (j_plasma_bootstrap_sauter_profile380)_ 1.86658607883083052e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_381______________ (j_plasma_bootstrap_sauter_profile381)_ 1.86251567917277192e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_382______________ (j_plasma_bootstrap_sauter_profile382)_ 1.85833669247870595e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_383______________ (j_plasma_bootstrap_sauter_profile383)_ 1.85404809446240339e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_384______________ (j_plasma_bootstrap_sauter_profile384)_ 1.84964884175291692e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_385______________ (j_plasma_bootstrap_sauter_profile385)_ 1.84513787096161541e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_386______________ (j_plasma_bootstrap_sauter_profile386)_ 1.84051409769160789e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_387______________ (j_plasma_bootstrap_sauter_profile387)_ 1.83577641548560379e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_388______________ (j_plasma_bootstrap_sauter_profile388)_ 1.83092369471153099e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_389______________ (j_plasma_bootstrap_sauter_profile389)_ 1.82595478137414553e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_390______________ (j_plasma_bootstrap_sauter_profile390)_ 1.82086849585498887e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_391______________ (j_plasma_bootstrap_sauter_profile391)_ 1.81566363157099171e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_392______________ (j_plasma_bootstrap_sauter_profile392)_ 1.81033895354664855e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_393______________ (j_plasma_bootstrap_sauter_profile393)_ 1.80489319689297758e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_394______________ (j_plasma_bootstrap_sauter_profile394)_ 1.79932506518783892e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_395______________ (j_plasma_bootstrap_sauter_profile395)_ 1.79363322874737525e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_396______________ (j_plasma_bootstrap_sauter_profile396)_ 1.78781632278293691e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_397______________ (j_plasma_bootstrap_sauter_profile397)_ 1.78187294543149765e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_398______________ (j_plasma_bootstrap_sauter_profile398)_ 1.77580165565268660e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_399______________ (j_plasma_bootstrap_sauter_profile399)_ 1.76960097097862337e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_400______________ (j_plasma_bootstrap_sauter_profile400)_ 1.76326936510652740e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_401______________ (j_plasma_bootstrap_sauter_profile401)_ 1.75680526532026910e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_402______________ (j_plasma_bootstrap_sauter_profile402)_ 1.75020704972601292e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_403______________ (j_plasma_bootstrap_sauter_profile403)_ 1.74347304428843956e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_404______________ (j_plasma_bootstrap_sauter_profile404)_ 1.73660151964500023e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_405______________ (j_plasma_bootstrap_sauter_profile405)_ 1.72959068768631201e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_406______________ (j_plasma_bootstrap_sauter_profile406)_ 1.72243869787404226e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_407______________ (j_plasma_bootstrap_sauter_profile407)_ 1.71514363327857311e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_408______________ (j_plasma_bootstrap_sauter_profile408)_ 1.70770350630695728e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_409______________ (j_plasma_bootstrap_sauter_profile409)_ 1.70011625409340078e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_410______________ (j_plasma_bootstrap_sauter_profile410)_ 1.69237973352146917e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_411______________ (j_plasma_bootstrap_sauter_profile411)_ 1.68449171584059746e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_412______________ (j_plasma_bootstrap_sauter_profile412)_ 1.67644988083784410e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_413______________ (j_plasma_bootstrap_sauter_profile413)_ 1.66825181052108383e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_414______________ (j_plasma_bootstrap_sauter_profile414)_ 1.65989498226326687e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_415______________ (j_plasma_bootstrap_sauter_profile415)_ 1.65137676135251881e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_416______________ (j_plasma_bootstrap_sauter_profile416)_ 1.64269439288658439e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_417______________ (j_plasma_bootstrap_sauter_profile417)_ 1.63384499293878063e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_418______________ (j_plasma_bootstrap_sauter_profile418)_ 1.62482553891911841e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_419______________ (j_plasma_bootstrap_sauter_profile419)_ 1.61563285904045857e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_420______________ (j_plasma_bootstrap_sauter_profile420)_ 1.60626362078571809e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_421______________ (j_plasma_bootstrap_sauter_profile421)_ 1.59671431826472282e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_422______________ (j_plasma_bootstrap_sauter_profile422)_ 1.58698125832740479e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_423______________ (j_plasma_bootstrap_sauter_profile423)_ 1.57706054528429057e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_424______________ (j_plasma_bootstrap_sauter_profile424)_ 1.56694806406231772e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_425______________ (j_plasma_bootstrap_sauter_profile425)_ 1.55663946160216990e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_426______________ (j_plasma_bootstrap_sauter_profile426)_ 1.54613012626662821e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_427______________ (j_plasma_bootstrap_sauter_profile427)_ 1.53541516500458325e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_428______________ (j_plasma_bootstrap_sauter_profile428)_ 1.52448937796303333e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_429______________ (j_plasma_bootstrap_sauter_profile429)_ 1.51334723020045232e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_430______________ (j_plasma_bootstrap_sauter_profile430)_ 1.50198282008944050e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_431______________ (j_plasma_bootstrap_sauter_profile431)_ 1.49038984393100283e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_432______________ (j_plasma_bootstrap_sauter_profile432)_ 1.47856155621709739e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_433______________ (j_plasma_bootstrap_sauter_profile433)_ 1.46649072487813421e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_434______________ (j_plasma_bootstrap_sauter_profile434)_ 1.45416958072971407e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_435______________ (j_plasma_bootstrap_sauter_profile435)_ 1.44158976018236048e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_436______________ (j_plasma_bootstrap_sauter_profile436)_ 1.42874224009717349e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_437______________ (j_plasma_bootstrap_sauter_profile437)_ 1.41561726344359457e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_438______________ (j_plasma_bootstrap_sauter_profile438)_ 1.40220425413737947e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_439______________ (j_plasma_bootstrap_sauter_profile439)_ 1.38849171908794320e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_440______________ (j_plasma_bootstrap_sauter_profile440)_ 1.37446713504867570e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_441______________ (j_plasma_bootstrap_sauter_profile441)_ 1.36011681730955257e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_442______________ (j_plasma_bootstrap_sauter_profile442)_ 1.34542576656913297e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_443______________ (j_plasma_bootstrap_sauter_profile443)_ 1.33037748941739264e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_444______________ (j_plasma_bootstrap_sauter_profile444)_ 1.31495378669067548e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_445______________ (j_plasma_bootstrap_sauter_profile445)_ 1.29913450242833977e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_446______________ (j_plasma_bootstrap_sauter_profile446)_ 1.28289722413671305e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_447______________ (j_plasma_bootstrap_sauter_profile447)_ 1.26621692236784322e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_448______________ (j_plasma_bootstrap_sauter_profile448)_ 1.24906551397143077e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_449______________ (j_plasma_bootstrap_sauter_profile449)_ 1.23141132839359518e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_450______________ (j_plasma_bootstrap_sauter_profile450)_ 1.21321844947800215e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_451______________ (j_plasma_bootstrap_sauter_profile451)_ 1.19444589549388518e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_452______________ (j_plasma_bootstrap_sauter_profile452)_ 1.17504658618504109e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_453______________ (j_plasma_bootstrap_sauter_profile453)_ 1.15496602534083271e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_454______________ (j_plasma_bootstrap_sauter_profile454)_ 1.13414059720964462e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_455______________ (j_plasma_bootstrap_sauter_profile455)_ 1.11249532918060810e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_456______________ (j_plasma_bootstrap_sauter_profile456)_ 1.08994090157079307e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_457______________ (j_plasma_bootstrap_sauter_profile457)_ 1.06636957042918933e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_458______________ (j_plasma_bootstrap_sauter_profile458)_ 1.04164947863014662e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_459______________ (j_plasma_bootstrap_sauter_profile459)_ 1.01561650203426296e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_460______________ (j_plasma_bootstrap_sauter_profile460)_ 9.88062185774563695e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_461______________ (j_plasma_bootstrap_sauter_profile461)_ 9.58715201986744942e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_462______________ (j_plasma_bootstrap_sauter_profile462)_ 9.27211485107280605e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_463______________ (j_plasma_bootstrap_sauter_profile463)_ 8.93043212861376378e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_464______________ (j_plasma_bootstrap_sauter_profile464)_ 8.55464689196261315e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_465______________ (j_plasma_bootstrap_sauter_profile465)_ 8.13299436429951311e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_466______________ (j_plasma_bootstrap_sauter_profile466)_ 7.64477972310370533e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_467______________ (j_plasma_bootstrap_sauter_profile467)_ 7.04589885315022548e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_468______________ (j_plasma_bootstrap_sauter_profile468)_ 6.16850028826366688e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_469______________ (j_plasma_bootstrap_sauter_profile469)_ 3.07226357641311595e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_470______________ (j_plasma_bootstrap_sauter_profile470)_ 5.40685156481491984e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_471______________ (j_plasma_bootstrap_sauter_profile471)_ 5.29091855300626135e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_472______________ (j_plasma_bootstrap_sauter_profile472)_ 5.17452097657891514e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_473______________ (j_plasma_bootstrap_sauter_profile473)_ 5.05764653213584563e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_474______________ (j_plasma_bootstrap_sauter_profile474)_ 4.94028036860291031e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_475______________ (j_plasma_bootstrap_sauter_profile475)_ 4.82240441171358689e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_476______________ (j_plasma_bootstrap_sauter_profile476)_ 4.70399648062232300e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_477______________ (j_plasma_bootstrap_sauter_profile477)_ 4.58502912309702660e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_478______________ (j_plasma_bootstrap_sauter_profile478)_ 4.46546806614002388e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_479______________ (j_plasma_bootstrap_sauter_profile479)_ 4.34527013581948122e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_480______________ (j_plasma_bootstrap_sauter_profile480)_ 4.22438043675312889e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_481______________ (j_plasma_bootstrap_sauter_profile481)_ 4.10272848731069767e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_482______________ (j_plasma_bootstrap_sauter_profile482)_ 3.98022286417870841e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_483______________ (j_plasma_bootstrap_sauter_profile483)_ 3.85674369198245986e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_484______________ (j_plasma_bootstrap_sauter_profile484)_ 3.73213197525365802e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_485______________ (j_plasma_bootstrap_sauter_profile485)_ 3.60617423648386495e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_486______________ (j_plasma_bootstrap_sauter_profile486)_ 3.47858006930388568e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_487______________ (j_plasma_bootstrap_sauter_profile487)_ 3.34894882414759544e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_488______________ (j_plasma_bootstrap_sauter_profile488)_ 3.21671934078543389e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_489______________ (j_plasma_bootstrap_sauter_profile489)_ 3.08109277365522983e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_490______________ (j_plasma_bootstrap_sauter_profile490)_ 2.94091198367442004e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_491______________ (j_plasma_bootstrap_sauter_profile491)_ 2.79446978154233366e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_492______________ (j_plasma_bootstrap_sauter_profile492)_ 2.63919968489872641e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_493______________ (j_plasma_bootstrap_sauter_profile493)_ 2.47117480364067713e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_494______________ (j_plasma_bootstrap_sauter_profile494)_ 2.28431520245781896e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_495______________ (j_plasma_bootstrap_sauter_profile495)_ 2.06928965037532384e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_496______________ (j_plasma_bootstrap_sauter_profile496)_ 1.81299151603984617e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_497______________ (j_plasma_bootstrap_sauter_profile497)_ 1.50510536472751468e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_498______________ (j_plasma_bootstrap_sauter_profile498)_ 1.16357639709117240e+05 OP -Bootstrap_fraction_(Sakai_scaling)_______________________________________ (f_c_plasma_bootstrap_sakai)___ 3.80509783339279206e-01 OP -Bootstrap_fraction_(Aries_scaling)_______________________________________ (f_c_plasma_bootstrap_aries)___ 5.73771772529541813e-01 OP -Bootstrap_fraction_(Andrade_scaling)_____________________________________ (f_c_plasma_bootstrap_andrade)_ 3.61653729310356720e-01 OP -Bootstrap_fraction_(Hoang_scaling)_______________________________________ (f_c_plasma_bootstrap_hoang)___ 3.85613892353003196e-01 OP -Bootstrap_fraction_(Wong_scaling)________________________________________ (f_c_plasma_bootstrap_wong)____ 7.26432361341551425e-01 OP -Bootstrap_fraction_(GI_1_scaling)________________________________________ (bscf_gi_i)____________________ 8.21323296892831456e-01 OP -Bootstrap_fraction_(GI_2_scaling)________________________________________ (bscf_gi_ii)___________________ 9.10896977574958799e-01 OP -Bootstrap_fraction_(Sugiyama_L_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_l)_ 5.89552150611453496e-01 OP -Bootstrap_fraction_(Sugiyama_H_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_h)_ 6.07797034438144590e-01 OP -Pfirsch-Schlueter_fraction_(SCENE)_______________________________________ (f_c_plasma_pfirsch_schluter_scene)_ -3.40314194334631658e-03 OP -Bootstrap_fraction_(enforced)____________________________________________ (f_c_plasma_bootstrap.)________ 4.22833658317523231e-01 OP +Bootstrap_fraction_(ITER_IPDG89_scaling)_________________________________ (f_c_plasma_bootstrap_iter89)__ 3.86390265141005551e-01 OP +Bootstrap_fraction_(Nevins_scaling)______________________________________ (f_c_plasma_bootstrap_nevins)__ 3.98516078405339647e-01 OP +Bootstrap_fraction_(Wilson_scaling)______________________________________ (f_c_plasma_bootstrap_wilson)__ 5.15206125427977502e-01 OP +Bootstrap_fraction_(Sauter_scaling)______________________________________ (f_c_plasma_bootstrap_sauter)__ 4.21875565216539794e-01 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_0________________ (j_plasma_bootstrap_sauter_profile0)_ 2.60534132480913149e+03 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_1________________ (j_plasma_bootstrap_sauter_profile1)_ 6.07412369481573114e+03 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_2________________ (j_plasma_bootstrap_sauter_profile2)_ 9.27571969490804804e+03 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_3________________ (j_plasma_bootstrap_sauter_profile3)_ 1.21358500331953692e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_4________________ (j_plasma_bootstrap_sauter_profile4)_ 1.46936389590412928e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_5________________ (j_plasma_bootstrap_sauter_profile5)_ 1.69994637295914727e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_6________________ (j_plasma_bootstrap_sauter_profile6)_ 1.90977432599935491e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_7________________ (j_plasma_bootstrap_sauter_profile7)_ 2.10247716574596598e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_8________________ (j_plasma_bootstrap_sauter_profile8)_ 2.28096176429631741e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_9________________ (j_plasma_bootstrap_sauter_profile9)_ 2.44754932065454886e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_10_______________ (j_plasma_bootstrap_sauter_profile10)_ 2.60409938213517562e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_11_______________ (j_plasma_bootstrap_sauter_profile11)_ 2.75211026243536216e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_12_______________ (j_plasma_bootstrap_sauter_profile12)_ 2.89279743199611039e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_13_______________ (j_plasma_bootstrap_sauter_profile13)_ 3.02715399303053964e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_14_______________ (j_plasma_bootstrap_sauter_profile14)_ 3.15599724336826730e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_15_______________ (j_plasma_bootstrap_sauter_profile15)_ 3.28000461795605297e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_16_______________ (j_plasma_bootstrap_sauter_profile16)_ 3.39974155722170253e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_17_______________ (j_plasma_bootstrap_sauter_profile17)_ 3.51568323577918272e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_18_______________ (j_plasma_bootstrap_sauter_profile18)_ 3.62823160500682425e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_19_______________ (j_plasma_bootstrap_sauter_profile19)_ 3.73772884248637638e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_20_______________ (j_plasma_bootstrap_sauter_profile20)_ 3.84446803073629853e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_21_______________ (j_plasma_bootstrap_sauter_profile21)_ 3.94870168746008785e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_22_______________ (j_plasma_bootstrap_sauter_profile22)_ 4.05064861987787881e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_23_______________ (j_plasma_bootstrap_sauter_profile23)_ 4.15049946419071930e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_24_______________ (j_plasma_bootstrap_sauter_profile24)_ 4.24842118746754131e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_25_______________ (j_plasma_bootstrap_sauter_profile25)_ 4.34456076610734308e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_26_______________ (j_plasma_bootstrap_sauter_profile26)_ 4.43904820731237196e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_27_______________ (j_plasma_bootstrap_sauter_profile27)_ 4.53199904360844303e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_28_______________ (j_plasma_bootstrap_sauter_profile28)_ 4.62351640225189767e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_29_______________ (j_plasma_bootstrap_sauter_profile29)_ 4.71369273036329832e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_30_______________ (j_plasma_bootstrap_sauter_profile30)_ 4.80261123944834835e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_31_______________ (j_plasma_bootstrap_sauter_profile31)_ 4.89034712063388943e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_32_______________ (j_plasma_bootstrap_sauter_profile32)_ 4.97696857103005968e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_33_______________ (j_plasma_bootstrap_sauter_profile33)_ 5.06253766459042090e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_34_______________ (j_plasma_bootstrap_sauter_profile34)_ 5.14711109370349513e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_35_______________ (j_plasma_bootstrap_sauter_profile35)_ 5.23074080338160129e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_36_______________ (j_plasma_bootstrap_sauter_profile36)_ 5.31347453551669241e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_37_______________ (j_plasma_bootstrap_sauter_profile37)_ 5.39535629774782574e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_38_______________ (j_plasma_bootstrap_sauter_profile38)_ 5.47642676880198414e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_39_______________ (j_plasma_bootstrap_sauter_profile39)_ 5.55672365014640236e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_40_______________ (j_plasma_bootstrap_sauter_profile40)_ 5.63628197200892828e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_41_______________ (j_plasma_bootstrap_sauter_profile41)_ 5.71513436067257644e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_42_______________ (j_plasma_bootstrap_sauter_profile42)_ 5.79331127255795145e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_43_______________ (j_plasma_bootstrap_sauter_profile43)_ 5.87084119993694985e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_44_______________ (j_plasma_bootstrap_sauter_profile44)_ 5.94775085218459717e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_45_______________ (j_plasma_bootstrap_sauter_profile45)_ 6.02406531602727773e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_46_______________ (j_plasma_bootstrap_sauter_profile46)_ 6.09980819749491347e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_47_______________ (j_plasma_bootstrap_sauter_profile47)_ 6.17500174808801457e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_48_______________ (j_plasma_bootstrap_sauter_profile48)_ 6.24966697723336911e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_49_______________ (j_plasma_bootstrap_sauter_profile49)_ 6.32382375268795513e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_50_______________ (j_plasma_bootstrap_sauter_profile50)_ 6.39749089046660520e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_51_______________ (j_plasma_bootstrap_sauter_profile51)_ 6.47068623556027451e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_52_______________ (j_plasma_bootstrap_sauter_profile52)_ 6.54342673458617573e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_53_______________ (j_plasma_bootstrap_sauter_profile53)_ 6.61572850125137920e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_54_______________ (j_plasma_bootstrap_sauter_profile54)_ 6.68760687557081983e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_55_______________ (j_plasma_bootstrap_sauter_profile55)_ 6.75907647746535949e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_56_______________ (j_plasma_bootstrap_sauter_profile56)_ 6.83015125540335575e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_57_______________ (j_plasma_bootstrap_sauter_profile57)_ 6.90084453066280694e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_58_______________ (j_plasma_bootstrap_sauter_profile58)_ 6.97116903765996976e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_59_______________ (j_plasma_bootstrap_sauter_profile59)_ 7.04113696069625876e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_60_______________ (j_plasma_bootstrap_sauter_profile60)_ 7.11075996767206088e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_61_______________ (j_plasma_bootstrap_sauter_profile61)_ 7.18004924090845161e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_62_______________ (j_plasma_bootstrap_sauter_profile62)_ 7.24901550544324564e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_63_______________ (j_plasma_bootstrap_sauter_profile63)_ 7.31766905502255249e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_64_______________ (j_plasma_bootstrap_sauter_profile64)_ 7.38601977613473282e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_65_______________ (j_plasma_bootstrap_sauter_profile65)_ 7.45407717002343124e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_66_______________ (j_plasma_bootstrap_sauter_profile66)_ 7.52185037314719084e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_67_______________ (j_plasma_bootstrap_sauter_profile67)_ 7.58934817604580167e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_68_______________ (j_plasma_bootstrap_sauter_profile68)_ 7.65657904082202149e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_69_______________ (j_plasma_bootstrap_sauter_profile69)_ 7.72355111739097920e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_70_______________ (j_plasma_bootstrap_sauter_profile70)_ 7.79027225853131240e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_71_______________ (j_plasma_bootstrap_sauter_profile71)_ 7.85675003390686616e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_72_______________ (j_plasma_bootstrap_sauter_profile72)_ 7.92299174313590192e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_73_______________ (j_plasma_bootstrap_sauter_profile73)_ 7.98900442796791467e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_74_______________ (j_plasma_bootstrap_sauter_profile74)_ 8.05479488362072589e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_75_______________ (j_plasma_bootstrap_sauter_profile75)_ 8.12036966946432076e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_76_______________ (j_plasma_bootstrap_sauter_profile76)_ 8.18573511890748341e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_77_______________ (j_plasma_bootstrap_sauter_profile77)_ 8.25089734876283619e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_78_______________ (j_plasma_bootstrap_sauter_profile78)_ 8.31586226792902016e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_79_______________ (j_plasma_bootstrap_sauter_profile79)_ 8.38063558565105341e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_80_______________ (j_plasma_bootstrap_sauter_profile80)_ 8.44522281917030487e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_81_______________ (j_plasma_bootstrap_sauter_profile81)_ 8.50962930103071558e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_82_______________ (j_plasma_bootstrap_sauter_profile82)_ 8.57386018584426783e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_83_______________ (j_plasma_bootstrap_sauter_profile83)_ 8.63792045678500726e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_84_______________ (j_plasma_bootstrap_sauter_profile84)_ 8.70181493159701349e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_85_______________ (j_plasma_bootstrap_sauter_profile85)_ 8.76554826838324807e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_86_______________ (j_plasma_bootstrap_sauter_profile86)_ 8.82912497095787839e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_87_______________ (j_plasma_bootstrap_sauter_profile87)_ 8.89254939400096337e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_88_______________ (j_plasma_bootstrap_sauter_profile88)_ 8.95582574790422514e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_89_______________ (j_plasma_bootstrap_sauter_profile89)_ 9.01895810333781410e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_90_______________ (j_plasma_bootstrap_sauter_profile90)_ 9.08195039560647710e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_91_______________ (j_plasma_bootstrap_sauter_profile91)_ 9.14480642877567007e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_92_______________ (j_plasma_bootstrap_sauter_profile92)_ 9.20752987959959282e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_93_______________ (j_plasma_bootstrap_sauter_profile93)_ 9.27012430121183279e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_94_______________ (j_plasma_bootstrap_sauter_profile94)_ 9.33259312668202183e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_95_______________ (j_plasma_bootstrap_sauter_profile95)_ 9.39493967236831959e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_96_______________ (j_plasma_bootstrap_sauter_profile96)_ 9.45716714112470945e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_97_______________ (j_plasma_bootstrap_sauter_profile97)_ 9.51927862533357838e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_98_______________ (j_plasma_bootstrap_sauter_profile98)_ 9.58127710983293655e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_99_______________ (j_plasma_bootstrap_sauter_profile99)_ 9.64316547465776239e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_100______________ (j_plasma_bootstrap_sauter_profile100)_ 9.70494649770782853e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_101______________ (j_plasma_bootstrap_sauter_profile101)_ 9.76662285725142865e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_102______________ (j_plasma_bootstrap_sauter_profile102)_ 9.82819713433354191e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_103______________ (j_plasma_bootstrap_sauter_profile103)_ 9.88967181509620859e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_104______________ (j_plasma_bootstrap_sauter_profile104)_ 9.95104929296179325e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_105______________ (j_plasma_bootstrap_sauter_profile105)_ 1.00123318707371262e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_106______________ (j_plasma_bootstrap_sauter_profile106)_ 1.00735217626440994e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_107______________ (j_plasma_bootstrap_sauter_profile107)_ 1.01346210962303579e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_108______________ (j_plasma_bootstrap_sauter_profile108)_ 1.01956319142401961e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_109______________ (j_plasma_bootstrap_sauter_profile109)_ 1.02565561763544320e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_110______________ (j_plasma_bootstrap_sauter_profile110)_ 1.03173957609226301e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_111______________ (j_plasma_bootstrap_sauter_profile111)_ 1.03781524665822988e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_112______________ (j_plasma_bootstrap_sauter_profile112)_ 1.04388280137998430e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_113______________ (j_plasma_bootstrap_sauter_profile113)_ 1.04994240464238028e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_114______________ (j_plasma_bootstrap_sauter_profile114)_ 1.05599421330648140e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_115______________ (j_plasma_bootstrap_sauter_profile115)_ 1.06203837685421764e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_116______________ (j_plasma_bootstrap_sauter_profile116)_ 1.06807503751617813e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_117______________ (j_plasma_bootstrap_sauter_profile117)_ 1.07410433040701799e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_118______________ (j_plasma_bootstrap_sauter_profile118)_ 1.08012638363936101e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_119______________ (j_plasma_bootstrap_sauter_profile119)_ 1.08614131845167765e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_120______________ (j_plasma_bootstrap_sauter_profile120)_ 1.09214924931705042e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_121______________ (j_plasma_bootstrap_sauter_profile121)_ 1.09815028405549499e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_122______________ (j_plasma_bootstrap_sauter_profile122)_ 1.10414452393860964e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_123______________ (j_plasma_bootstrap_sauter_profile123)_ 1.11013206379512572e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_124______________ (j_plasma_bootstrap_sauter_profile124)_ 1.11611299210591198e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_125______________ (j_plasma_bootstrap_sauter_profile125)_ 1.12208739109998904e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_126______________ (j_plasma_bootstrap_sauter_profile126)_ 1.12805533684965849e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_127______________ (j_plasma_bootstrap_sauter_profile127)_ 1.13401689935431423e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_128______________ (j_plasma_bootstrap_sauter_profile128)_ 1.13997214262985130e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_129______________ (j_plasma_bootstrap_sauter_profile129)_ 1.14592112479020274e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_130______________ (j_plasma_bootstrap_sauter_profile130)_ 1.15186389812623078e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_131______________ (j_plasma_bootstrap_sauter_profile131)_ 1.15780050918406894e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_132______________ (j_plasma_bootstrap_sauter_profile132)_ 1.16373099883996823e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_133______________ (j_plasma_bootstrap_sauter_profile133)_ 1.16965540237312569e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_134______________ (j_plasma_bootstrap_sauter_profile134)_ 1.17557374953416438e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_135______________ (j_plasma_bootstrap_sauter_profile135)_ 1.18148606461304720e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_136______________ (j_plasma_bootstrap_sauter_profile136)_ 1.18739236650665538e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_137______________ (j_plasma_bootstrap_sauter_profile137)_ 1.19329266877872433e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_138______________ (j_plasma_bootstrap_sauter_profile138)_ 1.19918697972581824e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_139______________ (j_plasma_bootstrap_sauter_profile139)_ 1.20507530243246278e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_140______________ (j_plasma_bootstrap_sauter_profile140)_ 1.21095763483194562e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_141______________ (j_plasma_bootstrap_sauter_profile141)_ 1.21683396976130243e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_142______________ (j_plasma_bootstrap_sauter_profile142)_ 1.22270429501529317e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_143______________ (j_plasma_bootstrap_sauter_profile143)_ 1.22856859340142153e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_144______________ (j_plasma_bootstrap_sauter_profile144)_ 1.23442684278683693e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_145______________ (j_plasma_bootstrap_sauter_profile145)_ 1.24027901615127819e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_146______________ (j_plasma_bootstrap_sauter_profile146)_ 1.24612508163585779e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_147______________ (j_plasma_bootstrap_sauter_profile147)_ 1.25196500258739063e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_148______________ (j_plasma_bootstrap_sauter_profile148)_ 1.25779873760539427e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_149______________ (j_plasma_bootstrap_sauter_profile149)_ 1.26362624058584843e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_150______________ (j_plasma_bootstrap_sauter_profile150)_ 1.26944746076674390e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_151______________ (j_plasma_bootstrap_sauter_profile151)_ 1.27526234276434756e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_152______________ (j_plasma_bootstrap_sauter_profile152)_ 1.28107082662021174e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_153______________ (j_plasma_bootstrap_sauter_profile153)_ 1.28687284783675772e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_154______________ (j_plasma_bootstrap_sauter_profile154)_ 1.29266833741761322e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_155______________ (j_plasma_bootstrap_sauter_profile155)_ 1.29845722190410699e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_156______________ (j_plasma_bootstrap_sauter_profile156)_ 1.30423942341401053e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_157______________ (j_plasma_bootstrap_sauter_profile157)_ 1.31001485967287910e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_158______________ (j_plasma_bootstrap_sauter_profile158)_ 1.31578344405438285e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_159______________ (j_plasma_bootstrap_sauter_profile159)_ 1.32154508561048307e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_160______________ (j_plasma_bootstrap_sauter_profile160)_ 1.32729968910487398e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_161______________ (j_plasma_bootstrap_sauter_profile161)_ 1.33304715504599648e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_162______________ (j_plasma_bootstrap_sauter_profile162)_ 1.33878737971914699e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_163______________ (j_plasma_bootstrap_sauter_profile163)_ 1.34452025521510164e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_164______________ (j_plasma_bootstrap_sauter_profile164)_ 1.35024566946111299e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_165______________ (j_plasma_bootstrap_sauter_profile165)_ 1.35596350625256717e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_166______________ (j_plasma_bootstrap_sauter_profile166)_ 1.36167364527675556e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_167______________ (j_plasma_bootstrap_sauter_profile167)_ 1.36737596214530990e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_168______________ (j_plasma_bootstrap_sauter_profile168)_ 1.37307032841774693e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_169______________ (j_plasma_bootstrap_sauter_profile169)_ 1.37875661163191224e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_170______________ (j_plasma_bootstrap_sauter_profile170)_ 1.38443467532766517e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_171______________ (j_plasma_bootstrap_sauter_profile171)_ 1.39010437907296524e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_172______________ (j_plasma_bootstrap_sauter_profile172)_ 1.39576557848842465e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_173______________ (j_plasma_bootstrap_sauter_profile173)_ 1.40141812527339149e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_174______________ (j_plasma_bootstrap_sauter_profile174)_ 1.40706186722841288e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_175______________ (j_plasma_bootstrap_sauter_profile175)_ 1.41269664827897650e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_176______________ (j_plasma_bootstrap_sauter_profile176)_ 1.41832230849935440e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_177______________ (j_plasma_bootstrap_sauter_profile177)_ 1.42393868413461256e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_178______________ (j_plasma_bootstrap_sauter_profile178)_ 1.42954560762173234e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_179______________ (j_plasma_bootstrap_sauter_profile179)_ 1.43514290761282522e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_180______________ (j_plasma_bootstrap_sauter_profile180)_ 1.44073040899710264e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_181______________ (j_plasma_bootstrap_sauter_profile181)_ 1.44630793291834474e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_182______________ (j_plasma_bootstrap_sauter_profile182)_ 1.45187529680001317e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_183______________ (j_plasma_bootstrap_sauter_profile183)_ 1.45743231436056580e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_184______________ (j_plasma_bootstrap_sauter_profile184)_ 1.46297879563747440e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_185______________ (j_plasma_bootstrap_sauter_profile185)_ 1.46851454700439645e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_186______________ (j_plasma_bootstrap_sauter_profile186)_ 1.47403937119071692e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_187______________ (j_plasma_bootstrap_sauter_profile187)_ 1.47955306729937060e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_188______________ (j_plasma_bootstrap_sauter_profile188)_ 1.48505543082815479e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_189______________ (j_plasma_bootstrap_sauter_profile189)_ 1.49054625368521694e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_190______________ (j_plasma_bootstrap_sauter_profile190)_ 1.49602532420701202e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_191______________ (j_plasma_bootstrap_sauter_profile191)_ 1.50149242717672896e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_192______________ (j_plasma_bootstrap_sauter_profile192)_ 1.50694734384356125e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_193______________ (j_plasma_bootstrap_sauter_profile193)_ 1.51238985193520726e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_194______________ (j_plasma_bootstrap_sauter_profile194)_ 1.51781972567859862e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_195______________ (j_plasma_bootstrap_sauter_profile195)_ 1.52323673581386771e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_196______________ (j_plasma_bootstrap_sauter_profile196)_ 1.52864064961406431e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_197______________ (j_plasma_bootstrap_sauter_profile197)_ 1.53403123089717614e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_198______________ (j_plasma_bootstrap_sauter_profile198)_ 1.53940824004392460e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_199______________ (j_plasma_bootstrap_sauter_profile199)_ 1.54477143401428009e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_200______________ (j_plasma_bootstrap_sauter_profile200)_ 1.55012056636221561e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_201______________ (j_plasma_bootstrap_sauter_profile201)_ 1.55545538724970102e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_202______________ (j_plasma_bootstrap_sauter_profile202)_ 1.56077564346334839e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_203______________ (j_plasma_bootstrap_sauter_profile203)_ 1.56608107842917991e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_204______________ (j_plasma_bootstrap_sauter_profile204)_ 1.57137143222620798e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_205______________ (j_plasma_bootstrap_sauter_profile205)_ 1.57664644160184427e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_206______________ (j_plasma_bootstrap_sauter_profile206)_ 1.58190583998641581e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_207______________ (j_plasma_bootstrap_sauter_profile207)_ 1.58714935750750592e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_208______________ (j_plasma_bootstrap_sauter_profile208)_ 1.59237672100149706e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_209______________ (j_plasma_bootstrap_sauter_profile209)_ 1.59758765403150697e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_210______________ (j_plasma_bootstrap_sauter_profile210)_ 1.60278187689709303e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_211______________ (j_plasma_bootstrap_sauter_profile211)_ 1.60795910665157222e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_212______________ (j_plasma_bootstrap_sauter_profile212)_ 1.61311905711262632e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_213______________ (j_plasma_bootstrap_sauter_profile213)_ 1.61826143887588318e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_214______________ (j_plasma_bootstrap_sauter_profile214)_ 1.62338595932971890e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_215______________ (j_plasma_bootstrap_sauter_profile215)_ 1.62849232266754319e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_216______________ (j_plasma_bootstrap_sauter_profile216)_ 1.63358022989885241e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_217______________ (j_plasma_bootstrap_sauter_profile217)_ 1.63864937886459025e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_218______________ (j_plasma_bootstrap_sauter_profile218)_ 1.64369946424953319e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_219______________ (j_plasma_bootstrap_sauter_profile219)_ 1.64873017759273149e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_220______________ (j_plasma_bootstrap_sauter_profile220)_ 1.65374120730173920e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_221______________ (j_plasma_bootstrap_sauter_profile221)_ 1.65873223866445245e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_222______________ (j_plasma_bootstrap_sauter_profile222)_ 1.66370295386204438e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_223______________ (j_plasma_bootstrap_sauter_profile223)_ 1.66865303197867994e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_224______________ (j_plasma_bootstrap_sauter_profile224)_ 1.67358214901678060e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_225______________ (j_plasma_bootstrap_sauter_profile225)_ 1.67848997790616530e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_226______________ (j_plasma_bootstrap_sauter_profile226)_ 1.68337618851762672e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_227______________ (j_plasma_bootstrap_sauter_profile227)_ 1.68824044767299347e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_228______________ (j_plasma_bootstrap_sauter_profile228)_ 1.69308241915907129e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_229______________ (j_plasma_bootstrap_sauter_profile229)_ 1.69790176373590162e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_230______________ (j_plasma_bootstrap_sauter_profile230)_ 1.70269813915243460e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_231______________ (j_plasma_bootstrap_sauter_profile231)_ 1.70747120015251741e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_232______________ (j_plasma_bootstrap_sauter_profile232)_ 1.71222059849081503e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_233______________ (j_plasma_bootstrap_sauter_profile233)_ 1.71694598294095340e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_234______________ (j_plasma_bootstrap_sauter_profile234)_ 1.72164699930886913e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_235______________ (j_plasma_bootstrap_sauter_profile235)_ 1.72632329044146376e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_236______________ (j_plasma_bootstrap_sauter_profile236)_ 1.73097449623834196e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_237______________ (j_plasma_bootstrap_sauter_profile237)_ 1.73560025366371410e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_238______________ (j_plasma_bootstrap_sauter_profile238)_ 1.74020019675537391e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_239______________ (j_plasma_bootstrap_sauter_profile239)_ 1.74477395663514180e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_240______________ (j_plasma_bootstrap_sauter_profile240)_ 1.74932116152164439e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_241______________ (j_plasma_bootstrap_sauter_profile241)_ 1.75384143673792132e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_242______________ (j_plasma_bootstrap_sauter_profile242)_ 1.75833440472365357e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_243______________ (j_plasma_bootstrap_sauter_profile243)_ 1.76279968504380056e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_244______________ (j_plasma_bootstrap_sauter_profile244)_ 1.76723689439995389e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_245______________ (j_plasma_bootstrap_sauter_profile245)_ 1.77164564664031612e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_246______________ (j_plasma_bootstrap_sauter_profile246)_ 1.77602555276841274e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_247______________ (j_plasma_bootstrap_sauter_profile247)_ 1.78037622095425148e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_248______________ (j_plasma_bootstrap_sauter_profile248)_ 1.78469725654200243e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_249______________ (j_plasma_bootstrap_sauter_profile249)_ 1.78898826206292259e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_250______________ (j_plasma_bootstrap_sauter_profile250)_ 1.79324883724106767e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_251______________ (j_plasma_bootstrap_sauter_profile251)_ 1.79747857900557225e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_252______________ (j_plasma_bootstrap_sauter_profile252)_ 1.80167708149832062e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_253______________ (j_plasma_bootstrap_sauter_profile253)_ 1.80584393608337676e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_254______________ (j_plasma_bootstrap_sauter_profile254)_ 1.80997873135636823e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_255______________ (j_plasma_bootstrap_sauter_profile255)_ 1.81408105315290770e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_256______________ (j_plasma_bootstrap_sauter_profile256)_ 1.81815048455803597e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_257______________ (j_plasma_bootstrap_sauter_profile257)_ 1.82218660591344611e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_258______________ (j_plasma_bootstrap_sauter_profile258)_ 1.82618899482795503e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_259______________ (j_plasma_bootstrap_sauter_profile259)_ 1.83015722618435335e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_260______________ (j_plasma_bootstrap_sauter_profile260)_ 1.83409087214816682e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_261______________ (j_plasma_bootstrap_sauter_profile261)_ 1.83798950217548467e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_262______________ (j_plasma_bootstrap_sauter_profile262)_ 1.84185268302124110e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_263______________ (j_plasma_bootstrap_sauter_profile263)_ 1.84567997874610301e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_264______________ (j_plasma_bootstrap_sauter_profile264)_ 1.84947095072658441e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_265______________ (j_plasma_bootstrap_sauter_profile265)_ 1.85322515765810094e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_266______________ (j_plasma_bootstrap_sauter_profile266)_ 1.85694215556593001e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_267______________ (j_plasma_bootstrap_sauter_profile267)_ 1.86062149781067448e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_268______________ (j_plasma_bootstrap_sauter_profile268)_ 1.86426273509624822e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_269______________ (j_plasma_bootstrap_sauter_profile269)_ 1.86786541547449364e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_270______________ (j_plasma_bootstrap_sauter_profile270)_ 1.87142908435389807e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_271______________ (j_plasma_bootstrap_sauter_profile271)_ 1.87495328450329078e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_272______________ (j_plasma_bootstrap_sauter_profile272)_ 1.87843755606077350e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_273______________ (j_plasma_bootstrap_sauter_profile273)_ 1.88188143653730658e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_274______________ (j_plasma_bootstrap_sauter_profile274)_ 1.88528446082312206e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_275______________ (j_plasma_bootstrap_sauter_profile275)_ 1.88864616119256883e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_276______________ (j_plasma_bootstrap_sauter_profile276)_ 1.89196606730925967e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_277______________ (j_plasma_bootstrap_sauter_profile277)_ 1.89524370623088325e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_278______________ (j_plasma_bootstrap_sauter_profile278)_ 1.89847860241367365e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_279______________ (j_plasma_bootstrap_sauter_profile279)_ 1.90167027771676425e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_280______________ (j_plasma_bootstrap_sauter_profile280)_ 1.90481825140462490e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_281______________ (j_plasma_bootstrap_sauter_profile281)_ 1.90792204015276016e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_282______________ (j_plasma_bootstrap_sauter_profile282)_ 1.91098115804879548e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_283______________ (j_plasma_bootstrap_sauter_profile283)_ 1.91399511659678305e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_284______________ (j_plasma_bootstrap_sauter_profile284)_ 1.91696342471843789e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_285______________ (j_plasma_bootstrap_sauter_profile285)_ 1.91988558875594230e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_286______________ (j_plasma_bootstrap_sauter_profile286)_ 1.92276111247362191e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_287______________ (j_plasma_bootstrap_sauter_profile287)_ 1.92558949705832143e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_288______________ (j_plasma_bootstrap_sauter_profile288)_ 1.92837024112116982e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_289______________ (j_plasma_bootstrap_sauter_profile289)_ 1.93110284069673769e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_290______________ (j_plasma_bootstrap_sauter_profile290)_ 1.93378678924430336e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_291______________ (j_plasma_bootstrap_sauter_profile291)_ 1.93642157764621399e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_292______________ (j_plasma_bootstrap_sauter_profile292)_ 1.93900669420658494e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_293______________ (j_plasma_bootstrap_sauter_profile293)_ 1.94154162465033936e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_294______________ (j_plasma_bootstrap_sauter_profile294)_ 1.94402585211998143e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_295______________ (j_plasma_bootstrap_sauter_profile295)_ 1.94645885717359430e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_296______________ (j_plasma_bootstrap_sauter_profile296)_ 1.94884011778065964e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_297______________ (j_plasma_bootstrap_sauter_profile297)_ 1.95116910931814316e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_298______________ (j_plasma_bootstrap_sauter_profile298)_ 1.95344530456615641e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_299______________ (j_plasma_bootstrap_sauter_profile299)_ 1.95566817370130681e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_300______________ (j_plasma_bootstrap_sauter_profile300)_ 1.95783718429163448e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_301______________ (j_plasma_bootstrap_sauter_profile301)_ 1.95995180128874053e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_302______________ (j_plasma_bootstrap_sauter_profile302)_ 1.96201148702029896e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_303______________ (j_plasma_bootstrap_sauter_profile303)_ 1.96401570118170173e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_304______________ (j_plasma_bootstrap_sauter_profile304)_ 1.96596390082608646e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_305______________ (j_plasma_bootstrap_sauter_profile305)_ 1.96785554035398382e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_306______________ (j_plasma_bootstrap_sauter_profile306)_ 1.96969007150197082e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_307______________ (j_plasma_bootstrap_sauter_profile307)_ 1.97146694333081396e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_308______________ (j_plasma_bootstrap_sauter_profile308)_ 1.97318560221117019e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_309______________ (j_plasma_bootstrap_sauter_profile309)_ 1.97484549180911301e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_310______________ (j_plasma_bootstrap_sauter_profile310)_ 1.97644605307246704e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_311______________ (j_plasma_bootstrap_sauter_profile311)_ 1.97798672421147872e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_312______________ (j_plasma_bootstrap_sauter_profile312)_ 1.97946694068159792e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_313______________ (j_plasma_bootstrap_sauter_profile313)_ 1.98088613516500511e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_314______________ (j_plasma_bootstrap_sauter_profile314)_ 1.98224373754997534e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_315______________ (j_plasma_bootstrap_sauter_profile315)_ 1.98353917490706808e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_316______________ (j_plasma_bootstrap_sauter_profile316)_ 1.98477187146752811e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_317______________ (j_plasma_bootstrap_sauter_profile317)_ 1.98594124859741336e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_318______________ (j_plasma_bootstrap_sauter_profile318)_ 1.98704672477137821e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_319______________ (j_plasma_bootstrap_sauter_profile319)_ 1.98808771554359584e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_320______________ (j_plasma_bootstrap_sauter_profile320)_ 1.98906363351852400e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_321______________ (j_plasma_bootstrap_sauter_profile321)_ 1.98997388831827004e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_322______________ (j_plasma_bootstrap_sauter_profile322)_ 1.99081788654966396e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_323______________ (j_plasma_bootstrap_sauter_profile323)_ 1.99159503176762752e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_324______________ (j_plasma_bootstrap_sauter_profile324)_ 1.99230472443737643e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_325______________ (j_plasma_bootstrap_sauter_profile325)_ 1.99294636189498822e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_326______________ (j_plasma_bootstrap_sauter_profile326)_ 1.99351933830396069e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_327______________ (j_plasma_bootstrap_sauter_profile327)_ 1.99402304461112828e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_328______________ (j_plasma_bootstrap_sauter_profile328)_ 1.99445686849909340e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_329______________ (j_plasma_bootstrap_sauter_profile329)_ 1.99482019433691254e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_330______________ (j_plasma_bootstrap_sauter_profile330)_ 1.99511240312594018e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_331______________ (j_plasma_bootstrap_sauter_profile331)_ 1.99533287244549836e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_332______________ (j_plasma_bootstrap_sauter_profile332)_ 1.99548097639406886e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_333______________ (j_plasma_bootstrap_sauter_profile333)_ 1.99555608552705875e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_334______________ (j_plasma_bootstrap_sauter_profile334)_ 1.99555756679192738e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_335______________ (j_plasma_bootstrap_sauter_profile335)_ 1.99548478345990763e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_336______________ (j_plasma_bootstrap_sauter_profile336)_ 1.99533709505292791e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_337______________ (j_plasma_bootstrap_sauter_profile337)_ 1.99511385726895503e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_338______________ (j_plasma_bootstrap_sauter_profile338)_ 1.99481442190082482e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_339______________ (j_plasma_bootstrap_sauter_profile339)_ 1.99443813675180834e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_340______________ (j_plasma_bootstrap_sauter_profile340)_ 1.99398434554784559e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_341______________ (j_plasma_bootstrap_sauter_profile341)_ 1.99345238784384157e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_342______________ (j_plasma_bootstrap_sauter_profile342)_ 1.99284159892560914e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_343______________ (j_plasma_bootstrap_sauter_profile343)_ 1.99215130970563070e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_344______________ (j_plasma_bootstrap_sauter_profile344)_ 1.99138084661659406e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_345______________ (j_plasma_bootstrap_sauter_profile345)_ 1.99052953149474517e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_346______________ (j_plasma_bootstrap_sauter_profile346)_ 1.98959668146141426e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_347______________ (j_plasma_bootstrap_sauter_profile347)_ 1.98858160879583826e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_348______________ (j_plasma_bootstrap_sauter_profile348)_ 1.98748362080226449e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_349______________ (j_plasma_bootstrap_sauter_profile349)_ 1.98630201967059664e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_350______________ (j_plasma_bootstrap_sauter_profile350)_ 1.98503610232926003e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_351______________ (j_plasma_bootstrap_sauter_profile351)_ 1.98368516029046470e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_352______________ (j_plasma_bootstrap_sauter_profile352)_ 1.98224847948722803e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_353______________ (j_plasma_bootstrap_sauter_profile353)_ 1.98072534010299190e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_354______________ (j_plasma_bootstrap_sauter_profile354)_ 1.97911501639177382e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_355______________ (j_plasma_bootstrap_sauter_profile355)_ 1.97741677648796584e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_356______________ (j_plasma_bootstrap_sauter_profile356)_ 1.97562988220817788e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_357______________ (j_plasma_bootstrap_sauter_profile357)_ 1.97375358884175890e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_358______________ (j_plasma_bootstrap_sauter_profile358)_ 1.97178714492932137e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_359______________ (j_plasma_bootstrap_sauter_profile359)_ 1.96972979203208350e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_360______________ (j_plasma_bootstrap_sauter_profile360)_ 1.96758076448649837e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_361______________ (j_plasma_bootstrap_sauter_profile361)_ 1.96533928914830612e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_362______________ (j_plasma_bootstrap_sauter_profile362)_ 1.96300458512118610e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_363______________ (j_plasma_bootstrap_sauter_profile363)_ 1.96057586347179109e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_364______________ (j_plasma_bootstrap_sauter_profile364)_ 1.95805232692967664e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_365______________ (j_plasma_bootstrap_sauter_profile365)_ 1.95543316957140720e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_366______________ (j_plasma_bootstrap_sauter_profile366)_ 1.95271757648667379e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_367______________ (j_plasma_bootstrap_sauter_profile367)_ 1.94990472342766152e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_368______________ (j_plasma_bootstrap_sauter_profile368)_ 1.94699377643888525e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_369______________ (j_plasma_bootstrap_sauter_profile369)_ 1.94398389146647474e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_370______________ (j_plasma_bootstrap_sauter_profile370)_ 1.94087421394647594e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_371______________ (j_plasma_bootstrap_sauter_profile371)_ 1.93766387837146642e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_372______________ (j_plasma_bootstrap_sauter_profile372)_ 1.93435200783098204e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_373______________ (j_plasma_bootstrap_sauter_profile373)_ 1.93093771352822223e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_374______________ (j_plasma_bootstrap_sauter_profile374)_ 1.92742009426956763e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_375______________ (j_plasma_bootstrap_sauter_profile375)_ 1.92379823592466855e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_376______________ (j_plasma_bootstrap_sauter_profile376)_ 1.92007121085646213e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_377______________ (j_plasma_bootstrap_sauter_profile377)_ 1.91623807731789071e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_378______________ (j_plasma_bootstrap_sauter_profile378)_ 1.91229787881613302e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_379______________ (j_plasma_bootstrap_sauter_profile379)_ 1.90824964343738684e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_380______________ (j_plasma_bootstrap_sauter_profile380)_ 1.90409238313415262e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_381______________ (j_plasma_bootstrap_sauter_profile381)_ 1.89982509297070268e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_382______________ (j_plasma_bootstrap_sauter_profile382)_ 1.89544675032305619e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_383______________ (j_plasma_bootstrap_sauter_profile383)_ 1.89095631403200794e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_384______________ (j_plasma_bootstrap_sauter_profile384)_ 1.88635272350547748e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_385______________ (j_plasma_bootstrap_sauter_profile385)_ 1.88163489776662347e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_386______________ (j_plasma_bootstrap_sauter_profile386)_ 1.87680173444323707e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_387______________ (j_plasma_bootstrap_sauter_profile387)_ 1.87185210869554954e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_388______________ (j_plasma_bootstrap_sauter_profile388)_ 1.86678487207801954e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_389______________ (j_plasma_bootstrap_sauter_profile389)_ 1.86159885132852069e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_390______________ (j_plasma_bootstrap_sauter_profile390)_ 1.85629284708274674e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_391______________ (j_plasma_bootstrap_sauter_profile391)_ 1.85086563250466977e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_392______________ (j_plasma_bootstrap_sauter_profile392)_ 1.84531595183048630e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_393______________ (j_plasma_bootstrap_sauter_profile393)_ 1.83964251881749165e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_394______________ (j_plasma_bootstrap_sauter_profile394)_ 1.83384401508967072e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_395______________ (j_plasma_bootstrap_sauter_profile395)_ 1.82791908837570780e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_396______________ (j_plasma_bootstrap_sauter_profile396)_ 1.82186635062678572e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_397______________ (j_plasma_bootstrap_sauter_profile397)_ 1.81568437600726116e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_398______________ (j_plasma_bootstrap_sauter_profile398)_ 1.80937169874831743e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_399______________ (j_plasma_bootstrap_sauter_profile399)_ 1.80292681085103017e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_400______________ (j_plasma_bootstrap_sauter_profile400)_ 1.79634815962980530e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_401______________ (j_plasma_bootstrap_sauter_profile401)_ 1.78963414507972047e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_402______________ (j_plasma_bootstrap_sauter_profile402)_ 1.78278311705544591e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_403______________ (j_plasma_bootstrap_sauter_profile403)_ 1.77579337224453979e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_404______________ (j_plasma_bootstrap_sauter_profile404)_ 1.76866315091684810e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_405______________ (j_plasma_bootstrap_sauter_profile405)_ 1.76139063343146234e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_406______________ (j_plasma_bootstrap_sauter_profile406)_ 1.75397393647829449e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_407______________ (j_plasma_bootstrap_sauter_profile407)_ 1.74641110903177643e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_408______________ (j_plasma_bootstrap_sauter_profile408)_ 1.73870012798877433e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_409______________ (j_plasma_bootstrap_sauter_profile409)_ 1.73083889346227836e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_410______________ (j_plasma_bootstrap_sauter_profile410)_ 1.72282522369675920e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_411______________ (j_plasma_bootstrap_sauter_profile411)_ 1.71465684957086836e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_412______________ (j_plasma_bootstrap_sauter_profile412)_ 1.70633140864537563e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_413______________ (j_plasma_bootstrap_sauter_profile413)_ 1.69784643871026288e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_414______________ (j_plasma_bootstrap_sauter_profile414)_ 1.68919937078344199e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_415______________ (j_plasma_bootstrap_sauter_profile415)_ 1.68038752150064305e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_416______________ (j_plasma_bootstrap_sauter_profile416)_ 1.67140808483486471e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_417______________ (j_plasma_bootstrap_sauter_profile417)_ 1.66225812307297339e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_418______________ (j_plasma_bootstrap_sauter_profile418)_ 1.65293455696831137e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_419______________ (j_plasma_bootstrap_sauter_profile419)_ 1.64343415497826645e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_420______________ (j_plasma_bootstrap_sauter_profile420)_ 1.63375352148247126e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_421______________ (j_plasma_bootstrap_sauter_profile421)_ 1.62388908386418509e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_422______________ (j_plasma_bootstrap_sauter_profile422)_ 1.61383707832134387e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_423______________ (j_plasma_bootstrap_sauter_profile423)_ 1.60359353425353474e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_424______________ (j_plasma_bootstrap_sauter_profile424)_ 1.59315425705039117e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_425______________ (j_plasma_bootstrap_sauter_profile425)_ 1.58251480908066529e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_426______________ (j_plasma_bootstrap_sauter_profile426)_ 1.57167048864952463e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_427______________ (j_plasma_bootstrap_sauter_profile427)_ 1.56061630666052399e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_428______________ (j_plasma_bootstrap_sauter_profile428)_ 1.54934696066920180e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_429______________ (j_plasma_bootstrap_sauter_profile429)_ 1.53785680597214261e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_430______________ (j_plasma_bootstrap_sauter_profile430)_ 1.52613982331260340e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_431______________ (j_plasma_bootstrap_sauter_profile431)_ 1.51418958271183918e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_432______________ (j_plasma_bootstrap_sauter_profile432)_ 1.50199920285175904e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_433______________ (j_plasma_bootstrap_sauter_profile433)_ 1.48956130533001531e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_434______________ (j_plasma_bootstrap_sauter_profile434)_ 1.47686796298392321e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_435______________ (j_plasma_bootstrap_sauter_profile435)_ 1.46391064132664149e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_436______________ (j_plasma_bootstrap_sauter_profile436)_ 1.45068013195236883e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_437______________ (j_plasma_bootstrap_sauter_profile437)_ 1.43716647653723601e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_438______________ (j_plasma_bootstrap_sauter_profile438)_ 1.42335887977749720e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_439______________ (j_plasma_bootstrap_sauter_profile439)_ 1.40924560924969614e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_440______________ (j_plasma_bootstrap_sauter_profile440)_ 1.39481387973112112e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_441______________ (j_plasma_bootstrap_sauter_profile441)_ 1.38004971895552648e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_442______________ (j_plasma_bootstrap_sauter_profile442)_ 1.36493781105653063e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_443______________ (j_plasma_bootstrap_sauter_profile443)_ 1.34946131302829541e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_444______________ (j_plasma_bootstrap_sauter_profile444)_ 1.33360163833573606e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_445______________ (j_plasma_bootstrap_sauter_profile445)_ 1.31733820023922541e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_446______________ (j_plasma_bootstrap_sauter_profile446)_ 1.30064810533149022e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_447______________ (j_plasma_bootstrap_sauter_profile447)_ 1.28350578502233155e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_448______________ (j_plasma_bootstrap_sauter_profile448)_ 1.26588254897897496e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_449______________ (j_plasma_bootstrap_sauter_profile449)_ 1.24774603943032445e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_450______________ (j_plasma_bootstrap_sauter_profile450)_ 1.22905955817042370e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_451______________ (j_plasma_bootstrap_sauter_profile451)_ 1.20978122814520451e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_452______________ (j_plasma_bootstrap_sauter_profile452)_ 1.18986293726505915e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_453______________ (j_plasma_bootstrap_sauter_profile453)_ 1.16924899133089813e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_454______________ (j_plasma_bootstrap_sauter_profile454)_ 1.14787437210388307e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_455______________ (j_plasma_bootstrap_sauter_profile455)_ 1.12566244961912467e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_456______________ (j_plasma_bootstrap_sauter_profile456)_ 1.10252192463849206e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_457______________ (j_plasma_bootstrap_sauter_profile457)_ 1.07834265962330319e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_458______________ (j_plasma_bootstrap_sauter_profile458)_ 1.05298986166468239e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_459______________ (j_plasma_bootstrap_sauter_profile459)_ 1.02629574490640138e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_460______________ (j_plasma_bootstrap_sauter_profile460)_ 9.98047194919484027e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_461______________ (j_plasma_bootstrap_sauter_profile461)_ 9.67966808386318153e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_462______________ (j_plasma_bootstrap_sauter_profile462)_ 9.35682354892153526e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_463______________ (j_plasma_bootstrap_sauter_profile463)_ 9.00674606993382768e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_464______________ (j_plasma_bootstrap_sauter_profile464)_ 8.62181099320568901e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_465______________ (j_plasma_bootstrap_sauter_profile465)_ 8.18998866120701714e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_466______________ (j_plasma_bootstrap_sauter_profile466)_ 7.69011780499484594e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_467______________ (j_plasma_bootstrap_sauter_profile467)_ 7.07709919789032283e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_468______________ (j_plasma_bootstrap_sauter_profile468)_ 6.17928961893871456e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_469______________ (j_plasma_bootstrap_sauter_profile469)_ 3.05484217551151058e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_470______________ (j_plasma_bootstrap_sauter_profile470)_ 5.37309128126560245e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_471______________ (j_plasma_bootstrap_sauter_profile471)_ 5.25767115690207342e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_472______________ (j_plasma_bootstrap_sauter_profile472)_ 5.14179177756871912e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_473______________ (j_plasma_bootstrap_sauter_profile473)_ 5.02544049366062274e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_474______________ (j_plasma_bootstrap_sauter_profile474)_ 4.90860203057311475e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_475______________ (j_plasma_bootstrap_sauter_profile475)_ 4.79125779464053106e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_476______________ (j_plasma_bootstrap_sauter_profile476)_ 4.67338496632923663e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_477______________ (j_plasma_bootstrap_sauter_profile477)_ 4.55495530576171936e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_478______________ (j_plasma_bootstrap_sauter_profile478)_ 4.43593356564545771e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_479______________ (j_plasma_bootstrap_sauter_profile479)_ 4.31627536311755015e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_480______________ (j_plasma_bootstrap_sauter_profile480)_ 4.19592429804655840e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_481______________ (j_plasma_bootstrap_sauter_profile481)_ 4.07480801022332278e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_482______________ (j_plasma_bootstrap_sauter_profile482)_ 3.95283272464176582e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_483______________ (j_plasma_bootstrap_sauter_profile483)_ 3.82987561537642323e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_484______________ (j_plasma_bootstrap_sauter_profile484)_ 3.70577397981705144e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_485______________ (j_plasma_bootstrap_sauter_profile485)_ 3.58030968231162289e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_486______________ (j_plasma_bootstrap_sauter_profile486)_ 3.45318647521039122e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_487______________ (j_plasma_bootstrap_sauter_profile487)_ 3.32399642351045273e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_488______________ (j_plasma_bootstrap_sauter_profile488)_ 3.19216937945660786e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_489______________ (j_plasma_bootstrap_sauter_profile489)_ 3.05689563546367630e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_490______________ (j_plasma_bootstrap_sauter_profile490)_ 2.91700541682107549e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_491______________ (j_plasma_bootstrap_sauter_profile491)_ 2.77077789788838010e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_492______________ (j_plasma_bootstrap_sauter_profile492)_ 2.61563419917346997e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_493______________ (j_plasma_bootstrap_sauter_profile493)_ 2.44764141368236160e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_494______________ (j_plasma_bootstrap_sauter_profile494)_ 2.26072995517659932e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_495______________ (j_plasma_bootstrap_sauter_profile495)_ 2.04560930992909358e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_496______________ (j_plasma_bootstrap_sauter_profile496)_ 1.78923702770872653e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_497______________ (j_plasma_bootstrap_sauter_profile497)_ 1.48123047425760247e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_498______________ (j_plasma_bootstrap_sauter_profile498)_ 1.14009244151090199e+05 OP +Bootstrap_fraction_(Sakai_scaling)_______________________________________ (f_c_plasma_bootstrap_sakai)___ 3.73035161129384896e-01 OP +Bootstrap_fraction_(Aries_scaling)_______________________________________ (f_c_plasma_bootstrap_aries)___ 5.67946220974501870e-01 OP +Bootstrap_fraction_(Andrade_scaling)_____________________________________ (f_c_plasma_bootstrap_andrade)_ 3.59319533495350008e-01 OP +Bootstrap_fraction_(Hoang_scaling)_______________________________________ (f_c_plasma_bootstrap_hoang)___ 3.82088523520709822e-01 OP +Bootstrap_fraction_(Wong_scaling)________________________________________ (f_c_plasma_bootstrap_wong)____ 7.19056999579733458e-01 OP +Bootstrap_fraction_(GI_1_scaling)________________________________________ (bscf_gi_i)____________________ 8.17940604977133723e-01 OP +Bootstrap_fraction_(GI_2_scaling)________________________________________ (bscf_gi_ii)___________________ 9.05388950788549973e-01 OP +Bootstrap_fraction_(Sugiyama_L_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_l)_ 5.88487806614859110e-01 OP +Bootstrap_fraction_(Sugiyama_H_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_h)_ 6.06163691636279256e-01 OP +Pfirsch-Schlueter_fraction_(SCENE)_______________________________________ (f_c_plasma_pfirsch_schluter_scene)_ -3.46524163214243517e-03 OP +Bootstrap_fraction_(enforced)____________________________________________ (f_c_plasma_bootstrap.)________ 4.21875565216539794e-01 OP Diamagnetic_fraction_(enforced)__________________________________________ (f_c_plasma_diamagnetic.)______ 0.00000000000000000e+00 OP Pfirsch-Schlueter_fraction_(enforced)____________________________________ (f_c_plasma_pfirsch_schluter.)_ 0.00000000000000000e+00 OP Plasma_diamagnetic_current_fraction_scaling_law_used_____________________ (i_diamagnetic_current)________ 0 -Diamagnetic_fraction_(Hender)____________________________________________ (f_c_plasma_diamagnetic_hender)_ 1.35045315212155431e-02 OP -Diamagnetic_fraction_(SCENE)_____________________________________________ (f_c_plasma_diamagnetic_scene)_ 1.22319113831964848e-02 OP +Diamagnetic_fraction_(Hender)____________________________________________ (f_c_plasma_diamagnetic_hender)_ 1.37509588577080771e-02 OP +Diamagnetic_fraction_(SCENE)_____________________________________________ (f_c_plasma_diamagnetic_scene)_ 1.23763979702474023e-02 OP # Plasma Fuelling # Ratio_of_He_and_pellet_particle_confinement_times________________________ (tauratio)_____________________ 1.00000000000000000e+00 -Fuelling_rate_(nucleus-pairs/s)__________________________________________ (molflow_plasma_fuelling_required)_ 3.60776185302221534e+21 OP -Fuel_burn-up_rate_(reactions/s)__________________________________________ (rndfuel)______________________ 5.79316919431855997e+20 OP -Burn-up_fraction_________________________________________________________ (burnup)_______________________ 1.60575155188406704e-01 OP +Fuelling_rate_(nucleus-pairs/s)__________________________________________ (molflow_plasma_fuelling_required)_ 3.27617146143213617e+21 OP +Fuel_burn-up_rate_(reactions/s)__________________________________________ (rndfuel)______________________ 5.88001517663528616e+20 OP +Burn-up_fraction_________________________________________________________ (burnup)_______________________ 1.79478249104365051e-01 OP # Times # Initial_charge_time_for_CS_from_zero_current_(s)_________________________ (t_plant_pulse_coil_precharge)_ 5.00000000000000000e+02 -Plasma_current_ramp-up_time_(s)__________________________________________ (t_plant_pulse_plasma_current_ramp_up)_ 1.64508889633267444e+02 +Plasma_current_ramp-up_time_(s)__________________________________________ (t_plant_pulse_plasma_current_ramp_up)_ 1.67464957583690364e+02 Heating_time_(s)_________________________________________________________ (t_plant_pulse_fusion_ramp)____ 1.00000000000000000e+01 -Burn_time_(s)____________________________________________________________ (t_plant_pulse_burn)___________ 7.20004367071577053e+03 OP -Reset_time_to_zero_current_for_CS_(s)____________________________________ (t_plant_pulse_plasma_current_ramp_down)_ 1.64508889633267444e+02 +Burn_time_(s)____________________________________________________________ (t_plant_pulse_burn)___________ 7.20006324945712640e+03 OP +Reset_time_to_zero_current_for_CS_(s)____________________________________ (t_plant_pulse_plasma_current_ramp_down)_ 1.67464957583690364e+02 Time_between_pulses_(s)__________________________________________________ (t_plant_pulse_dwell)__________ 1.80000000000000000e+03 -Total_plant_cycle_time_(s)_______________________________________________ (t_plant_pulse_total)__________ 9.83906144998230593e+03 OP +Total_plant_cycle_time_(s)_______________________________________________ (t_plant_pulse_total)__________ 9.84499316462450588e+03 OP # Detailed Plasma # -Plasma_volume_averaged_electron_Debye_length_(⟨λ_D⟩)_(m)_________________ (len_plasma_debye_electron_vol_avg)_ 9.29453708426404622e-05 OP -Plasma_electron_Debye_length_at_point_0__________________________________ (len_plasma_debye_electron_profile0)_ 1.16363293726887794e-04 -Plasma_electron_Debye_length_at_point_1__________________________________ (len_plasma_debye_electron_profile1)_ 1.16363099808564635e-04 -Plasma_electron_Debye_length_at_point_2__________________________________ (len_plasma_debye_electron_profile2)_ 1.16362518051073930e-04 -Plasma_electron_Debye_length_at_point_3__________________________________ (len_plasma_debye_electron_profile3)_ 1.16361548446851945e-04 -Plasma_electron_Debye_length_at_point_4__________________________________ (len_plasma_debye_electron_profile4)_ 1.16360190983292173e-04 -Plasma_electron_Debye_length_at_point_5__________________________________ (len_plasma_debye_electron_profile5)_ 1.16358445642745104e-04 -Plasma_electron_Debye_length_at_point_6__________________________________ (len_plasma_debye_electron_profile6)_ 1.16356312402517682e-04 -Plasma_electron_Debye_length_at_point_7__________________________________ (len_plasma_debye_electron_profile7)_ 1.16353791234872735e-04 -Plasma_electron_Debye_length_at_point_8__________________________________ (len_plasma_debye_electron_profile8)_ 1.16350882107028219e-04 -Plasma_electron_Debye_length_at_point_9__________________________________ (len_plasma_debye_electron_profile9)_ 1.16347584981156373e-04 -Plasma_electron_Debye_length_at_point_10_________________________________ (len_plasma_debye_electron_profile10)_ 1.16343899814382775e-04 -Plasma_electron_Debye_length_at_point_11_________________________________ (len_plasma_debye_electron_profile11)_ 1.16339826558785092e-04 -Plasma_electron_Debye_length_at_point_12_________________________________ (len_plasma_debye_electron_profile12)_ 1.16335365161391864e-04 -Plasma_electron_Debye_length_at_point_13_________________________________ (len_plasma_debye_electron_profile13)_ 1.16330515564181197e-04 -Plasma_electron_Debye_length_at_point_14_________________________________ (len_plasma_debye_electron_profile14)_ 1.16325277704079074e-04 -Plasma_electron_Debye_length_at_point_15_________________________________ (len_plasma_debye_electron_profile15)_ 1.16319651512957850e-04 -Plasma_electron_Debye_length_at_point_16_________________________________ (len_plasma_debye_electron_profile16)_ 1.16313636917634365e-04 -Plasma_electron_Debye_length_at_point_17_________________________________ (len_plasma_debye_electron_profile17)_ 1.16307233839868038e-04 -Plasma_electron_Debye_length_at_point_18_________________________________ (len_plasma_debye_electron_profile18)_ 1.16300442196358734e-04 -Plasma_electron_Debye_length_at_point_19_________________________________ (len_plasma_debye_electron_profile19)_ 1.16293261898744790e-04 -Plasma_electron_Debye_length_at_point_20_________________________________ (len_plasma_debye_electron_profile20)_ 1.16285692853600463e-04 -Plasma_electron_Debye_length_at_point_21_________________________________ (len_plasma_debye_electron_profile21)_ 1.16277734962433590e-04 -Plasma_electron_Debye_length_at_point_22_________________________________ (len_plasma_debye_electron_profile22)_ 1.16269388121682953e-04 -Plasma_electron_Debye_length_at_point_23_________________________________ (len_plasma_debye_electron_profile23)_ 1.16260652222715630e-04 -Plasma_electron_Debye_length_at_point_24_________________________________ (len_plasma_debye_electron_profile24)_ 1.16251527151824073e-04 -Plasma_electron_Debye_length_at_point_25_________________________________ (len_plasma_debye_electron_profile25)_ 1.16242012790223215e-04 -Plasma_electron_Debye_length_at_point_26_________________________________ (len_plasma_debye_electron_profile26)_ 1.16232109014047268e-04 -Plasma_electron_Debye_length_at_point_27_________________________________ (len_plasma_debye_electron_profile27)_ 1.16221815694346538e-04 -Plasma_electron_Debye_length_at_point_28_________________________________ (len_plasma_debye_electron_profile28)_ 1.16211132697084050e-04 -Plasma_electron_Debye_length_at_point_29_________________________________ (len_plasma_debye_electron_profile29)_ 1.16200059883132096e-04 -Plasma_electron_Debye_length_at_point_30_________________________________ (len_plasma_debye_electron_profile30)_ 1.16188597108268489e-04 -Plasma_electron_Debye_length_at_point_31_________________________________ (len_plasma_debye_electron_profile31)_ 1.16176744223172950e-04 -Plasma_electron_Debye_length_at_point_32_________________________________ (len_plasma_debye_electron_profile32)_ 1.16164501073423077e-04 -Plasma_electron_Debye_length_at_point_33_________________________________ (len_plasma_debye_electron_profile33)_ 1.16151867499490475e-04 -Plasma_electron_Debye_length_at_point_34_________________________________ (len_plasma_debye_electron_profile34)_ 1.16138843336736523e-04 -Plasma_electron_Debye_length_at_point_35_________________________________ (len_plasma_debye_electron_profile35)_ 1.16125428415408147e-04 -Plasma_electron_Debye_length_at_point_36_________________________________ (len_plasma_debye_electron_profile36)_ 1.16111622560633376e-04 -Plasma_electron_Debye_length_at_point_37_________________________________ (len_plasma_debye_electron_profile37)_ 1.16097425592416882e-04 -Plasma_electron_Debye_length_at_point_38_________________________________ (len_plasma_debye_electron_profile38)_ 1.16082837325635305e-04 -Plasma_electron_Debye_length_at_point_39_________________________________ (len_plasma_debye_electron_profile39)_ 1.16067857570032455e-04 -Plasma_electron_Debye_length_at_point_40_________________________________ (len_plasma_debye_electron_profile40)_ 1.16052486130214418e-04 -Plasma_electron_Debye_length_at_point_41_________________________________ (len_plasma_debye_electron_profile41)_ 1.16036722805644573e-04 -Plasma_electron_Debye_length_at_point_42_________________________________ (len_plasma_debye_electron_profile42)_ 1.16020567390638397e-04 -Plasma_electron_Debye_length_at_point_43_________________________________ (len_plasma_debye_electron_profile43)_ 1.16004019674358221e-04 -Plasma_electron_Debye_length_at_point_44_________________________________ (len_plasma_debye_electron_profile44)_ 1.15987079440807745e-04 -Plasma_electron_Debye_length_at_point_45_________________________________ (len_plasma_debye_electron_profile45)_ 1.15969746468826693e-04 -Plasma_electron_Debye_length_at_point_46_________________________________ (len_plasma_debye_electron_profile46)_ 1.15952020532084974e-04 -Plasma_electron_Debye_length_at_point_47_________________________________ (len_plasma_debye_electron_profile47)_ 1.15933901399077073e-04 -Plasma_electron_Debye_length_at_point_48_________________________________ (len_plasma_debye_electron_profile48)_ 1.15915388833115991e-04 -Plasma_electron_Debye_length_at_point_49_________________________________ (len_plasma_debye_electron_profile49)_ 1.15896482592327445e-04 -Plasma_electron_Debye_length_at_point_50_________________________________ (len_plasma_debye_electron_profile50)_ 1.15877182429643591e-04 -Plasma_electron_Debye_length_at_point_51_________________________________ (len_plasma_debye_electron_profile51)_ 1.15857488092796810e-04 -Plasma_electron_Debye_length_at_point_52_________________________________ (len_plasma_debye_electron_profile52)_ 1.15837399324313371e-04 -Plasma_electron_Debye_length_at_point_53_________________________________ (len_plasma_debye_electron_profile53)_ 1.15816915861506890e-04 -Plasma_electron_Debye_length_at_point_54_________________________________ (len_plasma_debye_electron_profile54)_ 1.15796037436471797e-04 -Plasma_electron_Debye_length_at_point_55_________________________________ (len_plasma_debye_electron_profile55)_ 1.15774763776076557e-04 -Plasma_electron_Debye_length_at_point_56_________________________________ (len_plasma_debye_electron_profile56)_ 1.15753094601956912e-04 -Plasma_electron_Debye_length_at_point_57_________________________________ (len_plasma_debye_electron_profile57)_ 1.15731029630508774e-04 -Plasma_electron_Debye_length_at_point_58_________________________________ (len_plasma_debye_electron_profile58)_ 1.15708568572881347e-04 -Plasma_electron_Debye_length_at_point_59_________________________________ (len_plasma_debye_electron_profile59)_ 1.15685711134969827e-04 -Plasma_electron_Debye_length_at_point_60_________________________________ (len_plasma_debye_electron_profile60)_ 1.15662457017408189e-04 -Plasma_electron_Debye_length_at_point_61_________________________________ (len_plasma_debye_electron_profile61)_ 1.15638805915561723e-04 -Plasma_electron_Debye_length_at_point_62_________________________________ (len_plasma_debye_electron_profile62)_ 1.15614757519519492e-04 -Plasma_electron_Debye_length_at_point_63_________________________________ (len_plasma_debye_electron_profile63)_ 1.15590311514086847e-04 -Plasma_electron_Debye_length_at_point_64_________________________________ (len_plasma_debye_electron_profile64)_ 1.15565467578777545e-04 -Plasma_electron_Debye_length_at_point_65_________________________________ (len_plasma_debye_electron_profile65)_ 1.15540225387805948e-04 -Plasma_electron_Debye_length_at_point_66_________________________________ (len_plasma_debye_electron_profile66)_ 1.15514584610079156e-04 -Plasma_electron_Debye_length_at_point_67_________________________________ (len_plasma_debye_electron_profile67)_ 1.15488544909188900e-04 -Plasma_electron_Debye_length_at_point_68_________________________________ (len_plasma_debye_electron_profile68)_ 1.15462105943403302e-04 -Plasma_electron_Debye_length_at_point_69_________________________________ (len_plasma_debye_electron_profile69)_ 1.15435267365658755e-04 -Plasma_electron_Debye_length_at_point_70_________________________________ (len_plasma_debye_electron_profile70)_ 1.15408028823551473e-04 -Plasma_electron_Debye_length_at_point_71_________________________________ (len_plasma_debye_electron_profile71)_ 1.15380389959329052e-04 -Plasma_electron_Debye_length_at_point_72_________________________________ (len_plasma_debye_electron_profile72)_ 1.15352350409881900e-04 -Plasma_electron_Debye_length_at_point_73_________________________________ (len_plasma_debye_electron_profile73)_ 1.15323909806734555e-04 -Plasma_electron_Debye_length_at_point_74_________________________________ (len_plasma_debye_electron_profile74)_ 1.15295067776037007e-04 -Plasma_electron_Debye_length_at_point_75_________________________________ (len_plasma_debye_electron_profile75)_ 1.15265823938555690e-04 -Plasma_electron_Debye_length_at_point_76_________________________________ (len_plasma_debye_electron_profile76)_ 1.15236177909664667e-04 -Plasma_electron_Debye_length_at_point_77_________________________________ (len_plasma_debye_electron_profile77)_ 1.15206129299336531e-04 -Plasma_electron_Debye_length_at_point_78_________________________________ (len_plasma_debye_electron_profile78)_ 1.15175677712133314e-04 -Plasma_electron_Debye_length_at_point_79_________________________________ (len_plasma_debye_electron_profile79)_ 1.15144822747197120e-04 -Plasma_electron_Debye_length_at_point_80_________________________________ (len_plasma_debye_electron_profile80)_ 1.15113563998241021e-04 -Plasma_electron_Debye_length_at_point_81_________________________________ (len_plasma_debye_electron_profile81)_ 1.15081901053539471e-04 -Plasma_electron_Debye_length_at_point_82_________________________________ (len_plasma_debye_electron_profile82)_ 1.15049833495918920e-04 -Plasma_electron_Debye_length_at_point_83_________________________________ (len_plasma_debye_electron_profile83)_ 1.15017360902748252e-04 -Plasma_electron_Debye_length_at_point_84_________________________________ (len_plasma_debye_electron_profile84)_ 1.14984482845929047e-04 -Plasma_electron_Debye_length_at_point_85_________________________________ (len_plasma_debye_electron_profile85)_ 1.14951198891885889e-04 -Plasma_electron_Debye_length_at_point_86_________________________________ (len_plasma_debye_electron_profile86)_ 1.14917508601556674e-04 -Plasma_electron_Debye_length_at_point_87_________________________________ (len_plasma_debye_electron_profile87)_ 1.14883411530382462e-04 -Plasma_electron_Debye_length_at_point_88_________________________________ (len_plasma_debye_electron_profile88)_ 1.14848907228297771e-04 -Plasma_electron_Debye_length_at_point_89_________________________________ (len_plasma_debye_electron_profile89)_ 1.14813995239720443e-04 -Plasma_electron_Debye_length_at_point_90_________________________________ (len_plasma_debye_electron_profile90)_ 1.14778675103541488e-04 -Plasma_electron_Debye_length_at_point_91_________________________________ (len_plasma_debye_electron_profile91)_ 1.14742946353115033e-04 -Plasma_electron_Debye_length_at_point_92_________________________________ (len_plasma_debye_electron_profile92)_ 1.14706808516247926e-04 -Plasma_electron_Debye_length_at_point_93_________________________________ (len_plasma_debye_electron_profile93)_ 1.14670261115189622e-04 -Plasma_electron_Debye_length_at_point_94_________________________________ (len_plasma_debye_electron_profile94)_ 1.14633303666621686e-04 -Plasma_electron_Debye_length_at_point_95_________________________________ (len_plasma_debye_electron_profile95)_ 1.14595935681647420e-04 -Plasma_electron_Debye_length_at_point_96_________________________________ (len_plasma_debye_electron_profile96)_ 1.14558156665781378e-04 -Plasma_electron_Debye_length_at_point_97_________________________________ (len_plasma_debye_electron_profile97)_ 1.14519966118938843e-04 -Plasma_electron_Debye_length_at_point_98_________________________________ (len_plasma_debye_electron_profile98)_ 1.14481363535425250e-04 -Plasma_electron_Debye_length_at_point_99_________________________________ (len_plasma_debye_electron_profile99)_ 1.14442348403925528e-04 -Plasma_electron_Debye_length_at_point_100________________________________ (len_plasma_debye_electron_profile100)_ 1.14402920207493463e-04 -Plasma_electron_Debye_length_at_point_101________________________________ (len_plasma_debye_electron_profile101)_ 1.14363078423540979e-04 -Plasma_electron_Debye_length_at_point_102________________________________ (len_plasma_debye_electron_profile102)_ 1.14322822523827349e-04 -Plasma_electron_Debye_length_at_point_103________________________________ (len_plasma_debye_electron_profile103)_ 1.14282151974448421e-04 -Plasma_electron_Debye_length_at_point_104________________________________ (len_plasma_debye_electron_profile104)_ 1.14241066235825763e-04 -Plasma_electron_Debye_length_at_point_105________________________________ (len_plasma_debye_electron_profile105)_ 1.14199564762695860e-04 -Plasma_electron_Debye_length_at_point_106________________________________ (len_plasma_debye_electron_profile106)_ 1.14157647004099207e-04 -Plasma_electron_Debye_length_at_point_107________________________________ (len_plasma_debye_electron_profile107)_ 1.14115312403369356e-04 -Plasma_electron_Debye_length_at_point_108________________________________ (len_plasma_debye_electron_profile108)_ 1.14072560398122019e-04 -Plasma_electron_Debye_length_at_point_109________________________________ (len_plasma_debye_electron_profile109)_ 1.14029390420244137e-04 -Plasma_electron_Debye_length_at_point_110________________________________ (len_plasma_debye_electron_profile110)_ 1.13985801895882908e-04 -Plasma_electron_Debye_length_at_point_111________________________________ (len_plasma_debye_electron_profile111)_ 1.13941794245434787e-04 -Plasma_electron_Debye_length_at_point_112________________________________ (len_plasma_debye_electron_profile112)_ 1.13897366883534563e-04 -Plasma_electron_Debye_length_at_point_113________________________________ (len_plasma_debye_electron_profile113)_ 1.13852519219044313e-04 -Plasma_electron_Debye_length_at_point_114________________________________ (len_plasma_debye_electron_profile114)_ 1.13807250655042529e-04 -Plasma_electron_Debye_length_at_point_115________________________________ (len_plasma_debye_electron_profile115)_ 1.13761560588813038e-04 -Plasma_electron_Debye_length_at_point_116________________________________ (len_plasma_debye_electron_profile116)_ 1.13715448411834104e-04 -Plasma_electron_Debye_length_at_point_117________________________________ (len_plasma_debye_electron_profile117)_ 1.13668913509767502e-04 -Plasma_electron_Debye_length_at_point_118________________________________ (len_plasma_debye_electron_profile118)_ 1.13621955262447569e-04 -Plasma_electron_Debye_length_at_point_119________________________________ (len_plasma_debye_electron_profile119)_ 1.13574573043870230e-04 -Plasma_electron_Debye_length_at_point_120________________________________ (len_plasma_debye_electron_profile120)_ 1.13526766222182338e-04 -Plasma_electron_Debye_length_at_point_121________________________________ (len_plasma_debye_electron_profile121)_ 1.13478534159670611e-04 -Plasma_electron_Debye_length_at_point_122________________________________ (len_plasma_debye_electron_profile122)_ 1.13429876212750957e-04 -Plasma_electron_Debye_length_at_point_123________________________________ (len_plasma_debye_electron_profile123)_ 1.13380791731957734e-04 -Plasma_electron_Debye_length_at_point_124________________________________ (len_plasma_debye_electron_profile124)_ 1.13331280061932958e-04 -Plasma_electron_Debye_length_at_point_125________________________________ (len_plasma_debye_electron_profile125)_ 1.13281340541415774e-04 -Plasma_electron_Debye_length_at_point_126________________________________ (len_plasma_debye_electron_profile126)_ 1.13230972503231765e-04 -Plasma_electron_Debye_length_at_point_127________________________________ (len_plasma_debye_electron_profile127)_ 1.13180175274282512e-04 -Plasma_electron_Debye_length_at_point_128________________________________ (len_plasma_debye_electron_profile128)_ 1.13128948175535095e-04 -Plasma_electron_Debye_length_at_point_129________________________________ (len_plasma_debye_electron_profile129)_ 1.13077290522011831e-04 -Plasma_electron_Debye_length_at_point_130________________________________ (len_plasma_debye_electron_profile130)_ 1.13025201622779734e-04 -Plasma_electron_Debye_length_at_point_131________________________________ (len_plasma_debye_electron_profile131)_ 1.12972680780940723e-04 -Plasma_electron_Debye_length_at_point_132________________________________ (len_plasma_debye_electron_profile132)_ 1.12919727293621169e-04 -Plasma_electron_Debye_length_at_point_133________________________________ (len_plasma_debye_electron_profile133)_ 1.12866340451962059e-04 -Plasma_electron_Debye_length_at_point_134________________________________ (len_plasma_debye_electron_profile134)_ 1.12812519541109180e-04 -Plasma_electron_Debye_length_at_point_135________________________________ (len_plasma_debye_electron_profile135)_ 1.12758263840203259e-04 -Plasma_electron_Debye_length_at_point_136________________________________ (len_plasma_debye_electron_profile136)_ 1.12703572622370360e-04 -Plasma_electron_Debye_length_at_point_137________________________________ (len_plasma_debye_electron_profile137)_ 1.12648445154712431e-04 -Plasma_electron_Debye_length_at_point_138________________________________ (len_plasma_debye_electron_profile138)_ 1.12592880698297949e-04 -Plasma_electron_Debye_length_at_point_139________________________________ (len_plasma_debye_electron_profile139)_ 1.12536878508152625e-04 -Plasma_electron_Debye_length_at_point_140________________________________ (len_plasma_debye_electron_profile140)_ 1.12480437833250470e-04 -Plasma_electron_Debye_length_at_point_141________________________________ (len_plasma_debye_electron_profile141)_ 1.12423557916504883e-04 -Plasma_electron_Debye_length_at_point_142________________________________ (len_plasma_debye_electron_profile142)_ 1.12366237994759955e-04 -Plasma_electron_Debye_length_at_point_143________________________________ (len_plasma_debye_electron_profile143)_ 1.12308477298781888e-04 -Plasma_electron_Debye_length_at_point_144________________________________ (len_plasma_debye_electron_profile144)_ 1.12250275053250823e-04 -Plasma_electron_Debye_length_at_point_145________________________________ (len_plasma_debye_electron_profile145)_ 1.12191630476752535e-04 -Plasma_electron_Debye_length_at_point_146________________________________ (len_plasma_debye_electron_profile146)_ 1.12132542781770623e-04 -Plasma_electron_Debye_length_at_point_147________________________________ (len_plasma_debye_electron_profile147)_ 1.12073011174678894e-04 -Plasma_electron_Debye_length_at_point_148________________________________ (len_plasma_debye_electron_profile148)_ 1.12013034855733723e-04 -Plasma_electron_Debye_length_at_point_149________________________________ (len_plasma_debye_electron_profile149)_ 1.11952613019067056e-04 -Plasma_electron_Debye_length_at_point_150________________________________ (len_plasma_debye_electron_profile150)_ 1.11891744852679267e-04 -Plasma_electron_Debye_length_at_point_151________________________________ (len_plasma_debye_electron_profile151)_ 1.11830429538432660e-04 -Plasma_electron_Debye_length_at_point_152________________________________ (len_plasma_debye_electron_profile152)_ 1.11768666252044845e-04 -Plasma_electron_Debye_length_at_point_153________________________________ (len_plasma_debye_electron_profile153)_ 1.11706454163082770e-04 -Plasma_electron_Debye_length_at_point_154________________________________ (len_plasma_debye_electron_profile154)_ 1.11643792434956902e-04 -Plasma_electron_Debye_length_at_point_155________________________________ (len_plasma_debye_electron_profile155)_ 1.11580680224915592e-04 -Plasma_electron_Debye_length_at_point_156________________________________ (len_plasma_debye_electron_profile156)_ 1.11517116684039963e-04 -Plasma_electron_Debye_length_at_point_157________________________________ (len_plasma_debye_electron_profile157)_ 1.11453100957239115e-04 -Plasma_electron_Debye_length_at_point_158________________________________ (len_plasma_debye_electron_profile158)_ 1.11388632183245583e-04 -Plasma_electron_Debye_length_at_point_159________________________________ (len_plasma_debye_electron_profile159)_ 1.11323709494611070e-04 -Plasma_electron_Debye_length_at_point_160________________________________ (len_plasma_debye_electron_profile160)_ 1.11258332017703028e-04 -Plasma_electron_Debye_length_at_point_161________________________________ (len_plasma_debye_electron_profile161)_ 1.11192498872700923e-04 -Plasma_electron_Debye_length_at_point_162________________________________ (len_plasma_debye_electron_profile162)_ 1.11126209173593600e-04 -Plasma_electron_Debye_length_at_point_163________________________________ (len_plasma_debye_electron_profile163)_ 1.11059462028176550e-04 -Plasma_electron_Debye_length_at_point_164________________________________ (len_plasma_debye_electron_profile164)_ 1.10992256538049928e-04 -Plasma_electron_Debye_length_at_point_165________________________________ (len_plasma_debye_electron_profile165)_ 1.10924591798616917e-04 -Plasma_electron_Debye_length_at_point_166________________________________ (len_plasma_debye_electron_profile166)_ 1.10856466899082558e-04 -Plasma_electron_Debye_length_at_point_167________________________________ (len_plasma_debye_electron_profile167)_ 1.10787880922453061e-04 -Plasma_electron_Debye_length_at_point_168________________________________ (len_plasma_debye_electron_profile168)_ 1.10718832945535725e-04 -Plasma_electron_Debye_length_at_point_169________________________________ (len_plasma_debye_electron_profile169)_ 1.10649322038939248e-04 -Plasma_electron_Debye_length_at_point_170________________________________ (len_plasma_debye_electron_profile170)_ 1.10579347267074647e-04 -Plasma_electron_Debye_length_at_point_171________________________________ (len_plasma_debye_electron_profile171)_ 1.10508907688156754e-04 -Plasma_electron_Debye_length_at_point_172________________________________ (len_plasma_debye_electron_profile172)_ 1.10438002354206296e-04 -Plasma_electron_Debye_length_at_point_173________________________________ (len_plasma_debye_electron_profile173)_ 1.10366630311052436e-04 -Plasma_electron_Debye_length_at_point_174________________________________ (len_plasma_debye_electron_profile174)_ 1.10294790598336240e-04 -Plasma_electron_Debye_length_at_point_175________________________________ (len_plasma_debye_electron_profile175)_ 1.10222482249514467e-04 -Plasma_electron_Debye_length_at_point_176________________________________ (len_plasma_debye_electron_profile176)_ 1.10149704291864255e-04 -Plasma_electron_Debye_length_at_point_177________________________________ (len_plasma_debye_electron_profile177)_ 1.10076455746488326e-04 -Plasma_electron_Debye_length_at_point_178________________________________ (len_plasma_debye_electron_profile178)_ 1.10002735628321029e-04 -Plasma_electron_Debye_length_at_point_179________________________________ (len_plasma_debye_electron_profile179)_ 1.09928542946135082e-04 -Plasma_electron_Debye_length_at_point_180________________________________ (len_plasma_debye_electron_profile180)_ 1.09853876702549025e-04 -Plasma_electron_Debye_length_at_point_181________________________________ (len_plasma_debye_electron_profile181)_ 1.09778735894035519e-04 -Plasma_electron_Debye_length_at_point_182________________________________ (len_plasma_debye_electron_profile182)_ 1.09703119510930438e-04 -Plasma_electron_Debye_length_at_point_183________________________________ (len_plasma_debye_electron_profile183)_ 1.09627026537442720e-04 -Plasma_electron_Debye_length_at_point_184________________________________ (len_plasma_debye_electron_profile184)_ 1.09550455951665292e-04 -Plasma_electron_Debye_length_at_point_185________________________________ (len_plasma_debye_electron_profile185)_ 1.09473406725586655e-04 -Plasma_electron_Debye_length_at_point_186________________________________ (len_plasma_debye_electron_profile186)_ 1.09395877825103411e-04 -Plasma_electron_Debye_length_at_point_187________________________________ (len_plasma_debye_electron_profile187)_ 1.09317868210033974e-04 -Plasma_electron_Debye_length_at_point_188________________________________ (len_plasma_debye_electron_profile188)_ 1.09239376834132938e-04 -Plasma_electron_Debye_length_at_point_189________________________________ (len_plasma_debye_electron_profile189)_ 1.09160402645106769e-04 -Plasma_electron_Debye_length_at_point_190________________________________ (len_plasma_debye_electron_profile190)_ 1.09080944584630178e-04 -Plasma_electron_Debye_length_at_point_191________________________________ (len_plasma_debye_electron_profile191)_ 1.09001001588363998e-04 -Plasma_electron_Debye_length_at_point_192________________________________ (len_plasma_debye_electron_profile192)_ 1.08920572585973773e-04 -Plasma_electron_Debye_length_at_point_193________________________________ (len_plasma_debye_electron_profile193)_ 1.08839656501149741e-04 -Plasma_electron_Debye_length_at_point_194________________________________ (len_plasma_debye_electron_profile194)_ 1.08758252251627916e-04 -Plasma_electron_Debye_length_at_point_195________________________________ (len_plasma_debye_electron_profile195)_ 1.08676358749212372e-04 -Plasma_electron_Debye_length_at_point_196________________________________ (len_plasma_debye_electron_profile196)_ 1.08593974899798783e-04 -Plasma_electron_Debye_length_at_point_197________________________________ (len_plasma_debye_electron_profile197)_ 1.08511099603399318e-04 -Plasma_electron_Debye_length_at_point_198________________________________ (len_plasma_debye_electron_profile198)_ 1.08427731754168744e-04 -Plasma_electron_Debye_length_at_point_199________________________________ (len_plasma_debye_electron_profile199)_ 1.08343870240432073e-04 -Plasma_electron_Debye_length_at_point_200________________________________ (len_plasma_debye_electron_profile200)_ 1.08259513944713388e-04 -Plasma_electron_Debye_length_at_point_201________________________________ (len_plasma_debye_electron_profile201)_ 1.08174661743766417e-04 -Plasma_electron_Debye_length_at_point_202________________________________ (len_plasma_debye_electron_profile202)_ 1.08089312508606329e-04 -Plasma_electron_Debye_length_at_point_203________________________________ (len_plasma_debye_electron_profile203)_ 1.08003465104543328e-04 -Plasma_electron_Debye_length_at_point_204________________________________ (len_plasma_debye_electron_profile204)_ 1.07917118391217596e-04 -Plasma_electron_Debye_length_at_point_205________________________________ (len_plasma_debye_electron_profile205)_ 1.07830271222636082e-04 -Plasma_electron_Debye_length_at_point_206________________________________ (len_plasma_debye_electron_profile206)_ 1.07742922447210873e-04 -Plasma_electron_Debye_length_at_point_207________________________________ (len_plasma_debye_electron_profile207)_ 1.07655070907799379e-04 -Plasma_electron_Debye_length_at_point_208________________________________ (len_plasma_debye_electron_profile208)_ 1.07566715441746245e-04 -Plasma_electron_Debye_length_at_point_209________________________________ (len_plasma_debye_electron_profile209)_ 1.07477854880927103e-04 -Plasma_electron_Debye_length_at_point_210________________________________ (len_plasma_debye_electron_profile210)_ 1.07388488051794395e-04 -Plasma_electron_Debye_length_at_point_211________________________________ (len_plasma_debye_electron_profile211)_ 1.07298613775424896e-04 -Plasma_electron_Debye_length_at_point_212________________________________ (len_plasma_debye_electron_profile212)_ 1.07208230867569481e-04 -Plasma_electron_Debye_length_at_point_213________________________________ (len_plasma_debye_electron_profile213)_ 1.07117338138704873e-04 -Plasma_electron_Debye_length_at_point_214________________________________ (len_plasma_debye_electron_profile214)_ 1.07025934394087535e-04 -Plasma_electron_Debye_length_at_point_215________________________________ (len_plasma_debye_electron_profile215)_ 1.06934018433809874e-04 -Plasma_electron_Debye_length_at_point_216________________________________ (len_plasma_debye_electron_profile216)_ 1.06841589052858454e-04 -Plasma_electron_Debye_length_at_point_217________________________________ (len_plasma_debye_electron_profile217)_ 1.06748645041174976e-04 -Plasma_electron_Debye_length_at_point_218________________________________ (len_plasma_debye_electron_profile218)_ 1.06655185183719217e-04 -Plasma_electron_Debye_length_at_point_219________________________________ (len_plasma_debye_electron_profile219)_ 1.06561208260534725e-04 -Plasma_electron_Debye_length_at_point_220________________________________ (len_plasma_debye_electron_profile220)_ 1.06466713046817073e-04 -Plasma_electron_Debye_length_at_point_221________________________________ (len_plasma_debye_electron_profile221)_ 1.06371698312984574e-04 -Plasma_electron_Debye_length_at_point_222________________________________ (len_plasma_debye_electron_profile222)_ 1.06276162824751847e-04 -Plasma_electron_Debye_length_at_point_223________________________________ (len_plasma_debye_electron_profile223)_ 1.06180105343206234e-04 -Plasma_electron_Debye_length_at_point_224________________________________ (len_plasma_debye_electron_profile224)_ 1.06083524624886794e-04 -Plasma_electron_Debye_length_at_point_225________________________________ (len_plasma_debye_electron_profile225)_ 1.05986419421866593e-04 -Plasma_electron_Debye_length_at_point_226________________________________ (len_plasma_debye_electron_profile226)_ 1.05888788481837954e-04 -Plasma_electron_Debye_length_at_point_227________________________________ (len_plasma_debye_electron_profile227)_ 1.05790630548200542e-04 -Plasma_electron_Debye_length_at_point_228________________________________ (len_plasma_debye_electron_profile228)_ 1.05691944360153216e-04 -Plasma_electron_Debye_length_at_point_229________________________________ (len_plasma_debye_electron_profile229)_ 1.05592728652788715e-04 -Plasma_electron_Debye_length_at_point_230________________________________ (len_plasma_debye_electron_profile230)_ 1.05492982157192095e-04 -Plasma_electron_Debye_length_at_point_231________________________________ (len_plasma_debye_electron_profile231)_ 1.05392703600542327e-04 -Plasma_electron_Debye_length_at_point_232________________________________ (len_plasma_debye_electron_profile232)_ 1.05291891706218093e-04 -Plasma_electron_Debye_length_at_point_233________________________________ (len_plasma_debye_electron_profile233)_ 1.05190545193906650e-04 -Plasma_electron_Debye_length_at_point_234________________________________ (len_plasma_debye_electron_profile234)_ 1.05088662779716994e-04 -Plasma_electron_Debye_length_at_point_235________________________________ (len_plasma_debye_electron_profile235)_ 1.04986243176296930e-04 -Plasma_electron_Debye_length_at_point_236________________________________ (len_plasma_debye_electron_profile236)_ 1.04883285092953943e-04 -Plasma_electron_Debye_length_at_point_237________________________________ (len_plasma_debye_electron_profile237)_ 1.04779787235780573e-04 -Plasma_electron_Debye_length_at_point_238________________________________ (len_plasma_debye_electron_profile238)_ 1.04675748307784007e-04 -Plasma_electron_Debye_length_at_point_239________________________________ (len_plasma_debye_electron_profile239)_ 1.04571167009019948e-04 -Plasma_electron_Debye_length_at_point_240________________________________ (len_plasma_debye_electron_profile240)_ 1.04466042036731367e-04 -Plasma_electron_Debye_length_at_point_241________________________________ (len_plasma_debye_electron_profile241)_ 1.04360372085491701e-04 -Plasma_electron_Debye_length_at_point_242________________________________ (len_plasma_debye_electron_profile242)_ 1.04254155847353043e-04 -Plasma_electron_Debye_length_at_point_243________________________________ (len_plasma_debye_electron_profile243)_ 1.04147392011999282e-04 -Plasma_electron_Debye_length_at_point_244________________________________ (len_plasma_debye_electron_profile244)_ 1.04040079266904387e-04 -Plasma_electron_Debye_length_at_point_245________________________________ (len_plasma_debye_electron_profile245)_ 1.03932216297495926e-04 -Plasma_electron_Debye_length_at_point_246________________________________ (len_plasma_debye_electron_profile246)_ 1.03823801787324290e-04 -Plasma_electron_Debye_length_at_point_247________________________________ (len_plasma_debye_electron_profile247)_ 1.03714834418237064e-04 -Plasma_electron_Debye_length_at_point_248________________________________ (len_plasma_debye_electron_profile248)_ 1.03605312870559669e-04 -Plasma_electron_Debye_length_at_point_249________________________________ (len_plasma_debye_electron_profile249)_ 1.03495235823281514e-04 -Plasma_electron_Debye_length_at_point_250________________________________ (len_plasma_debye_electron_profile250)_ 1.03384601954248788e-04 -Plasma_electron_Debye_length_at_point_251________________________________ (len_plasma_debye_electron_profile251)_ 1.03273409940362958e-04 -Plasma_electron_Debye_length_at_point_252________________________________ (len_plasma_debye_electron_profile252)_ 1.03161658457786299e-04 -Plasma_electron_Debye_length_at_point_253________________________________ (len_plasma_debye_electron_profile253)_ 1.03049346182153631e-04 -Plasma_electron_Debye_length_at_point_254________________________________ (len_plasma_debye_electron_profile254)_ 1.02936471788791497e-04 -Plasma_electron_Debye_length_at_point_255________________________________ (len_plasma_debye_electron_profile255)_ 1.02823033952943851e-04 -Plasma_electron_Debye_length_at_point_256________________________________ (len_plasma_debye_electron_profile256)_ 1.02709031350005500e-04 -Plasma_electron_Debye_length_at_point_257________________________________ (len_plasma_debye_electron_profile257)_ 1.02594462655762782e-04 -Plasma_electron_Debye_length_at_point_258________________________________ (len_plasma_debye_electron_profile258)_ 1.02479326546642285e-04 -Plasma_electron_Debye_length_at_point_259________________________________ (len_plasma_debye_electron_profile259)_ 1.02363621699967070e-04 -Plasma_electron_Debye_length_at_point_260________________________________ (len_plasma_debye_electron_profile260)_ 1.02247346794221675e-04 -Plasma_electron_Debye_length_at_point_261________________________________ (len_plasma_debye_electron_profile261)_ 1.02130500509325188e-04 -Plasma_electron_Debye_length_at_point_262________________________________ (len_plasma_debye_electron_profile262)_ 1.02013081526913178e-04 -Plasma_electron_Debye_length_at_point_263________________________________ (len_plasma_debye_electron_profile263)_ 1.01895088530628615e-04 -Plasma_electron_Debye_length_at_point_264________________________________ (len_plasma_debye_electron_profile264)_ 1.01776520206421975e-04 -Plasma_electron_Debye_length_at_point_265________________________________ (len_plasma_debye_electron_profile265)_ 1.01657375242860946e-04 -Plasma_electron_Debye_length_at_point_266________________________________ (len_plasma_debye_electron_profile266)_ 1.01537652331449925e-04 -Plasma_electron_Debye_length_at_point_267________________________________ (len_plasma_debye_electron_profile267)_ 1.01417350166959537e-04 -Plasma_electron_Debye_length_at_point_268________________________________ (len_plasma_debye_electron_profile268)_ 1.01296467447766883e-04 -Plasma_electron_Debye_length_at_point_269________________________________ (len_plasma_debye_electron_profile269)_ 1.01175002876205899e-04 -Plasma_electron_Debye_length_at_point_270________________________________ (len_plasma_debye_electron_profile270)_ 1.01052955158929646e-04 -Plasma_electron_Debye_length_at_point_271________________________________ (len_plasma_debye_electron_profile271)_ 1.00930323007283082e-04 -Plasma_electron_Debye_length_at_point_272________________________________ (len_plasma_debye_electron_profile272)_ 1.00807105137688349e-04 -Plasma_electron_Debye_length_at_point_273________________________________ (len_plasma_debye_electron_profile273)_ 1.00683300272041591e-04 -Plasma_electron_Debye_length_at_point_274________________________________ (len_plasma_debye_electron_profile274)_ 1.00558907138122603e-04 -Plasma_electron_Debye_length_at_point_275________________________________ (len_plasma_debye_electron_profile275)_ 1.00433924470017146e-04 -Plasma_electron_Debye_length_at_point_276________________________________ (len_plasma_debye_electron_profile276)_ 1.00308351008552535e-04 -Plasma_electron_Debye_length_at_point_277________________________________ (len_plasma_debye_electron_profile277)_ 1.00182185501746990e-04 -Plasma_electron_Debye_length_at_point_278________________________________ (len_plasma_debye_electron_profile278)_ 1.00055426705272831e-04 -Plasma_electron_Debye_length_at_point_279________________________________ (len_plasma_debye_electron_profile279)_ 9.99280733829343822e-05 -Plasma_electron_Debye_length_at_point_280________________________________ (len_plasma_debye_electron_profile280)_ 9.98001243071607697e-05 -Plasma_electron_Debye_length_at_point_281________________________________ (len_plasma_debye_electron_profile281)_ 9.96715782595139911e-05 -Plasma_electron_Debye_length_at_point_282________________________________ (len_plasma_debye_electron_profile282)_ 9.95424340312130732e-05 -Plasma_electron_Debye_length_at_point_283________________________________ (len_plasma_debye_electron_profile283)_ 9.94126904236744796e-05 -Plasma_electron_Debye_length_at_point_284________________________________ (len_plasma_debye_electron_profile284)_ 9.92823462490693628e-05 -Plasma_electron_Debye_length_at_point_285________________________________ (len_plasma_debye_electron_profile285)_ 9.91514003308984902e-05 -Plasma_electron_Debye_length_at_point_286________________________________ (len_plasma_debye_electron_profile286)_ 9.90198515045846652e-05 -Plasma_electron_Debye_length_at_point_287________________________________ (len_plasma_debye_electron_profile287)_ 9.88876986180841765e-05 -Plasma_electron_Debye_length_at_point_288________________________________ (len_plasma_debye_electron_profile288)_ 9.87549405325168422e-05 -Plasma_electron_Debye_length_at_point_289________________________________ (len_plasma_debye_electron_profile289)_ 9.86215761228161780e-05 -Plasma_electron_Debye_length_at_point_290________________________________ (len_plasma_debye_electron_profile290)_ 9.84876042783995159e-05 -Plasma_electron_Debye_length_at_point_291________________________________ (len_plasma_debye_electron_profile291)_ 9.83530239038594132e-05 -Plasma_electron_Debye_length_at_point_292________________________________ (len_plasma_debye_electron_profile292)_ 9.82178339196762448e-05 -Plasma_electron_Debye_length_at_point_293________________________________ (len_plasma_debye_electron_profile293)_ 9.80820332629535492e-05 -Plasma_electron_Debye_length_at_point_294________________________________ (len_plasma_debye_electron_profile294)_ 9.79456208881759676e-05 -Plasma_electron_Debye_length_at_point_295________________________________ (len_plasma_debye_electron_profile295)_ 9.78085957679911296e-05 -Plasma_electron_Debye_length_at_point_296________________________________ (len_plasma_debye_electron_profile296)_ 9.76709568940160286e-05 -Plasma_electron_Debye_length_at_point_297________________________________ (len_plasma_debye_electron_profile297)_ 9.75327032776684966e-05 -Plasma_electron_Debye_length_at_point_298________________________________ (len_plasma_debye_electron_profile298)_ 9.73938339510248350e-05 -Plasma_electron_Debye_length_at_point_299________________________________ (len_plasma_debye_electron_profile299)_ 9.72543479677043883e-05 -Plasma_electron_Debye_length_at_point_300________________________________ (len_plasma_debye_electron_profile300)_ 9.71142444037818050e-05 -Plasma_electron_Debye_length_at_point_301________________________________ (len_plasma_debye_electron_profile301)_ 9.69735223587279901e-05 -Plasma_electron_Debye_length_at_point_302________________________________ (len_plasma_debye_electron_profile302)_ 9.68321809563805330e-05 -Plasma_electron_Debye_length_at_point_303________________________________ (len_plasma_debye_electron_profile303)_ 9.66902193459449015e-05 -Plasma_electron_Debye_length_at_point_304________________________________ (len_plasma_debye_electron_profile304)_ 9.65476367030269265e-05 -Plasma_electron_Debye_length_at_point_305________________________________ (len_plasma_debye_electron_profile305)_ 9.64044322306978552e-05 -Plasma_electron_Debye_length_at_point_306________________________________ (len_plasma_debye_electron_profile306)_ 9.62606051605932031e-05 -Plasma_electron_Debye_length_at_point_307________________________________ (len_plasma_debye_electron_profile307)_ 9.61161547540460842e-05 -Plasma_electron_Debye_length_at_point_308________________________________ (len_plasma_debye_electron_profile308)_ 9.59710803032563878e-05 -Plasma_electron_Debye_length_at_point_309________________________________ (len_plasma_debye_electron_profile309)_ 9.58253811324972647e-05 -Plasma_electron_Debye_length_at_point_310________________________________ (len_plasma_debye_electron_profile310)_ 9.56790565993593443e-05 -Plasma_electron_Debye_length_at_point_311________________________________ (len_plasma_debye_electron_profile311)_ 9.55321060960349450e-05 -Plasma_electron_Debye_length_at_point_312________________________________ (len_plasma_debye_electron_profile312)_ 9.53845290506426436e-05 -Plasma_electron_Debye_length_at_point_313________________________________ (len_plasma_debye_electron_profile313)_ 9.52363249285944008e-05 -Plasma_electron_Debye_length_at_point_314________________________________ (len_plasma_debye_electron_profile314)_ 9.50874932340058229e-05 -Plasma_electron_Debye_length_at_point_315________________________________ (len_plasma_debye_electron_profile315)_ 9.49380335111517170e-05 -Plasma_electron_Debye_length_at_point_316________________________________ (len_plasma_debye_electron_profile316)_ 9.47879453459680771e-05 -Plasma_electron_Debye_length_at_point_317________________________________ (len_plasma_debye_electron_profile317)_ 9.46372283676020321e-05 -Plasma_electron_Debye_length_at_point_318________________________________ (len_plasma_debye_electron_profile318)_ 9.44858822500115866e-05 -Plasma_electron_Debye_length_at_point_319________________________________ (len_plasma_debye_electron_profile319)_ 9.43339067136166298e-05 -Plasma_electron_Debye_length_at_point_320________________________________ (len_plasma_debye_electron_profile320)_ 9.41813015270031120e-05 -Plasma_electron_Debye_length_at_point_321________________________________ (len_plasma_debye_electron_profile321)_ 9.40280665086820269e-05 -Plasma_electron_Debye_length_at_point_322________________________________ (len_plasma_debye_electron_profile322)_ 9.38742015289051253e-05 -Plasma_electron_Debye_length_at_point_323________________________________ (len_plasma_debye_electron_profile323)_ 9.37197065115395273e-05 -Plasma_electron_Debye_length_at_point_324________________________________ (len_plasma_debye_electron_profile324)_ 9.35645814360026846e-05 -Plasma_electron_Debye_length_at_point_325________________________________ (len_plasma_debye_electron_profile325)_ 9.34088263392604160e-05 -Plasma_electron_Debye_length_at_point_326________________________________ (len_plasma_debye_electron_profile326)_ 9.32524413178896700e-05 -Plasma_electron_Debye_length_at_point_327________________________________ (len_plasma_debye_electron_profile327)_ 9.30954265302087785e-05 -Plasma_electron_Debye_length_at_point_328________________________________ (len_plasma_debye_electron_profile328)_ 9.29377821984767608e-05 -Plasma_electron_Debye_length_at_point_329________________________________ (len_plasma_debye_electron_profile329)_ 9.27795086111649851e-05 -Plasma_electron_Debye_length_at_point_330________________________________ (len_plasma_debye_electron_profile330)_ 9.26206061253029750e-05 -Plasma_electron_Debye_length_at_point_331________________________________ (len_plasma_debye_electron_profile331)_ 9.24610751689014526e-05 -Plasma_electron_Debye_length_at_point_332________________________________ (len_plasma_debye_electron_profile332)_ 9.23009162434549886e-05 -Plasma_electron_Debye_length_at_point_333________________________________ (len_plasma_debye_electron_profile333)_ 9.21401299265272011e-05 -Plasma_electron_Debye_length_at_point_334________________________________ (len_plasma_debye_electron_profile334)_ 9.19787168744215928e-05 -Plasma_electron_Debye_length_at_point_335________________________________ (len_plasma_debye_electron_profile335)_ 9.18166778249406154e-05 -Plasma_electron_Debye_length_at_point_336________________________________ (len_plasma_debye_electron_profile336)_ 9.16540136002366192e-05 -Plasma_electron_Debye_length_at_point_337________________________________ (len_plasma_debye_electron_profile337)_ 9.14907251097576990e-05 -Plasma_electron_Debye_length_at_point_338________________________________ (len_plasma_debye_electron_profile338)_ 9.13268133532916452e-05 -Plasma_electron_Debye_length_at_point_339________________________________ (len_plasma_debye_electron_profile339)_ 9.11622794241119874e-05 -Plasma_electron_Debye_length_at_point_340________________________________ (len_plasma_debye_electron_profile340)_ 9.09971245122295975e-05 -Plasma_electron_Debye_length_at_point_341________________________________ (len_plasma_debye_electron_profile341)_ 9.08313499077534320e-05 -Plasma_electron_Debye_length_at_point_342________________________________ (len_plasma_debye_electron_profile342)_ 9.06649570043648175e-05 -Plasma_electron_Debye_length_at_point_343________________________________ (len_plasma_debye_electron_profile343)_ 9.04979473029091276e-05 -Plasma_electron_Debye_length_at_point_344________________________________ (len_plasma_debye_electron_profile344)_ 9.03303224151093379e-05 -Plasma_electron_Debye_length_at_point_345________________________________ (len_plasma_debye_electron_profile345)_ 9.01620840674056739e-05 -Plasma_electron_Debye_length_at_point_346________________________________ (len_plasma_debye_electron_profile346)_ 8.99932341049264475e-05 -Plasma_electron_Debye_length_at_point_347________________________________ (len_plasma_debye_electron_profile347)_ 8.98237744955944994e-05 -Plasma_electron_Debye_length_at_point_348________________________________ (len_plasma_debye_electron_profile348)_ 8.96537073343745748e-05 -Plasma_electron_Debye_length_at_point_349________________________________ (len_plasma_debye_electron_profile349)_ 8.94830348476667413e-05 -Plasma_electron_Debye_length_at_point_350________________________________ (len_plasma_debye_electron_profile350)_ 8.93117593978515672e-05 -Plasma_electron_Debye_length_at_point_351________________________________ (len_plasma_debye_electron_profile351)_ 8.91398834879925778e-05 -Plasma_electron_Debye_length_at_point_352________________________________ (len_plasma_debye_electron_profile352)_ 8.89674097667019105e-05 -Plasma_electron_Debye_length_at_point_353________________________________ (len_plasma_debye_electron_profile353)_ 8.87943410331755667e-05 -Plasma_electron_Debye_length_at_point_354________________________________ (len_plasma_debye_electron_profile354)_ 8.86206802424047108e-05 -Plasma_electron_Debye_length_at_point_355________________________________ (len_plasma_debye_electron_profile355)_ 8.84464305105695761e-05 -Plasma_electron_Debye_length_at_point_356________________________________ (len_plasma_debye_electron_profile356)_ 8.82715951206233497e-05 -Plasma_electron_Debye_length_at_point_357________________________________ (len_plasma_debye_electron_profile357)_ 8.80961775280729898e-05 -Plasma_electron_Debye_length_at_point_358________________________________ (len_plasma_debye_electron_profile358)_ 8.79201813669651730e-05 -Plasma_electron_Debye_length_at_point_359________________________________ (len_plasma_debye_electron_profile359)_ 8.77436104560847874e-05 -Plasma_electron_Debye_length_at_point_360________________________________ (len_plasma_debye_electron_profile360)_ 8.75664688053748319e-05 -Plasma_electron_Debye_length_at_point_361________________________________ (len_plasma_debye_electron_profile361)_ 8.73887606225862888e-05 -Plasma_electron_Debye_length_at_point_362________________________________ (len_plasma_debye_electron_profile362)_ 8.72104903201670773e-05 -Plasma_electron_Debye_length_at_point_363________________________________ (len_plasma_debye_electron_profile363)_ 8.70316625223995318e-05 -Plasma_electron_Debye_length_at_point_364________________________________ (len_plasma_debye_electron_profile364)_ 8.68522820727967213e-05 -Plasma_electron_Debye_length_at_point_365________________________________ (len_plasma_debye_electron_profile365)_ 8.66723540417677855e-05 -Plasma_electron_Debye_length_at_point_366________________________________ (len_plasma_debye_electron_profile366)_ 8.64918837345630905e-05 -Plasma_electron_Debye_length_at_point_367________________________________ (len_plasma_debye_electron_profile367)_ 8.63108766995110616e-05 -Plasma_electron_Debye_length_at_point_368________________________________ (len_plasma_debye_electron_profile368)_ 8.61293387365582680e-05 -Plasma_electron_Debye_length_at_point_369________________________________ (len_plasma_debye_electron_profile369)_ 8.59472759061254431e-05 -Plasma_electron_Debye_length_at_point_370________________________________ (len_plasma_debye_electron_profile370)_ 8.57646945382924255e-05 -Plasma_electron_Debye_length_at_point_371________________________________ (len_plasma_debye_electron_profile371)_ 8.55816012423260872e-05 -Plasma_electron_Debye_length_at_point_372________________________________ (len_plasma_debye_electron_profile372)_ 8.53980029165653026e-05 -Plasma_electron_Debye_length_at_point_373________________________________ (len_plasma_debye_electron_profile373)_ 8.52139067586781245e-05 -Plasma_electron_Debye_length_at_point_374________________________________ (len_plasma_debye_electron_profile374)_ 8.50293202763074030e-05 -Plasma_electron_Debye_length_at_point_375________________________________ (len_plasma_debye_electron_profile375)_ 8.48442512981207973e-05 -Plasma_electron_Debye_length_at_point_376________________________________ (len_plasma_debye_electron_profile376)_ 8.46587079852834649e-05 -Plasma_electron_Debye_length_at_point_377________________________________ (len_plasma_debye_electron_profile377)_ 8.44726988433708406e-05 -Plasma_electron_Debye_length_at_point_378________________________________ (len_plasma_debye_electron_profile378)_ 8.42862327347417695e-05 -Plasma_electron_Debye_length_at_point_379________________________________ (len_plasma_debye_electron_profile379)_ 8.40993188913914517e-05 -Plasma_electron_Debye_length_at_point_380________________________________ (len_plasma_debye_electron_profile380)_ 8.39119669283059949e-05 -Plasma_electron_Debye_length_at_point_381________________________________ (len_plasma_debye_electron_profile381)_ 8.37241868573408254e-05 -Plasma_electron_Debye_length_at_point_382________________________________ (len_plasma_debye_electron_profile382)_ 8.35359891016464992e-05 -Plasma_electron_Debye_length_at_point_383________________________________ (len_plasma_debye_electron_profile383)_ 8.33473845106671215e-05 -Plasma_electron_Debye_length_at_point_384________________________________ (len_plasma_debye_electron_profile384)_ 8.31583843757371097e-05 -Plasma_electron_Debye_length_at_point_385________________________________ (len_plasma_debye_electron_profile385)_ 8.29690004463044090e-05 -Plasma_electron_Debye_length_at_point_386________________________________ (len_plasma_debye_electron_profile386)_ 8.27792449468091617e-05 -Plasma_electron_Debye_length_at_point_387________________________________ (len_plasma_debye_electron_profile387)_ 8.25891305942484736e-05 -Plasma_electron_Debye_length_at_point_388________________________________ (len_plasma_debye_electron_profile388)_ 8.23986706164601832e-05 -Plasma_electron_Debye_length_at_point_389________________________________ (len_plasma_debye_electron_profile389)_ 8.22078787711598652e-05 -Plasma_electron_Debye_length_at_point_390________________________________ (len_plasma_debye_electron_profile390)_ 8.20167693657672842e-05 -Plasma_electron_Debye_length_at_point_391________________________________ (len_plasma_debye_electron_profile391)_ 8.18253572780613535e-05 -Plasma_electron_Debye_length_at_point_392________________________________ (len_plasma_debye_electron_profile392)_ 8.16336579777039609e-05 -Plasma_electron_Debye_length_at_point_393________________________________ (len_plasma_debye_electron_profile393)_ 8.14416875486762584e-05 -Plasma_electron_Debye_length_at_point_394________________________________ (len_plasma_debye_electron_profile394)_ 8.12494627126731842e-05 -Plasma_electron_Debye_length_at_point_395________________________________ (len_plasma_debye_electron_profile395)_ 8.10570008535053022e-05 -Plasma_electron_Debye_length_at_point_396________________________________ (len_plasma_debye_electron_profile396)_ 8.08643200425594472e-05 -Plasma_electron_Debye_length_at_point_397________________________________ (len_plasma_debye_electron_profile397)_ 8.06714390653737401e-05 -Plasma_electron_Debye_length_at_point_398________________________________ (len_plasma_debye_electron_profile398)_ 8.04783774493854516e-05 -Plasma_electron_Debye_length_at_point_399________________________________ (len_plasma_debye_electron_profile399)_ 8.02851554929147896e-05 -Plasma_electron_Debye_length_at_point_400________________________________ (len_plasma_debye_electron_profile400)_ 8.00917942954506364e-05 -Plasma_electron_Debye_length_at_point_401________________________________ (len_plasma_debye_electron_profile401)_ 7.98983157893107027e-05 -Plasma_electron_Debye_length_at_point_402________________________________ (len_plasma_debye_electron_profile402)_ 7.97047427727513267e-05 -Plasma_electron_Debye_length_at_point_403________________________________ (len_plasma_debye_electron_profile403)_ 7.95110989446096042e-05 -Plasma_electron_Debye_length_at_point_404________________________________ (len_plasma_debye_electron_profile404)_ 7.93174089405646114e-05 -Plasma_electron_Debye_length_at_point_405________________________________ (len_plasma_debye_electron_profile405)_ 7.91236983711119789e-05 -Plasma_electron_Debye_length_at_point_406________________________________ (len_plasma_debye_electron_profile406)_ 7.89299938613528378e-05 -Plasma_electron_Debye_length_at_point_407________________________________ (len_plasma_debye_electron_profile407)_ 7.87363230927055842e-05 -Plasma_electron_Debye_length_at_point_408________________________________ (len_plasma_debye_electron_profile408)_ 7.85427148466568927e-05 -Plasma_electron_Debye_length_at_point_409________________________________ (len_plasma_debye_electron_profile409)_ 7.83491990506792374e-05 -Plasma_electron_Debye_length_at_point_410________________________________ (len_plasma_debye_electron_profile410)_ 7.81558068264496717e-05 -Plasma_electron_Debye_length_at_point_411________________________________ (len_plasma_debye_electron_profile411)_ 7.79625705405185534e-05 -Plasma_electron_Debye_length_at_point_412________________________________ (len_plasma_debye_electron_profile412)_ 7.77695238575868602e-05 -Plasma_electron_Debye_length_at_point_413________________________________ (len_plasma_debye_electron_profile413)_ 7.75767017965662176e-05 -Plasma_electron_Debye_length_at_point_414________________________________ (len_plasma_debye_electron_profile414)_ 7.73841407896094254e-05 -Plasma_electron_Debye_length_at_point_415________________________________ (len_plasma_debye_electron_profile415)_ 7.71918787443170448e-05 -Plasma_electron_Debye_length_at_point_416________________________________ (len_plasma_debye_electron_profile416)_ 7.69999551093437592e-05 -Plasma_electron_Debye_length_at_point_417________________________________ (len_plasma_debye_electron_profile417)_ 7.68084109436493627e-05 -Plasma_electron_Debye_length_at_point_418________________________________ (len_plasma_debye_electron_profile418)_ 7.66172889896621313e-05 -Plasma_electron_Debye_length_at_point_419________________________________ (len_plasma_debye_electron_profile419)_ 7.64266337506493203e-05 -Plasma_electron_Debye_length_at_point_420________________________________ (len_plasma_debye_electron_profile420)_ 7.62364915726176196e-05 -Plasma_electron_Debye_length_at_point_421________________________________ (len_plasma_debye_electron_profile421)_ 7.60469107311009226e-05 -Plasma_electron_Debye_length_at_point_422________________________________ (len_plasma_debye_electron_profile422)_ 7.58579415232288226e-05 -Plasma_electron_Debye_length_at_point_423________________________________ (len_plasma_debye_electron_profile423)_ 7.56696363655127855e-05 -Plasma_electron_Debye_length_at_point_424________________________________ (len_plasma_debye_electron_profile424)_ 7.54820498978336880e-05 -Plasma_electron_Debye_length_at_point_425________________________________ (len_plasma_debye_electron_profile425)_ 7.52952390941703689e-05 -Plasma_electron_Debye_length_at_point_426________________________________ (len_plasma_debye_electron_profile426)_ 7.51092633806704790e-05 -Plasma_electron_Debye_length_at_point_427________________________________ (len_plasma_debye_electron_profile427)_ 7.49241847617367426e-05 -Plasma_electron_Debye_length_at_point_428________________________________ (len_plasma_debye_electron_profile428)_ 7.47400679548840355e-05 -Plasma_electron_Debye_length_at_point_429________________________________ (len_plasma_debye_electron_profile429)_ 7.45569805352172527e-05 -Plasma_electron_Debye_length_at_point_430________________________________ (len_plasma_debye_electron_profile430)_ 7.43749930904899590e-05 -Plasma_electron_Debye_length_at_point_431________________________________ (len_plasma_debye_electron_profile431)_ 7.41941793878304244e-05 -Plasma_electron_Debye_length_at_point_432________________________________ (len_plasma_debye_electron_profile432)_ 7.40146165533708171e-05 -Plasma_electron_Debye_length_at_point_433________________________________ (len_plasma_debye_electron_profile433)_ 7.38363852661877293e-05 -Plasma_electron_Debye_length_at_point_434________________________________ (len_plasma_debye_electron_profile434)_ 7.36595699681668280e-05 -Plasma_electron_Debye_length_at_point_435________________________________ (len_plasma_debye_electron_profile435)_ 7.34842590916437319e-05 -Plasma_electron_Debye_length_at_point_436________________________________ (len_plasma_debye_electron_profile436)_ 7.33105453069583893e-05 -Plasma_electron_Debye_length_at_point_437________________________________ (len_plasma_debye_electron_profile437)_ 7.31385257923977293e-05 -Plasma_electron_Debye_length_at_point_438________________________________ (len_plasma_debye_electron_profile438)_ 7.29683025294074737e-05 -Plasma_electron_Debye_length_at_point_439________________________________ (len_plasma_debye_electron_profile439)_ 7.27999826264389761e-05 -Plasma_electron_Debye_length_at_point_440________________________________ (len_plasma_debye_electron_profile440)_ 7.26336786753858357e-05 -Plasma_electron_Debye_length_at_point_441________________________________ (len_plasma_debye_electron_profile441)_ 7.24695091452793363e-05 -Plasma_electron_Debye_length_at_point_442________________________________ (len_plasma_debye_electron_profile442)_ 7.23075988187857062e-05 -Plasma_electron_Debye_length_at_point_443________________________________ (len_plasma_debye_electron_profile443)_ 7.21480792781236042e-05 -Plasma_electron_Debye_length_at_point_444________________________________ (len_plasma_debye_electron_profile444)_ 7.19910894483543994e-05 -Plasma_electron_Debye_length_at_point_445________________________________ (len_plasma_debye_electron_profile445)_ 7.18367762076615492e-05 -Plasma_electron_Debye_length_at_point_446________________________________ (len_plasma_debye_electron_profile446)_ 7.16852950763319691e-05 -Plasma_electron_Debye_length_at_point_447________________________________ (len_plasma_debye_electron_profile447)_ 7.15368109988114969e-05 -Plasma_electron_Debye_length_at_point_448________________________________ (len_plasma_debye_electron_profile448)_ 7.13914992366143777e-05 -Plasma_electron_Debye_length_at_point_449________________________________ (len_plasma_debye_electron_profile449)_ 7.12495463942754143e-05 -Plasma_electron_Debye_length_at_point_450________________________________ (len_plasma_debye_electron_profile450)_ 7.11111516062985235e-05 -Plasma_electron_Debye_length_at_point_451________________________________ (len_plasma_debye_electron_profile451)_ 7.09765279206840216e-05 -Plasma_electron_Debye_length_at_point_452________________________________ (len_plasma_debye_electron_profile452)_ 7.08459039248391444e-05 -Plasma_electron_Debye_length_at_point_453________________________________ (len_plasma_debye_electron_profile453)_ 7.07195256735669841e-05 -Plasma_electron_Debye_length_at_point_454________________________________ (len_plasma_debye_electron_profile454)_ 7.05976589979987504e-05 -Plasma_electron_Debye_length_at_point_455________________________________ (len_plasma_debye_electron_profile455)_ 7.04805923012405140e-05 -Plasma_electron_Debye_length_at_point_456________________________________ (len_plasma_debye_electron_profile456)_ 7.03686399849964497e-05 -Plasma_electron_Debye_length_at_point_457________________________________ (len_plasma_debye_electron_profile457)_ 7.02621467076721328e-05 -Plasma_electron_Debye_length_at_point_458________________________________ (len_plasma_debye_electron_profile458)_ 7.01614927586346988e-05 -Plasma_electron_Debye_length_at_point_459________________________________ (len_plasma_debye_electron_profile459)_ 7.00671009627597372e-05 -Plasma_electron_Debye_length_at_point_460________________________________ (len_plasma_debye_electron_profile460)_ 6.99794457348147555e-05 -Plasma_electron_Debye_length_at_point_461________________________________ (len_plasma_debye_electron_profile461)_ 6.98990652412500950e-05 -Plasma_electron_Debye_length_at_point_462________________________________ (len_plasma_debye_electron_profile462)_ 6.98265782074655820e-05 -Plasma_electron_Debye_length_at_point_463________________________________ (len_plasma_debye_electron_profile463)_ 6.97627079577592299e-05 -Plasma_electron_Debye_length_at_point_464________________________________ (len_plasma_debye_electron_profile464)_ 6.97083182930304863e-05 -Plasma_electron_Debye_length_at_point_465________________________________ (len_plasma_debye_electron_profile465)_ 6.96644700063507361e-05 -Plasma_electron_Debye_length_at_point_466________________________________ (len_plasma_debye_electron_profile466)_ 6.96325164803026042e-05 -Plasma_electron_Debye_length_at_point_467________________________________ (len_plasma_debye_electron_profile467)_ 6.96142822175492717e-05 -Plasma_electron_Debye_length_at_point_468________________________________ (len_plasma_debye_electron_profile468)_ 6.96124498475658243e-05 -Plasma_electron_Debye_length_at_point_469________________________________ (len_plasma_debye_electron_profile469)_ 6.96316483943264957e-05 -Plasma_electron_Debye_length_at_point_470________________________________ (len_plasma_debye_electron_profile470)_ 6.96851169104052064e-05 -Plasma_electron_Debye_length_at_point_471________________________________ (len_plasma_debye_electron_profile471)_ 6.90105676787827976e-05 -Plasma_electron_Debye_length_at_point_472________________________________ (len_plasma_debye_electron_profile472)_ 6.83100333787088561e-05 -Plasma_electron_Debye_length_at_point_473________________________________ (len_plasma_debye_electron_profile473)_ 6.75818669471542994e-05 -Plasma_electron_Debye_length_at_point_474________________________________ (len_plasma_debye_electron_profile474)_ 6.68242672819070114e-05 -Plasma_electron_Debye_length_at_point_475________________________________ (len_plasma_debye_electron_profile475)_ 6.60352592699498431e-05 -Plasma_electron_Debye_length_at_point_476________________________________ (len_plasma_debye_electron_profile476)_ 6.52126703839077946e-05 -Plasma_electron_Debye_length_at_point_477________________________________ (len_plasma_debye_electron_profile477)_ 6.43541030925840173e-05 -Plasma_electron_Debye_length_at_point_478________________________________ (len_plasma_debye_electron_profile478)_ 6.34569021259134781e-05 -Plasma_electron_Debye_length_at_point_479________________________________ (len_plasma_debye_electron_profile479)_ 6.25181153608718156e-05 -Plasma_electron_Debye_length_at_point_480________________________________ (len_plasma_debye_electron_profile480)_ 6.15344467261008784e-05 -Plasma_electron_Debye_length_at_point_481________________________________ (len_plasma_debye_electron_profile481)_ 6.05021990198683797e-05 -Plasma_electron_Debye_length_at_point_482________________________________ (len_plasma_debye_electron_profile482)_ 5.94172038398279554e-05 -Plasma_electron_Debye_length_at_point_483________________________________ (len_plasma_debye_electron_profile483)_ 5.82747348449737349e-05 -Plasma_electron_Debye_length_at_point_484________________________________ (len_plasma_debye_electron_profile484)_ 5.70693991726911969e-05 -Plasma_electron_Debye_length_at_point_485________________________________ (len_plasma_debye_electron_profile485)_ 5.57949997995827926e-05 -Plasma_electron_Debye_length_at_point_486________________________________ (len_plasma_debye_electron_profile486)_ 5.44443586119829122e-05 -Plasma_electron_Debye_length_at_point_487________________________________ (len_plasma_debye_electron_profile487)_ 5.30090853557771747e-05 -Plasma_electron_Debye_length_at_point_488________________________________ (len_plasma_debye_electron_profile488)_ 5.14792704629713952e-05 -Plasma_electron_Debye_length_at_point_489________________________________ (len_plasma_debye_electron_profile489)_ 4.98430682279795442e-05 -Plasma_electron_Debye_length_at_point_490________________________________ (len_plasma_debye_electron_profile490)_ 4.80861176579786223e-05 -Plasma_electron_Debye_length_at_point_491________________________________ (len_plasma_debye_electron_profile491)_ 4.61907152505776475e-05 -Plasma_electron_Debye_length_at_point_492________________________________ (len_plasma_debye_electron_profile492)_ 4.41345941947911296e-05 -Plasma_electron_Debye_length_at_point_493________________________________ (len_plasma_debye_electron_profile493)_ 4.18890505664594448e-05 -Plasma_electron_Debye_length_at_point_494________________________________ (len_plasma_debye_electron_profile494)_ 3.94159253648557201e-05 -Plasma_electron_Debye_length_at_point_495________________________________ (len_plasma_debye_electron_profile495)_ 3.66624406358429807e-05 -Plasma_electron_Debye_length_at_point_496________________________________ (len_plasma_debye_electron_profile496)_ 3.35516421126149216e-05 -Plasma_electron_Debye_length_at_point_497________________________________ (len_plasma_debye_electron_profile497)_ 2.99627207755577474e-05 -Plasma_electron_Debye_length_at_point_498________________________________ (len_plasma_debye_electron_profile498)_ 2.56837165368338083e-05 -Plasma_electron_Debye_length_at_point_499________________________________ (len_plasma_debye_electron_profile499)_ 2.02653264561351484e-05 -Plasma_electron_Debye_length_at_point_500________________________________ (len_plasma_debye_electron_profile500)_ 1.22513274842796539e-05 -Volume_averaged_deuteron_isotropic_toroidal_Larmor_radius_(m)____________ (radius_plasma_deuteron_toroidal_larmor_isotropic_vol_avg)_ 6.49123362592319859e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_0_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile0)_ 3.87480770795317923e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_1_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1)_ 6.49027028573659326e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_2_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile2)_ 8.32713995142581411e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_3_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile3)_ 9.83195050045687722e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_4_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile4)_ 1.11400961782584821e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_5_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile5)_ 1.23144183023823277e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_6_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile6)_ 1.33901784261400577e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_7_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile7)_ 1.43895046818618777e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_8_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile8)_ 1.53273598573964282e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_9_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile9)_ 1.62144190654043489e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_10______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile10)_ 1.70586131625685570e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_11______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile11)_ 1.78660240190157038e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_12______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile12)_ 1.86414361302889714e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_13______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile13)_ 1.93886932273926540e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_14______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile14)_ 2.01109380253629115e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_15______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile15)_ 2.08107787543565558e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_16______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile16)_ 2.14904080728840589e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_17______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile17)_ 2.21516900108609163e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_18______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile18)_ 2.27962248585723446e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_19______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile19)_ 2.34253984647987039e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_20______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile20)_ 2.40404203067931576e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_21______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile21)_ 2.46423532841301071e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_22______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile22)_ 2.52321373573770975e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_23______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile23)_ 2.58106084972807787e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_24______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile24)_ 2.63785140460683293e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_25______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile25)_ 2.69365252823531741e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_26______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile26)_ 2.74852477838355034e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_27______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile27)_ 2.80252300525187350e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_28______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile28)_ 2.85569707297102585e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_29______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile29)_ 2.90809246901492079e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_30______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile30)_ 2.95975082068686496e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_31______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile31)_ 2.96460353910183837e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_32______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile32)_ 2.97090096988885614e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_33______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile33)_ 2.97808728539111084e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_34______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile34)_ 2.98597044738840639e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_35______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile35)_ 2.99444018127197282e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_36______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile36)_ 3.00342208242399379e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_37______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile37)_ 3.01286134179145704e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_38______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile38)_ 3.02271525900886170e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_39______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile39)_ 3.03294924400917014e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_40______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile40)_ 3.04353445982039538e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_41______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile41)_ 3.05444633119187356e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_42______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile42)_ 3.06566354714672001e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_43______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile43)_ 3.07716736675236937e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_44______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile44)_ 3.08894111812528602e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_45______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile45)_ 3.10096982578090315e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_46______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile46)_ 3.11323992894505745e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_47______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile47)_ 3.12573906187300693e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_48______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile48)_ 3.13845588062218548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_49______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile49)_ 3.15137992476939533e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_50______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile50)_ 3.16450150432608665e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_51______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile51)_ 3.17781160688897658e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_52______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile52)_ 3.19130182092871488e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_53______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile53)_ 3.20496427001033639e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_54______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile54)_ 3.21879155897765662e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_55______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile55)_ 3.23277672625141808e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_56______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile56)_ 3.24691320335322676e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_57______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile57)_ 3.26119478056064241e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_58______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile58)_ 3.27561557554979874e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_59______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile59)_ 3.29017000704886521e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_60______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile60)_ 3.30485277103906424e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_61______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile61)_ 3.31965881960038199e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_62______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile62)_ 3.33458334259723651e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_63______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile63)_ 3.34962175057137903e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_64______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile64)_ 3.36476966000008896e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_65______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile65)_ 3.38002287908696457e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_66______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile66)_ 3.39537739665619204e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_67______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile67)_ 3.41082936951695890e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_68______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile68)_ 3.42637511367306418e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_69______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile69)_ 3.44201109407665014e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_70______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile70)_ 3.45773391632745418e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_71______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile71)_ 3.47354031930966574e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_72______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile72)_ 3.48942716708382488e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_73______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile73)_ 3.50539144290406982e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_74______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile74)_ 3.52143024286964918e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_75______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile75)_ 3.53754076991244460e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_76______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile76)_ 3.55372032885763276e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_77______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile77)_ 3.56996632124671190e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_78______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile78)_ 3.58627624051386209e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_79______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile79)_ 3.60264766814393129e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_80______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile80)_ 3.61907826893297004e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_81______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile81)_ 3.63556578795836164e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_82______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile82)_ 3.65210804622280926e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_83______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile83)_ 3.66870293782265832e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_84______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile84)_ 3.68534842659576367e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_85______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile85)_ 3.70204254318003047e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_86______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile86)_ 3.71878338193136395e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_87______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile87)_ 3.73556909889171448e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_88______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile88)_ 3.75239790837306793e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_89______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile89)_ 3.76926808145445743e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_90______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile90)_ 3.78617794294907077e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_91______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile91)_ 3.80312586983012554e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_92______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile92)_ 3.82011028899172708e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_93______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile93)_ 3.83712967511192719e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_94______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile94)_ 3.85418254917501346e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_95______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile95)_ 3.87126747635889185e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_96______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile96)_ 3.88838306462741890e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_97______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile97)_ 3.90552796295602850e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_98______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile98)_ 3.92270086006235499e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_99______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile99)_ 3.93990048245936291e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_100_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile100)_ 3.95712559382679560e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_101_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile101)_ 3.97437499274614064e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_102_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile102)_ 3.99164751227577309e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_103_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile103)_ 4.00894201834594167e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_104_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile104)_ 4.02625740869785517e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_105_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile105)_ 4.04359261153162518e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_106_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile106)_ 4.06094658478633672e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_107_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile107)_ 4.07831831498486810e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_108_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile108)_ 4.09570681618978520e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_109_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile109)_ 4.11311112911532436e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_110_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile110)_ 4.13053032036956192e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_111_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile111)_ 4.14796348122008825e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_112_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile112)_ 4.16540972714396669e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_113_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile113)_ 4.18286819696863602e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_114_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile114)_ 4.20033805193384662e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_115_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile115)_ 4.21781847497545558e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_116_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile116)_ 4.23530867025037443e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_117_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile117)_ 4.25280786205053940e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_118_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile118)_ 4.27031529480843917e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_119_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile119)_ 4.28783023152939837e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_120_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile120)_ 4.30535195415947865e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_121_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile121)_ 4.32287976222335384e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_122_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile122)_ 4.34041297281952555e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_123_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile123)_ 4.35795091987084462e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_124_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile124)_ 4.37549295325132242e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_125_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile125)_ 4.39303843887169174e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_126_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile126)_ 4.41058675793423900e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_127_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile127)_ 4.42813730640078361e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_128_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile128)_ 4.44568949451390645e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_129_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile129)_ 4.46324274666074026e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_130_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile130)_ 4.48079650046063430e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_131_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile131)_ 4.49835020693272521e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_132_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile132)_ 4.51590332948765237e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_133_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile133)_ 4.53345534417272204e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_134_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile134)_ 4.55100573874515912e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_135_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile135)_ 4.56855401286020667e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_136_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile136)_ 4.58609967711489860e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_137_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile137)_ 4.60364225324616950e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_138_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile138)_ 4.62118127353956885e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_139_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile139)_ 4.63871628066182557e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_140_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile140)_ 4.65624682719145699e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_141_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile141)_ 4.67377247559172624e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_142_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile142)_ 4.69129279757697030e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_143_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile143)_ 4.70880737411649188e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_144_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile144)_ 4.72631579518003383e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_145_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile145)_ 4.74381765920670832e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_146_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile146)_ 4.76131257324954697e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_147_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile147)_ 4.77880015245265785e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_148_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile148)_ 4.79628001985764503e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_149_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile149)_ 4.81375180629911581e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_150_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile150)_ 4.83121515017413423e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_151_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile151)_ 4.84866969698053395e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_152_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile152)_ 4.86611509947946531e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_153_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile153)_ 4.88355101741049392e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_154_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile154)_ 4.90097711693483762e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_155_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile155)_ 4.91839307120900231e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_156_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile156)_ 4.93579855921836425e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_157_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile157)_ 4.95319326639823490e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_158_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile158)_ 4.97057688430054857e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_159_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile159)_ 4.98794911007565712e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_160_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile160)_ 5.00530964682173451e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_161_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile161)_ 5.02265820288290421e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_162_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile162)_ 5.03999449218126439e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_163_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile163)_ 5.05731823398206971e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_164_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile164)_ 5.07462915243264787e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_165_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile165)_ 5.09192697671080260e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_166_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile166)_ 5.10921144096454331e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_167_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile167)_ 5.12648228381724479e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_168_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile168)_ 5.14373924889397708e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_169_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile169)_ 5.16098208377085456e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_170_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile170)_ 5.17821054067058549e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_171_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile171)_ 5.19542437610007179e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_172_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile172)_ 5.21262335051283533e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_173_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile173)_ 5.22980722850977832e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_174_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile174)_ 5.24697577858711673e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_175_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile175)_ 5.26412877301027718e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_176_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile176)_ 5.28126598773046713e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_177_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile177)_ 5.29838720254778572e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_178_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile178)_ 5.31549220043703481e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_179_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile179)_ 5.33258076814305954e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_180_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile180)_ 5.34965269544930393e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_181_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile181)_ 5.36670777575310766e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_182_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile182)_ 5.38374580533866262e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_183_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile183)_ 5.40076658377050631e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_184_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile184)_ 5.41776991351575459e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_185_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile185)_ 5.43475560011519396e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_186_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile186)_ 5.45172345184936381e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_187_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile187)_ 5.46867327991122035e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_188_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile188)_ 5.48560489827622493e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_189_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile189)_ 5.50251812327284644e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_190_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile190)_ 5.51941277423957915e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_191_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile191)_ 5.53628867281560130e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_192_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile192)_ 5.55314564297737078e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_193_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile193)_ 5.56998351155447383e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_194_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile194)_ 5.58680210730606776e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_195_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile195)_ 5.60360126147864488e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_196_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile196)_ 5.62038080738523540e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_197_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile197)_ 5.63714058080257065e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_198_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile198)_ 5.65388041939356763e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_199_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile199)_ 5.67060016298643037e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_200_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile200)_ 5.68729965341663139e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_201_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile201)_ 5.70397873446923474e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_202_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile202)_ 5.72063725190087059e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_203_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile203)_ 5.73727505334357263e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_204_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile204)_ 5.75389198828837357e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_205_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile205)_ 5.77048790789232938e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_206_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile206)_ 5.78706266521923293e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_207_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile207)_ 5.80361611487084216e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_208_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile208)_ 5.82014811336540976e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_209_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile209)_ 5.83665851845716500e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_210_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile210)_ 5.85314718984845678e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_211_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile211)_ 5.86961398870633651e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_212_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile212)_ 5.88605877747519577e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_213_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile213)_ 5.90248142039212411e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_214_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile214)_ 5.91888178283159639e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_215_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile215)_ 5.93525973184028631e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_216_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile216)_ 5.95161513569786305e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_217_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile217)_ 5.96794786394631502e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_218_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile218)_ 5.98425778761292604e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_219_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile219)_ 6.00054477887090095e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_220_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile220)_ 6.01680871110822114e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_221_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile221)_ 6.03304945909280584e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_222_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile222)_ 6.04926689863528877e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_223_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile223)_ 6.06546090665872895e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_224_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile224)_ 6.08163136136425069e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_225_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile225)_ 6.09777814193436692e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_226_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile226)_ 6.11390112871846615e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_227_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile227)_ 6.13000020312950977e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_228_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile228)_ 6.14607524734974570e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_229_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile229)_ 6.16212614493848523e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_230_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile230)_ 6.17815278013533406e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_231_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile231)_ 6.19415503833365723e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_232_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile232)_ 6.21013280567296252e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_233_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile233)_ 6.22608596937784201e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_234_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile234)_ 6.24201441746606144e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_235_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile235)_ 6.25791803885834223e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_236_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile236)_ 6.27379672324030781e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_237_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile237)_ 6.28965036115338751e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_238_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile238)_ 6.30547884408533092e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_239_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile239)_ 6.32128206404804216e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_240_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile240)_ 6.33705991410564006e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_241_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile241)_ 6.35281228778230948e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_242_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile242)_ 6.36853907964665678e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_243_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile243)_ 6.38424018468301650e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_244_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile244)_ 6.39991549878070245e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_245_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile245)_ 6.41556491839028516e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_246_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile246)_ 6.43118834070982234e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_247_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile247)_ 6.44678566343674826e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_248_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile248)_ 6.46235678512367163e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_249_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile249)_ 6.47790160477988274e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_250_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile250)_ 6.49342002213287774e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_251_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile251)_ 6.50891193726879473e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_252_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile252)_ 6.52437725113805180e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_253_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile253)_ 6.53981586498957740e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_254_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile254)_ 6.55522768091354284e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_255_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile255)_ 6.57061260122047876e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_256_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile256)_ 6.58597052887130701e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_257_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile257)_ 6.60130136749407289e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_258_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile258)_ 6.61660502089610279e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_259_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile259)_ 6.63188139354939886e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_260_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile260)_ 6.64713039051416984e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_261_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile261)_ 6.66235191695248741e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_262_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile262)_ 6.67754587887393978e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_263_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile263)_ 6.69271218246295010e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_264_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile264)_ 6.70785073446966348e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_265_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile265)_ 6.72296144181819613e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_266_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile266)_ 6.73804421231300257e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_267_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile267)_ 6.75309895348524553e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_268_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile268)_ 6.76812557394937397e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_269_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile269)_ 6.78312398223189939e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_270_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile270)_ 6.79809408727298850e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_271_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile271)_ 6.81303579855571141e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_272_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile272)_ 6.82794902579048329e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_273_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile273)_ 6.84283367900778532e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_274_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile274)_ 6.85768966865058123e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_275_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile275)_ 6.87251690531528753e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_276_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile276)_ 6.88731530006626066e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_277_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile277)_ 6.90208476430620183e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_278_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile278)_ 6.91682520955477689e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_279_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile279)_ 6.93153654774433282e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_280_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile280)_ 6.94621869109073985e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_281_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile281)_ 6.96087155205682168e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_282_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile282)_ 6.97549504320547561e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_283_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile283)_ 6.99008907775240489e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_284_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile284)_ 7.00465356873798510e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_285_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile285)_ 7.01918842967207569e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_286_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile286)_ 7.03369357429510511e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_287_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile287)_ 7.04816891657860344e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_288_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile288)_ 7.06261437061562330e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_289_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile289)_ 7.07702985074998726e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_290_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile290)_ 7.09141527163180060e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_291_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile291)_ 7.10577054796133079e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_292_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile292)_ 7.12009559491131368e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_293_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile293)_ 7.13439032739471030e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_294_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile294)_ 7.14865466107294199e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_295_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile295)_ 7.16288851118475085e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_296_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile296)_ 7.17709179368186938e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_297_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile297)_ 7.19126442442454168e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_298_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile298)_ 7.20540631929253526e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_299_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile299)_ 7.21951739471581987e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_300_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile300)_ 7.23359756692628069e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_301_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile301)_ 7.24764675252494769e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_302_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile302)_ 7.26166486806297494e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_303_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile303)_ 7.27565183046227984e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_304_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile304)_ 7.28960755659687366e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_305_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile305)_ 7.30353196356745872e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_306_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile306)_ 7.31742496844725501e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_307_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile307)_ 7.33128648875659272e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_308_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile308)_ 7.34511644168083910e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_309_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile309)_ 7.35891474494539122e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_310_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile310)_ 7.37268131608857617e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_311_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile311)_ 7.38641607284494951e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_312_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile312)_ 7.40011893314619900e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_313_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile313)_ 7.41378981488588582e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_314_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile314)_ 7.42742863615682841e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_315_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile315)_ 7.44103531499783720e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_316_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile316)_ 7.45460976966730044e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_317_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile317)_ 7.46815191844445517e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_318_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile318)_ 7.48166167970317451e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_319_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile319)_ 7.49513897184049538e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_320_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile320)_ 7.50858371342286342e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_321_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile321)_ 7.52199582296962134e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_322_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile322)_ 7.53537521911735748e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_323_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile323)_ 7.54872182060288208e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_324_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile324)_ 7.56203554608318122e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_325_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile325)_ 7.57531631448076469e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_326_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile326)_ 7.58856404460440948e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_327_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile327)_ 7.60177865531337822e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_328_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile328)_ 7.61496006564521717e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_329_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile329)_ 7.62810819445498747e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_330_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile330)_ 7.64122296083259451e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_331_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile331)_ 7.65430428385061642e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_332_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile332)_ 7.66735208260165262e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_333_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile333)_ 7.68036627614527602e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_334_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile334)_ 7.69334678361766316e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_335_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile335)_ 7.70629352432304193e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_336_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile336)_ 7.71920641728310840e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_337_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile337)_ 7.73208538178026244e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_338_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile338)_ 7.74493033706964012e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_339_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile339)_ 7.75774120236222275e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_340_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile340)_ 7.77051789682603727e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_341_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile341)_ 7.78326033987612916e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_342_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile342)_ 7.79596845067019768e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_343_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile343)_ 7.80864214843473257e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_344_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile344)_ 7.82128135255630644e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_345_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile345)_ 7.83388598220375286e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_346_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile346)_ 7.84645595674429534e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_347_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile347)_ 7.85899119525758881e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_348_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile348)_ 7.87149161727637020e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_349_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile349)_ 7.88395714170539962e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_350_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile350)_ 7.89638768810303933e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_351_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile351)_ 7.90878317545606543e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_352_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile352)_ 7.92114352304632702e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_353_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile353)_ 7.93346865012724105e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_354_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile354)_ 7.94575847574462667e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_355_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile355)_ 7.95801291911633381e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_356_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile356)_ 7.97023189938094422e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_357_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile357)_ 7.98241533552676054e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_358_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile358)_ 7.99456314675330883e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_359_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile359)_ 8.00667525202182657e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_360_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile360)_ 8.01875157036268174e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_361_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile361)_ 8.03079202080431327e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_362_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile362)_ 8.04279652219407233e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_363_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile363)_ 8.05476499352357489e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_364_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile364)_ 8.06669735365943968e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_365_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile365)_ 8.07859352130826242e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_366_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile366)_ 8.09045341546804110e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_367_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile367)_ 8.10227695474451635e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_368_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile368)_ 8.11406405778455214e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_369_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile369)_ 8.12581464347530980e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_370_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile370)_ 8.13752863018847410e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_371_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile371)_ 8.14920593668208744e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_372_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile372)_ 8.16084648130871275e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_373_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile373)_ 8.17245018264699946e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_374_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile374)_ 8.18401695907019014e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_375_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile375)_ 8.19554672892719091e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_376_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile376)_ 8.20703941043538117e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_377_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile377)_ 8.21849492200590719e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_378_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile378)_ 8.22991318175797862e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_379_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile379)_ 8.24129410773600038e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_380_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile380)_ 8.25263761809069858e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_381_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile381)_ 8.26394363084567880e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_382_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile382)_ 8.27521206380810864e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_383_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile383)_ 8.28644283505635716e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_384_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile384)_ 8.29763586212946963e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_385_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile385)_ 8.30879106294755976e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_386_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile386)_ 8.31990835518155863e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_387_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile387)_ 8.33098765643430945e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_388_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile388)_ 8.34202888407901792e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_389_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile389)_ 8.35303195569294527e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_390_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile390)_ 8.36399678869746525e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_391_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile391)_ 8.37492330039486983e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_392_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile392)_ 8.38581140789689157e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_393_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile393)_ 8.39666102845031820e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_394_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile394)_ 8.40747207907677034e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_395_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile395)_ 8.41824447691642309e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_396_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile396)_ 8.42897813870509445e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_397_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile397)_ 8.43967298137081497e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_398_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile398)_ 8.45032892161918549e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_399_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile399)_ 8.46094587618693821e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_400_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile400)_ 8.47152376164389369e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_401_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile401)_ 8.48206249439353681e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_402_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile402)_ 8.49256199092673393e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_403_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile403)_ 8.50302216758743422e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_404_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile404)_ 8.51344294062750771e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_405_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile405)_ 8.52382422609879870e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_406_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile406)_ 8.53416594010697818e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_407_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile407)_ 8.54446799859506952e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_408_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile408)_ 8.55473031752500106e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_409_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile409)_ 8.56495281260670135e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_410_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile410)_ 8.57513539947959459e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_411_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile411)_ 8.58527799383997092e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_412_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile412)_ 8.59538051104308601e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_413_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile413)_ 8.60544286655650151e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_414_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile414)_ 8.61546497576142802e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_415_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile415)_ 8.62544675371753645e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_416_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile416)_ 8.63538811558031867e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_417_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile417)_ 8.64528897632971423e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_418_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile418)_ 8.65514925087933033e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_419_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile419)_ 8.66496885398622754e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_420_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile420)_ 8.67474770045100103e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_421_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile421)_ 8.68448570471886359e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_422_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile422)_ 8.69418278133390898e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_423_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile423)_ 8.70383884464904709e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_424_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile424)_ 8.71345380897171375e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_425_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile425)_ 8.72302758852798975e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_426_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile426)_ 8.73256009713560544e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_427_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile427)_ 8.74205124900445489e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_428_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile428)_ 8.75150095780947816e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_429_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile429)_ 8.76090913729114448e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_430_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile430)_ 8.77027570109218703e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_431_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile431)_ 8.77960056270327312e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_432_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile432)_ 8.78888363555439117e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_433_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile433)_ 8.79812483281467578e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_434_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile434)_ 8.80732406766603429e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_435_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile435)_ 8.81648125326715132e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_436_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile436)_ 8.82559630238889149e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_437_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile437)_ 8.83466912796180767e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_438_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile438)_ 8.84369964260201154e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_439_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile439)_ 8.85268775899473830e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_440_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile440)_ 8.86163338941967776e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_441_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile441)_ 8.87053644635407354e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_442_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile442)_ 8.87939684192473599e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_443_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile443)_ 8.88821448825547963e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_444_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile444)_ 8.89698929733939887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_445_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile445)_ 8.90572118109393164e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_446_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile446)_ 8.91441005110461121e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_447_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile447)_ 8.92305581900970646e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_448_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile448)_ 8.93165839631732301e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_449_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile449)_ 8.94021769442387287e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_450_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile450)_ 8.94873362450407037e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_451_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile451)_ 8.95720609758428842e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_452_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile452)_ 8.96563502487321244e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_453_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile453)_ 8.97402031689887268e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_454_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile454)_ 8.98236188466574638e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_455_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile455)_ 8.99065963853416805e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_456_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile456)_ 8.99891348915766824e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_457_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile457)_ 9.00712334672915810e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_458_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile458)_ 9.01528912147749398e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_459_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile459)_ 9.02341072350199176e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_460_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile460)_ 9.03148806266183130e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_461_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile461)_ 9.03952104887086744e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_462_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile462)_ 9.04750959165518190e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_463_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile463)_ 9.05545360065089684e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_464_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile464)_ 9.06335298517985111e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_465_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile465)_ 9.07120765454479984e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_466_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile466)_ 9.07901751793717231e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_467_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile467)_ 9.08678248421501862e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_468_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile468)_ 9.09450246232813841e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_469_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile469)_ 9.10217736083704723e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_470_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile470)_ 9.10980708850511051e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_471_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile471)_ 9.11739155365044913e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_472_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile472)_ 9.12493066466433557e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_473_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile473)_ 9.13242432958474848e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_474_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile474)_ 9.13987245648555276e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_475_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile475)_ 9.14727495321670733e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_476_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile476)_ 9.15463172747816266e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_477_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile477)_ 9.16194268687544992e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_478_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile478)_ 9.16920773897540037e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_479_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile479)_ 9.17642679093380251e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_480_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile480)_ 9.18359974990428339e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_481_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile481)_ 9.19072652294523548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_482_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile482)_ 9.19780701687046912e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_483_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile483)_ 9.20484113841658902e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_484_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile484)_ 9.21182879420558674e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_485_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile485)_ 9.21876989059511667e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_486_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile486)_ 9.22566433388349698e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_487_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile487)_ 9.23251203021608659e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_488_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile488)_ 9.23931288551008492e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_489_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile489)_ 9.24606680569738451e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_490_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile490)_ 9.25277369631241457e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_491_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile491)_ 9.25943346295982420e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_492_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile492)_ 9.26604601097697975e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_493_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile493)_ 9.27261124565855605e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_494_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile494)_ 9.27912907210611503e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_495_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile495)_ 9.28559939507717265e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_496_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile496)_ 9.29202211945443987e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_497_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile497)_ 9.29839714981330404e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_498_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile498)_ 9.30472439055271376e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_499_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile499)_ 9.31100374606429367e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_500_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile500)_ 9.31723512044937800e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_501_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile501)_ 9.32344247229511397e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_502_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile502)_ 9.32962575355642150e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_503_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile503)_ 9.33576082948051229e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_504_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile504)_ 9.34184760378439609e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_505_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile505)_ 9.34788597989204273e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_506_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile506)_ 9.35387586121744739e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_507_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile507)_ 9.35981715099399453e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_508_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile508)_ 9.36570975214106975e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_509_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile509)_ 9.37155356769942167e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_510_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile510)_ 9.37734850035676533e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_511_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile511)_ 9.38309445259850709e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_512_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile512)_ 9.38879132685915656e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_513_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile513)_ 9.39443902529366916e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_514_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile514)_ 9.40003745011920057e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_515_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile515)_ 9.40558650313879155e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_516_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile516)_ 9.41108608615934782e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_517_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile517)_ 9.41653610074348960e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_518_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile518)_ 9.42193644828490107e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_519_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile519)_ 9.42728703010324229e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_520_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile520)_ 9.43258774723326927e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_521_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile521)_ 9.43783850057685475e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_522_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile522)_ 9.44303919094066115e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_523_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile523)_ 9.44818971886309152e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_524_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile524)_ 9.45328998476661561e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_525_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile525)_ 9.45833988905326987e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_526_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile526)_ 9.46333933168151328e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_527_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile527)_ 9.46828821254910510e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_528_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile528)_ 9.47318643143492227e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_529_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile529)_ 9.47803388794054950e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_530_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile530)_ 9.48283048141225320e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_531_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile531)_ 9.48757611120994333e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_532_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile532)_ 9.49227067630149454e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_533_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile533)_ 9.49691407570549262e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_534_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile534)_ 9.50150620794962784e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_535_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile535)_ 9.50604697174608181e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_536_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile536)_ 9.51053626537200561e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_537_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile537)_ 9.51497398717174661e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_538_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile538)_ 9.51936003511046590e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_539_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile539)_ 9.52369430700545500e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_540_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile540)_ 9.52797670062244077e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_541_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile541)_ 9.53220711336382094e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_542_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile542)_ 9.53638544271477769e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_543_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile543)_ 9.54051158571710481e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_544_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile544)_ 9.54458543943522038e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_545_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile545)_ 9.54860690064362160e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_546_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile546)_ 9.55257586594255616e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_547_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile547)_ 9.55649223193304025e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_548_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile548)_ 9.56035589468799858e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_549_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile549)_ 9.56416675055297809e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_550_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile550)_ 9.56792469514685523e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_551_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile551)_ 9.57162962455569873e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_552_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile552)_ 9.57528143409674092e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_553_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile553)_ 9.57888001923886713e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_554_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile554)_ 9.58242527524868354e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_555_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile555)_ 9.58591709711041975e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_556_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile556)_ 9.58935537964263757e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_557_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile557)_ 9.59274001747735874e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_558_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile558)_ 9.59607090525643573e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_559_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile559)_ 9.59934793721593099e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_560_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile560)_ 9.60257100746096312e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_561_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile561)_ 9.60574000990529857e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_562_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile562)_ 9.60885483840887185e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_563_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile563)_ 9.61191538639996276e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_564_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile564)_ 9.61492154746886735e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_565_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile565)_ 9.61787321471190351e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_566_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile566)_ 9.62077028124625790e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_567_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile567)_ 9.62361263979117851e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_568_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile568)_ 9.62640018318425619e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_569_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile569)_ 9.62913280378255125e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_570_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile570)_ 9.63181039385952766e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_571_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile571)_ 9.63443284564425087e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_572_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile572)_ 9.63700005102026067e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_573_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile573)_ 9.63951190174396066e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_574_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile574)_ 9.64196828934314916e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_575_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile575)_ 9.64436910517569267e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_576_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile576)_ 9.64671424060914093e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_577_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile577)_ 9.64900358635604333e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_578_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile578)_ 9.65123703349778268e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_579_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile579)_ 9.65341447259843687e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_580_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile580)_ 9.65553579406506698e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_581_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile581)_ 9.65760088818682846e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_582_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile582)_ 9.65960964497196775e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_583_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile583)_ 9.66156195446995179e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_584_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile584)_ 9.66345770626417244e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_585_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile585)_ 9.66529678991558810e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_586_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile586)_ 9.66707909473851074e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_587_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile587)_ 9.66880450990045652e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_588_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile588)_ 9.67047292429864223e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_589_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile589)_ 9.67208422686377002e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_590_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile590)_ 9.67363830609022264e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_591_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile591)_ 9.67513505029873530e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_592_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile592)_ 9.67657434785991130e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_593_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile593)_ 9.67795608668193912e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_594_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile594)_ 9.67928015465847891e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_595_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile595)_ 9.68054643952433527e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_596_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile596)_ 9.68175482864849606e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_597_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile597)_ 9.68290520934004043e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_598_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile598)_ 9.68399746864124361e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_599_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile599)_ 9.68503149357289803e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_600_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile600)_ 9.68600717084454506e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_601_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile601)_ 9.68692438697610347e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_602_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile602)_ 9.68778302823404373e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_603_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile603)_ 9.68858298089862562e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_604_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile604)_ 9.68932413097293305e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_605_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile605)_ 9.69000636418066233e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_606_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile606)_ 9.69062956619247233e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_607_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile607)_ 9.69119362233365235e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_608_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile608)_ 9.69169841806066280e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_609_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile609)_ 9.69214383827278828e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_610_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile610)_ 9.69252976791388880e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_611_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile611)_ 9.69285609157463299e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_612_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile612)_ 9.69312269390842918e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_613_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile613)_ 9.69332945925380392e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_614_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile614)_ 9.69347627171571191e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_615_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile615)_ 9.69356301512140466e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_616_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile616)_ 9.69358957343881972e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_617_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile617)_ 9.69355583027110661e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_618_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile618)_ 9.69346166904352935e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_619_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile619)_ 9.69330697279041122e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_620_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile620)_ 9.69309162489207128e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_621_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile621)_ 9.69281550799645786e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_622_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile622)_ 9.69247850496777683e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_623_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile623)_ 9.69208049831396523e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_624_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile624)_ 9.69162137028998540e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_625_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile625)_ 9.69110100317206215e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_626_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile626)_ 9.69051927904399611e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_627_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile627)_ 9.68987607953910625e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_628_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile628)_ 9.68917128641336688e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_629_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile629)_ 9.68840478116038059e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_630_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile630)_ 9.68757644513737817e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_631_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile631)_ 9.68668615934907898e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_632_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile632)_ 9.68573380495998601e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_633_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile633)_ 9.68471926254197042e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_634_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile634)_ 9.68364241301702261e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_635_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile635)_ 9.68250313658062384e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_636_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile636)_ 9.68130131360294723e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_637_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile637)_ 9.68003682439132727e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_638_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile638)_ 9.67870954866945771e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_639_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile639)_ 9.67731936639639259e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_640_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile640)_ 9.67586615722458056e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_641_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile641)_ 9.67434980054042784e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_642_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile642)_ 9.67277017578813299e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_643_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile643)_ 9.67112716207685005e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_644_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile644)_ 9.66942063839581860e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_645_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile645)_ 9.66765048370009719e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_646_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile646)_ 9.66581657653731684e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_647_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile647)_ 9.66391879559199037e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_648_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile648)_ 9.66195701924654586e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_649_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile649)_ 9.65993112566625352e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_650_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile650)_ 9.65784099310500362e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_651_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile651)_ 9.65568649944206249e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_652_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile652)_ 9.65346752239927899e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_653_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile653)_ 9.65118393993707850e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_654_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile654)_ 9.64883562919236458e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_655_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile655)_ 9.64642246797962032e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_656_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile656)_ 9.64394433321814210e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_657_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile657)_ 9.64140110225900245e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_658_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile658)_ 9.63879265197412419e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_659_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile659)_ 9.63611885935408002e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_660_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile660)_ 9.63337960099422408e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_661_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile661)_ 9.63057475356068372e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_662_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile662)_ 9.62770419367789225e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_663_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile663)_ 9.62476779752343727e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_664_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile664)_ 9.62176544145301738e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_665_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile665)_ 9.61869700164073339e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_666_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile666)_ 9.61556235407672912e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_667_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile667)_ 9.61236137458746330e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_668_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile668)_ 9.60909393919525193e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_669_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile669)_ 9.60575992343943100e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_670_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile670)_ 9.60235920293872267e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_671_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile671)_ 9.59889165327731074e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_672_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile672)_ 9.59535714986706027e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_673_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile673)_ 9.59175556801361399e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_674_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile674)_ 9.58808678286890599e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_675_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile675)_ 9.58435066974905152e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_676_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile676)_ 9.58054710360802843e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_677_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile677)_ 9.57667595949251299e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_678_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile678)_ 9.57273711238084725e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_679_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile679)_ 9.56873043697442464e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_680_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile680)_ 9.56465580817846689e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_681_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile681)_ 9.56051310066408783e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_682_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile682)_ 9.55630218909663508e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_683_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile683)_ 9.55202294815780430e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_684_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile684)_ 9.54767525233604468e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_685_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile685)_ 9.54325897620278592e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_686_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile686)_ 9.53877399422595196e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_687_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile687)_ 9.53422018086138613e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_688_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile688)_ 9.52959741045834169e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_689_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile689)_ 9.52490555751491115e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_690_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile690)_ 9.52014449632683502e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_691_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile691)_ 9.51531410131340599e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_692_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile692)_ 9.51041424671187144e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_693_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile693)_ 9.50544480688108803e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_694_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile694)_ 9.50040565630154779e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_695_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile695)_ 9.49529666907922634e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_696_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile696)_ 9.49011771988819350e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_697_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile697)_ 9.48486868283639553e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_698_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile698)_ 9.47954943248114669e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_699_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile699)_ 9.47415984321339950e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_700_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile700)_ 9.46869978958904401e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_701_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile701)_ 9.46316914597120085e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_702_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile702)_ 9.45756778707772597e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_703_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile703)_ 9.45189558743224356e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_704_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile704)_ 9.44615242191359714e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_705_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile705)_ 9.44033816501254480e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_706_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile706)_ 9.43445269181510116e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_707_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile707)_ 9.42849587730701724e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_708_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile708)_ 9.42246759622686163e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_709_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile709)_ 9.41636772412865301e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_710_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile710)_ 9.41019613588377733e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_711_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile711)_ 9.40395270722978009e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_712_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile712)_ 9.39763731343777609e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_713_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile713)_ 9.39124983028330473e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_714_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile714)_ 9.38479013348781678e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_715_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile715)_ 9.37825809906014246e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_716_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile716)_ 9.37165360322469304e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_717_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile717)_ 9.36497652225047432e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_718_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile718)_ 9.35822673259843231e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_719_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile719)_ 9.35140411092238305e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_720_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile720)_ 9.34450853439141443e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_721_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile721)_ 9.33753987982689597e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_722_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile722)_ 9.33049802481522236e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_723_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile723)_ 9.32338284696828529e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_724_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile724)_ 9.31619422412221891e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_725_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile725)_ 9.30893203438869915e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_726_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile726)_ 9.30159615633189933e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_727_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile727)_ 9.29418646857114485e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_728_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile728)_ 9.28670285008199523e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_729_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile729)_ 9.27914518037512535e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_730_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile730)_ 9.27151333907227926e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_731_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile731)_ 9.26380720626028380e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_732_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile732)_ 9.25602666236840892e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_733_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile733)_ 9.24817158804430023e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_734_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile734)_ 9.24024186458745865e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_735_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile735)_ 9.23223737377693206e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_736_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile736)_ 9.22415799718657829e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_737_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile737)_ 9.21600361779310526e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_738_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile738)_ 9.20777411811951781e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_739_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile739)_ 9.19946938182158135e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_740_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile740)_ 9.19108929272130157e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_741_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile741)_ 9.18263373534947309e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_742_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile742)_ 9.17410259441000381e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_743_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile743)_ 9.16549575571310761e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_744_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile744)_ 9.15681310514877313e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_745_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile745)_ 9.14805452936301271e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_746_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile746)_ 9.13921991586956646e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_747_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile747)_ 9.13030915237997807e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_748_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile748)_ 9.12132212748546431e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_749_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile749)_ 9.11225873063973776e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_750_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile750)_ 9.10311885156362723e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_751_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile751)_ 9.09390238111654897e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_752_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile752)_ 9.08460921054330892e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_753_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile753)_ 9.07523923227135376e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_754_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile754)_ 9.06579233920792871e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_755_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile755)_ 9.05626842524975828e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_756_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile756)_ 9.04666738492113445e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_757_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile757)_ 9.03698911394094570e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_758_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile758)_ 9.02723350872783499e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_759_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile759)_ 9.01740046675632984e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_760_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile760)_ 9.00748988630004077e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_761_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile761)_ 8.99750166692517284e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_762_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile762)_ 8.98743570880378845e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_763_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile763)_ 8.97729191361301346e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_764_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile764)_ 8.96707018371222138e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_765_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile765)_ 8.95677042299303575e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_766_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile766)_ 8.94639253613486486e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_767_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile767)_ 8.93593642921457210e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_768_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile768)_ 8.92540200958622486e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_769_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile769)_ 8.91478918575924241e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_770_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile770)_ 8.90409786760463021e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_771_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile771)_ 8.89332796620618225e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_772_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile772)_ 8.88247939428937761e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_773_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile773)_ 8.87155206574324548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_774_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile774)_ 8.86054589621733044e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_775_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile775)_ 8.84946080244824670e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_776_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile776)_ 8.83829670327681421e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_777_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile777)_ 8.82705351878011746e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_778_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile778)_ 8.81573117070741895e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_779_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile779)_ 8.80432958264171575e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_780_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile780)_ 8.79284867974164212e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_781_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile781)_ 8.78128838918497412e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_782_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile782)_ 8.76964863994001385e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_783_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile783)_ 8.75792936267552440e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_784_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile784)_ 8.74613049026615012e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_785_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile785)_ 8.73425195756481927e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_786_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile786)_ 8.72229370131463039e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_787_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile787)_ 8.71025566066081953e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_788_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile788)_ 8.69813777683814751e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_789_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile789)_ 8.68593999314147026e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_790_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile790)_ 8.67366225558832346e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_791_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile791)_ 8.66130451214569379e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_792_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile792)_ 8.64886671371380318e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_793_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile793)_ 8.63634881338093234e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_794_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile794)_ 8.62375076671619174e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_795_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile795)_ 8.61107253250517277e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_796_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile796)_ 8.59831407171021168e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_797_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile797)_ 8.58547534849999662e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_798_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile798)_ 8.57255632970522347e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_799_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile799)_ 8.55955698538783671e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_800_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile800)_ 8.54647728850174010e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_801_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile801)_ 8.53331721520130676e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_802_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile802)_ 8.52007674488711175e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_803_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile803)_ 8.50675586037197458e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_804_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile804)_ 8.49335454787031666e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_805_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile805)_ 8.47987279710754951e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_806_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile806)_ 8.46631060158186712e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_807_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile807)_ 8.45266795816683979e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_808_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile808)_ 8.43894486800841372e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_809_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile809)_ 8.42514133595058216e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_810_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile810)_ 8.41125737119887036e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_811_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile811)_ 8.39729298650052081e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_812_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile812)_ 8.38324819957451256e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_813_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile813)_ 8.36912303235750644e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_814_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile814)_ 8.35491751097547537e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_815_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile815)_ 8.34063166685631609e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_816_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile816)_ 8.32626553575827044e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_817_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile817)_ 8.31181915845708233e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_818_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile818)_ 8.29729258097850787e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_819_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile819)_ 8.28268585436717393e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_820_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile820)_ 8.26799903523384866e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_821_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile821)_ 8.25323218552805223e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_822_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile822)_ 8.23838537315660889e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_823_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile823)_ 8.22345867141404188e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_824_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile824)_ 8.20845216014406791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_825_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile825)_ 8.19336592489025919e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_826_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile826)_ 8.17820005806953708e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_827_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile827)_ 8.16295465809127943e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_828_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile828)_ 8.14762983044666628e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_829_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile829)_ 8.13222568750084258e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_830_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile830)_ 8.11674234866828492e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_831_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile831)_ 8.10117994065628899e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_832_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile832)_ 8.08553859790767625e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_833_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile833)_ 8.06981846233665971e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_834_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile834)_ 8.05401968390808722e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_835_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile835)_ 8.03814242126041356e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_836_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile836)_ 8.02218684066702097e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_837_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile837)_ 8.00615311774352696e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_838_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile838)_ 7.99004143667785688e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_839_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile839)_ 7.97385199106924111e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_840_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile840)_ 7.95758498408556669e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_841_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile841)_ 7.94124062829081566e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_842_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile842)_ 7.92481914643916943e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_843_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile843)_ 7.90832077191562857e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_844_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile844)_ 7.89174574827698067e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_845_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile845)_ 7.87509433043828873e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_846_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile846)_ 7.85836678418947061e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_847_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile847)_ 7.84156338709574192e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_848_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile848)_ 7.82468442910918757e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_849_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile849)_ 7.80773021165395535e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_850_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile850)_ 7.79070104957549359e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_851_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile851)_ 7.77359727030625409e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_852_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile852)_ 7.75641921484544316e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_853_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile853)_ 7.73916723830816045e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_854_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile854)_ 7.72184170975581848e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_855_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile855)_ 7.70444301303501149e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_856_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile856)_ 7.68697154724856495e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_857_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile857)_ 7.66942772702576808e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_858_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile858)_ 7.65181198293930082e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_859_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile859)_ 7.63412476246121130e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_860_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile860)_ 7.61636652983905919e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_861_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile861)_ 7.59853776707317737e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_862_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile862)_ 7.58063897444998403e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_863_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile863)_ 7.56267067065650479e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_864_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile864)_ 7.54463339394034239e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_865_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile865)_ 7.52652770228355496e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_866_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile866)_ 7.50835417430458299e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_867_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile867)_ 7.49011340967044737e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_868_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile868)_ 7.47180603021059802e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_869_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile869)_ 7.45343267973690334e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_870_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile870)_ 7.43499402576954915e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_871_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile871)_ 7.41649075938312016e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_872_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile872)_ 7.39792359689873426e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_873_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile873)_ 7.37929327964487441e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_874_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile874)_ 7.36060057579917496e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_875_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile875)_ 7.34184628028805141e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_876_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile876)_ 7.32303121648504932e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_877_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile877)_ 7.30415623662754136e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_878_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile878)_ 7.28522222280900307e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_879_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile879)_ 7.26623008806830638e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_880_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile880)_ 7.24718077784503468e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_881_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile881)_ 7.22807527005186502e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_882_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile882)_ 7.20891457675880247e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_883_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile883)_ 7.18969974568284178e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_884_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile884)_ 7.17043186043405095e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_885_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile885)_ 7.15111204305479611e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_886_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile886)_ 7.13174145365473664e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_887_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile887)_ 7.11232129331937531e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_888_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile888)_ 7.09285280437500255e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_889_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile889)_ 7.07333727250862229e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_890_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile890)_ 7.05377602786617496e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_891_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile891)_ 7.03417044656994700e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_892_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile892)_ 7.01452195262640583e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_893_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile893)_ 6.99483201971456709e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_894_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile894)_ 6.97510217228910438e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_895_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile895)_ 6.95533398803513739e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_896_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile896)_ 6.93552909952576280e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_897_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile897)_ 6.91568919611631940e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_898_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile898)_ 6.89581602612223277e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_899_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile899)_ 6.87591139920577538e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_900_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile900)_ 6.85597718803123042e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_901_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile901)_ 6.83601533102503548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_902_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile902)_ 6.81602783465469920e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_903_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile903)_ 6.79601677666854045e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_904_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile904)_ 6.77598430731442096e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_905_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile905)_ 6.75593265376468657e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_906_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile906)_ 6.73586412173030145e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_907_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile907)_ 6.71578109938440835e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_908_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile908)_ 6.69568606013589470e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_909_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile909)_ 6.67558156630759358e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_910_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile910)_ 6.65547027220271970e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_911_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile911)_ 6.63535492843137040e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_912_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile912)_ 6.61523838515814654e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_913_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile913)_ 6.59512359653448548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_914_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile914)_ 6.57501362534709116e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_915_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile915)_ 6.55491164653219417e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_916_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile916)_ 6.53482095329292832e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_917_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile917)_ 6.51474496056283527e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_918_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile918)_ 6.49468721188347156e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_919_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile919)_ 6.47465138388531296e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_920_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile920)_ 6.45464129266914381e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_921_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile921)_ 6.43466089998998188e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_922_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile922)_ 6.41471432022294469e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_923_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile923)_ 6.39480582645845456e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_924_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile924)_ 6.37493985936913189e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_925_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile925)_ 6.35512103377883133e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_926_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile926)_ 6.33535414834691599e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_927_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile927)_ 6.31564419372342666e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_928_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile928)_ 6.29599636253440603e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_929_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile929)_ 6.27641606008554065e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_930_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile930)_ 6.25690891472664712e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_931_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile931)_ 6.23748079023776075e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_932_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile932)_ 6.21813779892538797e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_933_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile933)_ 6.19888631416623623e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_934_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile934)_ 6.17973298690572843e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_935_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile935)_ 6.16068476094319434e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_936_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile936)_ 6.14174889004826495e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_937_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile937)_ 6.12293295876072553e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_938_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile938)_ 6.10424490071231549e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_939_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile939)_ 6.08569302411913603e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_940_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile940)_ 6.06728603469335569e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_941_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile941)_ 6.04903306442777094e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_942_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile942)_ 6.03094370159994956e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_943_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile943)_ 6.01302802537186879e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_944_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile944)_ 5.99529664290212629e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_945_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile945)_ 5.97776073200130542e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_946_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile946)_ 5.96043208902605291e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_947_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile947)_ 5.94332318188481052e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_948_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile948)_ 5.92644721276104972e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_949_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile949)_ 5.90981818690502776e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_950_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile950)_ 5.89345099338440745e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_951_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile951)_ 5.87736149994721579e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_952_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile952)_ 5.86156666007107540e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_953_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile953)_ 5.84608464321806614e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_954_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile954)_ 5.83093498660470447e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_955_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile955)_ 5.81613877843030827e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_956_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile956)_ 5.80171888054801729e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_957_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile957)_ 5.78770020027685218e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_958_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile958)_ 5.77411003014165983e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_959_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile959)_ 5.76097847785961032e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_960_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile960)_ 5.74833901676320962e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_961_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile961)_ 5.73622921245688523e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_962_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile962)_ 5.72469169806730932e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_963_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile963)_ 5.71377552328527875e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_964_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile964)_ 5.70353808922949377e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_965_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile965)_ 5.69404803668811452e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_966_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile966)_ 5.68538980363124651e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_967_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile967)_ 5.67767134343998611e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_968_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile968)_ 5.67103855409584103e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_969_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile969)_ 5.66570659310846898e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_970_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile970)_ 5.66204803834275804e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_971_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile971)_ 5.66113348049902994e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_972_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile972)_ 5.57054994307421350e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_973_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile973)_ 5.47827601753625437e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_974_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile974)_ 5.38422464530394131e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_975_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile975)_ 5.28830083942151506e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_976_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile976)_ 5.19040063189202955e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_977_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile977)_ 5.09040983249982055e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_978_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile978)_ 4.98820256016783894e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_979_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile979)_ 4.88363948852459963e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_980_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile980)_ 4.77656573932111125e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_981_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile981)_ 4.66680832987894766e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_982_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile982)_ 4.55417305447998466e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_983_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile983)_ 4.43844063978484325e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_984_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile984)_ 4.31936195201954032e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_985_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile985)_ 4.19665195995553176e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_986_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile986)_ 4.06998202607347301e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_987_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile987)_ 3.93896993048487454e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_988_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile988)_ 3.80316674845009809e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_989_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile989)_ 3.66203927929664979e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_990_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile990)_ 3.51494602982809065e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_991_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile991)_ 3.36110360235772256e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_992_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile992)_ 3.19953833637137437e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_993_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile993)_ 3.02901442573324945e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_994_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile994)_ 2.84792280161849784e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_995_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile995)_ 2.65410090750502117e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_996_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile996)_ 2.44452220177510029e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_997_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile997)_ 2.21471762827467203e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_998_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile998)_ 1.95757659864674322e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_999_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile999)_ 1.66044665033416076e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_1000____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1000)_ 1.29611086245099067e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_1001____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1001)_ 7.74961541590635846e-04 -Volume_averaged_triton_isotropic_toroidal_Larmor_radius_(m)______________ (radius_plasma_triton_toroidal_larmor_isotropic_vol_avg)_ 7.94376013758837235e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_0_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile0)_ 4.74185558595517349e-04 -Plasma_triton_isotropic_Larmor_radius_at_point_1_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1)_ 7.94256836859743090e-04 -Plasma_triton_isotropic_Larmor_radius_at_point_2_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile2)_ 1.01904661937638917e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_3_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile3)_ 1.20320016445974202e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_4_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile4)_ 1.36328654995017937e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_5_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile5)_ 1.50699607739265373e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_6_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile6)_ 1.63864393333412435e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_7_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile7)_ 1.76093808218301265e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_8_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile8)_ 1.87570961703685752e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_9_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile9)_ 1.98426492172837669e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_10________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile10)_ 2.08757454603780051e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_11________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile11)_ 2.18638276816592991e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_12________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile12)_ 2.28127509843853438e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_13________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile13)_ 2.37272191903986369e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_14________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile14)_ 2.46110782463048166e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_15________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile15)_ 2.54675200069470189e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_16________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile16)_ 2.62992277745142814e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_17________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile17)_ 2.71084826843440976e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_18________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile18)_ 2.78972431169757654e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_19________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile19)_ 2.86672050198071970e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_20________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile20)_ 2.94198485121425438e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_21________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile21)_ 3.01564743326874964e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_22________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile22)_ 3.08782327721183374e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_23________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile23)_ 3.15861468645263184e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_24________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile24)_ 3.22811311755423535e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_25________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile25)_ 3.29640071957920753e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_26________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile26)_ 3.36355160102415817e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_27________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile27)_ 3.42963288533580787e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_28________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile28)_ 3.49470559514051485e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_29________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile29)_ 3.55882539568334877e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_30________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile30)_ 3.62204322920348489e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_31________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile31)_ 3.62798182607852087e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_32________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile32)_ 3.63568841561028901e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_33________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile33)_ 3.64448279373485659e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_34________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile34)_ 3.65412995067332987e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_35________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile35)_ 3.66449493563457797e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_36________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile36)_ 3.67548669437268083e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_37________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile37)_ 3.68703815366945922e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_38________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile38)_ 3.69909705837383673e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_39________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile39)_ 3.71162107758579588e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_40________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile40)_ 3.72457492218577308e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_41________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile41)_ 3.73792851763994410e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_42________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile42)_ 3.75165578413736789e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_43________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile43)_ 3.76573378735099501e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_44________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile44)_ 3.78014212443449548e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_45________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile45)_ 3.79486246908169404e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_46________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile46)_ 3.80987822603503189e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_47________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile47)_ 3.82517426242119001e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_48________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile48)_ 3.84073669624469859e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_49________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile49)_ 3.85655272568792042e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_50________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile50)_ 3.87261049327747775e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_51________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile51)_ 3.88889896956294686e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_52________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile52)_ 3.90540786052420924e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_53________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile53)_ 3.92212752767431231e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_54________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile54)_ 3.93904892066253634e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_55________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile55)_ 3.95616352052592830e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_56________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile56)_ 3.97346328874543728e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_57________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile57)_ 3.99094062616953908e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_58________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile58)_ 4.00858833422008606e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_59________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile59)_ 4.02639958265011647e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_60________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile60)_ 4.04436788047952619e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_61________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile61)_ 4.06248705038804708e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_62________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile62)_ 4.08075120600879995e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_63________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile63)_ 4.09915473084649512e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_64________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile64)_ 4.11769226002388529e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_65________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile65)_ 4.13635866434872070e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_66________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile66)_ 4.15514903457047703e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_67________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile67)_ 4.17405866837579180e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_68________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile68)_ 4.19308305636904594e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_69________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile69)_ 4.21221787311058284e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_70________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile70)_ 4.23145896473644048e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_71________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile71)_ 4.25080233980892203e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_72________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile72)_ 4.27024416113042701e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_73________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile73)_ 4.28978073677055167e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_74________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile74)_ 4.30940851314384494e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_75________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile75)_ 4.32912406720571425e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_76________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile76)_ 4.34892410063561583e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_77________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile77)_ 4.36880543374184097e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_78________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile78)_ 4.38876499877315779e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_79________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile79)_ 4.40879983617060295e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_80________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile80)_ 4.42890708821489822e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_81________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile81)_ 4.44908399523204386e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_82________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile82)_ 4.46932789100648511e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_83________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile83)_ 4.48963619815223331e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_84________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile84)_ 4.51000642481528581e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_85________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile85)_ 4.53043616095407005e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_86________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile86)_ 4.55092307484379014e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_87________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile87)_ 4.57146490939466452e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_88________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile88)_ 4.59205947987057113e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_89________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile89)_ 4.61270467005459994e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_90________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile90)_ 4.63339843021742803e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_91________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile91)_ 4.65413877389804671e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_92________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile92)_ 4.67492377615754025e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_93________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile93)_ 4.69575157033691806e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_94________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile94)_ 4.71662034632706114e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_95________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile95)_ 4.73752834823914799e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_96________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile96)_ 4.75847387268178712e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_97________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile97)_ 4.77945526644303533e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_98________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile98)_ 4.80047092442491274e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_99________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile99)_ 4.82151928852890196e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_100_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile100)_ 4.84259884563659378e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_101_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile101)_ 4.86370812544461434e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_102_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile102)_ 4.88484569998681121e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_103_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile103)_ 4.90601018142416360e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_104_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile104)_ 4.92720022082114052e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_105_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile105)_ 4.94841450655083247e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_106_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile106)_ 4.96965176324151280e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_107_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile107)_ 4.99091075086813708e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_108_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile108)_ 5.01219026256984838e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_109_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile109)_ 5.03348912481268833e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_110_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile110)_ 5.05480619494481052e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_111_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile111)_ 5.07614036108955738e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_112_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile112)_ 5.09749054085077008e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_113_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile113)_ 5.11885568016524472e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_114_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile114)_ 5.14023475284992870e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_115_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile115)_ 5.16162675859517268e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_116_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile116)_ 5.18303072389375390e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_117_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile117)_ 5.20444569930305582e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_118_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile118)_ 5.22587076001687807e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_119_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile119)_ 5.24730500438171446e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_120_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile120)_ 5.26874755347849291e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_121_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile121)_ 5.29019755025387714e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_122_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile122)_ 5.31165415899761788e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_123_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile123)_ 5.33311656429002676e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_124_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile124)_ 5.35458397083393798e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_125_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile125)_ 5.37605560246556553e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_126_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile126)_ 5.39753070212733391e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_127_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile127)_ 5.41900853028197405e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_128_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile128)_ 5.44048836556275481e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_129_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile129)_ 5.46196950337208761e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_130_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile130)_ 5.48345125552052517e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_131_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile131)_ 5.50493295015730758e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_132_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile132)_ 5.52641393068771265e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_133_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile133)_ 5.54789355580093298e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_134_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile134)_ 5.56937119877097282e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_135_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile135)_ 5.59084624717196780e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_136_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile136)_ 5.61231810191373075e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_137_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile137)_ 5.63378617822136996e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_138_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile138)_ 5.65524990331355438e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_139_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile139)_ 5.67670871759549597e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_140_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile140)_ 5.69816207356063555e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_141_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile141)_ 5.71960943586411613e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_142_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile142)_ 5.74105028008318422e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_143_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile143)_ 5.76248409379846813e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_144_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile144)_ 5.78391037480879226e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_145_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile145)_ 5.80532863225773250e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_146_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile146)_ 5.82673838466735410e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_147_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile147)_ 5.84813916150513178e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_148_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile148)_ 5.86953050111394155e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_149_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile149)_ 5.89091195200565701e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_150_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile150)_ 5.91228307155401960e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_151_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile151)_ 5.93364342579924976e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_152_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile152)_ 5.95499259011536986e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_153_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile153)_ 5.97633014780519101e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_154_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile154)_ 5.99765569057996578e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_155_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile155)_ 6.01896881806387053e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_156_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile156)_ 6.04026913761531066e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_157_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile157)_ 6.06155626449960804e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_158_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile158)_ 6.08282982097925473e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_159_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile159)_ 6.10408943661053510e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_160_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile160)_ 6.12533474776808754e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_161_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile161)_ 6.14656539782888756e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_162_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile162)_ 6.16778103662637966e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_163_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile163)_ 6.18898132056240960e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_164_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile164)_ 6.21016591183955278e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_165_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile165)_ 6.23133447957261236e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_166_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile166)_ 6.25248669780315014e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_167_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile167)_ 6.27362224730119988e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_168_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile168)_ 6.29474081370373726e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_169_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile169)_ 6.31584208832676377e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_170_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile170)_ 6.33692576809952949e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_171_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile171)_ 6.35799155508448479e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_172_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile172)_ 6.37903915570081203e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_173_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile173)_ 6.40006828232974560e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_174_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile174)_ 6.42107865136942214e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_175_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile175)_ 6.44206998438861655e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_176_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile176)_ 6.46304200705788770e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_177_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile177)_ 6.48399444970141573e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_178_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile178)_ 6.50492704694714645e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_179_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile179)_ 6.52583953779146617e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_180_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile180)_ 6.54673166517939602e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_181_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile181)_ 6.56760317592418059e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_182_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile182)_ 6.58845382077682517e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_183_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile183)_ 6.60928335460696150e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_184_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile184)_ 6.63009153573048890e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_185_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile185)_ 6.65087812576165872e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_186_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile186)_ 6.67164289064931058e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_187_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile187)_ 6.69238559904831217e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_188_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile188)_ 6.71310602313706425e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_189_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile189)_ 6.73380393843522797e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_190_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile190)_ 6.75447912369693364e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_191_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile191)_ 6.77513136062197607e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_192_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile192)_ 6.79576043404613635e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_193_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile193)_ 6.81636613165477814e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_194_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile194)_ 6.83694824406457305e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_195_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile195)_ 6.85750656494157895e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_196_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile196)_ 6.87804089006182565e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_197_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile197)_ 6.89855101845445601e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_198_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile198)_ 6.91903675153698883e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_199_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile199)_ 6.93949789338315411e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_200_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile200)_ 6.95993425030013834e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_201_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile201)_ 6.98034563109746226e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_202_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile202)_ 7.00073184720950096e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_203_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile203)_ 7.02109271180604861e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_204_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile204)_ 7.04142804100231414e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_205_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile205)_ 7.06173765261007384e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_206_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile206)_ 7.08202136669776414e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_207_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile207)_ 7.10227900535601551e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_208_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile208)_ 7.12251039300369326e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_209_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile209)_ 7.14271535583144244e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_210_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile210)_ 7.16289372171507663e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_211_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile211)_ 7.18304532098852384e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_212_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile212)_ 7.20316998513894149e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_213_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile213)_ 7.22326754811691580e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_214_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile214)_ 7.24333784546294778e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_215_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile215)_ 7.26338071400999159e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_216_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile216)_ 7.28339599261992703e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_217_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile217)_ 7.30338352199139465e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_218_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile218)_ 7.32334314407865478e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_219_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile219)_ 7.34327470225916174e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_220_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile220)_ 7.36317804196070982e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_221_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile221)_ 7.38305300962171108e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_222_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile222)_ 7.40289945335497867e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_223_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile223)_ 7.42271722258350860e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_224_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile224)_ 7.44250616820784673e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_225_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile225)_ 7.46226614245545754e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_226_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile226)_ 7.48199699890723241e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_227_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile227)_ 7.50169859213715377e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_228_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile228)_ 7.52137077819749981e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_229_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile229)_ 7.54101341468013230e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_230_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile230)_ 7.56062635990097359e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_231_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile231)_ 7.58020947324548021e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_232_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile232)_ 7.59976261582715092e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_233_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile233)_ 7.61928564939426921e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_234_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile234)_ 7.63877843705941181e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_235_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile235)_ 7.65824084273373888e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_236_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile236)_ 7.67767273140137693e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_237_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile237)_ 7.69707396921823911e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_238_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile238)_ 7.71644442315797853e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_239_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile239)_ 7.73578396152931926e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_240_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile240)_ 7.75509245296207572e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_241_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile241)_ 7.77436976744668752e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_242_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile242)_ 7.79361577591173877e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_243_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile243)_ 7.81283034976912490e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_244_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile244)_ 7.83201336156967229e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_245_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile245)_ 7.85116468485978249e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_246_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile246)_ 7.87028419345130702e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_247_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile247)_ 7.88937176252569976e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_248_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile248)_ 7.90842726766213810e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_249_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile249)_ 7.92745058538778420e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_250_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile250)_ 7.94644159279515871e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_251_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile251)_ 7.96540016791884298e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_252_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile252)_ 7.98432618931926852e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_253_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile253)_ 8.00321953618413247e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_254_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile254)_ 8.02208008870426009e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_255_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile255)_ 8.04090772734942713e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_256_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile256)_ 8.05970233338231153e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_257_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile257)_ 8.07846378878753109e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_258_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile258)_ 8.09719197592712048e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_259_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile259)_ 8.11588677791623761e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_260_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile260)_ 8.13454807841596655e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_261_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile261)_ 8.15317576163208067e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_262_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile262)_ 8.17176971217729170e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_263_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile263)_ 8.19032981554842533e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_264_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile264)_ 8.20885595733980913e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_265_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile265)_ 8.22734802392545775e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_266_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile266)_ 8.24580590238922773e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_267_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile267)_ 8.26422947957037614e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_268_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile268)_ 8.28261864345996093e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_269_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile269)_ 8.30097328228025788e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_270_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile270)_ 8.31929328479081610e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_271_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile271)_ 8.33757853984646267e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_272_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile272)_ 8.35582893694095108e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_273_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile273)_ 8.37404436620609559e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_274_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile274)_ 8.39222471793652121e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_275_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile275)_ 8.41036988289514675e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_276_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile276)_ 8.42847975207604294e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_277_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile277)_ 8.44655421704324123e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_278_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile278)_ 8.46459316949075939e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_279_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile279)_ 8.48259650164897433e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_280_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile280)_ 8.50056410611549698e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_281_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile281)_ 8.51849587582168867e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_282_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile282)_ 8.53639170372939675e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_283_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile283)_ 8.55425148364142782e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_284_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile284)_ 8.57207510898740609e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_285_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile285)_ 8.58986247424077531e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_286_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile286)_ 8.60761347353715574e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_287_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile287)_ 8.62532800165238117e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_288_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile288)_ 8.64300595343051037e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_289_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile289)_ 8.66064722432290622e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_290_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile290)_ 8.67825170951456656e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_291_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile291)_ 8.69581930493367253e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_292_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile292)_ 8.71334990641204829e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_293_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile293)_ 8.73084341012300182e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_294_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile294)_ 8.74829971268257893e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_295_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile295)_ 8.76571871047956974e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_296_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile296)_ 8.78310030054865916e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_297_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile297)_ 8.80044437993409388e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_298_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile298)_ 8.81775084585852652e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_299_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile299)_ 8.83501959575758687e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_300_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile300)_ 8.85225052734778424e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_301_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile301)_ 8.86944353846025324e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_302_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile302)_ 8.88659852707541185e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_303_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile303)_ 8.90371539129076323e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_304_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile304)_ 8.92079402955592120e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_305_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile305)_ 8.93783434037299582e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_306_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile306)_ 8.95483622243144900e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_307_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile307)_ 8.97179957440910961e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_308_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile308)_ 8.98872429534053677e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_309_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile309)_ 9.00561028428450115e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_310_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile310)_ 9.02245744042542812e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_311_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile311)_ 9.03926566327459616e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_312_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile312)_ 9.05603485203829162e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_313_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile313)_ 9.07276490638558863e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_314_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile314)_ 9.08945572608298689e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_315_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile315)_ 9.10610721079611884e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_316_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile316)_ 9.12271926069015138e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_317_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile317)_ 9.13929177543294606e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_318_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile318)_ 9.15582465536080893e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_319_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile319)_ 9.17231780051523324e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_320_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile320)_ 9.18877111117643967e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_321_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile321)_ 9.20518448786450567e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_322_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile322)_ 9.22155783070962090e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_323_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile323)_ 9.23789104051643550e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_324_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile324)_ 9.25418401750347820e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_325_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile325)_ 9.27043666256625702e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_326_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile326)_ 9.28664887648174980e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_327_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile327)_ 9.30282055967787160e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_328_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile328)_ 9.31895161319694701e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_329_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile329)_ 9.33504193783453971e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_330_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile330)_ 9.35109143447264771e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_331_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile331)_ 9.36710000398165328e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_332_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile332)_ 9.38306754758622304e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_333_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile333)_ 9.39899396600517995e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_334_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile334)_ 9.41487916031450572e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_335_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile335)_ 9.43072303178288211e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_336_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile336)_ 9.44652548150878325e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_337_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile337)_ 9.46228641045517016e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_338_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile338)_ 9.47800571988123911e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_339_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile339)_ 9.49368331078110153e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_340_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile340)_ 9.50931908458015410e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_341_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile341)_ 9.52491294227609565e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_342_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile342)_ 9.54046478516829173e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_343_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile343)_ 9.55597451429675109e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_344_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile344)_ 9.57144203103889486e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_345_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile345)_ 9.58686723658168545e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_346_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile346)_ 9.60225003208845310e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_347_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile347)_ 9.61759031876636625e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_348_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile348)_ 9.63288799766945543e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_349_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile349)_ 9.64814297012966254e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_350_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile350)_ 9.66335513729544605e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_351_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile351)_ 9.67852440003405361e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_352_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile352)_ 9.69365065992413948e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_353_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile353)_ 9.70873381767108079e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_354_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile354)_ 9.72377377449602266e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_355_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile355)_ 9.73877043157546710e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_356_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile356)_ 9.75372368967927610e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_357_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile357)_ 9.76863344999776180e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_358_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile358)_ 9.78349961341629278e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_359_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile359)_ 9.79832208081384513e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_360_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile360)_ 9.81310075316337536e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_361_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile361)_ 9.82783553120280401e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_362_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile362)_ 9.84252631589861531e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_363_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile363)_ 9.85717300778665879e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_364_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile364)_ 9.87177550779894109e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_365_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile365)_ 9.88633371650532618e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_366_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile366)_ 9.90084753451105949e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_367_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile367)_ 9.91531686229282436e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_368_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile368)_ 9.92974160056321262e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_369_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile369)_ 9.94412164977656263e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_370_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile370)_ 9.95845690999808304e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_371_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile371)_ 9.97274728199469725e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_372_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile372)_ 9.98699266584932542e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_373_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile373)_ 1.00011929615894026e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_374_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile374)_ 1.00153480697494600e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_375_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile375)_ 1.00294578902163992e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_376_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile376)_ 1.00435223227919659e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_377_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile377)_ 1.00575412678214522e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_378_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile378)_ 1.00715146249396800e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_379_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile379)_ 1.00854422941290597e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_380_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile380)_ 1.00993241748947946e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_381_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile381)_ 1.01131601669927299e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_382_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile382)_ 1.01269501699018175e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_383_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile383)_ 1.01406940832216158e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_384_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile384)_ 1.01543918065081454e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_385_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile385)_ 1.01680432387791612e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_386_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile386)_ 1.01816482794404653e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_387_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile387)_ 1.01952068275267572e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_388_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile388)_ 1.02087187823307005e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_389_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile389)_ 1.02221840426434726e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_390_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile390)_ 1.02356025075492334e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_391_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile391)_ 1.02489740756324561e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_392_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile392)_ 1.02622986457394320e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_393_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile393)_ 1.02755761164169887e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_394_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile394)_ 1.02888063861779414e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_395_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile395)_ 1.03019893535682364e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_396_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile396)_ 1.03151249167376061e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_397_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile397)_ 1.03282129740361033e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_398_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile398)_ 1.03412534235185118e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_399_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile399)_ 1.03542461632430971e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_400_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile400)_ 1.03671910910406069e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_401_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile401)_ 1.03800881048131868e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_402_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile402)_ 1.03929371024027595e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_403_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile403)_ 1.04057379810615930e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_404_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile404)_ 1.04184906384802017e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_405_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile405)_ 1.04311949720592243e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_406_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile406)_ 1.04438508790094704e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_407_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile407)_ 1.04564582566510980e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_408_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile408)_ 1.04690170016183224e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_409_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile409)_ 1.04815270113195694e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_410_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile410)_ 1.04939881822796125e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_411_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile411)_ 1.05064004113345141e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_412_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile412)_ 1.05187635950350755e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_413_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile413)_ 1.05310776298133540e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_414_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile414)_ 1.05433424119168381e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_415_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile415)_ 1.05555578376416385e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_416_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile416)_ 1.05677238031005889e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_417_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile417)_ 1.05798402043900432e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_418_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile418)_ 1.05919069370916837e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_419_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile419)_ 1.06039238972373585e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_420_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile420)_ 1.06158909801456897e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_421_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile421)_ 1.06278080814204232e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_422_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile422)_ 1.06396750964187683e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_423_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile423)_ 1.06514919202184526e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_424_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile424)_ 1.06632584481177236e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_425_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile425)_ 1.06749745748698551e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_426_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile426)_ 1.06866401954497300e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_427_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile427)_ 1.06982552044212528e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_428_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile428)_ 1.07098194964043610e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_429_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile429)_ 1.07213329657754146e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_430_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile430)_ 1.07327955067676069e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_431_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile431)_ 1.07442070136716649e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_432_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile432)_ 1.07555673803355518e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_433_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile433)_ 1.07668765007657430e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_434_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile434)_ 1.07781342685933108e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_435_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile435)_ 1.07893405773413376e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_436_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile436)_ 1.08004953205925527e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_437_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile437)_ 1.08115983915550024e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_438_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile438)_ 1.08226496833632047e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_439_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile439)_ 1.08336490890785526e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_440_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile440)_ 1.08445965015222280e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_441_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile441)_ 1.08554918134763437e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_442_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile442)_ 1.08663349174497222e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_443_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile443)_ 1.08771257060132683e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_444_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile444)_ 1.08878640712302011e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_445_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile445)_ 1.08985499052597374e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_446_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile446)_ 1.09091831000555414e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_447_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile447)_ 1.09197635476009219e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_448_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile448)_ 1.09302911395733338e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_449_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile449)_ 1.09407657672096932e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_450_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile450)_ 1.09511873220794979e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_451_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile451)_ 1.09615556955139585e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_452_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile452)_ 1.09718707782356043e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_453_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile453)_ 1.09821324613340651e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_454_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile454)_ 1.09923406355597244e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_455_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile455)_ 1.10024951912896657e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_456_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile456)_ 1.10125960192691552e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_457_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile457)_ 1.10226430096006956e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_458_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile458)_ 1.10326360522829976e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_459_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile459)_ 1.10425750373799661e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_460_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile460)_ 1.10524598546157780e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_461_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile461)_ 1.10622903937800717e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_462_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile462)_ 1.10720665439505844e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_463_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile463)_ 1.10817881946760569e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_464_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile464)_ 1.10914552350636492e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_465_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile465)_ 1.11010675539136745e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_466_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile466)_ 1.11106250403291123e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_467_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile467)_ 1.11201275825300108e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_468_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile468)_ 1.11295750692084160e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_469_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile469)_ 1.11389673887492442e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_470_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile470)_ 1.11483044289581376e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_471_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile471)_ 1.11575860779435394e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_472_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile472)_ 1.11668122235398914e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_473_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile473)_ 1.11759827532391179e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_474_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile474)_ 1.11850975545642831e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_475_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile475)_ 1.11941565146953855e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_476_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile476)_ 1.12031595206730228e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_477_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile477)_ 1.12121064594664348e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_478_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile478)_ 1.12209972178370521e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_479_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile479)_ 1.12298316822698908e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_480_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile480)_ 1.12386097390412502e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_481_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile481)_ 1.12473312746624136e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_482_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile482)_ 1.12559961748891907e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_483_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile483)_ 1.12646043257459919e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_484_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile484)_ 1.12731556126369637e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_485_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile485)_ 1.12816499211319064e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_486_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile486)_ 1.12900871367613408e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_487_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile487)_ 1.12984671444679441e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_488_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile488)_ 1.13067898291195068e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_489_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile489)_ 1.13150550755431265e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_490_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile490)_ 1.13232627682504240e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_491_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile491)_ 1.13314127918147326e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_492_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile492)_ 1.13395050301491503e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_493_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile493)_ 1.13475393675025495e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_494_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile494)_ 1.13555156877375510e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_495_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile495)_ 1.13634338741226710e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_496_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile496)_ 1.13712938105027007e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_497_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile497)_ 1.13790953800241082e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_498_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile498)_ 1.13868384657196953e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_499_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile499)_ 1.13945229503700802e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_500_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile500)_ 1.14021487168485779e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_501_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile501)_ 1.14097450850809898e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_502_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile502)_ 1.14173119962708222e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_503_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile503)_ 1.14248199149048889e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_504_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile504)_ 1.14322687229214195e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_505_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile505)_ 1.14396583023494130e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_506_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile506)_ 1.14469885349618127e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_507_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile507)_ 1.14542593024135296e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_508_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile508)_ 1.14614704856501621e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_509_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile509)_ 1.14686219661923709e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_510_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile510)_ 1.14757136249544634e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_511_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile511)_ 1.14827453424511342e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_512_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile512)_ 1.14897169995280199e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_513_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile513)_ 1.14966284763511999e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_514_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile514)_ 1.15034796531377232e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_515_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile515)_ 1.15102704097714836e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_516_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile516)_ 1.15170006260814986e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_517_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile517)_ 1.15236701818066719e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_518_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile518)_ 1.15302789560701880e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_519_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile519)_ 1.15368268279376733e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_520_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile520)_ 1.15433136766272138e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_521_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile521)_ 1.15497393807027608e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_522_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile522)_ 1.15561038189844895e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_523_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile523)_ 1.15624068694953810e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_524_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile524)_ 1.15686484104778851e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_525_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile525)_ 1.15748283199370583e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_526_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile526)_ 1.15809464755690095e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_527_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile527)_ 1.15870027548299857e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_528_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile528)_ 1.15929970350763956e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_529_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile529)_ 1.15989291934935727e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_530_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile530)_ 1.16047991068828505e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_531_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile531)_ 1.16106066520488532e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_532_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile532)_ 1.16163517054099288e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_533_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile533)_ 1.16220341430671985e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_534_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile534)_ 1.16276538414056985e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_535_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile535)_ 1.16332106761728171e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_536_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile536)_ 1.16387045227594257e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_537_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile537)_ 1.16441352570156240e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_538_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile538)_ 1.16495027538295413e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_539_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile539)_ 1.16548068883690382e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_540_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile540)_ 1.16600475354412397e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_541_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile541)_ 1.16652245693480722e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_542_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile542)_ 1.16703378648474587e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_543_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile543)_ 1.16753872959046955e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_544_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile544)_ 1.16803727365110254e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_545_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile545)_ 1.16852940602540263e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_546_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile546)_ 1.16901511407452724e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_547_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile547)_ 1.16949438514408598e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_548_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile548)_ 1.16996720650663459e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_549_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile549)_ 1.17043356546904249e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_550_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile550)_ 1.17089344929353668e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_551_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile551)_ 1.17134684520106003e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_552_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile552)_ 1.17179374044666575e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_553_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile553)_ 1.17223412221511142e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_554_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile554)_ 1.17266797766018196e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_555_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile555)_ 1.17309529396588952e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_556_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile556)_ 1.17351605826344525e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_557_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile557)_ 1.17393025764544311e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_558_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile558)_ 1.17433787920184791e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_559_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile559)_ 1.17473890999456460e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_560_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile560)_ 1.17513333708991492e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_561_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile561)_ 1.17552114749324924e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_562_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile562)_ 1.17590232821040107e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_563_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile563)_ 1.17627686621126146e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_564_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile564)_ 1.17664474845504737e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_565_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile565)_ 1.17700596186833279e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_566_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile566)_ 1.17736049336308324e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_567_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile567)_ 1.17770832983653730e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_568_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile568)_ 1.17804945813817629e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_569_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile569)_ 1.17838386511701452e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_570_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile570)_ 1.17871153760322530e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_571_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile571)_ 1.17903246237866400e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_572_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile572)_ 1.17934662623529595e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_573_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile573)_ 1.17965401590905978e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_574_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile574)_ 1.17995461813469715e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_575_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile575)_ 1.18024841962360016e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_576_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile576)_ 1.18053540705257750e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_577_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile577)_ 1.18081556709682574e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_578_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile578)_ 1.18108888637815535e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_579_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile579)_ 1.18135535153490196e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_580_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile580)_ 1.18161494913682774e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_581_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile581)_ 1.18186766576991401e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_582_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile582)_ 1.18211348798075589e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_583_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile583)_ 1.18235240228000190e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_584_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile584)_ 1.18258439520156685e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_585_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile585)_ 1.18280945319107524e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_586_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile586)_ 1.18302756273568326e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_587_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile587)_ 1.18323871025610861e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_588_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile588)_ 1.18344288216219364e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_589_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile589)_ 1.18364006483409577e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_590_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile590)_ 1.18383024464824450e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_591_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile591)_ 1.18401340795103796e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_592_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile592)_ 1.18418954106610450e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_593_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile593)_ 1.18435863027534418e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_594_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile594)_ 1.18452066188625745e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_595_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile595)_ 1.18467562209659677e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_596_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile596)_ 1.18482349718197610e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_597_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile597)_ 1.18496427333034601e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_598_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile598)_ 1.18509793673201476e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_599_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile599)_ 1.18522447354557463e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_600_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile600)_ 1.18534386988629909e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_601_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile601)_ 1.18545611190914030e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_602_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile602)_ 1.18556118569133409e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_603_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile603)_ 1.18565907729261608e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_604_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile604)_ 1.18574977277023930e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_605_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile605)_ 1.18583325814463833e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_606_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile606)_ 1.18590951942579900e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_607_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile607)_ 1.18597854257879061e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_608_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile608)_ 1.18604031358069857e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_609_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile609)_ 1.18609481835179383e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_610_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile610)_ 1.18614204280487693e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_611_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile611)_ 1.18618197283748145e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_612_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile612)_ 1.18621459430100131e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_613_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile613)_ 1.18623989306564093e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_614_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile614)_ 1.18625785493196804e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_615_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile615)_ 1.18626846572283950e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_616_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile616)_ 1.18627171119090220e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_617_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile617)_ 1.18626757710687224e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_618_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile618)_ 1.18625604918611224e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_619_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile619)_ 1.18623711317721956e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_620_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile620)_ 1.18621075475363377e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_621_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile621)_ 1.18617695957127824e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_622_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile622)_ 1.18613571328778748e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_623_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile623)_ 1.18608700151573918e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_624_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile624)_ 1.18603080988460511e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_625_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile625)_ 1.18596712395495525e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_626_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile626)_ 1.18589592931555819e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_627_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile627)_ 1.18581721145833638e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_628_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile628)_ 1.18573095592642945e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_629_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile629)_ 1.18563714823994200e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_630_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile630)_ 1.18553577382896156e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_631_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile631)_ 1.18542681817044998e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_632_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile632)_ 1.18531026672154243e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_633_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile633)_ 1.18518610484443301e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_634_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile634)_ 1.18505431797140178e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_635_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile635)_ 1.18491489147476859e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_636_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile636)_ 1.18476781068222684e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_637_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile637)_ 1.18461306093587283e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_638_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile638)_ 1.18445062754855852e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_639_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile639)_ 1.18428049582345787e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_640_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile640)_ 1.18410265100615270e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_641_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile641)_ 1.18391707837577232e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_642_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile642)_ 1.18372376314537873e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_643_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile643)_ 1.18352269054130856e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_644_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile644)_ 1.18331384574715190e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_645_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile645)_ 1.18309721394341105e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_646_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile646)_ 1.18287278029533868e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_647_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile647)_ 1.18264052991656436e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_648_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile648)_ 1.18240044795713591e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_649_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile649)_ 1.18215251950294416e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_650_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile650)_ 1.18189672961954324e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_651_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile651)_ 1.18163306342058301e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_652_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile652)_ 1.18136150589809898e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_653_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile653)_ 1.18108204211603250e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_654_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile654)_ 1.18079465708889712e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_655_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile655)_ 1.18049933579350234e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_656_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile656)_ 1.18019606322554618e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_657_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile657)_ 1.17988482434665358e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_658_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile658)_ 1.17956560410850553e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_659_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile659)_ 1.17923838744447979e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_660_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile660)_ 1.17890315924892627e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_661_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile661)_ 1.17855990444237259e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_662_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile662)_ 1.17820860789768448e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_663_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile663)_ 1.17784925450951337e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_664_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile664)_ 1.17748182910372631e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_665_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile665)_ 1.17710631654402691e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_666_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile666)_ 1.17672270164536387e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_667_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile667)_ 1.17633096924378983e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_668_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile668)_ 1.17593110414262701e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_669_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile669)_ 1.17552309110795158e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_670_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile670)_ 1.17510691491391431e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_671_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile671)_ 1.17468256036350610e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_672_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile672)_ 1.17425001218023940e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_673_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile673)_ 1.17380925511600398e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_674_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile674)_ 1.17336027390515345e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_675_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile675)_ 1.17290305327682077e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_676_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile676)_ 1.17243757791279136e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_677_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile677)_ 1.17196383255628988e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_678_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile678)_ 1.17148180189026417e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_679_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile679)_ 1.17099147056630090e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_680_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile680)_ 1.17049282330561524e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_681_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile681)_ 1.16998584473874158e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_682_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile682)_ 1.16947051956569244e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_683_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile683)_ 1.16894683242059119e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_684_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile684)_ 1.16841476795178402e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_685_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile685)_ 1.16787431082183736e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_686_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile686)_ 1.16732544563928984e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_687_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile687)_ 1.16676815708198350e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_688_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile688)_ 1.16620242974773674e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_689_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile689)_ 1.16562824828215610e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_690_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile690)_ 1.16504559730162653e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_691_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile691)_ 1.16445446141875113e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_692_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile692)_ 1.16385482528959232e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_693_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile693)_ 1.16324667351465801e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_694_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile694)_ 1.16262999072044692e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_695_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile695)_ 1.16200476153356831e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_696_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile696)_ 1.16137097056760921e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_697_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile697)_ 1.16072860246635712e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_698_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile698)_ 1.16007764185605891e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_699_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile699)_ 1.15941807337131258e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_700_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile700)_ 1.15874988163754914e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_701_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile701)_ 1.15807305131021762e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_702_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile702)_ 1.15738756704424420e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_703_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile703)_ 1.15669341349830136e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_704_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile704)_ 1.15599057533032606e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_705_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile705)_ 1.15527903721943052e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_706_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile706)_ 1.15455878385714739e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_707_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile707)_ 1.15382979994299983e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_708_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile708)_ 1.15309207016230375e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_709_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile709)_ 1.15234557927027127e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_710_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile710)_ 1.15159031197689752e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_711_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile711)_ 1.15082625303554939e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_712_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile712)_ 1.15005338722985618e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_713_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile713)_ 1.14927169931574053e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_714_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile714)_ 1.14848117413306160e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_715_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile715)_ 1.14768179647162082e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_716_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile716)_ 1.14687355118751264e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_717_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile717)_ 1.14605642313154611e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_718_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile718)_ 1.14523039722582709e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_719_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile719)_ 1.14439545833316930e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_720_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile720)_ 1.14355159144220973e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_721_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile721)_ 1.14269878147782115e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_722_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile722)_ 1.14183701346415485e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_723_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile723)_ 1.14096627241611175e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_724_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile724)_ 1.14008654338024987e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_725_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile725)_ 1.13919781143956567e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_726_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile726)_ 1.13830006173667089e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_727_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile727)_ 1.13739327941916185e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_728_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile728)_ 1.13647744969939887e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_729_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile729)_ 1.13555255780894322e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_730_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile730)_ 1.13461858903099264e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_731_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile731)_ 1.13367552865914212e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_732_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile732)_ 1.13272336206233729e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_733_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile733)_ 1.13176207468554547e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_734_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile734)_ 1.13079165197591501e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_735_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile735)_ 1.12981207944338590e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_736_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile736)_ 1.12882334261915629e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_737_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile737)_ 1.12782542718233934e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_738_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile738)_ 1.12681831876888534e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_739_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile739)_ 1.12580200310281008e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_740_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile740)_ 1.12477646600645416e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_741_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile741)_ 1.12374169330694829e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_742_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile742)_ 1.12269767094507981e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_743_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile743)_ 1.12164438490999947e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_744_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile744)_ 1.12058182125868381e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_745_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile745)_ 1.11950996611658860e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_746_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile746)_ 1.11842880570696239e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_747_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile747)_ 1.11733832629920694e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_748_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile748)_ 1.11623851425726086e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_749_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile749)_ 1.11512935605017714e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_750_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile750)_ 1.11401083818098209e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_751_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile751)_ 1.11288294728833885e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_752_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile752)_ 1.11174567009478288e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_753_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile753)_ 1.11059899339306586e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_754_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile754)_ 1.10944290410517656e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_755_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile755)_ 1.10827738923019239e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_756_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile756)_ 1.10710243589876734e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_757_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile757)_ 1.10591803129634451e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_758_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile758)_ 1.10472416280095586e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_759_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile759)_ 1.10352081782821090e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_760_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile760)_ 1.10230798393507433e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_761_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile761)_ 1.10108564884119076e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_762_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile762)_ 1.09985380033678967e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_763_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile763)_ 1.09861242634791550e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_764_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile764)_ 1.09736151499759248e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_765_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile765)_ 1.09610105445875784e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_766_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile766)_ 1.09483103309955671e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_767_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile767)_ 1.09355143941061057e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_768_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile768)_ 1.09226226205660169e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_769_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile769)_ 1.09096348986326541e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_770_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile770)_ 1.08965511177903755e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_771_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile771)_ 1.08833711695731292e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_772_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile772)_ 1.08700949465267271e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_773_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile773)_ 1.08567223437936265e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_774_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile774)_ 1.08432532581787047e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_775_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile775)_ 1.08296875876603450e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_776_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile776)_ 1.08160252325802241e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_777_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile777)_ 1.08022660955702492e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_778_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile778)_ 1.07884100808627974e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_779_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile779)_ 1.07744570948257283e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_780_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile780)_ 1.07604070459380256e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_781_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile781)_ 1.07462598450237395e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_782_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile782)_ 1.07320154050230196e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_783_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile783)_ 1.07176736415392302e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_784_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile784)_ 1.07032344718839406e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_785_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile785)_ 1.06886978166139627e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_786_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile786)_ 1.06740635986314596e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_787_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile787)_ 1.06593317429528826e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_788_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile788)_ 1.06445021775792119e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_789_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile789)_ 1.06295748337994263e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_790_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile790)_ 1.06145496451241304e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_791_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile791)_ 1.05994265477402268e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_792_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile792)_ 1.05842054818229576e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_793_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile793)_ 1.05688863896183875e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_794_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile794)_ 1.05534692173957362e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_795_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile795)_ 1.05379539143240983e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_796_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile796)_ 1.05223404326204844e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_797_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile797)_ 1.05066287284001341e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_798_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile798)_ 1.04908187612450850e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_799_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile799)_ 1.04749104945778080e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_800_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile800)_ 1.04589038948473632e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_801_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile801)_ 1.04427989334228560e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_802_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile802)_ 1.04265955848081900e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_803_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile803)_ 1.04102938280006101e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_804_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile804)_ 1.03938936463358039e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_805_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile805)_ 1.03773950271108268e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_806_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile806)_ 1.03607979622486936e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_807_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile807)_ 1.03441024479236417e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_808_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile808)_ 1.03273084858990765e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_809_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile809)_ 1.03104160818302693e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_810_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile810)_ 1.02934252467167756e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_811_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile811)_ 1.02763359967580591e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_812_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile812)_ 1.02591483532630812e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_813_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile813)_ 1.02418623431208070e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_814_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile814)_ 1.02244779985460298e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_815_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile815)_ 1.02069953575561513e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_816_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile816)_ 1.01894144641727965e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_817_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile817)_ 1.01717353687409539e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_818_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile818)_ 1.01539581267145809e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_819_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile819)_ 1.01360828011951148e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_820_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile820)_ 1.01181094613857284e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_821_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile821)_ 1.01000381828593236e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_822_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile822)_ 1.00818690486388501e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_823_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile823)_ 1.00636021489665800e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_824_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile824)_ 1.00452375812437097e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_825_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile825)_ 1.00267754502019590e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_826_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile826)_ 1.00082158686037436e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_827_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile827)_ 9.98955895719430553e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_828_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile828)_ 9.97080484529907010e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_829_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile829)_ 9.95195367001916811e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_830_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile830)_ 9.93300557795195709e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_831_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile831)_ 9.91396072344862683e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_832_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile832)_ 9.89481927171193161e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_833_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile833)_ 9.87558139634957775e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_834_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile834)_ 9.85624728064872155e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_835_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile835)_ 9.83681711839467544e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_836_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile836)_ 9.81729111404364488e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_837_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile837)_ 9.79766948151167272e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_838_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile838)_ 9.77795244717720967e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_839_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile839)_ 9.75814024711310277e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_840_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile840)_ 9.73823313029516767e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_841_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile841)_ 9.71823135692404666e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_842_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile842)_ 9.69813519971829061e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_843_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile843)_ 9.67794494381859181e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_844_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile844)_ 9.65766088773901445e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_845_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile845)_ 9.63728334316150785e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_846_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile846)_ 9.61681263578198324e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_847_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile847)_ 9.59624910492794421e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_848_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile848)_ 9.57559310510554262e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_849_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile849)_ 9.55484500582257958e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_850_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile850)_ 9.53400519197431656e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_851_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile851)_ 9.51307406474200326e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_852_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile852)_ 9.49205204092737342e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_853_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile853)_ 9.47093955532223551e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_854_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile854)_ 9.44973705974914632e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_855_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile855)_ 9.42844502348963269e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_856_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile856)_ 9.40706393551711019e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_857_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile857)_ 9.38559430252815588e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_858_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile858)_ 9.36403665242251278e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_859_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile859)_ 9.34239153189389375e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_860_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile860)_ 9.32065950975754891e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_861_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile861)_ 9.29884117525846265e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_862_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile862)_ 9.27693714112316770e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_863_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile863)_ 9.25494804194597689e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_864_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile864)_ 9.23287453636455029e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_865_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile865)_ 9.21071730709852564e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_866_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile866)_ 9.18847706291379095e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_867_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile867)_ 9.16615453683187510e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_868_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile868)_ 9.14375049011635459e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_869_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile869)_ 9.12126571084379695e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_870_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile870)_ 9.09870101567519622e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_871_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile871)_ 9.07605725051673258e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_872_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile872)_ 9.05333529187249929e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_873_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile873)_ 9.03053604700142232e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_874_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile874)_ 9.00766045592083647e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_875_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile875)_ 8.98470949173991312e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_876_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile876)_ 8.96168416148123217e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_877_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile877)_ 8.93858550864545277e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_878_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile878)_ 8.91541461236740329e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_879_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile879)_ 8.89217259030767627e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_880_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile880)_ 8.86886059895502891e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_881_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile881)_ 8.84547983554551630e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_882_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile882)_ 8.82203153861676158e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_883_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile883)_ 8.79851699005522805e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_884_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile884)_ 8.77493751626678108e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_885_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile885)_ 8.75129448994057743e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_886_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile886)_ 8.72758933106549534e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_887_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile887)_ 8.70382350975844668e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_888_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile888)_ 8.67999854563029222e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_889_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile889)_ 8.65611601276545899e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_890_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile890)_ 8.63217753850751071e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_891_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile891)_ 8.60818480723274729e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_892_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile892)_ 8.58413956150488530e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_893_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile893)_ 8.56004360442497170e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_894_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile894)_ 8.53589880225191430e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_895_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile895)_ 8.51170708500985709e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_896_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile896)_ 8.48747045110933955e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_897_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile897)_ 8.46319096752807740e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_898_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile898)_ 8.43887077402580461e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_899_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile899)_ 8.41451208519940382e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_900_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile900)_ 8.39011719280418483e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_901_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile901)_ 8.36568846902888477e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_902_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile902)_ 8.34122836915500258e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_903_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile903)_ 8.31673943594634681e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_904_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile904)_ 8.29222430106920164e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_905_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile905)_ 8.26768568945441228e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_906_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile906)_ 8.24312642344165840e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_907_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile907)_ 8.21854942538085241e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_908_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile908)_ 8.19395772191332424e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_909_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile909)_ 8.16935444872909575e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_910_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile910)_ 8.14474285432158218e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_911_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile911)_ 8.12012630483567761e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_912_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile912)_ 8.09550828790316611e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_913_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile913)_ 8.07089241916645987e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_914_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile914)_ 8.04628244622314706e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_915_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile915)_ 8.02168225519843923e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_916_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile916)_ 7.99709587527527854e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_917_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile917)_ 7.97252748644766696e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_918_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile918)_ 7.94798142458868866e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_919_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile919)_ 7.92346218904196875e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_920_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile920)_ 7.89897444994524557e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_921_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile921)_ 7.87452305601206090e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_922_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile922)_ 7.85011304162599143e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_923_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile923)_ 7.82574963636659821e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_924_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile924)_ 7.80143827453900433e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_925_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile925)_ 7.77718460336508481e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_926_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile926)_ 7.75299449582287411e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_927_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile927)_ 7.72887405892217026e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_928_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile928)_ 7.70482964732811457e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_929_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile929)_ 7.68086787603143323e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_930_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile930)_ 7.65699563262222781e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_931_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile931)_ 7.63322009325005050e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_932_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile932)_ 7.60954873712407168e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_933_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile933)_ 7.58598936484353257e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_934_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile934)_ 7.56255011545614326e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_935_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile935)_ 7.53923948540622703e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_936_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile936)_ 7.51606635351170001e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_937_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile937)_ 7.49303999993078916e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_938_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile938)_ 7.47017013450315334e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_939_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile939)_ 7.44746692347796318e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_940_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile940)_ 7.42494102147194229e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_941_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile941)_ 7.40260360404452512e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_942_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile942)_ 7.38046640480111236e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_943_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile943)_ 7.35854175800174440e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_944_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile944)_ 7.33684264451772532e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_945_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile945)_ 7.31538274351808872e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_946_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile946)_ 7.29417649096968275e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_947_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile947)_ 7.27323914450295900e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_948_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile948)_ 7.25258686094614434e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_949_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile949)_ 7.23223677874853740e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_950_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile950)_ 7.21220711940809191e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_951_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile951)_ 7.19251730054960934e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_952_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile952)_ 7.17318806977953159e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_953_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile953)_ 7.15424166297630275e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_954_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile954)_ 7.13570198762731624e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_955_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile955)_ 7.11759485207690869e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_956_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile956)_ 7.09994823326278845e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_957_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile957)_ 7.08279261209831916e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_958_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile958)_ 7.06616138833390892e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_959_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile959)_ 7.05009140643263893e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_960_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile960)_ 7.03462363060645968e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_961_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile961)_ 7.01980403201583805e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_962_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile962)_ 7.00568478394319148e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_963_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile963)_ 6.99232591207528051e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_964_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile964)_ 6.97979766084825485e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_965_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile965)_ 6.96818403195438064e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_966_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile966)_ 6.95758835752240731e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_967_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile967)_ 6.94814274678754937e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_968_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile968)_ 6.94002574551637677e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_969_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile969)_ 6.93350065706899513e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_970_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile970)_ 6.92902342945810826e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_971_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile971)_ 6.92790421725438931e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_972_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile972)_ 6.81705097639150135e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_973_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile973)_ 6.70412910088180602e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_974_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile974)_ 6.58903205110721989e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_975_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile975)_ 6.47164358678065967e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_976_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile976)_ 6.35183647427689426e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_977_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile977)_ 6.22947097221685734e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_978_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile978)_ 6.10439303172828109e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_979_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile979)_ 5.97643214944226005e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_980_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile980)_ 5.84539879188394809e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_981_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile981)_ 5.71108126846880861e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_982_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile982)_ 5.57324191708604734e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_983_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile983)_ 5.43161239883021858e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_984_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile984)_ 5.28588783186866810e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_985_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile985)_ 5.13571940611459027e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_986_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile986)_ 4.98070494624052416e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_987_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile987)_ 4.82037670479349561e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_988_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile988)_ 4.65418530273204161e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_989_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile989)_ 4.48147822891676716e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_990_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile990)_ 4.30147044606558112e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_991_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile991)_ 4.11320325984896110e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_992_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile992)_ 3.91548513762837204e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_993_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile993)_ 3.70680374268730992e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_994_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile994)_ 3.48518995432054628e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_995_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile995)_ 3.24799730976654648e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_996_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile996)_ 2.99152203434704727e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_997_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile997)_ 2.71029505154274548e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_998_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile998)_ 2.39561467007472608e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_999_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile999)_ 2.03199724701174375e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_1000______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1000)_ 1.58613565923787047e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_1001______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1001)_ 9.48371117191034699e-04 -Volume_averaged_electron_thermal_velocity_(m/s)__________________________ (vel_plasma_electron_vol_avg)__ 6.50540459436968490e+07 -Plasma_electron_thermal_velocity_at_point_0______________________________ (vel_plasma_electron_profile0)_ 9.16840087363297343e+07 -Plasma_electron_thermal_velocity_at_point_1______________________________ (vel_plasma_electron_profile1)_ 9.16837890471011251e+07 -Plasma_electron_thermal_velocity_at_point_2______________________________ (vel_plasma_electron_profile2)_ 9.16831299779644907e+07 -Plasma_electron_thermal_velocity_at_point_3______________________________ (vel_plasma_electron_profile3)_ 9.16820315245672017e+07 -Plasma_electron_thermal_velocity_at_point_4______________________________ (vel_plasma_electron_profile4)_ 9.16804936796544939e+07 -Plasma_electron_thermal_velocity_at_point_5______________________________ (vel_plasma_electron_profile5)_ 9.16785164330704063e+07 -Plasma_electron_thermal_velocity_at_point_6______________________________ (vel_plasma_electron_profile6)_ 9.16760997717570215e+07 -Plasma_electron_thermal_velocity_at_point_7______________________________ (vel_plasma_electron_profile7)_ 9.16732436797547191e+07 -Plasma_electron_thermal_velocity_at_point_8______________________________ (vel_plasma_electron_profile8)_ 9.16699481382032931e+07 -Plasma_electron_thermal_velocity_at_point_9______________________________ (vel_plasma_electron_profile9)_ 9.16662131253404021e+07 -Plasma_electron_thermal_velocity_at_point_10_____________________________ (vel_plasma_electron_profile10)_ 9.16620386165031344e+07 -Plasma_electron_thermal_velocity_at_point_11_____________________________ (vel_plasma_electron_profile11)_ 9.16574245841281414e+07 -Plasma_electron_thermal_velocity_at_point_12_____________________________ (vel_plasma_electron_profile12)_ 9.16523709977506995e+07 -Plasma_electron_thermal_velocity_at_point_13_____________________________ (vel_plasma_electron_profile13)_ 9.16468778240063936e+07 -Plasma_electron_thermal_velocity_at_point_14_____________________________ (vel_plasma_electron_profile14)_ 9.16409450266306698e+07 -Plasma_electron_thermal_velocity_at_point_15_____________________________ (vel_plasma_electron_profile15)_ 9.16345725664591491e+07 -Plasma_electron_thermal_velocity_at_point_16_____________________________ (vel_plasma_electron_profile16)_ 9.16277604014285803e+07 -Plasma_electron_thermal_velocity_at_point_17_____________________________ (vel_plasma_electron_profile17)_ 9.16205084865761250e+07 -Plasma_electron_thermal_velocity_at_point_18_____________________________ (vel_plasma_electron_profile18)_ 9.16128167740410119e+07 -Plasma_electron_thermal_velocity_at_point_19_____________________________ (vel_plasma_electron_profile19)_ 9.16046852130639702e+07 -Plasma_electron_thermal_velocity_at_point_20_____________________________ (vel_plasma_electron_profile20)_ 9.15961137499882430e+07 -Plasma_electron_thermal_velocity_at_point_21_____________________________ (vel_plasma_electron_profile21)_ 9.15871023282597363e+07 -Plasma_electron_thermal_velocity_at_point_22_____________________________ (vel_plasma_electron_profile22)_ 9.15776508884279579e+07 -Plasma_electron_thermal_velocity_at_point_23_____________________________ (vel_plasma_electron_profile23)_ 9.15677593681461215e+07 -Plasma_electron_thermal_velocity_at_point_24_____________________________ (vel_plasma_electron_profile24)_ 9.15574277021719813e+07 -Plasma_electron_thermal_velocity_at_point_25_____________________________ (vel_plasma_electron_profile25)_ 9.15466558223686814e+07 -Plasma_electron_thermal_velocity_at_point_26_____________________________ (vel_plasma_electron_profile26)_ 9.15354436577044725e+07 -Plasma_electron_thermal_velocity_at_point_27_____________________________ (vel_plasma_electron_profile27)_ 9.15237911342540532e+07 -Plasma_electron_thermal_velocity_at_point_28_____________________________ (vel_plasma_electron_profile28)_ 9.15116981752000153e+07 -Plasma_electron_thermal_velocity_at_point_29_____________________________ (vel_plasma_electron_profile29)_ 9.14991647008316219e+07 -Plasma_electron_thermal_velocity_at_point_30_____________________________ (vel_plasma_electron_profile30)_ 9.14861906285474300e+07 -Plasma_electron_thermal_velocity_at_point_31_____________________________ (vel_plasma_electron_profile31)_ 9.14727758728552610e+07 -Plasma_electron_thermal_velocity_at_point_32_____________________________ (vel_plasma_electron_profile32)_ 9.14589203453727812e+07 -Plasma_electron_thermal_velocity_at_point_33_____________________________ (vel_plasma_electron_profile33)_ 9.14446239548290670e+07 -Plasma_electron_thermal_velocity_at_point_34_____________________________ (vel_plasma_electron_profile34)_ 9.14298866070649475e+07 -Plasma_electron_thermal_velocity_at_point_35_____________________________ (vel_plasma_electron_profile35)_ 9.14147082050340772e+07 -Plasma_electron_thermal_velocity_at_point_36_____________________________ (vel_plasma_electron_profile36)_ 9.13990886488039047e+07 -Plasma_electron_thermal_velocity_at_point_37_____________________________ (vel_plasma_electron_profile37)_ 9.13830278355570436e+07 -Plasma_electron_thermal_velocity_at_point_38_____________________________ (vel_plasma_electron_profile38)_ 9.13665256595917642e+07 -Plasma_electron_thermal_velocity_at_point_39_____________________________ (vel_plasma_electron_profile39)_ 9.13495820123230815e+07 -Plasma_electron_thermal_velocity_at_point_40_____________________________ (vel_plasma_electron_profile40)_ 9.13321967822842151e+07 -Plasma_electron_thermal_velocity_at_point_41_____________________________ (vel_plasma_electron_profile41)_ 9.13143698551275879e+07 -Plasma_electron_thermal_velocity_at_point_42_____________________________ (vel_plasma_electron_profile42)_ 9.12961011136264205e+07 -Plasma_electron_thermal_velocity_at_point_43_____________________________ (vel_plasma_electron_profile43)_ 9.12773904376745969e+07 -Plasma_electron_thermal_velocity_at_point_44_____________________________ (vel_plasma_electron_profile44)_ 9.12582377042900175e+07 -Plasma_electron_thermal_velocity_at_point_45_____________________________ (vel_plasma_electron_profile45)_ 9.12386427876141816e+07 -Plasma_electron_thermal_velocity_at_point_46_____________________________ (vel_plasma_electron_profile46)_ 9.12186055589143187e+07 -Plasma_electron_thermal_velocity_at_point_47_____________________________ (vel_plasma_electron_profile47)_ 9.11981258865846097e+07 -Plasma_electron_thermal_velocity_at_point_48_____________________________ (vel_plasma_electron_profile48)_ 9.11772036361479610e+07 -Plasma_electron_thermal_velocity_at_point_49_____________________________ (vel_plasma_electron_profile49)_ 9.11558386702568084e+07 -Plasma_electron_thermal_velocity_at_point_50_____________________________ (vel_plasma_electron_profile50)_ 9.11340308486954570e+07 -Plasma_electron_thermal_velocity_at_point_51_____________________________ (vel_plasma_electron_profile51)_ 9.11117800283810645e+07 -Plasma_electron_thermal_velocity_at_point_52_____________________________ (vel_plasma_electron_profile52)_ 9.10890860633654147e+07 -Plasma_electron_thermal_velocity_at_point_53_____________________________ (vel_plasma_electron_profile53)_ 9.10659488048374206e+07 -Plasma_electron_thermal_velocity_at_point_54_____________________________ (vel_plasma_electron_profile54)_ 9.10423681011233479e+07 -Plasma_electron_thermal_velocity_at_point_55_____________________________ (vel_plasma_electron_profile55)_ 9.10183437976896614e+07 -Plasma_electron_thermal_velocity_at_point_56_____________________________ (vel_plasma_electron_profile56)_ 9.09938757371449322e+07 -Plasma_electron_thermal_velocity_at_point_57_____________________________ (vel_plasma_electron_profile57)_ 9.09689637592409551e+07 -Plasma_electron_thermal_velocity_at_point_58_____________________________ (vel_plasma_electron_profile58)_ 9.09436077008760273e+07 -Plasma_electron_thermal_velocity_at_point_59_____________________________ (vel_plasma_electron_profile59)_ 9.09178073960952312e+07 -Plasma_electron_thermal_velocity_at_point_60_____________________________ (vel_plasma_electron_profile60)_ 9.08915626760938913e+07 -Plasma_electron_thermal_velocity_at_point_61_____________________________ (vel_plasma_electron_profile61)_ 9.08648733692192733e+07 -Plasma_electron_thermal_velocity_at_point_62_____________________________ (vel_plasma_electron_profile62)_ 9.08377393009724617e+07 -Plasma_electron_thermal_velocity_at_point_63_____________________________ (vel_plasma_electron_profile63)_ 9.08101602940115184e+07 -Plasma_electron_thermal_velocity_at_point_64_____________________________ (vel_plasma_electron_profile64)_ 9.07821361681526303e+07 -Plasma_electron_thermal_velocity_at_point_65_____________________________ (vel_plasma_electron_profile65)_ 9.07536667403731197e+07 -Plasma_electron_thermal_velocity_at_point_66_____________________________ (vel_plasma_electron_profile66)_ 9.07247518248142153e+07 -Plasma_electron_thermal_velocity_at_point_67_____________________________ (vel_plasma_electron_profile67)_ 9.06953912327828556e+07 -Plasma_electron_thermal_velocity_at_point_68_____________________________ (vel_plasma_electron_profile68)_ 9.06655847727552056e+07 -Plasma_electron_thermal_velocity_at_point_69_____________________________ (vel_plasma_electron_profile69)_ 9.06353322503781617e+07 -Plasma_electron_thermal_velocity_at_point_70_____________________________ (vel_plasma_electron_profile70)_ 9.06046334684728831e+07 -Plasma_electron_thermal_velocity_at_point_71_____________________________ (vel_plasma_electron_profile71)_ 9.05734882270376533e+07 -Plasma_electron_thermal_velocity_at_point_72_____________________________ (vel_plasma_electron_profile72)_ 9.05418963232500702e+07 -Plasma_electron_thermal_velocity_at_point_73_____________________________ (vel_plasma_electron_profile73)_ 9.05098575514711887e+07 -Plasma_electron_thermal_velocity_at_point_74_____________________________ (vel_plasma_electron_profile74)_ 9.04773717032475919e+07 -Plasma_electron_thermal_velocity_at_point_75_____________________________ (vel_plasma_electron_profile75)_ 9.04444385673140734e+07 -Plasma_electron_thermal_velocity_at_point_76_____________________________ (vel_plasma_electron_profile76)_ 9.04110579295989573e+07 -Plasma_electron_thermal_velocity_at_point_77_____________________________ (vel_plasma_electron_profile77)_ 9.03772295732252002e+07 -Plasma_electron_thermal_velocity_at_point_78_____________________________ (vel_plasma_electron_profile78)_ 9.03429532785145640e+07 -Plasma_electron_thermal_velocity_at_point_79_____________________________ (vel_plasma_electron_profile79)_ 9.03082288229912668e+07 -Plasma_electron_thermal_velocity_at_point_80_____________________________ (vel_plasma_electron_profile80)_ 9.02730559813858420e+07 -Plasma_electron_thermal_velocity_at_point_81_____________________________ (vel_plasma_electron_profile81)_ 9.02374345256380588e+07 -Plasma_electron_thermal_velocity_at_point_82_____________________________ (vel_plasma_electron_profile82)_ 9.02013642249006480e+07 -Plasma_electron_thermal_velocity_at_point_83_____________________________ (vel_plasma_electron_profile83)_ 9.01648448455443084e+07 -Plasma_electron_thermal_velocity_at_point_84_____________________________ (vel_plasma_electron_profile84)_ 9.01278761511607021e+07 -Plasma_electron_thermal_velocity_at_point_85_____________________________ (vel_plasma_electron_profile85)_ 9.00904579025661945e+07 -Plasma_electron_thermal_velocity_at_point_86_____________________________ (vel_plasma_electron_profile86)_ 9.00525898578069508e+07 -Plasma_electron_thermal_velocity_at_point_87_____________________________ (vel_plasma_electron_profile87)_ 9.00142717721629888e+07 -Plasma_electron_thermal_velocity_at_point_88_____________________________ (vel_plasma_electron_profile88)_ 8.99755033981520236e+07 -Plasma_electron_thermal_velocity_at_point_89_____________________________ (vel_plasma_electron_profile89)_ 8.99362844855347723e+07 -Plasma_electron_thermal_velocity_at_point_90_____________________________ (vel_plasma_electron_profile90)_ 8.98966147813183367e+07 -Plasma_electron_thermal_velocity_at_point_91_____________________________ (vel_plasma_electron_profile91)_ 8.98564940297624171e+07 -Plasma_electron_thermal_velocity_at_point_92_____________________________ (vel_plasma_electron_profile92)_ 8.98159219723832309e+07 -Plasma_electron_thermal_velocity_at_point_93_____________________________ (vel_plasma_electron_profile93)_ 8.97748983479589969e+07 -Plasma_electron_thermal_velocity_at_point_94_____________________________ (vel_plasma_electron_profile94)_ 8.97334228925341517e+07 -Plasma_electron_thermal_velocity_at_point_95_____________________________ (vel_plasma_electron_profile95)_ 8.96914953394255638e+07 -Plasma_electron_thermal_velocity_at_point_96_____________________________ (vel_plasma_electron_profile96)_ 8.96491154192277193e+07 -Plasma_electron_thermal_velocity_at_point_97_____________________________ (vel_plasma_electron_profile97)_ 8.96062828598174453e+07 -Plasma_electron_thermal_velocity_at_point_98_____________________________ (vel_plasma_electron_profile98)_ 8.95629973863605261e+07 -Plasma_electron_thermal_velocity_at_point_99_____________________________ (vel_plasma_electron_profile99)_ 8.95192587213171721e+07 -Plasma_electron_thermal_velocity_at_point_100____________________________ (vel_plasma_electron_profile100)_ 8.94750665844472200e+07 -Plasma_electron_thermal_velocity_at_point_101____________________________ (vel_plasma_electron_profile101)_ 8.94304206928173602e+07 -Plasma_electron_thermal_velocity_at_point_102____________________________ (vel_plasma_electron_profile102)_ 8.93853207608064264e+07 -Plasma_electron_thermal_velocity_at_point_103____________________________ (vel_plasma_electron_profile103)_ 8.93397665001125485e+07 -Plasma_electron_thermal_velocity_at_point_104____________________________ (vel_plasma_electron_profile104)_ 8.92937576197586507e+07 -Plasma_electron_thermal_velocity_at_point_105____________________________ (vel_plasma_electron_profile105)_ 8.92472938260999918e+07 -Plasma_electron_thermal_velocity_at_point_106____________________________ (vel_plasma_electron_profile106)_ 8.92003748228311092e+07 -Plasma_electron_thermal_velocity_at_point_107____________________________ (vel_plasma_electron_profile107)_ 8.91530003109916449e+07 -Plasma_electron_thermal_velocity_at_point_108____________________________ (vel_plasma_electron_profile108)_ 8.91051699889752567e+07 -Plasma_electron_thermal_velocity_at_point_109____________________________ (vel_plasma_electron_profile109)_ 8.90568835525355339e+07 -Plasma_electron_thermal_velocity_at_point_110____________________________ (vel_plasma_electron_profile110)_ 8.90081406947940290e+07 -Plasma_electron_thermal_velocity_at_point_111____________________________ (vel_plasma_electron_profile111)_ 8.89589411062483191e+07 -Plasma_electron_thermal_velocity_at_point_112____________________________ (vel_plasma_electron_profile112)_ 8.89092844747797251e+07 -Plasma_electron_thermal_velocity_at_point_113____________________________ (vel_plasma_electron_profile113)_ 8.88591704856611341e+07 -Plasma_electron_thermal_velocity_at_point_114____________________________ (vel_plasma_electron_profile114)_ 8.88085988215654492e+07 -Plasma_electron_thermal_velocity_at_point_115____________________________ (vel_plasma_electron_profile115)_ 8.87575691625742912e+07 -Plasma_electron_thermal_velocity_at_point_116____________________________ (vel_plasma_electron_profile116)_ 8.87060811861862242e+07 -Plasma_electron_thermal_velocity_at_point_117____________________________ (vel_plasma_electron_profile117)_ 8.86541345673267394e+07 -Plasma_electron_thermal_velocity_at_point_118____________________________ (vel_plasma_electron_profile118)_ 8.86017289783560038e+07 -Plasma_electron_thermal_velocity_at_point_119____________________________ (vel_plasma_electron_profile119)_ 8.85488640890789926e+07 -Plasma_electron_thermal_velocity_at_point_120____________________________ (vel_plasma_electron_profile120)_ 8.84955395667548031e+07 -Plasma_electron_thermal_velocity_at_point_121____________________________ (vel_plasma_electron_profile121)_ 8.84417550761071742e+07 -Plasma_electron_thermal_velocity_at_point_122____________________________ (vel_plasma_electron_profile122)_ 8.83875102793333083e+07 -Plasma_electron_thermal_velocity_at_point_123____________________________ (vel_plasma_electron_profile123)_ 8.83328048361149877e+07 -Plasma_electron_thermal_velocity_at_point_124____________________________ (vel_plasma_electron_profile124)_ 8.82776384036289901e+07 -Plasma_electron_thermal_velocity_at_point_125____________________________ (vel_plasma_electron_profile125)_ 8.82220106365574002e+07 -Plasma_electron_thermal_velocity_at_point_126____________________________ (vel_plasma_electron_profile126)_ 8.81659211870995313e+07 -Plasma_electron_thermal_velocity_at_point_127____________________________ (vel_plasma_electron_profile127)_ 8.81093697049819380e+07 -Plasma_electron_thermal_velocity_at_point_128____________________________ (vel_plasma_electron_profile128)_ 8.80523558374716043e+07 -Plasma_electron_thermal_velocity_at_point_129____________________________ (vel_plasma_electron_profile129)_ 8.79948792293861806e+07 -Plasma_electron_thermal_velocity_at_point_130____________________________ (vel_plasma_electron_profile130)_ 8.79369395231069475e+07 -Plasma_electron_thermal_velocity_at_point_131____________________________ (vel_plasma_electron_profile131)_ 8.78785363585911244e+07 -Plasma_electron_thermal_velocity_at_point_132____________________________ (vel_plasma_electron_profile132)_ 8.78196693733844161e+07 -Plasma_electron_thermal_velocity_at_point_133____________________________ (vel_plasma_electron_profile133)_ 8.77603382026339620e+07 -Plasma_electron_thermal_velocity_at_point_134____________________________ (vel_plasma_electron_profile134)_ 8.77005424791018963e+07 -Plasma_electron_thermal_velocity_at_point_135____________________________ (vel_plasma_electron_profile135)_ 8.76402818331784457e+07 -Plasma_electron_thermal_velocity_at_point_136____________________________ (vel_plasma_electron_profile136)_ 8.75795558928966820e+07 -Plasma_electron_thermal_velocity_at_point_137____________________________ (vel_plasma_electron_profile137)_ 8.75183642839457244e+07 -Plasma_electron_thermal_velocity_at_point_138____________________________ (vel_plasma_electron_profile138)_ 8.74567066296860725e+07 -Plasma_electron_thermal_velocity_at_point_139____________________________ (vel_plasma_electron_profile139)_ 8.73945825511645228e+07 -Plasma_electron_thermal_velocity_at_point_140____________________________ (vel_plasma_electron_profile140)_ 8.73319916671285182e+07 -Plasma_electron_thermal_velocity_at_point_141____________________________ (vel_plasma_electron_profile141)_ 8.72689335940431505e+07 -Plasma_electron_thermal_velocity_at_point_142____________________________ (vel_plasma_electron_profile142)_ 8.72054079461060762e+07 -Plasma_electron_thermal_velocity_at_point_143____________________________ (vel_plasma_electron_profile143)_ 8.71414143352643698e+07 -Plasma_electron_thermal_velocity_at_point_144____________________________ (vel_plasma_electron_profile144)_ 8.70769523712311387e+07 -Plasma_electron_thermal_velocity_at_point_145____________________________ (vel_plasma_electron_profile145)_ 8.70120216615025401e+07 -Plasma_electron_thermal_velocity_at_point_146____________________________ (vel_plasma_electron_profile146)_ 8.69466218113756627e+07 -Plasma_electron_thermal_velocity_at_point_147____________________________ (vel_plasma_electron_profile147)_ 8.68807524239660800e+07 -Plasma_electron_thermal_velocity_at_point_148____________________________ (vel_plasma_electron_profile148)_ 8.68144131002258211e+07 -Plasma_electron_thermal_velocity_at_point_149____________________________ (vel_plasma_electron_profile149)_ 8.67476034389633685e+07 -Plasma_electron_thermal_velocity_at_point_150____________________________ (vel_plasma_electron_profile150)_ 8.66803230368619263e+07 -Plasma_electron_thermal_velocity_at_point_151____________________________ (vel_plasma_electron_profile151)_ 8.66125714884990007e+07 -Plasma_electron_thermal_velocity_at_point_152____________________________ (vel_plasma_electron_profile152)_ 8.65443483863672912e+07 -Plasma_electron_thermal_velocity_at_point_153____________________________ (vel_plasma_electron_profile153)_ 8.64756533208941668e+07 -Plasma_electron_thermal_velocity_at_point_154____________________________ (vel_plasma_electron_profile154)_ 8.64064858804635406e+07 -Plasma_electron_thermal_velocity_at_point_155____________________________ (vel_plasma_electron_profile155)_ 8.63368456514372975e+07 -Plasma_electron_thermal_velocity_at_point_156____________________________ (vel_plasma_electron_profile156)_ 8.62667322181766629e+07 -Plasma_electron_thermal_velocity_at_point_157____________________________ (vel_plasma_electron_profile157)_ 8.61961451630658060e+07 -Plasma_electron_thermal_velocity_at_point_158____________________________ (vel_plasma_electron_profile158)_ 8.61250840665340871e+07 -Plasma_electron_thermal_velocity_at_point_159____________________________ (vel_plasma_electron_profile159)_ 8.60535485070794076e+07 -Plasma_electron_thermal_velocity_at_point_160____________________________ (vel_plasma_electron_profile160)_ 8.59815380612933785e+07 -Plasma_electron_thermal_velocity_at_point_161____________________________ (vel_plasma_electron_profile161)_ 8.59090523038851321e+07 -Plasma_electron_thermal_velocity_at_point_162____________________________ (vel_plasma_electron_profile162)_ 8.58360908077066243e+07 -Plasma_electron_thermal_velocity_at_point_163____________________________ (vel_plasma_electron_profile163)_ 8.57626531437791735e+07 -Plasma_electron_thermal_velocity_at_point_164____________________________ (vel_plasma_electron_profile164)_ 8.56887388813185394e+07 -Plasma_electron_thermal_velocity_at_point_165____________________________ (vel_plasma_electron_profile165)_ 8.56143475877632946e+07 -Plasma_electron_thermal_velocity_at_point_166____________________________ (vel_plasma_electron_profile166)_ 8.55394788288018256e+07 -Plasma_electron_thermal_velocity_at_point_167____________________________ (vel_plasma_electron_profile167)_ 8.54641321684006006e+07 -Plasma_electron_thermal_velocity_at_point_168____________________________ (vel_plasma_electron_profile168)_ 8.53883071688331366e+07 -Plasma_electron_thermal_velocity_at_point_169____________________________ (vel_plasma_electron_profile169)_ 8.53120033907093555e+07 -Plasma_electron_thermal_velocity_at_point_170____________________________ (vel_plasma_electron_profile170)_ 8.52352203930067271e+07 -Plasma_electron_thermal_velocity_at_point_171____________________________ (vel_plasma_electron_profile171)_ 8.51579577330999225e+07 -Plasma_electron_thermal_velocity_at_point_172____________________________ (vel_plasma_electron_profile172)_ 8.50802149667935967e+07 -Plasma_electron_thermal_velocity_at_point_173____________________________ (vel_plasma_electron_profile173)_ 8.50019916483539343e+07 -Plasma_electron_thermal_velocity_at_point_174____________________________ (vel_plasma_electron_profile174)_ 8.49232873305422515e+07 -Plasma_electron_thermal_velocity_at_point_175____________________________ (vel_plasma_electron_profile175)_ 8.48441015646490902e+07 -Plasma_electron_thermal_velocity_at_point_176____________________________ (vel_plasma_electron_profile176)_ 8.47644339005281031e+07 -Plasma_electron_thermal_velocity_at_point_177____________________________ (vel_plasma_electron_profile177)_ 8.46842838866323084e+07 -Plasma_electron_thermal_velocity_at_point_178____________________________ (vel_plasma_electron_profile178)_ 8.46036510700494796e+07 -Plasma_electron_thermal_velocity_at_point_179____________________________ (vel_plasma_electron_profile179)_ 8.45225349965404421e+07 -Plasma_electron_thermal_velocity_at_point_180____________________________ (vel_plasma_electron_profile180)_ 8.44409352105759084e+07 -Plasma_electron_thermal_velocity_at_point_181____________________________ (vel_plasma_electron_profile181)_ 8.43588512553756535e+07 -Plasma_electron_thermal_velocity_at_point_182____________________________ (vel_plasma_electron_profile182)_ 8.42762826729485691e+07 -Plasma_electron_thermal_velocity_at_point_183____________________________ (vel_plasma_electron_profile183)_ 8.41932290041329712e+07 -Plasma_electron_thermal_velocity_at_point_184____________________________ (vel_plasma_electron_profile184)_ 8.41096897886375487e+07 -Plasma_electron_thermal_velocity_at_point_185____________________________ (vel_plasma_electron_profile185)_ 8.40256645650852621e+07 -Plasma_electron_thermal_velocity_at_point_186____________________________ (vel_plasma_electron_profile186)_ 8.39411528710554093e+07 -Plasma_electron_thermal_velocity_at_point_187____________________________ (vel_plasma_electron_profile187)_ 8.38561542431289107e+07 -Plasma_electron_thermal_velocity_at_point_188____________________________ (vel_plasma_electron_profile188)_ 8.37706682169333249e+07 -Plasma_electron_thermal_velocity_at_point_189____________________________ (vel_plasma_electron_profile189)_ 8.36846943271894604e+07 -Plasma_electron_thermal_velocity_at_point_190____________________________ (vel_plasma_electron_profile190)_ 8.35982321077596545e+07 -Plasma_electron_thermal_velocity_at_point_191____________________________ (vel_plasma_electron_profile191)_ 8.35112810916954726e+07 -Plasma_electron_thermal_velocity_at_point_192____________________________ (vel_plasma_electron_profile192)_ 8.34238408112874329e+07 -Plasma_electron_thermal_velocity_at_point_193____________________________ (vel_plasma_electron_profile193)_ 8.33359107981170267e+07 -Plasma_electron_thermal_velocity_at_point_194____________________________ (vel_plasma_electron_profile194)_ 8.32474905831076652e+07 -Plasma_electron_thermal_velocity_at_point_195____________________________ (vel_plasma_electron_profile195)_ 8.31585796965792328e+07 -Plasma_electron_thermal_velocity_at_point_196____________________________ (vel_plasma_electron_profile196)_ 8.30691776683009565e+07 -Plasma_electron_thermal_velocity_at_point_197____________________________ (vel_plasma_electron_profile197)_ 8.29792840275485367e+07 -Plasma_electron_thermal_velocity_at_point_198____________________________ (vel_plasma_electron_profile198)_ 8.28888983031606227e+07 -Plasma_electron_thermal_velocity_at_point_199____________________________ (vel_plasma_electron_profile199)_ 8.27980200235974938e+07 -Plasma_electron_thermal_velocity_at_point_200____________________________ (vel_plasma_electron_profile200)_ 8.27066487170003653e+07 -Plasma_electron_thermal_velocity_at_point_201____________________________ (vel_plasma_electron_profile201)_ 8.26147839112524986e+07 -Plasma_electron_thermal_velocity_at_point_202____________________________ (vel_plasma_electron_profile202)_ 8.25224251340419501e+07 -Plasma_electron_thermal_velocity_at_point_203____________________________ (vel_plasma_electron_profile203)_ 8.24295719129260331e+07 -Plasma_electron_thermal_velocity_at_point_204____________________________ (vel_plasma_electron_profile204)_ 8.23362237753953934e+07 -Plasma_electron_thermal_velocity_at_point_205____________________________ (vel_plasma_electron_profile205)_ 8.22423802489419132e+07 -Plasma_electron_thermal_velocity_at_point_206____________________________ (vel_plasma_electron_profile206)_ 8.21480408611268848e+07 -Plasma_electron_thermal_velocity_at_point_207____________________________ (vel_plasma_electron_profile207)_ 8.20532051396507472e+07 -Plasma_electron_thermal_velocity_at_point_208____________________________ (vel_plasma_electron_profile208)_ 8.19578726124258041e+07 -Plasma_electron_thermal_velocity_at_point_209____________________________ (vel_plasma_electron_profile209)_ 8.18620428076483905e+07 -Plasma_electron_thermal_velocity_at_point_210____________________________ (vel_plasma_electron_profile210)_ 8.17657152538740933e+07 -Plasma_electron_thermal_velocity_at_point_211____________________________ (vel_plasma_electron_profile211)_ 8.16688894800951332e+07 -Plasma_electron_thermal_velocity_at_point_212____________________________ (vel_plasma_electron_profile212)_ 8.15715650158181489e+07 -Plasma_electron_thermal_velocity_at_point_213____________________________ (vel_plasma_electron_profile213)_ 8.14737413911456615e+07 -Plasma_electron_thermal_velocity_at_point_214____________________________ (vel_plasma_electron_profile214)_ 8.13754181368563324e+07 -Plasma_electron_thermal_velocity_at_point_215____________________________ (vel_plasma_electron_profile215)_ 8.12765947844915539e+07 -Plasma_electron_thermal_velocity_at_point_216____________________________ (vel_plasma_electron_profile216)_ 8.11772708664395511e+07 -Plasma_electron_thermal_velocity_at_point_217____________________________ (vel_plasma_electron_profile217)_ 8.10774459160246104e+07 -Plasma_electron_thermal_velocity_at_point_218____________________________ (vel_plasma_electron_profile218)_ 8.09771194675967991e+07 -Plasma_electron_thermal_velocity_at_point_219____________________________ (vel_plasma_electron_profile219)_ 8.08762910566240251e+07 -Plasma_electron_thermal_velocity_at_point_220____________________________ (vel_plasma_electron_profile220)_ 8.07749602197878212e+07 -Plasma_electron_thermal_velocity_at_point_221____________________________ (vel_plasma_electron_profile221)_ 8.06731264950774312e+07 -Plasma_electron_thermal_velocity_at_point_222____________________________ (vel_plasma_electron_profile222)_ 8.05707894218912572e+07 -Plasma_electron_thermal_velocity_at_point_223____________________________ (vel_plasma_electron_profile223)_ 8.04679485411366075e+07 -Plasma_electron_thermal_velocity_at_point_224____________________________ (vel_plasma_electron_profile224)_ 8.03646033953337669e+07 -Plasma_electron_thermal_velocity_at_point_225____________________________ (vel_plasma_electron_profile225)_ 8.02607535287214369e+07 -Plasma_electron_thermal_velocity_at_point_226____________________________ (vel_plasma_electron_profile226)_ 8.01563984873667210e+07 -Plasma_electron_thermal_velocity_at_point_227____________________________ (vel_plasma_electron_profile227)_ 8.00515378192742616e+07 -Plasma_electron_thermal_velocity_at_point_228____________________________ (vel_plasma_electron_profile228)_ 7.99461710745010823e+07 -Plasma_electron_thermal_velocity_at_point_229____________________________ (vel_plasma_electron_profile229)_ 7.98402978052728027e+07 -Plasma_electron_thermal_velocity_at_point_230____________________________ (vel_plasma_electron_profile230)_ 7.97339175661028326e+07 -Plasma_electron_thermal_velocity_at_point_231____________________________ (vel_plasma_electron_profile231)_ 7.96270299139137268e+07 -Plasma_electron_thermal_velocity_at_point_232____________________________ (vel_plasma_electron_profile232)_ 7.95196344081627280e+07 -Plasma_electron_thermal_velocity_at_point_233____________________________ (vel_plasma_electron_profile233)_ 7.94117306109686047e+07 -Plasma_electron_thermal_velocity_at_point_234____________________________ (vel_plasma_electron_profile234)_ 7.93033180872438699e+07 -Plasma_electron_thermal_velocity_at_point_235____________________________ (vel_plasma_electron_profile235)_ 7.91943964048275501e+07 -Plasma_electron_thermal_velocity_at_point_236____________________________ (vel_plasma_electron_profile236)_ 7.90849651346222609e+07 -Plasma_electron_thermal_velocity_at_point_237____________________________ (vel_plasma_electron_profile237)_ 7.89750238507354707e+07 -Plasma_electron_thermal_velocity_at_point_238____________________________ (vel_plasma_electron_profile238)_ 7.88645721306222826e+07 -Plasma_electron_thermal_velocity_at_point_239____________________________ (vel_plasma_electron_profile239)_ 7.87536095552332550e+07 -Plasma_electron_thermal_velocity_at_point_240____________________________ (vel_plasma_electron_profile240)_ 7.86421357091647238e+07 -Plasma_electron_thermal_velocity_at_point_241____________________________ (vel_plasma_electron_profile241)_ 7.85301501808132529e+07 -Plasma_electron_thermal_velocity_at_point_242____________________________ (vel_plasma_electron_profile242)_ 7.84176525625333339e+07 -Plasma_electron_thermal_velocity_at_point_243____________________________ (vel_plasma_electron_profile243)_ 7.83046424508000612e+07 -Plasma_electron_thermal_velocity_at_point_244____________________________ (vel_plasma_electron_profile244)_ 7.81911194463729262e+07 -Plasma_electron_thermal_velocity_at_point_245____________________________ (vel_plasma_electron_profile245)_ 7.80770831544682831e+07 -Plasma_electron_thermal_velocity_at_point_246____________________________ (vel_plasma_electron_profile246)_ 7.79625331849306524e+07 -Plasma_electron_thermal_velocity_at_point_247____________________________ (vel_plasma_electron_profile247)_ 7.78474691524116248e+07 -Plasma_electron_thermal_velocity_at_point_248____________________________ (vel_plasma_electron_profile248)_ 7.77318906765530407e+07 -Plasma_electron_thermal_velocity_at_point_249____________________________ (vel_plasma_electron_profile249)_ 7.76157973821717352e+07 -Plasma_electron_thermal_velocity_at_point_250____________________________ (vel_plasma_electron_profile250)_ 7.74991888994524926e+07 -Plasma_electron_thermal_velocity_at_point_251____________________________ (vel_plasma_electron_profile251)_ 7.73820648641437292e+07 -Plasma_electron_thermal_velocity_at_point_252____________________________ (vel_plasma_electron_profile252)_ 7.72644249177576154e+07 -Plasma_electron_thermal_velocity_at_point_253____________________________ (vel_plasma_electron_profile253)_ 7.71462687077754587e+07 -Plasma_electron_thermal_velocity_at_point_254____________________________ (vel_plasma_electron_profile254)_ 7.70275958878597915e+07 -Plasma_electron_thermal_velocity_at_point_255____________________________ (vel_plasma_electron_profile255)_ 7.69084061180678159e+07 -Plasma_electron_thermal_velocity_at_point_256____________________________ (vel_plasma_electron_profile256)_ 7.67886990650754124e+07 -Plasma_electron_thermal_velocity_at_point_257____________________________ (vel_plasma_electron_profile257)_ 7.66684744024012089e+07 -Plasma_electron_thermal_velocity_at_point_258____________________________ (vel_plasma_electron_profile258)_ 7.65477318106396347e+07 -Plasma_electron_thermal_velocity_at_point_259____________________________ (vel_plasma_electron_profile259)_ 7.64264709776992053e+07 -Plasma_electron_thermal_velocity_at_point_260____________________________ (vel_plasma_electron_profile260)_ 7.63046915990453660e+07 -Plasma_electron_thermal_velocity_at_point_261____________________________ (vel_plasma_electron_profile261)_ 7.61823933779510111e+07 -Plasma_electron_thermal_velocity_at_point_262____________________________ (vel_plasma_electron_profile262)_ 7.60595760257521421e+07 -Plasma_electron_thermal_velocity_at_point_263____________________________ (vel_plasma_electron_profile263)_ 7.59362392621098608e+07 -Plasma_electron_thermal_velocity_at_point_264____________________________ (vel_plasma_electron_profile264)_ 7.58123828152801096e+07 -Plasma_electron_thermal_velocity_at_point_265____________________________ (vel_plasma_electron_profile265)_ 7.56880064223890007e+07 -Plasma_electron_thermal_velocity_at_point_266____________________________ (vel_plasma_electron_profile266)_ 7.55631098297142237e+07 -Plasma_electron_thermal_velocity_at_point_267____________________________ (vel_plasma_electron_profile267)_ 7.54376927929759920e+07 -Plasma_electron_thermal_velocity_at_point_268____________________________ (vel_plasma_electron_profile268)_ 7.53117550776334405e+07 -Plasma_electron_thermal_velocity_at_point_269____________________________ (vel_plasma_electron_profile269)_ 7.51852964591892511e+07 -Plasma_electron_thermal_velocity_at_point_270____________________________ (vel_plasma_electron_profile270)_ 7.50583167235004753e+07 -Plasma_electron_thermal_velocity_at_point_271____________________________ (vel_plasma_electron_profile271)_ 7.49308156671003252e+07 -Plasma_electron_thermal_velocity_at_point_272____________________________ (vel_plasma_electron_profile272)_ 7.48027930975241214e+07 -Plasma_electron_thermal_velocity_at_point_273____________________________ (vel_plasma_electron_profile273)_ 7.46742488336471617e+07 -Plasma_electron_thermal_velocity_at_point_274____________________________ (vel_plasma_electron_profile274)_ 7.45451827060291469e+07 -Plasma_electron_thermal_velocity_at_point_275____________________________ (vel_plasma_electron_profile275)_ 7.44155945572671443e+07 -Plasma_electron_thermal_velocity_at_point_276____________________________ (vel_plasma_electron_profile276)_ 7.42854842423600107e+07 -Plasma_electron_thermal_velocity_at_point_277____________________________ (vel_plasma_electron_profile277)_ 7.41548516290785372e+07 -Plasma_electron_thermal_velocity_at_point_278____________________________ (vel_plasma_electron_profile278)_ 7.40236965983472764e+07 -Plasma_electron_thermal_velocity_at_point_279____________________________ (vel_plasma_electron_profile279)_ 7.38920190446375906e+07 -Plasma_electron_thermal_velocity_at_point_280____________________________ (vel_plasma_electron_profile280)_ 7.37598188763672411e+07 -Plasma_electron_thermal_velocity_at_point_281____________________________ (vel_plasma_electron_profile281)_ 7.36270960163127929e+07 -Plasma_electron_thermal_velocity_at_point_282____________________________ (vel_plasma_electron_profile282)_ 7.34938504020320028e+07 -Plasma_electron_thermal_velocity_at_point_283____________________________ (vel_plasma_electron_profile283)_ 7.33600819862981886e+07 -Plasma_electron_thermal_velocity_at_point_284____________________________ (vel_plasma_electron_profile284)_ 7.32257907375434786e+07 -Plasma_electron_thermal_velocity_at_point_285____________________________ (vel_plasma_electron_profile285)_ 7.30909766403163671e+07 -Plasma_electron_thermal_velocity_at_point_286____________________________ (vel_plasma_electron_profile286)_ 7.29556396957490295e+07 -Plasma_electron_thermal_velocity_at_point_287____________________________ (vel_plasma_electron_profile287)_ 7.28197799220385998e+07 -Plasma_electron_thermal_velocity_at_point_288____________________________ (vel_plasma_electron_profile288)_ 7.26833973549401462e+07 -Plasma_electron_thermal_velocity_at_point_289____________________________ (vel_plasma_electron_profile289)_ 7.25464920482724905e+07 -Plasma_electron_thermal_velocity_at_point_290____________________________ (vel_plasma_electron_profile290)_ 7.24090640744378120e+07 -Plasma_electron_thermal_velocity_at_point_291____________________________ (vel_plasma_electron_profile291)_ 7.22711135249554366e+07 -Plasma_electron_thermal_velocity_at_point_292____________________________ (vel_plasma_electron_profile292)_ 7.21326405110086948e+07 -Plasma_electron_thermal_velocity_at_point_293____________________________ (vel_plasma_electron_profile293)_ 7.19936451640070677e+07 -Plasma_electron_thermal_velocity_at_point_294____________________________ (vel_plasma_electron_profile294)_ 7.18541276361626685e+07 -Plasma_electron_thermal_velocity_at_point_295____________________________ (vel_plasma_electron_profile295)_ 7.17140881010835618e+07 -Plasma_electron_thermal_velocity_at_point_296____________________________ (vel_plasma_electron_profile296)_ 7.15735267543812841e+07 -Plasma_electron_thermal_velocity_at_point_297____________________________ (vel_plasma_electron_profile297)_ 7.14324438142959625e+07 -Plasma_electron_thermal_velocity_at_point_298____________________________ (vel_plasma_electron_profile298)_ 7.12908395223372579e+07 -Plasma_electron_thermal_velocity_at_point_299____________________________ (vel_plasma_electron_profile299)_ 7.11487141439430565e+07 -Plasma_electron_thermal_velocity_at_point_300____________________________ (vel_plasma_electron_profile300)_ 7.10060679691569954e+07 -Plasma_electron_thermal_velocity_at_point_301____________________________ (vel_plasma_electron_profile301)_ 7.08629013133224100e+07 -Plasma_electron_thermal_velocity_at_point_302____________________________ (vel_plasma_electron_profile302)_ 7.07192145177970529e+07 -Plasma_electron_thermal_velocity_at_point_303____________________________ (vel_plasma_electron_profile303)_ 7.05750079506853670e+07 -Plasma_electron_thermal_velocity_at_point_304____________________________ (vel_plasma_electron_profile304)_ 7.04302820075942129e+07 -Plasma_electron_thermal_velocity_at_point_305____________________________ (vel_plasma_electron_profile305)_ 7.02850371124041080e+07 -Plasma_electron_thermal_velocity_at_point_306____________________________ (vel_plasma_electron_profile306)_ 7.01392737180672437e+07 -Plasma_electron_thermal_velocity_at_point_307____________________________ (vel_plasma_electron_profile307)_ 6.99929923074239641e+07 -Plasma_electron_thermal_velocity_at_point_308____________________________ (vel_plasma_electron_profile308)_ 6.98461933940430135e+07 -Plasma_electron_thermal_velocity_at_point_309____________________________ (vel_plasma_electron_profile309)_ 6.96988775230852067e+07 -Plasma_electron_thermal_velocity_at_point_310____________________________ (vel_plasma_electron_profile310)_ 6.95510452721902132e+07 -Plasma_electron_thermal_velocity_at_point_311____________________________ (vel_plasma_electron_profile311)_ 6.94026972523904890e+07 -Plasma_electron_thermal_velocity_at_point_312____________________________ (vel_plasma_electron_profile312)_ 6.92538341090475172e+07 -Plasma_electron_thermal_velocity_at_point_313____________________________ (vel_plasma_electron_profile313)_ 6.91044565228173435e+07 -Plasma_electron_thermal_velocity_at_point_314____________________________ (vel_plasma_electron_profile314)_ 6.89545652106413990e+07 -Plasma_electron_thermal_velocity_at_point_315____________________________ (vel_plasma_electron_profile315)_ 6.88041609267665893e+07 -Plasma_electron_thermal_velocity_at_point_316____________________________ (vel_plasma_electron_profile316)_ 6.86532444637925327e+07 -Plasma_electron_thermal_velocity_at_point_317____________________________ (vel_plasma_electron_profile317)_ 6.85018166537512988e+07 -Plasma_electron_thermal_velocity_at_point_318____________________________ (vel_plasma_electron_profile318)_ 6.83498783692160547e+07 -Plasma_electron_thermal_velocity_at_point_319____________________________ (vel_plasma_electron_profile319)_ 6.81974305244406909e+07 -Plasma_electron_thermal_velocity_at_point_320____________________________ (vel_plasma_electron_profile320)_ 6.80444740765358806e+07 -Plasma_electron_thermal_velocity_at_point_321____________________________ (vel_plasma_electron_profile321)_ 6.78910100266730040e+07 -Plasma_electron_thermal_velocity_at_point_322____________________________ (vel_plasma_electron_profile322)_ 6.77370394213301390e+07 -Plasma_electron_thermal_velocity_at_point_323____________________________ (vel_plasma_electron_profile323)_ 6.75825633535674214e+07 -Plasma_electron_thermal_velocity_at_point_324____________________________ (vel_plasma_electron_profile324)_ 6.74275829643443227e+07 -Plasma_electron_thermal_velocity_at_point_325____________________________ (vel_plasma_electron_profile325)_ 6.72720994438726157e+07 -Plasma_electron_thermal_velocity_at_point_326____________________________ (vel_plasma_electron_profile326)_ 6.71161140330104530e+07 -Plasma_electron_thermal_velocity_at_point_327____________________________ (vel_plasma_electron_profile327)_ 6.69596280246962905e+07 -Plasma_electron_thermal_velocity_at_point_328____________________________ (vel_plasma_electron_profile328)_ 6.68026427654257938e+07 -Plasma_electron_thermal_velocity_at_point_329____________________________ (vel_plasma_electron_profile329)_ 6.66451596567733958e+07 -Plasma_electron_thermal_velocity_at_point_330____________________________ (vel_plasma_electron_profile330)_ 6.64871801569558531e+07 -Plasma_electron_thermal_velocity_at_point_331____________________________ (vel_plasma_electron_profile331)_ 6.63287057824459970e+07 -Plasma_electron_thermal_velocity_at_point_332____________________________ (vel_plasma_electron_profile332)_ 6.61697381096326932e+07 -Plasma_electron_thermal_velocity_at_point_333____________________________ (vel_plasma_electron_profile333)_ 6.60102787765302211e+07 -Plasma_electron_thermal_velocity_at_point_334____________________________ (vel_plasma_electron_profile334)_ 6.58503294845421165e+07 -Plasma_electron_thermal_velocity_at_point_335____________________________ (vel_plasma_electron_profile335)_ 6.56898920002728552e+07 -Plasma_electron_thermal_velocity_at_point_336____________________________ (vel_plasma_electron_profile336)_ 6.55289681574006602e+07 -Plasma_electron_thermal_velocity_at_point_337____________________________ (vel_plasma_electron_profile337)_ 6.53675598586021960e+07 -Plasma_electron_thermal_velocity_at_point_338____________________________ (vel_plasma_electron_profile338)_ 6.52056690775394291e+07 -Plasma_electron_thermal_velocity_at_point_339____________________________ (vel_plasma_electron_profile339)_ 6.50432978609055132e+07 -Plasma_electron_thermal_velocity_at_point_340____________________________ (vel_plasma_electron_profile340)_ 6.48804483305338323e+07 -Plasma_electron_thermal_velocity_at_point_341____________________________ (vel_plasma_electron_profile341)_ 6.47171226855732277e+07 -Plasma_electron_thermal_velocity_at_point_342____________________________ (vel_plasma_electron_profile342)_ 6.45533232047297582e+07 -Plasma_electron_thermal_velocity_at_point_343____________________________ (vel_plasma_electron_profile343)_ 6.43890522485770658e+07 -Plasma_electron_thermal_velocity_at_point_344____________________________ (vel_plasma_electron_profile344)_ 6.42243122619427294e+07 -Plasma_electron_thermal_velocity_at_point_345____________________________ (vel_plasma_electron_profile345)_ 6.40591057763647884e+07 -Plasma_electron_thermal_velocity_at_point_346____________________________ (vel_plasma_electron_profile346)_ 6.38934354126273766e+07 -Plasma_electron_thermal_velocity_at_point_347____________________________ (vel_plasma_electron_profile347)_ 6.37273038833791018e+07 -Plasma_electron_thermal_velocity_at_point_348____________________________ (vel_plasma_electron_profile348)_ 6.35607139958298281e+07 -Plasma_electron_thermal_velocity_at_point_349____________________________ (vel_plasma_electron_profile349)_ 6.33936686545375288e+07 -Plasma_electron_thermal_velocity_at_point_350____________________________ (vel_plasma_electron_profile350)_ 6.32261708642807081e+07 -Plasma_electron_thermal_velocity_at_point_351____________________________ (vel_plasma_electron_profile351)_ 6.30582237330269143e+07 -Plasma_electron_thermal_velocity_at_point_352____________________________ (vel_plasma_electron_profile352)_ 6.28898304749927595e+07 -Plasma_electron_thermal_velocity_at_point_353____________________________ (vel_plasma_electron_profile353)_ 6.27209944138075933e+07 -Plasma_electron_thermal_velocity_at_point_354____________________________ (vel_plasma_electron_profile354)_ 6.25517189857754633e+07 -Plasma_electron_thermal_velocity_at_point_355____________________________ (vel_plasma_electron_profile355)_ 6.23820077432477474e+07 -Plasma_electron_thermal_velocity_at_point_356____________________________ (vel_plasma_electron_profile356)_ 6.22118643581036329e+07 -Plasma_electron_thermal_velocity_at_point_357____________________________ (vel_plasma_electron_profile357)_ 6.20412926253468692e+07 -Plasma_electron_thermal_velocity_at_point_358____________________________ (vel_plasma_electron_profile358)_ 6.18702964668207392e+07 -Plasma_electron_thermal_velocity_at_point_359____________________________ (vel_plasma_electron_profile359)_ 6.16988799350472465e+07 -Plasma_electron_thermal_velocity_at_point_360____________________________ (vel_plasma_electron_profile360)_ 6.15270472171932235e+07 -Plasma_electron_thermal_velocity_at_point_361____________________________ (vel_plasma_electron_profile361)_ 6.13548026391731948e+07 -Plasma_electron_thermal_velocity_at_point_362____________________________ (vel_plasma_electron_profile362)_ 6.11821506698841602e+07 -Plasma_electron_thermal_velocity_at_point_363____________________________ (vel_plasma_electron_profile363)_ 6.10090959255911633e+07 -Plasma_electron_thermal_velocity_at_point_364____________________________ (vel_plasma_electron_profile364)_ 6.08356431744565517e+07 -Plasma_electron_thermal_velocity_at_point_365____________________________ (vel_plasma_electron_profile365)_ 6.06617973412281945e+07 -Plasma_electron_thermal_velocity_at_point_366____________________________ (vel_plasma_electron_profile366)_ 6.04875635120857507e+07 -Plasma_electron_thermal_velocity_at_point_367____________________________ (vel_plasma_electron_profile367)_ 6.03129469396560490e+07 -Plasma_electron_thermal_velocity_at_point_368____________________________ (vel_plasma_electron_profile368)_ 6.01379530482028797e+07 -Plasma_electron_thermal_velocity_at_point_369____________________________ (vel_plasma_electron_profile369)_ 5.99625874389978275e+07 -Plasma_electron_thermal_velocity_at_point_370____________________________ (vel_plasma_electron_profile370)_ 5.97868558958785012e+07 -Plasma_electron_thermal_velocity_at_point_371____________________________ (vel_plasma_electron_profile371)_ 5.96107643910050988e+07 -Plasma_electron_thermal_velocity_at_point_372____________________________ (vel_plasma_electron_profile372)_ 5.94343190908185840e+07 -Plasma_electron_thermal_velocity_at_point_373____________________________ (vel_plasma_electron_profile373)_ 5.92575263622146174e+07 -Plasma_electron_thermal_velocity_at_point_374____________________________ (vel_plasma_electron_profile374)_ 5.90803927789358869e+07 -Plasma_electron_thermal_velocity_at_point_375____________________________ (vel_plasma_electron_profile375)_ 5.89029251281962842e+07 -Plasma_electron_thermal_velocity_at_point_376____________________________ (vel_plasma_electron_profile376)_ 5.87251304175484180e+07 -Plasma_electron_thermal_velocity_at_point_377____________________________ (vel_plasma_electron_profile377)_ 5.85470158819957674e+07 -Plasma_electron_thermal_velocity_at_point_378____________________________ (vel_plasma_electron_profile378)_ 5.83685889913720861e+07 -Plasma_electron_thermal_velocity_at_point_379____________________________ (vel_plasma_electron_profile379)_ 5.81898574579904079e+07 -Plasma_electron_thermal_velocity_at_point_380____________________________ (vel_plasma_electron_profile380)_ 5.80108292445769906e+07 -Plasma_electron_thermal_velocity_at_point_381____________________________ (vel_plasma_electron_profile381)_ 5.78315125725033134e+07 -Plasma_electron_thermal_velocity_at_point_382____________________________ (vel_plasma_electron_profile382)_ 5.76519159303271845e+07 -Plasma_electron_thermal_velocity_at_point_383____________________________ (vel_plasma_electron_profile383)_ 5.74720480826579630e+07 -Plasma_electron_thermal_velocity_at_point_384____________________________ (vel_plasma_electron_profile384)_ 5.72919180793608651e+07 -Plasma_electron_thermal_velocity_at_point_385____________________________ (vel_plasma_electron_profile385)_ 5.71115352651150748e+07 -Plasma_electron_thermal_velocity_at_point_386____________________________ (vel_plasma_electron_profile386)_ 5.69309092893413827e+07 -Plasma_electron_thermal_velocity_at_point_387____________________________ (vel_plasma_electron_profile387)_ 5.67500501165188849e+07 -Plasma_electron_thermal_velocity_at_point_388____________________________ (vel_plasma_electron_profile388)_ 5.65689680369050875e+07 -Plasma_electron_thermal_velocity_at_point_389____________________________ (vel_plasma_electron_profile389)_ 5.63876736776818633e+07 -Plasma_electron_thermal_velocity_at_point_390____________________________ (vel_plasma_electron_profile390)_ 5.62061780145462155e+07 -Plasma_electron_thermal_velocity_at_point_391____________________________ (vel_plasma_electron_profile391)_ 5.60244923837674335e+07 -Plasma_electron_thermal_velocity_at_point_392____________________________ (vel_plasma_electron_profile392)_ 5.58426284947327152e+07 -Plasma_electron_thermal_velocity_at_point_393____________________________ (vel_plasma_electron_profile393)_ 5.56605984430065602e+07 -Plasma_electron_thermal_velocity_at_point_394____________________________ (vel_plasma_electron_profile394)_ 5.54784147239308283e+07 -Plasma_electron_thermal_velocity_at_point_395____________________________ (vel_plasma_electron_profile395)_ 5.52960902467868850e+07 -Plasma_electron_thermal_velocity_at_point_396____________________________ (vel_plasma_electron_profile396)_ 5.51136383495565653e+07 -Plasma_electron_thermal_velocity_at_point_397____________________________ (vel_plasma_electron_profile397)_ 5.49310728143087104e+07 -Plasma_electron_thermal_velocity_at_point_398____________________________ (vel_plasma_electron_profile398)_ 5.47484078832425699e+07 -Plasma_electron_thermal_velocity_at_point_399____________________________ (vel_plasma_electron_profile399)_ 5.45656582754256651e+07 -Plasma_electron_thermal_velocity_at_point_400____________________________ (vel_plasma_electron_profile400)_ 5.43828392042660415e+07 -Plasma_electron_thermal_velocity_at_point_401____________________________ (vel_plasma_electron_profile401)_ 5.41999663957508802e+07 -Plasma_electron_thermal_velocity_at_point_402____________________________ (vel_plasma_electron_profile402)_ 5.40170561075034440e+07 -Plasma_electron_thermal_velocity_at_point_403____________________________ (vel_plasma_electron_profile403)_ 5.38341251486992016e+07 -Plasma_electron_thermal_velocity_at_point_404____________________________ (vel_plasma_electron_profile404)_ 5.36511909008878097e+07 -Plasma_electron_thermal_velocity_at_point_405____________________________ (vel_plasma_electron_profile405)_ 5.34682713397838771e+07 -Plasma_electron_thermal_velocity_at_point_406____________________________ (vel_plasma_electron_profile406)_ 5.32853850580701455e+07 -Plasma_electron_thermal_velocity_at_point_407____________________________ (vel_plasma_electron_profile407)_ 5.31025512892859876e+07 -Plasma_electron_thermal_velocity_at_point_408____________________________ (vel_plasma_electron_profile408)_ 5.29197899328584895e+07 -Plasma_electron_thermal_velocity_at_point_409____________________________ (vel_plasma_electron_profile409)_ 5.27371215803550780e+07 -Plasma_electron_thermal_velocity_at_point_410____________________________ (vel_plasma_electron_profile410)_ 5.25545675430267155e+07 -Plasma_electron_thermal_velocity_at_point_411____________________________ (vel_plasma_electron_profile411)_ 5.23721498807338625e+07 -Plasma_electron_thermal_velocity_at_point_412____________________________ (vel_plasma_electron_profile412)_ 5.21898914323392808e+07 -Plasma_electron_thermal_velocity_at_point_413____________________________ (vel_plasma_electron_profile413)_ 5.20078158476691768e+07 -Plasma_electron_thermal_velocity_at_point_414____________________________ (vel_plasma_electron_profile414)_ 5.18259476211502329e+07 -Plasma_electron_thermal_velocity_at_point_415____________________________ (vel_plasma_electron_profile415)_ 5.16443121272381991e+07 -Plasma_electron_thermal_velocity_at_point_416____________________________ (vel_plasma_electron_profile416)_ 5.14629356577685028e+07 -Plasma_electron_thermal_velocity_at_point_417____________________________ (vel_plasma_electron_profile417)_ 5.12818454613659531e+07 -Plasma_electron_thermal_velocity_at_point_418____________________________ (vel_plasma_electron_profile418)_ 5.11010697850714624e+07 -Plasma_electron_thermal_velocity_at_point_419____________________________ (vel_plasma_electron_profile419)_ 5.09206379183493033e+07 -Plasma_electron_thermal_velocity_at_point_420____________________________ (vel_plasma_electron_profile420)_ 5.07405802396677434e+07 -Plasma_electron_thermal_velocity_at_point_421____________________________ (vel_plasma_electron_profile421)_ 5.05609282658535317e+07 -Plasma_electron_thermal_velocity_at_point_422____________________________ (vel_plasma_electron_profile422)_ 5.03817147044501826e+07 -Plasma_electron_thermal_velocity_at_point_423____________________________ (vel_plasma_electron_profile423)_ 5.02029735093351379e+07 -Plasma_electron_thermal_velocity_at_point_424____________________________ (vel_plasma_electron_profile424)_ 5.00247399398713782e+07 -Plasma_electron_thermal_velocity_at_point_425____________________________ (vel_plasma_electron_profile425)_ 4.98470506239112243e+07 -Plasma_electron_thermal_velocity_at_point_426____________________________ (vel_plasma_electron_profile426)_ 4.96699436250015348e+07 -Plasma_electron_thermal_velocity_at_point_427____________________________ (vel_plasma_electron_profile427)_ 4.94934585141820833e+07 -Plasma_electron_thermal_velocity_at_point_428____________________________ (vel_plasma_electron_profile428)_ 4.93176364468203336e+07 -Plasma_electron_thermal_velocity_at_point_429____________________________ (vel_plasma_electron_profile429)_ 4.91425202449788824e+07 -Plasma_electron_thermal_velocity_at_point_430____________________________ (vel_plasma_electron_profile430)_ 4.89681544858783260e+07 -Plasma_electron_thermal_velocity_at_point_431____________________________ (vel_plasma_electron_profile431)_ 4.87945855970958769e+07 -Plasma_electron_thermal_velocity_at_point_432____________________________ (vel_plasma_electron_profile432)_ 4.86218619592267349e+07 -Plasma_electron_thermal_velocity_at_point_433____________________________ (vel_plasma_electron_profile433)_ 4.84500340168372691e+07 -Plasma_electron_thermal_velocity_at_point_434____________________________ (vel_plasma_electron_profile434)_ 4.82791543986647725e+07 -Plasma_electron_thermal_velocity_at_point_435____________________________ (vel_plasma_electron_profile435)_ 4.81092780481560230e+07 -Plasma_electron_thermal_velocity_at_point_436____________________________ (vel_plasma_electron_profile436)_ 4.79404623656185940e+07 -Plasma_electron_thermal_velocity_at_point_437____________________________ (vel_plasma_electron_profile437)_ 4.77727673634435907e+07 -Plasma_electron_thermal_velocity_at_point_438____________________________ (vel_plasma_electron_profile438)_ 4.76062558361229897e+07 -Plasma_electron_thermal_velocity_at_point_439____________________________ (vel_plasma_electron_profile439)_ 4.74409935470580906e+07 -Plasma_electron_thermal_velocity_at_point_440____________________________ (vel_plasma_electron_profile440)_ 4.72770494345218241e+07 -Plasma_electron_thermal_velocity_at_point_441____________________________ (vel_plasma_electron_profile441)_ 4.71144958395593241e+07 -Plasma_electron_thermal_velocity_at_point_442____________________________ (vel_plasma_electron_profile442)_ 4.69534087591473311e+07 -Plasma_electron_thermal_velocity_at_point_443____________________________ (vel_plasma_electron_profile443)_ 4.67938681285664365e+07 -Plasma_electron_thermal_velocity_at_point_444____________________________ (vel_plasma_electron_profile444)_ 4.66359581377628744e+07 -Plasma_electron_thermal_velocity_at_point_445____________________________ (vel_plasma_electron_profile445)_ 4.64797675874706730e+07 -Plasma_electron_thermal_velocity_at_point_446____________________________ (vel_plasma_electron_profile446)_ 4.63253902921265513e+07 -Plasma_electron_thermal_velocity_at_point_447____________________________ (vel_plasma_electron_profile447)_ 4.61729255382426903e+07 -Plasma_electron_thermal_velocity_at_point_448____________________________ (vel_plasma_electron_profile448)_ 4.60224786089277118e+07 -Plasma_electron_thermal_velocity_at_point_449____________________________ (vel_plasma_electron_profile449)_ 4.58741613879626542e+07 -Plasma_electron_thermal_velocity_at_point_450____________________________ (vel_plasma_electron_profile450)_ 4.57280930602880791e+07 -Plasma_electron_thermal_velocity_at_point_451____________________________ (vel_plasma_electron_profile451)_ 4.55844009304260910e+07 -Plasma_electron_thermal_velocity_at_point_452____________________________ (vel_plasma_electron_profile452)_ 4.54432213865410313e+07 -Plasma_electron_thermal_velocity_at_point_453____________________________ (vel_plasma_electron_profile453)_ 4.53047010463028252e+07 -Plasma_electron_thermal_velocity_at_point_454____________________________ (vel_plasma_electron_profile454)_ 4.51689981323547810e+07 -Plasma_electron_thermal_velocity_at_point_455____________________________ (vel_plasma_electron_profile455)_ 4.50362841415830106e+07 -Plasma_electron_thermal_velocity_at_point_456____________________________ (vel_plasma_electron_profile456)_ 4.49067458958014250e+07 -Plasma_electron_thermal_velocity_at_point_457____________________________ (vel_plasma_electron_profile457)_ 4.47805880957604796e+07 -Plasma_electron_thermal_velocity_at_point_458____________________________ (vel_plasma_electron_profile458)_ 4.46580365517034680e+07 -Plasma_electron_thermal_velocity_at_point_459____________________________ (vel_plasma_electron_profile459)_ 4.45393423426995650e+07 -Plasma_electron_thermal_velocity_at_point_460____________________________ (vel_plasma_electron_profile460)_ 4.44247872824289501e+07 -Plasma_electron_thermal_velocity_at_point_461____________________________ (vel_plasma_electron_profile461)_ 4.43146912756539956e+07 -Plasma_electron_thermal_velocity_at_point_462____________________________ (vel_plasma_electron_profile462)_ 4.42094225046086982e+07 -Plasma_electron_thermal_velocity_at_point_463____________________________ (vel_plasma_electron_profile463)_ 4.41094120265436098e+07 -Plasma_electron_thermal_velocity_at_point_464____________________________ (vel_plasma_electron_profile464)_ 4.40151755993608534e+07 -Plasma_electron_thermal_velocity_at_point_465____________________________ (vel_plasma_electron_profile465)_ 4.39273481230030358e+07 -Plasma_electron_thermal_velocity_at_point_466____________________________ (vel_plasma_electron_profile466)_ 4.38467419981624484e+07 -Plasma_electron_thermal_velocity_at_point_467____________________________ (vel_plasma_electron_profile467)_ 4.37744562958880886e+07 -Plasma_electron_thermal_velocity_at_point_468____________________________ (vel_plasma_electron_profile468)_ 4.37121138012497276e+07 -Plasma_electron_thermal_velocity_at_point_469____________________________ (vel_plasma_electron_profile469)_ 4.36625287132988200e+07 +Plasma_volume_averaged_electron_Debye_length_(⟨λ_D⟩)_(m)_________________ (len_plasma_debye_electron_vol_avg)_ 9.28625615667206215e-05 OP +Plasma_electron_Debye_length_at_point_0__________________________________ (len_plasma_debye_electron_profile0)_ 1.16577980834620614e-04 +Plasma_electron_Debye_length_at_point_1__________________________________ (len_plasma_debye_electron_profile1)_ 1.16577784818091827e-04 +Plasma_electron_Debye_length_at_point_2__________________________________ (len_plasma_debye_electron_profile2)_ 1.16577196765927748e-04 +Plasma_electron_Debye_length_at_point_3__________________________________ (len_plasma_debye_electron_profile3)_ 1.16576216670395130e-04 +Plasma_electron_Debye_length_at_point_4__________________________________ (len_plasma_debye_electron_profile4)_ 1.16574844518604990e-04 +Plasma_electron_Debye_length_at_point_5__________________________________ (len_plasma_debye_electron_profile5)_ 1.16573080292512287e-04 +Plasma_electron_Debye_length_at_point_6__________________________________ (len_plasma_debye_electron_profile6)_ 1.16570923968915393e-04 +Plasma_electron_Debye_length_at_point_7__________________________________ (len_plasma_debye_electron_profile7)_ 1.16568375519455442e-04 +Plasma_electron_Debye_length_at_point_8__________________________________ (len_plasma_debye_electron_profile8)_ 1.16565434910615570e-04 +Plasma_electron_Debye_length_at_point_9__________________________________ (len_plasma_debye_electron_profile9)_ 1.16562102103720037e-04 +Plasma_electron_Debye_length_at_point_10_________________________________ (len_plasma_debye_electron_profile10)_ 1.16558377054933071e-04 +Plasma_electron_Debye_length_at_point_11_________________________________ (len_plasma_debye_electron_profile11)_ 1.16554259715257746e-04 +Plasma_electron_Debye_length_at_point_12_________________________________ (len_plasma_debye_electron_profile12)_ 1.16549750030534599e-04 +Plasma_electron_Debye_length_at_point_13_________________________________ (len_plasma_debye_electron_profile13)_ 1.16544847941440141e-04 +Plasma_electron_Debye_length_at_point_14_________________________________ (len_plasma_debye_electron_profile14)_ 1.16539553383485279e-04 +Plasma_electron_Debye_length_at_point_15_________________________________ (len_plasma_debye_electron_profile15)_ 1.16533866287013441e-04 +Plasma_electron_Debye_length_at_point_16_________________________________ (len_plasma_debye_electron_profile16)_ 1.16527786577198819e-04 +Plasma_electron_Debye_length_at_point_17_________________________________ (len_plasma_debye_electron_profile17)_ 1.16521314174044126e-04 +Plasma_electron_Debye_length_at_point_18_________________________________ (len_plasma_debye_electron_profile18)_ 1.16514448992378626e-04 +Plasma_electron_Debye_length_at_point_19_________________________________ (len_plasma_debye_electron_profile19)_ 1.16507190941855630e-04 +Plasma_electron_Debye_length_at_point_20_________________________________ (len_plasma_debye_electron_profile20)_ 1.16499539926950043e-04 +Plasma_electron_Debye_length_at_point_21_________________________________ (len_plasma_debye_electron_profile21)_ 1.16491495846955895e-04 +Plasma_electron_Debye_length_at_point_22_________________________________ (len_plasma_debye_electron_profile22)_ 1.16483058595983374e-04 +Plasma_electron_Debye_length_at_point_23_________________________________ (len_plasma_debye_electron_profile23)_ 1.16474228062956131e-04 +Plasma_electron_Debye_length_at_point_24_________________________________ (len_plasma_debye_electron_profile24)_ 1.16465004131608118e-04 +Plasma_electron_Debye_length_at_point_25_________________________________ (len_plasma_debye_electron_profile25)_ 1.16455386680480464e-04 +Plasma_electron_Debye_length_at_point_26_________________________________ (len_plasma_debye_electron_profile26)_ 1.16445375582918133e-04 +Plasma_electron_Debye_length_at_point_27_________________________________ (len_plasma_debye_electron_profile27)_ 1.16434970707066584e-04 +Plasma_electron_Debye_length_at_point_28_________________________________ (len_plasma_debye_electron_profile28)_ 1.16424171915868011e-04 +Plasma_electron_Debye_length_at_point_29_________________________________ (len_plasma_debye_electron_profile29)_ 1.16412979067057756e-04 +Plasma_electron_Debye_length_at_point_30_________________________________ (len_plasma_debye_electron_profile30)_ 1.16401392013160349e-04 +Plasma_electron_Debye_length_at_point_31_________________________________ (len_plasma_debye_electron_profile31)_ 1.16389410601485605e-04 +Plasma_electron_Debye_length_at_point_32_________________________________ (len_plasma_debye_electron_profile32)_ 1.16377034674124399e-04 +Plasma_electron_Debye_length_at_point_33_________________________________ (len_plasma_debye_electron_profile33)_ 1.16364264067944390e-04 +Plasma_electron_Debye_length_at_point_34_________________________________ (len_plasma_debye_electron_profile34)_ 1.16351098614585652e-04 +Plasma_electron_Debye_length_at_point_35_________________________________ (len_plasma_debye_electron_profile35)_ 1.16337538140456100e-04 +Plasma_electron_Debye_length_at_point_36_________________________________ (len_plasma_debye_electron_profile36)_ 1.16323582466726792e-04 +Plasma_electron_Debye_length_at_point_37_________________________________ (len_plasma_debye_electron_profile37)_ 1.16309231409327099e-04 +Plasma_electron_Debye_length_at_point_38_________________________________ (len_plasma_debye_electron_profile38)_ 1.16294484778939764e-04 +Plasma_electron_Debye_length_at_point_39_________________________________ (len_plasma_debye_electron_profile39)_ 1.16279342380995858e-04 +Plasma_electron_Debye_length_at_point_40_________________________________ (len_plasma_debye_electron_profile40)_ 1.16263804015669372e-04 +Plasma_electron_Debye_length_at_point_41_________________________________ (len_plasma_debye_electron_profile41)_ 1.16247869477872066e-04 +Plasma_electron_Debye_length_at_point_42_________________________________ (len_plasma_debye_electron_profile42)_ 1.16231538557247835e-04 +Plasma_electron_Debye_length_at_point_43_________________________________ (len_plasma_debye_electron_profile43)_ 1.16214811038167082e-04 +Plasma_electron_Debye_length_at_point_44_________________________________ (len_plasma_debye_electron_profile44)_ 1.16197686699721065e-04 +Plasma_electron_Debye_length_at_point_45_________________________________ (len_plasma_debye_electron_profile45)_ 1.16180165315715831e-04 +Plasma_electron_Debye_length_at_point_46_________________________________ (len_plasma_debye_electron_profile46)_ 1.16162246654666313e-04 +Plasma_electron_Debye_length_at_point_47_________________________________ (len_plasma_debye_electron_profile47)_ 1.16143930479790076e-04 +Plasma_electron_Debye_length_at_point_48_________________________________ (len_plasma_debye_electron_profile48)_ 1.16125216549001147e-04 +Plasma_electron_Debye_length_at_point_49_________________________________ (len_plasma_debye_electron_profile49)_ 1.16106104614903453e-04 +Plasma_electron_Debye_length_at_point_50_________________________________ (len_plasma_debye_electron_profile50)_ 1.16086594424784324e-04 +Plasma_electron_Debye_length_at_point_51_________________________________ (len_plasma_debye_electron_profile51)_ 1.16066685720607815e-04 +Plasma_electron_Debye_length_at_point_52_________________________________ (len_plasma_debye_electron_profile52)_ 1.16046378239007884e-04 +Plasma_electron_Debye_length_at_point_53_________________________________ (len_plasma_debye_electron_profile53)_ 1.16025671711281515e-04 +Plasma_electron_Debye_length_at_point_54_________________________________ (len_plasma_debye_electron_profile54)_ 1.16004565863381471e-04 +Plasma_electron_Debye_length_at_point_55_________________________________ (len_plasma_debye_electron_profile55)_ 1.15983060415909299e-04 +Plasma_electron_Debye_length_at_point_56_________________________________ (len_plasma_debye_electron_profile56)_ 1.15961155084107892e-04 +Plasma_electron_Debye_length_at_point_57_________________________________ (len_plasma_debye_electron_profile57)_ 1.15938849577854058e-04 +Plasma_electron_Debye_length_at_point_58_________________________________ (len_plasma_debye_electron_profile58)_ 1.15916143601651003e-04 +Plasma_electron_Debye_length_at_point_59_________________________________ (len_plasma_debye_electron_profile59)_ 1.15893036854620548e-04 +Plasma_electron_Debye_length_at_point_60_________________________________ (len_plasma_debye_electron_profile60)_ 1.15869529030495367e-04 +Plasma_electron_Debye_length_at_point_61_________________________________ (len_plasma_debye_electron_profile61)_ 1.15845619817611013e-04 +Plasma_electron_Debye_length_at_point_62_________________________________ (len_plasma_debye_electron_profile62)_ 1.15821308898897944e-04 +Plasma_electron_Debye_length_at_point_63_________________________________ (len_plasma_debye_electron_profile63)_ 1.15796595951873164e-04 +Plasma_electron_Debye_length_at_point_64_________________________________ (len_plasma_debye_electron_profile64)_ 1.15771480648632088e-04 +Plasma_electron_Debye_length_at_point_65_________________________________ (len_plasma_debye_electron_profile65)_ 1.15745962655840036e-04 +Plasma_electron_Debye_length_at_point_66_________________________________ (len_plasma_debye_electron_profile66)_ 1.15720041634723714e-04 +Plasma_electron_Debye_length_at_point_67_________________________________ (len_plasma_debye_electron_profile67)_ 1.15693717241062541e-04 +Plasma_electron_Debye_length_at_point_68_________________________________ (len_plasma_debye_electron_profile68)_ 1.15666989125179874e-04 +Plasma_electron_Debye_length_at_point_69_________________________________ (len_plasma_debye_electron_profile69)_ 1.15639856931934194e-04 +Plasma_electron_Debye_length_at_point_70_________________________________ (len_plasma_debye_electron_profile70)_ 1.15612320300709923e-04 +Plasma_electron_Debye_length_at_point_71_________________________________ (len_plasma_debye_electron_profile71)_ 1.15584378865408565e-04 +Plasma_electron_Debye_length_at_point_72_________________________________ (len_plasma_debye_electron_profile72)_ 1.15556032254439221e-04 +Plasma_electron_Debye_length_at_point_73_________________________________ (len_plasma_debye_electron_profile73)_ 1.15527280090709490e-04 +Plasma_electron_Debye_length_at_point_74_________________________________ (len_plasma_debye_electron_profile74)_ 1.15498121991615822e-04 +Plasma_electron_Debye_length_at_point_75_________________________________ (len_plasma_debye_electron_profile75)_ 1.15468557569034047e-04 +Plasma_electron_Debye_length_at_point_76_________________________________ (len_plasma_debye_electron_profile76)_ 1.15438586429309791e-04 +Plasma_electron_Debye_length_at_point_77_________________________________ (len_plasma_debye_electron_profile77)_ 1.15408208173248581e-04 +Plasma_electron_Debye_length_at_point_78_________________________________ (len_plasma_debye_electron_profile78)_ 1.15377422396106024e-04 +Plasma_electron_Debye_length_at_point_79_________________________________ (len_plasma_debye_electron_profile79)_ 1.15346228687577897e-04 +Plasma_electron_Debye_length_at_point_80_________________________________ (len_plasma_debye_electron_profile80)_ 1.15314626631790010e-04 +Plasma_electron_Debye_length_at_point_81_________________________________ (len_plasma_debye_electron_profile81)_ 1.15282615807288041e-04 +Plasma_electron_Debye_length_at_point_82_________________________________ (len_plasma_debye_electron_profile82)_ 1.15250195787027225e-04 +Plasma_electron_Debye_length_at_point_83_________________________________ (len_plasma_debye_electron_profile83)_ 1.15217366138362120e-04 +Plasma_electron_Debye_length_at_point_84_________________________________ (len_plasma_debye_electron_profile84)_ 1.15184126423036035e-04 +Plasma_electron_Debye_length_at_point_85_________________________________ (len_plasma_debye_electron_profile85)_ 1.15150476197170502e-04 +Plasma_electron_Debye_length_at_point_86_________________________________ (len_plasma_debye_electron_profile86)_ 1.15116415011254637e-04 +Plasma_electron_Debye_length_at_point_87_________________________________ (len_plasma_debye_electron_profile87)_ 1.15081942410134432e-04 +Plasma_electron_Debye_length_at_point_88_________________________________ (len_plasma_debye_electron_profile88)_ 1.15047057933001845e-04 +Plasma_electron_Debye_length_at_point_89_________________________________ (len_plasma_debye_electron_profile89)_ 1.15011761113384043e-04 +Plasma_electron_Debye_length_at_point_90_________________________________ (len_plasma_debye_electron_profile90)_ 1.14976051479132296e-04 +Plasma_electron_Debye_length_at_point_91_________________________________ (len_plasma_debye_electron_profile91)_ 1.14939928552410924e-04 +Plasma_electron_Debye_length_at_point_92_________________________________ (len_plasma_debye_electron_profile92)_ 1.14903391849686156e-04 +Plasma_electron_Debye_length_at_point_93_________________________________ (len_plasma_debye_electron_profile93)_ 1.14866440881714960e-04 +Plasma_electron_Debye_length_at_point_94_________________________________ (len_plasma_debye_electron_profile94)_ 1.14829075153533605e-04 +Plasma_electron_Debye_length_at_point_95_________________________________ (len_plasma_debye_electron_profile95)_ 1.14791294164446415e-04 +Plasma_electron_Debye_length_at_point_96_________________________________ (len_plasma_debye_electron_profile96)_ 1.14753097408014276e-04 +Plasma_electron_Debye_length_at_point_97_________________________________ (len_plasma_debye_electron_profile97)_ 1.14714484372043112e-04 +Plasma_electron_Debye_length_at_point_98_________________________________ (len_plasma_debye_electron_profile98)_ 1.14675454538572277e-04 +Plasma_electron_Debye_length_at_point_99_________________________________ (len_plasma_debye_electron_profile99)_ 1.14636007383863003e-04 +Plasma_electron_Debye_length_at_point_100________________________________ (len_plasma_debye_electron_profile100)_ 1.14596142378386586e-04 +Plasma_electron_Debye_length_at_point_101________________________________ (len_plasma_debye_electron_profile101)_ 1.14555858986812700e-04 +Plasma_electron_Debye_length_at_point_102________________________________ (len_plasma_debye_electron_profile102)_ 1.14515156667997528e-04 +Plasma_electron_Debye_length_at_point_103________________________________ (len_plasma_debye_electron_profile103)_ 1.14474034874971972e-04 +Plasma_electron_Debye_length_at_point_104________________________________ (len_plasma_debye_electron_profile104)_ 1.14432493054929667e-04 +Plasma_electron_Debye_length_at_point_105________________________________ (len_plasma_debye_electron_profile105)_ 1.14390530649214952e-04 +Plasma_electron_Debye_length_at_point_106________________________________ (len_plasma_debye_electron_profile106)_ 1.14348147093311066e-04 +Plasma_electron_Debye_length_at_point_107________________________________ (len_plasma_debye_electron_profile107)_ 1.14305341816827892e-04 +Plasma_electron_Debye_length_at_point_108________________________________ (len_plasma_debye_electron_profile108)_ 1.14262114243489978e-04 +Plasma_electron_Debye_length_at_point_109________________________________ (len_plasma_debye_electron_profile109)_ 1.14218463791124398e-04 +Plasma_electron_Debye_length_at_point_110________________________________ (len_plasma_debye_electron_profile110)_ 1.14174389871648618e-04 +Plasma_electron_Debye_length_at_point_111________________________________ (len_plasma_debye_electron_profile111)_ 1.14129891891058245e-04 +Plasma_electron_Debye_length_at_point_112________________________________ (len_plasma_debye_electron_profile112)_ 1.14084969249415009e-04 +Plasma_electron_Debye_length_at_point_113________________________________ (len_plasma_debye_electron_profile113)_ 1.14039621340834344e-04 +Plasma_electron_Debye_length_at_point_114________________________________ (len_plasma_debye_electron_profile114)_ 1.13993847553473264e-04 +Plasma_electron_Debye_length_at_point_115________________________________ (len_plasma_debye_electron_profile115)_ 1.13947647269518120e-04 +Plasma_electron_Debye_length_at_point_116________________________________ (len_plasma_debye_electron_profile116)_ 1.13901019865172325e-04 +Plasma_electron_Debye_length_at_point_117________________________________ (len_plasma_debye_electron_profile117)_ 1.13853964710644128e-04 +Plasma_electron_Debye_length_at_point_118________________________________ (len_plasma_debye_electron_profile118)_ 1.13806481170134323e-04 +Plasma_electron_Debye_length_at_point_119________________________________ (len_plasma_debye_electron_profile119)_ 1.13758568601824090e-04 +Plasma_electron_Debye_length_at_point_120________________________________ (len_plasma_debye_electron_profile120)_ 1.13710226357862664e-04 +Plasma_electron_Debye_length_at_point_121________________________________ (len_plasma_debye_electron_profile121)_ 1.13661453784355193e-04 +Plasma_electron_Debye_length_at_point_122________________________________ (len_plasma_debye_electron_profile122)_ 1.13612250221350512e-04 +Plasma_electron_Debye_length_at_point_123________________________________ (len_plasma_debye_electron_profile123)_ 1.13562615002828958e-04 +Plasma_electron_Debye_length_at_point_124________________________________ (len_plasma_debye_electron_profile124)_ 1.13512547456690285e-04 +Plasma_electron_Debye_length_at_point_125________________________________ (len_plasma_debye_electron_profile125)_ 1.13462046904741503e-04 +Plasma_electron_Debye_length_at_point_126________________________________ (len_plasma_debye_electron_profile126)_ 1.13411112662684821e-04 +Plasma_electron_Debye_length_at_point_127________________________________ (len_plasma_debye_electron_profile127)_ 1.13359744040105687e-04 +Plasma_electron_Debye_length_at_point_128________________________________ (len_plasma_debye_electron_profile128)_ 1.13307940340460803e-04 +Plasma_electron_Debye_length_at_point_129________________________________ (len_plasma_debye_electron_profile129)_ 1.13255700861066122e-04 +Plasma_electron_Debye_length_at_point_130________________________________ (len_plasma_debye_electron_profile130)_ 1.13203024893085186e-04 +Plasma_electron_Debye_length_at_point_131________________________________ (len_plasma_debye_electron_profile131)_ 1.13149911721517195e-04 +Plasma_electron_Debye_length_at_point_132________________________________ (len_plasma_debye_electron_profile132)_ 1.13096360625185424e-04 +Plasma_electron_Debye_length_at_point_133________________________________ (len_plasma_debye_electron_profile133)_ 1.13042370876725564e-04 +Plasma_electron_Debye_length_at_point_134________________________________ (len_plasma_debye_electron_profile134)_ 1.12987941742574162e-04 +Plasma_electron_Debye_length_at_point_135________________________________ (len_plasma_debye_electron_profile135)_ 1.12933072482957351e-04 +Plasma_electron_Debye_length_at_point_136________________________________ (len_plasma_debye_electron_profile136)_ 1.12877762351879375e-04 +Plasma_electron_Debye_length_at_point_137________________________________ (len_plasma_debye_electron_profile137)_ 1.12822010597111443e-04 +Plasma_electron_Debye_length_at_point_138________________________________ (len_plasma_debye_electron_profile138)_ 1.12765816460180641e-04 +Plasma_electron_Debye_length_at_point_139________________________________ (len_plasma_debye_electron_profile139)_ 1.12709179176359060e-04 +Plasma_electron_Debye_length_at_point_140________________________________ (len_plasma_debye_electron_profile140)_ 1.12652097974652769e-04 +Plasma_electron_Debye_length_at_point_141________________________________ (len_plasma_debye_electron_profile141)_ 1.12594572077791361e-04 +Plasma_electron_Debye_length_at_point_142________________________________ (len_plasma_debye_electron_profile142)_ 1.12536600702217306e-04 +Plasma_electron_Debye_length_at_point_143________________________________ (len_plasma_debye_electron_profile143)_ 1.12478183058075577e-04 +Plasma_electron_Debye_length_at_point_144________________________________ (len_plasma_debye_electron_profile144)_ 1.12419318349203534e-04 +Plasma_electron_Debye_length_at_point_145________________________________ (len_plasma_debye_electron_profile145)_ 1.12360005773120807e-04 +Plasma_electron_Debye_length_at_point_146________________________________ (len_plasma_debye_electron_profile146)_ 1.12300244521019540e-04 +Plasma_electron_Debye_length_at_point_147________________________________ (len_plasma_debye_electron_profile147)_ 1.12240033777754759e-04 +Plasma_electron_Debye_length_at_point_148________________________________ (len_plasma_debye_electron_profile148)_ 1.12179372721834866e-04 +Plasma_electron_Debye_length_at_point_149________________________________ (len_plasma_debye_electron_profile149)_ 1.12118260525412495e-04 +Plasma_electron_Debye_length_at_point_150________________________________ (len_plasma_debye_electron_profile150)_ 1.12056696354275552e-04 +Plasma_electron_Debye_length_at_point_151________________________________ (len_plasma_debye_electron_profile151)_ 1.11994679367838446e-04 +Plasma_electron_Debye_length_at_point_152________________________________ (len_plasma_debye_electron_profile152)_ 1.11932208719133541e-04 +Plasma_electron_Debye_length_at_point_153________________________________ (len_plasma_debye_electron_profile153)_ 1.11869283554803074e-04 +Plasma_electron_Debye_length_at_point_154________________________________ (len_plasma_debye_electron_profile154)_ 1.11805903015091025e-04 +Plasma_electron_Debye_length_at_point_155________________________________ (len_plasma_debye_electron_profile155)_ 1.11742066233835584e-04 +Plasma_electron_Debye_length_at_point_156________________________________ (len_plasma_debye_electron_profile156)_ 1.11677772338461708e-04 +Plasma_electron_Debye_length_at_point_157________________________________ (len_plasma_debye_electron_profile157)_ 1.11613020449974034e-04 +Plasma_electron_Debye_length_at_point_158________________________________ (len_plasma_debye_electron_profile158)_ 1.11547809682950239e-04 +Plasma_electron_Debye_length_at_point_159________________________________ (len_plasma_debye_electron_profile159)_ 1.11482139145534546e-04 +Plasma_electron_Debye_length_at_point_160________________________________ (len_plasma_debye_electron_profile160)_ 1.11416007939431697e-04 +Plasma_electron_Debye_length_at_point_161________________________________ (len_plasma_debye_electron_profile161)_ 1.11349415159901283e-04 +Plasma_electron_Debye_length_at_point_162________________________________ (len_plasma_debye_electron_profile162)_ 1.11282359895752410e-04 +Plasma_electron_Debye_length_at_point_163________________________________ (len_plasma_debye_electron_profile163)_ 1.11214841229338748e-04 +Plasma_electron_Debye_length_at_point_164________________________________ (len_plasma_debye_electron_profile164)_ 1.11146858236554140e-04 +Plasma_electron_Debye_length_at_point_165________________________________ (len_plasma_debye_electron_profile165)_ 1.11078409986828391e-04 +Plasma_electron_Debye_length_at_point_166________________________________ (len_plasma_debye_electron_profile166)_ 1.11009495543123754e-04 +Plasma_electron_Debye_length_at_point_167________________________________ (len_plasma_debye_electron_profile167)_ 1.10940113961931599e-04 +Plasma_electron_Debye_length_at_point_168________________________________ (len_plasma_debye_electron_profile168)_ 1.10870264293269860e-04 +Plasma_electron_Debye_length_at_point_169________________________________ (len_plasma_debye_electron_profile169)_ 1.10799945580680712e-04 +Plasma_electron_Debye_length_at_point_170________________________________ (len_plasma_debye_electron_profile170)_ 1.10729156861228884e-04 +Plasma_electron_Debye_length_at_point_171________________________________ (len_plasma_debye_electron_profile171)_ 1.10657897165500577e-04 +Plasma_electron_Debye_length_at_point_172________________________________ (len_plasma_debye_electron_profile172)_ 1.10586165517602731e-04 +Plasma_electron_Debye_length_at_point_173________________________________ (len_plasma_debye_electron_profile173)_ 1.10513960935162988e-04 +Plasma_electron_Debye_length_at_point_174________________________________ (len_plasma_debye_electron_profile174)_ 1.10441282429330284e-04 +Plasma_electron_Debye_length_at_point_175________________________________ (len_plasma_debye_electron_profile175)_ 1.10368129004775962e-04 +Plasma_electron_Debye_length_at_point_176________________________________ (len_plasma_debye_electron_profile176)_ 1.10294499659695493e-04 +Plasma_electron_Debye_length_at_point_177________________________________ (len_plasma_debye_electron_profile177)_ 1.10220393385810999e-04 +Plasma_electron_Debye_length_at_point_178________________________________ (len_plasma_debye_electron_profile178)_ 1.10145809168374229e-04 +Plasma_electron_Debye_length_at_point_179________________________________ (len_plasma_debye_electron_profile179)_ 1.10070745986170522e-04 +Plasma_electron_Debye_length_at_point_180________________________________ (len_plasma_debye_electron_profile180)_ 1.09995202811523197e-04 +Plasma_electron_Debye_length_at_point_181________________________________ (len_plasma_debye_electron_profile181)_ 1.09919178610298835e-04 +Plasma_electron_Debye_length_at_point_182________________________________ (len_plasma_debye_electron_profile182)_ 1.09842672341913382e-04 +Plasma_electron_Debye_length_at_point_183________________________________ (len_plasma_debye_electron_profile183)_ 1.09765682959338948e-04 +Plasma_electron_Debye_length_at_point_184________________________________ (len_plasma_debye_electron_profile184)_ 1.09688209409111454e-04 +Plasma_electron_Debye_length_at_point_185________________________________ (len_plasma_debye_electron_profile185)_ 1.09610250631339199e-04 +Plasma_electron_Debye_length_at_point_186________________________________ (len_plasma_debye_electron_profile186)_ 1.09531805559712203e-04 +Plasma_electron_Debye_length_at_point_187________________________________ (len_plasma_debye_electron_profile187)_ 1.09452873121512544e-04 +Plasma_electron_Debye_length_at_point_188________________________________ (len_plasma_debye_electron_profile188)_ 1.09373452237625574e-04 +Plasma_electron_Debye_length_at_point_189________________________________ (len_plasma_debye_electron_profile189)_ 1.09293541822552155e-04 +Plasma_electron_Debye_length_at_point_190________________________________ (len_plasma_debye_electron_profile190)_ 1.09213140784421840e-04 +Plasma_electron_Debye_length_at_point_191________________________________ (len_plasma_debye_electron_profile191)_ 1.09132248025007160e-04 +Plasma_electron_Debye_length_at_point_192________________________________ (len_plasma_debye_electron_profile192)_ 1.09050862439738936e-04 +Plasma_electron_Debye_length_at_point_193________________________________ (len_plasma_debye_electron_profile193)_ 1.08968982917722614e-04 +Plasma_electron_Debye_length_at_point_194________________________________ (len_plasma_debye_electron_profile194)_ 1.08886608341755918e-04 +Plasma_electron_Debye_length_at_point_195________________________________ (len_plasma_debye_electron_profile195)_ 1.08803737588347463e-04 +Plasma_electron_Debye_length_at_point_196________________________________ (len_plasma_debye_electron_profile196)_ 1.08720369527736795e-04 +Plasma_electron_Debye_length_at_point_197________________________________ (len_plasma_debye_electron_profile197)_ 1.08636503023915485e-04 +Plasma_electron_Debye_length_at_point_198________________________________ (len_plasma_debye_electron_profile198)_ 1.08552136934649587e-04 +Plasma_electron_Debye_length_at_point_199________________________________ (len_plasma_debye_electron_profile199)_ 1.08467270111503467e-04 +Plasma_electron_Debye_length_at_point_200________________________________ (len_plasma_debye_electron_profile200)_ 1.08381901399864951e-04 +Plasma_electron_Debye_length_at_point_201________________________________ (len_plasma_debye_electron_profile201)_ 1.08296029638971881e-04 +Plasma_electron_Debye_length_at_point_202________________________________ (len_plasma_debye_electron_profile202)_ 1.08209653661940121e-04 +Plasma_electron_Debye_length_at_point_203________________________________ (len_plasma_debye_electron_profile203)_ 1.08122772295793078e-04 +Plasma_electron_Debye_length_at_point_204________________________________ (len_plasma_debye_electron_profile204)_ 1.08035384361492793e-04 +Plasma_electron_Debye_length_at_point_205________________________________ (len_plasma_debye_electron_profile205)_ 1.07947488673972586e-04 +Plasma_electron_Debye_length_at_point_206________________________________ (len_plasma_debye_electron_profile206)_ 1.07859084042171414e-04 +Plasma_electron_Debye_length_at_point_207________________________________ (len_plasma_debye_electron_profile207)_ 1.07770169269069688e-04 +Plasma_electron_Debye_length_at_point_208________________________________ (len_plasma_debye_electron_profile208)_ 1.07680743151727275e-04 +Plasma_electron_Debye_length_at_point_209________________________________ (len_plasma_debye_electron_profile209)_ 1.07590804481322817e-04 +Plasma_electron_Debye_length_at_point_210________________________________ (len_plasma_debye_electron_profile210)_ 1.07500352043195306e-04 +Plasma_electron_Debye_length_at_point_211________________________________ (len_plasma_debye_electron_profile211)_ 1.07409384616887195e-04 +Plasma_electron_Debye_length_at_point_212________________________________ (len_plasma_debye_electron_profile212)_ 1.07317900976189884e-04 +Plasma_electron_Debye_length_at_point_213________________________________ (len_plasma_debye_electron_profile213)_ 1.07225899889190824e-04 +Plasma_electron_Debye_length_at_point_214________________________________ (len_plasma_debye_electron_profile214)_ 1.07133380118323122e-04 +Plasma_electron_Debye_length_at_point_215________________________________ (len_plasma_debye_electron_profile215)_ 1.07040340420416877e-04 +Plasma_electron_Debye_length_at_point_216________________________________ (len_plasma_debye_electron_profile216)_ 1.06946779546753133e-04 +Plasma_electron_Debye_length_at_point_217________________________________ (len_plasma_debye_electron_profile217)_ 1.06852696243119771e-04 +Plasma_electron_Debye_length_at_point_218________________________________ (len_plasma_debye_electron_profile218)_ 1.06758089249870091e-04 +Plasma_electron_Debye_length_at_point_219________________________________ (len_plasma_debye_electron_profile219)_ 1.06662957301983442e-04 +Plasma_electron_Debye_length_at_point_220________________________________ (len_plasma_debye_electron_profile220)_ 1.06567299129128800e-04 +Plasma_electron_Debye_length_at_point_221________________________________ (len_plasma_debye_electron_profile221)_ 1.06471113455730465e-04 +Plasma_electron_Debye_length_at_point_222________________________________ (len_plasma_debye_electron_profile222)_ 1.06374399001036741e-04 +Plasma_electron_Debye_length_at_point_223________________________________ (len_plasma_debye_electron_profile223)_ 1.06277154479191211e-04 +Plasma_electron_Debye_length_at_point_224________________________________ (len_plasma_debye_electron_profile224)_ 1.06179378599306813e-04 +Plasma_electron_Debye_length_at_point_225________________________________ (len_plasma_debye_electron_profile225)_ 1.06081070065542902e-04 +Plasma_electron_Debye_length_at_point_226________________________________ (len_plasma_debye_electron_profile226)_ 1.05982227577185208e-04 +Plasma_electron_Debye_length_at_point_227________________________________ (len_plasma_debye_electron_profile227)_ 1.05882849828728900e-04 +Plasma_electron_Debye_length_at_point_228________________________________ (len_plasma_debye_electron_profile228)_ 1.05782935509964862e-04 +Plasma_electron_Debye_length_at_point_229________________________________ (len_plasma_debye_electron_profile229)_ 1.05682483306069165e-04 +Plasma_electron_Debye_length_at_point_230________________________________ (len_plasma_debye_electron_profile230)_ 1.05581491897695866e-04 +Plasma_electron_Debye_length_at_point_231________________________________ (len_plasma_debye_electron_profile231)_ 1.05479959961073493e-04 +Plasma_electron_Debye_length_at_point_232________________________________ (len_plasma_debye_electron_profile232)_ 1.05377886168104735e-04 +Plasma_electron_Debye_length_at_point_233________________________________ (len_plasma_debye_electron_profile233)_ 1.05275269186470122e-04 +Plasma_electron_Debye_length_at_point_234________________________________ (len_plasma_debye_electron_profile234)_ 1.05172107679735302e-04 +Plasma_electron_Debye_length_at_point_235________________________________ (len_plasma_debye_electron_profile235)_ 1.05068400307462340e-04 +Plasma_electron_Debye_length_at_point_236________________________________ (len_plasma_debye_electron_profile236)_ 1.04964145725324799e-04 +Plasma_electron_Debye_length_at_point_237________________________________ (len_plasma_debye_electron_profile237)_ 1.04859342585227310e-04 +Plasma_electron_Debye_length_at_point_238________________________________ (len_plasma_debye_electron_profile238)_ 1.04753989535429052e-04 +Plasma_electron_Debye_length_at_point_239________________________________ (len_plasma_debye_electron_profile239)_ 1.04648085220671738e-04 +Plasma_electron_Debye_length_at_point_240________________________________ (len_plasma_debye_electron_profile240)_ 1.04541628282312272e-04 +Plasma_electron_Debye_length_at_point_241________________________________ (len_plasma_debye_electron_profile241)_ 1.04434617358459720e-04 +Plasma_electron_Debye_length_at_point_242________________________________ (len_plasma_debye_electron_profile242)_ 1.04327051084117397e-04 +Plasma_electron_Debye_length_at_point_243________________________________ (len_plasma_debye_electron_profile243)_ 1.04218928091329629e-04 +Plasma_electron_Debye_length_at_point_244________________________________ (len_plasma_debye_electron_profile244)_ 1.04110247009333849e-04 +Plasma_electron_Debye_length_at_point_245________________________________ (len_plasma_debye_electron_profile245)_ 1.04001006464717565e-04 +Plasma_electron_Debye_length_at_point_246________________________________ (len_plasma_debye_electron_profile246)_ 1.03891205081581137e-04 +Plasma_electron_Debye_length_at_point_247________________________________ (len_plasma_debye_electron_profile247)_ 1.03780841481705645e-04 +Plasma_electron_Debye_length_at_point_248________________________________ (len_plasma_debye_electron_profile248)_ 1.03669914284726947e-04 +Plasma_electron_Debye_length_at_point_249________________________________ (len_plasma_debye_electron_profile249)_ 1.03558422108315220e-04 +Plasma_electron_Debye_length_at_point_250________________________________ (len_plasma_debye_electron_profile250)_ 1.03446363568360759e-04 +Plasma_electron_Debye_length_at_point_251________________________________ (len_plasma_debye_electron_profile251)_ 1.03333737279166045e-04 +Plasma_electron_Debye_length_at_point_252________________________________ (len_plasma_debye_electron_profile252)_ 1.03220541853644044e-04 +Plasma_electron_Debye_length_at_point_253________________________________ (len_plasma_debye_electron_profile253)_ 1.03106775903523409e-04 +Plasma_electron_Debye_length_at_point_254________________________________ (len_plasma_debye_electron_profile254)_ 1.02992438039560224e-04 +Plasma_electron_Debye_length_at_point_255________________________________ (len_plasma_debye_electron_profile255)_ 1.02877526871757090e-04 +Plasma_electron_Debye_length_at_point_256________________________________ (len_plasma_debye_electron_profile256)_ 1.02762041009589065e-04 +Plasma_electron_Debye_length_at_point_257________________________________ (len_plasma_debye_electron_profile257)_ 1.02645979062237401e-04 +Plasma_electron_Debye_length_at_point_258________________________________ (len_plasma_debye_electron_profile258)_ 1.02529339638830847e-04 +Plasma_electron_Debye_length_at_point_259________________________________ (len_plasma_debye_electron_profile259)_ 1.02412121348694759e-04 +Plasma_electron_Debye_length_at_point_260________________________________ (len_plasma_debye_electron_profile260)_ 1.02294322801608557e-04 +Plasma_electron_Debye_length_at_point_261________________________________ (len_plasma_debye_electron_profile261)_ 1.02175942608071462e-04 +Plasma_electron_Debye_length_at_point_262________________________________ (len_plasma_debye_electron_profile262)_ 1.02056979379576909e-04 +Plasma_electron_Debye_length_at_point_263________________________________ (len_plasma_debye_electron_profile263)_ 1.01937431728895902e-04 +Plasma_electron_Debye_length_at_point_264________________________________ (len_plasma_debye_electron_profile264)_ 1.01817298270369562e-04 +Plasma_electron_Debye_length_at_point_265________________________________ (len_plasma_debye_electron_profile265)_ 1.01696577620211153e-04 +Plasma_electron_Debye_length_at_point_266________________________________ (len_plasma_debye_electron_profile266)_ 1.01575268396817794e-04 +Plasma_electron_Debye_length_at_point_267________________________________ (len_plasma_debye_electron_profile267)_ 1.01453369221092332e-04 +Plasma_electron_Debye_length_at_point_268________________________________ (len_plasma_debye_electron_profile268)_ 1.01330878716775633e-04 +Plasma_electron_Debye_length_at_point_269________________________________ (len_plasma_debye_electron_profile269)_ 1.01207795510789236e-04 +Plasma_electron_Debye_length_at_point_270________________________________ (len_plasma_debye_electron_profile270)_ 1.01084118233589446e-04 +Plasma_electron_Debye_length_at_point_271________________________________ (len_plasma_debye_electron_profile271)_ 1.00959845519532502e-04 +Plasma_electron_Debye_length_at_point_272________________________________ (len_plasma_debye_electron_profile272)_ 1.00834976007251490e-04 +Plasma_electron_Debye_length_at_point_273________________________________ (len_plasma_debye_electron_profile273)_ 1.00709508340045338e-04 +Plasma_electron_Debye_length_at_point_274________________________________ (len_plasma_debye_electron_profile274)_ 1.00583441166280342e-04 +Plasma_electron_Debye_length_at_point_275________________________________ (len_plasma_debye_electron_profile275)_ 1.00456773139804146e-04 +Plasma_electron_Debye_length_at_point_276________________________________ (len_plasma_debye_electron_profile276)_ 1.00329502920373472e-04 +Plasma_electron_Debye_length_at_point_277________________________________ (len_plasma_debye_electron_profile277)_ 1.00201629174094970e-04 +Plasma_electron_Debye_length_at_point_278________________________________ (len_plasma_debye_electron_profile278)_ 1.00073150573880406e-04 +Plasma_electron_Debye_length_at_point_279________________________________ (len_plasma_debye_electron_profile279)_ 9.99440657999161111e-05 +Plasma_electron_Debye_length_at_point_280________________________________ (len_plasma_debye_electron_profile280)_ 9.98143735401476695e-05 +Plasma_electron_Debye_length_at_point_281________________________________ (len_plasma_debye_electron_profile281)_ 9.96840724907795632e-05 +Plasma_electron_Debye_length_at_point_282________________________________ (len_plasma_debye_electron_profile282)_ 9.95531613567910746e-05 +Plasma_electron_Debye_length_at_point_283________________________________ (len_plasma_debye_electron_profile283)_ 9.94216388524682908e-05 +Plasma_electron_Debye_length_at_point_284________________________________ (len_plasma_debye_electron_profile284)_ 9.92895037019531985e-05 +Plasma_electron_Debye_length_at_point_285________________________________ (len_plasma_debye_electron_profile285)_ 9.91567546398100161e-05 +Plasma_electron_Debye_length_at_point_286________________________________ (len_plasma_debye_electron_profile286)_ 9.90233904116094712e-05 +Plasma_electron_Debye_length_at_point_287________________________________ (len_plasma_debye_electron_profile287)_ 9.88894097745318331e-05 +Plasma_electron_Debye_length_at_point_288________________________________ (len_plasma_debye_electron_profile288)_ 9.87548114979886897e-05 +Plasma_electron_Debye_length_at_point_289________________________________ (len_plasma_debye_electron_profile289)_ 9.86195943642648220e-05 +Plasma_electron_Debye_length_at_point_290________________________________ (len_plasma_debye_electron_profile290)_ 9.84837571691800416e-05 +Plasma_electron_Debye_length_at_point_291________________________________ (len_plasma_debye_electron_profile291)_ 9.83472987227722930e-05 +Plasma_electron_Debye_length_at_point_292________________________________ (len_plasma_debye_electron_profile292)_ 9.82102178500022350e-05 +Plasma_electron_Debye_length_at_point_293________________________________ (len_plasma_debye_electron_profile293)_ 9.80725133914801990e-05 +Plasma_electron_Debye_length_at_point_294________________________________ (len_plasma_debye_electron_profile294)_ 9.79341842042162804e-05 +Plasma_electron_Debye_length_at_point_295________________________________ (len_plasma_debye_electron_profile295)_ 9.77952291623940522e-05 +Plasma_electron_Debye_length_at_point_296________________________________ (len_plasma_debye_electron_profile296)_ 9.76556471581689178e-05 +Plasma_electron_Debye_length_at_point_297________________________________ (len_plasma_debye_electron_profile297)_ 9.75154371024919008e-05 +Plasma_electron_Debye_length_at_point_298________________________________ (len_plasma_debye_electron_profile298)_ 9.73745979259594023e-05 +Plasma_electron_Debye_length_at_point_299________________________________ (len_plasma_debye_electron_profile299)_ 9.72331285796899681e-05 +Plasma_electron_Debye_length_at_point_300________________________________ (len_plasma_debye_electron_profile300)_ 9.70910280362292043e-05 +Plasma_electron_Debye_length_at_point_301________________________________ (len_plasma_debye_electron_profile301)_ 9.69482952904831538e-05 +Plasma_electron_Debye_length_at_point_302________________________________ (len_plasma_debye_electron_profile302)_ 9.68049293606814060e-05 +Plasma_electron_Debye_length_at_point_303________________________________ (len_plasma_debye_electron_profile303)_ 9.66609292893711889e-05 +Plasma_electron_Debye_length_at_point_304________________________________ (len_plasma_debye_electron_profile304)_ 9.65162941444427258e-05 +Plasma_electron_Debye_length_at_point_305________________________________ (len_plasma_debye_electron_profile305)_ 9.63710230201877147e-05 +Plasma_electron_Debye_length_at_point_306________________________________ (len_plasma_debye_electron_profile306)_ 9.62251150383912693e-05 +Plasma_electron_Debye_length_at_point_307________________________________ (len_plasma_debye_electron_profile307)_ 9.60785693494589605e-05 +Plasma_electron_Debye_length_at_point_308________________________________ (len_plasma_debye_electron_profile308)_ 9.59313851335798267e-05 +Plasma_electron_Debye_length_at_point_309________________________________ (len_plasma_debye_electron_profile309)_ 9.57835616019268019e-05 +Plasma_electron_Debye_length_at_point_310________________________________ (len_plasma_debye_electron_profile310)_ 9.56350979978953092e-05 +Plasma_electron_Debye_length_at_point_311________________________________ (len_plasma_debye_electron_profile311)_ 9.54859935983820086e-05 +Plasma_electron_Debye_length_at_point_312________________________________ (len_plasma_debye_electron_profile312)_ 9.53362477151042172e-05 +Plasma_electron_Debye_length_at_point_313________________________________ (len_plasma_debye_electron_profile313)_ 9.51858596959623179e-05 +Plasma_electron_Debye_length_at_point_314________________________________ (len_plasma_debye_electron_profile314)_ 9.50348289264453999e-05 +Plasma_electron_Debye_length_at_point_315________________________________ (len_plasma_debye_electron_profile315)_ 9.48831548310829652e-05 +Plasma_electron_Debye_length_at_point_316________________________________ (len_plasma_debye_electron_profile316)_ 9.47308368749429569e-05 +Plasma_electron_Debye_length_at_point_317________________________________ (len_plasma_debye_electron_profile317)_ 9.45778745651785769e-05 +Plasma_electron_Debye_length_at_point_318________________________________ (len_plasma_debye_electron_profile318)_ 9.44242674526251399e-05 +Plasma_electron_Debye_length_at_point_319________________________________ (len_plasma_debye_electron_profile319)_ 9.42700151334486836e-05 +Plasma_electron_Debye_length_at_point_320________________________________ (len_plasma_debye_electron_profile320)_ 9.41151172508483696e-05 +Plasma_electron_Debye_length_at_point_321________________________________ (len_plasma_debye_electron_profile321)_ 9.39595734968140430e-05 +Plasma_electron_Debye_length_at_point_322________________________________ (len_plasma_debye_electron_profile322)_ 9.38033836139413088e-05 +Plasma_electron_Debye_length_at_point_323________________________________ (len_plasma_debye_electron_profile323)_ 9.36465473973057918e-05 +Plasma_electron_Debye_length_at_point_324________________________________ (len_plasma_debye_electron_profile324)_ 9.34890646963988312e-05 +Plasma_electron_Debye_length_at_point_325________________________________ (len_plasma_debye_electron_profile325)_ 9.33309354171265861e-05 +Plasma_electron_Debye_length_at_point_326________________________________ (len_plasma_debye_electron_profile326)_ 9.31721595238747363e-05 +Plasma_electron_Debye_length_at_point_327________________________________ (len_plasma_debye_electron_profile327)_ 9.30127370416412841e-05 +Plasma_electron_Debye_length_at_point_328________________________________ (len_plasma_debye_electron_profile328)_ 9.28526680582394769e-05 +Plasma_electron_Debye_length_at_point_329________________________________ (len_plasma_debye_electron_profile329)_ 9.26919527265737913e-05 +Plasma_electron_Debye_length_at_point_330________________________________ (len_plasma_debye_electron_profile330)_ 9.25305912669909718e-05 +Plasma_electron_Debye_length_at_point_331________________________________ (len_plasma_debye_electron_profile331)_ 9.23685839697092800e-05 +Plasma_electron_Debye_length_at_point_332________________________________ (len_plasma_debye_electron_profile332)_ 9.22059311973283825e-05 +Plasma_electron_Debye_length_at_point_333________________________________ (len_plasma_debye_electron_profile333)_ 9.20426333874229112e-05 +Plasma_electron_Debye_length_at_point_334________________________________ (len_plasma_debye_electron_profile334)_ 9.18786910552227336e-05 +Plasma_electron_Debye_length_at_point_335________________________________ (len_plasma_debye_electron_profile335)_ 9.17141047963826548e-05 +Plasma_electron_Debye_length_at_point_336________________________________ (len_plasma_debye_electron_profile336)_ 9.15488752898453896e-05 +Plasma_electron_Debye_length_at_point_337________________________________ (len_plasma_debye_electron_profile337)_ 9.13830033008005126e-05 +Plasma_electron_Debye_length_at_point_338________________________________ (len_plasma_debye_electron_profile338)_ 9.12164896837433043e-05 +Plasma_electron_Debye_length_at_point_339________________________________ (len_plasma_debye_electron_profile339)_ 9.10493353856369213e-05 +Plasma_electron_Debye_length_at_point_340________________________________ (len_plasma_debye_electron_profile340)_ 9.08815414491817136e-05 +Plasma_electron_Debye_length_at_point_341________________________________ (len_plasma_debye_electron_profile341)_ 9.07131090161954413e-05 +Plasma_electron_Debye_length_at_point_342________________________________ (len_plasma_debye_electron_profile342)_ 9.05440393311088509e-05 +Plasma_electron_Debye_length_at_point_343________________________________ (len_plasma_debye_electron_profile343)_ 9.03743337445803244e-05 +Plasma_electron_Debye_length_at_point_344________________________________ (len_plasma_debye_electron_profile344)_ 9.02039937172344653e-05 +Plasma_electron_Debye_length_at_point_345________________________________ (len_plasma_debye_electron_profile345)_ 9.00330208235288653e-05 +Plasma_electron_Debye_length_at_point_346________________________________ (len_plasma_debye_electron_profile346)_ 8.98614167557541463e-05 +Plasma_electron_Debye_length_at_point_347________________________________ (len_plasma_debye_electron_profile347)_ 8.96891833281720211e-05 +Plasma_electron_Debye_length_at_point_348________________________________ (len_plasma_debye_electron_profile348)_ 8.95163224812965371e-05 +Plasma_electron_Debye_length_at_point_349________________________________ (len_plasma_debye_electron_profile349)_ 8.93428362863242070e-05 +Plasma_electron_Debye_length_at_point_350________________________________ (len_plasma_debye_electron_profile350)_ 8.91687269497182060e-05 +Plasma_electron_Debye_length_at_point_351________________________________ (len_plasma_debye_electron_profile351)_ 8.89939968179527860e-05 +Plasma_electron_Debye_length_at_point_352________________________________ (len_plasma_debye_electron_profile352)_ 8.88186483824242507e-05 +Plasma_electron_Debye_length_at_point_353________________________________ (len_plasma_debye_electron_profile353)_ 8.86426842845340884e-05 +Plasma_electron_Debye_length_at_point_354________________________________ (len_plasma_debye_electron_profile354)_ 8.84661073209517840e-05 +Plasma_electron_Debye_length_at_point_355________________________________ (len_plasma_debye_electron_profile355)_ 8.82889204490637080e-05 +Plasma_electron_Debye_length_at_point_356________________________________ (len_plasma_debye_electron_profile356)_ 8.81111267926155614e-05 +Plasma_electron_Debye_length_at_point_357________________________________ (len_plasma_debye_electron_profile357)_ 8.79327296475556432e-05 +Plasma_electron_Debye_length_at_point_358________________________________ (len_plasma_debye_electron_profile358)_ 8.77537324880873137e-05 +Plasma_electron_Debye_length_at_point_359________________________________ (len_plasma_debye_electron_profile359)_ 8.75741389729383128e-05 +Plasma_electron_Debye_length_at_point_360________________________________ (len_plasma_debye_electron_profile360)_ 8.73939529518560383e-05 +Plasma_electron_Debye_length_at_point_361________________________________ (len_plasma_debye_electron_profile361)_ 8.72131784723372981e-05 +Plasma_electron_Debye_length_at_point_362________________________________ (len_plasma_debye_electron_profile362)_ 8.70318197866024127e-05 +Plasma_electron_Debye_length_at_point_363________________________________ (len_plasma_debye_electron_profile363)_ 8.68498813588230360e-05 +Plasma_electron_Debye_length_at_point_364________________________________ (len_plasma_debye_electron_profile364)_ 8.66673678726142497e-05 +Plasma_electron_Debye_length_at_point_365________________________________ (len_plasma_debye_electron_profile365)_ 8.64842842388015569e-05 +Plasma_electron_Debye_length_at_point_366________________________________ (len_plasma_debye_electron_profile366)_ 8.63006356034739028e-05 +Plasma_electron_Debye_length_at_point_367________________________________ (len_plasma_debye_electron_profile367)_ 8.61164273563347143e-05 +Plasma_electron_Debye_length_at_point_368________________________________ (len_plasma_debye_electron_profile368)_ 8.59316651393630628e-05 +Plasma_electron_Debye_length_at_point_369________________________________ (len_plasma_debye_electron_profile369)_ 8.57463548557978243e-05 +Plasma_electron_Debye_length_at_point_370________________________________ (len_plasma_debye_electron_profile370)_ 8.55605026794585652e-05 +Plasma_electron_Debye_length_at_point_371________________________________ (len_plasma_debye_electron_profile371)_ 8.53741150644168970e-05 +Plasma_electron_Debye_length_at_point_372________________________________ (len_plasma_debye_electron_profile372)_ 8.51871987550335727e-05 +Plasma_electron_Debye_length_at_point_373________________________________ (len_plasma_debye_electron_profile373)_ 8.49997607963765852e-05 +Plasma_electron_Debye_length_at_point_374________________________________ (len_plasma_debye_electron_profile374)_ 8.48118085450366672e-05 +Plasma_electron_Debye_length_at_point_375________________________________ (len_plasma_debye_electron_profile375)_ 8.46233496803572538e-05 +Plasma_electron_Debye_length_at_point_376________________________________ (len_plasma_debye_electron_profile376)_ 8.44343922160970689e-05 +Plasma_electron_Debye_length_at_point_377________________________________ (len_plasma_debye_electron_profile377)_ 8.42449445125439706e-05 +Plasma_electron_Debye_length_at_point_378________________________________ (len_plasma_debye_electron_profile378)_ 8.40550152891002207e-05 +Plasma_electron_Debye_length_at_point_379________________________________ (len_plasma_debye_electron_profile379)_ 8.38646136373596301e-05 +Plasma_electron_Debye_length_at_point_380________________________________ (len_plasma_debye_electron_profile380)_ 8.36737490346988865e-05 +Plasma_electron_Debye_length_at_point_381________________________________ (len_plasma_debye_electron_profile381)_ 8.34824313584061592e-05 +Plasma_electron_Debye_length_at_point_382________________________________ (len_plasma_debye_electron_profile382)_ 8.32906709003709540e-05 +Plasma_electron_Debye_length_at_point_383________________________________ (len_plasma_debye_electron_profile383)_ 8.30984783823612811e-05 +Plasma_electron_Debye_length_at_point_384________________________________ (len_plasma_debye_electron_profile384)_ 8.29058649719148873e-05 +Plasma_electron_Debye_length_at_point_385________________________________ (len_plasma_debye_electron_profile385)_ 8.27128422988730820e-05 +Plasma_electron_Debye_length_at_point_386________________________________ (len_plasma_debye_electron_profile386)_ 8.25194224725872284e-05 +Plasma_electron_Debye_length_at_point_387________________________________ (len_plasma_debye_electron_profile387)_ 8.23256180998297100e-05 +Plasma_electron_Debye_length_at_point_388________________________________ (len_plasma_debye_electron_profile388)_ 8.21314423034428306e-05 +Plasma_electron_Debye_length_at_point_389________________________________ (len_plasma_debye_electron_profile389)_ 8.19369087417610905e-05 +Plasma_electron_Debye_length_at_point_390________________________________ (len_plasma_debye_electron_profile390)_ 8.17420316288442692e-05 +Plasma_electron_Debye_length_at_point_391________________________________ (len_plasma_debye_electron_profile391)_ 8.15468257555614442e-05 +Plasma_electron_Debye_length_at_point_392________________________________ (len_plasma_debye_electron_profile392)_ 8.13513065115672269e-05 +Plasma_electron_Debye_length_at_point_393________________________________ (len_plasma_debye_electron_profile393)_ 8.11554899082157387e-05 +Plasma_electron_Debye_length_at_point_394________________________________ (len_plasma_debye_electron_profile394)_ 8.09593926024588254e-05 +Plasma_electron_Debye_length_at_point_395________________________________ (len_plasma_debye_electron_profile395)_ 8.07630319217792381e-05 +Plasma_electron_Debye_length_at_point_396________________________________ (len_plasma_debye_electron_profile396)_ 8.05664258902122576e-05 +Plasma_electron_Debye_length_at_point_397________________________________ (len_plasma_debye_electron_profile397)_ 8.03695932555119385e-05 +Plasma_electron_Debye_length_at_point_398________________________________ (len_plasma_debye_electron_profile398)_ 8.01725535175233650e-05 +Plasma_electron_Debye_length_at_point_399________________________________ (len_plasma_debye_electron_profile399)_ 7.99753269578246714e-05 +Plasma_electron_Debye_length_at_point_400________________________________ (len_plasma_debye_electron_profile400)_ 7.97779346707077524e-05 +Plasma_electron_Debye_length_at_point_401________________________________ (len_plasma_debye_electron_profile401)_ 7.95803985955713649e-05 +Plasma_electron_Debye_length_at_point_402________________________________ (len_plasma_debye_electron_profile402)_ 7.93827415508047363e-05 +Plasma_electron_Debye_length_at_point_403________________________________ (len_plasma_debye_electron_profile403)_ 7.91849872692460032e-05 +Plasma_electron_Debye_length_at_point_404________________________________ (len_plasma_debye_electron_profile404)_ 7.89871604353051585e-05 +Plasma_electron_Debye_length_at_point_405________________________________ (len_plasma_debye_electron_profile405)_ 7.87892867238483118e-05 +Plasma_electron_Debye_length_at_point_406________________________________ (len_plasma_debye_electron_profile406)_ 7.85913928409467640e-05 +Plasma_electron_Debye_length_at_point_407________________________________ (len_plasma_debye_electron_profile407)_ 7.83935065666025956e-05 +Plasma_electron_Debye_length_at_point_408________________________________ (len_plasma_debye_electron_profile408)_ 7.81956567995704797e-05 +Plasma_electron_Debye_length_at_point_409________________________________ (len_plasma_debye_electron_profile409)_ 7.79978736044056181e-05 +Plasma_electron_Debye_length_at_point_410________________________________ (len_plasma_debye_electron_profile410)_ 7.78001882608772588e-05 +Plasma_electron_Debye_length_at_point_411________________________________ (len_plasma_debye_electron_profile411)_ 7.76026333158992825e-05 +Plasma_electron_Debye_length_at_point_412________________________________ (len_plasma_debye_electron_profile412)_ 7.74052426381413854e-05 +Plasma_electron_Debye_length_at_point_413________________________________ (len_plasma_debye_electron_profile413)_ 7.72080514754988818e-05 +Plasma_electron_Debye_length_at_point_414________________________________ (len_plasma_debye_electron_profile414)_ 7.70110965156141028e-05 +Plasma_electron_Debye_length_at_point_415________________________________ (len_plasma_debye_electron_profile415)_ 7.68144159496595899e-05 +Plasma_electron_Debye_length_at_point_416________________________________ (len_plasma_debye_electron_profile416)_ 7.66180495396128131e-05 +Plasma_electron_Debye_length_at_point_417________________________________ (len_plasma_debye_electron_profile417)_ 7.64220386892727272e-05 +Plasma_electron_Debye_length_at_point_418________________________________ (len_plasma_debye_electron_profile418)_ 7.62264265192927831e-05 +Plasma_electron_Debye_length_at_point_419________________________________ (len_plasma_debye_electron_profile419)_ 7.60312579465315162e-05 +Plasma_electron_Debye_length_at_point_420________________________________ (len_plasma_debye_electron_profile420)_ 7.58365797680519098e-05 +Plasma_electron_Debye_length_at_point_421________________________________ (len_plasma_debye_electron_profile421)_ 7.56424407501340946e-05 +Plasma_electron_Debye_length_at_point_422________________________________ (len_plasma_debye_electron_profile422)_ 7.54488917227046421e-05 +Plasma_electron_Debye_length_at_point_423________________________________ (len_plasma_debye_electron_profile423)_ 7.52559856796284504e-05 +Plasma_electron_Debye_length_at_point_424________________________________ (len_plasma_debye_electron_profile424)_ 7.50637778853581201e-05 +Plasma_electron_Debye_length_at_point_425________________________________ (len_plasma_debye_electron_profile425)_ 7.48723259884919351e-05 +Plasma_electron_Debye_length_at_point_426________________________________ (len_plasma_debye_electron_profile426)_ 7.46816901428546201e-05 +Plasma_electron_Debye_length_at_point_427________________________________ (len_plasma_debye_electron_profile427)_ 7.44919331367884495e-05 +Plasma_electron_Debye_length_at_point_428________________________________ (len_plasma_debye_electron_profile428)_ 7.43031205314259011e-05 +Plasma_electron_Debye_length_at_point_429________________________________ (len_plasma_debye_electron_profile429)_ 7.41153208088113238e-05 +Plasma_electron_Debye_length_at_point_430________________________________ (len_plasma_debye_electron_profile430)_ 7.39286055308513326e-05 +Plasma_electron_Debye_length_at_point_431________________________________ (len_plasma_debye_electron_profile431)_ 7.37430495102025802e-05 +Plasma_electron_Debye_length_at_point_432________________________________ (len_plasma_debye_electron_profile432)_ 7.35587309943574010e-05 +Plasma_electron_Debye_length_at_point_433________________________________ (len_plasma_debye_electron_profile433)_ 7.33757318643633779e-05 +Plasma_electron_Debye_length_at_point_434________________________________ (len_plasma_debye_electron_profile434)_ 7.31941378498215549e-05 +Plasma_electron_Debye_length_at_point_435________________________________ (len_plasma_debye_electron_profile435)_ 7.30140387620512428e-05 +Plasma_electron_Debye_length_at_point_436________________________________ (len_plasma_debye_electron_profile436)_ 7.28355287476001502e-05 +Plasma_electron_Debye_length_at_point_437________________________________ (len_plasma_debye_electron_profile437)_ 7.26587065646223430e-05 +Plasma_electron_Debye_length_at_point_438________________________________ (len_plasma_debye_electron_profile438)_ 7.24836758850596480e-05 +Plasma_electron_Debye_length_at_point_439________________________________ (len_plasma_debye_electron_profile439)_ 7.23105456260562761e-05 +Plasma_electron_Debye_length_at_point_440________________________________ (len_plasma_debye_electron_profile440)_ 7.21394303146364577e-05 +Plasma_electron_Debye_length_at_point_441________________________________ (len_plasma_debye_electron_profile441)_ 7.19704504904014288e-05 +Plasma_electron_Debye_length_at_point_442________________________________ (len_plasma_debye_electron_profile442)_ 7.18037331518931078e-05 +Plasma_electron_Debye_length_at_point_443________________________________ (len_plasma_debye_electron_profile443)_ 7.16394122533661927e-05 +Plasma_electron_Debye_length_at_point_444________________________________ (len_plasma_debye_electron_profile444)_ 7.14776292600694869e-05 +Plasma_electron_Debye_length_at_point_445________________________________ (len_plasma_debye_electron_profile445)_ 7.13185337718317311e-05 +Plasma_electron_Debye_length_at_point_446________________________________ (len_plasma_debye_electron_profile446)_ 7.11622842268820957e-05 +Plasma_electron_Debye_length_at_point_447________________________________ (len_plasma_debye_electron_profile447)_ 7.10090487005440288e-05 +Plasma_electron_Debye_length_at_point_448________________________________ (len_plasma_debye_electron_profile448)_ 7.08590058169120091e-05 +Plasma_electron_Debye_length_at_point_449________________________________ (len_plasma_debye_electron_profile449)_ 7.07123457961104110e-05 +Plasma_electron_Debye_length_at_point_450________________________________ (len_plasma_debye_electron_profile450)_ 7.05692716656062922e-05 +Plasma_electron_Debye_length_at_point_451________________________________ (len_plasma_debye_electron_profile451)_ 7.04300006718169331e-05 +Plasma_electron_Debye_length_at_point_452________________________________ (len_plasma_debye_electron_profile452)_ 7.02947659386647623e-05 +Plasma_electron_Debye_length_at_point_453________________________________ (len_plasma_debye_electron_profile453)_ 7.01638184338808872e-05 +Plasma_electron_Debye_length_at_point_454________________________________ (len_plasma_debye_electron_profile454)_ 7.00374293233827194e-05 +Plasma_electron_Debye_length_at_point_455________________________________ (len_plasma_debye_electron_profile455)_ 6.99158928214575640e-05 +Plasma_electron_Debye_length_at_point_456________________________________ (len_plasma_debye_electron_profile456)_ 6.97995296836881871e-05 +Plasma_electron_Debye_length_at_point_457________________________________ (len_plasma_debye_electron_profile457)_ 6.96886915468424695e-05 +Plasma_electron_Debye_length_at_point_458________________________________ (len_plasma_debye_electron_profile458)_ 6.95837664056842242e-05 +Plasma_electron_Debye_length_at_point_459________________________________ (len_plasma_debye_electron_profile459)_ 6.94851856485187100e-05 +Plasma_electron_Debye_length_at_point_460________________________________ (len_plasma_debye_electron_profile460)_ 6.93934332825188905e-05 +Plasma_electron_Debye_length_at_point_461________________________________ (len_plasma_debye_electron_profile461)_ 6.93090583241735852e-05 +Plasma_electron_Debye_length_at_point_462________________________________ (len_plasma_debye_electron_profile462)_ 6.92326919214694377e-05 +Plasma_electron_Debye_length_at_point_463________________________________ (len_plasma_debye_electron_profile463)_ 6.91650718430245504e-05 +Plasma_electron_Debye_length_at_point_464________________________________ (len_plasma_debye_electron_profile464)_ 6.91070790246962522e-05 +Plasma_electron_Debye_length_at_point_465________________________________ (len_plasma_debye_electron_profile465)_ 6.90597951370453759e-05 +Plasma_electron_Debye_length_at_point_466________________________________ (len_plasma_debye_electron_profile466)_ 6.90245999596896849e-05 +Plasma_electron_Debye_length_at_point_467________________________________ (len_plasma_debye_electron_profile467)_ 6.90033532272855998e-05 +Plasma_electron_Debye_length_at_point_468________________________________ (len_plasma_debye_electron_profile468)_ 6.89987888179042038e-05 +Plasma_electron_Debye_length_at_point_469________________________________ (len_plasma_debye_electron_profile469)_ 6.90156232037711430e-05 +Plasma_electron_Debye_length_at_point_470________________________________ (len_plasma_debye_electron_profile470)_ 6.90673425992584190e-05 +Plasma_electron_Debye_length_at_point_471________________________________ (len_plasma_debye_electron_profile471)_ 6.83987733990311695e-05 +Plasma_electron_Debye_length_at_point_472________________________________ (len_plasma_debye_electron_profile472)_ 6.77044494938571889e-05 +Plasma_electron_Debye_length_at_point_473________________________________ (len_plasma_debye_electron_profile473)_ 6.69827384222933942e-05 +Plasma_electron_Debye_length_at_point_474________________________________ (len_plasma_debye_electron_profile474)_ 6.62318550493058104e-05 +Plasma_electron_Debye_length_at_point_475________________________________ (len_plasma_debye_electron_profile475)_ 6.54498417717006324e-05 +Plasma_electron_Debye_length_at_point_476________________________________ (len_plasma_debye_electron_profile476)_ 6.46345453220490508e-05 +Plasma_electron_Debye_length_at_point_477________________________________ (len_plasma_debye_electron_profile477)_ 6.37835894238101707e-05 +Plasma_electron_Debye_length_at_point_478________________________________ (len_plasma_debye_electron_profile478)_ 6.28943423464881513e-05 +Plasma_electron_Debye_length_at_point_479________________________________ (len_plasma_debye_electron_profile479)_ 6.19638781382965105e-05 +Plasma_electron_Debye_length_at_point_480________________________________ (len_plasma_debye_electron_profile480)_ 6.09889299482946391e-05 +Plasma_electron_Debye_length_at_point_481________________________________ (len_plasma_debye_electron_profile481)_ 5.99658333512791911e-05 +Plasma_electron_Debye_length_at_point_482________________________________ (len_plasma_debye_electron_profile482)_ 5.88904568987327494e-05 +Plasma_electron_Debye_length_at_point_483________________________________ (len_plasma_debye_electron_profile483)_ 5.77581161497306466e-05 +Plasma_electron_Debye_length_at_point_484________________________________ (len_plasma_debye_electron_profile484)_ 5.65634660506043183e-05 +Plasma_electron_Debye_length_at_point_485________________________________ (len_plasma_debye_electron_profile485)_ 5.53003645159692370e-05 +Plasma_electron_Debye_length_at_point_486________________________________ (len_plasma_debye_electron_profile486)_ 5.39616970677597699e-05 +Plasma_electron_Debye_length_at_point_487________________________________ (len_plasma_debye_electron_profile487)_ 5.25391478333605769e-05 +Plasma_electron_Debye_length_at_point_488________________________________ (len_plasma_debye_electron_profile488)_ 5.10228950953374430e-05 +Plasma_electron_Debye_length_at_point_489________________________________ (len_plasma_debye_electron_profile489)_ 4.94011981629616226e-05 +Plasma_electron_Debye_length_at_point_490________________________________ (len_plasma_debye_electron_profile490)_ 4.76598233568572679e-05 +Plasma_electron_Debye_length_at_point_491________________________________ (len_plasma_debye_electron_profile491)_ 4.57812241201833233e-05 +Plasma_electron_Debye_length_at_point_492________________________________ (len_plasma_debye_electron_profile492)_ 4.37433310422662494e-05 +Plasma_electron_Debye_length_at_point_493________________________________ (len_plasma_debye_electron_profile493)_ 4.15176946657215749e-05 +Plasma_electron_Debye_length_at_point_494________________________________ (len_plasma_debye_electron_profile494)_ 3.90664942779882915e-05 +Plasma_electron_Debye_length_at_point_495________________________________ (len_plasma_debye_electron_profile495)_ 3.63374198134213457e-05 +Plasma_electron_Debye_length_at_point_496________________________________ (len_plasma_debye_electron_profile496)_ 3.32541992221823272e-05 +Plasma_electron_Debye_length_at_point_497________________________________ (len_plasma_debye_electron_profile497)_ 2.96970944839207183e-05 +Plasma_electron_Debye_length_at_point_498________________________________ (len_plasma_debye_electron_profile498)_ 2.54560245848832641e-05 +Plasma_electron_Debye_length_at_point_499________________________________ (len_plasma_debye_electron_profile499)_ 2.00856697568761105e-05 +Plasma_electron_Debye_length_at_point_500________________________________ (len_plasma_debye_electron_profile500)_ 1.21427166971733408e-05 +Volume_averaged_deuteron_isotropic_toroidal_Larmor_radius_(m)____________ (radius_plasma_deuteron_toroidal_larmor_isotropic_vol_avg)_ 6.52230653681552374e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_0_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile0)_ 3.86228337691311074e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_1_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1)_ 6.46929213669677409e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_2_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile2)_ 8.30022458807640889e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_3_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile3)_ 9.80017121949164653e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_4_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile4)_ 1.11040886488865485e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_5_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile5)_ 1.22746150752264718e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_6_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile6)_ 1.33468980778145545e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_7_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile7)_ 1.43429942654176436e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_8_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile8)_ 1.52778180624757996e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_9_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile9)_ 1.61620100770613439e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_10______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile10)_ 1.70034755313787670e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_11______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile11)_ 1.78082766374554032e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_12______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile12)_ 1.85811824261686775e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_13______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile13)_ 1.93260242046393955e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_14______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile14)_ 2.00459345298761643e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_15______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile15)_ 2.07435132015947434e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_16______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile16)_ 2.14209457910943118e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_17______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile17)_ 2.20800903032874118e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_18______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile18)_ 2.27225418559277035e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_19______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile19)_ 2.33496818183915895e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_20______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile20)_ 2.39627157586044413e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_21______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile21)_ 2.45627031405879371e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_22______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile22)_ 2.51505808867260065e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_23______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile23)_ 2.57271822657023554e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_24______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile24)_ 2.62932522041503525e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_25______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile25)_ 2.68494598109459293e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_26______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile26)_ 2.73964087064132835e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_27______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile27)_ 2.79346456196625246e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_28______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile28)_ 2.84646675802697558e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_29______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile29)_ 2.89869279927071214e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_30______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile30)_ 2.95018417845109397e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_31______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile31)_ 2.95507579516153616e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_32______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile32)_ 2.96144715395276923e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_33______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile33)_ 2.96872882319410220e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_34______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile34)_ 2.97672401462934638e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_35______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile35)_ 2.98531969661473915e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_36______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile36)_ 2.99443958418772445e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_37______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile37)_ 3.00402746912634654e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_38______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile38)_ 3.01403954926445427e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_39______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile39)_ 3.02444033412680108e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_40______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile40)_ 3.03520022947915925e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_41______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile41)_ 3.04629400952153130e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_42______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile42)_ 3.05769979557193221e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_43______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile43)_ 3.06939834444582135e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_44______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile44)_ 3.08137253478704600e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_45______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile45)_ 3.09360698653596451e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_46______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile46)_ 3.10608777072995512e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_47______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile47)_ 3.11880218563667872e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_48______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile48)_ 3.13173857843615684e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_49______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile49)_ 3.14488620382845753e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_50______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile50)_ 3.15823510806853992e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_51______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile51)_ 3.17177603378040627e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_52______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile52)_ 3.18550034081445865e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_53______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile53)_ 3.19939993995830164e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_54______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile54)_ 3.21346723617356791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_55______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile55)_ 3.22769508095947441e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_56______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile56)_ 3.24207673022404571e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_57______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile57)_ 3.25660580897411348e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_58______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile58)_ 3.27127627933841139e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_59______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile59)_ 3.28608241340102572e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_60______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile60)_ 3.30101876852977472e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_61______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile61)_ 3.31608016643090931e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_62______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile62)_ 3.33126167297577045e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_63______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile63)_ 3.34655858190690192e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_64______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile64)_ 3.36196639892376173e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_65______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile65)_ 3.37748082764804339e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_66______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile66)_ 3.39309775706128072e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_67______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile67)_ 3.40881325032485125e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_68______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile68)_ 3.42462353362500693e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_69______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile69)_ 3.44052498742744746e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_70______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile70)_ 3.45651413668526548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_71______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile71)_ 3.47258764392837033e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_72______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile72)_ 3.48874230058341664e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_73______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile73)_ 3.50497502100380635e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_74______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile74)_ 3.52128283570491774e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_75______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile75)_ 3.53766288552511809e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_76______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile76)_ 3.55411241601700763e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_77______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile77)_ 3.57062877247267063e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_78______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile78)_ 3.58720939494601475e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_79______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile79)_ 3.60385181395324241e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_80______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile80)_ 3.62055364599122480e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_81______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile81)_ 3.63731259027720751e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_82______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile82)_ 3.65412642397747959e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_83______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile83)_ 3.67099299962807182e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_84______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile84)_ 3.68791024173878174e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_85______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile85)_ 3.70487614301753679e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_86______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile86)_ 3.72188876246314646e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_87______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile87)_ 3.73894622180804409e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_88______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile88)_ 3.75604670325584882e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_89______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile89)_ 3.77318844692857381e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_90______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile90)_ 3.79036974873594263e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_91______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile91)_ 3.80758895768898041e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_92______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile92)_ 3.82484447429113673e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_93______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile93)_ 3.84213474822517548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_94______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile94)_ 3.85945827645736272e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_95______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile95)_ 3.87681360179982894e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_96______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile96)_ 3.89419931039044348e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_97______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile97)_ 3.91161403116826317e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_98______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile98)_ 3.92905643299610446e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_99______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile99)_ 3.94652522436882494e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_100_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile100)_ 3.96401915110998482e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_101_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile101)_ 3.98153699561605914e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_102_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile102)_ 3.99907757512120345e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_103_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile103)_ 4.01663974038802413e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_104_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile104)_ 4.03422237519226404e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_105_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile105)_ 4.05182439436467534e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_106_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile106)_ 4.06944474314650893e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_107_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile107)_ 4.08708239588003331e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_108_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile108)_ 4.10473635546244539e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_109_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile109)_ 4.12240565188216543e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_110_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile110)_ 4.14008934130928336e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_111_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile111)_ 4.15778650559233288e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_112_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile112)_ 4.17549625118877887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_113_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile113)_ 4.19321770820417408e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_114_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile114)_ 4.21095002974408890e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_115_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile115)_ 4.22869239116267608e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_116_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile116)_ 4.24644398957399992e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_117_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile117)_ 4.26420404244047015e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_118_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile118)_ 4.28197178765605917e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_119_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile119)_ 4.29974648258984408e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_120_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile120)_ 4.31752740323485505e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_121_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile121)_ 4.33531384413564369e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_122_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile122)_ 4.35310511735302087e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_123_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile123)_ 4.37090055209443835e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_124_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile124)_ 4.38869949406054619e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_125_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile125)_ 4.40650130513683697e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_126_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile126)_ 4.42430536271292991e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_127_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile127)_ 4.44211105939007651e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_128_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile128)_ 4.45991780202976713e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_129_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile129)_ 4.47772501216481354e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_130_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile130)_ 4.49553212466447579e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_131_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile131)_ 4.51333858789308446e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_132_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile132)_ 4.53114386303381158e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_133_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile133)_ 4.54894742399248025e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_134_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile134)_ 4.56674875658270429e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_135_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile135)_ 4.58454735848659502e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_136_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile136)_ 4.60234273893446368e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_137_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile137)_ 4.62013441806421402e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_138_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile138)_ 4.63792192707073586e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_139_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile139)_ 4.65570480740293887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_140_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile140)_ 4.67348261066310219e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_141_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile141)_ 4.69125489820716030e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_142_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile142)_ 4.70902124135334516e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_143_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile143)_ 4.72678122025919738e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_144_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile144)_ 4.74453442444105946e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_145_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile145)_ 4.76228045194211549e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_146_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile146)_ 4.78001890953549859e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_147_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile147)_ 4.79774941213854597e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_148_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile148)_ 4.81547158272384052e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_149_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile149)_ 4.83318505212644665e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_150_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile150)_ 4.85088945864289248e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_151_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile151)_ 4.86858444818515177e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_152_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile152)_ 4.88626967359056912e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_153_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile153)_ 4.90394479484567228e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_154_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile154)_ 4.92160947861530230e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_155_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile155)_ 4.93926339830224291e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_156_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile156)_ 4.95690623356304701e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_157_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile157)_ 4.97453767020621107e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_158_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile158)_ 4.99215740048865927e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_159_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile159)_ 5.00976512216098121e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_160_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile160)_ 5.02736053895763788e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_161_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile161)_ 5.04494336000421619e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_162_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile162)_ 5.06251330008079727e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_163_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile163)_ 5.08007007901525517e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_164_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile164)_ 5.09761342207421583e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_165_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile165)_ 5.11514305925898048e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_166_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile166)_ 5.13265872549377705e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_167_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile167)_ 5.15016016048437317e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_168_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile168)_ 5.16764710878382487e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_169_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile169)_ 5.18511931889665666e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_170_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile170)_ 5.20257654425155397e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_171_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile171)_ 5.22001854220731105e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_172_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile172)_ 5.23744507443342413e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_173_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile173)_ 5.25485590643382829e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_174_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile174)_ 5.27225080796890015e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_175_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile175)_ 5.28962955227851427e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_176_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile176)_ 5.30699191662813412e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_177_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile177)_ 5.32433768173936478e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_178_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile178)_ 5.34166663193231476e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_179_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile179)_ 5.35897855500541264e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_180_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile180)_ 5.37627324203644903e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_181_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile181)_ 5.39355048742690135e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_182_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile182)_ 5.41081008870581727e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_183_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile183)_ 5.42805184671626972e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_184_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile184)_ 5.44527556504116345e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_185_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile185)_ 5.46248105049235155e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_186_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile186)_ 5.47966811245999101e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_187_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile187)_ 5.49683656342220966e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_188_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile188)_ 5.51398621841750567e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_189_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile189)_ 5.53111689529597970e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_190_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile190)_ 5.54822841423570703e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_191_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile191)_ 5.56532059829251136e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_192_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile192)_ 5.58239327272043711e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_193_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile193)_ 5.59944626522569568e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_194_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile194)_ 5.61647940610061989e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_195_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile195)_ 5.63349252755010639e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_196_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile196)_ 5.65048546439950606e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_197_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile197)_ 5.66745805330558152e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_198_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile198)_ 5.68441013320892131e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_199_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile199)_ 5.70134154507840208e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_200_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile200)_ 5.71825213195120089e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_201_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile201)_ 5.73514173883615287e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_202_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile202)_ 5.75201021255966095e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_203_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile203)_ 5.76885740202201600e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_204_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile204)_ 5.78568315767407151e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_205_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile205)_ 5.80248733193057011e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_206_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile206)_ 5.81926977897917475e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_207_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile207)_ 5.83603035451368650e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_208_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile208)_ 5.85276891608879808e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_209_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile209)_ 5.86948532279592955e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_210_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile210)_ 5.88617943521194033e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_211_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile211)_ 5.90285111554132106e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_212_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile212)_ 5.91950022748788298e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_213_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile213)_ 5.93612663618530920e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_214_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile214)_ 5.95273020818606891e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_215_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile215)_ 5.96931081146979178e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_216_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile216)_ 5.98586831539426288e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_217_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile217)_ 6.00240259051287167e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_218_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile218)_ 6.01891350891006500e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_219_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile219)_ 6.03540094365559096e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_220_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile220)_ 6.05186476925528589e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_221_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile221)_ 6.06830486127900477e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_222_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile222)_ 6.08472109663890561e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_223_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile223)_ 6.10111335314288909e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_224_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile224)_ 6.11748150994459883e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_225_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile225)_ 6.13382544719305936e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_226_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile226)_ 6.15014504614001725e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_227_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile227)_ 6.16644018890558521e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_228_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile228)_ 6.18271075890816646e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_229_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile229)_ 6.19895664027046624e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_230_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile230)_ 6.21517771834413212e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_231_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile231)_ 6.23137387924972610e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_232_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile232)_ 6.24754501004190586e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_233_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile233)_ 6.26369099862881390e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_234_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile234)_ 6.27981173395560175e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_235_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile235)_ 6.29590710571683535e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_236_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile236)_ 6.31197700440888632e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_237_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile237)_ 6.32802132138208292e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_238_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile238)_ 6.34403994878018126e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_239_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile239)_ 6.36003277953647601e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_240_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile240)_ 6.37599970725771618e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_241_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile241)_ 6.39194062642667489e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_242_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile242)_ 6.40785543213659610e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_243_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile243)_ 6.42374402020051780e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_244_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile244)_ 6.43960628714818680e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_245_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile245)_ 6.45544213011126165e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_246_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile246)_ 6.47125144689538086e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_247_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile247)_ 6.48703413599614753e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_248_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile248)_ 6.50279009659652033e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_249_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile249)_ 6.51851922824845699e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_250_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile250)_ 6.53422143118734602e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_251_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile251)_ 6.54989660638526615e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_252_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile252)_ 6.56554465515931177e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_253_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile253)_ 6.58116547959663317e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_254_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile254)_ 6.59675898201534522e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_255_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile255)_ 6.61232506555586852e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_256_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile256)_ 6.62786363362411791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_257_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile257)_ 6.64337459031576465e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_258_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile258)_ 6.65885784008226397e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_259_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile259)_ 6.67431328784086082e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_260_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile260)_ 6.68974083913941812e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_261_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile261)_ 6.70514039978675411e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_262_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile262)_ 6.72051187605485646e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_263_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile263)_ 6.73585517471485609e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_264_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile264)_ 6.75117020281568777e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_265_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile265)_ 6.76645686794105031e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_266_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile266)_ 6.78171507809840687e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_267_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile267)_ 6.79694474160850211e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_268_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile268)_ 6.81214576699537468e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_269_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile269)_ 6.82731806349930713e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_270_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile270)_ 6.84246154038021994e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_271_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile271)_ 6.85757610748549771e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_272_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile272)_ 6.87266167488367365e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_273_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile273)_ 6.88771815288309348e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_274_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile274)_ 6.90274545236077564e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_275_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile275)_ 6.91774348425104688e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_276_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile276)_ 6.93271215992931171e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_277_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile277)_ 6.94765139095681553e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_278_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile278)_ 6.96256108937258998e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_279_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile279)_ 6.97744116722006681e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_280_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile280)_ 6.99229153700297017e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_281_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile281)_ 7.00711211148522927e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_282_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile282)_ 7.02190280360063656e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_283_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile283)_ 7.03666352658070295e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_284_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile284)_ 7.05139419386433680e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_285_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile285)_ 7.06609471906225091e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_286_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile286)_ 7.08076501621156870e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_287_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile287)_ 7.09540499944981765e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_288_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile288)_ 7.11001458301594239e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_289_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile289)_ 7.12459368152284535e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_290_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile290)_ 7.13914220977681594e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_291_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile291)_ 7.15366008259750701e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_292_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile292)_ 7.16814721516262181e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_293_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile293)_ 7.18260352282771349e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_294_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile294)_ 7.19702892109094772e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_295_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile295)_ 7.21142332559409314e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_296_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile296)_ 7.22578665217763795e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_297_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile297)_ 7.24011881673739498e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_298_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile298)_ 7.25441973556822418e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_299_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile299)_ 7.26868932484192685e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_300_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile300)_ 7.28292750098709796e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_301_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile301)_ 7.29713418070793065e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_302_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile302)_ 7.31130928064303506e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_303_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile303)_ 7.32545271758279926e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_304_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile304)_ 7.33956440852438254e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_305_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile305)_ 7.35364427056478531e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_306_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile306)_ 7.36769222093794883e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_307_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile307)_ 7.38170817692602836e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_308_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile308)_ 7.39569205591452360e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_309_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile309)_ 7.40964377546522723e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_310_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile310)_ 7.42356325315577520e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_311_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile311)_ 7.43745040677825427e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_312_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile312)_ 7.45130515403536961e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_313_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile313)_ 7.46512741293628868e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_314_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile314)_ 7.47891710133156019e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_315_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile315)_ 7.49267413738048151e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_316_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile316)_ 7.50639843915796700e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_317_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile317)_ 7.52008992487083854e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_318_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile318)_ 7.53374851280527637e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_319_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile319)_ 7.54737412134592368e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_320_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile320)_ 7.56096666870876340e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_321_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile321)_ 7.57452607351491534e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_322_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile322)_ 7.58805225421930931e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_323_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile323)_ 7.60154512939822252e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_324_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile324)_ 7.61500461758958264e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_325_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile325)_ 7.62843063749086246e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_326_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile326)_ 7.64182310779942895e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_327_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile327)_ 7.65518194717816451e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_328_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile328)_ 7.66850707447098556e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_329_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile329)_ 7.68179840840055566e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_330_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile330)_ 7.69505586787302704e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_331_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile331)_ 7.70827937176508330e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_332_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile332)_ 7.72146883881820803e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_333_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile333)_ 7.73462418799674648e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_334_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile334)_ 7.74774533827503244e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_335_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile335)_ 7.76083220851384557e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_336_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile336)_ 7.77388471760435268e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_337_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile337)_ 7.78690278464754318e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_338_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile338)_ 7.79988632854550831e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_339_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile339)_ 7.81283526823444568e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_340_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile340)_ 7.82574952281051527e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_341_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile341)_ 7.83862901101455706e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_342_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile342)_ 7.85147365199916417e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_343_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile343)_ 7.86428336474213896e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_344_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile344)_ 7.87705806813683573e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_345_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile345)_ 7.88979768113580449e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_346_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile346)_ 7.90250212273414104e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_347_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile347)_ 7.91517131182832914e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_348_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile348)_ 7.92780516735980441e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_349_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile349)_ 7.94040360822716000e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_350_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile350)_ 7.95296655325178348e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_351_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile351)_ 7.96549392146361952e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_352_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile352)_ 7.97798563147980068e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_353_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile353)_ 7.99044160232396591e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_354_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile354)_ 8.00286175259153770e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_355_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile355)_ 8.01524600119777643e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_356_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile356)_ 8.02759426684543018e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_357_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile357)_ 8.03990646811483453e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_358_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile358)_ 8.05218252383835091e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_359_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile359)_ 8.06442235249705056e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_360_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile360)_ 8.07662587277292732e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_361_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile361)_ 8.08879300312335438e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_362_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile362)_ 8.10092366226210052e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_363_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile363)_ 8.11301776839614720e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_364_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile364)_ 8.12507524007989763e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_365_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile365)_ 8.13709599575411675e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_366_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile366)_ 8.14907995364039239e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_367_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile367)_ 8.16102703204429035e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_368_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile368)_ 8.17293714926754615e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_369_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile369)_ 8.18481022334251879e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_370_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile370)_ 8.19664617247752199e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_371_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile371)_ 8.20844491479122591e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_372_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile372)_ 8.22020636829594135e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_373_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile373)_ 8.23193045080969875e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_374_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile374)_ 8.24361708038381588e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_375_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile375)_ 8.25526617480621359e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_376_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile376)_ 8.26687765178011312e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_377_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile377)_ 8.27845142903164272e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_378_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile378)_ 8.28998742436412063e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_379_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile379)_ 8.30148555509012918e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_380_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile380)_ 8.31294573893909781e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_381_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile381)_ 8.32436789324040791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_382_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile382)_ 8.33575193545769283e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_383_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile383)_ 8.34709778276297200e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_384_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile384)_ 8.35840535246430705e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_385_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile385)_ 8.36967456175774852e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_386_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile386)_ 8.38090532762142924e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_387_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile387)_ 8.39209756706544435e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_388_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile388)_ 8.40325119711494116e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_389_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile389)_ 8.41436613449068373e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_390_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile390)_ 8.42544229607248944e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_391_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile391)_ 8.43647959841957798e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_392_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile392)_ 8.44747795825187726e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_393_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile393)_ 8.45843729202366314e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_394_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile394)_ 8.46935751619131393e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_395_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile395)_ 8.48023854708946680e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_396_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile396)_ 8.49108030096737930e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_397_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile397)_ 8.50188269402528569e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_398_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile398)_ 8.51264564236172382e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_399_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile399)_ 8.52336906195639774e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_400_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile400)_ 8.53405286868870634e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_401_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile401)_ 8.54469697849888701e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_402_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile402)_ 8.55530130688953762e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_403_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile403)_ 8.56586576969288471e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_404_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile404)_ 8.57639028232263720e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_405_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile405)_ 8.58687476029172843e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_406_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile406)_ 8.59731911882056186e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_407_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile407)_ 8.60772327330150931e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_408_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile408)_ 8.61808713879992291e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_409_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile409)_ 8.62841063032235289e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_410_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile410)_ 8.63869366290649122e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_411_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile411)_ 8.64893615138965371e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_412_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile412)_ 8.65913801048070857e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_413_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile413)_ 8.66929915479635639e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_414_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile414)_ 8.67941949884380899e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_415_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile415)_ 8.68949895711072957e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_416_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile416)_ 8.69953744390487317e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_417_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile417)_ 8.70953487353343277e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_418_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile418)_ 8.71949115992782554e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_419_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile419)_ 8.72940621721669981e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_420_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile420)_ 8.73927995929704889e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_421_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile421)_ 8.74911229979868574e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_422_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile422)_ 8.75890315262197600e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_423_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile423)_ 8.76865243115025096e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_424_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile424)_ 8.77836004891297678e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_425_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile425)_ 8.78802591919199474e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_426_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile426)_ 8.79764995527289491e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_427_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile427)_ 8.80723207023023300e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_428_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile428)_ 8.81677217705343144e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_429_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile429)_ 8.82627018852148899e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_430_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile430)_ 8.83572601756241367e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_431_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile431)_ 8.84513957667906053e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_432_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile432)_ 8.85451077848813280e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_433_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile433)_ 8.86383953532535879e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_434_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile434)_ 8.87312575942538449e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_435_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile435)_ 8.88236936310200786e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_436_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile436)_ 8.89157025822685625e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_437_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile437)_ 8.90072835673324549e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_438_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile438)_ 8.90984357058072739e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_439_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile439)_ 8.91891581119705346e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_440_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile440)_ 8.92794499027075791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_441_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile441)_ 8.93693101915703052e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_442_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile442)_ 8.94587380925637721e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_443_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile443)_ 8.95477327160006283e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_444_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile444)_ 8.96362931721090758e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_445_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile445)_ 8.97244185708562583e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_446_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile446)_ 8.98121080199643443e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_447_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile447)_ 8.98993606259948508e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_448_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile448)_ 8.99861754930842903e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_449_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile449)_ 9.00725517261993791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_450_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile450)_ 9.01584884271611903e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_451_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile451)_ 9.02439846984443364e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_452_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile452)_ 9.03290396377481181e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_453_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile453)_ 9.04136523457819974e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_454_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile454)_ 9.04978219190239429e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_455_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile455)_ 9.05815474531607330e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_456_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile456)_ 9.06648280418192835e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_457_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile457)_ 9.07476627800148268e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_458_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile458)_ 9.08300507579816972e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_459_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile459)_ 9.09119910669806304e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_460_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile460)_ 9.09934827958497686e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_461_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile461)_ 9.10745250324572833e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_462_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile462)_ 9.11551168620641263e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_463_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile463)_ 9.12352573698695449e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_464_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile464)_ 9.13149456399208609e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_465_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile465)_ 9.13941807538376158e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_466_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile466)_ 9.14729617924492193e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_467_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile467)_ 9.15512878345186090e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_468_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile468)_ 9.16291579580171857e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_469_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile469)_ 9.17065712384815962e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_470_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile470)_ 9.17835267522987448e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_471_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile471)_ 9.18600235714086936e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_472_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile472)_ 9.19360607678680435e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_473_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile473)_ 9.20116374123882731e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_474_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile474)_ 9.20867525748833744e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_475_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile475)_ 9.21614053213555551e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_476_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile476)_ 9.22355947190186577e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_477_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile477)_ 9.23093198317185074e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_478_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile478)_ 9.23825797226778683e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_479_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile479)_ 9.24553734530273938e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_480_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile480)_ 9.25277000834550528e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_481_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile481)_ 9.25995586729194339e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_482_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile482)_ 9.26709482768071913e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_483_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile483)_ 9.27418679517089811e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_484_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile484)_ 9.28123167515571695e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_485_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile485)_ 9.28822937285408816e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_486_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile486)_ 9.29517979332860830e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_487_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile487)_ 9.30208284161434217e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_488_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile488)_ 9.30893842234969439e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_489_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile489)_ 9.31574644027397154e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_490_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile490)_ 9.32250679976575139e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_491_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile491)_ 9.32921940519322590e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_492_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile492)_ 9.33588416065518623e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_493_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile493)_ 9.34250097020243586e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_494_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile494)_ 9.34906973757830724e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_495_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile495)_ 9.35559036651439219e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_496_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile496)_ 9.36206276061924032e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_497_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile497)_ 9.36848682306239480e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_498_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile498)_ 9.37486245718605234e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_499_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile499)_ 9.38118956589220274e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_500_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile500)_ 9.38746805214343664e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_501_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile501)_ 9.39372219474979286e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_502_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile502)_ 9.39995194502398455e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_503_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile503)_ 9.40613284563563898e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_504_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile504)_ 9.41226479887109779e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_505_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile505)_ 9.41834770707586887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_506_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile506)_ 9.42438147215052952e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_507_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile507)_ 9.43036599616594445e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_508_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile508)_ 9.43630118074663578e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_509_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile509)_ 9.44218692738736480e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_510_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile510)_ 9.44802313756498875e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_511_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile511)_ 9.45380971243850975e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_512_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile512)_ 9.45954655311041434e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_513_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile513)_ 9.46523356040123408e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_514_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile514)_ 9.47087063511137597e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_515_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile515)_ 9.47645767766386489e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_516_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile516)_ 9.48199458857311786e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_517_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile517)_ 9.48748126793695634e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_518_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile518)_ 9.49291761581171935e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_519_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile519)_ 9.49830353208003242e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_520_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile520)_ 9.50363891643120524e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_521_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile521)_ 9.50892366826593810e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_522_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile522)_ 9.51415768709194115e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_523_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile523)_ 9.51934087203252371e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_524_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile524)_ 9.52447312201425665e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_525_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile525)_ 9.52955433589860838e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_526_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile526)_ 9.53458441231096882e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_527_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile527)_ 9.53956324979131007e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_528_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile528)_ 9.54449074650893375e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_529_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile529)_ 9.54936680073578507e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_530_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile530)_ 9.55419131031431425e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_531_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile531)_ 9.55896417297903873e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_532_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile532)_ 9.56368528629879776e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_533_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile533)_ 9.56835454782834459e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_534_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile534)_ 9.57297185463120391e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_535_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile535)_ 9.57753710383108317e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_536_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile536)_ 9.58205019226796538e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_537_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile537)_ 9.58651101666882152e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_538_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile538)_ 9.59091947351292662e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_539_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile539)_ 9.59527545916464240e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_540_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile540)_ 9.59957886970018263e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_541_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile541)_ 9.60382960104040791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_542_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile542)_ 9.60802754906514393e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_543_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile543)_ 9.61217260934364194e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_544_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile544)_ 9.61626467730609426e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_545_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile545)_ 9.62030364808871830e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_546_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile546)_ 9.62428941689832604e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_547_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile547)_ 9.62822187839512678e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_548_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile548)_ 9.63210092734637958e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_549_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile549)_ 9.63592645825943513e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_550_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile550)_ 9.63969836551564589e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_551_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile551)_ 9.64341654300166461e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_552_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile552)_ 9.64708088488190618e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_553_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile553)_ 9.65069128476555953e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_554_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile554)_ 9.65424763628604937e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_555_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile555)_ 9.65774983269278124e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_556_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile556)_ 9.66119776727684433e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_557_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile557)_ 9.66459133302048114e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_558_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile558)_ 9.66793042273164649e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_559_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile559)_ 9.67121492892581043e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_560_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile560)_ 9.67444474403891808e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_561_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile561)_ 9.67761976044616452e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_562_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile562)_ 9.68073987007013470e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_563_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile563)_ 9.68380496482853202e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_564_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile564)_ 9.68681493622220412e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_565_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile565)_ 9.68976967597999506e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_566_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile566)_ 9.69266907519557470e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_567_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile567)_ 9.69551302493310008e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_568_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile568)_ 9.69830141626603325e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_569_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile569)_ 9.70103413972530845e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_570_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile570)_ 9.70371108586787906e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_571_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile571)_ 9.70633214507904754e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_572_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile572)_ 9.70889720737364015e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_573_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile573)_ 9.71140616282862440e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_574_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile574)_ 9.71385890098922997e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_575_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile575)_ 9.71625531149970800e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_576_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile576)_ 9.71859528370671612e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_577_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile577)_ 9.72087870679626438e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_578_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile578)_ 9.72310546965326518e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_579_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile579)_ 9.72527546109818765e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_580_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile580)_ 9.72738856960739945e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_581_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile581)_ 9.72944468374942195e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_582_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile582)_ 9.73144369144650183e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_583_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile583)_ 9.73338548084966629e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_584_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile584)_ 9.73526993973941601e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_585_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile585)_ 9.73709695556325416e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_586_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile586)_ 9.73886641591435211e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_587_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile587)_ 9.74057820788973294e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_588_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile588)_ 9.74223221850877528e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_589_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile589)_ 9.74382833451120298e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_590_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile590)_ 9.74536644253607733e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_591_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile591)_ 9.74684642901993935e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_592_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile592)_ 9.74826818021525335e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_593_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile593)_ 9.74963158214838671e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_594_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile594)_ 9.75093652053686880e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_595_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile595)_ 9.75218288105018927e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_596_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile596)_ 9.75337054920760380e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_597_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile597)_ 9.75449941007229364e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_598_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile598)_ 9.75556934881689590e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_599_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile599)_ 9.75658025019476849e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_600_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile600)_ 9.75753199898482179e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_601_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile601)_ 9.75842447939993286e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_602_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile602)_ 9.75925757594007202e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_603_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile603)_ 9.76003117251479646e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_604_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile604)_ 9.76074515301186135e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_605_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile605)_ 9.76139940111210407e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_606_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile606)_ 9.76199380026703152e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_607_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile607)_ 9.76252823371729674e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_608_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile608)_ 9.76300258455242362e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_609_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile609)_ 9.76341673566799920e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_610_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile610)_ 9.76377056972265768e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_611_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile611)_ 9.76406396928026880e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_612_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile612)_ 9.76429681649890364e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_613_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile613)_ 9.76446899362383956e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_614_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile614)_ 9.76458038242845362e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_615_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile615)_ 9.76463086477017371e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_616_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile616)_ 9.76462032205070544e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_617_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile617)_ 9.76454863558646156e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_618_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile618)_ 9.76441568662806889e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_619_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile619)_ 9.76422135606757821e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_620_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile620)_ 9.76396552456056631e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_621_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile621)_ 9.76364807281623198e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_622_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile622)_ 9.76326888109512944e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_623_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile623)_ 9.76282782970799672e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_624_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile624)_ 9.76232479838636848e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_625_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile625)_ 9.76175966724362153e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_626_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile626)_ 9.76113231570473194e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_627_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile627)_ 9.76044262317444025e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_628_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile628)_ 9.75969046897306840e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_629_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile629)_ 9.75887573220858215e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_630_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile630)_ 9.75799829156303797e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_631_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile631)_ 9.75705802588133775e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_632_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile632)_ 9.75605481366301729e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_633_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile633)_ 9.75498853316520732e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_634_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile634)_ 9.75385906242135295e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_635_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile635)_ 9.75266627955792380e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_636_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile636)_ 9.75141006226170649e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_637_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile637)_ 9.75009028809587473e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_638_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile638)_ 9.74870683460504761e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_639_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile639)_ 9.74725957895073054e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_640_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile640)_ 9.74574839803628648e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_641_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile641)_ 9.74417316906182711e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_642_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile642)_ 9.74253376849459896e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_643_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile643)_ 9.74083007298767213e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_644_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile644)_ 9.73906195879889469e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_645_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile645)_ 9.73722930230477152e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_646_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile646)_ 9.73533197933092696e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_647_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile647)_ 9.73336986588254835e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_648_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile648)_ 9.73134283768996994e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_649_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile649)_ 9.72925077009731583e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_650_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile650)_ 9.72709353871038275e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_651_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile651)_ 9.72487101848404367e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_652_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile652)_ 9.72258308474036742e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_653_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile653)_ 9.72022961216687659e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_654_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile654)_ 9.71781047557558272e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_655_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile655)_ 9.71532554955288792e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_656_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile656)_ 9.71277470850076367e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_657_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile657)_ 9.71015782674414414e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_658_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile658)_ 9.70747477835357669e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_659_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile659)_ 9.70472543731840283e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_660_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile660)_ 9.70190967756719667e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_661_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile661)_ 9.69902737278976503e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_662_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile662)_ 9.69607839632379530e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_663_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile663)_ 9.69306262188179661e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_664_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile664)_ 9.68997992259951722e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_665_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile665)_ 9.68683017167453267e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_666_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile666)_ 9.68361324221001310e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_667_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile667)_ 9.68032900692341290e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_668_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile668)_ 9.67697733865559989e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_669_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile669)_ 9.67355811014734140e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_670_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile670)_ 9.67007119385844896e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_671_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile671)_ 9.66651646212149211e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_672_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile672)_ 9.66289378740911760e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_673_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile673)_ 9.65920304188444545e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_674_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile674)_ 9.65544409753270154e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_675_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile675)_ 9.65161682642942664e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_676_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile676)_ 9.64772110035608949e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_677_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile677)_ 9.64375679118137374e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_678_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile678)_ 9.63972377058883341e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_679_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile679)_ 9.63562191011975953e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_680_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile680)_ 9.63145108137562073e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_681_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile681)_ 9.62721115576694805e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_682_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile682)_ 9.62290200471605309e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_683_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile683)_ 9.61852349929043574e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_684_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile684)_ 9.61407551093123106e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_685_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile685)_ 9.60955791072158790e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_686_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile686)_ 9.60497056972710664e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_687_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile687)_ 9.60031335897161206e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_688_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile688)_ 9.59558614950486305e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_689_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile689)_ 9.59078881212473318e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_690_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile690)_ 9.58592121788264147e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_691_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile691)_ 9.58098323748250887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_692_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile692)_ 9.57597474187987102e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_693_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile693)_ 9.57089560177173428e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_694_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile694)_ 9.56574568798900481e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_695_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile695)_ 9.56052487124006180e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_696_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile696)_ 9.55523302231886876e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_697_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile697)_ 9.54987001201103823e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_698_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile698)_ 9.54443571102237681e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_699_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile699)_ 9.53892999009452007e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_700_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile700)_ 9.53335271995713572e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_701_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile701)_ 9.52770377146813438e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_702_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile702)_ 9.52198301554292408e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_703_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile703)_ 9.51619032287009427e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_704_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile704)_ 9.51032556435844195e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_705_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile705)_ 9.50438861111414617e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_706_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile706)_ 9.49837933394221887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_707_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile707)_ 9.49229760403346584e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_708_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile708)_ 9.48614329251356962e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_709_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile709)_ 9.47991627063270170e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_710_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile710)_ 9.47361640969375529e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_711_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile711)_ 9.46724358105182837e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_712_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile712)_ 9.46079765616172907e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_713_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile713)_ 9.45427850681872066e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_714_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile714)_ 9.44768600470220418e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_715_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile715)_ 9.44102002161542782e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_716_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile716)_ 9.43428042972774793e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_717_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile717)_ 9.42746710121317687e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_718_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile718)_ 9.42057990824940288e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_719_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile719)_ 9.41361872345525784e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_720_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile720)_ 9.40658341955232305e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_721_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile721)_ 9.39947386941382933e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_722_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile722)_ 9.39228994618763677e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_723_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile723)_ 9.38503152312614858e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_724_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile724)_ 9.37769847370931685e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_725_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile725)_ 9.37029067191698373e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_726_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile726)_ 9.36280799161563933e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_727_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile727)_ 9.35525030719954256e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_728_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile728)_ 9.34761749319848109e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_729_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile729)_ 9.33990942462588694e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_730_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile730)_ 9.33212597646021318e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_731_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile731)_ 9.32426702434189028e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_732_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile732)_ 9.31633244412937052e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_733_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile733)_ 9.30832211187547671e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_734_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile734)_ 9.30023590433024655e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_735_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile735)_ 9.29207369816798141e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_736_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile736)_ 9.28383537094281883e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_737_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile737)_ 9.27552080039024777e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_738_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile738)_ 9.26712986458001070e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_739_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile739)_ 9.25866244207082523e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_740_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile740)_ 9.25011841206714591e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_741_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile741)_ 9.24149765406888542e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_742_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile742)_ 9.23280004817985528e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_743_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile743)_ 9.22402547506232483e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_744_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile744)_ 9.21517381566057912e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_745_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile745)_ 9.20624495171655510e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_746_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile746)_ 9.19723876554625827e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_747_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile747)_ 9.18815513989069271e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_748_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile748)_ 9.17899395838477766e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_749_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile749)_ 9.16975510497110291e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_750_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile750)_ 9.16043846468098978e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_751_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile751)_ 9.15104392281392877e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_752_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile752)_ 9.14157136569563461e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_753_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile753)_ 9.13202068008830796e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_754_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile754)_ 9.12239175374458290e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_755_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile755)_ 9.11268447533944599e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_756_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile756)_ 9.10289873403329584e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_757_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile757)_ 9.09303441992491066e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_758_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile758)_ 9.08309142406166399e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_759_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile759)_ 9.07306963842350114e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_760_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile760)_ 9.06296895582719454e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_761_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile761)_ 9.05278927009516184e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_762_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile762)_ 9.04253047606677976e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_763_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile763)_ 9.03219246944974956e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_764_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile764)_ 9.02177514720466263e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_765_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile765)_ 9.01127840726442461e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_766_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile766)_ 9.00070214870683609e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_767_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile767)_ 8.99004627176801935e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_768_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile768)_ 8.97931067793709264e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_769_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile769)_ 8.96849526988983785e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_770_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile770)_ 8.95759995142147991e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_771_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile771)_ 8.94662462786823855e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_772_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile772)_ 8.93556920585328145e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_773_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile773)_ 8.92443359341178397e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_774_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile774)_ 8.91321769976173919e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_775_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile775)_ 8.90192143597772455e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_776_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile776)_ 8.89054471424312147e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_777_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile777)_ 8.87908744871958831e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_778_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile778)_ 8.86754955493562064e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_779_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile779)_ 8.85593095013675197e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_780_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile780)_ 8.84423155314067837e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_781_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile781)_ 8.83245128485906326e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_782_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile782)_ 8.82059006765403310e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_783_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile783)_ 8.80864782600127537e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_784_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile784)_ 8.79662448609644897e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_785_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile785)_ 8.78451997641261674e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_786_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile786)_ 8.77233422705305660e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_787_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile787)_ 8.76006717056517642e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_788_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile788)_ 8.74771874146253528e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_789_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile789)_ 8.73528887650726164e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_790_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile790)_ 8.72277751479744526e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_791_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile791)_ 8.71018459777027007e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_792_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile792)_ 8.69751006923396783e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_793_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile793)_ 8.68475387548660153e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_794_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile794)_ 8.67191596552323134e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_795_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile795)_ 8.65899629084225173e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_796_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile796)_ 8.64599480553833628e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_797_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile797)_ 8.63291146680330267e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_798_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile798)_ 8.61974623441661390e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_799_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile799)_ 8.60649907116158713e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_800_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile800)_ 8.59316994313137281e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_801_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile801)_ 8.57975881913077693e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_802_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile802)_ 8.56626567148029670e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_803_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile803)_ 8.55269047565378887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_804_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile804)_ 8.53903321053136287e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_805_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile805)_ 8.52529385856767678e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_806_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile806)_ 8.51147240575505191e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_807_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile807)_ 8.49756884203340876e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_808_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile808)_ 8.48358316063088994e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_809_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile809)_ 8.46951535928247394e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_810_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile810)_ 8.45536543918434108e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_811_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile811)_ 8.44113340604122665e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_812_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile812)_ 8.42681926989210725e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_813_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile813)_ 8.41242304475134720e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_814_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile814)_ 8.39794474967281955e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_815_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile815)_ 8.38338440794215815e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_816_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile816)_ 8.36874204784536328e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_817_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile817)_ 8.35401770231631452e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_818_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile818)_ 8.33921140977778204e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_819_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile819)_ 8.32432321339356650e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_820_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile820)_ 8.30935316210184953e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_821_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile821)_ 8.29430130989873733e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_822_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile822)_ 8.27916771675836147e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_823_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile823)_ 8.26395244838383329e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_824_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile824)_ 8.24865557654867569e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_825_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile825)_ 8.23327717906794342e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_826_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile826)_ 8.21781734014697708e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_827_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile827)_ 8.20227615061033984e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_828_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile828)_ 8.18665370772357105e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_829_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile829)_ 8.17095011612375445e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_830_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile830)_ 8.15516548701500366e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_831_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile831)_ 8.13929993942685316e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_832_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile832)_ 8.12335359960475976e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_833_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile833)_ 8.10732660180456255e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_834_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile834)_ 8.09121908774728012e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_835_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile835)_ 8.07503120823185178e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_836_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile836)_ 8.05876312166273201e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_837_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile837)_ 8.04241499551279840e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_838_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile838)_ 8.02598700627925495e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_839_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile839)_ 8.00947933976669385e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_840_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile840)_ 7.99289219085005075e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_841_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile841)_ 7.97622576465113579e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_842_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile842)_ 7.95948027598507475e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_843_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile843)_ 7.94265595038920469e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_844_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile844)_ 7.92575302377414304e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_845_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile845)_ 7.90877174343766927e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_846_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile846)_ 7.89171236735661252e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_847_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile847)_ 7.87457516578448334e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_848_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile848)_ 7.85736042085757869e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_849_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile849)_ 7.84006842683655780e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_850_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile850)_ 7.82269949096416062e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_851_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile851)_ 7.80525393345493992e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_852_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile852)_ 7.78773208833939516e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_853_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile853)_ 7.77013430319408067e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_854_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile854)_ 7.75246094034582126e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_855_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile855)_ 7.73471237672003833e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_856_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile856)_ 7.71688900458682853e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_857_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile857)_ 7.69899123197509503e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_858_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile858)_ 7.68101948292119422e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_859_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile859)_ 7.66297419852775274e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_860_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile860)_ 7.64485583674564401e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_861_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile861)_ 7.62666487384285052e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_862_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile862)_ 7.60840180367690962e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_863_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile863)_ 7.59006713964868220e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_864_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile864)_ 7.57166141449012314e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_865_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile865)_ 7.55318518104811359e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_866_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile866)_ 7.53463901258316290e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_867_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile867)_ 7.51602350422598230e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_868_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile868)_ 7.49733927287649614e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_869_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile869)_ 7.47858695840531752e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_870_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile870)_ 7.45976722433565505e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_871_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile871)_ 7.44088075806534008e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_872_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile872)_ 7.42192827237583667e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_873_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile873)_ 7.40291050576065771e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_874_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile874)_ 7.38382822372020582e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_875_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile875)_ 7.36468221867742166e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_876_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile876)_ 7.34547331238174367e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_877_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile877)_ 7.32620235541840258e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_878_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile878)_ 7.30687022899061209e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_879_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile879)_ 7.28747784561324836e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_880_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile880)_ 7.26802615046269473e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_881_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile881)_ 7.24851612211239744e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_882_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile882)_ 7.22894877385417411e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_883_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile883)_ 7.20932515455229364e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_884_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile884)_ 7.18964635062637088e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_885_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile885)_ 7.16991348642485697e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_886_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile886)_ 7.15012772591753533e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_887_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile887)_ 7.13029027458012520e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_888_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile888)_ 7.11040237953113313e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_889_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile889)_ 7.09046533220735863e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_890_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile890)_ 7.07048046949199527e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_891_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile891)_ 7.05044917529897702e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_892_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile892)_ 7.03037288199363872e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_893_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile893)_ 7.01025307235876496e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_894_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile894)_ 6.99009128176233171e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_895_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile895)_ 6.96988909937288140e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_896_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile896)_ 6.94964817008118362e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_897_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile897)_ 6.92937019738906583e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_898_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile898)_ 6.90905694474352843e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_899_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile899)_ 6.88871023819608713e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_900_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile900)_ 6.86833196793659555e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_901_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile901)_ 6.84792409210825508e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_902_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile902)_ 6.82748863815806680e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_903_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile903)_ 6.80702770557286771e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_904_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile904)_ 6.78654346937662949e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_905_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile905)_ 6.76603818195458968e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_906_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile906)_ 6.74551417758419061e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_907_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile907)_ 6.72497387349830708e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_908_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile908)_ 6.70441977546787794e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_909_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile909)_ 6.68385447931936667e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_910_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile910)_ 6.66328067595571560e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_911_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile911)_ 6.64270115452165154e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_912_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile912)_ 6.62211880639849548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_913_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile913)_ 6.60153662996482409e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_914_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile914)_ 6.58095773415662277e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_915_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile915)_ 6.56038534395527850e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_916_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile916)_ 6.53982280493979433e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_917_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile917)_ 6.51927358862210236e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_918_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile918)_ 6.49874129731205577e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_919_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile919)_ 6.47822967131741340e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_920_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile920)_ 6.45774259327403996e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_921_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile921)_ 6.43728409583268438e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_922_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile922)_ 6.41685836873341197e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_923_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile923)_ 6.39646976448205069e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_924_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile924)_ 6.37612280798690971e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_925_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile925)_ 6.35582220357358996e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_926_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile926)_ 6.33557284424433355e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_927_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile927)_ 6.31537982068751738e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_928_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile928)_ 6.29524843157946035e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_929_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile929)_ 6.27518419396644322e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_930_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile930)_ 6.25519285487470284e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_931_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile931)_ 6.23528040343224264e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_932_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile932)_ 6.21545308476378899e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_933_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile933)_ 6.19571741256385623e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_934_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile934)_ 6.17608018668406970e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_935_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile935)_ 6.15654850765758044e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_936_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile936)_ 6.13712979657998065e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_937_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile937)_ 6.11783181325281644e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_938_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile938)_ 6.09866267886981315e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_939_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile939)_ 6.07963089893978625e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_940_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile940)_ 6.06074538892880776e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_941_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile941)_ 6.04201550281321335e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_942_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile942)_ 6.02345106531904963e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_943_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile943)_ 6.00506240513113288e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_944_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile944)_ 5.98686039551479202e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_945_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile945)_ 5.96885649670387142e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_946_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile946)_ 5.95106280551902997e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_947_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile947)_ 5.93349211001526974e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_948_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile948)_ 5.91615795349025638e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_949_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile949)_ 5.89907470521195895e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_950_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile950)_ 5.88225764439693176e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_951_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile951)_ 5.86572305513776218e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_952_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile952)_ 5.84948833912093003e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_953_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile953)_ 5.83357214705838845e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_954_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile954)_ 5.81799453522872760e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_955_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile955)_ 5.80277715334077612e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_956_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile956)_ 5.78794347289759373e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_957_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile957)_ 5.77351906517993736e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_958_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile958)_ 5.75953195092850870e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_959_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile959)_ 5.74601303865866515e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_960_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile960)_ 5.73299669162353424e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_961_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile961)_ 5.72052146996936562e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_962_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile962)_ 5.70863113066433572e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_963_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile963)_ 5.69737601035167143e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_964_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile964)_ 5.68681500658311211e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_965_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile965)_ 5.67701853665676485e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_966_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile966)_ 5.66807320776176616e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_967_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile967)_ 5.66008972057058333e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_968_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile968)_ 5.65321765267813060e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_969_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile969)_ 5.64767753464371323e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_970_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile970)_ 5.64385115529397914e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_971_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile971)_ 5.64283530543701044e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_972_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile972)_ 5.55254455627292656e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_973_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile973)_ 5.46056888274562471e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_974_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile974)_ 5.36682150766862581e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_975_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile975)_ 5.27120775110736638e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_976_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile976)_ 5.17362398111501955e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_977_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile977)_ 5.07395637656677008e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_978_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile978)_ 4.97207946326415524e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_979_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile979)_ 4.86785436517277615e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_980_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile980)_ 4.76112670464820878e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_981_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile981)_ 4.65172405813457212e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_982_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile982)_ 4.53945284763436398e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_983_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile983)_ 4.42409450855353863e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_984_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile984)_ 4.30540071237971514e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_985_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile985)_ 4.18308734917534775e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_986_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile986)_ 4.05682684365834233e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_987_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile987)_ 3.92623821136884807e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_988_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile988)_ 3.79087397860234298e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_989_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile989)_ 3.65020266812198088e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_990_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile990)_ 3.50358486019502991e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_991_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile991)_ 3.35023968926869385e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_992_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile992)_ 3.18919664193893565e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_993_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile993)_ 3.01922390649918054e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_994_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile994)_ 2.83871761503057480e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_995_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile995)_ 2.64552220092530675e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_996_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile996)_ 2.43662090509217354e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_997_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile997)_ 2.20755911646520640e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_998_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile998)_ 1.95124922985695222e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_999_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile999)_ 1.65507967857954287e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_1000____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1000)_ 1.29192151352597252e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_1001____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1001)_ 7.72456675382621823e-04 +Volume_averaged_triton_isotropic_toroidal_Larmor_radius_(m)______________ (radius_plasma_triton_toroidal_larmor_isotropic_vol_avg)_ 7.98178636675054426e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_0_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile0)_ 4.72652874303060723e-04 +Plasma_triton_isotropic_Larmor_radius_at_point_1_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1)_ 7.91689603514136820e-04 +Plasma_triton_isotropic_Larmor_radius_at_point_2_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile2)_ 1.01575281019454619e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_3_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile3)_ 1.19931112575048467e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_4_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile4)_ 1.35888007268964253e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_5_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile5)_ 1.50212509561190315e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_6_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile6)_ 1.63334743332052318e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_7_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile7)_ 1.75524629741726705e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_8_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile8)_ 1.86964686245665187e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_9_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile9)_ 1.97785128971770651e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_10________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile10)_ 2.08082699192518351e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_11________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile11)_ 2.17931584158977858e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_12________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile12)_ 2.27390145652395237e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_13________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile13)_ 2.36505269852110411e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_14________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile14)_ 2.45315291913731108e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_15________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile15)_ 2.53852027217093840e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_16________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile16)_ 2.62142222053165933e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_17________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile17)_ 2.70208614043420401e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_18________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile18)_ 2.78070723693577210e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_19________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile19)_ 2.85745455660426544e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_20________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile20)_ 2.93247563295915333e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_21________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile21)_ 3.00590011944028073e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_22________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile22)_ 3.07784267331305105e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_23________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile23)_ 3.14840526731682314e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_24________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile24)_ 3.21767906240459471e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_25________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile25)_ 3.28574594211296324e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_26________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile26)_ 3.35267977540165988e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_27________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile27)_ 3.41854746875792535e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_28________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile28)_ 3.48340984756798869e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_29________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile29)_ 3.54732239715316137e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_30________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile30)_ 3.61033589509478312e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_31________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile31)_ 3.61632209435404275e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_32________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile32)_ 3.62411915444324799e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_33________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile33)_ 3.63303022369866353e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_34________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile34)_ 3.64281447877524934e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_35________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile35)_ 3.65333359472704098e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_36________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile36)_ 3.66449421721317314e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_37________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile37)_ 3.67622755970263212e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_38________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile38)_ 3.68848001911792562e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_39________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile39)_ 3.70120816289259058e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_40________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile40)_ 3.71437577468258047e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_41________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile41)_ 3.72795198418157279e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_42________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile42)_ 3.74191001679378661e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_43________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile43)_ 3.75622632328684054e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_44________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile44)_ 3.77087995145301618e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_45________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile45)_ 3.78585207918242031e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_46________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile46)_ 3.80112566119789660e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_47________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile47)_ 3.81668515284601427e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_48________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile48)_ 3.83251629434521639e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_49________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile49)_ 3.84860593601882989e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_50________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile50)_ 3.86494189620919474e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_51________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile51)_ 3.88151284648368278e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_52________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile52)_ 3.89830821322200219e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_53________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile53)_ 3.91531809715023847e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_54________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile54)_ 3.93253320375063897e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_55________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile55)_ 3.94994478469397683e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_56________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile56)_ 3.96754458713161322e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_57________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile57)_ 3.98532480933709576e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_58________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile58)_ 4.00327806241837763e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_59________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile59)_ 4.02139733655097493e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_60________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile60)_ 4.03967597155958404e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_61________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile61)_ 4.05810763002764988e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_62________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile62)_ 4.07668627413270302e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_63________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile63)_ 4.09540614444265597e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_64________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile64)_ 4.11426174061797854e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_65________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile65)_ 4.13324780525213976e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_66________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile66)_ 4.15235930733397554e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_67________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile67)_ 4.17159142906583982e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_68________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile68)_ 4.19093955243578144e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_69________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile69)_ 4.21039924745397493e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_70________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile70)_ 4.22996626184619830e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_71________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile71)_ 4.24963651105970171e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_72________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile72)_ 4.26940606886695023e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_73________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile73)_ 4.28927115907901373e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_74________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile74)_ 4.30922814760941689e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_75________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile75)_ 4.32927353558614034e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_76________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile76)_ 4.34940395206085025e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_77________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile77)_ 4.36961614854776848e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_78________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile78)_ 4.38990699218105070e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_79________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile79)_ 4.41027346069401173e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_80________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile80)_ 4.43071263749286130e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_81________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile81)_ 4.45122170700964527e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_82________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile82)_ 4.47179794855422693e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_83________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile83)_ 4.49243873478961421e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_84________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile84)_ 4.51314152504150509e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_85________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile85)_ 4.53390386367197046e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_86________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile86)_ 4.55472337462946384e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_87________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile87)_ 4.57559775976000126e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_88________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile88)_ 4.59652479444132029e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_89________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile89)_ 4.61750232488608928e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_90________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile90)_ 4.63852826579040905e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_91________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile91)_ 4.65960059672095289e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_92________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile92)_ 4.68071736001621306e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_93________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile93)_ 4.70187665880282893e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_94________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile94)_ 4.72307665371375467e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_95________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile95)_ 4.74431556123788064e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_96________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile96)_ 4.76559165134524381e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_97________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile97)_ 4.78690324610919066e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_98________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile98)_ 4.80824871651334106e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_99________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile99)_ 4.82962648178847809e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_100_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile100)_ 4.85103500762847691e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_101_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile101)_ 4.87247280378268373e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_102_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile102)_ 4.89393842237592289e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_103_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile103)_ 4.91543045767603611e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_104_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile104)_ 4.93694754341418227e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_105_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile105)_ 4.95848835156117301e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_106_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile106)_ 4.98005159120819621e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_107_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile107)_ 5.00163600750761113e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_108_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile108)_ 5.02324038003462876e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_109_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile109)_ 5.04486352159895339e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_110_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile110)_ 5.06650427749869882e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_111_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile111)_ 5.08816152385725522e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_112_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile112)_ 5.10983416733451663e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_113_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile113)_ 5.13152114324644769e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_114_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile114)_ 5.15322141526525397e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_115_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile115)_ 5.17493397433074417e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_116_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile116)_ 5.19665783762089314e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_117_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile117)_ 5.21839204783043457e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_118_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile118)_ 5.24013567208779941e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_119_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile119)_ 5.26188780159377641e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_120_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile120)_ 5.28364755048173554e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_121_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile121)_ 5.30541405519075436e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_122_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile122)_ 5.32718647401407997e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_123_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile123)_ 5.34896398595793594e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_124_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile124)_ 5.37074579047825372e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_125_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile125)_ 5.39253110648739691e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_126_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile126)_ 5.41431917235507109e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_127_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile127)_ 5.43610924424315235e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_128_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile128)_ 5.45790059690056360e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_129_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile129)_ 5.47969252201927111e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_130_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile130)_ 5.50148432798821304e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_131_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile131)_ 5.52327533989439498e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_132_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile132)_ 5.54506489819800354e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_133_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile133)_ 5.56685235923359487e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_134_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile134)_ 5.58863709370334850e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_135_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile135)_ 5.61041848687081346e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_136_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile136)_ 5.63219593823531452e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_137_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile137)_ 5.65396886045591105e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_138_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile138)_ 5.67573667976070586e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_139_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile139)_ 5.69749883504440391e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_140_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile140)_ 5.71925477769104351e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_141_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile141)_ 5.74100397080832409e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_142_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile142)_ 5.76274588977338225e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_143_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile143)_ 5.78448002080723771e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_144_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile144)_ 5.80620586149124904e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_145_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile145)_ 5.82792292014299839e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_146_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile146)_ 5.84963071527937715e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_147_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile147)_ 5.87132877578983286e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_148_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile148)_ 5.89301664029128532e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_149_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile149)_ 5.91469385684185653e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_150_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile150)_ 5.93635998324118508e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_151_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile151)_ 5.95801458554768432e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_152_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile152)_ 5.97965723924190080e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_153_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile153)_ 6.00128752833369028e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_154_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile154)_ 6.02290504482730533e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_155_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile155)_ 6.04450938884696504e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_156_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile156)_ 6.06610016849378365e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_157_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile157)_ 6.08767699936088331e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_158_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile158)_ 6.10923950459006139e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_159_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile159)_ 6.13078731458565479e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_160_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile160)_ 6.15232006658026579e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_161_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile161)_ 6.17383740477648810e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_162_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile162)_ 6.19533897999483517e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_163_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile163)_ 6.21682444944009205e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_164_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile164)_ 6.23829347677365333e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_165_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile165)_ 6.25974573169534466e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_166_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile166)_ 6.28118088986969261e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_167_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile167)_ 6.30259863274104833e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_168_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile168)_ 6.32399864738903382e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_169_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile169)_ 6.34538062649886436e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_170_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile170)_ 6.36674426799588560e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_171_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile171)_ 6.38808927513313200e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_172_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile172)_ 6.40941535601909085e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_173_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile173)_ 6.43072222400776355e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_174_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile174)_ 6.45200959700707299e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_175_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile175)_ 6.47327719779736566e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_176_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile176)_ 6.49452475353190246e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_177_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile177)_ 6.51575199602022394e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_178_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile178)_ 6.53695866138121959e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_179_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile179)_ 6.55814448977390385e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_180_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile180)_ 6.57930922561041076e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_181_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile181)_ 6.60045261717898298e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_182_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile182)_ 6.62157441689555960e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_183_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile183)_ 6.64267438093012457e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_184_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile184)_ 6.66375226883700409e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_185_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile185)_ 6.68480784424967719e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_186_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile186)_ 6.70584087396311392e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_187_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile187)_ 6.72685112851988468e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_188_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile188)_ 6.74783838144434218e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_189_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile189)_ 6.76880240982939436e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_190_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile190)_ 6.78974299353885848e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_191_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile191)_ 6.81065991633901437e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_192_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile192)_ 6.83155296408790007e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_193_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile193)_ 6.85242192623100946e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_194_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile194)_ 6.87326659457652631e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_195_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile195)_ 6.89408676435315261e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_196_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile196)_ 6.91488223291868327e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_197_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile197)_ 6.93565280074545307e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_198_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile198)_ 6.95639827053038881e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_199_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile199)_ 6.97711844789099950e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_200_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile200)_ 6.99781314040817930e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_201_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile201)_ 7.01848215864488492e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_202_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile202)_ 7.03912531519175488e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_203_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile203)_ 7.05974242471981567e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_204_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile204)_ 7.08033330471035012e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_205_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile205)_ 7.10089777436393160e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_206_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile206)_ 7.12143565518917436e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_207_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile207)_ 7.14194677062852425e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_208_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile208)_ 7.16243094621916467e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_209_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile209)_ 7.18288800985939554e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_210_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile210)_ 7.20331779044549279e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_211_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile211)_ 7.22372011987652482e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_212_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile212)_ 7.24409483098512053e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_213_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile213)_ 7.26444175883316813e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_214_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile214)_ 7.28476074013188757e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_215_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile215)_ 7.30505161333463039e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_216_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile216)_ 7.32531421834272355e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_217_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile217)_ 7.34554839716136838e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_218_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile218)_ 7.36575399279806343e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_219_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile219)_ 7.38593085027024979e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_220_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile220)_ 7.40607881568208174e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_221_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile221)_ 7.42619773702011491e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_222_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile222)_ 7.44628746354742462e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_223_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile223)_ 7.46634784575988999e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_224_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile224)_ 7.48637873579589309e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_225_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile225)_ 7.50637998686902626e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_226_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile226)_ 7.52635145364336042e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_227_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile227)_ 7.54629299208552096e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_228_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile228)_ 7.56620445921375208e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_229_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile229)_ 7.58608571343797472e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_230_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile230)_ 7.60593661444777542e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_231_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile231)_ 7.62575702268604438e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_232_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile232)_ 7.64554680003559205e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_233_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile233)_ 7.66530580953504910e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_234_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile234)_ 7.68503391499308647e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_235_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile235)_ 7.70473098139764709e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_236_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile236)_ 7.72439687494425736e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_237_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile237)_ 7.74403146258266506e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_238_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile238)_ 7.76363461245979398e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_239_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile239)_ 7.78320619319280201e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_240_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile240)_ 7.80274607486168472e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_241_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile241)_ 7.82225412828266471e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_242_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile242)_ 7.84173022490216101e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_243_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile243)_ 7.86117423751254638e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_244_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile244)_ 7.88058603932327052e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_245_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile245)_ 7.89996550430080262e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_246_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile246)_ 7.91931250781407504e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_247_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile247)_ 7.93862692519651733e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_248_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile248)_ 7.95790863314359102e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_249_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile249)_ 7.97715750882232316e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_250_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile250)_ 7.99637343038010241e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_251_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile251)_ 8.01555627622738999e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_252_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile252)_ 8.03470592575047764e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_253_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile253)_ 8.05382225896883117e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_254_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile254)_ 8.07290515680456414e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_255_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile255)_ 8.09195450013082233e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_256_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile256)_ 8.11097017122874159e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_257_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile257)_ 8.12995205242945766e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_258_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile258)_ 8.14890002685859580e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_259_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile259)_ 8.16781397826527381e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_260_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile260)_ 8.18669379085192224e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_261_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile261)_ 8.20553934954348571e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_262_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile262)_ 8.22435053954756294e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_263_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile263)_ 8.24312724675870315e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_264_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile264)_ 8.26186935752138904e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_265_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile265)_ 8.28057675876416911e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_266_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile266)_ 8.29924933762891774e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_267_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile267)_ 8.31788698210968007e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_268_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile268)_ 8.33648958041302915e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_269_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile269)_ 8.35505702105925410e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_270_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile270)_ 8.37358919341909917e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_271_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile271)_ 8.39208598697503520e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_272_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile272)_ 8.41054729152311900e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_273_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile273)_ 8.42897299764193940e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_274_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile274)_ 8.44736299598903249e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_275_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile275)_ 8.46571717760290048e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_276_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile276)_ 8.48403543417049558e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_277_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile277)_ 8.50231765732548106e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_278_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile278)_ 8.52056373938398122e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_279_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile279)_ 8.53877357287707514e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_280_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile280)_ 8.55694705061831387e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_281_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile281)_ 8.57508406580432397e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_282_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile282)_ 8.59318451194861568e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_283_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile283)_ 8.61124828288221608e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_284_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile284)_ 8.62927527258799607e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_285_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile285)_ 8.64726537553422471e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_286_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile286)_ 8.66521848627609462e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_287_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile287)_ 8.68313449975593489e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_288_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile288)_ 8.70101331127056017e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_289_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile289)_ 8.71885481600749232e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_290_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile290)_ 8.73665890994209347e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_291_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile291)_ 8.75442548857778037e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_292_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile292)_ 8.77215444850572984e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_293_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile293)_ 8.78984568578141182e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_294_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile294)_ 8.80749909718511921e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_295_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile295)_ 8.82511457929561864e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_296_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile296)_ 8.84269202915355032e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_297_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile297)_ 8.86023134419591449e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_298_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile298)_ 8.87773242139783952e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_299_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile299)_ 8.89519515859616729e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_300_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile300)_ 8.91261945339991146e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_301_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile301)_ 8.93000520378631202e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_302_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile302)_ 8.94735230780486362e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_303_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile303)_ 8.96466066380960380e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_304_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile304)_ 8.98193016986692863e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_305_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile305)_ 8.99916072481200986e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_306_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile306)_ 9.01635222709634872e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_307_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile307)_ 9.03350457558021493e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_308_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile308)_ 9.05061766933610255e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_309_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile309)_ 9.06769140738680930e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_310_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile310)_ 9.08472568874007201e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_311_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile311)_ 9.10172041281757244e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_312_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile312)_ 9.11867547912725840e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_313_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile313)_ 9.13559078700204238e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_314_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile314)_ 9.15246623612716095e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_315_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile315)_ 9.16930172621295905e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_316_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile316)_ 9.18609715716058386e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_317_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile317)_ 9.20285242870240786e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_318_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile318)_ 9.21956744096153608e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_319_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile319)_ 9.23624209396097830e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_320_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile320)_ 9.25287628775656006e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_321_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile321)_ 9.26946992256957175e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_322_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile322)_ 9.28602289855882945e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_323_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile323)_ 9.30253511644470177e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_324_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile324)_ 9.31900647606914712e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_325_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile325)_ 9.33543687839547519e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_326_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile326)_ 9.35182622361017783e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_327_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile327)_ 9.36817441220534619e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_328_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile328)_ 9.38448134504528755e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_329_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile329)_ 9.40074692245189761e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_330_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile330)_ 9.41697104535134562e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_331_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile331)_ 9.43315361409804466e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_332_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile332)_ 9.44929452975157812e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_333_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile333)_ 9.46539369290105848e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_334_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile334)_ 9.48145100432066720e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_335_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile335)_ 9.49746636477495111e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_336_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile336)_ 9.51343967524905139e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_337_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile337)_ 9.52937083629693156e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_338_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile338)_ 9.54525974889213966e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_339_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile339)_ 9.56110631380877388e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_340_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile340)_ 9.57691043204745088e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_341_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile341)_ 9.59267200418393792e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_342_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile342)_ 9.60839093125199876e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_343_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile343)_ 9.62406711402677938e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_344_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile344)_ 9.63970045345054725e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_345_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile345)_ 9.65529085011221019e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_346_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile346)_ 9.67083820493385392e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_347_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile347)_ 9.68634241874808885e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_348_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile348)_ 9.70180339229956279e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_349_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile349)_ 9.71722102637684673e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_350_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile350)_ 9.73259522158568917e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_351_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile351)_ 9.74792587877424191e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_352_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile352)_ 9.76321289851290672e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_353_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile353)_ 9.77845618151952298e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_354_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile354)_ 9.79365562830226098e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_355_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile355)_ 9.80881113964985132e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_356_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile356)_ 9.82392261585092290e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_357_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile357)_ 9.83898995754258973e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_358_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile358)_ 9.85401306515791033e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_359_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile359)_ 9.86899183922048014e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_360_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile360)_ 9.88392617988970677e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_361_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile361)_ 9.89881598764628078e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_362_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile362)_ 9.91366116273970262e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_363_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile363)_ 9.92846160525479894e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_364_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile364)_ 9.94321721553646613e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_365_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile365)_ 9.95792789370238476e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_366_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile366)_ 9.97259353964434665e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_367_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile367)_ 9.98721405342038043e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_368_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile368)_ 1.00017893349954503e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_369_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile369)_ 1.00163192843078872e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_370_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile370)_ 1.00308038009449037e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_371_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile371)_ 1.00452427848604208e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_372_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile372)_ 1.00596361356271400e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_373_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile373)_ 1.00739837528937906e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_374_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile374)_ 1.00882855359954206e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_375_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile375)_ 1.01025413845735289e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_376_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile376)_ 1.01167511978931691e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_377_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile377)_ 1.01309148753001826e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_378_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile378)_ 1.01450323160268783e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_379_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile379)_ 1.01591034190302836e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_380_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile380)_ 1.01731280837426812e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_381_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile381)_ 1.01871062087693729e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_382_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile382)_ 1.02010376929650235e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_383_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile383)_ 1.02149224354674984e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_384_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile384)_ 1.02287603346885685e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_385_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile385)_ 1.02425512893253266e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_386_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile386)_ 1.02562951978071373e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_387_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile387)_ 1.02699919587204945e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_388_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile388)_ 1.02836414703862417e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_389_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile389)_ 1.02972436308931149e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_390_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile390)_ 1.03107983384900879e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_391_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile391)_ 1.03243054912286521e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_392_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile392)_ 1.03377649869311316e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_393_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile393)_ 1.03511767235178465e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_394_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile394)_ 1.03645405987145001e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_395_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile395)_ 1.03778565101509488e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_396_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile396)_ 1.03911243554274495e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_397_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile397)_ 1.04043440317564285e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_398_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile398)_ 1.04175154366816358e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_399_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile399)_ 1.04306384672627969e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_400_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile400)_ 1.04437130205008825e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_401_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile401)_ 1.04567389935676849e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_402_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile402)_ 1.04697162832513777e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_403_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile403)_ 1.04826447862512596e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_404_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile404)_ 1.04955243991458873e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_405_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile405)_ 1.05083550184920001e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_406_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile406)_ 1.05211365408907492e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_407_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile407)_ 1.05338688623671465e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_408_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile408)_ 1.05465518792537457e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_409_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile409)_ 1.05591854873409493e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_410_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile410)_ 1.05717695827283655e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_411_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile411)_ 1.05843040612366400e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_412_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile412)_ 1.05967888184079831e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_413_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile413)_ 1.06092237497359895e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_414_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile414)_ 1.06216087507318910e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_415_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile415)_ 1.06339437167287890e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_416_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile416)_ 1.06462285427510704e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_417_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile417)_ 1.06584631239083159e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_418_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile418)_ 1.06706473550025761e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_419_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile419)_ 1.06827811308240327e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_420_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile420)_ 1.06948643459548066e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_421_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile421)_ 1.07068968950320732e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_422_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile422)_ 1.07188786723548153e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_423_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile423)_ 1.07308095718840826e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_424_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile424)_ 1.07426894880974771e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_425_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile425)_ 1.07545183146102591e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_426_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile426)_ 1.07662959454897927e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_427_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile427)_ 1.07780222741387949e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_428_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile428)_ 1.07896971940844993e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_429_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile429)_ 1.08013205989795531e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_430_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile430)_ 1.08128923818786374e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_431_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile431)_ 1.08244124358638401e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_432_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile432)_ 1.08358806537159329e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_433_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile433)_ 1.08472969284746645e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_434_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile434)_ 1.08586611529124105e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_435_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile435)_ 1.08699732190727233e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_436_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile436)_ 1.08812330196880296e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_437_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile437)_ 1.08924404467295420e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_438_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile438)_ 1.09035953923967976e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_439_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile439)_ 1.09146977485242210e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_440_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile440)_ 1.09257474069113913e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_441_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile441)_ 1.09367442589930267e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_442_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile442)_ 1.09476881965331514e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_443_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile443)_ 1.09585791103363472e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_444_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile444)_ 1.09694168920000737e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_445_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile445)_ 1.09802014322285865e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_446_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile446)_ 1.09909326218251158e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_447_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile447)_ 1.10016103514606507e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_448_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile448)_ 1.10122345117735897e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_449_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile449)_ 1.10228049930386120e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_450_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile450)_ 1.10333216852327234e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_451_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile451)_ 1.10437844785328410e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_452_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile452)_ 1.10541932628518916e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_453_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile453)_ 1.10645479278055001e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_454_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile454)_ 1.10748483627781981e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_455_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile455)_ 1.10850944573555165e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_456_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile456)_ 1.10952861005266454e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_457_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile457)_ 1.11054231814820548e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_458_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile458)_ 1.11155055889153032e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_459_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile459)_ 1.11255332116550441e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_460_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile460)_ 1.11355059380659656e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_461_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile461)_ 1.11454236565481091e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_462_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile462)_ 1.11552862553371979e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_463_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile463)_ 1.11650936223377413e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_464_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile464)_ 1.11748456455232244e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_465_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile465)_ 1.11845422123353529e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_466_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile466)_ 1.11941832104851032e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_467_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile467)_ 1.12037685271847189e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_468_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile468)_ 1.12132980494812663e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_469_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile469)_ 1.12227716645912027e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_470_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile470)_ 1.12321892588965154e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_471_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile471)_ 1.12415507192829816e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_472_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile472)_ 1.12508559321025953e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_473_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile473)_ 1.12601047835748768e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_474_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile474)_ 1.12692971597867977e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_475_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile475)_ 1.12784329467262179e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_476_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile476)_ 1.12875120299123256e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_477_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile477)_ 1.12965342949660034e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_478_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile478)_ 1.13054996271394672e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_479_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile479)_ 1.13144079118202168e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_480_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile480)_ 1.13232590335551782e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_481_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile481)_ 1.13320528776319276e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_482_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile482)_ 1.13407893282269738e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_483_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile483)_ 1.13494682699205422e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_484_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile484)_ 1.13580895869891639e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_485_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile485)_ 1.13666531634387322e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_486_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile486)_ 1.13751588830376324e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_487_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile487)_ 1.13836066294513948e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_488_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile488)_ 1.13919962862425363e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_489_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile489)_ 1.14003277367010873e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_490_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile490)_ 1.14086008637422857e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_491_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile491)_ 1.14168155504477918e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_492_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile492)_ 1.14249716794897517e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_493_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile493)_ 1.14330691331635814e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_494_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile494)_ 1.14411077940319642e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_495_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile495)_ 1.14490875441443391e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_496_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile496)_ 1.14570082655112582e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_497_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile497)_ 1.14648698396961016e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_498_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile498)_ 1.14726721481200195e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_499_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile499)_ 1.14804150724022013e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_500_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile500)_ 1.14880984935082937e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_501_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile501)_ 1.14957521234173594e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_502_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile502)_ 1.15033759025470056e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_503_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile503)_ 1.15109399004486388e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_504_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile504)_ 1.15184439978255181e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_505_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile505)_ 1.15258880747227520e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_506_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile506)_ 1.15332720113806974e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_507_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile507)_ 1.15405956878931130e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_508_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile508)_ 1.15478589838981550e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_509_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile509)_ 1.15550617789882994e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_510_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile510)_ 1.15622039522296337e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_511_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile511)_ 1.15692853829499256e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_512_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile512)_ 1.15763059500864074e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_513_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile513)_ 1.15832655321498994e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_514_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile514)_ 1.15901640078083755e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_515_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile515)_ 1.15970012553362756e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_516_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile516)_ 1.16037771527163890e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_517_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile517)_ 1.16104915778111432e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_518_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile518)_ 1.16171444083620640e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_519_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile519)_ 1.16237355218509770e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_520_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile520)_ 1.16302647954643467e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_521_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile521)_ 1.16367321060573767e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_522_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile522)_ 1.16431373308798578e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_523_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile523)_ 1.16494803460179472e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_524_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile524)_ 1.16557610282971309e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_525_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile525)_ 1.16619792536534917e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_526_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile526)_ 1.16681348981374899e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_527_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile527)_ 1.16742278373926974e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_528_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile528)_ 1.16802579471411046e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_529_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile529)_ 1.16862251025912911e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_530_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile530)_ 1.16921291788194635e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_531_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile531)_ 1.16979700507338288e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_532_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile532)_ 1.17037475930736844e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_533_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile533)_ 1.17094616799892880e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_534_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile534)_ 1.17151121861229848e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_535_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile535)_ 1.17206989852113967e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_536_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile536)_ 1.17262219511319477e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_537_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile537)_ 1.17316809575527085e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_538_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile538)_ 1.17370758775804541e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_539_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile539)_ 1.17424065845654676e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_540_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile540)_ 1.17476729512589837e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_541_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile541)_ 1.17528748504433390e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_542_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile542)_ 1.17580121545094035e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_543_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile543)_ 1.17630847356307265e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_544_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile544)_ 1.17680924659737795e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_545_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile545)_ 1.17730352171682862e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_546_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile546)_ 1.17779128609402338e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_547_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile547)_ 1.17827252684403090e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_548_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile548)_ 1.17874723109839888e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_549_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile549)_ 1.17921538592019523e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_550_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile550)_ 1.17967697838873512e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_551_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile551)_ 1.18013199555349318e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_552_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile552)_ 1.18058042442682493e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_553_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile553)_ 1.18102225198731224e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_554_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile554)_ 1.18145746522937221e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_555_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile555)_ 1.18188605110987419e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_556_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile556)_ 1.18230799654079587e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_557_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile557)_ 1.18272328842464469e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_558_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile558)_ 1.18313191364365442e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_559_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile559)_ 1.18353385908466502e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_560_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile560)_ 1.18392911153176929e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_561_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile561)_ 1.18431765784840996e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_562_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile562)_ 1.18469948478773304e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_563_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile563)_ 1.18507457913193809e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_564_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile564)_ 1.18544292761694967e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_565_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile565)_ 1.18580451696808972e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_566_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile566)_ 1.18615933386399443e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_567_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile567)_ 1.18650736500116108e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_568_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile568)_ 1.18684859698582629e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_569_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile569)_ 1.18718301649225529e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_570_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile570)_ 1.18751061010768828e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_571_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile571)_ 1.18783136438247502e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_572_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile572)_ 1.18814526588775088e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_573_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile573)_ 1.18845230115388386e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_574_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile574)_ 1.18875245670648465e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_575_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile575)_ 1.18904571899733115e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_576_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile576)_ 1.18933207448389741e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_577_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile577)_ 1.18961150962932083e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_578_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile578)_ 1.18988401081495544e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_579_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile579)_ 1.19014956446385142e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_580_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile580)_ 1.19040815689491607e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_581_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile581)_ 1.19065977447575660e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_582_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile582)_ 1.19090440352777761e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_583_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile583)_ 1.19114203032586897e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_584_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile584)_ 1.19137264114207893e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_585_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile585)_ 1.19159622221617512e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_586_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile586)_ 1.19181275977744226e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_587_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile587)_ 1.19202224001146613e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_588_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile588)_ 1.19222464910399457e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_589_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile589)_ 1.19241997319665238e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_590_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile590)_ 1.19260819840138060e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_591_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile591)_ 1.19278931082236403e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_592_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile592)_ 1.19296329654852012e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_593_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile593)_ 1.19313014162742859e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_594_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile594)_ 1.19328983206502832e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_595_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile595)_ 1.19344235389208485e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_596_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile596)_ 1.19358769306769034e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_597_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile597)_ 1.19372583557545413e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_598_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile598)_ 1.19385676732306021e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_599_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile599)_ 1.19398047421255885e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_600_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile600)_ 1.19409694213280081e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_601_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile601)_ 1.19420615694806661e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_602_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile602)_ 1.19430810450159020e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_603_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile603)_ 1.19440277058165383e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_604_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile604)_ 1.19449014098491173e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_605_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile605)_ 1.19457020149008452e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_606_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile606)_ 1.19464293780892402e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_607_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile607)_ 1.19470833567977847e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_608_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile608)_ 1.19476638078480774e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_609_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile609)_ 1.19481705879103516e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_610_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile610)_ 1.19486035534262652e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_611_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile611)_ 1.19489625604931871e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_612_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile612)_ 1.19492474652018715e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_613_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile613)_ 1.19494581232565816e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_614_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile614)_ 1.19495943900097944e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_615_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile615)_ 1.19496561208769555e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_616_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile616)_ 1.19496431708795495e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_617_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile617)_ 1.19495553946036871e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_618_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile618)_ 1.19493926466921092e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_619_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile619)_ 1.19491547813473115e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_620_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile620)_ 1.19488416529776788e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_621_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile621)_ 1.19484531150113142e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_622_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile622)_ 1.19479890210769189e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_623_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile623)_ 1.19474492249656613e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_624_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile624)_ 1.19468335793634205e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_625_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile625)_ 1.19461419373814767e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_626_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile626)_ 1.19453741516723326e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_627_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile627)_ 1.19445300746185788e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_628_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile628)_ 1.19436095585618487e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_629_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile629)_ 1.19426124552601907e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_630_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile630)_ 1.19415386166963136e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_631_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile631)_ 1.19403878943414171e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_632_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile632)_ 1.19391601396166263e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_633_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile633)_ 1.19378552033473830e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_634_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile634)_ 1.19364729366537390e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_635_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile635)_ 1.19350131900937476e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_636_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile636)_ 1.19334758140489054e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_637_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile637)_ 1.19318606586437583e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_638_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile638)_ 1.19301675740561691e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_639_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile639)_ 1.19283964100463050e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_640_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile640)_ 1.19265470159526724e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_641_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile641)_ 1.19246192412776602e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_642_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile642)_ 1.19226129351759167e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_643_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile643)_ 1.19205279463720417e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_644_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile644)_ 1.19183641238273588e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_645_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile645)_ 1.19161213159105512e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_646_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile646)_ 1.19137993709463891e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_647_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile647)_ 1.19113981368576521e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_648_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile648)_ 1.19089174618358176e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_649_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile649)_ 1.19063571933084242e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_650_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile650)_ 1.19037171788877773e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_651_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile651)_ 1.19009972657731725e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_652_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile652)_ 1.18981973011858758e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_653_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile653)_ 1.18953171318483888e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_654_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile654)_ 1.18923566046202460e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_655_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile655)_ 1.18893155659765878e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_656_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile656)_ 1.18861938622852412e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_657_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile657)_ 1.18829913396438693e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_658_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile658)_ 1.18797078438768067e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_659_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile659)_ 1.18763432210560807e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_660_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile660)_ 1.18728973166538875e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_661_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile661)_ 1.18693699761840861e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_662_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile662)_ 1.18657610446746206e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_663_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile663)_ 1.18620703675552785e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_664_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile664)_ 1.18582977895623203e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_665_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile665)_ 1.18544431555459399e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_666_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile666)_ 1.18505063099399975e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_667_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile667)_ 1.18464870975332360e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_668_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile668)_ 1.18423853624076963e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_669_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile669)_ 1.18382009487510362e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_670_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile670)_ 1.18339337005689427e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_671_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile671)_ 1.18295834619289685e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_672_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile672)_ 1.18251500761368585e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_673_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile673)_ 1.18206333872128005e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_674_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile674)_ 1.18160332382861114e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_675_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile675)_ 1.18113494730751056e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_676_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile676)_ 1.18065819344413351e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_677_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile677)_ 1.18017304655426668e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_678_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile678)_ 1.17967949097512494e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_679_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile679)_ 1.17917751092810521e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_680_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile680)_ 1.17866709075941344e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_681_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile681)_ 1.17814821468633837e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_682_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile682)_ 1.17762086698002481e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_683_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile683)_ 1.17708503188621895e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_684_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile684)_ 1.17654069365429100e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_685_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile685)_ 1.17598783652032961e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_686_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile686)_ 1.17542644469006523e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_687_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile687)_ 1.17485650240172195e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_688_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile688)_ 1.17427799385437185e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_689_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile689)_ 1.17369090325400369e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_690_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile690)_ 1.17309521479226457e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_691_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile691)_ 1.17249091268864982e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_692_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile692)_ 1.17187798112258559e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_693_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile693)_ 1.17125640426702492e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_694_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile694)_ 1.17062616633092260e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_695_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile695)_ 1.16998725150385657e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_696_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile696)_ 1.16933964395145324e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_697_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile697)_ 1.16868332784935223e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_698_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile698)_ 1.16801828740893555e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_699_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile699)_ 1.16734450677423388e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_700_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile700)_ 1.16666197017208269e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_701_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile701)_ 1.16597066177453121e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_702_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile702)_ 1.16527056577609769e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_703_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile703)_ 1.16456166636350385e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_704_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile704)_ 1.16384394775454793e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_705_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile705)_ 1.16311739411996563e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_706_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile706)_ 1.16238198972666868e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_707_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile707)_ 1.16163771876387559e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_708_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile708)_ 1.16088456545598365e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_709_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile709)_ 1.16012251407152326e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_710_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile710)_ 1.15935154883564859e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_711_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile711)_ 1.15857165405273931e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_712_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile712)_ 1.15778281393959931e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_713_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile713)_ 1.15698501284078707e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_714_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile714)_ 1.15617823502184996e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_715_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile715)_ 1.15536246483681267e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_716_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile716)_ 1.15453768660904055e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_717_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile717)_ 1.15370388469308773e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_718_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile718)_ 1.15286104347932499e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_719_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile719)_ 1.15200914735398459e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_720_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile720)_ 1.15114818075267109e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_721_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile721)_ 1.15027812811590441e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_722_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile722)_ 1.14939897391149997e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_723_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile723)_ 1.14851070263471342e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_724_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile724)_ 1.14761329881740669e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_725_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile725)_ 1.14670674701474358e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_726_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile726)_ 1.14579103179625452e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_727_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile727)_ 1.14486613780933680e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_728_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile728)_ 1.14393204967997708e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_729_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile729)_ 1.14298875210801214e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_730_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile730)_ 1.14203622983127199e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_731_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile731)_ 1.14107446758472692e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_732_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile732)_ 1.14010345019651058e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_733_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile733)_ 1.13912316252452253e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_734_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile734)_ 1.13813358942904536e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_735_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile735)_ 1.13713471587401707e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_736_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile736)_ 1.13612652685413599e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_737_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile737)_ 1.13510900738119924e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_738_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile738)_ 1.13408214257226126e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_739_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile739)_ 1.13304591756237215e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_740_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile740)_ 1.13200031755588022e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_741_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile741)_ 1.13094532780840962e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_742_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile742)_ 1.12988093366002962e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_743_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile743)_ 1.12880712047985603e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_744_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile744)_ 1.12772387372729738e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_745_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile745)_ 1.12663117891530495e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_746_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile746)_ 1.12552902163443845e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_747_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile747)_ 1.12441738757724109e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_748_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile748)_ 1.12329626243512608e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_749_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile749)_ 1.12216563208805548e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_750_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile750)_ 1.12102548240208943e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_751_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile751)_ 1.11987579936258467e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_752_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile752)_ 1.11871656903724231e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_753_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile753)_ 1.11754777762480845e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_754_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile754)_ 1.11636941135575991e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_755_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile755)_ 1.11518145659354594e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_756_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile756)_ 1.11398389976376470e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_757_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile757)_ 1.11277672748034597e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_758_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile758)_ 1.11155992634924157e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_759_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile759)_ 1.11033348317198764e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_760_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile760)_ 1.10909738485553740e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_761_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile761)_ 1.10785161836472919e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_762_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile762)_ 1.10659617085475098e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_763_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile763)_ 1.10533102957054690e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_764_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile764)_ 1.10405618186255258e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_765_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile765)_ 1.10277161529115271e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_766_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile766)_ 1.10147731748621719e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_767_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile767)_ 1.10017327625164165e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_768_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile768)_ 1.09885947950303878e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_769_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile769)_ 1.09753591533357630e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_770_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile770)_ 1.09620257201111862e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_771_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile771)_ 1.09485943792050795e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_772_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile772)_ 1.09350650161996153e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_773_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile773)_ 1.09214375188325385e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_774_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile774)_ 1.09077117760193829e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_775_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile775)_ 1.08938876786231539e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_776_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile776)_ 1.08799651196299033e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_777_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile777)_ 1.08659439936694673e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_778_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile778)_ 1.08518241973912140e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_779_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile779)_ 1.08376056296928952e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_780_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile780)_ 1.08232881911888932e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_781_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile781)_ 1.08088717850495248e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_782_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile782)_ 1.07943563164195518e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_783_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile783)_ 1.07797416924952771e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_784_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile784)_ 1.07650278234261466e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_785_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile785)_ 1.07502146211668915e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_786_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile786)_ 1.07353020008462054e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_787_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile787)_ 1.07202898793051973e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_788_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile788)_ 1.07051781767319078e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_789_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile789)_ 1.06899668157158789e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_790_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile790)_ 1.06746557216987250e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_791_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile791)_ 1.06592448228557575e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_792_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile792)_ 1.06437340509734687e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_793_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile793)_ 1.06281233395510190e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_794_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile794)_ 1.06124126268859250e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_795_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile795)_ 1.05966018531232480e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_796_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile796)_ 1.05806909622984946e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_797_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile797)_ 1.05646799019661498e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_798_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile798)_ 1.05485686229825140e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_799_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile799)_ 1.05323570800874167e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_800_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile800)_ 1.05160452310477832e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_801_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile801)_ 1.04996330383143547e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_802_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile802)_ 1.04831204679562227e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_803_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile803)_ 1.04665074896053562e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_804_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile804)_ 1.04497940779178147e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_805_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile805)_ 1.04329802110702929e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_806_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile806)_ 1.04160658722292198e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_807_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile807)_ 1.03990510485308454e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_808_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile808)_ 1.03819357324555217e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_809_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile809)_ 1.03647199203680609e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_810_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile810)_ 1.03474036145049936e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_811_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile811)_ 1.03299868214042061e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_812_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile812)_ 1.03124695537988968e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_813_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile813)_ 1.02948518283768158e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_814_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile814)_ 1.02771336685720423e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_815_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile815)_ 1.02593151028786914e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_816_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile816)_ 1.02413961661059552e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_817_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile817)_ 1.02233768985195515e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_818_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile818)_ 1.02052573470539695e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_819_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile819)_ 1.01870375644547064e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_820_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile820)_ 1.01687176107300558e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_821_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile821)_ 1.01502975521271539e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_822_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile822)_ 1.01317774617439189e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_823_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile823)_ 1.01131574201521121e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_824_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile824)_ 1.00944375150568005e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_825_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile825)_ 1.00756178419279929e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_826_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile826)_ 1.00566985037209081e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_827_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile827)_ 1.00376796113437698e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_828_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile828)_ 1.00185612842505975e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_829_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile829)_ 9.99934365005535758e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_830_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile830)_ 9.98002684536583758e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_831_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile831)_ 9.96061101534454450e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_832_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile832)_ 9.94109631484821690e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_833_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile833)_ 9.92148290787979968e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_834_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile834)_ 9.90177096839025932e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_835_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile835)_ 9.88196068020630140e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_836_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile836)_ 9.86205223767096413e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_837_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile837)_ 9.84204584575963486e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_838_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile838)_ 9.82194172037829070e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_839_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile839)_ 9.80174008872785815e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_840_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile840)_ 9.78144118949527547e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_841_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile841)_ 9.76104527359246237e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_842_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile842)_ 9.74055260412185972e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_843_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile843)_ 9.71996345682836493e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_844_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile844)_ 9.69927812074337405e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_845_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile845)_ 9.67849689804626059e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_846_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile846)_ 9.65762010484458831e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_847_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile847)_ 9.63664807172368888e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_848_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile848)_ 9.61558114375129537e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_849_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile849)_ 9.59441968135083673e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_850_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile850)_ 9.57316406063260690e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_851_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile851)_ 9.55181467329511459e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_852_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile852)_ 9.53037192758952878e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_853_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile853)_ 9.50883624986948763e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_854_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile854)_ 9.48720808283113129e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_855_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile855)_ 9.46548788801963685e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_856_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile856)_ 9.44367614546731682e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_857_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile857)_ 9.42177335428011700e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_858_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile858)_ 9.39978003381176062e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_859_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile859)_ 9.37769672351573824e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_860_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile860)_ 9.35552398395297219e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_861_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile861)_ 9.33326239794979827e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_862_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile862)_ 9.31091256990151245e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_863_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile863)_ 9.28847512824754543e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_864_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile864)_ 9.26595072473661990e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_865_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile865)_ 9.24334003583737046e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_866_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile866)_ 9.22064376319349163e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_867_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile867)_ 9.19786263527564221e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_868_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile868)_ 9.17499740688499689e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_869_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile869)_ 9.15204886110350044e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_870_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile870)_ 9.12901781001979919e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_871_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile871)_ 9.10590509460118026e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_872_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile872)_ 9.08271158738238431e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_873_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile873)_ 9.05943819184380425e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_874_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile874)_ 9.03608584481906986e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_875_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile875)_ 9.01265551671527436e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_876_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile876)_ 8.98914821214639656e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_877_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile877)_ 8.96556497290502789e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_878_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile878)_ 8.94190687688163621e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_879_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile879)_ 8.91817504109213705e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_880_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile880)_ 8.89437062193743945e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_881_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile881)_ 8.87049481713347680e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_882_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile882)_ 8.84654886642953671e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_883_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile883)_ 8.82253405381002061e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_884_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile884)_ 8.79845170855131191e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_885_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile885)_ 8.77430320658281401e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_886_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile886)_ 8.75008997272590759e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_887_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile887)_ 8.72581348163300151e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_888_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile888)_ 8.70147525995739260e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_889_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile889)_ 8.67707688792653670e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_890_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile890)_ 8.65262000145149840e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_891_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile891)_ 8.62810629435421979e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_892_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile892)_ 8.60353751926740476e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_893_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile893)_ 8.57891549124038463e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_894_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile894)_ 8.55424208865245873e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_895_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile895)_ 8.52951925648666107e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_896_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile896)_ 8.50474900805745296e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_897_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile897)_ 8.47993342751141889e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_898_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile898)_ 8.45507467312209444e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_899_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile899)_ 8.43017497961400832e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_900_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile900)_ 8.40523666060878465e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_901_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile901)_ 8.38026211127099012e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_902_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile902)_ 8.35525381349406723e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_903_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile903)_ 8.33021433688935393e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_904_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile904)_ 8.30514634229326774e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_905_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile905)_ 8.28005258656703234e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_906_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile906)_ 8.25493592635094704e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_907_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile907)_ 8.22979931989574649e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_908_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile908)_ 8.20464583332230178e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_909_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile909)_ 8.17947864376117502e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_910_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile910)_ 8.15430104426166993e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_911_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile911)_ 8.12911644747136598e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_912_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile912)_ 8.10392839220833681e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_913_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile913)_ 8.07874054780595603e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_914_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile914)_ 8.05355671869522304e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_915_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile915)_ 8.02838085169278043e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_916_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile916)_ 8.00321704112262090e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_917_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile917)_ 7.97806953458949850e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_918_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile918)_ 7.95294274175393709e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_919_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile919)_ 7.92784123843408468e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_920_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile920)_ 7.90276977741730634e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_921_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile921)_ 7.87773329256362398e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_922_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile922)_ 7.85273691195794744e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_923_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile923)_ 7.82778596196139279e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_924_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile924)_ 7.80288597954958453e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_925_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile925)_ 7.77804272206982211e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_926_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile926)_ 7.75326217757852255e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_927_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile927)_ 7.72855057543344378e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_928_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile928)_ 7.70391440024526669e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_929_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile929)_ 7.67936040346059098e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_930_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile930)_ 7.65489561833608383e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_931_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile931)_ 7.63052737431078702e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_932_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile932)_ 7.60626331339115096e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_933_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile933)_ 7.58211140730664142e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_934_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile934)_ 7.55807997681872540e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_935_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile935)_ 7.53417771227607967e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_936_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile936)_ 7.51041369490937621e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_937_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile937)_ 7.48679742095553248e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_938_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile938)_ 7.46333882901720723e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_939_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile939)_ 7.44004832720361435e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_940_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile940)_ 7.41693682663245504e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_941_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile941)_ 7.39401577452281685e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_942_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile942)_ 7.37129719331938021e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_943_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile943)_ 7.34879372364620042e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_944_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile944)_ 7.32651867122934876e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_945_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile945)_ 7.30448606107674415e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_946_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile946)_ 7.28271069677951903e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_947_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile947)_ 7.26120822834715098e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_948_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile948)_ 7.23999522898084898e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_949_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile949)_ 7.21908928374444606e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_950_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile950)_ 7.19850909076964404e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_951_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile951)_ 7.17827457792611420e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_952_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile952)_ 7.15840704099502279e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_953_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile953)_ 7.13892930328937150e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_954_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile954)_ 7.11986591012782333e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_955_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile955)_ 7.10124335559033856e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_956_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile956)_ 7.08309036229445160e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_957_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile957)_ 7.06543822482775564e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_958_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile958)_ 7.04832123306410076e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_959_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile959)_ 7.03177721276684615e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_960_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile960)_ 7.01584821591176924e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_961_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile961)_ 7.00058143124612960e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_962_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile962)_ 6.98603040745976196e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_963_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile963)_ 6.97225674451164810e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_964_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile964)_ 6.95933251909024164e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_965_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile965)_ 6.94734390650057678e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_966_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile966)_ 6.93639689269120400e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_967_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile967)_ 6.92662695094656104e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_968_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile968)_ 6.91821712810702927e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_969_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile969)_ 6.91143730324607700e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_970_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile970)_ 6.90675469764710868e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_971_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile971)_ 6.90551152776616023e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_972_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile972)_ 6.79501659182833641e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_973_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile973)_ 6.68245970757940563e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_974_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile974)_ 6.56773467976352280e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_975_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile975)_ 6.45072564381078944e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_976_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile976)_ 6.33130577734632161e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_977_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile977)_ 6.20933579066954879e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_978_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile978)_ 6.08466213283202252e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_979_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile979)_ 5.95711485157364700e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_980_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile980)_ 5.82650502603835035e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_981_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile981)_ 5.69262164987761107e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_982_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile982)_ 5.55522782916299720e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_983_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile983)_ 5.41405609232637006e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_984_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile984)_ 5.26880254298810798e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_985_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile985)_ 5.11911949850135054e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_986_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile986)_ 4.96460608346816282e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_987_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile987)_ 4.80479606231031930e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_988_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile988)_ 4.63914183171447274e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_989_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile989)_ 4.46699298961763559e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_990_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile990)_ 4.28756703617119359e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_991_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile991)_ 4.09990837578136976e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_992_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile992)_ 3.90282932713602749e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_993_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile993)_ 3.69482244176269842e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_994_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile994)_ 3.47392496363834033e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_995_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile995)_ 3.23749898401962501e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_996_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile996)_ 2.98185269973853979e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_997_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile997)_ 2.70153471167552690e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_998_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile998)_ 2.38787145455699075e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_999_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile999)_ 2.02542933239191611e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_1000______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1000)_ 1.58100887887403958e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_1001______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1001)_ 9.45305748606121120e-04 +Volume_averaged_electron_thermal_velocity_(m/s)__________________________ (vel_plasma_electron_vol_avg)__ 6.55585714550692216e+07 +Plasma_electron_thermal_velocity_at_point_0______________________________ (vel_plasma_electron_profile0)_ 9.26029937538009435e+07 +Plasma_electron_thermal_velocity_at_point_1______________________________ (vel_plasma_electron_profile1)_ 9.26027709296452850e+07 +Plasma_electron_thermal_velocity_at_point_2______________________________ (vel_plasma_electron_profile2)_ 9.26021024556669146e+07 +Plasma_electron_thermal_velocity_at_point_3______________________________ (vel_plasma_electron_profile3)_ 9.26009883273312598e+07 +Plasma_electron_thermal_velocity_at_point_4______________________________ (vel_plasma_electron_profile4)_ 9.25994285370816141e+07 +Plasma_electron_thermal_velocity_at_point_5______________________________ (vel_plasma_electron_profile5)_ 9.25974230743380189e+07 +Plasma_electron_thermal_velocity_at_point_6______________________________ (vel_plasma_electron_profile6)_ 9.25949719254974127e+07 +Plasma_electron_thermal_velocity_at_point_7______________________________ (vel_plasma_electron_profile7)_ 9.25920750739351958e+07 +Plasma_electron_thermal_velocity_at_point_8______________________________ (vel_plasma_electron_profile8)_ 9.25887325000034124e+07 +Plasma_electron_thermal_velocity_at_point_9______________________________ (vel_plasma_electron_profile9)_ 9.25849441810322404e+07 +Plasma_electron_thermal_velocity_at_point_10_____________________________ (vel_plasma_electron_profile10)_ 9.25807100913292170e+07 +Plasma_electron_thermal_velocity_at_point_11_____________________________ (vel_plasma_electron_profile11)_ 9.25760302021801770e+07 +Plasma_electron_thermal_velocity_at_point_12_____________________________ (vel_plasma_electron_profile12)_ 9.25709044818492532e+07 +Plasma_electron_thermal_velocity_at_point_13_____________________________ (vel_plasma_electron_profile13)_ 9.25653328955786973e+07 +Plasma_electron_thermal_velocity_at_point_14_____________________________ (vel_plasma_electron_profile14)_ 9.25593154055897444e+07 +Plasma_electron_thermal_velocity_at_point_15_____________________________ (vel_plasma_electron_profile15)_ 9.25528519710822701e+07 +Plasma_electron_thermal_velocity_at_point_16_____________________________ (vel_plasma_electron_profile16)_ 9.25459425482355505e+07 +Plasma_electron_thermal_velocity_at_point_17_____________________________ (vel_plasma_electron_profile17)_ 9.25385870902084708e+07 +Plasma_electron_thermal_velocity_at_point_18_____________________________ (vel_plasma_electron_profile18)_ 9.25307855471399277e+07 +Plasma_electron_thermal_velocity_at_point_19_____________________________ (vel_plasma_electron_profile19)_ 9.25225378661484569e+07 +Plasma_electron_thermal_velocity_at_point_20_____________________________ (vel_plasma_electron_profile20)_ 9.25138439913338721e+07 +Plasma_electron_thermal_velocity_at_point_21_____________________________ (vel_plasma_electron_profile21)_ 9.25047038637768477e+07 +Plasma_electron_thermal_velocity_at_point_22_____________________________ (vel_plasma_electron_profile22)_ 9.24951174215396047e+07 +Plasma_electron_thermal_velocity_at_point_23_____________________________ (vel_plasma_electron_profile23)_ 9.24850845996662080e+07 +Plasma_electron_thermal_velocity_at_point_24_____________________________ (vel_plasma_electron_profile24)_ 9.24746053301828504e+07 +Plasma_electron_thermal_velocity_at_point_25_____________________________ (vel_plasma_electron_profile25)_ 9.24636795420992970e+07 +Plasma_electron_thermal_velocity_at_point_26_____________________________ (vel_plasma_electron_profile26)_ 9.24523071614085138e+07 +Plasma_electron_thermal_velocity_at_point_27_____________________________ (vel_plasma_electron_profile27)_ 9.24404881110872626e+07 +Plasma_electron_thermal_velocity_at_point_28_____________________________ (vel_plasma_electron_profile28)_ 9.24282223110974282e+07 +Plasma_electron_thermal_velocity_at_point_29_____________________________ (vel_plasma_electron_profile29)_ 9.24155096783856750e+07 +Plasma_electron_thermal_velocity_at_point_30_____________________________ (vel_plasma_electron_profile30)_ 9.24023501268849820e+07 +Plasma_electron_thermal_velocity_at_point_31_____________________________ (vel_plasma_electron_profile31)_ 9.23887435675144494e+07 +Plasma_electron_thermal_velocity_at_point_32_____________________________ (vel_plasma_electron_profile32)_ 9.23746899081809223e+07 +Plasma_electron_thermal_velocity_at_point_33_____________________________ (vel_plasma_electron_profile33)_ 9.23601890537790805e+07 +Plasma_electron_thermal_velocity_at_point_34_____________________________ (vel_plasma_electron_profile34)_ 9.23452409061919749e+07 +Plasma_electron_thermal_velocity_at_point_35_____________________________ (vel_plasma_electron_profile35)_ 9.23298453642929047e+07 +Plasma_electron_thermal_velocity_at_point_36_____________________________ (vel_plasma_electron_profile36)_ 9.23140023239450157e+07 +Plasma_electron_thermal_velocity_at_point_37_____________________________ (vel_plasma_electron_profile37)_ 9.22977116780031919e+07 +Plasma_electron_thermal_velocity_at_point_38_____________________________ (vel_plasma_electron_profile38)_ 9.22809733163140565e+07 +Plasma_electron_thermal_velocity_at_point_39_____________________________ (vel_plasma_electron_profile39)_ 9.22637871257172227e+07 +Plasma_electron_thermal_velocity_at_point_40_____________________________ (vel_plasma_electron_profile40)_ 9.22461529900467694e+07 +Plasma_electron_thermal_velocity_at_point_41_____________________________ (vel_plasma_electron_profile41)_ 9.22280707901315391e+07 +Plasma_electron_thermal_velocity_at_point_42_____________________________ (vel_plasma_electron_profile42)_ 9.22095404037962854e+07 +Plasma_electron_thermal_velocity_at_point_43_____________________________ (vel_plasma_electron_profile43)_ 9.21905617058631182e+07 +Plasma_electron_thermal_velocity_at_point_44_____________________________ (vel_plasma_electron_profile44)_ 9.21711345681522191e+07 +Plasma_electron_thermal_velocity_at_point_45_____________________________ (vel_plasma_electron_profile45)_ 9.21512588594829738e+07 +Plasma_electron_thermal_velocity_at_point_46_____________________________ (vel_plasma_electron_profile46)_ 9.21309344456755966e+07 +Plasma_electron_thermal_velocity_at_point_47_____________________________ (vel_plasma_electron_profile47)_ 9.21101611895520240e+07 +Plasma_electron_thermal_velocity_at_point_48_____________________________ (vel_plasma_electron_profile48)_ 9.20889389509368837e+07 +Plasma_electron_thermal_velocity_at_point_49_____________________________ (vel_plasma_electron_profile49)_ 9.20672675866593570e+07 +Plasma_electron_thermal_velocity_at_point_50_____________________________ (vel_plasma_electron_profile50)_ 9.20451469505541474e+07 +Plasma_electron_thermal_velocity_at_point_51_____________________________ (vel_plasma_electron_profile51)_ 9.20225768934632689e+07 +Plasma_electron_thermal_velocity_at_point_52_____________________________ (vel_plasma_electron_profile52)_ 9.19995572632369846e+07 +Plasma_electron_thermal_velocity_at_point_53_____________________________ (vel_plasma_electron_profile53)_ 9.19760879047354311e+07 +Plasma_electron_thermal_velocity_at_point_54_____________________________ (vel_plasma_electron_profile54)_ 9.19521686598303169e+07 +Plasma_electron_thermal_velocity_at_point_55_____________________________ (vel_plasma_electron_profile55)_ 9.19277993674065322e+07 +Plasma_electron_thermal_velocity_at_point_56_____________________________ (vel_plasma_electron_profile56)_ 9.19029798633633107e+07 +Plasma_electron_thermal_velocity_at_point_57_____________________________ (vel_plasma_electron_profile57)_ 9.18777099806167185e+07 +Plasma_electron_thermal_velocity_at_point_58_____________________________ (vel_plasma_electron_profile58)_ 9.18519895491005033e+07 +Plasma_electron_thermal_velocity_at_point_59_____________________________ (vel_plasma_electron_profile59)_ 9.18258183957682401e+07 +Plasma_electron_thermal_velocity_at_point_60_____________________________ (vel_plasma_electron_profile60)_ 9.17991963445955366e+07 +Plasma_electron_thermal_velocity_at_point_61_____________________________ (vel_plasma_electron_profile61)_ 9.17721232165811658e+07 +Plasma_electron_thermal_velocity_at_point_62_____________________________ (vel_plasma_electron_profile62)_ 9.17445988297495544e+07 +Plasma_electron_thermal_velocity_at_point_63_____________________________ (vel_plasma_electron_profile63)_ 9.17166229991528839e+07 +Plasma_electron_thermal_velocity_at_point_64_____________________________ (vel_plasma_electron_profile64)_ 9.16881955368723720e+07 +Plasma_electron_thermal_velocity_at_point_65_____________________________ (vel_plasma_electron_profile65)_ 9.16593162520213723e+07 +Plasma_electron_thermal_velocity_at_point_66_____________________________ (vel_plasma_electron_profile66)_ 9.16299849507469237e+07 +Plasma_electron_thermal_velocity_at_point_67_____________________________ (vel_plasma_electron_profile67)_ 9.16002014362324774e+07 +Plasma_electron_thermal_velocity_at_point_68_____________________________ (vel_plasma_electron_profile68)_ 9.15699655086995810e+07 +Plasma_electron_thermal_velocity_at_point_69_____________________________ (vel_plasma_electron_profile69)_ 9.15392769654103667e+07 +Plasma_electron_thermal_velocity_at_point_70_____________________________ (vel_plasma_electron_profile70)_ 9.15081356006710976e+07 +Plasma_electron_thermal_velocity_at_point_71_____________________________ (vel_plasma_electron_profile71)_ 9.14765412058328539e+07 +Plasma_electron_thermal_velocity_at_point_72_____________________________ (vel_plasma_electron_profile72)_ 9.14444935692955405e+07 +Plasma_electron_thermal_velocity_at_point_73_____________________________ (vel_plasma_electron_profile73)_ 9.14119924765101373e+07 +Plasma_electron_thermal_velocity_at_point_74_____________________________ (vel_plasma_electron_profile74)_ 9.13790377099813968e+07 +Plasma_electron_thermal_velocity_at_point_75_____________________________ (vel_plasma_electron_profile75)_ 9.13456290492702276e+07 +Plasma_electron_thermal_velocity_at_point_76_____________________________ (vel_plasma_electron_profile76)_ 9.13117662709978521e+07 +Plasma_electron_thermal_velocity_at_point_77_____________________________ (vel_plasma_electron_profile77)_ 9.12774491488471627e+07 +Plasma_electron_thermal_velocity_at_point_78_____________________________ (vel_plasma_electron_profile78)_ 9.12426774535667449e+07 +Plasma_electron_thermal_velocity_at_point_79_____________________________ (vel_plasma_electron_profile79)_ 9.12074509529742599e+07 +Plasma_electron_thermal_velocity_at_point_80_____________________________ (vel_plasma_electron_profile80)_ 9.11717694119585454e+07 +Plasma_electron_thermal_velocity_at_point_81_____________________________ (vel_plasma_electron_profile81)_ 9.11356325924846381e+07 +Plasma_electron_thermal_velocity_at_point_82_____________________________ (vel_plasma_electron_profile82)_ 9.10990402535949200e+07 +Plasma_electron_thermal_velocity_at_point_83_____________________________ (vel_plasma_electron_profile83)_ 9.10619921514150351e+07 +Plasma_electron_thermal_velocity_at_point_84_____________________________ (vel_plasma_electron_profile84)_ 9.10244880391554534e+07 +Plasma_electron_thermal_velocity_at_point_85_____________________________ (vel_plasma_electron_profile85)_ 9.09865276671170145e+07 +Plasma_electron_thermal_velocity_at_point_86_____________________________ (vel_plasma_electron_profile86)_ 9.09481107826927453e+07 +Plasma_electron_thermal_velocity_at_point_87_____________________________ (vel_plasma_electron_profile87)_ 9.09092371303733438e+07 +Plasma_electron_thermal_velocity_at_point_88_____________________________ (vel_plasma_electron_profile88)_ 9.08699064517506361e+07 +Plasma_electron_thermal_velocity_at_point_89_____________________________ (vel_plasma_electron_profile89)_ 9.08301184855213314e+07 +Plasma_electron_thermal_velocity_at_point_90_____________________________ (vel_plasma_electron_profile90)_ 9.07898729674919546e+07 +Plasma_electron_thermal_velocity_at_point_91_____________________________ (vel_plasma_electron_profile91)_ 9.07491696305825412e+07 +Plasma_electron_thermal_velocity_at_point_92_____________________________ (vel_plasma_electron_profile92)_ 9.07080082048312724e+07 +Plasma_electron_thermal_velocity_at_point_93_____________________________ (vel_plasma_electron_profile93)_ 9.06663884173992425e+07 +Plasma_electron_thermal_velocity_at_point_94_____________________________ (vel_plasma_electron_profile94)_ 9.06243099925750792e+07 +Plasma_electron_thermal_velocity_at_point_95_____________________________ (vel_plasma_electron_profile95)_ 9.05817726517793387e+07 +Plasma_electron_thermal_velocity_at_point_96_____________________________ (vel_plasma_electron_profile96)_ 9.05387761135701090e+07 +Plasma_electron_thermal_velocity_at_point_97_____________________________ (vel_plasma_electron_profile97)_ 9.04953200936476439e+07 +Plasma_electron_thermal_velocity_at_point_98_____________________________ (vel_plasma_electron_profile98)_ 9.04514043048595786e+07 +Plasma_electron_thermal_velocity_at_point_99_____________________________ (vel_plasma_electron_profile99)_ 9.04070284572061896e+07 +Plasma_electron_thermal_velocity_at_point_100____________________________ (vel_plasma_electron_profile100)_ 9.03621922578462213e+07 +Plasma_electron_thermal_velocity_at_point_101____________________________ (vel_plasma_electron_profile101)_ 9.03168954111023247e+07 +Plasma_electron_thermal_velocity_at_point_102____________________________ (vel_plasma_electron_profile102)_ 9.02711376184664369e+07 +Plasma_electron_thermal_velocity_at_point_103____________________________ (vel_plasma_electron_profile103)_ 9.02249185786060989e+07 +Plasma_electron_thermal_velocity_at_point_104____________________________ (vel_plasma_electron_profile104)_ 9.01782379873707294e+07 +Plasma_electron_thermal_velocity_at_point_105____________________________ (vel_plasma_electron_profile105)_ 9.01310955377969593e+07 +Plasma_electron_thermal_velocity_at_point_106____________________________ (vel_plasma_electron_profile106)_ 9.00834909201158434e+07 +Plasma_electron_thermal_velocity_at_point_107____________________________ (vel_plasma_electron_profile107)_ 9.00354238217592686e+07 +Plasma_electron_thermal_velocity_at_point_108____________________________ (vel_plasma_electron_profile108)_ 8.99868939273657948e+07 +Plasma_electron_thermal_velocity_at_point_109____________________________ (vel_plasma_electron_profile109)_ 8.99379009187892526e+07 +Plasma_electron_thermal_velocity_at_point_110____________________________ (vel_plasma_electron_profile110)_ 8.98884444751035869e+07 +Plasma_electron_thermal_velocity_at_point_111____________________________ (vel_plasma_electron_profile111)_ 8.98385242726121098e+07 +Plasma_electron_thermal_velocity_at_point_112____________________________ (vel_plasma_electron_profile112)_ 8.97881399848532230e+07 +Plasma_electron_thermal_velocity_at_point_113____________________________ (vel_plasma_electron_profile113)_ 8.97372912826093286e+07 +Plasma_electron_thermal_velocity_at_point_114____________________________ (vel_plasma_electron_profile114)_ 8.96859778339135647e+07 +Plasma_electron_thermal_velocity_at_point_115____________________________ (vel_plasma_electron_profile115)_ 8.96341993040589988e+07 +Plasma_electron_thermal_velocity_at_point_116____________________________ (vel_plasma_electron_profile116)_ 8.95819553556049317e+07 +Plasma_electron_thermal_velocity_at_point_117____________________________ (vel_plasma_electron_profile117)_ 8.95292456483874023e+07 +Plasma_electron_thermal_velocity_at_point_118____________________________ (vel_plasma_electron_profile118)_ 8.94760698395260274e+07 +Plasma_electron_thermal_velocity_at_point_119____________________________ (vel_plasma_electron_profile119)_ 8.94224275834341496e+07 +Plasma_electron_thermal_velocity_at_point_120____________________________ (vel_plasma_electron_profile120)_ 8.93683185318261385e+07 +Plasma_electron_thermal_velocity_at_point_121____________________________ (vel_plasma_electron_profile121)_ 8.93137423337288499e+07 +Plasma_electron_thermal_velocity_at_point_122____________________________ (vel_plasma_electron_profile122)_ 8.92586986354891360e+07 +Plasma_electron_thermal_velocity_at_point_123____________________________ (vel_plasma_electron_profile123)_ 8.92031870807847083e+07 +Plasma_electron_thermal_velocity_at_point_124____________________________ (vel_plasma_electron_profile124)_ 8.91472073106333613e+07 +Plasma_electron_thermal_velocity_at_point_125____________________________ (vel_plasma_electron_profile125)_ 8.90907589634035677e+07 +Plasma_electron_thermal_velocity_at_point_126____________________________ (vel_plasma_electron_profile126)_ 8.90338416748249680e+07 +Plasma_electron_thermal_velocity_at_point_127____________________________ (vel_plasma_electron_profile127)_ 8.89764550779985487e+07 +Plasma_electron_thermal_velocity_at_point_128____________________________ (vel_plasma_electron_profile128)_ 8.89185988034081608e+07 +Plasma_electron_thermal_velocity_at_point_129____________________________ (vel_plasma_electron_profile129)_ 8.88602724789312333e+07 +Plasma_electron_thermal_velocity_at_point_130____________________________ (vel_plasma_electron_profile130)_ 8.88014757298504561e+07 +Plasma_electron_thermal_velocity_at_point_131____________________________ (vel_plasma_electron_profile131)_ 8.87422081788660735e+07 +Plasma_electron_thermal_velocity_at_point_132____________________________ (vel_plasma_electron_profile132)_ 8.86824694461063147e+07 +Plasma_electron_thermal_velocity_at_point_133____________________________ (vel_plasma_electron_profile133)_ 8.86222591491422951e+07 +Plasma_electron_thermal_velocity_at_point_134____________________________ (vel_plasma_electron_profile134)_ 8.85615769029977918e+07 +Plasma_electron_thermal_velocity_at_point_135____________________________ (vel_plasma_electron_profile135)_ 8.85004223201644570e+07 +Plasma_electron_thermal_velocity_at_point_136____________________________ (vel_plasma_electron_profile136)_ 8.84387950106137544e+07 +Plasma_electron_thermal_velocity_at_point_137____________________________ (vel_plasma_electron_profile137)_ 8.83766945818113238e+07 +Plasma_electron_thermal_velocity_at_point_138____________________________ (vel_plasma_electron_profile138)_ 8.83141206387297213e+07 +Plasma_electron_thermal_velocity_at_point_139____________________________ (vel_plasma_electron_profile139)_ 8.82510727838640958e+07 +Plasma_electron_thermal_velocity_at_point_140____________________________ (vel_plasma_electron_profile140)_ 8.81875506172462106e+07 +Plasma_electron_thermal_velocity_at_point_141____________________________ (vel_plasma_electron_profile141)_ 8.81235537364588231e+07 +Plasma_electron_thermal_velocity_at_point_142____________________________ (vel_plasma_electron_profile142)_ 8.80590817366511375e+07 +Plasma_electron_thermal_velocity_at_point_143____________________________ (vel_plasma_electron_profile143)_ 8.79941342105555534e+07 +Plasma_electron_thermal_velocity_at_point_144____________________________ (vel_plasma_electron_profile144)_ 8.79287107485020459e+07 +Plasma_electron_thermal_velocity_at_point_145____________________________ (vel_plasma_electron_profile145)_ 8.78628109384355694e+07 +Plasma_electron_thermal_velocity_at_point_146____________________________ (vel_plasma_electron_profile146)_ 8.77964343659325093e+07 +Plasma_electron_thermal_velocity_at_point_147____________________________ (vel_plasma_electron_profile147)_ 8.77295806142183393e+07 +Plasma_electron_thermal_velocity_at_point_148____________________________ (vel_plasma_electron_profile148)_ 8.76622492641843259e+07 +Plasma_electron_thermal_velocity_at_point_149____________________________ (vel_plasma_electron_profile149)_ 8.75944398944063783e+07 +Plasma_electron_thermal_velocity_at_point_150____________________________ (vel_plasma_electron_profile150)_ 8.75261520811628997e+07 +Plasma_electron_thermal_velocity_at_point_151____________________________ (vel_plasma_electron_profile151)_ 8.74573853984542489e+07 +Plasma_electron_thermal_velocity_at_point_152____________________________ (vel_plasma_electron_profile152)_ 8.73881394180214405e+07 +Plasma_electron_thermal_velocity_at_point_153____________________________ (vel_plasma_electron_profile153)_ 8.73184137093663961e+07 +Plasma_electron_thermal_velocity_at_point_154____________________________ (vel_plasma_electron_profile154)_ 8.72482078397720903e+07 +Plasma_electron_thermal_velocity_at_point_155____________________________ (vel_plasma_electron_profile155)_ 8.71775213743229359e+07 +Plasma_electron_thermal_velocity_at_point_156____________________________ (vel_plasma_electron_profile156)_ 8.71063538759263158e+07 +Plasma_electron_thermal_velocity_at_point_157____________________________ (vel_plasma_electron_profile157)_ 8.70347049053344727e+07 +Plasma_electron_thermal_velocity_at_point_158____________________________ (vel_plasma_electron_profile158)_ 8.69625740211662501e+07 +Plasma_electron_thermal_velocity_at_point_159____________________________ (vel_plasma_electron_profile159)_ 8.68899607799303383e+07 +Plasma_electron_thermal_velocity_at_point_160____________________________ (vel_plasma_electron_profile160)_ 8.68168647360481918e+07 +Plasma_electron_thermal_velocity_at_point_161____________________________ (vel_plasma_electron_profile161)_ 8.67432854418778718e+07 +Plasma_electron_thermal_velocity_at_point_162____________________________ (vel_plasma_electron_profile162)_ 8.66692224477387071e+07 +Plasma_electron_thermal_velocity_at_point_163____________________________ (vel_plasma_electron_profile163)_ 8.65946753019359559e+07 +Plasma_electron_thermal_velocity_at_point_164____________________________ (vel_plasma_electron_profile164)_ 8.65196435507866293e+07 +Plasma_electron_thermal_velocity_at_point_165____________________________ (vel_plasma_electron_profile165)_ 8.64441267386454046e+07 +Plasma_electron_thermal_velocity_at_point_166____________________________ (vel_plasma_electron_profile166)_ 8.63681244079316407e+07 +Plasma_electron_thermal_velocity_at_point_167____________________________ (vel_plasma_electron_profile167)_ 8.62916360991563499e+07 +Plasma_electron_thermal_velocity_at_point_168____________________________ (vel_plasma_electron_profile168)_ 8.62146613509504646e+07 +Plasma_electron_thermal_velocity_at_point_169____________________________ (vel_plasma_electron_profile169)_ 8.61371997000940889e+07 +Plasma_electron_thermal_velocity_at_point_170____________________________ (vel_plasma_electron_profile170)_ 8.60592506815443188e+07 +Plasma_electron_thermal_velocity_at_point_171____________________________ (vel_plasma_electron_profile171)_ 8.59808138284671903e+07 +Plasma_electron_thermal_velocity_at_point_172____________________________ (vel_plasma_electron_profile172)_ 8.59018886722667962e+07 +Plasma_electron_thermal_velocity_at_point_173____________________________ (vel_plasma_electron_profile173)_ 8.58224747426181287e+07 +Plasma_electron_thermal_velocity_at_point_174____________________________ (vel_plasma_electron_profile174)_ 8.57425715674978048e+07 +Plasma_electron_thermal_velocity_at_point_175____________________________ (vel_plasma_electron_profile175)_ 8.56621786732180715e+07 +Plasma_electron_thermal_velocity_at_point_176____________________________ (vel_plasma_electron_profile176)_ 8.55812955844605118e+07 +Plasma_electron_thermal_velocity_at_point_177____________________________ (vel_plasma_electron_profile177)_ 8.54999218243098706e+07 +Plasma_electron_thermal_velocity_at_point_178____________________________ (vel_plasma_electron_profile178)_ 8.54180569142897725e+07 +Plasma_electron_thermal_velocity_at_point_179____________________________ (vel_plasma_electron_profile179)_ 8.53357003743989617e+07 +Plasma_electron_thermal_velocity_at_point_180____________________________ (vel_plasma_electron_profile180)_ 8.52528517231481522e+07 +Plasma_electron_thermal_velocity_at_point_181____________________________ (vel_plasma_electron_profile181)_ 8.51695104775978178e+07 +Plasma_electron_thermal_velocity_at_point_182____________________________ (vel_plasma_electron_profile182)_ 8.50856761533965468e+07 +Plasma_electron_thermal_velocity_at_point_183____________________________ (vel_plasma_electron_profile183)_ 8.50013482648215592e+07 +Plasma_electron_thermal_velocity_at_point_184____________________________ (vel_plasma_electron_profile184)_ 8.49165263248180896e+07 +Plasma_electron_thermal_velocity_at_point_185____________________________ (vel_plasma_electron_profile185)_ 8.48312098450420052e+07 +Plasma_electron_thermal_velocity_at_point_186____________________________ (vel_plasma_electron_profile186)_ 8.47453983359017223e+07 +Plasma_electron_thermal_velocity_at_point_187____________________________ (vel_plasma_electron_profile187)_ 8.46590913066011220e+07 +Plasma_electron_thermal_velocity_at_point_188____________________________ (vel_plasma_electron_profile188)_ 8.45722882651852816e+07 +Plasma_electron_thermal_velocity_at_point_189____________________________ (vel_plasma_electron_profile189)_ 8.44849887185843438e+07 +Plasma_electron_thermal_velocity_at_point_190____________________________ (vel_plasma_electron_profile190)_ 8.43971921726616025e+07 +Plasma_electron_thermal_velocity_at_point_191____________________________ (vel_plasma_electron_profile191)_ 8.43088981322603226e+07 +Plasma_electron_thermal_velocity_at_point_192____________________________ (vel_plasma_electron_profile192)_ 8.42201061012523770e+07 +Plasma_electron_thermal_velocity_at_point_193____________________________ (vel_plasma_electron_profile193)_ 8.41308155825884193e+07 +Plasma_electron_thermal_velocity_at_point_194____________________________ (vel_plasma_electron_profile194)_ 8.40410260783491135e+07 +Plasma_electron_thermal_velocity_at_point_195____________________________ (vel_plasma_electron_profile195)_ 8.39507370897966325e+07 +Plasma_electron_thermal_velocity_at_point_196____________________________ (vel_plasma_electron_profile196)_ 8.38599481174294800e+07 +Plasma_electron_thermal_velocity_at_point_197____________________________ (vel_plasma_electron_profile197)_ 8.37686586610350162e+07 +Plasma_electron_thermal_velocity_at_point_198____________________________ (vel_plasma_electron_profile198)_ 8.36768682197481245e+07 +Plasma_electron_thermal_velocity_at_point_199____________________________ (vel_plasma_electron_profile199)_ 8.35845762921059877e+07 +Plasma_electron_thermal_velocity_at_point_200____________________________ (vel_plasma_electron_profile200)_ 8.34917823761082143e+07 +Plasma_electron_thermal_velocity_at_point_201____________________________ (vel_plasma_electron_profile201)_ 8.33984859692768306e+07 +Plasma_electron_thermal_velocity_at_point_202____________________________ (vel_plasma_electron_profile202)_ 8.33046865687166601e+07 +Plasma_electron_thermal_velocity_at_point_203____________________________ (vel_plasma_electron_profile203)_ 8.32103836711789668e+07 +Plasma_electron_thermal_velocity_at_point_204____________________________ (vel_plasma_electron_profile204)_ 8.31155767731258571e+07 +Plasma_electron_thermal_velocity_at_point_205____________________________ (vel_plasma_electron_profile205)_ 8.30202653707955331e+07 +Plasma_electron_thermal_velocity_at_point_206____________________________ (vel_plasma_electron_profile206)_ 8.29244489602700621e+07 +Plasma_electron_thermal_velocity_at_point_207____________________________ (vel_plasma_electron_profile207)_ 8.28281270375440419e+07 +Plasma_electron_thermal_velocity_at_point_208____________________________ (vel_plasma_electron_profile208)_ 8.27312990985951424e+07 +Plasma_electron_thermal_velocity_at_point_209____________________________ (vel_plasma_electron_profile209)_ 8.26339646394571066e+07 +Plasma_electron_thermal_velocity_at_point_210____________________________ (vel_plasma_electron_profile210)_ 8.25361231562921405e+07 +Plasma_electron_thermal_velocity_at_point_211____________________________ (vel_plasma_electron_profile211)_ 8.24377741454681456e+07 +Plasma_electron_thermal_velocity_at_point_212____________________________ (vel_plasma_electron_profile212)_ 8.23389171036349833e+07 +Plasma_electron_thermal_velocity_at_point_213____________________________ (vel_plasma_electron_profile213)_ 8.22395515278040022e+07 +Plasma_electron_thermal_velocity_at_point_214____________________________ (vel_plasma_electron_profile214)_ 8.21396769154296666e+07 +Plasma_electron_thermal_velocity_at_point_215____________________________ (vel_plasma_electron_profile215)_ 8.20392927644922137e+07 +Plasma_electron_thermal_velocity_at_point_216____________________________ (vel_plasma_electron_profile216)_ 8.19383985735822022e+07 +Plasma_electron_thermal_velocity_at_point_217____________________________ (vel_plasma_electron_profile217)_ 8.18369938419882655e+07 +Plasma_electron_thermal_velocity_at_point_218____________________________ (vel_plasma_electron_profile218)_ 8.17350780697854012e+07 +Plasma_electron_thermal_velocity_at_point_219____________________________ (vel_plasma_electron_profile219)_ 8.16326507579272538e+07 +Plasma_electron_thermal_velocity_at_point_220____________________________ (vel_plasma_electron_profile220)_ 8.15297114083379358e+07 +Plasma_electron_thermal_velocity_at_point_221____________________________ (vel_plasma_electron_profile221)_ 8.14262595240085572e+07 +Plasma_electron_thermal_velocity_at_point_222____________________________ (vel_plasma_electron_profile222)_ 8.13222946090947092e+07 +Plasma_electron_thermal_velocity_at_point_223____________________________ (vel_plasma_electron_profile223)_ 8.12178161690167934e+07 +Plasma_electron_thermal_velocity_at_point_224____________________________ (vel_plasma_electron_profile224)_ 8.11128237105622888e+07 +Plasma_electron_thermal_velocity_at_point_225____________________________ (vel_plasma_electron_profile225)_ 8.10073167419901937e+07 +Plasma_electron_thermal_velocity_at_point_226____________________________ (vel_plasma_electron_profile226)_ 8.09012947731394768e+07 +Plasma_electron_thermal_velocity_at_point_227____________________________ (vel_plasma_electron_profile227)_ 8.07947573155384809e+07 +Plasma_electron_thermal_velocity_at_point_228____________________________ (vel_plasma_electron_profile228)_ 8.06877038825170100e+07 +Plasma_electron_thermal_velocity_at_point_229____________________________ (vel_plasma_electron_profile229)_ 8.05801339893229753e+07 +Plasma_electron_thermal_velocity_at_point_230____________________________ (vel_plasma_electron_profile230)_ 8.04720471532392502e+07 +Plasma_electron_thermal_velocity_at_point_231____________________________ (vel_plasma_electron_profile231)_ 8.03634428937046230e+07 +Plasma_electron_thermal_velocity_at_point_232____________________________ (vel_plasma_electron_profile232)_ 8.02543207324388623e+07 +Plasma_electron_thermal_velocity_at_point_233____________________________ (vel_plasma_electron_profile233)_ 8.01446801935668737e+07 +Plasma_electron_thermal_velocity_at_point_234____________________________ (vel_plasma_electron_profile234)_ 8.00345208037517369e+07 +Plasma_electron_thermal_velocity_at_point_235____________________________ (vel_plasma_electron_profile235)_ 7.99238420923250467e+07 +Plasma_electron_thermal_velocity_at_point_236____________________________ (vel_plasma_electron_profile236)_ 7.98126435914241970e+07 +Plasma_electron_thermal_velocity_at_point_237____________________________ (vel_plasma_electron_profile237)_ 7.97009248361315578e+07 +Plasma_electron_thermal_velocity_at_point_238____________________________ (vel_plasma_electron_profile238)_ 7.95886853646171242e+07 +Plasma_electron_thermal_velocity_at_point_239____________________________ (vel_plasma_electron_profile239)_ 7.94759247182845920e+07 +Plasma_electron_thermal_velocity_at_point_240____________________________ (vel_plasma_electron_profile240)_ 7.93626424419219047e+07 +Plasma_electron_thermal_velocity_at_point_241____________________________ (vel_plasma_electron_profile241)_ 7.92488380838536322e+07 +Plasma_electron_thermal_velocity_at_point_242____________________________ (vel_plasma_electron_profile242)_ 7.91345111960986108e+07 +Plasma_electron_thermal_velocity_at_point_243____________________________ (vel_plasma_electron_profile243)_ 7.90196613345308006e+07 +Plasma_electron_thermal_velocity_at_point_244____________________________ (vel_plasma_electron_profile244)_ 7.89042880590439141e+07 +Plasma_electron_thermal_velocity_at_point_245____________________________ (vel_plasma_electron_profile245)_ 7.87883909337205738e+07 +Plasma_electron_thermal_velocity_at_point_246____________________________ (vel_plasma_electron_profile246)_ 7.86719695270052701e+07 +Plasma_electron_thermal_velocity_at_point_247____________________________ (vel_plasma_electron_profile247)_ 7.85550234118815064e+07 +Plasma_electron_thermal_velocity_at_point_248____________________________ (vel_plasma_electron_profile248)_ 7.84375521660535485e+07 +Plasma_electron_thermal_velocity_at_point_249____________________________ (vel_plasma_electron_profile249)_ 7.83195553721318394e+07 +Plasma_electron_thermal_velocity_at_point_250____________________________ (vel_plasma_electron_profile250)_ 7.82010326178240180e+07 +Plasma_electron_thermal_velocity_at_point_251____________________________ (vel_plasma_electron_profile251)_ 7.80819834961305857e+07 +Plasma_electron_thermal_velocity_at_point_252____________________________ (vel_plasma_electron_profile252)_ 7.79624076055445224e+07 +Plasma_electron_thermal_velocity_at_point_253____________________________ (vel_plasma_electron_profile253)_ 7.78423045502558947e+07 +Plasma_electron_thermal_velocity_at_point_254____________________________ (vel_plasma_electron_profile254)_ 7.77216739403635114e+07 +Plasma_electron_thermal_velocity_at_point_255____________________________ (vel_plasma_electron_profile255)_ 7.76005153920878619e+07 +Plasma_electron_thermal_velocity_at_point_256____________________________ (vel_plasma_electron_profile256)_ 7.74788285279944837e+07 +Plasma_electron_thermal_velocity_at_point_257____________________________ (vel_plasma_electron_profile257)_ 7.73566129772173613e+07 +Plasma_electron_thermal_velocity_at_point_258____________________________ (vel_plasma_electron_profile258)_ 7.72338683756935000e+07 +Plasma_electron_thermal_velocity_at_point_259____________________________ (vel_plasma_electron_profile259)_ 7.71105943663979918e+07 +Plasma_electron_thermal_velocity_at_point_260____________________________ (vel_plasma_electron_profile260)_ 7.69867905995889008e+07 +Plasma_electron_thermal_velocity_at_point_261____________________________ (vel_plasma_electron_profile261)_ 7.68624567330564857e+07 +Plasma_electron_thermal_velocity_at_point_262____________________________ (vel_plasma_electron_profile262)_ 7.67375924323796630e+07 +Plasma_electron_thermal_velocity_at_point_263____________________________ (vel_plasma_electron_profile263)_ 7.66121973711871803e+07 +Plasma_electron_thermal_velocity_at_point_264____________________________ (vel_plasma_electron_profile264)_ 7.64862712314270288e+07 +Plasma_electron_thermal_velocity_at_point_265____________________________ (vel_plasma_electron_profile265)_ 7.63598137036423087e+07 +Plasma_electron_thermal_velocity_at_point_266____________________________ (vel_plasma_electron_profile266)_ 7.62328244872538000e+07 +Plasma_electron_thermal_velocity_at_point_267____________________________ (vel_plasma_electron_profile267)_ 7.61053032908495218e+07 +Plasma_electron_thermal_velocity_at_point_268____________________________ (vel_plasma_electron_profile268)_ 7.59772498324825019e+07 +Plasma_electron_thermal_velocity_at_point_269____________________________ (vel_plasma_electron_profile269)_ 7.58486638399742395e+07 +Plasma_electron_thermal_velocity_at_point_270____________________________ (vel_plasma_electron_profile270)_ 7.57195450512288809e+07 +Plasma_electron_thermal_velocity_at_point_271____________________________ (vel_plasma_electron_profile271)_ 7.55898932145523280e+07 +Plasma_electron_thermal_velocity_at_point_272____________________________ (vel_plasma_electron_profile272)_ 7.54597080889811367e+07 +Plasma_electron_thermal_velocity_at_point_273____________________________ (vel_plasma_electron_profile273)_ 7.53289894446205497e+07 +Plasma_electron_thermal_velocity_at_point_274____________________________ (vel_plasma_electron_profile274)_ 7.51977370629884452e+07 +Plasma_electron_thermal_velocity_at_point_275____________________________ (vel_plasma_electron_profile275)_ 7.50659507373719960e+07 +Plasma_electron_thermal_velocity_at_point_276____________________________ (vel_plasma_electron_profile276)_ 7.49336302731902450e+07 +Plasma_electron_thermal_velocity_at_point_277____________________________ (vel_plasma_electron_profile277)_ 7.48007754883671403e+07 +Plasma_electron_thermal_velocity_at_point_278____________________________ (vel_plasma_electron_profile278)_ 7.46673862137154341e+07 +Plasma_electron_thermal_velocity_at_point_279____________________________ (vel_plasma_electron_profile279)_ 7.45334622933285981e+07 +Plasma_electron_thermal_velocity_at_point_280____________________________ (vel_plasma_electron_profile280)_ 7.43990035849837661e+07 +Plasma_electron_thermal_velocity_at_point_281____________________________ (vel_plasma_electron_profile281)_ 7.42640099605563134e+07 +Plasma_electron_thermal_velocity_at_point_282____________________________ (vel_plasma_electron_profile282)_ 7.41284813064437360e+07 +Plasma_electron_thermal_velocity_at_point_283____________________________ (vel_plasma_electron_profile283)_ 7.39924175240000337e+07 +Plasma_electron_thermal_velocity_at_point_284____________________________ (vel_plasma_electron_profile284)_ 7.38558185299846977e+07 +Plasma_electron_thermal_velocity_at_point_285____________________________ (vel_plasma_electron_profile285)_ 7.37186842570192814e+07 +Plasma_electron_thermal_velocity_at_point_286____________________________ (vel_plasma_electron_profile286)_ 7.35810146540604532e+07 +Plasma_electron_thermal_velocity_at_point_287____________________________ (vel_plasma_electron_profile287)_ 7.34428096868807971e+07 +Plasma_electron_thermal_velocity_at_point_288____________________________ (vel_plasma_electron_profile288)_ 7.33040693385669589e+07 +Plasma_electron_thermal_velocity_at_point_289____________________________ (vel_plasma_electron_profile289)_ 7.31647936100276113e+07 +Plasma_electron_thermal_velocity_at_point_290____________________________ (vel_plasma_electron_profile290)_ 7.30249825205172896e+07 +Plasma_electron_thermal_velocity_at_point_291____________________________ (vel_plasma_electron_profile291)_ 7.28846361081719846e+07 +Plasma_electron_thermal_velocity_at_point_292____________________________ (vel_plasma_electron_profile292)_ 7.27437544305616319e+07 +Plasma_electron_thermal_velocity_at_point_293____________________________ (vel_plasma_electron_profile293)_ 7.26023375652549267e+07 +Plasma_electron_thermal_velocity_at_point_294____________________________ (vel_plasma_electron_profile294)_ 7.24603856104016453e+07 +Plasma_electron_thermal_velocity_at_point_295____________________________ (vel_plasma_electron_profile295)_ 7.23178986853282452e+07 +Plasma_electron_thermal_velocity_at_point_296____________________________ (vel_plasma_electron_profile296)_ 7.21748769311522841e+07 +Plasma_electron_thermal_velocity_at_point_297____________________________ (vel_plasma_electron_profile297)_ 7.20313205114107877e+07 +Plasma_electron_thermal_velocity_at_point_298____________________________ (vel_plasma_electron_profile298)_ 7.18872296127082705e+07 +Plasma_electron_thermal_velocity_at_point_299____________________________ (vel_plasma_electron_profile299)_ 7.17426044453803301e+07 +Plasma_electron_thermal_velocity_at_point_300____________________________ (vel_plasma_electron_profile300)_ 7.15974452441765070e+07 +Plasma_electron_thermal_velocity_at_point_301____________________________ (vel_plasma_electron_profile301)_ 7.14517522689612657e+07 +Plasma_electron_thermal_velocity_at_point_302____________________________ (vel_plasma_electron_profile302)_ 7.13055258054357916e+07 +Plasma_electron_thermal_velocity_at_point_303____________________________ (vel_plasma_electron_profile303)_ 7.11587661658765376e+07 +Plasma_electron_thermal_velocity_at_point_304____________________________ (vel_plasma_electron_profile304)_ 7.10114736898977160e+07 +Plasma_electron_thermal_velocity_at_point_305____________________________ (vel_plasma_electron_profile305)_ 7.08636487452331781e+07 +Plasma_electron_thermal_velocity_at_point_306____________________________ (vel_plasma_electron_profile306)_ 7.07152917285390198e+07 +Plasma_electron_thermal_velocity_at_point_307____________________________ (vel_plasma_electron_profile307)_ 7.05664030662208050e+07 +Plasma_electron_thermal_velocity_at_point_308____________________________ (vel_plasma_electron_profile308)_ 7.04169832152826190e+07 +Plasma_electron_thermal_velocity_at_point_309____________________________ (vel_plasma_electron_profile309)_ 7.02670326641999334e+07 +Plasma_electron_thermal_velocity_at_point_310____________________________ (vel_plasma_electron_profile310)_ 7.01165519338170737e+07 +Plasma_electron_thermal_velocity_at_point_311____________________________ (vel_plasma_electron_profile311)_ 6.99655415782704949e+07 +Plasma_electron_thermal_velocity_at_point_312____________________________ (vel_plasma_electron_profile312)_ 6.98140021859382689e+07 +Plasma_electron_thermal_velocity_at_point_313____________________________ (vel_plasma_electron_profile313)_ 6.96619343804140389e+07 +Plasma_electron_thermal_velocity_at_point_314____________________________ (vel_plasma_electron_profile314)_ 6.95093388215132654e+07 +Plasma_electron_thermal_velocity_at_point_315____________________________ (vel_plasma_electron_profile315)_ 6.93562162063039243e+07 +Plasma_electron_thermal_velocity_at_point_316____________________________ (vel_plasma_electron_profile316)_ 6.92025672701684982e+07 +Plasma_electron_thermal_velocity_at_point_317____________________________ (vel_plasma_electron_profile317)_ 6.90483927878977656e+07 +Plasma_electron_thermal_velocity_at_point_318____________________________ (vel_plasma_electron_profile318)_ 6.88936935748121887e+07 +Plasma_electron_thermal_velocity_at_point_319____________________________ (vel_plasma_electron_profile319)_ 6.87384704879203141e+07 +Plasma_electron_thermal_velocity_at_point_320____________________________ (vel_plasma_electron_profile320)_ 6.85827244271078706e+07 +Plasma_electron_thermal_velocity_at_point_321____________________________ (vel_plasma_electron_profile321)_ 6.84264563363615870e+07 +Plasma_electron_thermal_velocity_at_point_322____________________________ (vel_plasma_electron_profile322)_ 6.82696672050306648e+07 +Plasma_electron_thermal_velocity_at_point_323____________________________ (vel_plasma_electron_profile323)_ 6.81123580691218674e+07 +Plasma_electron_thermal_velocity_at_point_324____________________________ (vel_plasma_electron_profile324)_ 6.79545300126359761e+07 +Plasma_electron_thermal_velocity_at_point_325____________________________ (vel_plasma_electron_profile325)_ 6.77961841689423472e+07 +Plasma_electron_thermal_velocity_at_point_326____________________________ (vel_plasma_electron_profile326)_ 6.76373217221918106e+07 +Plasma_electron_thermal_velocity_at_point_327____________________________ (vel_plasma_electron_profile327)_ 6.74779439087759852e+07 +Plasma_electron_thermal_velocity_at_point_328____________________________ (vel_plasma_electron_profile328)_ 6.73180520188262314e+07 +Plasma_electron_thermal_velocity_at_point_329____________________________ (vel_plasma_electron_profile329)_ 6.71576473977585733e+07 +Plasma_electron_thermal_velocity_at_point_330____________________________ (vel_plasma_electron_profile330)_ 6.69967314478653893e+07 +Plasma_electron_thermal_velocity_at_point_331____________________________ (vel_plasma_electron_profile331)_ 6.68353056299541444e+07 +Plasma_electron_thermal_velocity_at_point_332____________________________ (vel_plasma_electron_profile332)_ 6.66733714650362357e+07 +Plasma_electron_thermal_velocity_at_point_333____________________________ (vel_plasma_electron_profile333)_ 6.65109305360661224e+07 +Plasma_electron_thermal_velocity_at_point_334____________________________ (vel_plasma_electron_profile334)_ 6.63479844897336811e+07 +Plasma_electron_thermal_velocity_at_point_335____________________________ (vel_plasma_electron_profile335)_ 6.61845350383114815e+07 +Plasma_electron_thermal_velocity_at_point_336____________________________ (vel_plasma_electron_profile336)_ 6.60205839615580812e+07 +Plasma_electron_thermal_velocity_at_point_337____________________________ (vel_plasma_electron_profile337)_ 6.58561331086801663e+07 +Plasma_electron_thermal_velocity_at_point_338____________________________ (vel_plasma_electron_profile338)_ 6.56911844003542587e+07 +Plasma_electron_thermal_velocity_at_point_339____________________________ (vel_plasma_electron_profile339)_ 6.55257398308122456e+07 +Plasma_electron_thermal_velocity_at_point_340____________________________ (vel_plasma_electron_profile340)_ 6.53598014699897915e+07 +Plasma_electron_thermal_velocity_at_point_341____________________________ (vel_plasma_electron_profile341)_ 6.51933714657445848e+07 +Plasma_electron_thermal_velocity_at_point_342____________________________ (vel_plasma_electron_profile342)_ 6.50264520461399779e+07 +Plasma_electron_thermal_velocity_at_point_343____________________________ (vel_plasma_electron_profile343)_ 6.48590455218040347e+07 +Plasma_electron_thermal_velocity_at_point_344____________________________ (vel_plasma_electron_profile344)_ 6.46911542883605585e+07 +Plasma_electron_thermal_velocity_at_point_345____________________________ (vel_plasma_electron_profile345)_ 6.45227808289381787e+07 +Plasma_electron_thermal_velocity_at_point_346____________________________ (vel_plasma_electron_profile346)_ 6.43539277167576700e+07 +Plasma_electron_thermal_velocity_at_point_347____________________________ (vel_plasma_electron_profile347)_ 6.41845976178042442e+07 +Plasma_electron_thermal_velocity_at_point_348____________________________ (vel_plasma_electron_profile348)_ 6.40147932935819775e+07 +Plasma_electron_thermal_velocity_at_point_349____________________________ (vel_plasma_electron_profile349)_ 6.38445176039603278e+07 +Plasma_electron_thermal_velocity_at_point_350____________________________ (vel_plasma_electron_profile350)_ 6.36737735101106763e+07 +Plasma_electron_thermal_velocity_at_point_351____________________________ (vel_plasma_electron_profile351)_ 6.35025640775353983e+07 +Plasma_electron_thermal_velocity_at_point_352____________________________ (vel_plasma_electron_profile352)_ 6.33308924792024344e+07 +Plasma_electron_thermal_velocity_at_point_353____________________________ (vel_plasma_electron_profile353)_ 6.31587619987742826e+07 +Plasma_electron_thermal_velocity_at_point_354____________________________ (vel_plasma_electron_profile354)_ 6.29861760339490920e+07 +Plasma_electron_thermal_velocity_at_point_355____________________________ (vel_plasma_electron_profile355)_ 6.28131380999076217e+07 +Plasma_electron_thermal_velocity_at_point_356____________________________ (vel_plasma_electron_profile356)_ 6.26396518328772634e+07 +Plasma_electron_thermal_velocity_at_point_357____________________________ (vel_plasma_electron_profile357)_ 6.24657209938124344e+07 +Plasma_electron_thermal_velocity_at_point_358____________________________ (vel_plasma_electron_profile358)_ 6.22913494721995443e+07 +Plasma_electron_thermal_velocity_at_point_359____________________________ (vel_plasma_electron_profile359)_ 6.21165412899880260e+07 +Plasma_electron_thermal_velocity_at_point_360____________________________ (vel_plasma_electron_profile360)_ 6.19413006056546196e+07 +Plasma_electron_thermal_velocity_at_point_361____________________________ (vel_plasma_electron_profile361)_ 6.17656317184052840e+07 +Plasma_electron_thermal_velocity_at_point_362____________________________ (vel_plasma_electron_profile362)_ 6.15895390725197941e+07 +Plasma_electron_thermal_velocity_at_point_363____________________________ (vel_plasma_electron_profile363)_ 6.14130272618441209e+07 +Plasma_electron_thermal_velocity_at_point_364____________________________ (vel_plasma_electron_profile364)_ 6.12361010344392732e+07 +Plasma_electron_thermal_velocity_at_point_365____________________________ (vel_plasma_electron_profile365)_ 6.10587652973863184e+07 +Plasma_electron_thermal_velocity_at_point_366____________________________ (vel_plasma_electron_profile366)_ 6.08810251217640862e+07 +Plasma_electron_thermal_velocity_at_point_367____________________________ (vel_plasma_electron_profile367)_ 6.07028857477927357e+07 +Plasma_electron_thermal_velocity_at_point_368____________________________ (vel_plasma_electron_profile368)_ 6.05243525901648849e+07 +Plasma_electron_thermal_velocity_at_point_369____________________________ (vel_plasma_electron_profile369)_ 6.03454312435590401e+07 +Plasma_electron_thermal_velocity_at_point_370____________________________ (vel_plasma_electron_profile370)_ 6.01661274883509725e+07 +Plasma_electron_thermal_velocity_at_point_371____________________________ (vel_plasma_electron_profile371)_ 5.99864472965270728e+07 +Plasma_electron_thermal_velocity_at_point_372____________________________ (vel_plasma_electron_profile372)_ 5.98063968378088698e+07 +Plasma_electron_thermal_velocity_at_point_373____________________________ (vel_plasma_electron_profile373)_ 5.96259824859992266e+07 +Plasma_electron_thermal_velocity_at_point_374____________________________ (vel_plasma_electron_profile374)_ 5.94452108255559653e+07 +Plasma_electron_thermal_velocity_at_point_375____________________________ (vel_plasma_electron_profile375)_ 5.92640886584070027e+07 +Plasma_electron_thermal_velocity_at_point_376____________________________ (vel_plasma_electron_profile376)_ 5.90826230110130012e+07 +Plasma_electron_thermal_velocity_at_point_377____________________________ (vel_plasma_electron_profile377)_ 5.89008211416887268e+07 +Plasma_electron_thermal_velocity_at_point_378____________________________ (vel_plasma_electron_profile378)_ 5.87186905481989756e+07 +Plasma_electron_thermal_velocity_at_point_379____________________________ (vel_plasma_electron_profile379)_ 5.85362389756347835e+07 +Plasma_electron_thermal_velocity_at_point_380____________________________ (vel_plasma_electron_profile380)_ 5.83534744245835915e+07 +Plasma_electron_thermal_velocity_at_point_381____________________________ (vel_plasma_electron_profile381)_ 5.81704051596104875e+07 +Plasma_electron_thermal_velocity_at_point_382____________________________ (vel_plasma_electron_profile382)_ 5.79870397180592716e+07 +Plasma_electron_thermal_velocity_at_point_383____________________________ (vel_plasma_electron_profile383)_ 5.78033869191907644e+07 +Plasma_electron_thermal_velocity_at_point_384____________________________ (vel_plasma_electron_profile384)_ 5.76194558736703321e+07 +Plasma_electron_thermal_velocity_at_point_385____________________________ (vel_plasma_electron_profile385)_ 5.74352559934258759e+07 +Plasma_electron_thermal_velocity_at_point_386____________________________ (vel_plasma_electron_profile386)_ 5.72507970018870085e+07 +Plasma_electron_thermal_velocity_at_point_387____________________________ (vel_plasma_electron_profile387)_ 5.70660889446304366e+07 +Plasma_electron_thermal_velocity_at_point_388____________________________ (vel_plasma_electron_profile388)_ 5.68811422004402131e+07 +Plasma_electron_thermal_velocity_at_point_389____________________________ (vel_plasma_electron_profile389)_ 5.66959674928150252e+07 +Plasma_electron_thermal_velocity_at_point_390____________________________ (vel_plasma_electron_profile390)_ 5.65105759019344673e+07 +Plasma_electron_thermal_velocity_at_point_391____________________________ (vel_plasma_electron_profile391)_ 5.63249788771096990e+07 +Plasma_electron_thermal_velocity_at_point_392____________________________ (vel_plasma_electron_profile392)_ 5.61391882497427091e+07 +Plasma_electron_thermal_velocity_at_point_393____________________________ (vel_plasma_electron_profile393)_ 5.59532162468185052e+07 +Plasma_electron_thermal_velocity_at_point_394____________________________ (vel_plasma_electron_profile394)_ 5.57670755049580410e+07 +Plasma_electron_thermal_velocity_at_point_395____________________________ (vel_plasma_electron_profile395)_ 5.55807790850570723e+07 +Plasma_electron_thermal_velocity_at_point_396____________________________ (vel_plasma_electron_profile396)_ 5.53943404875473157e+07 +Plasma_electron_thermal_velocity_at_point_397____________________________ (vel_plasma_electron_profile397)_ 5.52077736683025062e+07 +Plasma_electron_thermal_velocity_at_point_398____________________________ (vel_plasma_electron_profile398)_ 5.50210930552336946e+07 +Plasma_electron_thermal_velocity_at_point_399____________________________ (vel_plasma_electron_profile399)_ 5.48343135656028539e+07 +Plasma_electron_thermal_velocity_at_point_400____________________________ (vel_plasma_electron_profile400)_ 5.46474506240974888e+07 +Plasma_electron_thermal_velocity_at_point_401____________________________ (vel_plasma_electron_profile401)_ 5.44605201817064062e+07 +Plasma_electron_thermal_velocity_at_point_402____________________________ (vel_plasma_electron_profile402)_ 5.42735387354407310e+07 +Plasma_electron_thermal_velocity_at_point_403____________________________ (vel_plasma_electron_profile403)_ 5.40865233489490747e+07 +Plasma_electron_thermal_velocity_at_point_404____________________________ (vel_plasma_electron_profile404)_ 5.38994916740774512e+07 +Plasma_electron_thermal_velocity_at_point_405____________________________ (vel_plasma_electron_profile405)_ 5.37124619734265208e+07 +Plasma_electron_thermal_velocity_at_point_406____________________________ (vel_plasma_electron_profile406)_ 5.35254531439719647e+07 +Plasma_electron_thermal_velocity_at_point_407____________________________ (vel_plasma_electron_profile407)_ 5.33384847418008968e+07 +Plasma_electron_thermal_velocity_at_point_408____________________________ (vel_plasma_electron_profile408)_ 5.31515770080438107e+07 +Plasma_electron_thermal_velocity_at_point_409____________________________ (vel_plasma_electron_profile409)_ 5.29647508960664719e+07 +Plasma_electron_thermal_velocity_at_point_410____________________________ (vel_plasma_electron_profile410)_ 5.27780281000096053e+07 +Plasma_electron_thermal_velocity_at_point_411____________________________ (vel_plasma_electron_profile411)_ 5.25914310847581923e+07 +Plasma_electron_thermal_velocity_at_point_412____________________________ (vel_plasma_electron_profile412)_ 5.24049831174351349e+07 +Plasma_electron_thermal_velocity_at_point_413____________________________ (vel_plasma_electron_profile413)_ 5.22187083005201370e+07 +Plasma_electron_thermal_velocity_at_point_414____________________________ (vel_plasma_electron_profile414)_ 5.20326316067113727e+07 +Plasma_electron_thermal_velocity_at_point_415____________________________ (vel_plasma_electron_profile415)_ 5.18467789156424254e+07 +Plasma_electron_thermal_velocity_at_point_416____________________________ (vel_plasma_electron_profile416)_ 5.16611770525894687e+07 +Plasma_electron_thermal_velocity_at_point_417____________________________ (vel_plasma_electron_profile417)_ 5.14758538293193728e+07 +Plasma_electron_thermal_velocity_at_point_418____________________________ (vel_plasma_electron_profile418)_ 5.12908380872298405e+07 +Plasma_electron_thermal_velocity_at_point_419____________________________ (vel_plasma_electron_profile419)_ 5.11061597429588810e+07 +Plasma_electron_thermal_velocity_at_point_420____________________________ (vel_plasma_electron_profile420)_ 5.09218498366591781e+07 +Plasma_electron_thermal_velocity_at_point_421____________________________ (vel_plasma_electron_profile421)_ 5.07379405831453800e+07 +Plasma_electron_thermal_velocity_at_point_422____________________________ (vel_plasma_electron_profile422)_ 5.05544654261500612e+07 +Plasma_electron_thermal_velocity_at_point_423____________________________ (vel_plasma_electron_profile423)_ 5.03714590959527791e+07 +Plasma_electron_thermal_velocity_at_point_424____________________________ (vel_plasma_electron_profile424)_ 5.01889576706662551e+07 +Plasma_electron_thermal_velocity_at_point_425____________________________ (vel_plasma_electron_profile425)_ 5.00069986415060237e+07 +Plasma_electron_thermal_velocity_at_point_426____________________________ (vel_plasma_electron_profile426)_ 4.98256209824058935e+07 +Plasma_electron_thermal_velocity_at_point_427____________________________ (vel_plasma_electron_profile427)_ 4.96448652243771553e+07 +Plasma_electron_thermal_velocity_at_point_428____________________________ (vel_plasma_electron_profile428)_ 4.94647735350760818e+07 +Plasma_electron_thermal_velocity_at_point_429____________________________ (vel_plasma_electron_profile429)_ 4.92853898040834963e+07 +Plasma_electron_thermal_velocity_at_point_430____________________________ (vel_plasma_electron_profile430)_ 4.91067597344793081e+07 +Plasma_electron_thermal_velocity_at_point_431____________________________ (vel_plasma_electron_profile431)_ 4.89289309413705394e+07 +Plasma_electron_thermal_velocity_at_point_432____________________________ (vel_plasma_electron_profile432)_ 4.87519530581186861e+07 +Plasma_electron_thermal_velocity_at_point_433____________________________ (vel_plasma_electron_profile433)_ 4.85758778511232659e+07 +Plasma_electron_thermal_velocity_at_point_434____________________________ (vel_plasma_electron_profile434)_ 4.84007593441391960e+07 +Plasma_electron_thermal_velocity_at_point_435____________________________ (vel_plasma_electron_profile435)_ 4.82266539532549530e+07 +Plasma_electron_thermal_velocity_at_point_436____________________________ (vel_plasma_electron_profile436)_ 4.80536206338371336e+07 +Plasma_electron_thermal_velocity_at_point_437____________________________ (vel_plasma_electron_profile437)_ 4.78817210409472659e+07 +Plasma_electron_thermal_velocity_at_point_438____________________________ (vel_plasma_electron_profile438)_ 4.77110197049961612e+07 +Plasma_electron_thermal_velocity_at_point_439____________________________ (vel_plasma_electron_profile439)_ 4.75415842246900722e+07 +Plasma_electron_thermal_velocity_at_point_440____________________________ (vel_plasma_electron_profile440)_ 4.73734854796995521e+07 +Plasma_electron_thermal_velocity_at_point_441____________________________ (vel_plasma_electron_profile441)_ 4.72067978659106866e+07 +Plasma_electron_thermal_velocity_at_point_442____________________________ (vel_plasma_electron_profile442)_ 4.70415995566692278e+07 +Plasma_electron_thermal_velocity_at_point_443____________________________ (vel_plasma_electron_profile443)_ 4.68779727940872312e+07 +Plasma_electron_thermal_velocity_at_point_444____________________________ (vel_plasma_electron_profile444)_ 4.67160042153133601e+07 +Plasma_electron_thermal_velocity_at_point_445____________________________ (vel_plasma_electron_profile445)_ 4.65557852197006047e+07 +Plasma_electron_thermal_velocity_at_point_446____________________________ (vel_plasma_electron_profile446)_ 4.63974123841041401e+07 +Plasma_electron_thermal_velocity_at_point_447____________________________ (vel_plasma_electron_profile447)_ 4.62409879351956397e+07 +Plasma_electron_thermal_velocity_at_point_448____________________________ (vel_plasma_electron_profile448)_ 4.60866202898082659e+07 +Plasma_electron_thermal_velocity_at_point_449____________________________ (vel_plasma_electron_profile449)_ 4.59344246770508513e+07 +Plasma_electron_thermal_velocity_at_point_450____________________________ (vel_plasma_electron_profile450)_ 4.57845238595529646e+07 +Plasma_electron_thermal_velocity_at_point_451____________________________ (vel_plasma_electron_profile451)_ 4.56370489759259522e+07 +Plasma_electron_thermal_velocity_at_point_452____________________________ (vel_plasma_electron_profile452)_ 4.54921405329281464e+07 +Plasma_electron_thermal_velocity_at_point_453____________________________ (vel_plasma_electron_profile453)_ 4.53499495844883472e+07 +Plasma_electron_thermal_velocity_at_point_454____________________________ (vel_plasma_electron_profile454)_ 4.52106391467129886e+07 +Plasma_electron_thermal_velocity_at_point_455____________________________ (vel_plasma_electron_profile455)_ 4.50743859148454368e+07 +Plasma_electron_thermal_velocity_at_point_456____________________________ (vel_plasma_electron_profile456)_ 4.49413823722184747e+07 +Plasma_electron_thermal_velocity_at_point_457____________________________ (vel_plasma_electron_profile457)_ 4.48118394164734185e+07 +Plasma_electron_thermal_velocity_at_point_458____________________________ (vel_plasma_electron_profile458)_ 4.46859896810627729e+07 +Plasma_electron_thermal_velocity_at_point_459____________________________ (vel_plasma_electron_profile459)_ 4.45640918112467676e+07 +Plasma_electron_thermal_velocity_at_point_460____________________________ (vel_plasma_electron_profile460)_ 4.44464360827021301e+07 +Plasma_electron_thermal_velocity_at_point_461____________________________ (vel_plasma_electron_profile461)_ 4.43333519631478637e+07 +Plasma_electron_thermal_velocity_at_point_462____________________________ (vel_plasma_electron_profile462)_ 4.42252185822026357e+07 +Plasma_electron_thermal_velocity_at_point_463____________________________ (vel_plasma_electron_profile463)_ 4.41224797344696075e+07 +Plasma_electron_thermal_velocity_at_point_464____________________________ (vel_plasma_electron_profile464)_ 4.40256663107143641e+07 +Plasma_electron_thermal_velocity_at_point_465____________________________ (vel_plasma_electron_profile465)_ 4.39354316938530207e+07 +Plasma_electron_thermal_velocity_at_point_466____________________________ (vel_plasma_electron_profile466)_ 4.38526117339265049e+07 +Plasma_electron_thermal_velocity_at_point_467____________________________ (vel_plasma_electron_profile467)_ 4.37783369394538999e+07 +Plasma_electron_thermal_velocity_at_point_468____________________________ (vel_plasma_electron_profile468)_ 4.37142760793513879e+07 +Plasma_electron_thermal_velocity_at_point_469____________________________ (vel_plasma_electron_profile469)_ 4.36633223491819501e+07 Plasma_electron_thermal_velocity_at_point_470____________________________ (vel_plasma_electron_profile470)_ 4.36338039400826097e+07 Plasma_electron_thermal_velocity_at_point_471____________________________ (vel_plasma_electron_profile471)_ 4.29250571041083783e+07 Plasma_electron_thermal_velocity_at_point_472____________________________ (vel_plasma_electron_profile472)_ 4.22036492837272659e+07 @@ -19229,477 +19231,477 @@ Plasma_electron_thermal_velocity_at_point_497____________________________ (vel_p Plasma_electron_thermal_velocity_at_point_498____________________________ (vel_plasma_electron_profile498)_ 1.27119317703267932e+07 Plasma_electron_thermal_velocity_at_point_499____________________________ (vel_plasma_electron_profile499)_ 9.92033394094543532e+06 Plasma_electron_thermal_velocity_at_point_500____________________________ (vel_plasma_electron_profile500)_ 5.93009924760969263e+06 -Volume_averaged_deuteron_thermal_velocity_(m/s)__________________________ (vel_plasma_deuteron_vol_avg)__ 1.09332656092300592e+06 -Plasma_deuteron_thermal_velocity_at_point_0______________________________ (vel_plasma_deuteron_profile0)_ 1.56983626689690491e+06 -Plasma_deuteron_thermal_velocity_at_point_1______________________________ (vel_plasma_deuteron_profile1)_ 1.56983221670454904e+06 -Plasma_deuteron_thermal_velocity_at_point_2______________________________ (vel_plasma_deuteron_profile2)_ 1.56982006610927777e+06 -Plasma_deuteron_thermal_velocity_at_point_3______________________________ (vel_plasma_deuteron_profile3)_ 1.56979981507872464e+06 -Plasma_deuteron_thermal_velocity_at_point_4______________________________ (vel_plasma_deuteron_profile4)_ 1.56977146353139845e+06 -Plasma_deuteron_thermal_velocity_at_point_5______________________________ (vel_plasma_deuteron_profile5)_ 1.56973501138435025e+06 -Plasma_deuteron_thermal_velocity_at_point_6______________________________ (vel_plasma_deuteron_profile6)_ 1.56969045852456288e+06 -Plasma_deuteron_thermal_velocity_at_point_7______________________________ (vel_plasma_deuteron_profile7)_ 1.56963780478669330e+06 -Plasma_deuteron_thermal_velocity_at_point_8______________________________ (vel_plasma_deuteron_profile8)_ 1.56957705002616299e+06 -Plasma_deuteron_thermal_velocity_at_point_9______________________________ (vel_plasma_deuteron_profile9)_ 1.56950819403968798e+06 -Plasma_deuteron_thermal_velocity_at_point_10_____________________________ (vel_plasma_deuteron_profile10)_ 1.56943123659068509e+06 -Plasma_deuteron_thermal_velocity_at_point_11_____________________________ (vel_plasma_deuteron_profile11)_ 1.56934617743468727e+06 -Plasma_deuteron_thermal_velocity_at_point_12_____________________________ (vel_plasma_deuteron_profile12)_ 1.56925301628117636e+06 -Plasma_deuteron_thermal_velocity_at_point_13_____________________________ (vel_plasma_deuteron_profile13)_ 1.56915175285078748e+06 -Plasma_deuteron_thermal_velocity_at_point_14_____________________________ (vel_plasma_deuteron_profile14)_ 1.56904238679580507e+06 -Plasma_deuteron_thermal_velocity_at_point_15_____________________________ (vel_plasma_deuteron_profile15)_ 1.56892491777008004e+06 -Plasma_deuteron_thermal_velocity_at_point_16_____________________________ (vel_plasma_deuteron_profile16)_ 1.56879934538767254e+06 -Plasma_deuteron_thermal_velocity_at_point_17_____________________________ (vel_plasma_deuteron_profile17)_ 1.56866566923553683e+06 -Plasma_deuteron_thermal_velocity_at_point_18_____________________________ (vel_plasma_deuteron_profile18)_ 1.56852388888939423e+06 -Plasma_deuteron_thermal_velocity_at_point_19_____________________________ (vel_plasma_deuteron_profile19)_ 1.56837400387871312e+06 -Plasma_deuteron_thermal_velocity_at_point_20_____________________________ (vel_plasma_deuteron_profile20)_ 1.56821601371211698e+06 -Plasma_deuteron_thermal_velocity_at_point_21_____________________________ (vel_plasma_deuteron_profile21)_ 1.56804991788371047e+06 -Plasma_deuteron_thermal_velocity_at_point_22_____________________________ (vel_plasma_deuteron_profile22)_ 1.56787571584440884e+06 -Plasma_deuteron_thermal_velocity_at_point_23_____________________________ (vel_plasma_deuteron_profile23)_ 1.56769340702734422e+06 -Plasma_deuteron_thermal_velocity_at_point_24_____________________________ (vel_plasma_deuteron_profile24)_ 1.56750299086374347e+06 -Plasma_deuteron_thermal_velocity_at_point_25_____________________________ (vel_plasma_deuteron_profile25)_ 1.56730446671286388e+06 -Plasma_deuteron_thermal_velocity_at_point_26_____________________________ (vel_plasma_deuteron_profile26)_ 1.56709783392559062e+06 -Plasma_deuteron_thermal_velocity_at_point_27_____________________________ (vel_plasma_deuteron_profile27)_ 1.56688309183484502e+06 -Plasma_deuteron_thermal_velocity_at_point_28_____________________________ (vel_plasma_deuteron_profile28)_ 1.56666023974598572e+06 -Plasma_deuteron_thermal_velocity_at_point_29_____________________________ (vel_plasma_deuteron_profile29)_ 1.56642927692401223e+06 -Plasma_deuteron_thermal_velocity_at_point_30_____________________________ (vel_plasma_deuteron_profile30)_ 1.56619020263809524e+06 -Plasma_deuteron_thermal_velocity_at_point_31_____________________________ (vel_plasma_deuteron_profile31)_ 1.56594301609463827e+06 -Plasma_deuteron_thermal_velocity_at_point_32_____________________________ (vel_plasma_deuteron_profile32)_ 1.56568771651047468e+06 -Plasma_deuteron_thermal_velocity_at_point_33_____________________________ (vel_plasma_deuteron_profile33)_ 1.56542430302360118e+06 -Plasma_deuteron_thermal_velocity_at_point_34_____________________________ (vel_plasma_deuteron_profile34)_ 1.56515277480463334e+06 -Plasma_deuteron_thermal_velocity_at_point_35_____________________________ (vel_plasma_deuteron_profile35)_ 1.56487313095476828e+06 -Plasma_deuteron_thermal_velocity_at_point_36_____________________________ (vel_plasma_deuteron_profile36)_ 1.56458537058858713e+06 -Plasma_deuteron_thermal_velocity_at_point_37_____________________________ (vel_plasma_deuteron_profile37)_ 1.56428949276066362e+06 -Plasma_deuteron_thermal_velocity_at_point_38_____________________________ (vel_plasma_deuteron_profile38)_ 1.56398549650374171e+06 -Plasma_deuteron_thermal_velocity_at_point_39_____________________________ (vel_plasma_deuteron_profile39)_ 1.56367338084461610e+06 -Plasma_deuteron_thermal_velocity_at_point_40_____________________________ (vel_plasma_deuteron_profile40)_ 1.56335314475301653e+06 -Plasma_deuteron_thermal_velocity_at_point_41_____________________________ (vel_plasma_deuteron_profile41)_ 1.56302478721491131e+06 -Plasma_deuteron_thermal_velocity_at_point_42_____________________________ (vel_plasma_deuteron_profile42)_ 1.56268830714627099e+06 -Plasma_deuteron_thermal_velocity_at_point_43_____________________________ (vel_plasma_deuteron_profile43)_ 1.56234370346957794e+06 -Plasma_deuteron_thermal_velocity_at_point_44_____________________________ (vel_plasma_deuteron_profile44)_ 1.56199097506267275e+06 -Plasma_deuteron_thermal_velocity_at_point_45_____________________________ (vel_plasma_deuteron_profile45)_ 1.56163012077781488e+06 -Plasma_deuteron_thermal_velocity_at_point_46_____________________________ (vel_plasma_deuteron_profile46)_ 1.56126113947035442e+06 -Plasma_deuteron_thermal_velocity_at_point_47_____________________________ (vel_plasma_deuteron_profile47)_ 1.56088402991237538e+06 -Plasma_deuteron_thermal_velocity_at_point_48_____________________________ (vel_plasma_deuteron_profile48)_ 1.56049879092361475e+06 -Plasma_deuteron_thermal_velocity_at_point_49_____________________________ (vel_plasma_deuteron_profile49)_ 1.56010542120836442e+06 -Plasma_deuteron_thermal_velocity_at_point_50_____________________________ (vel_plasma_deuteron_profile50)_ 1.55970391955038533e+06 -Plasma_deuteron_thermal_velocity_at_point_51_____________________________ (vel_plasma_deuteron_profile51)_ 1.55929428461136878e+06 -Plasma_deuteron_thermal_velocity_at_point_52_____________________________ (vel_plasma_deuteron_profile52)_ 1.55887651508113230e+06 -Plasma_deuteron_thermal_velocity_at_point_53_____________________________ (vel_plasma_deuteron_profile53)_ 1.55845060961996322e+06 -Plasma_deuteron_thermal_velocity_at_point_54_____________________________ (vel_plasma_deuteron_profile54)_ 1.55801656684570061e+06 -Plasma_deuteron_thermal_velocity_at_point_55_____________________________ (vel_plasma_deuteron_profile55)_ 1.55757438535282295e+06 -Plasma_deuteron_thermal_velocity_at_point_56_____________________________ (vel_plasma_deuteron_profile56)_ 1.55712406370914006e+06 -Plasma_deuteron_thermal_velocity_at_point_57_____________________________ (vel_plasma_deuteron_profile57)_ 1.55666560048772790e+06 -Plasma_deuteron_thermal_velocity_at_point_58_____________________________ (vel_plasma_deuteron_profile58)_ 1.55619899419953860e+06 -Plasma_deuteron_thermal_velocity_at_point_59_____________________________ (vel_plasma_deuteron_profile59)_ 1.55572424333812622e+06 -Plasma_deuteron_thermal_velocity_at_point_60_____________________________ (vel_plasma_deuteron_profile60)_ 1.55524134636991937e+06 -Plasma_deuteron_thermal_velocity_at_point_61_____________________________ (vel_plasma_deuteron_profile61)_ 1.55475030175656150e+06 -Plasma_deuteron_thermal_velocity_at_point_62_____________________________ (vel_plasma_deuteron_profile62)_ 1.55425110789383319e+06 -Plasma_deuteron_thermal_velocity_at_point_63_____________________________ (vel_plasma_deuteron_profile63)_ 1.55374376320779463e+06 -Plasma_deuteron_thermal_velocity_at_point_64_____________________________ (vel_plasma_deuteron_profile64)_ 1.55322826604875317e+06 -Plasma_deuteron_thermal_velocity_at_point_65_____________________________ (vel_plasma_deuteron_profile65)_ 1.55270461477459525e+06 -Plasma_deuteron_thermal_velocity_at_point_66_____________________________ (vel_plasma_deuteron_profile66)_ 1.55217280768321268e+06 -Plasma_deuteron_thermal_velocity_at_point_67_____________________________ (vel_plasma_deuteron_profile67)_ 1.55163284309591237e+06 -Plasma_deuteron_thermal_velocity_at_point_68_____________________________ (vel_plasma_deuteron_profile68)_ 1.55108471926087257e+06 -Plasma_deuteron_thermal_velocity_at_point_69_____________________________ (vel_plasma_deuteron_profile69)_ 1.55052843441727664e+06 -Plasma_deuteron_thermal_velocity_at_point_70_____________________________ (vel_plasma_deuteron_profile70)_ 1.54996398680164199e+06 -Plasma_deuteron_thermal_velocity_at_point_71_____________________________ (vel_plasma_deuteron_profile71)_ 1.54939137459942256e+06 -Plasma_deuteron_thermal_velocity_at_point_72_____________________________ (vel_plasma_deuteron_profile72)_ 1.54881059598025307e+06 -Plasma_deuteron_thermal_velocity_at_point_73_____________________________ (vel_plasma_deuteron_profile73)_ 1.54822164908171096e+06 -Plasma_deuteron_thermal_velocity_at_point_74_____________________________ (vel_plasma_deuteron_profile74)_ 1.54762453201883007e+06 -Plasma_deuteron_thermal_velocity_at_point_75_____________________________ (vel_plasma_deuteron_profile75)_ 1.54701924291298119e+06 -Plasma_deuteron_thermal_velocity_at_point_76_____________________________ (vel_plasma_deuteron_profile76)_ 1.54640577978532040e+06 -Plasma_deuteron_thermal_velocity_at_point_77_____________________________ (vel_plasma_deuteron_profile77)_ 1.54578414072109177e+06 -Plasma_deuteron_thermal_velocity_at_point_78_____________________________ (vel_plasma_deuteron_profile78)_ 1.54515432372758514e+06 -Plasma_deuteron_thermal_velocity_at_point_79_____________________________ (vel_plasma_deuteron_profile79)_ 1.54451632679201523e+06 -Plasma_deuteron_thermal_velocity_at_point_80_____________________________ (vel_plasma_deuteron_profile80)_ 1.54387014788783831e+06 -Plasma_deuteron_thermal_velocity_at_point_81_____________________________ (vel_plasma_deuteron_profile81)_ 1.54321578494875296e+06 -Plasma_deuteron_thermal_velocity_at_point_82_____________________________ (vel_plasma_deuteron_profile82)_ 1.54255323592025600e+06 -Plasma_deuteron_thermal_velocity_at_point_83_____________________________ (vel_plasma_deuteron_profile83)_ 1.54188249867866514e+06 -Plasma_deuteron_thermal_velocity_at_point_84_____________________________ (vel_plasma_deuteron_profile84)_ 1.54120357110207481e+06 -Plasma_deuteron_thermal_velocity_at_point_85_____________________________ (vel_plasma_deuteron_profile85)_ 1.54051645103462390e+06 -Plasma_deuteron_thermal_velocity_at_point_86_____________________________ (vel_plasma_deuteron_profile86)_ 1.53982113630250422e+06 -Plasma_deuteron_thermal_velocity_at_point_87_____________________________ (vel_plasma_deuteron_profile87)_ 1.53911762469435763e+06 -Plasma_deuteron_thermal_velocity_at_point_88_____________________________ (vel_plasma_deuteron_profile88)_ 1.53840591400971753e+06 -Plasma_deuteron_thermal_velocity_at_point_89_____________________________ (vel_plasma_deuteron_profile89)_ 1.53768600198429241e+06 -Plasma_deuteron_thermal_velocity_at_point_90_____________________________ (vel_plasma_deuteron_profile90)_ 1.53695788633189630e+06 -Plasma_deuteron_thermal_velocity_at_point_91_____________________________ (vel_plasma_deuteron_profile91)_ 1.53622156477999920e+06 -Plasma_deuteron_thermal_velocity_at_point_92_____________________________ (vel_plasma_deuteron_profile92)_ 1.53547703498840868e+06 -Plasma_deuteron_thermal_velocity_at_point_93_____________________________ (vel_plasma_deuteron_profile93)_ 1.53472429462049808e+06 -Plasma_deuteron_thermal_velocity_at_point_94_____________________________ (vel_plasma_deuteron_profile94)_ 1.53396334132032562e+06 -Plasma_deuteron_thermal_velocity_at_point_95_____________________________ (vel_plasma_deuteron_profile95)_ 1.53319417267991812e+06 -Plasma_deuteron_thermal_velocity_at_point_96_____________________________ (vel_plasma_deuteron_profile96)_ 1.53241678628785047e+06 -Plasma_deuteron_thermal_velocity_at_point_97_____________________________ (vel_plasma_deuteron_profile97)_ 1.53163117969653127e+06 -Plasma_deuteron_thermal_velocity_at_point_98_____________________________ (vel_plasma_deuteron_profile98)_ 1.53083735046109115e+06 -Plasma_deuteron_thermal_velocity_at_point_99_____________________________ (vel_plasma_deuteron_profile99)_ 1.53003529609360546e+06 -Plasma_deuteron_thermal_velocity_at_point_100____________________________ (vel_plasma_deuteron_profile100)_ 1.52922501408242434e+06 -Plasma_deuteron_thermal_velocity_at_point_101____________________________ (vel_plasma_deuteron_profile101)_ 1.52840650188218290e+06 -Plasma_deuteron_thermal_velocity_at_point_102____________________________ (vel_plasma_deuteron_profile102)_ 1.52757975695603294e+06 -Plasma_deuteron_thermal_velocity_at_point_103____________________________ (vel_plasma_deuteron_profile103)_ 1.52674477672977885e+06 -Plasma_deuteron_thermal_velocity_at_point_104____________________________ (vel_plasma_deuteron_profile104)_ 1.52590155859163869e+06 -Plasma_deuteron_thermal_velocity_at_point_105____________________________ (vel_plasma_deuteron_profile105)_ 1.52505009992798488e+06 -Plasma_deuteron_thermal_velocity_at_point_106____________________________ (vel_plasma_deuteron_profile106)_ 1.52419039807737339e+06 -Plasma_deuteron_thermal_velocity_at_point_107____________________________ (vel_plasma_deuteron_profile107)_ 1.52332245040559303e+06 -Plasma_deuteron_thermal_velocity_at_point_108____________________________ (vel_plasma_deuteron_profile108)_ 1.52244625419745757e+06 -Plasma_deuteron_thermal_velocity_at_point_109____________________________ (vel_plasma_deuteron_profile109)_ 1.52156180675151851e+06 -Plasma_deuteron_thermal_velocity_at_point_110____________________________ (vel_plasma_deuteron_profile110)_ 1.52066910531762033e+06 -Plasma_deuteron_thermal_velocity_at_point_111____________________________ (vel_plasma_deuteron_profile111)_ 1.51976814716226514e+06 -Plasma_deuteron_thermal_velocity_at_point_112____________________________ (vel_plasma_deuteron_profile112)_ 1.51885892950938852e+06 -Plasma_deuteron_thermal_velocity_at_point_113____________________________ (vel_plasma_deuteron_profile113)_ 1.51794144955322845e+06 -Plasma_deuteron_thermal_velocity_at_point_114____________________________ (vel_plasma_deuteron_profile114)_ 1.51701570445150579e+06 -Plasma_deuteron_thermal_velocity_at_point_115____________________________ (vel_plasma_deuteron_profile115)_ 1.51608169139097515e+06 -Plasma_deuteron_thermal_velocity_at_point_116____________________________ (vel_plasma_deuteron_profile116)_ 1.51513940750833228e+06 -Plasma_deuteron_thermal_velocity_at_point_117____________________________ (vel_plasma_deuteron_profile117)_ 1.51418884991955571e+06 -Plasma_deuteron_thermal_velocity_at_point_118____________________________ (vel_plasma_deuteron_profile118)_ 1.51323001568671782e+06 -Plasma_deuteron_thermal_velocity_at_point_119____________________________ (vel_plasma_deuteron_profile119)_ 1.51226290193311917e+06 -Plasma_deuteron_thermal_velocity_at_point_120____________________________ (vel_plasma_deuteron_profile120)_ 1.51128750567496638e+06 -Plasma_deuteron_thermal_velocity_at_point_121____________________________ (vel_plasma_deuteron_profile121)_ 1.51030382396951457e+06 -Plasma_deuteron_thermal_velocity_at_point_122____________________________ (vel_plasma_deuteron_profile122)_ 1.50931185382579081e+06 -Plasma_deuteron_thermal_velocity_at_point_123____________________________ (vel_plasma_deuteron_profile123)_ 1.50831159222081024e+06 -Plasma_deuteron_thermal_velocity_at_point_124____________________________ (vel_plasma_deuteron_profile124)_ 1.50730303614233364e+06 -Plasma_deuteron_thermal_velocity_at_point_125____________________________ (vel_plasma_deuteron_profile125)_ 1.50628618255561637e+06 -Plasma_deuteron_thermal_velocity_at_point_126____________________________ (vel_plasma_deuteron_profile126)_ 1.50526102836339106e+06 -Plasma_deuteron_thermal_velocity_at_point_127____________________________ (vel_plasma_deuteron_profile127)_ 1.50422757049503806e+06 -Plasma_deuteron_thermal_velocity_at_point_128____________________________ (vel_plasma_deuteron_profile128)_ 1.50318580584676424e+06 -Plasma_deuteron_thermal_velocity_at_point_129____________________________ (vel_plasma_deuteron_profile129)_ 1.50213573130124412e+06 -Plasma_deuteron_thermal_velocity_at_point_130____________________________ (vel_plasma_deuteron_profile130)_ 1.50107734369416465e+06 -Plasma_deuteron_thermal_velocity_at_point_131____________________________ (vel_plasma_deuteron_profile131)_ 1.50001063989371108e+06 -Plasma_deuteron_thermal_velocity_at_point_132____________________________ (vel_plasma_deuteron_profile132)_ 1.49893561668401095e+06 -Plasma_deuteron_thermal_velocity_at_point_133____________________________ (vel_plasma_deuteron_profile133)_ 1.49785227091121487e+06 -Plasma_deuteron_thermal_velocity_at_point_134____________________________ (vel_plasma_deuteron_profile134)_ 1.49676059931687941e+06 -Plasma_deuteron_thermal_velocity_at_point_135____________________________ (vel_plasma_deuteron_profile135)_ 1.49566059867750807e+06 -Plasma_deuteron_thermal_velocity_at_point_136____________________________ (vel_plasma_deuteron_profile136)_ 1.49455226576777827e+06 -Plasma_deuteron_thermal_velocity_at_point_137____________________________ (vel_plasma_deuteron_profile137)_ 1.49343559728017868e+06 -Plasma_deuteron_thermal_velocity_at_point_138____________________________ (vel_plasma_deuteron_profile138)_ 1.49231058995156130e+06 -Plasma_deuteron_thermal_velocity_at_point_139____________________________ (vel_plasma_deuteron_profile139)_ 1.49117724047948141e+06 -Plasma_deuteron_thermal_velocity_at_point_140____________________________ (vel_plasma_deuteron_profile140)_ 1.49003554552856041e+06 -Plasma_deuteron_thermal_velocity_at_point_141____________________________ (vel_plasma_deuteron_profile141)_ 1.48888550178043754e+06 -Plasma_deuteron_thermal_velocity_at_point_142____________________________ (vel_plasma_deuteron_profile142)_ 1.48772710587328579e+06 -Plasma_deuteron_thermal_velocity_at_point_143____________________________ (vel_plasma_deuteron_profile143)_ 1.48656035443501640e+06 -Plasma_deuteron_thermal_velocity_at_point_144____________________________ (vel_plasma_deuteron_profile144)_ 1.48538524409648380e+06 -Plasma_deuteron_thermal_velocity_at_point_145____________________________ (vel_plasma_deuteron_profile145)_ 1.48420177143416344e+06 -Plasma_deuteron_thermal_velocity_at_point_146____________________________ (vel_plasma_deuteron_profile146)_ 1.48300993305384670e+06 -Plasma_deuteron_thermal_velocity_at_point_147____________________________ (vel_plasma_deuteron_profile147)_ 1.48180972552322922e+06 -Plasma_deuteron_thermal_velocity_at_point_148____________________________ (vel_plasma_deuteron_profile148)_ 1.48060114538504160e+06 -Plasma_deuteron_thermal_velocity_at_point_149____________________________ (vel_plasma_deuteron_profile149)_ 1.47938418920396641e+06 -Plasma_deuteron_thermal_velocity_at_point_150____________________________ (vel_plasma_deuteron_profile150)_ 1.47815885349565418e+06 -Plasma_deuteron_thermal_velocity_at_point_151____________________________ (vel_plasma_deuteron_profile151)_ 1.47692513476010342e+06 -Plasma_deuteron_thermal_velocity_at_point_152____________________________ (vel_plasma_deuteron_profile152)_ 1.47568302954225405e+06 -Plasma_deuteron_thermal_velocity_at_point_153____________________________ (vel_plasma_deuteron_profile153)_ 1.47443253426955733e+06 -Plasma_deuteron_thermal_velocity_at_point_154____________________________ (vel_plasma_deuteron_profile154)_ 1.47317364548156946e+06 -Plasma_deuteron_thermal_velocity_at_point_155____________________________ (vel_plasma_deuteron_profile155)_ 1.47190635958957253e+06 -Plasma_deuteron_thermal_velocity_at_point_156____________________________ (vel_plasma_deuteron_profile156)_ 1.47063067307936912e+06 -Plasma_deuteron_thermal_velocity_at_point_157____________________________ (vel_plasma_deuteron_profile157)_ 1.46934658237219043e+06 -Plasma_deuteron_thermal_velocity_at_point_158____________________________ (vel_plasma_deuteron_profile158)_ 1.46805408391596773e+06 -Plasma_deuteron_thermal_velocity_at_point_159____________________________ (vel_plasma_deuteron_profile159)_ 1.46675317410701257e+06 -Plasma_deuteron_thermal_velocity_at_point_160____________________________ (vel_plasma_deuteron_profile160)_ 1.46544384936107695e+06 -Plasma_deuteron_thermal_velocity_at_point_161____________________________ (vel_plasma_deuteron_profile161)_ 1.46412610609619576e+06 -Plasma_deuteron_thermal_velocity_at_point_162____________________________ (vel_plasma_deuteron_profile162)_ 1.46279994067109912e+06 -Plasma_deuteron_thermal_velocity_at_point_163____________________________ (vel_plasma_deuteron_profile163)_ 1.46146534948032093e+06 -Plasma_deuteron_thermal_velocity_at_point_164____________________________ (vel_plasma_deuteron_profile164)_ 1.46012232889948273e+06 -Plasma_deuteron_thermal_velocity_at_point_165____________________________ (vel_plasma_deuteron_profile165)_ 1.45877087528499705e+06 -Plasma_deuteron_thermal_velocity_at_point_166____________________________ (vel_plasma_deuteron_profile166)_ 1.45741098497719341e+06 -Plasma_deuteron_thermal_velocity_at_point_167____________________________ (vel_plasma_deuteron_profile167)_ 1.45604265435485356e+06 -Plasma_deuteron_thermal_velocity_at_point_168____________________________ (vel_plasma_deuteron_profile168)_ 1.45466587973228958e+06 -Plasma_deuteron_thermal_velocity_at_point_169____________________________ (vel_plasma_deuteron_profile169)_ 1.45328065744465194e+06 -Plasma_deuteron_thermal_velocity_at_point_170____________________________ (vel_plasma_deuteron_profile170)_ 1.45188698383063334e+06 -Plasma_deuteron_thermal_velocity_at_point_171____________________________ (vel_plasma_deuteron_profile171)_ 1.45048485521163396e+06 -Plasma_deuteron_thermal_velocity_at_point_172____________________________ (vel_plasma_deuteron_profile172)_ 1.44907426790179382e+06 -Plasma_deuteron_thermal_velocity_at_point_173____________________________ (vel_plasma_deuteron_profile173)_ 1.44765521820084914e+06 -Plasma_deuteron_thermal_velocity_at_point_174____________________________ (vel_plasma_deuteron_profile174)_ 1.44622770244214102e+06 -Plasma_deuteron_thermal_velocity_at_point_175____________________________ (vel_plasma_deuteron_profile175)_ 1.44479171691314410e+06 -Plasma_deuteron_thermal_velocity_at_point_176____________________________ (vel_plasma_deuteron_profile176)_ 1.44334725792415417e+06 -Plasma_deuteron_thermal_velocity_at_point_177____________________________ (vel_plasma_deuteron_profile177)_ 1.44189432178396336e+06 -Plasma_deuteron_thermal_velocity_at_point_178____________________________ (vel_plasma_deuteron_profile178)_ 1.44043290476846369e+06 -Plasma_deuteron_thermal_velocity_at_point_179____________________________ (vel_plasma_deuteron_profile179)_ 1.43896300319307251e+06 -Plasma_deuteron_thermal_velocity_at_point_180____________________________ (vel_plasma_deuteron_profile180)_ 1.43748461334677017e+06 -Plasma_deuteron_thermal_velocity_at_point_181____________________________ (vel_plasma_deuteron_profile181)_ 1.43599773152649077e+06 -Plasma_deuteron_thermal_velocity_at_point_182____________________________ (vel_plasma_deuteron_profile182)_ 1.43450235404041968e+06 -Plasma_deuteron_thermal_velocity_at_point_183____________________________ (vel_plasma_deuteron_profile183)_ 1.43299847717650142e+06 -Plasma_deuteron_thermal_velocity_at_point_184____________________________ (vel_plasma_deuteron_profile184)_ 1.43148609724393440e+06 -Plasma_deuteron_thermal_velocity_at_point_185____________________________ (vel_plasma_deuteron_profile185)_ 1.42996521054515289e+06 -Plasma_deuteron_thermal_velocity_at_point_186____________________________ (vel_plasma_deuteron_profile186)_ 1.42843581338954158e+06 -Plasma_deuteron_thermal_velocity_at_point_187____________________________ (vel_plasma_deuteron_profile187)_ 1.42689790207926580e+06 -Plasma_deuteron_thermal_velocity_at_point_188____________________________ (vel_plasma_deuteron_profile188)_ 1.42535147294751671e+06 -Plasma_deuteron_thermal_velocity_at_point_189____________________________ (vel_plasma_deuteron_profile189)_ 1.42379652230589627e+06 -Plasma_deuteron_thermal_velocity_at_point_190____________________________ (vel_plasma_deuteron_profile190)_ 1.42223304649319127e+06 -Plasma_deuteron_thermal_velocity_at_point_191____________________________ (vel_plasma_deuteron_profile191)_ 1.42066104182964819e+06 -Plasma_deuteron_thermal_velocity_at_point_192____________________________ (vel_plasma_deuteron_profile192)_ 1.41908050466235518e+06 -Plasma_deuteron_thermal_velocity_at_point_193____________________________ (vel_plasma_deuteron_profile193)_ 1.41749143136516958e+06 -Plasma_deuteron_thermal_velocity_at_point_194____________________________ (vel_plasma_deuteron_profile194)_ 1.41589381826465484e+06 -Plasma_deuteron_thermal_velocity_at_point_195____________________________ (vel_plasma_deuteron_profile195)_ 1.41428766178069566e+06 -Plasma_deuteron_thermal_velocity_at_point_196____________________________ (vel_plasma_deuteron_profile196)_ 1.41267295825729123e+06 -Plasma_deuteron_thermal_velocity_at_point_197____________________________ (vel_plasma_deuteron_profile197)_ 1.41104970411393722e+06 -Plasma_deuteron_thermal_velocity_at_point_198____________________________ (vel_plasma_deuteron_profile198)_ 1.40941789575380692e+06 -Plasma_deuteron_thermal_velocity_at_point_199____________________________ (vel_plasma_deuteron_profile199)_ 1.40777752961305249e+06 -Plasma_deuteron_thermal_velocity_at_point_200____________________________ (vel_plasma_deuteron_profile200)_ 1.40612860210755793e+06 -Plasma_deuteron_thermal_velocity_at_point_201____________________________ (vel_plasma_deuteron_profile201)_ 1.40447110971430689e+06 -Plasma_deuteron_thermal_velocity_at_point_202____________________________ (vel_plasma_deuteron_profile202)_ 1.40280504888972454e+06 -Plasma_deuteron_thermal_velocity_at_point_203____________________________ (vel_plasma_deuteron_profile203)_ 1.40113041615123791e+06 -Plasma_deuteron_thermal_velocity_at_point_204____________________________ (vel_plasma_deuteron_profile204)_ 1.39944720796691044e+06 -Plasma_deuteron_thermal_velocity_at_point_205____________________________ (vel_plasma_deuteron_profile205)_ 1.39775542090127151e+06 -Plasma_deuteron_thermal_velocity_at_point_206____________________________ (vel_plasma_deuteron_profile206)_ 1.39605505151204928e+06 -Plasma_deuteron_thermal_velocity_at_point_207____________________________ (vel_plasma_deuteron_profile207)_ 1.39434609632845200e+06 -Plasma_deuteron_thermal_velocity_at_point_208____________________________ (vel_plasma_deuteron_profile208)_ 1.39262855200840626e+06 -Plasma_deuteron_thermal_velocity_at_point_209____________________________ (vel_plasma_deuteron_profile209)_ 1.39090241511675343e+06 -Plasma_deuteron_thermal_velocity_at_point_210____________________________ (vel_plasma_deuteron_profile210)_ 1.38916768235431146e+06 -Plasma_deuteron_thermal_velocity_at_point_211____________________________ (vel_plasma_deuteron_profile211)_ 1.38742435036074044e+06 -Plasma_deuteron_thermal_velocity_at_point_212____________________________ (vel_plasma_deuteron_profile212)_ 1.38567241585797071e+06 -Plasma_deuteron_thermal_velocity_at_point_213____________________________ (vel_plasma_deuteron_profile213)_ 1.38391187556760083e+06 -Plasma_deuteron_thermal_velocity_at_point_214____________________________ (vel_plasma_deuteron_profile214)_ 1.38214272626122599e+06 -Plasma_deuteron_thermal_velocity_at_point_215____________________________ (vel_plasma_deuteron_profile215)_ 1.38036496474971436e+06 -Plasma_deuteron_thermal_velocity_at_point_216____________________________ (vel_plasma_deuteron_profile216)_ 1.37857858785792510e+06 -Plasma_deuteron_thermal_velocity_at_point_217____________________________ (vel_plasma_deuteron_profile217)_ 1.37678359244634281e+06 -Plasma_deuteron_thermal_velocity_at_point_218____________________________ (vel_plasma_deuteron_profile218)_ 1.37497997541111358e+06 -Plasma_deuteron_thermal_velocity_at_point_219____________________________ (vel_plasma_deuteron_profile219)_ 1.37316773373131361e+06 -Plasma_deuteron_thermal_velocity_at_point_220____________________________ (vel_plasma_deuteron_profile220)_ 1.37134686434197240e+06 -Plasma_deuteron_thermal_velocity_at_point_221____________________________ (vel_plasma_deuteron_profile221)_ 1.36951736429752153e+06 -Plasma_deuteron_thermal_velocity_at_point_222____________________________ (vel_plasma_deuteron_profile222)_ 1.36767923066296778e+06 -Plasma_deuteron_thermal_velocity_at_point_223____________________________ (vel_plasma_deuteron_profile223)_ 1.36583246054300060e+06 -Plasma_deuteron_thermal_velocity_at_point_224____________________________ (vel_plasma_deuteron_profile224)_ 1.36397705108939135e+06 -Plasma_deuteron_thermal_velocity_at_point_225____________________________ (vel_plasma_deuteron_profile225)_ 1.36211299952677218e+06 -Plasma_deuteron_thermal_velocity_at_point_226____________________________ (vel_plasma_deuteron_profile226)_ 1.36024030309427110e+06 -Plasma_deuteron_thermal_velocity_at_point_227____________________________ (vel_plasma_deuteron_profile227)_ 1.35835895908951014e+06 -Plasma_deuteron_thermal_velocity_at_point_228____________________________ (vel_plasma_deuteron_profile228)_ 1.35646896489458415e+06 -Plasma_deuteron_thermal_velocity_at_point_229____________________________ (vel_plasma_deuteron_profile229)_ 1.35457031791386474e+06 -Plasma_deuteron_thermal_velocity_at_point_230____________________________ (vel_plasma_deuteron_profile230)_ 1.35266301562562841e+06 -Plasma_deuteron_thermal_velocity_at_point_231____________________________ (vel_plasma_deuteron_profile231)_ 1.35074705556394556e+06 -Plasma_deuteron_thermal_velocity_at_point_232____________________________ (vel_plasma_deuteron_profile232)_ 1.34882243530042260e+06 -Plasma_deuteron_thermal_velocity_at_point_233____________________________ (vel_plasma_deuteron_profile233)_ 1.34688915250728396e+06 -Plasma_deuteron_thermal_velocity_at_point_234____________________________ (vel_plasma_deuteron_profile234)_ 1.34494720493197511e+06 -Plasma_deuteron_thermal_velocity_at_point_235____________________________ (vel_plasma_deuteron_profile235)_ 1.34299659029725636e+06 -Plasma_deuteron_thermal_velocity_at_point_236____________________________ (vel_plasma_deuteron_profile236)_ 1.34103730653525842e+06 -Plasma_deuteron_thermal_velocity_at_point_237____________________________ (vel_plasma_deuteron_profile237)_ 1.33906935151688871e+06 -Plasma_deuteron_thermal_velocity_at_point_238____________________________ (vel_plasma_deuteron_profile238)_ 1.33709272328258795e+06 -Plasma_deuteron_thermal_velocity_at_point_239____________________________ (vel_plasma_deuteron_profile239)_ 1.33510741990144923e+06 -Plasma_deuteron_thermal_velocity_at_point_240____________________________ (vel_plasma_deuteron_profile240)_ 1.33311343954989826e+06 -Plasma_deuteron_thermal_velocity_at_point_241____________________________ (vel_plasma_deuteron_profile241)_ 1.33111078043366456e+06 -Plasma_deuteron_thermal_velocity_at_point_242____________________________ (vel_plasma_deuteron_profile242)_ 1.32909944092301885e+06 -Plasma_deuteron_thermal_velocity_at_point_243____________________________ (vel_plasma_deuteron_profile243)_ 1.32707941940352926e+06 -Plasma_deuteron_thermal_velocity_at_point_244____________________________ (vel_plasma_deuteron_profile244)_ 1.32505071437396901e+06 -Plasma_deuteron_thermal_velocity_at_point_245____________________________ (vel_plasma_deuteron_profile245)_ 1.32301332446216326e+06 -Plasma_deuteron_thermal_velocity_at_point_246____________________________ (vel_plasma_deuteron_profile246)_ 1.32096724832769437e+06 -Plasma_deuteron_thermal_velocity_at_point_247____________________________ (vel_plasma_deuteron_profile247)_ 1.31891248476040876e+06 -Plasma_deuteron_thermal_velocity_at_point_248____________________________ (vel_plasma_deuteron_profile248)_ 1.31684903267756081e+06 -Plasma_deuteron_thermal_velocity_at_point_249____________________________ (vel_plasma_deuteron_profile249)_ 1.31477689103745949e+06 -Plasma_deuteron_thermal_velocity_at_point_250____________________________ (vel_plasma_deuteron_profile250)_ 1.31269605896514491e+06 -Plasma_deuteron_thermal_velocity_at_point_251____________________________ (vel_plasma_deuteron_profile251)_ 1.31060653564325278e+06 -Plasma_deuteron_thermal_velocity_at_point_252____________________________ (vel_plasma_deuteron_profile252)_ 1.30850832042680262e+06 -Plasma_deuteron_thermal_velocity_at_point_253____________________________ (vel_plasma_deuteron_profile253)_ 1.30640141274142172e+06 -Plasma_deuteron_thermal_velocity_at_point_254____________________________ (vel_plasma_deuteron_profile254)_ 1.30428581215655268e+06 -Plasma_deuteron_thermal_velocity_at_point_255____________________________ (vel_plasma_deuteron_profile255)_ 1.30216151833294821e+06 -Plasma_deuteron_thermal_velocity_at_point_256____________________________ (vel_plasma_deuteron_profile256)_ 1.30002853110398375e+06 -Plasma_deuteron_thermal_velocity_at_point_257____________________________ (vel_plasma_deuteron_profile257)_ 1.29788685040402086e+06 -Plasma_deuteron_thermal_velocity_at_point_258____________________________ (vel_plasma_deuteron_profile258)_ 1.29573647631929186e+06 -Plasma_deuteron_thermal_velocity_at_point_259____________________________ (vel_plasma_deuteron_profile259)_ 1.29357740905059222e+06 -Plasma_deuteron_thermal_velocity_at_point_260____________________________ (vel_plasma_deuteron_profile260)_ 1.29140964898378751e+06 -Plasma_deuteron_thermal_velocity_at_point_261____________________________ (vel_plasma_deuteron_profile261)_ 1.28923319659077562e+06 -Plasma_deuteron_thermal_velocity_at_point_262____________________________ (vel_plasma_deuteron_profile262)_ 1.28704805255816155e+06 -Plasma_deuteron_thermal_velocity_at_point_263____________________________ (vel_plasma_deuteron_profile263)_ 1.28485421766875125e+06 -Plasma_deuteron_thermal_velocity_at_point_264____________________________ (vel_plasma_deuteron_profile264)_ 1.28265169292300241e+06 -Plasma_deuteron_thermal_velocity_at_point_265____________________________ (vel_plasma_deuteron_profile265)_ 1.28044047943185898e+06 -Plasma_deuteron_thermal_velocity_at_point_266____________________________ (vel_plasma_deuteron_profile266)_ 1.27822057850364759e+06 -Plasma_deuteron_thermal_velocity_at_point_267____________________________ (vel_plasma_deuteron_profile267)_ 1.27599199162632669e+06 -Plasma_deuteron_thermal_velocity_at_point_268____________________________ (vel_plasma_deuteron_profile268)_ 1.27375472044957057e+06 -Plasma_deuteron_thermal_velocity_at_point_269____________________________ (vel_plasma_deuteron_profile269)_ 1.27150876681376388e+06 -Plasma_deuteron_thermal_velocity_at_point_270____________________________ (vel_plasma_deuteron_profile270)_ 1.26925413272822415e+06 -Plasma_deuteron_thermal_velocity_at_point_271____________________________ (vel_plasma_deuteron_profile271)_ 1.26699082043190487e+06 -Plasma_deuteron_thermal_velocity_at_point_272____________________________ (vel_plasma_deuteron_profile272)_ 1.26471883232458681e+06 -Plasma_deuteron_thermal_velocity_at_point_273____________________________ (vel_plasma_deuteron_profile273)_ 1.26243817105147662e+06 -Plasma_deuteron_thermal_velocity_at_point_274____________________________ (vel_plasma_deuteron_profile274)_ 1.26014883940662327e+06 -Plasma_deuteron_thermal_velocity_at_point_275____________________________ (vel_plasma_deuteron_profile275)_ 1.25785084047724935e+06 -Plasma_deuteron_thermal_velocity_at_point_276____________________________ (vel_plasma_deuteron_profile276)_ 1.25554417751947907e+06 -Plasma_deuteron_thermal_velocity_at_point_277____________________________ (vel_plasma_deuteron_profile277)_ 1.25322885401982861e+06 -Plasma_deuteron_thermal_velocity_at_point_278____________________________ (vel_plasma_deuteron_profile278)_ 1.25090487371751177e+06 -Plasma_deuteron_thermal_velocity_at_point_279____________________________ (vel_plasma_deuteron_profile279)_ 1.24857224056708487e+06 -Plasma_deuteron_thermal_velocity_at_point_280____________________________ (vel_plasma_deuteron_profile280)_ 1.24623095880078012e+06 -Plasma_deuteron_thermal_velocity_at_point_281____________________________ (vel_plasma_deuteron_profile281)_ 1.24388103289530380e+06 -Plasma_deuteron_thermal_velocity_at_point_282____________________________ (vel_plasma_deuteron_profile282)_ 1.24152246755837998e+06 -Plasma_deuteron_thermal_velocity_at_point_283____________________________ (vel_plasma_deuteron_profile283)_ 1.23915526779971528e+06 -Plasma_deuteron_thermal_velocity_at_point_284____________________________ (vel_plasma_deuteron_profile284)_ 1.23677943889792147e+06 -Plasma_deuteron_thermal_velocity_at_point_285____________________________ (vel_plasma_deuteron_profile285)_ 1.23439498638729705e+06 -Plasma_deuteron_thermal_velocity_at_point_286____________________________ (vel_plasma_deuteron_profile286)_ 1.23200191612952249e+06 -Plasma_deuteron_thermal_velocity_at_point_287____________________________ (vel_plasma_deuteron_profile287)_ 1.22960023426855635e+06 -Plasma_deuteron_thermal_velocity_at_point_288____________________________ (vel_plasma_deuteron_profile288)_ 1.22718994722568686e+06 -Plasma_deuteron_thermal_velocity_at_point_289____________________________ (vel_plasma_deuteron_profile289)_ 1.22477106179231964e+06 -Plasma_deuteron_thermal_velocity_at_point_290____________________________ (vel_plasma_deuteron_profile290)_ 1.22234358501982014e+06 -Plasma_deuteron_thermal_velocity_at_point_291____________________________ (vel_plasma_deuteron_profile291)_ 1.21990752435755054e+06 -Plasma_deuteron_thermal_velocity_at_point_292____________________________ (vel_plasma_deuteron_profile292)_ 1.21746288754671509e+06 -Plasma_deuteron_thermal_velocity_at_point_293____________________________ (vel_plasma_deuteron_profile293)_ 1.21500968266079249e+06 -Plasma_deuteron_thermal_velocity_at_point_294____________________________ (vel_plasma_deuteron_profile294)_ 1.21254791820820188e+06 -Plasma_deuteron_thermal_velocity_at_point_295____________________________ (vel_plasma_deuteron_profile295)_ 1.21007760298476694e+06 -Plasma_deuteron_thermal_velocity_at_point_296____________________________ (vel_plasma_deuteron_profile296)_ 1.20759874621773511e+06 -Plasma_deuteron_thermal_velocity_at_point_297____________________________ (vel_plasma_deuteron_profile297)_ 1.20511135748805595e+06 -Plasma_deuteron_thermal_velocity_at_point_298____________________________ (vel_plasma_deuteron_profile298)_ 1.20261544680937938e+06 -Plasma_deuteron_thermal_velocity_at_point_299____________________________ (vel_plasma_deuteron_profile299)_ 1.20011102457920788e+06 -Plasma_deuteron_thermal_velocity_at_point_300____________________________ (vel_plasma_deuteron_profile300)_ 1.19759810162113025e+06 -Plasma_deuteron_thermal_velocity_at_point_301____________________________ (vel_plasma_deuteron_profile301)_ 1.19507668919005431e+06 -Plasma_deuteron_thermal_velocity_at_point_302____________________________ (vel_plasma_deuteron_profile302)_ 1.19254679899428925e+06 -Plasma_deuteron_thermal_velocity_at_point_303____________________________ (vel_plasma_deuteron_profile303)_ 1.19000844319279795e+06 -Plasma_deuteron_thermal_velocity_at_point_304____________________________ (vel_plasma_deuteron_profile304)_ 1.18746163440926722e+06 -Plasma_deuteron_thermal_velocity_at_point_305____________________________ (vel_plasma_deuteron_profile305)_ 1.18490638576746196e+06 -Plasma_deuteron_thermal_velocity_at_point_306____________________________ (vel_plasma_deuteron_profile306)_ 1.18234271083425288e+06 -Plasma_deuteron_thermal_velocity_at_point_307____________________________ (vel_plasma_deuteron_profile307)_ 1.17977062374379276e+06 -Plasma_deuteron_thermal_velocity_at_point_308____________________________ (vel_plasma_deuteron_profile308)_ 1.17719013911570422e+06 -Plasma_deuteron_thermal_velocity_at_point_309____________________________ (vel_plasma_deuteron_profile309)_ 1.17460127214638959e+06 -Plasma_deuteron_thermal_velocity_at_point_310____________________________ (vel_plasma_deuteron_profile310)_ 1.17200403849301999e+06 -Plasma_deuteron_thermal_velocity_at_point_311____________________________ (vel_plasma_deuteron_profile311)_ 1.16939845447174320e+06 -Plasma_deuteron_thermal_velocity_at_point_312____________________________ (vel_plasma_deuteron_profile312)_ 1.16678453695073584e+06 -Plasma_deuteron_thermal_velocity_at_point_313____________________________ (vel_plasma_deuteron_profile313)_ 1.16416230334473448e+06 -Plasma_deuteron_thermal_velocity_at_point_314____________________________ (vel_plasma_deuteron_profile314)_ 1.16153177176847099e+06 -Plasma_deuteron_thermal_velocity_at_point_315____________________________ (vel_plasma_deuteron_profile315)_ 1.15889296089952043e+06 -Plasma_deuteron_thermal_velocity_at_point_316____________________________ (vel_plasma_deuteron_profile316)_ 1.15624589007234015e+06 -Plasma_deuteron_thermal_velocity_at_point_317____________________________ (vel_plasma_deuteron_profile317)_ 1.15359057930879155e+06 -Plasma_deuteron_thermal_velocity_at_point_318____________________________ (vel_plasma_deuteron_profile318)_ 1.15092704928413359e+06 -Plasma_deuteron_thermal_velocity_at_point_319____________________________ (vel_plasma_deuteron_profile319)_ 1.14825532140123192e+06 -Plasma_deuteron_thermal_velocity_at_point_320____________________________ (vel_plasma_deuteron_profile320)_ 1.14557541775700124e+06 -Plasma_deuteron_thermal_velocity_at_point_321____________________________ (vel_plasma_deuteron_profile321)_ 1.14288736122631072e+06 -Plasma_deuteron_thermal_velocity_at_point_322____________________________ (vel_plasma_deuteron_profile322)_ 1.14019117538087536e+06 -Plasma_deuteron_thermal_velocity_at_point_323____________________________ (vel_plasma_deuteron_profile323)_ 1.13748688464830257e+06 -Plasma_deuteron_thermal_velocity_at_point_324____________________________ (vel_plasma_deuteron_profile324)_ 1.13477451419211226e+06 -Plasma_deuteron_thermal_velocity_at_point_325____________________________ (vel_plasma_deuteron_profile325)_ 1.13205409007216571e+06 -Plasma_deuteron_thermal_velocity_at_point_326____________________________ (vel_plasma_deuteron_profile326)_ 1.12932563912034128e+06 -Plasma_deuteron_thermal_velocity_at_point_327____________________________ (vel_plasma_deuteron_profile327)_ 1.12658918908905284e+06 -Plasma_deuteron_thermal_velocity_at_point_328____________________________ (vel_plasma_deuteron_profile328)_ 1.12384476862001047e+06 -Plasma_deuteron_thermal_velocity_at_point_329____________________________ (vel_plasma_deuteron_profile329)_ 1.12109240726601356e+06 -Plasma_deuteron_thermal_velocity_at_point_330____________________________ (vel_plasma_deuteron_profile330)_ 1.11833213552207686e+06 -Plasma_deuteron_thermal_velocity_at_point_331____________________________ (vel_plasma_deuteron_profile331)_ 1.11556398488394311e+06 -Plasma_deuteron_thermal_velocity_at_point_332____________________________ (vel_plasma_deuteron_profile332)_ 1.11278798780892789e+06 -Plasma_deuteron_thermal_velocity_at_point_333____________________________ (vel_plasma_deuteron_profile333)_ 1.11000417779313424e+06 -Plasma_deuteron_thermal_velocity_at_point_334____________________________ (vel_plasma_deuteron_profile334)_ 1.10721258945443155e+06 -Plasma_deuteron_thermal_velocity_at_point_335____________________________ (vel_plasma_deuteron_profile335)_ 1.10441325838641217e+06 -Plasma_deuteron_thermal_velocity_at_point_336____________________________ (vel_plasma_deuteron_profile336)_ 1.10160622139064851e+06 -Plasma_deuteron_thermal_velocity_at_point_337____________________________ (vel_plasma_deuteron_profile337)_ 1.09879151636753301e+06 -Plasma_deuteron_thermal_velocity_at_point_338____________________________ (vel_plasma_deuteron_profile338)_ 1.09596918242860469e+06 -Plasma_deuteron_thermal_velocity_at_point_339____________________________ (vel_plasma_deuteron_profile339)_ 1.09313925991487829e+06 -Plasma_deuteron_thermal_velocity_at_point_340____________________________ (vel_plasma_deuteron_profile340)_ 1.09030179036981356e+06 -Plasma_deuteron_thermal_velocity_at_point_341____________________________ (vel_plasma_deuteron_profile341)_ 1.08745681664502062e+06 -Plasma_deuteron_thermal_velocity_at_point_342____________________________ (vel_plasma_deuteron_profile342)_ 1.08460438295714417e+06 -Plasma_deuteron_thermal_velocity_at_point_343____________________________ (vel_plasma_deuteron_profile343)_ 1.08174453482124233e+06 -Plasma_deuteron_thermal_velocity_at_point_344____________________________ (vel_plasma_deuteron_profile344)_ 1.07887731920981826e+06 -Plasma_deuteron_thermal_velocity_at_point_345____________________________ (vel_plasma_deuteron_profile345)_ 1.07600278448268049e+06 -Plasma_deuteron_thermal_velocity_at_point_346____________________________ (vel_plasma_deuteron_profile346)_ 1.07312098050641734e+06 -Plasma_deuteron_thermal_velocity_at_point_347____________________________ (vel_plasma_deuteron_profile347)_ 1.07023195873397123e+06 -Plasma_deuteron_thermal_velocity_at_point_348____________________________ (vel_plasma_deuteron_profile348)_ 1.06733577207529196e+06 -Plasma_deuteron_thermal_velocity_at_point_349____________________________ (vel_plasma_deuteron_profile349)_ 1.06443247515972587e+06 -Plasma_deuteron_thermal_velocity_at_point_350____________________________ (vel_plasma_deuteron_profile350)_ 1.06152212421744573e+06 -Plasma_deuteron_thermal_velocity_at_point_351____________________________ (vel_plasma_deuteron_profile351)_ 1.05860477720884723e+06 -Plasma_deuteron_thermal_velocity_at_point_352____________________________ (vel_plasma_deuteron_profile352)_ 1.05568049389479007e+06 -Plasma_deuteron_thermal_velocity_at_point_353____________________________ (vel_plasma_deuteron_profile353)_ 1.05274933580862754e+06 -Plasma_deuteron_thermal_velocity_at_point_354____________________________ (vel_plasma_deuteron_profile354)_ 1.04981136636573286e+06 -Plasma_deuteron_thermal_velocity_at_point_355____________________________ (vel_plasma_deuteron_profile355)_ 1.04686665092258435e+06 -Plasma_deuteron_thermal_velocity_at_point_356____________________________ (vel_plasma_deuteron_profile356)_ 1.04391525680832448e+06 -Plasma_deuteron_thermal_velocity_at_point_357____________________________ (vel_plasma_deuteron_profile357)_ 1.04095725337617367e+06 -Plasma_deuteron_thermal_velocity_at_point_358____________________________ (vel_plasma_deuteron_profile358)_ 1.03799271212796809e+06 -Plasma_deuteron_thermal_velocity_at_point_359____________________________ (vel_plasma_deuteron_profile359)_ 1.03502170669155905e+06 -Plasma_deuteron_thermal_velocity_at_point_360____________________________ (vel_plasma_deuteron_profile360)_ 1.03204431294783519e+06 -Plasma_deuteron_thermal_velocity_at_point_361____________________________ (vel_plasma_deuteron_profile361)_ 1.02906060909707262e+06 -Plasma_deuteron_thermal_velocity_at_point_362____________________________ (vel_plasma_deuteron_profile362)_ 1.02607067566825089e+06 -Plasma_deuteron_thermal_velocity_at_point_363____________________________ (vel_plasma_deuteron_profile363)_ 1.02307459567010496e+06 -Plasma_deuteron_thermal_velocity_at_point_364____________________________ (vel_plasma_deuteron_profile364)_ 1.02007245460804796e+06 -Plasma_deuteron_thermal_velocity_at_point_365____________________________ (vel_plasma_deuteron_profile365)_ 1.01706434059965517e+06 -Plasma_deuteron_thermal_velocity_at_point_366____________________________ (vel_plasma_deuteron_profile366)_ 1.01405034442347987e+06 -Plasma_deuteron_thermal_velocity_at_point_367____________________________ (vel_plasma_deuteron_profile367)_ 1.01103055966265197e+06 -Plasma_deuteron_thermal_velocity_at_point_368____________________________ (vel_plasma_deuteron_profile368)_ 1.00800508267303370e+06 -Plasma_deuteron_thermal_velocity_at_point_369____________________________ (vel_plasma_deuteron_profile369)_ 1.00497401280909695e+06 -Plasma_deuteron_thermal_velocity_at_point_370____________________________ (vel_plasma_deuteron_profile370)_ 1.00193745239512087e+06 -Plasma_deuteron_thermal_velocity_at_point_371____________________________ (vel_plasma_deuteron_profile371)_ 9.98895506945740897e+05 -Plasma_deuteron_thermal_velocity_at_point_372____________________________ (vel_plasma_deuteron_profile372)_ 9.95848285125161638e+05 -Plasma_deuteron_thermal_velocity_at_point_373____________________________ (vel_plasma_deuteron_profile373)_ 9.92795898987177759e+05 -Plasma_deuteron_thermal_velocity_at_point_374____________________________ (vel_plasma_deuteron_profile374)_ 9.89738463952608057e+05 -Plasma_deuteron_thermal_velocity_at_point_375____________________________ (vel_plasma_deuteron_profile375)_ 9.86676099029156147e+05 -Plasma_deuteron_thermal_velocity_at_point_376____________________________ (vel_plasma_deuteron_profile376)_ 9.83608926857974380e+05 -Plasma_deuteron_thermal_velocity_at_point_377____________________________ (vel_plasma_deuteron_profile377)_ 9.80537073837548494e+05 -Plasma_deuteron_thermal_velocity_at_point_378____________________________ (vel_plasma_deuteron_profile378)_ 9.77460670260237530e+05 -Plasma_deuteron_thermal_velocity_at_point_379____________________________ (vel_plasma_deuteron_profile379)_ 9.74379850497589796e+05 -Plasma_deuteron_thermal_velocity_at_point_380____________________________ (vel_plasma_deuteron_profile380)_ 9.71294752999231452e+05 -Plasma_deuteron_thermal_velocity_at_point_381____________________________ (vel_plasma_deuteron_profile381)_ 9.68205520508243120e+05 -Plasma_deuteron_thermal_velocity_at_point_382____________________________ (vel_plasma_deuteron_profile382)_ 9.65112300249728840e+05 -Plasma_deuteron_thermal_velocity_at_point_383____________________________ (vel_plasma_deuteron_profile383)_ 9.62015243951944867e+05 -Plasma_deuteron_thermal_velocity_at_point_384____________________________ (vel_plasma_deuteron_profile384)_ 9.58914508174852934e+05 -Plasma_deuteron_thermal_velocity_at_point_385____________________________ (vel_plasma_deuteron_profile385)_ 9.55810254248397774e+05 -Plasma_deuteron_thermal_velocity_at_point_386____________________________ (vel_plasma_deuteron_profile386)_ 9.52702648649480892e+05 -Plasma_deuteron_thermal_velocity_at_point_387____________________________ (vel_plasma_deuteron_profile387)_ 9.49591863023804617e+05 -Plasma_deuteron_thermal_velocity_at_point_388____________________________ (vel_plasma_deuteron_profile388)_ 9.46478074455866124e+05 -Plasma_deuteron_thermal_velocity_at_point_389____________________________ (vel_plasma_deuteron_profile389)_ 9.43361465601449716e+05 -Plasma_deuteron_thermal_velocity_at_point_390____________________________ (vel_plasma_deuteron_profile390)_ 9.40242224875734537e+05 -Plasma_deuteron_thermal_velocity_at_point_391____________________________ (vel_plasma_deuteron_profile391)_ 9.37120546692960546e+05 -Plasma_deuteron_thermal_velocity_at_point_392____________________________ (vel_plasma_deuteron_profile392)_ 9.33996631689389586e+05 -Plasma_deuteron_thermal_velocity_at_point_393____________________________ (vel_plasma_deuteron_profile393)_ 9.30870686854102532e+05 -Plasma_deuteron_thermal_velocity_at_point_394____________________________ (vel_plasma_deuteron_profile394)_ 9.27742925839681411e+05 -Plasma_deuteron_thermal_velocity_at_point_395____________________________ (vel_plasma_deuteron_profile395)_ 9.24613569165620371e+05 -Plasma_deuteron_thermal_velocity_at_point_396____________________________ (vel_plasma_deuteron_profile396)_ 9.21482844452638179e+05 -Plasma_deuteron_thermal_velocity_at_point_397____________________________ (vel_plasma_deuteron_profile397)_ 9.18350986694014748e+05 -Plasma_deuteron_thermal_velocity_at_point_398____________________________ (vel_plasma_deuteron_profile398)_ 9.15218238553879666e+05 -Plasma_deuteron_thermal_velocity_at_point_399____________________________ (vel_plasma_deuteron_profile399)_ 9.12084850567231653e+05 -Plasma_deuteron_thermal_velocity_at_point_400____________________________ (vel_plasma_deuteron_profile400)_ 9.08951081486249692e+05 -Plasma_deuteron_thermal_velocity_at_point_401____________________________ (vel_plasma_deuteron_profile401)_ 9.05817198561559431e+05 -Plasma_deuteron_thermal_velocity_at_point_402____________________________ (vel_plasma_deuteron_profile402)_ 9.02683477950236760e+05 -Plasma_deuteron_thermal_velocity_at_point_403____________________________ (vel_plasma_deuteron_profile403)_ 8.99550204854223994e+05 -Plasma_deuteron_thermal_velocity_at_point_404____________________________ (vel_plasma_deuteron_profile404)_ 8.96417674083729507e+05 -Plasma_deuteron_thermal_velocity_at_point_405____________________________ (vel_plasma_deuteron_profile405)_ 8.93286190246098558e+05 -Plasma_deuteron_thermal_velocity_at_point_406____________________________ (vel_plasma_deuteron_profile406)_ 8.90156068240193767e+05 -Plasma_deuteron_thermal_velocity_at_point_407____________________________ (vel_plasma_deuteron_profile407)_ 8.87027633596873959e+05 -Plasma_deuteron_thermal_velocity_at_point_408____________________________ (vel_plasma_deuteron_profile408)_ 8.83901222938188119e+05 -Plasma_deuteron_thermal_velocity_at_point_409____________________________ (vel_plasma_deuteron_profile409)_ 8.80777184354162193e+05 -Plasma_deuteron_thermal_velocity_at_point_410____________________________ (vel_plasma_deuteron_profile410)_ 8.77655877945074928e+05 -Plasma_deuteron_thermal_velocity_at_point_411____________________________ (vel_plasma_deuteron_profile411)_ 8.74537676219405024e+05 -Plasma_deuteron_thermal_velocity_at_point_412____________________________ (vel_plasma_deuteron_profile412)_ 8.71422964647064917e+05 -Plasma_deuteron_thermal_velocity_at_point_413____________________________ (vel_plasma_deuteron_profile413)_ 8.68312142239443725e+05 -Plasma_deuteron_thermal_velocity_at_point_414____________________________ (vel_plasma_deuteron_profile414)_ 8.65205621977928095e+05 -Plasma_deuteron_thermal_velocity_at_point_415____________________________ (vel_plasma_deuteron_profile415)_ 8.62103831584497355e+05 -Plasma_deuteron_thermal_velocity_at_point_416____________________________ (vel_plasma_deuteron_profile416)_ 8.59007213939980255e+05 -Plasma_deuteron_thermal_velocity_at_point_417____________________________ (vel_plasma_deuteron_profile417)_ 8.55916227950938512e+05 -Plasma_deuteron_thermal_velocity_at_point_418____________________________ (vel_plasma_deuteron_profile418)_ 8.52831349098151550e+05 -Plasma_deuteron_thermal_velocity_at_point_419____________________________ (vel_plasma_deuteron_profile419)_ 8.49753070233583916e+05 -Plasma_deuteron_thermal_velocity_at_point_420____________________________ (vel_plasma_deuteron_profile420)_ 8.46681902348888223e+05 -Plasma_deuteron_thermal_velocity_at_point_421____________________________ (vel_plasma_deuteron_profile421)_ 8.43618375444339821e+05 -Plasma_deuteron_thermal_velocity_at_point_422____________________________ (vel_plasma_deuteron_profile422)_ 8.40563039280620287e+05 -Plasma_deuteron_thermal_velocity_at_point_423____________________________ (vel_plasma_deuteron_profile423)_ 8.37516464492392843e+05 -Plasma_deuteron_thermal_velocity_at_point_424____________________________ (vel_plasma_deuteron_profile424)_ 8.34479243396679871e+05 -Plasma_deuteron_thermal_velocity_at_point_425____________________________ (vel_plasma_deuteron_profile425)_ 8.31451991207567975e+05 -Plasma_deuteron_thermal_velocity_at_point_426____________________________ (vel_plasma_deuteron_profile426)_ 8.28435347046556300e+05 -Plasma_deuteron_thermal_velocity_at_point_427____________________________ (vel_plasma_deuteron_profile427)_ 8.25429975189705612e+05 -Plasma_deuteron_thermal_velocity_at_point_428____________________________ (vel_plasma_deuteron_profile428)_ 8.22436566405031015e+05 -Plasma_deuteron_thermal_velocity_at_point_429____________________________ (vel_plasma_deuteron_profile429)_ 8.19455839241325855e+05 -Plasma_deuteron_thermal_velocity_at_point_430____________________________ (vel_plasma_deuteron_profile430)_ 8.16488541577605880e+05 -Plasma_deuteron_thermal_velocity_at_point_431____________________________ (vel_plasma_deuteron_profile431)_ 8.13535452260662569e+05 -Plasma_deuteron_thermal_velocity_at_point_432____________________________ (vel_plasma_deuteron_profile432)_ 8.10597382665280253e+05 -Plasma_deuteron_thermal_velocity_at_point_433____________________________ (vel_plasma_deuteron_profile433)_ 8.07675178766498808e+05 -Plasma_deuteron_thermal_velocity_at_point_434____________________________ (vel_plasma_deuteron_profile434)_ 8.04769723046957166e+05 -Plasma_deuteron_thermal_velocity_at_point_435____________________________ (vel_plasma_deuteron_profile435)_ 8.01881936637413455e+05 -Plasma_deuteron_thermal_velocity_at_point_436____________________________ (vel_plasma_deuteron_profile436)_ 7.99012781931312988e+05 -Plasma_deuteron_thermal_velocity_at_point_437____________________________ (vel_plasma_deuteron_profile437)_ 7.96163264868059894e+05 -Plasma_deuteron_thermal_velocity_at_point_438____________________________ (vel_plasma_deuteron_profile438)_ 7.93334438143987674e+05 -Plasma_deuteron_thermal_velocity_at_point_439____________________________ (vel_plasma_deuteron_profile439)_ 7.90527404077160289e+05 -Plasma_deuteron_thermal_velocity_at_point_440____________________________ (vel_plasma_deuteron_profile440)_ 7.87743318228119286e+05 -Plasma_deuteron_thermal_velocity_at_point_441____________________________ (vel_plasma_deuteron_profile441)_ 7.84983393168190029e+05 -Plasma_deuteron_thermal_velocity_at_point_442____________________________ (vel_plasma_deuteron_profile442)_ 7.82248902833999600e+05 -Plasma_deuteron_thermal_velocity_at_point_443____________________________ (vel_plasma_deuteron_profile443)_ 7.79541187195254024e+05 -Plasma_deuteron_thermal_velocity_at_point_444____________________________ (vel_plasma_deuteron_profile444)_ 7.76861657628511777e+05 -Plasma_deuteron_thermal_velocity_at_point_445____________________________ (vel_plasma_deuteron_profile445)_ 7.74211802954856539e+05 -Plasma_deuteron_thermal_velocity_at_point_446____________________________ (vel_plasma_deuteron_profile446)_ 7.71593196122599300e+05 -Plasma_deuteron_thermal_velocity_at_point_447____________________________ (vel_plasma_deuteron_profile447)_ 7.69007502130336012e+05 -Plasma_deuteron_thermal_velocity_at_point_448____________________________ (vel_plasma_deuteron_profile448)_ 7.66456486712665646e+05 -Plasma_deuteron_thermal_velocity_at_point_449____________________________ (vel_plasma_deuteron_profile449)_ 7.63942026549371192e+05 -Plasma_deuteron_thermal_velocity_at_point_450____________________________ (vel_plasma_deuteron_profile450)_ 7.61466121271603275e+05 -Plasma_deuteron_thermal_velocity_at_point_451____________________________ (vel_plasma_deuteron_profile451)_ 7.59030907009213581e+05 -Plasma_deuteron_thermal_velocity_at_point_452____________________________ (vel_plasma_deuteron_profile452)_ 7.56638672899913508e+05 -Plasma_deuteron_thermal_velocity_at_point_453____________________________ (vel_plasma_deuteron_profile453)_ 7.54291880330970977e+05 -Plasma_deuteron_thermal_velocity_at_point_454____________________________ (vel_plasma_deuteron_profile454)_ 7.51993186189269763e+05 -Plasma_deuteron_thermal_velocity_at_point_455____________________________ (vel_plasma_deuteron_profile455)_ 7.49745471137187444e+05 -Plasma_deuteron_thermal_velocity_at_point_456____________________________ (vel_plasma_deuteron_profile456)_ 7.47551874148990493e+05 -Plasma_deuteron_thermal_velocity_at_point_457____________________________ (vel_plasma_deuteron_profile457)_ 7.45415835710685235e+05 -Plasma_deuteron_thermal_velocity_at_point_458____________________________ (vel_plasma_deuteron_profile458)_ 7.43341152532169363e+05 -Plasma_deuteron_thermal_velocity_at_point_459____________________________ (vel_plasma_deuteron_profile459)_ 7.41332047624026309e+05 -Plasma_deuteron_thermal_velocity_at_point_460____________________________ (vel_plasma_deuteron_profile460)_ 7.39393262876318418e+05 -Plasma_deuteron_thermal_velocity_at_point_461____________________________ (vel_plasma_deuteron_profile461)_ 7.37530183381530805e+05 -Plasma_deuteron_thermal_velocity_at_point_462____________________________ (vel_plasma_deuteron_profile462)_ 7.35749009509937954e+05 -Plasma_deuteron_thermal_velocity_at_point_463____________________________ (vel_plasma_deuteron_profile463)_ 7.34057003856028896e+05 -Plasma_deuteron_thermal_velocity_at_point_464____________________________ (vel_plasma_deuteron_profile464)_ 7.32462860070533236e+05 -Plasma_deuteron_thermal_velocity_at_point_465____________________________ (vel_plasma_deuteron_profile465)_ 7.30977285187524511e+05 -Plasma_deuteron_thermal_velocity_at_point_466____________________________ (vel_plasma_deuteron_profile466)_ 7.29613986346707796e+05 -Plasma_deuteron_thermal_velocity_at_point_467____________________________ (vel_plasma_deuteron_profile467)_ 7.28391516468618531e+05 -Plasma_deuteron_thermal_velocity_at_point_468____________________________ (vel_plasma_deuteron_profile468)_ 7.27337282021684689e+05 -Plasma_deuteron_thermal_velocity_at_point_469____________________________ (vel_plasma_deuteron_profile469)_ 7.26498832500973018e+05 +Volume_averaged_deuteron_thermal_velocity_(m/s)__________________________ (vel_plasma_deuteron_vol_avg)__ 1.10212254097169754e+06 +Plasma_deuteron_thermal_velocity_at_point_0______________________________ (vel_plasma_deuteron_profile0)_ 1.58679855052359076e+06 +Plasma_deuteron_thermal_velocity_at_point_1______________________________ (vel_plasma_deuteron_profile1)_ 1.58679443288372294e+06 +Plasma_deuteron_thermal_velocity_at_point_2______________________________ (vel_plasma_deuteron_profile2)_ 1.58678207995031634e+06 +Plasma_deuteron_thermal_velocity_at_point_3______________________________ (vel_plasma_deuteron_profile3)_ 1.58676149166623526e+06 +Plasma_deuteron_thermal_velocity_at_point_4______________________________ (vel_plasma_deuteron_profile4)_ 1.58673266798446304e+06 +Plasma_deuteron_thermal_velocity_at_point_5______________________________ (vel_plasma_deuteron_profile5)_ 1.58669560878320038e+06 +Plasma_deuteron_thermal_velocity_at_point_6______________________________ (vel_plasma_deuteron_profile6)_ 1.58665031396962004e+06 +Plasma_deuteron_thermal_velocity_at_point_7______________________________ (vel_plasma_deuteron_profile7)_ 1.58659678337609465e+06 +Plasma_deuteron_thermal_velocity_at_point_8______________________________ (vel_plasma_deuteron_profile8)_ 1.58653501681363722e+06 +Plasma_deuteron_thermal_velocity_at_point_9______________________________ (vel_plasma_deuteron_profile9)_ 1.58646501409075642e+06 +Plasma_deuteron_thermal_velocity_at_point_10_____________________________ (vel_plasma_deuteron_profile10)_ 1.58638677496312698e+06 +Plasma_deuteron_thermal_velocity_at_point_11_____________________________ (vel_plasma_deuteron_profile11)_ 1.58630029917759588e+06 +Plasma_deuteron_thermal_velocity_at_point_12_____________________________ (vel_plasma_deuteron_profile12)_ 1.58620558643442532e+06 +Plasma_deuteron_thermal_velocity_at_point_13_____________________________ (vel_plasma_deuteron_profile13)_ 1.58610263643130031e+06 +Plasma_deuteron_thermal_velocity_at_point_14_____________________________ (vel_plasma_deuteron_profile14)_ 1.58599144880354381e+06 +Plasma_deuteron_thermal_velocity_at_point_15_____________________________ (vel_plasma_deuteron_profile15)_ 1.58587202320272569e+06 +Plasma_deuteron_thermal_velocity_at_point_16_____________________________ (vel_plasma_deuteron_profile16)_ 1.58574435921170446e+06 +Plasma_deuteron_thermal_velocity_at_point_17_____________________________ (vel_plasma_deuteron_profile17)_ 1.58560845640750718e+06 +Plasma_deuteron_thermal_velocity_at_point_18_____________________________ (vel_plasma_deuteron_profile18)_ 1.58546431433927943e+06 +Plasma_deuteron_thermal_velocity_at_point_19_____________________________ (vel_plasma_deuteron_profile19)_ 1.58531193252510205e+06 +Plasma_deuteron_thermal_velocity_at_point_20_____________________________ (vel_plasma_deuteron_profile20)_ 1.58515131043621479e+06 +Plasma_deuteron_thermal_velocity_at_point_21_____________________________ (vel_plasma_deuteron_profile21)_ 1.58498244756306987e+06 +Plasma_deuteron_thermal_velocity_at_point_22_____________________________ (vel_plasma_deuteron_profile22)_ 1.58480534333346318e+06 +Plasma_deuteron_thermal_velocity_at_point_23_____________________________ (vel_plasma_deuteron_profile23)_ 1.58461999714395776e+06 +Plasma_deuteron_thermal_velocity_at_point_24_____________________________ (vel_plasma_deuteron_profile24)_ 1.58442640838187467e+06 +Plasma_deuteron_thermal_velocity_at_point_25_____________________________ (vel_plasma_deuteron_profile25)_ 1.58422457639691443e+06 +Plasma_deuteron_thermal_velocity_at_point_26_____________________________ (vel_plasma_deuteron_profile26)_ 1.58401450052629597e+06 +Plasma_deuteron_thermal_velocity_at_point_27_____________________________ (vel_plasma_deuteron_profile27)_ 1.58379618004746456e+06 +Plasma_deuteron_thermal_velocity_at_point_28_____________________________ (vel_plasma_deuteron_profile28)_ 1.58356961425677547e+06 +Plasma_deuteron_thermal_velocity_at_point_29_____________________________ (vel_plasma_deuteron_profile29)_ 1.58333480238124519e+06 +Plasma_deuteron_thermal_velocity_at_point_30_____________________________ (vel_plasma_deuteron_profile30)_ 1.58309174363203440e+06 +Plasma_deuteron_thermal_velocity_at_point_31_____________________________ (vel_plasma_deuteron_profile31)_ 1.58284043719494040e+06 +Plasma_deuteron_thermal_velocity_at_point_32_____________________________ (vel_plasma_deuteron_profile32)_ 1.58258088225555490e+06 +Plasma_deuteron_thermal_velocity_at_point_33_____________________________ (vel_plasma_deuteron_profile33)_ 1.58231307792039611e+06 +Plasma_deuteron_thermal_velocity_at_point_34_____________________________ (vel_plasma_deuteron_profile34)_ 1.58203702330824989e+06 +Plasma_deuteron_thermal_velocity_at_point_35_____________________________ (vel_plasma_deuteron_profile35)_ 1.58175271749336040e+06 +Plasma_deuteron_thermal_velocity_at_point_36_____________________________ (vel_plasma_deuteron_profile36)_ 1.58146015953373606e+06 +Plasma_deuteron_thermal_velocity_at_point_37_____________________________ (vel_plasma_deuteron_profile37)_ 1.58115934844899760e+06 +Plasma_deuteron_thermal_velocity_at_point_38_____________________________ (vel_plasma_deuteron_profile38)_ 1.58085028324238188e+06 +Plasma_deuteron_thermal_velocity_at_point_39_____________________________ (vel_plasma_deuteron_profile39)_ 1.58053296287226863e+06 +Plasma_deuteron_thermal_velocity_at_point_40_____________________________ (vel_plasma_deuteron_profile40)_ 1.58020738627417875e+06 +Plasma_deuteron_thermal_velocity_at_point_41_____________________________ (vel_plasma_deuteron_profile41)_ 1.57987355237964517e+06 +Plasma_deuteron_thermal_velocity_at_point_42_____________________________ (vel_plasma_deuteron_profile42)_ 1.57953146007193299e+06 +Plasma_deuteron_thermal_velocity_at_point_43_____________________________ (vel_plasma_deuteron_profile43)_ 1.57918110821436299e+06 +Plasma_deuteron_thermal_velocity_at_point_44_____________________________ (vel_plasma_deuteron_profile44)_ 1.57882249562494992e+06 +Plasma_deuteron_thermal_velocity_at_point_45_____________________________ (vel_plasma_deuteron_profile45)_ 1.57845562113634590e+06 +Plasma_deuteron_thermal_velocity_at_point_46_____________________________ (vel_plasma_deuteron_profile46)_ 1.57808048349462682e+06 +Plasma_deuteron_thermal_velocity_at_point_47_____________________________ (vel_plasma_deuteron_profile47)_ 1.57769708146664384e+06 +Plasma_deuteron_thermal_velocity_at_point_48_____________________________ (vel_plasma_deuteron_profile48)_ 1.57730541377988481e+06 +Plasma_deuteron_thermal_velocity_at_point_49_____________________________ (vel_plasma_deuteron_profile49)_ 1.57690547914450755e+06 +Plasma_deuteron_thermal_velocity_at_point_50_____________________________ (vel_plasma_deuteron_profile50)_ 1.57649727619312145e+06 +Plasma_deuteron_thermal_velocity_at_point_51_____________________________ (vel_plasma_deuteron_profile51)_ 1.57608080360723706e+06 +Plasma_deuteron_thermal_velocity_at_point_52_____________________________ (vel_plasma_deuteron_profile52)_ 1.57565605998110818e+06 +Plasma_deuteron_thermal_velocity_at_point_53_____________________________ (vel_plasma_deuteron_profile53)_ 1.57522304391655815e+06 +Plasma_deuteron_thermal_velocity_at_point_54_____________________________ (vel_plasma_deuteron_profile54)_ 1.57478175395638729e+06 +Plasma_deuteron_thermal_velocity_at_point_55_____________________________ (vel_plasma_deuteron_profile55)_ 1.57433218865393288e+06 +Plasma_deuteron_thermal_velocity_at_point_56_____________________________ (vel_plasma_deuteron_profile56)_ 1.57387434651594888e+06 +Plasma_deuteron_thermal_velocity_at_point_57_____________________________ (vel_plasma_deuteron_profile57)_ 1.57340822602465772e+06 +Plasma_deuteron_thermal_velocity_at_point_58_____________________________ (vel_plasma_deuteron_profile58)_ 1.57293382561860303e+06 +Plasma_deuteron_thermal_velocity_at_point_59_____________________________ (vel_plasma_deuteron_profile59)_ 1.57245114372740407e+06 +Plasma_deuteron_thermal_velocity_at_point_60_____________________________ (vel_plasma_deuteron_profile60)_ 1.57196017877483275e+06 +Plasma_deuteron_thermal_velocity_at_point_61_____________________________ (vel_plasma_deuteron_profile61)_ 1.57146092911522579e+06 +Plasma_deuteron_thermal_velocity_at_point_62_____________________________ (vel_plasma_deuteron_profile62)_ 1.57095339310633391e+06 +Plasma_deuteron_thermal_velocity_at_point_63_____________________________ (vel_plasma_deuteron_profile63)_ 1.57043756904252572e+06 +Plasma_deuteron_thermal_velocity_at_point_64_____________________________ (vel_plasma_deuteron_profile64)_ 1.56991345525946701e+06 +Plasma_deuteron_thermal_velocity_at_point_65_____________________________ (vel_plasma_deuteron_profile65)_ 1.56938104999422468e+06 +Plasma_deuteron_thermal_velocity_at_point_66_____________________________ (vel_plasma_deuteron_profile66)_ 1.56884035148359183e+06 +Plasma_deuteron_thermal_velocity_at_point_67_____________________________ (vel_plasma_deuteron_profile67)_ 1.56829135797035741e+06 +Plasma_deuteron_thermal_velocity_at_point_68_____________________________ (vel_plasma_deuteron_profile68)_ 1.56773406761411508e+06 +Plasma_deuteron_thermal_velocity_at_point_69_____________________________ (vel_plasma_deuteron_profile69)_ 1.56716847858334566e+06 +Plasma_deuteron_thermal_velocity_at_point_70_____________________________ (vel_plasma_deuteron_profile70)_ 1.56659458902348531e+06 +Plasma_deuteron_thermal_velocity_at_point_71_____________________________ (vel_plasma_deuteron_profile71)_ 1.56601239702492999e+06 +Plasma_deuteron_thermal_velocity_at_point_72_____________________________ (vel_plasma_deuteron_profile72)_ 1.56542190069294721e+06 +Plasma_deuteron_thermal_velocity_at_point_73_____________________________ (vel_plasma_deuteron_profile73)_ 1.56482309805195406e+06 +Plasma_deuteron_thermal_velocity_at_point_74_____________________________ (vel_plasma_deuteron_profile74)_ 1.56421598714732681e+06 +Plasma_deuteron_thermal_velocity_at_point_75_____________________________ (vel_plasma_deuteron_profile75)_ 1.56360056598151848e+06 +Plasma_deuteron_thermal_velocity_at_point_76_____________________________ (vel_plasma_deuteron_profile76)_ 1.56297683253621659e+06 +Plasma_deuteron_thermal_velocity_at_point_77_____________________________ (vel_plasma_deuteron_profile77)_ 1.56234478474983922e+06 +Plasma_deuteron_thermal_velocity_at_point_78_____________________________ (vel_plasma_deuteron_profile78)_ 1.56170442055567657e+06 +Plasma_deuteron_thermal_velocity_at_point_79_____________________________ (vel_plasma_deuteron_profile79)_ 1.56105573783702450e+06 +Plasma_deuteron_thermal_velocity_at_point_80_____________________________ (vel_plasma_deuteron_profile80)_ 1.56039873449731292e+06 +Plasma_deuteron_thermal_velocity_at_point_81_____________________________ (vel_plasma_deuteron_profile81)_ 1.55973340834168228e+06 +Plasma_deuteron_thermal_velocity_at_point_82_____________________________ (vel_plasma_deuteron_profile82)_ 1.55905975721746357e+06 +Plasma_deuteron_thermal_velocity_at_point_83_____________________________ (vel_plasma_deuteron_profile83)_ 1.55837777891810820e+06 +Plasma_deuteron_thermal_velocity_at_point_84_____________________________ (vel_plasma_deuteron_profile84)_ 1.55768747118936083e+06 +Plasma_deuteron_thermal_velocity_at_point_85_____________________________ (vel_plasma_deuteron_profile85)_ 1.55698883180593676e+06 +Plasma_deuteron_thermal_velocity_at_point_86_____________________________ (vel_plasma_deuteron_profile86)_ 1.55628185846888297e+06 +Plasma_deuteron_thermal_velocity_at_point_87_____________________________ (vel_plasma_deuteron_profile87)_ 1.55556654887264105e+06 +Plasma_deuteron_thermal_velocity_at_point_88_____________________________ (vel_plasma_deuteron_profile88)_ 1.55484290067282226e+06 +Plasma_deuteron_thermal_velocity_at_point_89_____________________________ (vel_plasma_deuteron_profile89)_ 1.55411091151488363e+06 +Plasma_deuteron_thermal_velocity_at_point_90_____________________________ (vel_plasma_deuteron_profile90)_ 1.55337057901791902e+06 +Plasma_deuteron_thermal_velocity_at_point_91_____________________________ (vel_plasma_deuteron_profile91)_ 1.55262190077768383e+06 +Plasma_deuteron_thermal_velocity_at_point_92_____________________________ (vel_plasma_deuteron_profile92)_ 1.55186487435997790e+06 +Plasma_deuteron_thermal_velocity_at_point_93_____________________________ (vel_plasma_deuteron_profile93)_ 1.55109949728757865e+06 +Plasma_deuteron_thermal_velocity_at_point_94_____________________________ (vel_plasma_deuteron_profile94)_ 1.55032576708183601e+06 +Plasma_deuteron_thermal_velocity_at_point_95_____________________________ (vel_plasma_deuteron_profile95)_ 1.54954368124643783e+06 +Plasma_deuteron_thermal_velocity_at_point_96_____________________________ (vel_plasma_deuteron_profile96)_ 1.54875323721891013e+06 +Plasma_deuteron_thermal_velocity_at_point_97_____________________________ (vel_plasma_deuteron_profile97)_ 1.54795443246055581e+06 +Plasma_deuteron_thermal_velocity_at_point_98_____________________________ (vel_plasma_deuteron_profile98)_ 1.54714726437253808e+06 +Plasma_deuteron_thermal_velocity_at_point_99_____________________________ (vel_plasma_deuteron_profile99)_ 1.54633173036656249e+06 +Plasma_deuteron_thermal_velocity_at_point_100____________________________ (vel_plasma_deuteron_profile100)_ 1.54550782777115074e+06 +Plasma_deuteron_thermal_velocity_at_point_101____________________________ (vel_plasma_deuteron_profile101)_ 1.54467555396693037e+06 +Plasma_deuteron_thermal_velocity_at_point_102____________________________ (vel_plasma_deuteron_profile102)_ 1.54383490624767146e+06 +Plasma_deuteron_thermal_velocity_at_point_103____________________________ (vel_plasma_deuteron_profile103)_ 1.54298588191044074e+06 +Plasma_deuteron_thermal_velocity_at_point_104____________________________ (vel_plasma_deuteron_profile104)_ 1.54212847822634829e+06 +Plasma_deuteron_thermal_velocity_at_point_105____________________________ (vel_plasma_deuteron_profile105)_ 1.54126269243708905e+06 +Plasma_deuteron_thermal_velocity_at_point_106____________________________ (vel_plasma_deuteron_profile106)_ 1.54038852175795031e+06 +Plasma_deuteron_thermal_velocity_at_point_107____________________________ (vel_plasma_deuteron_profile107)_ 1.53950596338730888e+06 +Plasma_deuteron_thermal_velocity_at_point_108____________________________ (vel_plasma_deuteron_profile108)_ 1.53861501449994300e+06 +Plasma_deuteron_thermal_velocity_at_point_109____________________________ (vel_plasma_deuteron_profile109)_ 1.53771567224032409e+06 +Plasma_deuteron_thermal_velocity_at_point_110____________________________ (vel_plasma_deuteron_profile110)_ 1.53680793374509620e+06 +Plasma_deuteron_thermal_velocity_at_point_111____________________________ (vel_plasma_deuteron_profile111)_ 1.53589179609417147e+06 +Plasma_deuteron_thermal_velocity_at_point_112____________________________ (vel_plasma_deuteron_profile112)_ 1.53496725638841046e+06 +Plasma_deuteron_thermal_velocity_at_point_113____________________________ (vel_plasma_deuteron_profile113)_ 1.53403431166171446e+06 +Plasma_deuteron_thermal_velocity_at_point_114____________________________ (vel_plasma_deuteron_profile114)_ 1.53309295896852552e+06 +Plasma_deuteron_thermal_velocity_at_point_115____________________________ (vel_plasma_deuteron_profile115)_ 1.53214319529906474e+06 +Plasma_deuteron_thermal_velocity_at_point_116____________________________ (vel_plasma_deuteron_profile116)_ 1.53118501763761928e+06 +Plasma_deuteron_thermal_velocity_at_point_117____________________________ (vel_plasma_deuteron_profile117)_ 1.53021842296561785e+06 +Plasma_deuteron_thermal_velocity_at_point_118____________________________ (vel_plasma_deuteron_profile118)_ 1.52924340821578237e+06 +Plasma_deuteron_thermal_velocity_at_point_119____________________________ (vel_plasma_deuteron_profile119)_ 1.52825997029139125e+06 +Plasma_deuteron_thermal_velocity_at_point_120____________________________ (vel_plasma_deuteron_profile120)_ 1.52726810611174884e+06 +Plasma_deuteron_thermal_velocity_at_point_121____________________________ (vel_plasma_deuteron_profile121)_ 1.52626781253361423e+06 +Plasma_deuteron_thermal_velocity_at_point_122____________________________ (vel_plasma_deuteron_profile122)_ 1.52525908642932982e+06 +Plasma_deuteron_thermal_velocity_at_point_123____________________________ (vel_plasma_deuteron_profile123)_ 1.52424192458850308e+06 +Plasma_deuteron_thermal_velocity_at_point_124____________________________ (vel_plasma_deuteron_profile124)_ 1.52321632386822067e+06 +Plasma_deuteron_thermal_velocity_at_point_125____________________________ (vel_plasma_deuteron_profile125)_ 1.52218228102594567e+06 +Plasma_deuteron_thermal_velocity_at_point_126____________________________ (vel_plasma_deuteron_profile126)_ 1.52113979282395355e+06 +Plasma_deuteron_thermal_velocity_at_point_127____________________________ (vel_plasma_deuteron_profile127)_ 1.52008885601932369e+06 +Plasma_deuteron_thermal_velocity_at_point_128____________________________ (vel_plasma_deuteron_profile128)_ 1.51902946734403563e+06 +Plasma_deuteron_thermal_velocity_at_point_129____________________________ (vel_plasma_deuteron_profile129)_ 1.51796162347183120e+06 +Plasma_deuteron_thermal_velocity_at_point_130____________________________ (vel_plasma_deuteron_profile130)_ 1.51688532110992027e+06 +Plasma_deuteron_thermal_velocity_at_point_131____________________________ (vel_plasma_deuteron_profile131)_ 1.51580055691992189e+06 +Plasma_deuteron_thermal_velocity_at_point_132____________________________ (vel_plasma_deuteron_profile132)_ 1.51470732753398316e+06 +Plasma_deuteron_thermal_velocity_at_point_133____________________________ (vel_plasma_deuteron_profile133)_ 1.51360562955778278e+06 +Plasma_deuteron_thermal_velocity_at_point_134____________________________ (vel_plasma_deuteron_profile134)_ 1.51249545961972326e+06 +Plasma_deuteron_thermal_velocity_at_point_135____________________________ (vel_plasma_deuteron_profile135)_ 1.51137681428830023e+06 +Plasma_deuteron_thermal_velocity_at_point_136____________________________ (vel_plasma_deuteron_profile136)_ 1.51024969012124091e+06 +Plasma_deuteron_thermal_velocity_at_point_137____________________________ (vel_plasma_deuteron_profile137)_ 1.50911408368180133e+06 +Plasma_deuteron_thermal_velocity_at_point_138____________________________ (vel_plasma_deuteron_profile138)_ 1.50796999148234958e+06 +Plasma_deuteron_thermal_velocity_at_point_139____________________________ (vel_plasma_deuteron_profile139)_ 1.50681741000384302e+06 +Plasma_deuteron_thermal_velocity_at_point_140____________________________ (vel_plasma_deuteron_profile140)_ 1.50565633578166435e+06 +Plasma_deuteron_thermal_velocity_at_point_141____________________________ (vel_plasma_deuteron_profile141)_ 1.50448676524645905e+06 +Plasma_deuteron_thermal_velocity_at_point_142____________________________ (vel_plasma_deuteron_profile142)_ 1.50330869486623514e+06 +Plasma_deuteron_thermal_velocity_at_point_143____________________________ (vel_plasma_deuteron_profile143)_ 1.50212212105663237e+06 +Plasma_deuteron_thermal_velocity_at_point_144____________________________ (vel_plasma_deuteron_profile144)_ 1.50092704026028933e+06 +Plasma_deuteron_thermal_velocity_at_point_145____________________________ (vel_plasma_deuteron_profile145)_ 1.49972344884362235e+06 +Plasma_deuteron_thermal_velocity_at_point_146____________________________ (vel_plasma_deuteron_profile146)_ 1.49851134320951230e+06 +Plasma_deuteron_thermal_velocity_at_point_147____________________________ (vel_plasma_deuteron_profile147)_ 1.49729071972727473e+06 +Plasma_deuteron_thermal_velocity_at_point_148____________________________ (vel_plasma_deuteron_profile148)_ 1.49606157471564179e+06 +Plasma_deuteron_thermal_velocity_at_point_149____________________________ (vel_plasma_deuteron_profile149)_ 1.49482390454247384e+06 +Plasma_deuteron_thermal_velocity_at_point_150____________________________ (vel_plasma_deuteron_profile150)_ 1.49357770548445918e+06 +Plasma_deuteron_thermal_velocity_at_point_151____________________________ (vel_plasma_deuteron_profile151)_ 1.49232297388365190e+06 +Plasma_deuteron_thermal_velocity_at_point_152____________________________ (vel_plasma_deuteron_profile152)_ 1.49105970599361975e+06 +Plasma_deuteron_thermal_velocity_at_point_153____________________________ (vel_plasma_deuteron_profile153)_ 1.48978789809606643e+06 +Plasma_deuteron_thermal_velocity_at_point_154____________________________ (vel_plasma_deuteron_profile154)_ 1.48850754644711199e+06 +Plasma_deuteron_thermal_velocity_at_point_155____________________________ (vel_plasma_deuteron_profile155)_ 1.48721864728367468e+06 +Plasma_deuteron_thermal_velocity_at_point_156____________________________ (vel_plasma_deuteron_profile156)_ 1.48592119683996146e+06 +Plasma_deuteron_thermal_velocity_at_point_157____________________________ (vel_plasma_deuteron_profile157)_ 1.48461519132035528e+06 +Plasma_deuteron_thermal_velocity_at_point_158____________________________ (vel_plasma_deuteron_profile158)_ 1.48330062692597322e+06 +Plasma_deuteron_thermal_velocity_at_point_159____________________________ (vel_plasma_deuteron_profile159)_ 1.48197749985779845e+06 +Plasma_deuteron_thermal_velocity_at_point_160____________________________ (vel_plasma_deuteron_profile160)_ 1.48064580628950638e+06 +Plasma_deuteron_thermal_velocity_at_point_161____________________________ (vel_plasma_deuteron_profile161)_ 1.47930554235025519e+06 +Plasma_deuteron_thermal_velocity_at_point_162____________________________ (vel_plasma_deuteron_profile162)_ 1.47795670423565898e+06 +Plasma_deuteron_thermal_velocity_at_point_163____________________________ (vel_plasma_deuteron_profile163)_ 1.47659928806258179e+06 +Plasma_deuteron_thermal_velocity_at_point_164____________________________ (vel_plasma_deuteron_profile164)_ 1.47523328996662656e+06 +Plasma_deuteron_thermal_velocity_at_point_165____________________________ (vel_plasma_deuteron_profile165)_ 1.47385870607830118e+06 +Plasma_deuteron_thermal_velocity_at_point_166____________________________ (vel_plasma_deuteron_profile166)_ 1.47247553247872135e+06 +Plasma_deuteron_thermal_velocity_at_point_167____________________________ (vel_plasma_deuteron_profile167)_ 1.47108376527715591e+06 +Plasma_deuteron_thermal_velocity_at_point_168____________________________ (vel_plasma_deuteron_profile168)_ 1.46968340057698428e+06 +Plasma_deuteron_thermal_velocity_at_point_169____________________________ (vel_plasma_deuteron_profile169)_ 1.46827443444825546e+06 +Plasma_deuteron_thermal_velocity_at_point_170____________________________ (vel_plasma_deuteron_profile170)_ 1.46685686295111012e+06 +Plasma_deuteron_thermal_velocity_at_point_171____________________________ (vel_plasma_deuteron_profile171)_ 1.46543068217635388e+06 +Plasma_deuteron_thermal_velocity_at_point_172____________________________ (vel_plasma_deuteron_profile172)_ 1.46399588817721815e+06 +Plasma_deuteron_thermal_velocity_at_point_173____________________________ (vel_plasma_deuteron_profile173)_ 1.46255247698941454e+06 +Plasma_deuteron_thermal_velocity_at_point_174____________________________ (vel_plasma_deuteron_profile174)_ 1.46110044467178732e+06 +Plasma_deuteron_thermal_velocity_at_point_175____________________________ (vel_plasma_deuteron_profile175)_ 1.45963978724809131e+06 +Plasma_deuteron_thermal_velocity_at_point_176____________________________ (vel_plasma_deuteron_profile176)_ 1.45817050076474482e+06 +Plasma_deuteron_thermal_velocity_at_point_177____________________________ (vel_plasma_deuteron_profile177)_ 1.45669258124961145e+06 +Plasma_deuteron_thermal_velocity_at_point_178____________________________ (vel_plasma_deuteron_profile178)_ 1.45520602471852652e+06 +Plasma_deuteron_thermal_velocity_at_point_179____________________________ (vel_plasma_deuteron_profile179)_ 1.45371082720588846e+06 +Plasma_deuteron_thermal_velocity_at_point_180____________________________ (vel_plasma_deuteron_profile180)_ 1.45220698472672491e+06 +Plasma_deuteron_thermal_velocity_at_point_181____________________________ (vel_plasma_deuteron_profile181)_ 1.45069449330730992e+06 +Plasma_deuteron_thermal_velocity_at_point_182____________________________ (vel_plasma_deuteron_profile182)_ 1.44917334892989974e+06 +Plasma_deuteron_thermal_velocity_at_point_183____________________________ (vel_plasma_deuteron_profile183)_ 1.44764354764254787e+06 +Plasma_deuteron_thermal_velocity_at_point_184____________________________ (vel_plasma_deuteron_profile184)_ 1.44610508544881199e+06 +Plasma_deuteron_thermal_velocity_at_point_185____________________________ (vel_plasma_deuteron_profile185)_ 1.44455795835908642e+06 +Plasma_deuteron_thermal_velocity_at_point_186____________________________ (vel_plasma_deuteron_profile186)_ 1.44300216238693986e+06 +Plasma_deuteron_thermal_velocity_at_point_187____________________________ (vel_plasma_deuteron_profile187)_ 1.44143769355927827e+06 +Plasma_deuteron_thermal_velocity_at_point_188____________________________ (vel_plasma_deuteron_profile188)_ 1.43986454787459574e+06 +Plasma_deuteron_thermal_velocity_at_point_189____________________________ (vel_plasma_deuteron_profile189)_ 1.43828272137889406e+06 +Plasma_deuteron_thermal_velocity_at_point_190____________________________ (vel_plasma_deuteron_profile190)_ 1.43669221007541404e+06 +Plasma_deuteron_thermal_velocity_at_point_191____________________________ (vel_plasma_deuteron_profile191)_ 1.43509301001454773e+06 +Plasma_deuteron_thermal_velocity_at_point_192____________________________ (vel_plasma_deuteron_profile192)_ 1.43348511721729208e+06 +Plasma_deuteron_thermal_velocity_at_point_193____________________________ (vel_plasma_deuteron_profile193)_ 1.43186852773407637e+06 +Plasma_deuteron_thermal_velocity_at_point_194____________________________ (vel_plasma_deuteron_profile194)_ 1.43024323760631634e+06 +Plasma_deuteron_thermal_velocity_at_point_195____________________________ (vel_plasma_deuteron_profile195)_ 1.42860924289755290e+06 +Plasma_deuteron_thermal_velocity_at_point_196____________________________ (vel_plasma_deuteron_profile196)_ 1.42696653967935336e+06 +Plasma_deuteron_thermal_velocity_at_point_197____________________________ (vel_plasma_deuteron_profile197)_ 1.42531512402061536e+06 +Plasma_deuteron_thermal_velocity_at_point_198____________________________ (vel_plasma_deuteron_profile198)_ 1.42365499200483365e+06 +Plasma_deuteron_thermal_velocity_at_point_199____________________________ (vel_plasma_deuteron_profile199)_ 1.42198613972292817e+06 +Plasma_deuteron_thermal_velocity_at_point_200____________________________ (vel_plasma_deuteron_profile200)_ 1.42030856329412269e+06 +Plasma_deuteron_thermal_velocity_at_point_201____________________________ (vel_plasma_deuteron_profile201)_ 1.41862225885532284e+06 +Plasma_deuteron_thermal_velocity_at_point_202____________________________ (vel_plasma_deuteron_profile202)_ 1.41692722251872974e+06 +Plasma_deuteron_thermal_velocity_at_point_203____________________________ (vel_plasma_deuteron_profile203)_ 1.41522345043843426e+06 +Plasma_deuteron_thermal_velocity_at_point_204____________________________ (vel_plasma_deuteron_profile204)_ 1.41351093880689982e+06 +Plasma_deuteron_thermal_velocity_at_point_205____________________________ (vel_plasma_deuteron_profile205)_ 1.41178968378074816e+06 +Plasma_deuteron_thermal_velocity_at_point_206____________________________ (vel_plasma_deuteron_profile206)_ 1.41005968158291094e+06 +Plasma_deuteron_thermal_velocity_at_point_207____________________________ (vel_plasma_deuteron_profile207)_ 1.40832092843549163e+06 +Plasma_deuteron_thermal_velocity_at_point_208____________________________ (vel_plasma_deuteron_profile208)_ 1.40657342058790126e+06 +Plasma_deuteron_thermal_velocity_at_point_209____________________________ (vel_plasma_deuteron_profile209)_ 1.40481715430613863e+06 +Plasma_deuteron_thermal_velocity_at_point_210____________________________ (vel_plasma_deuteron_profile210)_ 1.40305212587266206e+06 +Plasma_deuteron_thermal_velocity_at_point_211____________________________ (vel_plasma_deuteron_profile211)_ 1.40127833159338008e+06 +Plasma_deuteron_thermal_velocity_at_point_212____________________________ (vel_plasma_deuteron_profile212)_ 1.39949576783321728e+06 +Plasma_deuteron_thermal_velocity_at_point_213____________________________ (vel_plasma_deuteron_profile213)_ 1.39770443094843975e+06 +Plasma_deuteron_thermal_velocity_at_point_214____________________________ (vel_plasma_deuteron_profile214)_ 1.39590431732211332e+06 +Plasma_deuteron_thermal_velocity_at_point_215____________________________ (vel_plasma_deuteron_profile215)_ 1.39409542339983396e+06 +Plasma_deuteron_thermal_velocity_at_point_216____________________________ (vel_plasma_deuteron_profile216)_ 1.39227774563615792e+06 +Plasma_deuteron_thermal_velocity_at_point_217____________________________ (vel_plasma_deuteron_profile217)_ 1.39045128049443546e+06 +Plasma_deuteron_thermal_velocity_at_point_218____________________________ (vel_plasma_deuteron_profile218)_ 1.38861602451131539e+06 +Plasma_deuteron_thermal_velocity_at_point_219____________________________ (vel_plasma_deuteron_profile219)_ 1.38677197424664348e+06 +Plasma_deuteron_thermal_velocity_at_point_220____________________________ (vel_plasma_deuteron_profile220)_ 1.38491912629060028e+06 +Plasma_deuteron_thermal_velocity_at_point_221____________________________ (vel_plasma_deuteron_profile221)_ 1.38305747728172410e+06 +Plasma_deuteron_thermal_velocity_at_point_222____________________________ (vel_plasma_deuteron_profile222)_ 1.38118702388173668e+06 +Plasma_deuteron_thermal_velocity_at_point_223____________________________ (vel_plasma_deuteron_profile223)_ 1.37930776279357006e+06 +Plasma_deuteron_thermal_velocity_at_point_224____________________________ (vel_plasma_deuteron_profile224)_ 1.37741969080128078e+06 +Plasma_deuteron_thermal_velocity_at_point_225____________________________ (vel_plasma_deuteron_profile225)_ 1.37552280467971927e+06 +Plasma_deuteron_thermal_velocity_at_point_226____________________________ (vel_plasma_deuteron_profile226)_ 1.37361710128869559e+06 +Plasma_deuteron_thermal_velocity_at_point_227____________________________ (vel_plasma_deuteron_profile227)_ 1.37170257751517068e+06 +Plasma_deuteron_thermal_velocity_at_point_228____________________________ (vel_plasma_deuteron_profile228)_ 1.36977923032423458e+06 +Plasma_deuteron_thermal_velocity_at_point_229____________________________ (vel_plasma_deuteron_profile229)_ 1.36784705668286397e+06 +Plasma_deuteron_thermal_velocity_at_point_230____________________________ (vel_plasma_deuteron_profile230)_ 1.36590605366201117e+06 +Plasma_deuteron_thermal_velocity_at_point_231____________________________ (vel_plasma_deuteron_profile231)_ 1.36395621837131004e+06 +Plasma_deuteron_thermal_velocity_at_point_232____________________________ (vel_plasma_deuteron_profile232)_ 1.36199754795550252e+06 +Plasma_deuteron_thermal_velocity_at_point_233____________________________ (vel_plasma_deuteron_profile233)_ 1.36003003966786992e+06 +Plasma_deuteron_thermal_velocity_at_point_234____________________________ (vel_plasma_deuteron_profile234)_ 1.35805369075695472e+06 +Plasma_deuteron_thermal_velocity_at_point_235____________________________ (vel_plasma_deuteron_profile235)_ 1.35606849860614957e+06 +Plasma_deuteron_thermal_velocity_at_point_236____________________________ (vel_plasma_deuteron_profile236)_ 1.35407446063134680e+06 +Plasma_deuteron_thermal_velocity_at_point_237____________________________ (vel_plasma_deuteron_profile237)_ 1.35207157430314505e+06 +Plasma_deuteron_thermal_velocity_at_point_238____________________________ (vel_plasma_deuteron_profile238)_ 1.35005983716926281e+06 +Plasma_deuteron_thermal_velocity_at_point_239____________________________ (vel_plasma_deuteron_profile239)_ 1.34803924687715527e+06 +Plasma_deuteron_thermal_velocity_at_point_240____________________________ (vel_plasma_deuteron_profile240)_ 1.34600980112271197e+06 +Plasma_deuteron_thermal_velocity_at_point_241____________________________ (vel_plasma_deuteron_profile241)_ 1.34397149769501784e+06 +Plasma_deuteron_thermal_velocity_at_point_242____________________________ (vel_plasma_deuteron_profile242)_ 1.34192433446947346e+06 +Plasma_deuteron_thermal_velocity_at_point_243____________________________ (vel_plasma_deuteron_profile243)_ 1.33986830936735380e+06 +Plasma_deuteron_thermal_velocity_at_point_244____________________________ (vel_plasma_deuteron_profile244)_ 1.33780342043060740e+06 +Plasma_deuteron_thermal_velocity_at_point_245____________________________ (vel_plasma_deuteron_profile245)_ 1.33572966578903864e+06 +Plasma_deuteron_thermal_velocity_at_point_246____________________________ (vel_plasma_deuteron_profile246)_ 1.33364704363841889e+06 +Plasma_deuteron_thermal_velocity_at_point_247____________________________ (vel_plasma_deuteron_profile247)_ 1.33155555230832263e+06 +Plasma_deuteron_thermal_velocity_at_point_248____________________________ (vel_plasma_deuteron_profile248)_ 1.32945519017674937e+06 +Plasma_deuteron_thermal_velocity_at_point_249____________________________ (vel_plasma_deuteron_profile249)_ 1.32734595578316064e+06 +Plasma_deuteron_thermal_velocity_at_point_250____________________________ (vel_plasma_deuteron_profile250)_ 1.32522784770918894e+06 +Plasma_deuteron_thermal_velocity_at_point_251____________________________ (vel_plasma_deuteron_profile251)_ 1.32310086468823114e+06 +Plasma_deuteron_thermal_velocity_at_point_252____________________________ (vel_plasma_deuteron_profile252)_ 1.32096500551971351e+06 +Plasma_deuteron_thermal_velocity_at_point_253____________________________ (vel_plasma_deuteron_profile253)_ 1.31882026914898446e+06 +Plasma_deuteron_thermal_velocity_at_point_254____________________________ (vel_plasma_deuteron_profile254)_ 1.31666665465706168e+06 +Plasma_deuteron_thermal_velocity_at_point_255____________________________ (vel_plasma_deuteron_profile255)_ 1.31450416119715315e+06 +Plasma_deuteron_thermal_velocity_at_point_256____________________________ (vel_plasma_deuteron_profile256)_ 1.31233278805982135e+06 +Plasma_deuteron_thermal_velocity_at_point_257____________________________ (vel_plasma_deuteron_profile257)_ 1.31015253467406938e+06 +Plasma_deuteron_thermal_velocity_at_point_258____________________________ (vel_plasma_deuteron_profile258)_ 1.30796340060463548e+06 +Plasma_deuteron_thermal_velocity_at_point_259____________________________ (vel_plasma_deuteron_profile259)_ 1.30576538553781551e+06 +Plasma_deuteron_thermal_velocity_at_point_260____________________________ (vel_plasma_deuteron_profile260)_ 1.30355848930542404e+06 +Plasma_deuteron_thermal_velocity_at_point_261____________________________ (vel_plasma_deuteron_profile261)_ 1.30134271188601293e+06 +Plasma_deuteron_thermal_velocity_at_point_262____________________________ (vel_plasma_deuteron_profile262)_ 1.29911805338307377e+06 +Plasma_deuteron_thermal_velocity_at_point_263____________________________ (vel_plasma_deuteron_profile263)_ 1.29688451407996938e+06 +Plasma_deuteron_thermal_velocity_at_point_264____________________________ (vel_plasma_deuteron_profile264)_ 1.29464209439910948e+06 +Plasma_deuteron_thermal_velocity_at_point_265____________________________ (vel_plasma_deuteron_profile265)_ 1.29239079492634349e+06 +Plasma_deuteron_thermal_velocity_at_point_266____________________________ (vel_plasma_deuteron_profile266)_ 1.29013061641241983e+06 +Plasma_deuteron_thermal_velocity_at_point_267____________________________ (vel_plasma_deuteron_profile267)_ 1.28786155978610250e+06 +Plasma_deuteron_thermal_velocity_at_point_268____________________________ (vel_plasma_deuteron_profile268)_ 1.28558362614415656e+06 +Plasma_deuteron_thermal_velocity_at_point_269____________________________ (vel_plasma_deuteron_profile269)_ 1.28329681674124650e+06 +Plasma_deuteron_thermal_velocity_at_point_270____________________________ (vel_plasma_deuteron_profile270)_ 1.28100113304984756e+06 +Plasma_deuteron_thermal_velocity_at_point_271____________________________ (vel_plasma_deuteron_profile271)_ 1.27869657672327780e+06 +Plasma_deuteron_thermal_velocity_at_point_272____________________________ (vel_plasma_deuteron_profile272)_ 1.27638314961307542e+06 +Plasma_deuteron_thermal_velocity_at_point_273____________________________ (vel_plasma_deuteron_profile273)_ 1.27406085373567627e+06 +Plasma_deuteron_thermal_velocity_at_point_274____________________________ (vel_plasma_deuteron_profile274)_ 1.27172969136820990e+06 +Plasma_deuteron_thermal_velocity_at_point_275____________________________ (vel_plasma_deuteron_profile275)_ 1.26938966494099190e+06 +Plasma_deuteron_thermal_velocity_at_point_276____________________________ (vel_plasma_deuteron_profile276)_ 1.26704077716117143e+06 +Plasma_deuteron_thermal_velocity_at_point_277____________________________ (vel_plasma_deuteron_profile277)_ 1.26468303092474653e+06 +Plasma_deuteron_thermal_velocity_at_point_278____________________________ (vel_plasma_deuteron_profile278)_ 1.26231642936595366e+06 +Plasma_deuteron_thermal_velocity_at_point_279____________________________ (vel_plasma_deuteron_profile279)_ 1.25994097583595733e+06 +Plasma_deuteron_thermal_velocity_at_point_280____________________________ (vel_plasma_deuteron_profile280)_ 1.25755667397653917e+06 +Plasma_deuteron_thermal_velocity_at_point_281____________________________ (vel_plasma_deuteron_profile281)_ 1.25516352762770792e+06 +Plasma_deuteron_thermal_velocity_at_point_282____________________________ (vel_plasma_deuteron_profile282)_ 1.25276154092145455e+06 +Plasma_deuteron_thermal_velocity_at_point_283____________________________ (vel_plasma_deuteron_profile283)_ 1.25035071822498553e+06 +Plasma_deuteron_thermal_velocity_at_point_284____________________________ (vel_plasma_deuteron_profile284)_ 1.24793106421925570e+06 +Plasma_deuteron_thermal_velocity_at_point_285____________________________ (vel_plasma_deuteron_profile285)_ 1.24550258380620112e+06 +Plasma_deuteron_thermal_velocity_at_point_286____________________________ (vel_plasma_deuteron_profile286)_ 1.24306528222361626e+06 +Plasma_deuteron_thermal_velocity_at_point_287____________________________ (vel_plasma_deuteron_profile287)_ 1.24061916497642873e+06 +Plasma_deuteron_thermal_velocity_at_point_288____________________________ (vel_plasma_deuteron_profile288)_ 1.23816423787598335e+06 +Plasma_deuteron_thermal_velocity_at_point_289____________________________ (vel_plasma_deuteron_profile289)_ 1.23570050705156592e+06 +Plasma_deuteron_thermal_velocity_at_point_290____________________________ (vel_plasma_deuteron_profile290)_ 1.23322797894996079e+06 +Plasma_deuteron_thermal_velocity_at_point_291____________________________ (vel_plasma_deuteron_profile291)_ 1.23074666033908655e+06 +Plasma_deuteron_thermal_velocity_at_point_292____________________________ (vel_plasma_deuteron_profile292)_ 1.22825655832390185e+06 +Plasma_deuteron_thermal_velocity_at_point_293____________________________ (vel_plasma_deuteron_profile293)_ 1.22575768037474598e+06 +Plasma_deuteron_thermal_velocity_at_point_294____________________________ (vel_plasma_deuteron_profile294)_ 1.22325003429896478e+06 +Plasma_deuteron_thermal_velocity_at_point_295____________________________ (vel_plasma_deuteron_profile295)_ 1.22073362825309718e+06 +Plasma_deuteron_thermal_velocity_at_point_296____________________________ (vel_plasma_deuteron_profile296)_ 1.21820847081257962e+06 +Plasma_deuteron_thermal_velocity_at_point_297____________________________ (vel_plasma_deuteron_profile297)_ 1.21567457089872751e+06 +Plasma_deuteron_thermal_velocity_at_point_298____________________________ (vel_plasma_deuteron_profile298)_ 1.21313193783643842e+06 +Plasma_deuteron_thermal_velocity_at_point_299____________________________ (vel_plasma_deuteron_profile299)_ 1.21058058139618183e+06 +Plasma_deuteron_thermal_velocity_at_point_300____________________________ (vel_plasma_deuteron_profile300)_ 1.20802051170853525e+06 +Plasma_deuteron_thermal_velocity_at_point_301____________________________ (vel_plasma_deuteron_profile301)_ 1.20545173937633354e+06 +Plasma_deuteron_thermal_velocity_at_point_302____________________________ (vel_plasma_deuteron_profile302)_ 1.20287427542239707e+06 +Plasma_deuteron_thermal_velocity_at_point_303____________________________ (vel_plasma_deuteron_profile303)_ 1.20028813132392080e+06 +Plasma_deuteron_thermal_velocity_at_point_304____________________________ (vel_plasma_deuteron_profile304)_ 1.19769331903485605e+06 +Plasma_deuteron_thermal_velocity_at_point_305____________________________ (vel_plasma_deuteron_profile305)_ 1.19508985097941384e+06 +Plasma_deuteron_thermal_velocity_at_point_306____________________________ (vel_plasma_deuteron_profile306)_ 1.19247774010829045e+06 +Plasma_deuteron_thermal_velocity_at_point_307____________________________ (vel_plasma_deuteron_profile307)_ 1.18985699980473379e+06 +Plasma_deuteron_thermal_velocity_at_point_308____________________________ (vel_plasma_deuteron_profile308)_ 1.18722764405416744e+06 +Plasma_deuteron_thermal_velocity_at_point_309____________________________ (vel_plasma_deuteron_profile309)_ 1.18458968729603640e+06 +Plasma_deuteron_thermal_velocity_at_point_310____________________________ (vel_plasma_deuteron_profile310)_ 1.18194314456920675e+06 +Plasma_deuteron_thermal_velocity_at_point_311____________________________ (vel_plasma_deuteron_profile311)_ 1.17928803148591937e+06 +Plasma_deuteron_thermal_velocity_at_point_312____________________________ (vel_plasma_deuteron_profile312)_ 1.17662436418001517e+06 +Plasma_deuteron_thermal_velocity_at_point_313____________________________ (vel_plasma_deuteron_profile313)_ 1.17395215945425350e+06 +Plasma_deuteron_thermal_velocity_at_point_314____________________________ (vel_plasma_deuteron_profile314)_ 1.17127143466561800e+06 +Plasma_deuteron_thermal_velocity_at_point_315____________________________ (vel_plasma_deuteron_profile315)_ 1.16858220783111500e+06 +Plasma_deuteron_thermal_velocity_at_point_316____________________________ (vel_plasma_deuteron_profile316)_ 1.16588449757676735e+06 +Plasma_deuteron_thermal_velocity_at_point_317____________________________ (vel_plasma_deuteron_profile317)_ 1.16317832325324439e+06 +Plasma_deuteron_thermal_velocity_at_point_318____________________________ (vel_plasma_deuteron_profile318)_ 1.16046370482961810e+06 +Plasma_deuteron_thermal_velocity_at_point_319____________________________ (vel_plasma_deuteron_profile319)_ 1.15774066303563910e+06 +Plasma_deuteron_thermal_velocity_at_point_320____________________________ (vel_plasma_deuteron_profile320)_ 1.15500921925988095e+06 +Plasma_deuteron_thermal_velocity_at_point_321____________________________ (vel_plasma_deuteron_profile321)_ 1.15226939567599073e+06 +Plasma_deuteron_thermal_velocity_at_point_322____________________________ (vel_plasma_deuteron_profile322)_ 1.14952121520589362e+06 +Plasma_deuteron_thermal_velocity_at_point_323____________________________ (vel_plasma_deuteron_profile323)_ 1.14676470156520931e+06 +Plasma_deuteron_thermal_velocity_at_point_324____________________________ (vel_plasma_deuteron_profile324)_ 1.14399987925706990e+06 +Plasma_deuteron_thermal_velocity_at_point_325____________________________ (vel_plasma_deuteron_profile325)_ 1.14122677361839102e+06 +Plasma_deuteron_thermal_velocity_at_point_326____________________________ (vel_plasma_deuteron_profile326)_ 1.13844541084937239e+06 +Plasma_deuteron_thermal_velocity_at_point_327____________________________ (vel_plasma_deuteron_profile327)_ 1.13565581798640778e+06 +Plasma_deuteron_thermal_velocity_at_point_328____________________________ (vel_plasma_deuteron_profile328)_ 1.13285802302882005e+06 +Plasma_deuteron_thermal_velocity_at_point_329____________________________ (vel_plasma_deuteron_profile329)_ 1.13005205482475040e+06 +Plasma_deuteron_thermal_velocity_at_point_330____________________________ (vel_plasma_deuteron_profile330)_ 1.12723794324312056e+06 +Plasma_deuteron_thermal_velocity_at_point_331____________________________ (vel_plasma_deuteron_profile331)_ 1.12441571908648405e+06 +Plasma_deuteron_thermal_velocity_at_point_332____________________________ (vel_plasma_deuteron_profile332)_ 1.12158541419838602e+06 +Plasma_deuteron_thermal_velocity_at_point_333____________________________ (vel_plasma_deuteron_profile333)_ 1.11874706138514495e+06 +Plasma_deuteron_thermal_velocity_at_point_334____________________________ (vel_plasma_deuteron_profile334)_ 1.11590069463609741e+06 +Plasma_deuteron_thermal_velocity_at_point_335____________________________ (vel_plasma_deuteron_profile335)_ 1.11304634891701443e+06 +Plasma_deuteron_thermal_velocity_at_point_336____________________________ (vel_plasma_deuteron_profile336)_ 1.11018406036938773e+06 +Plasma_deuteron_thermal_velocity_at_point_337____________________________ (vel_plasma_deuteron_profile337)_ 1.10731386630114890e+06 +Plasma_deuteron_thermal_velocity_at_point_338____________________________ (vel_plasma_deuteron_profile338)_ 1.10443580522252969e+06 +Plasma_deuteron_thermal_velocity_at_point_339____________________________ (vel_plasma_deuteron_profile339)_ 1.10154991681013186e+06 +Plasma_deuteron_thermal_velocity_at_point_340____________________________ (vel_plasma_deuteron_profile340)_ 1.09865624206581339e+06 +Plasma_deuteron_thermal_velocity_at_point_341____________________________ (vel_plasma_deuteron_profile341)_ 1.09575482323689107e+06 +Plasma_deuteron_thermal_velocity_at_point_342____________________________ (vel_plasma_deuteron_profile342)_ 1.09284570395432785e+06 +Plasma_deuteron_thermal_velocity_at_point_343____________________________ (vel_plasma_deuteron_profile343)_ 1.08992892918100092e+06 +Plasma_deuteron_thermal_velocity_at_point_344____________________________ (vel_plasma_deuteron_profile344)_ 1.08700454534744401e+06 +Plasma_deuteron_thermal_velocity_at_point_345____________________________ (vel_plasma_deuteron_profile345)_ 1.08407260025060247e+06 +Plasma_deuteron_thermal_velocity_at_point_346____________________________ (vel_plasma_deuteron_profile346)_ 1.08113314326948160e+06 +Plasma_deuteron_thermal_velocity_at_point_347____________________________ (vel_plasma_deuteron_profile347)_ 1.07818622530681943e+06 +Plasma_deuteron_thermal_velocity_at_point_348____________________________ (vel_plasma_deuteron_profile348)_ 1.07523189881809615e+06 +Plasma_deuteron_thermal_velocity_at_point_349____________________________ (vel_plasma_deuteron_profile349)_ 1.07227021792491339e+06 +Plasma_deuteron_thermal_velocity_at_point_350____________________________ (vel_plasma_deuteron_profile350)_ 1.06930123840908520e+06 +Plasma_deuteron_thermal_velocity_at_point_351____________________________ (vel_plasma_deuteron_profile351)_ 1.06632501782374363e+06 +Plasma_deuteron_thermal_velocity_at_point_352____________________________ (vel_plasma_deuteron_profile352)_ 1.06334161545162392e+06 +Plasma_deuteron_thermal_velocity_at_point_353____________________________ (vel_plasma_deuteron_profile353)_ 1.06035109246511292e+06 +Plasma_deuteron_thermal_velocity_at_point_354____________________________ (vel_plasma_deuteron_profile354)_ 1.05735351190042263e+06 +Plasma_deuteron_thermal_velocity_at_point_355____________________________ (vel_plasma_deuteron_profile355)_ 1.05434893875450804e+06 +Plasma_deuteron_thermal_velocity_at_point_356____________________________ (vel_plasma_deuteron_profile356)_ 1.05133744003634364e+06 +Plasma_deuteron_thermal_velocity_at_point_357____________________________ (vel_plasma_deuteron_profile357)_ 1.04831908479544451e+06 +Plasma_deuteron_thermal_velocity_at_point_358____________________________ (vel_plasma_deuteron_profile358)_ 1.04529394426081656e+06 +Plasma_deuteron_thermal_velocity_at_point_359____________________________ (vel_plasma_deuteron_profile359)_ 1.04226209180537355e+06 +Plasma_deuteron_thermal_velocity_at_point_360____________________________ (vel_plasma_deuteron_profile360)_ 1.03922360314033180e+06 +Plasma_deuteron_thermal_velocity_at_point_361____________________________ (vel_plasma_deuteron_profile361)_ 1.03617855620984721e+06 +Plasma_deuteron_thermal_velocity_at_point_362____________________________ (vel_plasma_deuteron_profile362)_ 1.03312703145096882e+06 +Plasma_deuteron_thermal_velocity_at_point_363____________________________ (vel_plasma_deuteron_profile363)_ 1.03006911175807763e+06 +Plasma_deuteron_thermal_velocity_at_point_364____________________________ (vel_plasma_deuteron_profile364)_ 1.02700488258288440e+06 +Plasma_deuteron_thermal_velocity_at_point_365____________________________ (vel_plasma_deuteron_profile365)_ 1.02393443196816987e+06 +Plasma_deuteron_thermal_velocity_at_point_366____________________________ (vel_plasma_deuteron_profile366)_ 1.02085785073869047e+06 +Plasma_deuteron_thermal_velocity_at_point_367____________________________ (vel_plasma_deuteron_profile367)_ 1.01777523248002341e+06 +Plasma_deuteron_thermal_velocity_at_point_368____________________________ (vel_plasma_deuteron_profile368)_ 1.01468667369420361e+06 +Plasma_deuteron_thermal_velocity_at_point_369____________________________ (vel_plasma_deuteron_profile369)_ 1.01159227388439514e+06 +Plasma_deuteron_thermal_velocity_at_point_370____________________________ (vel_plasma_deuteron_profile370)_ 1.00849213557697413e+06 +Plasma_deuteron_thermal_velocity_at_point_371____________________________ (vel_plasma_deuteron_profile371)_ 1.00538636451786628e+06 +Plasma_deuteron_thermal_velocity_at_point_372____________________________ (vel_plasma_deuteron_profile372)_ 1.00227506970842322e+06 +Plasma_deuteron_thermal_velocity_at_point_373____________________________ (vel_plasma_deuteron_profile373)_ 9.99158363571954309e+05 +Plasma_deuteron_thermal_velocity_at_point_374____________________________ (vel_plasma_deuteron_profile374)_ 9.96036361933199689e+05 +Plasma_deuteron_thermal_velocity_at_point_375____________________________ (vel_plasma_deuteron_profile375)_ 9.92909184334217338e+05 +Plasma_deuteron_thermal_velocity_at_point_376____________________________ (vel_plasma_deuteron_profile376)_ 9.89776953958194354e+05 +Plasma_deuteron_thermal_velocity_at_point_377____________________________ (vel_plasma_deuteron_profile377)_ 9.86639797860402730e+05 +Plasma_deuteron_thermal_velocity_at_point_378____________________________ (vel_plasma_deuteron_profile378)_ 9.83497847051519318e+05 +Plasma_deuteron_thermal_velocity_at_point_379____________________________ (vel_plasma_deuteron_profile379)_ 9.80351236669187085e+05 +Plasma_deuteron_thermal_velocity_at_point_380____________________________ (vel_plasma_deuteron_profile380)_ 9.77200106066212640e+05 +Plasma_deuteron_thermal_velocity_at_point_381____________________________ (vel_plasma_deuteron_profile381)_ 9.74044598977410467e+05 +Plasma_deuteron_thermal_velocity_at_point_382____________________________ (vel_plasma_deuteron_profile382)_ 9.70884863622991135e+05 +Plasma_deuteron_thermal_velocity_at_point_383____________________________ (vel_plasma_deuteron_profile383)_ 9.67721052963563474e+05 +Plasma_deuteron_thermal_velocity_at_point_384____________________________ (vel_plasma_deuteron_profile384)_ 9.64553324737807387e+05 +Plasma_deuteron_thermal_velocity_at_point_385____________________________ (vel_plasma_deuteron_profile385)_ 9.61381841677385266e+05 +Plasma_deuteron_thermal_velocity_at_point_386____________________________ (vel_plasma_deuteron_profile386)_ 9.58206771746978047e+05 +Plasma_deuteron_thermal_velocity_at_point_387____________________________ (vel_plasma_deuteron_profile387)_ 9.55028288148818770e+05 +Plasma_deuteron_thermal_velocity_at_point_388____________________________ (vel_plasma_deuteron_profile388)_ 9.51846569668001612e+05 +Plasma_deuteron_thermal_velocity_at_point_389____________________________ (vel_plasma_deuteron_profile389)_ 9.48661800809083041e+05 +Plasma_deuteron_thermal_velocity_at_point_390____________________________ (vel_plasma_deuteron_profile390)_ 9.45474171993426979e+05 +Plasma_deuteron_thermal_velocity_at_point_391____________________________ (vel_plasma_deuteron_profile391)_ 9.42283879733990994e+05 +Plasma_deuteron_thermal_velocity_at_point_392____________________________ (vel_plasma_deuteron_profile392)_ 9.39091126882614684e+05 +Plasma_deuteron_thermal_velocity_at_point_393____________________________ (vel_plasma_deuteron_profile393)_ 9.35896122903530719e+05 +Plasma_deuteron_thermal_velocity_at_point_394____________________________ (vel_plasma_deuteron_profile394)_ 9.32699084018568858e+05 +Plasma_deuteron_thermal_velocity_at_point_395____________________________ (vel_plasma_deuteron_profile395)_ 9.29500233446359285e+05 +Plasma_deuteron_thermal_velocity_at_point_396____________________________ (vel_plasma_deuteron_profile396)_ 9.26299801770074875e+05 +Plasma_deuteron_thermal_velocity_at_point_397____________________________ (vel_plasma_deuteron_profile397)_ 9.23098027096286183e+05 +Plasma_deuteron_thermal_velocity_at_point_398____________________________ (vel_plasma_deuteron_profile398)_ 9.19895155390281929e+05 +Plasma_deuteron_thermal_velocity_at_point_399____________________________ (vel_plasma_deuteron_profile399)_ 9.16691440660114633e+05 +Plasma_deuteron_thermal_velocity_at_point_400____________________________ (vel_plasma_deuteron_profile400)_ 9.13487145444364636e+05 +Plasma_deuteron_thermal_velocity_at_point_401____________________________ (vel_plasma_deuteron_profile401)_ 9.10282540969776106e+05 +Plasma_deuteron_thermal_velocity_at_point_402____________________________ (vel_plasma_deuteron_profile402)_ 9.07077907493037870e+05 +Plasma_deuteron_thermal_velocity_at_point_403____________________________ (vel_plasma_deuteron_profile403)_ 9.03873534742870950e+05 +Plasma_deuteron_thermal_velocity_at_point_404____________________________ (vel_plasma_deuteron_profile404)_ 9.00669722138005309e+05 +Plasma_deuteron_thermal_velocity_at_point_405____________________________ (vel_plasma_deuteron_profile405)_ 8.97466779364596470e+05 +Plasma_deuteron_thermal_velocity_at_point_406____________________________ (vel_plasma_deuteron_profile406)_ 8.94265026490705437e+05 +Plasma_deuteron_thermal_velocity_at_point_407____________________________ (vel_plasma_deuteron_profile407)_ 8.91064794681076775e+05 +Plasma_deuteron_thermal_velocity_at_point_408____________________________ (vel_plasma_deuteron_profile408)_ 8.87866426369666471e+05 +Plasma_deuteron_thermal_velocity_at_point_409____________________________ (vel_plasma_deuteron_profile409)_ 8.84670275896776933e+05 +Plasma_deuteron_thermal_velocity_at_point_410____________________________ (vel_plasma_deuteron_profile410)_ 8.81476709897954948e+05 +Plasma_deuteron_thermal_velocity_at_point_411____________________________ (vel_plasma_deuteron_profile411)_ 8.78286107801681967e+05 +Plasma_deuteron_thermal_velocity_at_point_412____________________________ (vel_plasma_deuteron_profile412)_ 8.75098862427028595e+05 +Plasma_deuteron_thermal_velocity_at_point_413____________________________ (vel_plasma_deuteron_profile413)_ 8.71915380420378176e+05 +Plasma_deuteron_thermal_velocity_at_point_414____________________________ (vel_plasma_deuteron_profile414)_ 8.68736082946072682e+05 +Plasma_deuteron_thermal_velocity_at_point_415____________________________ (vel_plasma_deuteron_profile415)_ 8.65561406251041335e+05 +Plasma_deuteron_thermal_velocity_at_point_416____________________________ (vel_plasma_deuteron_profile416)_ 8.62391802331257379e+05 +Plasma_deuteron_thermal_velocity_at_point_417____________________________ (vel_plasma_deuteron_profile417)_ 8.59227739533923799e+05 +Plasma_deuteron_thermal_velocity_at_point_418____________________________ (vel_plasma_deuteron_profile418)_ 8.56069703466340201e+05 +Plasma_deuteron_thermal_velocity_at_point_419____________________________ (vel_plasma_deuteron_profile419)_ 8.52918197522896924e+05 +Plasma_deuteron_thermal_velocity_at_point_420____________________________ (vel_plasma_deuteron_profile420)_ 8.49773743853518390e+05 +Plasma_deuteron_thermal_velocity_at_point_421____________________________ (vel_plasma_deuteron_profile421)_ 8.46636884248296148e+05 +Plasma_deuteron_thermal_velocity_at_point_422____________________________ (vel_plasma_deuteron_profile422)_ 8.43508180835004314e+05 +Plasma_deuteron_thermal_velocity_at_point_423____________________________ (vel_plasma_deuteron_profile423)_ 8.40388217296419549e+05 +Plasma_deuteron_thermal_velocity_at_point_424____________________________ (vel_plasma_deuteron_profile424)_ 8.37277599738448043e+05 +Plasma_deuteron_thermal_velocity_at_point_425____________________________ (vel_plasma_deuteron_profile425)_ 8.34176957851086627e+05 +Plasma_deuteron_thermal_velocity_at_point_426____________________________ (vel_plasma_deuteron_profile426)_ 8.31086946032882319e+05 +Plasma_deuteron_thermal_velocity_at_point_427____________________________ (vel_plasma_deuteron_profile427)_ 8.28008244681875920e+05 +Plasma_deuteron_thermal_velocity_at_point_428____________________________ (vel_plasma_deuteron_profile428)_ 8.24941561493074521e+05 +Plasma_deuteron_thermal_velocity_at_point_429____________________________ (vel_plasma_deuteron_profile429)_ 8.21887632913243608e+05 +Plasma_deuteron_thermal_velocity_at_point_430____________________________ (vel_plasma_deuteron_profile430)_ 8.18847225658388925e+05 +Plasma_deuteron_thermal_velocity_at_point_431____________________________ (vel_plasma_deuteron_profile431)_ 8.15821138459273381e+05 +Plasma_deuteron_thermal_velocity_at_point_432____________________________ (vel_plasma_deuteron_profile432)_ 8.12810203628093004e+05 +Plasma_deuteron_thermal_velocity_at_point_433____________________________ (vel_plasma_deuteron_profile433)_ 8.09815289277778706e+05 +Plasma_deuteron_thermal_velocity_at_point_434____________________________ (vel_plasma_deuteron_profile434)_ 8.06837301133008441e+05 +Plasma_deuteron_thermal_velocity_at_point_435____________________________ (vel_plasma_deuteron_profile435)_ 8.03877185037239571e+05 +Plasma_deuteron_thermal_velocity_at_point_436____________________________ (vel_plasma_deuteron_profile436)_ 8.00935929224520107e+05 +Plasma_deuteron_thermal_velocity_at_point_437____________________________ (vel_plasma_deuteron_profile437)_ 7.98014567178687896e+05 +Plasma_deuteron_thermal_velocity_at_point_438____________________________ (vel_plasma_deuteron_profile438)_ 7.95114180514681269e+05 +Plasma_deuteron_thermal_velocity_at_point_439____________________________ (vel_plasma_deuteron_profile439)_ 7.92235902206392842e+05 +Plasma_deuteron_thermal_velocity_at_point_440____________________________ (vel_plasma_deuteron_profile440)_ 7.89380920184848947e+05 +Plasma_deuteron_thermal_velocity_at_point_441____________________________ (vel_plasma_deuteron_profile441)_ 7.86550481406655745e+05 +Plasma_deuteron_thermal_velocity_at_point_442____________________________ (vel_plasma_deuteron_profile442)_ 7.83745896036440390e+05 +Plasma_deuteron_thermal_velocity_at_point_443____________________________ (vel_plasma_deuteron_profile443)_ 7.80968542583347880e+05 +Plasma_deuteron_thermal_velocity_at_point_444____________________________ (vel_plasma_deuteron_profile444)_ 7.78219873251992161e+05 +Plasma_deuteron_thermal_velocity_at_point_445____________________________ (vel_plasma_deuteron_profile445)_ 7.75501420219113817e+05 +Plasma_deuteron_thermal_velocity_at_point_446____________________________ (vel_plasma_deuteron_profile446)_ 7.72814802545947256e+05 +Plasma_deuteron_thermal_velocity_at_point_447____________________________ (vel_plasma_deuteron_profile447)_ 7.70161734287887579e+05 +Plasma_deuteron_thermal_velocity_at_point_448____________________________ (vel_plasma_deuteron_profile448)_ 7.67544033453475568e+05 +Plasma_deuteron_thermal_velocity_at_point_449____________________________ (vel_plasma_deuteron_profile449)_ 7.64963632659018738e+05 +Plasma_deuteron_thermal_velocity_at_point_450____________________________ (vel_plasma_deuteron_profile450)_ 7.62422591173632303e+05 +Plasma_deuteron_thermal_velocity_at_point_451____________________________ (vel_plasma_deuteron_profile451)_ 7.59923109238472302e+05 +Plasma_deuteron_thermal_velocity_at_point_452____________________________ (vel_plasma_deuteron_profile452)_ 7.57467544771909597e+05 +Plasma_deuteron_thermal_velocity_at_point_453____________________________ (vel_plasma_deuteron_profile453)_ 7.55058433282150538e+05 +Plasma_deuteron_thermal_velocity_at_point_454____________________________ (vel_plasma_deuteron_profile454)_ 7.52698511781720445e+05 +Plasma_deuteron_thermal_velocity_at_point_455____________________________ (vel_plasma_deuteron_profile455)_ 7.50390747879389208e+05 +Plasma_deuteron_thermal_velocity_at_point_456____________________________ (vel_plasma_deuteron_profile456)_ 7.48138375212690560e+05 +Plasma_deuteron_thermal_velocity_at_point_457____________________________ (vel_plasma_deuteron_profile457)_ 7.45944938057974679e+05 +Plasma_deuteron_thermal_velocity_at_point_458____________________________ (vel_plasma_deuteron_profile458)_ 7.43814347277266206e+05 +Plasma_deuteron_thermal_velocity_at_point_459____________________________ (vel_plasma_deuteron_profile459)_ 7.41750952738827677e+05 +Plasma_deuteron_thermal_velocity_at_point_460____________________________ (vel_plasma_deuteron_profile460)_ 7.39759638171554892e+05 +Plasma_deuteron_thermal_velocity_at_point_461____________________________ (vel_plasma_deuteron_profile461)_ 7.37845949046910391e+05 +Plasma_deuteron_thermal_velocity_at_point_462____________________________ (vel_plasma_deuteron_profile462)_ 7.36016269538303488e+05 +Plasma_deuteron_thermal_velocity_at_point_463____________________________ (vel_plasma_deuteron_profile463)_ 7.34278076202644268e+05 +Plasma_deuteron_thermal_velocity_at_point_464____________________________ (vel_plasma_deuteron_profile464)_ 7.32640317051162594e+05 +Plasma_deuteron_thermal_velocity_at_point_465____________________________ (vel_plasma_deuteron_profile465)_ 7.31114010202158126e+05 +Plasma_deuteron_thermal_velocity_at_point_466____________________________ (vel_plasma_deuteron_profile466)_ 7.29713257572934846e+05 +Plasma_deuteron_thermal_velocity_at_point_467____________________________ (vel_plasma_deuteron_profile467)_ 7.28457141999783111e+05 +Plasma_deuteron_thermal_velocity_at_point_468____________________________ (vel_plasma_deuteron_profile468)_ 7.27373845723198610e+05 +Plasma_deuteron_thermal_velocity_at_point_469____________________________ (vel_plasma_deuteron_profile469)_ 7.26512251974986633e+05 Plasma_deuteron_thermal_velocity_at_point_470____________________________ (vel_plasma_deuteron_profile470)_ 7.26013137740840088e+05 Plasma_deuteron_thermal_velocity_at_point_471____________________________ (vel_plasma_deuteron_profile471)_ 7.14034148508016602e+05 Plasma_deuteron_thermal_velocity_at_point_472____________________________ (vel_plasma_deuteron_profile472)_ 7.01850731537436019e+05 @@ -19731,477 +19733,477 @@ Plasma_deuteron_thermal_velocity_at_point_497____________________________ (vel_p Plasma_deuteron_thermal_velocity_at_point_498____________________________ (vel_plasma_deuteron_profile498)_ 2.09963075698110653e+05 Plasma_deuteron_thermal_velocity_at_point_499____________________________ (vel_plasma_deuteron_profile499)_ 1.63810998299460305e+05 Plasma_deuteron_thermal_velocity_at_point_500____________________________ (vel_plasma_deuteron_profile500)_ 9.78958029331109428e+04 -Volume_averaged_triton_thermal_velocity_(m/s)____________________________ (vel_plasma_triton_vol_avg)____ 8.93413388100569951e+05 -Plasma_triton_thermal_velocity_at_point_0________________________________ (vel_plasma_triton_profile0)___ 1.28279624369168957e+06 -Plasma_triton_thermal_velocity_at_point_1________________________________ (vel_plasma_triton_profile1)___ 1.28279293404349103e+06 -Plasma_triton_thermal_velocity_at_point_2________________________________ (vel_plasma_triton_profile2)___ 1.28278300509044295e+06 -Plasma_triton_thermal_velocity_at_point_3________________________________ (vel_plasma_triton_profile3)___ 1.28276645677996194e+06 -Plasma_triton_thermal_velocity_at_point_4________________________________ (vel_plasma_triton_profile4)___ 1.28274328906978178e+06 -Plasma_triton_thermal_velocity_at_point_5________________________________ (vel_plasma_triton_profile5)___ 1.28271350188905536e+06 -Plasma_triton_thermal_velocity_at_point_6________________________________ (vel_plasma_triton_profile6)___ 1.28267709515390778e+06 -Plasma_triton_thermal_velocity_at_point_7________________________________ (vel_plasma_triton_profile7)___ 1.28263406870130636e+06 -Plasma_triton_thermal_velocity_at_point_8________________________________ (vel_plasma_triton_profile8)___ 1.28258442243296304e+06 -Plasma_triton_thermal_velocity_at_point_9________________________________ (vel_plasma_triton_profile9)___ 1.28252815618308284e+06 -Plasma_triton_thermal_velocity_at_point_10_______________________________ (vel_plasma_triton_profile10)__ 1.28246526974168024e+06 -Plasma_triton_thermal_velocity_at_point_11_______________________________ (vel_plasma_triton_profile11)__ 1.28239576293625962e+06 -Plasma_triton_thermal_velocity_at_point_12_______________________________ (vel_plasma_triton_profile12)__ 1.28231963551898557e+06 -Plasma_triton_thermal_velocity_at_point_13_______________________________ (vel_plasma_triton_profile13)__ 1.28223688724835892e+06 -Plasma_triton_thermal_velocity_at_point_14_______________________________ (vel_plasma_triton_profile14)__ 1.28214751784640434e+06 -Plasma_triton_thermal_velocity_at_point_15_______________________________ (vel_plasma_triton_profile15)__ 1.28205152702977392e+06 -Plasma_triton_thermal_velocity_at_point_16_______________________________ (vel_plasma_triton_profile16)__ 1.28194891450584005e+06 -Plasma_triton_thermal_velocity_at_point_17_______________________________ (vel_plasma_triton_profile17)__ 1.28183967991429521e+06 -Plasma_triton_thermal_velocity_at_point_18_______________________________ (vel_plasma_triton_profile18)__ 1.28172382288938528e+06 -Plasma_triton_thermal_velocity_at_point_19_______________________________ (vel_plasma_triton_profile19)__ 1.28160134308324591e+06 -Plasma_triton_thermal_velocity_at_point_20_______________________________ (vel_plasma_triton_profile20)__ 1.28147224007634772e+06 -Plasma_triton_thermal_velocity_at_point_21_______________________________ (vel_plasma_triton_profile21)__ 1.28133651347867516e+06 -Plasma_triton_thermal_velocity_at_point_22_______________________________ (vel_plasma_triton_profile22)__ 1.28119416281289957e+06 -Plasma_triton_thermal_velocity_at_point_23_______________________________ (vel_plasma_triton_profile23)__ 1.28104518762724870e+06 -Plasma_triton_thermal_velocity_at_point_24_______________________________ (vel_plasma_triton_profile24)__ 1.28088958744486305e+06 -Plasma_triton_thermal_velocity_at_point_25_______________________________ (vel_plasma_triton_profile25)__ 1.28072736175596598e+06 -Plasma_triton_thermal_velocity_at_point_26_______________________________ (vel_plasma_triton_profile26)__ 1.28055851002560789e+06 -Plasma_triton_thermal_velocity_at_point_27_______________________________ (vel_plasma_triton_profile27)__ 1.28038303170921095e+06 -Plasma_triton_thermal_velocity_at_point_28_______________________________ (vel_plasma_triton_profile28)__ 1.28020092624473851e+06 -Plasma_triton_thermal_velocity_at_point_29_______________________________ (vel_plasma_triton_profile29)__ 1.28001219302926911e+06 -Plasma_triton_thermal_velocity_at_point_30_______________________________ (vel_plasma_triton_profile30)__ 1.27981683146181563e+06 -Plasma_triton_thermal_velocity_at_point_31_______________________________ (vel_plasma_triton_profile31)__ 1.27961484090041043e+06 -Plasma_triton_thermal_velocity_at_point_32_______________________________ (vel_plasma_triton_profile32)__ 1.27940622066983720e+06 -Plasma_triton_thermal_velocity_at_point_33_______________________________ (vel_plasma_triton_profile33)__ 1.27919097012787429e+06 -Plasma_triton_thermal_velocity_at_point_34_______________________________ (vel_plasma_triton_profile34)__ 1.27896908856386598e+06 -Plasma_triton_thermal_velocity_at_point_35_______________________________ (vel_plasma_triton_profile35)__ 1.27874057522983942e+06 -Plasma_triton_thermal_velocity_at_point_36_______________________________ (vel_plasma_triton_profile36)__ 1.27850542943018698e+06 -Plasma_triton_thermal_velocity_at_point_37_______________________________ (vel_plasma_triton_profile37)__ 1.27826365036555566e+06 -Plasma_triton_thermal_velocity_at_point_38_______________________________ (vel_plasma_triton_profile38)__ 1.27801523726934288e+06 -Plasma_triton_thermal_velocity_at_point_39_______________________________ (vel_plasma_triton_profile39)__ 1.27776018933740491e+06 -Plasma_triton_thermal_velocity_at_point_40_______________________________ (vel_plasma_triton_profile40)__ 1.27749850571235805e+06 -Plasma_triton_thermal_velocity_at_point_41_______________________________ (vel_plasma_triton_profile41)__ 1.27723018558894680e+06 -Plasma_triton_thermal_velocity_at_point_42_______________________________ (vel_plasma_triton_profile42)__ 1.27695522807731014e+06 -Plasma_triton_thermal_velocity_at_point_43_______________________________ (vel_plasma_triton_profile43)__ 1.27667363229272841e+06 -Plasma_triton_thermal_velocity_at_point_44_______________________________ (vel_plasma_triton_profile44)__ 1.27638539730867627e+06 -Plasma_triton_thermal_velocity_at_point_45_______________________________ (vel_plasma_triton_profile45)__ 1.27609052220364567e+06 -Plasma_triton_thermal_velocity_at_point_46_______________________________ (vel_plasma_triton_profile46)__ 1.27578900604154868e+06 -Plasma_triton_thermal_velocity_at_point_47_______________________________ (vel_plasma_triton_profile47)__ 1.27548084780907072e+06 -Plasma_triton_thermal_velocity_at_point_48_______________________________ (vel_plasma_triton_profile48)__ 1.27516604653289751e+06 -Plasma_triton_thermal_velocity_at_point_49_______________________________ (vel_plasma_triton_profile49)__ 1.27484460119361943e+06 -Plasma_triton_thermal_velocity_at_point_50_______________________________ (vel_plasma_triton_profile50)__ 1.27451651072953339e+06 -Plasma_triton_thermal_velocity_at_point_51_______________________________ (vel_plasma_triton_profile51)__ 1.27418177411876130e+06 -Plasma_triton_thermal_velocity_at_point_52_______________________________ (vel_plasma_triton_profile52)__ 1.27384039026566781e+06 -Plasma_triton_thermal_velocity_at_point_53_______________________________ (vel_plasma_triton_profile53)__ 1.27349235804379941e+06 -Plasma_triton_thermal_velocity_at_point_54_______________________________ (vel_plasma_triton_profile54)__ 1.27313767636240344e+06 -Plasma_triton_thermal_velocity_at_point_55_______________________________ (vel_plasma_triton_profile55)__ 1.27277634407626232e+06 -Plasma_triton_thermal_velocity_at_point_56_______________________________ (vel_plasma_triton_profile56)__ 1.27240836000124319e+06 -Plasma_triton_thermal_velocity_at_point_57_______________________________ (vel_plasma_triton_profile57)__ 1.27203372295340127e+06 -Plasma_triton_thermal_velocity_at_point_58_______________________________ (vel_plasma_triton_profile58)__ 1.27165243172145495e+06 -Plasma_triton_thermal_velocity_at_point_59_______________________________ (vel_plasma_triton_profile59)__ 1.27126448510200321e+06 -Plasma_triton_thermal_velocity_at_point_60_______________________________ (vel_plasma_triton_profile60)__ 1.27086988182881009e+06 -Plasma_triton_thermal_velocity_at_point_61_______________________________ (vel_plasma_triton_profile61)__ 1.27046862063940335e+06 -Plasma_triton_thermal_velocity_at_point_62_______________________________ (vel_plasma_triton_profile62)__ 1.27006070023572911e+06 -Plasma_triton_thermal_velocity_at_point_63_______________________________ (vel_plasma_triton_profile63)__ 1.26964611931153527e+06 -Plasma_triton_thermal_velocity_at_point_64_______________________________ (vel_plasma_triton_profile64)__ 1.26922487652870570e+06 -Plasma_triton_thermal_velocity_at_point_65_______________________________ (vel_plasma_triton_profile65)__ 1.26879697053679684e+06 -Plasma_triton_thermal_velocity_at_point_66_______________________________ (vel_plasma_triton_profile66)__ 1.26836239997294825e+06 -Plasma_triton_thermal_velocity_at_point_67_______________________________ (vel_plasma_triton_profile67)__ 1.26792116342637478e+06 -Plasma_triton_thermal_velocity_at_point_68_______________________________ (vel_plasma_triton_profile68)__ 1.26747325948938262e+06 -Plasma_triton_thermal_velocity_at_point_69_______________________________ (vel_plasma_triton_profile69)__ 1.26701868673761096e+06 -Plasma_triton_thermal_velocity_at_point_70_______________________________ (vel_plasma_triton_profile70)__ 1.26655744369841623e+06 -Plasma_triton_thermal_velocity_at_point_71_______________________________ (vel_plasma_triton_profile71)__ 1.26608952891375544e+06 -Plasma_triton_thermal_velocity_at_point_72_______________________________ (vel_plasma_triton_profile72)__ 1.26561494086918072e+06 -Plasma_triton_thermal_velocity_at_point_73_______________________________ (vel_plasma_triton_profile73)__ 1.26513367805280630e+06 -Plasma_triton_thermal_velocity_at_point_74_______________________________ (vel_plasma_triton_profile74)__ 1.26464573893156508e+06 -Plasma_triton_thermal_velocity_at_point_75_______________________________ (vel_plasma_triton_profile75)__ 1.26415112193924631e+06 -Plasma_triton_thermal_velocity_at_point_76_______________________________ (vel_plasma_triton_profile76)__ 1.26364982551188255e+06 -Plasma_triton_thermal_velocity_at_point_77_______________________________ (vel_plasma_triton_profile77)__ 1.26314184803237510e+06 -Plasma_triton_thermal_velocity_at_point_78_______________________________ (vel_plasma_triton_profile78)__ 1.26262718790537957e+06 -Plasma_triton_thermal_velocity_at_point_79_______________________________ (vel_plasma_triton_profile79)__ 1.26210584346634452e+06 -Plasma_triton_thermal_velocity_at_point_80_______________________________ (vel_plasma_triton_profile80)__ 1.26157781307223975e+06 -Plasma_triton_thermal_velocity_at_point_81_______________________________ (vel_plasma_triton_profile81)__ 1.26104309504217049e+06 -Plasma_triton_thermal_velocity_at_point_82_______________________________ (vel_plasma_triton_profile82)__ 1.26050168766116444e+06 -Plasma_triton_thermal_velocity_at_point_83_______________________________ (vel_plasma_triton_profile83)__ 1.25995358924336568e+06 -Plasma_triton_thermal_velocity_at_point_84_______________________________ (vel_plasma_triton_profile84)__ 1.25939879801316280e+06 -Plasma_triton_thermal_velocity_at_point_85_______________________________ (vel_plasma_triton_profile85)__ 1.25883731224361318e+06 -Plasma_triton_thermal_velocity_at_point_86_______________________________ (vel_plasma_triton_profile86)__ 1.25826913014147221e+06 -Plasma_triton_thermal_velocity_at_point_87_______________________________ (vel_plasma_triton_profile87)__ 1.25769424990645144e+06 -Plasma_triton_thermal_velocity_at_point_88_______________________________ (vel_plasma_triton_profile88)__ 1.25711266971126548e+06 -Plasma_triton_thermal_velocity_at_point_89_______________________________ (vel_plasma_triton_profile89)__ 1.25652438772926456e+06 -Plasma_triton_thermal_velocity_at_point_90_______________________________ (vel_plasma_triton_profile90)__ 1.25592940210653353e+06 -Plasma_triton_thermal_velocity_at_point_91_______________________________ (vel_plasma_triton_profile91)__ 1.25532771096967557e+06 -Plasma_triton_thermal_velocity_at_point_92_______________________________ (vel_plasma_triton_profile92)__ 1.25471931240578601e+06 -Plasma_triton_thermal_velocity_at_point_93_______________________________ (vel_plasma_triton_profile93)__ 1.25410420453386242e+06 -Plasma_triton_thermal_velocity_at_point_94_______________________________ (vel_plasma_triton_profile94)__ 1.25348238536149566e+06 -Plasma_triton_thermal_velocity_at_point_95_______________________________ (vel_plasma_triton_profile95)__ 1.25285385298359767e+06 -Plasma_triton_thermal_velocity_at_point_96_______________________________ (vel_plasma_triton_profile96)__ 1.25221860540721077e+06 -Plasma_triton_thermal_velocity_at_point_97_______________________________ (vel_plasma_triton_profile97)__ 1.25157664064685209e+06 -Plasma_triton_thermal_velocity_at_point_98_______________________________ (vel_plasma_triton_profile98)__ 1.25092795668852958e+06 -Plasma_triton_thermal_velocity_at_point_99_______________________________ (vel_plasma_triton_profile99)__ 1.25027255147758964e+06 -Plasma_triton_thermal_velocity_at_point_100______________________________ (vel_plasma_triton_profile100)_ 1.24961042300633667e+06 -Plasma_triton_thermal_velocity_at_point_101______________________________ (vel_plasma_triton_profile101)_ 1.24894156919021369e+06 -Plasma_triton_thermal_velocity_at_point_102______________________________ (vel_plasma_triton_profile102)_ 1.24826598793143523e+06 -Plasma_triton_thermal_velocity_at_point_103______________________________ (vel_plasma_triton_profile103)_ 1.24758367713483586e+06 -Plasma_triton_thermal_velocity_at_point_104______________________________ (vel_plasma_triton_profile104)_ 1.24689463467175094e+06 -Plasma_triton_thermal_velocity_at_point_105______________________________ (vel_plasma_triton_profile105)_ 1.24619885840783641e+06 -Plasma_triton_thermal_velocity_at_point_106______________________________ (vel_plasma_triton_profile106)_ 1.24549634616688546e+06 -Plasma_triton_thermal_velocity_at_point_107______________________________ (vel_plasma_triton_profile107)_ 1.24478709579071356e+06 -Plasma_triton_thermal_velocity_at_point_108______________________________ (vel_plasma_triton_profile108)_ 1.24407110506690666e+06 -Plasma_triton_thermal_velocity_at_point_109______________________________ (vel_plasma_triton_profile109)_ 1.24334837178071239e+06 -Plasma_triton_thermal_velocity_at_point_110______________________________ (vel_plasma_triton_profile110)_ 1.24261889370688144e+06 -Plasma_triton_thermal_velocity_at_point_111______________________________ (vel_plasma_triton_profile111)_ 1.24188266857737792e+06 -Plasma_triton_thermal_velocity_at_point_112______________________________ (vel_plasma_triton_profile112)_ 1.24113969414946646e+06 -Plasma_triton_thermal_velocity_at_point_113______________________________ (vel_plasma_triton_profile113)_ 1.24038996811315464e+06 -Plasma_triton_thermal_velocity_at_point_114______________________________ (vel_plasma_triton_profile114)_ 1.23963348818745790e+06 -Plasma_triton_thermal_velocity_at_point_115______________________________ (vel_plasma_triton_profile115)_ 1.23887025202371087e+06 -Plasma_triton_thermal_velocity_at_point_116______________________________ (vel_plasma_triton_profile116)_ 1.23810025729791424e+06 -Plasma_triton_thermal_velocity_at_point_117______________________________ (vel_plasma_triton_profile117)_ 1.23732350163407391e+06 -Plasma_triton_thermal_velocity_at_point_118______________________________ (vel_plasma_triton_profile118)_ 1.23653998269670573e+06 -Plasma_triton_thermal_velocity_at_point_119______________________________ (vel_plasma_triton_profile119)_ 1.23574969807779323e+06 -Plasma_triton_thermal_velocity_at_point_120______________________________ (vel_plasma_triton_profile120)_ 1.23495264535702136e+06 -Plasma_triton_thermal_velocity_at_point_121______________________________ (vel_plasma_triton_profile121)_ 1.23414882212181971e+06 -Plasma_triton_thermal_velocity_at_point_122______________________________ (vel_plasma_triton_profile122)_ 1.23333822591871023e+06 -Plasma_triton_thermal_velocity_at_point_123______________________________ (vel_plasma_triton_profile123)_ 1.23252085431780829e+06 -Plasma_triton_thermal_velocity_at_point_124______________________________ (vel_plasma_triton_profile124)_ 1.23169670482364995e+06 -Plasma_triton_thermal_velocity_at_point_125______________________________ (vel_plasma_triton_profile125)_ 1.23086577497617365e+06 -Plasma_triton_thermal_velocity_at_point_126______________________________ (vel_plasma_triton_profile126)_ 1.23002806222090498e+06 -Plasma_triton_thermal_velocity_at_point_127______________________________ (vel_plasma_triton_profile127)_ 1.22918356406273716e+06 -Plasma_triton_thermal_velocity_at_point_128______________________________ (vel_plasma_triton_profile128)_ 1.22833227798882080e+06 -Plasma_triton_thermal_velocity_at_point_129______________________________ (vel_plasma_triton_profile129)_ 1.22747420139926882e+06 -Plasma_triton_thermal_velocity_at_point_130______________________________ (vel_plasma_triton_profile130)_ 1.22660933174906811e+06 -Plasma_triton_thermal_velocity_at_point_131______________________________ (vel_plasma_triton_profile131)_ 1.22573766647893679e+06 -Plasma_triton_thermal_velocity_at_point_132______________________________ (vel_plasma_triton_profile132)_ 1.22485920293774037e+06 -Plasma_triton_thermal_velocity_at_point_133______________________________ (vel_plasma_triton_profile133)_ 1.22397393855321524e+06 -Plasma_triton_thermal_velocity_at_point_134______________________________ (vel_plasma_triton_profile134)_ 1.22308187069749925e+06 -Plasma_triton_thermal_velocity_at_point_135______________________________ (vel_plasma_triton_profile135)_ 1.22218299670311110e+06 -Plasma_triton_thermal_velocity_at_point_136______________________________ (vel_plasma_triton_profile136)_ 1.22127731392393587e+06 -Plasma_triton_thermal_velocity_at_point_137______________________________ (vel_plasma_triton_profile137)_ 1.22036481969018350e+06 -Plasma_triton_thermal_velocity_at_point_138______________________________ (vel_plasma_triton_profile138)_ 1.21944551132861129e+06 -Plasma_triton_thermal_velocity_at_point_139______________________________ (vel_plasma_triton_profile139)_ 1.21851938611322595e+06 -Plasma_triton_thermal_velocity_at_point_140______________________________ (vel_plasma_triton_profile140)_ 1.21758644135917630e+06 -Plasma_triton_thermal_velocity_at_point_141______________________________ (vel_plasma_triton_profile141)_ 1.21664667432024283e+06 -Plasma_triton_thermal_velocity_at_point_142______________________________ (vel_plasma_triton_profile142)_ 1.21570008227052423e+06 -Plasma_triton_thermal_velocity_at_point_143______________________________ (vel_plasma_triton_profile143)_ 1.21474666244686441e+06 -Plasma_triton_thermal_velocity_at_point_144______________________________ (vel_plasma_triton_profile144)_ 1.21378641208965494e+06 -Plasma_triton_thermal_velocity_at_point_145______________________________ (vel_plasma_triton_profile145)_ 1.21281932843035343e+06 -Plasma_triton_thermal_velocity_at_point_146______________________________ (vel_plasma_triton_profile146)_ 1.21184540865423880e+06 -Plasma_triton_thermal_velocity_at_point_147______________________________ (vel_plasma_triton_profile147)_ 1.21086464999071416e+06 -Plasma_triton_thermal_velocity_at_point_148______________________________ (vel_plasma_triton_profile148)_ 1.20987704961023666e+06 -Plasma_triton_thermal_velocity_at_point_149______________________________ (vel_plasma_triton_profile149)_ 1.20888260466931690e+06 -Plasma_triton_thermal_velocity_at_point_150______________________________ (vel_plasma_triton_profile150)_ 1.20788131238051690e+06 -Plasma_triton_thermal_velocity_at_point_151______________________________ (vel_plasma_triton_profile151)_ 1.20687316983890045e+06 -Plasma_triton_thermal_velocity_at_point_152______________________________ (vel_plasma_triton_profile152)_ 1.20585817421997245e+06 -Plasma_triton_thermal_velocity_at_point_153______________________________ (vel_plasma_triton_profile153)_ 1.20483632265563053e+06 -Plasma_triton_thermal_velocity_at_point_154______________________________ (vel_plasma_triton_profile154)_ 1.20380761224625004e+06 -Plasma_triton_thermal_velocity_at_point_155______________________________ (vel_plasma_triton_profile155)_ 1.20277204011845728e+06 -Plasma_triton_thermal_velocity_at_point_156______________________________ (vel_plasma_triton_profile156)_ 1.20172960337110586e+06 -Plasma_triton_thermal_velocity_at_point_157______________________________ (vel_plasma_triton_profile157)_ 1.20068029909992358e+06 -Plasma_triton_thermal_velocity_at_point_158______________________________ (vel_plasma_triton_profile158)_ 1.19962412438901514e+06 -Plasma_triton_thermal_velocity_at_point_159______________________________ (vel_plasma_triton_profile159)_ 1.19856107628983050e+06 -Plasma_triton_thermal_velocity_at_point_160______________________________ (vel_plasma_triton_profile160)_ 1.19749115188751207e+06 -Plasma_triton_thermal_velocity_at_point_161______________________________ (vel_plasma_triton_profile161)_ 1.19641434822581708e+06 -Plasma_triton_thermal_velocity_at_point_162______________________________ (vel_plasma_triton_profile162)_ 1.19533066237771674e+06 -Plasma_triton_thermal_velocity_at_point_163______________________________ (vel_plasma_triton_profile163)_ 1.19424009135345183e+06 -Plasma_triton_thermal_velocity_at_point_164______________________________ (vel_plasma_triton_profile164)_ 1.19314263220879226e+06 -Plasma_triton_thermal_velocity_at_point_165______________________________ (vel_plasma_triton_profile165)_ 1.19203828195718490e+06 -Plasma_triton_thermal_velocity_at_point_166______________________________ (vel_plasma_triton_profile166)_ 1.19092703764060210e+06 -Plasma_triton_thermal_velocity_at_point_167______________________________ (vel_plasma_triton_profile167)_ 1.18980889627499087e+06 -Plasma_triton_thermal_velocity_at_point_168______________________________ (vel_plasma_triton_profile168)_ 1.18868385484578181e+06 -Plasma_triton_thermal_velocity_at_point_169______________________________ (vel_plasma_triton_profile169)_ 1.18755191035378235e+06 -Plasma_triton_thermal_velocity_at_point_170______________________________ (vel_plasma_triton_profile170)_ 1.18641305983610172e+06 -Plasma_triton_thermal_velocity_at_point_171______________________________ (vel_plasma_triton_profile171)_ 1.18526730025671073e+06 -Plasma_triton_thermal_velocity_at_point_172______________________________ (vel_plasma_triton_profile172)_ 1.18411462861546013e+06 -Plasma_triton_thermal_velocity_at_point_173______________________________ (vel_plasma_triton_profile173)_ 1.18295504190168669e+06 -Plasma_triton_thermal_velocity_at_point_174______________________________ (vel_plasma_triton_profile174)_ 1.18178853710665135e+06 -Plasma_triton_thermal_velocity_at_point_175______________________________ (vel_plasma_triton_profile175)_ 1.18061511118111340e+06 -Plasma_triton_thermal_velocity_at_point_176______________________________ (vel_plasma_triton_profile176)_ 1.17943476114493306e+06 -Plasma_triton_thermal_velocity_at_point_177______________________________ (vel_plasma_triton_profile177)_ 1.17824748396444484e+06 -Plasma_triton_thermal_velocity_at_point_178______________________________ (vel_plasma_triton_profile178)_ 1.17705327658168226e+06 -Plasma_triton_thermal_velocity_at_point_179______________________________ (vel_plasma_triton_profile179)_ 1.17585213601590367e+06 -Plasma_triton_thermal_velocity_at_point_180______________________________ (vel_plasma_triton_profile180)_ 1.17464405920241284e+06 -Plasma_triton_thermal_velocity_at_point_181______________________________ (vel_plasma_triton_profile181)_ 1.17342904315351229e+06 -Plasma_triton_thermal_velocity_at_point_182______________________________ (vel_plasma_triton_profile182)_ 1.17220708482252713e+06 -Plasma_triton_thermal_velocity_at_point_183______________________________ (vel_plasma_triton_profile183)_ 1.17097818118426926e+06 -Plasma_triton_thermal_velocity_at_point_184______________________________ (vel_plasma_triton_profile184)_ 1.16974232923497097e+06 -Plasma_triton_thermal_velocity_at_point_185______________________________ (vel_plasma_triton_profile185)_ 1.16849952592390450e+06 -Plasma_triton_thermal_velocity_at_point_186______________________________ (vel_plasma_triton_profile186)_ 1.16724976827690308e+06 -Plasma_triton_thermal_velocity_at_point_187______________________________ (vel_plasma_triton_profile187)_ 1.16599305324683455e+06 -Plasma_triton_thermal_velocity_at_point_188______________________________ (vel_plasma_triton_profile188)_ 1.16472937784153013e+06 -Plasma_triton_thermal_velocity_at_point_189______________________________ (vel_plasma_triton_profile189)_ 1.16345873904671683e+06 -Plasma_triton_thermal_velocity_at_point_190______________________________ (vel_plasma_triton_profile190)_ 1.16218113385147345e+06 -Plasma_triton_thermal_velocity_at_point_191______________________________ (vel_plasma_triton_profile191)_ 1.16089655929534184e+06 -Plasma_triton_thermal_velocity_at_point_192______________________________ (vel_plasma_triton_profile192)_ 1.15960501236947277e+06 -Plasma_triton_thermal_velocity_at_point_193______________________________ (vel_plasma_triton_profile193)_ 1.15830649009801215e+06 -Plasma_triton_thermal_velocity_at_point_194______________________________ (vel_plasma_triton_profile194)_ 1.15700098951223516e+06 -Plasma_triton_thermal_velocity_at_point_195______________________________ (vel_plasma_triton_profile195)_ 1.15568850763745443e+06 -Plasma_triton_thermal_velocity_at_point_196______________________________ (vel_plasma_triton_profile196)_ 1.15436904153602663e+06 -Plasma_triton_thermal_velocity_at_point_197______________________________ (vel_plasma_triton_profile197)_ 1.15304258825978963e+06 -Plasma_triton_thermal_velocity_at_point_198______________________________ (vel_plasma_triton_profile198)_ 1.15170914487581444e+06 -Plasma_triton_thermal_velocity_at_point_199______________________________ (vel_plasma_triton_profile199)_ 1.15036870844896743e+06 -Plasma_triton_thermal_velocity_at_point_200______________________________ (vel_plasma_triton_profile200)_ 1.14902127608079626e+06 -Plasma_triton_thermal_velocity_at_point_201______________________________ (vel_plasma_triton_profile201)_ 1.14766684487913921e+06 -Plasma_triton_thermal_velocity_at_point_202______________________________ (vel_plasma_triton_profile202)_ 1.14630541196233593e+06 -Plasma_triton_thermal_velocity_at_point_203______________________________ (vel_plasma_triton_profile203)_ 1.14493697445475706e+06 -Plasma_triton_thermal_velocity_at_point_204______________________________ (vel_plasma_triton_profile204)_ 1.14356152950847778e+06 -Plasma_triton_thermal_velocity_at_point_205______________________________ (vel_plasma_triton_profile205)_ 1.14217907429453218e+06 -Plasma_triton_thermal_velocity_at_point_206______________________________ (vel_plasma_triton_profile206)_ 1.14078960599848162e+06 -Plasma_triton_thermal_velocity_at_point_207______________________________ (vel_plasma_triton_profile207)_ 1.13939312179843499e+06 -Plasma_triton_thermal_velocity_at_point_208______________________________ (vel_plasma_triton_profile208)_ 1.13798961894812784e+06 -Plasma_triton_thermal_velocity_at_point_209______________________________ (vel_plasma_triton_profile209)_ 1.13657909466308914e+06 -Plasma_triton_thermal_velocity_at_point_210______________________________ (vel_plasma_triton_profile210)_ 1.13516154620813392e+06 -Plasma_triton_thermal_velocity_at_point_211______________________________ (vel_plasma_triton_profile211)_ 1.13373697088429774e+06 -Plasma_triton_thermal_velocity_at_point_212______________________________ (vel_plasma_triton_profile212)_ 1.13230536597161763e+06 -Plasma_triton_thermal_velocity_at_point_213______________________________ (vel_plasma_triton_profile213)_ 1.13086672883912269e+06 -Plasma_triton_thermal_velocity_at_point_214______________________________ (vel_plasma_triton_profile214)_ 1.12942105681271409e+06 -Plasma_triton_thermal_velocity_at_point_215______________________________ (vel_plasma_triton_profile215)_ 1.12796834728972288e+06 -Plasma_triton_thermal_velocity_at_point_216______________________________ (vel_plasma_triton_profile216)_ 1.12650859766834462e+06 -Plasma_triton_thermal_velocity_at_point_217______________________________ (vel_plasma_triton_profile217)_ 1.12504180542286951e+06 -Plasma_triton_thermal_velocity_at_point_218______________________________ (vel_plasma_triton_profile218)_ 1.12356796797524812e+06 -Plasma_triton_thermal_velocity_at_point_219______________________________ (vel_plasma_triton_profile219)_ 1.12208708287688368e+06 -Plasma_triton_thermal_velocity_at_point_220______________________________ (vel_plasma_triton_profile220)_ 1.12059914762233756e+06 -Plasma_triton_thermal_velocity_at_point_221______________________________ (vel_plasma_triton_profile221)_ 1.11910415980928927e+06 -Plasma_triton_thermal_velocity_at_point_222______________________________ (vel_plasma_triton_profile222)_ 1.11760211703193001e+06 -Plasma_triton_thermal_velocity_at_point_223______________________________ (vel_plasma_triton_profile223)_ 1.11609301692102221e+06 -Plasma_triton_thermal_velocity_at_point_224______________________________ (vel_plasma_triton_profile224)_ 1.11457685714846896e+06 -Plasma_triton_thermal_velocity_at_point_225______________________________ (vel_plasma_triton_profile225)_ 1.11305363544985862e+06 -Plasma_triton_thermal_velocity_at_point_226______________________________ (vel_plasma_triton_profile226)_ 1.11152334957089275e+06 -Plasma_triton_thermal_velocity_at_point_227______________________________ (vel_plasma_triton_profile227)_ 1.10998599732574332e+06 -Plasma_triton_thermal_velocity_at_point_228______________________________ (vel_plasma_triton_profile228)_ 1.10844157655237662e+06 -Plasma_triton_thermal_velocity_at_point_229______________________________ (vel_plasma_triton_profile229)_ 1.10689008514413168e+06 -Plasma_triton_thermal_velocity_at_point_230______________________________ (vel_plasma_triton_profile230)_ 1.10533152100934833e+06 -Plasma_triton_thermal_velocity_at_point_231______________________________ (vel_plasma_triton_profile231)_ 1.10376588213462033e+06 -Plasma_triton_thermal_velocity_at_point_232______________________________ (vel_plasma_triton_profile232)_ 1.10219316658522002e+06 -Plasma_triton_thermal_velocity_at_point_233______________________________ (vel_plasma_triton_profile233)_ 1.10061337243300397e+06 -Plasma_triton_thermal_velocity_at_point_234______________________________ (vel_plasma_triton_profile234)_ 1.09902649781535147e+06 -Plasma_triton_thermal_velocity_at_point_235______________________________ (vel_plasma_triton_profile235)_ 1.09743254089459940e+06 -Plasma_triton_thermal_velocity_at_point_236______________________________ (vel_plasma_triton_profile236)_ 1.09583149998103059e+06 -Plasma_triton_thermal_velocity_at_point_237______________________________ (vel_plasma_triton_profile237)_ 1.09422337334690290e+06 -Plasma_triton_thermal_velocity_at_point_238______________________________ (vel_plasma_triton_profile238)_ 1.09260815935391234e+06 -Plasma_triton_thermal_velocity_at_point_239______________________________ (vel_plasma_triton_profile239)_ 1.09098585646289284e+06 -Plasma_triton_thermal_velocity_at_point_240______________________________ (vel_plasma_triton_profile240)_ 1.08935646314285323e+06 -Plasma_triton_thermal_velocity_at_point_241______________________________ (vel_plasma_triton_profile241)_ 1.08771997797643323e+06 -Plasma_triton_thermal_velocity_at_point_242______________________________ (vel_plasma_triton_profile242)_ 1.08607639959635306e+06 -Plasma_triton_thermal_velocity_at_point_243______________________________ (vel_plasma_triton_profile243)_ 1.08442572670410317e+06 -Plasma_triton_thermal_velocity_at_point_244______________________________ (vel_plasma_triton_profile244)_ 1.08276795807038178e+06 -Plasma_triton_thermal_velocity_at_point_245______________________________ (vel_plasma_triton_profile245)_ 1.08110309256323124e+06 -Plasma_triton_thermal_velocity_at_point_246______________________________ (vel_plasma_triton_profile246)_ 1.07943112909787009e+06 -Plasma_triton_thermal_velocity_at_point_247______________________________ (vel_plasma_triton_profile247)_ 1.07775206668327656e+06 -Plasma_triton_thermal_velocity_at_point_248______________________________ (vel_plasma_triton_profile248)_ 1.07606590443212539e+06 -Plasma_triton_thermal_velocity_at_point_249______________________________ (vel_plasma_triton_profile249)_ 1.07437264149188343e+06 -Plasma_triton_thermal_velocity_at_point_250______________________________ (vel_plasma_triton_profile250)_ 1.07267227714269911e+06 -Plasma_triton_thermal_velocity_at_point_251______________________________ (vel_plasma_triton_profile251)_ 1.07096481074715988e+06 -Plasma_triton_thermal_velocity_at_point_252______________________________ (vel_plasma_triton_profile252)_ 1.06925024173690868e+06 -Plasma_triton_thermal_velocity_at_point_253______________________________ (vel_plasma_triton_profile253)_ 1.06752856966923899e+06 -Plasma_triton_thermal_velocity_at_point_254______________________________ (vel_plasma_triton_profile254)_ 1.06579979417658504e+06 -Plasma_triton_thermal_velocity_at_point_255______________________________ (vel_plasma_triton_profile255)_ 1.06406391501868074e+06 -Plasma_triton_thermal_velocity_at_point_256______________________________ (vel_plasma_triton_profile256)_ 1.06232093200843595e+06 -Plasma_triton_thermal_velocity_at_point_257______________________________ (vel_plasma_triton_profile257)_ 1.06057084514407767e+06 -Plasma_triton_thermal_velocity_at_point_258______________________________ (vel_plasma_triton_profile258)_ 1.05881365445989044e+06 -Plasma_triton_thermal_velocity_at_point_259______________________________ (vel_plasma_triton_profile259)_ 1.05704936012563412e+06 -Plasma_triton_thermal_velocity_at_point_260______________________________ (vel_plasma_triton_profile260)_ 1.05527796246659523e+06 -Plasma_triton_thermal_velocity_at_point_261______________________________ (vel_plasma_triton_profile261)_ 1.05349946187493042e+06 -Plasma_triton_thermal_velocity_at_point_262______________________________ (vel_plasma_triton_profile262)_ 1.05171385887192655e+06 -Plasma_triton_thermal_velocity_at_point_263______________________________ (vel_plasma_triton_profile263)_ 1.04992115416615177e+06 -Plasma_triton_thermal_velocity_at_point_264______________________________ (vel_plasma_triton_profile264)_ 1.04812134851229773e+06 -Plasma_triton_thermal_velocity_at_point_265______________________________ (vel_plasma_triton_profile265)_ 1.04631444284990535e+06 -Plasma_triton_thermal_velocity_at_point_266______________________________ (vel_plasma_triton_profile266)_ 1.04450043823337310e+06 -Plasma_triton_thermal_velocity_at_point_267______________________________ (vel_plasma_triton_profile267)_ 1.04267933588087314e+06 -Plasma_triton_thermal_velocity_at_point_268______________________________ (vel_plasma_triton_profile268)_ 1.04085113716148096e+06 -Plasma_triton_thermal_velocity_at_point_269______________________________ (vel_plasma_triton_profile269)_ 1.03901584355817863e+06 -Plasma_triton_thermal_velocity_at_point_270______________________________ (vel_plasma_triton_profile270)_ 1.03717345674592291e+06 -Plasma_triton_thermal_velocity_at_point_271______________________________ (vel_plasma_triton_profile271)_ 1.03532397849226720e+06 -Plasma_triton_thermal_velocity_at_point_272______________________________ (vel_plasma_triton_profile272)_ 1.03346741080795962e+06 -Plasma_triton_thermal_velocity_at_point_273______________________________ (vel_plasma_triton_profile273)_ 1.03160375585737382e+06 -Plasma_triton_thermal_velocity_at_point_274______________________________ (vel_plasma_triton_profile274)_ 1.02973301591159252e+06 -Plasma_triton_thermal_velocity_at_point_275______________________________ (vel_plasma_triton_profile275)_ 1.02785519346116972e+06 -Plasma_triton_thermal_velocity_at_point_276______________________________ (vel_plasma_triton_profile276)_ 1.02597029120857932e+06 -Plasma_triton_thermal_velocity_at_point_277______________________________ (vel_plasma_triton_profile277)_ 1.02407831200213905e+06 -Plasma_triton_thermal_velocity_at_point_278______________________________ (vel_plasma_triton_profile278)_ 1.02217925888636138e+06 -Plasma_triton_thermal_velocity_at_point_279______________________________ (vel_plasma_triton_profile279)_ 1.02027313509909273e+06 -Plasma_triton_thermal_velocity_at_point_280______________________________ (vel_plasma_triton_profile280)_ 1.01835994409313903e+06 -Plasma_triton_thermal_velocity_at_point_281______________________________ (vel_plasma_triton_profile281)_ 1.01643968951397843e+06 -Plasma_triton_thermal_velocity_at_point_282______________________________ (vel_plasma_triton_profile282)_ 1.01451237525100913e+06 -Plasma_triton_thermal_velocity_at_point_283______________________________ (vel_plasma_triton_profile283)_ 1.01257800534651906e+06 -Plasma_triton_thermal_velocity_at_point_284______________________________ (vel_plasma_triton_profile284)_ 1.01063658414058574e+06 -Plasma_triton_thermal_velocity_at_point_285______________________________ (vel_plasma_triton_profile285)_ 1.00868811618520587e+06 -Plasma_triton_thermal_velocity_at_point_286______________________________ (vel_plasma_triton_profile286)_ 1.00673260622187855e+06 -Plasma_triton_thermal_velocity_at_point_287______________________________ (vel_plasma_triton_profile287)_ 1.00477005926322134e+06 -Plasma_triton_thermal_velocity_at_point_288______________________________ (vel_plasma_triton_profile288)_ 1.00280048062084196e+06 -Plasma_triton_thermal_velocity_at_point_289______________________________ (vel_plasma_triton_profile289)_ 1.00082387580395781e+06 -Plasma_triton_thermal_velocity_at_point_290______________________________ (vel_plasma_triton_profile290)_ 9.98840250561691471e+05 -Plasma_triton_thermal_velocity_at_point_291______________________________ (vel_plasma_triton_profile291)_ 9.96849611005970743e+05 -Plasma_triton_thermal_velocity_at_point_292______________________________ (vel_plasma_triton_profile292)_ 9.94851963430024916e+05 -Plasma_triton_thermal_velocity_at_point_293______________________________ (vel_plasma_triton_profile293)_ 9.92847314491548343e+05 -Plasma_triton_thermal_velocity_at_point_294______________________________ (vel_plasma_triton_profile294)_ 9.90835671106069232e+05 -Plasma_triton_thermal_velocity_at_point_295______________________________ (vel_plasma_triton_profile295)_ 9.88817040460144635e+05 -Plasma_triton_thermal_velocity_at_point_296______________________________ (vel_plasma_triton_profile296)_ 9.86791430090469192e+05 -Plasma_triton_thermal_velocity_at_point_297______________________________ (vel_plasma_triton_profile297)_ 9.84758847842402174e+05 -Plasma_triton_thermal_velocity_at_point_298______________________________ (vel_plasma_triton_profile298)_ 9.82719301904166234e+05 -Plasma_triton_thermal_velocity_at_point_299______________________________ (vel_plasma_triton_profile299)_ 9.80672800729583600e+05 -Plasma_triton_thermal_velocity_at_point_300______________________________ (vel_plasma_triton_profile300)_ 9.78619353214780451e+05 -Plasma_triton_thermal_velocity_at_point_301______________________________ (vel_plasma_triton_profile301)_ 9.76558968529752921e+05 -Plasma_triton_thermal_velocity_at_point_302______________________________ (vel_plasma_triton_profile302)_ 9.74491656244779355e+05 -Plasma_triton_thermal_velocity_at_point_303______________________________ (vel_plasma_triton_profile303)_ 9.72417426314819953e+05 -Plasma_triton_thermal_velocity_at_point_304______________________________ (vel_plasma_triton_profile304)_ 9.70336289043192402e+05 -Plasma_triton_thermal_velocity_at_point_305______________________________ (vel_plasma_triton_profile305)_ 9.68248255142718088e+05 -Plasma_triton_thermal_velocity_at_point_306______________________________ (vel_plasma_triton_profile306)_ 9.66153335699587013e+05 -Plasma_triton_thermal_velocity_at_point_307______________________________ (vel_plasma_triton_profile307)_ 9.64051542297222069e+05 -Plasma_triton_thermal_velocity_at_point_308______________________________ (vel_plasma_triton_profile308)_ 9.61942886856553494e+05 -Plasma_triton_thermal_velocity_at_point_309______________________________ (vel_plasma_triton_profile309)_ 9.59827381770516047e+05 -Plasma_triton_thermal_velocity_at_point_310______________________________ (vel_plasma_triton_profile310)_ 9.57705039889293839e+05 -Plasma_triton_thermal_velocity_at_point_311______________________________ (vel_plasma_triton_profile311)_ 9.55575874510639231e+05 -Plasma_triton_thermal_velocity_at_point_312______________________________ (vel_plasma_triton_profile312)_ 9.53439899422435905e+05 -Plasma_triton_thermal_velocity_at_point_313______________________________ (vel_plasma_triton_profile313)_ 9.51297128877704614e+05 -Plasma_triton_thermal_velocity_at_point_314______________________________ (vel_plasma_triton_profile314)_ 9.49147577637653216e+05 -Plasma_triton_thermal_velocity_at_point_315______________________________ (vel_plasma_triton_profile315)_ 9.46991260989020811e+05 -Plasma_triton_thermal_velocity_at_point_316______________________________ (vel_plasma_triton_profile316)_ 9.44828194772273651e+05 -Plasma_triton_thermal_velocity_at_point_317______________________________ (vel_plasma_triton_profile317)_ 9.42658395267343614e+05 -Plasma_triton_thermal_velocity_at_point_318______________________________ (vel_plasma_triton_profile318)_ 9.40481879427957931e+05 -Plasma_triton_thermal_velocity_at_point_319______________________________ (vel_plasma_triton_profile319)_ 9.38298664736445295e+05 -Plasma_triton_thermal_velocity_at_point_320______________________________ (vel_plasma_triton_profile320)_ 9.36108769227123936e+05 -Plasma_triton_thermal_velocity_at_point_321______________________________ (vel_plasma_triton_profile321)_ 9.33912211584861041e+05 -Plasma_triton_thermal_velocity_at_point_322______________________________ (vel_plasma_triton_profile322)_ 9.31709011121927178e+05 -Plasma_triton_thermal_velocity_at_point_323______________________________ (vel_plasma_triton_profile323)_ 9.29499187770689605e+05 -Plasma_triton_thermal_velocity_at_point_324______________________________ (vel_plasma_triton_profile324)_ 9.27282762097784434e+05 -Plasma_triton_thermal_velocity_at_point_325______________________________ (vel_plasma_triton_profile325)_ 9.25059755367096048e+05 -Plasma_triton_thermal_velocity_at_point_326______________________________ (vel_plasma_triton_profile326)_ 9.22830189533429104e+05 -Plasma_triton_thermal_velocity_at_point_327______________________________ (vel_plasma_triton_profile327)_ 9.20594087295773556e+05 -Plasma_triton_thermal_velocity_at_point_328______________________________ (vel_plasma_triton_profile328)_ 9.18351472021033987e+05 -Plasma_triton_thermal_velocity_at_point_329______________________________ (vel_plasma_triton_profile329)_ 9.16102367900886456e+05 -Plasma_triton_thermal_velocity_at_point_330______________________________ (vel_plasma_triton_profile330)_ 9.13846799788918230e+05 -Plasma_triton_thermal_velocity_at_point_331______________________________ (vel_plasma_triton_profile331)_ 9.11584793484208290e+05 -Plasma_triton_thermal_velocity_at_point_332______________________________ (vel_plasma_triton_profile332)_ 9.09316375503471005e+05 -Plasma_triton_thermal_velocity_at_point_333______________________________ (vel_plasma_triton_profile333)_ 9.07041573196391226e+05 -Plasma_triton_thermal_velocity_at_point_334______________________________ (vel_plasma_triton_profile334)_ 9.04760414818656282e+05 -Plasma_triton_thermal_velocity_at_point_335______________________________ (vel_plasma_triton_profile335)_ 9.02472929545369931e+05 -Plasma_triton_thermal_velocity_at_point_336______________________________ (vel_plasma_triton_profile336)_ 9.00179147357282229e+05 -Plasma_triton_thermal_velocity_at_point_337______________________________ (vel_plasma_triton_profile337)_ 8.97879099314317340e+05 -Plasma_triton_thermal_velocity_at_point_338______________________________ (vel_plasma_triton_profile338)_ 8.95572817298600334e+05 -Plasma_triton_thermal_velocity_at_point_339______________________________ (vel_plasma_triton_profile339)_ 8.93260334306536592e+05 -Plasma_triton_thermal_velocity_at_point_340______________________________ (vel_plasma_triton_profile340)_ 8.90941684291942162e+05 -Plasma_triton_thermal_velocity_at_point_341______________________________ (vel_plasma_triton_profile341)_ 8.88616902281924733e+05 -Plasma_triton_thermal_velocity_at_point_342______________________________ (vel_plasma_triton_profile342)_ 8.86286024365206249e+05 -Plasma_triton_thermal_velocity_at_point_343______________________________ (vel_plasma_triton_profile343)_ 8.83949087776308996e+05 -Plasma_triton_thermal_velocity_at_point_344______________________________ (vel_plasma_triton_profile344)_ 8.81606130873654736e+05 -Plasma_triton_thermal_velocity_at_point_345______________________________ (vel_plasma_triton_profile345)_ 8.79257193213877734e+05 -Plasma_triton_thermal_velocity_at_point_346______________________________ (vel_plasma_triton_profile346)_ 8.76902315513643436e+05 -Plasma_triton_thermal_velocity_at_point_347______________________________ (vel_plasma_triton_profile347)_ 8.74541539787803427e+05 -Plasma_triton_thermal_velocity_at_point_348______________________________ (vel_plasma_triton_profile348)_ 8.72174909329729737e+05 -Plasma_triton_thermal_velocity_at_point_349______________________________ (vel_plasma_triton_profile349)_ 8.69802468743061647e+05 -Plasma_triton_thermal_velocity_at_point_350______________________________ (vel_plasma_triton_profile350)_ 8.67424264020095463e+05 -Plasma_triton_thermal_velocity_at_point_351______________________________ (vel_plasma_triton_profile351)_ 8.65040342477390077e+05 -Plasma_triton_thermal_velocity_at_point_352______________________________ (vel_plasma_triton_profile352)_ 8.62650752968025161e+05 -Plasma_triton_thermal_velocity_at_point_353______________________________ (vel_plasma_triton_profile353)_ 8.60255545790129923e+05 -Plasma_triton_thermal_velocity_at_point_354______________________________ (vel_plasma_triton_profile354)_ 8.57854772721951012e+05 -Plasma_triton_thermal_velocity_at_point_355______________________________ (vel_plasma_triton_profile355)_ 8.55448487220920622e+05 -Plasma_triton_thermal_velocity_at_point_356______________________________ (vel_plasma_triton_profile356)_ 8.53036744240206783e+05 -Plasma_triton_thermal_velocity_at_point_357______________________________ (vel_plasma_triton_profile357)_ 8.50619600540809100e+05 -Plasma_triton_thermal_velocity_at_point_358______________________________ (vel_plasma_triton_profile358)_ 8.48197114467967302e+05 -Plasma_triton_thermal_velocity_at_point_359______________________________ (vel_plasma_triton_profile359)_ 8.45769346248853370e+05 -Plasma_triton_thermal_velocity_at_point_360______________________________ (vel_plasma_triton_profile360)_ 8.43336357834084309e+05 -Plasma_triton_thermal_velocity_at_point_361______________________________ (vel_plasma_triton_profile361)_ 8.40898213169724680e+05 -Plasma_triton_thermal_velocity_at_point_362______________________________ (vel_plasma_triton_profile362)_ 8.38454978045733995e+05 -Plasma_triton_thermal_velocity_at_point_363______________________________ (vel_plasma_triton_profile363)_ 8.36006720288014505e+05 -Plasma_triton_thermal_velocity_at_point_364______________________________ (vel_plasma_triton_profile364)_ 8.33553509756451240e+05 -Plasma_triton_thermal_velocity_at_point_365______________________________ (vel_plasma_triton_profile365)_ 8.31095418517132523e+05 -Plasma_triton_thermal_velocity_at_point_366______________________________ (vel_plasma_triton_profile366)_ 8.28632520674572443e+05 -Plasma_triton_thermal_velocity_at_point_367______________________________ (vel_plasma_triton_profile367)_ 8.26164892726439633e+05 -Plasma_triton_thermal_velocity_at_point_368______________________________ (vel_plasma_triton_profile368)_ 8.23692613428109325e+05 -Plasma_triton_thermal_velocity_at_point_369______________________________ (vel_plasma_triton_profile369)_ 8.21215763946512598e+05 -Plasma_triton_thermal_velocity_at_point_370______________________________ (vel_plasma_triton_profile370)_ 8.18734427913301624e+05 -Plasma_triton_thermal_velocity_at_point_371______________________________ (vel_plasma_triton_profile371)_ 8.16248691540231346e+05 -Plasma_triton_thermal_velocity_at_point_372______________________________ (vel_plasma_triton_profile372)_ 8.13758643626416451e+05 -Plasma_triton_thermal_velocity_at_point_373______________________________ (vel_plasma_triton_profile373)_ 8.11264375731881009e+05 -Plasma_triton_thermal_velocity_at_point_374______________________________ (vel_plasma_triton_profile374)_ 8.08765982200213824e+05 -Plasma_triton_thermal_velocity_at_point_375______________________________ (vel_plasma_triton_profile375)_ 8.06263560225069174e+05 -Plasma_triton_thermal_velocity_at_point_376______________________________ (vel_plasma_triton_profile376)_ 8.03757210073192720e+05 -Plasma_triton_thermal_velocity_at_point_377______________________________ (vel_plasma_triton_profile377)_ 8.01247035000400618e+05 -Plasma_triton_thermal_velocity_at_point_378______________________________ (vel_plasma_triton_profile378)_ 7.98733141503366176e+05 -Plasma_triton_thermal_velocity_at_point_379______________________________ (vel_plasma_triton_profile379)_ 7.96215639338152600e+05 -Plasma_triton_thermal_velocity_at_point_380______________________________ (vel_plasma_triton_profile380)_ 7.93694641683754977e+05 -Plasma_triton_thermal_velocity_at_point_381______________________________ (vel_plasma_triton_profile381)_ 7.91170265182720032e+05 -Plasma_triton_thermal_velocity_at_point_382______________________________ (vel_plasma_triton_profile382)_ 7.88642630115457578e+05 -Plasma_triton_thermal_velocity_at_point_383______________________________ (vel_plasma_triton_profile383)_ 7.86111860495456960e+05 -Plasma_triton_thermal_velocity_at_point_384______________________________ (vel_plasma_triton_profile384)_ 7.83578084217326599e+05 -Plasma_triton_thermal_velocity_at_point_385______________________________ (vel_plasma_triton_profile385)_ 7.81041433137471671e+05 -Plasma_triton_thermal_velocity_at_point_386______________________________ (vel_plasma_triton_profile386)_ 7.78502043316576863e+05 -Plasma_triton_thermal_velocity_at_point_387______________________________ (vel_plasma_triton_profile387)_ 7.75960054951792117e+05 -Plasma_triton_thermal_velocity_at_point_388______________________________ (vel_plasma_triton_profile388)_ 7.73415612810714985e+05 -Plasma_triton_thermal_velocity_at_point_389______________________________ (vel_plasma_triton_profile389)_ 7.70868866110854200e+05 -Plasma_triton_thermal_velocity_at_point_390______________________________ (vel_plasma_triton_profile390)_ 7.68319968844682095e+05 -Plasma_triton_thermal_velocity_at_point_391______________________________ (vel_plasma_triton_profile391)_ 7.65769079870026908e+05 -Plasma_triton_thermal_velocity_at_point_392______________________________ (vel_plasma_triton_profile392)_ 7.63216363106749603e+05 -Plasma_triton_thermal_velocity_at_point_393______________________________ (vel_plasma_triton_profile393)_ 7.60661987756909220e+05 -Plasma_triton_thermal_velocity_at_point_394______________________________ (vel_plasma_triton_profile394)_ 7.58106128344932105e+05 -Plasma_triton_thermal_velocity_at_point_395______________________________ (vel_plasma_triton_profile395)_ 7.55548965114955092e+05 -Plasma_triton_thermal_velocity_at_point_396______________________________ (vel_plasma_triton_profile396)_ 7.52990684031841694e+05 -Plasma_triton_thermal_velocity_at_point_397______________________________ (vel_plasma_triton_profile397)_ 7.50431477140927920e+05 -Plasma_triton_thermal_velocity_at_point_398______________________________ (vel_plasma_triton_profile398)_ 7.47871542734678020e+05 -Plasma_triton_thermal_velocity_at_point_399______________________________ (vel_plasma_triton_profile399)_ 7.45311085542456945e+05 -Plasma_triton_thermal_velocity_at_point_400______________________________ (vel_plasma_triton_profile400)_ 7.42750317004381330e+05 -Plasma_triton_thermal_velocity_at_point_401______________________________ (vel_plasma_triton_profile401)_ 7.40189455489673070e+05 -Plasma_triton_thermal_velocity_at_point_402______________________________ (vel_plasma_triton_profile402)_ 7.37628726667781477e+05 -Plasma_triton_thermal_velocity_at_point_403______________________________ (vel_plasma_triton_profile403)_ 7.35068363615112961e+05 -Plasma_triton_thermal_velocity_at_point_404______________________________ (vel_plasma_triton_profile404)_ 7.32508607182077598e+05 -Plasma_triton_thermal_velocity_at_point_405______________________________ (vel_plasma_triton_profile405)_ 7.29949706339692697e+05 -Plasma_triton_thermal_velocity_at_point_406______________________________ (vel_plasma_triton_profile406)_ 7.27391918388540391e+05 -Plasma_triton_thermal_velocity_at_point_407______________________________ (vel_plasma_triton_profile407)_ 7.24835509315664764e+05 -Plasma_triton_thermal_velocity_at_point_408______________________________ (vel_plasma_triton_profile408)_ 7.22280754192440072e+05 -Plasma_triton_thermal_velocity_at_point_409______________________________ (vel_plasma_triton_profile409)_ 7.19727937482593115e+05 -Plasma_triton_thermal_velocity_at_point_410______________________________ (vel_plasma_triton_profile410)_ 7.17177353445829591e+05 -Plasma_triton_thermal_velocity_at_point_411______________________________ (vel_plasma_triton_profile411)_ 7.14629306450802018e+05 -Plasma_triton_thermal_velocity_at_point_412______________________________ (vel_plasma_triton_profile412)_ 7.12084111524280161e+05 -Plasma_triton_thermal_velocity_at_point_413______________________________ (vel_plasma_triton_profile413)_ 7.09542094671165221e+05 -Plasma_triton_thermal_velocity_at_point_414______________________________ (vel_plasma_triton_profile414)_ 7.07003593425113591e+05 -Plasma_triton_thermal_velocity_at_point_415______________________________ (vel_plasma_triton_profile415)_ 7.04468957217527903e+05 -Plasma_triton_thermal_velocity_at_point_416______________________________ (vel_plasma_triton_profile416)_ 7.01938548029178288e+05 -Plasma_triton_thermal_velocity_at_point_417______________________________ (vel_plasma_triton_profile417)_ 6.99412740803486085e+05 -Plasma_triton_thermal_velocity_at_point_418______________________________ (vel_plasma_triton_profile418)_ 6.96891924080458703e+05 -Plasma_triton_thermal_velocity_at_point_419______________________________ (vel_plasma_triton_profile419)_ 6.94376500605093315e+05 -Plasma_triton_thermal_velocity_at_point_420______________________________ (vel_plasma_triton_profile420)_ 6.91866887974133948e+05 -Plasma_triton_thermal_velocity_at_point_421______________________________ (vel_plasma_triton_profile421)_ 6.89363519220441696e+05 -Plasma_triton_thermal_velocity_at_point_422______________________________ (vel_plasma_triton_profile422)_ 6.86866843608972500e+05 -Plasma_triton_thermal_velocity_at_point_423______________________________ (vel_plasma_triton_profile423)_ 6.84377327430593781e+05 -Plasma_triton_thermal_velocity_at_point_424______________________________ (vel_plasma_triton_profile424)_ 6.81895454676079331e+05 -Plasma_triton_thermal_velocity_at_point_425______________________________ (vel_plasma_triton_profile425)_ 6.79421728115344653e+05 -Plasma_triton_thermal_velocity_at_point_426______________________________ (vel_plasma_triton_profile426)_ 6.76956669973589829e+05 -Plasma_triton_thermal_velocity_at_point_427______________________________ (vel_plasma_triton_profile427)_ 6.74500823073514737e+05 -Plasma_triton_thermal_velocity_at_point_428______________________________ (vel_plasma_triton_profile428)_ 6.72054751890568295e+05 -Plasma_triton_thermal_velocity_at_point_429______________________________ (vel_plasma_triton_profile429)_ 6.69619043570250156e+05 -Plasma_triton_thermal_velocity_at_point_430______________________________ (vel_plasma_triton_profile430)_ 6.67194309264455922e+05 -Plasma_triton_thermal_velocity_at_point_431______________________________ (vel_plasma_triton_profile431)_ 6.64781185336138471e+05 -Plasma_triton_thermal_velocity_at_point_432______________________________ (vel_plasma_triton_profile432)_ 6.62380334894675179e+05 -Plasma_triton_thermal_velocity_at_point_433______________________________ (vel_plasma_triton_profile433)_ 6.59992449215461151e+05 -Plasma_triton_thermal_velocity_at_point_434______________________________ (vel_plasma_triton_profile434)_ 6.57618249319940805e+05 -Plasma_triton_thermal_velocity_at_point_435______________________________ (vel_plasma_triton_profile435)_ 6.55258488076340640e+05 -Plasma_triton_thermal_velocity_at_point_436______________________________ (vel_plasma_triton_profile436)_ 6.52913951770191779e+05 -Plasma_triton_thermal_velocity_at_point_437______________________________ (vel_plasma_triton_profile437)_ 6.50585462486417615e+05 -Plasma_triton_thermal_velocity_at_point_438______________________________ (vel_plasma_triton_profile438)_ 6.48273880343646277e+05 -Plasma_triton_thermal_velocity_at_point_439______________________________ (vel_plasma_triton_profile439)_ 6.45980106176629546e+05 -Plasma_triton_thermal_velocity_at_point_440______________________________ (vel_plasma_triton_profile440)_ 6.43705084264036966e+05 -Plasma_triton_thermal_velocity_at_point_441______________________________ (vel_plasma_triton_profile441)_ 6.41449805441370467e+05 -Plasma_triton_thermal_velocity_at_point_442______________________________ (vel_plasma_triton_profile442)_ 6.39215310682514450e+05 -Plasma_triton_thermal_velocity_at_point_443______________________________ (vel_plasma_triton_profile443)_ 6.37002694960908615e+05 -Plasma_triton_thermal_velocity_at_point_444______________________________ (vel_plasma_triton_profile444)_ 6.34813111596046947e+05 -Plasma_triton_thermal_velocity_at_point_445______________________________ (vel_plasma_triton_profile445)_ 6.32647777177542099e+05 -Plasma_triton_thermal_velocity_at_point_446______________________________ (vel_plasma_triton_profile446)_ 6.30507977025864064e+05 -Plasma_triton_thermal_velocity_at_point_447______________________________ (vel_plasma_triton_profile447)_ 6.28395071733906865e+05 -Plasma_triton_thermal_velocity_at_point_448______________________________ (vel_plasma_triton_profile448)_ 6.26310504111826536e+05 -Plasma_triton_thermal_velocity_at_point_449______________________________ (vel_plasma_triton_profile449)_ 6.24255807755445829e+05 -Plasma_triton_thermal_velocity_at_point_450______________________________ (vel_plasma_triton_profile450)_ 6.22232616596227395e+05 -Plasma_triton_thermal_velocity_at_point_451______________________________ (vel_plasma_triton_profile451)_ 6.20242676218395936e+05 -Plasma_triton_thermal_velocity_at_point_452______________________________ (vel_plasma_triton_profile452)_ 6.18287857253091759e+05 -Plasma_triton_thermal_velocity_at_point_453______________________________ (vel_plasma_triton_profile453)_ 6.16370170894901617e+05 -Plasma_triton_thermal_velocity_at_point_454______________________________ (vel_plasma_triton_profile454)_ 6.14491788334485376e+05 -Plasma_triton_thermal_velocity_at_point_455______________________________ (vel_plasma_triton_profile455)_ 6.12655063452792354e+05 -Plasma_triton_thermal_velocity_at_point_456______________________________ (vel_plasma_triton_profile456)_ 6.10862561279921792e+05 -Plasma_triton_thermal_velocity_at_point_457______________________________ (vel_plasma_triton_profile457)_ 6.09117093218073598e+05 -Plasma_triton_thermal_velocity_at_point_458______________________________ (vel_plasma_triton_profile458)_ 6.07421761721440358e+05 -Plasma_triton_thermal_velocity_at_point_459______________________________ (vel_plasma_triton_profile459)_ 6.05780017684214981e+05 -Plasma_triton_thermal_velocity_at_point_460______________________________ (vel_plasma_triton_profile460)_ 6.04195735914044664e+05 -Plasma_triton_thermal_velocity_at_point_461______________________________ (vel_plasma_triton_profile461)_ 6.02673316868650843e+05 -Plasma_triton_thermal_velocity_at_point_462______________________________ (vel_plasma_triton_profile462)_ 6.01217827213060344e+05 -Plasma_triton_thermal_velocity_at_point_463______________________________ (vel_plasma_triton_profile463)_ 5.99835201485195546e+05 -Plasma_triton_thermal_velocity_at_point_464______________________________ (vel_plasma_triton_profile464)_ 5.98532543828896945e+05 -Plasma_triton_thermal_velocity_at_point_465______________________________ (vel_plasma_triton_profile465)_ 5.97318603486110573e+05 -Plasma_triton_thermal_velocity_at_point_466______________________________ (vel_plasma_triton_profile466)_ 5.96204581214881735e+05 -Plasma_triton_thermal_velocity_at_point_467______________________________ (vel_plasma_triton_profile467)_ 5.95205637610219186e+05 -Plasma_triton_thermal_velocity_at_point_468______________________________ (vel_plasma_triton_profile468)_ 5.94344167960023042e+05 -Plasma_triton_thermal_velocity_at_point_469______________________________ (vel_plasma_triton_profile469)_ 5.93659027348720352e+05 +Volume_averaged_triton_thermal_velocity_(m/s)____________________________ (vel_plasma_triton_vol_avg)____ 9.00601060080267140e+05 +Plasma_triton_thermal_velocity_at_point_0________________________________ (vel_plasma_triton_profile0)___ 1.29665711904768762e+06 +Plasma_triton_thermal_velocity_at_point_1________________________________ (vel_plasma_triton_profile1)___ 1.29665375428541866e+06 +Plasma_triton_thermal_velocity_at_point_2________________________________ (vel_plasma_triton_profile2)___ 1.29664365997315617e+06 +Plasma_triton_thermal_velocity_at_point_3________________________________ (vel_plasma_triton_profile3)___ 1.29662683609609725e+06 +Plasma_triton_thermal_velocity_at_point_4________________________________ (vel_plasma_triton_profile4)___ 1.29660328256543819e+06 +Plasma_triton_thermal_velocity_at_point_5________________________________ (vel_plasma_triton_profile5)___ 1.29657299931456405e+06 +Plasma_triton_thermal_velocity_at_point_6________________________________ (vel_plasma_triton_profile6)___ 1.29653598626056453e+06 +Plasma_triton_thermal_velocity_at_point_7________________________________ (vel_plasma_triton_profile7)___ 1.29649224326959788e+06 +Plasma_triton_thermal_velocity_at_point_8________________________________ (vel_plasma_triton_profile8)___ 1.29644177020305279e+06 +Plasma_triton_thermal_velocity_at_point_9________________________________ (vel_plasma_triton_profile9)___ 1.29638456686366489e+06 +Plasma_triton_thermal_velocity_at_point_10_______________________________ (vel_plasma_triton_profile10)__ 1.29632063308401126e+06 +Plasma_triton_thermal_velocity_at_point_11_______________________________ (vel_plasma_triton_profile11)__ 1.29624996865338320e+06 +Plasma_triton_thermal_velocity_at_point_12_______________________________ (vel_plasma_triton_profile12)__ 1.29617257331391214e+06 +Plasma_triton_thermal_velocity_at_point_13_______________________________ (vel_plasma_triton_profile13)__ 1.29608844682598440e+06 +Plasma_triton_thermal_velocity_at_point_14_______________________________ (vel_plasma_triton_profile14)__ 1.29599758890664019e+06 +Plasma_triton_thermal_velocity_at_point_15_______________________________ (vel_plasma_triton_profile15)__ 1.29589999924109364e+06 +Plasma_triton_thermal_velocity_at_point_16_______________________________ (vel_plasma_triton_profile16)__ 1.29579567750195693e+06 +Plasma_triton_thermal_velocity_at_point_17_______________________________ (vel_plasma_triton_profile17)__ 1.29568462334921863e+06 +Plasma_triton_thermal_velocity_at_point_18_______________________________ (vel_plasma_triton_profile18)__ 1.29556683641481702e+06 +Plasma_triton_thermal_velocity_at_point_19_______________________________ (vel_plasma_triton_profile19)__ 1.29544231629875838e+06 +Plasma_triton_thermal_velocity_at_point_20_______________________________ (vel_plasma_triton_profile20)__ 1.29531106256522867e+06 +Plasma_triton_thermal_velocity_at_point_21_______________________________ (vel_plasma_triton_profile21)__ 1.29517307482344890e+06 +Plasma_triton_thermal_velocity_at_point_22_______________________________ (vel_plasma_triton_profile22)__ 1.29502835255431291e+06 +Plasma_triton_thermal_velocity_at_point_23_______________________________ (vel_plasma_triton_profile23)__ 1.29487689532220736e+06 +Plasma_triton_thermal_velocity_at_point_24_______________________________ (vel_plasma_triton_profile24)__ 1.29471870259392099e+06 +Plasma_triton_thermal_velocity_at_point_25_______________________________ (vel_plasma_triton_profile25)__ 1.29455377385032759e+06 +Plasma_triton_thermal_velocity_at_point_26_______________________________ (vel_plasma_triton_profile26)__ 1.29438210852854699e+06 +Plasma_triton_thermal_velocity_at_point_27_______________________________ (vel_plasma_triton_profile27)__ 1.29420370607586042e+06 +Plasma_triton_thermal_velocity_at_point_28_______________________________ (vel_plasma_triton_profile28)__ 1.29401856588414381e+06 +Plasma_triton_thermal_velocity_at_point_29_______________________________ (vel_plasma_triton_profile29)__ 1.29382668733221409e+06 +Plasma_triton_thermal_velocity_at_point_30_______________________________ (vel_plasma_triton_profile30)__ 1.29362806978193182e+06 +Plasma_triton_thermal_velocity_at_point_31_______________________________ (vel_plasma_triton_profile31)__ 1.29342271257815510e+06 +Plasma_triton_thermal_velocity_at_point_32_______________________________ (vel_plasma_triton_profile32)__ 1.29321061500239675e+06 +Plasma_triton_thermal_velocity_at_point_33_______________________________ (vel_plasma_triton_profile33)__ 1.29299177639235300e+06 +Plasma_triton_thermal_velocity_at_point_34_______________________________ (vel_plasma_triton_profile34)__ 1.29276619598754542e+06 +Plasma_triton_thermal_velocity_at_point_35_______________________________ (vel_plasma_triton_profile35)__ 1.29253387304499513e+06 +Plasma_triton_thermal_velocity_at_point_36_______________________________ (vel_plasma_triton_profile36)__ 1.29229480680059409e+06 +Plasma_triton_thermal_velocity_at_point_37_______________________________ (vel_plasma_triton_profile37)__ 1.29204899643043149e+06 +Plasma_triton_thermal_velocity_at_point_38_______________________________ (vel_plasma_triton_profile38)__ 1.29179644113952573e+06 +Plasma_triton_thermal_velocity_at_point_39_______________________________ (vel_plasma_triton_profile39)__ 1.29153714006909821e+06 +Plasma_triton_thermal_velocity_at_point_40_______________________________ (vel_plasma_triton_profile40)__ 1.29127109236601600e+06 +Plasma_triton_thermal_velocity_at_point_41_______________________________ (vel_plasma_triton_profile41)__ 1.29099829713637568e+06 +Plasma_triton_thermal_velocity_at_point_42_______________________________ (vel_plasma_triton_profile42)__ 1.29071875346474349e+06 +Plasma_triton_thermal_velocity_at_point_43_______________________________ (vel_plasma_triton_profile43)__ 1.29043246043728082e+06 +Plasma_triton_thermal_velocity_at_point_44_______________________________ (vel_plasma_triton_profile44)__ 1.29013941708369227e+06 +Plasma_triton_thermal_velocity_at_point_45_______________________________ (vel_plasma_triton_profile45)__ 1.28983962244673609e+06 +Plasma_triton_thermal_velocity_at_point_46_______________________________ (vel_plasma_triton_profile46)__ 1.28953307550867880e+06 +Plasma_triton_thermal_velocity_at_point_47_______________________________ (vel_plasma_triton_profile47)__ 1.28921977527244017e+06 +Plasma_triton_thermal_velocity_at_point_48_______________________________ (vel_plasma_triton_profile48)__ 1.28889972066866350e+06 +Plasma_triton_thermal_velocity_at_point_49_______________________________ (vel_plasma_triton_profile49)__ 1.28857291064849729e+06 +Plasma_triton_thermal_velocity_at_point_50_______________________________ (vel_plasma_triton_profile50)__ 1.28823934413321735e+06 +Plasma_triton_thermal_velocity_at_point_51_______________________________ (vel_plasma_triton_profile51)__ 1.28789902000638703e+06 +Plasma_triton_thermal_velocity_at_point_52_______________________________ (vel_plasma_triton_profile52)__ 1.28755193711762154e+06 +Plasma_triton_thermal_velocity_at_point_53_______________________________ (vel_plasma_triton_profile53)__ 1.28719809433674836e+06 +Plasma_triton_thermal_velocity_at_point_54_______________________________ (vel_plasma_triton_profile54)__ 1.28683749049561843e+06 +Plasma_triton_thermal_velocity_at_point_55_______________________________ (vel_plasma_triton_profile55)__ 1.28647012438023696e+06 +Plasma_triton_thermal_velocity_at_point_56_______________________________ (vel_plasma_triton_profile56)__ 1.28609599476942793e+06 +Plasma_triton_thermal_velocity_at_point_57_______________________________ (vel_plasma_triton_profile57)__ 1.28571510042311694e+06 +Plasma_triton_thermal_velocity_at_point_58_______________________________ (vel_plasma_triton_profile58)__ 1.28532744010941219e+06 +Plasma_triton_thermal_velocity_at_point_59_______________________________ (vel_plasma_triton_profile59)__ 1.28493301248806552e+06 +Plasma_triton_thermal_velocity_at_point_60_______________________________ (vel_plasma_triton_profile60)__ 1.28453181630832446e+06 +Plasma_triton_thermal_velocity_at_point_61_______________________________ (vel_plasma_triton_profile61)__ 1.28412385020308499e+06 +Plasma_triton_thermal_velocity_at_point_62_______________________________ (vel_plasma_triton_profile62)__ 1.28370911284021125e+06 +Plasma_triton_thermal_velocity_at_point_63_______________________________ (vel_plasma_triton_profile63)__ 1.28328760284087714e+06 +Plasma_triton_thermal_velocity_at_point_64_______________________________ (vel_plasma_triton_profile64)__ 1.28285931881830981e+06 +Plasma_triton_thermal_velocity_at_point_65_______________________________ (vel_plasma_triton_profile65)__ 1.28242425933879847e+06 +Plasma_triton_thermal_velocity_at_point_66_______________________________ (vel_plasma_triton_profile66)__ 1.28198242299159174e+06 +Plasma_triton_thermal_velocity_at_point_67_______________________________ (vel_plasma_triton_profile67)__ 1.28153380827207025e+06 +Plasma_triton_thermal_velocity_at_point_68_______________________________ (vel_plasma_triton_profile68)__ 1.28107841375285923e+06 +Plasma_triton_thermal_velocity_at_point_69_______________________________ (vel_plasma_triton_profile69)__ 1.28061623791636876e+06 +Plasma_triton_thermal_velocity_at_point_70_______________________________ (vel_plasma_triton_profile70)__ 1.28014727920911368e+06 +Plasma_triton_thermal_velocity_at_point_71_______________________________ (vel_plasma_triton_profile71)__ 1.27967153610394546e+06 +Plasma_triton_thermal_velocity_at_point_72_______________________________ (vel_plasma_triton_profile72)__ 1.27918900703371782e+06 +Plasma_triton_thermal_velocity_at_point_73_______________________________ (vel_plasma_triton_profile73)__ 1.27869969043014501e+06 +Plasma_triton_thermal_velocity_at_point_74_______________________________ (vel_plasma_triton_profile74)__ 1.27820358464955469e+06 +Plasma_triton_thermal_velocity_at_point_75_______________________________ (vel_plasma_triton_profile75)__ 1.27770068805856281e+06 +Plasma_triton_thermal_velocity_at_point_76_______________________________ (vel_plasma_triton_profile76)__ 1.27719099903400498e+06 +Plasma_triton_thermal_velocity_at_point_77_______________________________ (vel_plasma_triton_profile77)__ 1.27667451586908102e+06 +Plasma_triton_thermal_velocity_at_point_78_______________________________ (vel_plasma_triton_profile78)__ 1.27615123690602044e+06 +Plasma_triton_thermal_velocity_at_point_79_______________________________ (vel_plasma_triton_profile79)__ 1.27562116037964914e+06 +Plasma_triton_thermal_velocity_at_point_80_______________________________ (vel_plasma_triton_profile80)__ 1.27508428458140953e+06 +Plasma_triton_thermal_velocity_at_point_81_______________________________ (vel_plasma_triton_profile81)__ 1.27454060775761330e+06 +Plasma_triton_thermal_velocity_at_point_82_______________________________ (vel_plasma_triton_profile82)__ 1.27399012810925185e+06 +Plasma_triton_thermal_velocity_at_point_83_______________________________ (vel_plasma_triton_profile83)__ 1.27343284383881767e+06 +Plasma_triton_thermal_velocity_at_point_84_______________________________ (vel_plasma_triton_profile84)__ 1.27286875311885588e+06 +Plasma_triton_thermal_velocity_at_point_85_______________________________ (vel_plasma_triton_profile85)__ 1.27229785411532666e+06 +Plasma_triton_thermal_velocity_at_point_86_______________________________ (vel_plasma_triton_profile86)__ 1.27172014495218708e+06 +Plasma_triton_thermal_velocity_at_point_87_______________________________ (vel_plasma_triton_profile87)__ 1.27113562375829369e+06 +Plasma_triton_thermal_velocity_at_point_88_______________________________ (vel_plasma_triton_profile88)__ 1.27054428862019209e+06 +Plasma_triton_thermal_velocity_at_point_89_______________________________ (vel_plasma_triton_profile89)__ 1.26994613759763329e+06 +Plasma_triton_thermal_velocity_at_point_90_______________________________ (vel_plasma_triton_profile90)__ 1.26934116874698712e+06 +Plasma_triton_thermal_velocity_at_point_91_______________________________ (vel_plasma_triton_profile91)__ 1.26872938011326781e+06 +Plasma_triton_thermal_velocity_at_point_92_______________________________ (vel_plasma_triton_profile92)__ 1.26811076970245992e+06 +Plasma_triton_thermal_velocity_at_point_93_______________________________ (vel_plasma_triton_profile93)__ 1.26748533548131795e+06 +Plasma_triton_thermal_velocity_at_point_94_______________________________ (vel_plasma_triton_profile94)__ 1.26685307544804760e+06 +Plasma_triton_thermal_velocity_at_point_95_______________________________ (vel_plasma_triton_profile95)__ 1.26621398752983171e+06 +Plasma_triton_thermal_velocity_at_point_96_______________________________ (vel_plasma_triton_profile96)__ 1.26556806968503678e+06 +Plasma_triton_thermal_velocity_at_point_97_______________________________ (vel_plasma_triton_profile97)__ 1.26491531979669002e+06 +Plasma_triton_thermal_velocity_at_point_98_______________________________ (vel_plasma_triton_profile98)__ 1.26425573574714782e+06 +Plasma_triton_thermal_velocity_at_point_99_______________________________ (vel_plasma_triton_profile99)__ 1.26358931541008712e+06 +Plasma_triton_thermal_velocity_at_point_100______________________________ (vel_plasma_triton_profile100)_ 1.26291605663851323e+06 +Plasma_triton_thermal_velocity_at_point_101______________________________ (vel_plasma_triton_profile101)_ 1.26223595726854261e+06 +Plasma_triton_thermal_velocity_at_point_102______________________________ (vel_plasma_triton_profile102)_ 1.26154901508364826e+06 +Plasma_triton_thermal_velocity_at_point_103______________________________ (vel_plasma_triton_profile103)_ 1.26085522788166394e+06 +Plasma_triton_thermal_velocity_at_point_104______________________________ (vel_plasma_triton_profile104)_ 1.26015459344699048e+06 +Plasma_triton_thermal_velocity_at_point_105______________________________ (vel_plasma_triton_profile105)_ 1.25944710949894134e+06 +Plasma_triton_thermal_velocity_at_point_106______________________________ (vel_plasma_triton_profile106)_ 1.25873277379052667e+06 +Plasma_triton_thermal_velocity_at_point_107______________________________ (vel_plasma_triton_profile107)_ 1.25801158402117691e+06 +Plasma_triton_thermal_velocity_at_point_108______________________________ (vel_plasma_triton_profile108)_ 1.25728353788011405e+06 +Plasma_triton_thermal_velocity_at_point_109______________________________ (vel_plasma_triton_profile109)_ 1.25654863303825702e+06 +Plasma_triton_thermal_velocity_at_point_110______________________________ (vel_plasma_triton_profile110)_ 1.25580686713612149e+06 +Plasma_triton_thermal_velocity_at_point_111______________________________ (vel_plasma_triton_profile111)_ 1.25505823781937896e+06 +Plasma_triton_thermal_velocity_at_point_112______________________________ (vel_plasma_triton_profile112)_ 1.25430274269896816e+06 +Plasma_triton_thermal_velocity_at_point_113______________________________ (vel_plasma_triton_profile113)_ 1.25354037935483945e+06 +Plasma_triton_thermal_velocity_at_point_114______________________________ (vel_plasma_triton_profile114)_ 1.25277114537953632e+06 +Plasma_triton_thermal_velocity_at_point_115______________________________ (vel_plasma_triton_profile115)_ 1.25199503833028185e+06 +Plasma_triton_thermal_velocity_at_point_116______________________________ (vel_plasma_triton_profile116)_ 1.25121205572475004e+06 +Plasma_triton_thermal_velocity_at_point_117______________________________ (vel_plasma_triton_profile117)_ 1.25042219509267411e+06 +Plasma_triton_thermal_velocity_at_point_118______________________________ (vel_plasma_triton_profile118)_ 1.24962545392384683e+06 +Plasma_triton_thermal_velocity_at_point_119______________________________ (vel_plasma_triton_profile119)_ 1.24882182973577199e+06 +Plasma_triton_thermal_velocity_at_point_120______________________________ (vel_plasma_triton_profile120)_ 1.24801131994968862e+06 +Plasma_triton_thermal_velocity_at_point_121______________________________ (vel_plasma_triton_profile121)_ 1.24719392201412725e+06 +Plasma_triton_thermal_velocity_at_point_122______________________________ (vel_plasma_triton_profile122)_ 1.24636963340085349e+06 +Plasma_triton_thermal_velocity_at_point_123______________________________ (vel_plasma_triton_profile123)_ 1.24553845147262188e+06 +Plasma_triton_thermal_velocity_at_point_124______________________________ (vel_plasma_triton_profile124)_ 1.24470037364299898e+06 +Plasma_triton_thermal_velocity_at_point_125______________________________ (vel_plasma_triton_profile125)_ 1.24385539728413685e+06 +Plasma_triton_thermal_velocity_at_point_126______________________________ (vel_plasma_triton_profile126)_ 1.24300351974655711e+06 +Plasma_triton_thermal_velocity_at_point_127______________________________ (vel_plasma_triton_profile127)_ 1.24214473838302772e+06 +Plasma_triton_thermal_velocity_at_point_128______________________________ (vel_plasma_triton_profile128)_ 1.24127905049215513e+06 +Plasma_triton_thermal_velocity_at_point_129______________________________ (vel_plasma_triton_profile129)_ 1.24040645340250968e+06 +Plasma_triton_thermal_velocity_at_point_130______________________________ (vel_plasma_triton_profile130)_ 1.23952694439610722e+06 +Plasma_triton_thermal_velocity_at_point_131______________________________ (vel_plasma_triton_profile131)_ 1.23864052075642836e+06 +Plasma_triton_thermal_velocity_at_point_132______________________________ (vel_plasma_triton_profile132)_ 1.23774717971183965e+06 +Plasma_triton_thermal_velocity_at_point_133______________________________ (vel_plasma_triton_profile133)_ 1.23684691852801805e+06 +Plasma_triton_thermal_velocity_at_point_134______________________________ (vel_plasma_triton_profile134)_ 1.23593973441912467e+06 +Plasma_triton_thermal_velocity_at_point_135______________________________ (vel_plasma_triton_profile135)_ 1.23502562458785903e+06 +Plasma_triton_thermal_velocity_at_point_136______________________________ (vel_plasma_triton_profile136)_ 1.23410458621717268e+06 +Plasma_triton_thermal_velocity_at_point_137______________________________ (vel_plasma_triton_profile137)_ 1.23317661650240445e+06 +Plasma_triton_thermal_velocity_at_point_138______________________________ (vel_plasma_triton_profile138)_ 1.23224171260258439e+06 +Plasma_triton_thermal_velocity_at_point_139______________________________ (vel_plasma_triton_profile139)_ 1.23129987164013553e+06 +Plasma_triton_thermal_velocity_at_point_140______________________________ (vel_plasma_triton_profile140)_ 1.23035109076139843e+06 +Plasma_triton_thermal_velocity_at_point_141______________________________ (vel_plasma_triton_profile141)_ 1.22939536708380585e+06 +Plasma_triton_thermal_velocity_at_point_142______________________________ (vel_plasma_triton_profile142)_ 1.22843269768748526e+06 +Plasma_triton_thermal_velocity_at_point_143______________________________ (vel_plasma_triton_profile143)_ 1.22746307968404540e+06 +Plasma_triton_thermal_velocity_at_point_144______________________________ (vel_plasma_triton_profile144)_ 1.22648651013111393e+06 +Plasma_triton_thermal_velocity_at_point_145______________________________ (vel_plasma_triton_profile145)_ 1.22550298608894995e+06 +Plasma_triton_thermal_velocity_at_point_146______________________________ (vel_plasma_triton_profile146)_ 1.22451250458362047e+06 +Plasma_triton_thermal_velocity_at_point_147______________________________ (vel_plasma_triton_profile147)_ 1.22351506267601182e+06 +Plasma_triton_thermal_velocity_at_point_148______________________________ (vel_plasma_triton_profile148)_ 1.22251065735569969e+06 +Plasma_triton_thermal_velocity_at_point_149______________________________ (vel_plasma_triton_profile149)_ 1.22149928563850932e+06 +Plasma_triton_thermal_velocity_at_point_150______________________________ (vel_plasma_triton_profile150)_ 1.22048094450513902e+06 +Plasma_triton_thermal_velocity_at_point_151______________________________ (vel_plasma_triton_profile151)_ 1.21945563094584248e+06 +Plasma_triton_thermal_velocity_at_point_152______________________________ (vel_plasma_triton_profile152)_ 1.21842334190706746e+06 +Plasma_triton_thermal_velocity_at_point_153______________________________ (vel_plasma_triton_profile153)_ 1.21738407435666653e+06 +Plasma_triton_thermal_velocity_at_point_154______________________________ (vel_plasma_triton_profile154)_ 1.21633782523049298e+06 +Plasma_triton_thermal_velocity_at_point_155______________________________ (vel_plasma_triton_profile155)_ 1.21528459146082331e+06 +Plasma_triton_thermal_velocity_at_point_156______________________________ (vel_plasma_triton_profile156)_ 1.21422436995973065e+06 +Plasma_triton_thermal_velocity_at_point_157______________________________ (vel_plasma_triton_profile157)_ 1.21315715761881927e+06 +Plasma_triton_thermal_velocity_at_point_158______________________________ (vel_plasma_triton_profile158)_ 1.21208295136246504e+06 +Plasma_triton_thermal_velocity_at_point_159______________________________ (vel_plasma_triton_profile159)_ 1.21100174806126743e+06 +Plasma_triton_thermal_velocity_at_point_160______________________________ (vel_plasma_triton_profile160)_ 1.20991354459760501e+06 +Plasma_triton_thermal_velocity_at_point_161______________________________ (vel_plasma_triton_profile161)_ 1.20881833781185374e+06 +Plasma_triton_thermal_velocity_at_point_162______________________________ (vel_plasma_triton_profile162)_ 1.20771612459289678e+06 +Plasma_triton_thermal_velocity_at_point_163______________________________ (vel_plasma_triton_profile163)_ 1.20660690176652395e+06 +Plasma_triton_thermal_velocity_at_point_164______________________________ (vel_plasma_triton_profile164)_ 1.20549066617773194e+06 +Plasma_triton_thermal_velocity_at_point_165______________________________ (vel_plasma_triton_profile165)_ 1.20436741463677702e+06 +Plasma_triton_thermal_velocity_at_point_166______________________________ (vel_plasma_triton_profile166)_ 1.20323714399760822e+06 +Plasma_triton_thermal_velocity_at_point_167______________________________ (vel_plasma_triton_profile167)_ 1.20209985104997992e+06 +Plasma_triton_thermal_velocity_at_point_168______________________________ (vel_plasma_triton_profile168)_ 1.20095553260204871e+06 +Plasma_triton_thermal_velocity_at_point_169______________________________ (vel_plasma_triton_profile169)_ 1.19980418545116414e+06 +Plasma_triton_thermal_velocity_at_point_170______________________________ (vel_plasma_triton_profile170)_ 1.19864580640860461e+06 +Plasma_triton_thermal_velocity_at_point_171______________________________ (vel_plasma_triton_profile171)_ 1.19748039221612946e+06 +Plasma_triton_thermal_velocity_at_point_172______________________________ (vel_plasma_triton_profile172)_ 1.19630793969558598e+06 +Plasma_triton_thermal_velocity_at_point_173______________________________ (vel_plasma_triton_profile173)_ 1.19512844558630697e+06 +Plasma_triton_thermal_velocity_at_point_174______________________________ (vel_plasma_triton_profile174)_ 1.19394190669494378e+06 +Plasma_triton_thermal_velocity_at_point_175______________________________ (vel_plasma_triton_profile175)_ 1.19274831974921329e+06 +Plasma_triton_thermal_velocity_at_point_176______________________________ (vel_plasma_triton_profile176)_ 1.19154768151454651e+06 +Plasma_triton_thermal_velocity_at_point_177______________________________ (vel_plasma_triton_profile177)_ 1.19033998878570576e+06 +Plasma_triton_thermal_velocity_at_point_178______________________________ (vel_plasma_triton_profile178)_ 1.18912523824828677e+06 +Plasma_triton_thermal_velocity_at_point_179______________________________ (vel_plasma_triton_profile179)_ 1.18790342672156147e+06 +Plasma_triton_thermal_velocity_at_point_180______________________________ (vel_plasma_triton_profile180)_ 1.18667455090251425e+06 +Plasma_triton_thermal_velocity_at_point_181______________________________ (vel_plasma_triton_profile181)_ 1.18543860755019402e+06 +Plasma_triton_thermal_velocity_at_point_182______________________________ (vel_plasma_triton_profile182)_ 1.18419559340579621e+06 +Plasma_triton_thermal_velocity_at_point_183______________________________ (vel_plasma_triton_profile183)_ 1.18294550522189541e+06 +Plasma_triton_thermal_velocity_at_point_184______________________________ (vel_plasma_triton_profile184)_ 1.18168833974542469e+06 +Plasma_triton_thermal_velocity_at_point_185______________________________ (vel_plasma_triton_profile185)_ 1.18042409370054374e+06 +Plasma_triton_thermal_velocity_at_point_186______________________________ (vel_plasma_triton_profile186)_ 1.17915276385178650e+06 +Plasma_triton_thermal_velocity_at_point_187______________________________ (vel_plasma_triton_profile187)_ 1.17787434693207825e+06 +Plasma_triton_thermal_velocity_at_point_188______________________________ (vel_plasma_triton_profile188)_ 1.17658883968901006e+06 +Plasma_triton_thermal_velocity_at_point_189______________________________ (vel_plasma_triton_profile189)_ 1.17529623886349867e+06 +Plasma_triton_thermal_velocity_at_point_190______________________________ (vel_plasma_triton_profile190)_ 1.17399654123204877e+06 +Plasma_triton_thermal_velocity_at_point_191______________________________ (vel_plasma_triton_profile191)_ 1.17268974353868444e+06 +Plasma_triton_thermal_velocity_at_point_192______________________________ (vel_plasma_triton_profile192)_ 1.17137584252864448e+06 +Plasma_triton_thermal_velocity_at_point_193______________________________ (vel_plasma_triton_profile193)_ 1.17005483499083179e+06 +Plasma_triton_thermal_velocity_at_point_194______________________________ (vel_plasma_triton_profile194)_ 1.16872671770236874e+06 +Plasma_triton_thermal_velocity_at_point_195______________________________ (vel_plasma_triton_profile195)_ 1.16739148742406024e+06 +Plasma_triton_thermal_velocity_at_point_196______________________________ (vel_plasma_triton_profile196)_ 1.16604914093433344e+06 +Plasma_triton_thermal_velocity_at_point_197______________________________ (vel_plasma_triton_profile197)_ 1.16469967505484191e+06 +Plasma_triton_thermal_velocity_at_point_198______________________________ (vel_plasma_triton_profile198)_ 1.16334308654759568e+06 +Plasma_triton_thermal_velocity_at_point_199______________________________ (vel_plasma_triton_profile199)_ 1.16197937226469256e+06 +Plasma_triton_thermal_velocity_at_point_200______________________________ (vel_plasma_triton_profile200)_ 1.16060852901109355e+06 +Plasma_triton_thermal_velocity_at_point_201______________________________ (vel_plasma_triton_profile201)_ 1.15923055362161784e+06 +Plasma_triton_thermal_velocity_at_point_202______________________________ (vel_plasma_triton_profile202)_ 1.15784544293076103e+06 +Plasma_triton_thermal_velocity_at_point_203______________________________ (vel_plasma_triton_profile203)_ 1.15645319381132629e+06 +Plasma_triton_thermal_velocity_at_point_204______________________________ (vel_plasma_triton_profile204)_ 1.15505380309671164e+06 +Plasma_triton_thermal_velocity_at_point_205______________________________ (vel_plasma_triton_profile205)_ 1.15364726772318897e+06 +Plasma_triton_thermal_velocity_at_point_206______________________________ (vel_plasma_triton_profile206)_ 1.15223358455714164e+06 +Plasma_triton_thermal_velocity_at_point_207______________________________ (vel_plasma_triton_profile207)_ 1.15081275050716009e+06 +Plasma_triton_thermal_velocity_at_point_208______________________________ (vel_plasma_triton_profile208)_ 1.14938476253279019e+06 +Plasma_triton_thermal_velocity_at_point_209______________________________ (vel_plasma_triton_profile209)_ 1.14794961755773751e+06 +Plasma_triton_thermal_velocity_at_point_210______________________________ (vel_plasma_triton_profile210)_ 1.14650731259129569e+06 +Plasma_triton_thermal_velocity_at_point_211______________________________ (vel_plasma_triton_profile211)_ 1.14505784456312726e+06 +Plasma_triton_thermal_velocity_at_point_212______________________________ (vel_plasma_triton_profile212)_ 1.14360121053633792e+06 +Plasma_triton_thermal_velocity_at_point_213______________________________ (vel_plasma_triton_profile213)_ 1.14213740750283236e+06 +Plasma_triton_thermal_velocity_at_point_214______________________________ (vel_plasma_triton_profile214)_ 1.14066643254887708e+06 +Plasma_triton_thermal_velocity_at_point_215______________________________ (vel_plasma_triton_profile215)_ 1.13918828273727675e+06 +Plasma_triton_thermal_velocity_at_point_216______________________________ (vel_plasma_triton_profile216)_ 1.13770295516842953e+06 +Plasma_triton_thermal_velocity_at_point_217______________________________ (vel_plasma_triton_profile217)_ 1.13621044698478072e+06 +Plasma_triton_thermal_velocity_at_point_218______________________________ (vel_plasma_triton_profile218)_ 1.13471075533134514e+06 +Plasma_triton_thermal_velocity_at_point_219______________________________ (vel_plasma_triton_profile219)_ 1.13320387740837480e+06 +Plasma_triton_thermal_velocity_at_point_220______________________________ (vel_plasma_triton_profile220)_ 1.13168981042746222e+06 +Plasma_triton_thermal_velocity_at_point_221______________________________ (vel_plasma_triton_profile221)_ 1.13016855163351144e+06 +Plasma_triton_thermal_velocity_at_point_222______________________________ (vel_plasma_triton_profile222)_ 1.12864009830478462e+06 +Plasma_triton_thermal_velocity_at_point_223______________________________ (vel_plasma_triton_profile223)_ 1.12710444776180713e+06 +Plasma_triton_thermal_velocity_at_point_224______________________________ (vel_plasma_triton_profile224)_ 1.12556159735418647e+06 +Plasma_triton_thermal_velocity_at_point_225______________________________ (vel_plasma_triton_profile225)_ 1.12401154445176199e+06 +Plasma_triton_thermal_velocity_at_point_226______________________________ (vel_plasma_triton_profile226)_ 1.12245428650680440e+06 +Plasma_triton_thermal_velocity_at_point_227______________________________ (vel_plasma_triton_profile227)_ 1.12088982095649862e+06 +Plasma_triton_thermal_velocity_at_point_228______________________________ (vel_plasma_triton_profile228)_ 1.11931814531627600e+06 +Plasma_triton_thermal_velocity_at_point_229______________________________ (vel_plasma_triton_profile229)_ 1.11773925714449491e+06 +Plasma_triton_thermal_velocity_at_point_230______________________________ (vel_plasma_triton_profile230)_ 1.11615315400235425e+06 +Plasma_triton_thermal_velocity_at_point_231______________________________ (vel_plasma_triton_profile231)_ 1.11455983354775887e+06 +Plasma_triton_thermal_velocity_at_point_232______________________________ (vel_plasma_triton_profile232)_ 1.11295929347309819e+06 +Plasma_triton_thermal_velocity_at_point_233______________________________ (vel_plasma_triton_profile233)_ 1.11135153147840896e+06 +Plasma_triton_thermal_velocity_at_point_234______________________________ (vel_plasma_triton_profile234)_ 1.10973654537018551e+06 +Plasma_triton_thermal_velocity_at_point_235______________________________ (vel_plasma_triton_profile235)_ 1.10811433298997395e+06 +Plasma_triton_thermal_velocity_at_point_236______________________________ (vel_plasma_triton_profile236)_ 1.10648489220095868e+06 +Plasma_triton_thermal_velocity_at_point_237______________________________ (vel_plasma_triton_profile237)_ 1.10484822097377921e+06 +Plasma_triton_thermal_velocity_at_point_238______________________________ (vel_plasma_triton_profile238)_ 1.10320431730126520e+06 +Plasma_triton_thermal_velocity_at_point_239______________________________ (vel_plasma_triton_profile239)_ 1.10155317924829083e+06 +Plasma_triton_thermal_velocity_at_point_240______________________________ (vel_plasma_triton_profile240)_ 1.09989480493404181e+06 +Plasma_triton_thermal_velocity_at_point_241______________________________ (vel_plasma_triton_profile241)_ 1.09822919256409933e+06 +Plasma_triton_thermal_velocity_at_point_242______________________________ (vel_plasma_triton_profile242)_ 1.09655634037637804e+06 +Plasma_triton_thermal_velocity_at_point_243______________________________ (vel_plasma_triton_profile243)_ 1.09487624670049292e+06 +Plasma_triton_thermal_velocity_at_point_244______________________________ (vel_plasma_triton_profile244)_ 1.09318890992184076e+06 +Plasma_triton_thermal_velocity_at_point_245______________________________ (vel_plasma_triton_profile245)_ 1.09149432850477565e+06 +Plasma_triton_thermal_velocity_at_point_246______________________________ (vel_plasma_triton_profile246)_ 1.08979250101600913e+06 +Plasma_triton_thermal_velocity_at_point_247______________________________ (vel_plasma_triton_profile247)_ 1.08808342602443649e+06 +Plasma_triton_thermal_velocity_at_point_248______________________________ (vel_plasma_triton_profile248)_ 1.08636710228475719e+06 +Plasma_triton_thermal_velocity_at_point_249______________________________ (vel_plasma_triton_profile249)_ 1.08464352854106575e+06 +Plasma_triton_thermal_velocity_at_point_250______________________________ (vel_plasma_triton_profile250)_ 1.08291270365568274e+06 +Plasma_triton_thermal_velocity_at_point_251______________________________ (vel_plasma_triton_profile251)_ 1.08117462657310511e+06 +Plasma_triton_thermal_velocity_at_point_252______________________________ (vel_plasma_triton_profile252)_ 1.07942929636681266e+06 +Plasma_triton_thermal_velocity_at_point_253______________________________ (vel_plasma_triton_profile253)_ 1.07767671214302815e+06 +Plasma_triton_thermal_velocity_at_point_254______________________________ (vel_plasma_triton_profile254)_ 1.07591687313829944e+06 +Plasma_triton_thermal_velocity_at_point_255______________________________ (vel_plasma_triton_profile255)_ 1.07414977865084191e+06 +Plasma_triton_thermal_velocity_at_point_256______________________________ (vel_plasma_triton_profile256)_ 1.07237542816195800e+06 +Plasma_triton_thermal_velocity_at_point_257______________________________ (vel_plasma_triton_profile257)_ 1.07059382114644861e+06 +Plasma_triton_thermal_velocity_at_point_258______________________________ (vel_plasma_triton_profile258)_ 1.06880495726857567e+06 +Plasma_triton_thermal_velocity_at_point_259______________________________ (vel_plasma_triton_profile259)_ 1.06700883629478165e+06 +Plasma_triton_thermal_velocity_at_point_260______________________________ (vel_plasma_triton_profile260)_ 1.06520545804769476e+06 +Plasma_triton_thermal_velocity_at_point_261______________________________ (vel_plasma_triton_profile261)_ 1.06339482253326569e+06 +Plasma_triton_thermal_velocity_at_point_262______________________________ (vel_plasma_triton_profile262)_ 1.06157692984363297e+06 +Plasma_triton_thermal_velocity_at_point_263______________________________ (vel_plasma_triton_profile263)_ 1.05975178017198620e+06 +Plasma_triton_thermal_velocity_at_point_264______________________________ (vel_plasma_triton_profile264)_ 1.05791937391248578e+06 +Plasma_triton_thermal_velocity_at_point_265______________________________ (vel_plasma_triton_profile265)_ 1.05607971152502322e+06 +Plasma_triton_thermal_velocity_at_point_266______________________________ (vel_plasma_triton_profile266)_ 1.05423279363520676e+06 +Plasma_triton_thermal_velocity_at_point_267______________________________ (vel_plasma_triton_profile267)_ 1.05237862097422197e+06 +Plasma_triton_thermal_velocity_at_point_268______________________________ (vel_plasma_triton_profile268)_ 1.05051719444155041e+06 +Plasma_triton_thermal_velocity_at_point_269______________________________ (vel_plasma_triton_profile269)_ 1.04864851510176109e+06 +Plasma_triton_thermal_velocity_at_point_270______________________________ (vel_plasma_triton_profile270)_ 1.04677258412885922e+06 +Plasma_triton_thermal_velocity_at_point_271______________________________ (vel_plasma_triton_profile271)_ 1.04488940285986790e+06 +Plasma_triton_thermal_velocity_at_point_272______________________________ (vel_plasma_triton_profile272)_ 1.04299897283465450e+06 +Plasma_triton_thermal_velocity_at_point_273______________________________ (vel_plasma_triton_profile273)_ 1.04110129570202983e+06 +Plasma_triton_thermal_velocity_at_point_274______________________________ (vel_plasma_triton_profile274)_ 1.03919637329286768e+06 +Plasma_triton_thermal_velocity_at_point_275______________________________ (vel_plasma_triton_profile275)_ 1.03728420763632783e+06 +Plasma_triton_thermal_velocity_at_point_276______________________________ (vel_plasma_triton_profile276)_ 1.03536480091363471e+06 +Plasma_triton_thermal_velocity_at_point_277______________________________ (vel_plasma_triton_profile277)_ 1.03343815549343103e+06 +Plasma_triton_thermal_velocity_at_point_278______________________________ (vel_plasma_triton_profile278)_ 1.03150427395303478e+06 +Plasma_triton_thermal_velocity_at_point_279______________________________ (vel_plasma_triton_profile279)_ 1.02956315902726830e+06 +Plasma_triton_thermal_velocity_at_point_280______________________________ (vel_plasma_triton_profile280)_ 1.02761481368781358e+06 +Plasma_triton_thermal_velocity_at_point_281______________________________ (vel_plasma_triton_profile281)_ 1.02565924108729174e+06 +Plasma_triton_thermal_velocity_at_point_282______________________________ (vel_plasma_triton_profile282)_ 1.02369644456608070e+06 +Plasma_triton_thermal_velocity_at_point_283______________________________ (vel_plasma_triton_profile283)_ 1.02172642773736001e+06 +Plasma_triton_thermal_velocity_at_point_284______________________________ (vel_plasma_triton_profile284)_ 1.01974919437746459e+06 +Plasma_triton_thermal_velocity_at_point_285______________________________ (vel_plasma_triton_profile285)_ 1.01776474855518457e+06 +Plasma_triton_thermal_velocity_at_point_286______________________________ (vel_plasma_triton_profile286)_ 1.01577309449246293e+06 +Plasma_triton_thermal_velocity_at_point_287______________________________ (vel_plasma_triton_profile287)_ 1.01377423671875568e+06 +Plasma_triton_thermal_velocity_at_point_288______________________________ (vel_plasma_triton_profile288)_ 1.01176817998069082e+06 +Plasma_triton_thermal_velocity_at_point_289______________________________ (vel_plasma_triton_profile289)_ 1.00975492928408331e+06 +Plasma_triton_thermal_velocity_at_point_290______________________________ (vel_plasma_triton_profile290)_ 1.00773448988202051e+06 +Plasma_triton_thermal_velocity_at_point_291______________________________ (vel_plasma_triton_profile291)_ 1.00570686735708441e+06 +Plasma_triton_thermal_velocity_at_point_292______________________________ (vel_plasma_triton_profile292)_ 1.00367206744114717e+06 +Plasma_triton_thermal_velocity_at_point_293______________________________ (vel_plasma_triton_profile293)_ 1.00163009630618989e+06 +Plasma_triton_thermal_velocity_at_point_294______________________________ (vel_plasma_triton_profile294)_ 9.99580960284726811e+05 +Plasma_triton_thermal_velocity_at_point_295______________________________ (vel_plasma_triton_profile295)_ 9.97524666061960394e+05 +Plasma_triton_thermal_velocity_at_point_296______________________________ (vel_plasma_triton_profile296)_ 9.95461220639796345e+05 +Plasma_triton_thermal_velocity_at_point_297______________________________ (vel_plasma_triton_profile297)_ 9.93390631315515377e+05 +Plasma_triton_thermal_velocity_at_point_298______________________________ (vel_plasma_triton_profile298)_ 9.91312905735700857e+05 +Plasma_triton_thermal_velocity_at_point_299______________________________ (vel_plasma_triton_profile299)_ 9.89228051814709208e+05 +Plasma_triton_thermal_velocity_at_point_300______________________________ (vel_plasma_triton_profile300)_ 9.87136077889681677e+05 +Plasma_triton_thermal_velocity_at_point_301______________________________ (vel_plasma_triton_profile301)_ 9.85036992619260447e+05 +Plasma_triton_thermal_velocity_at_point_302______________________________ (vel_plasma_triton_profile302)_ 9.82930804977484047e+05 +Plasma_triton_thermal_velocity_at_point_303______________________________ (vel_plasma_triton_profile303)_ 9.80817524390066741e+05 +Plasma_triton_thermal_velocity_at_point_304______________________________ (vel_plasma_triton_profile304)_ 9.78697160592108732e+05 +Plasma_triton_thermal_velocity_at_point_305______________________________ (vel_plasma_triton_profile305)_ 9.76569723764979281e+05 +Plasma_triton_thermal_velocity_at_point_306______________________________ (vel_plasma_triton_profile306)_ 9.74435224439511192e+05 +Plasma_triton_thermal_velocity_at_point_307______________________________ (vel_plasma_triton_profile307)_ 9.72293673623740906e+05 +Plasma_triton_thermal_velocity_at_point_308______________________________ (vel_plasma_triton_profile308)_ 9.70145082664964721e+05 +Plasma_triton_thermal_velocity_at_point_309______________________________ (vel_plasma_triton_profile309)_ 9.67989463434709935e+05 +Plasma_triton_thermal_velocity_at_point_310______________________________ (vel_plasma_triton_profile310)_ 9.65826828180462820e+05 +Plasma_triton_thermal_velocity_at_point_311______________________________ (vel_plasma_triton_profile311)_ 9.63657189701614785e+05 +Plasma_triton_thermal_velocity_at_point_312______________________________ (vel_plasma_triton_profile312)_ 9.61480561138665187e+05 +Plasma_triton_thermal_velocity_at_point_313______________________________ (vel_plasma_triton_profile313)_ 9.59296956232876517e+05 +Plasma_triton_thermal_velocity_at_point_314______________________________ (vel_plasma_triton_profile314)_ 9.57106389167301124e+05 +Plasma_triton_thermal_velocity_at_point_315______________________________ (vel_plasma_triton_profile315)_ 9.54908874682586640e+05 +Plasma_triton_thermal_velocity_at_point_316______________________________ (vel_plasma_triton_profile316)_ 9.52704427995437058e+05 +Plasma_triton_thermal_velocity_at_point_317______________________________ (vel_plasma_triton_profile317)_ 9.50493064910205547e+05 +Plasma_triton_thermal_velocity_at_point_318______________________________ (vel_plasma_triton_profile318)_ 9.48274801737438655e+05 +Plasma_triton_thermal_velocity_at_point_319______________________________ (vel_plasma_triton_profile319)_ 9.46049655427549616e+05 +Plasma_triton_thermal_velocity_at_point_320______________________________ (vel_plasma_triton_profile320)_ 9.43817643473854172e+05 +Plasma_triton_thermal_velocity_at_point_321______________________________ (vel_plasma_triton_profile321)_ 9.41578783967949334e+05 +Plasma_triton_thermal_velocity_at_point_322______________________________ (vel_plasma_triton_profile322)_ 9.39333095655945479e+05 +Plasma_triton_thermal_velocity_at_point_323______________________________ (vel_plasma_triton_profile323)_ 9.37080597905059112e+05 +Plasma_triton_thermal_velocity_at_point_324______________________________ (vel_plasma_triton_profile324)_ 9.34821310760519002e+05 +Plasma_triton_thermal_velocity_at_point_325______________________________ (vel_plasma_triton_profile325)_ 9.32555254917766317e+05 +Plasma_triton_thermal_velocity_at_point_326______________________________ (vel_plasma_triton_profile326)_ 9.30282451764036203e+05 +Plasma_triton_thermal_velocity_at_point_327______________________________ (vel_plasma_triton_profile327)_ 9.28002923431370989e+05 +Plasma_triton_thermal_velocity_at_point_328______________________________ (vel_plasma_triton_profile328)_ 9.25716692758868448e+05 +Plasma_triton_thermal_velocity_at_point_329______________________________ (vel_plasma_triton_profile329)_ 9.23423783367903437e+05 +Plasma_triton_thermal_velocity_at_point_330______________________________ (vel_plasma_triton_profile330)_ 9.21124219619388576e+05 +Plasma_triton_thermal_velocity_at_point_331______________________________ (vel_plasma_triton_profile331)_ 9.18818026717077126e+05 +Plasma_triton_thermal_velocity_at_point_332______________________________ (vel_plasma_triton_profile332)_ 9.16505230654640123e+05 +Plasma_triton_thermal_velocity_at_point_333______________________________ (vel_plasma_triton_profile333)_ 9.14185858287542826e+05 +Plasma_triton_thermal_velocity_at_point_334______________________________ (vel_plasma_triton_profile334)_ 9.11859937324028462e+05 +Plasma_triton_thermal_velocity_at_point_335______________________________ (vel_plasma_triton_profile335)_ 9.09527496381874080e+05 +Plasma_triton_thermal_velocity_at_point_336______________________________ (vel_plasma_triton_profile336)_ 9.07188564996611327e+05 +Plasma_triton_thermal_velocity_at_point_337______________________________ (vel_plasma_triton_profile337)_ 9.04843173646506271e+05 +Plasma_triton_thermal_velocity_at_point_338______________________________ (vel_plasma_triton_profile338)_ 9.02491353783546481e+05 +Plasma_triton_thermal_velocity_at_point_339______________________________ (vel_plasma_triton_profile339)_ 9.00133137848378043e+05 +Plasma_triton_thermal_velocity_at_point_340______________________________ (vel_plasma_triton_profile340)_ 8.97768559335587313e+05 +Plasma_triton_thermal_velocity_at_point_341______________________________ (vel_plasma_triton_profile341)_ 8.95397652787677711e+05 +Plasma_triton_thermal_velocity_at_point_342______________________________ (vel_plasma_triton_profile342)_ 8.93020453833744745e+05 +Plasma_triton_thermal_velocity_at_point_343______________________________ (vel_plasma_triton_profile343)_ 8.90636999245675281e+05 +Plasma_triton_thermal_velocity_at_point_344______________________________ (vel_plasma_triton_profile344)_ 8.88247326922335662e+05 +Plasma_triton_thermal_velocity_at_point_345______________________________ (vel_plasma_triton_profile345)_ 8.85851475958088646e+05 +Plasma_triton_thermal_velocity_at_point_346______________________________ (vel_plasma_triton_profile346)_ 8.83449486689940910e+05 +Plasma_triton_thermal_velocity_at_point_347______________________________ (vel_plasma_triton_profile347)_ 8.81041400694607990e+05 +Plasma_triton_thermal_velocity_at_point_348______________________________ (vel_plasma_triton_profile348)_ 8.78627260865136283e+05 +Plasma_triton_thermal_velocity_at_point_349______________________________ (vel_plasma_triton_profile349)_ 8.76207111437659827e+05 +Plasma_triton_thermal_velocity_at_point_350______________________________ (vel_plasma_triton_profile350)_ 8.73780997978748172e+05 +Plasma_triton_thermal_velocity_at_point_351______________________________ (vel_plasma_triton_profile351)_ 8.71348967469996656e+05 +Plasma_triton_thermal_velocity_at_point_352______________________________ (vel_plasma_triton_profile352)_ 8.68911068445827696e+05 +Plasma_triton_thermal_velocity_at_point_353______________________________ (vel_plasma_triton_profile353)_ 8.66467350828570663e+05 +Plasma_triton_thermal_velocity_at_point_354______________________________ (vel_plasma_triton_profile354)_ 8.64017866153519135e+05 +Plasma_triton_thermal_velocity_at_point_355______________________________ (vel_plasma_triton_profile355)_ 8.61562667531571700e+05 +Plasma_triton_thermal_velocity_at_point_356______________________________ (vel_plasma_triton_profile356)_ 8.59101809698471799e+05 +Plasma_triton_thermal_velocity_at_point_357______________________________ (vel_plasma_triton_profile357)_ 8.56635349117438309e+05 +Plasma_triton_thermal_velocity_at_point_358______________________________ (vel_plasma_triton_profile358)_ 8.54163343961043865e+05 +Plasma_triton_thermal_velocity_at_point_359______________________________ (vel_plasma_triton_profile359)_ 8.51685854198352667e+05 +Plasma_triton_thermal_velocity_at_point_360______________________________ (vel_plasma_triton_profile360)_ 8.49202941695460584e+05 +Plasma_triton_thermal_velocity_at_point_361______________________________ (vel_plasma_triton_profile361)_ 8.46714670147065422e+05 +Plasma_triton_thermal_velocity_at_point_362______________________________ (vel_plasma_triton_profile362)_ 8.44221105296532623e+05 +Plasma_triton_thermal_velocity_at_point_363______________________________ (vel_plasma_triton_profile363)_ 8.41722314863646636e+05 +Plasma_triton_thermal_velocity_at_point_364______________________________ (vel_plasma_triton_profile364)_ 8.39218368667389732e+05 +Plasma_triton_thermal_velocity_at_point_365______________________________ (vel_plasma_triton_profile365)_ 8.36709338661618531e+05 +Plasma_triton_thermal_velocity_at_point_366______________________________ (vel_plasma_triton_profile366)_ 8.34195299079172313e+05 +Plasma_triton_thermal_velocity_at_point_367______________________________ (vel_plasma_triton_profile367)_ 8.31676326380771701e+05 +Plasma_triton_thermal_velocity_at_point_368______________________________ (vel_plasma_triton_profile368)_ 8.29152499425752088e+05 +Plasma_triton_thermal_velocity_at_point_369______________________________ (vel_plasma_triton_profile369)_ 8.26623899531384814e+05 +Plasma_triton_thermal_velocity_at_point_370______________________________ (vel_plasma_triton_profile370)_ 8.24090610454723239e+05 +Plasma_triton_thermal_velocity_at_point_371______________________________ (vel_plasma_triton_profile371)_ 8.21552718629298848e+05 +Plasma_triton_thermal_velocity_at_point_372______________________________ (vel_plasma_triton_profile372)_ 8.19010313101767097e+05 +Plasma_triton_thermal_velocity_at_point_373______________________________ (vel_plasma_triton_profile373)_ 8.16463485742477700e+05 +Plasma_triton_thermal_velocity_at_point_374______________________________ (vel_plasma_triton_profile374)_ 8.13912331257838290e+05 +Plasma_triton_thermal_velocity_at_point_375______________________________ (vel_plasma_triton_profile375)_ 8.11356947239931207e+05 +Plasma_triton_thermal_velocity_at_point_376______________________________ (vel_plasma_triton_profile376)_ 8.08797434426914318e+05 +Plasma_triton_thermal_velocity_at_point_377______________________________ (vel_plasma_triton_profile377)_ 8.06233896597207524e+05 +Plasma_triton_thermal_velocity_at_point_378______________________________ (vel_plasma_triton_profile378)_ 8.03666440834237263e+05 +Plasma_triton_thermal_velocity_at_point_379______________________________ (vel_plasma_triton_profile379)_ 8.01095177541028941e+05 +Plasma_triton_thermal_velocity_at_point_380______________________________ (vel_plasma_triton_profile380)_ 7.98520220605126931e+05 +Plasma_triton_thermal_velocity_at_point_381______________________________ (vel_plasma_triton_profile381)_ 7.95941687453974038e+05 +Plasma_triton_thermal_velocity_at_point_382______________________________ (vel_plasma_triton_profile382)_ 7.93359699243505835e+05 +Plasma_triton_thermal_velocity_at_point_383______________________________ (vel_plasma_triton_profile383)_ 7.90774380943250144e+05 +Plasma_triton_thermal_velocity_at_point_384______________________________ (vel_plasma_triton_profile384)_ 7.88185861448476906e+05 +Plasma_triton_thermal_velocity_at_point_385______________________________ (vel_plasma_triton_profile385)_ 7.85594273770812084e+05 +Plasma_triton_thermal_velocity_at_point_386______________________________ (vel_plasma_triton_profile386)_ 7.82999755111601320e+05 +Plasma_triton_thermal_velocity_at_point_387______________________________ (vel_plasma_triton_profile387)_ 7.80402447045426583e+05 +Plasma_triton_thermal_velocity_at_point_388______________________________ (vel_plasma_triton_profile388)_ 7.77802495649562567e+05 +Plasma_triton_thermal_velocity_at_point_389______________________________ (vel_plasma_triton_profile389)_ 7.75200051681060460e+05 +Plasma_triton_thermal_velocity_at_point_390______________________________ (vel_plasma_triton_profile390)_ 7.72595270763817593e+05 +Plasma_triton_thermal_velocity_at_point_391______________________________ (vel_plasma_triton_profile391)_ 7.69988313456261181e+05 +Plasma_triton_thermal_velocity_at_point_392______________________________ (vel_plasma_triton_profile392)_ 7.67379345560863148e+05 +Plasma_triton_thermal_velocity_at_point_393______________________________ (vel_plasma_triton_profile393)_ 7.64768538191958098e+05 +Plasma_triton_thermal_velocity_at_point_394______________________________ (vel_plasma_triton_profile394)_ 7.62156068054264644e+05 +Plasma_triton_thermal_velocity_at_point_395______________________________ (vel_plasma_triton_profile395)_ 7.59542117582444451e+05 +Plasma_triton_thermal_velocity_at_point_396______________________________ (vel_plasma_triton_profile396)_ 7.56926875149225350e+05 +Plasma_triton_thermal_velocity_at_point_397______________________________ (vel_plasma_triton_profile397)_ 7.54310535343709169e+05 +Plasma_triton_thermal_velocity_at_point_398______________________________ (vel_plasma_triton_profile398)_ 7.51693299162240699e+05 +Plasma_triton_thermal_velocity_at_point_399______________________________ (vel_plasma_triton_profile399)_ 7.49075374209553236e+05 +Plasma_triton_thermal_velocity_at_point_400______________________________ (vel_plasma_triton_profile400)_ 7.46456974917070009e+05 +Plasma_triton_thermal_velocity_at_point_401______________________________ (vel_plasma_triton_profile401)_ 7.43838322986651328e+05 +Plasma_triton_thermal_velocity_at_point_402______________________________ (vel_plasma_triton_profile402)_ 7.41219647459507803e+05 +Plasma_triton_thermal_velocity_at_point_403______________________________ (vel_plasma_triton_profile403)_ 7.38601185008837841e+05 +Plasma_triton_thermal_velocity_at_point_404______________________________ (vel_plasma_triton_profile404)_ 7.35983180346438661e+05 +Plasma_triton_thermal_velocity_at_point_405______________________________ (vel_plasma_triton_profile405)_ 7.33365886535156984e+05 +Plasma_triton_thermal_velocity_at_point_406______________________________ (vel_plasma_triton_profile406)_ 7.30749565129617229e+05 +Plasma_triton_thermal_velocity_at_point_407______________________________ (vel_plasma_triton_profile407)_ 7.28134486709507299e+05 +Plasma_triton_thermal_velocity_at_point_408______________________________ (vel_plasma_triton_profile408)_ 7.25520931134431274e+05 +Plasma_triton_thermal_velocity_at_point_409______________________________ (vel_plasma_triton_profile409)_ 7.22909187954835361e+05 +Plasma_triton_thermal_velocity_at_point_410______________________________ (vel_plasma_triton_profile410)_ 7.20299556712699588e+05 +Plasma_triton_thermal_velocity_at_point_411______________________________ (vel_plasma_triton_profile411)_ 7.17692347497464390e+05 +Plasma_triton_thermal_velocity_at_point_412______________________________ (vel_plasma_triton_profile412)_ 7.15087881303058355e+05 +Plasma_triton_thermal_velocity_at_point_413______________________________ (vel_plasma_triton_profile413)_ 7.12486490404817276e+05 +Plasma_triton_thermal_velocity_at_point_414______________________________ (vel_plasma_triton_profile414)_ 7.09888518974468927e+05 +Plasma_triton_thermal_velocity_at_point_415______________________________ (vel_plasma_triton_profile415)_ 7.07294323501740582e+05 +Plasma_triton_thermal_velocity_at_point_416______________________________ (vel_plasma_triton_profile416)_ 7.04704273272215389e+05 +Plasma_triton_thermal_velocity_at_point_417______________________________ (vel_plasma_triton_profile417)_ 7.02118751108685043e+05 +Plasma_triton_thermal_velocity_at_point_418______________________________ (vel_plasma_triton_profile418)_ 6.99538153697837610e+05 +Plasma_triton_thermal_velocity_at_point_419______________________________ (vel_plasma_triton_profile419)_ 6.96962892507670913e+05 +Plasma_triton_thermal_velocity_at_point_420______________________________ (vel_plasma_triton_profile420)_ 6.94393394110742025e+05 +Plasma_triton_thermal_velocity_at_point_421______________________________ (vel_plasma_triton_profile421)_ 6.91830101303613745e+05 +Plasma_triton_thermal_velocity_at_point_422______________________________ (vel_plasma_triton_profile422)_ 6.89273473421427771e+05 +Plasma_triton_thermal_velocity_at_point_423______________________________ (vel_plasma_triton_profile423)_ 6.86723987380831270e+05 +Plasma_triton_thermal_velocity_at_point_424______________________________ (vel_plasma_triton_profile424)_ 6.84182138492603553e+05 +Plasma_triton_thermal_velocity_at_point_425______________________________ (vel_plasma_triton_profile425)_ 6.81648441322775790e+05 +Plasma_triton_thermal_velocity_at_point_426______________________________ (vel_plasma_triton_profile426)_ 6.79123430573452264e+05 +Plasma_triton_thermal_velocity_at_point_427______________________________ (vel_plasma_triton_profile427)_ 6.76607662255937466e+05 +Plasma_triton_thermal_velocity_at_point_428______________________________ (vel_plasma_triton_profile428)_ 6.74101714652296854e+05 +Plasma_triton_thermal_velocity_at_point_429______________________________ (vel_plasma_triton_profile429)_ 6.71606189571455005e+05 +Plasma_triton_thermal_velocity_at_point_430______________________________ (vel_plasma_triton_profile430)_ 6.69121713548617903e+05 +Plasma_triton_thermal_velocity_at_point_431______________________________ (vel_plasma_triton_profile431)_ 6.66648939217375824e+05 +Plasma_triton_thermal_velocity_at_point_432______________________________ (vel_plasma_triton_profile432)_ 6.64188546745052328e+05 +Plasma_triton_thermal_velocity_at_point_433______________________________ (vel_plasma_triton_profile433)_ 6.61741245452140109e+05 +Plasma_triton_thermal_velocity_at_point_434______________________________ (vel_plasma_triton_profile434)_ 6.59307775535771507e+05 +Plasma_triton_thermal_velocity_at_point_435______________________________ (vel_plasma_triton_profile435)_ 6.56888909852539422e+05 +Plasma_triton_thermal_velocity_at_point_436______________________________ (vel_plasma_triton_profile436)_ 6.54485455943143694e+05 +Plasma_triton_thermal_velocity_at_point_437______________________________ (vel_plasma_triton_profile437)_ 6.52098258333449834e+05 +Plasma_triton_thermal_velocity_at_point_438______________________________ (vel_plasma_triton_profile438)_ 6.49728200809332426e+05 +Plasma_triton_thermal_velocity_at_point_439______________________________ (vel_plasma_triton_profile439)_ 6.47376209239706979e+05 +Plasma_triton_thermal_velocity_at_point_440______________________________ (vel_plasma_triton_profile440)_ 6.45043254355158075e+05 +Plasma_triton_thermal_velocity_at_point_441______________________________ (vel_plasma_triton_profile441)_ 6.42730355043876451e+05 +Plasma_triton_thermal_velocity_at_point_442______________________________ (vel_plasma_triton_profile442)_ 6.40438581971168634e+05 +Plasma_triton_thermal_velocity_at_point_443______________________________ (vel_plasma_triton_profile443)_ 6.38169061533502419e+05 +Plasma_triton_thermal_velocity_at_point_444______________________________ (vel_plasma_triton_profile444)_ 6.35922980432168231e+05 +Plasma_triton_thermal_velocity_at_point_445______________________________ (vel_plasma_triton_profile445)_ 6.33701590678492561e+05 +Plasma_triton_thermal_velocity_at_point_446______________________________ (vel_plasma_triton_profile446)_ 6.31506215325816884e+05 +Plasma_triton_thermal_velocity_at_point_447______________________________ (vel_plasma_triton_profile447)_ 6.29338254960787715e+05 +Plasma_triton_thermal_velocity_at_point_448______________________________ (vel_plasma_triton_profile448)_ 6.27199195208340418e+05 +Plasma_triton_thermal_velocity_at_point_449______________________________ (vel_plasma_triton_profile449)_ 6.25090615302033373e+05 +Plasma_triton_thermal_velocity_at_point_450______________________________ (vel_plasma_triton_profile450)_ 6.23014197970262263e+05 +Plasma_triton_thermal_velocity_at_point_451______________________________ (vel_plasma_triton_profile451)_ 6.20971741157460376e+05 +Plasma_triton_thermal_velocity_at_point_452______________________________ (vel_plasma_triton_profile452)_ 6.18965171568810707e+05 +Plasma_triton_thermal_velocity_at_point_453______________________________ (vel_plasma_triton_profile453)_ 6.16996561193732778e+05 +Plasma_triton_thermal_velocity_at_point_454______________________________ (vel_plasma_triton_profile454)_ 6.15068146574750775e+05 +Plasma_triton_thermal_velocity_at_point_455______________________________ (vel_plasma_triton_profile455)_ 6.13182352607270586e+05 +Plasma_triton_thermal_velocity_at_point_456______________________________ (vel_plasma_triton_profile456)_ 6.11341821774326963e+05 +Plasma_triton_thermal_velocity_at_point_457______________________________ (vel_plasma_triton_profile457)_ 6.09549450200251536e+05 +Plasma_triton_thermal_velocity_at_point_458______________________________ (vel_plasma_triton_profile458)_ 6.07808433731961297e+05 +Plasma_triton_thermal_velocity_at_point_459______________________________ (vel_plasma_triton_profile459)_ 6.06122326814027620e+05 +Plasma_triton_thermal_velocity_at_point_460______________________________ (vel_plasma_triton_profile460)_ 6.04495120200933889e+05 +Plasma_triton_thermal_velocity_at_point_461______________________________ (vel_plasma_triton_profile461)_ 6.02931345411869464e+05 +Plasma_triton_thermal_velocity_at_point_462______________________________ (vel_plasma_triton_profile462)_ 6.01436219250136986e+05 +Plasma_triton_thermal_velocity_at_point_463______________________________ (vel_plasma_triton_profile463)_ 6.00015851176412776e+05 +Plasma_triton_thermal_velocity_at_point_464______________________________ (vel_plasma_triton_profile464)_ 5.98677553149517975e+05 +Plasma_triton_thermal_velocity_at_point_465______________________________ (vel_plasma_triton_profile465)_ 5.97430328545353026e+05 +Plasma_triton_thermal_velocity_at_point_466______________________________ (vel_plasma_triton_profile466)_ 5.96285700887467014e+05 +Plasma_triton_thermal_velocity_at_point_467______________________________ (vel_plasma_triton_profile467)_ 5.95259263627338456e+05 +Plasma_triton_thermal_velocity_at_point_468______________________________ (vel_plasma_triton_profile468)_ 5.94374046006526449e+05 +Plasma_triton_thermal_velocity_at_point_469______________________________ (vel_plasma_triton_profile469)_ 5.93669993077032268e+05 Plasma_triton_thermal_velocity_at_point_470______________________________ (vel_plasma_triton_profile470)_ 5.93262140923878527e+05 Plasma_triton_thermal_velocity_at_point_471______________________________ (vel_plasma_triton_profile471)_ 5.83473487588352757e+05 Plasma_triton_thermal_velocity_at_point_472______________________________ (vel_plasma_triton_profile472)_ 5.73517786453278386e+05 @@ -20233,477 +20235,477 @@ Plasma_triton_thermal_velocity_at_point_497______________________________ (vel_p Plasma_triton_thermal_velocity_at_point_498______________________________ (vel_plasma_triton_profile498)_ 1.71571358569546166e+05 Plasma_triton_thermal_velocity_at_point_499______________________________ (vel_plasma_triton_profile499)_ 1.33858178501936316e+05 Plasma_triton_thermal_velocity_at_point_500______________________________ (vel_plasma_triton_profile500)_ 7.99955661718523770e+04 -Volume_averaged_alpha_thermal_velocity_(m/s)_____________________________ (vel_plasma_alpha_thermal_vol_avg)_ 7.75569612425962929e+05 -Plasma_alpha_thermal_velocity_at_point_0_________________________________ (vel_plasma_alpha_thermal_profile0)_ 1.11359272824976500e+06 -Plasma_alpha_thermal_velocity_at_point_1_________________________________ (vel_plasma_alpha_thermal_profile1)_ 1.11358985515281116e+06 -Plasma_alpha_thermal_velocity_at_point_2_________________________________ (vel_plasma_alpha_thermal_profile2)_ 1.11358123580403253e+06 -Plasma_alpha_thermal_velocity_at_point_3_________________________________ (vel_plasma_alpha_thermal_profile3)_ 1.11356687020440469e+06 -Plasma_alpha_thermal_velocity_at_point_4_________________________________ (vel_plasma_alpha_thermal_profile4)_ 1.11354675829730765e+06 -Plasma_alpha_thermal_velocity_at_point_5_________________________________ (vel_plasma_alpha_thermal_profile5)_ 1.11352090003124694e+06 -Plasma_alpha_thermal_velocity_at_point_6_________________________________ (vel_plasma_alpha_thermal_profile6)_ 1.11348929528368125e+06 -Plasma_alpha_thermal_velocity_at_point_7_________________________________ (vel_plasma_alpha_thermal_profile7)_ 1.11345194400439039e+06 -Plasma_alpha_thermal_velocity_at_point_8_________________________________ (vel_plasma_alpha_thermal_profile8)_ 1.11340884603624837e+06 -Plasma_alpha_thermal_velocity_at_point_9_________________________________ (vel_plasma_alpha_thermal_profile9)_ 1.11336000124962837e+06 -Plasma_alpha_thermal_velocity_at_point_10________________________________ (vel_plasma_alpha_thermal_profile10)_ 1.11330540948862792e+06 -Plasma_alpha_thermal_velocity_at_point_11________________________________ (vel_plasma_alpha_thermal_profile11)_ 1.11324507057105261e+06 -Plasma_alpha_thermal_velocity_at_point_12________________________________ (vel_plasma_alpha_thermal_profile12)_ 1.11317898428840167e+06 -Plasma_alpha_thermal_velocity_at_point_13________________________________ (vel_plasma_alpha_thermal_profile13)_ 1.11310715044170758e+06 -Plasma_alpha_thermal_velocity_at_point_14________________________________ (vel_plasma_alpha_thermal_profile14)_ 1.11302956880118488e+06 -Plasma_alpha_thermal_velocity_at_point_15________________________________ (vel_plasma_alpha_thermal_profile15)_ 1.11294623910172726e+06 -Plasma_alpha_thermal_velocity_at_point_16________________________________ (vel_plasma_alpha_thermal_profile16)_ 1.11285716106977966e+06 -Plasma_alpha_thermal_velocity_at_point_17________________________________ (vel_plasma_alpha_thermal_profile17)_ 1.11276233442332060e+06 -Plasma_alpha_thermal_velocity_at_point_18________________________________ (vel_plasma_alpha_thermal_profile18)_ 1.11266175884942547e+06 -Plasma_alpha_thermal_velocity_at_point_19________________________________ (vel_plasma_alpha_thermal_profile19)_ 1.11255543403562717e+06 -Plasma_alpha_thermal_velocity_at_point_20________________________________ (vel_plasma_alpha_thermal_profile20)_ 1.11244335960711283e+06 -Plasma_alpha_thermal_velocity_at_point_21________________________________ (vel_plasma_alpha_thermal_profile21)_ 1.11232553522983636e+06 -Plasma_alpha_thermal_velocity_at_point_22________________________________ (vel_plasma_alpha_thermal_profile22)_ 1.11220196048940532e+06 -Plasma_alpha_thermal_velocity_at_point_23________________________________ (vel_plasma_alpha_thermal_profile23)_ 1.11207263501214748e+06 -Plasma_alpha_thermal_velocity_at_point_24________________________________ (vel_plasma_alpha_thermal_profile24)_ 1.11193755837088986e+06 -Plasma_alpha_thermal_velocity_at_point_25________________________________ (vel_plasma_alpha_thermal_profile25)_ 1.11179673010285595e+06 -Plasma_alpha_thermal_velocity_at_point_26________________________________ (vel_plasma_alpha_thermal_profile26)_ 1.11165014978591516e+06 -Plasma_alpha_thermal_velocity_at_point_27________________________________ (vel_plasma_alpha_thermal_profile27)_ 1.11149781691739522e+06 -Plasma_alpha_thermal_velocity_at_point_28________________________________ (vel_plasma_alpha_thermal_profile28)_ 1.11133973101725476e+06 -Plasma_alpha_thermal_velocity_at_point_29________________________________ (vel_plasma_alpha_thermal_profile29)_ 1.11117589155623596e+06 -Plasma_alpha_thermal_velocity_at_point_30________________________________ (vel_plasma_alpha_thermal_profile30)_ 1.11100629802316148e+06 -Plasma_alpha_thermal_velocity_at_point_31________________________________ (vel_plasma_alpha_thermal_profile31)_ 1.11083094984856783e+06 -Plasma_alpha_thermal_velocity_at_point_32________________________________ (vel_plasma_alpha_thermal_profile32)_ 1.11064984645404527e+06 -Plasma_alpha_thermal_velocity_at_point_33________________________________ (vel_plasma_alpha_thermal_profile33)_ 1.11046298727915669e+06 -Plasma_alpha_thermal_velocity_at_point_34________________________________ (vel_plasma_alpha_thermal_profile34)_ 1.11027037171401945e+06 -Plasma_alpha_thermal_velocity_at_point_35________________________________ (vel_plasma_alpha_thermal_profile35)_ 1.11007199911721027e+06 -Plasma_alpha_thermal_velocity_at_point_36________________________________ (vel_plasma_alpha_thermal_profile36)_ 1.10986786883368529e+06 -Plasma_alpha_thermal_velocity_at_point_37________________________________ (vel_plasma_alpha_thermal_profile37)_ 1.10965798023519781e+06 -Plasma_alpha_thermal_velocity_at_point_38________________________________ (vel_plasma_alpha_thermal_profile38)_ 1.10944233263934660e+06 -Plasma_alpha_thermal_velocity_at_point_39________________________________ (vel_plasma_alpha_thermal_profile39)_ 1.10922092531398544e+06 -Plasma_alpha_thermal_velocity_at_point_40________________________________ (vel_plasma_alpha_thermal_profile40)_ 1.10899375755361770e+06 -Plasma_alpha_thermal_velocity_at_point_41________________________________ (vel_plasma_alpha_thermal_profile41)_ 1.10876082865688624e+06 -Plasma_alpha_thermal_velocity_at_point_42________________________________ (vel_plasma_alpha_thermal_profile42)_ 1.10852213780052238e+06 -Plasma_alpha_thermal_velocity_at_point_43________________________________ (vel_plasma_alpha_thermal_profile43)_ 1.10827768427776452e+06 -Plasma_alpha_thermal_velocity_at_point_44________________________________ (vel_plasma_alpha_thermal_profile44)_ 1.10802746725980286e+06 -Plasma_alpha_thermal_velocity_at_point_45________________________________ (vel_plasma_alpha_thermal_profile45)_ 1.10777148596674530e+06 -Plasma_alpha_thermal_velocity_at_point_46________________________________ (vel_plasma_alpha_thermal_profile46)_ 1.10750973953248677e+06 -Plasma_alpha_thermal_velocity_at_point_47________________________________ (vel_plasma_alpha_thermal_profile47)_ 1.10724222713072901e+06 -Plasma_alpha_thermal_velocity_at_point_48________________________________ (vel_plasma_alpha_thermal_profile48)_ 1.10696894788033934e+06 -Plasma_alpha_thermal_velocity_at_point_49________________________________ (vel_plasma_alpha_thermal_profile49)_ 1.10668990091736661e+06 -Plasma_alpha_thermal_velocity_at_point_50________________________________ (vel_plasma_alpha_thermal_profile50)_ 1.10640508534992626e+06 -Plasma_alpha_thermal_velocity_at_point_51________________________________ (vel_plasma_alpha_thermal_profile51)_ 1.10611450024458580e+06 -Plasma_alpha_thermal_velocity_at_point_52________________________________ (vel_plasma_alpha_thermal_profile52)_ 1.10581814464882133e+06 -Plasma_alpha_thermal_velocity_at_point_53________________________________ (vel_plasma_alpha_thermal_profile53)_ 1.10551601760899532e+06 -Plasma_alpha_thermal_velocity_at_point_54________________________________ (vel_plasma_alpha_thermal_profile54)_ 1.10520811817481811e+06 -Plasma_alpha_thermal_velocity_at_point_55________________________________ (vel_plasma_alpha_thermal_profile55)_ 1.10489444531802600e+06 -Plasma_alpha_thermal_velocity_at_point_56________________________________ (vel_plasma_alpha_thermal_profile56)_ 1.10457499805868650e+06 -Plasma_alpha_thermal_velocity_at_point_57________________________________ (vel_plasma_alpha_thermal_profile57)_ 1.10424977535226522e+06 -Plasma_alpha_thermal_velocity_at_point_58________________________________ (vel_plasma_alpha_thermal_profile58)_ 1.10391877614370990e+06 -Plasma_alpha_thermal_velocity_at_point_59________________________________ (vel_plasma_alpha_thermal_profile59)_ 1.10358199939450528e+06 -Plasma_alpha_thermal_velocity_at_point_60________________________________ (vel_plasma_alpha_thermal_profile60)_ 1.10323944399219844e+06 -Plasma_alpha_thermal_velocity_at_point_61________________________________ (vel_plasma_alpha_thermal_profile61)_ 1.10289110883617774e+06 -Plasma_alpha_thermal_velocity_at_point_62________________________________ (vel_plasma_alpha_thermal_profile62)_ 1.10253699282405758e+06 -Plasma_alpha_thermal_velocity_at_point_63________________________________ (vel_plasma_alpha_thermal_profile63)_ 1.10217709482445871e+06 -Plasma_alpha_thermal_velocity_at_point_64________________________________ (vel_plasma_alpha_thermal_profile64)_ 1.10181141364973295e+06 -Plasma_alpha_thermal_velocity_at_point_65________________________________ (vel_plasma_alpha_thermal_profile65)_ 1.10143994814640307e+06 -Plasma_alpha_thermal_velocity_at_point_66________________________________ (vel_plasma_alpha_thermal_profile66)_ 1.10106269710453297e+06 -Plasma_alpha_thermal_velocity_at_point_67________________________________ (vel_plasma_alpha_thermal_profile67)_ 1.10067965933462791e+06 -Plasma_alpha_thermal_velocity_at_point_68________________________________ (vel_plasma_alpha_thermal_profile68)_ 1.10029083360865852e+06 -Plasma_alpha_thermal_velocity_at_point_69________________________________ (vel_plasma_alpha_thermal_profile69)_ 1.09989621865993086e+06 -Plasma_alpha_thermal_velocity_at_point_70________________________________ (vel_plasma_alpha_thermal_profile70)_ 1.09949581325101410e+06 -Plasma_alpha_thermal_velocity_at_point_71________________________________ (vel_plasma_alpha_thermal_profile71)_ 1.09908961606478621e+06 -Plasma_alpha_thermal_velocity_at_point_72________________________________ (vel_plasma_alpha_thermal_profile72)_ 1.09867762585861189e+06 -Plasma_alpha_thermal_velocity_at_point_73________________________________ (vel_plasma_alpha_thermal_profile73)_ 1.09825984125999361e+06 -Plasma_alpha_thermal_velocity_at_point_74________________________________ (vel_plasma_alpha_thermal_profile74)_ 1.09783626095257676e+06 -Plasma_alpha_thermal_velocity_at_point_75________________________________ (vel_plasma_alpha_thermal_profile75)_ 1.09740688358981139e+06 -Plasma_alpha_thermal_velocity_at_point_76________________________________ (vel_plasma_alpha_thermal_profile76)_ 1.09697170779481973e+06 -Plasma_alpha_thermal_velocity_at_point_77________________________________ (vel_plasma_alpha_thermal_profile77)_ 1.09653073219211539e+06 -Plasma_alpha_thermal_velocity_at_point_78________________________________ (vel_plasma_alpha_thermal_profile78)_ 1.09608395537111768e+06 -Plasma_alpha_thermal_velocity_at_point_79________________________________ (vel_plasma_alpha_thermal_profile79)_ 1.09563137589966925e+06 -Plasma_alpha_thermal_velocity_at_point_80________________________________ (vel_plasma_alpha_thermal_profile80)_ 1.09517299234669120e+06 -Plasma_alpha_thermal_velocity_at_point_81________________________________ (vel_plasma_alpha_thermal_profile81)_ 1.09470880325020989e+06 -Plasma_alpha_thermal_velocity_at_point_82________________________________ (vel_plasma_alpha_thermal_profile82)_ 1.09423880714456900e+06 -Plasma_alpha_thermal_velocity_at_point_83________________________________ (vel_plasma_alpha_thermal_profile83)_ 1.09376300251473160e+06 -Plasma_alpha_thermal_velocity_at_point_84________________________________ (vel_plasma_alpha_thermal_profile84)_ 1.09328138787823357e+06 -Plasma_alpha_thermal_velocity_at_point_85________________________________ (vel_plasma_alpha_thermal_profile85)_ 1.09279396170756384e+06 -Plasma_alpha_thermal_velocity_at_point_86________________________________ (vel_plasma_alpha_thermal_profile86)_ 1.09230072241628170e+06 -Plasma_alpha_thermal_velocity_at_point_87________________________________ (vel_plasma_alpha_thermal_profile87)_ 1.09180166851416603e+06 -Plasma_alpha_thermal_velocity_at_point_88________________________________ (vel_plasma_alpha_thermal_profile88)_ 1.09129679836048116e+06 -Plasma_alpha_thermal_velocity_at_point_89________________________________ (vel_plasma_alpha_thermal_profile89)_ 1.09078611039223871e+06 -Plasma_alpha_thermal_velocity_at_point_90________________________________ (vel_plasma_alpha_thermal_profile90)_ 1.09026960297786049e+06 -Plasma_alpha_thermal_velocity_at_point_91________________________________ (vel_plasma_alpha_thermal_profile91)_ 1.08974727449476090e+06 -Plasma_alpha_thermal_velocity_at_point_92________________________________ (vel_plasma_alpha_thermal_profile92)_ 1.08921912332470040e+06 -Plasma_alpha_thermal_velocity_at_point_93________________________________ (vel_plasma_alpha_thermal_profile93)_ 1.08868514775747410e+06 -Plasma_alpha_thermal_velocity_at_point_94________________________________ (vel_plasma_alpha_thermal_profile94)_ 1.08814534615106951e+06 -Plasma_alpha_thermal_velocity_at_point_95________________________________ (vel_plasma_alpha_thermal_profile95)_ 1.08759971679412946e+06 -Plasma_alpha_thermal_velocity_at_point_96________________________________ (vel_plasma_alpha_thermal_profile96)_ 1.08704825796076166e+06 -Plasma_alpha_thermal_velocity_at_point_97________________________________ (vel_plasma_alpha_thermal_profile97)_ 1.08649096794714662e+06 -Plasma_alpha_thermal_velocity_at_point_98________________________________ (vel_plasma_alpha_thermal_profile98)_ 1.08592784499339759e+06 -Plasma_alpha_thermal_velocity_at_point_99________________________________ (vel_plasma_alpha_thermal_profile99)_ 1.08535888734308071e+06 -Plasma_alpha_thermal_velocity_at_point_100_______________________________ (vel_plasma_alpha_thermal_profile100)_ 1.08478409319713619e+06 -Plasma_alpha_thermal_velocity_at_point_101_______________________________ (vel_plasma_alpha_thermal_profile101)_ 1.08420346078269626e+06 -Plasma_alpha_thermal_velocity_at_point_102_______________________________ (vel_plasma_alpha_thermal_profile102)_ 1.08361698828859953e+06 -Plasma_alpha_thermal_velocity_at_point_103_______________________________ (vel_plasma_alpha_thermal_profile103)_ 1.08302467386519141e+06 -Plasma_alpha_thermal_velocity_at_point_104_______________________________ (vel_plasma_alpha_thermal_profile104)_ 1.08242651571169496e+06 -Plasma_alpha_thermal_velocity_at_point_105_______________________________ (vel_plasma_alpha_thermal_profile105)_ 1.08182251190561219e+06 -Plasma_alpha_thermal_velocity_at_point_106_______________________________ (vel_plasma_alpha_thermal_profile106)_ 1.08121266063300008e+06 -Plasma_alpha_thermal_velocity_at_point_107_______________________________ (vel_plasma_alpha_thermal_profile107)_ 1.08059695994397742e+06 -Plasma_alpha_thermal_velocity_at_point_108_______________________________ (vel_plasma_alpha_thermal_profile108)_ 1.07997540800169553e+06 -Plasma_alpha_thermal_velocity_at_point_109_______________________________ (vel_plasma_alpha_thermal_profile109)_ 1.07934800280522043e+06 -Plasma_alpha_thermal_velocity_at_point_110_______________________________ (vel_plasma_alpha_thermal_profile110)_ 1.07871474247570569e+06 -Plasma_alpha_thermal_velocity_at_point_111_______________________________ (vel_plasma_alpha_thermal_profile111)_ 1.07807562503913813e+06 -Plasma_alpha_thermal_velocity_at_point_112_______________________________ (vel_plasma_alpha_thermal_profile112)_ 1.07743064850930264e+06 -Plasma_alpha_thermal_velocity_at_point_113_______________________________ (vel_plasma_alpha_thermal_profile113)_ 1.07677981091543660e+06 -Plasma_alpha_thermal_velocity_at_point_114_______________________________ (vel_plasma_alpha_thermal_profile114)_ 1.07612311027898872e+06 -Plasma_alpha_thermal_velocity_at_point_115_______________________________ (vel_plasma_alpha_thermal_profile115)_ 1.07546054453926254e+06 -Plasma_alpha_thermal_velocity_at_point_116_______________________________ (vel_plasma_alpha_thermal_profile116)_ 1.07479211169231101e+06 -Plasma_alpha_thermal_velocity_at_point_117_______________________________ (vel_plasma_alpha_thermal_profile117)_ 1.07411780970275030e+06 -Plasma_alpha_thermal_velocity_at_point_118_______________________________ (vel_plasma_alpha_thermal_profile118)_ 1.07343763649425493e+06 -Plasma_alpha_thermal_velocity_at_point_119_______________________________ (vel_plasma_alpha_thermal_profile119)_ 1.07275159000512469e+06 -Plasma_alpha_thermal_velocity_at_point_120_______________________________ (vel_plasma_alpha_thermal_profile120)_ 1.07205966811375716e+06 -Plasma_alpha_thermal_velocity_at_point_121_______________________________ (vel_plasma_alpha_thermal_profile121)_ 1.07136186875941744e+06 -Plasma_alpha_thermal_velocity_at_point_122_______________________________ (vel_plasma_alpha_thermal_profile122)_ 1.07065818979320559e+06 -Plasma_alpha_thermal_velocity_at_point_123_______________________________ (vel_plasma_alpha_thermal_profile123)_ 1.06994862908956199e+06 -Plasma_alpha_thermal_velocity_at_point_124_______________________________ (vel_plasma_alpha_thermal_profile124)_ 1.06923318450423260e+06 -Plasma_alpha_thermal_velocity_at_point_125_______________________________ (vel_plasma_alpha_thermal_profile125)_ 1.06851185388342687e+06 -Plasma_alpha_thermal_velocity_at_point_126_______________________________ (vel_plasma_alpha_thermal_profile126)_ 1.06778463503096136e+06 -Plasma_alpha_thermal_velocity_at_point_127_______________________________ (vel_plasma_alpha_thermal_profile127)_ 1.06705152578280377e+06 -Plasma_alpha_thermal_velocity_at_point_128_______________________________ (vel_plasma_alpha_thermal_profile128)_ 1.06631252392752375e+06 -Plasma_alpha_thermal_velocity_at_point_129_______________________________ (vel_plasma_alpha_thermal_profile129)_ 1.06556762722941721e+06 -Plasma_alpha_thermal_velocity_at_point_130_______________________________ (vel_plasma_alpha_thermal_profile130)_ 1.06481683350795088e+06 -Plasma_alpha_thermal_velocity_at_point_131_______________________________ (vel_plasma_alpha_thermal_profile131)_ 1.06406014046435105e+06 -Plasma_alpha_thermal_velocity_at_point_132_______________________________ (vel_plasma_alpha_thermal_profile132)_ 1.06329754588281945e+06 -Plasma_alpha_thermal_velocity_at_point_133_______________________________ (vel_plasma_alpha_thermal_profile133)_ 1.06252904747105739e+06 -Plasma_alpha_thermal_velocity_at_point_134_______________________________ (vel_plasma_alpha_thermal_profile134)_ 1.06175464296794101e+06 -Plasma_alpha_thermal_velocity_at_point_135_______________________________ (vel_plasma_alpha_thermal_profile135)_ 1.06097433005416091e+06 -Plasma_alpha_thermal_velocity_at_point_136_______________________________ (vel_plasma_alpha_thermal_profile136)_ 1.06018810645541106e+06 -Plasma_alpha_thermal_velocity_at_point_137_______________________________ (vel_plasma_alpha_thermal_profile137)_ 1.05939596981998277e+06 -Plasma_alpha_thermal_velocity_at_point_138_______________________________ (vel_plasma_alpha_thermal_profile138)_ 1.05859791783145699e+06 -Plasma_alpha_thermal_velocity_at_point_139_______________________________ (vel_plasma_alpha_thermal_profile139)_ 1.05779394817569060e+06 -Plasma_alpha_thermal_velocity_at_point_140_______________________________ (vel_plasma_alpha_thermal_profile140)_ 1.05698405843685288e+06 -Plasma_alpha_thermal_velocity_at_point_141_______________________________ (vel_plasma_alpha_thermal_profile141)_ 1.05616824630475021e+06 -Plasma_alpha_thermal_velocity_at_point_142_______________________________ (vel_plasma_alpha_thermal_profile142)_ 1.05534650936236489e+06 -Plasma_alpha_thermal_velocity_at_point_143_______________________________ (vel_plasma_alpha_thermal_profile143)_ 1.05451884524616599e+06 -Plasma_alpha_thermal_velocity_at_point_144_______________________________ (vel_plasma_alpha_thermal_profile144)_ 1.05368525155622256e+06 -Plasma_alpha_thermal_velocity_at_point_145_______________________________ (vel_plasma_alpha_thermal_profile145)_ 1.05284572585118678e+06 -Plasma_alpha_thermal_velocity_at_point_146_______________________________ (vel_plasma_alpha_thermal_profile146)_ 1.05200026576181035e+06 -Plasma_alpha_thermal_velocity_at_point_147_______________________________ (vel_plasma_alpha_thermal_profile147)_ 1.05114886880124756e+06 -Plasma_alpha_thermal_velocity_at_point_148_______________________________ (vel_plasma_alpha_thermal_profile148)_ 1.05029153254019772e+06 -Plasma_alpha_thermal_velocity_at_point_149_______________________________ (vel_plasma_alpha_thermal_profile149)_ 1.04942825456421426e+06 -Plasma_alpha_thermal_velocity_at_point_150_______________________________ (vel_plasma_alpha_thermal_profile150)_ 1.04855903237371019e+06 -Plasma_alpha_thermal_velocity_at_point_151_______________________________ (vel_plasma_alpha_thermal_profile151)_ 1.04768386349299131e+06 -Plasma_alpha_thermal_velocity_at_point_152_______________________________ (vel_plasma_alpha_thermal_profile152)_ 1.04680274545591697e+06 -Plasma_alpha_thermal_velocity_at_point_153_______________________________ (vel_plasma_alpha_thermal_profile153)_ 1.04591567578195035e+06 -Plasma_alpha_thermal_velocity_at_point_154_______________________________ (vel_plasma_alpha_thermal_profile154)_ 1.04502265196163242e+06 -Plasma_alpha_thermal_velocity_at_point_155_______________________________ (vel_plasma_alpha_thermal_profile155)_ 1.04412367148020852e+06 -Plasma_alpha_thermal_velocity_at_point_156_______________________________ (vel_plasma_alpha_thermal_profile156)_ 1.04321873182702647e+06 -Plasma_alpha_thermal_velocity_at_point_157_______________________________ (vel_plasma_alpha_thermal_profile157)_ 1.04230783046669152e+06 -Plasma_alpha_thermal_velocity_at_point_158_______________________________ (vel_plasma_alpha_thermal_profile158)_ 1.04139096488193062e+06 -Plasma_alpha_thermal_velocity_at_point_159_______________________________ (vel_plasma_alpha_thermal_profile159)_ 1.04046813253516727e+06 -Plasma_alpha_thermal_velocity_at_point_160_______________________________ (vel_plasma_alpha_thermal_profile160)_ 1.03953933085388842e+06 -Plasma_alpha_thermal_velocity_at_point_161_______________________________ (vel_plasma_alpha_thermal_profile161)_ 1.03860455731200322e+06 -Plasma_alpha_thermal_velocity_at_point_162_______________________________ (vel_plasma_alpha_thermal_profile162)_ 1.03766380934336165e+06 -Plasma_alpha_thermal_velocity_at_point_163_______________________________ (vel_plasma_alpha_thermal_profile163)_ 1.03671708435586328e+06 -Plasma_alpha_thermal_velocity_at_point_164_______________________________ (vel_plasma_alpha_thermal_profile164)_ 1.03576437980344181e+06 -Plasma_alpha_thermal_velocity_at_point_165_______________________________ (vel_plasma_alpha_thermal_profile165)_ 1.03480569308488176e+06 -Plasma_alpha_thermal_velocity_at_point_166_______________________________ (vel_plasma_alpha_thermal_profile166)_ 1.03384102162062679e+06 -Plasma_alpha_thermal_velocity_at_point_167_______________________________ (vel_plasma_alpha_thermal_profile167)_ 1.03287036284306971e+06 -Plasma_alpha_thermal_velocity_at_point_168_______________________________ (vel_plasma_alpha_thermal_profile168)_ 1.03189371414327563e+06 -Plasma_alpha_thermal_velocity_at_point_169_______________________________ (vel_plasma_alpha_thermal_profile169)_ 1.03091107288999401e+06 -Plasma_alpha_thermal_velocity_at_point_170_______________________________ (vel_plasma_alpha_thermal_profile170)_ 1.02992243652143853e+06 -Plasma_alpha_thermal_velocity_at_point_171_______________________________ (vel_plasma_alpha_thermal_profile171)_ 1.02892780240485328e+06 -Plasma_alpha_thermal_velocity_at_point_172_______________________________ (vel_plasma_alpha_thermal_profile172)_ 1.02792716793794290e+06 -Plasma_alpha_thermal_velocity_at_point_173_______________________________ (vel_plasma_alpha_thermal_profile173)_ 1.02692053048085107e+06 -Plasma_alpha_thermal_velocity_at_point_174_______________________________ (vel_plasma_alpha_thermal_profile174)_ 1.02590788745794899e+06 -Plasma_alpha_thermal_velocity_at_point_175_______________________________ (vel_plasma_alpha_thermal_profile175)_ 1.02488923622169672e+06 -Plasma_alpha_thermal_velocity_at_point_176_______________________________ (vel_plasma_alpha_thermal_profile176)_ 1.02386457416908036e+06 -Plasma_alpha_thermal_velocity_at_point_177_______________________________ (vel_plasma_alpha_thermal_profile177)_ 1.02283389866363688e+06 -Plasma_alpha_thermal_velocity_at_point_178_______________________________ (vel_plasma_alpha_thermal_profile178)_ 1.02179720705466229e+06 -Plasma_alpha_thermal_velocity_at_point_179_______________________________ (vel_plasma_alpha_thermal_profile179)_ 1.02075449676496105e+06 -Plasma_alpha_thermal_velocity_at_point_180_______________________________ (vel_plasma_alpha_thermal_profile180)_ 1.01970576513450209e+06 -Plasma_alpha_thermal_velocity_at_point_181_______________________________ (vel_plasma_alpha_thermal_profile181)_ 1.01865100953738333e+06 -Plasma_alpha_thermal_velocity_at_point_182_______________________________ (vel_plasma_alpha_thermal_profile182)_ 1.01759022736224090e+06 -Plasma_alpha_thermal_velocity_at_point_183_______________________________ (vel_plasma_alpha_thermal_profile183)_ 1.01652341599253775e+06 -Plasma_alpha_thermal_velocity_at_point_184_______________________________ (vel_plasma_alpha_thermal_profile184)_ 1.01545057278672862e+06 -Plasma_alpha_thermal_velocity_at_point_185_______________________________ (vel_plasma_alpha_thermal_profile185)_ 1.01437169511240034e+06 -Plasma_alpha_thermal_velocity_at_point_186_______________________________ (vel_plasma_alpha_thermal_profile186)_ 1.01328678039540001e+06 -Plasma_alpha_thermal_velocity_at_point_187_______________________________ (vel_plasma_alpha_thermal_profile187)_ 1.01219582598690956e+06 -Plasma_alpha_thermal_velocity_at_point_188_______________________________ (vel_plasma_alpha_thermal_profile188)_ 1.01109882927637699e+06 -Plasma_alpha_thermal_velocity_at_point_189_______________________________ (vel_plasma_alpha_thermal_profile189)_ 1.00999578765698825e+06 -Plasma_alpha_thermal_velocity_at_point_190_______________________________ (vel_plasma_alpha_thermal_profile190)_ 1.00888669852058624e+06 -Plasma_alpha_thermal_velocity_at_point_191_______________________________ (vel_plasma_alpha_thermal_profile191)_ 1.00777155928226095e+06 -Plasma_alpha_thermal_velocity_at_point_192_______________________________ (vel_plasma_alpha_thermal_profile192)_ 1.00665036735058436e+06 -Plasma_alpha_thermal_velocity_at_point_193_______________________________ (vel_plasma_alpha_thermal_profile193)_ 1.00552312012245727e+06 -Plasma_alpha_thermal_velocity_at_point_194_______________________________ (vel_plasma_alpha_thermal_profile194)_ 1.00438981503752712e+06 -Plasma_alpha_thermal_velocity_at_point_195_______________________________ (vel_plasma_alpha_thermal_profile195)_ 1.00325044951859862e+06 -Plasma_alpha_thermal_velocity_at_point_196_______________________________ (vel_plasma_alpha_thermal_profile196)_ 1.00210502098133997e+06 -Plasma_alpha_thermal_velocity_at_point_197_______________________________ (vel_plasma_alpha_thermal_profile197)_ 1.00095352688392857e+06 -Plasma_alpha_thermal_velocity_at_point_198_______________________________ (vel_plasma_alpha_thermal_profile198)_ 9.99795964687220287e+05 -Plasma_alpha_thermal_velocity_at_point_199_______________________________ (vel_plasma_alpha_thermal_profile199)_ 9.98632331854610355e+05 -Plasma_alpha_thermal_velocity_at_point_200_______________________________ (vel_plasma_alpha_thermal_profile200)_ 9.97462625856895000e+05 -Plasma_alpha_thermal_velocity_at_point_201_______________________________ (vel_plasma_alpha_thermal_profile201)_ 9.96286844187184470e+05 -Plasma_alpha_thermal_velocity_at_point_202_______________________________ (vel_plasma_alpha_thermal_profile202)_ 9.95104984325784841e+05 -Plasma_alpha_thermal_velocity_at_point_203_______________________________ (vel_plasma_alpha_thermal_profile203)_ 9.93917043800204294e+05 -Plasma_alpha_thermal_velocity_at_point_204_______________________________ (vel_plasma_alpha_thermal_profile204)_ 9.92723020119949360e+05 -Plasma_alpha_thermal_velocity_at_point_205_______________________________ (vel_plasma_alpha_thermal_profile205)_ 9.91522910846707760e+05 -Plasma_alpha_thermal_velocity_at_point_206_______________________________ (vel_plasma_alpha_thermal_profile206)_ 9.90316713539097342e+05 -Plasma_alpha_thermal_velocity_at_point_207_______________________________ (vel_plasma_alpha_thermal_profile207)_ 9.89104425722232671e+05 -Plasma_alpha_thermal_velocity_at_point_208_______________________________ (vel_plasma_alpha_thermal_profile208)_ 9.87886045013624942e+05 -Plasma_alpha_thermal_velocity_at_point_209_______________________________ (vel_plasma_alpha_thermal_profile209)_ 9.86661569037640584e+05 -Plasma_alpha_thermal_velocity_at_point_210_______________________________ (vel_plasma_alpha_thermal_profile210)_ 9.85430995379832224e+05 -Plasma_alpha_thermal_velocity_at_point_211_______________________________ (vel_plasma_alpha_thermal_profile211)_ 9.84194321723415749e+05 -Plasma_alpha_thermal_velocity_at_point_212_______________________________ (vel_plasma_alpha_thermal_profile212)_ 9.82951545697468915e+05 -Plasma_alpha_thermal_velocity_at_point_213_______________________________ (vel_plasma_alpha_thermal_profile213)_ 9.81702664967921213e+05 -Plasma_alpha_thermal_velocity_at_point_214_______________________________ (vel_plasma_alpha_thermal_profile214)_ 9.80447677308881655e+05 -Plasma_alpha_thermal_velocity_at_point_215_______________________________ (vel_plasma_alpha_thermal_profile215)_ 9.79186580379004590e+05 -Plasma_alpha_thermal_velocity_at_point_216_______________________________ (vel_plasma_alpha_thermal_profile216)_ 9.77919371990993619e+05 -Plasma_alpha_thermal_velocity_at_point_217_______________________________ (vel_plasma_alpha_thermal_profile217)_ 9.76646049897908000e+05 -Plasma_alpha_thermal_velocity_at_point_218_______________________________ (vel_plasma_alpha_thermal_profile218)_ 9.75366611869360204e+05 -Plasma_alpha_thermal_velocity_at_point_219_______________________________ (vel_plasma_alpha_thermal_profile219)_ 9.74081055814408930e+05 -Plasma_alpha_thermal_velocity_at_point_220_______________________________ (vel_plasma_alpha_thermal_profile220)_ 9.72789379505396588e+05 -Plasma_alpha_thermal_velocity_at_point_221_______________________________ (vel_plasma_alpha_thermal_profile221)_ 9.71491580895306775e+05 -Plasma_alpha_thermal_velocity_at_point_222_______________________________ (vel_plasma_alpha_thermal_profile222)_ 9.70187657866858994e+05 -Plasma_alpha_thermal_velocity_at_point_223_______________________________ (vel_plasma_alpha_thermal_profile223)_ 9.68877608417281066e+05 -Plasma_alpha_thermal_velocity_at_point_224_______________________________ (vel_plasma_alpha_thermal_profile224)_ 9.67561430478481809e+05 -Plasma_alpha_thermal_velocity_at_point_225_______________________________ (vel_plasma_alpha_thermal_profile225)_ 9.66239122092033038e+05 -Plasma_alpha_thermal_velocity_at_point_226_______________________________ (vel_plasma_alpha_thermal_profile226)_ 9.64910681327064405e+05 -Plasma_alpha_thermal_velocity_at_point_227_______________________________ (vel_plasma_alpha_thermal_profile227)_ 9.63576106249263743e+05 -Plasma_alpha_thermal_velocity_at_point_228_______________________________ (vel_plasma_alpha_thermal_profile228)_ 9.62235394993318827e+05 -Plasma_alpha_thermal_velocity_at_point_229_______________________________ (vel_plasma_alpha_thermal_profile229)_ 9.60888545706163161e+05 -Plasma_alpha_thermal_velocity_at_point_230_______________________________ (vel_plasma_alpha_thermal_profile230)_ 9.59535556630135165e+05 -Plasma_alpha_thermal_velocity_at_point_231_______________________________ (vel_plasma_alpha_thermal_profile231)_ 9.58176426009812159e+05 -Plasma_alpha_thermal_velocity_at_point_232_______________________________ (vel_plasma_alpha_thermal_profile232)_ 9.56811152144056978e+05 -Plasma_alpha_thermal_velocity_at_point_233_______________________________ (vel_plasma_alpha_thermal_profile233)_ 9.55439733334076707e+05 -Plasma_alpha_thermal_velocity_at_point_234_______________________________ (vel_plasma_alpha_thermal_profile234)_ 9.54062167998374673e+05 -Plasma_alpha_thermal_velocity_at_point_235_______________________________ (vel_plasma_alpha_thermal_profile235)_ 9.52678454542570631e+05 -Plasma_alpha_thermal_velocity_at_point_236_______________________________ (vel_plasma_alpha_thermal_profile236)_ 9.51288591458850540e+05 -Plasma_alpha_thermal_velocity_at_point_237_______________________________ (vel_plasma_alpha_thermal_profile237)_ 9.49892577305490500e+05 -Plasma_alpha_thermal_velocity_at_point_238_______________________________ (vel_plasma_alpha_thermal_profile238)_ 9.48490410628347076e+05 -Plasma_alpha_thermal_velocity_at_point_239_______________________________ (vel_plasma_alpha_thermal_profile239)_ 9.47082090087100165e+05 -Plasma_alpha_thermal_velocity_at_point_240_______________________________ (vel_plasma_alpha_thermal_profile240)_ 9.45667614387423964e+05 -Plasma_alpha_thermal_velocity_at_point_241_______________________________ (vel_plasma_alpha_thermal_profile241)_ 9.44246982260112651e+05 -Plasma_alpha_thermal_velocity_at_point_242_______________________________ (vel_plasma_alpha_thermal_profile242)_ 9.42820192529976019e+05 -Plasma_alpha_thermal_velocity_at_point_243_______________________________ (vel_plasma_alpha_thermal_profile243)_ 9.41387244074074901e+05 -Plasma_alpha_thermal_velocity_at_point_244_______________________________ (vel_plasma_alpha_thermal_profile244)_ 9.39948135822044569e+05 -Plasma_alpha_thermal_velocity_at_point_245_______________________________ (vel_plasma_alpha_thermal_profile245)_ 9.38502866798953153e+05 -Plasma_alpha_thermal_velocity_at_point_246_______________________________ (vel_plasma_alpha_thermal_profile246)_ 9.37051436046107090e+05 -Plasma_alpha_thermal_velocity_at_point_247_______________________________ (vel_plasma_alpha_thermal_profile247)_ 9.35593842711766716e+05 -Plasma_alpha_thermal_velocity_at_point_248_______________________________ (vel_plasma_alpha_thermal_profile248)_ 9.34130086041238741e+05 -Plasma_alpha_thermal_velocity_at_point_249_______________________________ (vel_plasma_alpha_thermal_profile249)_ 9.32660165270599187e+05 -Plasma_alpha_thermal_velocity_at_point_250_______________________________ (vel_plasma_alpha_thermal_profile250)_ 9.31184079808734590e+05 -Plasma_alpha_thermal_velocity_at_point_251_______________________________ (vel_plasma_alpha_thermal_profile251)_ 9.29701829061579891e+05 -Plasma_alpha_thermal_velocity_at_point_252_______________________________ (vel_plasma_alpha_thermal_profile252)_ 9.28213412566429586e+05 -Plasma_alpha_thermal_velocity_at_point_253_______________________________ (vel_plasma_alpha_thermal_profile253)_ 9.26718829933736939e+05 -Plasma_alpha_thermal_velocity_at_point_254_______________________________ (vel_plasma_alpha_thermal_profile254)_ 9.25218080826107995e+05 -Plasma_alpha_thermal_velocity_at_point_255_______________________________ (vel_plasma_alpha_thermal_profile255)_ 9.23711165045118658e+05 -Plasma_alpha_thermal_velocity_at_point_256_______________________________ (vel_plasma_alpha_thermal_profile256)_ 9.22198082456692238e+05 -Plasma_alpha_thermal_velocity_at_point_257_______________________________ (vel_plasma_alpha_thermal_profile257)_ 9.20678832991616800e+05 -Plasma_alpha_thermal_velocity_at_point_258_______________________________ (vel_plasma_alpha_thermal_profile258)_ 9.19153416732922313e+05 -Plasma_alpha_thermal_velocity_at_point_259_______________________________ (vel_plasma_alpha_thermal_profile259)_ 9.17621833846464171e+05 -Plasma_alpha_thermal_velocity_at_point_260_______________________________ (vel_plasma_alpha_thermal_profile260)_ 9.16084084554394474e+05 -Plasma_alpha_thermal_velocity_at_point_261_______________________________ (vel_plasma_alpha_thermal_profile261)_ 9.14540169239298790e+05 -Plasma_alpha_thermal_velocity_at_point_262_______________________________ (vel_plasma_alpha_thermal_profile262)_ 9.12990088347210898e+05 -Plasma_alpha_thermal_velocity_at_point_263_______________________________ (vel_plasma_alpha_thermal_profile263)_ 9.11433842475763056e+05 -Plasma_alpha_thermal_velocity_at_point_264_______________________________ (vel_plasma_alpha_thermal_profile264)_ 9.09871432298751199e+05 -Plasma_alpha_thermal_velocity_at_point_265_______________________________ (vel_plasma_alpha_thermal_profile265)_ 9.08302858638239093e+05 -Plasma_alpha_thermal_velocity_at_point_266_______________________________ (vel_plasma_alpha_thermal_profile266)_ 9.06728122383357491e+05 -Plasma_alpha_thermal_velocity_at_point_267_______________________________ (vel_plasma_alpha_thermal_profile267)_ 9.05147224634255399e+05 -Plasma_alpha_thermal_velocity_at_point_268_______________________________ (vel_plasma_alpha_thermal_profile268)_ 9.03560166543887462e+05 -Plasma_alpha_thermal_velocity_at_point_269_______________________________ (vel_plasma_alpha_thermal_profile269)_ 9.01966949384931708e+05 -Plasma_alpha_thermal_velocity_at_point_270_______________________________ (vel_plasma_alpha_thermal_profile270)_ 9.00367574634049786e+05 -Plasma_alpha_thermal_velocity_at_point_271_______________________________ (vel_plasma_alpha_thermal_profile271)_ 8.98762043840569910e+05 -Plasma_alpha_thermal_velocity_at_point_272_______________________________ (vel_plasma_alpha_thermal_profile272)_ 8.97150358744023019e+05 -Plasma_alpha_thermal_velocity_at_point_273_______________________________ (vel_plasma_alpha_thermal_profile273)_ 8.95532521214685519e+05 -Plasma_alpha_thermal_velocity_at_point_274_______________________________ (vel_plasma_alpha_thermal_profile274)_ 8.93908533204655279e+05 -Plasma_alpha_thermal_velocity_at_point_275_______________________________ (vel_plasma_alpha_thermal_profile275)_ 8.92278396916470840e+05 -Plasma_alpha_thermal_velocity_at_point_276_______________________________ (vel_plasma_alpha_thermal_profile276)_ 8.90642114671105868e+05 -Plasma_alpha_thermal_velocity_at_point_277_______________________________ (vel_plasma_alpha_thermal_profile277)_ 8.88999688954112469e+05 -Plasma_alpha_thermal_velocity_at_point_278_______________________________ (vel_plasma_alpha_thermal_profile278)_ 8.87351122394819744e+05 -Plasma_alpha_thermal_velocity_at_point_279_______________________________ (vel_plasma_alpha_thermal_profile279)_ 8.85696417812914005e+05 -Plasma_alpha_thermal_velocity_at_point_280_______________________________ (vel_plasma_alpha_thermal_profile280)_ 8.84035578192191198e+05 -Plasma_alpha_thermal_velocity_at_point_281_______________________________ (vel_plasma_alpha_thermal_profile281)_ 8.82368606716228649e+05 -Plasma_alpha_thermal_velocity_at_point_282_______________________________ (vel_plasma_alpha_thermal_profile282)_ 8.80695506759160664e+05 -Plasma_alpha_thermal_velocity_at_point_283_______________________________ (vel_plasma_alpha_thermal_profile283)_ 8.79016281836638227e+05 -Plasma_alpha_thermal_velocity_at_point_284_______________________________ (vel_plasma_alpha_thermal_profile284)_ 8.77330935692725005e+05 -Plasma_alpha_thermal_velocity_at_point_285_______________________________ (vel_plasma_alpha_thermal_profile285)_ 8.75639472273860243e+05 -Plasma_alpha_thermal_velocity_at_point_286_______________________________ (vel_plasma_alpha_thermal_profile286)_ 8.73941895725377719e+05 -Plasma_alpha_thermal_velocity_at_point_287_______________________________ (vel_plasma_alpha_thermal_profile287)_ 8.72238210410884814e+05 -Plasma_alpha_thermal_velocity_at_point_288_______________________________ (vel_plasma_alpha_thermal_profile288)_ 8.70528420897503733e+05 -Plasma_alpha_thermal_velocity_at_point_289_______________________________ (vel_plasma_alpha_thermal_profile289)_ 8.68812531969672418e+05 -Plasma_alpha_thermal_velocity_at_point_290_______________________________ (vel_plasma_alpha_thermal_profile290)_ 8.67090548694916419e+05 -Plasma_alpha_thermal_velocity_at_point_291_______________________________ (vel_plasma_alpha_thermal_profile291)_ 8.65362476259817486e+05 -Plasma_alpha_thermal_velocity_at_point_292_______________________________ (vel_plasma_alpha_thermal_profile292)_ 8.63628320248858421e+05 -Plasma_alpha_thermal_velocity_at_point_293_______________________________ (vel_plasma_alpha_thermal_profile293)_ 8.61888086353588849e+05 -Plasma_alpha_thermal_velocity_at_point_294_______________________________ (vel_plasma_alpha_thermal_profile294)_ 8.60141780577118276e+05 -Plasma_alpha_thermal_velocity_at_point_295_______________________________ (vel_plasma_alpha_thermal_profile295)_ 8.58389409220262780e+05 -Plasma_alpha_thermal_velocity_at_point_296_______________________________ (vel_plasma_alpha_thermal_profile296)_ 8.56630978803487844e+05 -Plasma_alpha_thermal_velocity_at_point_297_______________________________ (vel_plasma_alpha_thermal_profile297)_ 8.54866496122148354e+05 -Plasma_alpha_thermal_velocity_at_point_298_______________________________ (vel_plasma_alpha_thermal_profile298)_ 8.53095968267347314e+05 -Plasma_alpha_thermal_velocity_at_point_299_______________________________ (vel_plasma_alpha_thermal_profile299)_ 8.51319402617784333e+05 -Plasma_alpha_thermal_velocity_at_point_300_______________________________ (vel_plasma_alpha_thermal_profile300)_ 8.49536806866768165e+05 -Plasma_alpha_thermal_velocity_at_point_301_______________________________ (vel_plasma_alpha_thermal_profile301)_ 8.47748189002520754e+05 -Plasma_alpha_thermal_velocity_at_point_302_______________________________ (vel_plasma_alpha_thermal_profile302)_ 8.45953557323647197e+05 -Plasma_alpha_thermal_velocity_at_point_303_______________________________ (vel_plasma_alpha_thermal_profile303)_ 8.44152920448927791e+05 -Plasma_alpha_thermal_velocity_at_point_304_______________________________ (vel_plasma_alpha_thermal_profile304)_ 8.42346287356879096e+05 -Plasma_alpha_thermal_velocity_at_point_305_______________________________ (vel_plasma_alpha_thermal_profile305)_ 8.40533667313085520e+05 -Plasma_alpha_thermal_velocity_at_point_306_______________________________ (vel_plasma_alpha_thermal_profile306)_ 8.38715069986974937e+05 -Plasma_alpha_thermal_velocity_at_point_307_______________________________ (vel_plasma_alpha_thermal_profile307)_ 8.36890505373421940e+05 -Plasma_alpha_thermal_velocity_at_point_308_______________________________ (vel_plasma_alpha_thermal_profile308)_ 8.35059983868701500e+05 -Plasma_alpha_thermal_velocity_at_point_309_______________________________ (vel_plasma_alpha_thermal_profile309)_ 8.33223516209762427e+05 -Plasma_alpha_thermal_velocity_at_point_310_______________________________ (vel_plasma_alpha_thermal_profile310)_ 8.31381113568761270e+05 -Plasma_alpha_thermal_velocity_at_point_311_______________________________ (vel_plasma_alpha_thermal_profile311)_ 8.29532787486507907e+05 -Plasma_alpha_thermal_velocity_at_point_312_______________________________ (vel_plasma_alpha_thermal_profile312)_ 8.27678549919589772e+05 -Plasma_alpha_thermal_velocity_at_point_313_______________________________ (vel_plasma_alpha_thermal_profile313)_ 8.25818413251922582e+05 -Plasma_alpha_thermal_velocity_at_point_314_______________________________ (vel_plasma_alpha_thermal_profile314)_ 8.23952390300447354e+05 -Plasma_alpha_thermal_velocity_at_point_315_______________________________ (vel_plasma_alpha_thermal_profile315)_ 8.22080494333084323e+05 -Plasma_alpha_thermal_velocity_at_point_316_______________________________ (vel_plasma_alpha_thermal_profile316)_ 8.20202739038318512e+05 -Plasma_alpha_thermal_velocity_at_point_317_______________________________ (vel_plasma_alpha_thermal_profile317)_ 8.18319138671216904e+05 -Plasma_alpha_thermal_velocity_at_point_318_______________________________ (vel_plasma_alpha_thermal_profile318)_ 8.16429707865416887e+05 -Plasma_alpha_thermal_velocity_at_point_319_______________________________ (vel_plasma_alpha_thermal_profile319)_ 8.14534461816180497e+05 -Plasma_alpha_thermal_velocity_at_point_320_______________________________ (vel_plasma_alpha_thermal_profile320)_ 8.12633416183642228e+05 -Plasma_alpha_thermal_velocity_at_point_321_______________________________ (vel_plasma_alpha_thermal_profile321)_ 8.10726587185518118e+05 -Plasma_alpha_thermal_velocity_at_point_322_______________________________ (vel_plasma_alpha_thermal_profile322)_ 8.08813991604819894e+05 -Plasma_alpha_thermal_velocity_at_point_323_______________________________ (vel_plasma_alpha_thermal_profile323)_ 8.06895646692622802e+05 -Plasma_alpha_thermal_velocity_at_point_324_______________________________ (vel_plasma_alpha_thermal_profile324)_ 8.04971570360796526e+05 -Plasma_alpha_thermal_velocity_at_point_325_______________________________ (vel_plasma_alpha_thermal_profile325)_ 8.03041781029645586e+05 -Plasma_alpha_thermal_velocity_at_point_326_______________________________ (vel_plasma_alpha_thermal_profile326)_ 8.01106297797254054e+05 -Plasma_alpha_thermal_velocity_at_point_327_______________________________ (vel_plasma_alpha_thermal_profile327)_ 7.99165140349143650e+05 -Plasma_alpha_thermal_velocity_at_point_328_______________________________ (vel_plasma_alpha_thermal_profile328)_ 7.97218328935519443e+05 -Plasma_alpha_thermal_velocity_at_point_329_______________________________ (vel_plasma_alpha_thermal_profile329)_ 7.95265884586627479e+05 -Plasma_alpha_thermal_velocity_at_point_330_______________________________ (vel_plasma_alpha_thermal_profile330)_ 7.93307828922575573e+05 -Plasma_alpha_thermal_velocity_at_point_331_______________________________ (vel_plasma_alpha_thermal_profile331)_ 7.91344184256714419e+05 -Plasma_alpha_thermal_velocity_at_point_332_______________________________ (vel_plasma_alpha_thermal_profile332)_ 7.89374973650060361e+05 -Plasma_alpha_thermal_velocity_at_point_333_______________________________ (vel_plasma_alpha_thermal_profile333)_ 7.87400220871563070e+05 -Plasma_alpha_thermal_velocity_at_point_334_______________________________ (vel_plasma_alpha_thermal_profile334)_ 7.85419950402307673e+05 -Plasma_alpha_thermal_velocity_at_point_335_______________________________ (vel_plasma_alpha_thermal_profile335)_ 7.83434187592688017e+05 -Plasma_alpha_thermal_velocity_at_point_336_______________________________ (vel_plasma_alpha_thermal_profile336)_ 7.81442958470904268e+05 -Plasma_alpha_thermal_velocity_at_point_337_______________________________ (vel_plasma_alpha_thermal_profile337)_ 7.79446289990256657e+05 -Plasma_alpha_thermal_velocity_at_point_338_______________________________ (vel_plasma_alpha_thermal_profile338)_ 7.77444209831111482e+05 -Plasma_alpha_thermal_velocity_at_point_339_______________________________ (vel_plasma_alpha_thermal_profile339)_ 7.75436746637386153e+05 -Plasma_alpha_thermal_velocity_at_point_340_______________________________ (vel_plasma_alpha_thermal_profile340)_ 7.73423929889103980e+05 -Plasma_alpha_thermal_velocity_at_point_341_______________________________ (vel_plasma_alpha_thermal_profile341)_ 7.71405789999403059e+05 -Plasma_alpha_thermal_velocity_at_point_342_______________________________ (vel_plasma_alpha_thermal_profile342)_ 7.69382358289944590e+05 -Plasma_alpha_thermal_velocity_at_point_343_______________________________ (vel_plasma_alpha_thermal_profile343)_ 7.67353667057039682e+05 -Plasma_alpha_thermal_velocity_at_point_344_______________________________ (vel_plasma_alpha_thermal_profile344)_ 7.65319749645431177e+05 -Plasma_alpha_thermal_velocity_at_point_345_______________________________ (vel_plasma_alpha_thermal_profile345)_ 7.63280640333787887e+05 -Plasma_alpha_thermal_velocity_at_point_346_______________________________ (vel_plasma_alpha_thermal_profile346)_ 7.61236374546146020e+05 -Plasma_alpha_thermal_velocity_at_point_347_______________________________ (vel_plasma_alpha_thermal_profile347)_ 7.59186988718556589e+05 -Plasma_alpha_thermal_velocity_at_point_348_______________________________ (vel_plasma_alpha_thermal_profile348)_ 7.57132520427241223e+05 -Plasma_alpha_thermal_velocity_at_point_349_______________________________ (vel_plasma_alpha_thermal_profile349)_ 7.55073008399996441e+05 -Plasma_alpha_thermal_velocity_at_point_350_______________________________ (vel_plasma_alpha_thermal_profile350)_ 7.53008492547757342e+05 -Plasma_alpha_thermal_velocity_at_point_351_______________________________ (vel_plasma_alpha_thermal_profile351)_ 7.50939013976848335e+05 -Plasma_alpha_thermal_velocity_at_point_352_______________________________ (vel_plasma_alpha_thermal_profile352)_ 7.48864615074817673e+05 -Plasma_alpha_thermal_velocity_at_point_353_______________________________ (vel_plasma_alpha_thermal_profile353)_ 7.46785339510951890e+05 -Plasma_alpha_thermal_velocity_at_point_354_______________________________ (vel_plasma_alpha_thermal_profile354)_ 7.44701232236901764e+05 -Plasma_alpha_thermal_velocity_at_point_355_______________________________ (vel_plasma_alpha_thermal_profile355)_ 7.42612339635220123e+05 -Plasma_alpha_thermal_velocity_at_point_356_______________________________ (vel_plasma_alpha_thermal_profile356)_ 7.40518709461662220e+05 -Plasma_alpha_thermal_velocity_at_point_357_______________________________ (vel_plasma_alpha_thermal_profile357)_ 7.38420390908225207e+05 -Plasma_alpha_thermal_velocity_at_point_358_______________________________ (vel_plasma_alpha_thermal_profile358)_ 7.36317434714800329e+05 -Plasma_alpha_thermal_velocity_at_point_359_______________________________ (vel_plasma_alpha_thermal_profile359)_ 7.34209893106176285e+05 -Plasma_alpha_thermal_velocity_at_point_360_______________________________ (vel_plasma_alpha_thermal_profile360)_ 7.32097819905248121e+05 -Plasma_alpha_thermal_velocity_at_point_361_______________________________ (vel_plasma_alpha_thermal_profile361)_ 7.29981270579949371e+05 -Plasma_alpha_thermal_velocity_at_point_362_______________________________ (vel_plasma_alpha_thermal_profile362)_ 7.27860302270553075e+05 -Plasma_alpha_thermal_velocity_at_point_363_______________________________ (vel_plasma_alpha_thermal_profile363)_ 7.25734973845056025e+05 -Plasma_alpha_thermal_velocity_at_point_364_______________________________ (vel_plasma_alpha_thermal_profile364)_ 7.23605345955649274e+05 -Plasma_alpha_thermal_velocity_at_point_365_______________________________ (vel_plasma_alpha_thermal_profile365)_ 7.21471481165449601e+05 -Plasma_alpha_thermal_velocity_at_point_366_______________________________ (vel_plasma_alpha_thermal_profile366)_ 7.19333443786297110e+05 -Plasma_alpha_thermal_velocity_at_point_367_______________________________ (vel_plasma_alpha_thermal_profile367)_ 7.17191300235492992e+05 -Plasma_alpha_thermal_velocity_at_point_368_______________________________ (vel_plasma_alpha_thermal_profile368)_ 7.15045118910642224e+05 -Plasma_alpha_thermal_velocity_at_point_369_______________________________ (vel_plasma_alpha_thermal_profile369)_ 7.12894970223311801e+05 -Plasma_alpha_thermal_velocity_at_point_370_______________________________ (vel_plasma_alpha_thermal_profile370)_ 7.10740926787833450e+05 -Plasma_alpha_thermal_velocity_at_point_371_______________________________ (vel_plasma_alpha_thermal_profile371)_ 7.08583063465791522e+05 -Plasma_alpha_thermal_velocity_at_point_372_______________________________ (vel_plasma_alpha_thermal_profile372)_ 7.06421457340810332e+05 -Plasma_alpha_thermal_velocity_at_point_373_______________________________ (vel_plasma_alpha_thermal_profile373)_ 7.04256187848827452e+05 -Plasma_alpha_thermal_velocity_at_point_374_______________________________ (vel_plasma_alpha_thermal_profile374)_ 7.02087336946403608e+05 -Plasma_alpha_thermal_velocity_at_point_375_______________________________ (vel_plasma_alpha_thermal_profile375)_ 6.99914988968621590e+05 -Plasma_alpha_thermal_velocity_at_point_376_______________________________ (vel_plasma_alpha_thermal_profile376)_ 6.97739230992094032e+05 -Plasma_alpha_thermal_velocity_at_point_377_______________________________ (vel_plasma_alpha_thermal_profile377)_ 6.95560152631051722e+05 -Plasma_alpha_thermal_velocity_at_point_378_______________________________ (vel_plasma_alpha_thermal_profile378)_ 6.93377846347731771e+05 -Plasma_alpha_thermal_velocity_at_point_379_______________________________ (vel_plasma_alpha_thermal_profile379)_ 6.91192407436686684e+05 -Plasma_alpha_thermal_velocity_at_point_380_______________________________ (vel_plasma_alpha_thermal_profile380)_ 6.89003934074035264e+05 -Plasma_alpha_thermal_velocity_at_point_381_______________________________ (vel_plasma_alpha_thermal_profile381)_ 6.86812527600166737e+05 -Plasma_alpha_thermal_velocity_at_point_382_______________________________ (vel_plasma_alpha_thermal_profile382)_ 6.84618292399831815e+05 -Plasma_alpha_thermal_velocity_at_point_383_______________________________ (vel_plasma_alpha_thermal_profile383)_ 6.82421336101644905e+05 -Plasma_alpha_thermal_velocity_at_point_384_______________________________ (vel_plasma_alpha_thermal_profile384)_ 6.80221769788817503e+05 -Plasma_alpha_thermal_velocity_at_point_385_______________________________ (vel_plasma_alpha_thermal_profile385)_ 6.78019707882890245e+05 -Plasma_alpha_thermal_velocity_at_point_386_______________________________ (vel_plasma_alpha_thermal_profile386)_ 6.75815268475525663e+05 -Plasma_alpha_thermal_velocity_at_point_387_______________________________ (vel_plasma_alpha_thermal_profile387)_ 6.73608573340918985e+05 -Plasma_alpha_thermal_velocity_at_point_388_______________________________ (vel_plasma_alpha_thermal_profile388)_ 6.71399748089623172e+05 -Plasma_alpha_thermal_velocity_at_point_389_______________________________ (vel_plasma_alpha_thermal_profile389)_ 6.69188922288102447e+05 -Plasma_alpha_thermal_velocity_at_point_390_______________________________ (vel_plasma_alpha_thermal_profile390)_ 6.66976229625486769e+05 -Plasma_alpha_thermal_velocity_at_point_391_______________________________ (vel_plasma_alpha_thermal_profile391)_ 6.64761807993515977e+05 -Plasma_alpha_thermal_velocity_at_point_392_______________________________ (vel_plasma_alpha_thermal_profile392)_ 6.62545799688467639e+05 -Plasma_alpha_thermal_velocity_at_point_393_______________________________ (vel_plasma_alpha_thermal_profile393)_ 6.60328351586799603e+05 -Plasma_alpha_thermal_velocity_at_point_394_______________________________ (vel_plasma_alpha_thermal_profile394)_ 6.58109615195310442e+05 -Plasma_alpha_thermal_velocity_at_point_395_______________________________ (vel_plasma_alpha_thermal_profile395)_ 6.55889746991181746e+05 -Plasma_alpha_thermal_velocity_at_point_396_______________________________ (vel_plasma_alpha_thermal_profile396)_ 6.53668908425266156e+05 -Plasma_alpha_thermal_velocity_at_point_397_______________________________ (vel_plasma_alpha_thermal_profile397)_ 6.51447266185572604e+05 -Plasma_alpha_thermal_velocity_at_point_398_______________________________ (vel_plasma_alpha_thermal_profile398)_ 6.49224992412066669e+05 -Plasma_alpha_thermal_velocity_at_point_399_______________________________ (vel_plasma_alpha_thermal_profile399)_ 6.47002264815309900e+05 -Plasma_alpha_thermal_velocity_at_point_400_______________________________ (vel_plasma_alpha_thermal_profile400)_ 6.44779266975123202e+05 -Plasma_alpha_thermal_velocity_at_point_401_______________________________ (vel_plasma_alpha_thermal_profile401)_ 6.42556188489715685e+05 -Plasma_alpha_thermal_velocity_at_point_402_______________________________ (vel_plasma_alpha_thermal_profile402)_ 6.40333225181949907e+05 -Plasma_alpha_thermal_velocity_at_point_403_______________________________ (vel_plasma_alpha_thermal_profile403)_ 6.38110579418809852e+05 -Plasma_alpha_thermal_velocity_at_point_404_______________________________ (vel_plasma_alpha_thermal_profile404)_ 6.35888460311391507e+05 -Plasma_alpha_thermal_velocity_at_point_405_______________________________ (vel_plasma_alpha_thermal_profile405)_ 6.33667083918384160e+05 -Plasma_alpha_thermal_velocity_at_point_406_______________________________ (vel_plasma_alpha_thermal_profile406)_ 6.31446673674274003e+05 -Plasma_alpha_thermal_velocity_at_point_407_______________________________ (vel_plasma_alpha_thermal_profile407)_ 6.29227460492704995e+05 -Plasma_alpha_thermal_velocity_at_point_408_______________________________ (vel_plasma_alpha_thermal_profile408)_ 6.27009683109748526e+05 -Plasma_alpha_thermal_velocity_at_point_409_______________________________ (vel_plasma_alpha_thermal_profile409)_ 6.24793588473306852e+05 -Plasma_alpha_thermal_velocity_at_point_410_______________________________ (vel_plasma_alpha_thermal_profile410)_ 6.22579432035432896e+05 -Plasma_alpha_thermal_velocity_at_point_411_______________________________ (vel_plasma_alpha_thermal_profile411)_ 6.20367478017383721e+05 -Plasma_alpha_thermal_velocity_at_point_412_______________________________ (vel_plasma_alpha_thermal_profile412)_ 6.18157999920994160e+05 -Plasma_alpha_thermal_velocity_at_point_413_______________________________ (vel_plasma_alpha_thermal_profile413)_ 6.15951280725405901e+05 -Plasma_alpha_thermal_velocity_at_point_414_______________________________ (vel_plasma_alpha_thermal_profile414)_ 6.13747613427627599e+05 -Plasma_alpha_thermal_velocity_at_point_415_______________________________ (vel_plasma_alpha_thermal_profile415)_ 6.11547301388812484e+05 -Plasma_alpha_thermal_velocity_at_point_416_______________________________ (vel_plasma_alpha_thermal_profile416)_ 6.09350658825004939e+05 -Plasma_alpha_thermal_velocity_at_point_417_______________________________ (vel_plasma_alpha_thermal_profile417)_ 6.07158011265004287e+05 -Plasma_alpha_thermal_velocity_at_point_418_______________________________ (vel_plasma_alpha_thermal_profile418)_ 6.04969695982503123e+05 -Plasma_alpha_thermal_velocity_at_point_419_______________________________ (vel_plasma_alpha_thermal_profile419)_ 6.02786062575374031e+05 -Plasma_alpha_thermal_velocity_at_point_420_______________________________ (vel_plasma_alpha_thermal_profile420)_ 6.00607473579253536e+05 -Plasma_alpha_thermal_velocity_at_point_421_______________________________ (vel_plasma_alpha_thermal_profile421)_ 5.98434304899181472e+05 -Plasma_alpha_thermal_velocity_at_point_422_______________________________ (vel_plasma_alpha_thermal_profile422)_ 5.96266946522845421e+05 -Plasma_alpha_thermal_velocity_at_point_423_______________________________ (vel_plasma_alpha_thermal_profile423)_ 5.94105803287083982e+05 -Plasma_alpha_thermal_velocity_at_point_424_______________________________ (vel_plasma_alpha_thermal_profile424)_ 5.91951295293978765e+05 -Plasma_alpha_thermal_velocity_at_point_425_______________________________ (vel_plasma_alpha_thermal_profile425)_ 5.89803859024431673e+05 -Plasma_alpha_thermal_velocity_at_point_426_______________________________ (vel_plasma_alpha_thermal_profile426)_ 5.87663947825156269e+05 -Plasma_alpha_thermal_velocity_at_point_427_______________________________ (vel_plasma_alpha_thermal_profile427)_ 5.85532032877111807e+05 -Plasma_alpha_thermal_velocity_at_point_428_______________________________ (vel_plasma_alpha_thermal_profile428)_ 5.83408604246578761e+05 -Plasma_alpha_thermal_velocity_at_point_429_______________________________ (vel_plasma_alpha_thermal_profile429)_ 5.81294171591049642e+05 -Plasma_alpha_thermal_velocity_at_point_430_______________________________ (vel_plasma_alpha_thermal_profile430)_ 5.79189265466409735e+05 -Plasma_alpha_thermal_velocity_at_point_431_______________________________ (vel_plasma_alpha_thermal_profile431)_ 5.77094438368034549e+05 -Plasma_alpha_thermal_velocity_at_point_432_______________________________ (vel_plasma_alpha_thermal_profile432)_ 5.75010265801592381e+05 -Plasma_alpha_thermal_velocity_at_point_433_______________________________ (vel_plasma_alpha_thermal_profile433)_ 5.72937347940478823e+05 -Plasma_alpha_thermal_velocity_at_point_434_______________________________ (vel_plasma_alpha_thermal_profile434)_ 5.70876310764827766e+05 -Plasma_alpha_thermal_velocity_at_point_435_______________________________ (vel_plasma_alpha_thermal_profile435)_ 5.68827807693606126e+05 -Plasma_alpha_thermal_velocity_at_point_436_______________________________ (vel_plasma_alpha_thermal_profile436)_ 5.66792521412595175e+05 -Plasma_alpha_thermal_velocity_at_point_437_______________________________ (vel_plasma_alpha_thermal_profile437)_ 5.64771165494920569e+05 -Plasma_alpha_thermal_velocity_at_point_438_______________________________ (vel_plasma_alpha_thermal_profile438)_ 5.62764486711057951e+05 -Plasma_alpha_thermal_velocity_at_point_439_______________________________ (vel_plasma_alpha_thermal_profile439)_ 5.60773266966696479e+05 -Plasma_alpha_thermal_velocity_at_point_440_______________________________ (vel_plasma_alpha_thermal_profile440)_ 5.58798326034932164e+05 -Plasma_alpha_thermal_velocity_at_point_441_______________________________ (vel_plasma_alpha_thermal_profile441)_ 5.56840523997424752e+05 -Plasma_alpha_thermal_velocity_at_point_442_______________________________ (vel_plasma_alpha_thermal_profile442)_ 5.54900764606493060e+05 -Plasma_alpha_thermal_velocity_at_point_443_______________________________ (vel_plasma_alpha_thermal_profile443)_ 5.52979998413840425e+05 -Plasma_alpha_thermal_velocity_at_point_444_______________________________ (vel_plasma_alpha_thermal_profile444)_ 5.51079226542635704e+05 -Plasma_alpha_thermal_velocity_at_point_445_______________________________ (vel_plasma_alpha_thermal_profile445)_ 5.49199505104127340e+05 -Plasma_alpha_thermal_velocity_at_point_446_______________________________ (vel_plasma_alpha_thermal_profile446)_ 5.47341949967113207e+05 -Plasma_alpha_thermal_velocity_at_point_447_______________________________ (vel_plasma_alpha_thermal_profile447)_ 5.45507742146419012e+05 -Plasma_alpha_thermal_velocity_at_point_448_______________________________ (vel_plasma_alpha_thermal_profile448)_ 5.43698134210929042e+05 -Plasma_alpha_thermal_velocity_at_point_449_______________________________ (vel_plasma_alpha_thermal_profile449)_ 5.41914457503756275e+05 -Plasma_alpha_thermal_velocity_at_point_450_______________________________ (vel_plasma_alpha_thermal_profile450)_ 5.40158130384173244e+05 -Plasma_alpha_thermal_velocity_at_point_451_______________________________ (vel_plasma_alpha_thermal_profile451)_ 5.38430668167126714e+05 -Plasma_alpha_thermal_velocity_at_point_452_______________________________ (vel_plasma_alpha_thermal_profile452)_ 5.36733694780847873e+05 -Plasma_alpha_thermal_velocity_at_point_453_______________________________ (vel_plasma_alpha_thermal_profile453)_ 5.35068956149529433e+05 -Plasma_alpha_thermal_velocity_at_point_454_______________________________ (vel_plasma_alpha_thermal_profile454)_ 5.33438337023647618e+05 -Plasma_alpha_thermal_velocity_at_point_455_______________________________ (vel_plasma_alpha_thermal_profile455)_ 5.31843880876696436e+05 -Plasma_alpha_thermal_velocity_at_point_456_______________________________ (vel_plasma_alpha_thermal_profile456)_ 5.30287814311411697e+05 -Plasma_alpha_thermal_velocity_at_point_457_______________________________ (vel_plasma_alpha_thermal_profile457)_ 5.28772577996580396e+05 -Plasma_alpha_thermal_velocity_at_point_458_______________________________ (vel_plasma_alpha_thermal_profile458)_ 5.27300865086060483e+05 -Plasma_alpha_thermal_velocity_at_point_459_______________________________ (vel_plasma_alpha_thermal_profile459)_ 5.25875671292808489e+05 -Plasma_alpha_thermal_velocity_at_point_460_______________________________ (vel_plasma_alpha_thermal_profile460)_ 5.24500360417788848e+05 -Plasma_alpha_thermal_velocity_at_point_461_______________________________ (vel_plasma_alpha_thermal_profile461)_ 5.23178752392333583e+05 -Plasma_alpha_thermal_velocity_at_point_462_______________________________ (vel_plasma_alpha_thermal_profile462)_ 5.21915245582326897e+05 -Plasma_alpha_thermal_velocity_at_point_463_______________________________ (vel_plasma_alpha_thermal_profile463)_ 5.20714991815914284e+05 -Plasma_alpha_thermal_velocity_at_point_464_______________________________ (vel_plasma_alpha_thermal_profile464)_ 5.19584158084984461e+05 -Plasma_alpha_thermal_velocity_at_point_465_______________________________ (vel_plasma_alpha_thermal_profile465)_ 5.18530339628311223e+05 -Plasma_alpha_thermal_velocity_at_point_466_______________________________ (vel_plasma_alpha_thermal_profile466)_ 5.17563259815094003e+05 -Plasma_alpha_thermal_velocity_at_point_467_______________________________ (vel_plasma_alpha_thermal_profile467)_ 5.16696079478398606e+05 -Plasma_alpha_thermal_velocity_at_point_468_______________________________ (vel_plasma_alpha_thermal_profile468)_ 5.15948239904165734e+05 -Plasma_alpha_thermal_velocity_at_point_469_______________________________ (vel_plasma_alpha_thermal_profile469)_ 5.15353471152008395e+05 +Volume_averaged_alpha_thermal_velocity_(m/s)_____________________________ (vel_plasma_alpha_thermal_vol_avg)_ 7.81809220324956696e+05 +Plasma_alpha_thermal_velocity_at_point_0_________________________________ (vel_plasma_alpha_thermal_profile0)_ 1.12562536646250030e+06 +Plasma_alpha_thermal_velocity_at_point_1_________________________________ (vel_plasma_alpha_thermal_profile1)_ 1.12562244550250703e+06 +Plasma_alpha_thermal_velocity_at_point_2_________________________________ (vel_plasma_alpha_thermal_profile2)_ 1.12561368261250644e+06 +Plasma_alpha_thermal_velocity_at_point_3_________________________________ (vel_plasma_alpha_thermal_profile3)_ 1.12559907777573355e+06 +Plasma_alpha_thermal_velocity_at_point_4_________________________________ (vel_plasma_alpha_thermal_profile4)_ 1.12557863095094659e+06 +Plasma_alpha_thermal_velocity_at_point_5_________________________________ (vel_plasma_alpha_thermal_profile5)_ 1.12555234204139770e+06 +Plasma_alpha_thermal_velocity_at_point_6_________________________________ (vel_plasma_alpha_thermal_profile6)_ 1.12552021095687803e+06 +Plasma_alpha_thermal_velocity_at_point_7_________________________________ (vel_plasma_alpha_thermal_profile7)_ 1.12548223763587954e+06 +Plasma_alpha_thermal_velocity_at_point_8_________________________________ (vel_plasma_alpha_thermal_profile8)_ 1.12543842191260564e+06 +Plasma_alpha_thermal_velocity_at_point_9_________________________________ (vel_plasma_alpha_thermal_profile9)_ 1.12538876363664051e+06 +Plasma_alpha_thermal_velocity_at_point_10________________________________ (vel_plasma_alpha_thermal_profile10)_ 1.12533326267737849e+06 +Plasma_alpha_thermal_velocity_at_point_11________________________________ (vel_plasma_alpha_thermal_profile11)_ 1.12527191880874662e+06 +Plasma_alpha_thermal_velocity_at_point_12________________________________ (vel_plasma_alpha_thermal_profile12)_ 1.12520473184661963e+06 +Plasma_alpha_thermal_velocity_at_point_13________________________________ (vel_plasma_alpha_thermal_profile13)_ 1.12513170156900864e+06 +Plasma_alpha_thermal_velocity_at_point_14________________________________ (vel_plasma_alpha_thermal_profile14)_ 1.12505282770716585e+06 +Plasma_alpha_thermal_velocity_at_point_15________________________________ (vel_plasma_alpha_thermal_profile15)_ 1.12496811003425601e+06 +Plasma_alpha_thermal_velocity_at_point_16________________________________ (vel_plasma_alpha_thermal_profile16)_ 1.12487754823230021e+06 +Plasma_alpha_thermal_velocity_at_point_17________________________________ (vel_plasma_alpha_thermal_profile17)_ 1.12478114202519460e+06 +Plasma_alpha_thermal_velocity_at_point_18________________________________ (vel_plasma_alpha_thermal_profile18)_ 1.12467889107224764e+06 +Plasma_alpha_thermal_velocity_at_point_19________________________________ (vel_plasma_alpha_thermal_profile19)_ 1.12457079503024556e+06 +Plasma_alpha_thermal_velocity_at_point_20________________________________ (vel_plasma_alpha_thermal_profile20)_ 1.12445685356674390e+06 +Plasma_alpha_thermal_velocity_at_point_21________________________________ (vel_plasma_alpha_thermal_profile21)_ 1.12433706627130834e+06 +Plasma_alpha_thermal_velocity_at_point_22________________________________ (vel_plasma_alpha_thermal_profile22)_ 1.12421143274864811e+06 +Plasma_alpha_thermal_velocity_at_point_23________________________________ (vel_plasma_alpha_thermal_profile23)_ 1.12407995257865894e+06 +Plasma_alpha_thermal_velocity_at_point_24________________________________ (vel_plasma_alpha_thermal_profile24)_ 1.12394262532526441e+06 +Plasma_alpha_thermal_velocity_at_point_25________________________________ (vel_plasma_alpha_thermal_profile25)_ 1.12379945053194533e+06 +Plasma_alpha_thermal_velocity_at_point_26________________________________ (vel_plasma_alpha_thermal_profile26)_ 1.12365042771726288e+06 +Plasma_alpha_thermal_velocity_at_point_27________________________________ (vel_plasma_alpha_thermal_profile27)_ 1.12349555637925840e+06 +Plasma_alpha_thermal_velocity_at_point_28________________________________ (vel_plasma_alpha_thermal_profile28)_ 1.12333483599541313e+06 +Plasma_alpha_thermal_velocity_at_point_29________________________________ (vel_plasma_alpha_thermal_profile29)_ 1.12316826604037639e+06 +Plasma_alpha_thermal_velocity_at_point_30________________________________ (vel_plasma_alpha_thermal_profile30)_ 1.12299584598149150e+06 +Plasma_alpha_thermal_velocity_at_point_31________________________________ (vel_plasma_alpha_thermal_profile31)_ 1.12281757518545329e+06 +Plasma_alpha_thermal_velocity_at_point_32________________________________ (vel_plasma_alpha_thermal_profile32)_ 1.12263345310929324e+06 +Plasma_alpha_thermal_velocity_at_point_33________________________________ (vel_plasma_alpha_thermal_profile33)_ 1.12244347909151507e+06 +Plasma_alpha_thermal_velocity_at_point_34________________________________ (vel_plasma_alpha_thermal_profile34)_ 1.12224765256090835e+06 +Plasma_alpha_thermal_velocity_at_point_35________________________________ (vel_plasma_alpha_thermal_profile35)_ 1.12204597278759372e+06 +Plasma_alpha_thermal_velocity_at_point_36________________________________ (vel_plasma_alpha_thermal_profile36)_ 1.12183843917191867e+06 +Plasma_alpha_thermal_velocity_at_point_37________________________________ (vel_plasma_alpha_thermal_profile37)_ 1.12162505097320955e+06 +Plasma_alpha_thermal_velocity_at_point_38________________________________ (vel_plasma_alpha_thermal_profile38)_ 1.12140580749200890e+06 +Plasma_alpha_thermal_velocity_at_point_39________________________________ (vel_plasma_alpha_thermal_profile39)_ 1.12118070799888182e+06 +Plasma_alpha_thermal_velocity_at_point_40________________________________ (vel_plasma_alpha_thermal_profile40)_ 1.12094975175215025e+06 +Plasma_alpha_thermal_velocity_at_point_41________________________________ (vel_plasma_alpha_thermal_profile41)_ 1.12071293796222936e+06 +Plasma_alpha_thermal_velocity_at_point_42________________________________ (vel_plasma_alpha_thermal_profile42)_ 1.12047026584942103e+06 +Plasma_alpha_thermal_velocity_at_point_43________________________________ (vel_plasma_alpha_thermal_profile43)_ 1.12022173462606966e+06 +Plasma_alpha_thermal_velocity_at_point_44________________________________ (vel_plasma_alpha_thermal_profile44)_ 1.11996734341632691e+06 +Plasma_alpha_thermal_velocity_at_point_45________________________________ (vel_plasma_alpha_thermal_profile45)_ 1.11970709144314867e+06 +Plasma_alpha_thermal_velocity_at_point_46________________________________ (vel_plasma_alpha_thermal_profile46)_ 1.11944097776987427e+06 +Plasma_alpha_thermal_velocity_at_point_47________________________________ (vel_plasma_alpha_thermal_profile47)_ 1.11916900154963066e+06 +Plasma_alpha_thermal_velocity_at_point_48________________________________ (vel_plasma_alpha_thermal_profile48)_ 1.11889116187825031e+06 +Plasma_alpha_thermal_velocity_at_point_49________________________________ (vel_plasma_alpha_thermal_profile49)_ 1.11860745780753298e+06 +Plasma_alpha_thermal_velocity_at_point_50________________________________ (vel_plasma_alpha_thermal_profile50)_ 1.11831788841652335e+06 +Plasma_alpha_thermal_velocity_at_point_51________________________________ (vel_plasma_alpha_thermal_profile51)_ 1.11802245273563312e+06 +Plasma_alpha_thermal_velocity_at_point_52________________________________ (vel_plasma_alpha_thermal_profile52)_ 1.11772114978670306e+06 +Plasma_alpha_thermal_velocity_at_point_53________________________________ (vel_plasma_alpha_thermal_profile53)_ 1.11741397855614801e+06 +Plasma_alpha_thermal_velocity_at_point_54________________________________ (vel_plasma_alpha_thermal_profile54)_ 1.11710093805291830e+06 +Plasma_alpha_thermal_velocity_at_point_55________________________________ (vel_plasma_alpha_thermal_profile55)_ 1.11678202720125904e+06 +Plasma_alpha_thermal_velocity_at_point_56________________________________ (vel_plasma_alpha_thermal_profile56)_ 1.11645724497012747e+06 +Plasma_alpha_thermal_velocity_at_point_57________________________________ (vel_plasma_alpha_thermal_profile57)_ 1.11612659027039306e+06 +Plasma_alpha_thermal_velocity_at_point_58________________________________ (vel_plasma_alpha_thermal_profile58)_ 1.11579006200835155e+06 +Plasma_alpha_thermal_velocity_at_point_59________________________________ (vel_plasma_alpha_thermal_profile59)_ 1.11544765906329616e+06 +Plasma_alpha_thermal_velocity_at_point_60________________________________ (vel_plasma_alpha_thermal_profile60)_ 1.11509938030531467e+06 +Plasma_alpha_thermal_velocity_at_point_61________________________________ (vel_plasma_alpha_thermal_profile61)_ 1.11474522459521727e+06 +Plasma_alpha_thermal_velocity_at_point_62________________________________ (vel_plasma_alpha_thermal_profile62)_ 1.11438519073968963e+06 +Plasma_alpha_thermal_velocity_at_point_63________________________________ (vel_plasma_alpha_thermal_profile63)_ 1.11401927755384403e+06 +Plasma_alpha_thermal_velocity_at_point_64________________________________ (vel_plasma_alpha_thermal_profile64)_ 1.11364748381189024e+06 +Plasma_alpha_thermal_velocity_at_point_65________________________________ (vel_plasma_alpha_thermal_profile65)_ 1.11326980831870763e+06 +Plasma_alpha_thermal_velocity_at_point_66________________________________ (vel_plasma_alpha_thermal_profile66)_ 1.11288624982017209e+06 +Plasma_alpha_thermal_velocity_at_point_67________________________________ (vel_plasma_alpha_thermal_profile67)_ 1.11249680702092848e+06 +Plasma_alpha_thermal_velocity_at_point_68________________________________ (vel_plasma_alpha_thermal_profile68)_ 1.11210147864705813e+06 +Plasma_alpha_thermal_velocity_at_point_69________________________________ (vel_plasma_alpha_thermal_profile69)_ 1.11170026342360862e+06 +Plasma_alpha_thermal_velocity_at_point_70________________________________ (vel_plasma_alpha_thermal_profile70)_ 1.11129315997575736e+06 +Plasma_alpha_thermal_velocity_at_point_71________________________________ (vel_plasma_alpha_thermal_profile71)_ 1.11088016700820299e+06 +Plasma_alpha_thermal_velocity_at_point_72________________________________ (vel_plasma_alpha_thermal_profile72)_ 1.11046128312553000e+06 +Plasma_alpha_thermal_velocity_at_point_73________________________________ (vel_plasma_alpha_thermal_profile73)_ 1.11003650697577326e+06 +Plasma_alpha_thermal_velocity_at_point_74________________________________ (vel_plasma_alpha_thermal_profile74)_ 1.10960583714251756e+06 +Plasma_alpha_thermal_velocity_at_point_75________________________________ (vel_plasma_alpha_thermal_profile75)_ 1.10916927221666835e+06 +Plasma_alpha_thermal_velocity_at_point_76________________________________ (vel_plasma_alpha_thermal_profile76)_ 1.10872681076039141e+06 +Plasma_alpha_thermal_velocity_at_point_77________________________________ (vel_plasma_alpha_thermal_profile77)_ 1.10827845132498699e+06 +Plasma_alpha_thermal_velocity_at_point_78________________________________ (vel_plasma_alpha_thermal_profile78)_ 1.10782419242376951e+06 +Plasma_alpha_thermal_velocity_at_point_79________________________________ (vel_plasma_alpha_thermal_profile79)_ 1.10736403256795532e+06 +Plasma_alpha_thermal_velocity_at_point_80________________________________ (vel_plasma_alpha_thermal_profile80)_ 1.10689797028911440e+06 +Plasma_alpha_thermal_velocity_at_point_81________________________________ (vel_plasma_alpha_thermal_profile81)_ 1.10642600399033120e+06 +Plasma_alpha_thermal_velocity_at_point_82________________________________ (vel_plasma_alpha_thermal_profile82)_ 1.10594813216689532e+06 +Plasma_alpha_thermal_velocity_at_point_83________________________________ (vel_plasma_alpha_thermal_profile83)_ 1.10546435327102360e+06 +Plasma_alpha_thermal_velocity_at_point_84________________________________ (vel_plasma_alpha_thermal_profile84)_ 1.10497466568459431e+06 +Plasma_alpha_thermal_velocity_at_point_85________________________________ (vel_plasma_alpha_thermal_profile85)_ 1.10447906780924834e+06 +Plasma_alpha_thermal_velocity_at_point_86________________________________ (vel_plasma_alpha_thermal_profile86)_ 1.10397755804827204e+06 +Plasma_alpha_thermal_velocity_at_point_87________________________________ (vel_plasma_alpha_thermal_profile87)_ 1.10347013476582314e+06 +Plasma_alpha_thermal_velocity_at_point_88________________________________ (vel_plasma_alpha_thermal_profile88)_ 1.10295679627318378e+06 +Plasma_alpha_thermal_velocity_at_point_89________________________________ (vel_plasma_alpha_thermal_profile89)_ 1.10243754091905872e+06 +Plasma_alpha_thermal_velocity_at_point_90________________________________ (vel_plasma_alpha_thermal_profile90)_ 1.10191236701713176e+06 +Plasma_alpha_thermal_velocity_at_point_91________________________________ (vel_plasma_alpha_thermal_profile91)_ 1.10138127285042102e+06 +Plasma_alpha_thermal_velocity_at_point_92________________________________ (vel_plasma_alpha_thermal_profile92)_ 1.10084425667111459e+06 +Plasma_alpha_thermal_velocity_at_point_93________________________________ (vel_plasma_alpha_thermal_profile93)_ 1.10030131677748519e+06 +Plasma_alpha_thermal_velocity_at_point_94________________________________ (vel_plasma_alpha_thermal_profile94)_ 1.09975245136874053e+06 +Plasma_alpha_thermal_velocity_at_point_95________________________________ (vel_plasma_alpha_thermal_profile95)_ 1.09919765869900235e+06 +Plasma_alpha_thermal_velocity_at_point_96________________________________ (vel_plasma_alpha_thermal_profile96)_ 1.09863693693657382e+06 +Plasma_alpha_thermal_velocity_at_point_97________________________________ (vel_plasma_alpha_thermal_profile97)_ 1.09807028427721187e+06 +Plasma_alpha_thermal_velocity_at_point_98________________________________ (vel_plasma_alpha_thermal_profile98)_ 1.09749769889863976e+06 +Plasma_alpha_thermal_velocity_at_point_99________________________________ (vel_plasma_alpha_thermal_profile99)_ 1.09691917892856523e+06 +Plasma_alpha_thermal_velocity_at_point_100_______________________________ (vel_plasma_alpha_thermal_profile100)_ 1.09633472253091144e+06 +Plasma_alpha_thermal_velocity_at_point_101_______________________________ (vel_plasma_alpha_thermal_profile101)_ 1.09574432778287772e+06 +Plasma_alpha_thermal_velocity_at_point_102_______________________________ (vel_plasma_alpha_thermal_profile102)_ 1.09514799277938413e+06 +Plasma_alpha_thermal_velocity_at_point_103_______________________________ (vel_plasma_alpha_thermal_profile103)_ 1.09454571565124788e+06 +Plasma_alpha_thermal_velocity_at_point_104_______________________________ (vel_plasma_alpha_thermal_profile104)_ 1.09393749441011669e+06 +Plasma_alpha_thermal_velocity_at_point_105_______________________________ (vel_plasma_alpha_thermal_profile105)_ 1.09332332711230987e+06 +Plasma_alpha_thermal_velocity_at_point_106_______________________________ (vel_plasma_alpha_thermal_profile106)_ 1.09270321179947932e+06 +Plasma_alpha_thermal_velocity_at_point_107_______________________________ (vel_plasma_alpha_thermal_profile107)_ 1.09207714647562173e+06 +Plasma_alpha_thermal_velocity_at_point_108_______________________________ (vel_plasma_alpha_thermal_profile108)_ 1.09144512913428759e+06 +Plasma_alpha_thermal_velocity_at_point_109_______________________________ (vel_plasma_alpha_thermal_profile109)_ 1.09080715773557359e+06 +Plasma_alpha_thermal_velocity_at_point_110_______________________________ (vel_plasma_alpha_thermal_profile110)_ 1.09016323027456109e+06 +Plasma_alpha_thermal_velocity_at_point_111_______________________________ (vel_plasma_alpha_thermal_profile111)_ 1.08951334468056727e+06 +Plasma_alpha_thermal_velocity_at_point_112_______________________________ (vel_plasma_alpha_thermal_profile112)_ 1.08885749888098380e+06 +Plasma_alpha_thermal_velocity_at_point_113_______________________________ (vel_plasma_alpha_thermal_profile113)_ 1.08819569077364961e+06 +Plasma_alpha_thermal_velocity_at_point_114_______________________________ (vel_plasma_alpha_thermal_profile114)_ 1.08752791827710951e+06 +Plasma_alpha_thermal_velocity_at_point_115_______________________________ (vel_plasma_alpha_thermal_profile115)_ 1.08685417922957474e+06 +Plasma_alpha_thermal_velocity_at_point_116_______________________________ (vel_plasma_alpha_thermal_profile116)_ 1.08617447154932143e+06 +Plasma_alpha_thermal_velocity_at_point_117_______________________________ (vel_plasma_alpha_thermal_profile117)_ 1.08548879303259193e+06 +Plasma_alpha_thermal_velocity_at_point_118_______________________________ (vel_plasma_alpha_thermal_profile118)_ 1.08479714154625637e+06 +Plasma_alpha_thermal_velocity_at_point_119_______________________________ (vel_plasma_alpha_thermal_profile119)_ 1.08409951488525164e+06 +Plasma_alpha_thermal_velocity_at_point_120_______________________________ (vel_plasma_alpha_thermal_profile120)_ 1.08339591085512238e+06 +Plasma_alpha_thermal_velocity_at_point_121_______________________________ (vel_plasma_alpha_thermal_profile121)_ 1.08268632723506982e+06 +Plasma_alpha_thermal_velocity_at_point_122_______________________________ (vel_plasma_alpha_thermal_profile122)_ 1.08197076177313155e+06 +Plasma_alpha_thermal_velocity_at_point_123_______________________________ (vel_plasma_alpha_thermal_profile123)_ 1.08124921226439672e+06 +Plasma_alpha_thermal_velocity_at_point_124_______________________________ (vel_plasma_alpha_thermal_profile124)_ 1.08052167640790227e+06 +Plasma_alpha_thermal_velocity_at_point_125_______________________________ (vel_plasma_alpha_thermal_profile125)_ 1.07978815192631725e+06 +Plasma_alpha_thermal_velocity_at_point_126_______________________________ (vel_plasma_alpha_thermal_profile126)_ 1.07904863656127173e+06 +Plasma_alpha_thermal_velocity_at_point_127_______________________________ (vel_plasma_alpha_thermal_profile127)_ 1.07830312797150598e+06 +Plasma_alpha_thermal_velocity_at_point_128_______________________________ (vel_plasma_alpha_thermal_profile128)_ 1.07755162382505718e+06 +Plasma_alpha_thermal_velocity_at_point_129_______________________________ (vel_plasma_alpha_thermal_profile129)_ 1.07679412179916119e+06 +Plasma_alpha_thermal_velocity_at_point_130_______________________________ (vel_plasma_alpha_thermal_profile130)_ 1.07603061955697252e+06 +Plasma_alpha_thermal_velocity_at_point_131_______________________________ (vel_plasma_alpha_thermal_profile131)_ 1.07526111470098537e+06 +Plasma_alpha_thermal_velocity_at_point_132_______________________________ (vel_plasma_alpha_thermal_profile132)_ 1.07448560487483628e+06 +Plasma_alpha_thermal_velocity_at_point_133_______________________________ (vel_plasma_alpha_thermal_profile133)_ 1.07370408765644557e+06 +Plasma_alpha_thermal_velocity_at_point_134_______________________________ (vel_plasma_alpha_thermal_profile134)_ 1.07291656064599729e+06 +Plasma_alpha_thermal_velocity_at_point_135_______________________________ (vel_plasma_alpha_thermal_profile135)_ 1.07212302142865607e+06 +Plasma_alpha_thermal_velocity_at_point_136_______________________________ (vel_plasma_alpha_thermal_profile136)_ 1.07132346755575016e+06 +Plasma_alpha_thermal_velocity_at_point_137_______________________________ (vel_plasma_alpha_thermal_profile137)_ 1.07051789655848849e+06 +Plasma_alpha_thermal_velocity_at_point_138_______________________________ (vel_plasma_alpha_thermal_profile138)_ 1.06970630602703569e+06 +Plasma_alpha_thermal_velocity_at_point_139_______________________________ (vel_plasma_alpha_thermal_profile139)_ 1.06888869341456005e+06 +Plasma_alpha_thermal_velocity_at_point_140_______________________________ (vel_plasma_alpha_thermal_profile140)_ 1.06806505626545707e+06 +Plasma_alpha_thermal_velocity_at_point_141_______________________________ (vel_plasma_alpha_thermal_profile141)_ 1.06723539207064104e+06 +Plasma_alpha_thermal_velocity_at_point_142_______________________________ (vel_plasma_alpha_thermal_profile142)_ 1.06639969832333899e+06 +Plasma_alpha_thermal_velocity_at_point_143_______________________________ (vel_plasma_alpha_thermal_profile143)_ 1.06555797247213568e+06 +Plasma_alpha_thermal_velocity_at_point_144_______________________________ (vel_plasma_alpha_thermal_profile144)_ 1.06471021200031438e+06 +Plasma_alpha_thermal_velocity_at_point_145_______________________________ (vel_plasma_alpha_thermal_profile145)_ 1.06385641432736861e+06 +Plasma_alpha_thermal_velocity_at_point_146_______________________________ (vel_plasma_alpha_thermal_profile146)_ 1.06299657688369602e+06 +Plasma_alpha_thermal_velocity_at_point_147_______________________________ (vel_plasma_alpha_thermal_profile147)_ 1.06213069711049669e+06 +Plasma_alpha_thermal_velocity_at_point_148_______________________________ (vel_plasma_alpha_thermal_profile148)_ 1.06125877241736068e+06 +Plasma_alpha_thermal_velocity_at_point_149_______________________________ (vel_plasma_alpha_thermal_profile149)_ 1.06038080020081182e+06 +Plasma_alpha_thermal_velocity_at_point_150_______________________________ (vel_plasma_alpha_thermal_profile150)_ 1.05949677782997768e+06 +Plasma_alpha_thermal_velocity_at_point_151_______________________________ (vel_plasma_alpha_thermal_profile151)_ 1.05860670269816858e+06 +Plasma_alpha_thermal_velocity_at_point_152_______________________________ (vel_plasma_alpha_thermal_profile152)_ 1.05771057215207582e+06 +Plasma_alpha_thermal_velocity_at_point_153_______________________________ (vel_plasma_alpha_thermal_profile153)_ 1.05680838356695767e+06 +Plasma_alpha_thermal_velocity_at_point_154_______________________________ (vel_plasma_alpha_thermal_profile154)_ 1.05590013428518525e+06 +Plasma_alpha_thermal_velocity_at_point_155_______________________________ (vel_plasma_alpha_thermal_profile155)_ 1.05498582163959555e+06 +Plasma_alpha_thermal_velocity_at_point_156_______________________________ (vel_plasma_alpha_thermal_profile156)_ 1.05406544294382934e+06 +Plasma_alpha_thermal_velocity_at_point_157_______________________________ (vel_plasma_alpha_thermal_profile157)_ 1.05313899551104358e+06 +Plasma_alpha_thermal_velocity_at_point_158_______________________________ (vel_plasma_alpha_thermal_profile158)_ 1.05220647665375401e+06 +Plasma_alpha_thermal_velocity_at_point_159_______________________________ (vel_plasma_alpha_thermal_profile159)_ 1.05126788368842262e+06 +Plasma_alpha_thermal_velocity_at_point_160_______________________________ (vel_plasma_alpha_thermal_profile160)_ 1.05032321386406966e+06 +Plasma_alpha_thermal_velocity_at_point_161_______________________________ (vel_plasma_alpha_thermal_profile161)_ 1.04937246447591716e+06 +Plasma_alpha_thermal_velocity_at_point_162_______________________________ (vel_plasma_alpha_thermal_profile162)_ 1.04841563280357723e+06 +Plasma_alpha_thermal_velocity_at_point_163_______________________________ (vel_plasma_alpha_thermal_profile163)_ 1.04745271608700778e+06 +Plasma_alpha_thermal_velocity_at_point_164_______________________________ (vel_plasma_alpha_thermal_profile164)_ 1.04648371160721791e+06 +Plasma_alpha_thermal_velocity_at_point_165_______________________________ (vel_plasma_alpha_thermal_profile165)_ 1.04550861659563286e+06 +Plasma_alpha_thermal_velocity_at_point_166_______________________________ (vel_plasma_alpha_thermal_profile166)_ 1.04452742829579464e+06 +Plasma_alpha_thermal_velocity_at_point_167_______________________________ (vel_plasma_alpha_thermal_profile167)_ 1.04354014393935399e+06 +Plasma_alpha_thermal_velocity_at_point_168_______________________________ (vel_plasma_alpha_thermal_profile168)_ 1.04254676075542357e+06 +Plasma_alpha_thermal_velocity_at_point_169_______________________________ (vel_plasma_alpha_thermal_profile169)_ 1.04154727595124301e+06 +Plasma_alpha_thermal_velocity_at_point_170_______________________________ (vel_plasma_alpha_thermal_profile170)_ 1.04054168677424185e+06 +Plasma_alpha_thermal_velocity_at_point_171_______________________________ (vel_plasma_alpha_thermal_profile171)_ 1.03952999038728816e+06 +Plasma_alpha_thermal_velocity_at_point_172_______________________________ (vel_plasma_alpha_thermal_profile172)_ 1.03851218404586229e+06 +Plasma_alpha_thermal_velocity_at_point_173_______________________________ (vel_plasma_alpha_thermal_profile173)_ 1.03748826489156845e+06 +Plasma_alpha_thermal_velocity_at_point_174_______________________________ (vel_plasma_alpha_thermal_profile174)_ 1.03645823018245911e+06 +Plasma_alpha_thermal_velocity_at_point_175_______________________________ (vel_plasma_alpha_thermal_profile175)_ 1.03542207705252839e+06 +Plasma_alpha_thermal_velocity_at_point_176_______________________________ (vel_plasma_alpha_thermal_profile176)_ 1.03437980272314884e+06 +Plasma_alpha_thermal_velocity_at_point_177_______________________________ (vel_plasma_alpha_thermal_profile177)_ 1.03333140437298419e+06 +Plasma_alpha_thermal_velocity_at_point_178_______________________________ (vel_plasma_alpha_thermal_profile178)_ 1.03227687917143852e+06 +Plasma_alpha_thermal_velocity_at_point_179_______________________________ (vel_plasma_alpha_thermal_profile179)_ 1.03121622430746921e+06 +Plasma_alpha_thermal_velocity_at_point_180_______________________________ (vel_plasma_alpha_thermal_profile180)_ 1.03014943695561856e+06 +Plasma_alpha_thermal_velocity_at_point_181_______________________________ (vel_plasma_alpha_thermal_profile181)_ 1.02907651428061840e+06 +Plasma_alpha_thermal_velocity_at_point_182_______________________________ (vel_plasma_alpha_thermal_profile182)_ 1.02799745347114385e+06 +Plasma_alpha_thermal_velocity_at_point_183_______________________________ (vel_plasma_alpha_thermal_profile183)_ 1.02691225169118575e+06 +Plasma_alpha_thermal_velocity_at_point_184_______________________________ (vel_plasma_alpha_thermal_profile184)_ 1.02582090610406920e+06 +Plasma_alpha_thermal_velocity_at_point_185_______________________________ (vel_plasma_alpha_thermal_profile185)_ 1.02472341392583644e+06 +Plasma_alpha_thermal_velocity_at_point_186_______________________________ (vel_plasma_alpha_thermal_profile186)_ 1.02361977227914031e+06 +Plasma_alpha_thermal_velocity_at_point_187_______________________________ (vel_plasma_alpha_thermal_profile187)_ 1.02250997833894915e+06 +Plasma_alpha_thermal_velocity_at_point_188_______________________________ (vel_plasma_alpha_thermal_profile188)_ 1.02139402932288952e+06 +Plasma_alpha_thermal_velocity_at_point_189_______________________________ (vel_plasma_alpha_thermal_profile189)_ 1.02027192237395141e+06 +Plasma_alpha_thermal_velocity_at_point_190_______________________________ (vel_plasma_alpha_thermal_profile190)_ 1.01914365469208208e+06 +Plasma_alpha_thermal_velocity_at_point_191_______________________________ (vel_plasma_alpha_thermal_profile191)_ 1.01800922345591744e+06 +Plasma_alpha_thermal_velocity_at_point_192_______________________________ (vel_plasma_alpha_thermal_profile192)_ 1.01686862583721150e+06 +Plasma_alpha_thermal_velocity_at_point_193_______________________________ (vel_plasma_alpha_thermal_profile193)_ 1.01572185906448110e+06 +Plasma_alpha_thermal_velocity_at_point_194_______________________________ (vel_plasma_alpha_thermal_profile194)_ 1.01456892031497206e+06 +Plasma_alpha_thermal_velocity_at_point_195_______________________________ (vel_plasma_alpha_thermal_profile195)_ 1.01340980680281285e+06 +Plasma_alpha_thermal_velocity_at_point_196_______________________________ (vel_plasma_alpha_thermal_profile196)_ 1.01224451570019475e+06 +Plasma_alpha_thermal_velocity_at_point_197_______________________________ (vel_plasma_alpha_thermal_profile197)_ 1.01107304428499239e+06 +Plasma_alpha_thermal_velocity_at_point_198_______________________________ (vel_plasma_alpha_thermal_profile198)_ 1.00989538971889776e+06 +Plasma_alpha_thermal_velocity_at_point_199_______________________________ (vel_plasma_alpha_thermal_profile199)_ 1.00871154928892525e+06 +Plasma_alpha_thermal_velocity_at_point_200_______________________________ (vel_plasma_alpha_thermal_profile200)_ 1.00752152018514520e+06 +Plasma_alpha_thermal_velocity_at_point_201_______________________________ (vel_plasma_alpha_thermal_profile201)_ 1.00632529970816511e+06 +Plasma_alpha_thermal_velocity_at_point_202_______________________________ (vel_plasma_alpha_thermal_profile202)_ 1.00512288507603540e+06 +Plasma_alpha_thermal_velocity_at_point_203_______________________________ (vel_plasma_alpha_thermal_profile203)_ 1.00391427356770507e+06 +Plasma_alpha_thermal_velocity_at_point_204_______________________________ (vel_plasma_alpha_thermal_profile204)_ 1.00269946250331611e+06 +Plasma_alpha_thermal_velocity_at_point_205_______________________________ (vel_plasma_alpha_thermal_profile205)_ 1.00147844911974319e+06 +Plasma_alpha_thermal_velocity_at_point_206_______________________________ (vel_plasma_alpha_thermal_profile206)_ 1.00025123077940615e+06 +Plasma_alpha_thermal_velocity_at_point_207_______________________________ (vel_plasma_alpha_thermal_profile207)_ 9.99017804771112977e+05 +Plasma_alpha_thermal_velocity_at_point_208_______________________________ (vel_plasma_alpha_thermal_profile208)_ 9.97778168444444193e+05 +Plasma_alpha_thermal_velocity_at_point_209_______________________________ (vel_plasma_alpha_thermal_profile209)_ 9.96532319139873958e+05 +Plasma_alpha_thermal_velocity_at_point_210_______________________________ (vel_plasma_alpha_thermal_profile210)_ 9.95280254243686446e+05 +Plasma_alpha_thermal_velocity_at_point_211_______________________________ (vel_plasma_alpha_thermal_profile211)_ 9.94021971137910266e+05 +Plasma_alpha_thermal_velocity_at_point_212_______________________________ (vel_plasma_alpha_thermal_profile212)_ 9.92757467220227816e+05 +Plasma_alpha_thermal_velocity_at_point_213_______________________________ (vel_plasma_alpha_thermal_profile213)_ 9.91486739919008571e+05 +Plasma_alpha_thermal_velocity_at_point_214_______________________________ (vel_plasma_alpha_thermal_profile214)_ 9.90209786668150336e+05 +Plasma_alpha_thermal_velocity_at_point_215_______________________________ (vel_plasma_alpha_thermal_profile215)_ 9.88926604952358990e+05 +Plasma_alpha_thermal_velocity_at_point_216_______________________________ (vel_plasma_alpha_thermal_profile216)_ 9.87637192221440724e+05 +Plasma_alpha_thermal_velocity_at_point_217_______________________________ (vel_plasma_alpha_thermal_profile217)_ 9.86341546041660360e+05 +Plasma_alpha_thermal_velocity_at_point_218_______________________________ (vel_plasma_alpha_thermal_profile218)_ 9.85039663878560299e+05 +Plasma_alpha_thermal_velocity_at_point_219_______________________________ (vel_plasma_alpha_thermal_profile219)_ 9.83731543329429696e+05 +Plasma_alpha_thermal_velocity_at_point_220_______________________________ (vel_plasma_alpha_thermal_profile220)_ 9.82417181997065316e+05 +Plasma_alpha_thermal_velocity_at_point_221_______________________________ (vel_plasma_alpha_thermal_profile221)_ 9.81096577443889691e+05 +Plasma_alpha_thermal_velocity_at_point_222_______________________________ (vel_plasma_alpha_thermal_profile222)_ 9.79769727349379100e+05 +Plasma_alpha_thermal_velocity_at_point_223_______________________________ (vel_plasma_alpha_thermal_profile223)_ 9.78436629357734811e+05 +Plasma_alpha_thermal_velocity_at_point_224_______________________________ (vel_plasma_alpha_thermal_profile224)_ 9.77097281169401482e+05 +Plasma_alpha_thermal_velocity_at_point_225_______________________________ (vel_plasma_alpha_thermal_profile225)_ 9.75751680531077669e+05 +Plasma_alpha_thermal_velocity_at_point_226_______________________________ (vel_plasma_alpha_thermal_profile226)_ 9.74399825194928213e+05 +Plasma_alpha_thermal_velocity_at_point_227_______________________________ (vel_plasma_alpha_thermal_profile227)_ 9.73041712974877562e+05 +Plasma_alpha_thermal_velocity_at_point_228_______________________________ (vel_plasma_alpha_thermal_profile228)_ 9.71677341659612721e+05 +Plasma_alpha_thermal_velocity_at_point_229_______________________________ (vel_plasma_alpha_thermal_profile229)_ 9.70306709192224545e+05 +Plasma_alpha_thermal_velocity_at_point_230_______________________________ (vel_plasma_alpha_thermal_profile230)_ 9.68929813408560236e+05 +Plasma_alpha_thermal_velocity_at_point_231_______________________________ (vel_plasma_alpha_thermal_profile231)_ 9.67546652304458548e+05 +Plasma_alpha_thermal_velocity_at_point_232_______________________________ (vel_plasma_alpha_thermal_profile232)_ 9.66157223840532009e+05 +Plasma_alpha_thermal_velocity_at_point_233_______________________________ (vel_plasma_alpha_thermal_profile233)_ 9.64761526071066735e+05 +Plasma_alpha_thermal_velocity_at_point_234_______________________________ (vel_plasma_alpha_thermal_profile234)_ 9.63359557051350828e+05 +Plasma_alpha_thermal_velocity_at_point_235_______________________________ (vel_plasma_alpha_thermal_profile235)_ 9.61951314941284247e+05 +Plasma_alpha_thermal_velocity_at_point_236_______________________________ (vel_plasma_alpha_thermal_profile236)_ 9.60536797845005756e+05 +Plasma_alpha_thermal_velocity_at_point_237_______________________________ (vel_plasma_alpha_thermal_profile237)_ 9.59116004049640149e+05 +Plasma_alpha_thermal_velocity_at_point_238_______________________________ (vel_plasma_alpha_thermal_profile238)_ 9.57688931745224632e+05 +Plasma_alpha_thermal_velocity_at_point_239_______________________________ (vel_plasma_alpha_thermal_profile239)_ 9.56255579331689747e+05 +Plasma_alpha_thermal_velocity_at_point_240_______________________________ (vel_plasma_alpha_thermal_profile240)_ 9.54815945117262308e+05 +Plasma_alpha_thermal_velocity_at_point_241_______________________________ (vel_plasma_alpha_thermal_profile241)_ 9.53370027579319896e+05 +Plasma_alpha_thermal_velocity_at_point_242_______________________________ (vel_plasma_alpha_thermal_profile242)_ 9.51917825161167188e+05 +Plasma_alpha_thermal_velocity_at_point_243_______________________________ (vel_plasma_alpha_thermal_profile243)_ 9.50459336434396566e+05 +Plasma_alpha_thermal_velocity_at_point_244_______________________________ (vel_plasma_alpha_thermal_profile244)_ 9.48994559989373898e+05 +Plasma_alpha_thermal_velocity_at_point_245_______________________________ (vel_plasma_alpha_thermal_profile245)_ 9.47523494503738126e+05 +Plasma_alpha_thermal_velocity_at_point_246_______________________________ (vel_plasma_alpha_thermal_profile246)_ 9.46046138684981037e+05 +Plasma_alpha_thermal_velocity_at_point_247_______________________________ (vel_plasma_alpha_thermal_profile247)_ 9.44562491365666967e+05 +Plasma_alpha_thermal_velocity_at_point_248_______________________________ (vel_plasma_alpha_thermal_profile248)_ 9.43072551398529205e+05 +Plasma_alpha_thermal_velocity_at_point_249_______________________________ (vel_plasma_alpha_thermal_profile249)_ 9.41576317746630288e+05 +Plasma_alpha_thermal_velocity_at_point_250_______________________________ (vel_plasma_alpha_thermal_profile250)_ 9.40073789404559415e+05 +Plasma_alpha_thermal_velocity_at_point_251_______________________________ (vel_plasma_alpha_thermal_profile251)_ 9.38564965446457732e+05 +Plasma_alpha_thermal_velocity_at_point_252_______________________________ (vel_plasma_alpha_thermal_profile252)_ 9.37049845063862973e+05 +Plasma_alpha_thermal_velocity_at_point_253_______________________________ (vel_plasma_alpha_thermal_profile253)_ 9.35528427470610128e+05 +Plasma_alpha_thermal_velocity_at_point_254_______________________________ (vel_plasma_alpha_thermal_profile254)_ 9.34000712052524323e+05 +Plasma_alpha_thermal_velocity_at_point_255_______________________________ (vel_plasma_alpha_thermal_profile255)_ 9.32466698176168022e+05 +Plasma_alpha_thermal_velocity_at_point_256_______________________________ (vel_plasma_alpha_thermal_profile256)_ 9.30926385344058392e+05 +Plasma_alpha_thermal_velocity_at_point_257_______________________________ (vel_plasma_alpha_thermal_profile257)_ 9.29379773179651354e+05 +Plasma_alpha_thermal_velocity_at_point_258_______________________________ (vel_plasma_alpha_thermal_profile258)_ 9.27826861358416500e+05 +Plasma_alpha_thermal_velocity_at_point_259_______________________________ (vel_plasma_alpha_thermal_profile259)_ 9.26267649651339394e+05 +Plasma_alpha_thermal_velocity_at_point_260_______________________________ (vel_plasma_alpha_thermal_profile260)_ 9.24702137947288924e+05 +Plasma_alpha_thermal_velocity_at_point_261_______________________________ (vel_plasma_alpha_thermal_profile261)_ 9.23130326210769126e+05 +Plasma_alpha_thermal_velocity_at_point_262_______________________________ (vel_plasma_alpha_thermal_profile262)_ 9.21552214558352600e+05 +Plasma_alpha_thermal_velocity_at_point_263_______________________________ (vel_plasma_alpha_thermal_profile263)_ 9.19967803162371041e+05 +Plasma_alpha_thermal_velocity_at_point_264_______________________________ (vel_plasma_alpha_thermal_profile264)_ 9.18377092300298857e+05 +Plasma_alpha_thermal_velocity_at_point_265_______________________________ (vel_plasma_alpha_thermal_profile265)_ 9.16780082442752668e+05 +Plasma_alpha_thermal_velocity_at_point_266_______________________________ (vel_plasma_alpha_thermal_profile266)_ 9.15176774086205172e+05 +Plasma_alpha_thermal_velocity_at_point_267_______________________________ (vel_plasma_alpha_thermal_profile267)_ 9.13567167928001145e+05 +Plasma_alpha_thermal_velocity_at_point_268_______________________________ (vel_plasma_alpha_thermal_profile268)_ 9.11951264687635237e+05 +Plasma_alpha_thermal_velocity_at_point_269_______________________________ (vel_plasma_alpha_thermal_profile269)_ 9.10329065293335589e+05 +Plasma_alpha_thermal_velocity_at_point_270_______________________________ (vel_plasma_alpha_thermal_profile270)_ 9.08700570790648693e+05 +Plasma_alpha_thermal_velocity_at_point_271_______________________________ (vel_plasma_alpha_thermal_profile271)_ 9.07065782343560364e+05 +Plasma_alpha_thermal_velocity_at_point_272_______________________________ (vel_plasma_alpha_thermal_profile272)_ 9.05424701252172701e+05 +Plasma_alpha_thermal_velocity_at_point_273_______________________________ (vel_plasma_alpha_thermal_profile273)_ 9.03777328987147077e+05 +Plasma_alpha_thermal_velocity_at_point_274_______________________________ (vel_plasma_alpha_thermal_profile274)_ 9.02123667119463673e+05 +Plasma_alpha_thermal_velocity_at_point_275_______________________________ (vel_plasma_alpha_thermal_profile275)_ 9.00463717421178357e+05 +Plasma_alpha_thermal_velocity_at_point_276_______________________________ (vel_plasma_alpha_thermal_profile276)_ 8.98797481750829378e+05 +Plasma_alpha_thermal_velocity_at_point_277_______________________________ (vel_plasma_alpha_thermal_profile277)_ 8.97124962237886502e+05 +Plasma_alpha_thermal_velocity_at_point_278_______________________________ (vel_plasma_alpha_thermal_profile278)_ 8.95446161045842571e+05 +Plasma_alpha_thermal_velocity_at_point_279_______________________________ (vel_plasma_alpha_thermal_profile279)_ 8.93761080584803247e+05 +Plasma_alpha_thermal_velocity_at_point_280_______________________________ (vel_plasma_alpha_thermal_profile280)_ 8.92069723424495081e+05 +Plasma_alpha_thermal_velocity_at_point_281_______________________________ (vel_plasma_alpha_thermal_profile281)_ 8.90372092284749728e+05 +Plasma_alpha_thermal_velocity_at_point_282_______________________________ (vel_plasma_alpha_thermal_profile282)_ 8.88668190110108349e+05 +Plasma_alpha_thermal_velocity_at_point_283_______________________________ (vel_plasma_alpha_thermal_profile283)_ 8.86958020021555596e+05 +Plasma_alpha_thermal_velocity_at_point_284_______________________________ (vel_plasma_alpha_thermal_profile284)_ 8.85241585267716087e+05 +Plasma_alpha_thermal_velocity_at_point_285_______________________________ (vel_plasma_alpha_thermal_profile285)_ 8.83518889401372522e+05 +Plasma_alpha_thermal_velocity_at_point_286_______________________________ (vel_plasma_alpha_thermal_profile286)_ 8.81789936107282410e+05 +Plasma_alpha_thermal_velocity_at_point_287_______________________________ (vel_plasma_alpha_thermal_profile287)_ 8.80054729311444564e+05 +Plasma_alpha_thermal_velocity_at_point_288_______________________________ (vel_plasma_alpha_thermal_profile288)_ 8.78313273087187787e+05 +Plasma_alpha_thermal_velocity_at_point_289_______________________________ (vel_plasma_alpha_thermal_profile289)_ 8.76565571821976802e+05 +Plasma_alpha_thermal_velocity_at_point_290_______________________________ (vel_plasma_alpha_thermal_profile290)_ 8.74811630106791854e+05 +Plasma_alpha_thermal_velocity_at_point_291_______________________________ (vel_plasma_alpha_thermal_profile291)_ 8.73051452692776802e+05 +Plasma_alpha_thermal_velocity_at_point_292_______________________________ (vel_plasma_alpha_thermal_profile292)_ 8.71285044653523946e+05 +Plasma_alpha_thermal_velocity_at_point_293_______________________________ (vel_plasma_alpha_thermal_profile293)_ 8.69512411308371578e+05 +Plasma_alpha_thermal_velocity_at_point_294_______________________________ (vel_plasma_alpha_thermal_profile294)_ 8.67733558127544471e+05 +Plasma_alpha_thermal_velocity_at_point_295_______________________________ (vel_plasma_alpha_thermal_profile295)_ 8.65948490958787035e+05 +Plasma_alpha_thermal_velocity_at_point_296_______________________________ (vel_plasma_alpha_thermal_profile296)_ 8.64157215864241356e+05 +Plasma_alpha_thermal_velocity_at_point_297_______________________________ (vel_plasma_alpha_thermal_profile297)_ 8.62359739163601422e+05 +Plasma_alpha_thermal_velocity_at_point_298_______________________________ (vel_plasma_alpha_thermal_profile298)_ 8.60556067518413998e+05 +Plasma_alpha_thermal_velocity_at_point_299_______________________________ (vel_plasma_alpha_thermal_profile299)_ 8.58746207796703558e+05 +Plasma_alpha_thermal_velocity_at_point_300_______________________________ (vel_plasma_alpha_thermal_profile300)_ 8.56930167238659109e+05 +Plasma_alpha_thermal_velocity_at_point_301_______________________________ (vel_plasma_alpha_thermal_profile301)_ 8.55107953315234743e+05 +Plasma_alpha_thermal_velocity_at_point_302_______________________________ (vel_plasma_alpha_thermal_profile302)_ 8.53279573877319694e+05 +Plasma_alpha_thermal_velocity_at_point_303_______________________________ (vel_plasma_alpha_thermal_profile303)_ 8.51445037084199488e+05 +Plasma_alpha_thermal_velocity_at_point_304_______________________________ (vel_plasma_alpha_thermal_profile304)_ 8.49604351389848627e+05 +Plasma_alpha_thermal_velocity_at_point_305_______________________________ (vel_plasma_alpha_thermal_profile305)_ 8.47757525617352920e+05 +Plasma_alpha_thermal_velocity_at_point_306_______________________________ (vel_plasma_alpha_thermal_profile306)_ 8.45904568951771478e+05 +Plasma_alpha_thermal_velocity_at_point_307_______________________________ (vel_plasma_alpha_thermal_profile307)_ 8.44045490873832256e+05 +Plasma_alpha_thermal_velocity_at_point_308_______________________________ (vel_plasma_alpha_thermal_profile308)_ 8.42180301288279239e+05 +Plasma_alpha_thermal_velocity_at_point_309_______________________________ (vel_plasma_alpha_thermal_profile309)_ 8.40309010499597876e+05 +Plasma_alpha_thermal_velocity_at_point_310_______________________________ (vel_plasma_alpha_thermal_profile310)_ 8.38431629163656849e+05 +Plasma_alpha_thermal_velocity_at_point_311_______________________________ (vel_plasma_alpha_thermal_profile311)_ 8.36548168304343009e+05 +Plasma_alpha_thermal_velocity_at_point_312_______________________________ (vel_plasma_alpha_thermal_profile312)_ 8.34658639408164192e+05 +Plasma_alpha_thermal_velocity_at_point_313_______________________________ (vel_plasma_alpha_thermal_profile313)_ 8.32763054382391507e+05 +Plasma_alpha_thermal_velocity_at_point_314_______________________________ (vel_plasma_alpha_thermal_profile314)_ 8.30861425572721055e+05 +Plasma_alpha_thermal_velocity_at_point_315_______________________________ (vel_plasma_alpha_thermal_profile315)_ 8.28953765690947068e+05 +Plasma_alpha_thermal_velocity_at_point_316_______________________________ (vel_plasma_alpha_thermal_profile316)_ 8.27040088013137458e+05 +Plasma_alpha_thermal_velocity_at_point_317_______________________________ (vel_plasma_alpha_thermal_profile317)_ 8.25120406242010416e+05 +Plasma_alpha_thermal_velocity_at_point_318_______________________________ (vel_plasma_alpha_thermal_profile318)_ 8.23194734549257439e+05 +Plasma_alpha_thermal_velocity_at_point_319_______________________________ (vel_plasma_alpha_thermal_profile319)_ 8.21263087618509424e+05 +Plasma_alpha_thermal_velocity_at_point_320_______________________________ (vel_plasma_alpha_thermal_profile320)_ 8.19325480670691351e+05 +Plasma_alpha_thermal_velocity_at_point_321_______________________________ (vel_plasma_alpha_thermal_profile321)_ 8.17381929398238659e+05 +Plasma_alpha_thermal_velocity_at_point_322_______________________________ (vel_plasma_alpha_thermal_profile322)_ 8.15432450057500391e+05 +Plasma_alpha_thermal_velocity_at_point_323_______________________________ (vel_plasma_alpha_thermal_profile323)_ 8.13477059476662427e+05 +Plasma_alpha_thermal_velocity_at_point_324_______________________________ (vel_plasma_alpha_thermal_profile324)_ 8.11515775076139369e+05 +Plasma_alpha_thermal_velocity_at_point_325_______________________________ (vel_plasma_alpha_thermal_profile325)_ 8.09548614772228058e+05 +Plasma_alpha_thermal_velocity_at_point_326_______________________________ (vel_plasma_alpha_thermal_profile326)_ 8.07575597182127996e+05 +Plasma_alpha_thermal_velocity_at_point_327_______________________________ (vel_plasma_alpha_thermal_profile327)_ 8.05596741509992513e+05 +Plasma_alpha_thermal_velocity_at_point_328_______________________________ (vel_plasma_alpha_thermal_profile328)_ 8.03612067549324012e+05 +Plasma_alpha_thermal_velocity_at_point_329_______________________________ (vel_plasma_alpha_thermal_profile329)_ 8.01621595828608959e+05 +Plasma_alpha_thermal_velocity_at_point_330_______________________________ (vel_plasma_alpha_thermal_profile330)_ 7.99625347509623622e+05 +Plasma_alpha_thermal_velocity_at_point_331_______________________________ (vel_plasma_alpha_thermal_profile331)_ 7.97623344446909963e+05 +Plasma_alpha_thermal_velocity_at_point_332_______________________________ (vel_plasma_alpha_thermal_profile332)_ 7.95615609216863639e+05 +Plasma_alpha_thermal_velocity_at_point_333_______________________________ (vel_plasma_alpha_thermal_profile333)_ 7.93602165134758456e+05 +Plasma_alpha_thermal_velocity_at_point_334_______________________________ (vel_plasma_alpha_thermal_profile334)_ 7.91583036272104364e+05 +Plasma_alpha_thermal_velocity_at_point_335_______________________________ (vel_plasma_alpha_thermal_profile335)_ 7.89558247404838679e+05 +Plasma_alpha_thermal_velocity_at_point_336_______________________________ (vel_plasma_alpha_thermal_profile336)_ 7.87527824258539942e+05 +Plasma_alpha_thermal_velocity_at_point_337_______________________________ (vel_plasma_alpha_thermal_profile337)_ 7.85491793249400449e+05 +Plasma_alpha_thermal_velocity_at_point_338_______________________________ (vel_plasma_alpha_thermal_profile338)_ 7.83450181641537230e+05 +Plasma_alpha_thermal_velocity_at_point_339_______________________________ (vel_plasma_alpha_thermal_profile339)_ 7.81403017674916075e+05 +Plasma_alpha_thermal_velocity_at_point_340_______________________________ (vel_plasma_alpha_thermal_profile340)_ 7.79350330388103146e+05 +Plasma_alpha_thermal_velocity_at_point_341_______________________________ (vel_plasma_alpha_thermal_profile341)_ 7.77292149765638635e+05 +Plasma_alpha_thermal_velocity_at_point_342_______________________________ (vel_plasma_alpha_thermal_profile342)_ 7.75228506746256026e+05 +Plasma_alpha_thermal_velocity_at_point_343_______________________________ (vel_plasma_alpha_thermal_profile343)_ 7.73159433257133467e+05 +Plasma_alpha_thermal_velocity_at_point_344_______________________________ (vel_plasma_alpha_thermal_profile344)_ 7.71084962138791103e+05 +Plasma_alpha_thermal_velocity_at_point_345_______________________________ (vel_plasma_alpha_thermal_profile345)_ 7.69005127438663505e+05 +Plasma_alpha_thermal_velocity_at_point_346_______________________________ (vel_plasma_alpha_thermal_profile346)_ 7.66919964072015486e+05 +Plasma_alpha_thermal_velocity_at_point_347_______________________________ (vel_plasma_alpha_thermal_profile347)_ 7.64829508201478282e+05 +Plasma_alpha_thermal_velocity_at_point_348_______________________________ (vel_plasma_alpha_thermal_profile348)_ 7.62733797021139413e+05 +Plasma_alpha_thermal_velocity_at_point_349_______________________________ (vel_plasma_alpha_thermal_profile349)_ 7.60632868950391305e+05 +Plasma_alpha_thermal_velocity_at_point_350_______________________________ (vel_plasma_alpha_thermal_profile350)_ 7.58526763515385450e+05 +Plasma_alpha_thermal_velocity_at_point_351_______________________________ (vel_plasma_alpha_thermal_profile351)_ 7.56415521564989700e+05 +Plasma_alpha_thermal_velocity_at_point_352_______________________________ (vel_plasma_alpha_thermal_profile352)_ 7.54299185166375828e+05 +Plasma_alpha_thermal_velocity_at_point_353_______________________________ (vel_plasma_alpha_thermal_profile353)_ 7.52177797711205785e+05 +Plasma_alpha_thermal_velocity_at_point_354_______________________________ (vel_plasma_alpha_thermal_profile354)_ 7.50051403870735085e+05 +Plasma_alpha_thermal_velocity_at_point_355_______________________________ (vel_plasma_alpha_thermal_profile355)_ 7.47920049810410943e+05 +Plasma_alpha_thermal_velocity_at_point_356_______________________________ (vel_plasma_alpha_thermal_profile356)_ 7.45783783040325041e+05 +Plasma_alpha_thermal_velocity_at_point_357_______________________________ (vel_plasma_alpha_thermal_profile357)_ 7.43642652531562257e+05 +Plasma_alpha_thermal_velocity_at_point_358_______________________________ (vel_plasma_alpha_thermal_profile358)_ 7.41496708807758172e+05 +Plasma_alpha_thermal_velocity_at_point_359_______________________________ (vel_plasma_alpha_thermal_profile359)_ 7.39346003984381910e+05 +Plasma_alpha_thermal_velocity_at_point_360_______________________________ (vel_plasma_alpha_thermal_profile360)_ 7.37190591680237674e+05 +Plasma_alpha_thermal_velocity_at_point_361_______________________________ (vel_plasma_alpha_thermal_profile361)_ 7.35030527239752002e+05 +Plasma_alpha_thermal_velocity_at_point_362_______________________________ (vel_plasma_alpha_thermal_profile362)_ 7.32865867707421770e+05 +Plasma_alpha_thermal_velocity_at_point_363_______________________________ (vel_plasma_alpha_thermal_profile363)_ 7.30696671883863281e+05 +Plasma_alpha_thermal_velocity_at_point_364_______________________________ (vel_plasma_alpha_thermal_profile364)_ 7.28523000369282323e+05 +Plasma_alpha_thermal_velocity_at_point_365_______________________________ (vel_plasma_alpha_thermal_profile365)_ 7.26344915669662296e+05 +Plasma_alpha_thermal_velocity_at_point_366_______________________________ (vel_plasma_alpha_thermal_profile366)_ 7.24162482167195645e+05 +Plasma_alpha_thermal_velocity_at_point_367_______________________________ (vel_plasma_alpha_thermal_profile367)_ 7.21975766269966611e+05 +Plasma_alpha_thermal_velocity_at_point_368_______________________________ (vel_plasma_alpha_thermal_profile368)_ 7.19784836460508639e+05 +Plasma_alpha_thermal_velocity_at_point_369_______________________________ (vel_plasma_alpha_thermal_profile369)_ 7.17589763234128244e+05 +Plasma_alpha_thermal_velocity_at_point_370_______________________________ (vel_plasma_alpha_thermal_profile370)_ 7.15390619398852694e+05 +Plasma_alpha_thermal_velocity_at_point_371_______________________________ (vel_plasma_alpha_thermal_profile371)_ 7.13187479975303635e+05 +Plasma_alpha_thermal_velocity_at_point_372_______________________________ (vel_plasma_alpha_thermal_profile372)_ 7.10980422235169564e+05 +Plasma_alpha_thermal_velocity_at_point_373_______________________________ (vel_plasma_alpha_thermal_profile373)_ 7.08769525916482438e+05 +Plasma_alpha_thermal_velocity_at_point_374_______________________________ (vel_plasma_alpha_thermal_profile374)_ 7.06554873273574747e+05 +Plasma_alpha_thermal_velocity_at_point_375_______________________________ (vel_plasma_alpha_thermal_profile375)_ 7.04336549000588595e+05 +Plasma_alpha_thermal_velocity_at_point_376_______________________________ (vel_plasma_alpha_thermal_profile376)_ 7.02114640551558812e+05 +Plasma_alpha_thermal_velocity_at_point_377_______________________________ (vel_plasma_alpha_thermal_profile377)_ 6.99889238053244073e+05 +Plasma_alpha_thermal_velocity_at_point_378_______________________________ (vel_plasma_alpha_thermal_profile378)_ 6.97660434388012276e+05 +Plasma_alpha_thermal_velocity_at_point_379_______________________________ (vel_plasma_alpha_thermal_profile379)_ 6.95428325443410082e+05 +Plasma_alpha_thermal_velocity_at_point_380_______________________________ (vel_plasma_alpha_thermal_profile380)_ 6.93193010100336047e+05 +Plasma_alpha_thermal_velocity_at_point_381_______________________________ (vel_plasma_alpha_thermal_profile381)_ 6.90954590286047314e+05 +Plasma_alpha_thermal_velocity_at_point_382_______________________________ (vel_plasma_alpha_thermal_profile382)_ 6.88713171173146111e+05 +Plasma_alpha_thermal_velocity_at_point_383_______________________________ (vel_plasma_alpha_thermal_profile383)_ 6.86468861222629319e+05 +Plasma_alpha_thermal_velocity_at_point_384_______________________________ (vel_plasma_alpha_thermal_profile384)_ 6.84221772380956099e+05 +Plasma_alpha_thermal_velocity_at_point_385_______________________________ (vel_plasma_alpha_thermal_profile385)_ 6.81972020061578951e+05 +Plasma_alpha_thermal_velocity_at_point_386_______________________________ (vel_plasma_alpha_thermal_profile386)_ 6.79719723390366300e+05 +Plasma_alpha_thermal_velocity_at_point_387_______________________________ (vel_plasma_alpha_thermal_profile387)_ 6.77465005257091136e+05 +Plasma_alpha_thermal_velocity_at_point_388_______________________________ (vel_plasma_alpha_thermal_profile388)_ 6.75207992508335621e+05 +Plasma_alpha_thermal_velocity_at_point_389_______________________________ (vel_plasma_alpha_thermal_profile389)_ 6.72948815981150139e+05 +Plasma_alpha_thermal_velocity_at_point_390_______________________________ (vel_plasma_alpha_thermal_profile390)_ 6.70687610760510201e+05 +Plasma_alpha_thermal_velocity_at_point_391_______________________________ (vel_plasma_alpha_thermal_profile391)_ 6.68424516300120973e+05 +Plasma_alpha_thermal_velocity_at_point_392_______________________________ (vel_plasma_alpha_thermal_profile392)_ 6.66159676418274874e+05 +Plasma_alpha_thermal_velocity_at_point_393_______________________________ (vel_plasma_alpha_thermal_profile393)_ 6.63893239759435877e+05 +Plasma_alpha_thermal_velocity_at_point_394_______________________________ (vel_plasma_alpha_thermal_profile394)_ 6.61625359676992986e+05 +Plasma_alpha_thermal_velocity_at_point_395_______________________________ (vel_plasma_alpha_thermal_profile395)_ 6.59356194544719765e+05 +Plasma_alpha_thermal_velocity_at_point_396_______________________________ (vel_plasma_alpha_thermal_profile396)_ 6.57085907892251271e+05 +Plasma_alpha_thermal_velocity_at_point_397_______________________________ (vel_plasma_alpha_thermal_profile397)_ 6.54814668649797677e+05 +Plasma_alpha_thermal_velocity_at_point_398_______________________________ (vel_plasma_alpha_thermal_profile398)_ 6.52542651275351760e+05 +Plasma_alpha_thermal_velocity_at_point_399_______________________________ (vel_plasma_alpha_thermal_profile399)_ 6.50270035991641693e+05 +Plasma_alpha_thermal_velocity_at_point_400_______________________________ (vel_plasma_alpha_thermal_profile400)_ 6.47997009004587075e+05 +Plasma_alpha_thermal_velocity_at_point_401_______________________________ (vel_plasma_alpha_thermal_profile401)_ 6.45723762702751090e+05 +Plasma_alpha_thermal_velocity_at_point_402_______________________________ (vel_plasma_alpha_thermal_profile402)_ 6.43450495938058011e+05 +Plasma_alpha_thermal_velocity_at_point_403_______________________________ (vel_plasma_alpha_thermal_profile403)_ 6.41177414195199497e+05 +Plasma_alpha_thermal_velocity_at_point_404_______________________________ (vel_plasma_alpha_thermal_profile404)_ 6.38904729873344302e+05 +Plasma_alpha_thermal_velocity_at_point_405_______________________________ (vel_plasma_alpha_thermal_profile405)_ 6.36632662675041822e+05 +Plasma_alpha_thermal_velocity_at_point_406_______________________________ (vel_plasma_alpha_thermal_profile406)_ 6.34361439633037895e+05 +Plasma_alpha_thermal_velocity_at_point_407_______________________________ (vel_plasma_alpha_thermal_profile407)_ 6.32091295649816399e+05 +Plasma_alpha_thermal_velocity_at_point_408_______________________________ (vel_plasma_alpha_thermal_profile408)_ 6.29822473699264927e+05 +Plasma_alpha_thermal_velocity_at_point_409_______________________________ (vel_plasma_alpha_thermal_profile409)_ 6.27555225063401507e+05 +Plasma_alpha_thermal_velocity_at_point_410_______________________________ (vel_plasma_alpha_thermal_profile410)_ 6.25289809852273669e+05 +Plasma_alpha_thermal_velocity_at_point_411_______________________________ (vel_plasma_alpha_thermal_profile411)_ 6.23026497237536241e+05 +Plasma_alpha_thermal_velocity_at_point_412_______________________________ (vel_plasma_alpha_thermal_profile412)_ 6.20765565818207222e+05 +Plasma_alpha_thermal_velocity_at_point_413_______________________________ (vel_plasma_alpha_thermal_profile413)_ 6.18507304146022303e+05 +Plasma_alpha_thermal_velocity_at_point_414_______________________________ (vel_plasma_alpha_thermal_profile414)_ 6.16252010896160500e+05 +Plasma_alpha_thermal_velocity_at_point_415_______________________________ (vel_plasma_alpha_thermal_profile415)_ 6.13999995535333874e+05 +Plasma_alpha_thermal_velocity_at_point_416_______________________________ (vel_plasma_alpha_thermal_profile416)_ 6.11751578725078725e+05 +Plasma_alpha_thermal_velocity_at_point_417_______________________________ (vel_plasma_alpha_thermal_profile417)_ 6.09507092731457669e+05 +Plasma_alpha_thermal_velocity_at_point_418_______________________________ (vel_plasma_alpha_thermal_profile418)_ 6.07266881956103141e+05 +Plasma_alpha_thermal_velocity_at_point_419_______________________________ (vel_plasma_alpha_thermal_profile419)_ 6.05031303492500330e+05 +Plasma_alpha_thermal_velocity_at_point_420_______________________________ (vel_plasma_alpha_thermal_profile420)_ 6.02800727798888693e+05 +Plasma_alpha_thermal_velocity_at_point_421_______________________________ (vel_plasma_alpha_thermal_profile421)_ 6.00575539158156491e+05 +Plasma_alpha_thermal_velocity_at_point_422_______________________________ (vel_plasma_alpha_thermal_profile422)_ 5.98356136344027007e+05 +Plasma_alpha_thermal_velocity_at_point_423_______________________________ (vel_plasma_alpha_thermal_profile423)_ 5.96142933372962521e+05 +Plasma_alpha_thermal_velocity_at_point_424_______________________________ (vel_plasma_alpha_thermal_profile424)_ 5.93936360225932440e+05 +Plasma_alpha_thermal_velocity_at_point_425_______________________________ (vel_plasma_alpha_thermal_profile425)_ 5.91736863589306246e+05 +Plasma_alpha_thermal_velocity_at_point_426_______________________________ (vel_plasma_alpha_thermal_profile426)_ 5.89544907631713664e+05 +Plasma_alpha_thermal_velocity_at_point_427_______________________________ (vel_plasma_alpha_thermal_profile427)_ 5.87360975004039705e+05 +Plasma_alpha_thermal_velocity_at_point_428_______________________________ (vel_plasma_alpha_thermal_profile428)_ 5.85185567786314175e+05 +Plasma_alpha_thermal_velocity_at_point_429_______________________________ (vel_plasma_alpha_thermal_profile429)_ 5.83019208336497308e+05 +Plasma_alpha_thermal_velocity_at_point_430_______________________________ (vel_plasma_alpha_thermal_profile430)_ 5.80862440587427234e+05 +Plasma_alpha_thermal_velocity_at_point_431_______________________________ (vel_plasma_alpha_thermal_profile431)_ 5.78715831026753411e+05 +Plasma_alpha_thermal_velocity_at_point_432_______________________________ (vel_plasma_alpha_thermal_profile432)_ 5.76579970198445837e+05 +Plasma_alpha_thermal_velocity_at_point_433_______________________________ (vel_plasma_alpha_thermal_profile433)_ 5.74455473808946204e+05 +Plasma_alpha_thermal_velocity_at_point_434_______________________________ (vel_plasma_alpha_thermal_profile434)_ 5.72342984420006396e+05 +Plasma_alpha_thermal_velocity_at_point_435_______________________________ (vel_plasma_alpha_thermal_profile435)_ 5.70243172919502831e+05 +Plasma_alpha_thermal_velocity_at_point_436_______________________________ (vel_plasma_alpha_thermal_profile436)_ 5.68156740386152407e+05 +Plasma_alpha_thermal_velocity_at_point_437_______________________________ (vel_plasma_alpha_thermal_profile437)_ 5.66084419924490037e+05 +Plasma_alpha_thermal_velocity_at_point_438_______________________________ (vel_plasma_alpha_thermal_profile438)_ 5.64026978732451797e+05 +Plasma_alpha_thermal_velocity_at_point_439_______________________________ (vel_plasma_alpha_thermal_profile439)_ 5.61985220609214273e+05 +Plasma_alpha_thermal_velocity_at_point_440_______________________________ (vel_plasma_alpha_thermal_profile440)_ 5.59959988163208356e+05 +Plasma_alpha_thermal_velocity_at_point_441_______________________________ (vel_plasma_alpha_thermal_profile441)_ 5.57952165961247170e+05 +Plasma_alpha_thermal_velocity_at_point_442_______________________________ (vel_plasma_alpha_thermal_profile442)_ 5.55962683391523897e+05 +Plasma_alpha_thermal_velocity_at_point_443_______________________________ (vel_plasma_alpha_thermal_profile443)_ 5.53992518327584374e+05 +Plasma_alpha_thermal_velocity_at_point_444_______________________________ (vel_plasma_alpha_thermal_profile444)_ 5.52042700894437265e+05 +Plasma_alpha_thermal_velocity_at_point_445_______________________________ (vel_plasma_alpha_thermal_profile445)_ 5.50114317986515816e+05 +Plasma_alpha_thermal_velocity_at_point_446_______________________________ (vel_plasma_alpha_thermal_profile446)_ 5.48208518094319501e+05 +Plasma_alpha_thermal_velocity_at_point_447_______________________________ (vel_plasma_alpha_thermal_profile447)_ 5.46326517133464920e+05 +Plasma_alpha_thermal_velocity_at_point_448_______________________________ (vel_plasma_alpha_thermal_profile448)_ 5.44469604732280481e+05 +Plasma_alpha_thermal_velocity_at_point_449_______________________________ (vel_plasma_alpha_thermal_profile449)_ 5.42639151796284365e+05 +Plasma_alpha_thermal_velocity_at_point_450_______________________________ (vel_plasma_alpha_thermal_profile450)_ 5.40836619173202547e+05 +Plasma_alpha_thermal_velocity_at_point_451_______________________________ (vel_plasma_alpha_thermal_profile451)_ 5.39063567576754140e+05 +Plasma_alpha_thermal_velocity_at_point_452_______________________________ (vel_plasma_alpha_thermal_profile452)_ 5.37321669624487520e+05 +Plasma_alpha_thermal_velocity_at_point_453_______________________________ (vel_plasma_alpha_thermal_profile453)_ 5.35612723968401202e+05 +Plasma_alpha_thermal_velocity_at_point_454_______________________________ (vel_plasma_alpha_thermal_profile454)_ 5.33938672144278185e+05 +Plasma_alpha_thermal_velocity_at_point_455_______________________________ (vel_plasma_alpha_thermal_profile455)_ 5.32301619242409710e+05 +Plasma_alpha_thermal_velocity_at_point_456_______________________________ (vel_plasma_alpha_thermal_profile456)_ 5.30703859152589692e+05 +Plasma_alpha_thermal_velocity_at_point_457_______________________________ (vel_plasma_alpha_thermal_profile457)_ 5.29147905979349045e+05 +Plasma_alpha_thermal_velocity_at_point_458_______________________________ (vel_plasma_alpha_thermal_profile458)_ 5.27636534055249649e+05 +Plasma_alpha_thermal_velocity_at_point_459_______________________________ (vel_plasma_alpha_thermal_profile459)_ 5.26172829008922912e+05 +Plasma_alpha_thermal_velocity_at_point_460_______________________________ (vel_plasma_alpha_thermal_profile460)_ 5.24760255137048895e+05 +Plasma_alpha_thermal_velocity_at_point_461_______________________________ (vel_plasma_alpha_thermal_profile461)_ 5.23402746274603473e+05 +Plasma_alpha_thermal_velocity_at_point_462_______________________________ (vel_plasma_alpha_thermal_profile462)_ 5.22104831139167421e+05 +Plasma_alpha_thermal_velocity_at_point_463_______________________________ (vel_plasma_alpha_thermal_profile463)_ 5.20871813319984241e+05 +Plasma_alpha_thermal_velocity_at_point_464_______________________________ (vel_plasma_alpha_thermal_profile464)_ 5.19710040293209779e+05 +Plasma_alpha_thermal_velocity_at_point_465_______________________________ (vel_plasma_alpha_thermal_profile465)_ 5.18627327888803324e+05 +Plasma_alpha_thermal_velocity_at_point_466_______________________________ (vel_plasma_alpha_thermal_profile466)_ 5.17633679554602189e+05 +Plasma_alpha_thermal_velocity_at_point_467_______________________________ (vel_plasma_alpha_thermal_profile467)_ 5.16742632098249800e+05 +Plasma_alpha_thermal_velocity_at_point_468_______________________________ (vel_plasma_alpha_thermal_profile468)_ 5.15974176979609707e+05 +Plasma_alpha_thermal_velocity_at_point_469_______________________________ (vel_plasma_alpha_thermal_profile469)_ 5.15362990502029890e+05 Plasma_alpha_thermal_velocity_at_point_470_______________________________ (vel_plasma_alpha_thermal_profile470)_ 5.15008935086288897e+05 Plasma_alpha_thermal_velocity_at_point_471_______________________________ (vel_plasma_alpha_thermal_profile471)_ 5.06511430977775541e+05 Plasma_alpha_thermal_velocity_at_point_472_______________________________ (vel_plasma_alpha_thermal_profile472)_ 4.97868913406294771e+05 @@ -20736,14073 +20738,14073 @@ Plasma_alpha_thermal_velocity_at_point_498_______________________________ (vel_p Plasma_alpha_thermal_velocity_at_point_499_______________________________ (vel_plasma_alpha_thermal_profile499)_ 1.16201809437440490e+05 Plasma_alpha_thermal_velocity_at_point_500_______________________________ (vel_plasma_alpha_thermal_profile500)_ 6.94438659547848802e+04 Plasma_alpha_birth_velocity_(m/s)________________________________________ (vel_plasma_alpha_birth)_______ 1.30585645401274394e+07 -Volume_averaged_electron_plasma_frequency_(ωₚₑ)_(Hz)_____________________ (freq_plasma_electron_vol_avg)_ 8.02030789211536865e+10 -Plasma_electron_frequency_at_point_0_____________________________________ (freq_plasma_electron_profile0)_ 9.19834211825929260e+10 -Plasma_electron_frequency_at_point_1_____________________________________ (freq_plasma_electron_profile1)_ 9.19833371488659363e+10 -Plasma_electron_frequency_at_point_2_____________________________________ (freq_plasma_electron_profile2)_ 9.19830850472244415e+10 -Plasma_electron_frequency_at_point_3_____________________________________ (freq_plasma_electron_profile3)_ 9.19826648762864838e+10 -Plasma_electron_frequency_at_point_4_____________________________________ (freq_plasma_electron_profile4)_ 9.19820766337488708e+10 -Plasma_electron_frequency_at_point_5_____________________________________ (freq_plasma_electron_profile5)_ 9.19813203163870239e+10 -Plasma_electron_frequency_at_point_6_____________________________________ (freq_plasma_electron_profile6)_ 9.19803959200549316e+10 -Plasma_electron_frequency_at_point_7_____________________________________ (freq_plasma_electron_profile7)_ 9.19793034396849518e+10 -Plasma_electron_frequency_at_point_8_____________________________________ (freq_plasma_electron_profile8)_ 9.19780428692878265e+10 -Plasma_electron_frequency_at_point_9_____________________________________ (freq_plasma_electron_profile9)_ 9.19766142019523163e+10 -Plasma_electron_frequency_at_point_10____________________________________ (freq_plasma_electron_profile10)_ 9.19750174298451691e+10 -Plasma_electron_frequency_at_point_11____________________________________ (freq_plasma_electron_profile11)_ 9.19732525442108612e+10 -Plasma_electron_frequency_at_point_12____________________________________ (freq_plasma_electron_profile12)_ 9.19713195353713379e+10 -Plasma_electron_frequency_at_point_13____________________________________ (freq_plasma_electron_profile13)_ 9.19692183927257690e+10 -Plasma_electron_frequency_at_point_14____________________________________ (freq_plasma_electron_profile14)_ 9.19669491047502289e+10 -Plasma_electron_frequency_at_point_15____________________________________ (freq_plasma_electron_profile15)_ 9.19645116589974060e+10 -Plasma_electron_frequency_at_point_16____________________________________ (freq_plasma_electron_profile16)_ 9.19619060420962830e+10 -Plasma_electron_frequency_at_point_17____________________________________ (freq_plasma_electron_profile17)_ 9.19591322397516785e+10 -Plasma_electron_frequency_at_point_18____________________________________ (freq_plasma_electron_profile18)_ 9.19561902367440033e+10 -Plasma_electron_frequency_at_point_19____________________________________ (freq_plasma_electron_profile19)_ 9.19530800169286652e+10 -Plasma_electron_frequency_at_point_20____________________________________ (freq_plasma_electron_profile20)_ 9.19498015632358093e+10 -Plasma_electron_frequency_at_point_21____________________________________ (freq_plasma_electron_profile21)_ 9.19463548576696777e+10 -Plasma_electron_frequency_at_point_22____________________________________ (freq_plasma_electron_profile22)_ 9.19427398813082733e+10 -Plasma_electron_frequency_at_point_23____________________________________ (freq_plasma_electron_profile23)_ 9.19389566143026886e+10 -Plasma_electron_frequency_at_point_24____________________________________ (freq_plasma_electron_profile24)_ 9.19350050358766785e+10 -Plasma_electron_frequency_at_point_25____________________________________ (freq_plasma_electron_profile25)_ 9.19308851243260345e+10 -Plasma_electron_frequency_at_point_26____________________________________ (freq_plasma_electron_profile26)_ 9.19265968570179749e+10 -Plasma_electron_frequency_at_point_27____________________________________ (freq_plasma_electron_profile27)_ 9.19221402103906097e+10 -Plasma_electron_frequency_at_point_28____________________________________ (freq_plasma_electron_profile28)_ 9.19175151599521484e+10 -Plasma_electron_frequency_at_point_29____________________________________ (freq_plasma_electron_profile29)_ 9.19127216802803192e+10 -Plasma_electron_frequency_at_point_30____________________________________ (freq_plasma_electron_profile30)_ 9.19077597450217438e+10 -Plasma_electron_frequency_at_point_31____________________________________ (freq_plasma_electron_profile31)_ 9.19026293268909912e+10 -Plasma_electron_frequency_at_point_32____________________________________ (freq_plasma_electron_profile32)_ 9.18973303976700439e+10 -Plasma_electron_frequency_at_point_33____________________________________ (freq_plasma_electron_profile33)_ 9.18918629282073822e+10 -Plasma_electron_frequency_at_point_34____________________________________ (freq_plasma_electron_profile34)_ 9.18862268884172974e+10 -Plasma_electron_frequency_at_point_35____________________________________ (freq_plasma_electron_profile35)_ 9.18804222472789307e+10 -Plasma_electron_frequency_at_point_36____________________________________ (freq_plasma_electron_profile36)_ 9.18744489728355103e+10 -Plasma_electron_frequency_at_point_37____________________________________ (freq_plasma_electron_profile37)_ 9.18683070321934509e+10 -Plasma_electron_frequency_at_point_38____________________________________ (freq_plasma_electron_profile38)_ 9.18619963915214233e+10 -Plasma_electron_frequency_at_point_39____________________________________ (freq_plasma_electron_profile39)_ 9.18555170160494232e+10 -Plasma_electron_frequency_at_point_40____________________________________ (freq_plasma_electron_profile40)_ 9.18488688700678406e+10 -Plasma_electron_frequency_at_point_41____________________________________ (freq_plasma_electron_profile41)_ 9.18420519169264221e+10 -Plasma_electron_frequency_at_point_42____________________________________ (freq_plasma_electron_profile42)_ 9.18350661190333099e+10 -Plasma_electron_frequency_at_point_43____________________________________ (freq_plasma_electron_profile43)_ 9.18279114378539886e+10 -Plasma_electron_frequency_at_point_44____________________________________ (freq_plasma_electron_profile44)_ 9.18205878339101562e+10 -Plasma_electron_frequency_at_point_45____________________________________ (freq_plasma_electron_profile45)_ 9.18130952667787170e+10 -Plasma_electron_frequency_at_point_46____________________________________ (freq_plasma_electron_profile46)_ 9.18054336950906372e+10 -Plasma_electron_frequency_at_point_47____________________________________ (freq_plasma_electron_profile47)_ 9.17976030765297089e+10 -Plasma_electron_frequency_at_point_48____________________________________ (freq_plasma_electron_profile48)_ 9.17896033678315582e+10 -Plasma_electron_frequency_at_point_49____________________________________ (freq_plasma_electron_profile49)_ 9.17814345247822723e+10 -Plasma_electron_frequency_at_point_50____________________________________ (freq_plasma_electron_profile50)_ 9.17730965022172089e+10 -Plasma_electron_frequency_at_point_51____________________________________ (freq_plasma_electron_profile51)_ 9.17645892540198364e+10 -Plasma_electron_frequency_at_point_52____________________________________ (freq_plasma_electron_profile52)_ 9.17559127331203308e+10 -Plasma_electron_frequency_at_point_53____________________________________ (freq_plasma_electron_profile53)_ 9.17470668914943237e+10 -Plasma_electron_frequency_at_point_54____________________________________ (freq_plasma_electron_profile54)_ 9.17380516801615906e+10 -Plasma_electron_frequency_at_point_55____________________________________ (freq_plasma_electron_profile55)_ 9.17288670491845856e+10 -Plasma_electron_frequency_at_point_56____________________________________ (freq_plasma_electron_profile56)_ 9.17195129476671753e+10 -Plasma_electron_frequency_at_point_57____________________________________ (freq_plasma_electron_profile57)_ 9.17099893237531128e+10 -Plasma_electron_frequency_at_point_58____________________________________ (freq_plasma_electron_profile58)_ 9.17002961246246796e+10 -Plasma_electron_frequency_at_point_59____________________________________ (freq_plasma_electron_profile59)_ 9.16904332965011139e+10 -Plasma_electron_frequency_at_point_60____________________________________ (freq_plasma_electron_profile60)_ 9.16804007846372223e+10 -Plasma_electron_frequency_at_point_61____________________________________ (freq_plasma_electron_profile61)_ 9.16701985333217010e+10 -Plasma_electron_frequency_at_point_62____________________________________ (freq_plasma_electron_profile62)_ 9.16598264858757324e+10 -Plasma_electron_frequency_at_point_63____________________________________ (freq_plasma_electron_profile63)_ 9.16492845846512604e+10 -Plasma_electron_frequency_at_point_64____________________________________ (freq_plasma_electron_profile64)_ 9.16385727710294800e+10 -Plasma_electron_frequency_at_point_65____________________________________ (freq_plasma_electron_profile65)_ 9.16276909854191132e+10 -Plasma_electron_frequency_at_point_66____________________________________ (freq_plasma_electron_profile66)_ 9.16166391672548218e+10 -Plasma_electron_frequency_at_point_67____________________________________ (freq_plasma_electron_profile67)_ 9.16054172549953613e+10 -Plasma_electron_frequency_at_point_68____________________________________ (freq_plasma_electron_profile68)_ 9.15940251861220245e+10 -Plasma_electron_frequency_at_point_69____________________________________ (freq_plasma_electron_profile69)_ 9.15824628971367493e+10 -Plasma_electron_frequency_at_point_70____________________________________ (freq_plasma_electron_profile70)_ 9.15707303235603943e+10 -Plasma_electron_frequency_at_point_71____________________________________ (freq_plasma_electron_profile71)_ 9.15588273999309082e+10 -Plasma_electron_frequency_at_point_72____________________________________ (freq_plasma_electron_profile72)_ 9.15467540598014679e+10 -Plasma_electron_frequency_at_point_73____________________________________ (freq_plasma_electron_profile73)_ 9.15345102357386017e+10 -Plasma_electron_frequency_at_point_74____________________________________ (freq_plasma_electron_profile74)_ 9.15220958593202820e+10 -Plasma_electron_frequency_at_point_75____________________________________ (freq_plasma_electron_profile75)_ 9.15095108611340637e+10 -Plasma_electron_frequency_at_point_76____________________________________ (freq_plasma_electron_profile76)_ 9.14967551707749481e+10 -Plasma_electron_frequency_at_point_77____________________________________ (freq_plasma_electron_profile77)_ 9.14838287168435669e+10 -Plasma_electron_frequency_at_point_78____________________________________ (freq_plasma_electron_profile78)_ 9.14707314269440613e+10 -Plasma_electron_frequency_at_point_79____________________________________ (freq_plasma_electron_profile79)_ 9.14574632276820374e+10 -Plasma_electron_frequency_at_point_80____________________________________ (freq_plasma_electron_profile80)_ 9.14440240446625366e+10 -Plasma_electron_frequency_at_point_81____________________________________ (freq_plasma_electron_profile81)_ 9.14304138024877472e+10 -Plasma_electron_frequency_at_point_82____________________________________ (freq_plasma_electron_profile82)_ 9.14166324247551117e+10 -Plasma_electron_frequency_at_point_83____________________________________ (freq_plasma_electron_profile83)_ 9.14026798340549164e+10 -Plasma_electron_frequency_at_point_84____________________________________ (freq_plasma_electron_profile84)_ 9.13885559519682770e+10 -Plasma_electron_frequency_at_point_85____________________________________ (freq_plasma_electron_profile85)_ 9.13742606990647278e+10 -Plasma_electron_frequency_at_point_86____________________________________ (freq_plasma_electron_profile86)_ 9.13597939949000397e+10 -Plasma_electron_frequency_at_point_87____________________________________ (freq_plasma_electron_profile87)_ 9.13451557580139008e+10 -Plasma_electron_frequency_at_point_88____________________________________ (freq_plasma_electron_profile88)_ 9.13303459059276276e+10 -Plasma_electron_frequency_at_point_89____________________________________ (freq_plasma_electron_profile89)_ 9.13153643551416931e+10 -Plasma_electron_frequency_at_point_90____________________________________ (freq_plasma_electron_profile90)_ 9.13002110211334229e+10 -Plasma_electron_frequency_at_point_91____________________________________ (freq_plasma_electron_profile91)_ 9.12848858183545380e+10 -Plasma_electron_frequency_at_point_92____________________________________ (freq_plasma_electron_profile92)_ 9.12693886602286530e+10 -Plasma_electron_frequency_at_point_93____________________________________ (freq_plasma_electron_profile93)_ 9.12537194591488953e+10 -Plasma_electron_frequency_at_point_94____________________________________ (freq_plasma_electron_profile94)_ 9.12378781264752197e+10 -Plasma_electron_frequency_at_point_95____________________________________ (freq_plasma_electron_profile95)_ 9.12218645725319366e+10 -Plasma_electron_frequency_at_point_96____________________________________ (freq_plasma_electron_profile96)_ 9.12056787066051788e+10 -Plasma_electron_frequency_at_point_97____________________________________ (freq_plasma_electron_profile97)_ 9.11893204369401398e+10 -Plasma_electron_frequency_at_point_98____________________________________ (freq_plasma_electron_profile98)_ 9.11727896707385406e+10 -Plasma_electron_frequency_at_point_99____________________________________ (freq_plasma_electron_profile99)_ 9.11560863141558075e+10 -Plasma_electron_frequency_at_point_100___________________________________ (freq_plasma_electron_profile100)_ 9.11392102722985229e+10 -Plasma_electron_frequency_at_point_101___________________________________ (freq_plasma_electron_profile101)_ 9.11221614492214661e+10 -Plasma_electron_frequency_at_point_102___________________________________ (freq_plasma_electron_profile102)_ 9.11049397479249878e+10 -Plasma_electron_frequency_at_point_103___________________________________ (freq_plasma_electron_profile103)_ 9.10875450703521118e+10 -Plasma_electron_frequency_at_point_104___________________________________ (freq_plasma_electron_profile104)_ 9.10699773173856049e+10 -Plasma_electron_frequency_at_point_105___________________________________ (freq_plasma_electron_profile105)_ 9.10522363888452301e+10 -Plasma_electron_frequency_at_point_106___________________________________ (freq_plasma_electron_profile106)_ 9.10343221834846954e+10 -Plasma_electron_frequency_at_point_107___________________________________ (freq_plasma_electron_profile107)_ 9.10162345989887695e+10 -Plasma_electron_frequency_at_point_108___________________________________ (freq_plasma_electron_profile108)_ 9.09979735319701843e+10 -Plasma_electron_frequency_at_point_109___________________________________ (freq_plasma_electron_profile109)_ 9.09795388779666748e+10 -Plasma_electron_frequency_at_point_110___________________________________ (freq_plasma_electron_profile110)_ 9.09609305314379272e+10 -Plasma_electron_frequency_at_point_111___________________________________ (freq_plasma_electron_profile111)_ 9.09421483857623901e+10 -Plasma_electron_frequency_at_point_112___________________________________ (freq_plasma_electron_profile112)_ 9.09231923332341614e+10 -Plasma_electron_frequency_at_point_113___________________________________ (freq_plasma_electron_profile113)_ 9.09040622650598755e+10 -Plasma_electron_frequency_at_point_114___________________________________ (freq_plasma_electron_profile114)_ 9.08847580713553467e+10 -Plasma_electron_frequency_at_point_115___________________________________ (freq_plasma_electron_profile115)_ 9.08652796411424713e+10 -Plasma_electron_frequency_at_point_116___________________________________ (freq_plasma_electron_profile116)_ 9.08456268623458557e+10 -Plasma_electron_frequency_at_point_117___________________________________ (freq_plasma_electron_profile117)_ 9.08257996217894287e+10 -Plasma_electron_frequency_at_point_118___________________________________ (freq_plasma_electron_profile118)_ 9.08057978051932526e+10 -Plasma_electron_frequency_at_point_119___________________________________ (freq_plasma_electron_profile119)_ 9.07856212971699219e+10 -Plasma_electron_frequency_at_point_120___________________________________ (freq_plasma_electron_profile120)_ 9.07652699812212830e+10 -Plasma_electron_frequency_at_point_121___________________________________ (freq_plasma_electron_profile121)_ 9.07447437397348175e+10 -Plasma_electron_frequency_at_point_122___________________________________ (freq_plasma_electron_profile122)_ 9.07240424539803009e+10 -Plasma_electron_frequency_at_point_123___________________________________ (freq_plasma_electron_profile123)_ 9.07031660041060181e+10 -Plasma_electron_frequency_at_point_124___________________________________ (freq_plasma_electron_profile124)_ 9.06821142691354218e+10 -Plasma_electron_frequency_at_point_125___________________________________ (freq_plasma_electron_profile125)_ 9.06608871269632568e+10 -Plasma_electron_frequency_at_point_126___________________________________ (freq_plasma_electron_profile126)_ 9.06394844543520966e+10 -Plasma_electron_frequency_at_point_127___________________________________ (freq_plasma_electron_profile127)_ 9.06179061269284210e+10 -Plasma_electron_frequency_at_point_128___________________________________ (freq_plasma_electron_profile128)_ 9.05961520191791382e+10 -Plasma_electron_frequency_at_point_129___________________________________ (freq_plasma_electron_profile129)_ 9.05742220044474640e+10 -Plasma_electron_frequency_at_point_130___________________________________ (freq_plasma_electron_profile130)_ 9.05521159549293976e+10 -Plasma_electron_frequency_at_point_131___________________________________ (freq_plasma_electron_profile131)_ 9.05298337416696320e+10 -Plasma_electron_frequency_at_point_132___________________________________ (freq_plasma_electron_profile132)_ 9.05073752345576782e+10 -Plasma_electron_frequency_at_point_133___________________________________ (freq_plasma_electron_profile133)_ 9.04847403023240814e+10 -Plasma_electron_frequency_at_point_134___________________________________ (freq_plasma_electron_profile134)_ 9.04619288125361328e+10 -Plasma_electron_frequency_at_point_135___________________________________ (freq_plasma_electron_profile135)_ 9.04389406315941010e+10 -Plasma_electron_frequency_at_point_136___________________________________ (freq_plasma_electron_profile136)_ 9.04157756247269592e+10 -Plasma_electron_frequency_at_point_137___________________________________ (freq_plasma_electron_profile137)_ 9.03924336559883728e+10 -Plasma_electron_frequency_at_point_138___________________________________ (freq_plasma_electron_profile138)_ 9.03689145882524567e+10 -Plasma_electron_frequency_at_point_139___________________________________ (freq_plasma_electron_profile139)_ 9.03452182832096405e+10 -Plasma_electron_frequency_at_point_140___________________________________ (freq_plasma_electron_profile140)_ 9.03213446013623505e+10 -Plasma_electron_frequency_at_point_141___________________________________ (freq_plasma_electron_profile141)_ 9.02972934020207520e+10 -Plasma_electron_frequency_at_point_142___________________________________ (freq_plasma_electron_profile142)_ 9.02730645432983551e+10 -Plasma_electron_frequency_at_point_143___________________________________ (freq_plasma_electron_profile143)_ 9.02486578821077423e+10 -Plasma_electron_frequency_at_point_144___________________________________ (freq_plasma_electron_profile144)_ 9.02240732741559448e+10 -Plasma_electron_frequency_at_point_145___________________________________ (freq_plasma_electron_profile145)_ 9.01993105739401550e+10 -Plasma_electron_frequency_at_point_146___________________________________ (freq_plasma_electron_profile146)_ 9.01743696347431488e+10 -Plasma_electron_frequency_at_point_147___________________________________ (freq_plasma_electron_profile147)_ 9.01492503086286621e+10 -Plasma_electron_frequency_at_point_148___________________________________ (freq_plasma_electron_profile148)_ 9.01239524464367981e+10 -Plasma_electron_frequency_at_point_149___________________________________ (freq_plasma_electron_profile149)_ 9.00984758977794342e+10 -Plasma_electron_frequency_at_point_150___________________________________ (freq_plasma_electron_profile150)_ 9.00728205110353851e+10 -Plasma_electron_frequency_at_point_151___________________________________ (freq_plasma_electron_profile151)_ 9.00469861333458405e+10 -Plasma_electron_frequency_at_point_152___________________________________ (freq_plasma_electron_profile152)_ 9.00209726106093445e+10 -Plasma_electron_frequency_at_point_153___________________________________ (freq_plasma_electron_profile153)_ 8.99947797874771118e+10 -Plasma_electron_frequency_at_point_154___________________________________ (freq_plasma_electron_profile154)_ 8.99684075073480377e+10 -Plasma_electron_frequency_at_point_155___________________________________ (freq_plasma_electron_profile155)_ 8.99418556123638153e+10 -Plasma_electron_frequency_at_point_156___________________________________ (freq_plasma_electron_profile156)_ 8.99151239434039001e+10 -Plasma_electron_frequency_at_point_157___________________________________ (freq_plasma_electron_profile157)_ 8.98882123400804291e+10 -Plasma_electron_frequency_at_point_158___________________________________ (freq_plasma_electron_profile158)_ 8.98611206407332458e+10 -Plasma_electron_frequency_at_point_159___________________________________ (freq_plasma_electron_profile159)_ 8.98338486824245911e+10 -Plasma_electron_frequency_at_point_160___________________________________ (freq_plasma_electron_profile160)_ 8.98063963009340820e+10 -Plasma_electron_frequency_at_point_161___________________________________ (freq_plasma_electron_profile161)_ 8.97787633307532959e+10 -Plasma_electron_frequency_at_point_162___________________________________ (freq_plasma_electron_profile162)_ 8.97509496050806122e+10 -Plasma_electron_frequency_at_point_163___________________________________ (freq_plasma_electron_profile163)_ 8.97229549558157959e+10 -Plasma_electron_frequency_at_point_164___________________________________ (freq_plasma_electron_profile164)_ 8.96947792135545654e+10 -Plasma_electron_frequency_at_point_165___________________________________ (freq_plasma_electron_profile165)_ 8.96664222075831909e+10 -Plasma_electron_frequency_at_point_166___________________________________ (freq_plasma_electron_profile166)_ 8.96378837658730164e+10 -Plasma_electron_frequency_at_point_167___________________________________ (freq_plasma_electron_profile167)_ 8.96091637150747681e+10 -Plasma_electron_frequency_at_point_168___________________________________ (freq_plasma_electron_profile168)_ 8.95802618805130768e+10 -Plasma_electron_frequency_at_point_169___________________________________ (freq_plasma_electron_profile169)_ 8.95511780861807556e+10 -Plasma_electron_frequency_at_point_170___________________________________ (freq_plasma_electron_profile170)_ 8.95219121547330170e+10 -Plasma_electron_frequency_at_point_171___________________________________ (freq_plasma_electron_profile171)_ 8.94924639074817810e+10 -Plasma_electron_frequency_at_point_172___________________________________ (freq_plasma_electron_profile172)_ 8.94628331643898010e+10 -Plasma_electron_frequency_at_point_173___________________________________ (freq_plasma_electron_profile173)_ 8.94330197440647736e+10 -Plasma_electron_frequency_at_point_174___________________________________ (freq_plasma_electron_profile174)_ 8.94030234637533875e+10 -Plasma_electron_frequency_at_point_175___________________________________ (freq_plasma_electron_profile175)_ 8.93728441393352814e+10 -Plasma_electron_frequency_at_point_176___________________________________ (freq_plasma_electron_profile176)_ 8.93424815853170471e+10 -Plasma_electron_frequency_at_point_177___________________________________ (freq_plasma_electron_profile177)_ 8.93119356148260651e+10 -Plasma_electron_frequency_at_point_178___________________________________ (freq_plasma_electron_profile178)_ 8.92812060396042938e+10 -Plasma_electron_frequency_at_point_179___________________________________ (freq_plasma_electron_profile179)_ 8.92502926700021362e+10 -Plasma_electron_frequency_at_point_180___________________________________ (freq_plasma_electron_profile180)_ 8.92191953149720001e+10 -Plasma_electron_frequency_at_point_181___________________________________ (freq_plasma_electron_profile181)_ 8.91879137820619965e+10 -Plasma_electron_frequency_at_point_182___________________________________ (freq_plasma_electron_profile182)_ 8.91564478774095612e+10 -Plasma_electron_frequency_at_point_183___________________________________ (freq_plasma_electron_profile183)_ 8.91247974057349091e+10 -Plasma_electron_frequency_at_point_184___________________________________ (freq_plasma_electron_profile184)_ 8.90929621703345184e+10 -Plasma_electron_frequency_at_point_185___________________________________ (freq_plasma_electron_profile185)_ 8.90609419730744934e+10 -Plasma_electron_frequency_at_point_186___________________________________ (freq_plasma_electron_profile186)_ 8.90287366143839569e+10 -Plasma_electron_frequency_at_point_187___________________________________ (freq_plasma_electron_profile187)_ 8.89963458932482147e+10 -Plasma_electron_frequency_at_point_188___________________________________ (freq_plasma_electron_profile188)_ 8.89637696072020416e+10 -Plasma_electron_frequency_at_point_189___________________________________ (freq_plasma_electron_profile189)_ 8.89310075523228149e+10 -Plasma_electron_frequency_at_point_190___________________________________ (freq_plasma_electron_profile190)_ 8.88980595232234955e+10 -Plasma_electron_frequency_at_point_191___________________________________ (freq_plasma_electron_profile191)_ 8.88649253130457458e+10 -Plasma_electron_frequency_at_point_192___________________________________ (freq_plasma_electron_profile192)_ 8.88316047134527893e+10 -Plasma_electron_frequency_at_point_193___________________________________ (freq_plasma_electron_profile193)_ 8.87980975146223602e+10 -Plasma_electron_frequency_at_point_194___________________________________ (freq_plasma_electron_profile194)_ 8.87644035052393951e+10 -Plasma_electron_frequency_at_point_195___________________________________ (freq_plasma_electron_profile195)_ 8.87305224724888458e+10 -Plasma_electron_frequency_at_point_196___________________________________ (freq_plasma_electron_profile196)_ 8.86964542020483704e+10 -Plasma_electron_frequency_at_point_197___________________________________ (freq_plasma_electron_profile197)_ 8.86621984780808411e+10 -Plasma_electron_frequency_at_point_198___________________________________ (freq_plasma_electron_profile198)_ 8.86277550832269287e+10 -Plasma_electron_frequency_at_point_199___________________________________ (freq_plasma_electron_profile199)_ 8.85931237985975647e+10 -Plasma_electron_frequency_at_point_200___________________________________ (freq_plasma_electron_profile200)_ 8.85583044037662811e+10 -Plasma_electron_frequency_at_point_201___________________________________ (freq_plasma_electron_profile201)_ 8.85232966767615967e+10 -Plasma_electron_frequency_at_point_202___________________________________ (freq_plasma_electron_profile202)_ 8.84881003940591431e+10 -Plasma_electron_frequency_at_point_203___________________________________ (freq_plasma_electron_profile203)_ 8.84527153305739288e+10 -Plasma_electron_frequency_at_point_204___________________________________ (freq_plasma_electron_profile204)_ 8.84171412596524200e+10 -Plasma_electron_frequency_at_point_205___________________________________ (freq_plasma_electron_profile205)_ 8.83813779530644836e+10 -Plasma_electron_frequency_at_point_206___________________________________ (freq_plasma_electron_profile206)_ 8.83454251809954071e+10 -Plasma_electron_frequency_at_point_207___________________________________ (freq_plasma_electron_profile207)_ 8.83092827120377045e+10 -Plasma_electron_frequency_at_point_208___________________________________ (freq_plasma_electron_profile208)_ 8.82729503131829529e+10 -Plasma_electron_frequency_at_point_209___________________________________ (freq_plasma_electron_profile209)_ 8.82364277498134460e+10 -Plasma_electron_frequency_at_point_210___________________________________ (freq_plasma_electron_profile210)_ 8.81997147856939392e+10 -Plasma_electron_frequency_at_point_211___________________________________ (freq_plasma_electron_profile211)_ 8.81628111829629822e+10 -Plasma_electron_frequency_at_point_212___________________________________ (freq_plasma_electron_profile212)_ 8.81257167021246338e+10 -Plasma_electron_frequency_at_point_213___________________________________ (freq_plasma_electron_profile213)_ 8.80884311020397186e+10 -Plasma_electron_frequency_at_point_214___________________________________ (freq_plasma_electron_profile214)_ 8.80509541399171143e+10 -Plasma_electron_frequency_at_point_215___________________________________ (freq_plasma_electron_profile215)_ 8.80132855713050690e+10 -Plasma_electron_frequency_at_point_216___________________________________ (freq_plasma_electron_profile216)_ 8.79754251500822754e+10 -Plasma_electron_frequency_at_point_217___________________________________ (freq_plasma_electron_profile217)_ 8.79373726284489288e+10 -Plasma_electron_frequency_at_point_218___________________________________ (freq_plasma_electron_profile218)_ 8.78991277569177704e+10 -Plasma_electron_frequency_at_point_219___________________________________ (freq_plasma_electron_profile219)_ 8.78606902843049011e+10 -Plasma_electron_frequency_at_point_220___________________________________ (freq_plasma_electron_profile220)_ 8.78220599577205353e+10 -Plasma_electron_frequency_at_point_221___________________________________ (freq_plasma_electron_profile221)_ 8.77832365225599060e+10 -Plasma_electron_frequency_at_point_222___________________________________ (freq_plasma_electron_profile222)_ 8.77442197224936829e+10 -Plasma_electron_frequency_at_point_223___________________________________ (freq_plasma_electron_profile223)_ 8.77050092994586334e+10 -Plasma_electron_frequency_at_point_224___________________________________ (freq_plasma_electron_profile224)_ 8.76656049936480103e+10 -Plasma_electron_frequency_at_point_225___________________________________ (freq_plasma_electron_profile225)_ 8.76260065435019073e+10 -Plasma_electron_frequency_at_point_226___________________________________ (freq_plasma_electron_profile226)_ 8.75862136856975861e+10 -Plasma_electron_frequency_at_point_227___________________________________ (freq_plasma_electron_profile227)_ 8.75462261551395569e+10 -Plasma_electron_frequency_at_point_228___________________________________ (freq_plasma_electron_profile228)_ 8.75060436849496765e+10 -Plasma_electron_frequency_at_point_229___________________________________ (freq_plasma_electron_profile229)_ 8.74656660064571991e+10 -Plasma_electron_frequency_at_point_230___________________________________ (freq_plasma_electron_profile230)_ 8.74250928491885681e+10 -Plasma_electron_frequency_at_point_231___________________________________ (freq_plasma_electron_profile231)_ 8.73843239408572998e+10 -Plasma_electron_frequency_at_point_232___________________________________ (freq_plasma_electron_profile232)_ 8.73433590073535614e+10 -Plasma_electron_frequency_at_point_233___________________________________ (freq_plasma_electron_profile233)_ 8.73021977727338409e+10 -Plasma_electron_frequency_at_point_234___________________________________ (freq_plasma_electron_profile234)_ 8.72608399592104492e+10 -Plasma_electron_frequency_at_point_235___________________________________ (freq_plasma_electron_profile235)_ 8.72192852871408539e+10 -Plasma_electron_frequency_at_point_236___________________________________ (freq_plasma_electron_profile236)_ 8.71775334750170135e+10 -Plasma_electron_frequency_at_point_237___________________________________ (freq_plasma_electron_profile237)_ 8.71355842394545441e+10 -Plasma_electron_frequency_at_point_238___________________________________ (freq_plasma_electron_profile238)_ 8.70934372951818085e+10 -Plasma_electron_frequency_at_point_239___________________________________ (freq_plasma_electron_profile239)_ 8.70510923550289307e+10 -Plasma_electron_frequency_at_point_240___________________________________ (freq_plasma_electron_profile240)_ 8.70085491299165802e+10 -Plasma_electron_frequency_at_point_241___________________________________ (freq_plasma_electron_profile241)_ 8.69658073288448029e+10 -Plasma_electron_frequency_at_point_242___________________________________ (freq_plasma_electron_profile242)_ 8.69228666588816986e+10 -Plasma_electron_frequency_at_point_243___________________________________ (freq_plasma_electron_profile243)_ 8.68797268251519012e+10 -Plasma_electron_frequency_at_point_244___________________________________ (freq_plasma_electron_profile244)_ 8.68363875308250732e+10 -Plasma_electron_frequency_at_point_245___________________________________ (freq_plasma_electron_profile245)_ 8.67928484771041718e+10 -Plasma_electron_frequency_at_point_246___________________________________ (freq_plasma_electron_profile246)_ 8.67491093632137604e+10 -Plasma_electron_frequency_at_point_247___________________________________ (freq_plasma_electron_profile247)_ 8.67051698863879547e+10 -Plasma_electron_frequency_at_point_248___________________________________ (freq_plasma_electron_profile248)_ 8.66610297418585510e+10 -Plasma_electron_frequency_at_point_249___________________________________ (freq_plasma_electron_profile249)_ 8.66166886228428192e+10 -Plasma_electron_frequency_at_point_250___________________________________ (freq_plasma_electron_profile250)_ 8.65721462205312805e+10 -Plasma_electron_frequency_at_point_251___________________________________ (freq_plasma_electron_profile251)_ 8.65274022240752563e+10 -Plasma_electron_frequency_at_point_252___________________________________ (freq_plasma_electron_profile252)_ 8.64824563205745544e+10 -Plasma_electron_frequency_at_point_253___________________________________ (freq_plasma_electron_profile253)_ 8.64373081950646210e+10 -Plasma_electron_frequency_at_point_254___________________________________ (freq_plasma_electron_profile254)_ 8.63919575305039978e+10 -Plasma_electron_frequency_at_point_255___________________________________ (freq_plasma_electron_profile255)_ 8.63464040077613525e+10 -Plasma_electron_frequency_at_point_256___________________________________ (freq_plasma_electron_profile256)_ 8.63006473056025848e+10 -Plasma_electron_frequency_at_point_257___________________________________ (freq_plasma_electron_profile257)_ 8.62546871006775665e+10 -Plasma_electron_frequency_at_point_258___________________________________ (freq_plasma_electron_profile258)_ 8.62085230675070648e+10 -Plasma_electron_frequency_at_point_259___________________________________ (freq_plasma_electron_profile259)_ 8.61621548784692383e+10 -Plasma_electron_frequency_at_point_260___________________________________ (freq_plasma_electron_profile260)_ 8.61155822037862549e+10 -Plasma_electron_frequency_at_point_261___________________________________ (freq_plasma_electron_profile261)_ 8.60688047115105133e+10 -Plasma_electron_frequency_at_point_262___________________________________ (freq_plasma_electron_profile262)_ 8.60218220675109863e+10 -Plasma_electron_frequency_at_point_263___________________________________ (freq_plasma_electron_profile263)_ 8.59746339354592896e+10 -Plasma_electron_frequency_at_point_264___________________________________ (freq_plasma_electron_profile264)_ 8.59272399768155975e+10 -Plasma_electron_frequency_at_point_265___________________________________ (freq_plasma_electron_profile265)_ 8.58796398508145142e+10 -Plasma_electron_frequency_at_point_266___________________________________ (freq_plasma_electron_profile266)_ 8.58318332144506683e+10 -Plasma_electron_frequency_at_point_267___________________________________ (freq_plasma_electron_profile267)_ 8.57838197224643860e+10 -Plasma_electron_frequency_at_point_268___________________________________ (freq_plasma_electron_profile268)_ 8.57355990273269196e+10 -Plasma_electron_frequency_at_point_269___________________________________ (freq_plasma_electron_profile269)_ 8.56871707792258301e+10 -Plasma_electron_frequency_at_point_270___________________________________ (freq_plasma_electron_profile270)_ 8.56385346260500183e+10 -Plasma_electron_frequency_at_point_271___________________________________ (freq_plasma_electron_profile271)_ 8.55896902133746643e+10 -Plasma_electron_frequency_at_point_272___________________________________ (freq_plasma_electron_profile272)_ 8.55406371844460754e+10 -Plasma_electron_frequency_at_point_273___________________________________ (freq_plasma_electron_profile273)_ 8.54913751801662750e+10 -Plasma_electron_frequency_at_point_274___________________________________ (freq_plasma_electron_profile274)_ 8.54419038390776367e+10 -Plasma_electron_frequency_at_point_275___________________________________ (freq_plasma_electron_profile275)_ 8.53922227973469849e+10 -Plasma_electron_frequency_at_point_276___________________________________ (freq_plasma_electron_profile276)_ 8.53423316887500153e+10 -Plasma_electron_frequency_at_point_277___________________________________ (freq_plasma_electron_profile277)_ 8.52922301446551666e+10 -Plasma_electron_frequency_at_point_278___________________________________ (freq_plasma_electron_profile278)_ 8.52419177940075684e+10 -Plasma_electron_frequency_at_point_279___________________________________ (freq_plasma_electron_profile279)_ 8.51913942633126831e+10 -Plasma_electron_frequency_at_point_280___________________________________ (freq_plasma_electron_profile280)_ 8.51406591766198883e+10 -Plasma_electron_frequency_at_point_281___________________________________ (freq_plasma_electron_profile281)_ 8.50897121555057831e+10 -Plasma_electron_frequency_at_point_282___________________________________ (freq_plasma_electron_profile282)_ 8.50385528190574951e+10 -Plasma_electron_frequency_at_point_283___________________________________ (freq_plasma_electron_profile283)_ 8.49871807838556061e+10 -Plasma_electron_frequency_at_point_284___________________________________ (freq_plasma_electron_profile284)_ 8.49355956639570618e+10 -Plasma_electron_frequency_at_point_285___________________________________ (freq_plasma_electron_profile285)_ 8.48837970708778229e+10 -Plasma_electron_frequency_at_point_286___________________________________ (freq_plasma_electron_profile286)_ 8.48317846135754395e+10 -Plasma_electron_frequency_at_point_287___________________________________ (freq_plasma_electron_profile287)_ 8.47795578984312592e+10 -Plasma_electron_frequency_at_point_288___________________________________ (freq_plasma_electron_profile288)_ 8.47271165292327576e+10 -Plasma_electron_frequency_at_point_289___________________________________ (freq_plasma_electron_profile289)_ 8.46744601071553040e+10 -Plasma_electron_frequency_at_point_290___________________________________ (freq_plasma_electron_profile290)_ 8.46215882307440796e+10 -Plasma_electron_frequency_at_point_291___________________________________ (freq_plasma_electron_profile291)_ 8.45685004958955994e+10 -Plasma_electron_frequency_at_point_292___________________________________ (freq_plasma_electron_profile292)_ 8.45151964958391724e+10 -Plasma_electron_frequency_at_point_293___________________________________ (freq_plasma_electron_profile293)_ 8.44616758211180573e+10 -Plasma_electron_frequency_at_point_294___________________________________ (freq_plasma_electron_profile294)_ 8.44079380595704956e+10 -Plasma_electron_frequency_at_point_295___________________________________ (freq_plasma_electron_profile295)_ 8.43539827963105927e+10 -Plasma_electron_frequency_at_point_296___________________________________ (freq_plasma_electron_profile296)_ 8.42998096137088470e+10 -Plasma_electron_frequency_at_point_297___________________________________ (freq_plasma_electron_profile297)_ 8.42454180913726196e+10 -Plasma_electron_frequency_at_point_298___________________________________ (freq_plasma_electron_profile298)_ 8.41908078061263733e+10 -Plasma_electron_frequency_at_point_299___________________________________ (freq_plasma_electron_profile299)_ 8.41359783319916382e+10 -Plasma_electron_frequency_at_point_300___________________________________ (freq_plasma_electron_profile300)_ 8.40809292401668396e+10 -Plasma_electron_frequency_at_point_301___________________________________ (freq_plasma_electron_profile301)_ 8.40256600990068970e+10 -Plasma_electron_frequency_at_point_302___________________________________ (freq_plasma_electron_profile302)_ 8.39701704740026093e+10 -Plasma_electron_frequency_at_point_303___________________________________ (freq_plasma_electron_profile303)_ 8.39144599277597809e+10 -Plasma_electron_frequency_at_point_304___________________________________ (freq_plasma_electron_profile304)_ 8.38585280199781494e+10 -Plasma_electron_frequency_at_point_305___________________________________ (freq_plasma_electron_profile305)_ 8.38023743074302216e+10 -Plasma_electron_frequency_at_point_306___________________________________ (freq_plasma_electron_profile306)_ 8.37459983439396667e+10 -Plasma_electron_frequency_at_point_307___________________________________ (freq_plasma_electron_profile307)_ 8.36893996803595734e+10 -Plasma_electron_frequency_at_point_308___________________________________ (freq_plasma_electron_profile308)_ 8.36325778645505524e+10 -Plasma_electron_frequency_at_point_309___________________________________ (freq_plasma_electron_profile309)_ 8.35755324413585510e+10 -Plasma_electron_frequency_at_point_310___________________________________ (freq_plasma_electron_profile310)_ 8.35182629525923462e+10 -Plasma_electron_frequency_at_point_311___________________________________ (freq_plasma_electron_profile311)_ 8.34607689370009766e+10 -Plasma_electron_frequency_at_point_312___________________________________ (freq_plasma_electron_profile312)_ 8.34030499302507172e+10 -Plasma_electron_frequency_at_point_313___________________________________ (freq_plasma_electron_profile313)_ 8.33451054649020233e+10 -Plasma_electron_frequency_at_point_314___________________________________ (freq_plasma_electron_profile314)_ 8.32869350703860931e+10 -Plasma_electron_frequency_at_point_315___________________________________ (freq_plasma_electron_profile315)_ 8.32285382729812164e+10 -Plasma_electron_frequency_at_point_316___________________________________ (freq_plasma_electron_profile316)_ 8.31699145957888336e+10 -Plasma_electron_frequency_at_point_317___________________________________ (freq_plasma_electron_profile317)_ 8.31110635587094421e+10 -Plasma_electron_frequency_at_point_318___________________________________ (freq_plasma_electron_profile318)_ 8.30519846784180756e+10 -Plasma_electron_frequency_at_point_319___________________________________ (freq_plasma_electron_profile319)_ 8.29926774683397217e+10 -Plasma_electron_frequency_at_point_320___________________________________ (freq_plasma_electron_profile320)_ 8.29331414386242523e+10 -Plasma_electron_frequency_at_point_321___________________________________ (freq_plasma_electron_profile321)_ 8.28733760961213074e+10 -Plasma_electron_frequency_at_point_322___________________________________ (freq_plasma_electron_profile322)_ 8.28133809443546753e+10 -Plasma_electron_frequency_at_point_323___________________________________ (freq_plasma_electron_profile323)_ 8.27531554834965820e+10 -Plasma_electron_frequency_at_point_324___________________________________ (freq_plasma_electron_profile324)_ 8.26926992103416443e+10 -Plasma_electron_frequency_at_point_325___________________________________ (freq_plasma_electron_profile325)_ 8.26320116182804413e+10 -Plasma_electron_frequency_at_point_326___________________________________ (freq_plasma_electron_profile326)_ 8.25710921972729645e+10 -Plasma_electron_frequency_at_point_327___________________________________ (freq_plasma_electron_profile327)_ 8.25099404338216248e+10 -Plasma_electron_frequency_at_point_328___________________________________ (freq_plasma_electron_profile328)_ 8.24485558109440155e+10 -Plasma_electron_frequency_at_point_329___________________________________ (freq_plasma_electron_profile329)_ 8.23869378081454620e+10 -Plasma_electron_frequency_at_point_330___________________________________ (freq_plasma_electron_profile330)_ 8.23250859013911438e+10 -Plasma_electron_frequency_at_point_331___________________________________ (freq_plasma_electron_profile331)_ 8.22629995630778961e+10 -Plasma_electron_frequency_at_point_332___________________________________ (freq_plasma_electron_profile332)_ 8.22006782620058136e+10 -Plasma_electron_frequency_at_point_333___________________________________ (freq_plasma_electron_profile333)_ 8.21381214633495178e+10 -Plasma_electron_frequency_at_point_334___________________________________ (freq_plasma_electron_profile334)_ 8.20753286286289825e+10 -Plasma_electron_frequency_at_point_335___________________________________ (freq_plasma_electron_profile335)_ 8.20122992156801453e+10 -Plasma_electron_frequency_at_point_336___________________________________ (freq_plasma_electron_profile336)_ 8.19490326786251831e+10 -Plasma_electron_frequency_at_point_337___________________________________ (freq_plasma_electron_profile337)_ 8.18855284678423615e+10 -Plasma_electron_frequency_at_point_338___________________________________ (freq_plasma_electron_profile338)_ 8.18217860299357452e+10 -Plasma_electron_frequency_at_point_339___________________________________ (freq_plasma_electron_profile339)_ 8.17578048077042999e+10 -Plasma_electron_frequency_at_point_340___________________________________ (freq_plasma_electron_profile340)_ 8.16935842401108398e+10 -Plasma_electron_frequency_at_point_341___________________________________ (freq_plasma_electron_profile341)_ 8.16291237622505341e+10 -Plasma_electron_frequency_at_point_342___________________________________ (freq_plasma_electron_profile342)_ 8.15644228053191528e+10 -Plasma_electron_frequency_at_point_343___________________________________ (freq_plasma_electron_profile343)_ 8.14994807965807648e+10 -Plasma_electron_frequency_at_point_344___________________________________ (freq_plasma_electron_profile344)_ 8.14342971593353271e+10 -Plasma_electron_frequency_at_point_345___________________________________ (freq_plasma_electron_profile345)_ 8.13688713128856506e+10 -Plasma_electron_frequency_at_point_346___________________________________ (freq_plasma_electron_profile346)_ 8.13032026725041046e+10 -Plasma_electron_frequency_at_point_347___________________________________ (freq_plasma_electron_profile347)_ 8.12372906493990173e+10 -Plasma_electron_frequency_at_point_348___________________________________ (freq_plasma_electron_profile348)_ 8.11711346506805115e+10 -Plasma_electron_frequency_at_point_349___________________________________ (freq_plasma_electron_profile349)_ 8.11047340793261108e+10 -Plasma_electron_frequency_at_point_350___________________________________ (freq_plasma_electron_profile350)_ 8.10380883341458282e+10 -Plasma_electron_frequency_at_point_351___________________________________ (freq_plasma_electron_profile351)_ 8.09711968097468414e+10 -Plasma_electron_frequency_at_point_352___________________________________ (freq_plasma_electron_profile352)_ 8.09040588964980011e+10 -Plasma_electron_frequency_at_point_353___________________________________ (freq_plasma_electron_profile353)_ 8.08366739804935150e+10 -Plasma_electron_frequency_at_point_354___________________________________ (freq_plasma_electron_profile354)_ 8.07690414435165558e+10 -Plasma_electron_frequency_at_point_355___________________________________ (freq_plasma_electron_profile355)_ 8.07011606630023499e+10 -Plasma_electron_frequency_at_point_356___________________________________ (freq_plasma_electron_profile356)_ 8.06330310120006409e+10 -Plasma_electron_frequency_at_point_357___________________________________ (freq_plasma_electron_profile357)_ 8.05646518591380768e+10 -Plasma_electron_frequency_at_point_358___________________________________ (freq_plasma_electron_profile358)_ 8.04960225685797882e+10 -Plasma_electron_frequency_at_point_359___________________________________ (freq_plasma_electron_profile359)_ 8.04271424999906921e+10 -Plasma_electron_frequency_at_point_360___________________________________ (freq_plasma_electron_profile360)_ 8.03580110084964294e+10 -Plasma_electron_frequency_at_point_361___________________________________ (freq_plasma_electron_profile361)_ 8.02886274446436157e+10 -Plasma_electron_frequency_at_point_362___________________________________ (freq_plasma_electron_profile362)_ 8.02189911543597412e+10 -Plasma_electron_frequency_at_point_363___________________________________ (freq_plasma_electron_profile363)_ 8.01491014789126282e+10 -Plasma_electron_frequency_at_point_364___________________________________ (freq_plasma_electron_profile364)_ 8.00789577548693085e+10 -Plasma_electron_frequency_at_point_365___________________________________ (freq_plasma_electron_profile365)_ 8.00085593140544739e+10 -Plasma_electron_frequency_at_point_366___________________________________ (freq_plasma_electron_profile366)_ 7.99379054835083923e+10 -Plasma_electron_frequency_at_point_367___________________________________ (freq_plasma_electron_profile367)_ 7.98669955854443665e+10 -Plasma_electron_frequency_at_point_368___________________________________ (freq_plasma_electron_profile368)_ 7.97958289372056122e+10 -Plasma_electron_frequency_at_point_369___________________________________ (freq_plasma_electron_profile369)_ 7.97244048512216492e+10 -Plasma_electron_frequency_at_point_370___________________________________ (freq_plasma_electron_profile370)_ 7.96527226349641266e+10 -Plasma_electron_frequency_at_point_371___________________________________ (freq_plasma_electron_profile371)_ 7.95807815909022064e+10 -Plasma_electron_frequency_at_point_372___________________________________ (freq_plasma_electron_profile372)_ 7.95085810164572906e+10 -Plasma_electron_frequency_at_point_373___________________________________ (freq_plasma_electron_profile373)_ 7.94361202039572754e+10 -Plasma_electron_frequency_at_point_374___________________________________ (freq_plasma_electron_profile374)_ 7.93633984405901337e+10 -Plasma_electron_frequency_at_point_375___________________________________ (freq_plasma_electron_profile375)_ 7.92904150083571167e+10 -Plasma_electron_frequency_at_point_376___________________________________ (freq_plasma_electron_profile376)_ 7.92171691840251160e+10 -Plasma_electron_frequency_at_point_377___________________________________ (freq_plasma_electron_profile377)_ 7.91436602390787659e+10 -Plasma_electron_frequency_at_point_378___________________________________ (freq_plasma_electron_profile378)_ 7.90698874396716003e+10 -Plasma_electron_frequency_at_point_379___________________________________ (freq_plasma_electron_profile379)_ 7.89958500465768585e+10 -Plasma_electron_frequency_at_point_380___________________________________ (freq_plasma_electron_profile380)_ 7.89215473151375580e+10 -Plasma_electron_frequency_at_point_381___________________________________ (freq_plasma_electron_profile381)_ 7.88469784952160187e+10 -Plasma_electron_frequency_at_point_382___________________________________ (freq_plasma_electron_profile382)_ 7.87721428311426697e+10 -Plasma_electron_frequency_at_point_383___________________________________ (freq_plasma_electron_profile383)_ 7.86970395616642303e+10 -Plasma_electron_frequency_at_point_384___________________________________ (freq_plasma_electron_profile384)_ 7.86216679198913116e+10 -Plasma_electron_frequency_at_point_385___________________________________ (freq_plasma_electron_profile385)_ 7.85460271332453461e+10 -Plasma_electron_frequency_at_point_386___________________________________ (freq_plasma_electron_profile386)_ 7.84701164234046478e+10 -Plasma_electron_frequency_at_point_387___________________________________ (freq_plasma_electron_profile387)_ 7.83939350062500916e+10 -Plasma_electron_frequency_at_point_388___________________________________ (freq_plasma_electron_profile388)_ 7.83174820918099518e+10 -Plasma_electron_frequency_at_point_389___________________________________ (freq_plasma_electron_profile389)_ 7.82407568842039032e+10 -Plasma_electron_frequency_at_point_390___________________________________ (freq_plasma_electron_profile390)_ 7.81637585815865784e+10 -Plasma_electron_frequency_at_point_391___________________________________ (freq_plasma_electron_profile391)_ 7.80864863760901947e+10 -Plasma_electron_frequency_at_point_392___________________________________ (freq_plasma_electron_profile392)_ 7.80089394537665100e+10 -Plasma_electron_frequency_at_point_393___________________________________ (freq_plasma_electron_profile393)_ 7.79311169945280609e+10 -Plasma_electron_frequency_at_point_394___________________________________ (freq_plasma_electron_profile394)_ 7.78530181720885620e+10 -Plasma_electron_frequency_at_point_395___________________________________ (freq_plasma_electron_profile395)_ 7.77746421539026031e+10 -Plasma_electron_frequency_at_point_396___________________________________ (freq_plasma_electron_profile396)_ 7.76959881011045380e+10 -Plasma_electron_frequency_at_point_397___________________________________ (freq_plasma_electron_profile397)_ 7.76170551684465179e+10 -Plasma_electron_frequency_at_point_398___________________________________ (freq_plasma_electron_profile398)_ 7.75378425042358704e+10 -Plasma_electron_frequency_at_point_399___________________________________ (freq_plasma_electron_profile399)_ 7.74583492502714233e+10 -Plasma_electron_frequency_at_point_400___________________________________ (freq_plasma_electron_profile400)_ 7.73785745417791901e+10 -Plasma_electron_frequency_at_point_401___________________________________ (freq_plasma_electron_profile401)_ 7.72985175073471527e+10 -Plasma_electron_frequency_at_point_402___________________________________ (freq_plasma_electron_profile402)_ 7.72181772688591309e+10 -Plasma_electron_frequency_at_point_403___________________________________ (freq_plasma_electron_profile403)_ 7.71375529414277802e+10 -Plasma_electron_frequency_at_point_404___________________________________ (freq_plasma_electron_profile404)_ 7.70566436333267212e+10 -Plasma_electron_frequency_at_point_405___________________________________ (freq_plasma_electron_profile405)_ 7.69754484459218597e+10 -Plasma_electron_frequency_at_point_406___________________________________ (freq_plasma_electron_profile406)_ 7.68939664736015167e+10 -Plasma_electron_frequency_at_point_407___________________________________ (freq_plasma_electron_profile407)_ 7.68121968037059631e+10 -Plasma_electron_frequency_at_point_408___________________________________ (freq_plasma_electron_profile408)_ 7.67301385164557037e+10 -Plasma_electron_frequency_at_point_409___________________________________ (freq_plasma_electron_profile409)_ 7.66477906848789978e+10 -Plasma_electron_frequency_at_point_410___________________________________ (freq_plasma_electron_profile410)_ 7.65651523747382660e+10 -Plasma_electron_frequency_at_point_411___________________________________ (freq_plasma_electron_profile411)_ 7.64822226444555817e+10 -Plasma_electron_frequency_at_point_412___________________________________ (freq_plasma_electron_profile412)_ 7.63990005450371094e+10 -Plasma_electron_frequency_at_point_413___________________________________ (freq_plasma_electron_profile413)_ 7.63154851199964905e+10 -Plasma_electron_frequency_at_point_414___________________________________ (freq_plasma_electron_profile414)_ 7.62316754052772675e+10 -Plasma_electron_frequency_at_point_415___________________________________ (freq_plasma_electron_profile415)_ 7.61475704291740570e+10 -Plasma_electron_frequency_at_point_416___________________________________ (freq_plasma_electron_profile416)_ 7.60631692122528534e+10 -Plasma_electron_frequency_at_point_417___________________________________ (freq_plasma_electron_profile417)_ 7.59784707672701416e+10 -Plasma_electron_frequency_at_point_418___________________________________ (freq_plasma_electron_profile418)_ 7.58934740990907135e+10 -Plasma_electron_frequency_at_point_419___________________________________ (freq_plasma_electron_profile419)_ 7.58081782046047058e+10 -Plasma_electron_frequency_at_point_420___________________________________ (freq_plasma_electron_profile420)_ 7.57225820726431427e+10 -Plasma_electron_frequency_at_point_421___________________________________ (freq_plasma_electron_profile421)_ 7.56366846838924408e+10 -Plasma_electron_frequency_at_point_422___________________________________ (freq_plasma_electron_profile422)_ 7.55504850108077393e+10 -Plasma_electron_frequency_at_point_423___________________________________ (freq_plasma_electron_profile423)_ 7.54639820175248871e+10 -Plasma_electron_frequency_at_point_424___________________________________ (freq_plasma_electron_profile424)_ 7.53771746597713318e+10 -Plasma_electron_frequency_at_point_425___________________________________ (freq_plasma_electron_profile425)_ 7.52900618847756653e+10 -Plasma_electron_frequency_at_point_426___________________________________ (freq_plasma_electron_profile426)_ 7.52026426311758575e+10 -Plasma_electron_frequency_at_point_427___________________________________ (freq_plasma_electron_profile427)_ 7.51149158289261780e+10 -Plasma_electron_frequency_at_point_428___________________________________ (freq_plasma_electron_profile428)_ 7.50268803992029724e+10 -Plasma_electron_frequency_at_point_429___________________________________ (freq_plasma_electron_profile429)_ 7.49385352543086700e+10 -Plasma_electron_frequency_at_point_430___________________________________ (freq_plasma_electron_profile430)_ 7.48498792975749817e+10 -Plasma_electron_frequency_at_point_431___________________________________ (freq_plasma_electron_profile431)_ 7.47609114232641296e+10 -Plasma_electron_frequency_at_point_432___________________________________ (freq_plasma_electron_profile432)_ 7.46716305164690247e+10 -Plasma_electron_frequency_at_point_433___________________________________ (freq_plasma_electron_profile433)_ 7.45820354530118103e+10 -Plasma_electron_frequency_at_point_434___________________________________ (freq_plasma_electron_profile434)_ 7.44921250993410339e+10 -Plasma_electron_frequency_at_point_435___________________________________ (freq_plasma_electron_profile435)_ 7.44018983124272156e+10 -Plasma_electron_frequency_at_point_436___________________________________ (freq_plasma_electron_profile436)_ 7.43113539396569214e+10 -Plasma_electron_frequency_at_point_437___________________________________ (freq_plasma_electron_profile437)_ 7.42204908187253265e+10 -Plasma_electron_frequency_at_point_438___________________________________ (freq_plasma_electron_profile438)_ 7.41293077775270844e+10 -Plasma_electron_frequency_at_point_439___________________________________ (freq_plasma_electron_profile439)_ 7.40378036340456543e+10 -Plasma_electron_frequency_at_point_440___________________________________ (freq_plasma_electron_profile440)_ 7.39459771962409973e+10 -Plasma_electron_frequency_at_point_441___________________________________ (freq_plasma_electron_profile441)_ 7.38538272619354553e+10 -Plasma_electron_frequency_at_point_442___________________________________ (freq_plasma_electron_profile442)_ 7.37613526186981659e+10 -Plasma_electron_frequency_at_point_443___________________________________ (freq_plasma_electron_profile443)_ 7.36685520437274628e+10 -Plasma_electron_frequency_at_point_444___________________________________ (freq_plasma_electron_profile444)_ 7.35754243037317047e+10 -Plasma_electron_frequency_at_point_445___________________________________ (freq_plasma_electron_profile445)_ 7.34819681548081970e+10 -Plasma_electron_frequency_at_point_446___________________________________ (freq_plasma_electron_profile446)_ 7.33881823423203430e+10 -Plasma_electron_frequency_at_point_447___________________________________ (freq_plasma_electron_profile447)_ 7.32940656007728271e+10 -Plasma_electron_frequency_at_point_448___________________________________ (freq_plasma_electron_profile448)_ 7.31996166536850586e+10 -Plasma_electron_frequency_at_point_449___________________________________ (freq_plasma_electron_profile449)_ 7.31048342134624023e+10 -Plasma_electron_frequency_at_point_450___________________________________ (freq_plasma_electron_profile450)_ 7.30097169812657013e+10 -Plasma_electron_frequency_at_point_451___________________________________ (freq_plasma_electron_profile451)_ 7.29142636468786926e+10 -Plasma_electron_frequency_at_point_452___________________________________ (freq_plasma_electron_profile452)_ 7.28184728885732269e+10 -Plasma_electron_frequency_at_point_453___________________________________ (freq_plasma_electron_profile453)_ 7.27223433729726105e+10 -Plasma_electron_frequency_at_point_454___________________________________ (freq_plasma_electron_profile454)_ 7.26258737549126587e+10 -Plasma_electron_frequency_at_point_455___________________________________ (freq_plasma_electron_profile455)_ 7.25290626773006897e+10 -Plasma_electron_frequency_at_point_456___________________________________ (freq_plasma_electron_profile456)_ 7.24319087709721527e+10 -Plasma_electron_frequency_at_point_457___________________________________ (freq_plasma_electron_profile457)_ 7.23344106545451508e+10 -Plasma_electron_frequency_at_point_458___________________________________ (freq_plasma_electron_profile458)_ 7.22365669342725372e+10 -Plasma_electron_frequency_at_point_459___________________________________ (freq_plasma_electron_profile459)_ 7.21383762038917694e+10 -Plasma_electron_frequency_at_point_460___________________________________ (freq_plasma_electron_profile460)_ 7.20398370444723053e+10 -Plasma_electron_frequency_at_point_461___________________________________ (freq_plasma_electron_profile461)_ 7.19409480242604828e+10 -Plasma_electron_frequency_at_point_462___________________________________ (freq_plasma_electron_profile462)_ 7.18417076985221405e+10 -Plasma_electron_frequency_at_point_463___________________________________ (freq_plasma_electron_profile463)_ 7.17421146093824158e+10 -Plasma_electron_frequency_at_point_464___________________________________ (freq_plasma_electron_profile464)_ 7.16421672856631927e+10 -Plasma_electron_frequency_at_point_465___________________________________ (freq_plasma_electron_profile465)_ 7.15418642427177429e+10 -Plasma_electron_frequency_at_point_466___________________________________ (freq_plasma_electron_profile466)_ 7.14412039822628174e+10 -Plasma_electron_frequency_at_point_467___________________________________ (freq_plasma_electron_profile467)_ 7.13401849922078247e+10 -Plasma_electron_frequency_at_point_468___________________________________ (freq_plasma_electron_profile468)_ 7.12388057464813538e+10 -Plasma_electron_frequency_at_point_469___________________________________ (freq_plasma_electron_profile469)_ 7.11370647048547821e+10 -Plasma_electron_frequency_at_point_470___________________________________ (freq_plasma_electron_profile470)_ 7.10349603127629547e+10 -Plasma_electron_frequency_at_point_471___________________________________ (freq_plasma_electron_profile471)_ 7.05457811314517212e+10 -Plasma_electron_frequency_at_point_472___________________________________ (freq_plasma_electron_profile472)_ 7.00531861106800232e+10 -Plasma_electron_frequency_at_point_473___________________________________ (freq_plasma_electron_profile473)_ 6.95571026787951508e+10 -Plasma_electron_frequency_at_point_474___________________________________ (freq_plasma_electron_profile474)_ 6.90574556574403076e+10 -Plasma_electron_frequency_at_point_475___________________________________ (freq_plasma_electron_profile475)_ 6.85541671285576553e+10 -Plasma_electron_frequency_at_point_476___________________________________ (freq_plasma_electron_profile476)_ 6.80471562925380096e+10 -Plasma_electron_frequency_at_point_477___________________________________ (freq_plasma_electron_profile477)_ 6.75363393167854156e+10 -Plasma_electron_frequency_at_point_478___________________________________ (freq_plasma_electron_profile478)_ 6.70216291738932419e+10 -Plasma_electron_frequency_at_point_479___________________________________ (freq_plasma_electron_profile479)_ 6.65029354685470963e+10 -Plasma_electron_frequency_at_point_480___________________________________ (freq_plasma_electron_profile480)_ 6.59801642521797562e+10 -Plasma_electron_frequency_at_point_481___________________________________ (freq_plasma_electron_profile481)_ 6.54532178243018112e+10 -Plasma_electron_frequency_at_point_482___________________________________ (freq_plasma_electron_profile482)_ 6.49219945193181992e+10 -Plasma_electron_frequency_at_point_483___________________________________ (freq_plasma_electron_profile483)_ 6.43863884775133438e+10 -Plasma_electron_frequency_at_point_484___________________________________ (freq_plasma_electron_profile484)_ 6.38462893987437973e+10 -Plasma_electron_frequency_at_point_485___________________________________ (freq_plasma_electron_profile485)_ 6.33015822772150421e+10 -Plasma_electron_frequency_at_point_486___________________________________ (freq_plasma_electron_profile486)_ 6.27521471155362701e+10 -Plasma_electron_frequency_at_point_487___________________________________ (freq_plasma_electron_profile487)_ 6.21978586160390778e+10 -Plasma_electron_frequency_at_point_488___________________________________ (freq_plasma_electron_profile488)_ 6.16385858471109619e+10 -Plasma_electron_frequency_at_point_489___________________________________ (freq_plasma_electron_profile489)_ 6.10741918820261536e+10 -Plasma_electron_frequency_at_point_490___________________________________ (freq_plasma_electron_profile490)_ 6.05045334074516296e+10 -Plasma_electron_frequency_at_point_491___________________________________ (freq_plasma_electron_profile491)_ 5.99294602984568100e+10 -Plasma_electron_frequency_at_point_492___________________________________ (freq_plasma_electron_profile492)_ 5.93488151564560928e+10 -Plasma_electron_frequency_at_point_493___________________________________ (freq_plasma_electron_profile493)_ 5.87624328060545273e+10 -Plasma_electron_frequency_at_point_494___________________________________ (freq_plasma_electron_profile494)_ 5.81701397462388382e+10 -Plasma_electron_frequency_at_point_495___________________________________ (freq_plasma_electron_profile495)_ 5.75717535507460098e+10 -Plasma_electron_frequency_at_point_496___________________________________ (freq_plasma_electron_profile496)_ 5.69670822117362518e+10 -Plasma_electron_frequency_at_point_497___________________________________ (freq_plasma_electron_profile497)_ 5.63559234200771255e+10 -Plasma_electron_frequency_at_point_498___________________________________ (freq_plasma_electron_profile498)_ 5.57380637745919418e+10 -Plasma_electron_frequency_at_point_499___________________________________ (freq_plasma_electron_profile499)_ 5.51132779115102158e+10 -Plasma_electron_frequency_at_point_500___________________________________ (freq_plasma_electron_profile500)_ 5.44813275440516510e+10 -Volume_averaged_electron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_electron_vol_avg)_ 1.39149292125728821e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_electron_profile0)_ 2.08723938188593231e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_electron_profile1)_ 2.08515630865051697e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_electron_profile2)_ 2.08307738910051666e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_electron_profile3)_ 2.08100261082451996e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_electron_profile4)_ 2.07893196146051575e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_electron_profile5)_ 2.07686542869564423e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_electron_profile6)_ 2.07480300026595642e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_electron_profile7)_ 2.07274466395616913e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_electron_profile8)_ 2.07069040759942322e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_electron_profile9)_ 2.06864021907704803e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_electron_profile10)_ 2.06659408631831696e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_electron_profile11)_ 2.06455199730021576e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_electron_profile12)_ 2.06251394004720459e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_electron_profile13)_ 2.06047990263098419e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_electron_profile14)_ 2.05844987317026398e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_electron_profile15)_ 2.05642383983052948e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_electron_profile16)_ 2.05440179082381348e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_electron_profile17)_ 2.05238371440846558e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_electron_profile18)_ 2.05036959888892853e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_electron_profile19)_ 2.04835943261550812e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_electron_profile20)_ 2.04635320398415100e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_electron_profile21)_ 2.04435090143622162e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_electron_profile22)_ 2.04235251345827789e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_electron_profile23)_ 2.04035802858185364e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_electron_profile24)_ 2.03836743538323730e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_electron_profile25)_ 2.03638072248325348e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_electron_profile26)_ 2.03439787854704803e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_electron_profile27)_ 2.03241889228386963e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_electron_profile28)_ 2.03044375244685944e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_electron_profile29)_ 2.02847244783283295e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_electron_profile30)_ 2.02650496728207397e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_electron_profile31)_ 2.02454129967811859e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_electron_profile32)_ 2.02258143394754913e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_electron_profile33)_ 2.02062535905978577e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_electron_profile34)_ 2.01867306402687744e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_electron_profile35)_ 2.01672453790329926e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_electron_profile36)_ 2.01477976978574585e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_electron_profile37)_ 2.01283874881292694e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_electron_profile38)_ 2.01090146416536865e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_electron_profile39)_ 2.00896790506520996e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_electron_profile40)_ 2.00703806077600189e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_electron_profile41)_ 2.00511192060251251e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_electron_profile42)_ 2.00318947389052551e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_electron_profile43)_ 2.00127071002664581e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_electron_profile44)_ 1.99935561843810364e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_electron_profile45)_ 1.99744418859256012e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_electron_profile46)_ 1.99553640999791656e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_electron_profile47)_ 1.99363227220211639e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_electron_profile48)_ 1.99173176479296326e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_electron_profile49)_ 1.98983487739792206e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_electron_profile50)_ 1.98794159968393738e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_electron_profile51)_ 1.98605192135724182e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_electron_profile52)_ 1.98416583216316986e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_electron_profile53)_ 1.98228332188597565e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_electron_profile54)_ 1.98040438034864258e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_electron_profile55)_ 1.97852899741270691e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_electron_profile56)_ 1.97665716297806824e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_electron_profile57)_ 1.97478886698281464e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_electron_profile58)_ 1.97292409940303894e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_electron_profile59)_ 1.97106285025265839e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_electron_profile60)_ 1.96920510958324066e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_electron_profile61)_ 1.96735086748382141e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_electron_profile62)_ 1.96550011408073212e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_electron_profile63)_ 1.96365283953742310e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_electron_profile64)_ 1.96180903405428925e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_electron_profile65)_ 1.95996868786849731e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_electron_profile66)_ 1.95813179125381256e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_electron_profile67)_ 1.95629833452042938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_electron_profile68)_ 1.95446830801479736e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_electron_profile69)_ 1.95264170211945587e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_electron_profile70)_ 1.95081850725286469e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_electron_profile71)_ 1.94899871386923309e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_electron_profile72)_ 1.94718231245835815e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_electron_profile73)_ 1.94536929354545471e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_electron_profile74)_ 1.94355964769099335e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_electron_profile75)_ 1.94175336549053741e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_electron_profile76)_ 1.93995043757457550e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_electron_profile77)_ 1.93815085460836578e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_electron_profile78)_ 1.93635460729176849e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_electron_profile79)_ 1.93456168635909058e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_electron_profile80)_ 1.93277208257892548e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_electron_profile81)_ 1.93098578675399078e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_electron_profile82)_ 1.92920278972097717e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_electron_profile83)_ 1.92742308235038574e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_electron_profile84)_ 1.92564665554637634e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_electron_profile85)_ 1.92387350024660980e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_electron_profile86)_ 1.92210360742209564e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_electron_profile87)_ 1.92033696807703888e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_electron_profile88)_ 1.91857357324868530e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_electron_profile89)_ 1.91681341400717285e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_electron_profile90)_ 1.91505648145537872e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_electron_profile91)_ 1.91330276672877106e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_electron_profile92)_ 1.91155226099525909e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_electron_profile93)_ 1.90980495545504364e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_electron_profile94)_ 1.90806084134047333e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_electron_profile95)_ 1.90631990991589264e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_electron_profile96)_ 1.90458215247750061e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_electron_profile97)_ 1.90284756035320404e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_electron_profile98)_ 1.90111612490247314e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_electron_profile99)_ 1.89938783751619843e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_electron_profile100)_ 1.89766268961654694e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_electron_profile101)_ 1.89594067265682251e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_electron_profile102)_ 1.89422177812132202e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_electron_profile103)_ 1.89250599752519745e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_electron_profile104)_ 1.89079332241431519e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_electron_profile105)_ 1.88908374436511597e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_electron_profile106)_ 1.88737725498447906e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_electron_profile107)_ 1.88567384590958313e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_electron_profile108)_ 1.88397350880777100e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_electron_profile109)_ 1.88227623537641266e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_electron_profile110)_ 1.88058201734277039e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_electron_profile111)_ 1.87889084646386505e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_electron_profile112)_ 1.87720271452634155e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_electron_profile113)_ 1.87551761334633575e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_electron_profile114)_ 1.87383553476934357e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_electron_profile115)_ 1.87215647067008759e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_electron_profile116)_ 1.87048041295238892e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_electron_profile117)_ 1.86880735354903198e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_electron_profile118)_ 1.86713728442164246e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_electron_profile119)_ 1.86547019756055206e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_electron_profile120)_ 1.86380608498467255e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_electron_profile121)_ 1.86214493874137085e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_electron_profile122)_ 1.86048675090633820e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_electron_profile123)_ 1.85883151358346832e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_electron_profile124)_ 1.85717921890472717e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_electron_profile125)_ 1.85552985903003357e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_electron_profile126)_ 1.85388342614713226e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_electron_profile127)_ 1.85223991247146973e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_electron_profile128)_ 1.85059931024607452e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_electron_profile129)_ 1.84896161174143219e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_electron_profile130)_ 1.84732680925536560e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_electron_profile131)_ 1.84569489511291351e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_electron_profile132)_ 1.84406586166621185e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_electron_profile133)_ 1.84243970129437225e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_electron_profile134)_ 1.84081640640336395e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_electron_profile135)_ 1.83919596942589630e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_electron_profile136)_ 1.83757838282130005e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_electron_profile137)_ 1.83596363907541138e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_electron_profile138)_ 1.83435173070045502e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_electron_profile139)_ 1.83274265023492798e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_electron_profile140)_ 1.83113639024348663e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_electron_profile141)_ 1.82953294331682861e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_electron_profile142)_ 1.82793230207158173e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_electron_profile143)_ 1.82633445915019104e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_electron_profile144)_ 1.82473940722080170e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_electron_profile145)_ 1.82314713897715363e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_electron_profile146)_ 1.82155764713846405e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_electron_profile147)_ 1.81997092444931885e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_electron_profile148)_ 1.81838696367956329e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_electron_profile149)_ 1.81680575762418945e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_electron_profile150)_ 1.81522729910323029e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_electron_profile151)_ 1.81365158096164734e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_electron_profile152)_ 1.81207859606922638e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_electron_profile153)_ 1.81050833732046661e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_electron_profile154)_ 1.80894079763447449e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_electron_profile155)_ 1.80737596995486023e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_electron_profile156)_ 1.80581384724962646e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_electron_profile157)_ 1.80425442251106903e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_electron_profile158)_ 1.80269768875566711e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_electron_profile159)_ 1.80114363902398102e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_electron_profile160)_ 1.79959226638054962e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_electron_profile161)_ 1.79804356391378479e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_electron_profile162)_ 1.79649752473587128e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_electron_profile163)_ 1.79495414198266174e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_electron_profile164)_ 1.79341340881357788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_electron_profile165)_ 1.79187531841150787e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_electron_profile166)_ 1.79033986398270599e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_electron_profile167)_ 1.78880703875669403e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_electron_profile168)_ 1.78727683598615723e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_electron_profile169)_ 1.78574924894685333e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_electron_profile170)_ 1.78422427093750488e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_electron_profile171)_ 1.78270189527970825e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_electron_profile172)_ 1.78118211531783295e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_electron_profile173)_ 1.77966492441892517e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_electron_profile174)_ 1.77815031597261139e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_electron_profile175)_ 1.77663828339100189e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_electron_profile176)_ 1.77512882010859650e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_electron_profile177)_ 1.77362191958218872e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_electron_profile178)_ 1.77211757529077026e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_electron_profile179)_ 1.77061578073543915e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_electron_profile180)_ 1.76911652943930389e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_electron_profile181)_ 1.76761981494739258e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_electron_profile182)_ 1.76612563082655792e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_electron_profile183)_ 1.76463397066538696e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_electron_profile184)_ 1.76314482807410797e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_electron_profile185)_ 1.76165819668450073e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_electron_profile186)_ 1.76017407014980469e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_electron_profile187)_ 1.75869244214462769e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_electron_profile188)_ 1.75721330636485992e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_electron_profile189)_ 1.75573665652757812e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_electron_profile190)_ 1.75426248637096405e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_electron_profile191)_ 1.75279078965420990e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_electron_profile192)_ 1.75132156015743378e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_electron_profile193)_ 1.74985479168158966e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_electron_profile194)_ 1.74839047804838348e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_electron_profile195)_ 1.74692861310018219e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_electron_profile196)_ 1.74546919069993164e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_electron_profile197)_ 1.74401220473106659e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_electron_profile198)_ 1.74255764909742981e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_electron_profile199)_ 1.74110551772318176e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_electron_profile200)_ 1.73965580455272095e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_electron_profile201)_ 1.73820850355059723e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_electron_profile202)_ 1.73676360870142853e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_electron_profile203)_ 1.73532111400981598e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_electron_profile204)_ 1.73388101350026428e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_electron_profile205)_ 1.73244330121709595e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_electron_profile206)_ 1.73100797122437286e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_electron_profile207)_ 1.72957501760580933e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_electron_profile208)_ 1.72814443446469666e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_electron_profile209)_ 1.72671621592381683e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_electron_profile210)_ 1.72529035612536591e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_electron_profile211)_ 1.72386684923087311e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_electron_profile212)_ 1.72244568942111938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_electron_profile213)_ 1.72102687089606079e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_electron_profile214)_ 1.71961038787474731e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_electron_profile215)_ 1.71819623459524506e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_electron_profile216)_ 1.71678440531455872e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_electron_profile217)_ 1.71537489430855316e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_electron_profile218)_ 1.71396769587187714e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_electron_profile219)_ 1.71256280431788361e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_electron_profile220)_ 1.71116021397855713e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_electron_profile221)_ 1.70975991920443359e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_electron_profile222)_ 1.70836191436452850e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_electron_profile223)_ 1.70696619384625671e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_electron_profile224)_ 1.70557275205536194e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_electron_profile225)_ 1.70418158341583862e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_electron_profile226)_ 1.70279268236985992e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_electron_profile227)_ 1.70140604337770172e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_electron_profile228)_ 1.70002166091767151e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_electron_profile229)_ 1.69863952948603088e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_electron_profile230)_ 1.69725964359692749e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_electron_profile231)_ 1.69588199778231964e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_electron_profile232)_ 1.69450658659190430e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_electron_profile233)_ 1.69313340459304535e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_electron_profile234)_ 1.69176244637070282e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_electron_profile235)_ 1.69039370652736084e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_electron_profile236)_ 1.68902717968295715e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_electron_profile237)_ 1.68766286047481293e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_electron_profile238)_ 1.68630074355756073e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_electron_profile239)_ 1.68494082360307922e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_electron_profile240)_ 1.68358309530041748e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_electron_profile241)_ 1.68222755335573120e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_electron_profile242)_ 1.68087419249221069e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_electron_profile243)_ 1.67952300745001465e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_electron_profile244)_ 1.67817399298619934e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_electron_profile245)_ 1.67682714387465332e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_electron_profile246)_ 1.67548245490602905e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_electron_profile247)_ 1.67413992088767487e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_electron_profile248)_ 1.67279953664356934e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_electron_profile249)_ 1.67146129701425415e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_electron_profile250)_ 1.67012519685676910e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_electron_profile251)_ 1.66879123104458313e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_electron_profile252)_ 1.66745939446753235e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_electron_profile253)_ 1.66612968203175323e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_electron_profile254)_ 1.66480208865961578e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_electron_profile255)_ 1.66347660928966400e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_electron_profile256)_ 1.66215323887654572e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_electron_profile257)_ 1.66083197239095215e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_electron_profile258)_ 1.65951280481955353e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_electron_profile259)_ 1.65819573116493500e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_electron_profile260)_ 1.65688074644553375e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_electron_profile261)_ 1.65556784569557678e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_electron_profile262)_ 1.65425702396501831e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_electron_profile263)_ 1.65294827631947601e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_electron_profile264)_ 1.65164159784017242e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_electron_profile265)_ 1.65033698362386902e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_electron_profile266)_ 1.64903442878280792e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_electron_profile267)_ 1.64773392844465118e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_electron_profile268)_ 1.64643547775241791e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_electron_profile269)_ 1.64513907186442352e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_electron_profile270)_ 1.64384470595422363e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_electron_profile271)_ 1.64255237521054901e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_electron_profile272)_ 1.64126207483724884e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_electron_profile273)_ 1.63997380005323242e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_electron_profile274)_ 1.63868754609240631e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_electron_profile275)_ 1.63740330820361908e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_electron_profile276)_ 1.63612108165060150e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_electron_profile277)_ 1.63484086171190765e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_electron_profile278)_ 1.63356264368085846e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_electron_profile279)_ 1.63228642286548309e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_electron_profile280)_ 1.63101219458846039e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_electron_profile281)_ 1.62973995418706573e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_electron_profile282)_ 1.62846969701310822e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_electron_profile283)_ 1.62720141843287994e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_electron_profile284)_ 1.62593511382709564e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_electron_profile285)_ 1.62467077859083832e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_electron_profile286)_ 1.62340840813350281e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_electron_profile287)_ 1.62214799787874084e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_electron_profile288)_ 1.62088954326440521e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_electron_profile289)_ 1.61963303974249481e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_electron_profile290)_ 1.61837848277910004e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_electron_profile291)_ 1.61712586785434845e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_electron_profile292)_ 1.61587519046234985e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_electron_profile293)_ 1.61462644611114197e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_electron_profile294)_ 1.61337963032263947e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_electron_profile295)_ 1.61213473863257568e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_electron_profile296)_ 1.61089176659045319e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_electron_profile297)_ 1.60965070975949005e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_electron_profile298)_ 1.60841156371656525e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_electron_profile299)_ 1.60717432405216766e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_electron_profile300)_ 1.60593898637034454e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_electron_profile301)_ 1.60470554628864685e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_electron_profile302)_ 1.60347399943808014e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_electron_profile303)_ 1.60224434146305054e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_electron_profile304)_ 1.60101656802131683e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_electron_profile305)_ 1.59979067478393463e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_electron_profile306)_ 1.59856665743520905e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_electron_profile307)_ 1.59734451167264374e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_electron_profile308)_ 1.59612423320688934e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_electron_profile309)_ 1.59490581776169312e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_electron_profile310)_ 1.59368926107385071e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_electron_profile311)_ 1.59247455889315399e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_electron_profile312)_ 1.59126170698234436e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_electron_profile313)_ 1.59005070111706085e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_electron_profile314)_ 1.58884153708579315e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_electron_profile315)_ 1.58763421068983124e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_electron_profile316)_ 1.58642871774321777e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_electron_profile317)_ 1.58522505407269958e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_electron_profile318)_ 1.58402321551767853e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_electron_profile319)_ 1.58282319793016541e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_electron_profile320)_ 1.58162499717472992e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_electron_profile321)_ 1.58042860912845551e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_electron_profile322)_ 1.57923402968089050e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_electron_profile323)_ 1.57804125473400146e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_electron_profile324)_ 1.57685028020212708e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_electron_profile325)_ 1.57566110201192902e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_electron_profile326)_ 1.57447371610234955e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_electron_profile327)_ 1.57328811842456177e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_electron_profile328)_ 1.57210430494192444e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_electron_profile329)_ 1.57092227162993805e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_electron_profile330)_ 1.56974201447619690e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_electron_profile331)_ 1.56856352948034363e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_electron_profile332)_ 1.56738681265402679e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_electron_profile333)_ 1.56621186002085297e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_electron_profile334)_ 1.56503866761634308e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_electron_profile335)_ 1.56386723148788788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_electron_profile336)_ 1.56269754769470306e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_electron_profile337)_ 1.56152961230778625e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_electron_profile338)_ 1.56036342140987152e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_electron_profile339)_ 1.55919897109538635e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_electron_profile340)_ 1.55803625747040863e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_electron_profile341)_ 1.55687527665262146e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_electron_profile342)_ 1.55571602477127167e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_electron_profile343)_ 1.55455849796712646e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_electron_profile344)_ 1.55340269239242981e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_electron_profile345)_ 1.55224860421086029e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_electron_profile346)_ 1.55109622959748901e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_electron_profile347)_ 1.54994556473873749e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_electron_profile348)_ 1.54879660583233337e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_electron_profile349)_ 1.54764934908727264e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_electron_profile350)_ 1.54650379072377350e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_electron_profile351)_ 1.54535992697323822e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_electron_profile352)_ 1.54421775407821014e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_electron_profile353)_ 1.54307726829233246e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_electron_profile354)_ 1.54193846588030853e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_electron_profile355)_ 1.54080134311785980e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_electron_profile356)_ 1.53966589629168610e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_electron_profile357)_ 1.53853212169942444e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_electron_profile358)_ 1.53740001564960846e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_electron_profile359)_ 1.53626957446163086e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_electron_profile360)_ 1.53514079446570007e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_electron_profile361)_ 1.53401367200280304e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_electron_profile362)_ 1.53288820342466461e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_electron_profile363)_ 1.53176438509370819e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_electron_profile364)_ 1.53064221338301697e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_electron_profile365)_ 1.52952168467629425e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_electron_profile366)_ 1.52840279536782562e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_electron_profile367)_ 1.52728554186244019e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_electron_profile368)_ 1.52616992057546967e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_electron_profile369)_ 1.52505592793271393e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_electron_profile370)_ 1.52394356037039948e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_electron_profile371)_ 1.52283281433514435e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_electron_profile372)_ 1.52172368628391693e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_electron_profile373)_ 1.52061617268400146e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_electron_profile374)_ 1.51951027001295868e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_electron_profile375)_ 1.51840597475858856e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_electron_profile376)_ 1.51730328341889465e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_electron_profile377)_ 1.51620219250204498e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_electron_profile378)_ 1.51510269852633667e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_electron_profile379)_ 1.51400479802015808e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_electron_profile380)_ 1.51290848752195343e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_electron_profile381)_ 1.51181376358018646e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_electron_profile382)_ 1.51072062275330292e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_electron_profile383)_ 1.50962906160969513e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_electron_profile384)_ 1.50853907672766663e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_electron_profile385)_ 1.50745066469539520e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_electron_profile386)_ 1.50636382211089935e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_electron_profile387)_ 1.50527854558200134e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_electron_profile388)_ 1.50419483172629089e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_electron_profile389)_ 1.50311267717109192e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_electron_profile390)_ 1.50203207855342773e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_electron_profile391)_ 1.50095303251998413e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_electron_profile392)_ 1.49987553572707672e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_electron_profile393)_ 1.49879958484061554e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_electron_profile394)_ 1.49772517653607025e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_electron_profile395)_ 1.49665230749843689e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_electron_profile396)_ 1.49558097442220337e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_electron_profile397)_ 1.49451117401131470e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_electron_profile398)_ 1.49344290297914093e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_electron_profile399)_ 1.49237615804844116e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_electron_profile400)_ 1.49131093595133331e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_electron_profile401)_ 1.49024723342925690e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_electron_profile402)_ 1.48918504723294220e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_electron_profile403)_ 1.48812437412237762e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_electron_profile404)_ 1.48706521086677429e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_electron_profile405)_ 1.48600755424453613e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_electron_profile406)_ 1.48495140104322540e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_electron_profile407)_ 1.48389674805952972e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_electron_profile408)_ 1.48284359209923187e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_electron_profile409)_ 1.48179192997717590e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_electron_profile410)_ 1.48074175851723450e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_electron_profile411)_ 1.47969307455227905e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_electron_profile412)_ 1.47864587492414581e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_electron_profile413)_ 1.47760015648360535e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_electron_profile414)_ 1.47655591609033081e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_electron_profile415)_ 1.47551315061286560e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_electron_profile416)_ 1.47447185692859436e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_electron_profile417)_ 1.47343203192370789e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_electron_profile418)_ 1.47239367249317688e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_electron_profile419)_ 1.47135677554071686e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_electron_profile420)_ 1.47032133797875977e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_electron_profile421)_ 1.46928735672842346e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_electron_profile422)_ 1.46825482871947845e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_electron_profile423)_ 1.46722375089032166e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_electron_profile424)_ 1.46619412018794220e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_electron_profile425)_ 1.46516593356789459e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_electron_profile426)_ 1.46413918799426636e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_electron_profile427)_ 1.46311388043964844e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_electron_profile428)_ 1.46209000788510681e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_electron_profile429)_ 1.46106756732015228e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_electron_profile430)_ 1.46004655574270996e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_electron_profile431)_ 1.45902697015909088e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_electron_profile432)_ 1.45800880758396210e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_electron_profile433)_ 1.45699206504031921e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_electron_profile434)_ 1.45597673955945496e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_electron_profile435)_ 1.45496282818093170e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_electron_profile436)_ 1.45395032795255249e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_electron_profile437)_ 1.45293923593033234e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_electron_profile438)_ 1.45192954917846985e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_electron_profile439)_ 1.45092126476931793e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_electron_profile440)_ 1.44991437978335724e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_electron_profile441)_ 1.44890889130916656e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_electron_profile442)_ 1.44790479644339417e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_electron_profile443)_ 1.44690209229073273e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_electron_profile444)_ 1.44590077596388794e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_electron_profile445)_ 1.44490084458355316e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_electron_profile446)_ 1.44390229527838165e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_electron_profile447)_ 1.44290512518495728e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_electron_profile448)_ 1.44190933144776947e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_electron_profile449)_ 1.44091491121918488e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_electron_profile450)_ 1.43992186165941986e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_electron_profile451)_ 1.43893017993651398e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_electron_profile452)_ 1.43793986322630280e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_electron_profile453)_ 1.43695090871239197e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_electron_profile454)_ 1.43596331358612915e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_electron_profile455)_ 1.43497707504657837e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_electron_profile456)_ 1.43399219030049286e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_electron_profile457)_ 1.43300865656228943e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_electron_profile458)_ 1.43202647105402191e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_electron_profile459)_ 1.43104563100535461e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_electron_profile460)_ 1.43006613365353699e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_electron_profile461)_ 1.42908797624337769e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_electron_profile462)_ 1.42811115602721680e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_electron_profile463)_ 1.42713567026490265e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_electron_profile464)_ 1.42616151622376648e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_electron_profile465)_ 1.42518869117859344e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_electron_profile466)_ 1.42421719241160065e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_electron_profile467)_ 1.42324701721241028e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_electron_profile468)_ 1.42227816287802429e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_electron_profile469)_ 1.42131062671280151e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_electron_profile470)_ 1.42034440602842804e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_electron_profile471)_ 1.41937949814389801e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_electron_profile472)_ 1.41841590038548401e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_electron_profile473)_ 1.41745361008671478e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_electron_profile474)_ 1.41649262458835144e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_electron_profile475)_ 1.41553294123835938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_electron_profile476)_ 1.41457455739188751e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_electron_profile477)_ 1.41361747041124359e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_electron_profile478)_ 1.41266167766586731e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_electron_profile479)_ 1.41170717653230927e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_electron_profile480)_ 1.41075396439420532e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_electron_profile481)_ 1.40980203864225250e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_electron_profile482)_ 1.40885139667418610e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_electron_profile483)_ 1.40790203589475586e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_electron_profile484)_ 1.40695395371570221e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_electron_profile485)_ 1.40600714755573212e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_electron_profile486)_ 1.40506161484049622e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_electron_profile487)_ 1.40411735300256592e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_electron_profile488)_ 1.40317435948140900e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_electron_profile489)_ 1.40223263172336761e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_electron_profile490)_ 1.40129216718163513e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_electron_profile491)_ 1.40035296331623169e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_electron_profile492)_ 1.39941501759398376e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_electron_profile493)_ 1.39847832748849915e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_electron_profile494)_ 1.39754289048014587e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_electron_profile495)_ 1.39660870405602814e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_electron_profile496)_ 1.39567576570996552e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_electron_profile497)_ 1.39474407294246857e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_electron_profile498)_ 1.39381362326071930e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_electron_profile499)_ 1.39288441417854523e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_electron_profile500)_ 1.39195644321640106e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_electron_profile501)_ 1.39102970790134338e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_electron_profile502)_ 1.39010420576701111e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_electron_profile503)_ 1.38917993435360229e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_electron_profile504)_ 1.38825689120785217e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_electron_profile505)_ 1.38733507388301331e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_electron_profile506)_ 1.38641447993883057e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_electron_profile507)_ 1.38549510694152374e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_electron_profile508)_ 1.38457695246376282e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_electron_profile509)_ 1.38366001408464783e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_electron_profile510)_ 1.38274428938968750e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_electron_profile511)_ 1.38182977597077911e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_electron_profile512)_ 1.38091647142618500e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_electron_profile513)_ 1.38000437336051361e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_electron_profile514)_ 1.37909347938469849e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_electron_profile515)_ 1.37818378711597473e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_electron_profile516)_ 1.37727529417786285e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_electron_profile517)_ 1.37636799820014343e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_electron_profile518)_ 1.37546189681884033e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_electron_profile519)_ 1.37455698767619598e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_electron_profile520)_ 1.37365326842065613e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_electron_profile521)_ 1.37275073670684479e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_electron_profile522)_ 1.37184939019554688e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_electron_profile523)_ 1.37094922655368607e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_electron_profile524)_ 1.37005024345430695e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_electron_profile525)_ 1.36915243857655167e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_electron_profile526)_ 1.36825580960564346e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_electron_profile527)_ 1.36736035423286499e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_electron_profile528)_ 1.36646607015553833e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_electron_profile529)_ 1.36557295507700531e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_electron_profile530)_ 1.36468100670660873e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_electron_profile531)_ 1.36379022275967239e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_electron_profile532)_ 1.36290060095748047e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_electron_profile533)_ 1.36201213902726044e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_electron_profile534)_ 1.36112483470216171e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_electron_profile535)_ 1.36023868572123550e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_electron_profile536)_ 1.35935368982941956e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_electron_profile537)_ 1.35846984477751495e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_electron_profile538)_ 1.35758714832216919e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_electron_profile539)_ 1.35670559822585587e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_electron_profile540)_ 1.35582519225685776e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_electron_profile541)_ 1.35494592818924622e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_electron_profile542)_ 1.35406780380286316e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_electron_profile543)_ 1.35319081688330154e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_electron_profile544)_ 1.35231496522188873e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_electron_profile545)_ 1.35144024661566483e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_electron_profile546)_ 1.35056665886736755e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_electron_profile547)_ 1.34969419978541214e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_electron_profile548)_ 1.34882286718387222e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_electron_profile549)_ 1.34795265888246323e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_electron_profile550)_ 1.34708357270652344e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_electron_profile551)_ 1.34621560648699615e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_electron_profile552)_ 1.34534875806041077e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_electron_profile553)_ 1.34448302526886627e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_electron_profile554)_ 1.34361840596001160e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_electron_profile555)_ 1.34275489798702942e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_electron_profile556)_ 1.34189249920861771e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_electron_profile557)_ 1.34103120748897186e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_electron_profile558)_ 1.34017102069776642e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_electron_profile559)_ 1.33931193671013962e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_electron_profile560)_ 1.33845395340667374e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_electron_profile561)_ 1.33759706867337891e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_electron_profile562)_ 1.33674128040167496e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_electron_profile563)_ 1.33588658648837463e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_electron_profile564)_ 1.33503298483566635e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_electron_profile565)_ 1.33418047335109680e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_electron_profile566)_ 1.33332904994755432e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_electron_profile567)_ 1.33247871254325134e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_electron_profile568)_ 1.33162945906170685e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_electron_profile569)_ 1.33078128743173111e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_electron_profile570)_ 1.32993419558740799e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_electron_profile571)_ 1.32908818146807739e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_electron_profile572)_ 1.32824324301832001e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_electron_profile573)_ 1.32739937818794037e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_electron_profile574)_ 1.32655658493194794e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_electron_profile575)_ 1.32571486121054428e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_electron_profile576)_ 1.32487420498910492e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_electron_profile577)_ 1.32403461423816101e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_electron_profile578)_ 1.32319608693338715e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_electron_profile579)_ 1.32235862105558105e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_electron_profile580)_ 1.32152221459065002e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_electron_profile581)_ 1.32068686552959412e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_electron_profile582)_ 1.31985257186848907e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_electron_profile583)_ 1.31901933160847092e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_electron_profile584)_ 1.31818714275572113e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_electron_profile585)_ 1.31735600332144882e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_electron_profile586)_ 1.31652591132187653e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_electron_profile587)_ 1.31569686477822296e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_electron_profile588)_ 1.31486886171668839e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_electron_profile589)_ 1.31404190016843903e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_electron_profile590)_ 1.31321597816959000e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_electron_profile591)_ 1.31239109376119202e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_electron_profile592)_ 1.31156724498921417e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_electron_profile593)_ 1.31074442990452820e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_electron_profile594)_ 1.30992264656289505e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_electron_profile595)_ 1.30910189302494858e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_electron_profile596)_ 1.30828216735617905e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_electron_profile597)_ 1.30746346762691971e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_electron_profile598)_ 1.30664579191233154e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_electron_profile599)_ 1.30582913829238632e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_electron_profile600)_ 1.30501350485185364e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_electron_profile601)_ 1.30419888968028564e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_electron_profile602)_ 1.30338529087200134e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_electron_profile603)_ 1.30257270652607101e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_electron_profile604)_ 1.30176113474630386e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_electron_profile605)_ 1.30095057364123154e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_electron_profile606)_ 1.30014102132409348e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_electron_profile607)_ 1.29933247591282227e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_electron_profile608)_ 1.29852493553002975e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_electron_profile609)_ 1.29771839830299255e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_electron_profile610)_ 1.29691286236363617e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_electron_profile611)_ 1.29610832584852219e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_electron_profile612)_ 1.29530478689883331e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_electron_profile613)_ 1.29450224366035812e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_electron_profile614)_ 1.29370069428347855e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_electron_profile615)_ 1.29290013692315491e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_electron_profile616)_ 1.29210056973891022e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_electron_profile617)_ 1.29130199089481949e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_electron_profile618)_ 1.29050439855949219e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_electron_profile619)_ 1.28970779090606033e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_electron_profile620)_ 1.28891216611216385e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_electron_profile621)_ 1.28811752235993729e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_electron_profile622)_ 1.28732385783599380e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_electron_profile623)_ 1.28653117073141495e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_electron_profile624)_ 1.28573945924173401e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_electron_profile625)_ 1.28494872156692383e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_electron_profile626)_ 1.28415895591138168e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_electron_profile627)_ 1.28337016048391754e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_electron_profile628)_ 1.28258233349773972e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_electron_profile629)_ 1.28179547317044037e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_electron_profile630)_ 1.28100957772398407e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_electron_profile631)_ 1.28022464538469254e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_electron_profile632)_ 1.27944067438323181e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_electron_profile633)_ 1.27865766295460083e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_electron_profile634)_ 1.27787560933811462e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_electron_profile635)_ 1.27709451177739502e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_electron_profile636)_ 1.27631436852035294e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_electron_profile637)_ 1.27553517781918076e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_electron_profile638)_ 1.27475693793033417e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_electron_profile639)_ 1.27397964711452301e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_electron_profile640)_ 1.27320330363669571e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_electron_profile641)_ 1.27242790576602798e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_electron_profile642)_ 1.27165345177590866e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_electron_profile643)_ 1.27087993994392822e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_electron_profile644)_ 1.27010736855186508e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_electron_profile645)_ 1.26933573588567337e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_electron_profile646)_ 1.26856504023546936e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_electron_profile647)_ 1.26779527989552048e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_electron_profile648)_ 1.26702645316423157e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_electron_profile649)_ 1.26625855834413193e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_electron_profile650)_ 1.26549159374186401e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_electron_profile651)_ 1.26472555766817062e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_electron_profile652)_ 1.26396044843788147e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_electron_profile653)_ 1.26319626436990173e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_electron_profile654)_ 1.26243300378720123e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_electron_profile655)_ 1.26167066501679840e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_electron_profile656)_ 1.26090924638975128e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_electron_profile657)_ 1.26014874624114471e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_electron_profile658)_ 1.25938916291007706e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_electron_profile659)_ 1.25863049473964920e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_electron_profile660)_ 1.25787274007695236e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_electron_profile661)_ 1.25711589727305511e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_electron_profile662)_ 1.25635996468299332e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_electron_profile663)_ 1.25560494066575577e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_electron_profile664)_ 1.25485082358427490e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_electron_profile665)_ 1.25409761180541275e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_electron_profile666)_ 1.25334530369995087e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_electron_profile667)_ 1.25259389764257660e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_electron_profile668)_ 1.25184339201187393e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_electron_profile669)_ 1.25109378519030991e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_electron_profile670)_ 1.25034507556422379e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_electron_profile671)_ 1.24959726152381454e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_electron_profile672)_ 1.24885034146313095e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_electron_profile673)_ 1.24810431378005829e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_electron_profile674)_ 1.24735917687630920e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_electron_profile675)_ 1.24661492915740921e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_electron_profile676)_ 1.24587156903268814e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_electron_profile677)_ 1.24512909491526672e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_electron_profile678)_ 1.24438750522204742e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_electron_profile679)_ 1.24364679837370102e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_electron_profile680)_ 1.24290697279465683e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_electron_profile681)_ 1.24216802691309036e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_electron_profile682)_ 1.24142995916091385e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_electron_profile683)_ 1.24069276797376373e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_electron_profile684)_ 1.23995645179098999e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_electron_profile685)_ 1.23922100905564514e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_electron_profile686)_ 1.23848643821447418e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_electron_profile687)_ 1.23775273771790161e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_electron_profile688)_ 1.23701990602002243e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_electron_profile689)_ 1.23628794157859070e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_electron_profile690)_ 1.23555684285500763e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_electron_profile691)_ 1.23482660831431305e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_electron_profile692)_ 1.23409723642517288e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_electron_profile693)_ 1.23336872565986893e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_electron_profile694)_ 1.23264107449428787e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_electron_profile695)_ 1.23191428140791153e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_electron_profile696)_ 1.23118834488380539e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_electron_profile697)_ 1.23046326340860886e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_electron_profile698)_ 1.22973903547252365e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_electron_profile699)_ 1.22901565956930466e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_electron_profile700)_ 1.22829313419624817e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_electron_profile701)_ 1.22757145785418198e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_electron_profile702)_ 1.22685062904745605e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_electron_profile703)_ 1.22613064628393066e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_electron_profile704)_ 1.22541150807496643e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_electron_profile705)_ 1.22469321293541504e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_electron_profile706)_ 1.22397575938360733e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_electron_profile707)_ 1.22325914594134537e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_electron_profile708)_ 1.22254337113388977e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_electron_profile709)_ 1.22182843348995178e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_electron_profile710)_ 1.22111433154168213e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_electron_profile711)_ 1.22040106382465988e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_electron_profile712)_ 1.21968862887788528e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_electron_profile713)_ 1.21897702524376770e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_electron_profile714)_ 1.21826625146811539e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_electron_profile715)_ 1.21755630610012695e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_electron_profile716)_ 1.21684718769238068e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_electron_profile717)_ 1.21613889480082535e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_electron_profile718)_ 1.21543142598476883e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_electron_profile719)_ 1.21472477980687088e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_electron_profile720)_ 1.21401895483313049e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_electron_profile721)_ 1.21331394963287903e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_electron_profile722)_ 1.21260976277876862e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_electron_profile723)_ 1.21190639284676208e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_electron_profile724)_ 1.21120383841612640e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_electron_profile725)_ 1.21050209806941940e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_electron_profile726)_ 1.20980117039248276e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_electron_profile727)_ 1.20910105397443130e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_electron_profile728)_ 1.20840174740764481e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_electron_profile729)_ 1.20770324928775604e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_electron_profile730)_ 1.20700555821364410e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_electron_profile731)_ 1.20630867278742355e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_electron_profile732)_ 1.20561259161443634e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_electron_profile733)_ 1.20491731330323975e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_electron_profile734)_ 1.20422283646560120e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_electron_profile735)_ 1.20352915971648483e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_electron_profile736)_ 1.20283628167404587e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_electron_profile737)_ 1.20214420095961884e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_electron_profile738)_ 1.20145291619771011e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_electron_profile739)_ 1.20076242601598709e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_electron_profile740)_ 1.20007272904527161e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_electron_profile741)_ 1.19938382391952789e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_electron_profile742)_ 1.19869570927585648e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_electron_profile743)_ 1.19800838375448288e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_electron_profile744)_ 1.19732184599874939e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_electron_profile745)_ 1.19663609465510742e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_electron_profile746)_ 1.19595112837310699e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_electron_profile747)_ 1.19526694580538788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_electron_profile748)_ 1.19458354560767181e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_electron_profile749)_ 1.19390092643875290e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_electron_profile750)_ 1.19321908696049011e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_electron_profile751)_ 1.19253802583779587e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_electron_profile752)_ 1.19185774173862961e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_electron_profile753)_ 1.19117823333398956e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_electron_profile754)_ 1.19049949929790192e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_electron_profile755)_ 1.18982153830741333e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_electron_profile756)_ 1.18914434904258255e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_electron_profile757)_ 1.18846793018647186e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_electron_profile758)_ 1.18779228042513809e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_electron_profile759)_ 1.18711739844762360e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_electron_profile760)_ 1.18644328294594986e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_electron_profile761)_ 1.18576993261510666e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_electron_profile762)_ 1.18509734615304489e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_electron_profile763)_ 1.18442552226066788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_electron_profile764)_ 1.18375445964182312e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_electron_profile765)_ 1.18308415700329437e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_electron_profile766)_ 1.18241461305479202e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_electron_profile767)_ 1.18174582650894669e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_electron_profile768)_ 1.18107779608129898e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_electron_profile769)_ 1.18041052049029251e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_electron_profile770)_ 1.17974399845726593e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_electron_profile771)_ 1.17907822870644363e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_electron_profile772)_ 1.17841320996492828e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_electron_profile773)_ 1.17774894096269333e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_electron_profile774)_ 1.17708542043257339e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_electron_profile775)_ 1.17642264711025787e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_electron_profile776)_ 1.17576061973428101e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_electron_profile777)_ 1.17509933704601669e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_electron_profile778)_ 1.17443879778966721e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_electron_profile779)_ 1.17377900071225723e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_electron_profile780)_ 1.17311994456362610e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_electron_profile781)_ 1.17246162809641846e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_electron_profile782)_ 1.17180405006607864e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_electron_profile783)_ 1.17114720923083954e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_electron_profile784)_ 1.17049110435171860e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_electron_profile785)_ 1.16983573419250717e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_electron_profile786)_ 1.16918109751976379e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_electron_profile787)_ 1.16852719310280655e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_electron_profile788)_ 1.16787401971370483e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_electron_profile789)_ 1.16722157612727264e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_electron_profile790)_ 1.16656986112105972e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_electron_profile791)_ 1.16591887347534485e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_electron_profile792)_ 1.16526861197312759e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_electron_profile793)_ 1.16461907540012146e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_electron_profile794)_ 1.16397026254474533e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_electron_profile795)_ 1.16332217219811676e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_electron_profile796)_ 1.16267480315404419e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_electron_profile797)_ 1.16202815420902008e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_electron_profile798)_ 1.16138222416221115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_electron_profile799)_ 1.16073701181545456e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_electron_profile800)_ 1.16009251597324707e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_electron_profile801)_ 1.15944873544274033e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_electron_profile802)_ 1.15880566903373154e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_electron_profile803)_ 1.15816331555865723e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_electron_profile804)_ 1.15752167383258606e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_electron_profile805)_ 1.15688074267321014e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_electron_profile806)_ 1.15624052090083984e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_electron_profile807)_ 1.15560100733839478e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_electron_profile808)_ 1.15496220081139725e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_electron_profile809)_ 1.15432410014796570e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_electron_profile810)_ 1.15368670417880630e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_electron_profile811)_ 1.15305001173720627e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_electron_profile812)_ 1.15241402165902817e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_electron_profile813)_ 1.15177873278270004e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_electron_profile814)_ 1.15114414394921097e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_electron_profile815)_ 1.15051025400210220e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_electron_profile816)_ 1.14987706178746155e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_electron_profile817)_ 1.14924456615391525e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_electron_profile818)_ 1.14861276595262115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_electron_profile819)_ 1.14798166003726288e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_electron_profile820)_ 1.14735124726404053e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_electron_profile821)_ 1.14672152649166748e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_electron_profile822)_ 1.14609249658135925e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_electron_profile823)_ 1.14546415639682968e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_electron_profile824)_ 1.14483650480428360e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_electron_profile825)_ 1.14420954067240845e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_electron_profile826)_ 1.14358326287236893e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_electron_profile827)_ 1.14295767027779953e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_electron_profile828)_ 1.14233276176479919e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_electron_profile829)_ 1.14170853621192245e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_electron_profile830)_ 1.14108499250017365e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_electron_profile831)_ 1.14046212951300095e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_electron_profile832)_ 1.13983994613628891e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_electron_profile833)_ 1.13921844125835205e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_electron_profile834)_ 1.13859761376992798e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_electron_profile835)_ 1.13797746256417068e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_electron_profile836)_ 1.13735798653664551e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_electron_profile837)_ 1.13673918458531982e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_electron_profile838)_ 1.13612105561055908e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_electron_profile839)_ 1.13550359851511841e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_electron_profile840)_ 1.13488681220413788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_electron_profile841)_ 1.13427069558513474e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_electron_profile842)_ 1.13365524756799667e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_electron_profile843)_ 1.13304046706497726e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_electron_profile844)_ 1.13242635299068710e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_electron_profile845)_ 1.13181290426208984e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_electron_profile846)_ 1.13120011979849380e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_electron_profile847)_ 1.13058799852154648e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_electron_profile848)_ 1.12997653935522903e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_electron_profile849)_ 1.12936574122584747e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_electron_profile850)_ 1.12875560306203018e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_electron_profile851)_ 1.12814612379471802e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_electron_profile852)_ 1.12753730235716034e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_electron_profile853)_ 1.12692913768490692e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_electron_profile854)_ 1.12632162871580475e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_electron_profile855)_ 1.12571477438998825e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_electron_profile856)_ 1.12510857364987503e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_electron_profile857)_ 1.12450302544016022e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_electron_profile858)_ 1.12389812870780960e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_electron_profile859)_ 1.12329388240205261e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_electron_profile860)_ 1.12269028547437820e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_electron_profile861)_ 1.12208733687852722e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_electron_profile862)_ 1.12148503557048721e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_electron_profile863)_ 1.12088338050848587e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_electron_profile864)_ 1.12028237065298523e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_electron_profile865)_ 1.11968200496667633e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_electron_profile866)_ 1.11908228241447128e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_electron_profile867)_ 1.11848320196349991e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_electron_profile868)_ 1.11788476258310226e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_electron_profile869)_ 1.11728696324482254e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_electron_profile870)_ 1.11668980292240402e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_electron_profile871)_ 1.11609328059178314e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_electron_profile872)_ 1.11549739523108261e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_electron_profile873)_ 1.11490214582060699e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_electron_profile874)_ 1.11430753134283600e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_electron_profile875)_ 1.11371355078241882e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_electron_profile876)_ 1.11312020312616821e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_electron_profile877)_ 1.11252748736305542e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_electron_profile878)_ 1.11193540248420334e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_electron_profile879)_ 1.11134394748288193e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_electron_profile880)_ 1.11075312135450180e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_electron_profile881)_ 1.11016292309660873e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_electron_profile882)_ 1.10957335170887817e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_electron_profile883)_ 1.10898440619310913e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_electron_profile884)_ 1.10839608555321884e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_electron_profile885)_ 1.10780838879523743e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_electron_profile886)_ 1.10722131492730133e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_electron_profile887)_ 1.10663486295964935e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_electron_profile888)_ 1.10604903190461533e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_electron_profile889)_ 1.10546382077662338e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_electron_profile890)_ 1.10487922859218292e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_electron_profile891)_ 1.10429525436988251e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_electron_profile892)_ 1.10371189713038437e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_electron_profile893)_ 1.10312915589641907e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_electron_profile894)_ 1.10254702969277985e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_electron_profile895)_ 1.10196551754631744e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_electron_profile896)_ 1.10138461848593460e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_electron_profile897)_ 1.10080433154258057e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_electron_profile898)_ 1.10022465574924591e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_electron_profile899)_ 1.09964559014095673e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_electron_profile900)_ 1.09906713375477005e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_electron_profile901)_ 1.09848928562976746e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_electron_profile902)_ 1.09791204480705078e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_electron_profile903)_ 1.09733541032973618e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_electron_profile904)_ 1.09675938124294891e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_electron_profile905)_ 1.09618395659381836e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_electron_profile906)_ 1.09560913543147232e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_electron_profile907)_ 1.09503491680703247e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_electron_profile908)_ 1.09446129977360809e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_electron_profile909)_ 1.09388828338629196e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_electron_profile910)_ 1.09331586670215485e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_electron_profile911)_ 1.09274404878023926e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_electron_profile912)_ 1.09217282868155655e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_electron_profile913)_ 1.09160220546907928e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_electron_profile914)_ 1.09103217820773773e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_electron_profile915)_ 1.09046274596441422e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_electron_profile916)_ 1.08989390780793839e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_electron_profile917)_ 1.08932566280908127e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_electron_profile918)_ 1.08875801004055115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_electron_profile919)_ 1.08819094857698853e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_electron_profile920)_ 1.08762447749495987e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_electron_profile921)_ 1.08705859587295410e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_electron_profile922)_ 1.08649330279137680e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_electron_profile923)_ 1.08592859733254547e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_electron_profile924)_ 1.08536447858068451e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_electron_profile925)_ 1.08480094562191986e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_electron_profile926)_ 1.08423799754427490e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_electron_profile927)_ 1.08367563343766495e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_electron_profile928)_ 1.08311385239389221e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_electron_profile929)_ 1.08255265350664124e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_electron_profile930)_ 1.08199203587147476e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_electron_profile931)_ 1.08143199858582703e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_electron_profile932)_ 1.08087254074900040e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_electron_profile933)_ 1.08031366146216019e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_electron_profile934)_ 1.07975535982832962e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_electron_profile935)_ 1.07919763495238510e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_electron_profile936)_ 1.07864048594105209e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_electron_profile937)_ 1.07808391190289871e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_electron_profile938)_ 1.07752791194833313e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_electron_profile939)_ 1.07697248518959686e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_electron_profile940)_ 1.07641763074076126e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_electron_profile941)_ 1.07586334771772278e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_electron_profile942)_ 1.07530963523819733e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_electron_profile943)_ 1.07475649242171707e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_electron_profile944)_ 1.07420391838962357e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_electron_profile945)_ 1.07365191226506592e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_electron_profile946)_ 1.07310047317299332e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_electron_profile947)_ 1.07254960024015305e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_electron_profile948)_ 1.07199929259508347e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_electron_profile949)_ 1.07144954936811172e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_electron_profile950)_ 1.07090036969134689e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_electron_profile951)_ 1.07035175269867691e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_electron_profile952)_ 1.06980369752576431e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_electron_profile953)_ 1.06925620331003983e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_electron_profile954)_ 1.06870926919069962e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_electron_profile955)_ 1.06816289430870041e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_electron_profile956)_ 1.06761707780675415e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_electron_profile957)_ 1.06707181882932480e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_electron_profile958)_ 1.06652711652262268e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_electron_profile959)_ 1.06598297003460083e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_electron_profile960)_ 1.06543937851495041e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_electron_profile961)_ 1.06489634111509567e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_electron_profile962)_ 1.06435385698819046e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_electron_profile963)_ 1.06381192528911301e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_electron_profile964)_ 1.06327054517446198e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_electron_profile965)_ 1.06272971580255234e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_electron_profile966)_ 1.06218943633341034e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_electron_profile967)_ 1.06164970592876923e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_electron_profile968)_ 1.06111052375206589e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_electron_profile969)_ 1.06057188896843552e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_electron_profile970)_ 1.06003380074470703e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_electron_profile971)_ 1.05949625824940033e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_electron_profile972)_ 1.05895926065272064e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_electron_profile973)_ 1.05842280712655411e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_electron_profile974)_ 1.05788689684446472e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_electron_profile975)_ 1.05735152898168930e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_electron_profile976)_ 1.05681670271513306e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_electron_profile977)_ 1.05628241722336594e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_electron_profile978)_ 1.05574867168661835e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_electron_profile979)_ 1.05521546528677658e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_electron_profile980)_ 1.05468279720737885e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_electron_profile981)_ 1.05415066663361130e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_electron_profile982)_ 1.05361907275230347e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_electron_profile983)_ 1.05308801475192413e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_electron_profile984)_ 1.05255749182257828e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_electron_profile985)_ 1.05202750315600098e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_electron_profile986)_ 1.05149804794555511e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_electron_profile987)_ 1.05096912538622620e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_electron_profile988)_ 1.05044073467461929e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_electron_profile989)_ 1.04991287500895355e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_electron_profile990)_ 1.04938554558905960e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_electron_profile991)_ 1.04885874561637421e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_electron_profile992)_ 1.04833247429393768e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_electron_profile993)_ 1.04780673082638794e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_electron_profile994)_ 1.04728151441995895e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_electron_profile995)_ 1.04675682428247391e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_electron_profile996)_ 1.04623265962334396e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_electron_profile997)_ 1.04570901965356247e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_electron_profile998)_ 1.04518590358570175e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_electron_profile999)_ 1.04466331063390884e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_electron_profile1000)_ 1.04414124001390198e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_electron_profile1001)_ 1.04361969094296616e+11 -Volume_averaged_deuteron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_deuteron_vol_avg)_ 3.79103494964304045e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_deuteron_profile0)_ 5.68655242446456030e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_deuteron_profile1)_ 5.68087722244413719e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_deuteron_profile2)_ 5.67521333687839061e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_deuteron_profile3)_ 5.66956073395321220e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_deuteron_profile4)_ 5.66391937998908013e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_deuteron_profile5)_ 5.65828924144038260e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_deuteron_profile6)_ 5.65267028489476219e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_deuteron_profile7)_ 5.64706247707244679e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_deuteron_profile8)_ 5.64146578482559472e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_deuteron_profile9)_ 5.63588017513764948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_deuteron_profile10)_ 5.63030561512267664e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_deuteron_profile11)_ 5.62474207202472910e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_deuteron_profile12)_ 5.61918951321720183e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_deuteron_profile13)_ 5.61364790620219409e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_deuteron_profile14)_ 5.60811721860987693e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_deuteron_profile15)_ 5.60259741819785908e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_deuteron_profile16)_ 5.59708847285056636e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_deuteron_profile17)_ 5.59159035057860985e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_deuteron_profile18)_ 5.58610301951818019e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_deuteron_profile19)_ 5.58062644793041795e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_deuteron_profile20)_ 5.57516060420080796e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_deuteron_profile21)_ 5.56970545683857724e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_deuteron_profile22)_ 5.56426097447607517e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_deuteron_profile23)_ 5.55882712586818859e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_deuteron_profile24)_ 5.55340387989173234e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_deuteron_profile25)_ 5.54799120554485917e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_deuteron_profile26)_ 5.54258907194647118e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_deuteron_profile27)_ 5.53719744833562747e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_deuteron_profile28)_ 5.53181630407096744e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_deuteron_profile29)_ 5.52644560863012150e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_deuteron_profile30)_ 5.52108533160914183e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_deuteron_profile31)_ 5.51573544272192419e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_deuteron_profile32)_ 5.51039591179963797e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_deuteron_profile33)_ 5.50506670879016072e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_deuteron_profile34)_ 5.49974780375751257e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_deuteron_profile35)_ 5.49443916688129827e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_deuteron_profile36)_ 5.48914076845614836e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_deuteron_profile37)_ 5.48385257889116108e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_deuteron_profile38)_ 5.47857456870936006e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_deuteron_profile39)_ 5.47330670854713991e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_deuteron_profile40)_ 5.46804896915372238e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_deuteron_profile41)_ 5.46280132139061913e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_deuteron_profile42)_ 5.45756373623108864e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_deuteron_profile43)_ 5.45233618475960344e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_deuteron_profile44)_ 5.44711863817131668e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_deuteron_profile45)_ 5.44191106777153388e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_deuteron_profile46)_ 5.43671344497519210e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_deuteron_profile47)_ 5.43152574130632207e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_deuteron_profile48)_ 5.42634792839754596e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_deuteron_profile49)_ 5.42117997798954770e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_deuteron_profile50)_ 5.41602186193056703e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_deuteron_profile51)_ 5.41087355217588022e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_deuteron_profile52)_ 5.40573502078729793e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_deuteron_profile53)_ 5.40060623993266225e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_deuteron_profile54)_ 5.39548718188533187e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_deuteron_profile55)_ 5.39037781902369857e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_deuteron_profile56)_ 5.38527812383067682e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_deuteron_profile57)_ 5.38018806889321804e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_deuteron_profile58)_ 5.37510762690181881e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_deuteron_profile59)_ 5.37003677065002322e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_deuteron_profile60)_ 5.36497547303395495e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_deuteron_profile61)_ 5.35992370705181360e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_deuteron_profile62)_ 5.35488144580341130e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_deuteron_profile63)_ 5.34984866248968542e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_deuteron_profile64)_ 5.34482533041222990e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_deuteron_profile65)_ 5.33981142297281921e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_deuteron_profile66)_ 5.33480691367293820e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_deuteron_profile67)_ 5.32981177611332089e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_deuteron_profile68)_ 5.32482598399347588e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_deuteron_profile69)_ 5.31984951111123785e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_deuteron_profile70)_ 5.31488233136230186e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_deuteron_profile71)_ 5.30992441873976216e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_deuteron_profile72)_ 5.30497574733366817e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_deuteron_profile73)_ 5.30003629133056402e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_deuteron_profile74)_ 5.29510602501304597e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_deuteron_profile75)_ 5.29018492275931761e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_deuteron_profile76)_ 5.28527295904273391e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_deuteron_profile77)_ 5.28037010843137875e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_deuteron_profile78)_ 5.27547634558760449e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_deuteron_profile79)_ 5.27059164526761547e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_deuteron_profile80)_ 5.26571598232102320e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_deuteron_profile81)_ 5.26084933169041127e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_deuteron_profile82)_ 5.25599166841091961e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_deuteron_profile83)_ 5.25114296760980189e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_deuteron_profile84)_ 5.24630320450601429e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_deuteron_profile85)_ 5.24147235440978408e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_deuteron_profile86)_ 5.23665039272219390e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_deuteron_profile87)_ 5.23183729493476599e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_deuteron_profile88)_ 5.22703303662904128e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_deuteron_profile89)_ 5.22223759347617105e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_deuteron_profile90)_ 5.21745094123650342e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_deuteron_profile91)_ 5.21267305575918034e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_deuteron_profile92)_ 5.20790391298172474e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_deuteron_profile93)_ 5.20314348892963827e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_deuteron_profile94)_ 5.19839175971600562e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_deuteron_profile95)_ 5.19364870154108256e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_deuteron_profile96)_ 5.18891429069190994e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_deuteron_profile97)_ 5.18418850354191735e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_deuteron_profile98)_ 5.17947131655052304e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_deuteron_profile99)_ 5.17476270626275018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_deuteron_profile100)_ 5.17006264930883273e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_deuteron_profile101)_ 5.16537112240383476e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_deuteron_profile102)_ 5.16068810234725773e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_deuteron_profile103)_ 5.15601356602266803e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_deuteron_profile104)_ 5.15134749039730877e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_deuteron_profile105)_ 5.14668985252172276e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_deuteron_profile106)_ 5.14204062952938229e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_deuteron_profile107)_ 5.13739979863630459e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_deuteron_profile108)_ 5.13276733714068979e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_deuteron_profile109)_ 5.12814322242254540e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_deuteron_profile110)_ 5.12352743194331676e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_deuteron_profile111)_ 5.11891994324552566e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_deuteron_profile112)_ 5.11432073395240381e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_deuteron_profile113)_ 5.10972978176752701e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_deuteron_profile114)_ 5.10514706447446197e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_deuteron_profile115)_ 5.10057255993640199e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_deuteron_profile116)_ 5.09600624609581530e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_deuteron_profile117)_ 5.09144810097408295e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_deuteron_profile118)_ 5.08689810267115682e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_deuteron_profile119)_ 5.08235622936520129e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_deuteron_profile120)_ 5.07782245931224301e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_deuteron_profile121)_ 5.07329677084583342e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_deuteron_profile122)_ 5.06877914237669110e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_deuteron_profile123)_ 5.06426955239237174e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_deuteron_profile124)_ 5.05976797945691124e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_deuteron_profile125)_ 5.05527440221050158e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_deuteron_profile126)_ 5.05078879936914369e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_deuteron_profile127)_ 5.04631114972431287e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_deuteron_profile128)_ 5.04184143214262649e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_deuteron_profile129)_ 5.03737962556550950e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_deuteron_profile130)_ 5.03292570900886431e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_deuteron_profile131)_ 5.02847966156274304e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_deuteron_profile132)_ 5.02404146239101961e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_deuteron_profile133)_ 5.01961109073106274e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_deuteron_profile134)_ 5.01518852589341402e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_deuteron_profile135)_ 5.01077374726146609e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_deuteron_profile136)_ 5.00636673429113999e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_deuteron_profile137)_ 5.00196746651056707e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_deuteron_profile138)_ 4.99757592351977676e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_deuteron_profile139)_ 4.99319208499037251e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_deuteron_profile140)_ 4.98881593066522852e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_deuteron_profile141)_ 4.98444744035816565e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_deuteron_profile142)_ 4.98008659395365268e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_deuteron_profile143)_ 4.97573337140649110e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_deuteron_profile144)_ 4.97138775274150670e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_deuteron_profile145)_ 4.96704971805325001e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_deuteron_profile146)_ 4.96271924750568867e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_deuteron_profile147)_ 4.95839632133190259e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_deuteron_profile148)_ 4.95408091983379051e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_deuteron_profile149)_ 4.94977302338175997e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_deuteron_profile150)_ 4.94547261241444424e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_deuteron_profile151)_ 4.94117966743838936e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_deuteron_profile152)_ 4.93689416902777553e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_deuteron_profile153)_ 4.93261609782411233e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_deuteron_profile154)_ 4.92834543453595191e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_deuteron_profile155)_ 4.92408215993860364e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_deuteron_profile156)_ 4.91982625487383306e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_deuteron_profile157)_ 4.91557770024958923e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_deuteron_profile158)_ 4.91133647703971118e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_deuteron_profile159)_ 4.90710256628364250e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_deuteron_profile160)_ 4.90287594908615425e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_deuteron_profile161)_ 4.89865660661706105e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_deuteron_profile162)_ 4.89444452011094242e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_deuteron_profile163)_ 4.89023967086686045e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_deuteron_profile164)_ 4.88604204024809077e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_deuteron_profile165)_ 4.88185160968184024e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_deuteron_profile166)_ 4.87766836065897569e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_deuteron_profile167)_ 4.87349227473375499e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_deuteron_profile168)_ 4.86932333352354541e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_deuteron_profile169)_ 4.86516151870856956e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_deuteron_profile170)_ 4.86100681203161851e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_deuteron_profile171)_ 4.85685919529780298e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_deuteron_profile172)_ 4.85271865037427545e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_deuteron_profile173)_ 4.84858515918997005e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_deuteron_profile174)_ 4.84445870373534113e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_deuteron_profile175)_ 4.84033926606209651e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_deuteron_profile176)_ 4.83622682828294411e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_deuteron_profile177)_ 4.83212137257132977e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_deuteron_profile178)_ 4.82802288116117492e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_deuteron_profile179)_ 4.82393133634663150e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_deuteron_profile180)_ 4.81984672048181593e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_deuteron_profile181)_ 4.81576901598056257e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_deuteron_profile182)_ 4.81169820531616658e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_deuteron_profile183)_ 4.80763427102113664e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_deuteron_profile184)_ 4.80357719568694085e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_deuteron_profile185)_ 4.79952696196376458e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_deuteron_profile186)_ 4.79548355256025717e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_deuteron_profile187)_ 4.79144695024328679e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_deuteron_profile188)_ 4.78741713783770055e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_deuteron_profile189)_ 4.78339409822607115e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_deuteron_profile190)_ 4.77937781434846818e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_deuteron_profile191)_ 4.77536826920220256e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_deuteron_profile192)_ 4.77136544584159777e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_deuteron_profile193)_ 4.76736932737774253e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_deuteron_profile194)_ 4.76337989697826430e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_deuteron_profile195)_ 4.75939713786707744e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_deuteron_profile196)_ 4.75542103332416415e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_deuteron_profile197)_ 4.75145156668532938e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_deuteron_profile198)_ 4.74748872134197280e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_deuteron_profile199)_ 4.74353248074085414e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_deuteron_profile200)_ 4.73958282838386744e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_deuteron_profile201)_ 4.73563974782780781e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_deuteron_profile202)_ 4.73170322268414423e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_deuteron_profile203)_ 4.72777323661879227e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_deuteron_profile204)_ 4.72384977335188836e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_deuteron_profile205)_ 4.71993281665756553e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_deuteron_profile206)_ 4.71602235036373213e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_deuteron_profile207)_ 4.71211835835184157e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_deuteron_profile208)_ 4.70822082455668002e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_deuteron_profile209)_ 4.70432973296613693e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_deuteron_profile210)_ 4.70044506762099564e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_deuteron_profile211)_ 4.69656681261470690e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_deuteron_profile212)_ 4.69269495209317803e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_deuteron_profile213)_ 4.68882947025455087e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_deuteron_profile214)_ 4.68497035134899169e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_deuteron_profile215)_ 4.68111757967847437e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_deuteron_profile216)_ 4.67727113959656954e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_deuteron_profile217)_ 4.67343101550823003e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_deuteron_profile218)_ 4.66959719186958671e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_deuteron_profile219)_ 4.66576965318772495e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_deuteron_profile220)_ 4.66194838402049541e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_deuteron_profile221)_ 4.65813336897628903e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_deuteron_profile222)_ 4.65432459271383956e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_deuteron_profile223)_ 4.65052203994201422e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_deuteron_profile224)_ 4.64672569541961253e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_deuteron_profile225)_ 4.64293554395515919e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_deuteron_profile226)_ 4.63915157040670365e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_deuteron_profile227)_ 4.63537375968161598e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_deuteron_profile228)_ 4.63160209673639163e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_deuteron_profile229)_ 4.62783656657644287e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_deuteron_profile230)_ 4.62407715425590947e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_deuteron_profile231)_ 4.62032384487745464e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_deuteron_profile232)_ 4.61657662359207198e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_deuteron_profile233)_ 4.61283547559888586e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_deuteron_profile234)_ 4.60910038614495918e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_deuteron_profile235)_ 4.60537134052510113e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_deuteron_profile236)_ 4.60164832408166975e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_deuteron_profile237)_ 4.59793132220438272e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_deuteron_profile238)_ 4.59422032033012509e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_deuteron_profile239)_ 4.59051530394276232e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_deuteron_profile240)_ 4.58681625857294574e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_deuteron_profile241)_ 4.58312316979792714e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_deuteron_profile242)_ 4.57943602324137166e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_deuteron_profile243)_ 4.57575480457317159e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_deuteron_profile244)_ 4.57207949950925708e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_deuteron_profile245)_ 4.56841009381141663e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_deuteron_profile246)_ 4.56474657328710929e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_deuteron_profile247)_ 4.56108892378928289e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_deuteron_profile248)_ 4.55743713121619299e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_deuteron_profile249)_ 4.55379118151121959e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_deuteron_profile250)_ 4.55015106066269055e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_deuteron_profile251)_ 4.54651675470369458e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_deuteron_profile252)_ 4.54288824971191138e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_deuteron_profile253)_ 4.53926553180943057e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_deuteron_profile254)_ 4.53564858716256917e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_deuteron_profile255)_ 4.53203740198170766e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_deuteron_profile256)_ 4.52843196252110228e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_deuteron_profile257)_ 4.52483225507871583e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_deuteron_profile258)_ 4.52123826599604785e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_deuteron_profile259)_ 4.51764998165795654e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_deuteron_profile260)_ 4.51406738849248588e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_deuteron_profile261)_ 4.51049047297070101e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_deuteron_profile262)_ 4.50691922160651237e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_deuteron_profile263)_ 4.50335362095650658e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_deuteron_profile264)_ 4.49979365761978254e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_deuteron_profile265)_ 4.49623931823777631e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_deuteron_profile266)_ 4.49269058949409947e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_deuteron_profile267)_ 4.48914745811437219e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_deuteron_profile268)_ 4.48560991086605638e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_deuteron_profile269)_ 4.48207793455828726e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_deuteron_profile270)_ 4.47855151604171991e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_deuteron_profile271)_ 4.47503064220835418e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_deuteron_profile272)_ 4.47151529999137819e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_deuteron_profile273)_ 4.46800547636501193e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_deuteron_profile274)_ 4.46450115834433362e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_deuteron_profile275)_ 4.46100233298512921e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_deuteron_profile276)_ 4.45750898738373220e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_deuteron_profile277)_ 4.45402110867685825e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_deuteron_profile278)_ 4.45053868404145837e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_deuteron_profile279)_ 4.44706170069455132e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_deuteron_profile280)_ 4.44359014589307159e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_deuteron_profile281)_ 4.44012400693371743e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_deuteron_profile282)_ 4.43666327115278617e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_deuteron_profile283)_ 4.43320792592603192e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_deuteron_profile284)_ 4.42975795866850168e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_deuteron_profile285)_ 4.42631335683438927e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_deuteron_profile286)_ 4.42287410791688040e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_deuteron_profile287)_ 4.41944019944800138e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_deuteron_profile288)_ 4.41601161899846792e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_deuteron_profile289)_ 4.41258835417753905e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_deuteron_profile290)_ 4.40917039263286293e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_deuteron_profile291)_ 4.40575772205032930e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_deuteron_profile292)_ 4.40235033015392497e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_deuteron_profile293)_ 4.39894820470558256e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_deuteron_profile294)_ 4.39555133350503817e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_deuteron_profile295)_ 4.39215970438968018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_deuteron_profile296)_ 4.38877330523440614e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_deuteron_profile297)_ 4.38539212395148352e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_deuteron_profile298)_ 4.38201614849039689e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_deuteron_profile299)_ 4.37864536683771163e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_deuteron_profile300)_ 4.37527976701692939e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_deuteron_profile301)_ 4.37191933708834499e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_deuteron_profile302)_ 4.36856406514890715e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_deuteron_profile303)_ 4.36521393933207393e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_deuteron_profile304)_ 4.36186894780768305e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_deuteron_profile305)_ 4.35852907878179625e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_deuteron_profile306)_ 4.35519432049657702e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_deuteron_profile307)_ 4.35186466123014167e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_deuteron_profile308)_ 4.34854008929642886e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_deuteron_profile309)_ 4.34522059304505736e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_deuteron_profile310)_ 4.34190616086119413e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_deuteron_profile311)_ 4.33859678116541505e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_deuteron_profile312)_ 4.33529244241357595e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_deuteron_profile313)_ 4.33199313309667036e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_deuteron_profile314)_ 4.32869884174070284e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_deuteron_profile315)_ 4.32540955690655410e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_deuteron_profile316)_ 4.32212526718984395e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_deuteron_profile317)_ 4.31884596122080758e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_deuteron_profile318)_ 4.31557162766415775e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_deuteron_profile319)_ 4.31230225521895885e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_deuteron_profile320)_ 4.30903783261849061e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_deuteron_profile321)_ 4.30577834863012508e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_deuteron_profile322)_ 4.30252379205519632e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_deuteron_profile323)_ 4.29927415172887072e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_deuteron_profile324)_ 4.29602941652001962e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_deuteron_profile325)_ 4.29278957533108965e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_deuteron_profile326)_ 4.28955461709798425e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_deuteron_profile327)_ 4.28632453078992814e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_deuteron_profile328)_ 4.28309930540934876e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_deuteron_profile329)_ 4.27987892999174744e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_deuteron_profile330)_ 4.27666339360557869e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_deuteron_profile331)_ 4.27345268535212055e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_deuteron_profile332)_ 4.27024679436535984e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_deuteron_profile333)_ 4.26704570981186256e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_deuteron_profile334)_ 4.26384942089065537e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_deuteron_profile335)_ 4.26065791683310270e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_deuteron_profile336)_ 4.25747118690278605e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_deuteron_profile337)_ 4.25428922039538473e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_deuteron_profile338)_ 4.25111200663855448e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_deuteron_profile339)_ 4.24793953499180973e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_deuteron_profile340)_ 4.24477179484640211e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_deuteron_profile341)_ 4.24160877562520429e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_deuteron_profile342)_ 4.23845046678259447e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_deuteron_profile343)_ 4.23529685780433416e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_deuteron_profile344)_ 4.23214793820745349e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_deuteron_profile345)_ 4.22900369754013717e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_deuteron_profile346)_ 4.22586412538160682e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_deuteron_profile347)_ 4.22272921134200618e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_deuteron_profile348)_ 4.21959894506228641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_deuteron_profile349)_ 4.21647331621409282e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_deuteron_profile350)_ 4.21335231449964866e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_deuteron_profile351)_ 4.21023592965164557e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_deuteron_profile352)_ 4.20712415143313035e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_deuteron_profile353)_ 4.20401696963738948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_deuteron_profile354)_ 4.20091437408784106e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_deuteron_profile355)_ 4.19781635463792384e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_deuteron_profile356)_ 4.19472290117098391e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_deuteron_profile357)_ 4.19163400360016599e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_deuteron_profile358)_ 4.18854965186830312e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_deuteron_profile359)_ 4.18546983594781235e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_deuteron_profile360)_ 4.18239454584057629e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_deuteron_profile361)_ 4.17932377157784477e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_deuteron_profile362)_ 4.17625750322012082e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_deuteron_profile363)_ 4.17319573085705638e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_deuteron_profile364)_ 4.17013844460734427e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_deuteron_profile365)_ 4.16708563461861238e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_deuteron_profile366)_ 4.16403729106731862e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_deuteron_profile367)_ 4.16099340415864438e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_deuteron_profile368)_ 4.15795396412638724e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_deuteron_profile369)_ 4.15491896123286486e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_deuteron_profile370)_ 4.15188838576879948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_deuteron_profile371)_ 4.14886222805322483e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_deuteron_profile372)_ 4.14584047843337506e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_deuteron_profile373)_ 4.14282312728458941e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_deuteron_profile374)_ 4.13981016501020044e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_deuteron_profile375)_ 4.13680158204144165e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_deuteron_profile376)_ 4.13379736883734539e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_deuteron_profile377)_ 4.13079751588463336e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_deuteron_profile378)_ 4.12780201369762570e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_deuteron_profile379)_ 4.12481085281813443e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_deuteron_profile380)_ 4.12182402381536886e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_deuteron_profile381)_ 4.11884151728583500e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_deuteron_profile382)_ 4.11586332385323569e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_deuteron_profile383)_ 4.11288943416837081e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_deuteron_profile384)_ 4.10991983890904337e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_deuteron_profile385)_ 4.10695452877995968e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_deuteron_profile386)_ 4.10399349451263398e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_deuteron_profile387)_ 4.10103672686529160e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_deuteron_profile388)_ 4.09808421662276760e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_deuteron_profile389)_ 4.09513595459642038e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_deuteron_profile390)_ 4.09219193162402958e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_deuteron_profile391)_ 4.08925213856970146e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_deuteron_profile392)_ 4.08631656632377952e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_deuteron_profile393)_ 4.08338520580274388e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_deuteron_profile394)_ 4.08045804794912189e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_deuteron_profile395)_ 4.07753508373139277e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_deuteron_profile396)_ 4.07461630414389819e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_deuteron_profile397)_ 4.07170170020674169e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_deuteron_profile398)_ 4.06879126296570823e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_deuteron_profile399)_ 4.06588498349216059e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_deuteron_profile400)_ 4.06298285288295820e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_deuteron_profile401)_ 4.06008486226036027e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_deuteron_profile402)_ 4.05719100277193561e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_deuteron_profile403)_ 4.05430126559047401e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_deuteron_profile404)_ 4.05141564191389605e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_deuteron_profile405)_ 4.04853412296516672e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_deuteron_profile406)_ 4.04565669999219999e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_deuteron_profile407)_ 4.04278336426777318e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_deuteron_profile408)_ 4.03991410708944276e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_deuteron_profile409)_ 4.03704891977945045e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_deuteron_profile410)_ 4.03418779368463829e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_deuteron_profile411)_ 4.03133072017636299e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_deuteron_profile412)_ 4.02847769065040722e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_deuteron_profile413)_ 4.02562869652689174e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_deuteron_profile414)_ 4.02278372925019413e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_deuteron_profile415)_ 4.01994278028885946e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_deuteron_profile416)_ 4.01710584113551527e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_deuteron_profile417)_ 4.01427290330678746e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_deuteron_profile418)_ 4.01144395834321678e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_deuteron_profile419)_ 4.00861899780917168e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_deuteron_profile420)_ 4.00579801329276860e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_deuteron_profile421)_ 4.00298099640578404e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_deuteron_profile422)_ 4.00016793878357336e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_deuteron_profile423)_ 3.99735883208498955e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_deuteron_profile424)_ 3.99455366799229756e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_deuteron_profile425)_ 3.99175243821109682e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_deuteron_profile426)_ 3.98895513447023481e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_deuteron_profile427)_ 3.98616174852172658e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_deuteron_profile428)_ 3.98337227214067504e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_deuteron_profile429)_ 3.98058669712519199e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_deuteron_profile430)_ 3.97780501529631317e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_deuteron_profile431)_ 3.97502721849792302e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_deuteron_profile432)_ 3.97225329859666750e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_deuteron_profile433)_ 3.96948324748188555e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_deuteron_profile434)_ 3.96671705706552267e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_deuteron_profile435)_ 3.96395471928205043e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_deuteron_profile436)_ 3.96119622608839571e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_deuteron_profile437)_ 3.95844156946385577e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_deuteron_profile438)_ 3.95569074141002446e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_deuteron_profile439)_ 3.95294373395071179e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_deuteron_profile440)_ 3.95020053913187012e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_deuteron_profile441)_ 3.94746114902151525e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_deuteron_profile442)_ 3.94472555570964962e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_deuteron_profile443)_ 3.94199375130818859e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_deuteron_profile444)_ 3.93926572795088217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_deuteron_profile445)_ 3.93654147779323980e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_deuteron_profile446)_ 3.93382099301245660e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_deuteron_profile447)_ 3.93110426580733731e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_deuteron_profile448)_ 3.92839128839822337e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_deuteron_profile449)_ 3.92568205302691311e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_deuteron_profile450)_ 3.92297655195659921e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_deuteron_profile451)_ 3.92027477747178078e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_deuteron_profile452)_ 3.91757672187820002e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_deuteron_profile453)_ 3.91488237750276774e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_deuteron_profile454)_ 3.91219173669348806e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_deuteron_profile455)_ 3.90950479181938544e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_deuteron_profile456)_ 3.90682153527043611e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_deuteron_profile457)_ 3.90414195945749357e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_deuteron_profile458)_ 3.90146605681221709e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_deuteron_profile459)_ 3.89879381978700310e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_deuteron_profile460)_ 3.89612524085491076e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_deuteron_profile461)_ 3.89346031250959262e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_deuteron_profile462)_ 3.89079902726522610e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_deuteron_profile463)_ 3.88814137765643671e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_deuteron_profile464)_ 3.88548735623824149e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_deuteron_profile465)_ 3.88283695558596551e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_deuteron_profile466)_ 3.88019016829517782e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_deuteron_profile467)_ 3.87754698698162511e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_deuteron_profile468)_ 3.87490740428116024e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_deuteron_profile469)_ 3.87227141284967735e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_deuteron_profile470)_ 3.86963900536303446e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_deuteron_profile471)_ 3.86701017451700047e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_deuteron_profile472)_ 3.86438491302717179e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_deuteron_profile473)_ 3.86176321362891719e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_deuteron_profile474)_ 3.85914506907730550e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_deuteron_profile475)_ 3.85653047214703634e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_deuteron_profile476)_ 3.85391941563237980e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_deuteron_profile477)_ 3.85131189234710708e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_deuteron_profile478)_ 3.84870789512442499e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_deuteron_profile479)_ 3.84610741681690812e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_deuteron_profile480)_ 3.84351045029643849e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_deuteron_profile481)_ 3.84091698845413327e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_deuteron_profile482)_ 3.83832702420028597e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_deuteron_profile483)_ 3.83574055046430230e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_deuteron_profile484)_ 3.83315756019462943e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_deuteron_profile485)_ 3.83057804635869786e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_deuteron_profile486)_ 3.82800200194285437e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_deuteron_profile487)_ 3.82542941995230168e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_deuteron_profile488)_ 3.82286029341103062e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_deuteron_profile489)_ 3.82029461536176130e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_deuteron_profile490)_ 3.81773237886587903e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_deuteron_profile491)_ 3.81517357700336725e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_deuteron_profile492)_ 3.81261820287275612e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_deuteron_profile493)_ 3.81006624959104657e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_deuteron_profile494)_ 3.80751771029366180e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_deuteron_profile495)_ 3.80497257813437507e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_deuteron_profile496)_ 3.80243084628525376e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_deuteron_profile497)_ 3.79989250793659836e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_deuteron_profile498)_ 3.79735755629688129e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_deuteron_profile499)_ 3.79482598459268287e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_deuteron_profile500)_ 3.79229778606863767e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_deuteron_profile501)_ 3.78977295398736671e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_deuteron_profile502)_ 3.78725148162942380e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_deuteron_profile503)_ 3.78473336229323372e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_deuteron_profile504)_ 3.78221858929503188e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_deuteron_profile505)_ 3.77970715596880764e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_deuteron_profile506)_ 3.77719905566624030e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_deuteron_profile507)_ 3.77469428175664768e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_deuteron_profile508)_ 3.77219282762692198e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_deuteron_profile509)_ 3.76969468668147400e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_deuteron_profile510)_ 3.76719985234217346e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_deuteron_profile511)_ 3.76470831804829687e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_deuteron_profile512)_ 3.76222007725646049e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_deuteron_profile513)_ 3.75973512344057038e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_deuteron_profile514)_ 3.75725345009176582e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_deuteron_profile515)_ 3.75477505071835369e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_deuteron_profile516)_ 3.75229991884576455e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_deuteron_profile517)_ 3.74982804801648483e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_deuteron_profile518)_ 3.74735943179001063e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_deuteron_profile519)_ 3.74489406374277994e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_deuteron_profile520)_ 3.74243193746812940e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_deuteron_profile521)_ 3.73997304657623172e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_deuteron_profile522)_ 3.73751738469404131e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_deuteron_profile523)_ 3.73506494546523839e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_deuteron_profile524)_ 3.73261572255018055e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_deuteron_profile525)_ 3.73016970962583497e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_deuteron_profile526)_ 3.72772690038573965e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_deuteron_profile527)_ 3.72528728853993714e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_deuteron_profile528)_ 3.72285086781492829e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_deuteron_profile529)_ 3.72041763195361122e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_deuteron_profile530)_ 3.71798757471523508e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_deuteron_profile531)_ 3.71556068987534270e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_deuteron_profile532)_ 3.71313697122571692e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_deuteron_profile533)_ 3.71071641257433072e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_deuteron_profile534)_ 3.70829900774529353e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_deuteron_profile535)_ 3.70588475057879165e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_deuteron_profile536)_ 3.70347363493105024e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_deuteron_profile537)_ 3.70106565467426851e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_deuteron_profile538)_ 3.69866080369657278e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_deuteron_profile539)_ 3.69625907590196431e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_deuteron_profile540)_ 3.69386046521026865e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_deuteron_profile541)_ 3.69146496555708423e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_deuteron_profile542)_ 3.68907257089372948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_deuteron_profile543)_ 3.68668327518719137e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_deuteron_profile544)_ 3.68429707242008075e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_deuteron_profile545)_ 3.68191395659057200e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_deuteron_profile546)_ 3.67953392171236202e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_deuteron_profile547)_ 3.67715696181461588e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_deuteron_profile548)_ 3.67478307094191462e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_deuteron_profile549)_ 3.67241224315420985e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_deuteron_profile550)_ 3.67004447252677307e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_deuteron_profile551)_ 3.66767975315014496e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_deuteron_profile552)_ 3.66531807913008630e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_deuteron_profile553)_ 3.66295944458753243e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_deuteron_profile554)_ 3.66060384365853667e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_deuteron_profile555)_ 3.65825127049423158e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_deuteron_profile556)_ 3.65590171926077306e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_deuteron_profile557)_ 3.65355518413929716e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_deuteron_profile558)_ 3.65121165932586566e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_deuteron_profile559)_ 3.64887113903142586e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_deuteron_profile560)_ 3.64653361748175845e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_deuteron_profile561)_ 3.64419908891742975e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_deuteron_profile562)_ 3.64186754759374559e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_deuteron_profile563)_ 3.63953898778070658e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_deuteron_profile564)_ 3.63721340376295447e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_deuteron_profile565)_ 3.63489078983973414e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_deuteron_profile566)_ 3.63257114032483995e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_deuteron_profile567)_ 3.63025444954657257e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_deuteron_profile568)_ 3.62794071184768975e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_deuteron_profile569)_ 3.62562992158536538e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_deuteron_profile570)_ 3.62332207313114256e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_deuteron_profile571)_ 3.62101716087087989e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_deuteron_profile572)_ 3.61871517920471951e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_deuteron_profile573)_ 3.61641612254702970e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_deuteron_profile574)_ 3.61411998532636538e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_deuteron_profile575)_ 3.61182676198542193e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_deuteron_profile576)_ 3.60953644698099270e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_deuteron_profile577)_ 3.60724903478391990e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_deuteron_profile578)_ 3.60496451987905353e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_deuteron_profile579)_ 3.60268289676520601e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_deuteron_profile580)_ 3.60040415995510668e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_deuteron_profile581)_ 3.59812830397536308e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_deuteron_profile582)_ 3.59585532336640880e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_deuteron_profile583)_ 3.59358521268246472e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_deuteron_profile584)_ 3.59131796649149805e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_deuteron_profile585)_ 3.58905357937517315e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_deuteron_profile586)_ 3.58679204592881203e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_deuteron_profile587)_ 3.58453336076135114e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_deuteron_profile588)_ 3.58227751849529594e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_deuteron_profile589)_ 3.58002451376668215e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_deuteron_profile590)_ 3.57777434122503102e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_deuteron_profile591)_ 3.57552699553330615e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_deuteron_profile592)_ 3.57328247136787549e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_deuteron_profile593)_ 3.57104076341845989e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_deuteron_profile594)_ 3.56880186638810262e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_deuteron_profile595)_ 3.56656577499312311e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_deuteron_profile596)_ 3.56433248396307081e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_deuteron_profile597)_ 3.56210198804069087e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_deuteron_profile598)_ 3.55987428198187947e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_deuteron_profile599)_ 3.55764936055564061e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_deuteron_profile600)_ 3.55542721854405031e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_deuteron_profile601)_ 3.55320785074221194e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_deuteron_profile602)_ 3.55099125195821896e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_deuteron_profile603)_ 3.54877741701310724e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_deuteron_profile604)_ 3.54656634074082524e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_deuteron_profile605)_ 3.54435801798818484e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_deuteron_profile606)_ 3.54215244361482561e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_deuteron_profile607)_ 3.53994961249317527e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_deuteron_profile608)_ 3.53774951950840577e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_deuteron_profile609)_ 3.53555215955840051e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_deuteron_profile610)_ 3.53335752755370885e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_deuteron_profile611)_ 3.53116561841750890e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_deuteron_profile612)_ 3.52897642708557099e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_deuteron_profile613)_ 3.52678994850621149e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_deuteron_profile614)_ 3.52460617764026299e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_deuteron_profile615)_ 3.52242510946103111e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_deuteron_profile616)_ 3.52024673895425126e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_deuteron_profile617)_ 3.51807106111806259e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_deuteron_profile618)_ 3.51589807096295506e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_deuteron_profile619)_ 3.51372776351174340e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_deuteron_profile620)_ 3.51156013379952163e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_deuteron_profile621)_ 3.50939517687362880e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_deuteron_profile622)_ 3.50723288779360726e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_deuteron_profile623)_ 3.50507326163117290e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_deuteron_profile624)_ 3.50291629347016886e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_deuteron_profile625)_ 3.50076197840653434e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_deuteron_profile626)_ 3.49861031154826358e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_deuteron_profile627)_ 3.49646128801537156e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_deuteron_profile628)_ 3.49431490293985531e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_deuteron_profile629)_ 3.49217115146565884e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_deuteron_profile630)_ 3.49003002874863595e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_deuteron_profile631)_ 3.48789152995651066e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_deuteron_profile632)_ 3.48575565026884526e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_deuteron_profile633)_ 3.48362238487700373e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_deuteron_profile634)_ 3.48149172898411229e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_deuteron_profile635)_ 3.47936367780502811e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_deuteron_profile636)_ 3.47723822656629458e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_deuteron_profile637)_ 3.47511537050612047e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_deuteron_profile638)_ 3.47299510487432852e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_deuteron_profile639)_ 3.47087742493233159e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_deuteron_profile640)_ 3.46876232595309243e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_deuteron_profile641)_ 3.46664980322108716e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_deuteron_profile642)_ 3.46453985203227326e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_deuteron_profile643)_ 3.46243246769405380e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_deuteron_profile644)_ 3.46032764552524313e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_deuteron_profile645)_ 3.45822538085603043e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_deuteron_profile646)_ 3.45612566902794465e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_deuteron_profile647)_ 3.45402850539382547e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_deuteron_profile648)_ 3.45193388531778306e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_deuteron_profile649)_ 3.44984180417516604e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_deuteron_profile650)_ 3.44775225735252798e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_deuteron_profile651)_ 3.44566524024759308e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_deuteron_profile652)_ 3.44358074826922268e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_deuteron_profile653)_ 3.44149877683737800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_deuteron_profile654)_ 3.43941932138309702e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_deuteron_profile655)_ 3.43734237734844536e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_deuteron_profile656)_ 3.43526794018649608e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_deuteron_profile657)_ 3.43319600536129326e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_deuteron_profile658)_ 3.43112656834781468e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_deuteron_profile659)_ 3.42905962463194206e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_deuteron_profile660)_ 3.42699516971043050e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_deuteron_profile661)_ 3.42493319909086898e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_deuteron_profile662)_ 3.42287370829165652e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_deuteron_profile663)_ 3.42081669284196123e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_deuteron_profile664)_ 3.41876214828169644e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_deuteron_profile665)_ 3.41671007016147897e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_deuteron_profile666)_ 3.41466045404260680e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_deuteron_profile667)_ 3.41261329549701661e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_deuteron_profile668)_ 3.41056859010726437e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_deuteron_profile669)_ 3.40852633346648142e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_deuteron_profile670)_ 3.40648652117835134e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_deuteron_profile671)_ 3.40444914885707200e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_deuteron_profile672)_ 3.40241421212733164e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_deuteron_profile673)_ 3.40038170662426800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_deuteron_profile674)_ 3.39835162799344733e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_deuteron_profile675)_ 3.39632397189082578e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_deuteron_profile676)_ 3.39429873398272172e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_deuteron_profile677)_ 3.39227590994578302e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_deuteron_profile678)_ 3.39025549546695873e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_deuteron_profile679)_ 3.38823748624346629e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_deuteron_profile680)_ 3.38622187798276320e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_deuteron_profile681)_ 3.38420866640251130e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_deuteron_profile682)_ 3.38219784723055512e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_deuteron_profile683)_ 3.38018941620488465e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_deuteron_profile684)_ 3.37818336907360554e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_deuteron_profile685)_ 3.37617970159491375e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_deuteron_profile686)_ 3.37417840953706279e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_deuteron_profile687)_ 3.37217948867833242e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_deuteron_profile688)_ 3.37018293480700105e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_deuteron_profile689)_ 3.36818874372131675e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_deuteron_profile690)_ 3.36619691122946516e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_deuteron_profile691)_ 3.36420743314954117e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_deuteron_profile692)_ 3.36222030530952364e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_deuteron_profile693)_ 3.36023552354723960e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_deuteron_profile694)_ 3.35825308371033892e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_deuteron_profile695)_ 3.35627298165626451e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_deuteron_profile696)_ 3.35429521325222403e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_deuteron_profile697)_ 3.35231977437516190e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_deuteron_profile698)_ 3.35034666091172695e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_deuteron_profile699)_ 3.34837586875824966e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_deuteron_profile700)_ 3.34640739382070862e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_deuteron_profile701)_ 3.34444123201470301e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_deuteron_profile702)_ 3.34247737926542796e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_deuteron_profile703)_ 3.34051583150764368e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_deuteron_profile704)_ 3.33855658468564488e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_deuteron_profile705)_ 3.33659963475323841e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_deuteron_profile706)_ 3.33464497767371088e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_deuteron_profile707)_ 3.33269260941980332e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_deuteron_profile708)_ 3.33074252597368285e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_deuteron_profile709)_ 3.32879472332691476e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_deuteron_profile710)_ 3.32684919748043530e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_deuteron_profile711)_ 3.32490594444452338e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_deuteron_profile712)_ 3.32296496023877598e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_deuteron_profile713)_ 3.32102624089207985e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_deuteron_profile714)_ 3.31908978244257979e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_deuteron_profile715)_ 3.31715558093766011e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_deuteron_profile716)_ 3.31522363243391030e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_deuteron_profile717)_ 3.31329393299710378e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_deuteron_profile718)_ 3.31136647870216593e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_deuteron_profile719)_ 3.30944126563315392e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_deuteron_profile720)_ 3.30751828988322131e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_deuteron_profile721)_ 3.30559754755460173e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_deuteron_profile722)_ 3.30367903475857563e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_deuteron_profile723)_ 3.30176274761544354e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_deuteron_profile724)_ 3.29984868225450702e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_deuteron_profile725)_ 3.29793683481403515e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_deuteron_profile726)_ 3.29602720144124180e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_deuteron_profile727)_ 3.29411977829225883e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_deuteron_profile728)_ 3.29221456153211370e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_deuteron_profile729)_ 3.29031154733469635e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_deuteron_profile730)_ 3.28841073188274093e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_deuteron_profile731)_ 3.28651211136779673e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_deuteron_profile732)_ 3.28461568199020475e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_deuteron_profile733)_ 3.28272143995906822e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_deuteron_profile734)_ 3.28082938149223328e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_deuteron_profile735)_ 3.27893950281625800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_deuteron_profile736)_ 3.27705180016639270e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_deuteron_profile737)_ 3.27516626978654973e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_deuteron_profile738)_ 3.27328290792928413e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_deuteron_profile739)_ 3.27140171085576080e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_deuteron_profile740)_ 3.26952267483574040e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_deuteron_profile741)_ 3.26764579614754505e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_deuteron_profile742)_ 3.26577107107804045e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_deuteron_profile743)_ 3.26389849592260607e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_deuteron_profile744)_ 3.26202806698511429e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_deuteron_profile745)_ 3.26015978057790622e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_deuteron_profile746)_ 3.25829363302176557e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_deuteron_profile747)_ 3.25642962064589523e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_deuteron_profile748)_ 3.25456773978789300e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_deuteron_profile749)_ 3.25270798679372817e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_deuteron_profile750)_ 3.25085035801771842e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_deuteron_profile751)_ 3.24899484982250333e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_deuteron_profile752)_ 3.24714145857902095e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_deuteron_profile753)_ 3.24529018066649064e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_deuteron_profile754)_ 3.24344101247237846e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_deuteron_profile755)_ 3.24159395039238296e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_deuteron_profile756)_ 3.23974899083040617e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_deuteron_profile757)_ 3.23790613019853458e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_deuteron_profile758)_ 3.23606536491701230e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_deuteron_profile759)_ 3.23422669141421802e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_deuteron_profile760)_ 3.23239010612664632e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_deuteron_profile761)_ 3.23055560549887903e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_deuteron_profile762)_ 3.22872318598356508e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_deuteron_profile763)_ 3.22689284404139742e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_deuteron_profile764)_ 3.22506457614109032e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_deuteron_profile765)_ 3.22323837875935696e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_deuteron_profile766)_ 3.22141424838088490e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_deuteron_profile767)_ 3.21959218149831705e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_deuteron_profile768)_ 3.21777217461222410e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_deuteron_profile769)_ 3.21595422423108742e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_deuteron_profile770)_ 3.21413832687127329e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_deuteron_profile771)_ 3.21232447905701213e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_deuteron_profile772)_ 3.21051267732037492e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_deuteron_profile773)_ 3.20870291820125431e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_deuteron_profile774)_ 3.20689519824733734e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_deuteron_profile775)_ 3.20508951401409060e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_deuteron_profile776)_ 3.20328586206472889e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_deuteron_profile777)_ 3.20148423897020444e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_deuteron_profile778)_ 3.19968464130917639e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_deuteron_profile779)_ 3.19788706566799134e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_deuteron_profile780)_ 3.19609150864066556e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_deuteron_profile781)_ 3.19429796682885773e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_deuteron_profile782)_ 3.19250643684185371e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_deuteron_profile783)_ 3.19071691529653817e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_deuteron_profile784)_ 3.18892939881738052e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_deuteron_profile785)_ 3.18714388403640762e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_deuteron_profile786)_ 3.18536036759318672e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_deuteron_profile787)_ 3.18357884613480121e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_deuteron_profile788)_ 3.18179931631583273e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_deuteron_profile789)_ 3.18002177479833774e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_deuteron_profile790)_ 3.17824621825182848e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_deuteron_profile791)_ 3.17647264335325062e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_deuteron_profile792)_ 3.17470104678696282e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_deuteron_profile793)_ 3.17293142524471804e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_deuteron_profile794)_ 3.17116377542564049e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_deuteron_profile795)_ 3.16939809403620474e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_deuteron_profile796)_ 3.16763437779021896e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_deuteron_profile797)_ 3.16587262340880148e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_deuteron_profile798)_ 3.16411282762035839e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_deuteron_profile799)_ 3.16235498716056943e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_deuteron_profile800)_ 3.16059909877236262e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_deuteron_profile801)_ 3.15884515920589641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_deuteron_profile802)_ 3.15709316521853842e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_deuteron_profile803)_ 3.15534311357484721e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_deuteron_profile804)_ 3.15359500104655102e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_deuteron_profile805)_ 3.15184882441252694e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_deuteron_profile806)_ 3.15010458045878448e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_deuteron_profile807)_ 3.14836226597844251e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_deuteron_profile808)_ 3.14662187777171023e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_deuteron_profile809)_ 3.14488341264587007e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_deuteron_profile810)_ 3.14314686741525419e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_deuteron_profile811)_ 3.14141223890122734e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_deuteron_profile812)_ 3.13967952393217050e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_deuteron_profile813)_ 3.13794871934345327e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_deuteron_profile814)_ 3.13621982197742425e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_deuteron_profile815)_ 3.13449282868338339e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_deuteron_profile816)_ 3.13276773631756939e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_deuteron_profile817)_ 3.13104454174313769e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_deuteron_profile818)_ 3.12932324183013961e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_deuteron_profile819)_ 3.12760383345550857e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_deuteron_profile820)_ 3.12588631350303367e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_deuteron_profile821)_ 3.12417067886335067e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_deuteron_profile822)_ 3.12245692643391341e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_deuteron_profile823)_ 3.12074505311898217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_deuteron_profile824)_ 3.11903505582960211e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_deuteron_profile825)_ 3.11732693148358390e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_deuteron_profile826)_ 3.11562067700548731e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_deuteron_profile827)_ 3.11391628932659961e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_deuteron_profile828)_ 3.11221376538492292e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_deuteron_profile829)_ 3.11051310212515034e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_deuteron_profile830)_ 3.10881429649864845e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_deuteron_profile831)_ 3.10711734546344094e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_deuteron_profile832)_ 3.10542224598419219e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_deuteron_profile833)_ 3.10372899503218345e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_deuteron_profile834)_ 3.10203758958529942e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_deuteron_profile835)_ 3.10034802662800848e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_deuteron_profile836)_ 3.09866030315134712e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_deuteron_profile837)_ 3.09697441615289710e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_deuteron_profile838)_ 3.09529036263677254e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_deuteron_profile839)_ 3.09360813961360045e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_deuteron_profile840)_ 3.09192774410050213e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_deuteron_profile841)_ 3.09024917312107757e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_deuteron_profile842)_ 3.08857242370538488e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_deuteron_profile843)_ 3.08689749288992658e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_deuteron_profile844)_ 3.08522437771762796e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_deuteron_profile845)_ 3.08355307523782477e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_deuteron_profile846)_ 3.08188358250623979e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_deuteron_profile847)_ 3.08021589658496976e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_deuteron_profile848)_ 3.07855001454246938e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_deuteron_profile849)_ 3.07688593345352709e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_deuteron_profile850)_ 3.07522365039925687e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_deuteron_profile851)_ 3.07356316246707588e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_deuteron_profile852)_ 3.07190446675068811e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_deuteron_profile853)_ 3.07024756035006680e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_deuteron_profile854)_ 3.06859244037144184e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_deuteron_profile855)_ 3.06693910392727666e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_deuteron_profile856)_ 3.06528754813625477e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_deuteron_profile857)_ 3.06363777012326382e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_deuteron_profile858)_ 3.06198976701937877e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_deuteron_profile859)_ 3.06034353596184142e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_deuteron_profile860)_ 3.05869907409404851e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_deuteron_profile861)_ 3.05705637856553383e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_deuteron_profile862)_ 3.05541544653195068e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_deuteron_profile863)_ 3.05377627515505590e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_deuteron_profile864)_ 3.05213886160269342e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_deuteron_profile865)_ 3.05050320304878093e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_deuteron_profile866)_ 3.04886929667328559e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_deuteron_profile867)_ 3.04723713966221884e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_deuteron_profile868)_ 3.04560672920761108e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_deuteron_profile869)_ 3.04397806250750013e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_deuteron_profile870)_ 3.04235113676591367e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_deuteron_profile871)_ 3.04072594919285513e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_deuteron_profile872)_ 3.03910249700428434e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_deuteron_profile873)_ 3.03748077742210440e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_deuteron_profile874)_ 3.03586078767414615e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_deuteron_profile875)_ 3.03424252499414943e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_deuteron_profile876)_ 3.03262598662174977e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_deuteron_profile877)_ 3.03101116980246268e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_deuteron_profile878)_ 3.02939807178766616e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_deuteron_profile879)_ 3.02778668983458765e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_deuteron_profile880)_ 3.02617702120628655e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_deuteron_profile881)_ 3.02456906317163855e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_deuteron_profile882)_ 3.02296281300532334e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_deuteron_profile883)_ 3.02135826798780449e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_deuteron_profile884)_ 3.01975542540531754e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_deuteron_profile885)_ 3.01815428254985362e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_deuteron_profile886)_ 3.01655483671914376e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_deuteron_profile887)_ 3.01495708521664441e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_deuteron_profile888)_ 3.01336102535152212e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_deuteron_profile889)_ 3.01176665443863757e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_deuteron_profile890)_ 3.01017396979853213e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_deuteron_profile891)_ 3.00858296875741258e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_deuteron_profile892)_ 3.00699364864713363e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_deuteron_profile893)_ 3.00540600680518672e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_deuteron_profile894)_ 3.00382004057468288e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_deuteron_profile895)_ 3.00223574730433747e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_deuteron_profile896)_ 3.00065312434845790e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_deuteron_profile897)_ 2.99907216906692535e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_deuteron_profile898)_ 2.99749287882518433e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_deuteron_profile899)_ 2.99591525099422336e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_deuteron_profile900)_ 2.99433928295056522e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_deuteron_profile901)_ 2.99276497207624838e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_deuteron_profile902)_ 2.99119231575881429e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_deuteron_profile903)_ 2.98962131139129400e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_deuteron_profile904)_ 2.98805195637219138e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_deuteron_profile905)_ 2.98648424810546897e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_deuteron_profile906)_ 2.98491818400053680e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_deuteron_profile907)_ 2.98335376147223525e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_deuteron_profile908)_ 2.98179097794081941e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_deuteron_profile909)_ 2.98022983083194979e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_deuteron_profile910)_ 2.97867031757667437e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_deuteron_profile911)_ 2.97711243561141416e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_deuteron_profile912)_ 2.97555618237795308e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_deuteron_profile913)_ 2.97400155532341897e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_deuteron_profile914)_ 2.97244855190027356e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_deuteron_profile915)_ 2.97089716956629641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_deuteron_profile916)_ 2.96934740578457192e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_deuteron_profile917)_ 2.96779925802347474e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_deuteron_profile918)_ 2.96625272375665680e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_deuteron_profile919)_ 2.96470780046303384e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_deuteron_profile920)_ 2.96316448562676981e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_deuteron_profile921)_ 2.96162277673726566e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_deuteron_profile922)_ 2.96008267128914408e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_deuteron_profile923)_ 2.95854416678223684e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_deuteron_profile924)_ 2.95700726072157063e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_deuteron_profile925)_ 2.95547195061735436e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_deuteron_profile926)_ 2.95393823398496360e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_deuteron_profile927)_ 2.95240610834492967e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_deuteron_profile928)_ 2.95087557122292630e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_deuteron_profile929)_ 2.94934662014975324e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_deuteron_profile930)_ 2.94781925266132802e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_deuteron_profile931)_ 2.94629346629866660e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_deuteron_profile932)_ 2.94476925860787593e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_deuteron_profile933)_ 2.94324662714013681e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_deuteron_profile934)_ 2.94172556945169196e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_deuteron_profile935)_ 2.94020608310383484e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_deuteron_profile936)_ 2.93868816566289365e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_deuteron_profile937)_ 2.93717181470021904e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_deuteron_profile938)_ 2.93565702779217362e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_deuteron_profile939)_ 2.93414380252011567e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_deuteron_profile940)_ 2.93263213647038825e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_deuteron_profile941)_ 2.93112202723430693e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_deuteron_profile942)_ 2.92961347240814380e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_deuteron_profile943)_ 2.92810646959311999e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_deuteron_profile944)_ 2.92660101639538556e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_deuteron_profile945)_ 2.92509711042601503e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_deuteron_profile946)_ 2.92359474930098876e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_deuteron_profile947)_ 2.92209393064118326e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_deuteron_profile948)_ 2.92059465207235739e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_deuteron_profile949)_ 2.91909691122514047e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_deuteron_profile950)_ 2.91760070573501997e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_deuteron_profile951)_ 2.91610603324232772e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_deuteron_profile952)_ 2.91461289139222950e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_deuteron_profile953)_ 2.91312127783471048e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_deuteron_profile954)_ 2.91163119022456482e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_deuteron_profile955)_ 2.91014262622138299e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_deuteron_profile956)_ 2.90865558348953761e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_deuteron_profile957)_ 2.90717005969817415e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_deuteron_profile958)_ 2.90568605252119675e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_deuteron_profile959)_ 2.90420355963725708e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_deuteron_profile960)_ 2.90272257872974202e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_deuteron_profile961)_ 2.90124310748676024e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_deuteron_profile962)_ 2.89976514360113330e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_deuteron_profile963)_ 2.89828868477037922e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_deuteron_profile964)_ 2.89681372869670428e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_deuteron_profile965)_ 2.89534027308699116e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_deuteron_profile966)_ 2.89386831565278322e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_deuteron_profile967)_ 2.89239785411027670e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_deuteron_profile968)_ 2.89092888618030697e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_deuteron_profile969)_ 2.88946140958833732e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_deuteron_profile970)_ 2.88799542206444629e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_deuteron_profile971)_ 2.88653092134331837e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_deuteron_profile972)_ 2.88506790516422950e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_deuteron_profile973)_ 2.88360637127103582e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_deuteron_profile974)_ 2.88214631741216406e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_deuteron_profile975)_ 2.88068774134059958e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_deuteron_profile976)_ 2.87923064081387222e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_deuteron_profile977)_ 2.87777501359404698e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_deuteron_profile978)_ 2.87632085744771287e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_deuteron_profile979)_ 2.87486817014597170e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_deuteron_profile980)_ 2.87341694946442395e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_deuteron_profile981)_ 2.87196719318316020e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_deuteron_profile982)_ 2.87051889908674955e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_deuteron_profile983)_ 2.86907206496422552e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_deuteron_profile984)_ 2.86762668860908039e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_deuteron_profile985)_ 2.86618276781924702e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_deuteron_profile986)_ 2.86474030039709359e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_deuteron_profile987)_ 2.86329928414940871e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_deuteron_profile988)_ 2.86185971688739285e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_deuteron_profile989)_ 2.86042159642664492e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_deuteron_profile990)_ 2.85898492058715411e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_deuteron_profile991)_ 2.85754968719328493e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_deuteron_profile992)_ 2.85611589407377020e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_deuteron_profile993)_ 2.85468353906169683e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_deuteron_profile994)_ 2.85325261999449879e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_deuteron_profile995)_ 2.85182313471393995e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_deuteron_profile996)_ 2.85039508106611148e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_deuteron_profile997)_ 2.84896845690141357e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_deuteron_profile998)_ 2.84754326007454954e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_deuteron_profile999)_ 2.84611948844451196e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_deuteron_profile1000)_ 2.84469713987457491e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_deuteron_profile1001)_ 2.84327621223228015e+07 -Volume_averaged_triton_toroidal_Larmor_frequency_(ωc)_(Hz)_______________ (freq_plasma_larmor_toroidal_triton_vol_avg)_ 2.53140400908535048e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_0_______________________ (freq_plasma_larmor_toroidal_triton_profile0)_ 3.79710601362802610e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_1_______________________ (freq_plasma_larmor_toroidal_triton_profile1)_ 3.79331648666831702e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_2_______________________ (freq_plasma_larmor_toroidal_triton_profile2)_ 3.78953451609337404e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_3_______________________ (freq_plasma_larmor_toroidal_triton_profile3)_ 3.78576007932435647e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_4_______________________ (freq_plasma_larmor_toroidal_triton_profile4)_ 3.78199315387229249e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_5_______________________ (freq_plasma_larmor_toroidal_triton_profile5)_ 3.77823371733762771e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_6_______________________ (freq_plasma_larmor_toroidal_triton_profile6)_ 3.77448174740978554e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_7_______________________ (freq_plasma_larmor_toroidal_triton_profile7)_ 3.77073722186672091e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_8_______________________ (freq_plasma_larmor_toroidal_triton_profile8)_ 3.76700011857448369e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_9_______________________ (freq_plasma_larmor_toroidal_triton_profile9)_ 3.76327041548678651e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_10______________________ (freq_plasma_larmor_toroidal_triton_profile10)_ 3.75954809064456373e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_11______________________ (freq_plasma_larmor_toroidal_triton_profile11)_ 3.75583312217554748e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_12______________________ (freq_plasma_larmor_toroidal_triton_profile12)_ 3.75212548829383403e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_13______________________ (freq_plasma_larmor_toroidal_triton_profile13)_ 3.74842516729946136e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_14______________________ (freq_plasma_larmor_toroidal_triton_profile14)_ 3.74473213757798374e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_15______________________ (freq_plasma_larmor_toroidal_triton_profile15)_ 3.74104637760005295e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_16______________________ (freq_plasma_larmor_toroidal_triton_profile16)_ 3.73736786592099741e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_17______________________ (freq_plasma_larmor_toroidal_triton_profile17)_ 3.73369658118040636e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_18______________________ (freq_plasma_larmor_toroidal_triton_profile18)_ 3.73003250210172087e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_19______________________ (freq_plasma_larmor_toroidal_triton_profile19)_ 3.72637560749181807e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_20______________________ (freq_plasma_larmor_toroidal_triton_profile20)_ 3.72272587624060139e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_21______________________ (freq_plasma_larmor_toroidal_triton_profile21)_ 3.71908328732060120e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_22______________________ (freq_plasma_larmor_toroidal_triton_profile22)_ 3.71544781978656277e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_23______________________ (freq_plasma_larmor_toroidal_triton_profile23)_ 3.71181945277505219e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_24______________________ (freq_plasma_larmor_toroidal_triton_profile24)_ 3.70819816550405249e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_25______________________ (freq_plasma_larmor_toroidal_triton_profile25)_ 3.70458393727256730e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_26______________________ (freq_plasma_larmor_toroidal_triton_profile26)_ 3.70097674746022820e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_27______________________ (freq_plasma_larmor_toroidal_triton_profile27)_ 3.69737657552690059e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_28______________________ (freq_plasma_larmor_toroidal_triton_profile28)_ 3.69378340101229772e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_29______________________ (freq_plasma_larmor_toroidal_triton_profile29)_ 3.69019720353558585e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_30______________________ (freq_plasma_larmor_toroidal_triton_profile30)_ 3.68661796279500872e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_31______________________ (freq_plasma_larmor_toroidal_triton_profile31)_ 3.68304565856749415e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_32______________________ (freq_plasma_larmor_toroidal_triton_profile32)_ 3.67948027070828080e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_33______________________ (freq_plasma_larmor_toroidal_triton_profile33)_ 3.67592177915053591e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_34______________________ (freq_plasma_larmor_toroidal_triton_profile34)_ 3.67237016390497983e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_35______________________ (freq_plasma_larmor_toroidal_triton_profile35)_ 3.66882540505951121e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_36______________________ (freq_plasma_larmor_toroidal_triton_profile36)_ 3.66528748277883753e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_37______________________ (freq_plasma_larmor_toroidal_triton_profile37)_ 3.66175637730409801e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_38______________________ (freq_plasma_larmor_toroidal_triton_profile38)_ 3.65823206895250604e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_39______________________ (freq_plasma_larmor_toroidal_triton_profile39)_ 3.65471453811697513e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_40______________________ (freq_plasma_larmor_toroidal_triton_profile40)_ 3.65120376526575759e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_41______________________ (freq_plasma_larmor_toroidal_triton_profile41)_ 3.64769973094208613e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_42______________________ (freq_plasma_larmor_toroidal_triton_profile42)_ 3.64420241576380953e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_43______________________ (freq_plasma_larmor_toroidal_triton_profile43)_ 3.64071180042304024e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_44______________________ (freq_plasma_larmor_toroidal_triton_profile44)_ 3.63722786568579376e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_45______________________ (freq_plasma_larmor_toroidal_triton_profile45)_ 3.63375059239163846e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_46______________________ (freq_plasma_larmor_toroidal_triton_profile46)_ 3.63027996145334691e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_47______________________ (freq_plasma_larmor_toroidal_triton_profile47)_ 3.62681595385653973e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_48______________________ (freq_plasma_larmor_toroidal_triton_profile48)_ 3.62335855065934584e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_49______________________ (freq_plasma_larmor_toroidal_triton_profile49)_ 3.61990773299205080e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_50______________________ (freq_plasma_larmor_toroidal_triton_profile50)_ 3.61646348205675930e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_51______________________ (freq_plasma_larmor_toroidal_triton_profile51)_ 3.61302577912704796e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_52______________________ (freq_plasma_larmor_toroidal_triton_profile52)_ 3.60959460554762930e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_53______________________ (freq_plasma_larmor_toroidal_triton_profile53)_ 3.60616994273401722e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_54______________________ (freq_plasma_larmor_toroidal_triton_profile54)_ 3.60275177217218354e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_55______________________ (freq_plasma_larmor_toroidal_triton_profile55)_ 3.59934007541823313e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_56______________________ (freq_plasma_larmor_toroidal_triton_profile56)_ 3.59593483409806415e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_57______________________ (freq_plasma_larmor_toroidal_triton_profile57)_ 3.59253602990704477e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_58______________________ (freq_plasma_larmor_toroidal_triton_profile58)_ 3.58914364460968301e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_59______________________ (freq_plasma_larmor_toroidal_triton_profile59)_ 3.58575766003929600e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_60______________________ (freq_plasma_larmor_toroidal_triton_profile60)_ 3.58237805809769481e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_61______________________ (freq_plasma_larmor_toroidal_triton_profile61)_ 3.57900482075485364e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_62______________________ (freq_plasma_larmor_toroidal_triton_profile62)_ 3.57563793004859313e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_63______________________ (freq_plasma_larmor_toroidal_triton_profile63)_ 3.57227736808426157e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_64______________________ (freq_plasma_larmor_toroidal_triton_profile64)_ 3.56892311703441665e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_65______________________ (freq_plasma_larmor_toroidal_triton_profile65)_ 3.56557515913851187e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_66______________________ (freq_plasma_larmor_toroidal_triton_profile66)_ 3.56223347670258060e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_67______________________ (freq_plasma_larmor_toroidal_triton_profile67)_ 3.55889805209892765e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_68______________________ (freq_plasma_larmor_toroidal_triton_profile68)_ 3.55556886776581332e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_69______________________ (freq_plasma_larmor_toroidal_triton_profile69)_ 3.55224590620715246e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_70______________________ (freq_plasma_larmor_toroidal_triton_profile70)_ 3.54892914999220669e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_71______________________ (freq_plasma_larmor_toroidal_triton_profile71)_ 3.54561858175527379e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_72______________________ (freq_plasma_larmor_toroidal_triton_profile72)_ 3.54231418419539109e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_73______________________ (freq_plasma_larmor_toroidal_triton_profile73)_ 3.53901594007602781e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_74______________________ (freq_plasma_larmor_toroidal_triton_profile74)_ 3.53572383222479373e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_75______________________ (freq_plasma_larmor_toroidal_triton_profile75)_ 3.53243784353313595e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_76______________________ (freq_plasma_larmor_toroidal_triton_profile76)_ 3.52915795695603862e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_77______________________ (freq_plasma_larmor_toroidal_triton_profile77)_ 3.52588415551173836e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_78______________________ (freq_plasma_larmor_toroidal_triton_profile78)_ 3.52261642228142172e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_79______________________ (freq_plasma_larmor_toroidal_triton_profile79)_ 3.51935474040893838e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_80______________________ (freq_plasma_larmor_toroidal_triton_profile80)_ 3.51609909310051277e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_81______________________ (freq_plasma_larmor_toroidal_triton_profile81)_ 3.51284946362444833e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_82______________________ (freq_plasma_larmor_toroidal_triton_profile82)_ 3.50960583531085327e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_83______________________ (freq_plasma_larmor_toroidal_triton_profile83)_ 3.50636819155134112e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_84______________________ (freq_plasma_larmor_toroidal_triton_profile84)_ 3.50313651579875946e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_85______________________ (freq_plasma_larmor_toroidal_triton_profile85)_ 3.49991079156690016e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_86______________________ (freq_plasma_larmor_toroidal_triton_profile86)_ 3.49669100243022367e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_87______________________ (freq_plasma_larmor_toroidal_triton_profile87)_ 3.49347713202357888e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_88______________________ (freq_plasma_larmor_toroidal_triton_profile88)_ 3.49026916404192299e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_89______________________ (freq_plasma_larmor_toroidal_triton_profile89)_ 3.48706708224004954e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_90______________________ (freq_plasma_larmor_toroidal_triton_profile90)_ 3.48387087043231279e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_91______________________ (freq_plasma_larmor_toroidal_triton_profile91)_ 3.48068051249235719e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_92______________________ (freq_plasma_larmor_toroidal_triton_profile92)_ 3.47749599235283956e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_93______________________ (freq_plasma_larmor_toroidal_triton_profile93)_ 3.47431729400516748e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_94______________________ (freq_plasma_larmor_toroidal_triton_profile94)_ 3.47114440149922743e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_95______________________ (freq_plasma_larmor_toroidal_triton_profile95)_ 3.46797729894311503e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_96______________________ (freq_plasma_larmor_toroidal_triton_profile96)_ 3.46481597050287500e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_97______________________ (freq_plasma_larmor_toroidal_triton_profile97)_ 3.46166040040223449e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_98______________________ (freq_plasma_larmor_toroidal_triton_profile98)_ 3.45851057292234153e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_99______________________ (freq_plasma_larmor_toroidal_triton_profile99)_ 3.45536647240150347e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_100_____________________ (freq_plasma_larmor_toroidal_triton_profile100)_ 3.45222808323492631e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_101_____________________ (freq_plasma_larmor_toroidal_triton_profile101)_ 3.44909538987445906e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_102_____________________ (freq_plasma_larmor_toroidal_triton_profile102)_ 3.44596837682833523e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_103_____________________ (freq_plasma_larmor_toroidal_triton_profile103)_ 3.44284702866091803e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_104_____________________ (freq_plasma_larmor_toroidal_triton_profile104)_ 3.43973132999244705e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_105_____________________ (freq_plasma_larmor_toroidal_triton_profile105)_ 3.43662126549878269e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_106_____________________ (freq_plasma_larmor_toroidal_triton_profile106)_ 3.43351681991116032e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_107_____________________ (freq_plasma_larmor_toroidal_triton_profile107)_ 3.43041797801593319e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_108_____________________ (freq_plasma_larmor_toroidal_triton_profile108)_ 3.42732472465433106e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_109_____________________ (freq_plasma_larmor_toroidal_triton_profile109)_ 3.42423704472221062e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_110_____________________ (freq_plasma_larmor_toroidal_triton_profile110)_ 3.42115492316980511e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_111_____________________ (freq_plasma_larmor_toroidal_triton_profile111)_ 3.41807834500148669e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_112_____________________ (freq_plasma_larmor_toroidal_triton_profile112)_ 3.41500729527552053e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_113_____________________ (freq_plasma_larmor_toroidal_triton_profile113)_ 3.41194175910381824e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_114_____________________ (freq_plasma_larmor_toroidal_triton_profile114)_ 3.40888172165170759e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_115_____________________ (freq_plasma_larmor_toroidal_triton_profile115)_ 3.40582716813768223e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_116_____________________ (freq_plasma_larmor_toroidal_triton_profile116)_ 3.40277808383317292e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_117_____________________ (freq_plasma_larmor_toroidal_triton_profile117)_ 3.39973445406230167e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_118_____________________ (freq_plasma_larmor_toroidal_triton_profile118)_ 3.39669626420165673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_119_____________________ (freq_plasma_larmor_toroidal_triton_profile119)_ 3.39366349968004823e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_120_____________________ (freq_plasma_larmor_toroidal_triton_profile120)_ 3.39063614597828090e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_121_____________________ (freq_plasma_larmor_toroidal_triton_profile121)_ 3.38761418862892464e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_122_____________________ (freq_plasma_larmor_toroidal_triton_profile122)_ 3.38459761321607605e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_123_____________________ (freq_plasma_larmor_toroidal_triton_profile123)_ 3.38158640537513718e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_124_____________________ (freq_plasma_larmor_toroidal_triton_profile124)_ 3.37858055079258084e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_125_____________________ (freq_plasma_larmor_toroidal_triton_profile125)_ 3.37558003520573154e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_126_____________________ (freq_plasma_larmor_toroidal_triton_profile126)_ 3.37258484440253228e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_127_____________________ (freq_plasma_larmor_toroidal_triton_profile127)_ 3.36959496422132403e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_128_____________________ (freq_plasma_larmor_toroidal_triton_profile128)_ 3.36661038055062369e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_129_____________________ (freq_plasma_larmor_toroidal_triton_profile129)_ 3.36363107932889760e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_130_____________________ (freq_plasma_larmor_toroidal_triton_profile130)_ 3.36065704654434472e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_131_____________________ (freq_plasma_larmor_toroidal_triton_profile131)_ 3.35768826823467612e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_132_____________________ (freq_plasma_larmor_toroidal_triton_profile132)_ 3.35472473048689626e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_133_____________________ (freq_plasma_larmor_toroidal_triton_profile133)_ 3.35176641943708472e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_134_____________________ (freq_plasma_larmor_toroidal_triton_profile134)_ 3.34881332127017938e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_135_____________________ (freq_plasma_larmor_toroidal_triton_profile135)_ 3.34586542221976556e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_136_____________________ (freq_plasma_larmor_toroidal_triton_profile136)_ 3.34292270856785774e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_137_____________________ (freq_plasma_larmor_toroidal_triton_profile137)_ 3.33998516664468683e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_138_____________________ (freq_plasma_larmor_toroidal_triton_profile138)_ 3.33705278282849342e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_139_____________________ (freq_plasma_larmor_toroidal_triton_profile139)_ 3.33412554354531020e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_140_____________________ (freq_plasma_larmor_toroidal_triton_profile140)_ 3.33120343526875898e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_141_____________________ (freq_plasma_larmor_toroidal_triton_profile141)_ 3.32828644451983720e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_142_____________________ (freq_plasma_larmor_toroidal_triton_profile142)_ 3.32537455786671340e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_143_____________________ (freq_plasma_larmor_toroidal_triton_profile143)_ 3.32246776192452312e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_144_____________________ (freq_plasma_larmor_toroidal_triton_profile144)_ 3.31956604335515611e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_145_____________________ (freq_plasma_larmor_toroidal_triton_profile145)_ 3.31666938886706233e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_146_____________________ (freq_plasma_larmor_toroidal_triton_profile146)_ 3.31377778521504253e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_147_____________________ (freq_plasma_larmor_toroidal_triton_profile147)_ 3.31089121920004636e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_148_____________________ (freq_plasma_larmor_toroidal_triton_profile148)_ 3.30800967766897641e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_149_____________________ (freq_plasma_larmor_toroidal_triton_profile149)_ 3.30513314751448110e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_150_____________________ (freq_plasma_larmor_toroidal_triton_profile150)_ 3.30226161567476429e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_151_____________________ (freq_plasma_larmor_toroidal_triton_profile151)_ 3.29939506913337968e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_152_____________________ (freq_plasma_larmor_toroidal_triton_profile152)_ 3.29653349491904043e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_153_____________________ (freq_plasma_larmor_toroidal_triton_profile153)_ 3.29367688010541946e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_154_____________________ (freq_plasma_larmor_toroidal_triton_profile154)_ 3.29082521181095541e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_155_____________________ (freq_plasma_larmor_toroidal_triton_profile155)_ 3.28797847719866298e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_156_____________________ (freq_plasma_larmor_toroidal_triton_profile156)_ 3.28513666347593218e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_157_____________________ (freq_plasma_larmor_toroidal_triton_profile157)_ 3.28229975789434649e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_158_____________________ (freq_plasma_larmor_toroidal_triton_profile158)_ 3.27946774774948545e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_159_____________________ (freq_plasma_larmor_toroidal_triton_profile159)_ 3.27664062038073614e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_160_____________________ (freq_plasma_larmor_toroidal_triton_profile160)_ 3.27381836317110583e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_161_____________________ (freq_plasma_larmor_toroidal_triton_profile161)_ 3.27100096354703419e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_162_____________________ (freq_plasma_larmor_toroidal_triton_profile162)_ 3.26818840897820666e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_163_____________________ (freq_plasma_larmor_toroidal_triton_profile163)_ 3.26538068697736599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_164_____________________ (freq_plasma_larmor_toroidal_triton_profile164)_ 3.26257778510013223e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_165_____________________ (freq_plasma_larmor_toroidal_triton_profile165)_ 3.25977969094481468e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_166_____________________ (freq_plasma_larmor_toroidal_triton_profile166)_ 3.25698639215223081e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_167_____________________ (freq_plasma_larmor_toroidal_triton_profile167)_ 3.25419787640552595e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_168_____________________ (freq_plasma_larmor_toroidal_triton_profile168)_ 3.25141413142998591e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_169_____________________ (freq_plasma_larmor_toroidal_triton_profile169)_ 3.24863514499286711e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_170_____________________ (freq_plasma_larmor_toroidal_triton_profile170)_ 3.24586090490320586e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_171_____________________ (freq_plasma_larmor_toroidal_triton_profile171)_ 3.24309139901164994e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_172_____________________ (freq_plasma_larmor_toroidal_triton_profile172)_ 3.24032661521027572e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_173_____________________ (freq_plasma_larmor_toroidal_triton_profile173)_ 3.23756654143241383e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_174_____________________ (freq_plasma_larmor_toroidal_triton_profile174)_ 3.23481116565247178e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_175_____________________ (freq_plasma_larmor_toroidal_triton_profile175)_ 3.23206047588576004e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_176_____________________ (freq_plasma_larmor_toroidal_triton_profile176)_ 3.22931446018832102e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_177_____________________ (freq_plasma_larmor_toroidal_triton_profile177)_ 3.22657310665675253e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_178_____________________ (freq_plasma_larmor_toroidal_triton_profile178)_ 3.22383640342803560e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_179_____________________ (freq_plasma_larmor_toroidal_triton_profile179)_ 3.22110433867936768e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_180_____________________ (freq_plasma_larmor_toroidal_triton_profile180)_ 3.21837690062798783e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_181_____________________ (freq_plasma_larmor_toroidal_triton_profile181)_ 3.21565407753100954e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_182_____________________ (freq_plasma_larmor_toroidal_triton_profile182)_ 3.21293585768525265e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_183_____________________ (freq_plasma_larmor_toroidal_triton_profile183)_ 3.21022222942707241e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_184_____________________ (freq_plasma_larmor_toroidal_triton_profile184)_ 3.20751318113219701e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_185_____________________ (freq_plasma_larmor_toroidal_triton_profile185)_ 3.20480870121555962e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_186_____________________ (freq_plasma_larmor_toroidal_triton_profile186)_ 3.20210877813113183e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_187_____________________ (freq_plasma_larmor_toroidal_triton_profile187)_ 3.19941340037176199e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_188_____________________ (freq_plasma_larmor_toroidal_triton_profile188)_ 3.19672255646901093e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_189_____________________ (freq_plasma_larmor_toroidal_triton_profile189)_ 3.19403623499298617e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_190_____________________ (freq_plasma_larmor_toroidal_triton_profile190)_ 3.19135442455218621e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_191_____________________ (freq_plasma_larmor_toroidal_triton_profile191)_ 3.18867711379333362e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_192_____________________ (freq_plasma_larmor_toroidal_triton_profile192)_ 3.18600429140121900e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_193_____________________ (freq_plasma_larmor_toroidal_triton_profile193)_ 3.18333594609853700e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_194_____________________ (freq_plasma_larmor_toroidal_triton_profile194)_ 3.18067206664573587e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_195_____________________ (freq_plasma_larmor_toroidal_triton_profile195)_ 3.17801264184084758e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_196_____________________ (freq_plasma_larmor_toroidal_triton_profile196)_ 3.17535766051934287e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_197_____________________ (freq_plasma_larmor_toroidal_triton_profile197)_ 3.17270711155396774e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_198_____________________ (freq_plasma_larmor_toroidal_triton_profile198)_ 3.17006098385459036e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_199_____________________ (freq_plasma_larmor_toroidal_triton_profile199)_ 3.16741926636804491e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_200_____________________ (freq_plasma_larmor_toroidal_triton_profile200)_ 3.16478194807797968e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_201_____________________ (freq_plasma_larmor_toroidal_triton_profile201)_ 3.16214901800470352e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_202_____________________ (freq_plasma_larmor_toroidal_triton_profile202)_ 3.15952046520503275e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_203_____________________ (freq_plasma_larmor_toroidal_triton_profile203)_ 3.15689627877213806e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_204_____________________ (freq_plasma_larmor_toroidal_triton_profile204)_ 3.15427644783539772e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_205_____________________ (freq_plasma_larmor_toroidal_triton_profile205)_ 3.15166096156024300e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_206_____________________ (freq_plasma_larmor_toroidal_triton_profile206)_ 3.14904980914801434e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_207_____________________ (freq_plasma_larmor_toroidal_triton_profile207)_ 3.14644297983580567e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_208_____________________ (freq_plasma_larmor_toroidal_triton_profile208)_ 3.14384046289632283e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_209_____________________ (freq_plasma_larmor_toroidal_triton_profile209)_ 3.14124224763773046e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_210_____________________ (freq_plasma_larmor_toroidal_triton_profile210)_ 3.13864832340351269e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_211_____________________ (freq_plasma_larmor_toroidal_triton_profile211)_ 3.13605867957232147e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_212_____________________ (freq_plasma_larmor_toroidal_triton_profile212)_ 3.13347330555783473e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_213_____________________ (freq_plasma_larmor_toroidal_triton_profile213)_ 3.13089219080861062e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_214_____________________ (freq_plasma_larmor_toroidal_triton_profile214)_ 3.12831532480794564e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_215_____________________ (freq_plasma_larmor_toroidal_triton_profile215)_ 3.12574269707372785e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_216_____________________ (freq_plasma_larmor_toroidal_triton_profile216)_ 3.12317429715830237e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_217_____________________ (freq_plasma_larmor_toroidal_triton_profile217)_ 3.12061011464831941e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_218_____________________ (freq_plasma_larmor_toroidal_triton_profile218)_ 3.11805013916460536e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_219_____________________ (freq_plasma_larmor_toroidal_triton_profile219)_ 3.11549436036201119e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_220_____________________ (freq_plasma_larmor_toroidal_triton_profile220)_ 3.11294276792928241e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_221_____________________ (freq_plasma_larmor_toroidal_triton_profile221)_ 3.11039535158891454e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_222_____________________ (freq_plasma_larmor_toroidal_triton_profile222)_ 3.10785210109701864e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_223_____________________ (freq_plasma_larmor_toroidal_triton_profile223)_ 3.10531300624318160e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_224_____________________ (freq_plasma_larmor_toroidal_triton_profile224)_ 3.10277805685032979e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_225_____________________ (freq_plasma_larmor_toroidal_triton_profile225)_ 3.10024724277459532e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_226_____________________ (freq_plasma_larmor_toroidal_triton_profile226)_ 3.09772055390517823e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_227_____________________ (freq_plasma_larmor_toroidal_triton_profile227)_ 3.09519798016421273e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_228_____________________ (freq_plasma_larmor_toroidal_triton_profile228)_ 3.09267951150663458e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_229_____________________ (freq_plasma_larmor_toroidal_triton_profile229)_ 3.09016513792004324e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_230_____________________ (freq_plasma_larmor_toroidal_triton_profile230)_ 3.08765484942457639e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_231_____________________ (freq_plasma_larmor_toroidal_triton_profile231)_ 3.08514863607277051e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_232_____________________ (freq_plasma_larmor_toroidal_triton_profile232)_ 3.08264648794943541e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_233_____________________ (freq_plasma_larmor_toroidal_triton_profile233)_ 3.08014839517151825e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_234_____________________ (freq_plasma_larmor_toroidal_triton_profile234)_ 3.07765434788797833e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_235_____________________ (freq_plasma_larmor_toroidal_triton_profile235)_ 3.07516433627965488e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_236_____________________ (freq_plasma_larmor_toroidal_triton_profile236)_ 3.07267835055913813e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_237_____________________ (freq_plasma_larmor_toroidal_triton_profile237)_ 3.07019638097064160e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_238_____________________ (freq_plasma_larmor_toroidal_triton_profile238)_ 3.06771841778987348e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_239_____________________ (freq_plasma_larmor_toroidal_triton_profile239)_ 3.06524445132391453e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_240_____________________ (freq_plasma_larmor_toroidal_triton_profile240)_ 3.06277447191108316e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_241_____________________ (freq_plasma_larmor_toroidal_triton_profile241)_ 3.06030846992081627e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_242_____________________ (freq_plasma_larmor_toroidal_triton_profile242)_ 3.05784643575354256e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_243_____________________ (freq_plasma_larmor_toroidal_triton_profile243)_ 3.05538835984055772e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_244_____________________ (freq_plasma_larmor_toroidal_triton_profile244)_ 3.05293423264389858e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_245_____________________ (freq_plasma_larmor_toroidal_triton_profile245)_ 3.05048404465622269e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_246_____________________ (freq_plasma_larmor_toroidal_triton_profile246)_ 3.04803778640068509e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_247_____________________ (freq_plasma_larmor_toroidal_triton_profile247)_ 3.04559544843081236e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_248_____________________ (freq_plasma_larmor_toroidal_triton_profile248)_ 3.04315702133038715e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_249_____________________ (freq_plasma_larmor_toroidal_triton_profile249)_ 3.04072249571332261e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_250_____________________ (freq_plasma_larmor_toroidal_triton_profile250)_ 3.03829186222354434e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_251_____________________ (freq_plasma_larmor_toroidal_triton_profile251)_ 3.03586511153486744e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_252_____________________ (freq_plasma_larmor_toroidal_triton_profile252)_ 3.03344223435088061e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_253_____________________ (freq_plasma_larmor_toroidal_triton_profile253)_ 3.03102322140482813e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_254_____________________ (freq_plasma_larmor_toroidal_triton_profile254)_ 3.02860806345948465e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_255_____________________ (freq_plasma_larmor_toroidal_triton_profile255)_ 3.02619675130704902e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_256_____________________ (freq_plasma_larmor_toroidal_triton_profile256)_ 3.02378927576901652e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_257_____________________ (freq_plasma_larmor_toroidal_triton_profile257)_ 3.02138562769606784e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_258_____________________ (freq_plasma_larmor_toroidal_triton_profile258)_ 3.01898579796795323e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_259_____________________ (freq_plasma_larmor_toroidal_triton_profile259)_ 3.01658977749337591e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_260_____________________ (freq_plasma_larmor_toroidal_triton_profile260)_ 3.01419755720987581e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_261_____________________ (freq_plasma_larmor_toroidal_triton_profile261)_ 3.01180912808371894e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_262_____________________ (freq_plasma_larmor_toroidal_triton_profile262)_ 3.00942448110978119e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_263_____________________ (freq_plasma_larmor_toroidal_triton_profile263)_ 3.00704360731143467e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_264_____________________ (freq_plasma_larmor_toroidal_triton_profile264)_ 3.00466649774043784e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_265_____________________ (freq_plasma_larmor_toroidal_triton_profile265)_ 3.00229314347681962e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_266_____________________ (freq_plasma_larmor_toroidal_triton_profile266)_ 2.99992353562877104e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_267_____________________ (freq_plasma_larmor_toroidal_triton_profile267)_ 2.99755766533253416e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_268_____________________ (freq_plasma_larmor_toroidal_triton_profile268)_ 2.99519552375228815e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_269_____________________ (freq_plasma_larmor_toroidal_triton_profile269)_ 2.99283710208004192e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_270_____________________ (freq_plasma_larmor_toroidal_triton_profile270)_ 2.99048239153552651e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_271_____________________ (freq_plasma_larmor_toroidal_triton_profile271)_ 2.98813138336608037e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_272_____________________ (freq_plasma_larmor_toroidal_triton_profile272)_ 2.98578406884654611e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_273_____________________ (freq_plasma_larmor_toroidal_triton_profile273)_ 2.98344043927916326e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_274_____________________ (freq_plasma_larmor_toroidal_triton_profile274)_ 2.98110048599345386e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_275_____________________ (freq_plasma_larmor_toroidal_triton_profile275)_ 2.97876420034612343e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_276_____________________ (freq_plasma_larmor_toroidal_triton_profile276)_ 2.97643157372095063e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_277_____________________ (freq_plasma_larmor_toroidal_triton_profile277)_ 2.97410259752868041e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_278_____________________ (freq_plasma_larmor_toroidal_triton_profile278)_ 2.97177726320692226e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_279_____________________ (freq_plasma_larmor_toroidal_triton_profile279)_ 2.96945556222004220e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_280_____________________ (freq_plasma_larmor_toroidal_triton_profile280)_ 2.96713748605905809e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_281_____________________ (freq_plasma_larmor_toroidal_triton_profile281)_ 2.96482302624153979e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_282_____________________ (freq_plasma_larmor_toroidal_triton_profile282)_ 2.96251217431149930e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_283_____________________ (freq_plasma_larmor_toroidal_triton_profile283)_ 2.96020492183929421e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_284_____________________ (freq_plasma_larmor_toroidal_triton_profile284)_ 2.95790126042152047e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_285_____________________ (freq_plasma_larmor_toroidal_triton_profile285)_ 2.95560118168091252e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_286_____________________ (freq_plasma_larmor_toroidal_triton_profile286)_ 2.95330467726624236e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_287_____________________ (freq_plasma_larmor_toroidal_triton_profile287)_ 2.95101173885221593e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_288_____________________ (freq_plasma_larmor_toroidal_triton_profile288)_ 2.94872235813937448e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_289_____________________ (freq_plasma_larmor_toroidal_triton_profile289)_ 2.94643652685399540e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_290_____________________ (freq_plasma_larmor_toroidal_triton_profile290)_ 2.94415423674798943e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_291_____________________ (freq_plasma_larmor_toroidal_triton_profile291)_ 2.94187547959880345e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_292_____________________ (freq_plasma_larmor_toroidal_triton_profile292)_ 2.93960024720932245e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_293_____________________ (freq_plasma_larmor_toroidal_triton_profile293)_ 2.93732853140776902e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_294_____________________ (freq_plasma_larmor_toroidal_triton_profile294)_ 2.93506032404760905e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_295_____________________ (freq_plasma_larmor_toroidal_triton_profile295)_ 2.93279561700744927e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_296_____________________ (freq_plasma_larmor_toroidal_triton_profile296)_ 2.93053440219094343e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_297_____________________ (freq_plasma_larmor_toroidal_triton_profile297)_ 2.92827667152669802e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_298_____________________ (freq_plasma_larmor_toroidal_triton_profile298)_ 2.92602241696817093e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_299_____________________ (freq_plasma_larmor_toroidal_triton_profile299)_ 2.92377163049357980e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_300_____________________ (freq_plasma_larmor_toroidal_triton_profile300)_ 2.92152430410580635e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_301_____________________ (freq_plasma_larmor_toroidal_triton_profile301)_ 2.91928042983229943e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_302_____________________ (freq_plasma_larmor_toroidal_triton_profile302)_ 2.91703999972498380e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_303_____________________ (freq_plasma_larmor_toroidal_triton_profile303)_ 2.91480300586016364e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_304_____________________ (freq_plasma_larmor_toroidal_triton_profile304)_ 2.91256944033843242e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_305_____________________ (freq_plasma_larmor_toroidal_triton_profile305)_ 2.91033929528457448e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_306_____________________ (freq_plasma_larmor_toroidal_triton_profile306)_ 2.90811256284747832e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_307_____________________ (freq_plasma_larmor_toroidal_triton_profile307)_ 2.90588923520004116e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_308_____________________ (freq_plasma_larmor_toroidal_triton_profile308)_ 2.90366930453907885e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_309_____________________ (freq_plasma_larmor_toroidal_triton_profile309)_ 2.90145276308523156e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_310_____________________ (freq_plasma_larmor_toroidal_triton_profile310)_ 2.89923960308287852e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_311_____________________ (freq_plasma_larmor_toroidal_triton_profile311)_ 2.89702981680004075e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_312_____________________ (freq_plasma_larmor_toroidal_triton_profile312)_ 2.89482339652829655e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_313_____________________ (freq_plasma_larmor_toroidal_triton_profile313)_ 2.89262033458268903e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_314_____________________ (freq_plasma_larmor_toroidal_triton_profile314)_ 2.89042062330163755e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_315_____________________ (freq_plasma_larmor_toroidal_triton_profile315)_ 2.88822425504684933e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_316_____________________ (freq_plasma_larmor_toroidal_triton_profile316)_ 2.88603122220322974e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_317_____________________ (freq_plasma_larmor_toroidal_triton_profile317)_ 2.88384151717879623e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_318_____________________ (freq_plasma_larmor_toroidal_triton_profile318)_ 2.88165513240458928e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_319_____________________ (freq_plasma_larmor_toroidal_triton_profile319)_ 2.87947206033458635e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_320_____________________ (freq_plasma_larmor_toroidal_triton_profile320)_ 2.87729229344561249e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_321_____________________ (freq_plasma_larmor_toroidal_triton_profile321)_ 2.87511582423725687e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_322_____________________ (freq_plasma_larmor_toroidal_triton_profile322)_ 2.87294264523178637e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_323_____________________ (freq_plasma_larmor_toroidal_triton_profile323)_ 2.87077274897405878e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_324_____________________ (freq_plasma_larmor_toroidal_triton_profile324)_ 2.86860612803143710e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_325_____________________ (freq_plasma_larmor_toroidal_triton_profile325)_ 2.86644277499370575e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_326_____________________ (freq_plasma_larmor_toroidal_triton_profile326)_ 2.86428268247298673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_327_____________________ (freq_plasma_larmor_toroidal_triton_profile327)_ 2.86212584310365468e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_328_____________________ (freq_plasma_larmor_toroidal_triton_profile328)_ 2.85997224954225197e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_329_____________________ (freq_plasma_larmor_toroidal_triton_profile329)_ 2.85782189446740821e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_330_____________________ (freq_plasma_larmor_toroidal_triton_profile330)_ 2.85567477057975493e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_331_____________________ (freq_plasma_larmor_toroidal_triton_profile331)_ 2.85353087060184181e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_332_____________________ (freq_plasma_larmor_toroidal_triton_profile332)_ 2.85139018727805950e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_333_____________________ (freq_plasma_larmor_toroidal_triton_profile333)_ 2.84925271337455250e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_334_____________________ (freq_plasma_larmor_toroidal_triton_profile334)_ 2.84711844167914093e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_335_____________________ (freq_plasma_larmor_toroidal_triton_profile335)_ 2.84498736500123776e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_336_____________________ (freq_plasma_larmor_toroidal_triton_profile336)_ 2.84285947617176771e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_337_____________________ (freq_plasma_larmor_toroidal_triton_profile337)_ 2.84073476804308929e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_338_____________________ (freq_plasma_larmor_toroidal_triton_profile338)_ 2.83861323348891214e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_339_____________________ (freq_plasma_larmor_toroidal_triton_profile339)_ 2.83649486540421881e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_340_____________________ (freq_plasma_larmor_toroidal_triton_profile340)_ 2.83437965670518540e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_341_____________________ (freq_plasma_larmor_toroidal_triton_profile341)_ 2.83226760032910071e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_342_____________________ (freq_plasma_larmor_toroidal_triton_profile342)_ 2.83015868923429139e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_343_____________________ (freq_plasma_larmor_toroidal_triton_profile343)_ 2.82805291640003994e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_344_____________________ (freq_plasma_larmor_toroidal_triton_profile344)_ 2.82595027482650839e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_345_____________________ (freq_plasma_larmor_toroidal_triton_profile345)_ 2.82385075753466077e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_346_____________________ (freq_plasma_larmor_toroidal_triton_profile346)_ 2.82175435756618641e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_347_____________________ (freq_plasma_larmor_toroidal_triton_profile347)_ 2.81966106798342243e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_348_____________________ (freq_plasma_larmor_toroidal_triton_profile348)_ 2.81757088186927587e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_349_____________________ (freq_plasma_larmor_toroidal_triton_profile349)_ 2.81548379232715108e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_350_____________________ (freq_plasma_larmor_toroidal_triton_profile350)_ 2.81339979248086885e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_351_____________________ (freq_plasma_larmor_toroidal_triton_profile351)_ 2.81131887547459565e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_352_____________________ (freq_plasma_larmor_toroidal_triton_profile352)_ 2.80924103447276726e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_353_____________________ (freq_plasma_larmor_toroidal_triton_profile353)_ 2.80716626266001053e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_354_____________________ (freq_plasma_larmor_toroidal_triton_profile354)_ 2.80509455324107260e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_355_____________________ (freq_plasma_larmor_toroidal_triton_profile355)_ 2.80302589944074713e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_356_____________________ (freq_plasma_larmor_toroidal_triton_profile356)_ 2.80096029450379759e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_357_____________________ (freq_plasma_larmor_toroidal_triton_profile357)_ 2.79889773169488534e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_358_____________________ (freq_plasma_larmor_toroidal_triton_profile358)_ 2.79683820429849364e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_359_____________________ (freq_plasma_larmor_toroidal_triton_profile359)_ 2.79478170561886281e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_360_____________________ (freq_plasma_larmor_toroidal_triton_profile360)_ 2.79272822897990718e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_361_____________________ (freq_plasma_larmor_toroidal_triton_profile361)_ 2.79067776772514917e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_362_____________________ (freq_plasma_larmor_toroidal_triton_profile362)_ 2.78863031521764733e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_363_____________________ (freq_plasma_larmor_toroidal_triton_profile363)_ 2.78658586483992226e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_364_____________________ (freq_plasma_larmor_toroidal_triton_profile364)_ 2.78454440999388546e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_365_____________________ (freq_plasma_larmor_toroidal_triton_profile365)_ 2.78250594410077110e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_366_____________________ (freq_plasma_larmor_toroidal_triton_profile366)_ 2.78047046060106307e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_367_____________________ (freq_plasma_larmor_toroidal_triton_profile367)_ 2.77843795295442529e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_368_____________________ (freq_plasma_larmor_toroidal_triton_profile368)_ 2.77640841463962980e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_369_____________________ (freq_plasma_larmor_toroidal_triton_profile369)_ 2.77438183915449157e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_370_____________________ (freq_plasma_larmor_toroidal_triton_profile370)_ 2.77235822001579367e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_371_____________________ (freq_plasma_larmor_toroidal_triton_profile371)_ 2.77033755075922273e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_372_____________________ (freq_plasma_larmor_toroidal_triton_profile372)_ 2.76831982493929602e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_373_____________________ (freq_plasma_larmor_toroidal_triton_profile373)_ 2.76630503612929694e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_374_____________________ (freq_plasma_larmor_toroidal_triton_profile374)_ 2.76429317792120278e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_375_____________________ (freq_plasma_larmor_toroidal_triton_profile375)_ 2.76228424392561987e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_376_____________________ (freq_plasma_larmor_toroidal_triton_profile376)_ 2.76027822777171619e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_377_____________________ (freq_plasma_larmor_toroidal_triton_profile377)_ 2.75827512310715020e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_378_____________________ (freq_plasma_larmor_toroidal_triton_profile378)_ 2.75627492359800898e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_379_____________________ (freq_plasma_larmor_toroidal_triton_profile379)_ 2.75427762292873450e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_380_____________________ (freq_plasma_larmor_toroidal_triton_profile380)_ 2.75228321480206586e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_381_____________________ (freq_plasma_larmor_toroidal_triton_profile381)_ 2.75029169293896779e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_382_____________________ (freq_plasma_larmor_toroidal_triton_profile382)_ 2.74830305107856356e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_383_____________________ (freq_plasma_larmor_toroidal_triton_profile383)_ 2.74631728297807351e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_384_____________________ (freq_plasma_larmor_toroidal_triton_profile384)_ 2.74433438241274655e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_385_____________________ (freq_plasma_larmor_toroidal_triton_profile385)_ 2.74235434317579605e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_386_____________________ (freq_plasma_larmor_toroidal_triton_profile386)_ 2.74037715907833651e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_387_____________________ (freq_plasma_larmor_toroidal_triton_profile387)_ 2.73840282394931801e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_388_____________________ (freq_plasma_larmor_toroidal_triton_profile388)_ 2.73643133163545951e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_389_____________________ (freq_plasma_larmor_toroidal_triton_profile389)_ 2.73446267600118965e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_390_____________________ (freq_plasma_larmor_toroidal_triton_profile390)_ 2.73249685092857927e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_391_____________________ (freq_plasma_larmor_toroidal_triton_profile391)_ 2.73053385031727962e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_392_____________________ (freq_plasma_larmor_toroidal_triton_profile392)_ 2.72857366808446050e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_393_____________________ (freq_plasma_larmor_toroidal_triton_profile393)_ 2.72661629816474430e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_394_____________________ (freq_plasma_larmor_toroidal_triton_profile394)_ 2.72466173451014608e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_395_____________________ (freq_plasma_larmor_toroidal_triton_profile395)_ 2.72270997109000944e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_396_____________________ (freq_plasma_larmor_toroidal_triton_profile396)_ 2.72076100189094767e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_397_____________________ (freq_plasma_larmor_toroidal_triton_profile397)_ 2.71881482091677673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_398_____________________ (freq_plasma_larmor_toroidal_triton_profile398)_ 2.71687142218845896e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_399_____________________ (freq_plasma_larmor_toroidal_triton_profile399)_ 2.71493079974403791e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_400_____________________ (freq_plasma_larmor_toroidal_triton_profile400)_ 2.71299294763858207e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_401_____________________ (freq_plasma_larmor_toroidal_triton_profile401)_ 2.71105785994411819e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_402_____________________ (freq_plasma_larmor_toroidal_triton_profile402)_ 2.70912553074957505e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_403_____________________ (freq_plasma_larmor_toroidal_triton_profile403)_ 2.70719595416072197e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_404_____________________ (freq_plasma_larmor_toroidal_triton_profile404)_ 2.70526912430010885e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_405_____________________ (freq_plasma_larmor_toroidal_triton_profile405)_ 2.70334503530700803e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_406_____________________ (freq_plasma_larmor_toroidal_triton_profile406)_ 2.70142368133735135e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_407_____________________ (freq_plasma_larmor_toroidal_triton_profile407)_ 2.69950505656367429e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_408_____________________ (freq_plasma_larmor_toroidal_triton_profile408)_ 2.69758915517505556e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_409_____________________ (freq_plasma_larmor_toroidal_triton_profile409)_ 2.69567597137705907e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_410_____________________ (freq_plasma_larmor_toroidal_triton_profile410)_ 2.69376549939167500e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_411_____________________ (freq_plasma_larmor_toroidal_triton_profile411)_ 2.69185773345726170e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_412_____________________ (freq_plasma_larmor_toroidal_triton_profile412)_ 2.68995266782848835e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_413_____________________ (freq_plasma_larmor_toroidal_triton_profile413)_ 2.68805029677627534e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_414_____________________ (freq_plasma_larmor_toroidal_triton_profile414)_ 2.68615061458774097e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_415_____________________ (freq_plasma_larmor_toroidal_triton_profile415)_ 2.68425361556613930e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_416_____________________ (freq_plasma_larmor_toroidal_triton_profile416)_ 2.68235929403080717e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_417_____________________ (freq_plasma_larmor_toroidal_triton_profile417)_ 2.68046764431710392e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_418_____________________ (freq_plasma_larmor_toroidal_triton_profile418)_ 2.67857866077635922e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_419_____________________ (freq_plasma_larmor_toroidal_triton_profile419)_ 2.67669233777581193e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_420_____________________ (freq_plasma_larmor_toroidal_triton_profile420)_ 2.67480866969855949e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_421_____________________ (freq_plasma_larmor_toroidal_triton_profile421)_ 2.67292765094349757e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_422_____________________ (freq_plasma_larmor_toroidal_triton_profile422)_ 2.67104927592526600e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_423_____________________ (freq_plasma_larmor_toroidal_triton_profile423)_ 2.66917353907419480e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_424_____________________ (freq_plasma_larmor_toroidal_triton_profile424)_ 2.66730043483624794e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_425_____________________ (freq_plasma_larmor_toroidal_triton_profile425)_ 2.66542995767296851e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_426_____________________ (freq_plasma_larmor_toroidal_triton_profile426)_ 2.66356210206142515e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_427_____________________ (freq_plasma_larmor_toroidal_triton_profile427)_ 2.66169686249415539e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_428_____________________ (freq_plasma_larmor_toroidal_triton_profile428)_ 2.65983423347911350e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_429_____________________ (freq_plasma_larmor_toroidal_triton_profile429)_ 2.65797420953961760e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_430_____________________ (freq_plasma_larmor_toroidal_triton_profile430)_ 2.65611678521429300e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_431_____________________ (freq_plasma_larmor_toroidal_triton_profile431)_ 2.65426195505702086e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_432_____________________ (freq_plasma_larmor_toroidal_triton_profile432)_ 2.65240971363688298e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_433_____________________ (freq_plasma_larmor_toroidal_triton_profile433)_ 2.65056005553811230e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_434_____________________ (freq_plasma_larmor_toroidal_triton_profile434)_ 2.64871297536003739e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_435_____________________ (freq_plasma_larmor_toroidal_triton_profile435)_ 2.64686846771702878e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_436_____________________ (freq_plasma_larmor_toroidal_triton_profile436)_ 2.64502652723845057e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_437_____________________ (freq_plasma_larmor_toroidal_triton_profile437)_ 2.64318714856860451e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_438_____________________ (freq_plasma_larmor_toroidal_triton_profile438)_ 2.64135032636668086e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_439_____________________ (freq_plasma_larmor_toroidal_triton_profile439)_ 2.63951605530670397e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_440_____________________ (freq_plasma_larmor_toroidal_triton_profile440)_ 2.63768433007748313e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_441_____________________ (freq_plasma_larmor_toroidal_triton_profile441)_ 2.63585514538256153e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_442_____________________ (freq_plasma_larmor_toroidal_triton_profile442)_ 2.63402849594016187e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_443_____________________ (freq_plasma_larmor_toroidal_triton_profile443)_ 2.63220437648313940e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_444_____________________ (freq_plasma_larmor_toroidal_triton_profile444)_ 2.63038278175892979e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_445_____________________ (freq_plasma_larmor_toroidal_triton_profile445)_ 2.62856370652949773e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_446_____________________ (freq_plasma_larmor_toroidal_triton_profile446)_ 2.62674714557128809e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_447_____________________ (freq_plasma_larmor_toroidal_triton_profile447)_ 2.62493309367517531e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_448_____________________ (freq_plasma_larmor_toroidal_triton_profile448)_ 2.62312154564641416e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_449_____________________ (freq_plasma_larmor_toroidal_triton_profile449)_ 2.62131249630458839e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_450_____________________ (freq_plasma_larmor_toroidal_triton_profile450)_ 2.61950594048356563e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_451_____________________ (freq_plasma_larmor_toroidal_triton_profile451)_ 2.61770187303144224e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_452_____________________ (freq_plasma_larmor_toroidal_triton_profile452)_ 2.61590028881049789e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_453_____________________ (freq_plasma_larmor_toroidal_triton_profile453)_ 2.61410118269714825e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_454_____________________ (freq_plasma_larmor_toroidal_triton_profile454)_ 2.61230454958189242e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_455_____________________ (freq_plasma_larmor_toroidal_triton_profile455)_ 2.61051038436926752e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_456_____________________ (freq_plasma_larmor_toroidal_triton_profile456)_ 2.60871868197779953e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_457_____________________ (freq_plasma_larmor_toroidal_triton_profile457)_ 2.60692943733995445e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_458_____________________ (freq_plasma_larmor_toroidal_triton_profile458)_ 2.60514264540209286e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_459_____________________ (freq_plasma_larmor_toroidal_triton_profile459)_ 2.60335830112442002e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_460_____________________ (freq_plasma_larmor_toroidal_triton_profile460)_ 2.60157639948093966e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_461_____________________ (freq_plasma_larmor_toroidal_triton_profile461)_ 2.59979693545940742e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_462_____________________ (freq_plasma_larmor_toroidal_triton_profile462)_ 2.59801990406128094e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_463_____________________ (freq_plasma_larmor_toroidal_triton_profile463)_ 2.59624530030167550e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_464_____________________ (freq_plasma_larmor_toroidal_triton_profile464)_ 2.59447311920931935e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_465_____________________ (freq_plasma_larmor_toroidal_triton_profile465)_ 2.59270335582650341e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_466_____________________ (freq_plasma_larmor_toroidal_triton_profile466)_ 2.59093600520903468e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_467_____________________ (freq_plasma_larmor_toroidal_triton_profile467)_ 2.58917106242619455e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_468_____________________ (freq_plasma_larmor_toroidal_triton_profile468)_ 2.58740852256068997e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_469_____________________ (freq_plasma_larmor_toroidal_triton_profile469)_ 2.58564838070860803e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_470_____________________ (freq_plasma_larmor_toroidal_triton_profile470)_ 2.58389063197936974e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_471_____________________ (freq_plasma_larmor_toroidal_triton_profile471)_ 2.58213527149568833e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_472_____________________ (freq_plasma_larmor_toroidal_triton_profile472)_ 2.58038229439351857e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_473_____________________ (freq_plasma_larmor_toroidal_triton_profile473)_ 2.57863169582201689e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_474_____________________ (freq_plasma_larmor_toroidal_triton_profile474)_ 2.57688347094349414e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_475_____________________ (freq_plasma_larmor_toroidal_triton_profile475)_ 2.57513761493337005e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_476_____________________ (freq_plasma_larmor_toroidal_triton_profile476)_ 2.57339412298013121e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_477_____________________ (freq_plasma_larmor_toroidal_triton_profile477)_ 2.57165299028528631e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_478_____________________ (freq_plasma_larmor_toroidal_triton_profile478)_ 2.56991421206332184e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_479_____________________ (freq_plasma_larmor_toroidal_triton_profile479)_ 2.56817778354165778e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_480_____________________ (freq_plasma_larmor_toroidal_triton_profile480)_ 2.56644369996060356e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_481_____________________ (freq_plasma_larmor_toroidal_triton_profile481)_ 2.56471195657331571e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_482_____________________ (freq_plasma_larmor_toroidal_triton_profile482)_ 2.56298254864575416e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_483_____________________ (freq_plasma_larmor_toroidal_triton_profile483)_ 2.56125547145663984e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_484_____________________ (freq_plasma_larmor_toroidal_triton_profile484)_ 2.55953072029740959e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_485_____________________ (freq_plasma_larmor_toroidal_triton_profile485)_ 2.55780829047217630e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_486_____________________ (freq_plasma_larmor_toroidal_triton_profile486)_ 2.55608817729768232e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_487_____________________ (freq_plasma_larmor_toroidal_triton_profile487)_ 2.55437037610326186e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_488_____________________ (freq_plasma_larmor_toroidal_triton_profile488)_ 2.55265488223079480e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_489_____________________ (freq_plasma_larmor_toroidal_triton_profile489)_ 2.55094169103466645e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_490_____________________ (freq_plasma_larmor_toroidal_triton_profile490)_ 2.54923079788172618e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_491_____________________ (freq_plasma_larmor_toroidal_triton_profile491)_ 2.54752219815124199e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_492_____________________ (freq_plasma_larmor_toroidal_triton_profile492)_ 2.54581588723486476e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_493_____________________ (freq_plasma_larmor_toroidal_triton_profile493)_ 2.54411186053658165e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_494_____________________ (freq_plasma_larmor_toroidal_triton_profile494)_ 2.54241011347267814e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_495_____________________ (freq_plasma_larmor_toroidal_triton_profile495)_ 2.54071064147169366e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_496_____________________ (freq_plasma_larmor_toroidal_triton_profile496)_ 2.53901343997438475e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_497_____________________ (freq_plasma_larmor_toroidal_triton_profile497)_ 2.53731850443368070e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_498_____________________ (freq_plasma_larmor_toroidal_triton_profile498)_ 2.53562583031464554e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_499_____________________ (freq_plasma_larmor_toroidal_triton_profile499)_ 2.53393541309443563e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_500_____________________ (freq_plasma_larmor_toroidal_triton_profile500)_ 2.53224724826226123e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_501_____________________ (freq_plasma_larmor_toroidal_triton_profile501)_ 2.53056133131934293e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_502_____________________ (freq_plasma_larmor_toroidal_triton_profile502)_ 2.52887765777887739e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_503_____________________ (freq_plasma_larmor_toroidal_triton_profile503)_ 2.52719622316599265e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_504_____________________ (freq_plasma_larmor_toroidal_triton_profile504)_ 2.52551702301770933e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_505_____________________ (freq_plasma_larmor_toroidal_triton_profile505)_ 2.52384005288290381e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_506_____________________ (freq_plasma_larmor_toroidal_triton_profile506)_ 2.52216530832226463e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_507_____________________ (freq_plasma_larmor_toroidal_triton_profile507)_ 2.52049278490825817e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_508_____________________ (freq_plasma_larmor_toroidal_triton_profile508)_ 2.51882247822508551e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_509_____________________ (freq_plasma_larmor_toroidal_triton_profile509)_ 2.51715438386864513e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_510_____________________ (freq_plasma_larmor_toroidal_triton_profile510)_ 2.51548849744649455e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_511_____________________ (freq_plasma_larmor_toroidal_triton_profile511)_ 2.51382481457781307e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_512_____________________ (freq_plasma_larmor_toroidal_triton_profile512)_ 2.51216333089335971e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_513_____________________ (freq_plasma_larmor_toroidal_triton_profile513)_ 2.51050404203543775e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_514_____________________ (freq_plasma_larmor_toroidal_triton_profile514)_ 2.50884694365785718e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_515_____________________ (freq_plasma_larmor_toroidal_triton_profile515)_ 2.50719203142589256e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_516_____________________ (freq_plasma_larmor_toroidal_triton_profile516)_ 2.50553930101625137e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_517_____________________ (freq_plasma_larmor_toroidal_triton_profile517)_ 2.50388874811703116e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_518_____________________ (freq_plasma_larmor_toroidal_triton_profile518)_ 2.50224036842768565e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_519_____________________ (freq_plasma_larmor_toroidal_triton_profile519)_ 2.50059415765898265e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_520_____________________ (freq_plasma_larmor_toroidal_triton_profile520)_ 2.49895011153297424e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_521_____________________ (freq_plasma_larmor_toroidal_triton_profile521)_ 2.49730822578295209e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_522_____________________ (freq_plasma_larmor_toroidal_triton_profile522)_ 2.49566849615341648e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_523_____________________ (freq_plasma_larmor_toroidal_triton_profile523)_ 2.49403091840003468e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_524_____________________ (freq_plasma_larmor_toroidal_triton_profile524)_ 2.49239548828960881e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_525_____________________ (freq_plasma_larmor_toroidal_triton_profile525)_ 2.49076220160003491e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_526_____________________ (freq_plasma_larmor_toroidal_triton_profile526)_ 2.48913105412027054e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_527_____________________ (freq_plasma_larmor_toroidal_triton_profile527)_ 2.48750204165029638e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_528_____________________ (freq_plasma_larmor_toroidal_triton_profile528)_ 2.48587516000108160e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_529_____________________ (freq_plasma_larmor_toroidal_triton_profile529)_ 2.48425040499454476e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_530_____________________ (freq_plasma_larmor_toroidal_triton_profile530)_ 2.48262777246352285e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_531_____________________ (freq_plasma_larmor_toroidal_triton_profile531)_ 2.48100725825173222e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_532_____________________ (freq_plasma_larmor_toroidal_triton_profile532)_ 2.47938885821373314e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_533_____________________ (freq_plasma_larmor_toroidal_triton_profile533)_ 2.47777256821489744e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_534_____________________ (freq_plasma_larmor_toroidal_triton_profile534)_ 2.47615838413137086e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_535_____________________ (freq_plasma_larmor_toroidal_triton_profile535)_ 2.47454630185003467e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_536_____________________ (freq_plasma_larmor_toroidal_triton_profile536)_ 2.47293631726847962e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_537_____________________ (freq_plasma_larmor_toroidal_triton_profile537)_ 2.47132842629496343e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_538_____________________ (freq_plasma_larmor_toroidal_triton_profile538)_ 2.46972262484837808e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_539_____________________ (freq_plasma_larmor_toroidal_triton_profile539)_ 2.46811890885821655e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_540_____________________ (freq_plasma_larmor_toroidal_triton_profile540)_ 2.46651727426453792e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_541_____________________ (freq_plasma_larmor_toroidal_triton_profile541)_ 2.46491771701793298e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_542_____________________ (freq_plasma_larmor_toroidal_triton_profile542)_ 2.46332023307949007e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_543_____________________ (freq_plasma_larmor_toroidal_triton_profile543)_ 2.46172481842075959e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_544_____________________ (freq_plasma_larmor_toroidal_triton_profile544)_ 2.46013146902372427e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_545_____________________ (freq_plasma_larmor_toroidal_triton_profile545)_ 2.45854018088075891e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_546_____________________ (freq_plasma_larmor_toroidal_triton_profile546)_ 2.45695094999460429e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_547_____________________ (freq_plasma_larmor_toroidal_triton_profile547)_ 2.45536377237832919e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_548_____________________ (freq_plasma_larmor_toroidal_triton_profile548)_ 2.45377864405529611e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_549_____________________ (freq_plasma_larmor_toroidal_triton_profile549)_ 2.45219556105913147e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_550_____________________ (freq_plasma_larmor_toroidal_triton_profile550)_ 2.45061451943369024e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_551_____________________ (freq_plasma_larmor_toroidal_triton_profile551)_ 2.44903551523302421e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_552_____________________ (freq_plasma_larmor_toroidal_triton_profile552)_ 2.44745854452134781e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_553_____________________ (freq_plasma_larmor_toroidal_triton_profile553)_ 2.44588360337300748e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_554_____________________ (freq_plasma_larmor_toroidal_triton_profile554)_ 2.44431068787244596e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_555_____________________ (freq_plasma_larmor_toroidal_triton_profile555)_ 2.44273979411417320e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_556_____________________ (freq_plasma_larmor_toroidal_triton_profile556)_ 2.44117091820273139e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_557_____________________ (freq_plasma_larmor_toroidal_triton_profile557)_ 2.43960405625266619e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_558_____________________ (freq_plasma_larmor_toroidal_triton_profile558)_ 2.43803920438848846e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_559_____________________ (freq_plasma_larmor_toroidal_triton_profile559)_ 2.43647635874464959e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_560_____________________ (freq_plasma_larmor_toroidal_triton_profile560)_ 2.43491551546550505e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_561_____________________ (freq_plasma_larmor_toroidal_triton_profile561)_ 2.43335667070528381e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_562_____________________ (freq_plasma_larmor_toroidal_triton_profile562)_ 2.43179982062805742e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_563_____________________ (freq_plasma_larmor_toroidal_triton_profile563)_ 2.43024496140770689e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_564_____________________ (freq_plasma_larmor_toroidal_triton_profile564)_ 2.42869208922789320e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_565_____________________ (freq_plasma_larmor_toroidal_triton_profile565)_ 2.42714120028202608e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_566_____________________ (freq_plasma_larmor_toroidal_triton_profile566)_ 2.42559229077323116e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_567_____________________ (freq_plasma_larmor_toroidal_triton_profile567)_ 2.42404535691432022e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_568_____________________ (freq_plasma_larmor_toroidal_triton_profile568)_ 2.42250039492775872e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_569_____________________ (freq_plasma_larmor_toroidal_triton_profile569)_ 2.42095740104563907e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_570_____________________ (freq_plasma_larmor_toroidal_triton_profile570)_ 2.41941637150964588e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_571_____________________ (freq_plasma_larmor_toroidal_triton_profile571)_ 2.41787730257102586e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_572_____________________ (freq_plasma_larmor_toroidal_triton_profile572)_ 2.41634019049056098e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_573_____________________ (freq_plasma_larmor_toroidal_triton_profile573)_ 2.41480503153853491e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_574_____________________ (freq_plasma_larmor_toroidal_triton_profile574)_ 2.41327182199470066e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_575_____________________ (freq_plasma_larmor_toroidal_triton_profile575)_ 2.41174055814825706e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_576_____________________ (freq_plasma_larmor_toroidal_triton_profile576)_ 2.41021123629781492e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_577_____________________ (freq_plasma_larmor_toroidal_triton_profile577)_ 2.40868385275136493e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_578_____________________ (freq_plasma_larmor_toroidal_triton_profile578)_ 2.40715840382625349e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_579_____________________ (freq_plasma_larmor_toroidal_triton_profile579)_ 2.40563488584914804e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_580_____________________ (freq_plasma_larmor_toroidal_triton_profile580)_ 2.40411329515601099e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_581_____________________ (freq_plasma_larmor_toroidal_triton_profile581)_ 2.40259362809206918e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_582_____________________ (freq_plasma_larmor_toroidal_triton_profile582)_ 2.40107588101178370e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_583_____________________ (freq_plasma_larmor_toroidal_triton_profile583)_ 2.39956005027882159e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_584_____________________ (freq_plasma_larmor_toroidal_triton_profile584)_ 2.39804613226602748e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_585_____________________ (freq_plasma_larmor_toroidal_triton_profile585)_ 2.39653412335539311e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_586_____________________ (freq_plasma_larmor_toroidal_triton_profile586)_ 2.39502401993803009e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_587_____________________ (freq_plasma_larmor_toroidal_triton_profile587)_ 2.39351581841413975e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_588_____________________ (freq_plasma_larmor_toroidal_triton_profile588)_ 2.39200951519298516e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_589_____________________ (freq_plasma_larmor_toroidal_triton_profile589)_ 2.39050510669286400e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_590_____________________ (freq_plasma_larmor_toroidal_triton_profile590)_ 2.38900258934107684e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_591_____________________ (freq_plasma_larmor_toroidal_triton_profile591)_ 2.38750195957390256e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_592_____________________ (freq_plasma_larmor_toroidal_triton_profile592)_ 2.38600321383656859e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_593_____________________ (freq_plasma_larmor_toroidal_triton_profile593)_ 2.38450634858322069e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_594_____________________ (freq_plasma_larmor_toroidal_triton_profile594)_ 2.38301136027689837e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_595_____________________ (freq_plasma_larmor_toroidal_triton_profile595)_ 2.38151824538950697e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_596_____________________ (freq_plasma_larmor_toroidal_triton_profile596)_ 2.38002700040178671e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_597_____________________ (freq_plasma_larmor_toroidal_triton_profile597)_ 2.37853762180328742e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_598_____________________ (freq_plasma_larmor_toroidal_triton_profile598)_ 2.37705010609234124e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_599_____________________ (freq_plasma_larmor_toroidal_triton_profile599)_ 2.37556444977603368e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_600_____________________ (freq_plasma_larmor_toroidal_triton_profile600)_ 2.37408064937017672e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_601_____________________ (freq_plasma_larmor_toroidal_triton_profile601)_ 2.37259870139928386e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_602_____________________ (freq_plasma_larmor_toroidal_triton_profile602)_ 2.37111860239654034e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_603_____________________ (freq_plasma_larmor_toroidal_triton_profile603)_ 2.36964034890377373e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_604_____________________ (freq_plasma_larmor_toroidal_triton_profile604)_ 2.36816393747143522e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_605_____________________ (freq_plasma_larmor_toroidal_triton_profile605)_ 2.36668936465856358e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_606_____________________ (freq_plasma_larmor_toroidal_triton_profile606)_ 2.36521662703276537e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_607_____________________ (freq_plasma_larmor_toroidal_triton_profile607)_ 2.36374572117018290e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_608_____________________ (freq_plasma_larmor_toroidal_triton_profile608)_ 2.36227664365547113e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_609_____________________ (freq_plasma_larmor_toroidal_triton_profile609)_ 2.36080939108177237e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_610_____________________ (freq_plasma_larmor_toroidal_triton_profile610)_ 2.35934396005068496e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_611_____________________ (freq_plasma_larmor_toroidal_triton_profile611)_ 2.35788034717224129e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_612_____________________ (freq_plasma_larmor_toroidal_triton_profile612)_ 2.35641854906488173e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_613_____________________ (freq_plasma_larmor_toroidal_triton_profile613)_ 2.35495856235542335e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_614_____________________ (freq_plasma_larmor_toroidal_triton_profile614)_ 2.35350038367904201e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_615_____________________ (freq_plasma_larmor_toroidal_triton_profile615)_ 2.35204400967924148e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_616_____________________ (freq_plasma_larmor_toroidal_triton_profile616)_ 2.35058943700782545e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_617_____________________ (freq_plasma_larmor_toroidal_triton_profile617)_ 2.34913666232487857e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_618_____________________ (freq_plasma_larmor_toroidal_triton_profile618)_ 2.34768568229873590e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_619_____________________ (freq_plasma_larmor_toroidal_triton_profile619)_ 2.34623649360595867e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_620_____________________ (freq_plasma_larmor_toroidal_triton_profile620)_ 2.34478909293130971e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_621_____________________ (freq_plasma_larmor_toroidal_triton_profile621)_ 2.34334347696772739e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_622_____________________ (freq_plasma_larmor_toroidal_triton_profile622)_ 2.34189964241629913e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_623_____________________ (freq_plasma_larmor_toroidal_triton_profile623)_ 2.34045758598623984e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_624_____________________ (freq_plasma_larmor_toroidal_triton_profile624)_ 2.33901730439486355e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_625_____________________ (freq_plasma_larmor_toroidal_triton_profile625)_ 2.33757879436756074e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_626_____________________ (freq_plasma_larmor_toroidal_triton_profile626)_ 2.33614205263777114e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_627_____________________ (freq_plasma_larmor_toroidal_triton_profile627)_ 2.33470707594696134e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_628_____________________ (freq_plasma_larmor_toroidal_triton_profile628)_ 2.33327386104460023e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_629_____________________ (freq_plasma_larmor_toroidal_triton_profile629)_ 2.33184240468813069e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_630_____________________ (freq_plasma_larmor_toroidal_triton_profile630)_ 2.33041270364295132e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_631_____________________ (freq_plasma_larmor_toroidal_triton_profile631)_ 2.32898475468238592e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_632_____________________ (freq_plasma_larmor_toroidal_triton_profile632)_ 2.32755855458766259e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_633_____________________ (freq_plasma_larmor_toroidal_triton_profile633)_ 2.32613410014789067e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_634_____________________ (freq_plasma_larmor_toroidal_triton_profile634)_ 2.32471138816003203e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_635_____________________ (freq_plasma_larmor_toroidal_triton_profile635)_ 2.32329041542888395e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_636_____________________ (freq_plasma_larmor_toroidal_triton_profile636)_ 2.32187117876704521e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_637_____________________ (freq_plasma_larmor_toroidal_triton_profile637)_ 2.32045367499490455e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_638_____________________ (freq_plasma_larmor_toroidal_triton_profile638)_ 2.31903790094060600e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_639_____________________ (freq_plasma_larmor_toroidal_triton_profile639)_ 2.31762385344003253e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_640_____________________ (freq_plasma_larmor_toroidal_triton_profile640)_ 2.31621152933677845e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_641_____________________ (freq_plasma_larmor_toroidal_triton_profile641)_ 2.31480092548212782e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_642_____________________ (freq_plasma_larmor_toroidal_triton_profile642)_ 2.31339203873502947e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_643_____________________ (freq_plasma_larmor_toroidal_triton_profile643)_ 2.31198486596207619e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_644_____________________ (freq_plasma_larmor_toroidal_triton_profile644)_ 2.31057940403747931e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_645_____________________ (freq_plasma_larmor_toroidal_triton_profile645)_ 2.30917564984304607e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_646_____________________ (freq_plasma_larmor_toroidal_triton_profile646)_ 2.30777360026815645e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_647_____________________ (freq_plasma_larmor_toroidal_triton_profile647)_ 2.30637325220974088e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_648_____________________ (freq_plasma_larmor_toroidal_triton_profile648)_ 2.30497460257225782e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_649_____________________ (freq_plasma_larmor_toroidal_triton_profile649)_ 2.30357764826766849e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_650_____________________ (freq_plasma_larmor_toroidal_triton_profile650)_ 2.30218238621541634e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_651_____________________ (freq_plasma_larmor_toroidal_triton_profile651)_ 2.30078881334240511e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_652_____________________ (freq_plasma_larmor_toroidal_triton_profile652)_ 2.29939692658297233e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_653_____________________ (freq_plasma_larmor_toroidal_triton_profile653)_ 2.29800672287887111e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_654_____________________ (freq_plasma_larmor_toroidal_triton_profile654)_ 2.29661819917924702e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_655_____________________ (freq_plasma_larmor_toroidal_triton_profile655)_ 2.29523135244061202e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_656_____________________ (freq_plasma_larmor_toroidal_triton_profile656)_ 2.29384617962682769e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_657_____________________ (freq_plasma_larmor_toroidal_triton_profile657)_ 2.29246267770907916e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_658_____________________ (freq_plasma_larmor_toroidal_triton_profile658)_ 2.29108084366585463e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_659_____________________ (freq_plasma_larmor_toroidal_triton_profile659)_ 2.28970067448292337e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_660_____________________ (freq_plasma_larmor_toroidal_triton_profile660)_ 2.28832216715331338e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_661_____________________ (freq_plasma_larmor_toroidal_triton_profile661)_ 2.28694531867728829e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_662_____________________ (freq_plasma_larmor_toroidal_triton_profile662)_ 2.28557012606232911e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_663_____________________ (freq_plasma_larmor_toroidal_triton_profile663)_ 2.28419658632310852e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_664_____________________ (freq_plasma_larmor_toroidal_triton_profile664)_ 2.28282469648147337e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_665_____________________ (freq_plasma_larmor_toroidal_triton_profile665)_ 2.28145445356641822e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_666_____________________ (freq_plasma_larmor_toroidal_triton_profile666)_ 2.28008585461406969e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_667_____________________ (freq_plasma_larmor_toroidal_triton_profile667)_ 2.27871889666765779e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_668_____________________ (freq_plasma_larmor_toroidal_triton_profile668)_ 2.27735357677750327e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_669_____________________ (freq_plasma_larmor_toroidal_triton_profile669)_ 2.27598989200098962e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_670_____________________ (freq_plasma_larmor_toroidal_triton_profile670)_ 2.27462783940254562e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_671_____________________ (freq_plasma_larmor_toroidal_triton_profile671)_ 2.27326741605362035e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_672_____________________ (freq_plasma_larmor_toroidal_triton_profile672)_ 2.27190861903266795e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_673_____________________ (freq_plasma_larmor_toroidal_triton_profile673)_ 2.27055144542512111e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_674_____________________ (freq_plasma_larmor_toroidal_triton_profile674)_ 2.26919589232337512e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_675_____________________ (freq_plasma_larmor_toroidal_triton_profile675)_ 2.26784195682676211e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_676_____________________ (freq_plasma_larmor_toroidal_triton_profile676)_ 2.26648963604153469e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_677_____________________ (freq_plasma_larmor_toroidal_triton_profile677)_ 2.26513892708084211e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_678_____________________ (freq_plasma_larmor_toroidal_triton_profile678)_ 2.26378982706471309e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_679_____________________ (freq_plasma_larmor_toroidal_triton_profile679)_ 2.26244233312003165e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_680_____________________ (freq_plasma_larmor_toroidal_triton_profile680)_ 2.26109644238051996e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_681_____________________ (freq_plasma_larmor_toroidal_triton_profile681)_ 2.25975215198671408e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_682_____________________ (freq_plasma_larmor_toroidal_triton_profile682)_ 2.25840945908594988e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_683_____________________ (freq_plasma_larmor_toroidal_triton_profile683)_ 2.25706836083233617e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_684_____________________ (freq_plasma_larmor_toroidal_triton_profile684)_ 2.25572885438673832e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_685_____________________ (freq_plasma_larmor_toroidal_triton_profile685)_ 2.25439093691675738e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_686_____________________ (freq_plasma_larmor_toroidal_triton_profile686)_ 2.25305460559671223e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_687_____________________ (freq_plasma_larmor_toroidal_triton_profile687)_ 2.25171985760761462e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_688_____________________ (freq_plasma_larmor_toroidal_triton_profile688)_ 2.25038669013715424e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_689_____________________ (freq_plasma_larmor_toroidal_triton_profile689)_ 2.24905510037967712e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_690_____________________ (freq_plasma_larmor_toroidal_triton_profile690)_ 2.24772508553616405e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_691_____________________ (freq_plasma_larmor_toroidal_triton_profile691)_ 2.24639664281421565e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_692_____________________ (freq_plasma_larmor_toroidal_triton_profile692)_ 2.24506976942802891e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_693_____________________ (freq_plasma_larmor_toroidal_triton_profile693)_ 2.24374446259837858e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_694_____________________ (freq_plasma_larmor_toroidal_triton_profile694)_ 2.24242071955259778e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_695_____________________ (freq_plasma_larmor_toroidal_triton_profile695)_ 2.24109853752456009e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_696_____________________ (freq_plasma_larmor_toroidal_triton_profile696)_ 2.23977791375465728e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_697_____________________ (freq_plasma_larmor_toroidal_triton_profile697)_ 2.23845884548978396e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_698_____________________ (freq_plasma_larmor_toroidal_triton_profile698)_ 2.23714132998331524e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_699_____________________ (freq_plasma_larmor_toroidal_triton_profile699)_ 2.23582536449509002e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_700_____________________ (freq_plasma_larmor_toroidal_triton_profile700)_ 2.23451094629138969e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_701_____________________ (freq_plasma_larmor_toroidal_triton_profile701)_ 2.23319807264491953e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_702_____________________ (freq_plasma_larmor_toroidal_triton_profile702)_ 2.23188674083479308e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_703_____________________ (freq_plasma_larmor_toroidal_triton_profile703)_ 2.23057694814651012e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_704_____________________ (freq_plasma_larmor_toroidal_triton_profile704)_ 2.22926869187193736e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_705_____________________ (freq_plasma_larmor_toroidal_triton_profile705)_ 2.22796196930929273e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_706_____________________ (freq_plasma_larmor_toroidal_triton_profile706)_ 2.22665677776312418e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_707_____________________ (freq_plasma_larmor_toroidal_triton_profile707)_ 2.22535311454429328e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_708_____________________ (freq_plasma_larmor_toroidal_triton_profile708)_ 2.22405097696995512e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_709_____________________ (freq_plasma_larmor_toroidal_triton_profile709)_ 2.22275036236353964e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_710_____________________ (freq_plasma_larmor_toroidal_triton_profile710)_ 2.22145126805473603e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_711_____________________ (freq_plasma_larmor_toroidal_triton_profile711)_ 2.22015369137947038e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_712_____________________ (freq_plasma_larmor_toroidal_triton_profile712)_ 2.21885762967989072e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_713_____________________ (freq_plasma_larmor_toroidal_triton_profile713)_ 2.21756308030434847e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_714_____________________ (freq_plasma_larmor_toroidal_triton_profile714)_ 2.21627004060737826e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_715_____________________ (freq_plasma_larmor_toroidal_triton_profile715)_ 2.21497850794968158e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_716_____________________ (freq_plasma_larmor_toroidal_triton_profile716)_ 2.21368847969810888e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_717_____________________ (freq_plasma_larmor_toroidal_triton_profile717)_ 2.21239995322564207e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_718_____________________ (freq_plasma_larmor_toroidal_triton_profile718)_ 2.21111292591137439e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_719_____________________ (freq_plasma_larmor_toroidal_triton_profile719)_ 2.20982739514049627e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_720_____________________ (freq_plasma_larmor_toroidal_triton_profile720)_ 2.20854335830427259e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_721_____________________ (freq_plasma_larmor_toroidal_triton_profile721)_ 2.20726081280003078e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_722_____________________ (freq_plasma_larmor_toroidal_triton_profile722)_ 2.20597975603113994e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_723_____________________ (freq_plasma_larmor_toroidal_triton_profile723)_ 2.20470018540699147e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_724_____________________ (freq_plasma_larmor_toroidal_triton_profile724)_ 2.20342209834298752e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_725_____________________ (freq_plasma_larmor_toroidal_triton_profile725)_ 2.20214549226051755e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_726_____________________ (freq_plasma_larmor_toroidal_triton_profile726)_ 2.20087036458694451e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_727_____________________ (freq_plasma_larmor_toroidal_triton_profile727)_ 2.19959671275558583e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_728_____________________ (freq_plasma_larmor_toroidal_triton_profile728)_ 2.19832453420569897e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_729_____________________ (freq_plasma_larmor_toroidal_triton_profile729)_ 2.19705382638245858e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_730_____________________ (freq_plasma_larmor_toroidal_triton_profile730)_ 2.19578458673694618e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_731_____________________ (freq_plasma_larmor_toroidal_triton_profile731)_ 2.19451681272612773e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_732_____________________ (freq_plasma_larmor_toroidal_triton_profile732)_ 2.19325050181284100e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_733_____________________ (freq_plasma_larmor_toroidal_triton_profile733)_ 2.19198565146577470e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_734_____________________ (freq_plasma_larmor_toroidal_triton_profile734)_ 2.19072225915945433e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_735_____________________ (freq_plasma_larmor_toroidal_triton_profile735)_ 2.18946032237422392e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_736_____________________ (freq_plasma_larmor_toroidal_triton_profile736)_ 2.18819983859623112e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_737_____________________ (freq_plasma_larmor_toroidal_triton_profile737)_ 2.18694080531740673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_738_____________________ (freq_plasma_larmor_toroidal_triton_profile738)_ 2.18568322003545351e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_739_____________________ (freq_plasma_larmor_toroidal_triton_profile739)_ 2.18442708025382347e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_740_____________________ (freq_plasma_larmor_toroidal_triton_profile740)_ 2.18317238348170780e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_741_____________________ (freq_plasma_larmor_toroidal_triton_profile741)_ 2.18191912723401412e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_742_____________________ (freq_plasma_larmor_toroidal_triton_profile742)_ 2.18066730903135575e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_743_____________________ (freq_plasma_larmor_toroidal_triton_profile743)_ 2.17941692640003078e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_744_____________________ (freq_plasma_larmor_toroidal_triton_profile744)_ 2.17816797687200755e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_745_____________________ (freq_plasma_larmor_toroidal_triton_profile745)_ 2.17692045798491016e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_746_____________________ (freq_plasma_larmor_toroidal_triton_profile746)_ 2.17567436728199944e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_747_____________________ (freq_plasma_larmor_toroidal_triton_profile747)_ 2.17442970231215879e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_748_____________________ (freq_plasma_larmor_toroidal_triton_profile748)_ 2.17318646062987633e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_749_____________________ (freq_plasma_larmor_toroidal_triton_profile749)_ 2.17194463979523033e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_750_____________________ (freq_plasma_larmor_toroidal_triton_profile750)_ 2.17070423737387434e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_751_____________________ (freq_plasma_larmor_toroidal_triton_profile751)_ 2.16946525093701705e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_752_____________________ (freq_plasma_larmor_toroidal_triton_profile752)_ 2.16822767806141078e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_753_____________________ (freq_plasma_larmor_toroidal_triton_profile753)_ 2.16699151632933468e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_754_____________________ (freq_plasma_larmor_toroidal_triton_profile754)_ 2.16575676332857721e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_755_____________________ (freq_plasma_larmor_toroidal_triton_profile755)_ 2.16452341665242203e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_756_____________________ (freq_plasma_larmor_toroidal_triton_profile756)_ 2.16329147389963157e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_757_____________________ (freq_plasma_larmor_toroidal_triton_profile757)_ 2.16206093267443255e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_758_____________________ (freq_plasma_larmor_toroidal_triton_profile758)_ 2.16083179058649987e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_759_____________________ (freq_plasma_larmor_toroidal_triton_profile759)_ 2.15960404525093921e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_760_____________________ (freq_plasma_larmor_toroidal_triton_profile760)_ 2.15837769428827539e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_761_____________________ (freq_plasma_larmor_toroidal_triton_profile761)_ 2.15715273532443456e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_762_____________________ (freq_plasma_larmor_toroidal_triton_profile762)_ 2.15592916599072814e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_763_____________________ (freq_plasma_larmor_toroidal_triton_profile763)_ 2.15470698392384015e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_764_____________________ (freq_plasma_larmor_toroidal_triton_profile764)_ 2.15348618676580936e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_765_____________________ (freq_plasma_larmor_toroidal_triton_profile765)_ 2.15226677216401659e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_766_____________________ (freq_plasma_larmor_toroidal_triton_profile766)_ 2.15104873777116723e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_767_____________________ (freq_plasma_larmor_toroidal_triton_profile767)_ 2.14983208124527894e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_768_____________________ (freq_plasma_larmor_toroidal_triton_profile768)_ 2.14861680024966262e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_769_____________________ (freq_plasma_larmor_toroidal_triton_profile769)_ 2.14740289245291129e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_770_____________________ (freq_plasma_larmor_toroidal_triton_profile770)_ 2.14619035552888401e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_771_____________________ (freq_plasma_larmor_toroidal_triton_profile771)_ 2.14497918715668954e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_772_____________________ (freq_plasma_larmor_toroidal_triton_profile772)_ 2.14376938502067290e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_773_____________________ (freq_plasma_larmor_toroidal_triton_profile773)_ 2.14256094681040235e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_774_____________________ (freq_plasma_larmor_toroidal_triton_profile774)_ 2.14135387022064961e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_775_____________________ (freq_plasma_larmor_toroidal_triton_profile775)_ 2.14014815295138136e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_776_____________________ (freq_plasma_larmor_toroidal_triton_profile776)_ 2.13894379270773903e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_777_____________________ (freq_plasma_larmor_toroidal_triton_profile777)_ 2.13774078720002957e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_778_____________________ (freq_plasma_larmor_toroidal_triton_profile778)_ 2.13653913414370641e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_779_____________________ (freq_plasma_larmor_toroidal_triton_profile779)_ 2.13533883125935569e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_780_____________________ (freq_plasma_larmor_toroidal_triton_profile780)_ 2.13413987627268583e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_781_____________________ (freq_plasma_larmor_toroidal_triton_profile781)_ 2.13294226691450812e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_782_____________________ (freq_plasma_larmor_toroidal_triton_profile782)_ 2.13174600092072561e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_783_____________________ (freq_plasma_larmor_toroidal_triton_profile783)_ 2.13055107603231668e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_784_____________________ (freq_plasma_larmor_toroidal_triton_profile784)_ 2.12935748999532387e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_785_____________________ (freq_plasma_larmor_toroidal_triton_profile785)_ 2.12816524056083597e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_786_____________________ (freq_plasma_larmor_toroidal_triton_profile786)_ 2.12697432548497654e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_787_____________________ (freq_plasma_larmor_toroidal_triton_profile787)_ 2.12578474252888896e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_788_____________________ (freq_plasma_larmor_toroidal_triton_profile788)_ 2.12459648945872188e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_789_____________________ (freq_plasma_larmor_toroidal_triton_profile789)_ 2.12340956404561661e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_790_____________________ (freq_plasma_larmor_toroidal_triton_profile790)_ 2.12222396406569146e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_791_____________________ (freq_plasma_larmor_toroidal_triton_profile791)_ 2.12103968730003014e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_792_____________________ (freq_plasma_larmor_toroidal_triton_profile792)_ 2.11985673153466433e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_793_____________________ (freq_plasma_larmor_toroidal_triton_profile793)_ 2.11867509456056468e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_794_____________________ (freq_plasma_larmor_toroidal_triton_profile794)_ 2.11749477417362295e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_795_____________________ (freq_plasma_larmor_toroidal_triton_profile795)_ 2.11631576817463972e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_796_____________________ (freq_plasma_larmor_toroidal_triton_profile796)_ 2.11513807436931133e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_797_____________________ (freq_plasma_larmor_toroidal_triton_profile797)_ 2.11396169056821689e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_798_____________________ (freq_plasma_larmor_toroidal_triton_profile798)_ 2.11278661458679996e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_799_____________________ (freq_plasma_larmor_toroidal_triton_profile799)_ 2.11161284424536303e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_800_____________________ (freq_plasma_larmor_toroidal_triton_profile800)_ 2.11044037736904696e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_801_____________________ (freq_plasma_larmor_toroidal_triton_profile801)_ 2.10926921178782098e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_802_____________________ (freq_plasma_larmor_toroidal_triton_profile802)_ 2.10809934533646889e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_803_____________________ (freq_plasma_larmor_toroidal_triton_profile803)_ 2.10693077585457489e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_804_____________________ (freq_plasma_larmor_toroidal_triton_profile804)_ 2.10576350118651167e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_805_____________________ (freq_plasma_larmor_toroidal_triton_profile805)_ 2.10459751918142438e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_806_____________________ (freq_plasma_larmor_toroidal_triton_profile806)_ 2.10343282769322209e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_807_____________________ (freq_plasma_larmor_toroidal_triton_profile807)_ 2.10226942458056025e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_808_____________________ (freq_plasma_larmor_toroidal_triton_profile808)_ 2.10110730770682842e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_809_____________________ (freq_plasma_larmor_toroidal_triton_profile809)_ 2.09994647494013980e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_810_____________________ (freq_plasma_larmor_toroidal_triton_profile810)_ 2.09878692415331528e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_811_____________________ (freq_plasma_larmor_toroidal_triton_profile811)_ 2.09762865322387032e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_812_____________________ (freq_plasma_larmor_toroidal_triton_profile812)_ 2.09647166003400646e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_813_____________________ (freq_plasma_larmor_toroidal_triton_profile813)_ 2.09531594247059152e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_814_____________________ (freq_plasma_larmor_toroidal_triton_profile814)_ 2.09416149842515364e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_815_____________________ (freq_plasma_larmor_toroidal_triton_profile815)_ 2.09300832579386160e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_816_____________________ (freq_plasma_larmor_toroidal_triton_profile816)_ 2.09185642247751951e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_817_____________________ (freq_plasma_larmor_toroidal_triton_profile817)_ 2.09070578638154753e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_818_____________________ (freq_plasma_larmor_toroidal_triton_profile818)_ 2.08955641541597210e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_819_____________________ (freq_plasma_larmor_toroidal_triton_profile819)_ 2.08840830749541447e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_820_____________________ (freq_plasma_larmor_toroidal_triton_profile820)_ 2.08726146053907387e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_821_____________________ (freq_plasma_larmor_toroidal_triton_profile821)_ 2.08611587247072086e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_822_____________________ (freq_plasma_larmor_toroidal_triton_profile822)_ 2.08497154121867977e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_823_____________________ (freq_plasma_larmor_toroidal_triton_profile823)_ 2.08382846471581832e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_824_____________________ (freq_plasma_larmor_toroidal_triton_profile824)_ 2.08268664089953564e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_825_____________________ (freq_plasma_larmor_toroidal_triton_profile825)_ 2.08154606771174893e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_826_____________________ (freq_plasma_larmor_toroidal_triton_profile826)_ 2.08040674309887998e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_827_____________________ (freq_plasma_larmor_toroidal_triton_profile827)_ 2.07926866501184516e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_828_____________________ (freq_plasma_larmor_toroidal_triton_profile828)_ 2.07813183140604310e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_829_____________________ (freq_plasma_larmor_toroidal_triton_profile829)_ 2.07699624024134092e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_830_____________________ (freq_plasma_larmor_toroidal_triton_profile830)_ 2.07586188948206082e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_831_____________________ (freq_plasma_larmor_toroidal_triton_profile831)_ 2.07472877709697224e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_832_____________________ (freq_plasma_larmor_toroidal_triton_profile832)_ 2.07359690105927624e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_833_____________________ (freq_plasma_larmor_toroidal_triton_profile833)_ 2.07246625934659392e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_834_____________________ (freq_plasma_larmor_toroidal_triton_profile834)_ 2.07133684994095527e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_835_____________________ (freq_plasma_larmor_toroidal_triton_profile835)_ 2.07020867082878686e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_836_____________________ (freq_plasma_larmor_toroidal_triton_profile836)_ 2.06908172000089996e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_837_____________________ (freq_plasma_larmor_toroidal_triton_profile837)_ 2.06795599545247741e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_838_____________________ (freq_plasma_larmor_toroidal_triton_profile838)_ 2.06683149518306330e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_839_____________________ (freq_plasma_larmor_toroidal_triton_profile839)_ 2.06570821719655097e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_840_____________________ (freq_plasma_larmor_toroidal_triton_profile840)_ 2.06458615950116962e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_841_____________________ (freq_plasma_larmor_toroidal_triton_profile841)_ 2.06346532010947540e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_842_____________________ (freq_plasma_larmor_toroidal_triton_profile842)_ 2.06234569703833610e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_843_____________________ (freq_plasma_larmor_toroidal_triton_profile843)_ 2.06122728830892257e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_844_____________________ (freq_plasma_larmor_toroidal_triton_profile844)_ 2.06011009194669537e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_845_____________________ (freq_plasma_larmor_toroidal_triton_profile845)_ 2.05899410598139390e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_846_____________________ (freq_plasma_larmor_toroidal_triton_profile846)_ 2.05787932844702415e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_847_____________________ (freq_plasma_larmor_toroidal_triton_profile847)_ 2.05676575738184713e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_848_____________________ (freq_plasma_larmor_toroidal_triton_profile848)_ 2.05565339082836919e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_849_____________________ (freq_plasma_larmor_toroidal_triton_profile849)_ 2.05454222683332637e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_850_____________________ (freq_plasma_larmor_toroidal_triton_profile850)_ 2.05343226344767883e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_851_____________________ (freq_plasma_larmor_toroidal_triton_profile851)_ 2.05232349872659445e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_852_____________________ (freq_plasma_larmor_toroidal_triton_profile852)_ 2.05121593072944097e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_853_____________________ (freq_plasma_larmor_toroidal_triton_profile853)_ 2.05010955751976967e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_854_____________________ (freq_plasma_larmor_toroidal_triton_profile854)_ 2.04900437716531157e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_855_____________________ (freq_plasma_larmor_toroidal_triton_profile855)_ 2.04790038773796000e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_856_____________________ (freq_plasma_larmor_toroidal_triton_profile856)_ 2.04679758731376082e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_857_____________________ (freq_plasma_larmor_toroidal_triton_profile857)_ 2.04569597397290245e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_858_____________________ (freq_plasma_larmor_toroidal_triton_profile858)_ 2.04459554579970613e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_859_____________________ (freq_plasma_larmor_toroidal_triton_profile859)_ 2.04349630088260956e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_860_____________________ (freq_plasma_larmor_toroidal_triton_profile860)_ 2.04239823731416091e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_861_____________________ (freq_plasma_larmor_toroidal_triton_profile861)_ 2.04130135319100581e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_862_____________________ (freq_plasma_larmor_toroidal_triton_profile862)_ 2.04020564661387689e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_863_____________________ (freq_plasma_larmor_toroidal_triton_profile863)_ 2.03911111568758227e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_864_____________________ (freq_plasma_larmor_toroidal_triton_profile864)_ 2.03801775852099322e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_865_____________________ (freq_plasma_larmor_toroidal_triton_profile865)_ 2.03692557322703823e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_866_____________________ (freq_plasma_larmor_toroidal_triton_profile866)_ 2.03583455792268515e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_867_____________________ (freq_plasma_larmor_toroidal_triton_profile867)_ 2.03474471072893664e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_868_____________________ (freq_plasma_larmor_toroidal_triton_profile868)_ 2.03365602977081537e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_869_____________________ (freq_plasma_larmor_toroidal_triton_profile869)_ 2.03256851317735501e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_870_____________________ (freq_plasma_larmor_toroidal_triton_profile870)_ 2.03148215908158943e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_871_____________________ (freq_plasma_larmor_toroidal_triton_profile871)_ 2.03039696562054120e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_872_____________________ (freq_plasma_larmor_toroidal_triton_profile872)_ 2.02931293093521260e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_873_____________________ (freq_plasma_larmor_toroidal_triton_profile873)_ 2.02823005317057259e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_874_____________________ (freq_plasma_larmor_toroidal_triton_profile874)_ 2.02714833047554828e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_875_____________________ (freq_plasma_larmor_toroidal_triton_profile875)_ 2.02606776100301333e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_876_____________________ (freq_plasma_larmor_toroidal_triton_profile876)_ 2.02498834290977791e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_877_____________________ (freq_plasma_larmor_toroidal_triton_profile877)_ 2.02391007435657829e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_878_____________________ (freq_plasma_larmor_toroidal_triton_profile878)_ 2.02283295350806490e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_879_____________________ (freq_plasma_larmor_toroidal_triton_profile879)_ 2.02175697853279449e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_880_____________________ (freq_plasma_larmor_toroidal_triton_profile880)_ 2.02068214760321826e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_881_____________________ (freq_plasma_larmor_toroidal_triton_profile881)_ 2.01960845889567100e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_882_____________________ (freq_plasma_larmor_toroidal_triton_profile882)_ 2.01853591059036255e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_883_____________________ (freq_plasma_larmor_toroidal_triton_profile883)_ 2.01746450087136552e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_884_____________________ (freq_plasma_larmor_toroidal_triton_profile884)_ 2.01639422792660631e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_885_____________________ (freq_plasma_larmor_toroidal_triton_profile885)_ 2.01532508994785398e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_886_____________________ (freq_plasma_larmor_toroidal_triton_profile886)_ 2.01425708513071164e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_887_____________________ (freq_plasma_larmor_toroidal_triton_profile887)_ 2.01319021167460456e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_888_____________________ (freq_plasma_larmor_toroidal_triton_profile888)_ 2.01212446778277084e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_889_____________________ (freq_plasma_larmor_toroidal_triton_profile889)_ 2.01105985166225061e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_890_____________________ (freq_plasma_larmor_toroidal_triton_profile890)_ 2.00999636152387783e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_891_____________________ (freq_plasma_larmor_toroidal_triton_profile891)_ 2.00893399558226913e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_892_____________________ (freq_plasma_larmor_toroidal_triton_profile892)_ 2.00787275205581225e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_893_____________________ (freq_plasma_larmor_toroidal_triton_profile893)_ 2.00681262916665934e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_894_____________________ (freq_plasma_larmor_toroidal_triton_profile894)_ 2.00575362514071427e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_895_____________________ (freq_plasma_larmor_toroidal_triton_profile895)_ 2.00469573820762299e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_896_____________________ (freq_plasma_larmor_toroidal_triton_profile896)_ 2.00363896660076603e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_897_____________________ (freq_plasma_larmor_toroidal_triton_profile897)_ 2.00258330855724625e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_898_____________________ (freq_plasma_larmor_toroidal_triton_profile898)_ 2.00152876231787950e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_899_____________________ (freq_plasma_larmor_toroidal_triton_profile899)_ 2.00047532612718605e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_900_____________________ (freq_plasma_larmor_toroidal_triton_profile900)_ 1.99942299823337905e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_901_____________________ (freq_plasma_larmor_toroidal_triton_profile901)_ 1.99837177688835599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_902_____________________ (freq_plasma_larmor_toroidal_triton_profile902)_ 1.99732166034768932e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_903_____________________ (freq_plasma_larmor_toroidal_triton_profile903)_ 1.99627264687061608e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_904_____________________ (freq_plasma_larmor_toroidal_triton_profile904)_ 1.99522473472002782e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_905_____________________ (freq_plasma_larmor_toroidal_triton_profile905)_ 1.99417792216246203e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_906_____________________ (freq_plasma_larmor_toroidal_triton_profile906)_ 1.99313220746809281e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_907_____________________ (freq_plasma_larmor_toroidal_triton_profile907)_ 1.99208758891072012e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_908_____________________ (freq_plasma_larmor_toroidal_triton_profile908)_ 1.99104406476775967e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_909_____________________ (freq_plasma_larmor_toroidal_triton_profile909)_ 1.99000163332023732e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_910_____________________ (freq_plasma_larmor_toroidal_triton_profile910)_ 1.98896029285277538e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_911_____________________ (freq_plasma_larmor_toroidal_triton_profile911)_ 1.98792004165358394e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_912_____________________ (freq_plasma_larmor_toroidal_triton_profile912)_ 1.98688087801445536e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_913_____________________ (freq_plasma_larmor_toroidal_triton_profile913)_ 1.98584280023074858e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_914_____________________ (freq_plasma_larmor_toroidal_triton_profile914)_ 1.98480580660138540e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_915_____________________ (freq_plasma_larmor_toroidal_triton_profile915)_ 1.98376989542883746e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_916_____________________ (freq_plasma_larmor_toroidal_triton_profile916)_ 1.98273506501912028e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_917_____________________ (freq_plasma_larmor_toroidal_triton_profile917)_ 1.98170131368177980e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_918_____________________ (freq_plasma_larmor_toroidal_triton_profile918)_ 1.98066863972988687e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_919_____________________ (freq_plasma_larmor_toroidal_triton_profile919)_ 1.97963704148002788e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_920_____________________ (freq_plasma_larmor_toroidal_triton_profile920)_ 1.97860651725229211e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_921_____________________ (freq_plasma_larmor_toroidal_triton_profile921)_ 1.97757706537026688e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_922_____________________ (freq_plasma_larmor_toroidal_triton_profile922)_ 1.97654868416102603e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_923_____________________ (freq_plasma_larmor_toroidal_triton_profile923)_ 1.97552137195512094e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_924_____________________ (freq_plasma_larmor_toroidal_triton_profile924)_ 1.97449512708657272e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_925_____________________ (freq_plasma_larmor_toroidal_triton_profile925)_ 1.97346994789286256e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_926_____________________ (freq_plasma_larmor_toroidal_triton_profile926)_ 1.97244583271492124e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_927_____________________ (freq_plasma_larmor_toroidal_triton_profile927)_ 1.97142277989712320e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_928_____________________ (freq_plasma_larmor_toroidal_triton_profile928)_ 1.97040078778727502e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_929_____________________ (freq_plasma_larmor_toroidal_triton_profile929)_ 1.96937985473660752e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_930_____________________ (freq_plasma_larmor_toroidal_triton_profile930)_ 1.96835997909976877e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_931_____________________ (freq_plasma_larmor_toroidal_triton_profile931)_ 1.96734115923480988e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_932_____________________ (freq_plasma_larmor_toroidal_triton_profile932)_ 1.96632339350318313e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_933_____________________ (freq_plasma_larmor_toroidal_triton_profile933)_ 1.96530668026972786e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_934_____________________ (freq_plasma_larmor_toroidal_triton_profile934)_ 1.96429101790266298e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_935_____________________ (freq_plasma_larmor_toroidal_triton_profile935)_ 1.96327640477358103e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_936_____________________ (freq_plasma_larmor_toroidal_triton_profile936)_ 1.96226283925743587e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_937_____________________ (freq_plasma_larmor_toroidal_triton_profile937)_ 1.96125031973253526e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_938_____________________ (freq_plasma_larmor_toroidal_triton_profile938)_ 1.96023884458053298e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_939_____________________ (freq_plasma_larmor_toroidal_triton_profile939)_ 1.95922841218641922e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_940_____________________ (freq_plasma_larmor_toroidal_triton_profile940)_ 1.95821902093851231e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_941_____________________ (freq_plasma_larmor_toroidal_triton_profile941)_ 1.95721066922845170e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_942_____________________ (freq_plasma_larmor_toroidal_triton_profile942)_ 1.95620335545118488e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_943_____________________ (freq_plasma_larmor_toroidal_triton_profile943)_ 1.95519707800496593e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_944_____________________ (freq_plasma_larmor_toroidal_triton_profile944)_ 1.95419183529133834e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_945_____________________ (freq_plasma_larmor_toroidal_triton_profile945)_ 1.95318762571513578e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_946_____________________ (freq_plasma_larmor_toroidal_triton_profile946)_ 1.95218444768446498e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_947_____________________ (freq_plasma_larmor_toroidal_triton_profile947)_ 1.95118229961070493e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_948_____________________ (freq_plasma_larmor_toroidal_triton_profile948)_ 1.95018117990849316e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_949_____________________ (freq_plasma_larmor_toroidal_triton_profile949)_ 1.94918108699571937e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_950_____________________ (freq_plasma_larmor_toroidal_triton_profile950)_ 1.94818201929351762e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_951_____________________ (freq_plasma_larmor_toroidal_triton_profile951)_ 1.94718397522625662e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_952_____________________ (freq_plasma_larmor_toroidal_triton_profile952)_ 1.94618695322153270e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_953_____________________ (freq_plasma_larmor_toroidal_triton_profile953)_ 1.94519095171016045e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_954_____________________ (freq_plasma_larmor_toroidal_triton_profile954)_ 1.94419596912616529e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_955_____________________ (freq_plasma_larmor_toroidal_triton_profile955)_ 1.94320200390677601e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_956_____________________ (freq_plasma_larmor_toroidal_triton_profile956)_ 1.94220905449241363e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_957_____________________ (freq_plasma_larmor_toroidal_triton_profile957)_ 1.94121711932668723e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_958_____________________ (freq_plasma_larmor_toroidal_triton_profile958)_ 1.94022619685638249e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_959_____________________ (freq_plasma_larmor_toroidal_triton_profile959)_ 1.93923628553145565e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_960_____________________ (freq_plasma_larmor_toroidal_triton_profile960)_ 1.93824738380502462e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_961_____________________ (freq_plasma_larmor_toroidal_triton_profile961)_ 1.93725949013336040e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_962_____________________ (freq_plasma_larmor_toroidal_triton_profile962)_ 1.93627260297588035e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_963_____________________ (freq_plasma_larmor_toroidal_triton_profile963)_ 1.93528672079513930e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_964_____________________ (freq_plasma_larmor_toroidal_triton_profile964)_ 1.93430184205682091e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_965_____________________ (freq_plasma_larmor_toroidal_triton_profile965)_ 1.93331796522973217e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_966_____________________ (freq_plasma_larmor_toroidal_triton_profile966)_ 1.93233508878579251e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_967_____________________ (freq_plasma_larmor_toroidal_triton_profile967)_ 1.93135321120002717e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_968_____________________ (freq_plasma_larmor_toroidal_triton_profile968)_ 1.93037233095056042e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_969_____________________ (freq_plasma_larmor_toroidal_triton_profile969)_ 1.92939244651860557e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_970_____________________ (freq_plasma_larmor_toroidal_triton_profile970)_ 1.92841355638845898e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_971_____________________ (freq_plasma_larmor_toroidal_triton_profile971)_ 1.92743565904749110e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_972_____________________ (freq_plasma_larmor_toroidal_triton_profile972)_ 1.92645875298613980e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_973_____________________ (freq_plasma_larmor_toroidal_triton_profile973)_ 1.92548283669789918e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_974_____________________ (freq_plasma_larmor_toroidal_triton_profile974)_ 1.92450790867931806e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_975_____________________ (freq_plasma_larmor_toroidal_triton_profile975)_ 1.92353396742998660e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_976_____________________ (freq_plasma_larmor_toroidal_triton_profile976)_ 1.92256101145253107e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_977_____________________ (freq_plasma_larmor_toroidal_triton_profile977)_ 1.92158903925260529e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_978_____________________ (freq_plasma_larmor_toroidal_triton_profile978)_ 1.92061804933888465e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_979_____________________ (freq_plasma_larmor_toroidal_triton_profile979)_ 1.91964804022305720e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_980_____________________ (freq_plasma_larmor_toroidal_triton_profile980)_ 1.91867901041981466e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_981_____________________ (freq_plasma_larmor_toroidal_triton_profile981)_ 1.91771095844684802e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_982_____________________ (freq_plasma_larmor_toroidal_triton_profile982)_ 1.91674388282483779e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_983_____________________ (freq_plasma_larmor_toroidal_triton_profile983)_ 1.91577778207744583e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_984_____________________ (freq_plasma_larmor_toroidal_triton_profile984)_ 1.91481265473131165e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_985_____________________ (freq_plasma_larmor_toroidal_triton_profile985)_ 1.91384849931603894e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_986_____________________ (freq_plasma_larmor_toroidal_triton_profile986)_ 1.91288531436419412e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_987_____________________ (freq_plasma_larmor_toroidal_triton_profile987)_ 1.91192309841129445e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_988_____________________ (freq_plasma_larmor_toroidal_triton_profile988)_ 1.91096184999580346e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_989_____________________ (freq_plasma_larmor_toroidal_triton_profile989)_ 1.91000156765912212e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_990_____________________ (freq_plasma_larmor_toroidal_triton_profile990)_ 1.90904224994558133e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_991_____________________ (freq_plasma_larmor_toroidal_triton_profile991)_ 1.90808389540243596e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_992_____________________ (freq_plasma_larmor_toroidal_triton_profile992)_ 1.90712650257985592e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_993_____________________ (freq_plasma_larmor_toroidal_triton_profile993)_ 1.90617007003091909e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_994_____________________ (freq_plasma_larmor_toroidal_triton_profile994)_ 1.90521459631160609e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_995_____________________ (freq_plasma_larmor_toroidal_triton_profile995)_ 1.90426007998078838e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_996_____________________ (freq_plasma_larmor_toroidal_triton_profile996)_ 1.90330651960022710e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_997_____________________ (freq_plasma_larmor_toroidal_triton_profile997)_ 1.90235391373456120e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_998_____________________ (freq_plasma_larmor_toroidal_triton_profile998)_ 1.90140226095130220e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_999_____________________ (freq_plasma_larmor_toroidal_triton_profile999)_ 1.90045155982082635e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_1000____________________ (freq_plasma_larmor_toroidal_triton_profile1000)_ 1.89950180891636834e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_1001____________________ (freq_plasma_larmor_toroidal_triton_profile1001)_ 1.89855300681401305e+07 -Volume_averaged_electron_upper_hybrid_frequency_(ωₕ)_(Hz)________________ (freq_plasma_upper_hybrid_vol_avg)_ 1.60608403788606964e+11 -Plasma_upper_hybrid_frequency_at_point_0_________________________________ (freq_plasma_upper_hybrid_profile0)_ 2.15717169979392059e+11 -Plasma_upper_hybrid_frequency_at_point_1_________________________________ (freq_plasma_upper_hybrid_profile1)_ 2.15676242820580170e+11 -Plasma_upper_hybrid_frequency_at_point_2_________________________________ (freq_plasma_upper_hybrid_profile2)_ 2.15635910374776703e+11 -Plasma_upper_hybrid_frequency_at_point_3_________________________________ (freq_plasma_upper_hybrid_profile3)_ 2.15596170576182281e+11 -Plasma_upper_hybrid_frequency_at_point_4_________________________________ (freq_plasma_upper_hybrid_profile4)_ 2.15557021364509003e+11 -Plasma_upper_hybrid_frequency_at_point_5_________________________________ (freq_plasma_upper_hybrid_profile5)_ 2.15518460684970703e+11 -Plasma_upper_hybrid_frequency_at_point_6_________________________________ (freq_plasma_upper_hybrid_profile6)_ 2.15480486488273682e+11 -Plasma_upper_hybrid_frequency_at_point_7_________________________________ (freq_plasma_upper_hybrid_profile7)_ 2.15443096730607239e+11 -Plasma_upper_hybrid_frequency_at_point_8_________________________________ (freq_plasma_upper_hybrid_profile8)_ 2.15406289373634216e+11 -Plasma_upper_hybrid_frequency_at_point_9_________________________________ (freq_plasma_upper_hybrid_profile9)_ 2.15370062384482056e+11 -Plasma_upper_hybrid_frequency_at_point_10________________________________ (freq_plasma_upper_hybrid_profile10)_ 2.15334413735732971e+11 -Plasma_upper_hybrid_frequency_at_point_11________________________________ (freq_plasma_upper_hybrid_profile11)_ 2.15299341405415466e+11 -Plasma_upper_hybrid_frequency_at_point_12________________________________ (freq_plasma_upper_hybrid_profile12)_ 2.15264843376994812e+11 -Plasma_upper_hybrid_frequency_at_point_13________________________________ (freq_plasma_upper_hybrid_profile13)_ 2.15230917639363983e+11 -Plasma_upper_hybrid_frequency_at_point_14________________________________ (freq_plasma_upper_hybrid_profile14)_ 2.15197562186834869e+11 -Plasma_upper_hybrid_frequency_at_point_15________________________________ (freq_plasma_upper_hybrid_profile15)_ 2.15164775019129028e+11 -Plasma_upper_hybrid_frequency_at_point_16________________________________ (freq_plasma_upper_hybrid_profile16)_ 2.15132554141369019e+11 -Plasma_upper_hybrid_frequency_at_point_17________________________________ (freq_plasma_upper_hybrid_profile17)_ 2.15100897564069122e+11 -Plasma_upper_hybrid_frequency_at_point_18________________________________ (freq_plasma_upper_hybrid_profile18)_ 2.15069803303127228e+11 -Plasma_upper_hybrid_frequency_at_point_19________________________________ (freq_plasma_upper_hybrid_profile19)_ 2.15039269379815308e+11 -Plasma_upper_hybrid_frequency_at_point_20________________________________ (freq_plasma_upper_hybrid_profile20)_ 2.15009293820770966e+11 -Plasma_upper_hybrid_frequency_at_point_21________________________________ (freq_plasma_upper_hybrid_profile21)_ 2.14979874657988983e+11 -Plasma_upper_hybrid_frequency_at_point_22________________________________ (freq_plasma_upper_hybrid_profile22)_ 2.14951009928812164e+11 -Plasma_upper_hybrid_frequency_at_point_23________________________________ (freq_plasma_upper_hybrid_profile23)_ 2.14922697675923126e+11 -Plasma_upper_hybrid_frequency_at_point_24________________________________ (freq_plasma_upper_hybrid_profile24)_ 2.14894935947335571e+11 -Plasma_upper_hybrid_frequency_at_point_25________________________________ (freq_plasma_upper_hybrid_profile25)_ 2.14867722796385559e+11 -Plasma_upper_hybrid_frequency_at_point_26________________________________ (freq_plasma_upper_hybrid_profile26)_ 2.14841056281723389e+11 -Plasma_upper_hybrid_frequency_at_point_27________________________________ (freq_plasma_upper_hybrid_profile27)_ 2.14814934467304596e+11 -Plasma_upper_hybrid_frequency_at_point_28________________________________ (freq_plasma_upper_hybrid_profile28)_ 2.14789355422382141e+11 -Plasma_upper_hybrid_frequency_at_point_29________________________________ (freq_plasma_upper_hybrid_profile29)_ 2.14764317221497345e+11 -Plasma_upper_hybrid_frequency_at_point_30________________________________ (freq_plasma_upper_hybrid_profile30)_ 2.14739817944472076e+11 -Plasma_upper_hybrid_frequency_at_point_31________________________________ (freq_plasma_upper_hybrid_profile31)_ 2.14588342450950378e+11 -Plasma_upper_hybrid_frequency_at_point_32________________________________ (freq_plasma_upper_hybrid_profile32)_ 2.14437226277710815e+11 -Plasma_upper_hybrid_frequency_at_point_33________________________________ (freq_plasma_upper_hybrid_profile33)_ 2.14286468101644989e+11 -Plasma_upper_hybrid_frequency_at_point_34________________________________ (freq_plasma_upper_hybrid_profile34)_ 2.14136066604184875e+11 -Plasma_upper_hybrid_frequency_at_point_35________________________________ (freq_plasma_upper_hybrid_profile35)_ 2.13986020471282715e+11 -Plasma_upper_hybrid_frequency_at_point_36________________________________ (freq_plasma_upper_hybrid_profile36)_ 2.13836328393390594e+11 -Plasma_upper_hybrid_frequency_at_point_37________________________________ (freq_plasma_upper_hybrid_profile37)_ 2.13686989065440399e+11 -Plasma_upper_hybrid_frequency_at_point_38________________________________ (freq_plasma_upper_hybrid_profile38)_ 2.13538001186824188e+11 -Plasma_upper_hybrid_frequency_at_point_39________________________________ (freq_plasma_upper_hybrid_profile39)_ 2.13389363461373901e+11 -Plasma_upper_hybrid_frequency_at_point_40________________________________ (freq_plasma_upper_hybrid_profile40)_ 2.13241074597341736e+11 -Plasma_upper_hybrid_frequency_at_point_41________________________________ (freq_plasma_upper_hybrid_profile41)_ 2.13093133307380829e+11 -Plasma_upper_hybrid_frequency_at_point_42________________________________ (freq_plasma_upper_hybrid_profile42)_ 2.12945538308525360e+11 -Plasma_upper_hybrid_frequency_at_point_43________________________________ (freq_plasma_upper_hybrid_profile43)_ 2.12798288322171265e+11 -Plasma_upper_hybrid_frequency_at_point_44________________________________ (freq_plasma_upper_hybrid_profile44)_ 2.12651382074056946e+11 -Plasma_upper_hybrid_frequency_at_point_45________________________________ (freq_plasma_upper_hybrid_profile45)_ 2.12504818294244141e+11 -Plasma_upper_hybrid_frequency_at_point_46________________________________ (freq_plasma_upper_hybrid_profile46)_ 2.12358595717098877e+11 -Plasma_upper_hybrid_frequency_at_point_47________________________________ (freq_plasma_upper_hybrid_profile47)_ 2.12212713081272003e+11 -Plasma_upper_hybrid_frequency_at_point_48________________________________ (freq_plasma_upper_hybrid_profile48)_ 2.12067169129681183e+11 -Plasma_upper_hybrid_frequency_at_point_49________________________________ (freq_plasma_upper_hybrid_profile49)_ 2.11921962609491150e+11 -Plasma_upper_hybrid_frequency_at_point_50________________________________ (freq_plasma_upper_hybrid_profile50)_ 2.11777092272095947e+11 -Plasma_upper_hybrid_frequency_at_point_51________________________________ (freq_plasma_upper_hybrid_profile51)_ 2.11632556873099609e+11 -Plasma_upper_hybrid_frequency_at_point_52________________________________ (freq_plasma_upper_hybrid_profile52)_ 2.11488355172298065e+11 -Plasma_upper_hybrid_frequency_at_point_53________________________________ (freq_plasma_upper_hybrid_profile53)_ 2.11344485933660858e+11 -Plasma_upper_hybrid_frequency_at_point_54________________________________ (freq_plasma_upper_hybrid_profile54)_ 2.11200947925312500e+11 -Plasma_upper_hybrid_frequency_at_point_55________________________________ (freq_plasma_upper_hybrid_profile55)_ 2.11057739919514832e+11 -Plasma_upper_hybrid_frequency_at_point_56________________________________ (freq_plasma_upper_hybrid_profile56)_ 2.10914860692648224e+11 -Plasma_upper_hybrid_frequency_at_point_57________________________________ (freq_plasma_upper_hybrid_profile57)_ 2.10772309025194489e+11 -Plasma_upper_hybrid_frequency_at_point_58________________________________ (freq_plasma_upper_hybrid_profile58)_ 2.10630083701718292e+11 -Plasma_upper_hybrid_frequency_at_point_59________________________________ (freq_plasma_upper_hybrid_profile59)_ 2.10488183510849701e+11 -Plasma_upper_hybrid_frequency_at_point_60________________________________ (freq_plasma_upper_hybrid_profile60)_ 2.10346607245266541e+11 -Plasma_upper_hybrid_frequency_at_point_61________________________________ (freq_plasma_upper_hybrid_profile61)_ 2.10205353701676575e+11 -Plasma_upper_hybrid_frequency_at_point_62________________________________ (freq_plasma_upper_hybrid_profile62)_ 2.10064421680800201e+11 -Plasma_upper_hybrid_frequency_at_point_63________________________________ (freq_plasma_upper_hybrid_profile63)_ 2.09923809987353119e+11 -Plasma_upper_hybrid_frequency_at_point_64________________________________ (freq_plasma_upper_hybrid_profile64)_ 2.09783517430028778e+11 -Plasma_upper_hybrid_frequency_at_point_65________________________________ (freq_plasma_upper_hybrid_profile65)_ 2.09643542821481506e+11 -Plasma_upper_hybrid_frequency_at_point_66________________________________ (freq_plasma_upper_hybrid_profile66)_ 2.09503884978308990e+11 -Plasma_upper_hybrid_frequency_at_point_67________________________________ (freq_plasma_upper_hybrid_profile67)_ 2.09364542721035675e+11 -Plasma_upper_hybrid_frequency_at_point_68________________________________ (freq_plasma_upper_hybrid_profile68)_ 2.09225514874095398e+11 -Plasma_upper_hybrid_frequency_at_point_69________________________________ (freq_plasma_upper_hybrid_profile69)_ 2.09086800265814972e+11 -Plasma_upper_hybrid_frequency_at_point_70________________________________ (freq_plasma_upper_hybrid_profile70)_ 2.08948397728397278e+11 -Plasma_upper_hybrid_frequency_at_point_71________________________________ (freq_plasma_upper_hybrid_profile71)_ 2.08810306097904358e+11 -Plasma_upper_hybrid_frequency_at_point_72________________________________ (freq_plasma_upper_hybrid_profile72)_ 2.08672524214241241e+11 -Plasma_upper_hybrid_frequency_at_point_73________________________________ (freq_plasma_upper_hybrid_profile73)_ 2.08535050921139099e+11 -Plasma_upper_hybrid_frequency_at_point_74________________________________ (freq_plasma_upper_hybrid_profile74)_ 2.08397885066139099e+11 -Plasma_upper_hybrid_frequency_at_point_75________________________________ (freq_plasma_upper_hybrid_profile75)_ 2.08261025500576172e+11 -Plasma_upper_hybrid_frequency_at_point_76________________________________ (freq_plasma_upper_hybrid_profile76)_ 2.08124471079562256e+11 -Plasma_upper_hybrid_frequency_at_point_77________________________________ (freq_plasma_upper_hybrid_profile77)_ 2.07988220661970917e+11 -Plasma_upper_hybrid_frequency_at_point_78________________________________ (freq_plasma_upper_hybrid_profile78)_ 2.07852273110420593e+11 -Plasma_upper_hybrid_frequency_at_point_79________________________________ (freq_plasma_upper_hybrid_profile79)_ 2.07716627291259125e+11 -Plasma_upper_hybrid_frequency_at_point_80________________________________ (freq_plasma_upper_hybrid_profile80)_ 2.07581282074547699e+11 -Plasma_upper_hybrid_frequency_at_point_81________________________________ (freq_plasma_upper_hybrid_profile81)_ 2.07446236334044861e+11 -Plasma_upper_hybrid_frequency_at_point_82________________________________ (freq_plasma_upper_hybrid_profile82)_ 2.07311488947191162e+11 -Plasma_upper_hybrid_frequency_at_point_83________________________________ (freq_plasma_upper_hybrid_profile83)_ 2.07177038795093170e+11 -Plasma_upper_hybrid_frequency_at_point_84________________________________ (freq_plasma_upper_hybrid_profile84)_ 2.07042884762508209e+11 -Plasma_upper_hybrid_frequency_at_point_85________________________________ (freq_plasma_upper_hybrid_profile85)_ 2.06909025737828674e+11 -Plasma_upper_hybrid_frequency_at_point_86________________________________ (freq_plasma_upper_hybrid_profile86)_ 2.06775460613066681e+11 -Plasma_upper_hybrid_frequency_at_point_87________________________________ (freq_plasma_upper_hybrid_profile87)_ 2.06642188283838959e+11 -Plasma_upper_hybrid_frequency_at_point_88________________________________ (freq_plasma_upper_hybrid_profile88)_ 2.06509207649351227e+11 -Plasma_upper_hybrid_frequency_at_point_89________________________________ (freq_plasma_upper_hybrid_profile89)_ 2.06376517612383423e+11 -Plasma_upper_hybrid_frequency_at_point_90________________________________ (freq_plasma_upper_hybrid_profile90)_ 2.06244117079274384e+11 -Plasma_upper_hybrid_frequency_at_point_91________________________________ (freq_plasma_upper_hybrid_profile91)_ 2.06112004959907013e+11 -Plasma_upper_hybrid_frequency_at_point_92________________________________ (freq_plasma_upper_hybrid_profile92)_ 2.05980180167693176e+11 -Plasma_upper_hybrid_frequency_at_point_93________________________________ (freq_plasma_upper_hybrid_profile93)_ 2.05848641619559082e+11 -Plasma_upper_hybrid_frequency_at_point_94________________________________ (freq_plasma_upper_hybrid_profile94)_ 2.05717388235930359e+11 -Plasma_upper_hybrid_frequency_at_point_95________________________________ (freq_plasma_upper_hybrid_profile95)_ 2.05586418940717346e+11 -Plasma_upper_hybrid_frequency_at_point_96________________________________ (freq_plasma_upper_hybrid_profile96)_ 2.05455732661300568e+11 -Plasma_upper_hybrid_frequency_at_point_97________________________________ (freq_plasma_upper_hybrid_profile97)_ 2.05325328328516205e+11 -Plasma_upper_hybrid_frequency_at_point_98________________________________ (freq_plasma_upper_hybrid_profile98)_ 2.05195204876641571e+11 -Plasma_upper_hybrid_frequency_at_point_99________________________________ (freq_plasma_upper_hybrid_profile99)_ 2.05065361243380798e+11 -Plasma_upper_hybrid_frequency_at_point_100_______________________________ (freq_plasma_upper_hybrid_profile100)_ 2.04935796369850311e+11 -Plasma_upper_hybrid_frequency_at_point_101_______________________________ (freq_plasma_upper_hybrid_profile101)_ 2.04806509200564911e+11 -Plasma_upper_hybrid_frequency_at_point_102_______________________________ (freq_plasma_upper_hybrid_profile102)_ 2.04677498683423248e+11 -Plasma_upper_hybrid_frequency_at_point_103_______________________________ (freq_plasma_upper_hybrid_profile103)_ 2.04548763769694031e+11 -Plasma_upper_hybrid_frequency_at_point_104_______________________________ (freq_plasma_upper_hybrid_profile104)_ 2.04420303414001953e+11 -Plasma_upper_hybrid_frequency_at_point_105_______________________________ (freq_plasma_upper_hybrid_profile105)_ 2.04292116574313446e+11 -Plasma_upper_hybrid_frequency_at_point_106_______________________________ (freq_plasma_upper_hybrid_profile106)_ 2.04164202211923096e+11 -Plasma_upper_hybrid_frequency_at_point_107_______________________________ (freq_plasma_upper_hybrid_profile107)_ 2.04036559291439758e+11 -Plasma_upper_hybrid_frequency_at_point_108_______________________________ (freq_plasma_upper_hybrid_profile108)_ 2.03909186780772705e+11 -Plasma_upper_hybrid_frequency_at_point_109_______________________________ (freq_plasma_upper_hybrid_profile109)_ 2.03782083651118164e+11 -Plasma_upper_hybrid_frequency_at_point_110_______________________________ (freq_plasma_upper_hybrid_profile110)_ 2.03655248876945465e+11 -Plasma_upper_hybrid_frequency_at_point_111_______________________________ (freq_plasma_upper_hybrid_profile111)_ 2.03528681435983612e+11 -Plasma_upper_hybrid_frequency_at_point_112_______________________________ (freq_plasma_upper_hybrid_profile112)_ 2.03402380309207855e+11 -Plasma_upper_hybrid_frequency_at_point_113_______________________________ (freq_plasma_upper_hybrid_profile113)_ 2.03276344480826202e+11 -Plasma_upper_hybrid_frequency_at_point_114_______________________________ (freq_plasma_upper_hybrid_profile114)_ 2.03150572938266174e+11 -Plasma_upper_hybrid_frequency_at_point_115_______________________________ (freq_plasma_upper_hybrid_profile115)_ 2.03025064672161377e+11 -Plasma_upper_hybrid_frequency_at_point_116_______________________________ (freq_plasma_upper_hybrid_profile116)_ 2.02899818676338562e+11 -Plasma_upper_hybrid_frequency_at_point_117_______________________________ (freq_plasma_upper_hybrid_profile117)_ 2.02774833947804077e+11 -Plasma_upper_hybrid_frequency_at_point_118_______________________________ (freq_plasma_upper_hybrid_profile118)_ 2.02650109486731323e+11 -Plasma_upper_hybrid_frequency_at_point_119_______________________________ (freq_plasma_upper_hybrid_profile119)_ 2.02525644296447327e+11 -Plasma_upper_hybrid_frequency_at_point_120_______________________________ (freq_plasma_upper_hybrid_profile120)_ 2.02401437383419830e+11 -Plasma_upper_hybrid_frequency_at_point_121_______________________________ (freq_plasma_upper_hybrid_profile121)_ 2.02277487757244751e+11 -Plasma_upper_hybrid_frequency_at_point_122_______________________________ (freq_plasma_upper_hybrid_profile122)_ 2.02153794430632843e+11 -Plasma_upper_hybrid_frequency_at_point_123_______________________________ (freq_plasma_upper_hybrid_profile123)_ 2.02030356419397552e+11 -Plasma_upper_hybrid_frequency_at_point_124_______________________________ (freq_plasma_upper_hybrid_profile124)_ 2.01907172742441681e+11 -Plasma_upper_hybrid_frequency_at_point_125_______________________________ (freq_plasma_upper_hybrid_profile125)_ 2.01784242421745270e+11 -Plasma_upper_hybrid_frequency_at_point_126_______________________________ (freq_plasma_upper_hybrid_profile126)_ 2.01661564482352875e+11 -Plasma_upper_hybrid_frequency_at_point_127_______________________________ (freq_plasma_upper_hybrid_profile127)_ 2.01539137952360809e+11 -Plasma_upper_hybrid_frequency_at_point_128_______________________________ (freq_plasma_upper_hybrid_profile128)_ 2.01416961862905243e+11 -Plasma_upper_hybrid_frequency_at_point_129_______________________________ (freq_plasma_upper_hybrid_profile129)_ 2.01295035248149200e+11 -Plasma_upper_hybrid_frequency_at_point_130_______________________________ (freq_plasma_upper_hybrid_profile130)_ 2.01173357145270660e+11 -Plasma_upper_hybrid_frequency_at_point_131_______________________________ (freq_plasma_upper_hybrid_profile131)_ 2.01051926594450165e+11 -Plasma_upper_hybrid_frequency_at_point_132_______________________________ (freq_plasma_upper_hybrid_profile132)_ 2.00930742638858704e+11 -Plasma_upper_hybrid_frequency_at_point_133_______________________________ (freq_plasma_upper_hybrid_profile133)_ 2.00809804324645325e+11 -Plasma_upper_hybrid_frequency_at_point_134_______________________________ (freq_plasma_upper_hybrid_profile134)_ 2.00689110700925354e+11 -Plasma_upper_hybrid_frequency_at_point_135_______________________________ (freq_plasma_upper_hybrid_profile135)_ 2.00568660819768127e+11 -Plasma_upper_hybrid_frequency_at_point_136_______________________________ (freq_plasma_upper_hybrid_profile136)_ 2.00448453736185211e+11 -Plasma_upper_hybrid_frequency_at_point_137_______________________________ (freq_plasma_upper_hybrid_profile137)_ 2.00328488508118347e+11 -Plasma_upper_hybrid_frequency_at_point_138_______________________________ (freq_plasma_upper_hybrid_profile138)_ 2.00208764196427704e+11 -Plasma_upper_hybrid_frequency_at_point_139_______________________________ (freq_plasma_upper_hybrid_profile139)_ 2.00089279864879944e+11 -Plasma_upper_hybrid_frequency_at_point_140_______________________________ (freq_plasma_upper_hybrid_profile140)_ 1.99970034580136780e+11 -Plasma_upper_hybrid_frequency_at_point_141_______________________________ (freq_plasma_upper_hybrid_profile141)_ 1.99851027411742828e+11 -Plasma_upper_hybrid_frequency_at_point_142_______________________________ (freq_plasma_upper_hybrid_profile142)_ 1.99732257432114441e+11 -Plasma_upper_hybrid_frequency_at_point_143_______________________________ (freq_plasma_upper_hybrid_profile143)_ 1.99613723716527893e+11 -Plasma_upper_hybrid_frequency_at_point_144_______________________________ (freq_plasma_upper_hybrid_profile144)_ 1.99495425343107788e+11 -Plasma_upper_hybrid_frequency_at_point_145_______________________________ (freq_plasma_upper_hybrid_profile145)_ 1.99377361392815918e+11 -Plasma_upper_hybrid_frequency_at_point_146_______________________________ (freq_plasma_upper_hybrid_profile146)_ 1.99259530949439575e+11 -Plasma_upper_hybrid_frequency_at_point_147_______________________________ (freq_plasma_upper_hybrid_profile147)_ 1.99141933099580200e+11 -Plasma_upper_hybrid_frequency_at_point_148_______________________________ (freq_plasma_upper_hybrid_profile148)_ 1.99024566932642334e+11 -Plasma_upper_hybrid_frequency_at_point_149_______________________________ (freq_plasma_upper_hybrid_profile149)_ 1.98907431540822052e+11 -Plasma_upper_hybrid_frequency_at_point_150_______________________________ (freq_plasma_upper_hybrid_profile150)_ 1.98790526019096039e+11 -Plasma_upper_hybrid_frequency_at_point_151_______________________________ (freq_plasma_upper_hybrid_profile151)_ 1.98673849465210266e+11 -Plasma_upper_hybrid_frequency_at_point_152_______________________________ (freq_plasma_upper_hybrid_profile152)_ 1.98557400979669098e+11 -Plasma_upper_hybrid_frequency_at_point_153_______________________________ (freq_plasma_upper_hybrid_profile153)_ 1.98441179665723969e+11 -Plasma_upper_hybrid_frequency_at_point_154_______________________________ (freq_plasma_upper_hybrid_profile154)_ 1.98325184629362610e+11 -Plasma_upper_hybrid_frequency_at_point_155_______________________________ (freq_plasma_upper_hybrid_profile155)_ 1.98209414979298279e+11 -Plasma_upper_hybrid_frequency_at_point_156_______________________________ (freq_plasma_upper_hybrid_profile156)_ 1.98093869826958313e+11 -Plasma_upper_hybrid_frequency_at_point_157_______________________________ (freq_plasma_upper_hybrid_profile157)_ 1.97978548286474060e+11 -Plasma_upper_hybrid_frequency_at_point_158_______________________________ (freq_plasma_upper_hybrid_profile158)_ 1.97863449474669556e+11 -Plasma_upper_hybrid_frequency_at_point_159_______________________________ (freq_plasma_upper_hybrid_profile159)_ 1.97748572511050751e+11 -Plasma_upper_hybrid_frequency_at_point_160_______________________________ (freq_plasma_upper_hybrid_profile160)_ 1.97633916517795380e+11 -Plasma_upper_hybrid_frequency_at_point_161_______________________________ (freq_plasma_upper_hybrid_profile161)_ 1.97519480619741730e+11 -Plasma_upper_hybrid_frequency_at_point_162_______________________________ (freq_plasma_upper_hybrid_profile162)_ 1.97405263944378418e+11 -Plasma_upper_hybrid_frequency_at_point_163_______________________________ (freq_plasma_upper_hybrid_profile163)_ 1.97291265621833740e+11 -Plasma_upper_hybrid_frequency_at_point_164_______________________________ (freq_plasma_upper_hybrid_profile164)_ 1.97177484784865204e+11 -Plasma_upper_hybrid_frequency_at_point_165_______________________________ (freq_plasma_upper_hybrid_profile165)_ 1.97063920568849121e+11 -Plasma_upper_hybrid_frequency_at_point_166_______________________________ (freq_plasma_upper_hybrid_profile166)_ 1.96950572111770172e+11 -Plasma_upper_hybrid_frequency_at_point_167_______________________________ (freq_plasma_upper_hybrid_profile167)_ 1.96837438554211243e+11 -Plasma_upper_hybrid_frequency_at_point_168_______________________________ (freq_plasma_upper_hybrid_profile168)_ 1.96724519039342651e+11 -Plasma_upper_hybrid_frequency_at_point_169_______________________________ (freq_plasma_upper_hybrid_profile169)_ 1.96611812712912689e+11 -Plasma_upper_hybrid_frequency_at_point_170_______________________________ (freq_plasma_upper_hybrid_profile170)_ 1.96499318723236633e+11 -Plasma_upper_hybrid_frequency_at_point_171_______________________________ (freq_plasma_upper_hybrid_profile171)_ 1.96387036221187134e+11 -Plasma_upper_hybrid_frequency_at_point_172_______________________________ (freq_plasma_upper_hybrid_profile172)_ 1.96274964360183868e+11 -Plasma_upper_hybrid_frequency_at_point_173_______________________________ (freq_plasma_upper_hybrid_profile173)_ 1.96163102296183563e+11 -Plasma_upper_hybrid_frequency_at_point_174_______________________________ (freq_plasma_upper_hybrid_profile174)_ 1.96051449187669952e+11 -Plasma_upper_hybrid_frequency_at_point_175_______________________________ (freq_plasma_upper_hybrid_profile175)_ 1.95940004195643738e+11 -Plasma_upper_hybrid_frequency_at_point_176_______________________________ (freq_plasma_upper_hybrid_profile176)_ 1.95828766483612976e+11 -Plasma_upper_hybrid_frequency_at_point_177_______________________________ (freq_plasma_upper_hybrid_profile177)_ 1.95717735217582764e+11 -Plasma_upper_hybrid_frequency_at_point_178_______________________________ (freq_plasma_upper_hybrid_profile178)_ 1.95606909566045746e+11 -Plasma_upper_hybrid_frequency_at_point_179_______________________________ (freq_plasma_upper_hybrid_profile179)_ 1.95496288699972137e+11 -Plasma_upper_hybrid_frequency_at_point_180_______________________________ (freq_plasma_upper_hybrid_profile180)_ 1.95385871792800140e+11 -Plasma_upper_hybrid_frequency_at_point_181_______________________________ (freq_plasma_upper_hybrid_profile181)_ 1.95275658020426117e+11 -Plasma_upper_hybrid_frequency_at_point_182_______________________________ (freq_plasma_upper_hybrid_profile182)_ 1.95165646561194946e+11 -Plasma_upper_hybrid_frequency_at_point_183_______________________________ (freq_plasma_upper_hybrid_profile183)_ 1.95055836595890503e+11 -Plasma_upper_hybrid_frequency_at_point_184_______________________________ (freq_plasma_upper_hybrid_profile184)_ 1.94946227307725952e+11 -Plasma_upper_hybrid_frequency_at_point_185_______________________________ (freq_plasma_upper_hybrid_profile185)_ 1.94836817882334473e+11 -Plasma_upper_hybrid_frequency_at_point_186_______________________________ (freq_plasma_upper_hybrid_profile186)_ 1.94727607507759430e+11 -Plasma_upper_hybrid_frequency_at_point_187_______________________________ (freq_plasma_upper_hybrid_profile187)_ 1.94618595374445099e+11 -Plasma_upper_hybrid_frequency_at_point_188_______________________________ (freq_plasma_upper_hybrid_profile188)_ 1.94509780675227570e+11 -Plasma_upper_hybrid_frequency_at_point_189_______________________________ (freq_plasma_upper_hybrid_profile189)_ 1.94401162605324615e+11 -Plasma_upper_hybrid_frequency_at_point_190_______________________________ (freq_plasma_upper_hybrid_profile190)_ 1.94292740362327301e+11 -Plasma_upper_hybrid_frequency_at_point_191_______________________________ (freq_plasma_upper_hybrid_profile191)_ 1.94184513146190063e+11 -Plasma_upper_hybrid_frequency_at_point_192_______________________________ (freq_plasma_upper_hybrid_profile192)_ 1.94076480159221741e+11 -Plasma_upper_hybrid_frequency_at_point_193_______________________________ (freq_plasma_upper_hybrid_profile193)_ 1.93968640606076233e+11 -Plasma_upper_hybrid_frequency_at_point_194_______________________________ (freq_plasma_upper_hybrid_profile194)_ 1.93860993693743591e+11 -Plasma_upper_hybrid_frequency_at_point_195_______________________________ (freq_plasma_upper_hybrid_profile195)_ 1.93753538631540619e+11 -Plasma_upper_hybrid_frequency_at_point_196_______________________________ (freq_plasma_upper_hybrid_profile196)_ 1.93646274631102051e+11 -Plasma_upper_hybrid_frequency_at_point_197_______________________________ (freq_plasma_upper_hybrid_profile197)_ 1.93539200906371307e+11 -Plasma_upper_hybrid_frequency_at_point_198_______________________________ (freq_plasma_upper_hybrid_profile198)_ 1.93432316673591736e+11 -Plasma_upper_hybrid_frequency_at_point_199_______________________________ (freq_plasma_upper_hybrid_profile199)_ 1.93325621151297302e+11 -Plasma_upper_hybrid_frequency_at_point_200_______________________________ (freq_plasma_upper_hybrid_profile200)_ 1.93219113560304108e+11 -Plasma_upper_hybrid_frequency_at_point_201_______________________________ (freq_plasma_upper_hybrid_profile201)_ 1.93112793123701233e+11 -Plasma_upper_hybrid_frequency_at_point_202_______________________________ (freq_plasma_upper_hybrid_profile202)_ 1.93006659066842010e+11 -Plasma_upper_hybrid_frequency_at_point_203_______________________________ (freq_plasma_upper_hybrid_profile203)_ 1.92900710617335083e+11 -Plasma_upper_hybrid_frequency_at_point_204_______________________________ (freq_plasma_upper_hybrid_profile204)_ 1.92794947005035889e+11 -Plasma_upper_hybrid_frequency_at_point_205_______________________________ (freq_plasma_upper_hybrid_profile205)_ 1.92689367462037628e+11 -Plasma_upper_hybrid_frequency_at_point_206_______________________________ (freq_plasma_upper_hybrid_profile206)_ 1.92583971222662964e+11 -Plasma_upper_hybrid_frequency_at_point_207_______________________________ (freq_plasma_upper_hybrid_profile207)_ 1.92478757523455017e+11 -Plasma_upper_hybrid_frequency_at_point_208_______________________________ (freq_plasma_upper_hybrid_profile208)_ 1.92373725603169037e+11 -Plasma_upper_hybrid_frequency_at_point_209_______________________________ (freq_plasma_upper_hybrid_profile209)_ 1.92268874702763428e+11 -Plasma_upper_hybrid_frequency_at_point_210_______________________________ (freq_plasma_upper_hybrid_profile210)_ 1.92164204065391754e+11 -Plasma_upper_hybrid_frequency_at_point_211_______________________________ (freq_plasma_upper_hybrid_profile211)_ 1.92059712936393860e+11 -Plasma_upper_hybrid_frequency_at_point_212_______________________________ (freq_plasma_upper_hybrid_profile212)_ 1.91955400563287476e+11 -Plasma_upper_hybrid_frequency_at_point_213_______________________________ (freq_plasma_upper_hybrid_profile213)_ 1.91851266195759888e+11 -Plasma_upper_hybrid_frequency_at_point_214_______________________________ (freq_plasma_upper_hybrid_profile214)_ 1.91747309085659515e+11 -Plasma_upper_hybrid_frequency_at_point_215_______________________________ (freq_plasma_upper_hybrid_profile215)_ 1.91643528486987396e+11 -Plasma_upper_hybrid_frequency_at_point_216_______________________________ (freq_plasma_upper_hybrid_profile216)_ 1.91539923655889130e+11 -Plasma_upper_hybrid_frequency_at_point_217_______________________________ (freq_plasma_upper_hybrid_profile217)_ 1.91436493850646332e+11 -Plasma_upper_hybrid_frequency_at_point_218_______________________________ (freq_plasma_upper_hybrid_profile218)_ 1.91333238331668732e+11 -Plasma_upper_hybrid_frequency_at_point_219_______________________________ (freq_plasma_upper_hybrid_profile219)_ 1.91230156361485413e+11 -Plasma_upper_hybrid_frequency_at_point_220_______________________________ (freq_plasma_upper_hybrid_profile220)_ 1.91127247204737305e+11 -Plasma_upper_hybrid_frequency_at_point_221_______________________________ (freq_plasma_upper_hybrid_profile221)_ 1.91024510128168365e+11 -Plasma_upper_hybrid_frequency_at_point_222_______________________________ (freq_plasma_upper_hybrid_profile222)_ 1.90921944400618103e+11 -Plasma_upper_hybrid_frequency_at_point_223_______________________________ (freq_plasma_upper_hybrid_profile223)_ 1.90819549293012939e+11 -Plasma_upper_hybrid_frequency_at_point_224_______________________________ (freq_plasma_upper_hybrid_profile224)_ 1.90717324078358521e+11 -Plasma_upper_hybrid_frequency_at_point_225_______________________________ (freq_plasma_upper_hybrid_profile225)_ 1.90615268031731659e+11 -Plasma_upper_hybrid_frequency_at_point_226_______________________________ (freq_plasma_upper_hybrid_profile226)_ 1.90513380430272186e+11 -Plasma_upper_hybrid_frequency_at_point_227_______________________________ (freq_plasma_upper_hybrid_profile227)_ 1.90411660553175171e+11 -Plasma_upper_hybrid_frequency_at_point_228_______________________________ (freq_plasma_upper_hybrid_profile228)_ 1.90310107681683136e+11 -Plasma_upper_hybrid_frequency_at_point_229_______________________________ (freq_plasma_upper_hybrid_profile229)_ 1.90208721099077576e+11 -Plasma_upper_hybrid_frequency_at_point_230_______________________________ (freq_plasma_upper_hybrid_profile230)_ 1.90107500090672028e+11 -Plasma_upper_hybrid_frequency_at_point_231_______________________________ (freq_plasma_upper_hybrid_profile231)_ 1.90006443943803467e+11 -Plasma_upper_hybrid_frequency_at_point_232_______________________________ (freq_plasma_upper_hybrid_profile232)_ 1.89905551947824982e+11 -Plasma_upper_hybrid_frequency_at_point_233_______________________________ (freq_plasma_upper_hybrid_profile233)_ 1.89804823394097748e+11 -Plasma_upper_hybrid_frequency_at_point_234_______________________________ (freq_plasma_upper_hybrid_profile234)_ 1.89704257575983582e+11 -Plasma_upper_hybrid_frequency_at_point_235_______________________________ (freq_plasma_upper_hybrid_profile235)_ 1.89603853788837067e+11 -Plasma_upper_hybrid_frequency_at_point_236_______________________________ (freq_plasma_upper_hybrid_profile236)_ 1.89503611329997894e+11 -Plasma_upper_hybrid_frequency_at_point_237_______________________________ (freq_plasma_upper_hybrid_profile237)_ 1.89403529498783386e+11 -Plasma_upper_hybrid_frequency_at_point_238_______________________________ (freq_plasma_upper_hybrid_profile238)_ 1.89303607596480682e+11 -Plasma_upper_hybrid_frequency_at_point_239_______________________________ (freq_plasma_upper_hybrid_profile239)_ 1.89203844926339600e+11 -Plasma_upper_hybrid_frequency_at_point_240_______________________________ (freq_plasma_upper_hybrid_profile240)_ 1.89104240793564484e+11 -Plasma_upper_hybrid_frequency_at_point_241_______________________________ (freq_plasma_upper_hybrid_profile241)_ 1.89004794505307220e+11 -Plasma_upper_hybrid_frequency_at_point_242_______________________________ (freq_plasma_upper_hybrid_profile242)_ 1.88905505370659637e+11 -Plasma_upper_hybrid_frequency_at_point_243_______________________________ (freq_plasma_upper_hybrid_profile243)_ 1.88806372700645905e+11 -Plasma_upper_hybrid_frequency_at_point_244_______________________________ (freq_plasma_upper_hybrid_profile244)_ 1.88707395808215363e+11 -Plasma_upper_hybrid_frequency_at_point_245_______________________________ (freq_plasma_upper_hybrid_profile245)_ 1.88608574008234894e+11 -Plasma_upper_hybrid_frequency_at_point_246_______________________________ (freq_plasma_upper_hybrid_profile246)_ 1.88509906617481873e+11 -Plasma_upper_hybrid_frequency_at_point_247_______________________________ (freq_plasma_upper_hybrid_profile247)_ 1.88411392954636627e+11 -Plasma_upper_hybrid_frequency_at_point_248_______________________________ (freq_plasma_upper_hybrid_profile248)_ 1.88313032340275085e+11 -Plasma_upper_hybrid_frequency_at_point_249_______________________________ (freq_plasma_upper_hybrid_profile249)_ 1.88214824096861786e+11 -Plasma_upper_hybrid_frequency_at_point_250_______________________________ (freq_plasma_upper_hybrid_profile250)_ 1.88116767548742615e+11 -Plasma_upper_hybrid_frequency_at_point_251_______________________________ (freq_plasma_upper_hybrid_profile251)_ 1.88018862022137177e+11 -Plasma_upper_hybrid_frequency_at_point_252_______________________________ (freq_plasma_upper_hybrid_profile252)_ 1.87921106845132202e+11 -Plasma_upper_hybrid_frequency_at_point_253_______________________________ (freq_plasma_upper_hybrid_profile253)_ 1.87823501347674042e+11 -Plasma_upper_hybrid_frequency_at_point_254_______________________________ (freq_plasma_upper_hybrid_profile254)_ 1.87726044861561523e+11 -Plasma_upper_hybrid_frequency_at_point_255_______________________________ (freq_plasma_upper_hybrid_profile255)_ 1.87628736720439331e+11 -Plasma_upper_hybrid_frequency_at_point_256_______________________________ (freq_plasma_upper_hybrid_profile256)_ 1.87531576259790283e+11 -Plasma_upper_hybrid_frequency_at_point_257_______________________________ (freq_plasma_upper_hybrid_profile257)_ 1.87434562816928772e+11 -Plasma_upper_hybrid_frequency_at_point_258_______________________________ (freq_plasma_upper_hybrid_profile258)_ 1.87337695730993622e+11 -Plasma_upper_hybrid_frequency_at_point_259_______________________________ (freq_plasma_upper_hybrid_profile259)_ 1.87240974342941010e+11 -Plasma_upper_hybrid_frequency_at_point_260_______________________________ (freq_plasma_upper_hybrid_profile260)_ 1.87144397995537659e+11 -Plasma_upper_hybrid_frequency_at_point_261_______________________________ (freq_plasma_upper_hybrid_profile261)_ 1.87047966033353882e+11 -Plasma_upper_hybrid_frequency_at_point_262_______________________________ (freq_plasma_upper_hybrid_profile262)_ 1.86951677802756714e+11 -Plasma_upper_hybrid_frequency_at_point_263_______________________________ (freq_plasma_upper_hybrid_profile263)_ 1.86855532651902893e+11 -Plasma_upper_hybrid_frequency_at_point_264_______________________________ (freq_plasma_upper_hybrid_profile264)_ 1.86759529930732300e+11 -Plasma_upper_hybrid_frequency_at_point_265_______________________________ (freq_plasma_upper_hybrid_profile265)_ 1.86663668990960785e+11 -Plasma_upper_hybrid_frequency_at_point_266_______________________________ (freq_plasma_upper_hybrid_profile266)_ 1.86567949186073639e+11 -Plasma_upper_hybrid_frequency_at_point_267_______________________________ (freq_plasma_upper_hybrid_profile267)_ 1.86472369871318909e+11 -Plasma_upper_hybrid_frequency_at_point_268_______________________________ (freq_plasma_upper_hybrid_profile268)_ 1.86376930403700378e+11 -Plasma_upper_hybrid_frequency_at_point_269_______________________________ (freq_plasma_upper_hybrid_profile269)_ 1.86281630141970917e+11 -Plasma_upper_hybrid_frequency_at_point_270_______________________________ (freq_plasma_upper_hybrid_profile270)_ 1.86186468446626160e+11 -Plasma_upper_hybrid_frequency_at_point_271_______________________________ (freq_plasma_upper_hybrid_profile271)_ 1.86091444679897339e+11 -Plasma_upper_hybrid_frequency_at_point_272_______________________________ (freq_plasma_upper_hybrid_profile272)_ 1.85996558205744843e+11 -Plasma_upper_hybrid_frequency_at_point_273_______________________________ (freq_plasma_upper_hybrid_profile273)_ 1.85901808389851959e+11 -Plasma_upper_hybrid_frequency_at_point_274_______________________________ (freq_plasma_upper_hybrid_profile274)_ 1.85807194599617706e+11 -Plasma_upper_hybrid_frequency_at_point_275_______________________________ (freq_plasma_upper_hybrid_profile275)_ 1.85712716204150665e+11 -Plasma_upper_hybrid_frequency_at_point_276_______________________________ (freq_plasma_upper_hybrid_profile276)_ 1.85618372574262329e+11 -Plasma_upper_hybrid_frequency_at_point_277_______________________________ (freq_plasma_upper_hybrid_profile277)_ 1.85524163082460632e+11 -Plasma_upper_hybrid_frequency_at_point_278_______________________________ (freq_plasma_upper_hybrid_profile278)_ 1.85430087102943481e+11 -Plasma_upper_hybrid_frequency_at_point_279_______________________________ (freq_plasma_upper_hybrid_profile279)_ 1.85336144011592194e+11 -Plasma_upper_hybrid_frequency_at_point_280_______________________________ (freq_plasma_upper_hybrid_profile280)_ 1.85242333185965118e+11 -Plasma_upper_hybrid_frequency_at_point_281_______________________________ (freq_plasma_upper_hybrid_profile281)_ 1.85148654005291504e+11 -Plasma_upper_hybrid_frequency_at_point_282_______________________________ (freq_plasma_upper_hybrid_profile282)_ 1.85055105850464417e+11 -Plasma_upper_hybrid_frequency_at_point_283_______________________________ (freq_plasma_upper_hybrid_profile283)_ 1.84961688104035339e+11 -Plasma_upper_hybrid_frequency_at_point_284_______________________________ (freq_plasma_upper_hybrid_profile284)_ 1.84868400150206940e+11 -Plasma_upper_hybrid_frequency_at_point_285_______________________________ (freq_plasma_upper_hybrid_profile285)_ 1.84775241374827332e+11 -Plasma_upper_hybrid_frequency_at_point_286_______________________________ (freq_plasma_upper_hybrid_profile286)_ 1.84682211165383545e+11 -Plasma_upper_hybrid_frequency_at_point_287_______________________________ (freq_plasma_upper_hybrid_profile287)_ 1.84589308910995361e+11 -Plasma_upper_hybrid_frequency_at_point_288_______________________________ (freq_plasma_upper_hybrid_profile288)_ 1.84496534002408966e+11 -Plasma_upper_hybrid_frequency_at_point_289_______________________________ (freq_plasma_upper_hybrid_profile289)_ 1.84403885831990845e+11 -Plasma_upper_hybrid_frequency_at_point_290_______________________________ (freq_plasma_upper_hybrid_profile290)_ 1.84311363793721558e+11 -Plasma_upper_hybrid_frequency_at_point_291_______________________________ (freq_plasma_upper_hybrid_profile291)_ 1.84218967283189514e+11 -Plasma_upper_hybrid_frequency_at_point_292_______________________________ (freq_plasma_upper_hybrid_profile292)_ 1.84126695697584869e+11 -Plasma_upper_hybrid_frequency_at_point_293_______________________________ (freq_plasma_upper_hybrid_profile293)_ 1.84034548435693359e+11 -Plasma_upper_hybrid_frequency_at_point_294_______________________________ (freq_plasma_upper_hybrid_profile294)_ 1.83942524897890381e+11 -Plasma_upper_hybrid_frequency_at_point_295_______________________________ (freq_plasma_upper_hybrid_profile295)_ 1.83850624486134583e+11 -Plasma_upper_hybrid_frequency_at_point_296_______________________________ (freq_plasma_upper_hybrid_profile296)_ 1.83758846603962006e+11 -Plasma_upper_hybrid_frequency_at_point_297_______________________________ (freq_plasma_upper_hybrid_profile297)_ 1.83667190656480194e+11 -Plasma_upper_hybrid_frequency_at_point_298_______________________________ (freq_plasma_upper_hybrid_profile298)_ 1.83575656050361847e+11 -Plasma_upper_hybrid_frequency_at_point_299_______________________________ (freq_plasma_upper_hybrid_profile299)_ 1.83484242193839020e+11 -Plasma_upper_hybrid_frequency_at_point_300_______________________________ (freq_plasma_upper_hybrid_profile300)_ 1.83392948496697205e+11 -Plasma_upper_hybrid_frequency_at_point_301_______________________________ (freq_plasma_upper_hybrid_profile301)_ 1.83301774370269226e+11 -Plasma_upper_hybrid_frequency_at_point_302_______________________________ (freq_plasma_upper_hybrid_profile302)_ 1.83210719227429413e+11 -Plasma_upper_hybrid_frequency_at_point_303_______________________________ (freq_plasma_upper_hybrid_profile303)_ 1.83119782482587738e+11 -Plasma_upper_hybrid_frequency_at_point_304_______________________________ (freq_plasma_upper_hybrid_profile304)_ 1.83028963551683868e+11 -Plasma_upper_hybrid_frequency_at_point_305_______________________________ (freq_plasma_upper_hybrid_profile305)_ 1.82938261852181213e+11 -Plasma_upper_hybrid_frequency_at_point_306_______________________________ (freq_plasma_upper_hybrid_profile306)_ 1.82847676803061188e+11 -Plasma_upper_hybrid_frequency_at_point_307_______________________________ (freq_plasma_upper_hybrid_profile307)_ 1.82757207824817535e+11 -Plasma_upper_hybrid_frequency_at_point_308_______________________________ (freq_plasma_upper_hybrid_profile308)_ 1.82666854339450226e+11 -Plasma_upper_hybrid_frequency_at_point_309_______________________________ (freq_plasma_upper_hybrid_profile309)_ 1.82576615770459900e+11 -Plasma_upper_hybrid_frequency_at_point_310_______________________________ (freq_plasma_upper_hybrid_profile310)_ 1.82486491542842010e+11 -Plasma_upper_hybrid_frequency_at_point_311_______________________________ (freq_plasma_upper_hybrid_profile311)_ 1.82396481083081085e+11 -Plasma_upper_hybrid_frequency_at_point_312_______________________________ (freq_plasma_upper_hybrid_profile312)_ 1.82306583819145081e+11 -Plasma_upper_hybrid_frequency_at_point_313_______________________________ (freq_plasma_upper_hybrid_profile313)_ 1.82216799180479645e+11 -Plasma_upper_hybrid_frequency_at_point_314_______________________________ (freq_plasma_upper_hybrid_profile314)_ 1.82127126598002441e+11 -Plasma_upper_hybrid_frequency_at_point_315_______________________________ (freq_plasma_upper_hybrid_profile315)_ 1.82037565504097473e+11 -Plasma_upper_hybrid_frequency_at_point_316_______________________________ (freq_plasma_upper_hybrid_profile316)_ 1.81948115332609467e+11 -Plasma_upper_hybrid_frequency_at_point_317_______________________________ (freq_plasma_upper_hybrid_profile317)_ 1.81858775518838318e+11 -Plasma_upper_hybrid_frequency_at_point_318_______________________________ (freq_plasma_upper_hybrid_profile318)_ 1.81769545499533295e+11 -Plasma_upper_hybrid_frequency_at_point_319_______________________________ (freq_plasma_upper_hybrid_profile319)_ 1.81680424712887787e+11 -Plasma_upper_hybrid_frequency_at_point_320_______________________________ (freq_plasma_upper_hybrid_profile320)_ 1.81591412598533325e+11 -Plasma_upper_hybrid_frequency_at_point_321_______________________________ (freq_plasma_upper_hybrid_profile321)_ 1.81502508597534485e+11 -Plasma_upper_hybrid_frequency_at_point_322_______________________________ (freq_plasma_upper_hybrid_profile322)_ 1.81413712152383087e+11 -Plasma_upper_hybrid_frequency_at_point_323_______________________________ (freq_plasma_upper_hybrid_profile323)_ 1.81325022706992798e+11 -Plasma_upper_hybrid_frequency_at_point_324_______________________________ (freq_plasma_upper_hybrid_profile324)_ 1.81236439706693573e+11 -Plasma_upper_hybrid_frequency_at_point_325_______________________________ (freq_plasma_upper_hybrid_profile325)_ 1.81147962598226257e+11 -Plasma_upper_hybrid_frequency_at_point_326_______________________________ (freq_plasma_upper_hybrid_profile326)_ 1.81059590829737213e+11 -Plasma_upper_hybrid_frequency_at_point_327_______________________________ (freq_plasma_upper_hybrid_profile327)_ 1.80971323850772705e+11 -Plasma_upper_hybrid_frequency_at_point_328_______________________________ (freq_plasma_upper_hybrid_profile328)_ 1.80883161112273682e+11 -Plasma_upper_hybrid_frequency_at_point_329_______________________________ (freq_plasma_upper_hybrid_profile329)_ 1.80795102066570312e+11 -Plasma_upper_hybrid_frequency_at_point_330_______________________________ (freq_plasma_upper_hybrid_profile330)_ 1.80707146167376648e+11 -Plasma_upper_hybrid_frequency_at_point_331_______________________________ (freq_plasma_upper_hybrid_profile331)_ 1.80619292869785065e+11 -Plasma_upper_hybrid_frequency_at_point_332_______________________________ (freq_plasma_upper_hybrid_profile332)_ 1.80531541630261383e+11 -Plasma_upper_hybrid_frequency_at_point_333_______________________________ (freq_plasma_upper_hybrid_profile333)_ 1.80443891906639160e+11 -Plasma_upper_hybrid_frequency_at_point_334_______________________________ (freq_plasma_upper_hybrid_profile334)_ 1.80356343158114471e+11 -Plasma_upper_hybrid_frequency_at_point_335_______________________________ (freq_plasma_upper_hybrid_profile335)_ 1.80268894845240784e+11 -Plasma_upper_hybrid_frequency_at_point_336_______________________________ (freq_plasma_upper_hybrid_profile336)_ 1.80181546429923523e+11 -Plasma_upper_hybrid_frequency_at_point_337_______________________________ (freq_plasma_upper_hybrid_profile337)_ 1.80094297375414978e+11 -Plasma_upper_hybrid_frequency_at_point_338_______________________________ (freq_plasma_upper_hybrid_profile338)_ 1.80007147146308960e+11 -Plasma_upper_hybrid_frequency_at_point_339_______________________________ (freq_plasma_upper_hybrid_profile339)_ 1.79920095208535645e+11 -Plasma_upper_hybrid_frequency_at_point_340_______________________________ (freq_plasma_upper_hybrid_profile340)_ 1.79833141029356415e+11 -Plasma_upper_hybrid_frequency_at_point_341_______________________________ (freq_plasma_upper_hybrid_profile341)_ 1.79746284077358673e+11 -Plasma_upper_hybrid_frequency_at_point_342_______________________________ (freq_plasma_upper_hybrid_profile342)_ 1.79659523822450592e+11 -Plasma_upper_hybrid_frequency_at_point_343_______________________________ (freq_plasma_upper_hybrid_profile343)_ 1.79572859735856140e+11 -Plasma_upper_hybrid_frequency_at_point_344_______________________________ (freq_plasma_upper_hybrid_profile344)_ 1.79486291290109924e+11 -Plasma_upper_hybrid_frequency_at_point_345_______________________________ (freq_plasma_upper_hybrid_profile345)_ 1.79399817959051819e+11 -Plasma_upper_hybrid_frequency_at_point_346_______________________________ (freq_plasma_upper_hybrid_profile346)_ 1.79313439217822418e+11 -Plasma_upper_hybrid_frequency_at_point_347_______________________________ (freq_plasma_upper_hybrid_profile347)_ 1.79227154542857544e+11 -Plasma_upper_hybrid_frequency_at_point_348_______________________________ (freq_plasma_upper_hybrid_profile348)_ 1.79140963411883087e+11 -Plasma_upper_hybrid_frequency_at_point_349_______________________________ (freq_plasma_upper_hybrid_profile349)_ 1.79054865303910614e+11 -Plasma_upper_hybrid_frequency_at_point_350_______________________________ (freq_plasma_upper_hybrid_profile350)_ 1.78968859699231506e+11 -Plasma_upper_hybrid_frequency_at_point_351_______________________________ (freq_plasma_upper_hybrid_profile351)_ 1.78882946079412689e+11 -Plasma_upper_hybrid_frequency_at_point_352_______________________________ (freq_plasma_upper_hybrid_profile352)_ 1.78797123927291168e+11 -Plasma_upper_hybrid_frequency_at_point_353_______________________________ (freq_plasma_upper_hybrid_profile353)_ 1.78711392726969299e+11 -Plasma_upper_hybrid_frequency_at_point_354_______________________________ (freq_plasma_upper_hybrid_profile354)_ 1.78625751963809753e+11 -Plasma_upper_hybrid_frequency_at_point_355_______________________________ (freq_plasma_upper_hybrid_profile355)_ 1.78540201124430573e+11 -Plasma_upper_hybrid_frequency_at_point_356_______________________________ (freq_plasma_upper_hybrid_profile356)_ 1.78454739696700348e+11 -Plasma_upper_hybrid_frequency_at_point_357_______________________________ (freq_plasma_upper_hybrid_profile357)_ 1.78369367169733063e+11 -Plasma_upper_hybrid_frequency_at_point_358_______________________________ (freq_plasma_upper_hybrid_profile358)_ 1.78284083033883514e+11 -Plasma_upper_hybrid_frequency_at_point_359_______________________________ (freq_plasma_upper_hybrid_profile359)_ 1.78198886780742340e+11 -Plasma_upper_hybrid_frequency_at_point_360_______________________________ (freq_plasma_upper_hybrid_profile360)_ 1.78113777903130951e+11 -Plasma_upper_hybrid_frequency_at_point_361_______________________________ (freq_plasma_upper_hybrid_profile361)_ 1.78028755895096985e+11 -Plasma_upper_hybrid_frequency_at_point_362_______________________________ (freq_plasma_upper_hybrid_profile362)_ 1.77943820251909363e+11 -Plasma_upper_hybrid_frequency_at_point_363_______________________________ (freq_plasma_upper_hybrid_profile363)_ 1.77858970470053375e+11 -Plasma_upper_hybrid_frequency_at_point_364_______________________________ (freq_plasma_upper_hybrid_profile364)_ 1.77774206047226044e+11 -Plasma_upper_hybrid_frequency_at_point_365_______________________________ (freq_plasma_upper_hybrid_profile365)_ 1.77689526482331238e+11 -Plasma_upper_hybrid_frequency_at_point_366_______________________________ (freq_plasma_upper_hybrid_profile366)_ 1.77604931275474976e+11 -Plasma_upper_hybrid_frequency_at_point_367_______________________________ (freq_plasma_upper_hybrid_profile367)_ 1.77520419927960693e+11 -Plasma_upper_hybrid_frequency_at_point_368_______________________________ (freq_plasma_upper_hybrid_profile368)_ 1.77435991942284302e+11 -Plasma_upper_hybrid_frequency_at_point_369_______________________________ (freq_plasma_upper_hybrid_profile369)_ 1.77351646822129791e+11 -Plasma_upper_hybrid_frequency_at_point_370_______________________________ (freq_plasma_upper_hybrid_profile370)_ 1.77267384072364197e+11 -Plasma_upper_hybrid_frequency_at_point_371_______________________________ (freq_plasma_upper_hybrid_profile371)_ 1.77183203199033234e+11 -Plasma_upper_hybrid_frequency_at_point_372_______________________________ (freq_plasma_upper_hybrid_profile372)_ 1.77099103709356323e+11 -Plasma_upper_hybrid_frequency_at_point_373_______________________________ (freq_plasma_upper_hybrid_profile373)_ 1.77015085111722107e+11 -Plasma_upper_hybrid_frequency_at_point_374_______________________________ (freq_plasma_upper_hybrid_profile374)_ 1.76931146915683777e+11 -Plasma_upper_hybrid_frequency_at_point_375_______________________________ (freq_plasma_upper_hybrid_profile375)_ 1.76847288631954346e+11 -Plasma_upper_hybrid_frequency_at_point_376_______________________________ (freq_plasma_upper_hybrid_profile376)_ 1.76763509772402191e+11 -Plasma_upper_hybrid_frequency_at_point_377_______________________________ (freq_plasma_upper_hybrid_profile377)_ 1.76679809850046234e+11 -Plasma_upper_hybrid_frequency_at_point_378_______________________________ (freq_plasma_upper_hybrid_profile378)_ 1.76596188379051636e+11 -Plasma_upper_hybrid_frequency_at_point_379_______________________________ (freq_plasma_upper_hybrid_profile379)_ 1.76512644874724884e+11 -Plasma_upper_hybrid_frequency_at_point_380_______________________________ (freq_plasma_upper_hybrid_profile380)_ 1.76429178853509491e+11 -Plasma_upper_hybrid_frequency_at_point_381_______________________________ (freq_plasma_upper_hybrid_profile381)_ 1.76345789832981354e+11 -Plasma_upper_hybrid_frequency_at_point_382_______________________________ (freq_plasma_upper_hybrid_profile382)_ 1.76262477331844269e+11 -Plasma_upper_hybrid_frequency_at_point_383_______________________________ (freq_plasma_upper_hybrid_profile383)_ 1.76179240869925232e+11 -Plasma_upper_hybrid_frequency_at_point_384_______________________________ (freq_plasma_upper_hybrid_profile384)_ 1.76096079968170166e+11 -Plasma_upper_hybrid_frequency_at_point_385_______________________________ (freq_plasma_upper_hybrid_profile385)_ 1.76012994148639221e+11 -Plasma_upper_hybrid_frequency_at_point_386_______________________________ (freq_plasma_upper_hybrid_profile386)_ 1.75929982934502563e+11 -Plasma_upper_hybrid_frequency_at_point_387_______________________________ (freq_plasma_upper_hybrid_profile387)_ 1.75847045850035645e+11 -Plasma_upper_hybrid_frequency_at_point_388_______________________________ (freq_plasma_upper_hybrid_profile388)_ 1.75764182420614746e+11 -Plasma_upper_hybrid_frequency_at_point_389_______________________________ (freq_plasma_upper_hybrid_profile389)_ 1.75681392172712769e+11 -Plasma_upper_hybrid_frequency_at_point_390_______________________________ (freq_plasma_upper_hybrid_profile390)_ 1.75598674633894623e+11 -Plasma_upper_hybrid_frequency_at_point_391_______________________________ (freq_plasma_upper_hybrid_profile391)_ 1.75516029332812836e+11 -Plasma_upper_hybrid_frequency_at_point_392_______________________________ (freq_plasma_upper_hybrid_profile392)_ 1.75433455799203247e+11 -Plasma_upper_hybrid_frequency_at_point_393_______________________________ (freq_plasma_upper_hybrid_profile393)_ 1.75350953563880493e+11 -Plasma_upper_hybrid_frequency_at_point_394_______________________________ (freq_plasma_upper_hybrid_profile394)_ 1.75268522158733673e+11 -Plasma_upper_hybrid_frequency_at_point_395_______________________________ (freq_plasma_upper_hybrid_profile395)_ 1.75186161116722076e+11 -Plasma_upper_hybrid_frequency_at_point_396_______________________________ (freq_plasma_upper_hybrid_profile396)_ 1.75103869971870697e+11 -Plasma_upper_hybrid_frequency_at_point_397_______________________________ (freq_plasma_upper_hybrid_profile397)_ 1.75021648259265930e+11 -Plasma_upper_hybrid_frequency_at_point_398_______________________________ (freq_plasma_upper_hybrid_profile398)_ 1.74939495515051361e+11 -Plasma_upper_hybrid_frequency_at_point_399_______________________________ (freq_plasma_upper_hybrid_profile399)_ 1.74857411276423279e+11 -Plasma_upper_hybrid_frequency_at_point_400_______________________________ (freq_plasma_upper_hybrid_profile400)_ 1.74775395081626587e+11 -Plasma_upper_hybrid_frequency_at_point_401_______________________________ (freq_plasma_upper_hybrid_profile401)_ 1.74693446469950226e+11 -Plasma_upper_hybrid_frequency_at_point_402_______________________________ (freq_plasma_upper_hybrid_profile402)_ 1.74611564981723175e+11 -Plasma_upper_hybrid_frequency_at_point_403_______________________________ (freq_plasma_upper_hybrid_profile403)_ 1.74529750158310059e+11 -Plasma_upper_hybrid_frequency_at_point_404_______________________________ (freq_plasma_upper_hybrid_profile404)_ 1.74448001542106903e+11 -Plasma_upper_hybrid_frequency_at_point_405_______________________________ (freq_plasma_upper_hybrid_profile405)_ 1.74366318676536957e+11 -Plasma_upper_hybrid_frequency_at_point_406_______________________________ (freq_plasma_upper_hybrid_profile406)_ 1.74284701106046387e+11 -Plasma_upper_hybrid_frequency_at_point_407_______________________________ (freq_plasma_upper_hybrid_profile407)_ 1.74203148376100037e+11 -Plasma_upper_hybrid_frequency_at_point_408_______________________________ (freq_plasma_upper_hybrid_profile408)_ 1.74121660033177399e+11 -Plasma_upper_hybrid_frequency_at_point_409_______________________________ (freq_plasma_upper_hybrid_profile409)_ 1.74040235624768280e+11 -Plasma_upper_hybrid_frequency_at_point_410_______________________________ (freq_plasma_upper_hybrid_profile410)_ 1.73958874699368561e+11 -Plasma_upper_hybrid_frequency_at_point_411_______________________________ (freq_plasma_upper_hybrid_profile411)_ 1.73877576806476257e+11 -Plasma_upper_hybrid_frequency_at_point_412_______________________________ (freq_plasma_upper_hybrid_profile412)_ 1.73796341496587097e+11 -Plasma_upper_hybrid_frequency_at_point_413_______________________________ (freq_plasma_upper_hybrid_profile413)_ 1.73715168321190582e+11 -Plasma_upper_hybrid_frequency_at_point_414_______________________________ (freq_plasma_upper_hybrid_profile414)_ 1.73634056832765778e+11 -Plasma_upper_hybrid_frequency_at_point_415_______________________________ (freq_plasma_upper_hybrid_profile415)_ 1.73553006584777130e+11 -Plasma_upper_hybrid_frequency_at_point_416_______________________________ (freq_plasma_upper_hybrid_profile416)_ 1.73472017131670593e+11 -Plasma_upper_hybrid_frequency_at_point_417_______________________________ (freq_plasma_upper_hybrid_profile417)_ 1.73391088028869049e+11 -Plasma_upper_hybrid_frequency_at_point_418_______________________________ (freq_plasma_upper_hybrid_profile418)_ 1.73310218832768860e+11 -Plasma_upper_hybrid_frequency_at_point_419_______________________________ (freq_plasma_upper_hybrid_profile419)_ 1.73229409100735260e+11 -Plasma_upper_hybrid_frequency_at_point_420_______________________________ (freq_plasma_upper_hybrid_profile420)_ 1.73148658391098511e+11 -Plasma_upper_hybrid_frequency_at_point_421_______________________________ (freq_plasma_upper_hybrid_profile421)_ 1.73067966263149872e+11 -Plasma_upper_hybrid_frequency_at_point_422_______________________________ (freq_plasma_upper_hybrid_profile422)_ 1.72987332277137512e+11 -Plasma_upper_hybrid_frequency_at_point_423_______________________________ (freq_plasma_upper_hybrid_profile423)_ 1.72906755994262451e+11 -Plasma_upper_hybrid_frequency_at_point_424_______________________________ (freq_plasma_upper_hybrid_profile424)_ 1.72826236976674561e+11 -Plasma_upper_hybrid_frequency_at_point_425_______________________________ (freq_plasma_upper_hybrid_profile425)_ 1.72745774787468567e+11 -Plasma_upper_hybrid_frequency_at_point_426_______________________________ (freq_plasma_upper_hybrid_profile426)_ 1.72665368990680084e+11 -Plasma_upper_hybrid_frequency_at_point_427_______________________________ (freq_plasma_upper_hybrid_profile427)_ 1.72585019151281464e+11 -Plasma_upper_hybrid_frequency_at_point_428_______________________________ (freq_plasma_upper_hybrid_profile428)_ 1.72504724835178070e+11 -Plasma_upper_hybrid_frequency_at_point_429_______________________________ (freq_plasma_upper_hybrid_profile429)_ 1.72424485609204041e+11 -Plasma_upper_hybrid_frequency_at_point_430_______________________________ (freq_plasma_upper_hybrid_profile430)_ 1.72344301041118622e+11 -Plasma_upper_hybrid_frequency_at_point_431_______________________________ (freq_plasma_upper_hybrid_profile431)_ 1.72264170699601929e+11 -Plasma_upper_hybrid_frequency_at_point_432_______________________________ (freq_plasma_upper_hybrid_profile432)_ 1.72184094154251160e+11 -Plasma_upper_hybrid_frequency_at_point_433_______________________________ (freq_plasma_upper_hybrid_profile433)_ 1.72104070975576691e+11 -Plasma_upper_hybrid_frequency_at_point_434_______________________________ (freq_plasma_upper_hybrid_profile434)_ 1.72024100734998108e+11 -Plasma_upper_hybrid_frequency_at_point_435_______________________________ (freq_plasma_upper_hybrid_profile435)_ 1.71944183004840302e+11 -Plasma_upper_hybrid_frequency_at_point_436_______________________________ (freq_plasma_upper_hybrid_profile436)_ 1.71864317358329559e+11 -Plasma_upper_hybrid_frequency_at_point_437_______________________________ (freq_plasma_upper_hybrid_profile437)_ 1.71784503369589691e+11 -Plasma_upper_hybrid_frequency_at_point_438_______________________________ (freq_plasma_upper_hybrid_profile438)_ 1.71704740613638245e+11 -Plasma_upper_hybrid_frequency_at_point_439_______________________________ (freq_plasma_upper_hybrid_profile439)_ 1.71625028666382416e+11 -Plasma_upper_hybrid_frequency_at_point_440_______________________________ (freq_plasma_upper_hybrid_profile440)_ 1.71545367104615448e+11 -Plasma_upper_hybrid_frequency_at_point_441_______________________________ (freq_plasma_upper_hybrid_profile441)_ 1.71465755506012634e+11 -Plasma_upper_hybrid_frequency_at_point_442_______________________________ (freq_plasma_upper_hybrid_profile442)_ 1.71386193449127411e+11 -Plasma_upper_hybrid_frequency_at_point_443_______________________________ (freq_plasma_upper_hybrid_profile443)_ 1.71306680513387787e+11 -Plasma_upper_hybrid_frequency_at_point_444_______________________________ (freq_plasma_upper_hybrid_profile444)_ 1.71227216279092224e+11 -Plasma_upper_hybrid_frequency_at_point_445_______________________________ (freq_plasma_upper_hybrid_profile445)_ 1.71147800327406006e+11 -Plasma_upper_hybrid_frequency_at_point_446_______________________________ (freq_plasma_upper_hybrid_profile446)_ 1.71068432240357513e+11 -Plasma_upper_hybrid_frequency_at_point_447_______________________________ (freq_plasma_upper_hybrid_profile447)_ 1.70989111600834137e+11 -Plasma_upper_hybrid_frequency_at_point_448_______________________________ (freq_plasma_upper_hybrid_profile448)_ 1.70909837992578796e+11 -Plasma_upper_hybrid_frequency_at_point_449_______________________________ (freq_plasma_upper_hybrid_profile449)_ 1.70830611000186066e+11 -Plasma_upper_hybrid_frequency_at_point_450_______________________________ (freq_plasma_upper_hybrid_profile450)_ 1.70751430209098297e+11 -Plasma_upper_hybrid_frequency_at_point_451_______________________________ (freq_plasma_upper_hybrid_profile451)_ 1.70672295205602081e+11 -Plasma_upper_hybrid_frequency_at_point_452_______________________________ (freq_plasma_upper_hybrid_profile452)_ 1.70593205576824249e+11 -Plasma_upper_hybrid_frequency_at_point_453_______________________________ (freq_plasma_upper_hybrid_profile453)_ 1.70514160910728424e+11 -Plasma_upper_hybrid_frequency_at_point_454_______________________________ (freq_plasma_upper_hybrid_profile454)_ 1.70435160796111084e+11 -Plasma_upper_hybrid_frequency_at_point_455_______________________________ (freq_plasma_upper_hybrid_profile455)_ 1.70356204822597870e+11 -Plasma_upper_hybrid_frequency_at_point_456_______________________________ (freq_plasma_upper_hybrid_profile456)_ 1.70277292580639954e+11 -Plasma_upper_hybrid_frequency_at_point_457_______________________________ (freq_plasma_upper_hybrid_profile457)_ 1.70198423661510223e+11 -Plasma_upper_hybrid_frequency_at_point_458_______________________________ (freq_plasma_upper_hybrid_profile458)_ 1.70119597657299835e+11 -Plasma_upper_hybrid_frequency_at_point_459_______________________________ (freq_plasma_upper_hybrid_profile459)_ 1.70040814160914154e+11 -Plasma_upper_hybrid_frequency_at_point_460_______________________________ (freq_plasma_upper_hybrid_profile460)_ 1.69962072766069397e+11 -Plasma_upper_hybrid_frequency_at_point_461_______________________________ (freq_plasma_upper_hybrid_profile461)_ 1.69883373067288940e+11 -Plasma_upper_hybrid_frequency_at_point_462_______________________________ (freq_plasma_upper_hybrid_profile462)_ 1.69804714659899353e+11 -Plasma_upper_hybrid_frequency_at_point_463_______________________________ (freq_plasma_upper_hybrid_profile463)_ 1.69726097140027039e+11 -Plasma_upper_hybrid_frequency_at_point_464_______________________________ (freq_plasma_upper_hybrid_profile464)_ 1.69647520104594757e+11 -Plasma_upper_hybrid_frequency_at_point_465_______________________________ (freq_plasma_upper_hybrid_profile465)_ 1.69568983151317474e+11 -Plasma_upper_hybrid_frequency_at_point_466_______________________________ (freq_plasma_upper_hybrid_profile466)_ 1.69490485878699188e+11 -Plasma_upper_hybrid_frequency_at_point_467_______________________________ (freq_plasma_upper_hybrid_profile467)_ 1.69412027886029053e+11 -Plasma_upper_hybrid_frequency_at_point_468_______________________________ (freq_plasma_upper_hybrid_profile468)_ 1.69333608773377930e+11 -Plasma_upper_hybrid_frequency_at_point_469_______________________________ (freq_plasma_upper_hybrid_profile469)_ 1.69255228141594757e+11 -Plasma_upper_hybrid_frequency_at_point_470_______________________________ (freq_plasma_upper_hybrid_profile470)_ 1.69176885592302826e+11 -Plasma_upper_hybrid_frequency_at_point_471_______________________________ (freq_plasma_upper_hybrid_profile471)_ 1.69098580727896454e+11 -Plasma_upper_hybrid_frequency_at_point_472_______________________________ (freq_plasma_upper_hybrid_profile472)_ 1.69020313151537109e+11 -Plasma_upper_hybrid_frequency_at_point_473_______________________________ (freq_plasma_upper_hybrid_profile473)_ 1.68942082467150024e+11 -Plasma_upper_hybrid_frequency_at_point_474_______________________________ (freq_plasma_upper_hybrid_profile474)_ 1.68863888279420685e+11 -Plasma_upper_hybrid_frequency_at_point_475_______________________________ (freq_plasma_upper_hybrid_profile475)_ 1.68785730193791077e+11 -Plasma_upper_hybrid_frequency_at_point_476_______________________________ (freq_plasma_upper_hybrid_profile476)_ 1.68707607816456268e+11 -Plasma_upper_hybrid_frequency_at_point_477_______________________________ (freq_plasma_upper_hybrid_profile477)_ 1.68629520754360992e+11 -Plasma_upper_hybrid_frequency_at_point_478_______________________________ (freq_plasma_upper_hybrid_profile478)_ 1.68551468615195831e+11 -Plasma_upper_hybrid_frequency_at_point_479_______________________________ (freq_plasma_upper_hybrid_profile479)_ 1.68473451007393921e+11 -Plasma_upper_hybrid_frequency_at_point_480_______________________________ (freq_plasma_upper_hybrid_profile480)_ 1.68395467540127441e+11 -Plasma_upper_hybrid_frequency_at_point_481_______________________________ (freq_plasma_upper_hybrid_profile481)_ 1.68317517823303833e+11 -Plasma_upper_hybrid_frequency_at_point_482_______________________________ (freq_plasma_upper_hybrid_profile482)_ 1.68239601467562622e+11 -Plasma_upper_hybrid_frequency_at_point_483_______________________________ (freq_plasma_upper_hybrid_profile483)_ 1.68161718084271851e+11 -Plasma_upper_hybrid_frequency_at_point_484_______________________________ (freq_plasma_upper_hybrid_profile484)_ 1.68083867285524475e+11 -Plasma_upper_hybrid_frequency_at_point_485_______________________________ (freq_plasma_upper_hybrid_profile485)_ 1.68006048684134979e+11 -Plasma_upper_hybrid_frequency_at_point_486_______________________________ (freq_plasma_upper_hybrid_profile486)_ 1.67928261893635834e+11 -Plasma_upper_hybrid_frequency_at_point_487_______________________________ (freq_plasma_upper_hybrid_profile487)_ 1.67850506528274170e+11 -Plasma_upper_hybrid_frequency_at_point_488_______________________________ (freq_plasma_upper_hybrid_profile488)_ 1.67772782203008118e+11 -Plasma_upper_hybrid_frequency_at_point_489_______________________________ (freq_plasma_upper_hybrid_profile489)_ 1.67695088533503571e+11 -Plasma_upper_hybrid_frequency_at_point_490_______________________________ (freq_plasma_upper_hybrid_profile490)_ 1.67617425136130646e+11 -Plasma_upper_hybrid_frequency_at_point_491_______________________________ (freq_plasma_upper_hybrid_profile491)_ 1.67539791627960114e+11 -Plasma_upper_hybrid_frequency_at_point_492_______________________________ (freq_plasma_upper_hybrid_profile492)_ 1.67462187626760223e+11 -Plasma_upper_hybrid_frequency_at_point_493_______________________________ (freq_plasma_upper_hybrid_profile493)_ 1.67384612750993134e+11 -Plasma_upper_hybrid_frequency_at_point_494_______________________________ (freq_plasma_upper_hybrid_profile494)_ 1.67307066619811584e+11 -Plasma_upper_hybrid_frequency_at_point_495_______________________________ (freq_plasma_upper_hybrid_profile495)_ 1.67229548853055206e+11 -Plasma_upper_hybrid_frequency_at_point_496_______________________________ (freq_plasma_upper_hybrid_profile496)_ 1.67152059071247559e+11 -Plasma_upper_hybrid_frequency_at_point_497_______________________________ (freq_plasma_upper_hybrid_profile497)_ 1.67074596895592377e+11 -Plasma_upper_hybrid_frequency_at_point_498_______________________________ (freq_plasma_upper_hybrid_profile498)_ 1.66997161947970459e+11 -Plasma_upper_hybrid_frequency_at_point_499_______________________________ (freq_plasma_upper_hybrid_profile499)_ 1.66919753850935913e+11 -Plasma_upper_hybrid_frequency_at_point_500_______________________________ (freq_plasma_upper_hybrid_profile500)_ 1.66842372227713257e+11 -Plasma_upper_hybrid_frequency_at_point_501_______________________________ (freq_plasma_upper_hybrid_profile501)_ 1.66765063053072510e+11 -Plasma_upper_hybrid_frequency_at_point_502_______________________________ (freq_plasma_upper_hybrid_profile502)_ 1.66687826016038940e+11 -Plasma_upper_hybrid_frequency_at_point_503_______________________________ (freq_plasma_upper_hybrid_profile503)_ 1.66610614412502899e+11 -Plasma_upper_hybrid_frequency_at_point_504_______________________________ (freq_plasma_upper_hybrid_profile504)_ 1.66533427868413635e+11 -Plasma_upper_hybrid_frequency_at_point_505_______________________________ (freq_plasma_upper_hybrid_profile505)_ 1.66456266010374969e+11 -Plasma_upper_hybrid_frequency_at_point_506_______________________________ (freq_plasma_upper_hybrid_profile506)_ 1.66379128465641296e+11 -Plasma_upper_hybrid_frequency_at_point_507_______________________________ (freq_plasma_upper_hybrid_profile507)_ 1.66302014862114960e+11 -Plasma_upper_hybrid_frequency_at_point_508_______________________________ (freq_plasma_upper_hybrid_profile508)_ 1.66224924828342316e+11 -Plasma_upper_hybrid_frequency_at_point_509_______________________________ (freq_plasma_upper_hybrid_profile509)_ 1.66147857993510803e+11 -Plasma_upper_hybrid_frequency_at_point_510_______________________________ (freq_plasma_upper_hybrid_profile510)_ 1.66070813987445404e+11 -Plasma_upper_hybrid_frequency_at_point_511_______________________________ (freq_plasma_upper_hybrid_profile511)_ 1.65993792440605621e+11 -Plasma_upper_hybrid_frequency_at_point_512_______________________________ (freq_plasma_upper_hybrid_profile512)_ 1.65916792984081757e+11 -Plasma_upper_hybrid_frequency_at_point_513_______________________________ (freq_plasma_upper_hybrid_profile513)_ 1.65839815249592010e+11 -Plasma_upper_hybrid_frequency_at_point_514_______________________________ (freq_plasma_upper_hybrid_profile514)_ 1.65762858869479034e+11 -Plasma_upper_hybrid_frequency_at_point_515_______________________________ (freq_plasma_upper_hybrid_profile515)_ 1.65685923476706451e+11 -Plasma_upper_hybrid_frequency_at_point_516_______________________________ (freq_plasma_upper_hybrid_profile516)_ 1.65609008704855957e+11 -Plasma_upper_hybrid_frequency_at_point_517_______________________________ (freq_plasma_upper_hybrid_profile517)_ 1.65532114188123779e+11 -Plasma_upper_hybrid_frequency_at_point_518_______________________________ (freq_plasma_upper_hybrid_profile518)_ 1.65455239561317474e+11 -Plasma_upper_hybrid_frequency_at_point_519_______________________________ (freq_plasma_upper_hybrid_profile519)_ 1.65378384459852661e+11 -Plasma_upper_hybrid_frequency_at_point_520_______________________________ (freq_plasma_upper_hybrid_profile520)_ 1.65301548519749786e+11 -Plasma_upper_hybrid_frequency_at_point_521_______________________________ (freq_plasma_upper_hybrid_profile521)_ 1.65224731377630920e+11 -Plasma_upper_hybrid_frequency_at_point_522_______________________________ (freq_plasma_upper_hybrid_profile522)_ 1.65147932670716339e+11 -Plasma_upper_hybrid_frequency_at_point_523_______________________________ (freq_plasma_upper_hybrid_profile523)_ 1.65071152036821442e+11 -Plasma_upper_hybrid_frequency_at_point_524_______________________________ (freq_plasma_upper_hybrid_profile524)_ 1.64994389114353485e+11 -Plasma_upper_hybrid_frequency_at_point_525_______________________________ (freq_plasma_upper_hybrid_profile525)_ 1.64917643542308258e+11 -Plasma_upper_hybrid_frequency_at_point_526_______________________________ (freq_plasma_upper_hybrid_profile526)_ 1.64840914960266998e+11 -Plasma_upper_hybrid_frequency_at_point_527_______________________________ (freq_plasma_upper_hybrid_profile527)_ 1.64764203008393097e+11 -Plasma_upper_hybrid_frequency_at_point_528_______________________________ (freq_plasma_upper_hybrid_profile528)_ 1.64687507327428802e+11 -Plasma_upper_hybrid_frequency_at_point_529_______________________________ (freq_plasma_upper_hybrid_profile529)_ 1.64610827558692139e+11 -Plasma_upper_hybrid_frequency_at_point_530_______________________________ (freq_plasma_upper_hybrid_profile530)_ 1.64534163344073639e+11 -Plasma_upper_hybrid_frequency_at_point_531_______________________________ (freq_plasma_upper_hybrid_profile531)_ 1.64457514326033173e+11 -Plasma_upper_hybrid_frequency_at_point_532_______________________________ (freq_plasma_upper_hybrid_profile532)_ 1.64380880147596649e+11 -Plasma_upper_hybrid_frequency_at_point_533_______________________________ (freq_plasma_upper_hybrid_profile533)_ 1.64304260452353058e+11 -Plasma_upper_hybrid_frequency_at_point_534_______________________________ (freq_plasma_upper_hybrid_profile534)_ 1.64227654884450958e+11 -Plasma_upper_hybrid_frequency_at_point_535_______________________________ (freq_plasma_upper_hybrid_profile535)_ 1.64151063088595428e+11 -Plasma_upper_hybrid_frequency_at_point_536_______________________________ (freq_plasma_upper_hybrid_profile536)_ 1.64074484710045166e+11 -Plasma_upper_hybrid_frequency_at_point_537_______________________________ (freq_plasma_upper_hybrid_profile537)_ 1.63997919394608826e+11 -Plasma_upper_hybrid_frequency_at_point_538_______________________________ (freq_plasma_upper_hybrid_profile538)_ 1.63921366788642181e+11 -Plasma_upper_hybrid_frequency_at_point_539_______________________________ (freq_plasma_upper_hybrid_profile539)_ 1.63844826539044769e+11 -Plasma_upper_hybrid_frequency_at_point_540_______________________________ (freq_plasma_upper_hybrid_profile540)_ 1.63768298293256989e+11 -Plasma_upper_hybrid_frequency_at_point_541_______________________________ (freq_plasma_upper_hybrid_profile541)_ 1.63691781699256653e+11 -Plasma_upper_hybrid_frequency_at_point_542_______________________________ (freq_plasma_upper_hybrid_profile542)_ 1.63615276405556030e+11 -Plasma_upper_hybrid_frequency_at_point_543_______________________________ (freq_plasma_upper_hybrid_profile543)_ 1.63538782061198547e+11 -Plasma_upper_hybrid_frequency_at_point_544_______________________________ (freq_plasma_upper_hybrid_profile544)_ 1.63462298315755768e+11 -Plasma_upper_hybrid_frequency_at_point_545_______________________________ (freq_plasma_upper_hybrid_profile545)_ 1.63385824819324219e+11 -Plasma_upper_hybrid_frequency_at_point_546_______________________________ (freq_plasma_upper_hybrid_profile546)_ 1.63309361222522186e+11 -Plasma_upper_hybrid_frequency_at_point_547_______________________________ (freq_plasma_upper_hybrid_profile547)_ 1.63232907176486694e+11 -Plasma_upper_hybrid_frequency_at_point_548_______________________________ (freq_plasma_upper_hybrid_profile548)_ 1.63156462332870270e+11 -Plasma_upper_hybrid_frequency_at_point_549_______________________________ (freq_plasma_upper_hybrid_profile549)_ 1.63080026343837891e+11 -Plasma_upper_hybrid_frequency_at_point_550_______________________________ (freq_plasma_upper_hybrid_profile550)_ 1.63003598862063812e+11 -Plasma_upper_hybrid_frequency_at_point_551_______________________________ (freq_plasma_upper_hybrid_profile551)_ 1.62927179540728516e+11 -Plasma_upper_hybrid_frequency_at_point_552_______________________________ (freq_plasma_upper_hybrid_profile552)_ 1.62850768033515472e+11 -Plasma_upper_hybrid_frequency_at_point_553_______________________________ (freq_plasma_upper_hybrid_profile553)_ 1.62774363994608276e+11 -Plasma_upper_hybrid_frequency_at_point_554_______________________________ (freq_plasma_upper_hybrid_profile554)_ 1.62697967078687134e+11 -Plasma_upper_hybrid_frequency_at_point_555_______________________________ (freq_plasma_upper_hybrid_profile555)_ 1.62621576940926178e+11 -Plasma_upper_hybrid_frequency_at_point_556_______________________________ (freq_plasma_upper_hybrid_profile556)_ 1.62545193236990204e+11 -Plasma_upper_hybrid_frequency_at_point_557_______________________________ (freq_plasma_upper_hybrid_profile557)_ 1.62468815623031433e+11 -Plasma_upper_hybrid_frequency_at_point_558_______________________________ (freq_plasma_upper_hybrid_profile558)_ 1.62392443755686615e+11 -Plasma_upper_hybrid_frequency_at_point_559_______________________________ (freq_plasma_upper_hybrid_profile559)_ 1.62316077292073883e+11 -Plasma_upper_hybrid_frequency_at_point_560_______________________________ (freq_plasma_upper_hybrid_profile560)_ 1.62239715889789642e+11 -Plasma_upper_hybrid_frequency_at_point_561_______________________________ (freq_plasma_upper_hybrid_profile561)_ 1.62163359206905518e+11 -Plasma_upper_hybrid_frequency_at_point_562_______________________________ (freq_plasma_upper_hybrid_profile562)_ 1.62087006901965179e+11 -Plasma_upper_hybrid_frequency_at_point_563_______________________________ (freq_plasma_upper_hybrid_profile563)_ 1.62010658633981445e+11 -Plasma_upper_hybrid_frequency_at_point_564_______________________________ (freq_plasma_upper_hybrid_profile564)_ 1.61934314062432983e+11 -Plasma_upper_hybrid_frequency_at_point_565_______________________________ (freq_plasma_upper_hybrid_profile565)_ 1.61857972847261475e+11 -Plasma_upper_hybrid_frequency_at_point_566_______________________________ (freq_plasma_upper_hybrid_profile566)_ 1.61781634648868408e+11 -Plasma_upper_hybrid_frequency_at_point_567_______________________________ (freq_plasma_upper_hybrid_profile567)_ 1.61705299128112000e+11 -Plasma_upper_hybrid_frequency_at_point_568_______________________________ (freq_plasma_upper_hybrid_profile568)_ 1.61628965946304138e+11 -Plasma_upper_hybrid_frequency_at_point_569_______________________________ (freq_plasma_upper_hybrid_profile569)_ 1.61552634765207428e+11 -Plasma_upper_hybrid_frequency_at_point_570_______________________________ (freq_plasma_upper_hybrid_profile570)_ 1.61476305247032104e+11 -Plasma_upper_hybrid_frequency_at_point_571_______________________________ (freq_plasma_upper_hybrid_profile571)_ 1.61399977054432800e+11 -Plasma_upper_hybrid_frequency_at_point_572_______________________________ (freq_plasma_upper_hybrid_profile572)_ 1.61323649850505737e+11 -Plasma_upper_hybrid_frequency_at_point_573_______________________________ (freq_plasma_upper_hybrid_profile573)_ 1.61247323298785614e+11 -Plasma_upper_hybrid_frequency_at_point_574_______________________________ (freq_plasma_upper_hybrid_profile574)_ 1.61170997063242310e+11 -Plasma_upper_hybrid_frequency_at_point_575_______________________________ (freq_plasma_upper_hybrid_profile575)_ 1.61094670808278259e+11 -Plasma_upper_hybrid_frequency_at_point_576_______________________________ (freq_plasma_upper_hybrid_profile576)_ 1.61018344198725189e+11 -Plasma_upper_hybrid_frequency_at_point_577_______________________________ (freq_plasma_upper_hybrid_profile577)_ 1.60942016899840942e+11 -Plasma_upper_hybrid_frequency_at_point_578_______________________________ (freq_plasma_upper_hybrid_profile578)_ 1.60865688577306793e+11 -Plasma_upper_hybrid_frequency_at_point_579_______________________________ (freq_plasma_upper_hybrid_profile579)_ 1.60789358897223999e+11 -Plasma_upper_hybrid_frequency_at_point_580_______________________________ (freq_plasma_upper_hybrid_profile580)_ 1.60713027526111176e+11 -Plasma_upper_hybrid_frequency_at_point_581_______________________________ (freq_plasma_upper_hybrid_profile581)_ 1.60636694130901062e+11 -Plasma_upper_hybrid_frequency_at_point_582_______________________________ (freq_plasma_upper_hybrid_profile582)_ 1.60560358378937347e+11 -Plasma_upper_hybrid_frequency_at_point_583_______________________________ (freq_plasma_upper_hybrid_profile583)_ 1.60484019937971893e+11 -Plasma_upper_hybrid_frequency_at_point_584_______________________________ (freq_plasma_upper_hybrid_profile584)_ 1.60407678476161682e+11 -Plasma_upper_hybrid_frequency_at_point_585_______________________________ (freq_plasma_upper_hybrid_profile585)_ 1.60331333662065704e+11 -Plasma_upper_hybrid_frequency_at_point_586_______________________________ (freq_plasma_upper_hybrid_profile586)_ 1.60254985164641968e+11 -Plasma_upper_hybrid_frequency_at_point_587_______________________________ (freq_plasma_upper_hybrid_profile587)_ 1.60178632653244446e+11 -Plasma_upper_hybrid_frequency_at_point_588_______________________________ (freq_plasma_upper_hybrid_profile588)_ 1.60102275797620117e+11 -Plasma_upper_hybrid_frequency_at_point_589_______________________________ (freq_plasma_upper_hybrid_profile589)_ 1.60025914267906036e+11 -Plasma_upper_hybrid_frequency_at_point_590_______________________________ (freq_plasma_upper_hybrid_profile590)_ 1.59949547734626038e+11 -Plasma_upper_hybrid_frequency_at_point_591_______________________________ (freq_plasma_upper_hybrid_profile591)_ 1.59873175868688080e+11 -Plasma_upper_hybrid_frequency_at_point_592_______________________________ (freq_plasma_upper_hybrid_profile592)_ 1.59796798341381042e+11 -Plasma_upper_hybrid_frequency_at_point_593_______________________________ (freq_plasma_upper_hybrid_profile593)_ 1.59720414824371582e+11 -Plasma_upper_hybrid_frequency_at_point_594_______________________________ (freq_plasma_upper_hybrid_profile594)_ 1.59644024989701508e+11 -Plasma_upper_hybrid_frequency_at_point_595_______________________________ (freq_plasma_upper_hybrid_profile595)_ 1.59567628509784485e+11 -Plasma_upper_hybrid_frequency_at_point_596_______________________________ (freq_plasma_upper_hybrid_profile596)_ 1.59491225057402985e+11 -Plasma_upper_hybrid_frequency_at_point_597_______________________________ (freq_plasma_upper_hybrid_profile597)_ 1.59414814305705566e+11 -Plasma_upper_hybrid_frequency_at_point_598_______________________________ (freq_plasma_upper_hybrid_profile598)_ 1.59338395928203674e+11 -Plasma_upper_hybrid_frequency_at_point_599_______________________________ (freq_plasma_upper_hybrid_profile599)_ 1.59261969598768585e+11 -Plasma_upper_hybrid_frequency_at_point_600_______________________________ (freq_plasma_upper_hybrid_profile600)_ 1.59185534991628601e+11 -Plasma_upper_hybrid_frequency_at_point_601_______________________________ (freq_plasma_upper_hybrid_profile601)_ 1.59109091781365967e+11 -Plasma_upper_hybrid_frequency_at_point_602_______________________________ (freq_plasma_upper_hybrid_profile602)_ 1.59032639642913849e+11 -Plasma_upper_hybrid_frequency_at_point_603_______________________________ (freq_plasma_upper_hybrid_profile603)_ 1.58956178251553284e+11 -Plasma_upper_hybrid_frequency_at_point_604_______________________________ (freq_plasma_upper_hybrid_profile604)_ 1.58879707282910339e+11 -Plasma_upper_hybrid_frequency_at_point_605_______________________________ (freq_plasma_upper_hybrid_profile605)_ 1.58803226412953033e+11 -Plasma_upper_hybrid_frequency_at_point_606_______________________________ (freq_plasma_upper_hybrid_profile606)_ 1.58726735317988312e+11 -Plasma_upper_hybrid_frequency_at_point_607_______________________________ (freq_plasma_upper_hybrid_profile607)_ 1.58650233674659119e+11 -Plasma_upper_hybrid_frequency_at_point_608_______________________________ (freq_plasma_upper_hybrid_profile608)_ 1.58573721159941376e+11 -Plasma_upper_hybrid_frequency_at_point_609_______________________________ (freq_plasma_upper_hybrid_profile609)_ 1.58497197451141052e+11 -Plasma_upper_hybrid_frequency_at_point_610_______________________________ (freq_plasma_upper_hybrid_profile610)_ 1.58420662225890991e+11 -Plasma_upper_hybrid_frequency_at_point_611_______________________________ (freq_plasma_upper_hybrid_profile611)_ 1.58344115162148254e+11 -Plasma_upper_hybrid_frequency_at_point_612_______________________________ (freq_plasma_upper_hybrid_profile612)_ 1.58267555938190765e+11 -Plasma_upper_hybrid_frequency_at_point_613_______________________________ (freq_plasma_upper_hybrid_profile613)_ 1.58190984232614563e+11 -Plasma_upper_hybrid_frequency_at_point_614_______________________________ (freq_plasma_upper_hybrid_profile614)_ 1.58114399724330688e+11 -Plasma_upper_hybrid_frequency_at_point_615_______________________________ (freq_plasma_upper_hybrid_profile615)_ 1.58037802092562378e+11 -Plasma_upper_hybrid_frequency_at_point_616_______________________________ (freq_plasma_upper_hybrid_profile616)_ 1.57961191016841797e+11 -Plasma_upper_hybrid_frequency_at_point_617_______________________________ (freq_plasma_upper_hybrid_profile617)_ 1.57884566177007355e+11 -Plasma_upper_hybrid_frequency_at_point_618_______________________________ (freq_plasma_upper_hybrid_profile618)_ 1.57807927253200470e+11 -Plasma_upper_hybrid_frequency_at_point_619_______________________________ (freq_plasma_upper_hybrid_profile619)_ 1.57731273925862732e+11 -Plasma_upper_hybrid_frequency_at_point_620_______________________________ (freq_plasma_upper_hybrid_profile620)_ 1.57654605875732849e+11 -Plasma_upper_hybrid_frequency_at_point_621_______________________________ (freq_plasma_upper_hybrid_profile621)_ 1.57577922783843750e+11 -Plasma_upper_hybrid_frequency_at_point_622_______________________________ (freq_plasma_upper_hybrid_profile622)_ 1.57501224331519409e+11 -Plasma_upper_hybrid_frequency_at_point_623_______________________________ (freq_plasma_upper_hybrid_profile623)_ 1.57424510200372131e+11 -Plasma_upper_hybrid_frequency_at_point_624_______________________________ (freq_plasma_upper_hybrid_profile624)_ 1.57347780072299347e+11 -Plasma_upper_hybrid_frequency_at_point_625_______________________________ (freq_plasma_upper_hybrid_profile625)_ 1.57271033629480713e+11 -Plasma_upper_hybrid_frequency_at_point_626_______________________________ (freq_plasma_upper_hybrid_profile626)_ 1.57194270554375092e+11 -Plasma_upper_hybrid_frequency_at_point_627_______________________________ (freq_plasma_upper_hybrid_profile627)_ 1.57117490529717590e+11 -Plasma_upper_hybrid_frequency_at_point_628_______________________________ (freq_plasma_upper_hybrid_profile628)_ 1.57040693238516632e+11 -Plasma_upper_hybrid_frequency_at_point_629_______________________________ (freq_plasma_upper_hybrid_profile629)_ 1.56963878364050842e+11 -Plasma_upper_hybrid_frequency_at_point_630_______________________________ (freq_plasma_upper_hybrid_profile630)_ 1.56887045589866119e+11 -Plasma_upper_hybrid_frequency_at_point_631_______________________________ (freq_plasma_upper_hybrid_profile631)_ 1.56810194599772736e+11 -Plasma_upper_hybrid_frequency_at_point_632_______________________________ (freq_plasma_upper_hybrid_profile632)_ 1.56733325077842133e+11 -Plasma_upper_hybrid_frequency_at_point_633_______________________________ (freq_plasma_upper_hybrid_profile633)_ 1.56656436708404144e+11 -Plasma_upper_hybrid_frequency_at_point_634_______________________________ (freq_plasma_upper_hybrid_profile634)_ 1.56579529176043976e+11 -Plasma_upper_hybrid_frequency_at_point_635_______________________________ (freq_plasma_upper_hybrid_profile635)_ 1.56502602165599091e+11 -Plasma_upper_hybrid_frequency_at_point_636_______________________________ (freq_plasma_upper_hybrid_profile636)_ 1.56425655362156219e+11 -Plasma_upper_hybrid_frequency_at_point_637_______________________________ (freq_plasma_upper_hybrid_profile637)_ 1.56348688451048615e+11 -Plasma_upper_hybrid_frequency_at_point_638_______________________________ (freq_plasma_upper_hybrid_profile638)_ 1.56271701117852692e+11 -Plasma_upper_hybrid_frequency_at_point_639_______________________________ (freq_plasma_upper_hybrid_profile639)_ 1.56194693048385345e+11 -Plasma_upper_hybrid_frequency_at_point_640_______________________________ (freq_plasma_upper_hybrid_profile640)_ 1.56117663928700775e+11 -Plasma_upper_hybrid_frequency_at_point_641_______________________________ (freq_plasma_upper_hybrid_profile641)_ 1.56040613445087585e+11 -Plasma_upper_hybrid_frequency_at_point_642_______________________________ (freq_plasma_upper_hybrid_profile642)_ 1.55963541284065674e+11 -Plasma_upper_hybrid_frequency_at_point_643_______________________________ (freq_plasma_upper_hybrid_profile643)_ 1.55886447132383301e+11 -Plasma_upper_hybrid_frequency_at_point_644_______________________________ (freq_plasma_upper_hybrid_profile644)_ 1.55809330677014191e+11 -Plasma_upper_hybrid_frequency_at_point_645_______________________________ (freq_plasma_upper_hybrid_profile645)_ 1.55732191605154327e+11 -Plasma_upper_hybrid_frequency_at_point_646_______________________________ (freq_plasma_upper_hybrid_profile646)_ 1.55655029604218994e+11 -Plasma_upper_hybrid_frequency_at_point_647_______________________________ (freq_plasma_upper_hybrid_profile647)_ 1.55577844361839966e+11 -Plasma_upper_hybrid_frequency_at_point_648_______________________________ (freq_plasma_upper_hybrid_profile648)_ 1.55500635565862274e+11 -Plasma_upper_hybrid_frequency_at_point_649_______________________________ (freq_plasma_upper_hybrid_profile649)_ 1.55423402904341278e+11 -Plasma_upper_hybrid_frequency_at_point_650_______________________________ (freq_plasma_upper_hybrid_profile650)_ 1.55346146065539612e+11 -Plasma_upper_hybrid_frequency_at_point_651_______________________________ (freq_plasma_upper_hybrid_profile651)_ 1.55268864737924347e+11 -Plasma_upper_hybrid_frequency_at_point_652_______________________________ (freq_plasma_upper_hybrid_profile652)_ 1.55191558610163727e+11 -Plasma_upper_hybrid_frequency_at_point_653_______________________________ (freq_plasma_upper_hybrid_profile653)_ 1.55114227371124237e+11 -Plasma_upper_hybrid_frequency_at_point_654_______________________________ (freq_plasma_upper_hybrid_profile654)_ 1.55036870709867767e+11 -Plasma_upper_hybrid_frequency_at_point_655_______________________________ (freq_plasma_upper_hybrid_profile655)_ 1.54959488315648285e+11 -Plasma_upper_hybrid_frequency_at_point_656_______________________________ (freq_plasma_upper_hybrid_profile656)_ 1.54882079877909058e+11 -Plasma_upper_hybrid_frequency_at_point_657_______________________________ (freq_plasma_upper_hybrid_profile657)_ 1.54804645086279541e+11 -Plasma_upper_hybrid_frequency_at_point_658_______________________________ (freq_plasma_upper_hybrid_profile658)_ 1.54727183630572296e+11 -Plasma_upper_hybrid_frequency_at_point_659_______________________________ (freq_plasma_upper_hybrid_profile659)_ 1.54649695200779999e+11 -Plasma_upper_hybrid_frequency_at_point_660_______________________________ (freq_plasma_upper_hybrid_profile660)_ 1.54572179487072510e+11 -Plasma_upper_hybrid_frequency_at_point_661_______________________________ (freq_plasma_upper_hybrid_profile661)_ 1.54494636179793671e+11 -Plasma_upper_hybrid_frequency_at_point_662_______________________________ (freq_plasma_upper_hybrid_profile662)_ 1.54417064969458405e+11 -Plasma_upper_hybrid_frequency_at_point_663_______________________________ (freq_plasma_upper_hybrid_profile663)_ 1.54339465546749512e+11 -Plasma_upper_hybrid_frequency_at_point_664_______________________________ (freq_plasma_upper_hybrid_profile664)_ 1.54261837602514893e+11 -Plasma_upper_hybrid_frequency_at_point_665_______________________________ (freq_plasma_upper_hybrid_profile665)_ 1.54184180827764221e+11 -Plasma_upper_hybrid_frequency_at_point_666_______________________________ (freq_plasma_upper_hybrid_profile666)_ 1.54106494913666077e+11 -Plasma_upper_hybrid_frequency_at_point_667_______________________________ (freq_plasma_upper_hybrid_profile667)_ 1.54028779551544769e+11 -Plasma_upper_hybrid_frequency_at_point_668_______________________________ (freq_plasma_upper_hybrid_profile668)_ 1.53951034432877441e+11 -Plasma_upper_hybrid_frequency_at_point_669_______________________________ (freq_plasma_upper_hybrid_profile669)_ 1.53873259249290863e+11 -Plasma_upper_hybrid_frequency_at_point_670_______________________________ (freq_plasma_upper_hybrid_profile670)_ 1.53795453692558502e+11 -Plasma_upper_hybrid_frequency_at_point_671_______________________________ (freq_plasma_upper_hybrid_profile671)_ 1.53717617454597229e+11 -Plasma_upper_hybrid_frequency_at_point_672_______________________________ (freq_plasma_upper_hybrid_profile672)_ 1.53639750227464630e+11 -Plasma_upper_hybrid_frequency_at_point_673_______________________________ (freq_plasma_upper_hybrid_profile673)_ 1.53561851703355499e+11 -Plasma_upper_hybrid_frequency_at_point_674_______________________________ (freq_plasma_upper_hybrid_profile674)_ 1.53483921574599182e+11 -Plasma_upper_hybrid_frequency_at_point_675_______________________________ (freq_plasma_upper_hybrid_profile675)_ 1.53405959533656189e+11 -Plasma_upper_hybrid_frequency_at_point_676_______________________________ (freq_plasma_upper_hybrid_profile676)_ 1.53327965273115265e+11 -Plasma_upper_hybrid_frequency_at_point_677_______________________________ (freq_plasma_upper_hybrid_profile677)_ 1.53249938485690186e+11 -Plasma_upper_hybrid_frequency_at_point_678_______________________________ (freq_plasma_upper_hybrid_profile678)_ 1.53171878864216949e+11 -Plasma_upper_hybrid_frequency_at_point_679_______________________________ (freq_plasma_upper_hybrid_profile679)_ 1.53093786101650269e+11 -Plasma_upper_hybrid_frequency_at_point_680_______________________________ (freq_plasma_upper_hybrid_profile680)_ 1.53015659891060883e+11 -Plasma_upper_hybrid_frequency_at_point_681_______________________________ (freq_plasma_upper_hybrid_profile681)_ 1.52937499925632111e+11 -Plasma_upper_hybrid_frequency_at_point_682_______________________________ (freq_plasma_upper_hybrid_profile682)_ 1.52859305898657043e+11 -Plasma_upper_hybrid_frequency_at_point_683_______________________________ (freq_plasma_upper_hybrid_profile683)_ 1.52781077503535248e+11 -Plasma_upper_hybrid_frequency_at_point_684_______________________________ (freq_plasma_upper_hybrid_profile684)_ 1.52702814433769714e+11 -Plasma_upper_hybrid_frequency_at_point_685_______________________________ (freq_plasma_upper_hybrid_profile685)_ 1.52624516382963745e+11 -Plasma_upper_hybrid_frequency_at_point_686_______________________________ (freq_plasma_upper_hybrid_profile686)_ 1.52546183044817902e+11 -Plasma_upper_hybrid_frequency_at_point_687_______________________________ (freq_plasma_upper_hybrid_profile687)_ 1.52467814113126678e+11 -Plasma_upper_hybrid_frequency_at_point_688_______________________________ (freq_plasma_upper_hybrid_profile688)_ 1.52389409281775635e+11 -Plasma_upper_hybrid_frequency_at_point_689_______________________________ (freq_plasma_upper_hybrid_profile689)_ 1.52310968244738098e+11 -Plasma_upper_hybrid_frequency_at_point_690_______________________________ (freq_plasma_upper_hybrid_profile690)_ 1.52232490696071991e+11 -Plasma_upper_hybrid_frequency_at_point_691_______________________________ (freq_plasma_upper_hybrid_profile691)_ 1.52153976329916809e+11 -Plasma_upper_hybrid_frequency_at_point_692_______________________________ (freq_plasma_upper_hybrid_profile692)_ 1.52075424840490540e+11 -Plasma_upper_hybrid_frequency_at_point_693_______________________________ (freq_plasma_upper_hybrid_profile693)_ 1.51996835922086273e+11 -Plasma_upper_hybrid_frequency_at_point_694_______________________________ (freq_plasma_upper_hybrid_profile694)_ 1.51918209269069214e+11 -Plasma_upper_hybrid_frequency_at_point_695_______________________________ (freq_plasma_upper_hybrid_profile695)_ 1.51839544575873474e+11 -Plasma_upper_hybrid_frequency_at_point_696_______________________________ (freq_plasma_upper_hybrid_profile696)_ 1.51760841536998901e+11 -Plasma_upper_hybrid_frequency_at_point_697_______________________________ (freq_plasma_upper_hybrid_profile697)_ 1.51682099847007996e+11 -Plasma_upper_hybrid_frequency_at_point_698_______________________________ (freq_plasma_upper_hybrid_profile698)_ 1.51603319200522552e+11 -Plasma_upper_hybrid_frequency_at_point_699_______________________________ (freq_plasma_upper_hybrid_profile699)_ 1.51524499292220673e+11 -Plasma_upper_hybrid_frequency_at_point_700_______________________________ (freq_plasma_upper_hybrid_profile700)_ 1.51445639816833496e+11 -Plasma_upper_hybrid_frequency_at_point_701_______________________________ (freq_plasma_upper_hybrid_profile701)_ 1.51366740469141846e+11 -Plasma_upper_hybrid_frequency_at_point_702_______________________________ (freq_plasma_upper_hybrid_profile702)_ 1.51287800943973450e+11 -Plasma_upper_hybrid_frequency_at_point_703_______________________________ (freq_plasma_upper_hybrid_profile703)_ 1.51208820936199310e+11 -Plasma_upper_hybrid_frequency_at_point_704_______________________________ (freq_plasma_upper_hybrid_profile704)_ 1.51129800140730621e+11 -Plasma_upper_hybrid_frequency_at_point_705_______________________________ (freq_plasma_upper_hybrid_profile705)_ 1.51050738252515747e+11 -Plasma_upper_hybrid_frequency_at_point_706_______________________________ (freq_plasma_upper_hybrid_profile706)_ 1.50971634966536743e+11 -Plasma_upper_hybrid_frequency_at_point_707_______________________________ (freq_plasma_upper_hybrid_profile707)_ 1.50892489977806244e+11 -Plasma_upper_hybrid_frequency_at_point_708_______________________________ (freq_plasma_upper_hybrid_profile708)_ 1.50813302981364227e+11 -Plasma_upper_hybrid_frequency_at_point_709_______________________________ (freq_plasma_upper_hybrid_profile709)_ 1.50734073672274780e+11 -Plasma_upper_hybrid_frequency_at_point_710_______________________________ (freq_plasma_upper_hybrid_profile710)_ 1.50654801745622894e+11 -Plasma_upper_hybrid_frequency_at_point_711_______________________________ (freq_plasma_upper_hybrid_profile711)_ 1.50575486896511047e+11 -Plasma_upper_hybrid_frequency_at_point_712_______________________________ (freq_plasma_upper_hybrid_profile712)_ 1.50496128820056183e+11 -Plasma_upper_hybrid_frequency_at_point_713_______________________________ (freq_plasma_upper_hybrid_profile713)_ 1.50416727211386230e+11 -Plasma_upper_hybrid_frequency_at_point_714_______________________________ (freq_plasma_upper_hybrid_profile714)_ 1.50337281765636993e+11 -Plasma_upper_hybrid_frequency_at_point_715_______________________________ (freq_plasma_upper_hybrid_profile715)_ 1.50257792177948792e+11 -Plasma_upper_hybrid_frequency_at_point_716_______________________________ (freq_plasma_upper_hybrid_profile716)_ 1.50178258143463135e+11 -Plasma_upper_hybrid_frequency_at_point_717_______________________________ (freq_plasma_upper_hybrid_profile717)_ 1.50098679357319641e+11 -Plasma_upper_hybrid_frequency_at_point_718_______________________________ (freq_plasma_upper_hybrid_profile718)_ 1.50019055514652435e+11 -Plasma_upper_hybrid_frequency_at_point_719_______________________________ (freq_plasma_upper_hybrid_profile719)_ 1.49939386310587067e+11 -Plasma_upper_hybrid_frequency_at_point_720_______________________________ (freq_plasma_upper_hybrid_profile720)_ 1.49859671440237091e+11 -Plasma_upper_hybrid_frequency_at_point_721_______________________________ (freq_plasma_upper_hybrid_profile721)_ 1.49779910598700867e+11 -Plasma_upper_hybrid_frequency_at_point_722_______________________________ (freq_plasma_upper_hybrid_profile722)_ 1.49700103481058105e+11 -Plasma_upper_hybrid_frequency_at_point_723_______________________________ (freq_plasma_upper_hybrid_profile723)_ 1.49620249782366547e+11 -Plasma_upper_hybrid_frequency_at_point_724_______________________________ (freq_plasma_upper_hybrid_profile724)_ 1.49540349197658722e+11 -Plasma_upper_hybrid_frequency_at_point_725_______________________________ (freq_plasma_upper_hybrid_profile725)_ 1.49460401421938477e+11 -Plasma_upper_hybrid_frequency_at_point_726_______________________________ (freq_plasma_upper_hybrid_profile726)_ 1.49380406150177704e+11 -Plasma_upper_hybrid_frequency_at_point_727_______________________________ (freq_plasma_upper_hybrid_profile727)_ 1.49300363077312988e+11 -Plasma_upper_hybrid_frequency_at_point_728_______________________________ (freq_plasma_upper_hybrid_profile728)_ 1.49220271898242218e+11 -Plasma_upper_hybrid_frequency_at_point_729_______________________________ (freq_plasma_upper_hybrid_profile729)_ 1.49140132307821014e+11 -Plasma_upper_hybrid_frequency_at_point_730_______________________________ (freq_plasma_upper_hybrid_profile730)_ 1.49059944000859711e+11 -Plasma_upper_hybrid_frequency_at_point_731_______________________________ (freq_plasma_upper_hybrid_profile731)_ 1.48979706672119598e+11 -Plasma_upper_hybrid_frequency_at_point_732_______________________________ (freq_plasma_upper_hybrid_profile732)_ 1.48899420016309875e+11 -Plasma_upper_hybrid_frequency_at_point_733_______________________________ (freq_plasma_upper_hybrid_profile733)_ 1.48819083728083832e+11 -Plasma_upper_hybrid_frequency_at_point_734_______________________________ (freq_plasma_upper_hybrid_profile734)_ 1.48738697502035797e+11 -Plasma_upper_hybrid_frequency_at_point_735_______________________________ (freq_plasma_upper_hybrid_profile735)_ 1.48658261032697479e+11 -Plasma_upper_hybrid_frequency_at_point_736_______________________________ (freq_plasma_upper_hybrid_profile736)_ 1.48577774014534607e+11 -Plasma_upper_hybrid_frequency_at_point_737_______________________________ (freq_plasma_upper_hybrid_profile737)_ 1.48497236141943451e+11 -Plasma_upper_hybrid_frequency_at_point_738_______________________________ (freq_plasma_upper_hybrid_profile738)_ 1.48416647109247467e+11 -Plasma_upper_hybrid_frequency_at_point_739_______________________________ (freq_plasma_upper_hybrid_profile739)_ 1.48336006610693665e+11 -Plasma_upper_hybrid_frequency_at_point_740_______________________________ (freq_plasma_upper_hybrid_profile740)_ 1.48255314340449310e+11 -Plasma_upper_hybrid_frequency_at_point_741_______________________________ (freq_plasma_upper_hybrid_profile741)_ 1.48174569992598267e+11 -Plasma_upper_hybrid_frequency_at_point_742_______________________________ (freq_plasma_upper_hybrid_profile742)_ 1.48093773261137634e+11 -Plasma_upper_hybrid_frequency_at_point_743_______________________________ (freq_plasma_upper_hybrid_profile743)_ 1.48012923839974213e+11 -Plasma_upper_hybrid_frequency_at_point_744_______________________________ (freq_plasma_upper_hybrid_profile744)_ 1.47932021422920959e+11 -Plasma_upper_hybrid_frequency_at_point_745_______________________________ (freq_plasma_upper_hybrid_profile745)_ 1.47851065703693542e+11 -Plasma_upper_hybrid_frequency_at_point_746_______________________________ (freq_plasma_upper_hybrid_profile746)_ 1.47770056375906677e+11 -Plasma_upper_hybrid_frequency_at_point_747_______________________________ (freq_plasma_upper_hybrid_profile747)_ 1.47688993133070770e+11 -Plasma_upper_hybrid_frequency_at_point_748_______________________________ (freq_plasma_upper_hybrid_profile748)_ 1.47607875668588104e+11 -Plasma_upper_hybrid_frequency_at_point_749_______________________________ (freq_plasma_upper_hybrid_profile749)_ 1.47526703675749542e+11 -Plasma_upper_hybrid_frequency_at_point_750_______________________________ (freq_plasma_upper_hybrid_profile750)_ 1.47445476847730957e+11 -Plasma_upper_hybrid_frequency_at_point_751_______________________________ (freq_plasma_upper_hybrid_profile751)_ 1.47364194877589325e+11 -Plasma_upper_hybrid_frequency_at_point_752_______________________________ (freq_plasma_upper_hybrid_profile752)_ 1.47282857458259430e+11 -Plasma_upper_hybrid_frequency_at_point_753_______________________________ (freq_plasma_upper_hybrid_profile753)_ 1.47201464282550293e+11 -Plasma_upper_hybrid_frequency_at_point_754_______________________________ (freq_plasma_upper_hybrid_profile754)_ 1.47120015043141357e+11 -Plasma_upper_hybrid_frequency_at_point_755_______________________________ (freq_plasma_upper_hybrid_profile755)_ 1.47038509432578918e+11 -Plasma_upper_hybrid_frequency_at_point_756_______________________________ (freq_plasma_upper_hybrid_profile756)_ 1.46956947143272614e+11 -Plasma_upper_hybrid_frequency_at_point_757_______________________________ (freq_plasma_upper_hybrid_profile757)_ 1.46875327867491669e+11 -Plasma_upper_hybrid_frequency_at_point_758_______________________________ (freq_plasma_upper_hybrid_profile758)_ 1.46793651297361267e+11 -Plasma_upper_hybrid_frequency_at_point_759_______________________________ (freq_plasma_upper_hybrid_profile759)_ 1.46711917124858795e+11 -Plasma_upper_hybrid_frequency_at_point_760_______________________________ (freq_plasma_upper_hybrid_profile760)_ 1.46630125041810394e+11 -Plasma_upper_hybrid_frequency_at_point_761_______________________________ (freq_plasma_upper_hybrid_profile761)_ 1.46548274739887024e+11 -Plasma_upper_hybrid_frequency_at_point_762_______________________________ (freq_plasma_upper_hybrid_profile762)_ 1.46466365910600891e+11 -Plasma_upper_hybrid_frequency_at_point_763_______________________________ (freq_plasma_upper_hybrid_profile763)_ 1.46384398245301666e+11 -Plasma_upper_hybrid_frequency_at_point_764_______________________________ (freq_plasma_upper_hybrid_profile764)_ 1.46302371435172821e+11 -Plasma_upper_hybrid_frequency_at_point_765_______________________________ (freq_plasma_upper_hybrid_profile765)_ 1.46220285171227905e+11 -Plasma_upper_hybrid_frequency_at_point_766_______________________________ (freq_plasma_upper_hybrid_profile766)_ 1.46138139144306702e+11 -Plasma_upper_hybrid_frequency_at_point_767_______________________________ (freq_plasma_upper_hybrid_profile767)_ 1.46055933045071533e+11 -Plasma_upper_hybrid_frequency_at_point_768_______________________________ (freq_plasma_upper_hybrid_profile768)_ 1.45973666564003448e+11 -Plasma_upper_hybrid_frequency_at_point_769_______________________________ (freq_plasma_upper_hybrid_profile769)_ 1.45891339391398468e+11 -Plasma_upper_hybrid_frequency_at_point_770_______________________________ (freq_plasma_upper_hybrid_profile770)_ 1.45808951217363831e+11 -Plasma_upper_hybrid_frequency_at_point_771_______________________________ (freq_plasma_upper_hybrid_profile771)_ 1.45726501731814087e+11 -Plasma_upper_hybrid_frequency_at_point_772_______________________________ (freq_plasma_upper_hybrid_profile772)_ 1.45643990624467255e+11 -Plasma_upper_hybrid_frequency_at_point_773_______________________________ (freq_plasma_upper_hybrid_profile773)_ 1.45561417584841125e+11 -Plasma_upper_hybrid_frequency_at_point_774_______________________________ (freq_plasma_upper_hybrid_profile774)_ 1.45478782302249268e+11 -Plasma_upper_hybrid_frequency_at_point_775_______________________________ (freq_plasma_upper_hybrid_profile775)_ 1.45396084465797272e+11 -Plasma_upper_hybrid_frequency_at_point_776_______________________________ (freq_plasma_upper_hybrid_profile776)_ 1.45313323764378723e+11 -Plasma_upper_hybrid_frequency_at_point_777_______________________________ (freq_plasma_upper_hybrid_profile777)_ 1.45230499886671539e+11 -Plasma_upper_hybrid_frequency_at_point_778_______________________________ (freq_plasma_upper_hybrid_profile778)_ 1.45147612521133850e+11 -Plasma_upper_hybrid_frequency_at_point_779_______________________________ (freq_plasma_upper_hybrid_profile779)_ 1.45064661356000122e+11 -Plasma_upper_hybrid_frequency_at_point_780_______________________________ (freq_plasma_upper_hybrid_profile780)_ 1.44981646079277344e+11 -Plasma_upper_hybrid_frequency_at_point_781_______________________________ (freq_plasma_upper_hybrid_profile781)_ 1.44898566378740906e+11 -Plasma_upper_hybrid_frequency_at_point_782_______________________________ (freq_plasma_upper_hybrid_profile782)_ 1.44815421941930878e+11 -Plasma_upper_hybrid_frequency_at_point_783_______________________________ (freq_plasma_upper_hybrid_profile783)_ 1.44732212456147675e+11 -Plasma_upper_hybrid_frequency_at_point_784_______________________________ (freq_plasma_upper_hybrid_profile784)_ 1.44648937608448456e+11 -Plasma_upper_hybrid_frequency_at_point_785_______________________________ (freq_plasma_upper_hybrid_profile785)_ 1.44565597085642822e+11 -Plasma_upper_hybrid_frequency_at_point_786_______________________________ (freq_plasma_upper_hybrid_profile786)_ 1.44482190574288971e+11 -Plasma_upper_hybrid_frequency_at_point_787_______________________________ (freq_plasma_upper_hybrid_profile787)_ 1.44398717760689575e+11 -Plasma_upper_hybrid_frequency_at_point_788_______________________________ (freq_plasma_upper_hybrid_profile788)_ 1.44315178330887726e+11 -Plasma_upper_hybrid_frequency_at_point_789_______________________________ (freq_plasma_upper_hybrid_profile789)_ 1.44231571970662964e+11 -Plasma_upper_hybrid_frequency_at_point_790_______________________________ (freq_plasma_upper_hybrid_profile790)_ 1.44147898365527069e+11 -Plasma_upper_hybrid_frequency_at_point_791_______________________________ (freq_plasma_upper_hybrid_profile791)_ 1.44064157200720032e+11 -Plasma_upper_hybrid_frequency_at_point_792_______________________________ (freq_plasma_upper_hybrid_profile792)_ 1.43980348161205963e+11 -Plasma_upper_hybrid_frequency_at_point_793_______________________________ (freq_plasma_upper_hybrid_profile793)_ 1.43896470931668915e+11 -Plasma_upper_hybrid_frequency_at_point_794_______________________________ (freq_plasma_upper_hybrid_profile794)_ 1.43812525196508789e+11 -Plasma_upper_hybrid_frequency_at_point_795_______________________________ (freq_plasma_upper_hybrid_profile795)_ 1.43728510639837006e+11 -Plasma_upper_hybrid_frequency_at_point_796_______________________________ (freq_plasma_upper_hybrid_profile796)_ 1.43644426945472626e+11 -Plasma_upper_hybrid_frequency_at_point_797_______________________________ (freq_plasma_upper_hybrid_profile797)_ 1.43560273796937927e+11 -Plasma_upper_hybrid_frequency_at_point_798_______________________________ (freq_plasma_upper_hybrid_profile798)_ 1.43476050877454163e+11 -Plasma_upper_hybrid_frequency_at_point_799_______________________________ (freq_plasma_upper_hybrid_profile799)_ 1.43391757869937622e+11 -Plasma_upper_hybrid_frequency_at_point_800_______________________________ (freq_plasma_upper_hybrid_profile800)_ 1.43307394456994965e+11 -Plasma_upper_hybrid_frequency_at_point_801_______________________________ (freq_plasma_upper_hybrid_profile801)_ 1.43222960320919342e+11 -Plasma_upper_hybrid_frequency_at_point_802_______________________________ (freq_plasma_upper_hybrid_profile802)_ 1.43138455143685913e+11 -Plasma_upper_hybrid_frequency_at_point_803_______________________________ (freq_plasma_upper_hybrid_profile803)_ 1.43053878606947510e+11 -Plasma_upper_hybrid_frequency_at_point_804_______________________________ (freq_plasma_upper_hybrid_profile804)_ 1.42969230392030579e+11 -Plasma_upper_hybrid_frequency_at_point_805_______________________________ (freq_plasma_upper_hybrid_profile805)_ 1.42884510179930450e+11 -Plasma_upper_hybrid_frequency_at_point_806_______________________________ (freq_plasma_upper_hybrid_profile806)_ 1.42799717651307343e+11 -Plasma_upper_hybrid_frequency_at_point_807_______________________________ (freq_plasma_upper_hybrid_profile807)_ 1.42714852486481842e+11 -Plasma_upper_hybrid_frequency_at_point_808_______________________________ (freq_plasma_upper_hybrid_profile808)_ 1.42629914365430481e+11 -Plasma_upper_hybrid_frequency_at_point_809_______________________________ (freq_plasma_upper_hybrid_profile809)_ 1.42544902967781433e+11 -Plasma_upper_hybrid_frequency_at_point_810_______________________________ (freq_plasma_upper_hybrid_profile810)_ 1.42459817972809937e+11 -Plasma_upper_hybrid_frequency_at_point_811_______________________________ (freq_plasma_upper_hybrid_profile811)_ 1.42374659059434021e+11 -Plasma_upper_hybrid_frequency_at_point_812_______________________________ (freq_plasma_upper_hybrid_profile812)_ 1.42289425906209991e+11 -Plasma_upper_hybrid_frequency_at_point_813_______________________________ (freq_plasma_upper_hybrid_profile813)_ 1.42204118191327759e+11 -Plasma_upper_hybrid_frequency_at_point_814_______________________________ (freq_plasma_upper_hybrid_profile814)_ 1.42118735592606720e+11 -Plasma_upper_hybrid_frequency_at_point_815_______________________________ (freq_plasma_upper_hybrid_profile815)_ 1.42033277787490784e+11 -Plasma_upper_hybrid_frequency_at_point_816_______________________________ (freq_plasma_upper_hybrid_profile816)_ 1.41947744453044250e+11 -Plasma_upper_hybrid_frequency_at_point_817_______________________________ (freq_plasma_upper_hybrid_profile817)_ 1.41862135265946899e+11 -Plasma_upper_hybrid_frequency_at_point_818_______________________________ (freq_plasma_upper_hybrid_profile818)_ 1.41776449902489624e+11 -Plasma_upper_hybrid_frequency_at_point_819_______________________________ (freq_plasma_upper_hybrid_profile819)_ 1.41690688038569733e+11 -Plasma_upper_hybrid_frequency_at_point_820_______________________________ (freq_plasma_upper_hybrid_profile820)_ 1.41604849349686310e+11 -Plasma_upper_hybrid_frequency_at_point_821_______________________________ (freq_plasma_upper_hybrid_profile821)_ 1.41518933510935760e+11 -Plasma_upper_hybrid_frequency_at_point_822_______________________________ (freq_plasma_upper_hybrid_profile822)_ 1.41432940197006805e+11 -Plasma_upper_hybrid_frequency_at_point_823_______________________________ (freq_plasma_upper_hybrid_profile823)_ 1.41346869082176025e+11 -Plasma_upper_hybrid_frequency_at_point_824_______________________________ (freq_plasma_upper_hybrid_profile824)_ 1.41260719840303253e+11 -Plasma_upper_hybrid_frequency_at_point_825_______________________________ (freq_plasma_upper_hybrid_profile825)_ 1.41174492144826508e+11 -Plasma_upper_hybrid_frequency_at_point_826_______________________________ (freq_plasma_upper_hybrid_profile826)_ 1.41088185668757416e+11 -Plasma_upper_hybrid_frequency_at_point_827_______________________________ (freq_plasma_upper_hybrid_profile827)_ 1.41001800084676575e+11 -Plasma_upper_hybrid_frequency_at_point_828_______________________________ (freq_plasma_upper_hybrid_profile828)_ 1.40915335064728577e+11 -Plasma_upper_hybrid_frequency_at_point_829_______________________________ (freq_plasma_upper_hybrid_profile829)_ 1.40828790280617188e+11 -Plasma_upper_hybrid_frequency_at_point_830_______________________________ (freq_plasma_upper_hybrid_profile830)_ 1.40742165403600494e+11 -Plasma_upper_hybrid_frequency_at_point_831_______________________________ (freq_plasma_upper_hybrid_profile831)_ 1.40655460104486237e+11 -Plasma_upper_hybrid_frequency_at_point_832_______________________________ (freq_plasma_upper_hybrid_profile832)_ 1.40568674053626648e+11 -Plasma_upper_hybrid_frequency_at_point_833_______________________________ (freq_plasma_upper_hybrid_profile833)_ 1.40481806920913757e+11 -Plasma_upper_hybrid_frequency_at_point_834_______________________________ (freq_plasma_upper_hybrid_profile834)_ 1.40394858375774231e+11 -Plasma_upper_hybrid_frequency_at_point_835_______________________________ (freq_plasma_upper_hybrid_profile835)_ 1.40307828087164581e+11 -Plasma_upper_hybrid_frequency_at_point_836_______________________________ (freq_plasma_upper_hybrid_profile836)_ 1.40220715723566223e+11 -Plasma_upper_hybrid_frequency_at_point_837_______________________________ (freq_plasma_upper_hybrid_profile837)_ 1.40133520952980255e+11 -Plasma_upper_hybrid_frequency_at_point_838_______________________________ (freq_plasma_upper_hybrid_profile838)_ 1.40046243442922546e+11 -Plasma_upper_hybrid_frequency_at_point_839_______________________________ (freq_plasma_upper_hybrid_profile839)_ 1.39958882860418762e+11 -Plasma_upper_hybrid_frequency_at_point_840_______________________________ (freq_plasma_upper_hybrid_profile840)_ 1.39871438871999084e+11 -Plasma_upper_hybrid_frequency_at_point_841_______________________________ (freq_plasma_upper_hybrid_profile841)_ 1.39783911143693298e+11 -Plasma_upper_hybrid_frequency_at_point_842_______________________________ (freq_plasma_upper_hybrid_profile842)_ 1.39696299341025391e+11 -Plasma_upper_hybrid_frequency_at_point_843_______________________________ (freq_plasma_upper_hybrid_profile843)_ 1.39608603129008789e+11 -Plasma_upper_hybrid_frequency_at_point_844_______________________________ (freq_plasma_upper_hybrid_profile844)_ 1.39520822172140747e+11 -Plasma_upper_hybrid_frequency_at_point_845_______________________________ (freq_plasma_upper_hybrid_profile845)_ 1.39432956134397400e+11 -Plasma_upper_hybrid_frequency_at_point_846_______________________________ (freq_plasma_upper_hybrid_profile846)_ 1.39345004679228516e+11 -Plasma_upper_hybrid_frequency_at_point_847_______________________________ (freq_plasma_upper_hybrid_profile847)_ 1.39256967469551910e+11 -Plasma_upper_hybrid_frequency_at_point_848_______________________________ (freq_plasma_upper_hybrid_profile848)_ 1.39168844167748718e+11 -Plasma_upper_hybrid_frequency_at_point_849_______________________________ (freq_plasma_upper_hybrid_profile849)_ 1.39080634435657440e+11 -Plasma_upper_hybrid_frequency_at_point_850_______________________________ (freq_plasma_upper_hybrid_profile850)_ 1.38992337934569183e+11 -Plasma_upper_hybrid_frequency_at_point_851_______________________________ (freq_plasma_upper_hybrid_profile851)_ 1.38903954325221771e+11 -Plasma_upper_hybrid_frequency_at_point_852_______________________________ (freq_plasma_upper_hybrid_profile852)_ 1.38815483267794647e+11 -Plasma_upper_hybrid_frequency_at_point_853_______________________________ (freq_plasma_upper_hybrid_profile853)_ 1.38726924421903381e+11 -Plasma_upper_hybrid_frequency_at_point_854_______________________________ (freq_plasma_upper_hybrid_profile854)_ 1.38638277446594208e+11 -Plasma_upper_hybrid_frequency_at_point_855_______________________________ (freq_plasma_upper_hybrid_profile855)_ 1.38549542000338318e+11 -Plasma_upper_hybrid_frequency_at_point_856_______________________________ (freq_plasma_upper_hybrid_profile856)_ 1.38460717741026764e+11 -Plasma_upper_hybrid_frequency_at_point_857_______________________________ (freq_plasma_upper_hybrid_profile857)_ 1.38371804325964447e+11 -Plasma_upper_hybrid_frequency_at_point_858_______________________________ (freq_plasma_upper_hybrid_profile858)_ 1.38282801411864960e+11 -Plasma_upper_hybrid_frequency_at_point_859_______________________________ (freq_plasma_upper_hybrid_profile859)_ 1.38193708654844574e+11 -Plasma_upper_hybrid_frequency_at_point_860_______________________________ (freq_plasma_upper_hybrid_profile860)_ 1.38104525710416962e+11 -Plasma_upper_hybrid_frequency_at_point_861_______________________________ (freq_plasma_upper_hybrid_profile861)_ 1.38015252233487183e+11 -Plasma_upper_hybrid_frequency_at_point_862_______________________________ (freq_plasma_upper_hybrid_profile862)_ 1.37925887878346283e+11 -Plasma_upper_hybrid_frequency_at_point_863_______________________________ (freq_plasma_upper_hybrid_profile863)_ 1.37836432298665344e+11 -Plasma_upper_hybrid_frequency_at_point_864_______________________________ (freq_plasma_upper_hybrid_profile864)_ 1.37746885147489868e+11 -Plasma_upper_hybrid_frequency_at_point_865_______________________________ (freq_plasma_upper_hybrid_profile865)_ 1.37657246077233826e+11 -Plasma_upper_hybrid_frequency_at_point_866_______________________________ (freq_plasma_upper_hybrid_profile866)_ 1.37567514739673889e+11 -Plasma_upper_hybrid_frequency_at_point_867_______________________________ (freq_plasma_upper_hybrid_profile867)_ 1.37477690785943726e+11 -Plasma_upper_hybrid_frequency_at_point_868_______________________________ (freq_plasma_upper_hybrid_profile868)_ 1.37387773866527802e+11 -Plasma_upper_hybrid_frequency_at_point_869_______________________________ (freq_plasma_upper_hybrid_profile869)_ 1.37297763631255676e+11 -Plasma_upper_hybrid_frequency_at_point_870_______________________________ (freq_plasma_upper_hybrid_profile870)_ 1.37207659729295975e+11 -Plasma_upper_hybrid_frequency_at_point_871_______________________________ (freq_plasma_upper_hybrid_profile871)_ 1.37117461809150391e+11 -Plasma_upper_hybrid_frequency_at_point_872_______________________________ (freq_plasma_upper_hybrid_profile872)_ 1.37027169518647583e+11 -Plasma_upper_hybrid_frequency_at_point_873_______________________________ (freq_plasma_upper_hybrid_profile873)_ 1.36936782504937256e+11 -Plasma_upper_hybrid_frequency_at_point_874_______________________________ (freq_plasma_upper_hybrid_profile874)_ 1.36846300414484009e+11 -Plasma_upper_hybrid_frequency_at_point_875_______________________________ (freq_plasma_upper_hybrid_profile875)_ 1.36755722893061035e+11 -Plasma_upper_hybrid_frequency_at_point_876_______________________________ (freq_plasma_upper_hybrid_profile876)_ 1.36665049585744217e+11 -Plasma_upper_hybrid_frequency_at_point_877_______________________________ (freq_plasma_upper_hybrid_profile877)_ 1.36574280136905701e+11 -Plasma_upper_hybrid_frequency_at_point_878_______________________________ (freq_plasma_upper_hybrid_profile878)_ 1.36483414190207779e+11 -Plasma_upper_hybrid_frequency_at_point_879_______________________________ (freq_plasma_upper_hybrid_profile879)_ 1.36392451388596588e+11 -Plasma_upper_hybrid_frequency_at_point_880_______________________________ (freq_plasma_upper_hybrid_profile880)_ 1.36301391374295746e+11 -Plasma_upper_hybrid_frequency_at_point_881_______________________________ (freq_plasma_upper_hybrid_profile881)_ 1.36210233788800034e+11 -Plasma_upper_hybrid_frequency_at_point_882_______________________________ (freq_plasma_upper_hybrid_profile882)_ 1.36118978272869049e+11 -Plasma_upper_hybrid_frequency_at_point_883_______________________________ (freq_plasma_upper_hybrid_profile883)_ 1.36027624466520660e+11 -Plasma_upper_hybrid_frequency_at_point_884_______________________________ (freq_plasma_upper_hybrid_profile884)_ 1.35936172009024628e+11 -Plasma_upper_hybrid_frequency_at_point_885_______________________________ (freq_plasma_upper_hybrid_profile885)_ 1.35844620538896088e+11 -Plasma_upper_hybrid_frequency_at_point_886_______________________________ (freq_plasma_upper_hybrid_profile886)_ 1.35752969693888977e+11 -Plasma_upper_hybrid_frequency_at_point_887_______________________________ (freq_plasma_upper_hybrid_profile887)_ 1.35661219110989487e+11 -Plasma_upper_hybrid_frequency_at_point_888_______________________________ (freq_plasma_upper_hybrid_profile888)_ 1.35569368426409393e+11 -Plasma_upper_hybrid_frequency_at_point_889_______________________________ (freq_plasma_upper_hybrid_profile889)_ 1.35477417275579468e+11 -Plasma_upper_hybrid_frequency_at_point_890_______________________________ (freq_plasma_upper_hybrid_profile890)_ 1.35385365293142654e+11 -Plasma_upper_hybrid_frequency_at_point_891_______________________________ (freq_plasma_upper_hybrid_profile891)_ 1.35293212112947433e+11 -Plasma_upper_hybrid_frequency_at_point_892_______________________________ (freq_plasma_upper_hybrid_profile892)_ 1.35200957368041000e+11 -Plasma_upper_hybrid_frequency_at_point_893_______________________________ (freq_plasma_upper_hybrid_profile893)_ 1.35108600690662430e+11 -Plasma_upper_hybrid_frequency_at_point_894_______________________________ (freq_plasma_upper_hybrid_profile894)_ 1.35016141712235794e+11 -Plasma_upper_hybrid_frequency_at_point_895_______________________________ (freq_plasma_upper_hybrid_profile895)_ 1.34923580063363220e+11 -Plasma_upper_hybrid_frequency_at_point_896_______________________________ (freq_plasma_upper_hybrid_profile896)_ 1.34830915373818039e+11 -Plasma_upper_hybrid_frequency_at_point_897_______________________________ (freq_plasma_upper_hybrid_profile897)_ 1.34738147272537689e+11 -Plasma_upper_hybrid_frequency_at_point_898_______________________________ (freq_plasma_upper_hybrid_profile898)_ 1.34645275387616684e+11 -Plasma_upper_hybrid_frequency_at_point_899_______________________________ (freq_plasma_upper_hybrid_profile899)_ 1.34552299346299606e+11 -Plasma_upper_hybrid_frequency_at_point_900_______________________________ (freq_plasma_upper_hybrid_profile900)_ 1.34459218774973846e+11 -Plasma_upper_hybrid_frequency_at_point_901_______________________________ (freq_plasma_upper_hybrid_profile901)_ 1.34366033299162506e+11 -Plasma_upper_hybrid_frequency_at_point_902_______________________________ (freq_plasma_upper_hybrid_profile902)_ 1.34272742543517181e+11 -Plasma_upper_hybrid_frequency_at_point_903_______________________________ (freq_plasma_upper_hybrid_profile903)_ 1.34179346131810684e+11 -Plasma_upper_hybrid_frequency_at_point_904_______________________________ (freq_plasma_upper_hybrid_profile904)_ 1.34085843686929657e+11 -Plasma_upper_hybrid_frequency_at_point_905_______________________________ (freq_plasma_upper_hybrid_profile905)_ 1.33992234830867325e+11 -Plasma_upper_hybrid_frequency_at_point_906_______________________________ (freq_plasma_upper_hybrid_profile906)_ 1.33898519184716003e+11 -Plasma_upper_hybrid_frequency_at_point_907_______________________________ (freq_plasma_upper_hybrid_profile907)_ 1.33804696368659653e+11 -Plasma_upper_hybrid_frequency_at_point_908_______________________________ (freq_plasma_upper_hybrid_profile908)_ 1.33710766001966400e+11 -Plasma_upper_hybrid_frequency_at_point_909_______________________________ (freq_plasma_upper_hybrid_profile909)_ 1.33616727702980972e+11 -Plasma_upper_hybrid_frequency_at_point_910_______________________________ (freq_plasma_upper_hybrid_profile910)_ 1.33522581089117142e+11 -Plasma_upper_hybrid_frequency_at_point_911_______________________________ (freq_plasma_upper_hybrid_profile911)_ 1.33428325776849899e+11 -Plasma_upper_hybrid_frequency_at_point_912_______________________________ (freq_plasma_upper_hybrid_profile912)_ 1.33333961381707993e+11 -Plasma_upper_hybrid_frequency_at_point_913_______________________________ (freq_plasma_upper_hybrid_profile913)_ 1.33239487518265991e+11 -Plasma_upper_hybrid_frequency_at_point_914_______________________________ (freq_plasma_upper_hybrid_profile914)_ 1.33144903800136536e+11 -Plasma_upper_hybrid_frequency_at_point_915_______________________________ (freq_plasma_upper_hybrid_profile915)_ 1.33050209839962524e+11 -Plasma_upper_hybrid_frequency_at_point_916_______________________________ (freq_plasma_upper_hybrid_profile916)_ 1.32955405249409134e+11 -Plasma_upper_hybrid_frequency_at_point_917_______________________________ (freq_plasma_upper_hybrid_profile917)_ 1.32860489639155899e+11 -Plasma_upper_hybrid_frequency_at_point_918_______________________________ (freq_plasma_upper_hybrid_profile918)_ 1.32765462618888702e+11 -Plasma_upper_hybrid_frequency_at_point_919_______________________________ (freq_plasma_upper_hybrid_profile919)_ 1.32670323797291656e+11 -Plasma_upper_hybrid_frequency_at_point_920_______________________________ (freq_plasma_upper_hybrid_profile920)_ 1.32575072782039032e+11 -Plasma_upper_hybrid_frequency_at_point_921_______________________________ (freq_plasma_upper_hybrid_profile921)_ 1.32479709179787094e+11 -Plasma_upper_hybrid_frequency_at_point_922_______________________________ (freq_plasma_upper_hybrid_profile922)_ 1.32384232596165756e+11 -Plasma_upper_hybrid_frequency_at_point_923_______________________________ (freq_plasma_upper_hybrid_profile923)_ 1.32288642635770432e+11 -Plasma_upper_hybrid_frequency_at_point_924_______________________________ (freq_plasma_upper_hybrid_profile924)_ 1.32192938902153671e+11 -Plasma_upper_hybrid_frequency_at_point_925_______________________________ (freq_plasma_upper_hybrid_profile925)_ 1.32097120997816574e+11 -Plasma_upper_hybrid_frequency_at_point_926_______________________________ (freq_plasma_upper_hybrid_profile926)_ 1.32001188524200577e+11 -Plasma_upper_hybrid_frequency_at_point_927_______________________________ (freq_plasma_upper_hybrid_profile927)_ 1.31905141081678818e+11 -Plasma_upper_hybrid_frequency_at_point_928_______________________________ (freq_plasma_upper_hybrid_profile928)_ 1.31808978269547501e+11 -Plasma_upper_hybrid_frequency_at_point_929_______________________________ (freq_plasma_upper_hybrid_profile929)_ 1.31712699686017410e+11 -Plasma_upper_hybrid_frequency_at_point_930_______________________________ (freq_plasma_upper_hybrid_profile930)_ 1.31616304928205032e+11 -Plasma_upper_hybrid_frequency_at_point_931_______________________________ (freq_plasma_upper_hybrid_profile931)_ 1.31519793592124023e+11 -Plasma_upper_hybrid_frequency_at_point_932_______________________________ (freq_plasma_upper_hybrid_profile932)_ 1.31423165272676117e+11 -Plasma_upper_hybrid_frequency_at_point_933_______________________________ (freq_plasma_upper_hybrid_profile933)_ 1.31326419563642487e+11 -Plasma_upper_hybrid_frequency_at_point_934_______________________________ (freq_plasma_upper_hybrid_profile934)_ 1.31229556057674622e+11 -Plasma_upper_hybrid_frequency_at_point_935_______________________________ (freq_plasma_upper_hybrid_profile935)_ 1.31132574346285477e+11 -Plasma_upper_hybrid_frequency_at_point_936_______________________________ (freq_plasma_upper_hybrid_profile936)_ 1.31035474019840332e+11 -Plasma_upper_hybrid_frequency_at_point_937_______________________________ (freq_plasma_upper_hybrid_profile937)_ 1.30938254667547531e+11 -Plasma_upper_hybrid_frequency_at_point_938_______________________________ (freq_plasma_upper_hybrid_profile938)_ 1.30840915877449585e+11 -Plasma_upper_hybrid_frequency_at_point_939_______________________________ (freq_plasma_upper_hybrid_profile939)_ 1.30743457236413574e+11 -Plasma_upper_hybrid_frequency_at_point_940_______________________________ (freq_plasma_upper_hybrid_profile940)_ 1.30645878330122009e+11 -Plasma_upper_hybrid_frequency_at_point_941_______________________________ (freq_plasma_upper_hybrid_profile941)_ 1.30548178743063477e+11 -Plasma_upper_hybrid_frequency_at_point_942_______________________________ (freq_plasma_upper_hybrid_profile942)_ 1.30450358058522964e+11 -Plasma_upper_hybrid_frequency_at_point_943_______________________________ (freq_plasma_upper_hybrid_profile943)_ 1.30352415858572617e+11 -Plasma_upper_hybrid_frequency_at_point_944_______________________________ (freq_plasma_upper_hybrid_profile944)_ 1.30254351724061768e+11 -Plasma_upper_hybrid_frequency_at_point_945_______________________________ (freq_plasma_upper_hybrid_profile945)_ 1.30156165234607620e+11 -Plasma_upper_hybrid_frequency_at_point_946_______________________________ (freq_plasma_upper_hybrid_profile946)_ 1.30057855968585251e+11 -Plasma_upper_hybrid_frequency_at_point_947_______________________________ (freq_plasma_upper_hybrid_profile947)_ 1.29959423503118011e+11 -Plasma_upper_hybrid_frequency_at_point_948_______________________________ (freq_plasma_upper_hybrid_profile948)_ 1.29860867414067368e+11 -Plasma_upper_hybrid_frequency_at_point_949_______________________________ (freq_plasma_upper_hybrid_profile949)_ 1.29762187276023300e+11 -Plasma_upper_hybrid_frequency_at_point_950_______________________________ (freq_plasma_upper_hybrid_profile950)_ 1.29663382662293900e+11 -Plasma_upper_hybrid_frequency_at_point_951_______________________________ (freq_plasma_upper_hybrid_profile951)_ 1.29564453144895477e+11 -Plasma_upper_hybrid_frequency_at_point_952_______________________________ (freq_plasma_upper_hybrid_profile952)_ 1.29465398294542419e+11 -Plasma_upper_hybrid_frequency_at_point_953_______________________________ (freq_plasma_upper_hybrid_profile953)_ 1.29366217680636719e+11 -Plasma_upper_hybrid_frequency_at_point_954_______________________________ (freq_plasma_upper_hybrid_profile954)_ 1.29266910871257874e+11 -Plasma_upper_hybrid_frequency_at_point_955_______________________________ (freq_plasma_upper_hybrid_profile955)_ 1.29167477433152298e+11 -Plasma_upper_hybrid_frequency_at_point_956_______________________________ (freq_plasma_upper_hybrid_profile956)_ 1.29067916931722977e+11 -Plasma_upper_hybrid_frequency_at_point_957_______________________________ (freq_plasma_upper_hybrid_profile957)_ 1.28968228931018768e+11 -Plasma_upper_hybrid_frequency_at_point_958_______________________________ (freq_plasma_upper_hybrid_profile958)_ 1.28868412993723862e+11 -Plasma_upper_hybrid_frequency_at_point_959_______________________________ (freq_plasma_upper_hybrid_profile959)_ 1.28768468681146942e+11 -Plasma_upper_hybrid_frequency_at_point_960_______________________________ (freq_plasma_upper_hybrid_profile960)_ 1.28668395553210571e+11 -Plasma_upper_hybrid_frequency_at_point_961_______________________________ (freq_plasma_upper_hybrid_profile961)_ 1.28568193168440018e+11 -Plasma_upper_hybrid_frequency_at_point_962_______________________________ (freq_plasma_upper_hybrid_profile962)_ 1.28467861083952530e+11 -Plasma_upper_hybrid_frequency_at_point_963_______________________________ (freq_plasma_upper_hybrid_profile963)_ 1.28367398855446106e+11 -Plasma_upper_hybrid_frequency_at_point_964_______________________________ (freq_plasma_upper_hybrid_profile964)_ 1.28266806037188507e+11 -Plasma_upper_hybrid_frequency_at_point_965_______________________________ (freq_plasma_upper_hybrid_profile965)_ 1.28166082182005875e+11 -Plasma_upper_hybrid_frequency_at_point_966_______________________________ (freq_plasma_upper_hybrid_profile966)_ 1.28065226841271545e+11 -Plasma_upper_hybrid_frequency_at_point_967_______________________________ (freq_plasma_upper_hybrid_profile967)_ 1.27964239564894470e+11 -Plasma_upper_hybrid_frequency_at_point_968_______________________________ (freq_plasma_upper_hybrid_profile968)_ 1.27863119901308014e+11 -Plasma_upper_hybrid_frequency_at_point_969_______________________________ (freq_plasma_upper_hybrid_profile969)_ 1.27761867397458069e+11 -Plasma_upper_hybrid_frequency_at_point_970_______________________________ (freq_plasma_upper_hybrid_profile970)_ 1.27660481598791519e+11 -Plasma_upper_hybrid_frequency_at_point_971_______________________________ (freq_plasma_upper_hybrid_profile971)_ 1.27558962049244537e+11 -Plasma_upper_hybrid_frequency_at_point_972_______________________________ (freq_plasma_upper_hybrid_profile972)_ 1.27242502304333267e+11 -Plasma_upper_hybrid_frequency_at_point_973_______________________________ (freq_plasma_upper_hybrid_profile973)_ 1.26925321629350708e+11 -Plasma_upper_hybrid_frequency_at_point_974_______________________________ (freq_plasma_upper_hybrid_profile974)_ 1.26607414467797119e+11 -Plasma_upper_hybrid_frequency_at_point_975_______________________________ (freq_plasma_upper_hybrid_profile975)_ 1.26288775195099960e+11 -Plasma_upper_hybrid_frequency_at_point_976_______________________________ (freq_plasma_upper_hybrid_profile976)_ 1.25969398117428009e+11 -Plasma_upper_hybrid_frequency_at_point_977_______________________________ (freq_plasma_upper_hybrid_profile977)_ 1.25649277470479172e+11 -Plasma_upper_hybrid_frequency_at_point_978_______________________________ (freq_plasma_upper_hybrid_profile978)_ 1.25328407418240845e+11 -Plasma_upper_hybrid_frequency_at_point_979_______________________________ (freq_plasma_upper_hybrid_profile979)_ 1.25006782051722061e+11 -Plasma_upper_hybrid_frequency_at_point_980_______________________________ (freq_plasma_upper_hybrid_profile980)_ 1.24684395387656860e+11 -Plasma_upper_hybrid_frequency_at_point_981_______________________________ (freq_plasma_upper_hybrid_profile981)_ 1.24361241367177948e+11 -Plasma_upper_hybrid_frequency_at_point_982_______________________________ (freq_plasma_upper_hybrid_profile982)_ 1.24037313854459686e+11 -Plasma_upper_hybrid_frequency_at_point_983_______________________________ (freq_plasma_upper_hybrid_profile983)_ 1.23712606635329895e+11 -Plasma_upper_hybrid_frequency_at_point_984_______________________________ (freq_plasma_upper_hybrid_profile984)_ 1.23387113415849182e+11 -Plasma_upper_hybrid_frequency_at_point_985_______________________________ (freq_plasma_upper_hybrid_profile985)_ 1.23060827820857117e+11 -Plasma_upper_hybrid_frequency_at_point_986_______________________________ (freq_plasma_upper_hybrid_profile986)_ 1.22733743392484177e+11 -Plasma_upper_hybrid_frequency_at_point_987_______________________________ (freq_plasma_upper_hybrid_profile987)_ 1.22405853588628677e+11 -Plasma_upper_hybrid_frequency_at_point_988_______________________________ (freq_plasma_upper_hybrid_profile988)_ 1.22077151781397339e+11 -Plasma_upper_hybrid_frequency_at_point_989_______________________________ (freq_plasma_upper_hybrid_profile989)_ 1.21747631255508743e+11 -Plasma_upper_hybrid_frequency_at_point_990_______________________________ (freq_plasma_upper_hybrid_profile990)_ 1.21417285206658417e+11 -Plasma_upper_hybrid_frequency_at_point_991_______________________________ (freq_plasma_upper_hybrid_profile991)_ 1.21086106739844315e+11 -Plasma_upper_hybrid_frequency_at_point_992_______________________________ (freq_plasma_upper_hybrid_profile992)_ 1.20754088867652039e+11 -Plasma_upper_hybrid_frequency_at_point_993_______________________________ (freq_plasma_upper_hybrid_profile993)_ 1.20421224508497742e+11 -Plasma_upper_hybrid_frequency_at_point_994_______________________________ (freq_plasma_upper_hybrid_profile994)_ 1.20087506484828384e+11 -Plasma_upper_hybrid_frequency_at_point_995_______________________________ (freq_plasma_upper_hybrid_profile995)_ 1.19752927521277130e+11 -Plasma_upper_hybrid_frequency_at_point_996_______________________________ (freq_plasma_upper_hybrid_profile996)_ 1.19417480242773483e+11 -Plasma_upper_hybrid_frequency_at_point_997_______________________________ (freq_plasma_upper_hybrid_profile997)_ 1.19081157172605881e+11 -Plasma_upper_hybrid_frequency_at_point_998_______________________________ (freq_plasma_upper_hybrid_profile998)_ 1.18743950730435928e+11 -Plasma_upper_hybrid_frequency_at_point_999_______________________________ (freq_plasma_upper_hybrid_profile999)_ 1.18405853230262512e+11 -Plasma_upper_hybrid_frequency_at_point_1000______________________________ (freq_plasma_upper_hybrid_profile1000)_ 1.18066856878334183e+11 -Plasma_upper_hybrid_frequency_at_point_1001______________________________ (freq_plasma_upper_hybrid_profile1001)_ 1.17726953771008453e+11 -Volume_averaged_electron-electron_Coulomb_log_(Λₑₑ)______________________ (plasma_coulomb_log_electron_electron_vol_avg)_ 1.74245822345187911e+01 OP -Electron-electron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_electron_profile0)_ 1.79924170406808628e+01 -Electron-electron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_electron_profile1)_ 1.79924129780296589e+01 -Electron-electron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_electron_profile2)_ 1.79924007899874461e+01 -Electron-electron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_electron_profile3)_ 1.79923804762884032e+01 -Electron-electron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_electron_profile4)_ 1.79923520364894785e+01 -Electron-electron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_electron_profile5)_ 1.79923154699703716e+01 -Electron-electron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_electron_profile6)_ 1.79922707759334841e+01 -Electron-electron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_electron_profile7)_ 1.79922179534038875e+01 -Electron-electron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_electron_profile8)_ 1.79921570012292840e+01 -Electron-electron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_electron_profile9)_ 1.79920879180799034e+01 -Electron-electron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_electron_profile10)_ 1.79920107024484714e+01 -Electron-electron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_electron_profile11)_ 1.79919253526500995e+01 -Electron-electron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_electron_profile12)_ 1.79918318668222064e+01 -Electron-electron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_electron_profile13)_ 1.79917302429244117e+01 -Electron-electron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_electron_profile14)_ 1.79916204787384189e+01 -Electron-electron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_electron_profile15)_ 1.79915025718679047e+01 -Electron-electron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_electron_profile16)_ 1.79913765197383810e+01 -Electron-electron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_electron_profile17)_ 1.79912423195970455e+01 -Electron-electron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_electron_profile18)_ 1.79910999685126534e+01 -Electron-electron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_electron_profile19)_ 1.79909494633753262e+01 -Electron-electron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_electron_profile20)_ 1.79907908008964057e+01 -Electron-electron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_electron_profile21)_ 1.79906239776082586e+01 -Electron-electron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_electron_profile22)_ 1.79904489898640954e+01 -Electron-electron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_electron_profile23)_ 1.79902658338377641e+01 -Electron-electron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_electron_profile24)_ 1.79900745055235411e+01 -Electron-electron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_electron_profile25)_ 1.79898750007359105e+01 -Electron-electron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_electron_profile26)_ 1.79896673151093403e+01 -Electron-electron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_electron_profile27)_ 1.79894514440980231e+01 -Electron-electron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_electron_profile28)_ 1.79892273829756526e+01 -Electron-electron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_electron_profile29)_ 1.79889951268351460e+01 -Electron-electron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_electron_profile30)_ 1.79887546705883778e+01 -Electron-electron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_electron_profile31)_ 1.79885060089658957e+01 -Electron-electron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_electron_profile32)_ 1.79882491365166430e+01 -Electron-electron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_electron_profile33)_ 1.79879840476076396e+01 -Electron-electron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_electron_profile34)_ 1.79877107364236899e+01 -Electron-electron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_electron_profile35)_ 1.79874291969670530e+01 -Electron-electron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_electron_profile36)_ 1.79871394230571049e+01 -Electron-electron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_electron_profile37)_ 1.79868414083300188e+01 -Electron-electron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_electron_profile38)_ 1.79865351462383884e+01 -Electron-electron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_electron_profile39)_ 1.79862206300508838e+01 -Electron-electron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_electron_profile40)_ 1.79858978528518776e+01 -Electron-electron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_electron_profile41)_ 1.79855668075410513e+01 -Electron-electron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_electron_profile42)_ 1.79852274868330291e+01 -Electron-electron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_electron_profile43)_ 1.79848798832569337e+01 -Electron-electron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_electron_profile44)_ 1.79845239891560205e+01 -Electron-electron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_electron_profile45)_ 1.79841597966872193e+01 -Electron-electron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_electron_profile46)_ 1.79837872978207116e+01 -Electron-electron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_electron_profile47)_ 1.79834064843394934e+01 -Electron-electron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_electron_profile48)_ 1.79830173478389064e+01 -Electron-electron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_electron_profile49)_ 1.79826198797261831e+01 -Electron-electron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_electron_profile50)_ 1.79822140712199712e+01 -Electron-electron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_electron_profile51)_ 1.79817999133498354e+01 -Electron-electron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_electron_profile52)_ 1.79813773969557715e+01 -Electron-electron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_electron_profile53)_ 1.79809465126876944e+01 -Electron-electron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_electron_profile54)_ 1.79805072510049158e+01 -Electron-electron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_electron_profile55)_ 1.79800596021756220e+01 -Electron-electron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_electron_profile56)_ 1.79796035562763201e+01 -Electron-electron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_electron_profile57)_ 1.79791391031913079e+01 -Electron-electron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_electron_profile58)_ 1.79786662326120883e+01 -Electron-electron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_electron_profile59)_ 1.79781849340368076e+01 -Electron-electron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_electron_profile60)_ 1.79776951967696732e+01 -Electron-electron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_electron_profile61)_ 1.79771970099203564e+01 -Electron-electron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_electron_profile62)_ 1.79766903624033745e+01 -Electron-electron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_electron_profile63)_ 1.79761752429374901e+01 -Electron-electron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_electron_profile64)_ 1.79756516400450757e+01 -Electron-electron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_electron_profile65)_ 1.79751195420514662e+01 -Electron-electron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_electron_profile66)_ 1.79745789370843170e+01 -Electron-electron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_electron_profile67)_ 1.79740298130729386e+01 -Electron-electron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_electron_profile68)_ 1.79734721577476186e+01 -Electron-electron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_electron_profile69)_ 1.79729059586389397e+01 -Electron-electron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_electron_profile70)_ 1.79723312030770828e+01 -Electron-electron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_electron_profile71)_ 1.79717478781911133e+01 -Electron-electron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_electron_profile72)_ 1.79711559709082636e+01 -Electron-electron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_electron_profile73)_ 1.79705554679532042e+01 -Electron-electron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_electron_profile74)_ 1.79699463558473056e+01 -Electron-electron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_electron_profile75)_ 1.79693286209078522e+01 -Electron-electron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_electron_profile76)_ 1.79687022492473183e+01 -Electron-electron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_electron_profile77)_ 1.79680672267725541e+01 -Electron-electron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_electron_profile78)_ 1.79674235391840149e+01 -Electron-electron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_electron_profile79)_ 1.79667711719749406e+01 -Electron-electron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_electron_profile80)_ 1.79661101104305629e+01 -Electron-electron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_electron_profile81)_ 1.79654403396272606e+01 -Electron-electron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_electron_profile82)_ 1.79647618444317132e+01 -Electron-electron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_electron_profile83)_ 1.79640746095000772e+01 -Electron-electron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_electron_profile84)_ 1.79633786192770977e+01 -Electron-electron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_electron_profile85)_ 1.79626738579952310e+01 -Electron-electron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_electron_profile86)_ 1.79619603096737670e+01 -Electron-electron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_electron_profile87)_ 1.79612379581179340e+01 -Electron-electron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_electron_profile88)_ 1.79605067869179642e+01 -Electron-electron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_electron_profile89)_ 1.79597667794481772e+01 -Electron-electron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_electron_profile90)_ 1.79590179188660422e+01 -Electron-electron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_electron_profile91)_ 1.79582601881112218e+01 -Electron-electron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_electron_profile92)_ 1.79574935699046137e+01 -Electron-electron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_electron_profile93)_ 1.79567180467473655e+01 -Electron-electron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_electron_profile94)_ 1.79559336009198844e+01 -Electron-electron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_electron_profile95)_ 1.79551402144808314e+01 -Electron-electron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_electron_profile96)_ 1.79543378692661193e+01 -Electron-electron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_electron_profile97)_ 1.79535265468878613e+01 -Electron-electron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_electron_profile98)_ 1.79527062287333408e+01 -Electron-electron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_electron_profile99)_ 1.79518768959639523e+01 -Electron-electron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_electron_profile100)_ 1.79510385295141219e+01 -Electron-electron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_electron_profile101)_ 1.79501911100902447e+01 -Electron-electron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_electron_profile102)_ 1.79493346181695621e+01 -Electron-electron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_electron_profile103)_ 1.79484690339990784e+01 -Electron-electron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_electron_profile104)_ 1.79475943375944098e+01 -Electron-electron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_electron_profile105)_ 1.79467105087386578e+01 -Electron-electron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_electron_profile106)_ 1.79458175269812692e+01 -Electron-electron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_electron_profile107)_ 1.79449153716368457e+01 -Electron-electron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_electron_profile108)_ 1.79440040217839893e+01 -Electron-electron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_electron_profile109)_ 1.79430834562640911e+01 -Electron-electron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_electron_profile110)_ 1.79421536536801298e+01 -Electron-electron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_electron_profile111)_ 1.79412145923954505e+01 -Electron-electron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_electron_profile112)_ 1.79402662505325239e+01 -Electron-electron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_electron_profile113)_ 1.79393086059717071e+01 -Electron-electron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_electron_profile114)_ 1.79383416363499641e+01 -Electron-electron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_electron_profile115)_ 1.79373653190595981e+01 -Electron-electron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_electron_profile116)_ 1.79363796312469432e+01 -Electron-electron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_electron_profile117)_ 1.79353845498110829e+01 -Electron-electron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_electron_profile118)_ 1.79343800514024956e+01 -Electron-electron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_electron_profile119)_ 1.79333661124217372e+01 -Electron-electron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_electron_profile120)_ 1.79323427090180800e+01 -Electron-electron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_electron_profile121)_ 1.79313098170881489e+01 -Electron-electron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_electron_profile122)_ 1.79302674122745458e+01 -Electron-electron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_electron_profile123)_ 1.79292154699644293e+01 -Electron-electron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_electron_profile124)_ 1.79281539652881285e+01 -Electron-electron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_electron_profile125)_ 1.79270828731176977e+01 -Electron-electron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_electron_profile126)_ 1.79260021680654873e+01 -Electron-electron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_electron_profile127)_ 1.79249118244826668e+01 -Electron-electron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_electron_profile128)_ 1.79238118164577784e+01 -Electron-electron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_electron_profile129)_ 1.79227021178152199e+01 -Electron-electron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_electron_profile130)_ 1.79215827021137528e+01 -Electron-electron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_electron_profile131)_ 1.79204535426449958e+01 -Electron-electron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_electron_profile132)_ 1.79193146124318545e+01 -Electron-electron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_electron_profile133)_ 1.79181658842270117e+01 -Electron-electron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_electron_profile134)_ 1.79170073305113284e+01 -Electron-electron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_electron_profile135)_ 1.79158389234922772e+01 -Electron-electron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_electron_profile136)_ 1.79146606351023330e+01 -Electron-electron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_electron_profile137)_ 1.79134724369973775e+01 -Electron-electron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_electron_profile138)_ 1.79122743005550404e+01 -Electron-electron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_electron_profile139)_ 1.79110661968730795e+01 -Electron-electron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_electron_profile140)_ 1.79098480967677034e+01 -Electron-electron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_electron_profile141)_ 1.79086199707718912e+01 -Electron-electron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_electron_profile142)_ 1.79073817891337121e+01 -Electron-electron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_electron_profile143)_ 1.79061335218145921e+01 -Electron-electron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_electron_profile144)_ 1.79048751384876148e+01 -Electron-electron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_electron_profile145)_ 1.79036066085357497e+01 -Electron-electron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_electron_profile146)_ 1.79023279010501106e+01 -Electron-electron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_electron_profile147)_ 1.79010389848281726e+01 -Electron-electron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_electron_profile148)_ 1.78997398283719669e+01 -Electron-electron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_electron_profile149)_ 1.78984303998863084e+01 -Electron-electron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_electron_profile150)_ 1.78971106672769267e+01 -Electron-electron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_electron_profile151)_ 1.78957805981486509e+01 -Electron-electron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_electron_profile152)_ 1.78944401598035405e+01 -Electron-electron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_electron_profile153)_ 1.78930893192390101e+01 -Electron-electron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_electron_profile154)_ 1.78917280431459460e+01 -Electron-electron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_electron_profile155)_ 1.78903562979067843e+01 -Electron-electron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_electron_profile156)_ 1.78889740495935960e+01 -Electron-electron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_electron_profile157)_ 1.78875812639661440e+01 -Electron-electron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_electron_profile158)_ 1.78861779064699178e+01 -Electron-electron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_electron_profile159)_ 1.78847639422341693e+01 -Electron-electron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_electron_profile160)_ 1.78833393360699127e+01 -Electron-electron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_electron_profile161)_ 1.78819040524679203e+01 -Electron-electron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_electron_profile162)_ 1.78804580555966943e+01 -Electron-electron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_electron_profile163)_ 1.78790013093004383e+01 -Electron-electron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_electron_profile164)_ 1.78775337770969749e+01 -Electron-electron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_electron_profile165)_ 1.78760554221756998e+01 -Electron-electron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_electron_profile166)_ 1.78745662073954712e+01 -Electron-electron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_electron_profile167)_ 1.78730660952825176e+01 -Electron-electron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_electron_profile168)_ 1.78715550480282985e+01 -Electron-electron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_electron_profile169)_ 1.78700330274873771e+01 -Electron-electron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_electron_profile170)_ 1.78684999951752665e+01 -Electron-electron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_electron_profile171)_ 1.78669559122662491e+01 -Electron-electron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_electron_profile172)_ 1.78654007395911911e+01 -Electron-electron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_electron_profile173)_ 1.78638344376353437e+01 -Electron-electron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_electron_profile174)_ 1.78622569665361226e+01 -Electron-electron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_electron_profile175)_ 1.78606682860808625e+01 -Electron-electron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_electron_profile176)_ 1.78590683557045899e+01 -Electron-electron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_electron_profile177)_ 1.78574571344877242e+01 -Electron-electron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_electron_profile178)_ 1.78558345811538253e+01 -Electron-electron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_electron_profile179)_ 1.78542006540672880e+01 -Electron-electron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_electron_profile180)_ 1.78525553112310149e+01 -Electron-electron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_electron_profile181)_ 1.78508985102841145e+01 -Electron-electron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_electron_profile182)_ 1.78492302084995380e+01 -Electron-electron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_electron_profile183)_ 1.78475503627817460e+01 -Electron-electron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_electron_profile184)_ 1.78458589296643098e+01 -Electron-electron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_electron_profile185)_ 1.78441558653075560e+01 -Electron-electron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_electron_profile186)_ 1.78424411254961477e+01 -Electron-electron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_electron_profile187)_ 1.78407146656366891e+01 -Electron-electron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_electron_profile188)_ 1.78389764407552782e+01 -Electron-electron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_electron_profile189)_ 1.78372264054950911e+01 -Electron-electron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_electron_profile190)_ 1.78354645141139301e+01 -Electron-electron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_electron_profile191)_ 1.78336907204817443e+01 -Electron-electron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_electron_profile192)_ 1.78319049780781533e+01 -Electron-electron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_electron_profile193)_ 1.78301072399899923e+01 -Electron-electron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_electron_profile194)_ 1.78282974589087679e+01 -Electron-electron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_electron_profile195)_ 1.78264755871281935e+01 -Electron-electron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_electron_profile196)_ 1.78246415765416266e+01 -Electron-electron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_electron_profile197)_ 1.78227953786395723e+01 -Electron-electron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_electron_profile198)_ 1.78209369445071211e+01 -Electron-electron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_electron_profile199)_ 1.78190662248214160e+01 -Electron-electron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_electron_profile200)_ 1.78171831698490735e+01 -Electron-electron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_electron_profile201)_ 1.78152877294436323e+01 -Electron-electron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_electron_profile202)_ 1.78133798530429779e+01 -Electron-electron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_electron_profile203)_ 1.78114594896667562e+01 -Electron-electron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_electron_profile204)_ 1.78095265879137870e+01 -Electron-electron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_electron_profile205)_ 1.78075810959594669e+01 -Electron-electron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_electron_profile206)_ 1.78056229615531656e+01 -Electron-electron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_electron_profile207)_ 1.78036521320156318e+01 -Electron-electron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_electron_profile208)_ 1.78016685542363788e+01 -Electron-electron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_electron_profile209)_ 1.77996721746710733e+01 -Electron-electron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_electron_profile210)_ 1.77976629393389132e+01 -Electron-electron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_electron_profile211)_ 1.77956407938200236e+01 -Electron-electron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_electron_profile212)_ 1.77936056832528351e+01 -Electron-electron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_electron_profile213)_ 1.77915575523314651e+01 -Electron-electron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_electron_profile214)_ 1.77894963453030890e+01 -Electron-electron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_electron_profile215)_ 1.77874220059653609e+01 -Electron-electron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_electron_profile216)_ 1.77853344776637599e+01 -Electron-electron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_electron_profile217)_ 1.77832337032890138e+01 -Electron-electron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_electron_profile218)_ 1.77811196252744779e+01 -Electron-electron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_electron_profile219)_ 1.77789921855935482e+01 -Electron-electron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_electron_profile220)_ 1.77768513257570824e+01 -Electron-electron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_electron_profile221)_ 1.77746969868107776e+01 -Electron-electron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_electron_profile222)_ 1.77725291093326554e+01 -Electron-electron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_electron_profile223)_ 1.77703476334304575e+01 -Electron-electron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_electron_profile224)_ 1.77681524987391306e+01 -Electron-electron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_electron_profile225)_ 1.77659436444182646e+01 -Electron-electron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_electron_profile226)_ 1.77637210091496023e+01 -Electron-electron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_electron_profile227)_ 1.77614845311345135e+01 -Electron-electron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_electron_profile228)_ 1.77592341480915330e+01 -Electron-electron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_electron_profile229)_ 1.77569697972538911e+01 -Electron-electron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_electron_profile230)_ 1.77546914153670770e+01 -Electron-electron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_electron_profile231)_ 1.77523989386864152e+01 -Electron-electron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_electron_profile232)_ 1.77500923029746893e+01 -Electron-electron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_electron_profile233)_ 1.77477714434997687e+01 -Electron-electron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_electron_profile234)_ 1.77454362950322952e+01 -Electron-electron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_electron_profile235)_ 1.77430867918433570e+01 -Electron-electron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_electron_profile236)_ 1.77407228677022459e+01 -Electron-electron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_electron_profile237)_ 1.77383444558742305e+01 -Electron-electron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_electron_profile238)_ 1.77359514891183530e+01 -Electron-electron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_electron_profile239)_ 1.77335438996852908e+01 -Electron-electron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_electron_profile240)_ 1.77311216193152532e+01 -Electron-electron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_electron_profile241)_ 1.77286845792359351e+01 -Electron-electron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_electron_profile242)_ 1.77262327101604953e+01 -Electron-electron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_electron_profile243)_ 1.77237659422856204e+01 -Electron-electron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_electron_profile244)_ 1.77212842052896136e+01 -Electron-electron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_electron_profile245)_ 1.77187874283305788e+01 -Electron-electron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_electron_profile246)_ 1.77162755400446272e+01 -Electron-electron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_electron_profile247)_ 1.77137484685441713e+01 -Electron-electron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_electron_profile248)_ 1.77112061414163051e+01 -Electron-electron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_electron_profile249)_ 1.77086484857212128e+01 -Electron-electron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_electron_profile250)_ 1.77060754279906973e+01 -Electron-electron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_electron_profile251)_ 1.77034868942267778e+01 -Electron-electron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_electron_profile252)_ 1.77008828099003566e+01 -Electron-electron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_electron_profile253)_ 1.76982630999499833e+01 -Electron-electron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_electron_profile254)_ 1.76956276887807427e+01 -Electron-electron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_electron_profile255)_ 1.76929765002631854e+01 -Electron-electron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_electron_profile256)_ 1.76903094577324254e+01 -Electron-electron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_electron_profile257)_ 1.76876264839872945e+01 -Electron-electron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_electron_profile258)_ 1.76849275012896321e+01 -Electron-electron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_electron_profile259)_ 1.76822124313637055e+01 -Electron-electron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_electron_profile260)_ 1.76794811953957307e+01 -Electron-electron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_electron_profile261)_ 1.76767337140335599e+01 -Electron-electron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_electron_profile262)_ 1.76739699073864571e+01 -Electron-electron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_electron_profile263)_ 1.76711896950250669e+01 -Electron-electron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_electron_profile264)_ 1.76683929959815025e+01 -Electron-electron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_electron_profile265)_ 1.76655797287496128e+01 -Electron-electron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_electron_profile266)_ 1.76627498112853800e+01 -Electron-electron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_electron_profile267)_ 1.76599031610075272e+01 -Electron-electron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_electron_profile268)_ 1.76570396947982928e+01 -Electron-electron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_electron_profile269)_ 1.76541593290043863e+01 -Electron-electron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_electron_profile270)_ 1.76512619794381358e+01 -Electron-electron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_electron_profile271)_ 1.76483475613788627e+01 -Electron-electron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_electron_profile272)_ 1.76454159895744311e+01 -Electron-electron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_electron_profile273)_ 1.76424671782430735e+01 -Electron-electron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_electron_profile274)_ 1.76395010410754089e+01 -Electron-electron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_electron_profile275)_ 1.76365174912366989e+01 -Electron-electron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_electron_profile276)_ 1.76335164413694088e+01 -Electron-electron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_electron_profile277)_ 1.76304978035959650e+01 -Electron-electron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_electron_profile278)_ 1.76274614895218242e+01 -Electron-electron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_electron_profile279)_ 1.76244074102388524e+01 -Electron-electron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_electron_profile280)_ 1.76213354763289445e+01 -Electron-electron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_electron_profile281)_ 1.76182455978680110e+01 -Electron-electron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_electron_profile282)_ 1.76151376844302447e+01 -Electron-electron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_electron_profile283)_ 1.76120116450927853e+01 -Electron-electron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_electron_profile284)_ 1.76088673884406539e+01 -Electron-electron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_electron_profile285)_ 1.76057048225721466e+01 -Electron-electron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_electron_profile286)_ 1.76025238551045362e+01 -Electron-electron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_electron_profile287)_ 1.75993243931802184e+01 -Electron-electron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_electron_profile288)_ 1.75961063434732594e+01 -Electron-electron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_electron_profile289)_ 1.75928696121963668e+01 -Electron-electron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_electron_profile290)_ 1.75896141051083355e+01 -Electron-electron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_electron_profile291)_ 1.75863397275219384e+01 -Electron-electron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_electron_profile292)_ 1.75830463843123219e+01 -Electron-electron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_electron_profile293)_ 1.75797339799259049e+01 -Electron-electron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_electron_profile294)_ 1.75764024183897973e+01 -Electron-electron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_electron_profile295)_ 1.75730516033218009e+01 -Electron-electron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_electron_profile296)_ 1.75696814379409467e+01 -Electron-electron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_electron_profile297)_ 1.75662918250786575e+01 -Electron-electron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_electron_profile298)_ 1.75628826671905180e+01 -Electron-electron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_electron_profile299)_ 1.75594538663686919e+01 -Electron-electron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_electron_profile300)_ 1.75560053243550342e+01 -Electron-electron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_electron_profile301)_ 1.75525369425548661e+01 -Electron-electron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_electron_profile302)_ 1.75490486220515223e+01 -Electron-electron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_electron_profile303)_ 1.75455402636216142e+01 -Electron-electron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_electron_profile304)_ 1.75420117677511449e+01 -Electron-electron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_electron_profile305)_ 1.75384630346523487e+01 -Electron-electron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_electron_profile306)_ 1.75348939642815047e+01 -Electron-electron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_electron_profile307)_ 1.75313044563575424e+01 -Electron-electron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_electron_profile308)_ 1.75276944103816312e+01 -Electron-electron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_electron_profile309)_ 1.75240637256577045e+01 -Electron-electron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_electron_profile310)_ 1.75204123013139963e+01 -Electron-electron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_electron_profile311)_ 1.75167400363256327e+01 -Electron-electron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_electron_profile312)_ 1.75130468295382862e+01 -Electron-electron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_electron_profile313)_ 1.75093325796929804e+01 -Electron-electron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_electron_profile314)_ 1.75055971854520607e+01 -Electron-electron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_electron_profile315)_ 1.75018405454263863e+01 -Electron-electron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_electron_profile316)_ 1.74980625582037845e+01 -Electron-electron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_electron_profile317)_ 1.74942631223788609e+01 -Electron-electron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_electron_profile318)_ 1.74904421365841678e+01 -Electron-electron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_electron_profile319)_ 1.74865994995227858e+01 -Electron-electron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_electron_profile320)_ 1.74827351100024515e+01 -Electron-electron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_electron_profile321)_ 1.74788488669711448e+01 -Electron-electron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_electron_profile322)_ 1.74749406695544280e+01 -Electron-electron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_electron_profile323)_ 1.74710104170943232e+01 -Electron-electron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_electron_profile324)_ 1.74670580091900263e+01 -Electron-electron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_electron_profile325)_ 1.74630833457404258e+01 -Electron-electron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_electron_profile326)_ 1.74590863269884906e+01 -Electron-electron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_electron_profile327)_ 1.74550668535676614e+01 -Electron-electron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_electron_profile328)_ 1.74510248265502561e+01 -Electron-electron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_electron_profile329)_ 1.74469601474980678e+01 -Electron-electron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_electron_profile330)_ 1.74428727185151118e+01 -Electron-electron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_electron_profile331)_ 1.74387624423027496e+01 -Electron-electron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_electron_profile332)_ 1.74346292222171897e+01 -Electron-electron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_electron_profile333)_ 1.74304729623294818e+01 -Electron-electron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_electron_profile334)_ 1.74262935674881838e+01 -Electron-electron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_electron_profile335)_ 1.74220909433846458e+01 -Electron-electron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_electron_profile336)_ 1.74178649966212191e+01 -Electron-electron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_electron_profile337)_ 1.74136156347823459e+01 -Electron-electron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_electron_profile338)_ 1.74093427665087468e+01 -Electron-electron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_electron_profile339)_ 1.74050463015747816e+01 -Electron-electron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_electron_profile340)_ 1.74007261509691524e+01 -Electron-electron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_electron_profile341)_ 1.73963822269790533e+01 -Electron-electron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_electron_profile342)_ 1.73920144432779331e+01 -Electron-electron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_electron_profile343)_ 1.73876227150170060e+01 -Electron-electron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_electron_profile344)_ 1.73832069589206917e+01 -Electron-electron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_electron_profile345)_ 1.73787670933861129e+01 -Electron-electron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_electron_profile346)_ 1.73743030385868060e+01 -Electron-electron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_electron_profile347)_ 1.73698147165809473e+01 -Electron-electron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_electron_profile348)_ 1.73653020514240808e+01 -Electron-electron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_electron_profile349)_ 1.73607649692867021e+01 -Electron-electron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_electron_profile350)_ 1.73562033985768238e+01 -Electron-electron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_electron_profile351)_ 1.73516172700677807e+01 -Electron-electron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_electron_profile352)_ 1.73470065170314172e+01 -Electron-electron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_electron_profile353)_ 1.73423710753769882e+01 -Electron-electron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_electron_profile354)_ 1.73377108837959071e+01 -Electron-electron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_electron_profile355)_ 1.73330258839127040e+01 -Electron-electron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_electron_profile356)_ 1.73283160204423403e+01 -Electron-electron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_electron_profile357)_ 1.73235812413542583e+01 -Electron-electron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_electron_profile358)_ 1.73188214980433521e+01 -Electron-electron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_electron_profile359)_ 1.73140367455082576e+01 -Electron-electron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_electron_profile360)_ 1.73092269425371725e+01 -Electron-electron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_electron_profile361)_ 1.73043920519016616e+01 -Electron-electron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_electron_profile362)_ 1.72995320405586099e+01 -Electron-electron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_electron_profile363)_ 1.72946468798608635e+01 -Electron-electron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_electron_profile364)_ 1.72897365457768117e+01 -Electron-electron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_electron_profile365)_ 1.72848010191193566e+01 -Electron-electron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_electron_profile366)_ 1.72798402857846476e+01 -Electron-electron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_electron_profile367)_ 1.72748543370009990e+01 -Electron-electron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_electron_profile368)_ 1.72698431695885191e+01 -Electron-electron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_electron_profile369)_ 1.72648067862298120e+01 -Electron-electron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_electron_profile370)_ 1.72597451957522878e+01 -Electron-electron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_electron_profile371)_ 1.72546584134226393e+01 -Electron-electron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_electron_profile372)_ 1.72495464612539280e+01 -Electron-electron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_electron_profile373)_ 1.72444093683259467e+01 -Electron-electron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_electron_profile374)_ 1.72392471711193558e+01 -Electron-electron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_electron_profile375)_ 1.72340599138642716e+01 -Electron-electron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_electron_profile376)_ 1.72288476489039724e+01 -Electron-electron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_electron_profile377)_ 1.72236104370742957e+01 -Electron-electron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_electron_profile378)_ 1.72183483480996067e+01 -Electron-electron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_electron_profile379)_ 1.72130614610059283e+01 -Electron-electron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_electron_profile380)_ 1.72077498645521061e+01 -Electron-electron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_electron_profile381)_ 1.72024136576798661e+01 -Electron-electron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_electron_profile382)_ 1.71970529499835010e+01 -Electron-electron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_electron_profile383)_ 1.71916678622002514e+01 -Electron-electron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_electron_profile384)_ 1.71862585267222450e+01 -Electron-electron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_electron_profile385)_ 1.71808250881310158e+01 -Electron-electron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_electron_profile386)_ 1.71753677037556933e+01 -Electron-electron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_electron_profile387)_ 1.71698865442559701e+01 -Electron-electron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_electron_profile388)_ 1.71643817942309767e+01 -Electron-electron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_electron_profile389)_ 1.71588536528553810e+01 -Electron-electron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_electron_profile390)_ 1.71533023345439339e+01 -Electron-electron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_electron_profile391)_ 1.71477280696459005e+01 -Electron-electron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_electron_profile392)_ 1.71421311051708010e+01 -Electron-electron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_electron_profile393)_ 1.71365117055469582e+01 -Electron-electron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_electron_profile394)_ 1.71308701534145733e+01 -Electron-electron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_electron_profile395)_ 1.71252067504548720e+01 -Electron-electron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_electron_profile396)_ 1.71195218182573008e+01 -Electron-electron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_electron_profile397)_ 1.71138156992265742e+01 -Electron-electron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_electron_profile398)_ 1.71080887575316254e+01 -Electron-electron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_electron_profile399)_ 1.71023413800985757e+01 -Electron-electron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_electron_profile400)_ 1.70965739776501096e+01 -Electron-electron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_electron_profile401)_ 1.70907869857934820e+01 -Electron-electron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_electron_profile402)_ 1.70849808661598992e+01 -Electron-electron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_electron_profile403)_ 1.70791561075979139e+01 -Electron-electron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_electron_profile404)_ 1.70733132274236645e+01 -Electron-electron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_electron_profile405)_ 1.70674527727312899e+01 -Electron-electron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_electron_profile406)_ 1.70615753217664903e+01 -Electron-electron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_electron_profile407)_ 1.70556814853670673e+01 -Electron-electron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_electron_profile408)_ 1.70497719084739643e+01 -Electron-electron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_electron_profile409)_ 1.70438472717170448e+01 -Electron-electron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_electron_profile410)_ 1.70379082930797416e+01 -Electron-electron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_electron_profile411)_ 1.70319557296473967e+01 -Electron-electron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_electron_profile412)_ 1.70259903794441918e+01 -Electron-electron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_electron_profile413)_ 1.70200130833640344e+01 -Electron-electron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_electron_profile414)_ 1.70140247272012957e+01 -Electron-electron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_electron_profile415)_ 1.70080262437875973e+01 -Electron-electron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_electron_profile416)_ 1.70020186152414929e+01 -Electron-electron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_electron_profile417)_ 1.69960028753384265e+01 -Electron-electron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_electron_profile418)_ 1.69899801120089933e+01 -Electron-electron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_electron_profile419)_ 1.69839514699742118e+01 -Electron-electron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_electron_profile420)_ 1.69779181535274688e+01 -Electron-electron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_electron_profile421)_ 1.69718814294735161e+01 -Electron-electron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_electron_profile422)_ 1.69658426302360432e+01 -Electron-electron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_electron_profile423)_ 1.69598031571465633e+01 -Electron-electron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_electron_profile424)_ 1.69537644839284383e+01 -Electron-electron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_electron_profile425)_ 1.69477281603916339e+01 -Electron-electron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_electron_profile426)_ 1.69416958163553311e+01 -Electron-electron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_electron_profile427)_ 1.69356691658175045e+01 -Electron-electron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_electron_profile428)_ 1.69296500113928943e+01 -Electron-electron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_electron_profile429)_ 1.69236402490432596e+01 -Electron-electron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_electron_profile430)_ 1.69176418731268825e+01 -Electron-electron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_electron_profile431)_ 1.69116569817977904e+01 -Electron-electron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_electron_profile432)_ 1.69056877827891228e+01 -Electron-electron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_electron_profile433)_ 1.68997365996198745e+01 -Electron-electron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_electron_profile434)_ 1.68938058782698377e+01 -Electron-electron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_electron_profile435)_ 1.68878981943740598e+01 -Electron-electron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_electron_profile436)_ 1.68820162609961386e+01 -Electron-electron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_electron_profile437)_ 1.68761629370486546e+01 -Electron-electron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_electron_profile438)_ 1.68703412364406056e+01 -Electron-electron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_electron_profile439)_ 1.68645543380446910e+01 -Electron-electron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_electron_profile440)_ 1.68588055965939425e+01 -Electron-electron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_electron_profile441)_ 1.68530985546365386e+01 -Electron-electron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_electron_profile442)_ 1.68474369557023635e+01 -Electron-electron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_electron_profile443)_ 1.68418247588641243e+01 -Electron-electron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_electron_profile444)_ 1.68362661549134778e+01 -Electron-electron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_electron_profile445)_ 1.68307655844186321e+01 -Electron-electron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_electron_profile446)_ 1.68253277579881839e+01 -Electron-electron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_electron_profile447)_ 1.68199576791407353e+01 -Electron-electron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_electron_profile448)_ 1.68146606702742716e+01 -Electron-electron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_electron_profile449)_ 1.68094424023535716e+01 -Electron-electron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_electron_profile450)_ 1.68043089290945211e+01 -Electron-electron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_electron_profile451)_ 1.67992667266389333e+01 -Electron-electron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_electron_profile452)_ 1.67943227399998918e+01 -Electron-electron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_electron_profile453)_ 1.67894844379485271e+01 -Electron-electron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_electron_profile454)_ 1.67847598785517640e+01 -Electron-electron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_electron_profile455)_ 1.67801577883286761e+01 -Electron-electron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_electron_profile456)_ 1.67756876590770219e+01 -Electron-electron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_electron_profile457)_ 1.67713598680077425e+01 -Electron-electron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_electron_profile458)_ 1.67671858291999314e+01 -Electron-electron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_electron_profile459)_ 1.67631781880440833e+01 -Electron-electron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_electron_profile460)_ 1.67593510761451476e+01 -Electron-electron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_electron_profile461)_ 1.67557204537129927e+01 -Electron-electron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_electron_profile462)_ 1.67523045828890886e+01 -Electron-electron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_electron_profile463)_ 1.67491247051532710e+01 -Electron-electron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_electron_profile464)_ 1.67462060531027426e+01 -Electron-electron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_electron_profile465)_ 1.67435794457722942e+01 -Electron-electron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_electron_profile466)_ 1.67412839901048933e+01 -Electron-electron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_electron_profile467)_ 1.67393721320185485e+01 -Electron-electron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_electron_profile468)_ 1.67379206196265464e+01 -Electron-electron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_electron_profile469)_ 1.67370613738335194e+01 -Electron-electron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_electron_profile470)_ 1.67371708577298826e+01 -Electron-electron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_electron_profile471)_ 1.67110673085256884e+01 -Electron-electron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_electron_profile472)_ 1.66839152743851997e+01 -Electron-electron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_electron_profile473)_ 1.66556358286051953e+01 -Electron-electron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_electron_profile474)_ 1.66261411027551667e+01 -Electron-electron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_electron_profile475)_ 1.65953329018518438e+01 -Electron-electron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_electron_profile476)_ 1.65631010421072666e+01 -Electron-electron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_electron_profile477)_ 1.65293213419094940e+01 -Electron-electron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_electron_profile478)_ 1.64938531756093312e+01 -Electron-electron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_electron_profile479)_ 1.64565364709420301e+01 -Electron-electron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_electron_profile480)_ 1.64171879912298024e+01 -Electron-electron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_electron_profile481)_ 1.63755966879716404e+01 -Electron-electron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_electron_profile482)_ 1.63315178305290409e+01 -Electron-electron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_electron_profile483)_ 1.62846655056905405e+01 -Electron-electron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_electron_profile484)_ 1.62347029124187863e+01 -Electron-electron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_electron_profile485)_ 1.61812296259537902e+01 -Electron-electron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_electron_profile486)_ 1.61237646205131107e+01 -Electron-electron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_electron_profile487)_ 1.60617232351385368e+01 -Electron-electron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_electron_profile488)_ 1.59943852907283084e+01 -Electron-electron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_electron_profile489)_ 1.59208499391879013e+01 -Electron-electron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_electron_profile490)_ 1.58399700156424359e+01 -Electron-electron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_electron_profile491)_ 1.57502536067833105e+01 -Electron-electron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_electron_profile492)_ 1.56497109926828877e+01 -Electron-electron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_electron_profile493)_ 1.55356059967960487e+01 -Electron-electron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_electron_profile494)_ 1.54040297525156529e+01 -Electron-electron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_electron_profile495)_ 1.52491189491124253e+01 -Electron-electron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_electron_profile496)_ 1.50614901126814207e+01 -Electron-electron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_electron_profile497)_ 1.48247039401747802e+01 -Electron-electron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_electron_profile498)_ 1.45057501789659558e+01 -Electron-electron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_electron_profile499)_ 1.40208498772251744e+01 -Electron-electron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_electron_profile500)_ 1.30030271703655078e+01 -Volume_averaged_electron-deuteron_Coulomb_log_(ΛₑD)______________________ (plasma_coulomb_log_electron_deuteron_vol_avg)_ 1.77710246263724159e+01 OP -Electron-deuteron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_deuteron_profile0)_ 1.83388647885484879e+01 -Electron-deuteron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_deuteron_profile1)_ 1.83388607258434035e+01 -Electron-deuteron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_deuteron_profile2)_ 1.83388485376395352e+01 -Electron-deuteron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_deuteron_profile3)_ 1.83388282236710722e+01 -Electron-deuteron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_deuteron_profile4)_ 1.83387997834949594e+01 -Electron-deuteron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_deuteron_profile5)_ 1.83387632164909036e+01 -Electron-deuteron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_deuteron_profile6)_ 1.83387185218613169e+01 -Electron-deuteron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_deuteron_profile7)_ 1.83386656986312779e+01 -Electron-deuteron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_deuteron_profile8)_ 1.83386047456484924e+01 -Electron-deuteron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_deuteron_profile9)_ 1.83385356615832080e+01 -Electron-deuteron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_deuteron_profile10)_ 1.83384584449281540e+01 -Electron-deuteron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_deuteron_profile11)_ 1.83383730939984595e+01 -Electron-deuteron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_deuteron_profile12)_ 1.83382796069315539e+01 -Electron-deuteron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_deuteron_profile13)_ 1.83381779816870747e+01 -Electron-deuteron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_deuteron_profile14)_ 1.83380682160467430e+01 -Electron-deuteron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_deuteron_profile15)_ 1.83379503076142569e+01 -Electron-deuteron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_deuteron_profile16)_ 1.83378242538151426e+01 -Electron-deuteron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_deuteron_profile17)_ 1.83376900518966259e+01 -Electron-deuteron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_deuteron_profile18)_ 1.83375476989274730e+01 -Electron-deuteron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_deuteron_profile19)_ 1.83373971917978409e+01 -Electron-deuteron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_deuteron_profile20)_ 1.83372385272190925e+01 -Electron-deuteron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_deuteron_profile21)_ 1.83370717017236196e+01 -Electron-deuteron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_deuteron_profile22)_ 1.83368967116646644e+01 -Electron-deuteron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_deuteron_profile23)_ 1.83367135532161001e+01 -Electron-deuteron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_deuteron_profile24)_ 1.83365222223722348e+01 -Electron-deuteron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_deuteron_profile25)_ 1.83363227149475918e+01 -Electron-deuteron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_deuteron_profile26)_ 1.83361150265766639e+01 -Electron-deuteron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_deuteron_profile27)_ 1.83358991527136794e+01 -Electron-deuteron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_deuteron_profile28)_ 1.83356750886323745e+01 -Electron-deuteron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_deuteron_profile29)_ 1.83354428294256984e+01 -Electron-deuteron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_deuteron_profile30)_ 1.83352023700055646e+01 -Electron-deuteron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_deuteron_profile31)_ 1.83349537051025671e+01 -Electron-deuteron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_deuteron_profile32)_ 1.83346968292656882e+01 -Electron-deuteron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_deuteron_profile33)_ 1.83344317368619869e+01 -Electron-deuteron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_deuteron_profile34)_ 1.83341584220763210e+01 -Electron-deuteron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_deuteron_profile35)_ 1.83338768789109814e+01 -Electron-deuteron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_deuteron_profile36)_ 1.83335871011854046e+01 -Electron-deuteron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_deuteron_profile37)_ 1.83332890825358099e+01 -Electron-deuteron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_deuteron_profile38)_ 1.83329828164148374e+01 -Electron-deuteron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_deuteron_profile39)_ 1.83326682960912137e+01 -Electron-deuteron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_deuteron_profile40)_ 1.83323455146493579e+01 -Electron-deuteron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_deuteron_profile41)_ 1.83320144649890118e+01 -Electron-deuteron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_deuteron_profile42)_ 1.83316751398248527e+01 -Electron-deuteron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_deuteron_profile43)_ 1.83313275316860604e+01 -Electron-deuteron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_deuteron_profile44)_ 1.83309716329159507e+01 -Electron-deuteron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_deuteron_profile45)_ 1.83306074356715065e+01 -Electron-deuteron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_deuteron_profile46)_ 1.83302349319229840e+01 -Electron-deuteron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_deuteron_profile47)_ 1.83298541134534254e+01 -Electron-deuteron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_deuteron_profile48)_ 1.83294649718582541e+01 -Electron-deuteron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_deuteron_profile49)_ 1.83290674985447524e+01 -Electron-deuteron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_deuteron_profile50)_ 1.83286616847316459e+01 -Electron-deuteron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_deuteron_profile51)_ 1.83282475214485636e+01 -Electron-deuteron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_deuteron_profile52)_ 1.83278249995355651e+01 -Electron-deuteron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_deuteron_profile53)_ 1.83273941096426469e+01 -Electron-deuteron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_deuteron_profile54)_ 1.83269548422291884e+01 -Electron-deuteron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_deuteron_profile55)_ 1.83265071875634469e+01 -Electron-deuteron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_deuteron_profile56)_ 1.83260511357220111e+01 -Electron-deuteron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_deuteron_profile57)_ 1.83255866765892499e+01 -Electron-deuteron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_deuteron_profile58)_ 1.83251137998567479e+01 -Electron-deuteron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_deuteron_profile59)_ 1.83246324950227333e+01 -Electron-deuteron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_deuteron_profile60)_ 1.83241427513914914e+01 -Electron-deuteron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_deuteron_profile61)_ 1.83236445580727718e+01 -Electron-deuteron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_deuteron_profile62)_ 1.83231379039811770e+01 -Electron-deuteron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_deuteron_profile63)_ 1.83226227778355657e+01 -Electron-deuteron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_deuteron_profile64)_ 1.83220991681583847e+01 -Electron-deuteron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_deuteron_profile65)_ 1.83215670632750651e+01 -Electron-deuteron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_deuteron_profile66)_ 1.83210264513133438e+01 -Electron-deuteron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_deuteron_profile67)_ 1.83204773202026310e+01 -Electron-deuteron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_deuteron_profile68)_ 1.83199196576732994e+01 -Electron-deuteron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_deuteron_profile69)_ 1.83193534512560312e+01 -Electron-deuteron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_deuteron_profile70)_ 1.83187786882810997e+01 -Electron-deuteron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_deuteron_profile71)_ 1.83181953558776662e+01 -Electron-deuteron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_deuteron_profile72)_ 1.83176034409730661e+01 -Electron-deuteron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_deuteron_profile73)_ 1.83170029302920661e+01 -Electron-deuteron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_deuteron_profile74)_ 1.83163938103561357e+01 -Electron-deuteron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_deuteron_profile75)_ 1.83157760674826662e+01 -Electron-deuteron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_deuteron_profile76)_ 1.83151496877842312e+01 -Electron-deuteron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_deuteron_profile77)_ 1.83145146571677948e+01 -Electron-deuteron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_deuteron_profile78)_ 1.83138709613339117e+01 -Electron-deuteron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_deuteron_profile79)_ 1.83132185857759318e+01 -Electron-deuteron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_deuteron_profile80)_ 1.83125575157792007e+01 -Electron-deuteron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_deuteron_profile81)_ 1.83118877364202000e+01 -Electron-deuteron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_deuteron_profile82)_ 1.83112092325657301e+01 -Electron-deuteron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_deuteron_profile83)_ 1.83105219888720576e+01 -Electron-deuteron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_deuteron_profile84)_ 1.83098259897840450e+01 -Electron-deuteron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_deuteron_profile85)_ 1.83091212195342621e+01 -Electron-deuteron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_deuteron_profile86)_ 1.83084076621421268e+01 -Electron-deuteron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_deuteron_profile87)_ 1.83076853014129775e+01 -Electron-deuteron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_deuteron_profile88)_ 1.83069541209371742e+01 -Electron-deuteron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_deuteron_profile89)_ 1.83062141040891611e+01 -Electron-deuteron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_deuteron_profile90)_ 1.83054652340265207e+01 -Electron-deuteron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_deuteron_profile91)_ 1.83047074936890581e+01 -Electron-deuteron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_deuteron_profile92)_ 1.83039408657977845e+01 -Electron-deuteron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_deuteron_profile93)_ 1.83031653328539825e+01 -Electron-deuteron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_deuteron_profile94)_ 1.83023808771381944e+01 -Electron-deuteron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_deuteron_profile95)_ 1.83015874807092089e+01 -Electron-deuteron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_deuteron_profile96)_ 1.83007851254030740e+01 -Electron-deuteron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_deuteron_profile97)_ 1.82999737928320307e+01 -Electron-deuteron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_deuteron_profile98)_ 1.82991534643835081e+01 -Electron-deuteron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_deuteron_profile99)_ 1.82983241212190357e+01 -Electron-deuteron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_deuteron_profile100)_ 1.82974857442731818e+01 -Electron-deuteron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_deuteron_profile101)_ 1.82966383142524798e+01 -Electron-deuteron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_deuteron_profile102)_ 1.82957818116343169e+01 -Electron-deuteron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_deuteron_profile103)_ 1.82949162166658361e+01 -Electron-deuteron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_deuteron_profile104)_ 1.82940415093628026e+01 -Electron-deuteron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_deuteron_profile105)_ 1.82931576695084708e+01 -Electron-deuteron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_deuteron_profile106)_ 1.82922646766524259e+01 -Electron-deuteron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_deuteron_profile107)_ 1.82913625101094333e+01 -Electron-deuteron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_deuteron_profile108)_ 1.82904511489582333e+01 -Electron-deuteron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_deuteron_profile109)_ 1.82895305720403840e+01 -Electron-deuteron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_deuteron_profile110)_ 1.82886007579590029e+01 -Electron-deuteron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_deuteron_profile111)_ 1.82876616850776053e+01 -Electron-deuteron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_deuteron_profile112)_ 1.82867133315188219e+01 -Electron-deuteron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_deuteron_profile113)_ 1.82857556751631591e+01 -Electron-deuteron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_deuteron_profile114)_ 1.82847886936477479e+01 -Electron-deuteron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_deuteron_profile115)_ 1.82838123643650512e+01 -Electron-deuteron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_deuteron_profile116)_ 1.82828266644615773e+01 -Electron-deuteron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_deuteron_profile117)_ 1.82818315708365695e+01 -Electron-deuteron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_deuteron_profile118)_ 1.82808270601406662e+01 -Electron-deuteron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_deuteron_profile119)_ 1.82798131087746079e+01 -Electron-deuteron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_deuteron_profile120)_ 1.82787896928878268e+01 -Electron-deuteron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_deuteron_profile121)_ 1.82777567883771290e+01 -Electron-deuteron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_deuteron_profile122)_ 1.82767143708852835e+01 -Electron-deuteron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_deuteron_profile123)_ 1.82756624157996264e+01 -Electron-deuteron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_deuteron_profile124)_ 1.82746008982506645e+01 -Electron-deuteron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_deuteron_profile125)_ 1.82735297931106366e+01 -Electron-deuteron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_deuteron_profile126)_ 1.82724490749920676e+01 -Electron-deuteron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_deuteron_profile127)_ 1.82713587182463080e+01 -Electron-deuteron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_deuteron_profile128)_ 1.82702586969620882e+01 -Electron-deuteron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_deuteron_profile129)_ 1.82691489849639943e+01 -Electron-deuteron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_deuteron_profile130)_ 1.82680295558109691e+01 -Electron-deuteron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_deuteron_profile131)_ 1.82669003827948195e+01 -Electron-deuteron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_deuteron_profile132)_ 1.82657614389386502e+01 -Electron-deuteron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_deuteron_profile133)_ 1.82646126969953322e+01 -Electron-deuteron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_deuteron_profile134)_ 1.82634541294459183e+01 -Electron-deuteron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_deuteron_profile135)_ 1.82622857084980730e+01 -Electron-deuteron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_deuteron_profile136)_ 1.82611074060844842e+01 -Electron-deuteron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_deuteron_profile137)_ 1.82599191938612115e+01 -Electron-deuteron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_deuteron_profile138)_ 1.82587210432061013e+01 -Electron-deuteron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_deuteron_profile139)_ 1.82575129252171138e+01 -Electron-deuteron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_deuteron_profile140)_ 1.82562948107106493e+01 -Electron-deuteron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_deuteron_profile141)_ 1.82550666702199038e+01 -Electron-deuteron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_deuteron_profile142)_ 1.82538284739931491e+01 -Electron-deuteron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_deuteron_profile143)_ 1.82525801919920241e+01 -Electron-deuteron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_deuteron_profile144)_ 1.82513217938898222e+01 -Electron-deuteron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_deuteron_profile145)_ 1.82500532490697189e+01 -Electron-deuteron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_deuteron_profile146)_ 1.82487745266230519e+01 -Electron-deuteron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_deuteron_profile147)_ 1.82474855953475092e+01 -Electron-deuteron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_deuteron_profile148)_ 1.82461864237453462e+01 -Electron-deuteron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_deuteron_profile149)_ 1.82448769800215835e+01 -Electron-deuteron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_deuteron_profile150)_ 1.82435572320821855e+01 -Electron-deuteron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_deuteron_profile151)_ 1.82422271475321942e+01 -Electron-deuteron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_deuteron_profile152)_ 1.82408866936739074e+01 -Electron-deuteron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_deuteron_profile153)_ 1.82395358375049526e+01 -Electron-deuteron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_deuteron_profile154)_ 1.82381745457164541e+01 -Electron-deuteron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_deuteron_profile155)_ 1.82368027846910756e+01 -Electron-deuteron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_deuteron_profile156)_ 1.82354205205011226e+01 -Electron-deuteron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_deuteron_profile157)_ 1.82340277189065851e+01 -Electron-deuteron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_deuteron_profile158)_ 1.82326243453532015e+01 -Electron-deuteron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_deuteron_profile159)_ 1.82312103649704476e+01 -Electron-deuteron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_deuteron_profile160)_ 1.82297857425695824e+01 -Electron-deuteron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_deuteron_profile161)_ 1.82283504426416236e+01 -Electron-deuteron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_deuteron_profile162)_ 1.82269044293553115e+01 -Electron-deuteron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_deuteron_profile163)_ 1.82254476665550982e+01 -Electron-deuteron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_deuteron_profile164)_ 1.82239801177590515e+01 -Electron-deuteron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_deuteron_profile165)_ 1.82225017461568193e+01 -Electron-deuteron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_deuteron_profile166)_ 1.82210125146075050e+01 -Electron-deuteron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_deuteron_profile167)_ 1.82195123856375965e+01 -Electron-deuteron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_deuteron_profile168)_ 1.82180013214388055e+01 -Electron-deuteron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_deuteron_profile169)_ 1.82164792838659508e+01 -Electron-deuteron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_deuteron_profile170)_ 1.82149462344348017e+01 -Electron-deuteron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_deuteron_profile171)_ 1.82134021343199031e+01 -Electron-deuteron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_deuteron_profile172)_ 1.82118469443523878e+01 -Electron-deuteron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_deuteron_profile173)_ 1.82102806250177665e+01 -Electron-deuteron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_deuteron_profile174)_ 1.82087031364537175e+01 -Electron-deuteron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_deuteron_profile175)_ 1.82071144384478565e+01 -Electron-deuteron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_deuteron_profile176)_ 1.82055144904354620e+01 -Electron-deuteron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_deuteron_profile177)_ 1.82039032514972483e+01 -Electron-deuteron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_deuteron_profile178)_ 1.82022806803570276e+01 -Electron-deuteron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_deuteron_profile179)_ 1.82006467353794825e+01 -Electron-deuteron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_deuteron_profile180)_ 1.81990013745677928e+01 -Electron-deuteron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_deuteron_profile181)_ 1.81973445555613402e+01 -Electron-deuteron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_deuteron_profile182)_ 1.81956762356333712e+01 -Electron-deuteron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_deuteron_profile183)_ 1.81939963716886162e+01 -Electron-deuteron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_deuteron_profile184)_ 1.81923049202609448e+01 -Electron-deuteron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_deuteron_profile185)_ 1.81906018375109646e+01 -Electron-deuteron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_deuteron_profile186)_ 1.81888870792236368e+01 -Electron-deuteron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_deuteron_profile187)_ 1.81871606008058428e+01 -Electron-deuteron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_deuteron_profile188)_ 1.81854223572839935e+01 -Electron-deuteron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_deuteron_profile189)_ 1.81836723033015524e+01 -Electron-deuteron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_deuteron_profile190)_ 1.81819103931166204e+01 -Electron-deuteron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_deuteron_profile191)_ 1.81801365805994450e+01 -Electron-deuteron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_deuteron_profile192)_ 1.81783508192299585e+01 -Electron-deuteron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_deuteron_profile193)_ 1.81765530620952909e+01 -Electron-deuteron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_deuteron_profile194)_ 1.81747432618872615e+01 -Electron-deuteron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_deuteron_profile195)_ 1.81729213708998927e+01 -Electron-deuteron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_deuteron_profile196)_ 1.81710873410268547e+01 -Electron-deuteron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_deuteron_profile197)_ 1.81692411237589653e+01 -Electron-deuteron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_deuteron_profile198)_ 1.81673826701816310e+01 -Electron-deuteron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_deuteron_profile199)_ 1.81655119309723112e+01 -Electron-deuteron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_deuteron_profile200)_ 1.81636288563979456e+01 -Electron-deuteron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_deuteron_profile201)_ 1.81617333963123961e+01 -Electron-deuteron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_deuteron_profile202)_ 1.81598255001538718e+01 -Electron-deuteron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_deuteron_profile203)_ 1.81579051169423487e+01 -Electron-deuteron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_deuteron_profile204)_ 1.81559721952769699e+01 -Electron-deuteron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_deuteron_profile205)_ 1.81540266833334663e+01 -Electron-deuteron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_deuteron_profile206)_ 1.81520685288615482e+01 -Electron-deuteron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_deuteron_profile207)_ 1.81500976791822879e+01 -Electron-deuteron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_deuteron_profile208)_ 1.81481140811855575e+01 -Electron-deuteron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_deuteron_profile209)_ 1.81461176813273433e+01 -Electron-deuteron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_deuteron_profile210)_ 1.81441084256272021e+01 -Electron-deuteron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_deuteron_profile211)_ 1.81420862596655965e+01 -Electron-deuteron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_deuteron_profile212)_ 1.81400511285813089e+01 -Electron-deuteron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_deuteron_profile213)_ 1.81380029770688047e+01 -Electron-deuteron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_deuteron_profile214)_ 1.81359417493756148e+01 -Electron-deuteron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_deuteron_profile215)_ 1.81338673892997448e+01 -Electron-deuteron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_deuteron_profile216)_ 1.81317798401870434e+01 -Electron-deuteron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_deuteron_profile217)_ 1.81296790449285865e+01 -Electron-deuteron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_deuteron_profile218)_ 1.81275649459580954e+01 -Electron-deuteron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_deuteron_profile219)_ 1.81254374852493392e+01 -Electron-deuteron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_deuteron_profile220)_ 1.81232966043135271e+01 -Electron-deuteron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_deuteron_profile221)_ 1.81211422441967436e+01 -Electron-deuteron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_deuteron_profile222)_ 1.81189743454773762e+01 -Electron-deuteron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_deuteron_profile223)_ 1.81167928482635432e+01 -Electron-deuteron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_deuteron_profile224)_ 1.81145976921905678e+01 -Electron-deuteron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_deuteron_profile225)_ 1.81123888164184201e+01 -Electron-deuteron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_deuteron_profile226)_ 1.81101661596292303e+01 -Electron-deuteron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_deuteron_profile227)_ 1.81079296600247481e+01 -Electron-deuteron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_deuteron_profile228)_ 1.81056792553239028e+01 -Electron-deuteron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_deuteron_profile229)_ 1.81034148827603154e+01 -Electron-deuteron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_deuteron_profile230)_ 1.81011364790798659e+01 -Electron-deuteron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_deuteron_profile231)_ 1.80988439805382804e+01 -Electron-deuteron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_deuteron_profile232)_ 1.80965373228987367e+01 -Electron-deuteron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_deuteron_profile233)_ 1.80942164414295057e+01 -Electron-deuteron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_deuteron_profile234)_ 1.80918812709016414e+01 -Electron-deuteron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_deuteron_profile235)_ 1.80895317455866333e+01 -Electron-deuteron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_deuteron_profile236)_ 1.80871677992541926e+01 -Electron-deuteron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_deuteron_profile237)_ 1.80847893651699856e+01 -Electron-deuteron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_deuteron_profile238)_ 1.80823963760934809e+01 -Electron-deuteron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_deuteron_profile239)_ 1.80799887642757753e+01 -Electron-deuteron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_deuteron_profile240)_ 1.80775664614575007e+01 -Electron-deuteron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_deuteron_profile241)_ 1.80751293988667712e+01 -Electron-deuteron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_deuteron_profile242)_ 1.80726775072171790e+01 -Electron-deuteron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_deuteron_profile243)_ 1.80702107167058443e+01 -Electron-deuteron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_deuteron_profile244)_ 1.80677289570114930e+01 -Electron-deuteron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_deuteron_profile245)_ 1.80652321572926731e+01 -Electron-deuteron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_deuteron_profile246)_ 1.80627202461859362e+01 -Electron-deuteron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_deuteron_profile247)_ 1.80601931518041354e+01 -Electron-deuteron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_deuteron_profile248)_ 1.80576508017348161e+01 -Electron-deuteron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_deuteron_profile249)_ 1.80550931230385991e+01 -Electron-deuteron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_deuteron_profile250)_ 1.80525200422477532e+01 -Electron-deuteron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_deuteron_profile251)_ 1.80499314853647412e+01 -Electron-deuteron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_deuteron_profile252)_ 1.80473273778609311e+01 -Electron-deuteron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_deuteron_profile253)_ 1.80447076446753343e+01 -Electron-deuteron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_deuteron_profile254)_ 1.80420722102134974e+01 -Electron-deuteron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_deuteron_profile255)_ 1.80394209983464400e+01 -Electron-deuteron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_deuteron_profile256)_ 1.80367539324097521e+01 -Electron-deuteron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_deuteron_profile257)_ 1.80340709352027311e+01 -Electron-deuteron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_deuteron_profile258)_ 1.80313719289877028e+01 -Electron-deuteron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_deuteron_profile259)_ 1.80286568354894072e+01 -Electron-deuteron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_deuteron_profile260)_ 1.80259255758945578e+01 -Electron-deuteron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_deuteron_profile261)_ 1.80231780708514826e+01 -Electron-deuteron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_deuteron_profile262)_ 1.80204142404699468e+01 -Electron-deuteron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_deuteron_profile263)_ 1.80176340043210814e+01 -Electron-deuteron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_deuteron_profile264)_ 1.80148372814375080e+01 -Electron-deuteron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_deuteron_profile265)_ 1.80120239903135690e+01 -Electron-deuteron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_deuteron_profile266)_ 1.80091940489057549e+01 -Electron-deuteron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_deuteron_profile267)_ 1.80063473746333038e+01 -Electron-deuteron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_deuteron_profile268)_ 1.80034838843789622e+01 -Electron-deuteron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_deuteron_profile269)_ 1.80006034944899618e+01 -Electron-deuteron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_deuteron_profile270)_ 1.79977061207791387e+01 -Electron-deuteron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_deuteron_profile271)_ 1.79947916785263509e+01 -Electron-deuteron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_deuteron_profile272)_ 1.79918600824799846e+01 -Electron-deuteron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_deuteron_profile273)_ 1.79889112468588088e+01 -Electron-deuteron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_deuteron_profile274)_ 1.79859450853539684e+01 -Electron-deuteron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_deuteron_profile275)_ 1.79829615111312791e+01 -Electron-deuteron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_deuteron_profile276)_ 1.79799604368337427e+01 -Electron-deuteron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_deuteron_profile277)_ 1.79769417745843327e+01 -Electron-deuteron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_deuteron_profile278)_ 1.79739054359890567e+01 -Electron-deuteron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_deuteron_profile279)_ 1.79708513321403345e+01 -Electron-deuteron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_deuteron_profile280)_ 1.79677793736206262e+01 -Electron-deuteron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_deuteron_profile281)_ 1.79646894705064035e+01 -Electron-deuteron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_deuteron_profile282)_ 1.79615815323724277e+01 -Electron-deuteron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_deuteron_profile283)_ 1.79584554682964068e+01 -Electron-deuteron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_deuteron_profile284)_ 1.79553111868639483e+01 -Electron-deuteron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_deuteron_profile285)_ 1.79521485961739202e+01 -Electron-deuteron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_deuteron_profile286)_ 1.79489676038441850e+01 -Electron-deuteron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_deuteron_profile287)_ 1.79457681170177281e+01 -Electron-deuteron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_deuteron_profile288)_ 1.79425500423692021e+01 -Electron-deuteron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_deuteron_profile289)_ 1.79393132861119291e+01 -Electron-deuteron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_deuteron_profile290)_ 1.79360577540052901e+01 -Electron-deuteron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_deuteron_profile291)_ 1.79327833513626764e+01 -Electron-deuteron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_deuteron_profile292)_ 1.79294899830598453e+01 -Electron-deuteron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_deuteron_profile293)_ 1.79261775535438268e+01 -Electron-deuteron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_deuteron_profile294)_ 1.79228459668423667e+01 -Electron-deuteron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_deuteron_profile295)_ 1.79194951265738780e+01 -Electron-deuteron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_deuteron_profile296)_ 1.79161249359580310e+01 -Electron-deuteron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_deuteron_profile297)_ 1.79127352978268810e+01 -Electron-deuteron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_deuteron_profile298)_ 1.79093261146366629e+01 -Electron-deuteron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_deuteron_profile299)_ 1.79058972884801761e+01 -Electron-deuteron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_deuteron_profile300)_ 1.79024487210999332e+01 -Electron-deuteron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_deuteron_profile301)_ 1.78989803139019124e+01 -Electron-deuteron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_deuteron_profile302)_ 1.78954919679701092e+01 -Electron-deuteron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_deuteron_profile303)_ 1.78919835840818031e+01 -Electron-deuteron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_deuteron_profile304)_ 1.78884550627236685e+01 -Electron-deuteron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_deuteron_profile305)_ 1.78849063041086254e+01 -Electron-deuteron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_deuteron_profile306)_ 1.78813372081936208e+01 -Electron-deuteron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_deuteron_profile307)_ 1.78777476746982877e+01 -Electron-deuteron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_deuteron_profile308)_ 1.78741376031244847e+01 -Electron-deuteron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_deuteron_profile309)_ 1.78705068927768487e+01 -Electron-deuteron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_deuteron_profile310)_ 1.78668554427843134e+01 -Electron-deuteron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_deuteron_profile311)_ 1.78631831521227227e+01 -Electron-deuteron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_deuteron_profile312)_ 1.78594899196384667e+01 -Electron-deuteron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_deuteron_profile313)_ 1.78557756440732902e+01 -Electron-deuteron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_deuteron_profile314)_ 1.78520402240902740e+01 -Electron-deuteron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_deuteron_profile315)_ 1.78482835583010093e+01 -Electron-deuteron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_deuteron_profile316)_ 1.78445055452940657e+01 -Electron-deuteron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_deuteron_profile317)_ 1.78407060836647986e+01 -Electron-deuteron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_deuteron_profile318)_ 1.78368850720465204e+01 -Electron-deuteron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_deuteron_profile319)_ 1.78330424091430650e+01 -Electron-deuteron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_deuteron_profile320)_ 1.78291779937629400e+01 -Electron-deuteron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_deuteron_profile321)_ 1.78252917248549103e+01 -Electron-deuteron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_deuteron_profile322)_ 1.78213835015453057e+01 -Electron-deuteron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_deuteron_profile323)_ 1.78174532231769440e+01 -Electron-deuteron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_deuteron_profile324)_ 1.78135007893498134e+01 -Electron-deuteron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_deuteron_profile325)_ 1.78095260999636125e+01 -Electron-deuteron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_deuteron_profile326)_ 1.78055290552621166e+01 -Electron-deuteron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_deuteron_profile327)_ 1.78015095558795799e+01 -Electron-deuteron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_deuteron_profile328)_ 1.77974675028891482e+01 -Electron-deuteron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_deuteron_profile329)_ 1.77934027978534495e+01 -Electron-deuteron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_deuteron_profile330)_ 1.77893153428773338e+01 -Electron-deuteron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_deuteron_profile331)_ 1.77852050406630191e+01 -Electron-deuteron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_deuteron_profile332)_ 1.77810717945675556e+01 -Electron-deuteron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_deuteron_profile333)_ 1.77769155086628601e+01 -Electron-deuteron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_deuteron_profile334)_ 1.77727360877983784e+01 -Electron-deuteron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_deuteron_profile335)_ 1.77685334376663207e+01 -Electron-deuteron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_deuteron_profile336)_ 1.77643074648699333e+01 -Electron-deuteron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_deuteron_profile337)_ 1.77600580769945573e+01 -Electron-deuteron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_deuteron_profile338)_ 1.77557851826818123e+01 -Electron-deuteron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_deuteron_profile339)_ 1.77514886917069852e+01 -Electron-deuteron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_deuteron_profile340)_ 1.77471685150596912e+01 -Electron-deuteron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_deuteron_profile341)_ 1.77428245650280516e+01 -Electron-deuteron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_deuteron_profile342)_ 1.77384567552864709e+01 -Electron-deuteron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_deuteron_profile343)_ 1.77340650009871048e+01 -Electron-deuteron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_deuteron_profile344)_ 1.77296492188553394e+01 -Electron-deuteron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_deuteron_profile345)_ 1.77252093272892601e+01 -Electron-deuteron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_deuteron_profile346)_ 1.77207452464633839e+01 -Electron-deuteron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_deuteron_profile347)_ 1.77162568984368924e+01 -Electron-deuteron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_deuteron_profile348)_ 1.77117442072663067e+01 -Electron-deuteron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_deuteron_profile349)_ 1.77072070991231492e+01 -Electron-deuteron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_deuteron_profile350)_ 1.77026455024164484e+01 -Electron-deuteron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_deuteron_profile351)_ 1.76980593479205730e+01 -Electron-deuteron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_deuteron_profile352)_ 1.76934485689084120e+01 -Electron-deuteron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_deuteron_profile353)_ 1.76888131012902718e+01 -Electron-deuteron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_deuteron_profile354)_ 1.76841528837586353e+01 -Electron-deuteron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_deuteron_profile355)_ 1.76794678579391089e+01 -Electron-deuteron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_deuteron_profile356)_ 1.76747579685477483e+01 -Electron-deuteron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_deuteron_profile357)_ 1.76700231635550864e+01 -Electron-deuteron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_deuteron_profile358)_ 1.76652633943571402e+01 -Electron-deuteron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_deuteron_profile359)_ 1.76604786159536715e+01 -Electron-deuteron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_deuteron_profile360)_ 1.76556687871340152e+01 -Electron-deuteron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_deuteron_profile361)_ 1.76508338706708976e+01 -Electron-deuteron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_deuteron_profile362)_ 1.76459738335223548e+01 -Electron-deuteron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_deuteron_profile363)_ 1.76410886470424266e+01 -Electron-deuteron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_deuteron_profile364)_ 1.76361782872006891e+01 -Electron-deuteron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_deuteron_profile365)_ 1.76312427348112593e+01 -Electron-deuteron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_deuteron_profile366)_ 1.76262819757714944e+01 -Electron-deuteron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_deuteron_profile367)_ 1.76212960013109701e+01 -Electron-deuteron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_deuteron_profile368)_ 1.76162848082510308e+01 -Electron-deuteron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_deuteron_profile369)_ 1.76112483992755529e+01 -Electron-deuteron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_deuteron_profile370)_ 1.76061867832132322e+01 -Electron-deuteron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_deuteron_profile371)_ 1.76010999753320654e+01 -Electron-deuteron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_deuteron_profile372)_ 1.75959879976464251e+01 -Electron-deuteron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_deuteron_profile373)_ 1.75908508792374505e+01 -Electron-deuteron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_deuteron_profile374)_ 1.75856886565871413e+01 -Electron-deuteron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_deuteron_profile375)_ 1.75805013739269853e+01 -Electron-deuteron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_deuteron_profile376)_ 1.75752890836016604e+01 -Electron-deuteron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_deuteron_profile377)_ 1.75700518464484041e+01 -Electron-deuteron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_deuteron_profile378)_ 1.75647897321929989e+01 -Electron-deuteron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_deuteron_profile379)_ 1.75595028198629315e+01 -Electron-deuteron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_deuteron_profile380)_ 1.75541911982185113e+01 -Electron-deuteron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_deuteron_profile381)_ 1.75488549662029349e+01 -Electron-deuteron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_deuteron_profile382)_ 1.75434942334120230e+01 -Electron-deuteron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_deuteron_profile383)_ 1.75381091205845330e+01 -Electron-deuteron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_deuteron_profile384)_ 1.75326997601141592e+01 -Electron-deuteron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_deuteron_profile385)_ 1.75272662965839920e+01 -Electron-deuteron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_deuteron_profile386)_ 1.75218088873247773e+01 -Electron-deuteron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_deuteron_profile387)_ 1.75163277029978239e+01 -Electron-deuteron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_deuteron_profile388)_ 1.75108229282039183e+01 -Electron-deuteron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_deuteron_profile389)_ 1.75052947621193979e+01 -Electron-deuteron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_deuteron_profile390)_ 1.74997434191607084e+01 -Electron-deuteron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_deuteron_profile391)_ 1.74941691296788520e+01 -Electron-deuteron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_deuteron_profile392)_ 1.74885721406851005e+01 -Electron-deuteron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_deuteron_profile393)_ 1.74829527166095637e+01 -Electron-deuteron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_deuteron_profile394)_ 1.74773111400942547e+01 -Electron-deuteron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_deuteron_profile395)_ 1.74716477128222536e+01 -Electron-deuteron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_deuteron_profile396)_ 1.74659627563848758e+01 -Electron-deuteron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_deuteron_profile397)_ 1.74602566131887471e+01 -Electron-deuteron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_deuteron_profile398)_ 1.74545296474047475e+01 -Electron-deuteron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_deuteron_profile399)_ 1.74487822459609774e+01 -Electron-deuteron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_deuteron_profile400)_ 1.74430148195821317e+01 -Electron-deuteron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_deuteron_profile401)_ 1.74372278038775086e+01 -Electron-deuteron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_deuteron_profile402)_ 1.74314216604804244e+01 -Electron-deuteron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_deuteron_profile403)_ 1.74255968782415422e+01 -Electron-deuteron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_deuteron_profile404)_ 1.74197539744791925e+01 -Electron-deuteron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_deuteron_profile405)_ 1.74138934962897061e+01 -Electron-deuteron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_deuteron_profile406)_ 1.74080160219210569e+01 -Electron-deuteron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_deuteron_profile407)_ 1.74021221622133382e+01 -Electron-deuteron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_deuteron_profile408)_ 1.73962125621098558e+01 -Electron-deuteron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_deuteron_profile409)_ 1.73902879022428642e+01 -Electron-deuteron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_deuteron_profile410)_ 1.73843489005982512e+01 -Electron-deuteron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_deuteron_profile411)_ 1.73783963142638740e+01 -Electron-deuteron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_deuteron_profile412)_ 1.73724309412664581e+01 -Electron-deuteron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_deuteron_profile413)_ 1.73664536225025472e+01 -Electron-deuteron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_deuteron_profile414)_ 1.73604652437691804e+01 -Electron-deuteron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_deuteron_profile415)_ 1.73544667379007329e+01 -Electron-deuteron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_deuteron_profile416)_ 1.73484590870185542e+01 -Electron-deuteron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_deuteron_profile417)_ 1.73424433249009766e+01 -Electron-deuteron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_deuteron_profile418)_ 1.73364205394815336e+01 -Electron-deuteron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_deuteron_profile419)_ 1.73303918754842705e+01 -Electron-deuteron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_deuteron_profile420)_ 1.73243585372056756e+01 -Electron-deuteron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_deuteron_profile421)_ 1.73183217914536947e+01 -Electron-deuteron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_deuteron_profile422)_ 1.73122829706552714e+01 -Electron-deuteron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_deuteron_profile423)_ 1.73062434761452941e+01 -Electron-deuteron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_deuteron_profile424)_ 1.73002047816505744e+01 -Electron-deuteron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_deuteron_profile425)_ 1.72941684369846413e+01 -Electron-deuteron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_deuteron_profile426)_ 1.72881360719703352e+01 -Electron-deuteron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_deuteron_profile427)_ 1.72821094006094000e+01 -Electron-deuteron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_deuteron_profile428)_ 1.72760902255204805e+01 -Electron-deuteron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_deuteron_profile429)_ 1.72700804426693431e+01 -Electron-deuteron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_deuteron_profile430)_ 1.72640820464184230e+01 -Electron-deuteron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_deuteron_profile431)_ 1.72580971349260501e+01 -Electron-deuteron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_deuteron_profile432)_ 1.72521279159297798e+01 -Electron-deuteron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_deuteron_profile433)_ 1.72461767129532220e+01 -Electron-deuteron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_deuteron_profile434)_ 1.72402459719809400e+01 -Electron-deuteron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_deuteron_profile435)_ 1.72343382686529019e+01 -Electron-deuteron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_deuteron_profile436)_ 1.72284563160378816e+01 -Electron-deuteron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_deuteron_profile437)_ 1.72226029730537817e+01 -Electron-deuteron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_deuteron_profile438)_ 1.72167812536151814e+01 -Electron-deuteron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_deuteron_profile439)_ 1.72109943366005957e+01 -Electron-deuteron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_deuteron_profile440)_ 1.72052455767491139e+01 -Electron-deuteron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_deuteron_profile441)_ 1.71995385166152595e+01 -Electron-deuteron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_deuteron_profile442)_ 1.71938768997355744e+01 -Electron-deuteron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_deuteron_profile443)_ 1.71882646851897434e+01 -Electron-deuteron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_deuteron_profile444)_ 1.71827060637767630e+01 -Electron-deuteron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_deuteron_profile445)_ 1.71772054760725901e+01 -Electron-deuteron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_deuteron_profile446)_ 1.71717676326939603e+01 -Electron-deuteron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_deuteron_profile447)_ 1.71663975371681445e+01 -Electron-deuteron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_deuteron_profile448)_ 1.71611005119022977e+01 -Electron-deuteron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_deuteron_profile449)_ 1.71558822278709435e+01 -Electron-deuteron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_deuteron_profile450)_ 1.71507487388004130e+01 -Electron-deuteron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_deuteron_profile451)_ 1.71457065208436497e+01 -Electron-deuteron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_deuteron_profile452)_ 1.71407625190257349e+01 -Electron-deuteron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_deuteron_profile453)_ 1.71359242021307416e+01 -Electron-deuteron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_deuteron_profile454)_ 1.71311996282396066e+01 -Electron-deuteron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_deuteron_profile455)_ 1.71265975238867050e+01 -Electron-deuteron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_deuteron_profile456)_ 1.71221273808865320e+01 -Electron-deuteron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_deuteron_profile457)_ 1.71177995764684745e+01 -Electron-deuteron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_deuteron_profile458)_ 1.71136255247321678e+01 -Electron-deuteron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_deuteron_profile459)_ 1.71096178710910607e+01 -Electron-deuteron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_deuteron_profile460)_ 1.71057907471761261e+01 -Electron-deuteron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_deuteron_profile461)_ 1.71021601132270433e+01 -Electron-deuteron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_deuteron_profile462)_ 1.70987442314198823e+01 -Electron-deuteron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_deuteron_profile463)_ 1.70955643432754236e+01 -Electron-deuteron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_deuteron_profile464)_ 1.70926456814403522e+01 -Electron-deuteron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_deuteron_profile465)_ 1.70900190650110133e+01 -Electron-deuteron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_deuteron_profile466)_ 1.70877236010100191e+01 -Electron-deuteron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_deuteron_profile467)_ 1.70858117354642687e+01 -Electron-deuteron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_deuteron_profile468)_ 1.70843602166495181e+01 -Electron-deuteron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_deuteron_profile469)_ 1.70835009657550749e+01 -Electron-deuteron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_deuteron_profile470)_ 1.70836104466990264e+01 -Electron-deuteron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_deuteron_profile471)_ 1.70575068253065680e+01 -Electron-deuteron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_deuteron_profile472)_ 1.70303547189861035e+01 -Electron-deuteron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_deuteron_profile473)_ 1.70020752010344189e+01 -Electron-deuteron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_deuteron_profile474)_ 1.69725804030209950e+01 -Electron-deuteron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_deuteron_profile475)_ 1.69417721299625903e+01 -Electron-deuteron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_deuteron_profile476)_ 1.69095401980712268e+01 -Electron-deuteron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_deuteron_profile477)_ 1.68757604257349847e+01 -Electron-deuteron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_deuteron_profile478)_ 1.68402921873046587e+01 -Electron-deuteron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_deuteron_profile479)_ 1.68029754105155114e+01 -Electron-deuteron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_deuteron_profile480)_ 1.67636268586897650e+01 -Electron-deuteron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_deuteron_profile481)_ 1.67220354833264082e+01 -Electron-deuteron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_deuteron_profile482)_ 1.66779565537869594e+01 -Electron-deuteron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_deuteron_profile483)_ 1.66311041568599300e+01 -Electron-deuteron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_deuteron_profile484)_ 1.65811414915079993e+01 -Electron-deuteron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_deuteron_profile485)_ 1.65276681329711614e+01 -Electron-deuteron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_deuteron_profile486)_ 1.64702030554669783e+01 -Electron-deuteron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_deuteron_profile487)_ 1.64081615980372675e+01 -Electron-deuteron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_deuteron_profile488)_ 1.63408235815802598e+01 -Electron-deuteron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_deuteron_profile489)_ 1.62672881580014241e+01 -Electron-deuteron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_deuteron_profile490)_ 1.61864081624258915e+01 -Electron-deuteron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_deuteron_profile491)_ 1.60966916815450851e+01 -Electron-deuteron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_deuteron_profile492)_ 1.59961489954313461e+01 -Electron-deuteron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_deuteron_profile493)_ 1.58820439275395788e+01 -Electron-deuteron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_deuteron_profile494)_ 1.57504676112626942e+01 -Electron-deuteron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_deuteron_profile495)_ 1.55955567358712983e+01 -Electron-deuteron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_deuteron_profile496)_ 1.54079278274605418e+01 -Electron-deuteron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_deuteron_profile497)_ 1.51711415829825036e+01 -Electron-deuteron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_deuteron_profile498)_ 1.48521877498107422e+01 -Electron-deuteron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_deuteron_profile499)_ 1.43672873761153443e+01 -Electron-deuteron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_deuteron_profile500)_ 1.33494645973096464e+01 -Volume_averaged_electron-triton_Coulomb_log_(ΛₑT)________________________ (plasma_coulomb_log_electron_triton_vol_avg)_ 1.77710682156161894e+01 OP -Electron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_electron_triton_profile0)_ 1.83389065988705831e+01 -Electron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_electron_triton_profile1)_ 1.83389025361833902e+01 -Electron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_electron_triton_profile2)_ 1.83388903480332175e+01 -Electron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_electron_triton_profile3)_ 1.83388700341542368e+01 -Electron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_electron_triton_profile4)_ 1.83388415941033998e+01 -Electron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_electron_triton_profile5)_ 1.83388050272604097e+01 -Electron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_electron_triton_profile6)_ 1.83387603328276789e+01 -Electron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_electron_triton_profile7)_ 1.83387075098302788e+01 -Electron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_electron_triton_profile8)_ 1.83386465571159185e+01 -Electron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_electron_triton_profile9)_ 1.83385774733548352e+01 -Electron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_electron_triton_profile10)_ 1.83385002570397546e+01 -Electron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_electron_triton_profile11)_ 1.83384149064858093e+01 -Electron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_electron_triton_profile12)_ 1.83383214198304216e+01 -Electron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_electron_triton_profile13)_ 1.83382197950332184e+01 -Electron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_electron_triton_profile14)_ 1.83381100298759208e+01 -Electron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_electron_triton_profile15)_ 1.83379921219622126e+01 -Electron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_electron_triton_profile16)_ 1.83378660687176271e+01 -Electron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_electron_triton_profile17)_ 1.83377318673893690e+01 -Electron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_electron_triton_profile18)_ 1.83375895150462043e+01 -Electron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_electron_triton_profile19)_ 1.83374390085782792e+01 -Electron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_electron_triton_profile20)_ 1.83372803446969499e+01 -Electron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_electron_triton_profile21)_ 1.83371135199346043e+01 -Electron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_electron_triton_profile22)_ 1.83369385306444634e+01 -Electron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_electron_triton_profile23)_ 1.83367553730004005e+01 -Electron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_electron_triton_profile24)_ 1.83365640429967129e+01 -Electron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_electron_triton_profile25)_ 1.83363645364479062e+01 -Electron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_electron_triton_profile26)_ 1.83361568489884661e+01 -Electron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_electron_triton_profile27)_ 1.83359409760726102e+01 -Electron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_electron_triton_profile28)_ 1.83357169129740640e+01 -Electron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_electron_triton_profile29)_ 1.83354846547857626e+01 -Electron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_electron_triton_profile30)_ 1.83352441964196053e+01 -Electron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_electron_triton_profile31)_ 1.83349955326061753e+01 -Electron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_electron_triton_profile32)_ 1.83347386578944302e+01 -Electron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_electron_triton_profile33)_ 1.83344735666514325e+01 -Electron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_electron_triton_profile34)_ 1.83342002530620150e+01 -Electron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_electron_triton_profile35)_ 1.83339187111284545e+01 -Electron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_electron_triton_profile36)_ 1.83336289346701697e+01 -Electron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_electron_triton_profile37)_ 1.83333309173233658e+01 -Electron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_electron_triton_profile38)_ 1.83330246525406686e+01 -Electron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_electron_triton_profile39)_ 1.83327101335907834e+01 -Electron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_electron_triton_profile40)_ 1.83323873535581114e+01 -Electron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_electron_triton_profile41)_ 1.83320563053423840e+01 -Electron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_electron_triton_profile42)_ 1.83317169816582499e+01 -Electron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_electron_triton_profile43)_ 1.83313693750348783e+01 -Electron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_electron_triton_profile44)_ 1.83310134778155565e+01 -Electron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_electron_triton_profile45)_ 1.83306492821572569e+01 -Electron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_electron_triton_profile46)_ 1.83302767800302107e+01 -Electron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_electron_triton_profile47)_ 1.83298959632174423e+01 -Electron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_electron_triton_profile48)_ 1.83295068233143432e+01 -Electron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_electron_triton_profile49)_ 1.83291093517281922e+01 -Electron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_electron_triton_profile50)_ 1.83287035396776723e+01 -Electron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_electron_triton_profile51)_ 1.83282893781924052e+01 -Electron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_electron_triton_profile52)_ 1.83278668581124222e+01 -Electron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_electron_triton_profile53)_ 1.83274359700876950e+01 -Electron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_electron_triton_profile54)_ 1.83269967045775815e+01 -Electron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_electron_triton_profile55)_ 1.83265490518503107e+01 -Electron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_electron_triton_profile56)_ 1.83260930019824535e+01 -Electron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_electron_triton_profile57)_ 1.83256285448583434e+01 -Electron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_electron_triton_profile58)_ 1.83251556701695435e+01 -Electron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_electron_triton_profile59)_ 1.83246743674142571e+01 -Electron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_electron_triton_profile60)_ 1.83241846258967414e+01 -Electron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_electron_triton_profile61)_ 1.83236864347267172e+01 -Electron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_electron_triton_profile62)_ 1.83231797828187659e+01 -Electron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_electron_triton_profile63)_ 1.83226646588917106e+01 -Electron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_electron_triton_profile64)_ 1.83221410514679697e+01 -Electron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_electron_triton_profile65)_ 1.83216089488729423e+01 -Electron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_electron_triton_profile66)_ 1.83210683392343476e+01 -Electron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_electron_triton_profile67)_ 1.83205192104815495e+01 -Electron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_electron_triton_profile68)_ 1.83199615503449067e+01 -Electron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_electron_triton_profile69)_ 1.83193953463550585e+01 -Electron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_electron_triton_profile70)_ 1.83188205858422464e+01 -Electron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_electron_triton_profile71)_ 1.83182372559356068e+01 -Electron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_electron_triton_profile72)_ 1.83176453435624360e+01 -Electron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_electron_triton_profile73)_ 1.83170448354474757e+01 -Electron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_electron_triton_profile74)_ 1.83164357181121531e+01 -Electron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_electron_triton_profile75)_ 1.83158179778738273e+01 -Electron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_electron_triton_profile76)_ 1.83151916008450399e+01 -Electron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_electron_triton_profile77)_ 1.83145565729327160e+01 -Electron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_electron_triton_profile78)_ 1.83139128798373783e+01 -Electron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_electron_triton_profile79)_ 1.83132605070523446e+01 -Electron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_electron_triton_profile80)_ 1.83125994398629111e+01 -Electron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_electron_triton_profile81)_ 1.83119296633455377e+01 -Electron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_electron_triton_profile82)_ 1.83112511623669789e+01 -Electron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_electron_triton_profile83)_ 1.83105639215834621e+01 -Electron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_electron_triton_profile84)_ 1.83098679254398142e+01 -Electron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_electron_triton_profile85)_ 1.83091631581685697e+01 -Electron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_electron_triton_profile86)_ 1.83084496037891000e+01 -Electron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_electron_triton_profile87)_ 1.83077272461067118e+01 -Electron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_electron_triton_profile88)_ 1.83069960687117117e+01 -Electron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_electron_triton_profile89)_ 1.83062560549785118e+01 -Electron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_electron_triton_profile90)_ 1.83055071880646558e+01 -Electron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_electron_triton_profile91)_ 1.83047494509099025e+01 -Electron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_electron_triton_profile92)_ 1.83039828262352202e+01 -Electron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_electron_triton_profile93)_ 1.83032072965418600e+01 -Electron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_electron_triton_profile94)_ 1.83024228441102963e+01 -Electron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_electron_triton_profile95)_ 1.83016294509992932e+01 -Electron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_electron_triton_profile96)_ 1.83008270990448487e+01 -Electron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_electron_triton_profile97)_ 1.83000157698591650e+01 -Electron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_electron_triton_profile98)_ 1.82991954448296177e+01 -Electron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_electron_triton_profile99)_ 1.82983661051176902e+01 -Electron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_electron_triton_profile100)_ 1.82975277316579081e+01 -Electron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_electron_triton_profile101)_ 1.82966803051567588e+01 -Electron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_electron_triton_profile102)_ 1.82958238060915797e+01 -Electron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_electron_triton_profile103)_ 1.82949582147094709e+01 -Electron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_electron_triton_profile104)_ 1.82940835110261411e+01 -Electron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_electron_triton_profile105)_ 1.82931996748247947e+01 -Electron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_electron_triton_profile106)_ 1.82923066856549816e+01 -Electron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_electron_triton_profile107)_ 1.82914045228313995e+01 -Electron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_electron_triton_profile108)_ 1.82904931654327534e+01 -Electron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_electron_triton_profile109)_ 1.82895725923005337e+01 -Electron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_electron_triton_profile110)_ 1.82886427820378259e+01 -Electron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_electron_triton_profile111)_ 1.82877037130080780e+01 -Electron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_electron_triton_profile112)_ 1.82867553633338744e+01 -Electron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_electron_triton_profile113)_ 1.82857977108956682e+01 -Electron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_electron_triton_profile114)_ 1.82848307333305371e+01 -Electron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_electron_triton_profile115)_ 1.82838544080308907e+01 -Electron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_electron_triton_profile116)_ 1.82828687121431734e+01 -Electron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_electron_triton_profile117)_ 1.82818736225665788e+01 -Electron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_electron_triton_profile118)_ 1.82808691159517025e+01 -Electron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_electron_triton_profile119)_ 1.82798551686992106e+01 -Electron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_electron_triton_profile120)_ 1.82788317569584891e+01 -Electron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_electron_triton_profile121)_ 1.82777988566262799e+01 -Electron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_electron_triton_profile122)_ 1.82767564433452918e+01 -Electron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_electron_triton_profile123)_ 1.82757044925028183e+01 -Electron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_electron_triton_profile124)_ 1.82746429792292915e+01 -Electron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_electron_triton_profile125)_ 1.82735718783968970e+01 -Electron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_electron_triton_profile126)_ 1.82724911646180956e+01 -Electron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_electron_triton_profile127)_ 1.82714008122441882e+01 -Electron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_electron_triton_profile128)_ 1.82703007953638341e+01 -Electron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_electron_triton_profile129)_ 1.82691910878015520e+01 -Electron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_electron_triton_profile130)_ 1.82680716631162348e+01 -Electron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_electron_triton_profile131)_ 1.82669424945996255e+01 -Electron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_electron_triton_profile132)_ 1.82658035552747613e+01 -Electron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_electron_triton_profile133)_ 1.82646548178944457e+01 -Electron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_electron_triton_profile134)_ 1.82634962549396747e+01 -Electron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_electron_triton_profile135)_ 1.82623278386180452e+01 -Electron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_electron_triton_profile136)_ 1.82611495408621742e+01 -Electron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_electron_triton_profile137)_ 1.82599613333280644e+01 -Electron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_electron_triton_profile138)_ 1.82587631873934910e+01 -Electron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_electron_triton_profile139)_ 1.82575550741563433e+01 -Electron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_electron_triton_profile140)_ 1.82563369644329576e+01 -Electron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_electron_triton_profile141)_ 1.82551088287564660e+01 -Electron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_electron_triton_profile142)_ 1.82538706373750621e+01 -Electron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_electron_triton_profile143)_ 1.82526223602503208e+01 -Electron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_electron_triton_profile144)_ 1.82513639670554646e+01 -Electron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_electron_triton_profile145)_ 1.82500954271736049e+01 -Electron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_electron_triton_profile146)_ 1.82488167096959941e+01 -Electron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_electron_triton_profile147)_ 1.82475277834202565e+01 -Electron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_electron_triton_profile148)_ 1.82462286168485726e+01 -Electron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_electron_triton_profile149)_ 1.82449191781858922e+01 -Electron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_electron_triton_profile150)_ 1.82435994353381083e+01 -Electron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_electron_triton_profile151)_ 1.82422693559101852e+01 -Electron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_electron_triton_profile152)_ 1.82409289072043421e+01 -Electron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_electron_triton_profile153)_ 1.82395780562181464e+01 -Electron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_electron_triton_profile154)_ 1.82382167696426265e+01 -Electron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_electron_triton_profile155)_ 1.82368450138603819e+01 -Electron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_electron_triton_profile156)_ 1.82354627549436330e+01 -Electron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_electron_triton_profile157)_ 1.82340699586523058e+01 -Electron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_electron_triton_profile158)_ 1.82326665904320464e+01 -Electron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_electron_triton_profile159)_ 1.82312526154122558e+01 -Electron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_electron_triton_profile160)_ 1.82298279984041187e+01 -Electron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_electron_triton_profile161)_ 1.82283927038985603e+01 -Electron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_electron_triton_profile162)_ 1.82269466960642568e+01 -Electron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_electron_triton_profile163)_ 1.82254899387455609e+01 -Electron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_electron_triton_profile164)_ 1.82240223954604730e+01 -Electron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_electron_triton_profile165)_ 1.82225440293985486e+01 -Electron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_electron_triton_profile166)_ 1.82210548034188164e+01 -Electron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_electron_triton_profile167)_ 1.82195546800476755e+01 -Electron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_electron_triton_profile168)_ 1.82180436214767525e+01 -Electron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_electron_triton_profile169)_ 1.82165215895607773e+01 -Electron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_electron_triton_profile170)_ 1.82149885458154444e+01 -Electron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_electron_triton_profile171)_ 1.82134444514152030e+01 -Electron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_electron_triton_profile172)_ 1.82118892671910970e+01 -Electron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_electron_triton_profile173)_ 1.82103229536285589e+01 -Electron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_electron_triton_profile174)_ 1.82087454708651748e+01 -Electron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_electron_triton_profile175)_ 1.82071567786884607e+01 -Electron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_electron_triton_profile176)_ 1.82055568365336278e+01 -Electron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_electron_triton_profile177)_ 1.82039456034812765e+01 -Electron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_electron_triton_profile178)_ 1.82023230382551446e+01 -Electron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_electron_triton_profile179)_ 1.82006890992198116e+01 -Electron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_electron_triton_profile180)_ 1.81990437443783684e+01 -Electron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_electron_triton_profile181)_ 1.81973869313701115e+01 -Electron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_electron_triton_profile182)_ 1.81957186174681844e+01 -Electron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_electron_triton_profile183)_ 1.81940387595772286e+01 -Electron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_electron_triton_profile184)_ 1.81923473142310108e+01 -Electron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_electron_triton_profile185)_ 1.81906442375900497e+01 -Electron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_electron_triton_profile186)_ 1.81889294854392105e+01 -Electron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_electron_triton_profile187)_ 1.81872030131852753e+01 -Electron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_electron_triton_profile188)_ 1.81854647758545553e+01 -Electron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_electron_triton_profile189)_ 1.81837147280904183e+01 -Electron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_electron_triton_profile190)_ 1.81819528241508621e+01 -Electron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_electron_triton_profile191)_ 1.81801790179060418e+01 -Electron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_electron_triton_profile192)_ 1.81783932628357832e+01 -Electron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_electron_triton_profile193)_ 1.81765955120271130e+01 -Electron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_electron_triton_profile194)_ 1.81747857181717585e+01 -Electron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_electron_triton_profile195)_ 1.81729638335636281e+01 -Electron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_electron_triton_profile196)_ 1.81711298100962928e+01 -Electron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_electron_triton_profile197)_ 1.81692835992604671e+01 -Electron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_electron_triton_profile198)_ 1.81674251521414512e+01 -Electron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_electron_triton_profile199)_ 1.81655544194165977e+01 -Electron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_electron_triton_profile200)_ 1.81636713513527397e+01 -Electron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_electron_triton_profile201)_ 1.81617758978036363e+01 -Electron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_electron_triton_profile202)_ 1.81598680082073862e+01 -Electron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_electron_triton_profile203)_ 1.81579476315838519e+01 -Electron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_electron_triton_profile204)_ 1.81560147165320771e+01 -Electron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_electron_triton_profile205)_ 1.81540692112276751e+01 -Electron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_electron_triton_profile206)_ 1.81521110634202465e+01 -Electron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_electron_triton_profile207)_ 1.81501402204307531e+01 -Electron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_electron_triton_profile208)_ 1.81481566291489465e+01 -Electron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_electron_triton_profile209)_ 1.81461602360307168e+01 -Electron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_electron_triton_profile210)_ 1.81441509870954896e+01 -Electron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_electron_triton_profile211)_ 1.81421288279236244e+01 -Electron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_electron_triton_profile212)_ 1.81400937036537790e+01 -Electron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_electron_triton_profile213)_ 1.81380455589803127e+01 -Electron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_electron_triton_profile214)_ 1.81359843381506280e+01 -Electron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_electron_triton_profile215)_ 1.81339099849626244e+01 -Electron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_electron_triton_profile216)_ 1.81318224427620116e+01 -Electron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_electron_triton_profile217)_ 1.81297216544397699e+01 -Electron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_electron_triton_profile218)_ 1.81276075624294855e+01 -Electron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_electron_triton_profile219)_ 1.81254801087048065e+01 -Electron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_electron_triton_profile220)_ 1.81233392347768287e+01 -Electron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_electron_triton_profile221)_ 1.81211848816915051e+01 -Electron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_electron_triton_profile222)_ 1.81190169900271023e+01 -Electron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_electron_triton_profile223)_ 1.81168354998916143e+01 -Electron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_electron_triton_profile224)_ 1.81146403509202365e+01 -Electron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_electron_triton_profile225)_ 1.81124314822728145e+01 -Electron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_electron_triton_profile226)_ 1.81102088326313471e+01 -Electron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_electron_triton_profile227)_ 1.81079723401974668e+01 -Electron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_electron_triton_profile228)_ 1.81057219426899643e+01 -Electron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_electron_triton_profile229)_ 1.81034575773423327e+01 -Electron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_electron_triton_profile230)_ 1.81011791809003206e+01 -Electron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_electron_triton_profile231)_ 1.80988866896195155e+01 -Electron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_electron_triton_profile232)_ 1.80965800392629781e+01 -Electron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_electron_triton_profile233)_ 1.80942591650988405e+01 -Electron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_electron_triton_profile234)_ 1.80919240018980112e+01 -Electron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_electron_triton_profile235)_ 1.80895744839318553e+01 -Electron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_electron_triton_profile236)_ 1.80872105449699454e+01 -Electron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_electron_triton_profile237)_ 1.80848321182778129e+01 -Electron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_electron_triton_profile238)_ 1.80824391366147808e+01 -Electron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_electron_triton_profile239)_ 1.80800315322318141e+01 -Electron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_electron_triton_profile240)_ 1.80776092368693959e+01 -Electron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_electron_triton_profile241)_ 1.80751721817555087e+01 -Electron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_electron_triton_profile242)_ 1.80727202976035990e+01 -Electron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_electron_triton_profile243)_ 1.80702535146106413e+01 -Electron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_electron_triton_profile244)_ 1.80677717624552230e+01 -Electron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_electron_triton_profile245)_ 1.80652749702957429e+01 -Electron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_electron_triton_profile246)_ 1.80627630667686034e+01 -Electron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_electron_triton_profile247)_ 1.80602359799865191e+01 -Electron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_electron_triton_profile248)_ 1.80576936375368788e+01 -Electron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_electron_triton_profile249)_ 1.80551359664801616e+01 -Electron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_electron_triton_profile250)_ 1.80525628933484761e+01 -Electron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_electron_triton_profile251)_ 1.80499743441441503e+01 -Electron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_electron_triton_profile252)_ 1.80473702443383814e+01 -Electron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_electron_triton_profile253)_ 1.80447505188700354e+01 -Electron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_electron_triton_profile254)_ 1.80421150921445097e+01 -Electron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_electron_triton_profile255)_ 1.80394638880326639e+01 -Electron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_electron_triton_profile256)_ 1.80367968298699282e+01 -Electron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_electron_triton_profile257)_ 1.80341138404554506e+01 -Electron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_electron_triton_profile258)_ 1.80314148420513902e+01 -Electron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_electron_triton_profile259)_ 1.80286997563823306e+01 -Electron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_electron_triton_profile260)_ 1.80259685046348217e+01 -Electron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_electron_triton_profile261)_ 1.80232210074570354e+01 -Electron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_electron_triton_profile262)_ 1.80204571849585626e+01 -Electron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_electron_triton_profile263)_ 1.80176769567103854e+01 -Electron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_electron_triton_profile264)_ 1.80148802417449438e+01 -Electron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_electron_triton_profile265)_ 1.80120669585564208e+01 -Electron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_electron_triton_profile266)_ 1.80092370251011396e+01 -Electron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_electron_triton_profile267)_ 1.80063903587981642e+01 -Electron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_electron_triton_profile268)_ 1.80035268765300813e+01 -Electron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_electron_triton_profile269)_ 1.80006464946439380e+01 -Electron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_electron_triton_profile270)_ 1.79977491289524139e+01 -Electron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_electron_triton_profile271)_ 1.79948346947351716e+01 -Electron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_electron_triton_profile272)_ 1.79919031067404376e+01 -Electron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_electron_triton_profile273)_ 1.79889542791868031e+01 -Electron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_electron_triton_profile274)_ 1.79859881257652319e+01 -Electron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_electron_triton_profile275)_ 1.79830045596413512e+01 -Electron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_electron_triton_profile276)_ 1.79800034934579962e+01 -Electron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_electron_triton_profile277)_ 1.79769848393379519e+01 -Electron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_electron_triton_profile278)_ 1.79739485088870445e+01 -Electron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_electron_triton_profile279)_ 1.79708944131975095e+01 -Electron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_electron_triton_profile280)_ 1.79678224628516254e+01 -Electron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_electron_triton_profile281)_ 1.79647325679256653e+01 -Electron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_electron_triton_profile282)_ 1.79616246379942126e+01 -Electron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_electron_triton_profile283)_ 1.79584985821347800e+01 -Electron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_electron_triton_profile284)_ 1.79553543089327796e+01 -Electron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_electron_triton_profile285)_ 1.79521917264869018e+01 -Electron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_electron_triton_profile286)_ 1.79490107424147958e+01 -Electron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_electron_triton_profile287)_ 1.79458112638592553e+01 -Electron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_electron_triton_profile288)_ 1.79425931974947517e+01 -Electron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_electron_triton_profile289)_ 1.79393564495343902e+01 -Electron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_electron_triton_profile290)_ 1.79361009257373567e+01 -Electron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_electron_triton_profile291)_ 1.79328265314168434e+01 -Electron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_electron_triton_profile292)_ 1.79295331714483979e+01 -Electron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_electron_triton_profile293)_ 1.79262207502788584e+01 -Electron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_electron_triton_profile294)_ 1.79228891719357470e+01 -Electron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_electron_triton_profile295)_ 1.79195383400372812e+01 -Electron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_electron_triton_profile296)_ 1.79161681578029146e+01 -Electron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_electron_triton_profile297)_ 1.79127785280645000e+01 -Electron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_electron_triton_profile298)_ 1.79093693532780449e+01 -Electron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_electron_triton_profile299)_ 1.79059405355361463e+01 -Electron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_electron_triton_profile300)_ 1.79024919765810928e+01 -Electron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_electron_triton_profile301)_ 1.78990235778186495e+01 -Electron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_electron_triton_profile302)_ 1.78955352403325882e+01 -Electron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_electron_triton_profile303)_ 1.78920268648999752e+01 -Electron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_electron_triton_profile304)_ 1.78884983520072502e+01 -Electron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_electron_triton_profile305)_ 1.78849496018671132e+01 -Electron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_electron_triton_profile306)_ 1.78813805144362838e+01 -Electron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_electron_triton_profile307)_ 1.78777909894341676e+01 -Electron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_electron_triton_profile308)_ 1.78741809263623850e+01 -Electron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_electron_triton_profile309)_ 1.78705502245253491e+01 -Electron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_electron_triton_profile310)_ 1.78668987830517558e+01 -Electron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_electron_triton_profile311)_ 1.78632265009172109e+01 -Electron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_electron_triton_profile312)_ 1.78595332769678699e+01 -Electron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_electron_triton_profile313)_ 1.78558190099452396e+01 -Electron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_electron_triton_profile314)_ 1.78520835985121451e+01 -Electron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_electron_triton_profile315)_ 1.78483269412799395e+01 -Electron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_electron_triton_profile316)_ 1.78445489368369579e+01 -Electron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_electron_triton_profile317)_ 1.78407494837782927e+01 -Electron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_electron_triton_profile318)_ 1.78369284807370079e+01 -Electron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_electron_triton_profile319)_ 1.78330858264166885e+01 -Electron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_electron_triton_profile320)_ 1.78292214196255827e+01 -Electron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_electron_triton_profile321)_ 1.78253351593121963e+01 -Electron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_electron_triton_profile322)_ 1.78214269446026066e+01 -Electron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_electron_triton_profile323)_ 1.78174966748393651e+01 -Electron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_electron_triton_profile324)_ 1.78135442496222005e+01 -Electron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_electron_triton_profile325)_ 1.78095695688505309e+01 -Electron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_electron_triton_profile326)_ 1.78055725327678722e+01 -Electron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_electron_triton_profile327)_ 1.78015530420082158e+01 -Electron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_electron_triton_profile328)_ 1.77975109976444195e+01 -Electron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_electron_triton_profile329)_ 1.77934463012388449e+01 -Electron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_electron_triton_profile330)_ 1.77893588548960508e+01 -Electron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_electron_triton_profile331)_ 1.77852485613179816e+01 -Electron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_electron_triton_profile332)_ 1.77811153238614068e+01 -Electron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_electron_triton_profile333)_ 1.77769590465979590e+01 -Electron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_electron_triton_profile334)_ 1.77727796343767714e+01 -Electron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_electron_triton_profile335)_ 1.77685769928897876e+01 -Electron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_electron_triton_profile336)_ 1.77643510287399486e+01 -Electron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_electron_triton_profile337)_ 1.77601016495123041e+01 -Electron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_electron_triton_profile338)_ 1.77558287638481609e+01 -Electron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_electron_triton_profile339)_ 1.77515322815225112e+01 -Electron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_electron_triton_profile340)_ 1.77472121135246574e+01 -Electron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_electron_triton_profile341)_ 1.77428681721424262e+01 -Electron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_electron_triton_profile342)_ 1.77385003710498914e+01 -Electron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_electron_triton_profile343)_ 1.77341086253988962e+01 -Electron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_electron_triton_profile344)_ 1.77296928519145141e+01 -Electron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_electron_triton_profile345)_ 1.77252529689945106e+01 -Electron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_electron_triton_profile346)_ 1.77207888968130725e+01 -Electron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_electron_triton_profile347)_ 1.77163005574290402e+01 -Electron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_electron_triton_profile348)_ 1.77117878748986222e+01 -Electron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_electron_triton_profile349)_ 1.77072507753929962e+01 -Electron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_electron_triton_profile350)_ 1.77026891873208569e+01 -Electron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_electron_triton_profile351)_ 1.76981030414562213e+01 -Electron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_electron_triton_profile352)_ 1.76934922710716371e+01 -Electron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_electron_triton_profile353)_ 1.76888568120770628e+01 -Electron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_electron_triton_profile354)_ 1.76841966031646187e+01 -Electron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_electron_triton_profile355)_ 1.76795115859595633e+01 -Electron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_electron_triton_profile356)_ 1.76748017051775754e+01 -Electron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_electron_triton_profile357)_ 1.76700669087888471e+01 -Electron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_electron_triton_profile358)_ 1.76653071481890009e+01 -Electron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_electron_triton_profile359)_ 1.76605223783774363e+01 -Electron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_electron_triton_profile360)_ 1.76557125581431045e+01 -Electron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_electron_triton_profile361)_ 1.76508776502583515e+01 -Electron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_electron_triton_profile362)_ 1.76460176216808300e+01 -Electron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_electron_triton_profile363)_ 1.76411324437641781e+01 -Electron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_electron_triton_profile364)_ 1.76362220924775812e+01 -Electron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_electron_triton_profile365)_ 1.76312865486347619e+01 -Electron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_electron_triton_profile366)_ 1.76263257981326618e+01 -Electron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_electron_triton_profile367)_ 1.76213398322004409e+01 -Electron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_electron_triton_profile368)_ 1.76163286476590351e+01 -Electron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_electron_triton_profile369)_ 1.76112922471919013e+01 -Electron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_electron_triton_profile370)_ 1.76062306396273058e+01 -Electron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_electron_triton_profile371)_ 1.76011438402328118e+01 -Electron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_electron_triton_profile372)_ 1.75960318710223547e+01 -Electron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_electron_triton_profile373)_ 1.75908947610766297e+01 -Electron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_electron_triton_profile374)_ 1.75857325468771961e+01 -Electron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_electron_triton_profile375)_ 1.75805452726550726e+01 -Electron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_electron_triton_profile376)_ 1.75753329907544824e+01 -Electron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_electron_triton_profile377)_ 1.75700957620121976e+01 -Electron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_electron_triton_profile378)_ 1.75648336561535316e+01 -Electron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_electron_triton_profile379)_ 1.75595467522054669e+01 -Electron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_electron_triton_profile380)_ 1.75542351389278508e+01 -Electron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_electron_triton_profile381)_ 1.75488989152633827e+01 -Electron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_electron_triton_profile382)_ 1.75435381908073751e+01 -Electron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_electron_triton_profile383)_ 1.75381530862980810e+01 -Electron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_electron_triton_profile384)_ 1.75327437341286725e+01 -Electron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_electron_triton_profile385)_ 1.75273102788817248e+01 -Electron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_electron_triton_profile386)_ 1.75218528778874543e+01 -Electron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_electron_triton_profile387)_ 1.75163717018066158e+01 -Electron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_electron_triton_profile388)_ 1.75108669352394628e+01 -Electron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_electron_triton_profile389)_ 1.75053387773617679e+01 -Electron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_electron_triton_profile390)_ 1.74997874425894189e+01 -Electron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_electron_triton_profile391)_ 1.74942131612728424e+01 -Electron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_electron_triton_profile392)_ 1.74886161804227207e+01 -Electron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_electron_triton_profile393)_ 1.74829967644685844e+01 -Electron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_electron_triton_profile394)_ 1.74773551960518247e+01 -Electron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_electron_triton_profile395)_ 1.74716917768549251e+01 -Electron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_electron_triton_profile396)_ 1.74660068284685615e+01 -Electron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_electron_triton_profile397)_ 1.74603006932987412e+01 -Electron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_electron_triton_profile398)_ 1.74545737355156909e+01 -Electron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_electron_triton_profile399)_ 1.74488263420468535e+01 -Electron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_electron_triton_profile400)_ 1.74430589236162561e+01 -Electron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_electron_triton_profile401)_ 1.74372719158325218e+01 -Electron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_electron_triton_profile402)_ 1.74314657803282600e+01 -Electron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_electron_triton_profile403)_ 1.74256410059534410e+01 -Electron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_electron_triton_profile404)_ 1.74197981100256527e+01 -Electron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_electron_triton_profile405)_ 1.74139376396405154e+01 -Electron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_electron_triton_profile406)_ 1.74080601730452393e+01 -Electron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_electron_triton_profile407)_ 1.74021663210791573e+01 -Electron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_electron_triton_profile408)_ 1.73962567286847829e+01 -Electron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_electron_triton_profile409)_ 1.73903320764935891e+01 -Electron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_electron_triton_profile410)_ 1.73843930824906465e+01 -Electron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_electron_triton_profile411)_ 1.73784405037629668e+01 -Electron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_electron_triton_profile412)_ 1.73724751383364406e+01 -Electron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_electron_triton_profile413)_ 1.73664978271067305e+01 -Electron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_electron_triton_profile414)_ 1.73605094558700017e+01 -Electron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_electron_triton_profile415)_ 1.73545109574596879e+01 -Electron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_electron_triton_profile416)_ 1.73485033139962432e+01 -Electron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_electron_triton_profile417)_ 1.73424875592570160e+01 -Electron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_electron_triton_profile418)_ 1.73364647811745698e+01 -Electron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_electron_triton_profile419)_ 1.73304361244719445e+01 -Electron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_electron_triton_profile420)_ 1.73244027934446123e+01 -Electron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_electron_triton_profile421)_ 1.73183660548994354e+01 -Electron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_electron_triton_profile422)_ 1.73123272412622917e+01 -Electron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_electron_triton_profile423)_ 1.73062877538669468e+01 -Electron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_electron_triton_profile424)_ 1.73002490664390542e+01 -Electron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_electron_triton_profile425)_ 1.72942127287909777e+01 -Electron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_electron_triton_profile426)_ 1.72881803707443282e+01 -Electron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_electron_triton_profile427)_ 1.72821537062996065e+01 -Electron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_electron_triton_profile428)_ 1.72761345380741602e+01 -Electron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_electron_triton_profile429)_ 1.72701247620324203e+01 -Electron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_electron_triton_profile430)_ 1.72641263725354506e+01 -Electron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_electron_triton_profile431)_ 1.72581414677401277e+01 -Electron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_electron_triton_profile432)_ 1.72521722553825718e+01 -Electron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_electron_triton_profile433)_ 1.72462210589848475e+01 -Electron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_electron_triton_profile434)_ 1.72402903245299122e+01 -Electron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_electron_triton_profile435)_ 1.72343826276561458e+01 -Electron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_electron_triton_profile436)_ 1.72285006814305675e+01 -Electron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_electron_triton_profile437)_ 1.72226473447693245e+01 -Electron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_electron_triton_profile438)_ 1.72168256315851238e+01 -Electron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_electron_triton_profile439)_ 1.72110387207545656e+01 -Electron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_electron_triton_profile440)_ 1.72052899670147355e+01 -Electron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_electron_triton_profile441)_ 1.71995829129180429e+01 -Electron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_electron_triton_profile442)_ 1.71939213019988060e+01 -Electron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_electron_triton_profile443)_ 1.71883090933344000e+01 -Electron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_electron_triton_profile444)_ 1.71827504777213917e+01 -Electron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_electron_triton_profile445)_ 1.71772498957331550e+01 -Electron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_electron_triton_profile446)_ 1.71718120579837255e+01 -Electron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_electron_triton_profile447)_ 1.71664419679974962e+01 -Electron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_electron_triton_profile448)_ 1.71611449481785669e+01 -Electron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_electron_triton_profile449)_ 1.71559266694982391e+01 -Electron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_electron_triton_profile450)_ 1.71507931856793583e+01 -Electron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_electron_triton_profile451)_ 1.71457509728711770e+01 -Electron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_electron_triton_profile452)_ 1.71408069760948152e+01 -Electron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_electron_triton_profile453)_ 1.71359686641300044e+01 -Electron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_electron_triton_profile454)_ 1.71312440950530629e+01 -Electron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_electron_triton_profile455)_ 1.71266419953932640e+01 -Electron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_electron_triton_profile456)_ 1.71221718569595538e+01 -Electron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_electron_triton_profile457)_ 1.71178440569751871e+01 -Electron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_electron_triton_profile458)_ 1.71136700095329672e+01 -Electron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_electron_triton_profile459)_ 1.71096623600387403e+01 -Electron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_electron_triton_profile460)_ 1.71058352401148177e+01 -Electron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_electron_triton_profile461)_ 1.71022046099909915e+01 -Electron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_electron_triton_profile462)_ 1.70987887318318421e+01 -Electron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_electron_triton_profile463)_ 1.70956088471445220e+01 -Electron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_electron_triton_profile464)_ 1.70926901885593097e+01 -Electron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_electron_triton_profile465)_ 1.70900635751521008e+01 -Electron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_electron_triton_profile466)_ 1.70877681139190400e+01 -Electron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_electron_triton_profile467)_ 1.70858562508508669e+01 -Electron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_electron_triton_profile468)_ 1.70844047341693930e+01 -Electron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_electron_triton_profile469)_ 1.70835454849693456e+01 -Electron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_electron_triton_profile470)_ 1.70836549668939064e+01 -Electron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_electron_triton_profile471)_ 1.70575513694782153e+01 -Electron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_electron_triton_profile472)_ 1.70303992871317682e+01 -Electron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_electron_triton_profile473)_ 1.70021197931513406e+01 -Electron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_electron_triton_profile474)_ 1.69726250191064523e+01 -Electron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_electron_triton_profile475)_ 1.69418167700138156e+01 -Electron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_electron_triton_profile476)_ 1.69095848620854774e+01 -Electron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_electron_triton_profile477)_ 1.68758051137095073e+01 -Electron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_electron_triton_profile478)_ 1.68403368992366822e+01 -Electron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_electron_triton_profile479)_ 1.68030201464022930e+01 -Electron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_electron_triton_profile480)_ 1.67636716185285479e+01 -Electron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_electron_triton_profile481)_ 1.67220802671144320e+01 -Electron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_electron_triton_profile482)_ 1.66780013615214600e+01 -Electron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_electron_triton_profile483)_ 1.66311489885381256e+01 -Electron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_electron_triton_profile484)_ 1.65811863471271437e+01 -Electron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_electron_triton_profile485)_ 1.65277130125284941e+01 -Electron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_electron_triton_profile486)_ 1.64702479589597424e+01 -Electron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_electron_triton_profile487)_ 1.64082065254626599e+01 -Electron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_electron_triton_profile488)_ 1.63408685329355343e+01 -Electron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_electron_triton_profile489)_ 1.62673331332838202e+01 -Electron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_electron_triton_profile490)_ 1.61864531616326524e+01 -Electron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_electron_triton_profile491)_ 1.60967367046734218e+01 -Electron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_electron_triton_profile492)_ 1.59961940424784448e+01 -Electron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_electron_triton_profile493)_ 1.58820889985027005e+01 -Electron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_electron_triton_profile494)_ 1.57505127061390056e+01 -Electron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_electron_triton_profile495)_ 1.55956018546580903e+01 -Electron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_electron_triton_profile496)_ 1.54079729701550168e+01 -Electron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_electron_triton_profile497)_ 1.51711867495818407e+01 -Electron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_electron_triton_profile498)_ 1.48522329403121756e+01 -Electron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_electron_triton_profile499)_ 1.43673325905161882e+01 -Electron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_electron_triton_profile500)_ 1.33495098356070390e+01 -Volume_averaged_deuteron-triton_Coulomb_log_(Λ_DT)_______________________ (plasma_coulomb_log_deuteron_triton_vol_avg)_ 2.05064732103303520e+01 OP -Deuteron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_deuteron_triton_profile0)_ 2.14546726202543034e+01 -Deuteron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_deuteron_triton_profile1)_ 2.14546657937233114e+01 -Deuteron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_deuteron_triton_profile2)_ 2.14546453139929412e+01 -Deuteron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_deuteron_triton_profile3)_ 2.14546111806510069e+01 -Deuteron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_deuteron_triton_profile4)_ 2.14545633930177893e+01 -Deuteron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_deuteron_triton_profile5)_ 2.14545019501581251e+01 -Deuteron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_deuteron_triton_profile6)_ 2.14544268508692149e+01 -Deuteron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_deuteron_triton_profile7)_ 2.14543380936222547e+01 -Deuteron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_deuteron_triton_profile8)_ 2.14542356767080307e+01 -Deuteron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_deuteron_triton_profile9)_ 2.14541195980935591e+01 -Deuteron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_deuteron_triton_profile10)_ 2.14539898554559052e+01 -Deuteron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_deuteron_triton_profile11)_ 2.14538464462524985e+01 -Deuteron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_deuteron_triton_profile12)_ 2.14536893676213616e+01 -Deuteron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_deuteron_triton_profile13)_ 2.14535186164756624e+01 -Deuteron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_deuteron_triton_profile14)_ 2.14533341894160507e+01 -Deuteron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_deuteron_triton_profile15)_ 2.14531360828033257e+01 -Deuteron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_deuteron_triton_profile16)_ 2.14529242927241803e+01 -Deuteron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_deuteron_triton_profile17)_ 2.14526988149641902e+01 -Deuteron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_deuteron_triton_profile18)_ 2.14524596450585889e+01 -Deuteron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_deuteron_triton_profile19)_ 2.14522067782798267e+01 -Deuteron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_deuteron_triton_profile20)_ 2.14519402096007674e+01 -Deuteron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_deuteron_triton_profile21)_ 2.14516599337624640e+01 -Deuteron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_deuteron_triton_profile22)_ 2.14513659451789351e+01 -Deuteron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_deuteron_triton_profile23)_ 2.14510582380268069e+01 -Deuteron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_deuteron_triton_profile24)_ 2.14507368062254891e+01 -Deuteron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_deuteron_triton_profile25)_ 2.14504016433783278e+01 -Deuteron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_deuteron_triton_profile26)_ 2.14500527428257435e+01 -Deuteron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_deuteron_triton_profile27)_ 2.14496900976472169e+01 -Deuteron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_deuteron_triton_profile28)_ 2.14493137006486840e+01 -Deuteron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_deuteron_triton_profile29)_ 2.14489235443376565e+01 -Deuteron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_deuteron_triton_profile30)_ 2.14485196209836815e+01 -Deuteron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_deuteron_triton_profile31)_ 2.14481019225397986e+01 -Deuteron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_deuteron_triton_profile32)_ 2.14476704407029644e+01 -Deuteron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_deuteron_triton_profile33)_ 2.14472251668866747e+01 -Deuteron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_deuteron_triton_profile34)_ 2.14467660922423669e+01 -Deuteron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_deuteron_triton_profile35)_ 2.14462932076002133e+01 -Deuteron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_deuteron_triton_profile36)_ 2.14458065035882015e+01 -Deuteron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_deuteron_triton_profile37)_ 2.14453059704776123e+01 -Deuteron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_deuteron_triton_profile38)_ 2.14447915982971793e+01 -Deuteron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_deuteron_triton_profile39)_ 2.14442633768006878e+01 -Deuteron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_deuteron_triton_profile40)_ 2.14437212954173511e+01 -Deuteron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_deuteron_triton_profile41)_ 2.14431653433734546e+01 -Deuteron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_deuteron_triton_profile42)_ 2.14425955095398955e+01 -Deuteron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_deuteron_triton_profile43)_ 2.14420117825464978e+01 -Deuteron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_deuteron_triton_profile44)_ 2.14414141507126708e+01 -Deuteron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_deuteron_triton_profile45)_ 2.14408026020907201e+01 -Deuteron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_deuteron_triton_profile46)_ 2.14401771244749213e+01 -Deuteron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_deuteron_triton_profile47)_ 2.14395377052951588e+01 -Deuteron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_deuteron_triton_profile48)_ 2.14388843317903408e+01 -Deuteron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_deuteron_triton_profile49)_ 2.14382169908283196e+01 -Deuteron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_deuteron_triton_profile50)_ 2.14375356690572936e+01 -Deuteron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_deuteron_triton_profile51)_ 2.14368403528017382e+01 -Deuteron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_deuteron_triton_profile52)_ 2.14361310281056916e+01 -Deuteron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_deuteron_triton_profile53)_ 2.14354076807146221e+01 -Deuteron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_deuteron_triton_profile54)_ 2.14346702961064608e+01 -Deuteron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_deuteron_triton_profile55)_ 2.14339188594487844e+01 -Deuteron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_deuteron_triton_profile56)_ 2.14331533556051568e+01 -Deuteron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_deuteron_triton_profile57)_ 2.14323737691834459e+01 -Deuteron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_deuteron_triton_profile58)_ 2.14315800844657467e+01 -Deuteron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_deuteron_triton_profile59)_ 2.14307722854640481e+01 -Deuteron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_deuteron_triton_profile60)_ 2.14299503558673159e+01 -Deuteron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_deuteron_triton_profile61)_ 2.14291142790996858e+01 -Deuteron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_deuteron_triton_profile62)_ 2.14282640382476259e+01 -Deuteron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_deuteron_triton_profile63)_ 2.14273996161503675e+01 -Deuteron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_deuteron_triton_profile64)_ 2.14265209953021838e+01 -Deuteron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_deuteron_triton_profile65)_ 2.14256281579279886e+01 -Deuteron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_deuteron_triton_profile66)_ 2.14247210859300701e+01 -Deuteron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_deuteron_triton_profile67)_ 2.14237997609290645e+01 -Deuteron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_deuteron_triton_profile68)_ 2.14228641642204813e+01 -Deuteron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_deuteron_triton_profile69)_ 2.14219142768106892e+01 -Deuteron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_deuteron_triton_profile70)_ 2.14209500794007432e+01 -Deuteron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_deuteron_triton_profile71)_ 2.14199715523875618e+01 -Deuteron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_deuteron_triton_profile72)_ 2.14189786758451319e+01 -Deuteron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_deuteron_triton_profile73)_ 2.14179714295480714e+01 -Deuteron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_deuteron_triton_profile74)_ 2.14169497929627823e+01 -Deuteron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_deuteron_triton_profile75)_ 2.14159137452610473e+01 -Deuteron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_deuteron_triton_profile76)_ 2.14148632652586386e+01 -Deuteron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_deuteron_triton_profile77)_ 2.14137983315063423e+01 -Deuteron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_deuteron_triton_profile78)_ 2.14127189222260164e+01 -Deuteron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_deuteron_triton_profile79)_ 2.14116250152965257e+01 -Deuteron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_deuteron_triton_profile80)_ 2.14105165883148487e+01 -Deuteron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_deuteron_triton_profile81)_ 2.14093936185369174e+01 -Deuteron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_deuteron_triton_profile82)_ 2.14082560829187010e+01 -Deuteron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_deuteron_triton_profile83)_ 2.14071039580920512e+01 -Deuteron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_deuteron_triton_profile84)_ 2.14059372203429454e+01 -Deuteron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_deuteron_triton_profile85)_ 2.14047558456702340e+01 -Deuteron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_deuteron_triton_profile86)_ 2.14035598097236175e+01 -Deuteron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_deuteron_triton_profile87)_ 2.14023490878245575e+01 -Deuteron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_deuteron_triton_profile88)_ 2.14011236549898776e+01 -Deuteron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_deuteron_triton_profile89)_ 2.13998834858896352e+01 -Deuteron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_deuteron_triton_profile90)_ 2.13986285548604833e+01 -Deuteron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_deuteron_triton_profile91)_ 2.13973588359368598e+01 -Deuteron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_deuteron_triton_profile92)_ 2.13960743027731795e+01 -Deuteron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_deuteron_triton_profile93)_ 2.13947749287434057e+01 -Deuteron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_deuteron_triton_profile94)_ 2.13934606868301174e+01 -Deuteron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_deuteron_triton_profile95)_ 2.13921315497241871e+01 -Deuteron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_deuteron_triton_profile96)_ 2.13907874897492185e+01 -Deuteron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_deuteron_triton_profile97)_ 2.13894284788951836e+01 -Deuteron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_deuteron_triton_profile98)_ 2.13880544888241850e+01 -Deuteron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_deuteron_triton_profile99)_ 2.13866654908250844e+01 -Deuteron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_deuteron_triton_profile100)_ 2.13852614558830112e+01 -Deuteron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_deuteron_triton_profile101)_ 2.13838423545904597e+01 -Deuteron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_deuteron_triton_profile102)_ 2.13824081572193556e+01 -Deuteron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_deuteron_triton_profile103)_ 2.13809588336934695e+01 -Deuteron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_deuteron_triton_profile104)_ 2.13794943535631781e+01 -Deuteron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_deuteron_triton_profile105)_ 2.13780146860495464e+01 -Deuteron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_deuteron_triton_profile106)_ 2.13765197999830576e+01 -Deuteron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_deuteron_triton_profile107)_ 2.13750096638992062e+01 -Deuteron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_deuteron_triton_profile108)_ 2.13734842459050078e+01 -Deuteron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_deuteron_triton_profile109)_ 2.13719435137848883e+01 -Deuteron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_deuteron_triton_profile110)_ 2.13703874349443197e+01 -Deuteron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_deuteron_triton_profile111)_ 2.13688159764385013e+01 -Deuteron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_deuteron_triton_profile112)_ 2.13672291049675387e+01 -Deuteron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_deuteron_triton_profile113)_ 2.13656267868248264e+01 -Deuteron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_deuteron_triton_profile114)_ 2.13640089879516317e+01 -Deuteron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_deuteron_triton_profile115)_ 2.13623756739243831e+01 -Deuteron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_deuteron_triton_profile116)_ 2.13607268099496821e+01 -Deuteron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_deuteron_triton_profile117)_ 2.13590623608357610e+01 -Deuteron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_deuteron_triton_profile118)_ 2.13573822910238320e+01 -Deuteron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_deuteron_triton_profile119)_ 2.13556865646039356e+01 -Deuteron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_deuteron_triton_profile120)_ 2.13539751452182749e+01 -Deuteron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_deuteron_triton_profile121)_ 2.13522479961893623e+01 -Deuteron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_deuteron_triton_profile122)_ 2.13505050804153953e+01 -Deuteron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_deuteron_triton_profile123)_ 2.13487463604226058e+01 -Deuteron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_deuteron_triton_profile124)_ 2.13469717983389806e+01 -Deuteron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_deuteron_triton_profile125)_ 2.13451813559310750e+01 -Deuteron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_deuteron_triton_profile126)_ 2.13433749944853126e+01 -Deuteron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_deuteron_triton_profile127)_ 2.13415526749765014e+01 -Deuteron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_deuteron_triton_profile128)_ 2.13397143579676722e+01 -Deuteron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_deuteron_triton_profile129)_ 2.13378600035779904e+01 -Deuteron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_deuteron_triton_profile130)_ 2.13359895715459977e+01 -Deuteron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_deuteron_triton_profile131)_ 2.13341030212454967e+01 -Deuteron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_deuteron_triton_profile132)_ 2.13322003115391325e+01 -Deuteron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_deuteron_triton_profile133)_ 2.13302814010040436e+01 -Deuteron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_deuteron_triton_profile134)_ 2.13283462477081294e+01 -Deuteron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_deuteron_triton_profile135)_ 2.13263948093293614e+01 -Deuteron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_deuteron_triton_profile136)_ 2.13244270431636380e+01 -Deuteron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_deuteron_triton_profile137)_ 2.13224429060280869e+01 -Deuteron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_deuteron_triton_profile138)_ 2.13204423543730321e+01 -Deuteron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_deuteron_triton_profile139)_ 2.13184253441797260e+01 -Deuteron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_deuteron_triton_profile140)_ 2.13163918310241911e+01 -Deuteron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_deuteron_triton_profile141)_ 2.13143417700472178e+01 -Deuteron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_deuteron_triton_profile142)_ 2.13122751159564636e+01 -Deuteron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_deuteron_triton_profile143)_ 2.13101918230123530e+01 -Deuteron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_deuteron_triton_profile144)_ 2.13080918450626342e+01 -Deuteron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_deuteron_triton_profile145)_ 2.13059751354849105e+01 -Deuteron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_deuteron_triton_profile146)_ 2.13038416472265553e+01 -Deuteron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_deuteron_triton_profile147)_ 2.13016913328068362e+01 -Deuteron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_deuteron_triton_profile148)_ 2.12995241442563099e+01 -Deuteron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_deuteron_triton_profile149)_ 2.12973400331813458e+01 -Deuteron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_deuteron_triton_profile150)_ 2.12951389507498732e+01 -Deuteron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_deuteron_triton_profile151)_ 2.12929208476001897e+01 -Deuteron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_deuteron_triton_profile152)_ 2.12906856740180928e+01 -Deuteron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_deuteron_triton_profile153)_ 2.12884333797194785e+01 -Deuteron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_deuteron_triton_profile154)_ 2.12861639140415129e+01 -Deuteron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_deuteron_triton_profile155)_ 2.12838772257822626e+01 -Deuteron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_deuteron_triton_profile156)_ 2.12815732633263615e+01 -Deuteron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_deuteron_triton_profile157)_ 2.12792519745447457e+01 -Deuteron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_deuteron_triton_profile158)_ 2.12769133068599068e+01 -Deuteron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_deuteron_triton_profile159)_ 2.12745572071644276e+01 -Deuteron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_deuteron_triton_profile160)_ 2.12721836219197336e+01 -Deuteron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_deuteron_triton_profile161)_ 2.12697924970884351e+01 -Deuteron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_deuteron_triton_profile162)_ 2.12673837781274777e+01 -Deuteron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_deuteron_triton_profile163)_ 2.12649574100007932e+01 -Deuteron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_deuteron_triton_profile164)_ 2.12625133372033126e+01 -Deuteron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_deuteron_triton_profile165)_ 2.12600515036981079e+01 -Deuteron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_deuteron_triton_profile166)_ 2.12575718529626734e+01 -Deuteron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_deuteron_triton_profile167)_ 2.12550743279933876e+01 -Deuteron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_deuteron_triton_profile168)_ 2.12525588712139069e+01 -Deuteron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_deuteron_triton_profile169)_ 2.12500254245723035e+01 -Deuteron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_deuteron_triton_profile170)_ 2.12474739295371506e+01 -Deuteron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_deuteron_triton_profile171)_ 2.12449043270025442e+01 -Deuteron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_deuteron_triton_profile172)_ 2.12423165573658572e+01 -Deuteron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_deuteron_triton_profile173)_ 2.12397105604864826e+01 -Deuteron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_deuteron_triton_profile174)_ 2.12370862757298973e+01 -Deuteron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_deuteron_triton_profile175)_ 2.12344436418689781e+01 -Deuteron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_deuteron_triton_profile176)_ 2.12317825972109766e+01 -Deuteron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_deuteron_triton_profile177)_ 2.12291030794900983e+01 -Deuteron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_deuteron_triton_profile178)_ 2.12264050258568027e+01 -Deuteron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_deuteron_triton_profile179)_ 2.12236883730027728e+01 -Deuteron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_deuteron_triton_profile180)_ 2.12209530569921156e+01 -Deuteron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_deuteron_triton_profile181)_ 2.12181990133951288e+01 -Deuteron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_deuteron_triton_profile182)_ 2.12154261771940185e+01 -Deuteron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_deuteron_triton_profile183)_ 2.12126344828069442e+01 -Deuteron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_deuteron_triton_profile184)_ 2.12098238641181780e+01 -Deuteron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_deuteron_triton_profile185)_ 2.12069942544033481e+01 -Deuteron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_deuteron_triton_profile186)_ 2.12041455864208501e+01 -Deuteron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_deuteron_triton_profile187)_ 2.12012777922928883e+01 -Deuteron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_deuteron_triton_profile188)_ 2.11983908036205619e+01 -Deuteron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_deuteron_triton_profile189)_ 2.11954845513820871e+01 -Deuteron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_deuteron_triton_profile190)_ 2.11925589659864357e+01 -Deuteron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_deuteron_triton_profile191)_ 2.11896139772624998e+01 -Deuteron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_deuteron_triton_profile192)_ 2.11866495144243459e+01 -Deuteron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_deuteron_triton_profile193)_ 2.11836655061223702e+01 -Deuteron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_deuteron_triton_profile194)_ 2.11806618803578850e+01 -Deuteron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_deuteron_triton_profile195)_ 2.11776385645879905e+01 -Deuteron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_deuteron_triton_profile196)_ 2.11745954856070568e+01 -Deuteron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_deuteron_triton_profile197)_ 2.11715325696369199e+01 -Deuteron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_deuteron_triton_profile198)_ 2.11684497422617284e+01 -Deuteron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_deuteron_triton_profile199)_ 2.11653469284525109e+01 -Deuteron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_deuteron_triton_profile200)_ 2.11622240525436141e+01 -Deuteron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_deuteron_triton_profile201)_ 2.11590810382756480e+01 -Deuteron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_deuteron_triton_profile202)_ 2.11559178087234514e+01 -Deuteron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_deuteron_triton_profile203)_ 2.11527342863572088e+01 -Deuteron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_deuteron_triton_profile204)_ 2.11495303929577894e+01 -Deuteron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_deuteron_triton_profile205)_ 2.11463060497299722e+01 -Deuteron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_deuteron_triton_profile206)_ 2.11430611772054924e+01 -Deuteron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_deuteron_triton_profile207)_ 2.11397956952032082e+01 -Deuteron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_deuteron_triton_profile208)_ 2.11365095230169651e+01 -Deuteron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_deuteron_triton_profile209)_ 2.11332025791392937e+01 -Deuteron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_deuteron_triton_profile210)_ 2.11298747815142960e+01 -Deuteron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_deuteron_triton_profile211)_ 2.11265260473529750e+01 -Deuteron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_deuteron_triton_profile212)_ 2.11231562932106911e+01 -Deuteron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_deuteron_triton_profile213)_ 2.11197654349877304e+01 -Deuteron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_deuteron_triton_profile214)_ 2.11163533878735272e+01 -Deuteron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_deuteron_triton_profile215)_ 2.11129200664125456e+01 -Deuteron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_deuteron_triton_profile216)_ 2.11094653844263860e+01 -Deuteron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_deuteron_triton_profile217)_ 2.11059892550799333e+01 -Deuteron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_deuteron_triton_profile218)_ 2.11024915907840018e+01 -Deuteron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_deuteron_triton_profile219)_ 2.10989723033598544e+01 -Deuteron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_deuteron_triton_profile220)_ 2.10954313037896064e+01 -Deuteron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_deuteron_triton_profile221)_ 2.10918685024667170e+01 -Deuteron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_deuteron_triton_profile222)_ 2.10882838090187157e+01 -Deuteron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_deuteron_triton_profile223)_ 2.10846771323548765e+01 -Deuteron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_deuteron_triton_profile224)_ 2.10810483806696283e+01 -Deuteron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_deuteron_triton_profile225)_ 2.10773974614751545e+01 -Deuteron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_deuteron_triton_profile226)_ 2.10737242815052142e+01 -Deuteron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_deuteron_triton_profile227)_ 2.10700287467892622e+01 -Deuteron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_deuteron_triton_profile228)_ 2.10663107626368671e+01 -Deuteron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_deuteron_triton_profile229)_ 2.10625702335990646e+01 -Deuteron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_deuteron_triton_profile230)_ 2.10588070634781559e+01 -Deuteron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_deuteron_triton_profile231)_ 2.10550211553509037e+01 -Deuteron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_deuteron_triton_profile232)_ 2.10512124115461035e+01 -Deuteron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_deuteron_triton_profile233)_ 2.10473807336416350e+01 -Deuteron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_deuteron_triton_profile234)_ 2.10435260224780940e+01 -Deuteron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_deuteron_triton_profile235)_ 2.10396481780333637e+01 -Deuteron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_deuteron_triton_profile236)_ 2.10357470997143103e+01 -Deuteron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_deuteron_triton_profile237)_ 2.10318226859729442e+01 -Deuteron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_deuteron_triton_profile238)_ 2.10278748345986131e+01 -Deuteron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_deuteron_triton_profile239)_ 2.10239034425925198e+01 -Deuteron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_deuteron_triton_profile240)_ 2.10199084061646673e+01 -Deuteron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_deuteron_triton_profile241)_ 2.10158896207341677e+01 -Deuteron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_deuteron_triton_profile242)_ 2.10118469809974364e+01 -Deuteron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_deuteron_triton_profile243)_ 2.10077803808006323e+01 -Deuteron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_deuteron_triton_profile244)_ 2.10036897132211493e+01 -Deuteron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_deuteron_triton_profile245)_ 2.09995748705959926e+01 -Deuteron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_deuteron_triton_profile246)_ 2.09954357443896740e+01 -Deuteron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_deuteron_triton_profile247)_ 2.09912722253107553e+01 -Deuteron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_deuteron_triton_profile248)_ 2.09870842033099656e+01 -Deuteron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_deuteron_triton_profile249)_ 2.09828715674434001e+01 -Deuteron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_deuteron_triton_profile250)_ 2.09786342060526607e+01 -Deuteron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_deuteron_triton_profile251)_ 2.09743720066211026e+01 -Deuteron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_deuteron_triton_profile252)_ 2.09700848558615931e+01 -Deuteron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_deuteron_triton_profile253)_ 2.09657726396588266e+01 -Deuteron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_deuteron_triton_profile254)_ 2.09614352430915361e+01 -Deuteron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_deuteron_triton_profile255)_ 2.09570725504164237e+01 -Deuteron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_deuteron_triton_profile256)_ 2.09526844450802692e+01 -Deuteron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_deuteron_triton_profile257)_ 2.09482708097465640e+01 -Deuteron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_deuteron_triton_profile258)_ 2.09438315262230574e+01 -Deuteron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_deuteron_triton_profile259)_ 2.09393664754952553e+01 -Deuteron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_deuteron_triton_profile260)_ 2.09348755378001705e+01 -Deuteron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_deuteron_triton_profile261)_ 2.09303585924605571e+01 -Deuteron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_deuteron_triton_profile262)_ 2.09258155180445833e+01 -Deuteron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_deuteron_triton_profile263)_ 2.09212461922933635e+01 -Deuteron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_deuteron_triton_profile264)_ 2.09166504921198744e+01 -Deuteron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_deuteron_triton_profile265)_ 2.09120282936079960e+01 -Deuteron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_deuteron_triton_profile266)_ 2.09073794720336963e+01 -Deuteron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_deuteron_triton_profile267)_ 2.09027039018794483e+01 -Deuteron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_deuteron_triton_profile268)_ 2.08980014568012038e+01 -Deuteron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_deuteron_triton_profile269)_ 2.08932720096207127e+01 -Deuteron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_deuteron_triton_profile270)_ 2.08885154323587621e+01 -Deuteron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_deuteron_triton_profile271)_ 2.08837315962096177e+01 -Deuteron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_deuteron_triton_profile272)_ 2.08789203715862151e+01 -Deuteron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_deuteron_triton_profile273)_ 2.08740816281252073e+01 -Deuteron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_deuteron_triton_profile274)_ 2.08692152345529216e+01 -Deuteron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_deuteron_triton_profile275)_ 2.08643210589040322e+01 -Deuteron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_deuteron_triton_profile276)_ 2.08593989683922878e+01 -Deuteron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_deuteron_triton_profile277)_ 2.08544488294119255e+01 -Deuteron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_deuteron_triton_profile278)_ 2.08494705075928550e+01 -Deuteron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_deuteron_triton_profile279)_ 2.08444638677574972e+01 -Deuteron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_deuteron_triton_profile280)_ 2.08394287739924877e+01 -Deuteron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_deuteron_triton_profile281)_ 2.08343650895945878e+01 -Deuteron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_deuteron_triton_profile282)_ 2.08292726770932539e+01 -Deuteron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_deuteron_triton_profile283)_ 2.08241513982427868e+01 -Deuteron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_deuteron_triton_profile284)_ 2.08190011141005940e+01 -Deuteron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_deuteron_triton_profile285)_ 2.08138216849426279e+01 -Deuteron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_deuteron_triton_profile286)_ 2.08086129703110956e+01 -Deuteron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_deuteron_triton_profile287)_ 2.08033748290319345e+01 -Deuteron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_deuteron_triton_profile288)_ 2.07981071192289590e+01 -Deuteron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_deuteron_triton_profile289)_ 2.07928096983306716e+01 -Deuteron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_deuteron_triton_profile290)_ 2.07874824229934205e+01 -Deuteron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_deuteron_triton_profile291)_ 2.07821251493325505e+01 -Deuteron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_deuteron_triton_profile292)_ 2.07767377326710445e+01 -Deuteron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_deuteron_triton_profile293)_ 2.07713200277240837e+01 -Deuteron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_deuteron_triton_profile294)_ 2.07658718886134821e+01 -Deuteron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_deuteron_triton_profile295)_ 2.07603931687315573e+01 -Deuteron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_deuteron_triton_profile296)_ 2.07548837209466548e+01 -Deuteron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_deuteron_triton_profile297)_ 2.07493433974927228e+01 -Deuteron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_deuteron_triton_profile298)_ 2.07437720500757052e+01 -Deuteron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_deuteron_triton_profile299)_ 2.07381695297628248e+01 -Deuteron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_deuteron_triton_profile300)_ 2.07325356871697473e+01 -Deuteron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_deuteron_triton_profile301)_ 2.07268703723302608e+01 -Deuteron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_deuteron_triton_profile302)_ 2.07211734348238714e+01 -Deuteron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_deuteron_triton_profile303)_ 2.07154447237633619e+01 -Deuteron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_deuteron_triton_profile304)_ 2.07096840877824135e+01 -Deuteron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_deuteron_triton_profile305)_ 2.07038913751255684e+01 -Deuteron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_deuteron_triton_profile306)_ 2.06980664335654474e+01 -Deuteron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_deuteron_triton_profile307)_ 2.06922091106363233e+01 -Deuteron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_deuteron_triton_profile308)_ 2.06863192534251716e+01 -Deuteron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_deuteron_triton_profile309)_ 2.06803967087826699e+01 -Deuteron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_deuteron_triton_profile310)_ 2.06744413232004085e+01 -Deuteron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_deuteron_triton_profile311)_ 2.06684529430134489e+01 -Deuteron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_deuteron_triton_profile312)_ 2.06624314143362469e+01 -Deuteron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_deuteron_triton_profile313)_ 2.06563765830458799e+01 -Deuteron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_deuteron_triton_profile314)_ 2.06502882949869893e+01 -Deuteron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_deuteron_triton_profile315)_ 2.06441663958575923e+01 -Deuteron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_deuteron_triton_profile316)_ 2.06380107313428489e+01 -Deuteron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_deuteron_triton_profile317)_ 2.06318211470641515e+01 -Deuteron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_deuteron_triton_profile318)_ 2.06255974887576734e+01 -Deuteron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_deuteron_triton_profile319)_ 2.06193396022451125e+01 -Deuteron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_deuteron_triton_profile320)_ 2.06130473334360040e+01 -Deuteron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_deuteron_triton_profile321)_ 2.06067205285184549e+01 -Deuteron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_deuteron_triton_profile322)_ 2.06003590338750513e+01 -Deuteron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_deuteron_triton_profile323)_ 2.05939626962650806e+01 -Deuteron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_deuteron_triton_profile324)_ 2.05875313627337775e+01 -Deuteron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_deuteron_triton_profile325)_ 2.05810648808602608e+01 -Deuteron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_deuteron_triton_profile326)_ 2.05745630986473280e+01 -Deuteron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_deuteron_triton_profile327)_ 2.05680258647526948e+01 -Deuteron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_deuteron_triton_profile328)_ 2.05614530284196881e+01 -Deuteron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_deuteron_triton_profile329)_ 2.05548444396682513e+01 -Deuteron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_deuteron_triton_profile330)_ 2.05481999492195442e+01 -Deuteron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_deuteron_triton_profile331)_ 2.05415194088419319e+01 -Deuteron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_deuteron_triton_profile332)_ 2.05348026711474319e+01 -Deuteron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_deuteron_triton_profile333)_ 2.05280495898148523e+01 -Deuteron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_deuteron_triton_profile334)_ 2.05212600197860660e+01 -Deuteron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_deuteron_triton_profile335)_ 2.05144338171647718e+01 -Deuteron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_deuteron_triton_profile336)_ 2.05075708394135141e+01 -Deuteron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_deuteron_triton_profile337)_ 2.05006709455276059e+01 -Deuteron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_deuteron_triton_profile338)_ 2.04937339959809712e+01 -Deuteron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_deuteron_triton_profile339)_ 2.04867598530614430e+01 -Deuteron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_deuteron_triton_profile340)_ 2.04797483807591547e+01 -Deuteron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_deuteron_triton_profile341)_ 2.04726994450466755e+01 -Deuteron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_deuteron_triton_profile342)_ 2.04656129139957059e+01 -Deuteron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_deuteron_triton_profile343)_ 2.04584886578469423e+01 -Deuteron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_deuteron_triton_profile344)_ 2.04513265492370166e+01 -Deuteron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_deuteron_triton_profile345)_ 2.04441264632628013e+01 -Deuteron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_deuteron_triton_profile346)_ 2.04368882776574914e+01 -Deuteron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_deuteron_triton_profile347)_ 2.04296118730879428e+01 -Deuteron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_deuteron_triton_profile348)_ 2.04222971330788994e+01 -Deuteron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_deuteron_triton_profile349)_ 2.04149439444264402e+01 -Deuteron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_deuteron_triton_profile350)_ 2.04075521972327181e+01 -Deuteron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_deuteron_triton_profile351)_ 2.04001217850919154e+01 -Deuteron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_deuteron_triton_profile352)_ 2.03926526054708575e+01 -Deuteron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_deuteron_triton_profile353)_ 2.03851445597034306e+01 -Deuteron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_deuteron_triton_profile354)_ 2.03775975532621914e+01 -Deuteron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_deuteron_triton_profile355)_ 2.03700114961325198e+01 -Deuteron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_deuteron_triton_profile356)_ 2.03623863028046621e+01 -Deuteron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_deuteron_triton_profile357)_ 2.03547218927574001e+01 -Deuteron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_deuteron_triton_profile358)_ 2.03470181905312018e+01 -Deuteron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_deuteron_triton_profile359)_ 2.03392751261282392e+01 -Deuteron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_deuteron_triton_profile360)_ 2.03314926351626610e+01 -Deuteron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_deuteron_triton_profile361)_ 2.03236706593554750e+01 -Deuteron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_deuteron_triton_profile362)_ 2.03158091465697197e+01 -Deuteron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_deuteron_triton_profile363)_ 2.03079080513444801e+01 -Deuteron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_deuteron_triton_profile364)_ 2.02999673350972927e+01 -Deuteron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_deuteron_triton_profile365)_ 2.02919869666173582e+01 -Deuteron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_deuteron_triton_profile366)_ 2.02839669221634260e+01 -Deuteron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_deuteron_triton_profile367)_ 2.02759071861857088e+01 -Deuteron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_deuteron_triton_profile368)_ 2.02678077513790633e+01 -Deuteron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_deuteron_triton_profile369)_ 2.02596686193304443e+01 -Deuteron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_deuteron_triton_profile370)_ 2.02514898007786144e+01 -Deuteron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_deuteron_triton_profile371)_ 2.02432713162429572e+01 -Deuteron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_deuteron_triton_profile372)_ 2.02350131962467898e+01 -Deuteron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_deuteron_triton_profile373)_ 2.02267154820524304e+01 -Deuteron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_deuteron_triton_profile374)_ 2.02183782259466653e+01 -Deuteron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_deuteron_triton_profile375)_ 2.02100014918743582e+01 -Deuteron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_deuteron_triton_profile376)_ 2.02015853560332737e+01 -Deuteron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_deuteron_triton_profile377)_ 2.01931299072727306e+01 -Deuteron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_deuteron_triton_profile378)_ 2.01846352478570665e+01 -Deuteron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_deuteron_triton_profile379)_ 2.01761014940743344e+01 -Deuteron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_deuteron_triton_profile380)_ 2.01675287767782478e+01 -Deuteron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_deuteron_triton_profile381)_ 2.01589172420899061e+01 -Deuteron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_deuteron_triton_profile382)_ 2.01502670522214160e+01 -Deuteron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_deuteron_triton_profile383)_ 2.01415783860322541e+01 -Deuteron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_deuteron_triton_profile384)_ 2.01328514400412750e+01 -Deuteron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_deuteron_triton_profile385)_ 2.01240864289063417e+01 -Deuteron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_deuteron_triton_profile386)_ 2.01152835866388813e+01 -Deuteron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_deuteron_triton_profile387)_ 2.01064431670807622e+01 -Deuteron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_deuteron_triton_profile388)_ 2.00975654452319610e+01 -Deuteron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_deuteron_triton_profile389)_ 2.00886507178614799e+01 -Deuteron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_deuteron_triton_profile390)_ 2.00796993046737384e+01 -Deuteron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_deuteron_triton_profile391)_ 2.00707115493272532e+01 -Deuteron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_deuteron_triton_profile392)_ 2.00616878205724518e+01 -Deuteron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_deuteron_triton_profile393)_ 2.00526285133274271e+01 -Deuteron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_deuteron_triton_profile394)_ 2.00435340498272154e+01 -Deuteron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_deuteron_triton_profile395)_ 2.00344048810455568e+01 -Deuteron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_deuteron_triton_profile396)_ 2.00252414877745224e+01 -Deuteron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_deuteron_triton_profile397)_ 2.00160443821679195e+01 -Deuteron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_deuteron_triton_profile398)_ 2.00068141091559006e+01 -Deuteron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_deuteron_triton_profile399)_ 1.99975512477958404e+01 -Deuteron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_deuteron_triton_profile400)_ 1.99882564129466616e+01 -Deuteron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_deuteron_triton_profile401)_ 1.99789302568442224e+01 -Deuteron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_deuteron_triton_profile402)_ 1.99695734710566306e+01 -Deuteron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_deuteron_triton_profile403)_ 1.99601867878465136e+01 -Deuteron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_deuteron_triton_profile404)_ 1.99507709824290522e+01 -Deuteron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_deuteron_triton_profile405)_ 1.99413268747669896e+01 -Deuteron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_deuteron_triton_profile406)_ 1.99318553316789746e+01 -Deuteron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_deuteron_triton_profile407)_ 1.99223572689639497e+01 -Deuteron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_deuteron_triton_profile408)_ 1.99128336537939710e+01 -Deuteron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_deuteron_triton_profile409)_ 1.99032855069634671e+01 -Deuteron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_deuteron_triton_profile410)_ 1.98937139055378722e+01 -Deuteron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_deuteron_triton_profile411)_ 1.98841199852788826e+01 -Deuteron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_deuteron_triton_profile412)_ 1.98745049436215169e+01 -Deuteron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_deuteron_triton_profile413)_ 1.98648700425151539e+01 -Deuteron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_deuteron_triton_profile414)_ 1.98552166113996549e+01 -Deuteron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_deuteron_triton_profile415)_ 1.98455460505391450e+01 -Deuteron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_deuteron_triton_profile416)_ 1.98358598342838555e+01 -Deuteron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_deuteron_triton_profile417)_ 1.98261595147853278e+01 -Deuteron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_deuteron_triton_profile418)_ 1.98164467256266548e+01 -Deuteron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_deuteron_triton_profile419)_ 1.98067231858834347e+01 -Deuteron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_deuteron_triton_profile420)_ 1.97969907043097066e+01 -Deuteron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_deuteron_triton_profile421)_ 1.97872511837202723e+01 -Deuteron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_deuteron_triton_profile422)_ 1.97775066255855911e+01 -Deuteron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_deuteron_triton_profile423)_ 1.97677591352827520e+01 -Deuteron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_deuteron_triton_profile424)_ 1.97580109269253832e+01 -Deuteron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_deuteron_triton_profile425)_ 1.97482643294098779e+01 -Deuteron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_deuteron_triton_profile426)_ 1.97385217918724258e+01 -Deuteron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_deuteron_triton_profile427)_ 1.97287858902185995e+01 -Deuteron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_deuteron_triton_profile428)_ 1.97190593338849318e+01 -Deuteron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_deuteron_triton_profile429)_ 1.97093449726991494e+01 -Deuteron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_deuteron_triton_profile430)_ 1.96996458047303662e+01 -Deuteron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_deuteron_triton_profile431)_ 1.96899649843644191e+01 -Deuteron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_deuteron_triton_profile432)_ 1.96803058309326282e+01 -Deuteron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_deuteron_triton_profile433)_ 1.96706718382512413e+01 -Deuteron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_deuteron_triton_profile434)_ 1.96610666844337203e+01 -Deuteron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_deuteron_triton_profile435)_ 1.96514942430319373e+01 -Deuteron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_deuteron_triton_profile436)_ 1.96419585946286119e+01 -Deuteron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_deuteron_triton_profile437)_ 1.96324640393499052e+01 -Deuteron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_deuteron_triton_profile438)_ 1.96230151110622764e+01 -Deuteron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_deuteron_triton_profile439)_ 1.96136165921295742e+01 -Deuteron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_deuteron_triton_profile440)_ 1.96042735299540958e+01 -Deuteron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_deuteron_triton_profile441)_ 1.95949912548809806e+01 -Deuteron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_deuteron_triton_profile442)_ 1.95857754003256126e+01 -Deuteron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_deuteron_triton_profile443)_ 1.95766319245811999e+01 -Deuteron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_deuteron_triton_profile444)_ 1.95675671352872094e+01 -Deuteron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_deuteron_triton_profile445)_ 1.95585877167664108e+01 -Deuteron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_deuteron_triton_profile446)_ 1.95497007603327404e+01 -Deuteron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_deuteron_triton_profile447)_ 1.95409137994063968e+01 -Deuteron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_deuteron_triton_profile448)_ 1.95322348481180263e+01 -Deuteron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_deuteron_triton_profile449)_ 1.95236724464753415e+01 -Deuteron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_deuteron_triton_profile450)_ 1.95152357121476818e+01 -Deuteron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_deuteron_triton_profile451)_ 1.95069344000178937e+01 -Deuteron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_deuteron_triton_profile452)_ 1.94987789728400180e+01 -Deuteron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_deuteron_triton_profile453)_ 1.94907806836217752e+01 -Deuteron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_deuteron_triton_profile454)_ 1.94829516752728011e+01 -Deuteron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_deuteron_triton_profile455)_ 1.94753050999076223e+01 -Deuteron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_deuteron_triton_profile456)_ 1.94678552652083461e+01 -Deuteron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_deuteron_triton_profile457)_ 1.94606178160288188e+01 -Deuteron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_deuteron_triton_profile458)_ 1.94536099636217763e+01 -Deuteron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_deuteron_triton_profile459)_ 1.94468507791607799e+01 -Deuteron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_deuteron_triton_profile460)_ 1.94403615793921958e+01 -Deuteron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_deuteron_triton_profile461)_ 1.94341664444047986e+01 -Deuteron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_deuteron_triton_profile462)_ 1.94282929328612468e+01 -Deuteron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_deuteron_triton_profile463)_ 1.94227731064956508e+01 -Deuteron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_deuteron_triton_profile464)_ 1.94176450599458796e+01 -Deuteron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_deuteron_triton_profile465)_ 1.94129553325187878e+01 -Deuteron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_deuteron_triton_profile466)_ 1.94087629931591330e+01 -Deuteron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_deuteron_triton_profile467)_ 1.94051472777210385e+01 -Deuteron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_deuteron_triton_profile468)_ 1.94022241654020711e+01 -Deuteron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_deuteron_triton_profile469)_ 1.94001930564583702e+01 -Deuteron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_deuteron_triton_profile470)_ 1.93996231070673986e+01 -Deuteron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_deuteron_triton_profile471)_ 1.93566213263266214e+01 -Deuteron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_deuteron_triton_profile472)_ 1.93119982370041932e+01 -Deuteron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_deuteron_triton_profile473)_ 1.92656340722877850e+01 -Deuteron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_deuteron_triton_profile474)_ 1.92173955934608323e+01 -Deuteron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_deuteron_triton_profile475)_ 1.91671340087770794e+01 -Deuteron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_deuteron_triton_profile476)_ 1.91146824765165846e+01 -Deuteron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_deuteron_triton_profile477)_ 1.90598530875503975e+01 -Deuteron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_deuteron_triton_profile478)_ 1.90024331913152622e+01 -Deuteron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_deuteron_triton_profile479)_ 1.89421808878464155e+01 -Deuteron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_deuteron_triton_profile480)_ 1.88788194455476699e+01 -Deuteron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_deuteron_triton_profile481)_ 1.88120303247315732e+01 -Deuteron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_deuteron_triton_profile482)_ 1.87414443665783566e+01 -Deuteron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_deuteron_triton_profile483)_ 1.86666305353878492e+01 -Deuteron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_deuteron_triton_profile484)_ 1.85870813549020895e+01 -Deuteron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_deuteron_triton_profile485)_ 1.85021937958235263e+01 -Deuteron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_deuteron_triton_profile486)_ 1.84112438024186744e+01 -Deuteron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_deuteron_triton_profile487)_ 1.83133517320763524e+01 -Deuteron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_deuteron_triton_profile488)_ 1.82074345215678051e+01 -Deuteron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_deuteron_triton_profile489)_ 1.80921379495687589e+01 -Deuteron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_deuteron_triton_profile490)_ 1.79657381539688359e+01 -Deuteron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_deuteron_triton_profile491)_ 1.78259939715025872e+01 -Deuteron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_deuteron_triton_profile492)_ 1.76699173362351161e+01 -Deuteron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_deuteron_triton_profile493)_ 1.74934002903825601e+01 -Deuteron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_deuteron_triton_profile494)_ 1.72905756161436841e+01 -Deuteron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_deuteron_triton_profile495)_ 1.70526441858531612e+01 -Deuteron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_deuteron_triton_profile496)_ 1.67655263644234935e+01 -Deuteron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_deuteron_triton_profile497)_ 1.64045584855859836e+01 -Deuteron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_deuteron_triton_profile498)_ 1.59202201488664983e+01 -Deuteron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_deuteron_triton_profile499)_ 1.51868375632329720e+01 -Deuteron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_deuteron_triton_profile500)_ 1.36539411998133300e+01 -Volume_averaged_electron-alpha_thermal_Coulomb_log_(Λₑαₜₕ)_______________ (plasma_coulomb_log_electron_alpha_thermal_vol_avg)_ 1.77710898019661947e+01 OP -Electron-alpha_thermal_Coulomb_log_at_point_0____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile0)_ 1.83389273040549092e+01 -Electron-alpha_thermal_Coulomb_log_at_point_1____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile1)_ 1.83389232413765875e+01 -Electron-alpha_thermal_Coulomb_log_at_point_2____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile2)_ 1.83389110532530033e+01 -Electron-alpha_thermal_Coulomb_log_at_point_3____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile3)_ 1.83388907394183462e+01 -Electron-alpha_thermal_Coulomb_log_at_point_4____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile4)_ 1.83388622994295645e+01 -Electron-alpha_thermal_Coulomb_log_at_point_5____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile5)_ 1.83388257326663613e+01 -Electron-alpha_thermal_Coulomb_log_at_point_6____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile6)_ 1.83387810383311347e+01 -Electron-alpha_thermal_Coulomb_log_at_point_7____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile7)_ 1.83387282154489739e+01 -Electron-alpha_thermal_Coulomb_log_at_point_8____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile8)_ 1.83386672628675740e+01 -Electron-alpha_thermal_Coulomb_log_at_point_9____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile9)_ 1.83385981792571719e+01 -Electron-alpha_thermal_Coulomb_log_at_point_10___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile10)_ 1.83385209631105006e+01 -Electron-alpha_thermal_Coulomb_log_at_point_11___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile11)_ 1.83384356127426784e+01 -Electron-alpha_thermal_Coulomb_log_at_point_12___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile12)_ 1.83383421262911277e+01 -Electron-alpha_thermal_Coulomb_log_at_point_13___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile13)_ 1.83382405017154788e+01 -Electron-alpha_thermal_Coulomb_log_at_point_14___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile14)_ 1.83381307367974493e+01 -Electron-alpha_thermal_Coulomb_log_at_point_15___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile15)_ 1.83380128291407161e+01 -Electron-alpha_thermal_Coulomb_log_at_point_16___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile16)_ 1.83378867761708051e+01 -Electron-alpha_thermal_Coulomb_log_at_point_17___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile17)_ 1.83377525751349282e+01 -Electron-alpha_thermal_Coulomb_log_at_point_18___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile18)_ 1.83376102231018407e+01 -Electron-alpha_thermal_Coulomb_log_at_point_19___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile19)_ 1.83374597169616891e+01 -Electron-alpha_thermal_Coulomb_log_at_point_20___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile20)_ 1.83373010534258185e+01 -Electron-alpha_thermal_Coulomb_log_at_point_21___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile21)_ 1.83371342290266170e+01 -Electron-alpha_thermal_Coulomb_log_at_point_22___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile22)_ 1.83369592401173058e+01 -Electron-alpha_thermal_Coulomb_log_at_point_23___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile23)_ 1.83367760828717437e+01 -Electron-alpha_thermal_Coulomb_log_at_point_24___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile24)_ 1.83365847532842281e+01 -Electron-alpha_thermal_Coulomb_log_at_point_25___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile25)_ 1.83363852471692574e+01 -Electron-alpha_thermal_Coulomb_log_at_point_26___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile26)_ 1.83361775601613175e+01 -Electron-alpha_thermal_Coulomb_log_at_point_27___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile27)_ 1.83359616877146152e+01 -Electron-alpha_thermal_Coulomb_log_at_point_28___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile28)_ 1.83357376251028690e+01 -Electron-alpha_thermal_Coulomb_log_at_point_29___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile29)_ 1.83355053674190067e+01 -Electron-alpha_thermal_Coulomb_log_at_point_30___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile30)_ 1.83352649095749278e+01 -Electron-alpha_thermal_Coulomb_log_at_point_31___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile31)_ 1.83350162463012012e+01 -Electron-alpha_thermal_Coulomb_log_at_point_32___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile32)_ 1.83347593721467845e+01 -Electron-alpha_thermal_Coulomb_log_at_point_33___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile33)_ 1.83344942814787295e+01 -Electron-alpha_thermal_Coulomb_log_at_point_34___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile34)_ 1.83342209684818584e+01 -Electron-alpha_thermal_Coulomb_log_at_point_35___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile35)_ 1.83339394271584517e+01 -Electron-alpha_thermal_Coulomb_log_at_point_36___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile36)_ 1.83336496513279066e+01 -Electron-alpha_thermal_Coulomb_log_at_point_37___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile37)_ 1.83333516346264247e+01 -Electron-alpha_thermal_Coulomb_log_at_point_38___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile38)_ 1.83330453705066319e+01 -Electron-alpha_thermal_Coulomb_log_at_point_39___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile39)_ 1.83327308522372157e+01 -Electron-alpha_thermal_Coulomb_log_at_point_40___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile40)_ 1.83324080729025702e+01 -Electron-alpha_thermal_Coulomb_log_at_point_41___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile41)_ 1.83320770254024232e+01 -Electron-alpha_thermal_Coulomb_log_at_point_42___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile42)_ 1.83317377024514023e+01 -Electron-alpha_thermal_Coulomb_log_at_point_43___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile43)_ 1.83313900965786800e+01 -Electron-alpha_thermal_Coulomb_log_at_point_44___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile44)_ 1.83310342001275295e+01 -Electron-alpha_thermal_Coulomb_log_at_point_45___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile45)_ 1.83306700052549125e+01 -Electron-alpha_thermal_Coulomb_log_at_point_46___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile46)_ 1.83302975039310461e+01 -Electron-alpha_thermal_Coulomb_log_at_point_47___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile47)_ 1.83299166879389510e+01 -Electron-alpha_thermal_Coulomb_log_at_point_48___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile48)_ 1.83295275488740046e+01 -Electron-alpha_thermal_Coulomb_log_at_point_49___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile49)_ 1.83291300781434749e+01 -Electron-alpha_thermal_Coulomb_log_at_point_50___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile50)_ 1.83287242669660451e+01 -Electron-alpha_thermal_Coulomb_log_at_point_51___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile51)_ 1.83283101063713048e+01 -Electron-alpha_thermal_Coulomb_log_at_point_52___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile52)_ 1.83278875871992923e+01 -Electron-alpha_thermal_Coulomb_log_at_point_53___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile53)_ 1.83274567000999546e+01 -Electron-alpha_thermal_Coulomb_log_at_point_54___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile54)_ 1.83270174355326425e+01 -Electron-alpha_thermal_Coulomb_log_at_point_55___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile55)_ 1.83265697837655743e+01 -Electron-alpha_thermal_Coulomb_log_at_point_56___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile56)_ 1.83261137348753067e+01 -Electron-alpha_thermal_Coulomb_log_at_point_57___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile57)_ 1.83256492787461660e+01 -Electron-alpha_thermal_Coulomb_log_at_point_58___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile58)_ 1.83251764050696941e+01 -Electron-alpha_thermal_Coulomb_log_at_point_59___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile59)_ 1.83246951033440872e+01 -Electron-alpha_thermal_Coulomb_log_at_point_60___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile60)_ 1.83242053628735846e+01 -Electron-alpha_thermal_Coulomb_log_at_point_61___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile61)_ 1.83237071727678966e+01 -Electron-alpha_thermal_Coulomb_log_at_point_62___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile62)_ 1.83232005219415903e+01 -Electron-alpha_thermal_Coulomb_log_at_point_63___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile63)_ 1.83226853991134746e+01 -Electron-alpha_thermal_Coulomb_log_at_point_64___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile64)_ 1.83221617928059537e+01 -Electron-alpha_thermal_Coulomb_log_at_point_65___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile65)_ 1.83216296913444125e+01 -Electron-alpha_thermal_Coulomb_log_at_point_66___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile66)_ 1.83210890828565525e+01 -Electron-alpha_thermal_Coulomb_log_at_point_67___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile67)_ 1.83205399552717303e+01 -Electron-alpha_thermal_Coulomb_log_at_point_68___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile68)_ 1.83199822963202799e+01 -Electron-alpha_thermal_Coulomb_log_at_point_69___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile69)_ 1.83194160935328263e+01 -Electron-alpha_thermal_Coulomb_log_at_point_70___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile70)_ 1.83188413342396075e+01 -Electron-alpha_thermal_Coulomb_log_at_point_71___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile71)_ 1.83182580055697279e+01 -Electron-alpha_thermal_Coulomb_log_at_point_72___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile72)_ 1.83176660944504803e+01 -Electron-alpha_thermal_Coulomb_log_at_point_73___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile73)_ 1.83170655876065780e+01 -Electron-alpha_thermal_Coulomb_log_at_point_74___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile74)_ 1.83164564715594373e+01 -Electron-alpha_thermal_Coulomb_log_at_point_75___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile75)_ 1.83158387326264069e+01 -Electron-alpha_thermal_Coulomb_log_at_point_76___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile76)_ 1.83152123569200000e+01 -Electron-alpha_thermal_Coulomb_log_at_point_77___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile77)_ 1.83145773303471344e+01 -Electron-alpha_thermal_Coulomb_log_at_point_78___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile78)_ 1.83139336386083116e+01 -Electron-alpha_thermal_Coulomb_log_at_point_79___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile79)_ 1.83132812671968246e+01 -Electron-alpha_thermal_Coulomb_log_at_point_80___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile80)_ 1.83126202013979622e+01 -Electron-alpha_thermal_Coulomb_log_at_point_81___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile81)_ 1.83119504262881598e+01 -Electron-alpha_thermal_Coulomb_log_at_point_82___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile82)_ 1.83112719267341539e+01 -Electron-alpha_thermal_Coulomb_log_at_point_83___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile83)_ 1.83105846873921543e+01 -Electron-alpha_thermal_Coulomb_log_at_point_84___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile84)_ 1.83098886927069699e+01 -Electron-alpha_thermal_Coulomb_log_at_point_85___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile85)_ 1.83091839269111141e+01 -Electron-alpha_thermal_Coulomb_log_at_point_86___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile86)_ 1.83084703740239370e+01 -Electron-alpha_thermal_Coulomb_log_at_point_87___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile87)_ 1.83077480178507308e+01 -Electron-alpha_thermal_Coulomb_log_at_point_88___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile88)_ 1.83070168419817776e+01 -Electron-alpha_thermal_Coulomb_log_at_point_89___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile89)_ 1.83062768297914715e+01 -Electron-alpha_thermal_Coulomb_log_at_point_90___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile90)_ 1.83055279644373350e+01 -Electron-alpha_thermal_Coulomb_log_at_point_91___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile91)_ 1.83047702288591019e+01 -Electron-alpha_thermal_Coulomb_log_at_point_92___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile92)_ 1.83040036057777300e+01 -Electron-alpha_thermal_Coulomb_log_at_point_93___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile93)_ 1.83032280776944347e+01 -Electron-alpha_thermal_Coulomb_log_at_point_94___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile94)_ 1.83024436268896835e+01 -Electron-alpha_thermal_Coulomb_log_at_point_95___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile95)_ 1.83016502354222119e+01 -Electron-alpha_thermal_Coulomb_log_at_point_96___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile96)_ 1.83008478851279932e+01 -Electron-alpha_thermal_Coulomb_log_at_point_97___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile97)_ 1.83000365576192117e+01 -Electron-alpha_thermal_Coulomb_log_at_point_98___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile98)_ 1.82992162342832181e+01 -Electron-alpha_thermal_Coulomb_log_at_point_99___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile99)_ 1.82983868962814782e+01 -Electron-alpha_thermal_Coulomb_log_at_point_100__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile100)_ 1.82975485245484855e+01 -Electron-alpha_thermal_Coulomb_log_at_point_101__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile101)_ 1.82967010997907096e+01 -Electron-alpha_thermal_Coulomb_log_at_point_102__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile102)_ 1.82958446024854666e+01 -Electron-alpha_thermal_Coulomb_log_at_point_103__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile103)_ 1.82949790128798249e+01 -Electron-alpha_thermal_Coulomb_log_at_point_104__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile104)_ 1.82941043109894821e+01 -Electron-alpha_thermal_Coulomb_log_at_point_105__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile105)_ 1.82932204765976074e+01 -Electron-alpha_thermal_Coulomb_log_at_point_106__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile106)_ 1.82923274892537293e+01 -Electron-alpha_thermal_Coulomb_log_at_point_107__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile107)_ 1.82914253282725170e+01 -Electron-alpha_thermal_Coulomb_log_at_point_108__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile108)_ 1.82905139727326613e+01 -Electron-alpha_thermal_Coulomb_log_at_point_109__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile109)_ 1.82895934014756172e+01 -Electron-alpha_thermal_Coulomb_log_at_point_110__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile110)_ 1.82886635931044488e+01 -Electron-alpha_thermal_Coulomb_log_at_point_111__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile111)_ 1.82877245259825791e+01 -Electron-alpha_thermal_Coulomb_log_at_point_112__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile112)_ 1.82867761782325609e+01 -Electron-alpha_thermal_Coulomb_log_at_point_113__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile113)_ 1.82858185277348255e+01 -Electron-alpha_thermal_Coulomb_log_at_point_114__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile114)_ 1.82848515521264261e+01 -Electron-alpha_thermal_Coulomb_log_at_point_115__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile115)_ 1.82838752287997366e+01 -Electron-alpha_thermal_Coulomb_log_at_point_116__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile116)_ 1.82828895349011837e+01 -Electron-alpha_thermal_Coulomb_log_at_point_117__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile117)_ 1.82818944473299361e+01 -Electron-alpha_thermal_Coulomb_log_at_point_118__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile118)_ 1.82808899427365503e+01 -Electron-alpha_thermal_Coulomb_log_at_point_119__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile119)_ 1.82798759975216711e+01 -Electron-alpha_thermal_Coulomb_log_at_point_120__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile120)_ 1.82788525878346526e+01 -Electron-alpha_thermal_Coulomb_log_at_point_121__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile121)_ 1.82778196895722154e+01 -Electron-alpha_thermal_Coulomb_log_at_point_122__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile122)_ 1.82767772783770397e+01 -Electron-alpha_thermal_Coulomb_log_at_point_123__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile123)_ 1.82757253296363764e+01 -Electron-alpha_thermal_Coulomb_log_at_point_124__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile124)_ 1.82746638184806436e+01 -Electron-alpha_thermal_Coulomb_log_at_point_125__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile125)_ 1.82735927197819876e+01 -Electron-alpha_thermal_Coulomb_log_at_point_126__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile126)_ 1.82725120081528480e+01 -Electron-alpha_thermal_Coulomb_log_at_point_127__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile127)_ 1.82714216579444866e+01 -Electron-alpha_thermal_Coulomb_log_at_point_128__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile128)_ 1.82703216432455378e+01 -Electron-alpha_thermal_Coulomb_log_at_point_129__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile129)_ 1.82692119378804918e+01 -Electron-alpha_thermal_Coulomb_log_at_point_130__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile130)_ 1.82680925154082132e+01 -Electron-alpha_thermal_Coulomb_log_at_point_131__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile131)_ 1.82669633491203989e+01 -Electron-alpha_thermal_Coulomb_log_at_point_132__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile132)_ 1.82658244120400681e+01 -Electron-alpha_thermal_Coulomb_log_at_point_133__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile133)_ 1.82646756769199854e+01 -Electron-alpha_thermal_Coulomb_log_at_point_134__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile134)_ 1.82635171162411218e+01 -Electron-alpha_thermal_Coulomb_log_at_point_135__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile135)_ 1.82623487022110353e+01 -Electron-alpha_thermal_Coulomb_log_at_point_136__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile136)_ 1.82611704067623180e+01 -Electron-alpha_thermal_Coulomb_log_at_point_137__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile137)_ 1.82599822015509368e+01 -Electron-alpha_thermal_Coulomb_log_at_point_138__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile138)_ 1.82587840579546281e+01 -Electron-alpha_thermal_Coulomb_log_at_point_139__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile139)_ 1.82575759470712562e+01 -Electron-alpha_thermal_Coulomb_log_at_point_140__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile140)_ 1.82563578397171185e+01 -Electron-alpha_thermal_Coulomb_log_at_point_141__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile141)_ 1.82551297064253113e+01 -Electron-alpha_thermal_Coulomb_log_at_point_142__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile142)_ 1.82538915174440000e+01 -Electron-alpha_thermal_Coulomb_log_at_point_143__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile143)_ 1.82526432427347238e+01 -Electron-alpha_thermal_Coulomb_log_at_point_144__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile144)_ 1.82513848519706698e+01 -Electron-alpha_thermal_Coulomb_log_at_point_145__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile145)_ 1.82501163145349068e+01 -Electron-alpha_thermal_Coulomb_log_at_point_146__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile146)_ 1.82488375995186694e+01 -Electron-alpha_thermal_Coulomb_log_at_point_147__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile147)_ 1.82475486757195320e+01 -Electron-alpha_thermal_Coulomb_log_at_point_148__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile148)_ 1.82462495116396397e+01 -Electron-alpha_thermal_Coulomb_log_at_point_149__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile149)_ 1.82449400754839175e+01 -Electron-alpha_thermal_Coulomb_log_at_point_150__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile150)_ 1.82436203351582051e+01 -Electron-alpha_thermal_Coulomb_log_at_point_151__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile151)_ 1.82422902582674418e+01 -Electron-alpha_thermal_Coulomb_log_at_point_152__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile152)_ 1.82409498121138078e+01 -Electron-alpha_thermal_Coulomb_log_at_point_153__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile153)_ 1.82395989636948279e+01 -Electron-alpha_thermal_Coulomb_log_at_point_154__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile154)_ 1.82382376797015020e+01 -Electron-alpha_thermal_Coulomb_log_at_point_155__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile155)_ 1.82368659265163870e+01 -Electron-alpha_thermal_Coulomb_log_at_point_156__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile156)_ 1.82354836702116643e+01 -Electron-alpha_thermal_Coulomb_log_at_point_157__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile157)_ 1.82340908765472172e+01 -Electron-alpha_thermal_Coulomb_log_at_point_158__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile158)_ 1.82326875109686597e+01 -Electron-alpha_thermal_Coulomb_log_at_point_159__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile159)_ 1.82312735386053575e+01 -Electron-alpha_thermal_Coulomb_log_at_point_160__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile160)_ 1.82298489242684418e+01 -Electron-alpha_thermal_Coulomb_log_at_point_161__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile161)_ 1.82284136324488131e+01 -Electron-alpha_thermal_Coulomb_log_at_point_162__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile162)_ 1.82269676273150978e+01 -Electron-alpha_thermal_Coulomb_log_at_point_163__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile163)_ 1.82255108727116131e+01 -Electron-alpha_thermal_Coulomb_log_at_point_164__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile164)_ 1.82240433321563167e+01 -Electron-alpha_thermal_Coulomb_log_at_point_165__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile165)_ 1.82225649688387215e+01 -Electron-alpha_thermal_Coulomb_log_at_point_166__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile166)_ 1.82210757456178172e+01 -Electron-alpha_thermal_Coulomb_log_at_point_167__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile167)_ 1.82195756250199601e+01 -Electron-alpha_thermal_Coulomb_log_at_point_168__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile168)_ 1.82180645692367378e+01 -Electron-alpha_thermal_Coulomb_log_at_point_169__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile169)_ 1.82165425401228340e+01 -Electron-alpha_thermal_Coulomb_log_at_point_170__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile170)_ 1.82150094991939042e+01 -Electron-alpha_thermal_Coulomb_log_at_point_171__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile171)_ 1.82134654076243514e+01 -Electron-alpha_thermal_Coulomb_log_at_point_172__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile172)_ 1.82119102262451840e+01 -Electron-alpha_thermal_Coulomb_log_at_point_173__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile173)_ 1.82103439155417774e+01 -Electron-alpha_thermal_Coulomb_log_at_point_174__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile174)_ 1.82087664356516825e+01 -Electron-alpha_thermal_Coulomb_log_at_point_175__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile175)_ 1.82071777463623761e+01 -Electron-alpha_thermal_Coulomb_log_at_point_176__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile176)_ 1.82055778071090124e+01 -Electron-alpha_thermal_Coulomb_log_at_point_177__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile177)_ 1.82039665769721566e+01 -Electron-alpha_thermal_Coulomb_log_at_point_178__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile178)_ 1.82023440146754965e+01 -Electron-alpha_thermal_Coulomb_log_at_point_179__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile179)_ 1.82007100785835725e+01 -Electron-alpha_thermal_Coulomb_log_at_point_180__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile180)_ 1.81990647266994259e+01 -Electron-alpha_thermal_Coulomb_log_at_point_181__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile181)_ 1.81974079166623000e+01 -Electron-alpha_thermal_Coulomb_log_at_point_182__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile182)_ 1.81957396057453025e+01 -Electron-alpha_thermal_Coulomb_log_at_point_183__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile183)_ 1.81940597508530253e+01 -Electron-alpha_thermal_Coulomb_log_at_point_184__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile184)_ 1.81923683085191854e+01 -Electron-alpha_thermal_Coulomb_log_at_point_185__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile185)_ 1.81906652349042552e+01 -Electron-alpha_thermal_Coulomb_log_at_point_186__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile186)_ 1.81889504857930504e+01 -Electron-alpha_thermal_Coulomb_log_at_point_187__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile187)_ 1.81872240165923138e+01 -Electron-alpha_thermal_Coulomb_log_at_point_188__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile188)_ 1.81854857823282927e+01 -Electron-alpha_thermal_Coulomb_log_at_point_189__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile189)_ 1.81837357376443194e+01 -Electron-alpha_thermal_Coulomb_log_at_point_190__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile190)_ 1.81819738367983383e+01 -Electron-alpha_thermal_Coulomb_log_at_point_191__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile191)_ 1.81802000336604515e+01 -Electron-alpha_thermal_Coulomb_log_at_point_192__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile192)_ 1.81784142817104417e+01 -Electron-alpha_thermal_Coulomb_log_at_point_193__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile193)_ 1.81766165340352792e+01 -Electron-alpha_thermal_Coulomb_log_at_point_194__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile194)_ 1.81748067433266414e+01 -Electron-alpha_thermal_Coulomb_log_at_point_195__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile195)_ 1.81729848618783940e+01 -Electron-alpha_thermal_Coulomb_log_at_point_196__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile196)_ 1.81711508415840441e+01 -Electron-alpha_thermal_Coulomb_log_at_point_197__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile197)_ 1.81693046339342601e+01 -Electron-alpha_thermal_Coulomb_log_at_point_198__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile198)_ 1.81674461900142923e+01 -Electron-alpha_thermal_Coulomb_log_at_point_199__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile199)_ 1.81655754605014437e+01 -Electron-alpha_thermal_Coulomb_log_at_point_200__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile200)_ 1.81636923956624869e+01 -Electron-alpha_thermal_Coulomb_log_at_point_201__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile201)_ 1.81617969453511350e+01 -Electron-alpha_thermal_Coulomb_log_at_point_202__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile202)_ 1.81598890590054225e+01 -Electron-alpha_thermal_Coulomb_log_at_point_203__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile203)_ 1.81579686856451730e+01 -Electron-alpha_thermal_Coulomb_log_at_point_204__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile204)_ 1.81560357738693625e+01 -Electron-alpha_thermal_Coulomb_log_at_point_205__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile205)_ 1.81540902718535584e+01 -Electron-alpha_thermal_Coulomb_log_at_point_206__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile206)_ 1.81521321273473006e+01 -Electron-alpha_thermal_Coulomb_log_at_point_207__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile207)_ 1.81501612876715015e+01 -Electron-alpha_thermal_Coulomb_log_at_point_208__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile208)_ 1.81481776997158519e+01 -Electron-alpha_thermal_Coulomb_log_at_point_209__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile209)_ 1.81461813099361891e+01 -Electron-alpha_thermal_Coulomb_log_at_point_210__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile210)_ 1.81441720643518778e+01 -Electron-alpha_thermal_Coulomb_log_at_point_211__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile211)_ 1.81421499085432281e+01 -Electron-alpha_thermal_Coulomb_log_at_point_212__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile212)_ 1.81401147876488338e+01 -Electron-alpha_thermal_Coulomb_log_at_point_213__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile213)_ 1.81380666463629900e+01 -Electron-alpha_thermal_Coulomb_log_at_point_214__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile214)_ 1.81360054289330641e+01 -Electron-alpha_thermal_Coulomb_log_at_point_215__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile215)_ 1.81339310791568700e+01 -Electron-alpha_thermal_Coulomb_log_at_point_216__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile216)_ 1.81318435403800819e+01 -Electron-alpha_thermal_Coulomb_log_at_point_217__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile217)_ 1.81297427554936021e+01 -Electron-alpha_thermal_Coulomb_log_at_point_218__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile218)_ 1.81276286669309705e+01 -Electron-alpha_thermal_Coulomb_log_at_point_219__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile219)_ 1.81255012166657679e+01 -Electron-alpha_thermal_Coulomb_log_at_point_220__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile220)_ 1.81233603462090294e+01 -Electron-alpha_thermal_Coulomb_log_at_point_221__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile221)_ 1.81212059966066512e+01 -Electron-alpha_thermal_Coulomb_log_at_point_222__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile222)_ 1.81190381084368290e+01 -Electron-alpha_thermal_Coulomb_log_at_point_223__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile223)_ 1.81168566218075107e+01 -Electron-alpha_thermal_Coulomb_log_at_point_224__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile224)_ 1.81146614763538167e+01 -Electron-alpha_thermal_Coulomb_log_at_point_225__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile225)_ 1.81124526112355362e+01 -Electron-alpha_thermal_Coulomb_log_at_point_226__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile226)_ 1.81102299651346073e+01 -Electron-alpha_thermal_Coulomb_log_at_point_227__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile227)_ 1.81079934762525880e+01 -Electron-alpha_thermal_Coulomb_log_at_point_228__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile228)_ 1.81057430823082157e+01 -Electron-alpha_thermal_Coulomb_log_at_point_229__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile229)_ 1.81034787205349055e+01 -Electron-alpha_thermal_Coulomb_log_at_point_230__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile230)_ 1.81012003276783595e+01 -Electron-alpha_thermal_Coulomb_log_at_point_231__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile231)_ 1.80989078399940944e+01 -Electron-alpha_thermal_Coulomb_log_at_point_232__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile232)_ 1.80966011932451032e+01 -Electron-alpha_thermal_Coulomb_log_at_point_233__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile233)_ 1.80942803226994435e+01 -Electron-alpha_thermal_Coulomb_log_at_point_234__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile234)_ 1.80919451631279671e+01 -Electron-alpha_thermal_Coulomb_log_at_point_235__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile235)_ 1.80895956488019714e+01 -Electron-alpha_thermal_Coulomb_log_at_point_236__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile236)_ 1.80872317134909508e+01 -Electron-alpha_thermal_Coulomb_log_at_point_237__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile237)_ 1.80848532904603836e+01 -Electron-alpha_thermal_Coulomb_log_at_point_238__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile238)_ 1.80824603124695180e+01 -Electron-alpha_thermal_Coulomb_log_at_point_239__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile239)_ 1.80800527117692447e+01 -Electron-alpha_thermal_Coulomb_log_at_point_240__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile240)_ 1.80776304200999931e+01 -Electron-alpha_thermal_Coulomb_log_at_point_241__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile241)_ 1.80751933686896606e+01 -Electron-alpha_thermal_Coulomb_log_at_point_242__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile242)_ 1.80727414882516264e+01 -Electron-alpha_thermal_Coulomb_log_at_point_243__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile243)_ 1.80702747089827938e+01 -Electron-alpha_thermal_Coulomb_log_at_point_244__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile244)_ 1.80677929605616825e+01 -Electron-alpha_thermal_Coulomb_log_at_point_245__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile245)_ 1.80652961721466205e+01 -Electron-alpha_thermal_Coulomb_log_at_point_246__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile246)_ 1.80627842723739356e+01 -Electron-alpha_thermal_Coulomb_log_at_point_247__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile247)_ 1.80602571893562640e+01 -Electron-alpha_thermal_Coulomb_log_at_point_248__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile248)_ 1.80577148506809273e+01 -Electron-alpha_thermal_Coulomb_log_at_point_249__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile249)_ 1.80551571834083333e+01 -Electron-alpha_thermal_Coulomb_log_at_point_250__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile250)_ 1.80525841140705126e+01 -Electron-alpha_thermal_Coulomb_log_at_point_251__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile251)_ 1.80499955686697113e+01 -Electron-alpha_thermal_Coulomb_log_at_point_252__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile252)_ 1.80473914726770666e+01 -Electron-alpha_thermal_Coulomb_log_at_point_253__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile253)_ 1.80447717510313588e+01 -Electron-alpha_thermal_Coulomb_log_at_point_254__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile254)_ 1.80421363281379072e+01 -Electron-alpha_thermal_Coulomb_log_at_point_255__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile255)_ 1.80394851278674970e+01 -Electron-alpha_thermal_Coulomb_log_at_point_256__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile256)_ 1.80368180735554873e+01 -Electron-alpha_thermal_Coulomb_log_at_point_257__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile257)_ 1.80341350880009337e+01 -Electron-alpha_thermal_Coulomb_log_at_point_258__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile258)_ 1.80314360934659241e+01 -Electron-alpha_thermal_Coulomb_log_at_point_259__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile259)_ 1.80287210116749712e+01 -Electron-alpha_thermal_Coulomb_log_at_point_260__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile260)_ 1.80259897638145326e+01 -Electron-alpha_thermal_Coulomb_log_at_point_261__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile261)_ 1.80232422705327018e+01 -Electron-alpha_thermal_Coulomb_log_at_point_262__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile262)_ 1.80204784519389989e+01 -Electron-alpha_thermal_Coulomb_log_at_point_263__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile263)_ 1.80176982276043098e+01 -Electron-alpha_thermal_Coulomb_log_at_point_264__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile264)_ 1.80149015165610038e+01 -Electron-alpha_thermal_Coulomb_log_at_point_265__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile265)_ 1.80120882373031819e+01 -Electron-alpha_thermal_Coulomb_log_at_point_266__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile266)_ 1.80092583077870749e+01 -Electron-alpha_thermal_Coulomb_log_at_point_267__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile267)_ 1.80064116454316725e+01 -Electron-alpha_thermal_Coulomb_log_at_point_268__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile268)_ 1.80035481671194653e+01 -Electron-alpha_thermal_Coulomb_log_at_point_269__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile269)_ 1.80006677891974256e+01 -Electron-alpha_thermal_Coulomb_log_at_point_270__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile270)_ 1.79977704274781409e+01 -Electron-alpha_thermal_Coulomb_log_at_point_271__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile271)_ 1.79948559972411921e+01 -Electron-alpha_thermal_Coulomb_log_at_point_272__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile272)_ 1.79919244132347202e+01 -Electron-alpha_thermal_Coulomb_log_at_point_273__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile273)_ 1.79889755896772243e+01 -Electron-alpha_thermal_Coulomb_log_at_point_274__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile274)_ 1.79860094402595792e+01 -Electron-alpha_thermal_Coulomb_log_at_point_275__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile275)_ 1.79830258781473340e+01 -Electron-alpha_thermal_Coulomb_log_at_point_276__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile276)_ 1.79800248159832172e+01 -Electron-alpha_thermal_Coulomb_log_at_point_277__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile277)_ 1.79770061658899394e+01 -Electron-alpha_thermal_Coulomb_log_at_point_278__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile278)_ 1.79739698394732272e+01 -Electron-alpha_thermal_Coulomb_log_at_point_279__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile279)_ 1.79709157478252308e+01 -Electron-alpha_thermal_Coulomb_log_at_point_280__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile280)_ 1.79678438015281259e+01 -Electron-alpha_thermal_Coulomb_log_at_point_281__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile281)_ 1.79647539106581000e+01 -Electron-alpha_thermal_Coulomb_log_at_point_282__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile282)_ 1.79616459847896479e+01 -Electron-alpha_thermal_Coulomb_log_at_point_283__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile283)_ 1.79585199330001828e+01 -Electron-alpha_thermal_Coulomb_log_at_point_284__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile284)_ 1.79553756638750244e+01 -Electron-alpha_thermal_Coulomb_log_at_point_285__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile285)_ 1.79522130855127564e+01 -Electron-alpha_thermal_Coulomb_log_at_point_286__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile286)_ 1.79490321055309430e+01 -Electron-alpha_thermal_Coulomb_log_at_point_287__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile287)_ 1.79458326310722853e+01 -Electron-alpha_thermal_Coulomb_log_at_point_288__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile288)_ 1.79426145688111447e+01 -Electron-alpha_thermal_Coulomb_log_at_point_289__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile289)_ 1.79393778249605305e+01 -Electron-alpha_thermal_Coulomb_log_at_point_290__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile290)_ 1.79361223052795431e+01 -Electron-alpha_thermal_Coulomb_log_at_point_291__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile291)_ 1.79328479150812541e+01 -Electron-alpha_thermal_Coulomb_log_at_point_292__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile292)_ 1.79295545592411258e+01 -Electron-alpha_thermal_Coulomb_log_at_point_293__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile293)_ 1.79262421422058864e+01 -Electron-alpha_thermal_Coulomb_log_at_point_294__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile294)_ 1.79229105680029548e+01 -Electron-alpha_thermal_Coulomb_log_at_point_295__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile295)_ 1.79195597402504525e+01 -Electron-alpha_thermal_Coulomb_log_at_point_296__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile296)_ 1.79161895621677303e+01 -Electron-alpha_thermal_Coulomb_log_at_point_297__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile297)_ 1.79127999365865271e+01 -Electron-alpha_thermal_Coulomb_log_at_point_298__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile298)_ 1.79093907659627476e+01 -Electron-alpha_thermal_Coulomb_log_at_point_299__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile299)_ 1.79059619523888855e+01 -Electron-alpha_thermal_Coulomb_log_at_point_300__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile300)_ 1.79025133976071231e+01 -Electron-alpha_thermal_Coulomb_log_at_point_301__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile301)_ 1.78990450030231116e+01 -Electron-alpha_thermal_Coulomb_log_at_point_302__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile302)_ 1.78955566697205235e+01 -Electron-alpha_thermal_Coulomb_log_at_point_303__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile303)_ 1.78920482984763041e+01 -Electron-alpha_thermal_Coulomb_log_at_point_304__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile304)_ 1.78885197897767902e+01 -Electron-alpha_thermal_Coulomb_log_at_point_305__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile305)_ 1.78849710438345646e+01 -Electron-alpha_thermal_Coulomb_log_at_point_306__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile306)_ 1.78814019606062438e+01 -Electron-alpha_thermal_Coulomb_log_at_point_307__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile307)_ 1.78778124398111053e+01 -Electron-alpha_thermal_Coulomb_log_at_point_308__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile308)_ 1.78742023809506705e+01 -Electron-alpha_thermal_Coulomb_log_at_point_309__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile309)_ 1.78705716833292243e+01 -Electron-alpha_thermal_Coulomb_log_at_point_310__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile310)_ 1.78669202460753560e+01 -Electron-alpha_thermal_Coulomb_log_at_point_311__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile311)_ 1.78632479681645542e+01 -Electron-alpha_thermal_Coulomb_log_at_point_312__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile312)_ 1.78595547484428465e+01 -Electron-alpha_thermal_Coulomb_log_at_point_313__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile313)_ 1.78558404856516297e+01 -Electron-alpha_thermal_Coulomb_log_at_point_314__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile314)_ 1.78521050784536079e+01 -Electron-alpha_thermal_Coulomb_log_at_point_315__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile315)_ 1.78483484254600135e+01 -Electron-alpha_thermal_Coulomb_log_at_point_316__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile316)_ 1.78445704252590431e+01 -Electron-alpha_thermal_Coulomb_log_at_point_317__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile317)_ 1.78407709764456932e+01 -Electron-alpha_thermal_Coulomb_log_at_point_318__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile318)_ 1.78369499776528819e+01 -Electron-alpha_thermal_Coulomb_log_at_point_319__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile319)_ 1.78331073275840843e+01 -Electron-alpha_thermal_Coulomb_log_at_point_320__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile320)_ 1.78292429250474100e+01 -Electron-alpha_thermal_Coulomb_log_at_point_321__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile321)_ 1.78253566689912439e+01 -Electron-alpha_thermal_Coulomb_log_at_point_322__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile322)_ 1.78214484585415356e+01 -Electron-alpha_thermal_Coulomb_log_at_point_323__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile323)_ 1.78175181930406978e+01 -Electron-alpha_thermal_Coulomb_log_at_point_324__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile324)_ 1.78135657720883387e+01 -Electron-alpha_thermal_Coulomb_log_at_point_325__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile325)_ 1.78095910955837411e+01 -Electron-alpha_thermal_Coulomb_log_at_point_326__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile326)_ 1.78055940637702896e+01 -Electron-alpha_thermal_Coulomb_log_at_point_327__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile327)_ 1.78015745772818335e+01 -Electron-alpha_thermal_Coulomb_log_at_point_328__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile328)_ 1.77975325371911026e+01 -Electron-alpha_thermal_Coulomb_log_at_point_329__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile329)_ 1.77934678450603094e+01 -Electron-alpha_thermal_Coulomb_log_at_point_330__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile330)_ 1.77893804029938991e+01 -Electron-alpha_thermal_Coulomb_log_at_point_331__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile331)_ 1.77852701136936524e+01 -Electron-alpha_thermal_Coulomb_log_at_point_332__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile332)_ 1.77811368805162076e+01 -Electron-alpha_thermal_Coulomb_log_at_point_333__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile333)_ 1.77769806075330550e+01 -Electron-alpha_thermal_Coulomb_log_at_point_334__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile334)_ 1.77728011995931858e+01 -Electron-alpha_thermal_Coulomb_log_at_point_335__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile335)_ 1.77685985623883980e+01 -Electron-alpha_thermal_Coulomb_log_at_point_336__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile336)_ 1.77643726025214832e+01 -Electron-alpha_thermal_Coulomb_log_at_point_337__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile337)_ 1.77601232275773455e+01 -Electron-alpha_thermal_Coulomb_log_at_point_338__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile338)_ 1.77558503461971462e+01 -Electron-alpha_thermal_Coulomb_log_at_point_339__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile339)_ 1.77515538681557210e+01 -Electron-alpha_thermal_Coulomb_log_at_point_340__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile340)_ 1.77472337044422304e+01 -Electron-alpha_thermal_Coulomb_log_at_point_341__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile341)_ 1.77428897673443338e+01 -Electron-alpha_thermal_Coulomb_log_at_point_342__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile342)_ 1.77385219705359631e+01 -Electron-alpha_thermal_Coulomb_log_at_point_343__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile343)_ 1.77341302291687946e+01 -Electron-alpha_thermal_Coulomb_log_at_point_344__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile344)_ 1.77297144599677488e+01 -Electron-alpha_thermal_Coulomb_log_at_point_345__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile345)_ 1.77252745813304244e+01 -Electron-alpha_thermal_Coulomb_log_at_point_346__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile346)_ 1.77208105134308624e+01 -Electron-alpha_thermal_Coulomb_log_at_point_347__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile347)_ 1.77163221783277294e+01 -Electron-alpha_thermal_Coulomb_log_at_point_348__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile348)_ 1.77118095000770737e+01 -Electron-alpha_thermal_Coulomb_log_at_point_349__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile349)_ 1.77072724048499026e+01 -Electron-alpha_thermal_Coulomb_log_at_point_350__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile350)_ 1.77027108210547439e+01 -Electron-alpha_thermal_Coulomb_log_at_point_351__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile351)_ 1.76981246794654474e+01 -Electron-alpha_thermal_Coulomb_log_at_point_352__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile352)_ 1.76935139133543871e+01 -Electron-alpha_thermal_Coulomb_log_at_point_353__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile353)_ 1.76888784586313470e+01 -Electron-alpha_thermal_Coulomb_log_at_point_354__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile354)_ 1.76842182539882735e+01 -Electron-alpha_thermal_Coulomb_log_at_point_355__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile355)_ 1.76795332410502439e+01 -Electron-alpha_thermal_Coulomb_log_at_point_356__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile356)_ 1.76748233645327701e+01 -Electron-alpha_thermal_Coulomb_log_at_point_357__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile357)_ 1.76700885724058381e+01 -Electron-alpha_thermal_Coulomb_log_at_point_358__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile358)_ 1.76653288160649140e+01 -Electron-alpha_thermal_Coulomb_log_at_point_359__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile359)_ 1.76605440505091984e+01 -Electron-alpha_thermal_Coulomb_log_at_point_360__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile360)_ 1.76557342345274577e+01 -Electron-alpha_thermal_Coulomb_log_at_point_361__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile361)_ 1.76508993308918498e+01 -Electron-alpha_thermal_Coulomb_log_at_point_362__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile362)_ 1.76460393065598318e+01 -Electron-alpha_thermal_Coulomb_log_at_point_363__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile363)_ 1.76411541328848536e+01 -Electron-alpha_thermal_Coulomb_log_at_point_364__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile364)_ 1.76362437858358945e+01 -Electron-alpha_thermal_Coulomb_log_at_point_365__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile365)_ 1.76313082462264852e+01 -Electron-alpha_thermal_Coulomb_log_at_point_366__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile366)_ 1.76263474999533649e+01 -Electron-alpha_thermal_Coulomb_log_at_point_367__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile367)_ 1.76213615382454876e+01 -Electron-alpha_thermal_Coulomb_log_at_point_368__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile368)_ 1.76163503579235972e+01 -Electron-alpha_thermal_Coulomb_log_at_point_369__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile369)_ 1.76113139616709198e+01 -Electron-alpha_thermal_Coulomb_log_at_point_370__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile370)_ 1.76062523583155190e+01 -Electron-alpha_thermal_Coulomb_log_at_point_371__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile371)_ 1.76011655631247486e+01 -Electron-alpha_thermal_Coulomb_log_at_point_372__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile372)_ 1.75960535981123272e+01 -Electron-alpha_thermal_Coulomb_log_at_point_373__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile373)_ 1.75909164923587191e+01 -Electron-alpha_thermal_Coulomb_log_at_point_374__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile374)_ 1.75857542823452704e+01 -Electron-alpha_thermal_Coulomb_log_at_point_375__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile375)_ 1.75805670123027724e+01 -Electron-alpha_thermal_Coulomb_log_at_point_376__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile376)_ 1.75753547345752246e+01 -Electron-alpha_thermal_Coulomb_log_at_point_377__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile377)_ 1.75701175099991609e+01 -Electron-alpha_thermal_Coulomb_log_at_point_378__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile378)_ 1.75648554082996640e+01 -Electron-alpha_thermal_Coulomb_log_at_point_379__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile379)_ 1.75595685085034887e+01 -Electron-alpha_thermal_Coulomb_log_at_point_380__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile380)_ 1.75542568993702126e+01 -Electron-alpha_thermal_Coulomb_log_at_point_381__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile381)_ 1.75489206798423147e+01 -Electron-alpha_thermal_Coulomb_log_at_point_382__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile382)_ 1.75435599595148481e+01 -Electron-alpha_thermal_Coulomb_log_at_point_383__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile383)_ 1.75381748591258209e+01 -Electron-alpha_thermal_Coulomb_log_at_point_384__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile384)_ 1.75327655110681455e+01 -Electron-alpha_thermal_Coulomb_log_at_point_385__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile385)_ 1.75273320599241451e+01 -Electron-alpha_thermal_Coulomb_log_at_point_386__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile386)_ 1.75218746630237519e+01 -Electron-alpha_thermal_Coulomb_log_at_point_387__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile387)_ 1.75163934910274826e+01 -Electron-alpha_thermal_Coulomb_log_at_point_388__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile388)_ 1.75108887285352957e+01 -Electron-alpha_thermal_Coulomb_log_at_point_389__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile389)_ 1.75053605747227010e+01 -Electron-alpha_thermal_Coulomb_log_at_point_390__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile390)_ 1.74998092440053057e+01 -Electron-alpha_thermal_Coulomb_log_at_point_391__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile391)_ 1.74942349667332522e+01 -Electron-alpha_thermal_Coulomb_log_at_point_392__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile392)_ 1.74886379899169278e+01 -Electron-alpha_thermal_Coulomb_log_at_point_393__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile393)_ 1.74830185779855718e+01 -Electron-alpha_thermal_Coulomb_log_at_point_394__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile394)_ 1.74773770135802806e+01 -Electron-alpha_thermal_Coulomb_log_at_point_395__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile395)_ 1.74717135983832286e+01 -Electron-alpha_thermal_Coulomb_log_at_point_396__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile396)_ 1.74660286539847931e+01 -Electron-alpha_thermal_Coulomb_log_at_point_397__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile397)_ 1.74603225227906549e+01 -Electron-alpha_thermal_Coulomb_log_at_point_398__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile398)_ 1.74545955689707242e+01 -Electron-alpha_thermal_Coulomb_log_at_point_399__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile399)_ 1.74488481794521171e+01 -Electron-alpha_thermal_Coulomb_log_at_point_400__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile400)_ 1.74430807649585340e+01 -Electron-alpha_thermal_Coulomb_log_at_point_401__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile401)_ 1.74372937610982675e+01 -Electron-alpha_thermal_Coulomb_log_at_point_402__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile402)_ 1.74314876295035681e+01 -Electron-alpha_thermal_Coulomb_log_at_point_403__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile403)_ 1.74256628590240581e+01 -Electron-alpha_thermal_Coulomb_log_at_point_404__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile404)_ 1.74198199669769771e+01 -Electron-alpha_thermal_Coulomb_log_at_point_405__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile405)_ 1.74139595004575689e+01 -Electron-alpha_thermal_Coulomb_log_at_point_406__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile406)_ 1.74080820377126813e+01 -Electron-alpha_thermal_Coulomb_log_at_point_407__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile407)_ 1.74021881895812776e+01 -Electron-alpha_thermal_Coulomb_log_at_point_408__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile408)_ 1.73962786010054700e+01 -Electron-alpha_thermal_Coulomb_log_at_point_409__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile409)_ 1.73903539526163371e+01 -Electron-alpha_thermal_Coulomb_log_at_point_410__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile410)_ 1.73844149623985444e+01 -Electron-alpha_thermal_Coulomb_log_at_point_411__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile411)_ 1.73784623874386952e+01 -Electron-alpha_thermal_Coulomb_log_at_point_412__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile412)_ 1.73724970257622680e+01 -Electron-alpha_thermal_Coulomb_log_at_point_413__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile413)_ 1.73665197182644810e+01 -Electron-alpha_thermal_Coulomb_log_at_point_414__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile414)_ 1.73605313507410592e+01 -Electron-alpha_thermal_Coulomb_log_at_point_415__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile415)_ 1.73545328560249956e+01 -Electron-alpha_thermal_Coulomb_log_at_point_416__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile416)_ 1.73485252162362649e+01 -Electron-alpha_thermal_Coulomb_log_at_point_417__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile417)_ 1.73425094651517639e+01 -Electron-alpha_thermal_Coulomb_log_at_point_418__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile418)_ 1.73364866907035626e+01 -Electron-alpha_thermal_Coulomb_log_at_point_419__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile419)_ 1.73304580376141999e+01 -Electron-alpha_thermal_Coulomb_log_at_point_420__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile420)_ 1.73244247101786328e+01 -Electron-alpha_thermal_Coulomb_log_at_point_421__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile421)_ 1.73183879752032119e+01 -Electron-alpha_thermal_Coulomb_log_at_point_422__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile422)_ 1.73123491651132646e+01 -Electron-alpha_thermal_Coulomb_log_at_point_423__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile423)_ 1.73063096812420127e+01 -Electron-alpha_thermal_Coulomb_log_at_point_424__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile424)_ 1.73002709973145414e+01 -Electron-alpha_thermal_Coulomb_log_at_point_425__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile425)_ 1.72942346631426211e+01 -Electron-alpha_thermal_Coulomb_log_at_point_426__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile426)_ 1.72882023085472731e+01 -Electron-alpha_thermal_Coulomb_log_at_point_427__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile427)_ 1.72821756475283621e+01 -Electron-alpha_thermal_Coulomb_log_at_point_428__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile428)_ 1.72761564827026035e+01 -Electron-alpha_thermal_Coulomb_log_at_point_429__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile429)_ 1.72701467100337602e+01 -Electron-alpha_thermal_Coulomb_log_at_point_430__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile430)_ 1.72641483238822140e+01 -Electron-alpha_thermal_Coulomb_log_at_point_431__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile431)_ 1.72581634224041629e+01 -Electron-alpha_thermal_Coulomb_log_at_point_432__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile432)_ 1.72521942133349526e+01 -Electron-alpha_thermal_Coulomb_log_at_point_433__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile433)_ 1.72462430201959123e+01 -Electron-alpha_thermal_Coulomb_log_at_point_434__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile434)_ 1.72403122889692391e+01 -Electron-alpha_thermal_Coulomb_log_at_point_435__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile435)_ 1.72344045952924532e+01 -Electron-alpha_thermal_Coulomb_log_at_point_436__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile436)_ 1.72285226522317565e+01 -Electron-alpha_thermal_Coulomb_log_at_point_437__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile437)_ 1.72226693187024047e+01 -Electron-alpha_thermal_Coulomb_log_at_point_438__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile438)_ 1.72168476086162094e+01 -Electron-alpha_thermal_Coulomb_log_at_point_439__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile439)_ 1.72110607008487975e+01 -Electron-alpha_thermal_Coulomb_log_at_point_440__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile440)_ 1.72053119501362524e+01 -Electron-alpha_thermal_Coulomb_log_at_point_441__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile441)_ 1.71996048990299322e+01 -Electron-alpha_thermal_Coulomb_log_at_point_442__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile442)_ 1.71939432910630856e+01 -Electron-alpha_thermal_Coulomb_log_at_point_443__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile443)_ 1.71883310853119369e+01 -Electron-alpha_thermal_Coulomb_log_at_point_444__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile444)_ 1.71827724725718269e+01 -Electron-alpha_thermal_Coulomb_log_at_point_445__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile445)_ 1.71772718934148578e+01 -Electron-alpha_thermal_Coulomb_log_at_point_446__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile446)_ 1.71718340584537437e+01 -Electron-alpha_thermal_Coulomb_log_at_point_447__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile447)_ 1.71664639712114315e+01 -Electron-alpha_thermal_Coulomb_log_at_point_448__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile448)_ 1.71611669540905183e+01 -Electron-alpha_thermal_Coulomb_log_at_point_449__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile449)_ 1.71559486780607138e+01 -Electron-alpha_thermal_Coulomb_log_at_point_450__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile450)_ 1.71508151968431406e+01 -Electron-alpha_thermal_Coulomb_log_at_point_451__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile451)_ 1.71457729865852038e+01 -Electron-alpha_thermal_Coulomb_log_at_point_452__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile452)_ 1.71408289923060622e+01 -Electron-alpha_thermal_Coulomb_log_at_point_453__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile453)_ 1.71359906827833299e+01 -Electron-alpha_thermal_Coulomb_log_at_point_454__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile454)_ 1.71312661160909911e+01 -Electron-alpha_thermal_Coulomb_log_at_point_455__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile455)_ 1.71266640187558323e+01 -Electron-alpha_thermal_Coulomb_log_at_point_456__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile456)_ 1.71221938825840141e+01 -Electron-alpha_thermal_Coulomb_log_at_point_457__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile457)_ 1.71178660847957929e+01 -Electron-alpha_thermal_Coulomb_log_at_point_458__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile458)_ 1.71136920394805685e+01 -Electron-alpha_thermal_Coulomb_log_at_point_459__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile459)_ 1.71096843920404034e+01 -Electron-alpha_thermal_Coulomb_log_at_point_460__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile460)_ 1.71058572740933599e+01 -Electron-alpha_thermal_Coulomb_log_at_point_461__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile461)_ 1.71022266458642989e+01 -Electron-alpha_thermal_Coulomb_log_at_point_462__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile462)_ 1.70988107695121023e+01 -Electron-alpha_thermal_Coulomb_log_at_point_463__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile463)_ 1.70956308865372186e+01 -Electron-alpha_thermal_Coulomb_log_at_point_464__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile464)_ 1.70927122295617551e+01 -Electron-alpha_thermal_Coulomb_log_at_point_465__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile465)_ 1.70900856176514893e+01 -Electron-alpha_thermal_Coulomb_log_at_point_466__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile466)_ 1.70877901577894740e+01 -Electron-alpha_thermal_Coulomb_log_at_point_467__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile467)_ 1.70858782959485183e+01 -Electron-alpha_thermal_Coulomb_log_at_point_468__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile468)_ 1.70844267803237031e+01 -Electron-alpha_thermal_Coulomb_log_at_point_469__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile469)_ 1.70835675319629452e+01 -Electron-alpha_thermal_Coulomb_log_at_point_470__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile470)_ 1.70836770143732366e+01 -Electron-alpha_thermal_Coulomb_log_at_point_471__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile471)_ 1.70575734288339476e+01 -Electron-alpha_thermal_Coulomb_log_at_point_472__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile472)_ 1.70304213583625348e+01 -Electron-alpha_thermal_Coulomb_log_at_point_473__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile473)_ 1.70021418762557914e+01 -Electron-alpha_thermal_Coulomb_log_at_point_474__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile474)_ 1.69726471140831983e+01 -Electron-alpha_thermal_Coulomb_log_at_point_475__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile475)_ 1.69418388768614996e+01 -Electron-alpha_thermal_Coulomb_log_at_point_476__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile476)_ 1.69096069808027387e+01 -Electron-alpha_thermal_Coulomb_log_at_point_477__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile477)_ 1.68758272442949853e+01 -Electron-alpha_thermal_Coulomb_log_at_point_478__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile478)_ 1.68403590416890090e+01 -Electron-alpha_thermal_Coulomb_log_at_point_479__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile479)_ 1.68030423007200973e+01 -Electron-alpha_thermal_Coulomb_log_at_point_480__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile480)_ 1.67636937847104548e+01 -Electron-alpha_thermal_Coulomb_log_at_point_481__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile481)_ 1.67221024451590701e+01 -Electron-alpha_thermal_Coulomb_log_at_point_482__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile482)_ 1.66780235514274544e+01 -Electron-alpha_thermal_Coulomb_log_at_point_483__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile483)_ 1.66311711903041548e+01 -Electron-alpha_thermal_Coulomb_log_at_point_484__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile484)_ 1.65812085607517936e+01 -Electron-alpha_thermal_Coulomb_log_at_point_485__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile485)_ 1.65277352380103899e+01 -Electron-alpha_thermal_Coulomb_log_at_point_486__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile486)_ 1.64702701962975127e+01 -Electron-alpha_thermal_Coulomb_log_at_point_487__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile487)_ 1.64082287746549618e+01 -Electron-alpha_thermal_Coulomb_log_at_point_488__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile488)_ 1.63408907939809680e+01 -Electron-alpha_thermal_Coulomb_log_at_point_489__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile489)_ 1.62673554061810215e+01 -Electron-alpha_thermal_Coulomb_log_at_point_490__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile490)_ 1.61864754463802178e+01 -Electron-alpha_thermal_Coulomb_log_at_point_491__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile491)_ 1.60967590012699837e+01 -Electron-alpha_thermal_Coulomb_log_at_point_492__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile492)_ 1.59962163509226727e+01 -Electron-alpha_thermal_Coulomb_log_at_point_493__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile493)_ 1.58821113187931733e+01 -Electron-alpha_thermal_Coulomb_log_at_point_494__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile494)_ 1.57505350382743075e+01 -Electron-alpha_thermal_Coulomb_log_at_point_495__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile495)_ 1.55956241986369282e+01 -Electron-alpha_thermal_Coulomb_log_at_point_496__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile496)_ 1.54079953259759410e+01 -Electron-alpha_thermal_Coulomb_log_at_point_497__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile497)_ 1.51712091172435688e+01 -Electron-alpha_thermal_Coulomb_log_at_point_498__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile498)_ 1.48522553198132297e+01 -Electron-alpha_thermal_Coulomb_log_at_point_499__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile499)_ 1.43673549818551027e+01 -Electron-alpha_thermal_Coulomb_log_at_point_500__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile500)_ 1.29605006186064990e+01 -Volume_averaged_electron-electron_collision_time_(τₑₑ)_(s)_______________ (t_plasma_electron_electron_collision_vol_avg)_ 6.89492933898491300e-04 OP -Electron-electron_collision_time_at_point_0______________________________ (t_plasma_electron_electron_collision_profile0)_ 1.50274719634883478e-03 -Electron-electron_collision_time_at_point_1______________________________ (t_plasma_electron_electron_collision_profile1)_ 1.50273864986995927e-03 -Electron-electron_collision_time_at_point_2______________________________ (t_plasma_electron_electron_collision_profile2)_ 1.50271301054497714e-03 -Electron-electron_collision_time_at_point_3______________________________ (t_plasma_electron_electron_collision_profile3)_ 1.50267027870882902e-03 -Electron-electron_collision_time_at_point_4______________________________ (t_plasma_electron_electron_collision_profile4)_ 1.50261045491976238e-03 -Electron-electron_collision_time_at_point_5______________________________ (t_plasma_electron_electron_collision_profile5)_ 1.50253353995935188e-03 -Electron-electron_collision_time_at_point_6______________________________ (t_plasma_electron_electron_collision_profile6)_ 1.50243953483252869e-03 -Electron-electron_collision_time_at_point_7______________________________ (t_plasma_electron_electron_collision_profile7)_ 1.50232844076761689e-03 -Electron-electron_collision_time_at_point_8______________________________ (t_plasma_electron_electron_collision_profile8)_ 1.50220025921637577e-03 -Electron-electron_collision_time_at_point_9______________________________ (t_plasma_electron_electron_collision_profile9)_ 1.50205499185405576e-03 -Electron-electron_collision_time_at_point_10_____________________________ (t_plasma_electron_electron_collision_profile10)_ 1.50189264057945982e-03 -Electron-electron_collision_time_at_point_11_____________________________ (t_plasma_electron_electron_collision_profile11)_ 1.50171320751500887e-03 -Electron-electron_collision_time_at_point_12_____________________________ (t_plasma_electron_electron_collision_profile12)_ 1.50151669500682276e-03 -Electron-electron_collision_time_at_point_13_____________________________ (t_plasma_electron_electron_collision_profile13)_ 1.50130310562480323e-03 -Electron-electron_collision_time_at_point_14_____________________________ (t_plasma_electron_electron_collision_profile14)_ 1.50107244216273112e-03 -Electron-electron_collision_time_at_point_15_____________________________ (t_plasma_electron_electron_collision_profile15)_ 1.50082470763836348e-03 -Electron-electron_collision_time_at_point_16_____________________________ (t_plasma_electron_electron_collision_profile16)_ 1.50055990529354591e-03 -Electron-electron_collision_time_at_point_17_____________________________ (t_plasma_electron_electron_collision_profile17)_ 1.50027803859433245e-03 -Electron-electron_collision_time_at_point_18_____________________________ (t_plasma_electron_electron_collision_profile18)_ 1.49997911123110725e-03 -Electron-electron_collision_time_at_point_19_____________________________ (t_plasma_electron_electron_collision_profile19)_ 1.49966312711872639e-03 -Electron-electron_collision_time_at_point_20_____________________________ (t_plasma_electron_electron_collision_profile20)_ 1.49933009039665294e-03 -Electron-electron_collision_time_at_point_21_____________________________ (t_plasma_electron_electron_collision_profile21)_ 1.49898000542911399e-03 -Electron-electron_collision_time_at_point_22_____________________________ (t_plasma_electron_electron_collision_profile22)_ 1.49861287680525456e-03 -Electron-electron_collision_time_at_point_23_____________________________ (t_plasma_electron_electron_collision_profile23)_ 1.49822870933931027e-03 -Electron-electron_collision_time_at_point_24_____________________________ (t_plasma_electron_electron_collision_profile24)_ 1.49782750807078181e-03 -Electron-electron_collision_time_at_point_25_____________________________ (t_plasma_electron_electron_collision_profile25)_ 1.49740927826461632e-03 -Electron-electron_collision_time_at_point_26_____________________________ (t_plasma_electron_electron_collision_profile26)_ 1.49697402541140051e-03 -Electron-electron_collision_time_at_point_27_____________________________ (t_plasma_electron_electron_collision_profile27)_ 1.49652175522756756e-03 -Electron-electron_collision_time_at_point_28_____________________________ (t_plasma_electron_electron_collision_profile28)_ 1.49605247365559662e-03 -Electron-electron_collision_time_at_point_29_____________________________ (t_plasma_electron_electron_collision_profile29)_ 1.49556618686423723e-03 -Electron-electron_collision_time_at_point_30_____________________________ (t_plasma_electron_electron_collision_profile30)_ 1.49506290124872964e-03 -Electron-electron_collision_time_at_point_31_____________________________ (t_plasma_electron_electron_collision_profile31)_ 1.49454262343104677e-03 -Electron-electron_collision_time_at_point_32_____________________________ (t_plasma_electron_electron_collision_profile32)_ 1.49400536026012671e-03 -Electron-electron_collision_time_at_point_33_____________________________ (t_plasma_electron_electron_collision_profile33)_ 1.49345111881213333e-03 -Electron-electron_collision_time_at_point_34_____________________________ (t_plasma_electron_electron_collision_profile34)_ 1.49287990639070762e-03 -Electron-electron_collision_time_at_point_35_____________________________ (t_plasma_electron_electron_collision_profile35)_ 1.49229173052724219e-03 -Electron-electron_collision_time_at_point_36_____________________________ (t_plasma_electron_electron_collision_profile36)_ 1.49168659898115167e-03 -Electron-electron_collision_time_at_point_37_____________________________ (t_plasma_electron_electron_collision_profile37)_ 1.49106451974016243e-03 -Electron-electron_collision_time_at_point_38_____________________________ (t_plasma_electron_electron_collision_profile38)_ 1.49042550102060334e-03 -Electron-electron_collision_time_at_point_39_____________________________ (t_plasma_electron_electron_collision_profile39)_ 1.48976955126770873e-03 -Electron-electron_collision_time_at_point_40_____________________________ (t_plasma_electron_electron_collision_profile40)_ 1.48909667915592646e-03 -Electron-electron_collision_time_at_point_41_____________________________ (t_plasma_electron_electron_collision_profile41)_ 1.48840689358924107e-03 -Electron-electron_collision_time_at_point_42_____________________________ (t_plasma_electron_electron_collision_profile42)_ 1.48770020370149816e-03 -Electron-electron_collision_time_at_point_43_____________________________ (t_plasma_electron_electron_collision_profile43)_ 1.48697661885674286e-03 -Electron-electron_collision_time_at_point_44_____________________________ (t_plasma_electron_electron_collision_profile44)_ 1.48623614864956156e-03 -Electron-electron_collision_time_at_point_45_____________________________ (t_plasma_electron_electron_collision_profile45)_ 1.48547880290543976e-03 -Electron-electron_collision_time_at_point_46_____________________________ (t_plasma_electron_electron_collision_profile46)_ 1.48470459168112195e-03 -Electron-electron_collision_time_at_point_47_____________________________ (t_plasma_electron_electron_collision_profile47)_ 1.48391352526498375e-03 -Electron-electron_collision_time_at_point_48_____________________________ (t_plasma_electron_electron_collision_profile48)_ 1.48310561417741029e-03 -Electron-electron_collision_time_at_point_49_____________________________ (t_plasma_electron_electron_collision_profile49)_ 1.48228086917118868e-03 -Electron-electron_collision_time_at_point_50_____________________________ (t_plasma_electron_electron_collision_profile50)_ 1.48143930123189943e-03 -Electron-electron_collision_time_at_point_51_____________________________ (t_plasma_electron_electron_collision_profile51)_ 1.48058092157833058e-03 -Electron-electron_collision_time_at_point_52_____________________________ (t_plasma_electron_electron_collision_profile52)_ 1.47970574166288670e-03 -Electron-electron_collision_time_at_point_53_____________________________ (t_plasma_electron_electron_collision_profile53)_ 1.47881377317201669e-03 -Electron-electron_collision_time_at_point_54_____________________________ (t_plasma_electron_electron_collision_profile54)_ 1.47790502802664595e-03 -Electron-electron_collision_time_at_point_55_____________________________ (t_plasma_electron_electron_collision_profile55)_ 1.47697951838261896e-03 -Electron-electron_collision_time_at_point_56_____________________________ (t_plasma_electron_electron_collision_profile56)_ 1.47603725663115201e-03 -Electron-electron_collision_time_at_point_57_____________________________ (t_plasma_electron_electron_collision_profile57)_ 1.47507825539929058e-03 -Electron-electron_collision_time_at_point_58_____________________________ (t_plasma_electron_electron_collision_profile58)_ 1.47410252755038091e-03 -Electron-electron_collision_time_at_point_59_____________________________ (t_plasma_electron_electron_collision_profile59)_ 1.47311008618454921e-03 -Electron-electron_collision_time_at_point_60_____________________________ (t_plasma_electron_electron_collision_profile60)_ 1.47210094463918941e-03 -Electron-electron_collision_time_at_point_61_____________________________ (t_plasma_electron_electron_collision_profile61)_ 1.47107511648945943e-03 -Electron-electron_collision_time_at_point_62_____________________________ (t_plasma_electron_electron_collision_profile62)_ 1.47003261554878688e-03 -Electron-electron_collision_time_at_point_63_____________________________ (t_plasma_electron_electron_collision_profile63)_ 1.46897345586938992e-03 -Electron-electron_collision_time_at_point_64_____________________________ (t_plasma_electron_electron_collision_profile64)_ 1.46789765174279419e-03 -Electron-electron_collision_time_at_point_65_____________________________ (t_plasma_electron_electron_collision_profile65)_ 1.46680521770037428e-03 -Electron-electron_collision_time_at_point_66_____________________________ (t_plasma_electron_electron_collision_profile66)_ 1.46569616851389408e-03 -Electron-electron_collision_time_at_point_67_____________________________ (t_plasma_electron_electron_collision_profile67)_ 1.46457051919606364e-03 -Electron-electron_collision_time_at_point_68_____________________________ (t_plasma_electron_electron_collision_profile68)_ 1.46342828500109663e-03 -Electron-electron_collision_time_at_point_69_____________________________ (t_plasma_electron_electron_collision_profile69)_ 1.46226948142528959e-03 -Electron-electron_collision_time_at_point_70_____________________________ (t_plasma_electron_electron_collision_profile70)_ 1.46109412420759735e-03 -Electron-electron_collision_time_at_point_71_____________________________ (t_plasma_electron_electron_collision_profile71)_ 1.45990222933023222e-03 -Electron-electron_collision_time_at_point_72_____________________________ (t_plasma_electron_electron_collision_profile72)_ 1.45869381301925896e-03 -Electron-electron_collision_time_at_point_73_____________________________ (t_plasma_electron_electron_collision_profile73)_ 1.45746889174520997e-03 -Electron-electron_collision_time_at_point_74_____________________________ (t_plasma_electron_electron_collision_profile74)_ 1.45622748222370502e-03 -Electron-electron_collision_time_at_point_75_____________________________ (t_plasma_electron_electron_collision_profile75)_ 1.45496960141608292e-03 -Electron-electron_collision_time_at_point_76_____________________________ (t_plasma_electron_electron_collision_profile76)_ 1.45369526653004399e-03 -Electron-electron_collision_time_at_point_77_____________________________ (t_plasma_electron_electron_collision_profile77)_ 1.45240449502029691e-03 -Electron-electron_collision_time_at_point_78_____________________________ (t_plasma_electron_electron_collision_profile78)_ 1.45109730458922313e-03 -Electron-electron_collision_time_at_point_79_____________________________ (t_plasma_electron_electron_collision_profile79)_ 1.44977371318754777e-03 -Electron-electron_collision_time_at_point_80_____________________________ (t_plasma_electron_electron_collision_profile80)_ 1.44843373901502089e-03 -Electron-electron_collision_time_at_point_81_____________________________ (t_plasma_electron_electron_collision_profile81)_ 1.44707740052110387e-03 -Electron-electron_collision_time_at_point_82_____________________________ (t_plasma_electron_electron_collision_profile82)_ 1.44570471640567970e-03 -Electron-electron_collision_time_at_point_83_____________________________ (t_plasma_electron_electron_collision_profile83)_ 1.44431570561975907e-03 -Electron-electron_collision_time_at_point_84_____________________________ (t_plasma_electron_electron_collision_profile84)_ 1.44291038736620372e-03 -Electron-electron_collision_time_at_point_85_____________________________ (t_plasma_electron_electron_collision_profile85)_ 1.44148878110046045e-03 -Electron-electron_collision_time_at_point_86_____________________________ (t_plasma_electron_electron_collision_profile86)_ 1.44005090653130338e-03 -Electron-electron_collision_time_at_point_87_____________________________ (t_plasma_electron_electron_collision_profile87)_ 1.43859678362158634e-03 -Electron-electron_collision_time_at_point_88_____________________________ (t_plasma_electron_electron_collision_profile88)_ 1.43712643258900991e-03 -Electron-electron_collision_time_at_point_89_____________________________ (t_plasma_electron_electron_collision_profile89)_ 1.43563987390689764e-03 -Electron-electron_collision_time_at_point_90_____________________________ (t_plasma_electron_electron_collision_profile90)_ 1.43413712830497606e-03 -Electron-electron_collision_time_at_point_91_____________________________ (t_plasma_electron_electron_collision_profile91)_ 1.43261821677017720e-03 -Electron-electron_collision_time_at_point_92_____________________________ (t_plasma_electron_electron_collision_profile92)_ 1.43108316054744219e-03 -Electron-electron_collision_time_at_point_93_____________________________ (t_plasma_electron_electron_collision_profile93)_ 1.42953198114054289e-03 -Electron-electron_collision_time_at_point_94_____________________________ (t_plasma_electron_electron_collision_profile94)_ 1.42796470031290867e-03 -Electron-electron_collision_time_at_point_95_____________________________ (t_plasma_electron_electron_collision_profile95)_ 1.42638134008846802e-03 -Electron-electron_collision_time_at_point_96_____________________________ (t_plasma_electron_electron_collision_profile96)_ 1.42478192275250133e-03 -Electron-electron_collision_time_at_point_97_____________________________ (t_plasma_electron_electron_collision_profile97)_ 1.42316647085250002e-03 -Electron-electron_collision_time_at_point_98_____________________________ (t_plasma_electron_electron_collision_profile98)_ 1.42153500719904694e-03 -Electron-electron_collision_time_at_point_99_____________________________ (t_plasma_electron_electron_collision_profile99)_ 1.41988755486669523e-03 -Electron-electron_collision_time_at_point_100____________________________ (t_plasma_electron_electron_collision_profile100)_ 1.41822413719487075e-03 -Electron-electron_collision_time_at_point_101____________________________ (t_plasma_electron_electron_collision_profile101)_ 1.41654477778877571e-03 -Electron-electron_collision_time_at_point_102____________________________ (t_plasma_electron_electron_collision_profile102)_ 1.41484950052031414e-03 -Electron-electron_collision_time_at_point_103____________________________ (t_plasma_electron_electron_collision_profile103)_ 1.41313832952901820e-03 -Electron-electron_collision_time_at_point_104____________________________ (t_plasma_electron_electron_collision_profile104)_ 1.41141128922299668e-03 -Electron-electron_collision_time_at_point_105____________________________ (t_plasma_electron_electron_collision_profile105)_ 1.40966840427988690e-03 -Electron-electron_collision_time_at_point_106____________________________ (t_plasma_electron_electron_collision_profile106)_ 1.40790969964782247e-03 -Electron-electron_collision_time_at_point_107____________________________ (t_plasma_electron_electron_collision_profile107)_ 1.40613520054641583e-03 -Electron-electron_collision_time_at_point_108____________________________ (t_plasma_electron_electron_collision_profile108)_ 1.40434493246774416e-03 -Electron-electron_collision_time_at_point_109____________________________ (t_plasma_electron_electron_collision_profile109)_ 1.40253892117735753e-03 -Electron-electron_collision_time_at_point_110____________________________ (t_plasma_electron_electron_collision_profile110)_ 1.40071719271529240e-03 -Electron-electron_collision_time_at_point_111____________________________ (t_plasma_electron_electron_collision_profile111)_ 1.39887977339710071e-03 -Electron-electron_collision_time_at_point_112____________________________ (t_plasma_electron_electron_collision_profile112)_ 1.39702668981489119e-03 -Electron-electron_collision_time_at_point_113____________________________ (t_plasma_electron_electron_collision_profile113)_ 1.39515796883837905e-03 -Electron-electron_collision_time_at_point_114____________________________ (t_plasma_electron_electron_collision_profile114)_ 1.39327363761595504e-03 -Electron-electron_collision_time_at_point_115____________________________ (t_plasma_electron_electron_collision_profile115)_ 1.39137372357576398e-03 -Electron-electron_collision_time_at_point_116____________________________ (t_plasma_electron_electron_collision_profile116)_ 1.38945825442679375e-03 -Electron-electron_collision_time_at_point_117____________________________ (t_plasma_electron_electron_collision_profile117)_ 1.38752725815998249e-03 -Electron-electron_collision_time_at_point_118____________________________ (t_plasma_electron_electron_collision_profile118)_ 1.38558076304933051e-03 -Electron-electron_collision_time_at_point_119____________________________ (t_plasma_electron_electron_collision_profile119)_ 1.38361879765303551e-03 -Electron-electron_collision_time_at_point_120____________________________ (t_plasma_electron_electron_collision_profile120)_ 1.38164139081463550e-03 -Electron-electron_collision_time_at_point_121____________________________ (t_plasma_electron_electron_collision_profile121)_ 1.37964857166416439e-03 -Electron-electron_collision_time_at_point_122____________________________ (t_plasma_electron_electron_collision_profile122)_ 1.37764036961931873e-03 -Electron-electron_collision_time_at_point_123____________________________ (t_plasma_electron_electron_collision_profile123)_ 1.37561681438664739e-03 -Electron-electron_collision_time_at_point_124____________________________ (t_plasma_electron_electron_collision_profile124)_ 1.37357793596274563e-03 -Electron-electron_collision_time_at_point_125____________________________ (t_plasma_electron_electron_collision_profile125)_ 1.37152376463546663e-03 -Electron-electron_collision_time_at_point_126____________________________ (t_plasma_electron_electron_collision_profile126)_ 1.36945433098514509e-03 -Electron-electron_collision_time_at_point_127____________________________ (t_plasma_electron_electron_collision_profile127)_ 1.36736966588583693e-03 -Electron-electron_collision_time_at_point_128____________________________ (t_plasma_electron_electron_collision_profile128)_ 1.36526980050657239e-03 -Electron-electron_collision_time_at_point_129____________________________ (t_plasma_electron_electron_collision_profile129)_ 1.36315476631262305e-03 -Electron-electron_collision_time_at_point_130____________________________ (t_plasma_electron_electron_collision_profile130)_ 1.36102459506678010e-03 -Electron-electron_collision_time_at_point_131____________________________ (t_plasma_electron_electron_collision_profile131)_ 1.35887931883065449e-03 -Electron-electron_collision_time_at_point_132____________________________ (t_plasma_electron_electron_collision_profile132)_ 1.35671896996598300e-03 -Electron-electron_collision_time_at_point_133____________________________ (t_plasma_electron_electron_collision_profile133)_ 1.35454358113595440e-03 -Electron-electron_collision_time_at_point_134____________________________ (t_plasma_electron_electron_collision_profile134)_ 1.35235318530655042e-03 -Electron-electron_collision_time_at_point_135____________________________ (t_plasma_electron_electron_collision_profile135)_ 1.35014781574789729e-03 -Electron-electron_collision_time_at_point_136____________________________ (t_plasma_electron_electron_collision_profile136)_ 1.34792750603563685e-03 -Electron-electron_collision_time_at_point_137____________________________ (t_plasma_electron_electron_collision_profile137)_ 1.34569229005230759e-03 -Electron-electron_collision_time_at_point_138____________________________ (t_plasma_electron_electron_collision_profile138)_ 1.34344220198875193e-03 -Electron-electron_collision_time_at_point_139____________________________ (t_plasma_electron_electron_collision_profile139)_ 1.34117727634552137e-03 -Electron-electron_collision_time_at_point_140____________________________ (t_plasma_electron_electron_collision_profile140)_ 1.33889754793431416e-03 -Electron-electron_collision_time_at_point_141____________________________ (t_plasma_electron_electron_collision_profile141)_ 1.33660305187941896e-03 -Electron-electron_collision_time_at_point_142____________________________ (t_plasma_electron_electron_collision_profile142)_ 1.33429382361917445e-03 -Electron-electron_collision_time_at_point_143____________________________ (t_plasma_electron_electron_collision_profile143)_ 1.33196989890745380e-03 -Electron-electron_collision_time_at_point_144____________________________ (t_plasma_electron_electron_collision_profile144)_ 1.32963131381515069e-03 -Electron-electron_collision_time_at_point_145____________________________ (t_plasma_electron_electron_collision_profile145)_ 1.32727810473169238e-03 -Electron-electron_collision_time_at_point_146____________________________ (t_plasma_electron_electron_collision_profile146)_ 1.32491030836656937e-03 -Electron-electron_collision_time_at_point_147____________________________ (t_plasma_electron_electron_collision_profile147)_ 1.32252796175087251e-03 -Electron-electron_collision_time_at_point_148____________________________ (t_plasma_electron_electron_collision_profile148)_ 1.32013110223885713e-03 -Electron-electron_collision_time_at_point_149____________________________ (t_plasma_electron_electron_collision_profile149)_ 1.31771976750951511e-03 -Electron-electron_collision_time_at_point_150____________________________ (t_plasma_electron_electron_collision_profile150)_ 1.31529399556817319e-03 -Electron-electron_collision_time_at_point_151____________________________ (t_plasma_electron_electron_collision_profile151)_ 1.31285382474809675e-03 -Electron-electron_collision_time_at_point_152____________________________ (t_plasma_electron_electron_collision_profile152)_ 1.31039929371212262e-03 -Electron-electron_collision_time_at_point_153____________________________ (t_plasma_electron_electron_collision_profile153)_ 1.30793044145430205e-03 -Electron-electron_collision_time_at_point_154____________________________ (t_plasma_electron_electron_collision_profile154)_ 1.30544730730156175e-03 -Electron-electron_collision_time_at_point_155____________________________ (t_plasma_electron_electron_collision_profile155)_ 1.30294993091538522e-03 -Electron-electron_collision_time_at_point_156____________________________ (t_plasma_electron_electron_collision_profile156)_ 1.30043835229351002e-03 -Electron-electron_collision_time_at_point_157____________________________ (t_plasma_electron_electron_collision_profile157)_ 1.29791261177164400e-03 -Electron-electron_collision_time_at_point_158____________________________ (t_plasma_electron_electron_collision_profile158)_ 1.29537275002520073e-03 -Electron-electron_collision_time_at_point_159____________________________ (t_plasma_electron_electron_collision_profile159)_ 1.29281880807104784e-03 -Electron-electron_collision_time_at_point_160____________________________ (t_plasma_electron_electron_collision_profile160)_ 1.29025082726928319e-03 -Electron-electron_collision_time_at_point_161____________________________ (t_plasma_electron_electron_collision_profile161)_ 1.28766884932502096e-03 -Electron-electron_collision_time_at_point_162____________________________ (t_plasma_electron_electron_collision_profile162)_ 1.28507291629020122e-03 -Electron-electron_collision_time_at_point_163____________________________ (t_plasma_electron_electron_collision_profile163)_ 1.28246307056541740e-03 -Electron-electron_collision_time_at_point_164____________________________ (t_plasma_electron_electron_collision_profile164)_ 1.27983935490176494e-03 -Electron-electron_collision_time_at_point_165____________________________ (t_plasma_electron_electron_collision_profile165)_ 1.27720181240270408e-03 -Electron-electron_collision_time_at_point_166____________________________ (t_plasma_electron_electron_collision_profile166)_ 1.27455048652594881e-03 -Electron-electron_collision_time_at_point_167____________________________ (t_plasma_electron_electron_collision_profile167)_ 1.27188542108537224e-03 -Electron-electron_collision_time_at_point_168____________________________ (t_plasma_electron_electron_collision_profile168)_ 1.26920666025293061e-03 -Electron-electron_collision_time_at_point_169____________________________ (t_plasma_electron_electron_collision_profile169)_ 1.26651424856061051e-03 -Electron-electron_collision_time_at_point_170____________________________ (t_plasma_electron_electron_collision_profile170)_ 1.26380823090239589e-03 -Electron-electron_collision_time_at_point_171____________________________ (t_plasma_electron_electron_collision_profile171)_ 1.26108865253625295e-03 -Electron-electron_collision_time_at_point_172____________________________ (t_plasma_electron_electron_collision_profile172)_ 1.25835555908614095e-03 -Electron-electron_collision_time_at_point_173____________________________ (t_plasma_electron_electron_collision_profile173)_ 1.25560899654403660e-03 -Electron-electron_collision_time_at_point_174____________________________ (t_plasma_electron_electron_collision_profile174)_ 1.25284901127198779e-03 -Electron-electron_collision_time_at_point_175____________________________ (t_plasma_electron_electron_collision_profile175)_ 1.25007565000418482e-03 -Electron-electron_collision_time_at_point_176____________________________ (t_plasma_electron_electron_collision_profile176)_ 1.24728895984905011e-03 -Electron-electron_collision_time_at_point_177____________________________ (t_plasma_electron_electron_collision_profile177)_ 1.24448898829135715e-03 -Electron-electron_collision_time_at_point_178____________________________ (t_plasma_electron_electron_collision_profile178)_ 1.24167578319436334e-03 -Electron-electron_collision_time_at_point_179____________________________ (t_plasma_electron_electron_collision_profile179)_ 1.23884939280197409e-03 -Electron-electron_collision_time_at_point_180____________________________ (t_plasma_electron_electron_collision_profile180)_ 1.23600986574092095e-03 -Electron-electron_collision_time_at_point_181____________________________ (t_plasma_electron_electron_collision_profile181)_ 1.23315725102296687e-03 -Electron-electron_collision_time_at_point_182____________________________ (t_plasma_electron_electron_collision_profile182)_ 1.23029159804713580e-03 -Electron-electron_collision_time_at_point_183____________________________ (t_plasma_electron_electron_collision_profile183)_ 1.22741295660195844e-03 -Electron-electron_collision_time_at_point_184____________________________ (t_plasma_electron_electron_collision_profile184)_ 1.22452137686775544e-03 -Electron-electron_collision_time_at_point_185____________________________ (t_plasma_electron_electron_collision_profile185)_ 1.22161690941892582e-03 -Electron-electron_collision_time_at_point_186____________________________ (t_plasma_electron_electron_collision_profile186)_ 1.21869960522627552e-03 -Electron-electron_collision_time_at_point_187____________________________ (t_plasma_electron_electron_collision_profile187)_ 1.21576951565936049e-03 -Electron-electron_collision_time_at_point_188____________________________ (t_plasma_electron_electron_collision_profile188)_ 1.21282669248885919e-03 -Electron-electron_collision_time_at_point_189____________________________ (t_plasma_electron_electron_collision_profile189)_ 1.20987118788896779e-03 -Electron-electron_collision_time_at_point_190____________________________ (t_plasma_electron_electron_collision_profile190)_ 1.20690305443981924e-03 -Electron-electron_collision_time_at_point_191____________________________ (t_plasma_electron_electron_collision_profile191)_ 1.20392234512993013e-03 -Electron-electron_collision_time_at_point_192____________________________ (t_plasma_electron_electron_collision_profile192)_ 1.20092911335867455e-03 -Electron-electron_collision_time_at_point_193____________________________ (t_plasma_electron_electron_collision_profile193)_ 1.19792341293877610e-03 -Electron-electron_collision_time_at_point_194____________________________ (t_plasma_electron_electron_collision_profile194)_ 1.19490529809883578e-03 -Electron-electron_collision_time_at_point_195____________________________ (t_plasma_electron_electron_collision_profile195)_ 1.19187482348587898e-03 -Electron-electron_collision_time_at_point_196____________________________ (t_plasma_electron_electron_collision_profile196)_ 1.18883204416793528e-03 -Electron-electron_collision_time_at_point_197____________________________ (t_plasma_electron_electron_collision_profile197)_ 1.18577701563663679e-03 -Electron-electron_collision_time_at_point_198____________________________ (t_plasma_electron_electron_collision_profile198)_ 1.18270979380985389e-03 -Electron-electron_collision_time_at_point_199____________________________ (t_plasma_electron_electron_collision_profile199)_ 1.17963043503435043e-03 -Electron-electron_collision_time_at_point_200____________________________ (t_plasma_electron_electron_collision_profile200)_ 1.17653899608847210e-03 -Electron-electron_collision_time_at_point_201____________________________ (t_plasma_electron_electron_collision_profile201)_ 1.17343553418485869e-03 -Electron-electron_collision_time_at_point_202____________________________ (t_plasma_electron_electron_collision_profile202)_ 1.17032010697318907e-03 -Electron-electron_collision_time_at_point_203____________________________ (t_plasma_electron_electron_collision_profile203)_ 1.16719277254295176e-03 -Electron-electron_collision_time_at_point_204____________________________ (t_plasma_electron_electron_collision_profile204)_ 1.16405358942624606e-03 -Electron-electron_collision_time_at_point_205____________________________ (t_plasma_electron_electron_collision_profile205)_ 1.16090261660061378e-03 -Electron-electron_collision_time_at_point_206____________________________ (t_plasma_electron_electron_collision_profile206)_ 1.15773991349189895e-03 -Electron-electron_collision_time_at_point_207____________________________ (t_plasma_electron_electron_collision_profile207)_ 1.15456553997713806e-03 -Electron-electron_collision_time_at_point_208____________________________ (t_plasma_electron_electron_collision_profile208)_ 1.15137955638748178e-03 -Electron-electron_collision_time_at_point_209____________________________ (t_plasma_electron_electron_collision_profile209)_ 1.14818202351114722e-03 -Electron-electron_collision_time_at_point_210____________________________ (t_plasma_electron_electron_collision_profile210)_ 1.14497300259640083e-03 -Electron-electron_collision_time_at_point_211____________________________ (t_plasma_electron_electron_collision_profile211)_ 1.14175255535457483e-03 -Electron-electron_collision_time_at_point_212____________________________ (t_plasma_electron_electron_collision_profile212)_ 1.13852074396311211e-03 -Electron-electron_collision_time_at_point_213____________________________ (t_plasma_electron_electron_collision_profile213)_ 1.13527763106864728e-03 -Electron-electron_collision_time_at_point_214____________________________ (t_plasma_electron_electron_collision_profile214)_ 1.13202327979011904e-03 -Electron-electron_collision_time_at_point_215____________________________ (t_plasma_electron_electron_collision_profile215)_ 1.12875775372191537e-03 -Electron-electron_collision_time_at_point_216____________________________ (t_plasma_electron_electron_collision_profile216)_ 1.12548111693705271e-03 -Electron-electron_collision_time_at_point_217____________________________ (t_plasma_electron_electron_collision_profile217)_ 1.12219343399038904e-03 -Electron-electron_collision_time_at_point_218____________________________ (t_plasma_electron_electron_collision_profile218)_ 1.11889476992187240e-03 -Electron-electron_collision_time_at_point_219____________________________ (t_plasma_electron_electron_collision_profile219)_ 1.11558519025982080e-03 -Electron-electron_collision_time_at_point_220____________________________ (t_plasma_electron_electron_collision_profile220)_ 1.11226476102424098e-03 -Electron-electron_collision_time_at_point_221____________________________ (t_plasma_electron_electron_collision_profile221)_ 1.10893354873018617e-03 -Electron-electron_collision_time_at_point_222____________________________ (t_plasma_electron_electron_collision_profile222)_ 1.10559162039113815e-03 -Electron-electron_collision_time_at_point_223____________________________ (t_plasma_electron_electron_collision_profile223)_ 1.10223904352243877e-03 -Electron-electron_collision_time_at_point_224____________________________ (t_plasma_electron_electron_collision_profile224)_ 1.09887588614475114e-03 -Electron-electron_collision_time_at_point_225____________________________ (t_plasma_electron_electron_collision_profile225)_ 1.09550221678756201e-03 -Electron-electron_collision_time_at_point_226____________________________ (t_plasma_electron_electron_collision_profile226)_ 1.09211810449271851e-03 -Electron-electron_collision_time_at_point_227____________________________ (t_plasma_electron_electron_collision_profile227)_ 1.08872361881800724e-03 -Electron-electron_collision_time_at_point_228____________________________ (t_plasma_electron_electron_collision_profile228)_ 1.08531882984076993e-03 -Electron-electron_collision_time_at_point_229____________________________ (t_plasma_electron_electron_collision_profile229)_ 1.08190380816156019e-03 -Electron-electron_collision_time_at_point_230____________________________ (t_plasma_electron_electron_collision_profile230)_ 1.07847862490783914e-03 -Electron-electron_collision_time_at_point_231____________________________ (t_plasma_electron_electron_collision_profile231)_ 1.07504335173771092e-03 -Electron-electron_collision_time_at_point_232____________________________ (t_plasma_electron_electron_collision_profile232)_ 1.07159806084370268e-03 -Electron-electron_collision_time_at_point_233____________________________ (t_plasma_electron_electron_collision_profile233)_ 1.06814282495658200e-03 -Electron-electron_collision_time_at_point_234____________________________ (t_plasma_electron_electron_collision_profile234)_ 1.06467771734921756e-03 -Electron-electron_collision_time_at_point_235____________________________ (t_plasma_electron_electron_collision_profile235)_ 1.06120281184048939e-03 -Electron-electron_collision_time_at_point_236____________________________ (t_plasma_electron_electron_collision_profile236)_ 1.05771818279922869e-03 -Electron-electron_collision_time_at_point_237____________________________ (t_plasma_electron_electron_collision_profile237)_ 1.05422390514821373e-03 -Electron-electron_collision_time_at_point_238____________________________ (t_plasma_electron_electron_collision_profile238)_ 1.05072005436820850e-03 -Electron-electron_collision_time_at_point_239____________________________ (t_plasma_electron_electron_collision_profile239)_ 1.04720670650203847e-03 -Electron-electron_collision_time_at_point_240____________________________ (t_plasma_electron_electron_collision_profile240)_ 1.04368393815872248e-03 -Electron-electron_collision_time_at_point_241____________________________ (t_plasma_electron_electron_collision_profile241)_ 1.04015182651764513e-03 -Electron-electron_collision_time_at_point_242____________________________ (t_plasma_electron_electron_collision_profile242)_ 1.03661044933277702e-03 -Electron-electron_collision_time_at_point_243____________________________ (t_plasma_electron_electron_collision_profile243)_ 1.03305988493694470e-03 -Electron-electron_collision_time_at_point_244____________________________ (t_plasma_electron_electron_collision_profile244)_ 1.02950021224614777e-03 -Electron-electron_collision_time_at_point_245____________________________ (t_plasma_electron_electron_collision_profile245)_ 1.02593151076392237e-03 -Electron-electron_collision_time_at_point_246____________________________ (t_plasma_electron_electron_collision_profile246)_ 1.02235386058576318e-03 -Electron-electron_collision_time_at_point_247____________________________ (t_plasma_electron_electron_collision_profile247)_ 1.01876734240358537e-03 -Electron-electron_collision_time_at_point_248____________________________ (t_plasma_electron_electron_collision_profile248)_ 1.01517203751024421e-03 -Electron-electron_collision_time_at_point_249____________________________ (t_plasma_electron_electron_collision_profile249)_ 1.01156802780410560e-03 -Electron-electron_collision_time_at_point_250____________________________ (t_plasma_electron_electron_collision_profile250)_ 1.00795539579367197e-03 -Electron-electron_collision_time_at_point_251____________________________ (t_plasma_electron_electron_collision_profile251)_ 1.00433422460225320e-03 -Electron-electron_collision_time_at_point_252____________________________ (t_plasma_electron_electron_collision_profile252)_ 1.00070459797270547e-03 -Electron-electron_collision_time_at_point_253____________________________ (t_plasma_electron_electron_collision_profile253)_ 9.97066600272211506e-04 -Electron-electron_collision_time_at_point_254____________________________ (t_plasma_electron_electron_collision_profile254)_ 9.93420316497128702e-04 -Electron-electron_collision_time_at_point_255____________________________ (t_plasma_electron_electron_collision_profile255)_ 9.89765832277886021e-04 -Electron-electron_collision_time_at_point_256____________________________ (t_plasma_electron_electron_collision_profile256)_ 9.86103233883944873e-04 -Electron-electron_collision_time_at_point_257____________________________ (t_plasma_electron_electron_collision_profile257)_ 9.82432608228812464e-04 -Electron-electron_collision_time_at_point_258____________________________ (t_plasma_electron_electron_collision_profile258)_ 9.78754042875123889e-04 -Electron-electron_collision_time_at_point_259____________________________ (t_plasma_electron_electron_collision_profile259)_ 9.75067626039774309e-04 -Electron-electron_collision_time_at_point_260____________________________ (t_plasma_electron_electron_collision_profile260)_ 9.71373446599122252e-04 -Electron-electron_collision_time_at_point_261____________________________ (t_plasma_electron_electron_collision_profile261)_ 9.67671594094249516e-04 -Electron-electron_collision_time_at_point_262____________________________ (t_plasma_electron_electron_collision_profile262)_ 9.63962158736289261e-04 -Electron-electron_collision_time_at_point_263____________________________ (t_plasma_electron_electron_collision_profile263)_ 9.60245231411815253e-04 -Electron-electron_collision_time_at_point_264____________________________ (t_plasma_electron_electron_collision_profile264)_ 9.56520903688298871e-04 -Electron-electron_collision_time_at_point_265____________________________ (t_plasma_electron_electron_collision_profile265)_ 9.52789267819633659e-04 -Electron-electron_collision_time_at_point_266____________________________ (t_plasma_electron_electron_collision_profile266)_ 9.49050416751726664e-04 -Electron-electron_collision_time_at_point_267____________________________ (t_plasma_electron_electron_collision_profile267)_ 9.45304444128159923e-04 -Electron-electron_collision_time_at_point_268____________________________ (t_plasma_electron_electron_collision_profile268)_ 9.41551444295925678e-04 -Electron-electron_collision_time_at_point_269____________________________ (t_plasma_electron_electron_collision_profile269)_ 9.37791512311222193e-04 -Electron-electron_collision_time_at_point_270____________________________ (t_plasma_electron_electron_collision_profile270)_ 9.34024743945341298e-04 -Electron-electron_collision_time_at_point_271____________________________ (t_plasma_electron_electron_collision_profile271)_ 9.30251235690608951e-04 -Electron-electron_collision_time_at_point_272____________________________ (t_plasma_electron_electron_collision_profile272)_ 9.26471084766422289e-04 -Electron-electron_collision_time_at_point_273____________________________ (t_plasma_electron_electron_collision_profile273)_ 9.22684389125344798e-04 -Electron-electron_collision_time_at_point_274____________________________ (t_plasma_electron_electron_collision_profile274)_ 9.18891247459295481e-04 -Electron-electron_collision_time_at_point_275____________________________ (t_plasma_electron_electron_collision_profile275)_ 9.15091759205806658e-04 -Electron-electron_collision_time_at_point_276____________________________ (t_plasma_electron_electron_collision_profile276)_ 9.11286024554370340e-04 -Electron-electron_collision_time_at_point_277____________________________ (t_plasma_electron_electron_collision_profile277)_ 9.07474144452865270e-04 -Electron-electron_collision_time_at_point_278____________________________ (t_plasma_electron_electron_collision_profile278)_ 9.03656220614066697e-04 -Electron-electron_collision_time_at_point_279____________________________ (t_plasma_electron_electron_collision_profile279)_ 8.99832355522243305e-04 -Electron-electron_collision_time_at_point_280____________________________ (t_plasma_electron_electron_collision_profile280)_ 8.96002652439846850e-04 -Electron-electron_collision_time_at_point_281____________________________ (t_plasma_electron_electron_collision_profile281)_ 8.92167215414280839e-04 -Electron-electron_collision_time_at_point_282____________________________ (t_plasma_electron_electron_collision_profile282)_ 8.88326149284771331e-04 -Electron-electron_collision_time_at_point_283____________________________ (t_plasma_electron_electron_collision_profile283)_ 8.84479559689322964e-04 -Electron-electron_collision_time_at_point_284____________________________ (t_plasma_electron_electron_collision_profile284)_ 8.80627553071776674e-04 -Electron-electron_collision_time_at_point_285____________________________ (t_plasma_electron_electron_collision_profile285)_ 8.76770236688957628e-04 -Electron-electron_collision_time_at_point_286____________________________ (t_plasma_electron_electron_collision_profile286)_ 8.72907718617926690e-04 -Electron-electron_collision_time_at_point_287____________________________ (t_plasma_electron_electron_collision_profile287)_ 8.69040107763332072e-04 -Electron-electron_collision_time_at_point_288____________________________ (t_plasma_electron_electron_collision_profile288)_ 8.65167513864861380e-04 -Electron-electron_collision_time_at_point_289____________________________ (t_plasma_electron_electron_collision_profile289)_ 8.61290047504804576e-04 -Electron-electron_collision_time_at_point_290____________________________ (t_plasma_electron_electron_collision_profile290)_ 8.57407820115716249e-04 -Electron-electron_collision_time_at_point_291____________________________ (t_plasma_electron_electron_collision_profile291)_ 8.53520943988198672e-04 -Electron-electron_collision_time_at_point_292____________________________ (t_plasma_electron_electron_collision_profile292)_ 8.49629532278783624e-04 -Electron-electron_collision_time_at_point_293____________________________ (t_plasma_electron_electron_collision_profile293)_ 8.45733699017942693e-04 -Electron-electron_collision_time_at_point_294____________________________ (t_plasma_electron_electron_collision_profile294)_ 8.41833559118206108e-04 -Electron-electron_collision_time_at_point_295____________________________ (t_plasma_electron_electron_collision_profile295)_ 8.37929228382402135e-04 -Electron-electron_collision_time_at_point_296____________________________ (t_plasma_electron_electron_collision_profile296)_ 8.34020823512025378e-04 -Electron-electron_collision_time_at_point_297____________________________ (t_plasma_electron_electron_collision_profile297)_ 8.30108462115721748e-04 -Electron-electron_collision_time_at_point_298____________________________ (t_plasma_electron_electron_collision_profile298)_ 8.26192262717910693e-04 -Electron-electron_collision_time_at_point_299____________________________ (t_plasma_electron_electron_collision_profile299)_ 8.22272344767531558e-04 -Electron-electron_collision_time_at_point_300____________________________ (t_plasma_electron_electron_collision_profile300)_ 8.18348828646929386e-04 -Electron-electron_collision_time_at_point_301____________________________ (t_plasma_electron_electron_collision_profile301)_ 8.14421835680879491e-04 -Electron-electron_collision_time_at_point_302____________________________ (t_plasma_electron_electron_collision_profile302)_ 8.10491488145745494e-04 -Electron-electron_collision_time_at_point_303____________________________ (t_plasma_electron_electron_collision_profile303)_ 8.06557909278793274e-04 -Electron-electron_collision_time_at_point_304____________________________ (t_plasma_electron_electron_collision_profile304)_ 8.02621223287644557e-04 -Electron-electron_collision_time_at_point_305____________________________ (t_plasma_electron_electron_collision_profile305)_ 7.98681555359887830e-04 -Electron-electron_collision_time_at_point_306____________________________ (t_plasma_electron_electron_collision_profile306)_ 7.94739031672842336e-04 -Electron-electron_collision_time_at_point_307____________________________ (t_plasma_electron_electron_collision_profile307)_ 7.90793779403483514e-04 -Electron-electron_collision_time_at_point_308____________________________ (t_plasma_electron_electron_collision_profile308)_ 7.86845926738531827e-04 -Electron-electron_collision_time_at_point_309____________________________ (t_plasma_electron_electron_collision_profile309)_ 7.82895602884712129e-04 -Electron-electron_collision_time_at_point_310____________________________ (t_plasma_electron_electron_collision_profile310)_ 7.78942938079183909e-04 -Electron-electron_collision_time_at_point_311____________________________ (t_plasma_electron_electron_collision_profile311)_ 7.74988063600151622e-04 -Electron-electron_collision_time_at_point_312____________________________ (t_plasma_electron_electron_collision_profile312)_ 7.71031111777653036e-04 -Electron-electron_collision_time_at_point_313____________________________ (t_plasma_electron_electron_collision_profile313)_ 7.67072216004543181e-04 -Electron-electron_collision_time_at_point_314____________________________ (t_plasma_electron_electron_collision_profile314)_ 7.63111510747662173e-04 -Electron-electron_collision_time_at_point_315____________________________ (t_plasma_electron_electron_collision_profile315)_ 7.59149131559208601e-04 -Electron-electron_collision_time_at_point_316____________________________ (t_plasma_electron_electron_collision_profile316)_ 7.55185215088315120e-04 -Electron-electron_collision_time_at_point_317____________________________ (t_plasma_electron_electron_collision_profile317)_ 7.51219899092829286e-04 -Electron-electron_collision_time_at_point_318____________________________ (t_plasma_electron_electron_collision_profile318)_ 7.47253322451318491e-04 -Electron-electron_collision_time_at_point_319____________________________ (t_plasma_electron_electron_collision_profile319)_ 7.43285625175291414e-04 -Electron-electron_collision_time_at_point_320____________________________ (t_plasma_electron_electron_collision_profile320)_ 7.39316948421649654e-04 -Electron-electron_collision_time_at_point_321____________________________ (t_plasma_electron_electron_collision_profile321)_ 7.35347434505379720e-04 -Electron-electron_collision_time_at_point_322____________________________ (t_plasma_electron_electron_collision_profile322)_ 7.31377226912480519e-04 -Electron-electron_collision_time_at_point_323____________________________ (t_plasma_electron_electron_collision_profile323)_ 7.27406470313150940e-04 -Electron-electron_collision_time_at_point_324____________________________ (t_plasma_electron_electron_collision_profile324)_ 7.23435310575226806e-04 -Electron-electron_collision_time_at_point_325____________________________ (t_plasma_electron_electron_collision_profile325)_ 7.19463894777893102e-04 -Electron-electron_collision_time_at_point_326____________________________ (t_plasma_electron_electron_collision_profile326)_ 7.15492371225664330e-04 -Electron-electron_collision_time_at_point_327____________________________ (t_plasma_electron_electron_collision_profile327)_ 7.11520889462657056e-04 -Electron-electron_collision_time_at_point_328____________________________ (t_plasma_electron_electron_collision_profile328)_ 7.07549600287147055e-04 -Electron-electron_collision_time_at_point_329____________________________ (t_plasma_electron_electron_collision_profile329)_ 7.03578655766438064e-04 -Electron-electron_collision_time_at_point_330____________________________ (t_plasma_electron_electron_collision_profile330)_ 6.99608209252038332e-04 -Electron-electron_collision_time_at_point_331____________________________ (t_plasma_electron_electron_collision_profile331)_ 6.95638415395165039e-04 -Electron-electron_collision_time_at_point_332____________________________ (t_plasma_electron_electron_collision_profile332)_ 6.91669430162580911e-04 -Electron-electron_collision_time_at_point_333____________________________ (t_plasma_electron_electron_collision_profile333)_ 6.87701410852780272e-04 -Electron-electron_collision_time_at_point_334____________________________ (t_plasma_electron_electron_collision_profile334)_ 6.83734516112531913e-04 -Electron-electron_collision_time_at_point_335____________________________ (t_plasma_electron_electron_collision_profile335)_ 6.79768905953794488e-04 -Electron-electron_collision_time_at_point_336____________________________ (t_plasma_electron_electron_collision_profile336)_ 6.75804741771016907e-04 -Electron-electron_collision_time_at_point_337____________________________ (t_plasma_electron_electron_collision_profile337)_ 6.71842186358837619e-04 -Electron-electron_collision_time_at_point_338____________________________ (t_plasma_electron_electron_collision_profile338)_ 6.67881403930196309e-04 -Electron-electron_collision_time_at_point_339____________________________ (t_plasma_electron_electron_collision_profile339)_ 6.63922560134874089e-04 -Electron-electron_collision_time_at_point_340____________________________ (t_plasma_electron_electron_collision_profile340)_ 6.59965822078480038e-04 -Electron-electron_collision_time_at_point_341____________________________ (t_plasma_electron_electron_collision_profile341)_ 6.56011358341897569e-04 -Electron-electron_collision_time_at_point_342____________________________ (t_plasma_electron_electron_collision_profile342)_ 6.52059339001208587e-04 -Electron-electron_collision_time_at_point_343____________________________ (t_plasma_electron_electron_collision_profile343)_ 6.48109935648117806e-04 -Electron-electron_collision_time_at_point_344____________________________ (t_plasma_electron_electron_collision_profile344)_ 6.44163321410892047e-04 -Electron-electron_collision_time_at_point_345____________________________ (t_plasma_electron_electron_collision_profile345)_ 6.40219670975833628e-04 -Electron-electron_collision_time_at_point_346____________________________ (t_plasma_electron_electron_collision_profile346)_ 6.36279160609319583e-04 -Electron-electron_collision_time_at_point_347____________________________ (t_plasma_electron_electron_collision_profile347)_ 6.32341968180413034e-04 -Electron-electron_collision_time_at_point_348____________________________ (t_plasma_electron_electron_collision_profile348)_ 6.28408273184084408e-04 -Electron-electron_collision_time_at_point_349____________________________ (t_plasma_electron_electron_collision_profile349)_ 6.24478256765057492e-04 -Electron-electron_collision_time_at_point_350____________________________ (t_plasma_electron_electron_collision_profile350)_ 6.20552101742316304e-04 -Electron-electron_collision_time_at_point_351____________________________ (t_plasma_electron_electron_collision_profile351)_ 6.16629992634286231e-04 -Electron-electron_collision_time_at_point_352____________________________ (t_plasma_electron_electron_collision_profile352)_ 6.12712115684734752e-04 -Electron-electron_collision_time_at_point_353____________________________ (t_plasma_electron_electron_collision_profile353)_ 6.08798658889405839e-04 -Electron-electron_collision_time_at_point_354____________________________ (t_plasma_electron_electron_collision_profile354)_ 6.04889812023434010e-04 -Electron-electron_collision_time_at_point_355____________________________ (t_plasma_electron_electron_collision_profile355)_ 6.00985766669561556e-04 -Electron-electron_collision_time_at_point_356____________________________ (t_plasma_electron_electron_collision_profile356)_ 5.97086716247200258e-04 -Electron-electron_collision_time_at_point_357____________________________ (t_plasma_electron_electron_collision_profile357)_ 5.93192856042371085e-04 -Electron-electron_collision_time_at_point_358____________________________ (t_plasma_electron_electron_collision_profile358)_ 5.89304383238566988e-04 -Electron-electron_collision_time_at_point_359____________________________ (t_plasma_electron_electron_collision_profile359)_ 5.85421496948570217e-04 -Electron-electron_collision_time_at_point_360____________________________ (t_plasma_electron_electron_collision_profile360)_ 5.81544398247284136e-04 -Electron-electron_collision_time_at_point_361____________________________ (t_plasma_electron_electron_collision_profile361)_ 5.77673290205604024e-04 -Electron-electron_collision_time_at_point_362____________________________ (t_plasma_electron_electron_collision_profile362)_ 5.73808377925400805e-04 -Electron-electron_collision_time_at_point_363____________________________ (t_plasma_electron_electron_collision_profile363)_ 5.69949868575647970e-04 -Electron-electron_collision_time_at_point_364____________________________ (t_plasma_electron_electron_collision_profile364)_ 5.66097971429759114e-04 -Electron-electron_collision_time_at_point_365____________________________ (t_plasma_electron_electron_collision_profile365)_ 5.62252897904189650e-04 -Electron-electron_collision_time_at_point_366____________________________ (t_plasma_electron_electron_collision_profile366)_ 5.58414861598364402e-04 -Electron-electron_collision_time_at_point_367____________________________ (t_plasma_electron_electron_collision_profile367)_ 5.54584078335996979e-04 -Electron-electron_collision_time_at_point_368____________________________ (t_plasma_electron_electron_collision_profile368)_ 5.50760766207868710e-04 -Electron-electron_collision_time_at_point_369____________________________ (t_plasma_electron_electron_collision_profile369)_ 5.46945145616138575e-04 -Electron-electron_collision_time_at_point_370____________________________ (t_plasma_electron_electron_collision_profile370)_ 5.43137439320265239e-04 -Electron-electron_collision_time_at_point_371____________________________ (t_plasma_electron_electron_collision_profile371)_ 5.39337872484618817e-04 -Electron-electron_collision_time_at_point_372____________________________ (t_plasma_electron_electron_collision_profile372)_ 5.35546672727874084e-04 -Electron-electron_collision_time_at_point_373____________________________ (t_plasma_electron_electron_collision_profile373)_ 5.31764070174268306e-04 -Electron-electron_collision_time_at_point_374____________________________ (t_plasma_electron_electron_collision_profile374)_ 5.27990297506836866e-04 -Electron-electron_collision_time_at_point_375____________________________ (t_plasma_electron_electron_collision_profile375)_ 5.24225590022711694e-04 -Electron-electron_collision_time_at_point_376____________________________ (t_plasma_electron_electron_collision_profile376)_ 5.20470185690611415e-04 -Electron-electron_collision_time_at_point_377____________________________ (t_plasma_electron_electron_collision_profile377)_ 5.16724325210626422e-04 -Electron-electron_collision_time_at_point_378____________________________ (t_plasma_electron_electron_collision_profile378)_ 5.12988252076433215e-04 -Electron-electron_collision_time_at_point_379____________________________ (t_plasma_electron_electron_collision_profile379)_ 5.09262212640067139e-04 -Electron-electron_collision_time_at_point_380____________________________ (t_plasma_electron_electron_collision_profile380)_ 5.05546456179397480e-04 -Electron-electron_collision_time_at_point_381____________________________ (t_plasma_electron_electron_collision_profile381)_ 5.01841234968454248e-04 -Electron-electron_collision_time_at_point_382____________________________ (t_plasma_electron_electron_collision_profile382)_ 4.98146804350768266e-04 -Electron-electron_collision_time_at_point_383____________________________ (t_plasma_electron_electron_collision_profile383)_ 4.94463422815901213e-04 -Electron-electron_collision_time_at_point_384____________________________ (t_plasma_electron_electron_collision_profile384)_ 4.90791352079340587e-04 -Electron-electron_collision_time_at_point_385____________________________ (t_plasma_electron_electron_collision_profile385)_ 4.87130857165966684e-04 -Electron-electron_collision_time_at_point_386____________________________ (t_plasma_electron_electron_collision_profile386)_ 4.83482206497292874e-04 -Electron-electron_collision_time_at_point_387____________________________ (t_plasma_electron_electron_collision_profile387)_ 4.79845671982707554e-04 -Electron-electron_collision_time_at_point_388____________________________ (t_plasma_electron_electron_collision_profile388)_ 4.76221529114958424e-04 -Electron-electron_collision_time_at_point_389____________________________ (t_plasma_electron_electron_collision_profile389)_ 4.72610057070136584e-04 -Electron-electron_collision_time_at_point_390____________________________ (t_plasma_electron_electron_collision_profile390)_ 4.69011538812431927e-04 -Electron-electron_collision_time_at_point_391____________________________ (t_plasma_electron_electron_collision_profile391)_ 4.65426261203965371e-04 -Electron-electron_collision_time_at_point_392____________________________ (t_plasma_electron_electron_collision_profile392)_ 4.61854515120003659e-04 -Electron-electron_collision_time_at_point_393____________________________ (t_plasma_electron_electron_collision_profile393)_ 4.58296595569907103e-04 -Electron-electron_collision_time_at_point_394____________________________ (t_plasma_electron_electron_collision_profile394)_ 4.54752801824172108e-04 -Electron-electron_collision_time_at_point_395____________________________ (t_plasma_electron_electron_collision_profile395)_ 4.51223437547964657e-04 -Electron-electron_collision_time_at_point_396____________________________ (t_plasma_electron_electron_collision_profile396)_ 4.47708810941567048e-04 -Electron-electron_collision_time_at_point_397____________________________ (t_plasma_electron_electron_collision_profile397)_ 4.44209234888198669e-04 -Electron-electron_collision_time_at_point_398____________________________ (t_plasma_electron_electron_collision_profile398)_ 4.40725027109697455e-04 -Electron-electron_collision_time_at_point_399____________________________ (t_plasma_electron_electron_collision_profile399)_ 4.37256510330604994e-04 -Electron-electron_collision_time_at_point_400____________________________ (t_plasma_electron_electron_collision_profile400)_ 4.33804012451213708e-04 -Electron-electron_collision_time_at_point_401____________________________ (t_plasma_electron_electron_collision_profile401)_ 4.30367866730214260e-04 -Electron-electron_collision_time_at_point_402____________________________ (t_plasma_electron_electron_collision_profile402)_ 4.26948411977601575e-04 -Electron-electron_collision_time_at_point_403____________________________ (t_plasma_electron_electron_collision_profile403)_ 4.23545992758575052e-04 -Electron-electron_collision_time_at_point_404____________________________ (t_plasma_electron_electron_collision_profile404)_ 4.20160959609219278e-04 -Electron-electron_collision_time_at_point_405____________________________ (t_plasma_electron_electron_collision_profile405)_ 4.16793669264821397e-04 -Electron-electron_collision_time_at_point_406____________________________ (t_plasma_electron_electron_collision_profile406)_ 4.13444484901755584e-04 -Electron-electron_collision_time_at_point_407____________________________ (t_plasma_electron_electron_collision_profile407)_ 4.10113776393946836e-04 -Electron-electron_collision_time_at_point_408____________________________ (t_plasma_electron_electron_collision_profile408)_ 4.06801920585013151e-04 -Electron-electron_collision_time_at_point_409____________________________ (t_plasma_electron_electron_collision_profile409)_ 4.03509301577292573e-04 -Electron-electron_collision_time_at_point_410____________________________ (t_plasma_electron_electron_collision_profile410)_ 4.00236311039056539e-04 -Electron-electron_collision_time_at_point_411____________________________ (t_plasma_electron_electron_collision_profile411)_ 3.96983348531350973e-04 -Electron-electron_collision_time_at_point_412____________________________ (t_plasma_electron_electron_collision_profile412)_ 3.93750821856022747e-04 -Electron-electron_collision_time_at_point_413____________________________ (t_plasma_electron_electron_collision_profile413)_ 3.90539147426656897e-04 -Electron-electron_collision_time_at_point_414____________________________ (t_plasma_electron_electron_collision_profile414)_ 3.87348750664300284e-04 -Electron-electron_collision_time_at_point_415____________________________ (t_plasma_electron_electron_collision_profile415)_ 3.84180066420046083e-04 -Electron-electron_collision_time_at_point_416____________________________ (t_plasma_electron_electron_collision_profile416)_ 3.81033539426753613e-04 -Electron-electron_collision_time_at_point_417____________________________ (t_plasma_electron_electron_collision_profile417)_ 3.77909624782413796e-04 -Electron-electron_collision_time_at_point_418____________________________ (t_plasma_electron_electron_collision_profile418)_ 3.74808788467930344e-04 -Electron-electron_collision_time_at_point_419____________________________ (t_plasma_electron_electron_collision_profile419)_ 3.71731507902380888e-04 -Electron-electron_collision_time_at_point_420____________________________ (t_plasma_electron_electron_collision_profile420)_ 3.68678272539149936e-04 -Electron-electron_collision_time_at_point_421____________________________ (t_plasma_electron_electron_collision_profile421)_ 3.65649584506700157e-04 -Electron-electron_collision_time_at_point_422____________________________ (t_plasma_electron_electron_collision_profile422)_ 3.62645959298169907e-04 -Electron-electron_collision_time_at_point_423____________________________ (t_plasma_electron_electron_collision_profile423)_ 3.59667926514459539e-04 -Electron-electron_collision_time_at_point_424____________________________ (t_plasma_electron_electron_collision_profile424)_ 3.56716030666014844e-04 -Electron-electron_collision_time_at_point_425____________________________ (t_plasma_electron_electron_collision_profile425)_ 3.53790832039138094e-04 -Electron-electron_collision_time_at_point_426____________________________ (t_plasma_electron_electron_collision_profile426)_ 3.50892907633352808e-04 -Electron-electron_collision_time_at_point_427____________________________ (t_plasma_electron_electron_collision_profile427)_ 3.48022852177173794e-04 -Electron-electron_collision_time_at_point_428____________________________ (t_plasma_electron_electron_collision_profile428)_ 3.45181279230554600e-04 -Electron-electron_collision_time_at_point_429____________________________ (t_plasma_electron_electron_collision_profile429)_ 3.42368822383362756e-04 -Electron-electron_collision_time_at_point_430____________________________ (t_plasma_electron_electron_collision_profile430)_ 3.39586136560476805e-04 -Electron-electron_collision_time_at_point_431____________________________ (t_plasma_electron_electron_collision_profile431)_ 3.36833899445537993e-04 -Electron-electron_collision_time_at_point_432____________________________ (t_plasma_electron_electron_collision_profile432)_ 3.34112813037072524e-04 -Electron-electron_collision_time_at_point_433____________________________ (t_plasma_electron_electron_collision_profile433)_ 3.31423605352659941e-04 -Electron-electron_collision_time_at_point_434____________________________ (t_plasma_electron_electron_collision_profile434)_ 3.28767032299136014e-04 -Electron-electron_collision_time_at_point_435____________________________ (t_plasma_electron_electron_collision_profile435)_ 3.26143879729522070e-04 -Electron-electron_collision_time_at_point_436____________________________ (t_plasma_electron_electron_collision_profile436)_ 3.23554965710605707e-04 -Electron-electron_collision_time_at_point_437____________________________ (t_plasma_electron_electron_collision_profile437)_ 3.21001143028904758e-04 -Electron-electron_collision_time_at_point_438____________________________ (t_plasma_electron_electron_collision_profile438)_ 3.18483301967328956e-04 -Electron-electron_collision_time_at_point_439____________________________ (t_plasma_electron_electron_collision_profile439)_ 3.16002373390335809e-04 -Electron-electron_collision_time_at_point_440____________________________ (t_plasma_electron_electron_collision_profile440)_ 3.13559332182004652e-04 -Electron-electron_collision_time_at_point_441____________________________ (t_plasma_electron_electron_collision_profile441)_ 3.11155201089508351e-04 -Electron-electron_collision_time_at_point_442____________________________ (t_plasma_electron_electron_collision_profile442)_ 3.08791055034288641e-04 -Electron-electron_collision_time_at_point_443____________________________ (t_plasma_electron_electron_collision_profile443)_ 3.06468025965352055e-04 -Electron-electron_collision_time_at_point_444____________________________ (t_plasma_electron_electron_collision_profile444)_ 3.04187308344078548e-04 -Electron-electron_collision_time_at_point_445____________________________ (t_plasma_electron_electron_collision_profile445)_ 3.01950165368632952e-04 -Electron-electron_collision_time_at_point_446____________________________ (t_plasma_electron_electron_collision_profile446)_ 2.99757936069594013e-04 -Electron-electron_collision_time_at_point_447____________________________ (t_plasma_electron_electron_collision_profile447)_ 2.97612043438227729e-04 -Electron-electron_collision_time_at_point_448____________________________ (t_plasma_electron_electron_collision_profile448)_ 2.95514003787037283e-04 -Electron-electron_collision_time_at_point_449____________________________ (t_plasma_electron_electron_collision_profile449)_ 2.93465437591572539e-04 -Electron-electron_collision_time_at_point_450____________________________ (t_plasma_electron_electron_collision_profile450)_ 2.91468082127036530e-04 -Electron-electron_collision_time_at_point_451____________________________ (t_plasma_electron_electron_collision_profile451)_ 2.89523806298529272e-04 -Electron-electron_collision_time_at_point_452____________________________ (t_plasma_electron_electron_collision_profile452)_ 2.87634628178069177e-04 -Electron-electron_collision_time_at_point_453____________________________ (t_plasma_electron_electron_collision_profile453)_ 2.85802735916738178e-04 -Electron-electron_collision_time_at_point_454____________________________ (t_plasma_electron_electron_collision_profile454)_ 2.84030512914391572e-04 -Electron-electron_collision_time_at_point_455____________________________ (t_plasma_electron_electron_collision_profile455)_ 2.82320568429732287e-04 -Electron-electron_collision_time_at_point_456____________________________ (t_plasma_electron_electron_collision_profile456)_ 2.80675775243042537e-04 -Electron-electron_collision_time_at_point_457____________________________ (t_plasma_electron_electron_collision_profile457)_ 2.79099316611151026e-04 -Electron-electron_collision_time_at_point_458____________________________ (t_plasma_electron_electron_collision_profile458)_ 2.77594745692665099e-04 -Electron-electron_collision_time_at_point_459____________________________ (t_plasma_electron_electron_collision_profile459)_ 2.76166062064195795e-04 -Electron-electron_collision_time_at_point_460____________________________ (t_plasma_electron_electron_collision_profile460)_ 2.74817812236749167e-04 -Electron-electron_collision_time_at_point_461____________________________ (t_plasma_electron_electron_collision_profile461)_ 2.73555224845704209e-04 -Electron-electron_collision_time_at_point_462____________________________ (t_plasma_electron_electron_collision_profile462)_ 2.72384397649875782e-04 -Electron-electron_collision_time_at_point_463____________________________ (t_plasma_electron_electron_collision_profile463)_ 2.71312565149759734e-04 -Electron-electron_collision_time_at_point_464____________________________ (t_plasma_electron_electron_collision_profile464)_ 2.70348498080985480e-04 -Electron-electron_collision_time_at_point_465____________________________ (t_plasma_electron_electron_collision_profile465)_ 2.69503132684882380e-04 -Electron-electron_collision_time_at_point_466____________________________ (t_plasma_electron_electron_collision_profile466)_ 2.68790634847359178e-04 -Electron-electron_collision_time_at_point_467____________________________ (t_plasma_electron_electron_collision_profile467)_ 2.68230386480026257e-04 -Electron-electron_collision_time_at_point_468____________________________ (t_plasma_electron_electron_collision_profile468)_ 2.67851288714323005e-04 -Electron-electron_collision_time_at_point_469____________________________ (t_plasma_electron_electron_collision_profile469)_ 2.67703852653243903e-04 -Electron-electron_collision_time_at_point_470____________________________ (t_plasma_electron_electron_collision_profile470)_ 2.67934137957129173e-04 -Electron-electron_collision_time_at_point_471____________________________ (t_plasma_electron_electron_collision_profile471)_ 2.58840075418854195e-04 -Electron-electron_collision_time_at_point_472____________________________ (t_plasma_electron_electron_collision_profile472)_ 2.49690068820795637e-04 -Electron-electron_collision_time_at_point_473____________________________ (t_plasma_electron_electron_collision_profile473)_ 2.40485381500156361e-04 -Electron-electron_collision_time_at_point_474____________________________ (t_plasma_electron_electron_collision_profile474)_ 2.31227555272255124e-04 -Electron-electron_collision_time_at_point_475____________________________ (t_plasma_electron_electron_collision_profile475)_ 2.21918450768933531e-04 -Electron-electron_collision_time_at_point_476____________________________ (t_plasma_electron_electron_collision_profile476)_ 2.12560294179859574e-04 -Electron-electron_collision_time_at_point_477____________________________ (t_plasma_electron_electron_collision_profile477)_ 2.03155731599093808e-04 -Electron-electron_collision_time_at_point_478____________________________ (t_plasma_electron_electron_collision_profile478)_ 1.93707892452017825e-04 -Electron-electron_collision_time_at_point_479____________________________ (t_plasma_electron_electron_collision_profile479)_ 1.84220463825437877e-04 -Electron-electron_collision_time_at_point_480____________________________ (t_plasma_electron_electron_collision_profile480)_ 1.74697777971265559e-04 -Electron-electron_collision_time_at_point_481____________________________ (t_plasma_electron_electron_collision_profile481)_ 1.65144915836393284e-04 -Electron-electron_collision_time_at_point_482____________________________ (t_plasma_electron_electron_collision_profile482)_ 1.55567830237488252e-04 -Electron-electron_collision_time_at_point_483____________________________ (t_plasma_electron_electron_collision_profile483)_ 1.45973493320396096e-04 -Electron-electron_collision_time_at_point_484____________________________ (t_plasma_electron_electron_collision_profile484)_ 1.36370074323748460e-04 -Electron-electron_collision_time_at_point_485____________________________ (t_plasma_electron_electron_collision_profile485)_ 1.26767155560792452e-04 -Electron-electron_collision_time_at_point_486____________________________ (t_plasma_electron_electron_collision_profile486)_ 1.17175997180175891e-04 -Electron-electron_collision_time_at_point_487____________________________ (t_plasma_electron_electron_collision_profile487)_ 1.07609865037497504e-04 -Electron-electron_collision_time_at_point_488____________________________ (t_plasma_electron_electron_collision_profile488)_ 9.80844415031639620e-05 -Electron-electron_collision_time_at_point_489____________________________ (t_plasma_electron_electron_collision_profile489)_ 8.86183472400986787e-05 -Electron-electron_collision_time_at_point_490____________________________ (t_plasma_electron_electron_collision_profile490)_ 7.92338146084660958e-05 -Electron-electron_collision_time_at_point_491____________________________ (t_plasma_electron_electron_collision_profile491)_ 6.99575734308230699e-05 -Electron-electron_collision_time_at_point_492____________________________ (t_plasma_electron_electron_collision_profile492)_ 6.08220430562244265e-05 -Electron-electron_collision_time_at_point_493____________________________ (t_plasma_electron_electron_collision_profile493)_ 5.18669821941866203e-05 -Electron-electron_collision_time_at_point_494____________________________ (t_plasma_electron_electron_collision_profile494)_ 4.31418534163404842e-05 -Electron-electron_collision_time_at_point_495____________________________ (t_plasma_electron_electron_collision_profile495)_ 3.47093662146238344e-05 -Electron-electron_collision_time_at_point_496____________________________ (t_plasma_electron_electron_collision_profile496)_ 2.66511059984216247e-05 -Electron-electron_collision_time_at_point_497____________________________ (t_plasma_electron_electron_collision_profile497)_ 1.90772223864610466e-05 -Electron-electron_collision_time_at_point_498____________________________ (t_plasma_electron_electron_collision_profile498)_ 1.21451574263122372e-05 -Electron-electron_collision_time_at_point_499____________________________ (t_plasma_electron_electron_collision_profile499)_ 6.10324178176170551e-06 -Electron-electron_collision_time_at_point_500____________________________ (t_plasma_electron_electron_collision_profile500)_ 1.43737642658788918e-06 -Volume_averaged_electron-deuteron_collision_time_(τₑD)_(s)_______________ (t_plasma_electron_deuteron_collision_vol_avg)_ 8.29937964988665790e-04 OP -Electron-deuteron_collision_time_at_point_0______________________________ (t_plasma_electron_deuteron_collision_profile0)_ 1.80995964913961130e-03 -Electron-deuteron_collision_time_at_point_1______________________________ (t_plasma_electron_deuteron_collision_profile1)_ 1.80994934775552917e-03 -Electron-deuteron_collision_time_at_point_2______________________________ (t_plasma_electron_deuteron_collision_profile2)_ 1.80991844373809335e-03 -Electron-deuteron_collision_time_at_point_3______________________________ (t_plasma_electron_deuteron_collision_profile3)_ 1.80986693749172643e-03 -Electron-deuteron_collision_time_at_point_4______________________________ (t_plasma_electron_deuteron_collision_profile4)_ 1.80979482969049078e-03 -Electron-deuteron_collision_time_at_point_5______________________________ (t_plasma_electron_deuteron_collision_profile5)_ 1.80970212127810524e-03 -Electron-deuteron_collision_time_at_point_6______________________________ (t_plasma_electron_deuteron_collision_profile6)_ 1.80958881346797917e-03 -Electron-deuteron_collision_time_at_point_7______________________________ (t_plasma_electron_deuteron_collision_profile7)_ 1.80945490774326212e-03 -Electron-deuteron_collision_time_at_point_8______________________________ (t_plasma_electron_deuteron_collision_profile8)_ 1.80930040585689195e-03 -Electron-deuteron_collision_time_at_point_9______________________________ (t_plasma_electron_deuteron_collision_profile9)_ 1.80912530983165965e-03 -Electron-deuteron_collision_time_at_point_10_____________________________ (t_plasma_electron_deuteron_collision_profile10)_ 1.80892962196028853e-03 -Electron-deuteron_collision_time_at_point_11_____________________________ (t_plasma_electron_deuteron_collision_profile11)_ 1.80871334480551052e-03 -Electron-deuteron_collision_time_at_point_12_____________________________ (t_plasma_electron_deuteron_collision_profile12)_ 1.80847648120016071e-03 -Electron-deuteron_collision_time_at_point_13_____________________________ (t_plasma_electron_deuteron_collision_profile13)_ 1.80821903424728341e-03 -Electron-deuteron_collision_time_at_point_14_____________________________ (t_plasma_electron_deuteron_collision_profile14)_ 1.80794100732024378e-03 -Electron-deuteron_collision_time_at_point_15_____________________________ (t_plasma_electron_deuteron_collision_profile15)_ 1.80764240406284778e-03 -Electron-deuteron_collision_time_at_point_16_____________________________ (t_plasma_electron_deuteron_collision_profile16)_ 1.80732322838947899e-03 -Electron-deuteron_collision_time_at_point_17_____________________________ (t_plasma_electron_deuteron_collision_profile17)_ 1.80698348448523932e-03 -Electron-deuteron_collision_time_at_point_18_____________________________ (t_plasma_electron_deuteron_collision_profile18)_ 1.80662317680609823e-03 -Electron-deuteron_collision_time_at_point_19_____________________________ (t_plasma_electron_deuteron_collision_profile19)_ 1.80624231007906226e-03 -Electron-deuteron_collision_time_at_point_20_____________________________ (t_plasma_electron_deuteron_collision_profile20)_ 1.80584088930233855e-03 -Electron-deuteron_collision_time_at_point_21_____________________________ (t_plasma_electron_deuteron_collision_profile21)_ 1.80541891974552436e-03 -Electron-deuteron_collision_time_at_point_22_____________________________ (t_plasma_electron_deuteron_collision_profile22)_ 1.80497640694979268e-03 -Electron-deuteron_collision_time_at_point_23_____________________________ (t_plasma_electron_deuteron_collision_profile23)_ 1.80451335672810039e-03 -Electron-deuteron_collision_time_at_point_24_____________________________ (t_plasma_electron_deuteron_collision_profile24)_ 1.80402977516539603e-03 -Electron-deuteron_collision_time_at_point_25_____________________________ (t_plasma_electron_deuteron_collision_profile25)_ 1.80352566861884198e-03 -Electron-deuteron_collision_time_at_point_26_____________________________ (t_plasma_electron_deuteron_collision_profile26)_ 1.80300104371804572e-03 -Electron-deuteron_collision_time_at_point_27_____________________________ (t_plasma_electron_deuteron_collision_profile27)_ 1.80245590736530822e-03 -Electron-deuteron_collision_time_at_point_28_____________________________ (t_plasma_electron_deuteron_collision_profile28)_ 1.80189026673586604e-03 -Electron-deuteron_collision_time_at_point_29_____________________________ (t_plasma_electron_deuteron_collision_profile29)_ 1.80130412927816098e-03 -Electron-deuteron_collision_time_at_point_30_____________________________ (t_plasma_electron_deuteron_collision_profile30)_ 1.80069750271410665e-03 -Electron-deuteron_collision_time_at_point_31_____________________________ (t_plasma_electron_deuteron_collision_profile31)_ 1.80007039503937705e-03 -Electron-deuteron_collision_time_at_point_32_____________________________ (t_plasma_electron_deuteron_collision_profile32)_ 1.79942281452369107e-03 -Electron-deuteron_collision_time_at_point_33_____________________________ (t_plasma_electron_deuteron_collision_profile33)_ 1.79875476971112368e-03 -Electron-deuteron_collision_time_at_point_34_____________________________ (t_plasma_electron_deuteron_collision_profile34)_ 1.79806626942040880e-03 -Electron-deuteron_collision_time_at_point_35_____________________________ (t_plasma_electron_deuteron_collision_profile35)_ 1.79735732274527243e-03 -Electron-deuteron_collision_time_at_point_36_____________________________ (t_plasma_electron_deuteron_collision_profile36)_ 1.79662793905475612e-03 -Electron-deuteron_collision_time_at_point_37_____________________________ (t_plasma_electron_deuteron_collision_profile37)_ 1.79587812799356723e-03 -Electron-deuteron_collision_time_at_point_38_____________________________ (t_plasma_electron_deuteron_collision_profile38)_ 1.79510789948243038e-03 -Electron-deuteron_collision_time_at_point_39_____________________________ (t_plasma_electron_deuteron_collision_profile39)_ 1.79431726371844847e-03 -Electron-deuteron_collision_time_at_point_40_____________________________ (t_plasma_electron_deuteron_collision_profile40)_ 1.79350623117548072e-03 -Electron-deuteron_collision_time_at_point_41_____________________________ (t_plasma_electron_deuteron_collision_profile41)_ 1.79267481260452616e-03 -Electron-deuteron_collision_time_at_point_42_____________________________ (t_plasma_electron_deuteron_collision_profile42)_ 1.79182301903411684e-03 -Electron-deuteron_collision_time_at_point_43_____________________________ (t_plasma_electron_deuteron_collision_profile43)_ 1.79095086177072675e-03 -Electron-deuteron_collision_time_at_point_44_____________________________ (t_plasma_electron_deuteron_collision_profile44)_ 1.79005835239918142e-03 -Electron-deuteron_collision_time_at_point_45_____________________________ (t_plasma_electron_deuteron_collision_profile45)_ 1.78914550278309165e-03 -Electron-deuteron_collision_time_at_point_46_____________________________ (t_plasma_electron_deuteron_collision_profile46)_ 1.78821232506528541e-03 -Electron-deuteron_collision_time_at_point_47_____________________________ (t_plasma_electron_deuteron_collision_profile47)_ 1.78725883166825652e-03 -Electron-deuteron_collision_time_at_point_48_____________________________ (t_plasma_electron_deuteron_collision_profile48)_ 1.78628503529462235e-03 -Electron-deuteron_collision_time_at_point_49_____________________________ (t_plasma_electron_deuteron_collision_profile49)_ 1.78529094892759376e-03 -Electron-deuteron_collision_time_at_point_50_____________________________ (t_plasma_electron_deuteron_collision_profile50)_ 1.78427658583145128e-03 -Electron-deuteron_collision_time_at_point_51_____________________________ (t_plasma_electron_deuteron_collision_profile51)_ 1.78324195955203882e-03 -Electron-deuteron_collision_time_at_point_52_____________________________ (t_plasma_electron_deuteron_collision_profile52)_ 1.78218708391726134e-03 -Electron-deuteron_collision_time_at_point_53_____________________________ (t_plasma_electron_deuteron_collision_profile53)_ 1.78111197303759770e-03 -Electron-deuteron_collision_time_at_point_54_____________________________ (t_plasma_electron_deuteron_collision_profile54)_ 1.78001664130662211e-03 -Electron-deuteron_collision_time_at_point_55_____________________________ (t_plasma_electron_deuteron_collision_profile55)_ 1.77890110340153803e-03 -Electron-deuteron_collision_time_at_point_56_____________________________ (t_plasma_electron_deuteron_collision_profile56)_ 1.77776537428372353e-03 -Electron-deuteron_collision_time_at_point_57_____________________________ (t_plasma_electron_deuteron_collision_profile57)_ 1.77660946919928182e-03 -Electron-deuteron_collision_time_at_point_58_____________________________ (t_plasma_electron_deuteron_collision_profile58)_ 1.77543340367961196e-03 -Electron-deuteron_collision_time_at_point_59_____________________________ (t_plasma_electron_deuteron_collision_profile59)_ 1.77423719354198139e-03 -Electron-deuteron_collision_time_at_point_60_____________________________ (t_plasma_electron_deuteron_collision_profile60)_ 1.77302085489012000e-03 -Electron-deuteron_collision_time_at_point_61_____________________________ (t_plasma_electron_deuteron_collision_profile61)_ 1.77178440411481473e-03 -Electron-deuteron_collision_time_at_point_62_____________________________ (t_plasma_electron_deuteron_collision_profile62)_ 1.77052785789451805e-03 -Electron-deuteron_collision_time_at_point_63_____________________________ (t_plasma_electron_deuteron_collision_profile63)_ 1.76925123319597653e-03 -Electron-deuteron_collision_time_at_point_64_____________________________ (t_plasma_electron_deuteron_collision_profile64)_ 1.76795454727485778e-03 -Electron-deuteron_collision_time_at_point_65_____________________________ (t_plasma_electron_deuteron_collision_profile65)_ 1.76663781767639571e-03 -Electron-deuteron_collision_time_at_point_66_____________________________ (t_plasma_electron_deuteron_collision_profile66)_ 1.76530106223604958e-03 -Electron-deuteron_collision_time_at_point_67_____________________________ (t_plasma_electron_deuteron_collision_profile67)_ 1.76394429908016724e-03 -Electron-deuteron_collision_time_at_point_68_____________________________ (t_plasma_electron_deuteron_collision_profile68)_ 1.76256754662666303e-03 -Electron-deuteron_collision_time_at_point_69_____________________________ (t_plasma_electron_deuteron_collision_profile69)_ 1.76117082358571270e-03 -Electron-deuteron_collision_time_at_point_70_____________________________ (t_plasma_electron_deuteron_collision_profile70)_ 1.75975414896044910e-03 -Electron-deuteron_collision_time_at_point_71_____________________________ (t_plasma_electron_deuteron_collision_profile71)_ 1.75831754204768139e-03 -Electron-deuteron_collision_time_at_point_72_____________________________ (t_plasma_electron_deuteron_collision_profile72)_ 1.75686102243861409e-03 -Electron-deuteron_collision_time_at_point_73_____________________________ (t_plasma_electron_deuteron_collision_profile73)_ 1.75538461001958934e-03 -Electron-deuteron_collision_time_at_point_74_____________________________ (t_plasma_electron_deuteron_collision_profile74)_ 1.75388832497283000e-03 -Electron-deuteron_collision_time_at_point_75_____________________________ (t_plasma_electron_deuteron_collision_profile75)_ 1.75237218777720533e-03 -Electron-deuteron_collision_time_at_point_76_____________________________ (t_plasma_electron_deuteron_collision_profile76)_ 1.75083621920900162e-03 -Electron-deuteron_collision_time_at_point_77_____________________________ (t_plasma_electron_deuteron_collision_profile77)_ 1.74928044034270390e-03 -Electron-deuteron_collision_time_at_point_78_____________________________ (t_plasma_electron_deuteron_collision_profile78)_ 1.74770487255179697e-03 -Electron-deuteron_collision_time_at_point_79_____________________________ (t_plasma_electron_deuteron_collision_profile79)_ 1.74610953750957030e-03 -Electron-deuteron_collision_time_at_point_80_____________________________ (t_plasma_electron_deuteron_collision_profile80)_ 1.74449445718994267e-03 -Electron-deuteron_collision_time_at_point_81_____________________________ (t_plasma_electron_deuteron_collision_profile81)_ 1.74285965386829092e-03 -Electron-deuteron_collision_time_at_point_82_____________________________ (t_plasma_electron_deuteron_collision_profile82)_ 1.74120515012229828e-03 -Electron-deuteron_collision_time_at_point_83_____________________________ (t_plasma_electron_deuteron_collision_profile83)_ 1.73953096883281387e-03 -Electron-deuteron_collision_time_at_point_84_____________________________ (t_plasma_electron_deuteron_collision_profile84)_ 1.73783713318471878e-03 -Electron-deuteron_collision_time_at_point_85_____________________________ (t_plasma_electron_deuteron_collision_profile85)_ 1.73612366666781254e-03 -Electron-deuteron_collision_time_at_point_86_____________________________ (t_plasma_electron_deuteron_collision_profile86)_ 1.73439059307770732e-03 -Electron-deuteron_collision_time_at_point_87_____________________________ (t_plasma_electron_deuteron_collision_profile87)_ 1.73263793651673589e-03 -Electron-deuteron_collision_time_at_point_88_____________________________ (t_plasma_electron_deuteron_collision_profile88)_ 1.73086572139487423e-03 -Electron-deuteron_collision_time_at_point_89_____________________________ (t_plasma_electron_deuteron_collision_profile89)_ 1.72907397243067550e-03 -Electron-deuteron_collision_time_at_point_90_____________________________ (t_plasma_electron_deuteron_collision_profile90)_ 1.72726271465221547e-03 -Electron-deuteron_collision_time_at_point_91_____________________________ (t_plasma_electron_deuteron_collision_profile91)_ 1.72543197339805111e-03 -Electron-deuteron_collision_time_at_point_92_____________________________ (t_plasma_electron_deuteron_collision_profile92)_ 1.72358177431819882e-03 -Electron-deuteron_collision_time_at_point_93_____________________________ (t_plasma_electron_deuteron_collision_profile93)_ 1.72171214337511541e-03 -Electron-deuteron_collision_time_at_point_94_____________________________ (t_plasma_electron_deuteron_collision_profile94)_ 1.71982310684469985e-03 -Electron-deuteron_collision_time_at_point_95_____________________________ (t_plasma_electron_deuteron_collision_profile95)_ 1.71791469131730642e-03 -Electron-deuteron_collision_time_at_point_96_____________________________ (t_plasma_electron_deuteron_collision_profile96)_ 1.71598692369877097e-03 -Electron-deuteron_collision_time_at_point_97_____________________________ (t_plasma_electron_deuteron_collision_profile97)_ 1.71403983121144765e-03 -Electron-deuteron_collision_time_at_point_98_____________________________ (t_plasma_electron_deuteron_collision_profile98)_ 1.71207344139526663e-03 -Electron-deuteron_collision_time_at_point_99_____________________________ (t_plasma_electron_deuteron_collision_profile99)_ 1.71008778210879949e-03 -Electron-deuteron_collision_time_at_point_100____________________________ (t_plasma_electron_deuteron_collision_profile100)_ 1.70808288153033797e-03 -Electron-deuteron_collision_time_at_point_101____________________________ (t_plasma_electron_deuteron_collision_profile101)_ 1.70605876815899159e-03 -Electron-deuteron_collision_time_at_point_102____________________________ (t_plasma_electron_deuteron_collision_profile102)_ 1.70401547081579577e-03 -Electron-deuteron_collision_time_at_point_103____________________________ (t_plasma_electron_deuteron_collision_profile103)_ 1.70195301864483109e-03 -Electron-deuteron_collision_time_at_point_104____________________________ (t_plasma_electron_deuteron_collision_profile104)_ 1.69987144111436741e-03 -Electron-deuteron_collision_time_at_point_105____________________________ (t_plasma_electron_deuteron_collision_profile105)_ 1.69777076801800675e-03 -Electron-deuteron_collision_time_at_point_106____________________________ (t_plasma_electron_deuteron_collision_profile106)_ 1.69565102947585476e-03 -Electron-deuteron_collision_time_at_point_107____________________________ (t_plasma_electron_deuteron_collision_profile107)_ 1.69351225593569765e-03 -Electron-deuteron_collision_time_at_point_108____________________________ (t_plasma_electron_deuteron_collision_profile108)_ 1.69135447817419854e-03 -Electron-deuteron_collision_time_at_point_109____________________________ (t_plasma_electron_deuteron_collision_profile109)_ 1.68917772729810308e-03 -Electron-deuteron_collision_time_at_point_110____________________________ (t_plasma_electron_deuteron_collision_profile110)_ 1.68698203474546959e-03 -Electron-deuteron_collision_time_at_point_111____________________________ (t_plasma_electron_deuteron_collision_profile111)_ 1.68476743228690180e-03 -Electron-deuteron_collision_time_at_point_112____________________________ (t_plasma_electron_deuteron_collision_profile112)_ 1.68253395202680521e-03 -Electron-deuteron_collision_time_at_point_113____________________________ (t_plasma_electron_deuteron_collision_profile113)_ 1.68028162640465628e-03 -Electron-deuteron_collision_time_at_point_114____________________________ (t_plasma_electron_deuteron_collision_profile114)_ 1.67801048819628479e-03 -Electron-deuteron_collision_time_at_point_115____________________________ (t_plasma_electron_deuteron_collision_profile115)_ 1.67572057051517515e-03 -Electron-deuteron_collision_time_at_point_116____________________________ (t_plasma_electron_deuteron_collision_profile116)_ 1.67341190681377953e-03 -Electron-deuteron_collision_time_at_point_117____________________________ (t_plasma_electron_deuteron_collision_profile117)_ 1.67108453088485038e-03 -Electron-deuteron_collision_time_at_point_118____________________________ (t_plasma_electron_deuteron_collision_profile118)_ 1.66873847686278181e-03 -Electron-deuteron_collision_time_at_point_119____________________________ (t_plasma_electron_deuteron_collision_profile119)_ 1.66637377922497498e-03 -Electron-deuteron_collision_time_at_point_120____________________________ (t_plasma_electron_deuteron_collision_profile120)_ 1.66399047279321838e-03 -Electron-deuteron_collision_time_at_point_121____________________________ (t_plasma_electron_deuteron_collision_profile121)_ 1.66158859273507421e-03 -Electron-deuteron_collision_time_at_point_122____________________________ (t_plasma_electron_deuteron_collision_profile122)_ 1.65916817456529119e-03 -Electron-deuteron_collision_time_at_point_123____________________________ (t_plasma_electron_deuteron_collision_profile123)_ 1.65672925414723365e-03 -Electron-deuteron_collision_time_at_point_124____________________________ (t_plasma_electron_deuteron_collision_profile124)_ 1.65427186769431973e-03 -Electron-deuteron_collision_time_at_point_125____________________________ (t_plasma_electron_deuteron_collision_profile125)_ 1.65179605177148236e-03 -Electron-deuteron_collision_time_at_point_126____________________________ (t_plasma_electron_deuteron_collision_profile126)_ 1.64930184329664426e-03 -Electron-deuteron_collision_time_at_point_127____________________________ (t_plasma_electron_deuteron_collision_profile127)_ 1.64678927954221019e-03 -Electron-deuteron_collision_time_at_point_128____________________________ (t_plasma_electron_deuteron_collision_profile128)_ 1.64425839813657449e-03 -Electron-deuteron_collision_time_at_point_129____________________________ (t_plasma_electron_deuteron_collision_profile129)_ 1.64170923706565106e-03 -Electron-deuteron_collision_time_at_point_130____________________________ (t_plasma_electron_deuteron_collision_profile130)_ 1.63914183467441313e-03 -Electron-deuteron_collision_time_at_point_131____________________________ (t_plasma_electron_deuteron_collision_profile131)_ 1.63655622966845586e-03 -Electron-deuteron_collision_time_at_point_132____________________________ (t_plasma_electron_deuteron_collision_profile132)_ 1.63395246111557382e-03 -Electron-deuteron_collision_time_at_point_133____________________________ (t_plasma_electron_deuteron_collision_profile133)_ 1.63133056844735566e-03 -Electron-deuteron_collision_time_at_point_134____________________________ (t_plasma_electron_deuteron_collision_profile134)_ 1.62869059146080039e-03 -Electron-deuteron_collision_time_at_point_135____________________________ (t_plasma_electron_deuteron_collision_profile135)_ 1.62603257031994786e-03 -Electron-deuteron_collision_time_at_point_136____________________________ (t_plasma_electron_deuteron_collision_profile136)_ 1.62335654555752587e-03 -Electron-deuteron_collision_time_at_point_137____________________________ (t_plasma_electron_deuteron_collision_profile137)_ 1.62066255807661935e-03 -Electron-deuteron_collision_time_at_point_138____________________________ (t_plasma_electron_deuteron_collision_profile138)_ 1.61795064915235898e-03 -Electron-deuteron_collision_time_at_point_139____________________________ (t_plasma_electron_deuteron_collision_profile139)_ 1.61522086043361835e-03 -Electron-deuteron_collision_time_at_point_140____________________________ (t_plasma_electron_deuteron_collision_profile140)_ 1.61247323394474781e-03 -Electron-deuteron_collision_time_at_point_141____________________________ (t_plasma_electron_deuteron_collision_profile141)_ 1.60970781208730641e-03 -Electron-deuteron_collision_time_at_point_142____________________________ (t_plasma_electron_deuteron_collision_profile142)_ 1.60692463764182695e-03 -Electron-deuteron_collision_time_at_point_143____________________________ (t_plasma_electron_deuteron_collision_profile143)_ 1.60412375376959909e-03 -Electron-deuteron_collision_time_at_point_144____________________________ (t_plasma_electron_deuteron_collision_profile144)_ 1.60130520401446388e-03 -Electron-deuteron_collision_time_at_point_145____________________________ (t_plasma_electron_deuteron_collision_profile145)_ 1.59846903230463373e-03 -Electron-deuteron_collision_time_at_point_146____________________________ (t_plasma_electron_deuteron_collision_profile146)_ 1.59561528295453121e-03 -Electron-deuteron_collision_time_at_point_147____________________________ (t_plasma_electron_deuteron_collision_profile147)_ 1.59274400066665000e-03 -Electron-deuteron_collision_time_at_point_148____________________________ (t_plasma_electron_deuteron_collision_profile148)_ 1.58985523053343006e-03 -Electron-deuteron_collision_time_at_point_149____________________________ (t_plasma_electron_deuteron_collision_profile149)_ 1.58694901803915723e-03 -Electron-deuteron_collision_time_at_point_150____________________________ (t_plasma_electron_deuteron_collision_profile150)_ 1.58402540906188070e-03 -Electron-deuteron_collision_time_at_point_151____________________________ (t_plasma_electron_deuteron_collision_profile151)_ 1.58108444987535546e-03 -Electron-deuteron_collision_time_at_point_152____________________________ (t_plasma_electron_deuteron_collision_profile152)_ 1.57812618715099848e-03 -Electron-deuteron_collision_time_at_point_153____________________________ (t_plasma_electron_deuteron_collision_profile153)_ 1.57515066795987642e-03 -Electron-deuteron_collision_time_at_point_154____________________________ (t_plasma_electron_deuteron_collision_profile154)_ 1.57215793977469797e-03 -Electron-deuteron_collision_time_at_point_155____________________________ (t_plasma_electron_deuteron_collision_profile155)_ 1.56914805047184548e-03 -Electron-deuteron_collision_time_at_point_156____________________________ (t_plasma_electron_deuteron_collision_profile156)_ 1.56612104833341601e-03 -Electron-deuteron_collision_time_at_point_157____________________________ (t_plasma_electron_deuteron_collision_profile157)_ 1.56307698204928959e-03 -Electron-deuteron_collision_time_at_point_158____________________________ (t_plasma_electron_deuteron_collision_profile158)_ 1.56001590071921654e-03 -Electron-deuteron_collision_time_at_point_159____________________________ (t_plasma_electron_deuteron_collision_profile159)_ 1.55693785385492946e-03 -Electron-deuteron_collision_time_at_point_160____________________________ (t_plasma_electron_deuteron_collision_profile160)_ 1.55384289138227479e-03 -Electron-deuteron_collision_time_at_point_161____________________________ (t_plasma_electron_deuteron_collision_profile161)_ 1.55073106364336799e-03 -Electron-deuteron_collision_time_at_point_162____________________________ (t_plasma_electron_deuteron_collision_profile162)_ 1.54760242139877300e-03 -Electron-deuteron_collision_time_at_point_163____________________________ (t_plasma_electron_deuteron_collision_profile163)_ 1.54445701582970230e-03 -Electron-deuteron_collision_time_at_point_164____________________________ (t_plasma_electron_deuteron_collision_profile164)_ 1.54129489854024342e-03 -Electron-deuteron_collision_time_at_point_165____________________________ (t_plasma_electron_deuteron_collision_profile165)_ 1.53811612155960132e-03 -Electron-deuteron_collision_time_at_point_166____________________________ (t_plasma_electron_deuteron_collision_profile166)_ 1.53492073734437561e-03 -Electron-deuteron_collision_time_at_point_167____________________________ (t_plasma_electron_deuteron_collision_profile167)_ 1.53170879878085147e-03 -Electron-deuteron_collision_time_at_point_168____________________________ (t_plasma_electron_deuteron_collision_profile168)_ 1.52848035918732032e-03 -Electron-deuteron_collision_time_at_point_169____________________________ (t_plasma_electron_deuteron_collision_profile169)_ 1.52523547231642447e-03 -Electron-deuteron_collision_time_at_point_170____________________________ (t_plasma_electron_deuteron_collision_profile170)_ 1.52197419235752199e-03 -Electron-deuteron_collision_time_at_point_171____________________________ (t_plasma_electron_deuteron_collision_profile171)_ 1.51869657393908109e-03 -Electron-deuteron_collision_time_at_point_172____________________________ (t_plasma_electron_deuteron_collision_profile172)_ 1.51540267213109959e-03 -Electron-deuteron_collision_time_at_point_173____________________________ (t_plasma_electron_deuteron_collision_profile173)_ 1.51209254244754352e-03 -Electron-deuteron_collision_time_at_point_174____________________________ (t_plasma_electron_deuteron_collision_profile174)_ 1.50876624084882128e-03 -Electron-deuteron_collision_time_at_point_175____________________________ (t_plasma_electron_deuteron_collision_profile175)_ 1.50542382374427232e-03 -Electron-deuteron_collision_time_at_point_176____________________________ (t_plasma_electron_deuteron_collision_profile176)_ 1.50206534799469222e-03 -Electron-deuteron_collision_time_at_point_177____________________________ (t_plasma_electron_deuteron_collision_profile177)_ 1.49869087091487408e-03 -Electron-deuteron_collision_time_at_point_178____________________________ (t_plasma_electron_deuteron_collision_profile178)_ 1.49530045027618849e-03 -Electron-deuteron_collision_time_at_point_179____________________________ (t_plasma_electron_deuteron_collision_profile179)_ 1.49189414430917736e-03 -Electron-deuteron_collision_time_at_point_180____________________________ (t_plasma_electron_deuteron_collision_profile180)_ 1.48847201170618487e-03 -Electron-deuteron_collision_time_at_point_181____________________________ (t_plasma_electron_deuteron_collision_profile181)_ 1.48503411162400961e-03 -Electron-deuteron_collision_time_at_point_182____________________________ (t_plasma_electron_deuteron_collision_profile182)_ 1.48158050368658845e-03 -Electron-deuteron_collision_time_at_point_183____________________________ (t_plasma_electron_deuteron_collision_profile183)_ 1.47811124798770421e-03 -Electron-deuteron_collision_time_at_point_184____________________________ (t_plasma_electron_deuteron_collision_profile184)_ 1.47462640509372954e-03 -Electron-deuteron_collision_time_at_point_185____________________________ (t_plasma_electron_deuteron_collision_profile185)_ 1.47112603604638691e-03 -Electron-deuteron_collision_time_at_point_186____________________________ (t_plasma_electron_deuteron_collision_profile186)_ 1.46761020236554842e-03 -Electron-deuteron_collision_time_at_point_187____________________________ (t_plasma_electron_deuteron_collision_profile187)_ 1.46407896605206078e-03 -Electron-deuteron_collision_time_at_point_188____________________________ (t_plasma_electron_deuteron_collision_profile188)_ 1.46053238959059704e-03 -Electron-deuteron_collision_time_at_point_189____________________________ (t_plasma_electron_deuteron_collision_profile189)_ 1.45697053595254485e-03 -Electron-deuteron_collision_time_at_point_190____________________________ (t_plasma_electron_deuteron_collision_profile190)_ 1.45339346859891584e-03 -Electron-deuteron_collision_time_at_point_191____________________________ (t_plasma_electron_deuteron_collision_profile191)_ 1.44980125148329504e-03 -Electron-deuteron_collision_time_at_point_192____________________________ (t_plasma_electron_deuteron_collision_profile192)_ 1.44619394905481057e-03 -Electron-deuteron_collision_time_at_point_193____________________________ (t_plasma_electron_deuteron_collision_profile193)_ 1.44257162626114724e-03 -Electron-deuteron_collision_time_at_point_194____________________________ (t_plasma_electron_deuteron_collision_profile194)_ 1.43893434855157801e-03 -Electron-deuteron_collision_time_at_point_195____________________________ (t_plasma_electron_deuteron_collision_profile195)_ 1.43528218188003595e-03 -Electron-deuteron_collision_time_at_point_196____________________________ (t_plasma_electron_deuteron_collision_profile196)_ 1.43161519270821745e-03 -Electron-deuteron_collision_time_at_point_197____________________________ (t_plasma_electron_deuteron_collision_profile197)_ 1.42793344800871448e-03 -Electron-deuteron_collision_time_at_point_198____________________________ (t_plasma_electron_deuteron_collision_profile198)_ 1.42423701526818002e-03 -Electron-deuteron_collision_time_at_point_199____________________________ (t_plasma_electron_deuteron_collision_profile199)_ 1.42052596249053384e-03 -Electron-deuteron_collision_time_at_point_200____________________________ (t_plasma_electron_deuteron_collision_profile200)_ 1.41680035820018931e-03 -Electron-deuteron_collision_time_at_point_201____________________________ (t_plasma_electron_deuteron_collision_profile201)_ 1.41306027144532547e-03 -Electron-deuteron_collision_time_at_point_202____________________________ (t_plasma_electron_deuteron_collision_profile202)_ 1.40930577180118743e-03 -Electron-deuteron_collision_time_at_point_203____________________________ (t_plasma_electron_deuteron_collision_profile203)_ 1.40553692937342217e-03 -Electron-deuteron_collision_time_at_point_204____________________________ (t_plasma_electron_deuteron_collision_profile204)_ 1.40175381480145303e-03 -Electron-deuteron_collision_time_at_point_205____________________________ (t_plasma_electron_deuteron_collision_profile205)_ 1.39795649926188260e-03 -Electron-deuteron_collision_time_at_point_206____________________________ (t_plasma_electron_deuteron_collision_profile206)_ 1.39414505447193961e-03 -Electron-deuteron_collision_time_at_point_207____________________________ (t_plasma_electron_deuteron_collision_profile207)_ 1.39031955269295813e-03 -Electron-deuteron_collision_time_at_point_208____________________________ (t_plasma_electron_deuteron_collision_profile208)_ 1.38648006673388951e-03 -Electron-deuteron_collision_time_at_point_209____________________________ (t_plasma_electron_deuteron_collision_profile209)_ 1.38262666995486098e-03 -Electron-deuteron_collision_time_at_point_210____________________________ (t_plasma_electron_deuteron_collision_profile210)_ 1.37875943627076324e-03 -Electron-deuteron_collision_time_at_point_211____________________________ (t_plasma_electron_deuteron_collision_profile211)_ 1.37487844015488168e-03 -Electron-deuteron_collision_time_at_point_212____________________________ (t_plasma_electron_deuteron_collision_profile212)_ 1.37098375664256034e-03 -Electron-deuteron_collision_time_at_point_213____________________________ (t_plasma_electron_deuteron_collision_profile213)_ 1.36707546133491118e-03 -Electron-deuteron_collision_time_at_point_214____________________________ (t_plasma_electron_deuteron_collision_profile214)_ 1.36315363040256064e-03 -Electron-deuteron_collision_time_at_point_215____________________________ (t_plasma_electron_deuteron_collision_profile215)_ 1.35921834058943245e-03 -Electron-deuteron_collision_time_at_point_216____________________________ (t_plasma_electron_deuteron_collision_profile216)_ 1.35526966921657504e-03 -Electron-deuteron_collision_time_at_point_217____________________________ (t_plasma_electron_deuteron_collision_profile217)_ 1.35130769418603087e-03 -Electron-deuteron_collision_time_at_point_218____________________________ (t_plasma_electron_deuteron_collision_profile218)_ 1.34733249398474083e-03 -Electron-deuteron_collision_time_at_point_219____________________________ (t_plasma_electron_deuteron_collision_profile219)_ 1.34334414768849447e-03 -Electron-deuteron_collision_time_at_point_220____________________________ (t_plasma_electron_deuteron_collision_profile220)_ 1.33934273496592719e-03 -Electron-deuteron_collision_time_at_point_221____________________________ (t_plasma_electron_deuteron_collision_profile221)_ 1.33532833608255306e-03 -Electron-deuteron_collision_time_at_point_222____________________________ (t_plasma_electron_deuteron_collision_profile222)_ 1.33130103190484119e-03 -Electron-deuteron_collision_time_at_point_223____________________________ (t_plasma_electron_deuteron_collision_profile223)_ 1.32726090390434290e-03 -Electron-deuteron_collision_time_at_point_224____________________________ (t_plasma_electron_deuteron_collision_profile224)_ 1.32320803416185692e-03 -Electron-deuteron_collision_time_at_point_225____________________________ (t_plasma_electron_deuteron_collision_profile225)_ 1.31914250537164377e-03 -Electron-deuteron_collision_time_at_point_226____________________________ (t_plasma_electron_deuteron_collision_profile226)_ 1.31506440084568164e-03 -Electron-deuteron_collision_time_at_point_227____________________________ (t_plasma_electron_deuteron_collision_profile227)_ 1.31097380451797372e-03 -Electron-deuteron_collision_time_at_point_228____________________________ (t_plasma_electron_deuteron_collision_profile228)_ 1.30687080094889674e-03 -Electron-deuteron_collision_time_at_point_229____________________________ (t_plasma_electron_deuteron_collision_profile229)_ 1.30275547532960386e-03 -Electron-deuteron_collision_time_at_point_230____________________________ (t_plasma_electron_deuteron_collision_profile230)_ 1.29862791348646931e-03 -Electron-deuteron_collision_time_at_point_231____________________________ (t_plasma_electron_deuteron_collision_profile231)_ 1.29448820188558279e-03 -Electron-deuteron_collision_time_at_point_232____________________________ (t_plasma_electron_deuteron_collision_profile232)_ 1.29033642763730079e-03 -Electron-deuteron_collision_time_at_point_233____________________________ (t_plasma_electron_deuteron_collision_profile233)_ 1.28617267850083443e-03 -Electron-deuteron_collision_time_at_point_234____________________________ (t_plasma_electron_deuteron_collision_profile234)_ 1.28199704288889859e-03 -Electron-deuteron_collision_time_at_point_235____________________________ (t_plasma_electron_deuteron_collision_profile235)_ 1.27780960987241361e-03 -Electron-deuteron_collision_time_at_point_236____________________________ (t_plasma_electron_deuteron_collision_profile236)_ 1.27361046918524783e-03 -Electron-deuteron_collision_time_at_point_237____________________________ (t_plasma_electron_deuteron_collision_profile237)_ 1.26939971122902472e-03 -Electron-deuteron_collision_time_at_point_238____________________________ (t_plasma_electron_deuteron_collision_profile238)_ 1.26517742707797838e-03 -Electron-deuteron_collision_time_at_point_239____________________________ (t_plasma_electron_deuteron_collision_profile239)_ 1.26094370848385930e-03 -Electron-deuteron_collision_time_at_point_240____________________________ (t_plasma_electron_deuteron_collision_profile240)_ 1.25669864788090766e-03 -Electron-deuteron_collision_time_at_point_241____________________________ (t_plasma_electron_deuteron_collision_profile241)_ 1.25244233839086772e-03 -Electron-deuteron_collision_time_at_point_242____________________________ (t_plasma_electron_deuteron_collision_profile242)_ 1.24817487382806623e-03 -Electron-deuteron_collision_time_at_point_243____________________________ (t_plasma_electron_deuteron_collision_profile243)_ 1.24389634870455197e-03 -Electron-deuteron_collision_time_at_point_244____________________________ (t_plasma_electron_deuteron_collision_profile244)_ 1.23960685823528587e-03 -Electron-deuteron_collision_time_at_point_245____________________________ (t_plasma_electron_deuteron_collision_profile245)_ 1.23530649834339046e-03 -Electron-deuteron_collision_time_at_point_246____________________________ (t_plasma_electron_deuteron_collision_profile246)_ 1.23099536566546918e-03 -Electron-deuteron_collision_time_at_point_247____________________________ (t_plasma_electron_deuteron_collision_profile247)_ 1.22667355755697277e-03 -Electron-deuteron_collision_time_at_point_248____________________________ (t_plasma_electron_deuteron_collision_profile248)_ 1.22234117209763871e-03 -Electron-deuteron_collision_time_at_point_249____________________________ (t_plasma_electron_deuteron_collision_profile249)_ 1.21799830809698551e-03 -Electron-deuteron_collision_time_at_point_250____________________________ (t_plasma_electron_deuteron_collision_profile250)_ 1.21364506509987640e-03 -Electron-deuteron_collision_time_at_point_251____________________________ (t_plasma_electron_deuteron_collision_profile251)_ 1.20928154339214073e-03 -Electron-deuteron_collision_time_at_point_252____________________________ (t_plasma_electron_deuteron_collision_profile252)_ 1.20490784400627076e-03 -Electron-deuteron_collision_time_at_point_253____________________________ (t_plasma_electron_deuteron_collision_profile253)_ 1.20052406872717100e-03 -Electron-deuteron_collision_time_at_point_254____________________________ (t_plasma_electron_deuteron_collision_profile254)_ 1.19613032009799228e-03 -Electron-deuteron_collision_time_at_point_255____________________________ (t_plasma_electron_deuteron_collision_profile255)_ 1.19172670142601660e-03 -Electron-deuteron_collision_time_at_point_256____________________________ (t_plasma_electron_deuteron_collision_profile256)_ 1.18731331678862675e-03 -Electron-deuteron_collision_time_at_point_257____________________________ (t_plasma_electron_deuteron_collision_profile257)_ 1.18289027103933510e-03 -Electron-deuteron_collision_time_at_point_258____________________________ (t_plasma_electron_deuteron_collision_profile258)_ 1.17845766981389201e-03 -Electron-deuteron_collision_time_at_point_259____________________________ (t_plasma_electron_deuteron_collision_profile259)_ 1.17401561953646406e-03 -Electron-deuteron_collision_time_at_point_260____________________________ (t_plasma_electron_deuteron_collision_profile260)_ 1.16956422742588531e-03 -Electron-deuteron_collision_time_at_point_261____________________________ (t_plasma_electron_deuteron_collision_profile261)_ 1.16510360150198626e-03 -Electron-deuteron_collision_time_at_point_262____________________________ (t_plasma_electron_deuteron_collision_profile262)_ 1.16063385059199842e-03 -Electron-deuteron_collision_time_at_point_263____________________________ (t_plasma_electron_deuteron_collision_profile263)_ 1.15615508433703743e-03 -Electron-deuteron_collision_time_at_point_264____________________________ (t_plasma_electron_deuteron_collision_profile264)_ 1.15166741319866332e-03 -Electron-deuteron_collision_time_at_point_265____________________________ (t_plasma_electron_deuteron_collision_profile265)_ 1.14717094846552301e-03 -Electron-deuteron_collision_time_at_point_266____________________________ (t_plasma_electron_deuteron_collision_profile266)_ 1.14266580226007604e-03 -Electron-deuteron_collision_time_at_point_267____________________________ (t_plasma_electron_deuteron_collision_profile267)_ 1.13815208754539858e-03 -Electron-deuteron_collision_time_at_point_268____________________________ (t_plasma_electron_deuteron_collision_profile268)_ 1.13362991813208136e-03 -Electron-deuteron_collision_time_at_point_269____________________________ (t_plasma_electron_deuteron_collision_profile269)_ 1.12909940868519761e-03 -Electron-deuteron_collision_time_at_point_270____________________________ (t_plasma_electron_deuteron_collision_profile270)_ 1.12456067473138354e-03 -Electron-deuteron_collision_time_at_point_271____________________________ (t_plasma_electron_deuteron_collision_profile271)_ 1.12001383266597718e-03 -Electron-deuteron_collision_time_at_point_272____________________________ (t_plasma_electron_deuteron_collision_profile272)_ 1.11545899976027907e-03 -Electron-deuteron_collision_time_at_point_273____________________________ (t_plasma_electron_deuteron_collision_profile273)_ 1.11089629416888012e-03 -Electron-deuteron_collision_time_at_point_274____________________________ (t_plasma_electron_deuteron_collision_profile274)_ 1.10632583493710320e-03 -Electron-deuteron_collision_time_at_point_275____________________________ (t_plasma_electron_deuteron_collision_profile275)_ 1.10174774200852183e-03 -Electron-deuteron_collision_time_at_point_276____________________________ (t_plasma_electron_deuteron_collision_profile276)_ 1.09716213623259557e-03 -Electron-deuteron_collision_time_at_point_277____________________________ (t_plasma_electron_deuteron_collision_profile277)_ 1.09256913937239280e-03 -Electron-deuteron_collision_time_at_point_278____________________________ (t_plasma_electron_deuteron_collision_profile278)_ 1.08796887411241714e-03 -Electron-deuteron_collision_time_at_point_279____________________________ (t_plasma_electron_deuteron_collision_profile279)_ 1.08336146406653837e-03 -Electron-deuteron_collision_time_at_point_280____________________________ (t_plasma_electron_deuteron_collision_profile280)_ 1.07874703378603117e-03 -Electron-deuteron_collision_time_at_point_281____________________________ (t_plasma_electron_deuteron_collision_profile281)_ 1.07412570876771573e-03 -Electron-deuteron_collision_time_at_point_282____________________________ (t_plasma_electron_deuteron_collision_profile282)_ 1.06949761546221308e-03 -Electron-deuteron_collision_time_at_point_283____________________________ (t_plasma_electron_deuteron_collision_profile283)_ 1.06486288128230860e-03 -Electron-deuteron_collision_time_at_point_284____________________________ (t_plasma_electron_deuteron_collision_profile284)_ 1.06022163461143293e-03 -Electron-deuteron_collision_time_at_point_285____________________________ (t_plasma_electron_deuteron_collision_profile285)_ 1.05557400481225637e-03 -Electron-deuteron_collision_time_at_point_286____________________________ (t_plasma_electron_deuteron_collision_profile286)_ 1.05092012223540181e-03 -Electron-deuteron_collision_time_at_point_287____________________________ (t_plasma_electron_deuteron_collision_profile287)_ 1.04626011822828288e-03 -Electron-deuteron_collision_time_at_point_288____________________________ (t_plasma_electron_deuteron_collision_profile288)_ 1.04159412514405968e-03 -Electron-deuteron_collision_time_at_point_289____________________________ (t_plasma_electron_deuteron_collision_profile289)_ 1.03692227635072769e-03 -Electron-deuteron_collision_time_at_point_290____________________________ (t_plasma_electron_deuteron_collision_profile290)_ 1.03224470624032824e-03 -Electron-deuteron_collision_time_at_point_291____________________________ (t_plasma_electron_deuteron_collision_profile291)_ 1.02756155023829999e-03 -Electron-deuteron_collision_time_at_point_292____________________________ (t_plasma_electron_deuteron_collision_profile292)_ 1.02287294481295354e-03 -Electron-deuteron_collision_time_at_point_293____________________________ (t_plasma_electron_deuteron_collision_profile293)_ 1.01817902748509745e-03 -Electron-deuteron_collision_time_at_point_294____________________________ (t_plasma_electron_deuteron_collision_profile294)_ 1.01347993683779144e-03 -Electron-deuteron_collision_time_at_point_295____________________________ (t_plasma_electron_deuteron_collision_profile295)_ 1.00877581252625478e-03 -Electron-deuteron_collision_time_at_point_296____________________________ (t_plasma_electron_deuteron_collision_profile296)_ 1.00406679528791502e-03 -Electron-deuteron_collision_time_at_point_297____________________________ (t_plasma_electron_deuteron_collision_profile297)_ 9.99353026952611067e-04 -Electron-deuteron_collision_time_at_point_298____________________________ (t_plasma_electron_deuteron_collision_profile298)_ 9.94634650452946379e-04 -Electron-deuteron_collision_time_at_point_299____________________________ (t_plasma_electron_deuteron_collision_profile299)_ 9.89911809834806422e-04 -Electron-deuteron_collision_time_at_point_300____________________________ (t_plasma_electron_deuteron_collision_profile300)_ 9.85184650268031105e-04 -Electron-deuteron_collision_time_at_point_301____________________________ (t_plasma_electron_deuteron_collision_profile301)_ 9.80453318057258752e-04 -Electron-deuteron_collision_time_at_point_302____________________________ (t_plasma_electron_deuteron_collision_profile302)_ 9.75717960652933147e-04 -Electron-deuteron_collision_time_at_point_303____________________________ (t_plasma_electron_deuteron_collision_profile303)_ 9.70978726662490867e-04 -Electron-deuteron_collision_time_at_point_304____________________________ (t_plasma_electron_deuteron_collision_profile304)_ 9.66235765861722423e-04 -Electron-deuteron_collision_time_at_point_305____________________________ (t_plasma_electron_deuteron_collision_profile305)_ 9.61489229206317930e-04 -Electron-deuteron_collision_time_at_point_306____________________________ (t_plasma_electron_deuteron_collision_profile306)_ 9.56739268843600664e-04 -Electron-deuteron_collision_time_at_point_307____________________________ (t_plasma_electron_deuteron_collision_profile307)_ 9.51986038124448628e-04 -Electron-deuteron_collision_time_at_point_308____________________________ (t_plasma_electron_deuteron_collision_profile308)_ 9.47229691615418101e-04 -Electron-deuteron_collision_time_at_point_309____________________________ (t_plasma_electron_deuteron_collision_profile309)_ 9.42470385111068842e-04 -Electron-deuteron_collision_time_at_point_310____________________________ (t_plasma_electron_deuteron_collision_profile310)_ 9.37708275646494767e-04 -Electron-deuteron_collision_time_at_point_311____________________________ (t_plasma_electron_deuteron_collision_profile311)_ 9.32943521510069275e-04 -Electron-deuteron_collision_time_at_point_312____________________________ (t_plasma_electron_deuteron_collision_profile312)_ 9.28176282256408742e-04 -Electron-deuteron_collision_time_at_point_313____________________________ (t_plasma_electron_deuteron_collision_profile313)_ 9.23406718719566272e-04 -Electron-deuteron_collision_time_at_point_314____________________________ (t_plasma_electron_deuteron_collision_profile314)_ 9.18634993026446866e-04 -Electron-deuteron_collision_time_at_point_315____________________________ (t_plasma_electron_deuteron_collision_profile315)_ 9.13861268610471835e-04 -Electron-deuteron_collision_time_at_point_316____________________________ (t_plasma_electron_deuteron_collision_profile316)_ 9.09085710225483691e-04 -Electron-deuteron_collision_time_at_point_317____________________________ (t_plasma_electron_deuteron_collision_profile317)_ 9.04308483959897482e-04 -Electron-deuteron_collision_time_at_point_318____________________________ (t_plasma_electron_deuteron_collision_profile318)_ 8.99529757251122200e-04 -Electron-deuteron_collision_time_at_point_319____________________________ (t_plasma_electron_deuteron_collision_profile319)_ 8.94749698900241955e-04 -Electron-deuteron_collision_time_at_point_320____________________________ (t_plasma_electron_deuteron_collision_profile320)_ 8.89968479086972013e-04 -Electron-deuteron_collision_time_at_point_321____________________________ (t_plasma_electron_deuteron_collision_profile321)_ 8.85186269384903861e-04 -Electron-deuteron_collision_time_at_point_322____________________________ (t_plasma_electron_deuteron_collision_profile322)_ 8.80403242777036302e-04 -Electron-deuteron_collision_time_at_point_323____________________________ (t_plasma_electron_deuteron_collision_profile323)_ 8.75619573671612499e-04 -Electron-deuteron_collision_time_at_point_324____________________________ (t_plasma_electron_deuteron_collision_profile324)_ 8.70835437918262125e-04 -Electron-deuteron_collision_time_at_point_325____________________________ (t_plasma_electron_deuteron_collision_profile325)_ 8.66051012824470170e-04 -Electron-deuteron_collision_time_at_point_326____________________________ (t_plasma_electron_deuteron_collision_profile326)_ 8.61266477172370698e-04 -Electron-deuteron_collision_time_at_point_327____________________________ (t_plasma_electron_deuteron_collision_profile327)_ 8.56482011235888837e-04 -Electron-deuteron_collision_time_at_point_328____________________________ (t_plasma_electron_deuteron_collision_profile328)_ 8.51697796798225816e-04 -Electron-deuteron_collision_time_at_point_329____________________________ (t_plasma_electron_deuteron_collision_profile329)_ 8.46914017169717406e-04 -Electron-deuteron_collision_time_at_point_330____________________________ (t_plasma_electron_deuteron_collision_profile330)_ 8.42130857206062496e-04 -Electron-deuteron_collision_time_at_point_331____________________________ (t_plasma_electron_deuteron_collision_profile331)_ 8.37348503326945139e-04 -Electron-deuteron_collision_time_at_point_332____________________________ (t_plasma_electron_deuteron_collision_profile332)_ 8.32567143535057307e-04 -Electron-deuteron_collision_time_at_point_333____________________________ (t_plasma_electron_deuteron_collision_profile333)_ 8.27786967435534954e-04 -Electron-deuteron_collision_time_at_point_334____________________________ (t_plasma_electron_deuteron_collision_profile334)_ 8.23008166255830465e-04 -Electron-deuteron_collision_time_at_point_335____________________________ (t_plasma_electron_deuteron_collision_profile335)_ 8.18230932866029735e-04 -Electron-deuteron_collision_time_at_point_336____________________________ (t_plasma_electron_deuteron_collision_profile336)_ 8.13455461799626788e-04 -Electron-deuteron_collision_time_at_point_337____________________________ (t_plasma_electron_deuteron_collision_profile337)_ 8.08681949274785844e-04 -Electron-deuteron_collision_time_at_point_338____________________________ (t_plasma_electron_deuteron_collision_profile338)_ 8.03910593216090852e-04 -Electron-deuteron_collision_time_at_point_339____________________________ (t_plasma_electron_deuteron_collision_profile339)_ 7.99141593276814243e-04 -Electron-deuteron_collision_time_at_point_340____________________________ (t_plasma_electron_deuteron_collision_profile340)_ 7.94375150861721712e-04 -Electron-deuteron_collision_time_at_point_341____________________________ (t_plasma_electron_deuteron_collision_profile341)_ 7.89611469150426366e-04 -Electron-deuteron_collision_time_at_point_342____________________________ (t_plasma_electron_deuteron_collision_profile342)_ 7.84850753121318586e-04 -Electron-deuteron_collision_time_at_point_343____________________________ (t_plasma_electron_deuteron_collision_profile343)_ 7.80093209576097403e-04 -Electron-deuteron_collision_time_at_point_344____________________________ (t_plasma_electron_deuteron_collision_profile344)_ 7.75339047164918778e-04 -Electron-deuteron_collision_time_at_point_345____________________________ (t_plasma_electron_deuteron_collision_profile345)_ 7.70588476412186721e-04 -Electron-deuteron_collision_time_at_point_346____________________________ (t_plasma_electron_deuteron_collision_profile346)_ 7.65841709743023103e-04 -Electron-deuteron_collision_time_at_point_347____________________________ (t_plasma_electron_deuteron_collision_profile347)_ 7.61098961510424431e-04 -Electron-deuteron_collision_time_at_point_348____________________________ (t_plasma_electron_deuteron_collision_profile348)_ 7.56360448023154467e-04 -Electron-deuteron_collision_time_at_point_349____________________________ (t_plasma_electron_deuteron_collision_profile349)_ 7.51626387574382449e-04 -Electron-deuteron_collision_time_at_point_350____________________________ (t_plasma_electron_deuteron_collision_profile350)_ 7.46897000471119401e-04 -Electron-deuteron_collision_time_at_point_351____________________________ (t_plasma_electron_deuteron_collision_profile351)_ 7.42172509064461627e-04 -Electron-deuteron_collision_time_at_point_352____________________________ (t_plasma_electron_deuteron_collision_profile352)_ 7.37453137780702431e-04 -Electron-deuteron_collision_time_at_point_353____________________________ (t_plasma_electron_deuteron_collision_profile353)_ 7.32739113153319226e-04 -Electron-deuteron_collision_time_at_point_354____________________________ (t_plasma_electron_deuteron_collision_profile354)_ 7.28030663855905747e-04 -Electron-deuteron_collision_time_at_point_355____________________________ (t_plasma_electron_deuteron_collision_profile355)_ 7.23328020736061059e-04 -Electron-deuteron_collision_time_at_point_356____________________________ (t_plasma_electron_deuteron_collision_profile356)_ 7.18631416850299353e-04 -Electron-deuteron_collision_time_at_point_357____________________________ (t_plasma_electron_deuteron_collision_profile357)_ 7.13941087500011631e-04 -Electron-deuteron_collision_time_at_point_358____________________________ (t_plasma_electron_deuteron_collision_profile358)_ 7.09257270268537723e-04 -Electron-deuteron_collision_time_at_point_359____________________________ (t_plasma_electron_deuteron_collision_profile359)_ 7.04580205059385928e-04 -Electron-deuteron_collision_time_at_point_360____________________________ (t_plasma_electron_deuteron_collision_profile360)_ 6.99910134135670221e-04 -Electron-deuteron_collision_time_at_point_361____________________________ (t_plasma_electron_deuteron_collision_profile361)_ 6.95247302160798193e-04 -Electron-deuteron_collision_time_at_point_362____________________________ (t_plasma_electron_deuteron_collision_profile362)_ 6.90591956240496456e-04 -Electron-deuteron_collision_time_at_point_363____________________________ (t_plasma_electron_deuteron_collision_profile363)_ 6.85944345966205517e-04 -Electron-deuteron_collision_time_at_point_364____________________________ (t_plasma_electron_deuteron_collision_profile364)_ 6.81304723459939397e-04 -Electron-deuteron_collision_time_at_point_365____________________________ (t_plasma_electron_deuteron_collision_profile365)_ 6.76673343420653491e-04 -Electron-deuteron_collision_time_at_point_366____________________________ (t_plasma_electron_deuteron_collision_profile366)_ 6.72050463172216067e-04 -Electron-deuteron_collision_time_at_point_367____________________________ (t_plasma_electron_deuteron_collision_profile367)_ 6.67436342713044776e-04 -Electron-deuteron_collision_time_at_point_368____________________________ (t_plasma_electron_deuteron_collision_profile368)_ 6.62831244767504344e-04 -Electron-deuteron_collision_time_at_point_369____________________________ (t_plasma_electron_deuteron_collision_profile369)_ 6.58235434839140243e-04 -Electron-deuteron_collision_time_at_point_370____________________________ (t_plasma_electron_deuteron_collision_profile370)_ 6.53649181265853309e-04 -Electron-deuteron_collision_time_at_point_371____________________________ (t_plasma_electron_deuteron_collision_profile371)_ 6.49072755277104092e-04 -Electron-deuteron_collision_time_at_point_372____________________________ (t_plasma_electron_deuteron_collision_profile372)_ 6.44506431053258936e-04 -Electron-deuteron_collision_time_at_point_373____________________________ (t_plasma_electron_deuteron_collision_profile373)_ 6.39950485787180363e-04 -Electron-deuteron_collision_time_at_point_374____________________________ (t_plasma_electron_deuteron_collision_profile374)_ 6.35405199748193049e-04 -Electron-deuteron_collision_time_at_point_375____________________________ (t_plasma_electron_deuteron_collision_profile375)_ 6.30870856348530128e-04 -Electron-deuteron_collision_time_at_point_376____________________________ (t_plasma_electron_deuteron_collision_profile376)_ 6.26347742212417149e-04 -Electron-deuteron_collision_time_at_point_377____________________________ (t_plasma_electron_deuteron_collision_profile377)_ 6.21836147247913041e-04 -Electron-deuteron_collision_time_at_point_378____________________________ (t_plasma_electron_deuteron_collision_profile378)_ 6.17336364721675942e-04 -Electron-deuteron_collision_time_at_point_379____________________________ (t_plasma_electron_deuteron_collision_profile379)_ 6.12848691336799261e-04 -Electron-deuteron_collision_time_at_point_380____________________________ (t_plasma_electron_deuteron_collision_profile380)_ 6.08373427313906316e-04 -Electron-deuteron_collision_time_at_point_381____________________________ (t_plasma_electron_deuteron_collision_profile381)_ 6.03910876475666279e-04 -Electron-deuteron_collision_time_at_point_382____________________________ (t_plasma_electron_deuteron_collision_profile382)_ 5.99461346334939811e-04 -Electron-deuteron_collision_time_at_point_383____________________________ (t_plasma_electron_deuteron_collision_profile383)_ 5.95025148186758440e-04 -Electron-deuteron_collision_time_at_point_384____________________________ (t_plasma_electron_deuteron_collision_profile384)_ 5.90602597204351585e-04 -Electron-deuteron_collision_time_at_point_385____________________________ (t_plasma_electron_deuteron_collision_profile385)_ 5.86194012539472233e-04 -Electron-deuteron_collision_time_at_point_386____________________________ (t_plasma_electron_deuteron_collision_profile386)_ 5.81799717427255439e-04 -Electron-deuteron_collision_time_at_point_387____________________________ (t_plasma_electron_deuteron_collision_profile387)_ 5.77420039295897412e-04 -Electron-deuteron_collision_time_at_point_388____________________________ (t_plasma_electron_deuteron_collision_profile388)_ 5.73055309881432087e-04 -Electron-deuteron_collision_time_at_point_389____________________________ (t_plasma_electron_deuteron_collision_profile389)_ 5.68705865347923605e-04 -Electron-deuteron_collision_time_at_point_390____________________________ (t_plasma_electron_deuteron_collision_profile390)_ 5.64372046413397048e-04 -Electron-deuteron_collision_time_at_point_391____________________________ (t_plasma_electron_deuteron_collision_profile391)_ 5.60054198481876159e-04 -Electron-deuteron_collision_time_at_point_392____________________________ (t_plasma_electron_deuteron_collision_profile392)_ 5.55752671781896564e-04 -Electron-deuteron_collision_time_at_point_393____________________________ (t_plasma_electron_deuteron_collision_profile393)_ 5.51467821511917775e-04 -Electron-deuteron_collision_time_at_point_394____________________________ (t_plasma_electron_deuteron_collision_profile394)_ 5.47200007993063967e-04 -Electron-deuteron_collision_time_at_point_395____________________________ (t_plasma_electron_deuteron_collision_profile395)_ 5.42949596829676536e-04 -Electron-deuteron_collision_time_at_point_396____________________________ (t_plasma_electron_deuteron_collision_profile396)_ 5.38716959078183472e-04 -Electron-deuteron_collision_time_at_point_397____________________________ (t_plasma_electron_deuteron_collision_profile397)_ 5.34502471424839554e-04 -Electron-deuteron_collision_time_at_point_398____________________________ (t_plasma_electron_deuteron_collision_profile398)_ 5.30306516372926651e-04 -Electron-deuteron_collision_time_at_point_399____________________________ (t_plasma_electron_deuteron_collision_profile399)_ 5.26129482440061604e-04 -Electron-deuteron_collision_time_at_point_400____________________________ (t_plasma_electron_deuteron_collision_profile400)_ 5.21971764366290837e-04 -Electron-deuteron_collision_time_at_point_401____________________________ (t_plasma_electron_deuteron_collision_profile401)_ 5.17833763333734208e-04 -Electron-deuteron_collision_time_at_point_402____________________________ (t_plasma_electron_deuteron_collision_profile402)_ 5.13715887198572187e-04 -Electron-deuteron_collision_time_at_point_403____________________________ (t_plasma_electron_deuteron_collision_profile403)_ 5.09618550736264846e-04 -Electron-deuteron_collision_time_at_point_404____________________________ (t_plasma_electron_deuteron_collision_profile404)_ 5.05542175900943001e-04 -Electron-deuteron_collision_time_at_point_405____________________________ (t_plasma_electron_deuteron_collision_profile405)_ 5.01487192100007239e-04 -Electron-deuteron_collision_time_at_point_406____________________________ (t_plasma_electron_deuteron_collision_profile406)_ 4.97454036485051780e-04 -Electron-deuteron_collision_time_at_point_407____________________________ (t_plasma_electron_deuteron_collision_profile407)_ 4.93443154260334309e-04 -Electron-deuteron_collision_time_at_point_408____________________________ (t_plasma_electron_deuteron_collision_profile408)_ 4.89454999010109832e-04 -Electron-deuteron_collision_time_at_point_409____________________________ (t_plasma_electron_deuteron_collision_profile409)_ 4.85490033046286290e-04 -Electron-deuteron_collision_time_at_point_410____________________________ (t_plasma_electron_deuteron_collision_profile410)_ 4.81548727777965705e-04 -Electron-deuteron_collision_time_at_point_411____________________________ (t_plasma_electron_deuteron_collision_profile411)_ 4.77631564104604453e-04 -Electron-deuteron_collision_time_at_point_412____________________________ (t_plasma_electron_deuteron_collision_profile412)_ 4.73739032834670406e-04 -Electron-deuteron_collision_time_at_point_413____________________________ (t_plasma_electron_deuteron_collision_profile413)_ 4.69871635131872186e-04 -Electron-deuteron_collision_time_at_point_414____________________________ (t_plasma_electron_deuteron_collision_profile414)_ 4.66029882991217924e-04 -Electron-deuteron_collision_time_at_point_415____________________________ (t_plasma_electron_deuteron_collision_profile415)_ 4.62214299747402046e-04 -Electron-deuteron_collision_time_at_point_416____________________________ (t_plasma_electron_deuteron_collision_profile416)_ 4.58425420618256306e-04 -Electron-deuteron_collision_time_at_point_417____________________________ (t_plasma_electron_deuteron_collision_profile417)_ 4.54663793286286873e-04 -Electron-deuteron_collision_time_at_point_418____________________________ (t_plasma_electron_deuteron_collision_profile418)_ 4.50929978521632299e-04 -Electron-deuteron_collision_time_at_point_419____________________________ (t_plasma_electron_deuteron_collision_profile419)_ 4.47224550850132082e-04 -Electron-deuteron_collision_time_at_point_420____________________________ (t_plasma_electron_deuteron_collision_profile420)_ 4.43548099270584689e-04 -Electron-deuteron_collision_time_at_point_421____________________________ (t_plasma_electron_deuteron_collision_profile421)_ 4.39901228025732982e-04 -Electron-deuteron_collision_time_at_point_422____________________________ (t_plasma_electron_deuteron_collision_profile422)_ 4.36284557432017319e-04 -Electron-deuteron_collision_time_at_point_423____________________________ (t_plasma_electron_deuteron_collision_profile423)_ 4.32698724773705485e-04 -Electron-deuteron_collision_time_at_point_424____________________________ (t_plasma_electron_deuteron_collision_profile424)_ 4.29144385267673134e-04 -Electron-deuteron_collision_time_at_point_425____________________________ (t_plasma_electron_deuteron_collision_profile425)_ 4.25622213105850470e-04 -Electron-deuteron_collision_time_at_point_426____________________________ (t_plasma_electron_deuteron_collision_profile426)_ 4.22132902583191377e-04 -Electron-deuteron_collision_time_at_point_427____________________________ (t_plasma_electron_deuteron_collision_profile427)_ 4.18677169320014664e-04 -Electron-deuteron_collision_time_at_point_428____________________________ (t_plasma_electron_deuteron_collision_profile428)_ 4.15255751588673846e-04 -Electron-deuteron_collision_time_at_point_429____________________________ (t_plasma_electron_deuteron_collision_profile429)_ 4.11869411755812968e-04 -Electron-deuteron_collision_time_at_point_430____________________________ (t_plasma_electron_deuteron_collision_profile430)_ 4.08518937852957425e-04 -Electron-deuteron_collision_time_at_point_431____________________________ (t_plasma_electron_deuteron_collision_profile431)_ 4.05205145289927503e-04 -Electron-deuteron_collision_time_at_point_432____________________________ (t_plasma_electron_deuteron_collision_profile432)_ 4.01928878727584584e-04 -Electron-deuteron_collision_time_at_point_433____________________________ (t_plasma_electron_deuteron_collision_profile433)_ 3.98691014128774548e-04 -Electron-deuteron_collision_time_at_point_434____________________________ (t_plasma_electron_deuteron_collision_profile434)_ 3.95492461009129147e-04 -Electron-deuteron_collision_time_at_point_435____________________________ (t_plasma_electron_deuteron_collision_profile435)_ 3.92334164912630252e-04 -Electron-deuteron_collision_time_at_point_436____________________________ (t_plasma_electron_deuteron_collision_profile436)_ 3.89217110140729840e-04 -Electron-deuteron_collision_time_at_point_437____________________________ (t_plasma_electron_deuteron_collision_profile437)_ 3.86142322768420461e-04 -Electron-deuteron_collision_time_at_point_438____________________________ (t_plasma_electron_deuteron_collision_profile438)_ 3.83110873986143422e-04 -Electron-deuteron_collision_time_at_point_439____________________________ (t_plasma_electron_deuteron_collision_profile439)_ 3.80123883813037139e-04 -Electron-deuteron_collision_time_at_point_440____________________________ (t_plasma_electron_deuteron_collision_profile440)_ 3.77182525235000832e-04 -Electron-deuteron_collision_time_at_point_441____________________________ (t_plasma_electron_deuteron_collision_profile441)_ 3.74288028830742825e-04 -Electron-deuteron_collision_time_at_point_442____________________________ (t_plasma_electron_deuteron_collision_profile442)_ 3.71441687960817244e-04 -Electron-deuteron_collision_time_at_point_443____________________________ (t_plasma_electron_deuteron_collision_profile443)_ 3.68644864609225689e-04 -Electron-deuteron_collision_time_at_point_444____________________________ (t_plasma_electron_deuteron_collision_profile444)_ 3.65898995985191320e-04 -Electron-deuteron_collision_time_at_point_445____________________________ (t_plasma_electron_deuteron_collision_profile445)_ 3.63205602015215093e-04 -Electron-deuteron_collision_time_at_point_446____________________________ (t_plasma_electron_deuteron_collision_profile446)_ 3.60566293883851868e-04 -Electron-deuteron_collision_time_at_point_447____________________________ (t_plasma_electron_deuteron_collision_profile447)_ 3.57982783817511726e-04 -Electron-deuteron_collision_time_at_point_448____________________________ (t_plasma_electron_deuteron_collision_profile448)_ 3.55456896351606362e-04 -Electron-deuteron_collision_time_at_point_449____________________________ (t_plasma_electron_deuteron_collision_profile449)_ 3.52990581380743101e-04 -Electron-deuteron_collision_time_at_point_450____________________________ (t_plasma_electron_deuteron_collision_profile450)_ 3.50585929369388784e-04 -Electron-deuteron_collision_time_at_point_451____________________________ (t_plasma_electron_deuteron_collision_profile451)_ 3.48245189203108432e-04 -Electron-deuteron_collision_time_at_point_452____________________________ (t_plasma_electron_deuteron_collision_profile452)_ 3.45970789298063509e-04 -Electron-deuteron_collision_time_at_point_453____________________________ (t_plasma_electron_deuteron_collision_profile453)_ 3.43765362773294043e-04 -Electron-deuteron_collision_time_at_point_454____________________________ (t_plasma_electron_deuteron_collision_profile454)_ 3.41631777748013733e-04 -Electron-deuteron_collision_time_at_point_455____________________________ (t_plasma_electron_deuteron_collision_profile455)_ 3.39573174187707846e-04 -Electron-deuteron_collision_time_at_point_456____________________________ (t_plasma_electron_deuteron_collision_profile456)_ 3.37593009239823280e-04 -Electron-deuteron_collision_time_at_point_457____________________________ (t_plasma_electron_deuteron_collision_profile457)_ 3.35695113754926814e-04 -Electron-deuteron_collision_time_at_point_458____________________________ (t_plasma_electron_deuteron_collision_profile458)_ 3.33883763818861555e-04 -Electron-deuteron_collision_time_at_point_459____________________________ (t_plasma_electron_deuteron_collision_profile459)_ 3.32163772858072635e-04 -Electron-deuteron_collision_time_at_point_460____________________________ (t_plasma_electron_deuteron_collision_profile460)_ 3.30540612634960601e-04 -Electron-deuteron_collision_time_at_point_461____________________________ (t_plasma_electron_deuteron_collision_profile461)_ 3.29020575981307860e-04 -Electron-deuteron_collision_time_at_point_462____________________________ (t_plasma_electron_deuteron_collision_profile462)_ 3.27611001896481783e-04 -Electron-deuteron_collision_time_at_point_463____________________________ (t_plasma_electron_deuteron_collision_profile463)_ 3.26320597690295429e-04 -Electron-deuteron_collision_time_at_point_464____________________________ (t_plasma_electron_deuteron_collision_profile464)_ 3.25159919869464449e-04 -Electron-deuteron_collision_time_at_point_465____________________________ (t_plasma_electron_deuteron_collision_profile465)_ 3.24142131616042745e-04 -Electron-deuteron_collision_time_at_point_466____________________________ (t_plasma_electron_deuteron_collision_profile466)_ 3.23284283734085181e-04 -Electron-deuteron_collision_time_at_point_467____________________________ (t_plasma_electron_deuteron_collision_profile467)_ 3.22609705735146552e-04 -Electron-deuteron_collision_time_at_point_468____________________________ (t_plasma_electron_deuteron_collision_profile468)_ 3.22153185759674831e-04 -Electron-deuteron_collision_time_at_point_469____________________________ (t_plasma_electron_deuteron_collision_profile469)_ 3.21975524669909088e-04 -Electron-deuteron_collision_time_at_point_470____________________________ (t_plasma_electron_deuteron_collision_profile470)_ 3.22252538577270757e-04 -Electron-deuteron_collision_time_at_point_471____________________________ (t_plasma_electron_deuteron_collision_profile471)_ 3.11304973039360010e-04 -Electron-deuteron_collision_time_at_point_472____________________________ (t_plasma_electron_deuteron_collision_profile472)_ 3.00290405948248635e-04 -Electron-deuteron_collision_time_at_point_473____________________________ (t_plasma_electron_deuteron_collision_profile473)_ 2.89210377084930207e-04 -Electron-deuteron_collision_time_at_point_474____________________________ (t_plasma_electron_deuteron_collision_profile474)_ 2.78066762732257714e-04 -Electron-deuteron_collision_time_at_point_475____________________________ (t_plasma_electron_deuteron_collision_profile475)_ 2.66861824337261610e-04 -Electron-deuteron_collision_time_at_point_476____________________________ (t_plasma_electron_deuteron_collision_profile476)_ 2.55598264890863369e-04 -Electron-deuteron_collision_time_at_point_477____________________________ (t_plasma_electron_deuteron_collision_profile477)_ 2.44279294473305681e-04 -Electron-deuteron_collision_time_at_point_478____________________________ (t_plasma_electron_deuteron_collision_profile478)_ 2.32908706741994287e-04 -Electron-deuteron_collision_time_at_point_479____________________________ (t_plasma_electron_deuteron_collision_profile479)_ 2.21490968557053105e-04 -Electron-deuteron_collision_time_at_point_480____________________________ (t_plasma_electron_deuteron_collision_profile480)_ 2.10031325478699665e-04 -Electron-deuteron_collision_time_at_point_481____________________________ (t_plasma_electron_deuteron_collision_profile481)_ 1.98535926571355648e-04 -Electron-deuteron_collision_time_at_point_482____________________________ (t_plasma_electron_deuteron_collision_profile482)_ 1.87011972871480156e-04 -Electron-deuteron_collision_time_at_point_483____________________________ (t_plasma_electron_deuteron_collision_profile483)_ 1.75467895104829510e-04 -Electron-deuteron_collision_time_at_point_484____________________________ (t_plasma_electron_deuteron_collision_profile484)_ 1.63913567899373375e-04 -Electron-deuteron_collision_time_at_point_485____________________________ (t_plasma_electron_deuteron_collision_profile485)_ 1.52360570019584795e-04 -Electron-deuteron_collision_time_at_point_486____________________________ (t_plasma_electron_deuteron_collision_profile486)_ 1.40822503332181762e-04 -Electron-deuteron_collision_time_at_point_487____________________________ (t_plasma_electron_deuteron_collision_profile487)_ 1.29315387750096155e-04 -Electron-deuteron_collision_time_at_point_488____________________________ (t_plasma_electron_deuteron_collision_profile488)_ 1.17858156009843413e-04 -Electron-deuteron_collision_time_at_point_489____________________________ (t_plasma_electron_deuteron_collision_profile489)_ 1.06473282009823326e-04 -Electron-deuteron_collision_time_at_point_490____________________________ (t_plasma_electron_deuteron_collision_profile490)_ 9.51875916187368244e-05 -Electron-deuteron_collision_time_at_point_491____________________________ (t_plasma_electron_deuteron_collision_profile491)_ 8.40333290049922630e-05 -Electron-deuteron_collision_time_at_point_492____________________________ (t_plasma_electron_deuteron_collision_profile492)_ 7.30495914622573023e-05 -Electron-deuteron_collision_time_at_point_493____________________________ (t_plasma_electron_deuteron_collision_profile493)_ 6.22843148715666883e-05 -Electron-deuteron_collision_time_at_point_494____________________________ (t_plasma_electron_deuteron_collision_profile494)_ 5.17971186665790238e-05 -Electron-deuteron_collision_time_at_point_495____________________________ (t_plasma_electron_deuteron_collision_profile495)_ 4.16635679394519075e-05 -Electron-deuteron_collision_time_at_point_496____________________________ (t_plasma_electron_deuteron_collision_profile496)_ 3.19819432430491082e-05 -Electron-deuteron_collision_time_at_point_497____________________________ (t_plasma_electron_deuteron_collision_profile497)_ 2.28848893038346602e-05 -Electron-deuteron_collision_time_at_point_498____________________________ (t_plasma_electron_deuteron_collision_profile498)_ 1.45619259313853674e-05 -Electron-deuteron_collision_time_at_point_499____________________________ (t_plasma_electron_deuteron_collision_profile499)_ 7.31182926314833917e-06 -Electron-deuteron_collision_time_at_point_500____________________________ (t_plasma_electron_deuteron_collision_profile500)_ 1.71876715621942392e-06 -Volume_averaged_electron-triton_collision_time_(τₑT)_(s)_________________ (t_plasma_electron_triton_collision_vol_avg)_ 8.29935929299655093e-04 OP -Electron-triton_collision_time_at_point_0________________________________ (t_plasma_electron_triton_collision_profile0)_ 1.80995552266699413e-03 -Electron-triton_collision_time_at_point_1________________________________ (t_plasma_electron_triton_collision_profile1)_ 1.80994522130371784e-03 -Electron-triton_collision_time_at_point_2________________________________ (t_plasma_electron_triton_collision_profile2)_ 1.80991431734869716e-03 -Electron-triton_collision_time_at_point_3________________________________ (t_plasma_electron_triton_collision_profile3)_ 1.80986281120635662e-03 -Electron-triton_collision_time_at_point_4________________________________ (t_plasma_electron_triton_collision_profile4)_ 1.80979070355075642e-03 -Electron-triton_collision_time_at_point_5________________________________ (t_plasma_electron_triton_collision_profile5)_ 1.80969799532561520e-03 -Electron-triton_collision_time_at_point_6________________________________ (t_plasma_electron_triton_collision_profile6)_ 1.80958468774434036e-03 -Electron-triton_collision_time_at_point_7________________________________ (t_plasma_electron_triton_collision_profile7)_ 1.80945078229008145e-03 -Electron-triton_collision_time_at_point_8________________________________ (t_plasma_electron_triton_collision_profile8)_ 1.80929628071577263e-03 -Electron-triton_collision_time_at_point_9________________________________ (t_plasma_electron_triton_collision_profile9)_ 1.80912118504420513e-03 -Electron-triton_collision_time_at_point_10_______________________________ (t_plasma_electron_triton_collision_profile10)_ 1.80892549756809899e-03 -Electron-triton_collision_time_at_point_11_______________________________ (t_plasma_electron_triton_collision_profile11)_ 1.80870922085018290e-03 -Electron-triton_collision_time_at_point_12_______________________________ (t_plasma_electron_triton_collision_profile12)_ 1.80847235772329043e-03 -Electron-triton_collision_time_at_point_13_______________________________ (t_plasma_electron_triton_collision_profile13)_ 1.80821491129046306e-03 -Electron-triton_collision_time_at_point_14_______________________________ (t_plasma_electron_triton_collision_profile14)_ 1.80793688492506118e-03 -Electron-triton_collision_time_at_point_15_______________________________ (t_plasma_electron_triton_collision_profile15)_ 1.80763828227088925e-03 -Electron-triton_collision_time_at_point_16_______________________________ (t_plasma_electron_triton_collision_profile16)_ 1.80731910724232542e-03 -Electron-triton_collision_time_at_point_17_______________________________ (t_plasma_electron_triton_collision_profile17)_ 1.80697936402446856e-03 -Electron-triton_collision_time_at_point_18_______________________________ (t_plasma_electron_triton_collision_profile18)_ 1.80661905707328336e-03 -Electron-triton_collision_time_at_point_19_______________________________ (t_plasma_electron_triton_collision_profile19)_ 1.80623819111577289e-03 -Electron-triton_collision_time_at_point_20_______________________________ (t_plasma_electron_triton_collision_profile20)_ 1.80583677115013800e-03 -Electron-triton_collision_time_at_point_21_______________________________ (t_plasma_electron_triton_collision_profile21)_ 1.80541480244597119e-03 -Electron-triton_collision_time_at_point_22_______________________________ (t_plasma_electron_triton_collision_profile22)_ 1.80497229054444111e-03 -Electron-triton_collision_time_at_point_23_______________________________ (t_plasma_electron_triton_collision_profile23)_ 1.80450924125849835e-03 -Electron-triton_collision_time_at_point_24_______________________________ (t_plasma_electron_triton_collision_profile24)_ 1.80402566067308472e-03 -Electron-triton_collision_time_at_point_25_______________________________ (t_plasma_electron_triton_collision_profile25)_ 1.80352155514535762e-03 -Electron-triton_collision_time_at_point_26_______________________________ (t_plasma_electron_triton_collision_profile26)_ 1.80299693130491845e-03 -Electron-triton_collision_time_at_point_27_______________________________ (t_plasma_electron_triton_collision_profile27)_ 1.80245179605406061e-03 -Electron-triton_collision_time_at_point_28_______________________________ (t_plasma_electron_triton_collision_profile28)_ 1.80188615656801370e-03 -Electron-triton_collision_time_at_point_29_______________________________ (t_plasma_electron_triton_collision_profile29)_ 1.80130002029521281e-03 -Electron-triton_collision_time_at_point_30_______________________________ (t_plasma_electron_triton_collision_profile30)_ 1.80069339495756396e-03 -Electron-triton_collision_time_at_point_31_______________________________ (t_plasma_electron_triton_collision_profile31)_ 1.80006628855073313e-03 -Electron-triton_collision_time_at_point_32_______________________________ (t_plasma_electron_triton_collision_profile32)_ 1.79941870934443226e-03 -Electron-triton_collision_time_at_point_33_______________________________ (t_plasma_electron_triton_collision_profile33)_ 1.79875066588272570e-03 -Electron-triton_collision_time_at_point_34_______________________________ (t_plasma_electron_triton_collision_profile34)_ 1.79806216698434086e-03 -Electron-triton_collision_time_at_point_35_______________________________ (t_plasma_electron_triton_collision_profile35)_ 1.79735322174299421e-03 -Electron-triton_collision_time_at_point_36_______________________________ (t_plasma_electron_triton_collision_profile36)_ 1.79662383952771841e-03 -Electron-triton_collision_time_at_point_37_______________________________ (t_plasma_electron_triton_collision_profile37)_ 1.79587402998321126e-03 -Electron-triton_collision_time_at_point_38_______________________________ (t_plasma_electron_triton_collision_profile38)_ 1.79510380303018698e-03 -Electron-triton_collision_time_at_point_39_______________________________ (t_plasma_electron_triton_collision_profile39)_ 1.79431316886573961e-03 -Electron-triton_collision_time_at_point_40_______________________________ (t_plasma_electron_triton_collision_profile40)_ 1.79350213796371834e-03 -Electron-triton_collision_time_at_point_41_______________________________ (t_plasma_electron_triton_collision_profile41)_ 1.79267072107510946e-03 -Electron-triton_collision_time_at_point_42_______________________________ (t_plasma_electron_triton_collision_profile42)_ 1.79181892922843696e-03 -Electron-triton_collision_time_at_point_43_______________________________ (t_plasma_electron_triton_collision_profile43)_ 1.79094677373016118e-03 -Electron-triton_collision_time_at_point_44_______________________________ (t_plasma_electron_triton_collision_profile44)_ 1.79005426616509877e-03 -Electron-triton_collision_time_at_point_45_______________________________ (t_plasma_electron_triton_collision_profile45)_ 1.78914141839684663e-03 -Electron-triton_collision_time_at_point_46_______________________________ (t_plasma_electron_triton_collision_profile46)_ 1.78820824256822192e-03 -Electron-triton_collision_time_at_point_47_______________________________ (t_plasma_electron_triton_collision_profile47)_ 1.78725475110170606e-03 -Electron-triton_collision_time_at_point_48_______________________________ (t_plasma_electron_triton_collision_profile48)_ 1.78628095669990409e-03 -Electron-triton_collision_time_at_point_49_______________________________ (t_plasma_electron_triton_collision_profile49)_ 1.78528687234601278e-03 -Electron-triton_collision_time_at_point_50_______________________________ (t_plasma_electron_triton_collision_profile50)_ 1.78427251130430157e-03 -Electron-triton_collision_time_at_point_51_______________________________ (t_plasma_electron_triton_collision_profile51)_ 1.78323788712059879e-03 -Electron-triton_collision_time_at_point_52_______________________________ (t_plasma_electron_triton_collision_profile52)_ 1.78218301362279637e-03 -Electron-triton_collision_time_at_point_53_______________________________ (t_plasma_electron_triton_collision_profile53)_ 1.78110790492135929e-03 -Electron-triton_collision_time_at_point_54_______________________________ (t_plasma_electron_triton_collision_profile54)_ 1.78001257540984789e-03 -Electron-triton_collision_time_at_point_55_______________________________ (t_plasma_electron_triton_collision_profile55)_ 1.77889703976545003e-03 -Electron-triton_collision_time_at_point_56_______________________________ (t_plasma_electron_triton_collision_profile56)_ 1.77776131294952902e-03 -Electron-triton_collision_time_at_point_57_______________________________ (t_plasma_electron_triton_collision_profile57)_ 1.77660541020817288e-03 -Electron-triton_collision_time_at_point_58_______________________________ (t_plasma_electron_triton_collision_profile58)_ 1.77542934707276509e-03 -Electron-triton_collision_time_at_point_59_______________________________ (t_plasma_electron_triton_collision_profile59)_ 1.77423313936055766e-03 -Electron-triton_collision_time_at_point_60_______________________________ (t_plasma_electron_triton_collision_profile60)_ 1.77301680317526250e-03 -Electron-triton_collision_time_at_point_61_______________________________ (t_plasma_electron_triton_collision_profile61)_ 1.77178035490765224e-03 -Electron-triton_collision_time_at_point_62_______________________________ (t_plasma_electron_triton_collision_profile62)_ 1.77052381123616047e-03 -Electron-triton_collision_time_at_point_63_______________________________ (t_plasma_electron_triton_collision_profile63)_ 1.76924718912751752e-03 -Electron-triton_collision_time_at_point_64_______________________________ (t_plasma_electron_triton_collision_profile64)_ 1.76795050583737363e-03 -Electron-triton_collision_time_at_point_65_______________________________ (t_plasma_electron_triton_collision_profile65)_ 1.76663377891094495e-03 -Electron-triton_collision_time_at_point_66_______________________________ (t_plasma_electron_triton_collision_profile66)_ 1.76529702618367142e-03 -Electron-triton_collision_time_at_point_67_______________________________ (t_plasma_electron_triton_collision_profile67)_ 1.76394026578188400e-03 -Electron-triton_collision_time_at_point_68_______________________________ (t_plasma_electron_triton_collision_profile68)_ 1.76256351612347597e-03 -Electron-triton_collision_time_at_point_69_______________________________ (t_plasma_electron_triton_collision_profile69)_ 1.76116679591860575e-03 -Electron-triton_collision_time_at_point_70_______________________________ (t_plasma_electron_triton_collision_profile70)_ 1.75975012417038603e-03 -Electron-triton_collision_time_at_point_71_______________________________ (t_plasma_electron_triton_collision_profile71)_ 1.75831352017560599e-03 -Electron-triton_collision_time_at_point_72_______________________________ (t_plasma_electron_triton_collision_profile72)_ 1.75685700352545067e-03 -Electron-triton_collision_time_at_point_73_______________________________ (t_plasma_electron_triton_collision_profile73)_ 1.75538059410623964e-03 -Electron-triton_collision_time_at_point_74_______________________________ (t_plasma_electron_triton_collision_profile74)_ 1.75388431210017647e-03 -Electron-triton_collision_time_at_point_75_______________________________ (t_plasma_electron_triton_collision_profile75)_ 1.75236817798610917e-03 -Electron-triton_collision_time_at_point_76_______________________________ (t_plasma_electron_triton_collision_profile76)_ 1.75083221254030167e-03 -Electron-triton_collision_time_at_point_77_______________________________ (t_plasma_electron_triton_collision_profile77)_ 1.74927643683721779e-03 -Electron-triton_collision_time_at_point_78_______________________________ (t_plasma_electron_triton_collision_profile78)_ 1.74770087225031910e-03 -Electron-triton_collision_time_at_point_79_______________________________ (t_plasma_electron_triton_collision_profile79)_ 1.74610554045287253e-03 -Electron-triton_collision_time_at_point_80_______________________________ (t_plasma_electron_triton_collision_profile80)_ 1.74449046341877451e-03 -Electron-triton_collision_time_at_point_81_______________________________ (t_plasma_electron_triton_collision_profile81)_ 1.74285566342337718e-03 -Electron-triton_collision_time_at_point_82_______________________________ (t_plasma_electron_triton_collision_profile82)_ 1.74120116304434121e-03 -Electron-triton_collision_time_at_point_83_______________________________ (t_plasma_electron_triton_collision_profile83)_ 1.73952698516249057e-03 -Electron-triton_collision_time_at_point_84_______________________________ (t_plasma_electron_triton_collision_profile84)_ 1.73783315296268206e-03 -Electron-triton_collision_time_at_point_85_______________________________ (t_plasma_electron_triton_collision_profile85)_ 1.73611968993469049e-03 -Electron-triton_collision_time_at_point_86_______________________________ (t_plasma_electron_triton_collision_profile86)_ 1.73438661987410201e-03 -Electron-triton_collision_time_at_point_87_______________________________ (t_plasma_electron_triton_collision_profile87)_ 1.73263396688322444e-03 -Electron-triton_collision_time_at_point_88_______________________________ (t_plasma_electron_triton_collision_profile88)_ 1.73086175537200690e-03 -Electron-triton_collision_time_at_point_89_______________________________ (t_plasma_electron_triton_collision_profile89)_ 1.72907001005897739e-03 -Electron-triton_collision_time_at_point_90_______________________________ (t_plasma_electron_triton_collision_profile90)_ 1.72725875597218238e-03 -Electron-triton_collision_time_at_point_91_______________________________ (t_plasma_electron_triton_collision_profile91)_ 1.72542801845015372e-03 -Electron-triton_collision_time_at_point_92_______________________________ (t_plasma_electron_triton_collision_profile92)_ 1.72357782314287874e-03 -Electron-triton_collision_time_at_point_93_______________________________ (t_plasma_electron_triton_collision_profile93)_ 1.72170819601278518e-03 -Electron-triton_collision_time_at_point_94_______________________________ (t_plasma_electron_triton_collision_profile94)_ 1.71981916333574687e-03 -Electron-triton_collision_time_at_point_95_______________________________ (t_plasma_electron_triton_collision_profile95)_ 1.71791075170208665e-03 -Electron-triton_collision_time_at_point_96_______________________________ (t_plasma_electron_triton_collision_profile96)_ 1.71598298801761110e-03 -Electron-triton_collision_time_at_point_97_______________________________ (t_plasma_electron_triton_collision_profile97)_ 1.71403589950464420e-03 -Electron-triton_collision_time_at_point_98_______________________________ (t_plasma_electron_triton_collision_profile98)_ 1.71206951370308710e-03 -Electron-triton_collision_time_at_point_99_______________________________ (t_plasma_electron_triton_collision_profile99)_ 1.71008385847148015e-03 -Electron-triton_collision_time_at_point_100______________________________ (t_plasma_electron_triton_collision_profile100)_ 1.70807896198808384e-03 -Electron-triton_collision_time_at_point_101______________________________ (t_plasma_electron_triton_collision_profile101)_ 1.70605485275197584e-03 -Electron-triton_collision_time_at_point_102______________________________ (t_plasma_electron_triton_collision_profile102)_ 1.70401155958416054e-03 -Electron-triton_collision_time_at_point_103______________________________ (t_plasma_electron_triton_collision_profile103)_ 1.70194911162868472e-03 -Electron-triton_collision_time_at_point_104______________________________ (t_plasma_electron_triton_collision_profile104)_ 1.69986753835378677e-03 -Electron-triton_collision_time_at_point_105______________________________ (t_plasma_electron_triton_collision_profile105)_ 1.69776686955303490e-03 -Electron-triton_collision_time_at_point_106______________________________ (t_plasma_electron_triton_collision_profile106)_ 1.69564713534649985e-03 -Electron-triton_collision_time_at_point_107______________________________ (t_plasma_electron_triton_collision_profile107)_ 1.69350836618193550e-03 -Electron-triton_collision_time_at_point_108______________________________ (t_plasma_electron_triton_collision_profile108)_ 1.69135059283596879e-03 -Electron-triton_collision_time_at_point_109______________________________ (t_plasma_electron_triton_collision_profile109)_ 1.68917384641531173e-03 -Electron-triton_collision_time_at_point_110______________________________ (t_plasma_electron_triton_collision_profile110)_ 1.68697815835798428e-03 -Electron-triton_collision_time_at_point_111______________________________ (t_plasma_electron_triton_collision_profile111)_ 1.68476356043455676e-03 -Electron-triton_collision_time_at_point_112______________________________ (t_plasma_electron_triton_collision_profile112)_ 1.68253008474939653e-03 -Electron-triton_collision_time_at_point_113______________________________ (t_plasma_electron_triton_collision_profile113)_ 1.68027776374194381e-03 -Electron-triton_collision_time_at_point_114______________________________ (t_plasma_electron_triton_collision_profile114)_ 1.67800663018799001e-03 -Electron-triton_collision_time_at_point_115______________________________ (t_plasma_electron_triton_collision_profile115)_ 1.67571671720098160e-03 -Electron-triton_collision_time_at_point_116______________________________ (t_plasma_electron_triton_collision_profile116)_ 1.67340805823333280e-03 -Electron-triton_collision_time_at_point_117______________________________ (t_plasma_electron_triton_collision_profile117)_ 1.67108068707775680e-03 -Electron-triton_collision_time_at_point_118______________________________ (t_plasma_electron_triton_collision_profile118)_ 1.66873463786860652e-03 -Electron-triton_collision_time_at_point_119______________________________ (t_plasma_electron_triton_collision_profile119)_ 1.66636994508324540e-03 -Electron-triton_collision_time_at_point_120______________________________ (t_plasma_electron_triton_collision_profile120)_ 1.66398664354341940e-03 -Electron-triton_collision_time_at_point_121______________________________ (t_plasma_electron_triton_collision_profile121)_ 1.66158476841665064e-03 -Electron-triton_collision_time_at_point_122______________________________ (t_plasma_electron_triton_collision_profile122)_ 1.65916435521764661e-03 -Electron-triton_collision_time_at_point_123______________________________ (t_plasma_electron_triton_collision_profile123)_ 1.65672543980972743e-03 -Electron-triton_collision_time_at_point_124______________________________ (t_plasma_electron_triton_collision_profile124)_ 1.65426805840627024e-03 -Electron-triton_collision_time_at_point_125______________________________ (t_plasma_electron_triton_collision_profile125)_ 1.65179224757216374e-03 -Electron-triton_collision_time_at_point_126______________________________ (t_plasma_electron_triton_collision_profile126)_ 1.64929804422528793e-03 -Electron-triton_collision_time_at_point_127______________________________ (t_plasma_electron_triton_collision_profile127)_ 1.64678548563800139e-03 -Electron-triton_collision_time_at_point_128______________________________ (t_plasma_electron_triton_collision_profile128)_ 1.64425460943865465e-03 -Electron-triton_collision_time_at_point_129______________________________ (t_plasma_electron_triton_collision_profile129)_ 1.64170545361311650e-03 -Electron-triton_collision_time_at_point_130______________________________ (t_plasma_electron_triton_collision_profile130)_ 1.63913805650631314e-03 -Electron-triton_collision_time_at_point_131______________________________ (t_plasma_electron_triton_collision_profile131)_ 1.63655245682379309e-03 -Electron-triton_collision_time_at_point_132______________________________ (t_plasma_electron_triton_collision_profile132)_ 1.63394869363330366e-03 -Electron-triton_collision_time_at_point_133______________________________ (t_plasma_electron_triton_collision_profile133)_ 1.63132680636638642e-03 -Electron-triton_collision_time_at_point_134______________________________ (t_plasma_electron_triton_collision_profile134)_ 1.62868683481999163e-03 -Electron-triton_collision_time_at_point_135______________________________ (t_plasma_electron_triton_collision_profile135)_ 1.62602881915810968e-03 -Electron-triton_collision_time_at_point_136______________________________ (t_plasma_electron_triton_collision_profile136)_ 1.62335279991341935e-03 -Electron-triton_collision_time_at_point_137______________________________ (t_plasma_electron_triton_collision_profile137)_ 1.62065881798895443e-03 -Electron-triton_collision_time_at_point_138______________________________ (t_plasma_electron_triton_collision_profile138)_ 1.61794691465979548e-03 -Electron-triton_collision_time_at_point_139______________________________ (t_plasma_electron_triton_collision_profile139)_ 1.61521713157476428e-03 -Electron-triton_collision_time_at_point_140______________________________ (t_plasma_electron_triton_collision_profile140)_ 1.61246951075815935e-03 -Electron-triton_collision_time_at_point_141______________________________ (t_plasma_electron_triton_collision_profile141)_ 1.60970409461148704e-03 -Electron-triton_collision_time_at_point_142______________________________ (t_plasma_electron_triton_collision_profile142)_ 1.60692092591522640e-03 -Electron-triton_collision_time_at_point_143______________________________ (t_plasma_electron_triton_collision_profile143)_ 1.60412004783061393e-03 -Electron-triton_collision_time_at_point_144______________________________ (t_plasma_electron_triton_collision_profile144)_ 1.60130150390143497e-03 -Electron-triton_collision_time_at_point_145______________________________ (t_plasma_electron_triton_collision_profile145)_ 1.59846533805584599e-03 -Electron-triton_collision_time_at_point_146______________________________ (t_plasma_electron_triton_collision_profile146)_ 1.59561159460821578e-03 -Electron-triton_collision_time_at_point_147______________________________ (t_plasma_electron_triton_collision_profile147)_ 1.59274031826098011e-03 -Electron-triton_collision_time_at_point_148______________________________ (t_plasma_electron_triton_collision_profile148)_ 1.58985155410652237e-03 -Electron-triton_collision_time_at_point_149______________________________ (t_plasma_electron_triton_collision_profile149)_ 1.58694534762906874e-03 -Electron-triton_collision_time_at_point_150______________________________ (t_plasma_electron_triton_collision_profile150)_ 1.58402174470661096e-03 -Electron-triton_collision_time_at_point_151______________________________ (t_plasma_electron_triton_collision_profile151)_ 1.58108079161284483e-03 -Electron-triton_collision_time_at_point_152______________________________ (t_plasma_electron_triton_collision_profile152)_ 1.57812253501912704e-03 -Electron-triton_collision_time_at_point_153______________________________ (t_plasma_electron_triton_collision_profile153)_ 1.57514702199646221e-03 -Electron-triton_collision_time_at_point_154______________________________ (t_plasma_electron_triton_collision_profile154)_ 1.57215430001749921e-03 -Electron-triton_collision_time_at_point_155______________________________ (t_plasma_electron_triton_collision_profile155)_ 1.56914441695855727e-03 -Electron-triton_collision_time_at_point_156______________________________ (t_plasma_electron_triton_collision_profile156)_ 1.56611742110167144e-03 -Electron-triton_collision_time_at_point_157______________________________ (t_plasma_electron_triton_collision_profile157)_ 1.56307336113665671e-03 -Electron-triton_collision_time_at_point_158______________________________ (t_plasma_electron_triton_collision_profile158)_ 1.56001228616320007e-03 -Electron-triton_collision_time_at_point_159______________________________ (t_plasma_electron_triton_collision_profile159)_ 1.55693424569296798e-03 -Electron-triton_collision_time_at_point_160______________________________ (t_plasma_electron_triton_collision_profile160)_ 1.55383928965174161e-03 -Electron-triton_collision_time_at_point_161______________________________ (t_plasma_electron_triton_collision_profile161)_ 1.55072746838157008e-03 -Electron-triton_collision_time_at_point_162______________________________ (t_plasma_electron_triton_collision_profile162)_ 1.54759883264294902e-03 -Electron-triton_collision_time_at_point_163______________________________ (t_plasma_electron_triton_collision_profile163)_ 1.54445343361702390e-03 -Electron-triton_collision_time_at_point_164______________________________ (t_plasma_electron_triton_collision_profile164)_ 1.54129132290781136e-03 -Electron-triton_collision_time_at_point_165______________________________ (t_plasma_electron_triton_collision_profile165)_ 1.53811255254444760e-03 -Electron-triton_collision_time_at_point_166______________________________ (t_plasma_electron_triton_collision_profile166)_ 1.53491717498346197e-03 -Electron-triton_collision_time_at_point_167______________________________ (t_plasma_electron_triton_collision_profile167)_ 1.53170524311106704e-03 -Electron-triton_collision_time_at_point_168______________________________ (t_plasma_electron_triton_collision_profile168)_ 1.52847681024548352e-03 -Electron-triton_collision_time_at_point_169______________________________ (t_plasma_electron_triton_collision_profile169)_ 1.52523193013927977e-03 -Electron-triton_collision_time_at_point_170______________________________ (t_plasma_electron_triton_collision_profile170)_ 1.52197065698173950e-03 -Electron-triton_collision_time_at_point_171______________________________ (t_plasma_electron_triton_collision_profile171)_ 1.51869304540125697e-03 -Electron-triton_collision_time_at_point_172______________________________ (t_plasma_electron_triton_collision_profile172)_ 1.51539915046775453e-03 -Electron-triton_collision_time_at_point_173______________________________ (t_plasma_electron_triton_collision_profile173)_ 1.51208902769512125e-03 -Electron-triton_collision_time_at_point_174______________________________ (t_plasma_electron_triton_collision_profile174)_ 1.50876273304368833e-03 -Electron-triton_collision_time_at_point_175______________________________ (t_plasma_electron_triton_collision_profile175)_ 1.50542032292271715e-03 -Electron-triton_collision_time_at_point_176______________________________ (t_plasma_electron_triton_collision_profile176)_ 1.50206185419292327e-03 -Electron-triton_collision_time_at_point_177______________________________ (t_plasma_electron_triton_collision_profile177)_ 1.49868738416902196e-03 -Electron-triton_collision_time_at_point_178______________________________ (t_plasma_electron_triton_collision_profile178)_ 1.49529697062230076e-03 -Electron-triton_collision_time_at_point_179______________________________ (t_plasma_electron_triton_collision_profile179)_ 1.49189067178322134e-03 -Electron-triton_collision_time_at_point_180______________________________ (t_plasma_electron_triton_collision_profile180)_ 1.48846854634404439e-03 -Electron-triton_collision_time_at_point_181______________________________ (t_plasma_electron_triton_collision_profile181)_ 1.48503065346148482e-03 -Electron-triton_collision_time_at_point_182______________________________ (t_plasma_electron_triton_collision_profile182)_ 1.48157705275939557e-03 -Electron-triton_collision_time_at_point_183______________________________ (t_plasma_electron_triton_collision_profile183)_ 1.47810780433147338e-03 -Electron-triton_collision_time_at_point_184______________________________ (t_plasma_electron_triton_collision_profile184)_ 1.47462296874400546e-03 -Electron-triton_collision_time_at_point_185______________________________ (t_plasma_electron_triton_collision_profile185)_ 1.47112260703862537e-03 -Electron-triton_collision_time_at_point_186______________________________ (t_plasma_electron_triton_collision_profile186)_ 1.46760678073511804e-03 -Electron-triton_collision_time_at_point_187______________________________ (t_plasma_electron_triton_collision_profile187)_ 1.46407555183424042e-03 -Electron-triton_collision_time_at_point_188______________________________ (t_plasma_electron_triton_collision_profile188)_ 1.46052898282057536e-03 -Electron-triton_collision_time_at_point_189______________________________ (t_plasma_electron_triton_collision_profile189)_ 1.45696713666541898e-03 -Electron-triton_collision_time_at_point_190______________________________ (t_plasma_electron_triton_collision_profile190)_ 1.45339007682969120e-03 -Electron-triton_collision_time_at_point_191______________________________ (t_plasma_electron_triton_collision_profile191)_ 1.44979786726688229e-03 -Electron-triton_collision_time_at_point_192______________________________ (t_plasma_electron_triton_collision_profile192)_ 1.44619057242602778e-03 -Electron-triton_collision_time_at_point_193______________________________ (t_plasma_electron_triton_collision_profile193)_ 1.44256825725471577e-03 -Electron-triton_collision_time_at_point_194______________________________ (t_plasma_electron_triton_collision_profile194)_ 1.43893098720212251e-03 -Electron-triton_collision_time_at_point_195______________________________ (t_plasma_electron_triton_collision_profile195)_ 1.43527882822208478e-03 -Electron-triton_collision_time_at_point_196______________________________ (t_plasma_electron_triton_collision_profile196)_ 1.43161184677619989e-03 -Electron-triton_collision_time_at_point_197______________________________ (t_plasma_electron_triton_collision_profile197)_ 1.42793010983695962e-03 -Electron-triton_collision_time_at_point_198______________________________ (t_plasma_electron_triton_collision_profile198)_ 1.42423368489091721e-03 -Electron-triton_collision_time_at_point_199______________________________ (t_plasma_electron_triton_collision_profile199)_ 1.42052263994188921e-03 -Electron-triton_collision_time_at_point_200______________________________ (t_plasma_electron_triton_collision_profile200)_ 1.41679704351418728e-03 -Electron-triton_collision_time_at_point_201______________________________ (t_plasma_electron_triton_collision_profile201)_ 1.41305696465588554e-03 -Electron-triton_collision_time_at_point_202______________________________ (t_plasma_electron_triton_collision_profile202)_ 1.40930247294212413e-03 -Electron-triton_collision_time_at_point_203______________________________ (t_plasma_electron_triton_collision_profile203)_ 1.40553363847844420e-03 -Electron-triton_collision_time_at_point_204______________________________ (t_plasma_electron_triton_collision_profile204)_ 1.40175053190416026e-03 -Electron-triton_collision_time_at_point_205______________________________ (t_plasma_electron_triton_collision_profile205)_ 1.39795322439576733e-03 -Electron-triton_collision_time_at_point_206______________________________ (t_plasma_electron_triton_collision_profile206)_ 1.39414178767038443e-03 -Electron-triton_collision_time_at_point_207______________________________ (t_plasma_electron_triton_collision_profile207)_ 1.39031629398923351e-03 -Electron-triton_collision_time_at_point_208______________________________ (t_plasma_electron_triton_collision_profile208)_ 1.38647681616115492e-03 -Electron-triton_collision_time_at_point_209______________________________ (t_plasma_electron_triton_collision_profile209)_ 1.38262342754616138e-03 -Electron-triton_collision_time_at_point_210______________________________ (t_plasma_electron_triton_collision_profile210)_ 1.37875620205902931e-03 -Electron-triton_collision_time_at_point_211______________________________ (t_plasma_electron_triton_collision_profile211)_ 1.37487521417292789e-03 -Electron-triton_collision_time_at_point_212______________________________ (t_plasma_electron_triton_collision_profile212)_ 1.37098053892308514e-03 -Electron-triton_collision_time_at_point_213______________________________ (t_plasma_electron_triton_collision_profile213)_ 1.36707225191049289e-03 -Electron-triton_collision_time_at_point_214______________________________ (t_plasma_electron_triton_collision_profile214)_ 1.36315042930565899e-03 -Electron-triton_collision_time_at_point_215______________________________ (t_plasma_electron_triton_collision_profile215)_ 1.35921514785238549e-03 -Electron-triton_collision_time_at_point_216______________________________ (t_plasma_electron_triton_collision_profile216)_ 1.35526648487160005e-03 -Electron-triton_collision_time_at_point_217______________________________ (t_plasma_electron_triton_collision_profile217)_ 1.35130451826521959e-03 -Electron-triton_collision_time_at_point_218______________________________ (t_plasma_electron_triton_collision_profile218)_ 1.34732932652006096e-03 -Electron-triton_collision_time_at_point_219______________________________ (t_plasma_electron_triton_collision_profile219)_ 1.34334098871178795e-03 -Electron-triton_collision_time_at_point_220______________________________ (t_plasma_electron_triton_collision_profile220)_ 1.33933958450890758e-03 -Electron-triton_collision_time_at_point_221______________________________ (t_plasma_electron_triton_collision_profile221)_ 1.33532519417680533e-03 -Electron-triton_collision_time_at_point_222______________________________ (t_plasma_electron_triton_collision_profile222)_ 1.33129789858181980e-03 -Electron-triton_collision_time_at_point_223______________________________ (t_plasma_electron_triton_collision_profile223)_ 1.32725777919537108e-03 -Electron-triton_collision_time_at_point_224______________________________ (t_plasma_electron_triton_collision_profile224)_ 1.32320491809812435e-03 -Electron-triton_collision_time_at_point_225______________________________ (t_plasma_electron_triton_collision_profile225)_ 1.31913939798420548e-03 -Electron-triton_collision_time_at_point_226______________________________ (t_plasma_electron_triton_collision_profile226)_ 1.31506130216545777e-03 -Electron-triton_collision_time_at_point_227______________________________ (t_plasma_electron_triton_collision_profile227)_ 1.31097071457574499e-03 -Electron-triton_collision_time_at_point_228______________________________ (t_plasma_electron_triton_collision_profile228)_ 1.30686771977530660e-03 -Electron-triton_collision_time_at_point_229______________________________ (t_plasma_electron_triton_collision_profile229)_ 1.30275240295515547e-03 -Electron-triton_collision_time_at_point_230______________________________ (t_plasma_electron_triton_collision_profile230)_ 1.29862484994152315e-03 -Electron-triton_collision_time_at_point_231______________________________ (t_plasma_electron_triton_collision_profile231)_ 1.29448514720035711e-03 -Electron-triton_collision_time_at_point_232______________________________ (t_plasma_electron_triton_collision_profile232)_ 1.29033338184186765e-03 -Electron-triton_collision_time_at_point_233______________________________ (t_plasma_electron_triton_collision_profile233)_ 1.28616964162512042e-03 -Electron-triton_collision_time_at_point_234______________________________ (t_plasma_electron_triton_collision_profile234)_ 1.28199401496268241e-03 -Electron-triton_collision_time_at_point_235______________________________ (t_plasma_electron_triton_collision_profile235)_ 1.27780659092532434e-03 -Electron-triton_collision_time_at_point_236______________________________ (t_plasma_electron_triton_collision_profile236)_ 1.27360745924676340e-03 -Electron-triton_collision_time_at_point_237______________________________ (t_plasma_electron_triton_collision_profile237)_ 1.26939671032847020e-03 -Electron-triton_collision_time_at_point_238______________________________ (t_plasma_electron_triton_collision_profile238)_ 1.26517443524452530e-03 -Electron-triton_collision_time_at_point_239______________________________ (t_plasma_electron_triton_collision_profile239)_ 1.26094072574652310e-03 -Electron-triton_collision_time_at_point_240______________________________ (t_plasma_electron_triton_collision_profile240)_ 1.25669567426854633e-03 -Electron-triton_collision_time_at_point_241______________________________ (t_plasma_electron_triton_collision_profile241)_ 1.25243937393217943e-03 -Electron-triton_collision_time_at_point_242______________________________ (t_plasma_electron_triton_collision_profile242)_ 1.24817191855158935e-03 -Electron-triton_collision_time_at_point_243______________________________ (t_plasma_electron_triton_collision_profile243)_ 1.24389340263866138e-03 -Electron-triton_collision_time_at_point_244______________________________ (t_plasma_electron_triton_collision_profile244)_ 1.23960392140819316e-03 -Electron-triton_collision_time_at_point_245______________________________ (t_plasma_electron_triton_collision_profile245)_ 1.23530357078314068e-03 -Electron-triton_collision_time_at_point_246______________________________ (t_plasma_electron_triton_collision_profile246)_ 1.23099244739993999e-03 -Electron-triton_collision_time_at_point_247______________________________ (t_plasma_electron_triton_collision_profile247)_ 1.22667064861387248e-03 -Electron-triton_collision_time_at_point_248______________________________ (t_plasma_electron_triton_collision_profile248)_ 1.22233827250450410e-03 -Electron-triton_collision_time_at_point_249______________________________ (t_plasma_electron_triton_collision_profile249)_ 1.21799541788118033e-03 -Electron-triton_collision_time_at_point_250______________________________ (t_plasma_electron_triton_collision_profile250)_ 1.21364218428859027e-03 -Electron-triton_collision_time_at_point_251______________________________ (t_plasma_electron_triton_collision_profile251)_ 1.20927867201238567e-03 -Electron-triton_collision_time_at_point_252______________________________ (t_plasma_electron_triton_collision_profile252)_ 1.20490498208488121e-03 -Electron-triton_collision_time_at_point_253______________________________ (t_plasma_electron_triton_collision_profile253)_ 1.20052121629080099e-03 -Electron-triton_collision_time_at_point_254______________________________ (t_plasma_electron_triton_collision_profile254)_ 1.19612747717311304e-03 -Electron-triton_collision_time_at_point_255______________________________ (t_plasma_electron_triton_collision_profile255)_ 1.19172386803891570e-03 -Electron-triton_collision_time_at_point_256______________________________ (t_plasma_electron_triton_collision_profile256)_ 1.18731049296540571e-03 -Electron-triton_collision_time_at_point_257______________________________ (t_plasma_electron_triton_collision_profile257)_ 1.18288745680590677e-03 -Electron-triton_collision_time_at_point_258______________________________ (t_plasma_electron_triton_collision_profile258)_ 1.17845486519598040e-03 -Electron-triton_collision_time_at_point_259______________________________ (t_plasma_electron_triton_collision_profile259)_ 1.17401282455960061e-03 -Electron-triton_collision_time_at_point_260______________________________ (t_plasma_electron_triton_collision_profile260)_ 1.16956144211540782e-03 -Electron-triton_collision_time_at_point_261______________________________ (t_plasma_electron_triton_collision_profile261)_ 1.16510082588303630e-03 -Electron-triton_collision_time_at_point_262______________________________ (t_plasma_electron_triton_collision_profile262)_ 1.16063108468952023e-03 -Electron-triton_collision_time_at_point_263______________________________ (t_plasma_electron_triton_collision_profile263)_ 1.15615232817577467e-03 -Electron-triton_collision_time_at_point_264______________________________ (t_plasma_electron_triton_collision_profile264)_ 1.15166466680315734e-03 -Electron-triton_collision_time_at_point_265______________________________ (t_plasma_electron_triton_collision_profile265)_ 1.14716821186011154e-03 -Electron-triton_collision_time_at_point_266______________________________ (t_plasma_electron_triton_collision_profile266)_ 1.14266307546889061e-03 -Electron-triton_collision_time_at_point_267______________________________ (t_plasma_electron_triton_collision_profile267)_ 1.13814937059236189e-03 -Electron-triton_collision_time_at_point_268______________________________ (t_plasma_electron_triton_collision_profile268)_ 1.13362721104090470e-03 -Electron-triton_collision_time_at_point_269______________________________ (t_plasma_electron_triton_collision_profile269)_ 1.12909671147938106e-03 -Electron-triton_collision_time_at_point_270______________________________ (t_plasma_electron_triton_collision_profile270)_ 1.12455798743421034e-03 -Electron-triton_collision_time_at_point_271______________________________ (t_plasma_electron_triton_collision_profile271)_ 1.12001115530051504e-03 -Electron-triton_collision_time_at_point_272______________________________ (t_plasma_electron_triton_collision_profile272)_ 1.11545633234937515e-03 -Electron-triton_collision_time_at_point_273______________________________ (t_plasma_electron_triton_collision_profile273)_ 1.11089363673515956e-03 -Electron-triton_collision_time_at_point_274______________________________ (t_plasma_electron_triton_collision_profile274)_ 1.10632318750296756e-03 -Electron-triton_collision_time_at_point_275______________________________ (t_plasma_electron_triton_collision_profile275)_ 1.10174510459614653e-03 -Electron-triton_collision_time_at_point_276______________________________ (t_plasma_electron_triton_collision_profile276)_ 1.09715950886392680e-03 -Electron-triton_collision_time_at_point_277______________________________ (t_plasma_electron_triton_collision_profile277)_ 1.09256652206914540e-03 -Electron-triton_collision_time_at_point_278______________________________ (t_plasma_electron_triton_collision_profile278)_ 1.08796626689607262e-03 -Electron-triton_collision_time_at_point_279______________________________ (t_plasma_electron_triton_collision_profile279)_ 1.08335886695834190e-03 -Electron-triton_collision_time_at_point_280______________________________ (t_plasma_electron_triton_collision_profile280)_ 1.07874444680699003e-03 -Electron-triton_collision_time_at_point_281______________________________ (t_plasma_electron_triton_collision_profile281)_ 1.07412313193859586e-03 -Electron-triton_collision_time_at_point_282______________________________ (t_plasma_electron_triton_collision_profile282)_ 1.06949504880353690e-03 -Electron-triton_collision_time_at_point_283______________________________ (t_plasma_electron_triton_collision_profile283)_ 1.06486032481435309e-03 -Electron-triton_collision_time_at_point_284______________________________ (t_plasma_electron_triton_collision_profile284)_ 1.06021908835422654e-03 -Electron-triton_collision_time_at_point_285______________________________ (t_plasma_electron_triton_collision_profile285)_ 1.05557146878557519e-03 -Electron-triton_collision_time_at_point_286______________________________ (t_plasma_electron_triton_collision_profile286)_ 1.05091759645876992e-03 -Electron-triton_collision_time_at_point_287______________________________ (t_plasma_electron_triton_collision_profile287)_ 1.04625760272096719e-03 -Electron-triton_collision_time_at_point_288______________________________ (t_plasma_electron_triton_collision_profile288)_ 1.04159161992506801e-03 -Electron-triton_collision_time_at_point_289______________________________ (t_plasma_electron_triton_collision_profile289)_ 1.03691978143880589e-03 -Electron-triton_collision_time_at_point_290______________________________ (t_plasma_electron_triton_collision_profile290)_ 1.03224222165395848e-03 -Electron-triton_collision_time_at_point_291______________________________ (t_plasma_electron_triton_collision_profile291)_ 1.02755907599569687e-03 -Electron-triton_collision_time_at_point_292______________________________ (t_plasma_electron_triton_collision_profile292)_ 1.02287048093206170e-03 -Electron-triton_collision_time_at_point_293______________________________ (t_plasma_electron_triton_collision_profile293)_ 1.01817657398358807e-03 -Electron-triton_collision_time_at_point_294______________________________ (t_plasma_electron_triton_collision_profile294)_ 1.01347749373306142e-03 -Electron-triton_collision_time_at_point_295______________________________ (t_plasma_electron_triton_collision_profile295)_ 1.00877337983542128e-03 -Electron-triton_collision_time_at_point_296______________________________ (t_plasma_electron_triton_collision_profile296)_ 1.00406437302781484e-03 -Electron-triton_collision_time_at_point_297______________________________ (t_plasma_electron_triton_collision_profile297)_ 9.99350615139795416e-04 -Electron-triton_collision_time_at_point_298______________________________ (t_plasma_electron_triton_collision_profile298)_ 9.94632249103680026e-04 -Electron-triton_collision_time_at_point_299______________________________ (t_plasma_electron_triton_collision_profile299)_ 9.89909418965063568e-04 -Electron-triton_collision_time_at_point_300______________________________ (t_plasma_electron_triton_collision_profile300)_ 9.85182269893492566e-04 -Electron-triton_collision_time_at_point_301______________________________ (t_plasma_electron_triton_collision_profile301)_ 9.80450948193308707e-04 -Electron-triton_collision_time_at_point_302______________________________ (t_plasma_electron_triton_collision_profile302)_ 9.75715601314656642e-04 -Electron-triton_collision_time_at_point_303______________________________ (t_plasma_electron_triton_collision_profile303)_ 9.70976377864669698e-04 -Electron-triton_collision_time_at_point_304______________________________ (t_plasma_electron_triton_collision_profile304)_ 9.66233427618832966e-04 -Electron-triton_collision_time_at_point_305______________________________ (t_plasma_electron_triton_collision_profile305)_ 9.61486901532527345e-04 -Electron-triton_collision_time_at_point_306______________________________ (t_plasma_electron_triton_collision_profile306)_ 9.56736951752763646e-04 -Electron-triton_collision_time_at_point_307______________________________ (t_plasma_electron_triton_collision_profile307)_ 9.51983731630104586e-04 -Electron-triton_collision_time_at_point_308______________________________ (t_plasma_electron_triton_collision_profile308)_ 9.47227395730787253e-04 -Electron-triton_collision_time_at_point_309______________________________ (t_plasma_electron_triton_collision_profile309)_ 9.42468099849049293e-04 -Electron-triton_collision_time_at_point_310______________________________ (t_plasma_electron_triton_collision_profile310)_ 9.37706001019658598e-04 -Electron-triton_collision_time_at_point_311______________________________ (t_plasma_electron_triton_collision_profile311)_ 9.32941257530659840e-04 -Electron-triton_collision_time_at_point_312______________________________ (t_plasma_electron_triton_collision_profile312)_ 9.28174028936336651e-04 -Electron-triton_collision_time_at_point_313______________________________ (t_plasma_electron_triton_collision_profile313)_ 9.23404476070405276e-04 -Electron-triton_collision_time_at_point_314______________________________ (t_plasma_electron_triton_collision_profile314)_ 9.18632761059432119e-04 -Electron-triton_collision_time_at_point_315______________________________ (t_plasma_electron_triton_collision_profile315)_ 9.13859047336495122e-04 -Electron-triton_collision_time_at_point_316______________________________ (t_plasma_electron_triton_collision_profile316)_ 9.09083499655088880e-04 -Electron-triton_collision_time_at_point_317______________________________ (t_plasma_electron_triton_collision_profile317)_ 9.04306284103278675e-04 -Electron-triton_collision_time_at_point_318______________________________ (t_plasma_electron_triton_collision_profile318)_ 8.99527568118118855e-04 -Electron-triton_collision_time_at_point_319______________________________ (t_plasma_electron_triton_collision_profile319)_ 8.94747520500335314e-04 -Electron-triton_collision_time_at_point_320______________________________ (t_plasma_electron_triton_collision_profile320)_ 8.89966311429281299e-04 -Electron-triton_collision_time_at_point_321______________________________ (t_plasma_electron_triton_collision_profile321)_ 8.85184112478182923e-04 -Electron-triton_collision_time_at_point_322______________________________ (t_plasma_electron_triton_collision_profile322)_ 8.80401096629668733e-04 -Electron-triton_collision_time_at_point_323______________________________ (t_plasma_electron_triton_collision_profile323)_ 8.75617438291608386e-04 -Electron-triton_collision_time_at_point_324______________________________ (t_plasma_electron_triton_collision_profile324)_ 8.70833313313253490e-04 -Electron-triton_collision_time_at_point_325______________________________ (t_plasma_electron_triton_collision_profile325)_ 8.66048899001707834e-04 -Electron-triton_collision_time_at_point_326______________________________ (t_plasma_electron_triton_collision_profile326)_ 8.61264374138719178e-04 -Electron-triton_collision_time_at_point_327______________________________ (t_plasma_electron_triton_collision_profile327)_ 8.56479918997822445e-04 -Electron-triton_collision_time_at_point_328______________________________ (t_plasma_electron_triton_collision_profile328)_ 8.51695715361824976e-04 -Electron-triton_collision_time_at_point_329______________________________ (t_plasma_electron_triton_collision_profile329)_ 8.46911946540663120e-04 -Electron-triton_collision_time_at_point_330______________________________ (t_plasma_electron_triton_collision_profile330)_ 8.42128797389633961e-04 -Electron-triton_collision_time_at_point_331______________________________ (t_plasma_electron_triton_collision_profile331)_ 8.37346454328013893e-04 -Electron-triton_collision_time_at_point_332______________________________ (t_plasma_electron_triton_collision_profile332)_ 8.32565105358082239e-04 -Electron-triton_collision_time_at_point_333______________________________ (t_plasma_electron_triton_collision_profile333)_ 8.27784940084559488e-04 -Electron-triton_collision_time_at_point_334______________________________ (t_plasma_electron_triton_collision_profile334)_ 8.23006149734477788e-04 -Electron-triton_collision_time_at_point_335______________________________ (t_plasma_electron_triton_collision_profile335)_ 8.18228927177496400e-04 -Electron-triton_collision_time_at_point_336______________________________ (t_plasma_electron_triton_collision_profile336)_ 8.13453466946679788e-04 -Electron-triton_collision_time_at_point_337______________________________ (t_plasma_electron_triton_collision_profile337)_ 8.08679965259756972e-04 -Electron-triton_collision_time_at_point_338______________________________ (t_plasma_electron_triton_collision_profile338)_ 8.03908620040872800e-04 -Electron-triton_collision_time_at_point_339______________________________ (t_plasma_electron_triton_collision_profile339)_ 7.99139630942854637e-04 -Electron-triton_collision_time_at_point_340______________________________ (t_plasma_electron_triton_collision_profile340)_ 7.94373199370018994e-04 -Electron-triton_collision_time_at_point_341______________________________ (t_plasma_electron_triton_collision_profile341)_ 7.89609528501523830e-04 -Electron-triton_collision_time_at_point_342______________________________ (t_plasma_electron_triton_collision_profile342)_ 7.84848823315300475e-04 -Electron-triton_collision_time_at_point_343______________________________ (t_plasma_electron_triton_collision_profile343)_ 7.80091290612583161e-04 -Electron-triton_collision_time_at_point_344______________________________ (t_plasma_electron_triton_collision_profile344)_ 7.75337139043057524e-04 -Electron-triton_collision_time_at_point_345______________________________ (t_plasma_electron_triton_collision_profile345)_ 7.70586579130652042e-04 -Electron-triton_collision_time_at_point_346______________________________ (t_plasma_electron_triton_collision_profile346)_ 7.65839823300008067e-04 -Electron-triton_collision_time_at_point_347______________________________ (t_plasma_electron_triton_collision_profile347)_ 7.61097085903636493e-04 -Electron-triton_collision_time_at_point_348______________________________ (t_plasma_electron_triton_collision_profile348)_ 7.56358583249808203e-04 -Electron-triton_collision_time_at_point_349______________________________ (t_plasma_electron_triton_collision_profile349)_ 7.51624533631195871e-04 -Electron-triton_collision_time_at_point_350______________________________ (t_plasma_electron_triton_collision_profile350)_ 7.46895157354306692e-04 -Electron-triton_collision_time_at_point_351______________________________ (t_plasma_electron_triton_collision_profile351)_ 7.42170676769728912e-04 -Electron-triton_collision_time_at_point_352______________________________ (t_plasma_electron_triton_collision_profile352)_ 7.37451316303240297e-04 -Electron-triton_collision_time_at_point_353______________________________ (t_plasma_electron_triton_collision_profile353)_ 7.32737302487797520e-04 -Electron-triton_collision_time_at_point_354______________________________ (t_plasma_electron_triton_collision_profile354)_ 7.28028863996467608e-04 -Electron-triton_collision_time_at_point_355______________________________ (t_plasma_electron_triton_collision_profile355)_ 7.23326231676316199e-04 -Electron-triton_collision_time_at_point_356______________________________ (t_plasma_electron_triton_collision_profile356)_ 7.18629638583318745e-04 -Electron-triton_collision_time_at_point_357______________________________ (t_plasma_electron_triton_collision_profile357)_ 7.13939320018319268e-04 -Electron-triton_collision_time_at_point_358______________________________ (t_plasma_electron_triton_collision_profile358)_ 7.09255513564106387e-04 -Electron-triton_collision_time_at_point_359______________________________ (t_plasma_electron_triton_collision_profile359)_ 7.04578459123628631e-04 -Electron-triton_collision_time_at_point_360______________________________ (t_plasma_electron_triton_collision_profile360)_ 6.99908398959435104e-04 -Electron-triton_collision_time_at_point_361______________________________ (t_plasma_electron_triton_collision_profile361)_ 6.95245577734360611e-04 -Electron-triton_collision_time_at_point_362______________________________ (t_plasma_electron_triton_collision_profile362)_ 6.90590242553551828e-04 -Electron-triton_collision_time_at_point_363______________________________ (t_plasma_electron_triton_collision_profile363)_ 6.85942643007863575e-04 -Electron-triton_collision_time_at_point_364______________________________ (t_plasma_electron_triton_collision_profile364)_ 6.81303031218715512e-04 -Electron-triton_collision_time_at_point_365______________________________ (t_plasma_electron_triton_collision_profile365)_ 6.76671661884461844e-04 -Electron-triton_collision_time_at_point_366______________________________ (t_plasma_electron_triton_collision_profile366)_ 6.72048792328362602e-04 -Electron-triton_collision_time_at_point_367______________________________ (t_plasma_electron_triton_collision_profile367)_ 6.67434682548219394e-04 -Electron-triton_collision_time_at_point_368______________________________ (t_plasma_electron_triton_collision_profile368)_ 6.62829595267772661e-04 -Electron-triton_collision_time_at_point_369______________________________ (t_plasma_electron_triton_collision_profile369)_ 6.58233795989936004e-04 -Electron-triton_collision_time_at_point_370______________________________ (t_plasma_electron_triton_collision_profile370)_ 6.53647553051970470e-04 -Electron-triton_collision_time_at_point_371______________________________ (t_plasma_electron_triton_collision_profile371)_ 6.49071137682688255e-04 -Electron-triton_collision_time_at_point_372______________________________ (t_plasma_electron_triton_collision_profile372)_ 6.44504824061799438e-04 -Electron-triton_collision_time_at_point_373______________________________ (t_plasma_electron_triton_collision_profile373)_ 6.39948889381501055e-04 -Electron-triton_collision_time_at_point_374______________________________ (t_plasma_electron_triton_collision_profile374)_ 6.35403613910443844e-04 -Electron-triton_collision_time_at_point_375______________________________ (t_plasma_electron_triton_collision_profile375)_ 6.30869281060178651e-04 -Electron-triton_collision_time_at_point_376______________________________ (t_plasma_electron_triton_collision_profile376)_ 6.26346177454238542e-04 -Electron-triton_collision_time_at_point_377______________________________ (t_plasma_electron_triton_collision_profile377)_ 6.21834592999981621e-04 -Electron-triton_collision_time_at_point_378______________________________ (t_plasma_electron_triton_collision_profile378)_ 6.17334820963354571e-04 -Electron-triton_collision_time_at_point_379______________________________ (t_plasma_electron_triton_collision_profile379)_ 6.12847158046731432e-04 -Electron-triton_collision_time_at_point_380______________________________ (t_plasma_electron_triton_collision_profile380)_ 6.08371904470004013e-04 -Electron-triton_collision_time_at_point_381______________________________ (t_plasma_electron_triton_collision_profile381)_ 6.03909364055101082e-04 -Electron-triton_collision_time_at_point_382______________________________ (t_plasma_electron_triton_collision_profile382)_ 5.99459844314132384e-04 -Electron-triton_collision_time_at_point_383______________________________ (t_plasma_electron_triton_collision_profile383)_ 5.95023656541367467e-04 -Electron-triton_collision_time_at_point_384______________________________ (t_plasma_electron_triton_collision_profile384)_ 5.90601115909263150e-04 -Electron-triton_collision_time_at_point_385______________________________ (t_plasma_electron_triton_collision_profile385)_ 5.86192541568788324e-04 -Electron-triton_collision_time_at_point_386______________________________ (t_plasma_electron_triton_collision_profile386)_ 5.81798256754282456e-04 -Electron-triton_collision_time_at_point_387______________________________ (t_plasma_electron_triton_collision_profile387)_ 5.77418588893135001e-04 -Electron-triton_collision_time_at_point_388______________________________ (t_plasma_electron_triton_collision_profile388)_ 5.73053869720560236e-04 -Electron-triton_collision_time_at_point_389______________________________ (t_plasma_electron_triton_collision_profile389)_ 5.68704435399790720e-04 -Electron-triton_collision_time_at_point_390______________________________ (t_plasma_electron_triton_collision_profile390)_ 5.64370626648006616e-04 -Electron-triton_collision_time_at_point_391______________________________ (t_plasma_electron_triton_collision_profile391)_ 5.60052788868373955e-04 -Electron-triton_collision_time_at_point_392______________________________ (t_plasma_electron_triton_collision_profile392)_ 5.55751272288557857e-04 -Electron-triton_collision_time_at_point_393______________________________ (t_plasma_electron_triton_collision_profile393)_ 5.51466432106132039e-04 -Electron-triton_collision_time_at_point_394______________________________ (t_plasma_electron_triton_collision_profile394)_ 5.47198628641321983e-04 -Electron-triton_collision_time_at_point_395______________________________ (t_plasma_electron_triton_collision_profile395)_ 5.42948227497554560e-04 -Electron-triton_collision_time_at_point_396______________________________ (t_plasma_electron_triton_collision_profile396)_ 5.38715599730329249e-04 -Electron-triton_collision_time_at_point_397______________________________ (t_plasma_electron_triton_collision_profile397)_ 5.34501122024955404e-04 -Electron-triton_collision_time_at_point_398______________________________ (t_plasma_electron_triton_collision_profile398)_ 5.30305176883754292e-04 -Electron-triton_collision_time_at_point_399______________________________ (t_plasma_electron_triton_collision_profile399)_ 5.26128152823365130e-04 -Electron-triton_collision_time_at_point_400______________________________ (t_plasma_electron_triton_collision_profile400)_ 5.21970444582839474e-04 -Electron-triton_collision_time_at_point_401______________________________ (t_plasma_electron_triton_collision_profile401)_ 5.17832453343284758e-04 -Electron-triton_collision_time_at_point_402______________________________ (t_plasma_electron_triton_collision_profile402)_ 5.13714586959850917e-04 -Electron-triton_collision_time_at_point_403______________________________ (t_plasma_electron_triton_collision_profile403)_ 5.09617260206947863e-04 -Electron-triton_collision_time_at_point_404______________________________ (t_plasma_electron_triton_collision_profile404)_ 5.05540895037637282e-04 -Electron-triton_collision_time_at_point_405______________________________ (t_plasma_electron_triton_collision_profile405)_ 5.01485920858229161e-04 -Electron-triton_collision_time_at_point_406______________________________ (t_plasma_electron_triton_collision_profile406)_ 4.97452774819207174e-04 -Electron-triton_collision_time_at_point_407______________________________ (t_plasma_electron_triton_collision_profile407)_ 4.93441902123695902e-04 -Electron-triton_collision_time_at_point_408______________________________ (t_plasma_electron_triton_collision_profile408)_ 4.89453756354794596e-04 -Electron-triton_collision_time_at_point_409______________________________ (t_plasma_electron_triton_collision_profile409)_ 4.85488799823231691e-04 -Electron-triton_collision_time_at_point_410______________________________ (t_plasma_electron_triton_collision_profile410)_ 4.81547503936904876e-04 -Electron-triton_collision_time_at_point_411______________________________ (t_plasma_electron_triton_collision_profile411)_ 4.77630349594040991e-04 -Electron-triton_collision_time_at_point_412______________________________ (t_plasma_electron_triton_collision_profile412)_ 4.73737827601851261e-04 -Electron-triton_collision_time_at_point_413______________________________ (t_plasma_electron_triton_collision_profile413)_ 4.69870439122760017e-04 -Electron-triton_collision_time_at_point_414______________________________ (t_plasma_electron_triton_collision_profile414)_ 4.66028696150461662e-04 -Electron-triton_collision_time_at_point_415______________________________ (t_plasma_electron_triton_collision_profile415)_ 4.62213122018307406e-04 -Electron-triton_collision_time_at_point_416______________________________ (t_plasma_electron_triton_collision_profile416)_ 4.58424251942752604e-04 -Electron-triton_collision_time_at_point_417______________________________ (t_plasma_electron_triton_collision_profile417)_ 4.54662633604895050e-04 -Electron-triton_collision_time_at_point_418______________________________ (t_plasma_electron_triton_collision_profile418)_ 4.50928827773429462e-04 -Electron-triton_collision_time_at_point_419______________________________ (t_plasma_electron_triton_collision_profile419)_ 4.47223408972715025e-04 -Electron-triton_collision_time_at_point_420______________________________ (t_plasma_electron_triton_collision_profile420)_ 4.43546966200031236e-04 -Electron-triton_collision_time_at_point_421______________________________ (t_plasma_electron_triton_collision_profile421)_ 4.39900103696562635e-04 -Electron-triton_collision_time_at_point_422______________________________ (t_plasma_electron_triton_collision_profile422)_ 4.36283441777147725e-04 -Electron-triton_collision_time_at_point_423______________________________ (t_plasma_electron_triton_collision_profile423)_ 4.32697617724408308e-04 -Electron-triton_collision_time_at_point_424______________________________ (t_plasma_electron_triton_collision_profile424)_ 4.29143286753527167e-04 -Electron-triton_collision_time_at_point_425______________________________ (t_plasma_electron_triton_collision_profile425)_ 4.25621123054691053e-04 -Electron-triton_collision_time_at_point_426______________________________ (t_plasma_electron_triton_collision_profile426)_ 4.22131820921058901e-04 -Electron-triton_collision_time_at_point_427______________________________ (t_plasma_electron_triton_collision_profile427)_ 4.18676095971097864e-04 -Electron-triton_collision_time_at_point_428______________________________ (t_plasma_electron_triton_collision_profile428)_ 4.15254686475251527e-04 -Electron-triton_collision_time_at_point_429______________________________ (t_plasma_electron_triton_collision_profile429)_ 4.11868354798191011e-04 -Electron-triton_collision_time_at_point_430______________________________ (t_plasma_electron_triton_collision_profile430)_ 4.08517888969402220e-04 -Electron-triton_collision_time_at_point_431______________________________ (t_plasma_electron_triton_collision_profile431)_ 4.05204104396595852e-04 -Electron-triton_collision_time_at_point_432______________________________ (t_plasma_electron_triton_collision_profile432)_ 4.01927845738446834e-04 -Electron-triton_collision_time_at_point_433______________________________ (t_plasma_electron_triton_collision_profile433)_ 3.98689988955534466e-04 -Electron-triton_collision_time_at_point_434______________________________ (t_plasma_electron_triton_collision_profile434)_ 3.95491443561138759e-04 -Electron-triton_collision_time_at_point_435______________________________ (t_plasma_electron_triton_collision_profile435)_ 3.92333155096794646e-04 -Electron-triton_collision_time_at_point_436______________________________ (t_plasma_electron_triton_collision_profile436)_ 3.89216107861410730e-04 -Electron-triton_collision_time_at_point_437______________________________ (t_plasma_electron_triton_collision_profile437)_ 3.86141327927327601e-04 -Electron-triton_collision_time_at_point_438______________________________ (t_plasma_electron_triton_collision_profile438)_ 3.83109886482220659e-04 -Electron-triton_collision_time_at_point_439______________________________ (t_plasma_electron_triton_collision_profile439)_ 3.80122903542336372e-04 -Electron-triton_collision_time_at_point_440______________________________ (t_plasma_electron_triton_collision_profile440)_ 3.77181552090548387e-04 -Electron-triton_collision_time_at_point_441______________________________ (t_plasma_electron_triton_collision_profile441)_ 3.74287062702393085e-04 -Electron-triton_collision_time_at_point_442______________________________ (t_plasma_electron_triton_collision_profile442)_ 3.71440728735093545e-04 -Electron-triton_collision_time_at_point_443______________________________ (t_plasma_electron_triton_collision_profile443)_ 3.68643912169146410e-04 -Electron-triton_collision_time_at_point_444______________________________ (t_plasma_electron_triton_collision_profile444)_ 3.65898050210079881e-04 -Electron-triton_collision_time_at_point_445______________________________ (t_plasma_electron_triton_collision_profile445)_ 3.63204662780491623e-04 -Electron-triton_collision_time_at_point_446______________________________ (t_plasma_electron_triton_collision_profile446)_ 3.60565361060802595e-04 -Electron-triton_collision_time_at_point_447______________________________ (t_plasma_electron_triton_collision_profile447)_ 3.57981857273035708e-04 -Electron-triton_collision_time_at_point_448______________________________ (t_plasma_electron_triton_collision_profile448)_ 3.55455975947933001e-04 -Electron-triton_collision_time_at_point_449______________________________ (t_plasma_electron_triton_collision_profile449)_ 3.52989666975117664e-04 -Electron-triton_collision_time_at_point_450______________________________ (t_plasma_electron_triton_collision_profile450)_ 3.50585020813720585e-04 -Electron-triton_collision_time_at_point_451______________________________ (t_plasma_electron_triton_collision_profile451)_ 3.48244286343574226e-04 -Electron-triton_collision_time_at_point_452______________________________ (t_plasma_electron_triton_collision_profile452)_ 3.45969891974658530e-04 -Electron-triton_collision_time_at_point_453______________________________ (t_plasma_electron_triton_collision_profile453)_ 3.43764470819322532e-04 -Electron-triton_collision_time_at_point_454______________________________ (t_plasma_electron_triton_collision_profile454)_ 3.41630890989501194e-04 -Electron-triton_collision_time_at_point_455______________________________ (t_plasma_electron_triton_collision_profile455)_ 3.39572292442725534e-04 -Electron-triton_collision_time_at_point_456______________________________ (t_plasma_electron_triton_collision_profile456)_ 3.37592132317698196e-04 -Electron-triton_collision_time_at_point_457______________________________ (t_plasma_electron_triton_collision_profile457)_ 3.35694241455313034e-04 -Electron-triton_collision_time_at_point_458______________________________ (t_plasma_electron_triton_collision_profile458)_ 3.33882895930634450e-04 -Electron-triton_collision_time_at_point_459______________________________ (t_plasma_electron_triton_collision_profile459)_ 3.32162909157994815e-04 -Electron-triton_collision_time_at_point_460______________________________ (t_plasma_electron_triton_collision_profile460)_ 3.30539752886049919e-04 -Electron-triton_collision_time_at_point_461______________________________ (t_plasma_electron_triton_collision_profile461)_ 3.29019719930802258e-04 -Electron-triton_collision_time_at_point_462______________________________ (t_plasma_electron_triton_collision_profile462)_ 3.27610149273247669e-04 -Electron-triton_collision_time_at_point_463______________________________ (t_plasma_electron_triton_collision_profile463)_ 3.26319748201441603e-04 -Electron-triton_collision_time_at_point_464______________________________ (t_plasma_electron_triton_collision_profile464)_ 3.25159073195765091e-04 -Electron-triton_collision_time_at_point_465______________________________ (t_plasma_electron_triton_collision_profile465)_ 3.24141287405490370e-04 -Electron-triton_collision_time_at_point_466______________________________ (t_plasma_electron_triton_collision_profile466)_ 3.23283441592278696e-04 -Electron-triton_collision_time_at_point_467______________________________ (t_plasma_electron_triton_collision_profile467)_ 3.22608865209769280e-04 -Electron-triton_collision_time_at_point_468______________________________ (t_plasma_electron_triton_collision_profile468)_ 3.22152346312174387e-04 -Electron-triton_collision_time_at_point_469______________________________ (t_plasma_electron_triton_collision_profile469)_ 3.21974685611214494e-04 -Electron-triton_collision_time_at_point_470______________________________ (t_plasma_electron_triton_collision_profile470)_ 3.22251698783570519e-04 -Electron-triton_collision_time_at_point_471______________________________ (t_plasma_electron_triton_collision_profile471)_ 3.11304160096056786e-04 -Electron-triton_collision_time_at_point_472______________________________ (t_plasma_electron_triton_collision_profile472)_ 3.00289620095472716e-04 -Electron-triton_collision_time_at_point_473______________________________ (t_plasma_electron_triton_collision_profile473)_ 2.89209618561692714e-04 -Electron-triton_collision_time_at_point_474______________________________ (t_plasma_electron_triton_collision_profile474)_ 2.78066031775765386e-04 -Electron-triton_collision_time_at_point_475______________________________ (t_plasma_electron_triton_collision_profile475)_ 2.66861121182123599e-04 -Electron-triton_collision_time_at_point_476______________________________ (t_plasma_electron_triton_collision_profile476)_ 2.55597589768165876e-04 -Electron-triton_collision_time_at_point_477______________________________ (t_plasma_electron_triton_collision_profile477)_ 2.44278647609537456e-04 -Electron-triton_collision_time_at_point_478______________________________ (t_plasma_electron_triton_collision_profile478)_ 2.32908088357794131e-04 -Electron-triton_collision_time_at_point_479______________________________ (t_plasma_electron_triton_collision_profile479)_ 2.21490378865747255e-04 -Electron-triton_collision_time_at_point_480______________________________ (t_plasma_electron_triton_collision_profile480)_ 2.10030764684591926e-04 -Electron-triton_collision_time_at_point_481______________________________ (t_plasma_electron_triton_collision_profile481)_ 1.98535394867721375e-04 -Electron-triton_collision_time_at_point_482______________________________ (t_plasma_electron_triton_collision_profile482)_ 1.87011470438206079e-04 -Electron-triton_collision_time_at_point_483______________________________ (t_plasma_electron_triton_collision_profile483)_ 1.75467422105627069e-04 -Electron-triton_collision_time_at_point_484______________________________ (t_plasma_electron_triton_collision_profile484)_ 1.63913124478473306e-04 -Electron-triton_collision_time_at_point_485______________________________ (t_plasma_electron_triton_collision_profile485)_ 1.52360156297799340e-04 -Electron-triton_collision_time_at_point_486______________________________ (t_plasma_electron_triton_collision_profile486)_ 1.40822119402184159e-04 -Electron-triton_collision_time_at_point_487______________________________ (t_plasma_electron_triton_collision_profile487)_ 1.29315033670725812e-04 -Electron-triton_collision_time_at_point_488______________________________ (t_plasma_electron_triton_collision_profile488)_ 1.17857831799179075e-04 -Electron-triton_collision_time_at_point_489______________________________ (t_plasma_electron_triton_collision_profile489)_ 1.06472987636683827e-04 -Electron-triton_collision_time_at_point_490______________________________ (t_plasma_electron_triton_collision_profile490)_ 9.51873269921337369e-05 -Electron-triton_collision_time_at_point_491______________________________ (t_plasma_electron_triton_collision_profile491)_ 8.40330939608696024e-05 -Electron-triton_collision_time_at_point_492______________________________ (t_plasma_electron_triton_collision_profile492)_ 7.30493857465490404e-05 -Electron-triton_collision_time_at_point_493______________________________ (t_plasma_electron_triton_collision_profile493)_ 6.22841381181144952e-05 -Electron-triton_collision_time_at_point_494______________________________ (t_plasma_electron_triton_collision_profile494)_ 5.17969703676186588e-05 -Electron-triton_collision_time_at_point_495______________________________ (t_plasma_electron_triton_collision_profile495)_ 4.16634474048514319e-05 -Electron-triton_collision_time_at_point_496______________________________ (t_plasma_electron_triton_collision_profile496)_ 3.19818495414898402e-05 -Electron-triton_collision_time_at_point_497______________________________ (t_plasma_electron_triton_collision_profile497)_ 2.28848211725379404e-05 -Electron-triton_collision_time_at_point_498______________________________ (t_plasma_electron_triton_collision_profile498)_ 1.45618816241934917e-05 -Electron-triton_collision_time_at_point_499______________________________ (t_plasma_electron_triton_collision_profile499)_ 7.31180625261544339e-06 -Electron-triton_collision_time_at_point_500______________________________ (t_plasma_electron_triton_collision_profile500)_ 1.71876133172843349e-06 -Volume_averaged_electron-alpha_thermal_collision_time_(τₑαₜₕ)_(s)________ (t_plasma_electron_alpha_thermal_collision_vol_avg)_ 1.08464474408016300e-03 OP -Electron-alpha_thermal_collision_time_at_point_0_________________________ (t_plasma_electron_alpha_thermal_collision_profile0)_ 2.36543429864584636e-03 -Electron-alpha_thermal_collision_time_at_point_1_________________________ (t_plasma_electron_alpha_thermal_collision_profile1)_ 2.36542083577294523e-03 -Electron-alpha_thermal_collision_time_at_point_2_________________________ (t_plasma_electron_alpha_thermal_collision_profile2)_ 2.36538044733042600e-03 -Electron-alpha_thermal_collision_time_at_point_3_________________________ (t_plasma_electron_alpha_thermal_collision_profile3)_ 2.36531313384682985e-03 -Electron-alpha_thermal_collision_time_at_point_4_________________________ (t_plasma_electron_alpha_thermal_collision_profile4)_ 2.36521889620308970e-03 -Electron-alpha_thermal_collision_time_at_point_5_________________________ (t_plasma_electron_alpha_thermal_collision_profile5)_ 2.36509773563255187e-03 -Electron-alpha_thermal_collision_time_at_point_6_________________________ (t_plasma_electron_alpha_thermal_collision_profile6)_ 2.36494965372102423e-03 -Electron-alpha_thermal_collision_time_at_point_7_________________________ (t_plasma_electron_alpha_thermal_collision_profile7)_ 2.36477465240683693e-03 -Electron-alpha_thermal_collision_time_at_point_8_________________________ (t_plasma_electron_alpha_thermal_collision_profile8)_ 2.36457273398090568e-03 -Electron-alpha_thermal_collision_time_at_point_9_________________________ (t_plasma_electron_alpha_thermal_collision_profile9)_ 2.36434390108682243e-03 -Electron-alpha_thermal_collision_time_at_point_10________________________ (t_plasma_electron_alpha_thermal_collision_profile10)_ 2.36408815672094772e-03 -Electron-alpha_thermal_collision_time_at_point_11________________________ (t_plasma_electron_alpha_thermal_collision_profile11)_ 2.36380550423251953e-03 -Electron-alpha_thermal_collision_time_at_point_12________________________ (t_plasma_electron_alpha_thermal_collision_profile12)_ 2.36349594732377646e-03 -Electron-alpha_thermal_collision_time_at_point_13________________________ (t_plasma_electron_alpha_thermal_collision_profile13)_ 2.36315949005009088e-03 -Electron-alpha_thermal_collision_time_at_point_14________________________ (t_plasma_electron_alpha_thermal_collision_profile14)_ 2.36279613682011634e-03 -Electron-alpha_thermal_collision_time_at_point_15________________________ (t_plasma_electron_alpha_thermal_collision_profile15)_ 2.36240589239595329e-03 -Electron-alpha_thermal_collision_time_at_point_16________________________ (t_plasma_electron_alpha_thermal_collision_profile16)_ 2.36198876189331122e-03 -Electron-alpha_thermal_collision_time_at_point_17________________________ (t_plasma_electron_alpha_thermal_collision_profile17)_ 2.36154475078170778e-03 -Electron-alpha_thermal_collision_time_at_point_18________________________ (t_plasma_electron_alpha_thermal_collision_profile18)_ 2.36107386488465520e-03 -Electron-alpha_thermal_collision_time_at_point_19________________________ (t_plasma_electron_alpha_thermal_collision_profile19)_ 2.36057611037988630e-03 -Electron-alpha_thermal_collision_time_at_point_20________________________ (t_plasma_electron_alpha_thermal_collision_profile20)_ 2.36005149379956564e-03 -Electron-alpha_thermal_collision_time_at_point_21________________________ (t_plasma_electron_alpha_thermal_collision_profile21)_ 2.35950002203053630e-03 -Electron-alpha_thermal_collision_time_at_point_22________________________ (t_plasma_electron_alpha_thermal_collision_profile22)_ 2.35892170231456798e-03 -Electron-alpha_thermal_collision_time_at_point_23________________________ (t_plasma_electron_alpha_thermal_collision_profile23)_ 2.35831654224862020e-03 -Electron-alpha_thermal_collision_time_at_point_24________________________ (t_plasma_electron_alpha_thermal_collision_profile24)_ 2.35768454978512116e-03 -Electron-alpha_thermal_collision_time_at_point_25________________________ (t_plasma_electron_alpha_thermal_collision_profile25)_ 2.35702573323225747e-03 -Electron-alpha_thermal_collision_time_at_point_26________________________ (t_plasma_electron_alpha_thermal_collision_profile26)_ 2.35634010125427250e-03 -Electron-alpha_thermal_collision_time_at_point_27________________________ (t_plasma_electron_alpha_thermal_collision_profile27)_ 2.35562766287179294e-03 -Electron-alpha_thermal_collision_time_at_point_28________________________ (t_plasma_electron_alpha_thermal_collision_profile28)_ 2.35488842746214627e-03 -Electron-alpha_thermal_collision_time_at_point_29________________________ (t_plasma_electron_alpha_thermal_collision_profile29)_ 2.35412240475971332e-03 -Electron-alpha_thermal_collision_time_at_point_30________________________ (t_plasma_electron_alpha_thermal_collision_profile30)_ 2.35332960485627263e-03 -Electron-alpha_thermal_collision_time_at_point_31________________________ (t_plasma_electron_alpha_thermal_collision_profile31)_ 2.35251003820138383e-03 -Electron-alpha_thermal_collision_time_at_point_32________________________ (t_plasma_electron_alpha_thermal_collision_profile32)_ 2.35166371560275363e-03 -Electron-alpha_thermal_collision_time_at_point_33________________________ (t_plasma_electron_alpha_thermal_collision_profile33)_ 2.35079064822664614e-03 -Electron-alpha_thermal_collision_time_at_point_34________________________ (t_plasma_electron_alpha_thermal_collision_profile34)_ 2.34989084759827747e-03 -Electron-alpha_thermal_collision_time_at_point_35________________________ (t_plasma_electron_alpha_thermal_collision_profile35)_ 2.34896432560225245e-03 -Electron-alpha_thermal_collision_time_at_point_36________________________ (t_plasma_electron_alpha_thermal_collision_profile36)_ 2.34801109448298535e-03 -Electron-alpha_thermal_collision_time_at_point_37________________________ (t_plasma_electron_alpha_thermal_collision_profile37)_ 2.34703116684515821e-03 -Electron-alpha_thermal_collision_time_at_point_38________________________ (t_plasma_electron_alpha_thermal_collision_profile38)_ 2.34602455565417756e-03 -Electron-alpha_thermal_collision_time_at_point_39________________________ (t_plasma_electron_alpha_thermal_collision_profile39)_ 2.34499127423665578e-03 -Electron-alpha_thermal_collision_time_at_point_40________________________ (t_plasma_electron_alpha_thermal_collision_profile40)_ 2.34393133628089468e-03 -Electron-alpha_thermal_collision_time_at_point_41________________________ (t_plasma_electron_alpha_thermal_collision_profile41)_ 2.34284475583738721e-03 -Electron-alpha_thermal_collision_time_at_point_42________________________ (t_plasma_electron_alpha_thermal_collision_profile42)_ 2.34173154731934187e-03 -Electron-alpha_thermal_collision_time_at_point_43________________________ (t_plasma_electron_alpha_thermal_collision_profile43)_ 2.34059172550320172e-03 -Electron-alpha_thermal_collision_time_at_point_44________________________ (t_plasma_electron_alpha_thermal_collision_profile44)_ 2.33942530552919527e-03 -Electron-alpha_thermal_collision_time_at_point_45________________________ (t_plasma_electron_alpha_thermal_collision_profile45)_ 2.33823230290189192e-03 -Electron-alpha_thermal_collision_time_at_point_46________________________ (t_plasma_electron_alpha_thermal_collision_profile46)_ 2.33701273349077058e-03 -Electron-alpha_thermal_collision_time_at_point_47________________________ (t_plasma_electron_alpha_thermal_collision_profile47)_ 2.33576661353080556e-03 -Electron-alpha_thermal_collision_time_at_point_48________________________ (t_plasma_electron_alpha_thermal_collision_profile48)_ 2.33449395962306763e-03 -Electron-alpha_thermal_collision_time_at_point_49________________________ (t_plasma_electron_alpha_thermal_collision_profile49)_ 2.33319478873533163e-03 -Electron-alpha_thermal_collision_time_at_point_50________________________ (t_plasma_electron_alpha_thermal_collision_profile50)_ 2.33186911820270487e-03 -Electron-alpha_thermal_collision_time_at_point_51________________________ (t_plasma_electron_alpha_thermal_collision_profile51)_ 2.33051696572827201e-03 -Electron-alpha_thermal_collision_time_at_point_52________________________ (t_plasma_electron_alpha_thermal_collision_profile52)_ 2.32913834938373995e-03 -Electron-alpha_thermal_collision_time_at_point_53________________________ (t_plasma_electron_alpha_thermal_collision_profile53)_ 2.32773328761011348e-03 -Electron-alpha_thermal_collision_time_at_point_54________________________ (t_plasma_electron_alpha_thermal_collision_profile54)_ 2.32630179921837661e-03 -Electron-alpha_thermal_collision_time_at_point_55________________________ (t_plasma_electron_alpha_thermal_collision_profile55)_ 2.32484390339018692e-03 -Electron-alpha_thermal_collision_time_at_point_56________________________ (t_plasma_electron_alpha_thermal_collision_profile56)_ 2.32335961967858893e-03 -Electron-alpha_thermal_collision_time_at_point_57________________________ (t_plasma_electron_alpha_thermal_collision_profile57)_ 2.32184896800873746e-03 -Electron-alpha_thermal_collision_time_at_point_58________________________ (t_plasma_electron_alpha_thermal_collision_profile58)_ 2.32031196867863972e-03 -Electron-alpha_thermal_collision_time_at_point_59________________________ (t_plasma_electron_alpha_thermal_collision_profile59)_ 2.31874864235990553e-03 -Electron-alpha_thermal_collision_time_at_point_60________________________ (t_plasma_electron_alpha_thermal_collision_profile60)_ 2.31715901009851974e-03 -Electron-alpha_thermal_collision_time_at_point_61________________________ (t_plasma_electron_alpha_thermal_collision_profile61)_ 2.31554309331562626e-03 -Electron-alpha_thermal_collision_time_at_point_62________________________ (t_plasma_electron_alpha_thermal_collision_profile62)_ 2.31390091380831789e-03 -Electron-alpha_thermal_collision_time_at_point_63________________________ (t_plasma_electron_alpha_thermal_collision_profile63)_ 2.31223249375045762e-03 -Electron-alpha_thermal_collision_time_at_point_64________________________ (t_plasma_electron_alpha_thermal_collision_profile64)_ 2.31053785569350313e-03 -Electron-alpha_thermal_collision_time_at_point_65________________________ (t_plasma_electron_alpha_thermal_collision_profile65)_ 2.30881702256734590e-03 -Electron-alpha_thermal_collision_time_at_point_66________________________ (t_plasma_electron_alpha_thermal_collision_profile66)_ 2.30707001768116820e-03 -Electron-alpha_thermal_collision_time_at_point_67________________________ (t_plasma_electron_alpha_thermal_collision_profile67)_ 2.30529686472432131e-03 -Electron-alpha_thermal_collision_time_at_point_68________________________ (t_plasma_electron_alpha_thermal_collision_profile68)_ 2.30349758776720280e-03 -Electron-alpha_thermal_collision_time_at_point_69________________________ (t_plasma_electron_alpha_thermal_collision_profile69)_ 2.30167221126216645e-03 -Electron-alpha_thermal_collision_time_at_point_70________________________ (t_plasma_electron_alpha_thermal_collision_profile70)_ 2.29982076004443207e-03 -Electron-alpha_thermal_collision_time_at_point_71________________________ (t_plasma_electron_alpha_thermal_collision_profile71)_ 2.29794325933302618e-03 -Electron-alpha_thermal_collision_time_at_point_72________________________ (t_plasma_electron_alpha_thermal_collision_profile72)_ 2.29603973473172006e-03 -Electron-alpha_thermal_collision_time_at_point_73________________________ (t_plasma_electron_alpha_thermal_collision_profile73)_ 2.29411021223000031e-03 -Electron-alpha_thermal_collision_time_at_point_74________________________ (t_plasma_electron_alpha_thermal_collision_profile74)_ 2.29215471820404292e-03 -Electron-alpha_thermal_collision_time_at_point_75________________________ (t_plasma_electron_alpha_thermal_collision_profile75)_ 2.29017327941770810e-03 -Electron-alpha_thermal_collision_time_at_point_76________________________ (t_plasma_electron_alpha_thermal_collision_profile76)_ 2.28816592302355298e-03 -Electron-alpha_thermal_collision_time_at_point_77________________________ (t_plasma_electron_alpha_thermal_collision_profile77)_ 2.28613267656384896e-03 -Electron-alpha_thermal_collision_time_at_point_78________________________ (t_plasma_electron_alpha_thermal_collision_profile78)_ 2.28407356797163215e-03 -Electron-alpha_thermal_collision_time_at_point_79________________________ (t_plasma_electron_alpha_thermal_collision_profile79)_ 2.28198862557175367e-03 -Electron-alpha_thermal_collision_time_at_point_80________________________ (t_plasma_electron_alpha_thermal_collision_profile80)_ 2.27987787808195657e-03 -Electron-alpha_thermal_collision_time_at_point_81________________________ (t_plasma_electron_alpha_thermal_collision_profile81)_ 2.27774135461395822e-03 -Electron-alpha_thermal_collision_time_at_point_82________________________ (t_plasma_electron_alpha_thermal_collision_profile82)_ 2.27557908467456490e-03 -Electron-alpha_thermal_collision_time_at_point_83________________________ (t_plasma_electron_alpha_thermal_collision_profile83)_ 2.27339109816678724e-03 -Electron-alpha_thermal_collision_time_at_point_84________________________ (t_plasma_electron_alpha_thermal_collision_profile84)_ 2.27117742539097514e-03 -Electron-alpha_thermal_collision_time_at_point_85________________________ (t_plasma_electron_alpha_thermal_collision_profile85)_ 2.26893809704598048e-03 -Electron-alpha_thermal_collision_time_at_point_86________________________ (t_plasma_electron_alpha_thermal_collision_profile86)_ 2.26667314423031722e-03 -Electron-alpha_thermal_collision_time_at_point_87________________________ (t_plasma_electron_alpha_thermal_collision_profile87)_ 2.26438259844335531e-03 -Electron-alpha_thermal_collision_time_at_point_88________________________ (t_plasma_electron_alpha_thermal_collision_profile88)_ 2.26206649158652417e-03 -Electron-alpha_thermal_collision_time_at_point_89________________________ (t_plasma_electron_alpha_thermal_collision_profile89)_ 2.25972485596453217e-03 -Electron-alpha_thermal_collision_time_at_point_90________________________ (t_plasma_electron_alpha_thermal_collision_profile90)_ 2.25735772428660268e-03 -Electron-alpha_thermal_collision_time_at_point_91________________________ (t_plasma_electron_alpha_thermal_collision_profile91)_ 2.25496512966772865e-03 -Electron-alpha_thermal_collision_time_at_point_92________________________ (t_plasma_electron_alpha_thermal_collision_profile92)_ 2.25254710562994721e-03 -Electron-alpha_thermal_collision_time_at_point_93________________________ (t_plasma_electron_alpha_thermal_collision_profile93)_ 2.25010368610362556e-03 -Electron-alpha_thermal_collision_time_at_point_94________________________ (t_plasma_electron_alpha_thermal_collision_profile94)_ 2.24763490542877198e-03 -Electron-alpha_thermal_collision_time_at_point_95________________________ (t_plasma_electron_alpha_thermal_collision_profile95)_ 2.24514079835635072e-03 -Electron-alpha_thermal_collision_time_at_point_96________________________ (t_plasma_electron_alpha_thermal_collision_profile96)_ 2.24262140004963121e-03 -Electron-alpha_thermal_collision_time_at_point_97________________________ (t_plasma_electron_alpha_thermal_collision_profile97)_ 2.24007674608554287e-03 -Electron-alpha_thermal_collision_time_at_point_98________________________ (t_plasma_electron_alpha_thermal_collision_profile98)_ 2.23750687245605467e-03 -Electron-alpha_thermal_collision_time_at_point_99________________________ (t_plasma_electron_alpha_thermal_collision_profile99)_ 2.23491181556956546e-03 -Electron-alpha_thermal_collision_time_at_point_100_______________________ (t_plasma_electron_alpha_thermal_collision_profile100)_ 2.23229161225232172e-03 -Electron-alpha_thermal_collision_time_at_point_101_______________________ (t_plasma_electron_alpha_thermal_collision_profile101)_ 2.22964629974984133e-03 -Electron-alpha_thermal_collision_time_at_point_102_______________________ (t_plasma_electron_alpha_thermal_collision_profile102)_ 2.22697591572837156e-03 -Electron-alpha_thermal_collision_time_at_point_103_______________________ (t_plasma_electron_alpha_thermal_collision_profile103)_ 2.22428049827634675e-03 -Electron-alpha_thermal_collision_time_at_point_104_______________________ (t_plasma_electron_alpha_thermal_collision_profile104)_ 2.22156008590588183e-03 -Electron-alpha_thermal_collision_time_at_point_105_______________________ (t_plasma_electron_alpha_thermal_collision_profile105)_ 2.21881471755427245e-03 -Electron-alpha_thermal_collision_time_at_point_106_______________________ (t_plasma_electron_alpha_thermal_collision_profile106)_ 2.21604443258551810e-03 -Electron-alpha_thermal_collision_time_at_point_107_______________________ (t_plasma_electron_alpha_thermal_collision_profile107)_ 2.21324927079186856e-03 -Electron-alpha_thermal_collision_time_at_point_108_______________________ (t_plasma_electron_alpha_thermal_collision_profile108)_ 2.21042927239537782e-03 -Electron-alpha_thermal_collision_time_at_point_109_______________________ (t_plasma_electron_alpha_thermal_collision_profile109)_ 2.20758447804949133e-03 -Electron-alpha_thermal_collision_time_at_point_110_______________________ (t_plasma_electron_alpha_thermal_collision_profile110)_ 2.20471492884064023e-03 -Electron-alpha_thermal_collision_time_at_point_111_______________________ (t_plasma_electron_alpha_thermal_collision_profile111)_ 2.20182066628986503e-03 -Electron-alpha_thermal_collision_time_at_point_112_______________________ (t_plasma_electron_alpha_thermal_collision_profile112)_ 2.19890173235444972e-03 -Electron-alpha_thermal_collision_time_at_point_113_______________________ (t_plasma_electron_alpha_thermal_collision_profile113)_ 2.19595816942958280e-03 -Electron-alpha_thermal_collision_time_at_point_114_______________________ (t_plasma_electron_alpha_thermal_collision_profile114)_ 2.19299002035003125e-03 -Electron-alpha_thermal_collision_time_at_point_115_______________________ (t_plasma_electron_alpha_thermal_collision_profile115)_ 2.18999732839184795e-03 -Electron-alpha_thermal_collision_time_at_point_116_______________________ (t_plasma_electron_alpha_thermal_collision_profile116)_ 2.18698013727407822e-03 -Electron-alpha_thermal_collision_time_at_point_117_______________________ (t_plasma_electron_alpha_thermal_collision_profile117)_ 2.18393849116050795e-03 -Electron-alpha_thermal_collision_time_at_point_118_______________________ (t_plasma_electron_alpha_thermal_collision_profile118)_ 2.18087243466141400e-03 -Electron-alpha_thermal_collision_time_at_point_119_______________________ (t_plasma_electron_alpha_thermal_collision_profile119)_ 2.17778201283535047e-03 -Electron-alpha_thermal_collision_time_at_point_120_______________________ (t_plasma_electron_alpha_thermal_collision_profile120)_ 2.17466727119094982e-03 -Electron-alpha_thermal_collision_time_at_point_121_______________________ (t_plasma_electron_alpha_thermal_collision_profile121)_ 2.17152825568873737e-03 -Electron-alpha_thermal_collision_time_at_point_122_______________________ (t_plasma_electron_alpha_thermal_collision_profile122)_ 2.16836501274297704e-03 -Electron-alpha_thermal_collision_time_at_point_123_______________________ (t_plasma_electron_alpha_thermal_collision_profile123)_ 2.16517758922353662e-03 -Electron-alpha_thermal_collision_time_at_point_124_______________________ (t_plasma_electron_alpha_thermal_collision_profile124)_ 2.16196603245777256e-03 -Electron-alpha_thermal_collision_time_at_point_125_______________________ (t_plasma_electron_alpha_thermal_collision_profile125)_ 2.15873039023243250e-03 -Electron-alpha_thermal_collision_time_at_point_126_______________________ (t_plasma_electron_alpha_thermal_collision_profile126)_ 2.15547071079558910e-03 -Electron-alpha_thermal_collision_time_at_point_127_______________________ (t_plasma_electron_alpha_thermal_collision_profile127)_ 2.15218704285858676e-03 -Electron-alpha_thermal_collision_time_at_point_128_______________________ (t_plasma_electron_alpha_thermal_collision_profile128)_ 2.14887943559801276e-03 -Electron-alpha_thermal_collision_time_at_point_129_______________________ (t_plasma_electron_alpha_thermal_collision_profile129)_ 2.14554793865769783e-03 -Electron-alpha_thermal_collision_time_at_point_130_______________________ (t_plasma_electron_alpha_thermal_collision_profile130)_ 2.14219260215072361e-03 -Electron-alpha_thermal_collision_time_at_point_131_______________________ (t_plasma_electron_alpha_thermal_collision_profile131)_ 2.13881347666147661e-03 -Electron-alpha_thermal_collision_time_at_point_132_______________________ (t_plasma_electron_alpha_thermal_collision_profile132)_ 2.13541061324769169e-03 -Electron-alpha_thermal_collision_time_at_point_133_______________________ (t_plasma_electron_alpha_thermal_collision_profile133)_ 2.13198406344255543e-03 -Electron-alpha_thermal_collision_time_at_point_134_______________________ (t_plasma_electron_alpha_thermal_collision_profile134)_ 2.12853387925680338e-03 -Electron-alpha_thermal_collision_time_at_point_135_______________________ (t_plasma_electron_alpha_thermal_collision_profile135)_ 2.12506011318085814e-03 -Electron-alpha_thermal_collision_time_at_point_136_______________________ (t_plasma_electron_alpha_thermal_collision_profile136)_ 2.12156281818698302e-03 -Electron-alpha_thermal_collision_time_at_point_137_______________________ (t_plasma_electron_alpha_thermal_collision_profile137)_ 2.11804204773145691e-03 -Electron-alpha_thermal_collision_time_at_point_138_______________________ (t_plasma_electron_alpha_thermal_collision_profile138)_ 2.11449785575678999e-03 -Electron-alpha_thermal_collision_time_at_point_139_______________________ (t_plasma_electron_alpha_thermal_collision_profile139)_ 2.11093029669393289e-03 -Electron-alpha_thermal_collision_time_at_point_140_______________________ (t_plasma_electron_alpha_thermal_collision_profile140)_ 2.10733942546455092e-03 -Electron-alpha_thermal_collision_time_at_point_141_______________________ (t_plasma_electron_alpha_thermal_collision_profile141)_ 2.10372529748328050e-03 -Electron-alpha_thermal_collision_time_at_point_142_______________________ (t_plasma_electron_alpha_thermal_collision_profile142)_ 2.10008796866003981e-03 -Electron-alpha_thermal_collision_time_at_point_143_______________________ (t_plasma_electron_alpha_thermal_collision_profile143)_ 2.09642749540235769e-03 -Electron-alpha_thermal_collision_time_at_point_144_______________________ (t_plasma_electron_alpha_thermal_collision_profile144)_ 2.09274393461771980e-03 -Electron-alpha_thermal_collision_time_at_point_145_______________________ (t_plasma_electron_alpha_thermal_collision_profile145)_ 2.08903734371594695e-03 -Electron-alpha_thermal_collision_time_at_point_146_______________________ (t_plasma_electron_alpha_thermal_collision_profile146)_ 2.08530778061159902e-03 -Electron-alpha_thermal_collision_time_at_point_147_______________________ (t_plasma_electron_alpha_thermal_collision_profile147)_ 2.08155530372640396e-03 -Electron-alpha_thermal_collision_time_at_point_148_______________________ (t_plasma_electron_alpha_thermal_collision_profile148)_ 2.07777997199171203e-03 -Electron-alpha_thermal_collision_time_at_point_149_______________________ (t_plasma_electron_alpha_thermal_collision_profile149)_ 2.07398184485097382e-03 -Electron-alpha_thermal_collision_time_at_point_150_______________________ (t_plasma_electron_alpha_thermal_collision_profile150)_ 2.07016098226225562e-03 -Electron-alpha_thermal_collision_time_at_point_151_______________________ (t_plasma_electron_alpha_thermal_collision_profile151)_ 2.06631744470076473e-03 -Electron-alpha_thermal_collision_time_at_point_152_______________________ (t_plasma_electron_alpha_thermal_collision_profile152)_ 2.06245129316141775e-03 -Electron-alpha_thermal_collision_time_at_point_153_______________________ (t_plasma_electron_alpha_thermal_collision_profile153)_ 2.05856258916142874e-03 -Electron-alpha_thermal_collision_time_at_point_154_______________________ (t_plasma_electron_alpha_thermal_collision_profile154)_ 2.05465139474292303e-03 -Electron-alpha_thermal_collision_time_at_point_155_______________________ (t_plasma_electron_alpha_thermal_collision_profile155)_ 2.05071777247558314e-03 -Electron-alpha_thermal_collision_time_at_point_156_______________________ (t_plasma_electron_alpha_thermal_collision_profile156)_ 2.04676178545932239e-03 -Electron-alpha_thermal_collision_time_at_point_157_______________________ (t_plasma_electron_alpha_thermal_collision_profile157)_ 2.04278349732698369e-03 -Electron-alpha_thermal_collision_time_at_point_158_______________________ (t_plasma_electron_alpha_thermal_collision_profile158)_ 2.03878297224707088e-03 -Electron-alpha_thermal_collision_time_at_point_159_______________________ (t_plasma_electron_alpha_thermal_collision_profile159)_ 2.03476027492650478e-03 -Electron-alpha_thermal_collision_time_at_point_160_______________________ (t_plasma_electron_alpha_thermal_collision_profile160)_ 2.03071547061341607e-03 -Electron-alpha_thermal_collision_time_at_point_161_______________________ (t_plasma_electron_alpha_thermal_collision_profile161)_ 2.02664862509995339e-03 -Electron-alpha_thermal_collision_time_at_point_162_______________________ (t_plasma_electron_alpha_thermal_collision_profile162)_ 2.02255980472513652e-03 -Electron-alpha_thermal_collision_time_at_point_163_______________________ (t_plasma_electron_alpha_thermal_collision_profile163)_ 2.01844907637773298e-03 -Electron-alpha_thermal_collision_time_at_point_164_______________________ (t_plasma_electron_alpha_thermal_collision_profile164)_ 2.01431650749916112e-03 -Electron-alpha_thermal_collision_time_at_point_165_______________________ (t_plasma_electron_alpha_thermal_collision_profile165)_ 2.01016216608642957e-03 -Electron-alpha_thermal_collision_time_at_point_166_______________________ (t_plasma_electron_alpha_thermal_collision_profile166)_ 2.00598612069510622e-03 -Electron-alpha_thermal_collision_time_at_point_167_______________________ (t_plasma_electron_alpha_thermal_collision_profile167)_ 2.00178844044231544e-03 -Electron-alpha_thermal_collision_time_at_point_168_______________________ (t_plasma_electron_alpha_thermal_collision_profile168)_ 1.99756919500977161e-03 -Electron-alpha_thermal_collision_time_at_point_169_______________________ (t_plasma_electron_alpha_thermal_collision_profile169)_ 1.99332845464684095e-03 -Electron-alpha_thermal_collision_time_at_point_170_______________________ (t_plasma_electron_alpha_thermal_collision_profile170)_ 1.98906629017363322e-03 -Electron-alpha_thermal_collision_time_at_point_171_______________________ (t_plasma_electron_alpha_thermal_collision_profile171)_ 1.98478277298413247e-03 -Electron-alpha_thermal_collision_time_at_point_172_______________________ (t_plasma_electron_alpha_thermal_collision_profile172)_ 1.98047797504935508e-03 -Electron-alpha_thermal_collision_time_at_point_173_______________________ (t_plasma_electron_alpha_thermal_collision_profile173)_ 1.97615196892054340e-03 -Electron-alpha_thermal_collision_time_at_point_174_______________________ (t_plasma_electron_alpha_thermal_collision_profile174)_ 1.97180482773238975e-03 -Electron-alpha_thermal_collision_time_at_point_175_______________________ (t_plasma_electron_alpha_thermal_collision_profile175)_ 1.96743662520629898e-03 -Electron-alpha_thermal_collision_time_at_point_176_______________________ (t_plasma_electron_alpha_thermal_collision_profile176)_ 1.96304743565367925e-03 -Electron-alpha_thermal_collision_time_at_point_177_______________________ (t_plasma_electron_alpha_thermal_collision_profile177)_ 1.95863733397927528e-03 -Electron-alpha_thermal_collision_time_at_point_178_______________________ (t_plasma_electron_alpha_thermal_collision_profile178)_ 1.95420639568452377e-03 -Electron-alpha_thermal_collision_time_at_point_179_______________________ (t_plasma_electron_alpha_thermal_collision_profile179)_ 1.94975469687095736e-03 -Electron-alpha_thermal_collision_time_at_point_180_______________________ (t_plasma_electron_alpha_thermal_collision_profile180)_ 1.94528231424363697e-03 -Electron-alpha_thermal_collision_time_at_point_181_______________________ (t_plasma_electron_alpha_thermal_collision_profile181)_ 1.94078932511461888e-03 -Electron-alpha_thermal_collision_time_at_point_182_______________________ (t_plasma_electron_alpha_thermal_collision_profile182)_ 1.93627580740646232e-03 -Electron-alpha_thermal_collision_time_at_point_183_______________________ (t_plasma_electron_alpha_thermal_collision_profile183)_ 1.93174183965576490e-03 -Electron-alpha_thermal_collision_time_at_point_184_______________________ (t_plasma_electron_alpha_thermal_collision_profile184)_ 1.92718750101675794e-03 -Electron-alpha_thermal_collision_time_at_point_185_______________________ (t_plasma_electron_alpha_thermal_collision_profile185)_ 1.92261287126490091e-03 -Electron-alpha_thermal_collision_time_at_point_186_______________________ (t_plasma_electron_alpha_thermal_collision_profile186)_ 1.91801803080055011e-03 -Electron-alpha_thermal_collision_time_at_point_187_______________________ (t_plasma_electron_alpha_thermal_collision_profile187)_ 1.91340306065264452e-03 -Electron-alpha_thermal_collision_time_at_point_188_______________________ (t_plasma_electron_alpha_thermal_collision_profile188)_ 1.90876804248244067e-03 -Electron-alpha_thermal_collision_time_at_point_189_______________________ (t_plasma_electron_alpha_thermal_collision_profile189)_ 1.90411305858727634e-03 -Electron-alpha_thermal_collision_time_at_point_190_______________________ (t_plasma_electron_alpha_thermal_collision_profile190)_ 1.89943819190438110e-03 -Electron-alpha_thermal_collision_time_at_point_191_______________________ (t_plasma_electron_alpha_thermal_collision_profile191)_ 1.89474352601472825e-03 -Electron-alpha_thermal_collision_time_at_point_192_______________________ (t_plasma_electron_alpha_thermal_collision_profile192)_ 1.89002914514691694e-03 -Electron-alpha_thermal_collision_time_at_point_193_______________________ (t_plasma_electron_alpha_thermal_collision_profile193)_ 1.88529513418110887e-03 -Electron-alpha_thermal_collision_time_at_point_194_______________________ (t_plasma_electron_alpha_thermal_collision_profile194)_ 1.88054157865298979e-03 -Electron-alpha_thermal_collision_time_at_point_195_______________________ (t_plasma_electron_alpha_thermal_collision_profile195)_ 1.87576856475778577e-03 -Electron-alpha_thermal_collision_time_at_point_196_______________________ (t_plasma_electron_alpha_thermal_collision_profile196)_ 1.87097617935432100e-03 -Electron-alpha_thermal_collision_time_at_point_197_______________________ (t_plasma_electron_alpha_thermal_collision_profile197)_ 1.86616450996910559e-03 -Electron-alpha_thermal_collision_time_at_point_198_______________________ (t_plasma_electron_alpha_thermal_collision_profile198)_ 1.86133364480047837e-03 -Electron-alpha_thermal_collision_time_at_point_199_______________________ (t_plasma_electron_alpha_thermal_collision_profile199)_ 1.85648367272278842e-03 -Electron-alpha_thermal_collision_time_at_point_200_______________________ (t_plasma_electron_alpha_thermal_collision_profile200)_ 1.85161468329062516e-03 -Electron-alpha_thermal_collision_time_at_point_201_______________________ (t_plasma_electron_alpha_thermal_collision_profile201)_ 1.84672676674308019e-03 -Electron-alpha_thermal_collision_time_at_point_202_______________________ (t_plasma_electron_alpha_thermal_collision_profile202)_ 1.84182001400807170e-03 -Electron-alpha_thermal_collision_time_at_point_203_______________________ (t_plasma_electron_alpha_thermal_collision_profile203)_ 1.83689451670669777e-03 -Electron-alpha_thermal_collision_time_at_point_204_______________________ (t_plasma_electron_alpha_thermal_collision_profile204)_ 1.83195036715764733e-03 -Electron-alpha_thermal_collision_time_at_point_205_______________________ (t_plasma_electron_alpha_thermal_collision_profile205)_ 1.82698765838165147e-03 -Electron-alpha_thermal_collision_time_at_point_206_______________________ (t_plasma_electron_alpha_thermal_collision_profile206)_ 1.82200648410598266e-03 -Electron-alpha_thermal_collision_time_at_point_207_______________________ (t_plasma_electron_alpha_thermal_collision_profile207)_ 1.81700693876900364e-03 -Electron-alpha_thermal_collision_time_at_point_208_______________________ (t_plasma_electron_alpha_thermal_collision_profile208)_ 1.81198911752476137e-03 -Electron-alpha_thermal_collision_time_at_point_209_______________________ (t_plasma_electron_alpha_thermal_collision_profile209)_ 1.80695311624762896e-03 -Electron-alpha_thermal_collision_time_at_point_210_______________________ (t_plasma_electron_alpha_thermal_collision_profile210)_ 1.80189903153700351e-03 -Electron-alpha_thermal_collision_time_at_point_211_______________________ (t_plasma_electron_alpha_thermal_collision_profile211)_ 1.79682696072204495e-03 -Electron-alpha_thermal_collision_time_at_point_212_______________________ (t_plasma_electron_alpha_thermal_collision_profile212)_ 1.79173700186646950e-03 -Electron-alpha_thermal_collision_time_at_point_213_______________________ (t_plasma_electron_alpha_thermal_collision_profile213)_ 1.78662925377339322e-03 -Electron-alpha_thermal_collision_time_at_point_214_______________________ (t_plasma_electron_alpha_thermal_collision_profile214)_ 1.78150381599022942e-03 -Electron-alpha_thermal_collision_time_at_point_215_______________________ (t_plasma_electron_alpha_thermal_collision_profile215)_ 1.77636078881363490e-03 -Electron-alpha_thermal_collision_time_at_point_216_______________________ (t_plasma_electron_alpha_thermal_collision_profile216)_ 1.77120027329450997e-03 -Electron-alpha_thermal_collision_time_at_point_217_______________________ (t_plasma_electron_alpha_thermal_collision_profile217)_ 1.76602237124305313e-03 -Electron-alpha_thermal_collision_time_at_point_218_______________________ (t_plasma_electron_alpha_thermal_collision_profile218)_ 1.76082718523386922e-03 -Electron-alpha_thermal_collision_time_at_point_219_______________________ (t_plasma_electron_alpha_thermal_collision_profile219)_ 1.75561481861112763e-03 -Electron-alpha_thermal_collision_time_at_point_220_______________________ (t_plasma_electron_alpha_thermal_collision_profile220)_ 1.75038537549378551e-03 -Electron-alpha_thermal_collision_time_at_point_221_______________________ (t_plasma_electron_alpha_thermal_collision_profile221)_ 1.74513896078086245e-03 -Electron-alpha_thermal_collision_time_at_point_222_______________________ (t_plasma_electron_alpha_thermal_collision_profile222)_ 1.73987568015676478e-03 -Electron-alpha_thermal_collision_time_at_point_223_______________________ (t_plasma_electron_alpha_thermal_collision_profile223)_ 1.73459564009667989e-03 -Electron-alpha_thermal_collision_time_at_point_224_______________________ (t_plasma_electron_alpha_thermal_collision_profile224)_ 1.72929894787201980e-03 -Electron-alpha_thermal_collision_time_at_point_225_______________________ (t_plasma_electron_alpha_thermal_collision_profile225)_ 1.72398571155592912e-03 -Electron-alpha_thermal_collision_time_at_point_226_______________________ (t_plasma_electron_alpha_thermal_collision_profile226)_ 1.71865604002884747e-03 -Electron-alpha_thermal_collision_time_at_point_227_______________________ (t_plasma_electron_alpha_thermal_collision_profile227)_ 1.71331004298413731e-03 -Electron-alpha_thermal_collision_time_at_point_228_______________________ (t_plasma_electron_alpha_thermal_collision_profile228)_ 1.70794783093376886e-03 -Electron-alpha_thermal_collision_time_at_point_229_______________________ (t_plasma_electron_alpha_thermal_collision_profile229)_ 1.70256951521407401e-03 -Electron-alpha_thermal_collision_time_at_point_230_______________________ (t_plasma_electron_alpha_thermal_collision_profile230)_ 1.69717520799155170e-03 -Electron-alpha_thermal_collision_time_at_point_231_______________________ (t_plasma_electron_alpha_thermal_collision_profile231)_ 1.69176502226874676e-03 -Electron-alpha_thermal_collision_time_at_point_232_______________________ (t_plasma_electron_alpha_thermal_collision_profile232)_ 1.68633907189019282e-03 -Electron-alpha_thermal_collision_time_at_point_233_______________________ (t_plasma_electron_alpha_thermal_collision_profile233)_ 1.68089747154841402e-03 -Electron-alpha_thermal_collision_time_at_point_234_______________________ (t_plasma_electron_alpha_thermal_collision_profile234)_ 1.67544033678999676e-03 -Electron-alpha_thermal_collision_time_at_point_235_______________________ (t_plasma_electron_alpha_thermal_collision_profile235)_ 1.66996778402173367e-03 -Electron-alpha_thermal_collision_time_at_point_236_______________________ (t_plasma_electron_alpha_thermal_collision_profile236)_ 1.66447993051682566e-03 -Electron-alpha_thermal_collision_time_at_point_237_______________________ (t_plasma_electron_alpha_thermal_collision_profile237)_ 1.65897689442115861e-03 -Electron-alpha_thermal_collision_time_at_point_238_______________________ (t_plasma_electron_alpha_thermal_collision_profile238)_ 1.65345879475965545e-03 -Electron-alpha_thermal_collision_time_at_point_239_______________________ (t_plasma_electron_alpha_thermal_collision_profile239)_ 1.64792575144268516e-03 -Electron-alpha_thermal_collision_time_at_point_240_______________________ (t_plasma_electron_alpha_thermal_collision_profile240)_ 1.64237788527255685e-03 -Electron-alpha_thermal_collision_time_at_point_241_______________________ (t_plasma_electron_alpha_thermal_collision_profile241)_ 1.63681531795008251e-03 -Electron-alpha_thermal_collision_time_at_point_242_______________________ (t_plasma_electron_alpha_thermal_collision_profile242)_ 1.63123817208120792e-03 -Electron-alpha_thermal_collision_time_at_point_243_______________________ (t_plasma_electron_alpha_thermal_collision_profile243)_ 1.62564657118373021e-03 -Electron-alpha_thermal_collision_time_at_point_244_______________________ (t_plasma_electron_alpha_thermal_collision_profile244)_ 1.62004063969408080e-03 -Electron-alpha_thermal_collision_time_at_point_245_______________________ (t_plasma_electron_alpha_thermal_collision_profile245)_ 1.61442050297418670e-03 -Electron-alpha_thermal_collision_time_at_point_246_______________________ (t_plasma_electron_alpha_thermal_collision_profile246)_ 1.60878628731842498e-03 -Electron-alpha_thermal_collision_time_at_point_247_______________________ (t_plasma_electron_alpha_thermal_collision_profile247)_ 1.60313811996063045e-03 -Electron-alpha_thermal_collision_time_at_point_248_______________________ (t_plasma_electron_alpha_thermal_collision_profile248)_ 1.59747612908120798e-03 -Electron-alpha_thermal_collision_time_at_point_249_______________________ (t_plasma_electron_alpha_thermal_collision_profile249)_ 1.59180044381431038e-03 -Electron-alpha_thermal_collision_time_at_point_250_______________________ (t_plasma_electron_alpha_thermal_collision_profile250)_ 1.58611119425511511e-03 -Electron-alpha_thermal_collision_time_at_point_251_______________________ (t_plasma_electron_alpha_thermal_collision_profile251)_ 1.58040851146716479e-03 -Electron-alpha_thermal_collision_time_at_point_252_______________________ (t_plasma_electron_alpha_thermal_collision_profile252)_ 1.57469252748981391e-03 -Electron-alpha_thermal_collision_time_at_point_253_______________________ (t_plasma_electron_alpha_thermal_collision_profile253)_ 1.56896337534574693e-03 -Electron-alpha_thermal_collision_time_at_point_254_______________________ (t_plasma_electron_alpha_thermal_collision_profile254)_ 1.56322118904859476e-03 -Electron-alpha_thermal_collision_time_at_point_255_______________________ (t_plasma_electron_alpha_thermal_collision_profile255)_ 1.55746610361063437e-03 -Electron-alpha_thermal_collision_time_at_point_256_______________________ (t_plasma_electron_alpha_thermal_collision_profile256)_ 1.55169825505058266e-03 -Electron-alpha_thermal_collision_time_at_point_257_______________________ (t_plasma_electron_alpha_thermal_collision_profile257)_ 1.54591778040148145e-03 -Electron-alpha_thermal_collision_time_at_point_258_______________________ (t_plasma_electron_alpha_thermal_collision_profile258)_ 1.54012481771867893e-03 -Electron-alpha_thermal_collision_time_at_point_259_______________________ (t_plasma_electron_alpha_thermal_collision_profile259)_ 1.53431950608789980e-03 -Electron-alpha_thermal_collision_time_at_point_260_______________________ (t_plasma_electron_alpha_thermal_collision_profile260)_ 1.52850198563342170e-03 -Electron-alpha_thermal_collision_time_at_point_261_______________________ (t_plasma_electron_alpha_thermal_collision_profile261)_ 1.52267239752634201e-03 -Electron-alpha_thermal_collision_time_at_point_262_______________________ (t_plasma_electron_alpha_thermal_collision_profile262)_ 1.51683088399294920e-03 -Electron-alpha_thermal_collision_time_at_point_263_______________________ (t_plasma_electron_alpha_thermal_collision_profile263)_ 1.51097758832319609e-03 -Electron-alpha_thermal_collision_time_at_point_264_______________________ (t_plasma_electron_alpha_thermal_collision_profile264)_ 1.50511265487927198e-03 -Electron-alpha_thermal_collision_time_at_point_265_______________________ (t_plasma_electron_alpha_thermal_collision_profile265)_ 1.49923622910428603e-03 -Electron-alpha_thermal_collision_time_at_point_266_______________________ (t_plasma_electron_alpha_thermal_collision_profile266)_ 1.49334845753105474e-03 -Electron-alpha_thermal_collision_time_at_point_267_______________________ (t_plasma_electron_alpha_thermal_collision_profile267)_ 1.48744948779099516e-03 -Electron-alpha_thermal_collision_time_at_point_268_______________________ (t_plasma_electron_alpha_thermal_collision_profile268)_ 1.48153946862314076e-03 -Electron-alpha_thermal_collision_time_at_point_269_______________________ (t_plasma_electron_alpha_thermal_collision_profile269)_ 1.47561854988324586e-03 -Electron-alpha_thermal_collision_time_at_point_270_______________________ (t_plasma_electron_alpha_thermal_collision_profile270)_ 1.46968688255303954e-03 -Electron-alpha_thermal_collision_time_at_point_271_______________________ (t_plasma_electron_alpha_thermal_collision_profile271)_ 1.46374461874955821e-03 -Electron-alpha_thermal_collision_time_at_point_272_______________________ (t_plasma_electron_alpha_thermal_collision_profile272)_ 1.45779191173462915e-03 -Electron-alpha_thermal_collision_time_at_point_273_______________________ (t_plasma_electron_alpha_thermal_collision_profile273)_ 1.45182891592445201e-03 -Electron-alpha_thermal_collision_time_at_point_274_______________________ (t_plasma_electron_alpha_thermal_collision_profile274)_ 1.44585578689932263e-03 -Electron-alpha_thermal_collision_time_at_point_275_______________________ (t_plasma_electron_alpha_thermal_collision_profile275)_ 1.43987268141345889e-03 -Electron-alpha_thermal_collision_time_at_point_276_______________________ (t_plasma_electron_alpha_thermal_collision_profile276)_ 1.43387975740497976e-03 -Electron-alpha_thermal_collision_time_at_point_277_______________________ (t_plasma_electron_alpha_thermal_collision_profile277)_ 1.42787717400599595e-03 -Electron-alpha_thermal_collision_time_at_point_278_______________________ (t_plasma_electron_alpha_thermal_collision_profile278)_ 1.42186509155284410e-03 -Electron-alpha_thermal_collision_time_at_point_279_______________________ (t_plasma_electron_alpha_thermal_collision_profile279)_ 1.41584367159644487e-03 -Electron-alpha_thermal_collision_time_at_point_280_______________________ (t_plasma_electron_alpha_thermal_collision_profile280)_ 1.40981307691281270e-03 -Electron-alpha_thermal_collision_time_at_point_281_______________________ (t_plasma_electron_alpha_thermal_collision_profile281)_ 1.40377347151369471e-03 -Electron-alpha_thermal_collision_time_at_point_282_______________________ (t_plasma_electron_alpha_thermal_collision_profile282)_ 1.39772502065735652e-03 -Electron-alpha_thermal_collision_time_at_point_283_______________________ (t_plasma_electron_alpha_thermal_collision_profile283)_ 1.39166789085951644e-03 -Electron-alpha_thermal_collision_time_at_point_284_______________________ (t_plasma_electron_alpha_thermal_collision_profile284)_ 1.38560224990442711e-03 -Electron-alpha_thermal_collision_time_at_point_285_______________________ (t_plasma_electron_alpha_thermal_collision_profile285)_ 1.37952826685610675e-03 -Electron-alpha_thermal_collision_time_at_point_286_______________________ (t_plasma_electron_alpha_thermal_collision_profile286)_ 1.37344611206972867e-03 -Electron-alpha_thermal_collision_time_at_point_287_______________________ (t_plasma_electron_alpha_thermal_collision_profile287)_ 1.36735595720316851e-03 -Electron-alpha_thermal_collision_time_at_point_288_______________________ (t_plasma_electron_alpha_thermal_collision_profile288)_ 1.36125797522871077e-03 -Electron-alpha_thermal_collision_time_at_point_289_______________________ (t_plasma_electron_alpha_thermal_collision_profile289)_ 1.35515234044492712e-03 -Electron-alpha_thermal_collision_time_at_point_290_______________________ (t_plasma_electron_alpha_thermal_collision_profile290)_ 1.34903922848871125e-03 -Electron-alpha_thermal_collision_time_at_point_291_______________________ (t_plasma_electron_alpha_thermal_collision_profile291)_ 1.34291881634750437e-03 -Electron-alpha_thermal_collision_time_at_point_292_______________________ (t_plasma_electron_alpha_thermal_collision_profile292)_ 1.33679128237167307e-03 -Electron-alpha_thermal_collision_time_at_point_293_______________________ (t_plasma_electron_alpha_thermal_collision_profile293)_ 1.33065680628709150e-03 -Electron-alpha_thermal_collision_time_at_point_294_______________________ (t_plasma_electron_alpha_thermal_collision_profile294)_ 1.32451556920789052e-03 -Electron-alpha_thermal_collision_time_at_point_295_______________________ (t_plasma_electron_alpha_thermal_collision_profile295)_ 1.31836775364940068e-03 -Electron-alpha_thermal_collision_time_at_point_296_______________________ (t_plasma_electron_alpha_thermal_collision_profile296)_ 1.31221354354129011e-03 -Electron-alpha_thermal_collision_time_at_point_297_______________________ (t_plasma_electron_alpha_thermal_collision_profile297)_ 1.30605312424089790e-03 -Electron-alpha_thermal_collision_time_at_point_298_______________________ (t_plasma_electron_alpha_thermal_collision_profile298)_ 1.29988668254676443e-03 -Electron-alpha_thermal_collision_time_at_point_299_______________________ (t_plasma_electron_alpha_thermal_collision_profile299)_ 1.29371440671237413e-03 -Electron-alpha_thermal_collision_time_at_point_300_______________________ (t_plasma_electron_alpha_thermal_collision_profile300)_ 1.28753648646010607e-03 -Electron-alpha_thermal_collision_time_at_point_301_______________________ (t_plasma_electron_alpha_thermal_collision_profile301)_ 1.28135311299540670e-03 -Electron-alpha_thermal_collision_time_at_point_302_______________________ (t_plasma_electron_alpha_thermal_collision_profile302)_ 1.27516447902117154e-03 -Electron-alpha_thermal_collision_time_at_point_303_______________________ (t_plasma_electron_alpha_thermal_collision_profile303)_ 1.26897077875236870e-03 -Electron-alpha_thermal_collision_time_at_point_304_______________________ (t_plasma_electron_alpha_thermal_collision_profile304)_ 1.26277220793088595e-03 -Electron-alpha_thermal_collision_time_at_point_305_______________________ (t_plasma_electron_alpha_thermal_collision_profile305)_ 1.25656896384061930e-03 -Electron-alpha_thermal_collision_time_at_point_306_______________________ (t_plasma_electron_alpha_thermal_collision_profile306)_ 1.25036124532280695e-03 -Electron-alpha_thermal_collision_time_at_point_307_______________________ (t_plasma_electron_alpha_thermal_collision_profile307)_ 1.24414925279161203e-03 -Electron-alpha_thermal_collision_time_at_point_308_______________________ (t_plasma_electron_alpha_thermal_collision_profile308)_ 1.23793318824996410e-03 -Electron-alpha_thermal_collision_time_at_point_309_______________________ (t_plasma_electron_alpha_thermal_collision_profile309)_ 1.23171325530566826e-03 -Electron-alpha_thermal_collision_time_at_point_310_______________________ (t_plasma_electron_alpha_thermal_collision_profile310)_ 1.22548965918778049e-03 -Electron-alpha_thermal_collision_time_at_point_311_______________________ (t_plasma_electron_alpha_thermal_collision_profile311)_ 1.21926260676326727e-03 -Electron-alpha_thermal_collision_time_at_point_312_______________________ (t_plasma_electron_alpha_thermal_collision_profile312)_ 1.21303230655394386e-03 -Electron-alpha_thermal_collision_time_at_point_313_______________________ (t_plasma_electron_alpha_thermal_collision_profile313)_ 1.20679896875371812e-03 -Electron-alpha_thermal_collision_time_at_point_314_______________________ (t_plasma_electron_alpha_thermal_collision_profile314)_ 1.20056280524612593e-03 -Electron-alpha_thermal_collision_time_at_point_315_______________________ (t_plasma_electron_alpha_thermal_collision_profile315)_ 1.19432402962218456e-03 -Electron-alpha_thermal_collision_time_at_point_316_______________________ (t_plasma_electron_alpha_thermal_collision_profile316)_ 1.18808285719856866e-03 -Electron-alpha_thermal_collision_time_at_point_317_______________________ (t_plasma_electron_alpha_thermal_collision_profile317)_ 1.18183950503610046e-03 -Electron-alpha_thermal_collision_time_at_point_318_______________________ (t_plasma_electron_alpha_thermal_collision_profile318)_ 1.17559419195860317e-03 -Electron-alpha_thermal_collision_time_at_point_319_______________________ (t_plasma_electron_alpha_thermal_collision_profile319)_ 1.16934713857208073e-03 -Electron-alpha_thermal_collision_time_at_point_320_______________________ (t_plasma_electron_alpha_thermal_collision_profile320)_ 1.16309856728427012e-03 -Electron-alpha_thermal_collision_time_at_point_321_______________________ (t_plasma_electron_alpha_thermal_collision_profile321)_ 1.15684870232456096e-03 -Electron-alpha_thermal_collision_time_at_point_322_______________________ (t_plasma_electron_alpha_thermal_collision_profile322)_ 1.15059776976429370e-03 -Electron-alpha_thermal_collision_time_at_point_323_______________________ (t_plasma_electron_alpha_thermal_collision_profile323)_ 1.14434599753745949e-03 -Electron-alpha_thermal_collision_time_at_point_324_______________________ (t_plasma_electron_alpha_thermal_collision_profile324)_ 1.13809361546179239e-03 -Electron-alpha_thermal_collision_time_at_point_325_______________________ (t_plasma_electron_alpha_thermal_collision_profile325)_ 1.13184085526029710e-03 -Electron-alpha_thermal_collision_time_at_point_326_______________________ (t_plasma_electron_alpha_thermal_collision_profile326)_ 1.12558795058319196e-03 -Electron-alpha_thermal_collision_time_at_point_327_______________________ (t_plasma_electron_alpha_thermal_collision_profile327)_ 1.11933513703031456e-03 -Electron-alpha_thermal_collision_time_at_point_328_______________________ (t_plasma_electron_alpha_thermal_collision_profile328)_ 1.11308265217397264e-03 -Electron-alpha_thermal_collision_time_at_point_329_______________________ (t_plasma_electron_alpha_thermal_collision_profile329)_ 1.10683073558228286e-03 -Electron-alpha_thermal_collision_time_at_point_330_______________________ (t_plasma_electron_alpha_thermal_collision_profile330)_ 1.10057962884299240e-03 -Electron-alpha_thermal_collision_time_at_point_331_______________________ (t_plasma_electron_alpha_thermal_collision_profile331)_ 1.09432957558782003e-03 -Electron-alpha_thermal_collision_time_at_point_332_______________________ (t_plasma_electron_alpha_thermal_collision_profile332)_ 1.08808082151731051e-03 -Electron-alpha_thermal_collision_time_at_point_333_______________________ (t_plasma_electron_alpha_thermal_collision_profile333)_ 1.08183361442624245e-03 -Electron-alpha_thermal_collision_time_at_point_334_______________________ (t_plasma_electron_alpha_thermal_collision_profile334)_ 1.07558820422959628e-03 -Electron-alpha_thermal_collision_time_at_point_335_______________________ (t_plasma_electron_alpha_thermal_collision_profile335)_ 1.06934484298910307e-03 -Electron-alpha_thermal_collision_time_at_point_336_______________________ (t_plasma_electron_alpha_thermal_collision_profile336)_ 1.06310378494040340e-03 -Electron-alpha_thermal_collision_time_at_point_337_______________________ (t_plasma_electron_alpha_thermal_collision_profile337)_ 1.05686528652082501e-03 -Electron-alpha_thermal_collision_time_at_point_338_______________________ (t_plasma_electron_alpha_thermal_collision_profile338)_ 1.05062960639781518e-03 -Electron-alpha_thermal_collision_time_at_point_339_______________________ (t_plasma_electron_alpha_thermal_collision_profile339)_ 1.04439700549804003e-03 -Electron-alpha_thermal_collision_time_at_point_340_______________________ (t_plasma_electron_alpha_thermal_collision_profile340)_ 1.03816774703718666e-03 -Electron-alpha_thermal_collision_time_at_point_341_______________________ (t_plasma_electron_alpha_thermal_collision_profile341)_ 1.03194209655048841e-03 -Electron-alpha_thermal_collision_time_at_point_342_______________________ (t_plasma_electron_alpha_thermal_collision_profile342)_ 1.02572032192399585e-03 -Electron-alpha_thermal_collision_time_at_point_343_______________________ (t_plasma_electron_alpha_thermal_collision_profile343)_ 1.01950269342663755e-03 -Electron-alpha_thermal_collision_time_at_point_344_______________________ (t_plasma_electron_alpha_thermal_collision_profile344)_ 1.01328948374308672e-03 -Electron-alpha_thermal_collision_time_at_point_345_______________________ (t_plasma_electron_alpha_thermal_collision_profile345)_ 1.00708096800746719e-03 -Electron-alpha_thermal_collision_time_at_point_346_______________________ (t_plasma_electron_alpha_thermal_collision_profile346)_ 1.00087742383794635e-03 -Electron-alpha_thermal_collision_time_at_point_347_______________________ (t_plasma_electron_alpha_thermal_collision_profile347)_ 9.94679131372228900e-04 -Electron-alpha_thermal_collision_time_at_point_348_______________________ (t_plasma_electron_alpha_thermal_collision_profile348)_ 9.88486373304003820e-04 -Electron-alpha_thermal_collision_time_at_point_349_______________________ (t_plasma_electron_alpha_thermal_collision_profile349)_ 9.82299434920378420e-04 -Electron-alpha_thermal_collision_time_at_point_350_______________________ (t_plasma_electron_alpha_thermal_collision_profile350)_ 9.76118604140343757e-04 -Electron-alpha_thermal_collision_time_at_point_351_______________________ (t_plasma_electron_alpha_thermal_collision_profile351)_ 9.69944171554302918e-04 -Electron-alpha_thermal_collision_time_at_point_352_______________________ (t_plasma_electron_alpha_thermal_collision_profile352)_ 9.63776430464727512e-04 -Electron-alpha_thermal_collision_time_at_point_353_______________________ (t_plasma_electron_alpha_thermal_collision_profile353)_ 9.57615676927965165e-04 -Electron-alpha_thermal_collision_time_at_point_354_______________________ (t_plasma_electron_alpha_thermal_collision_profile354)_ 9.51462209797275939e-04 -Electron-alpha_thermal_collision_time_at_point_355_______________________ (t_plasma_electron_alpha_thermal_collision_profile355)_ 9.45316330767122866e-04 -Electron-alpha_thermal_collision_time_at_point_356_______________________ (t_plasma_electron_alpha_thermal_collision_profile356)_ 9.39178344418794956e-04 -Electron-alpha_thermal_collision_time_at_point_357_______________________ (t_plasma_electron_alpha_thermal_collision_profile357)_ 9.33048558267406711e-04 -Electron-alpha_thermal_collision_time_at_point_358_______________________ (t_plasma_electron_alpha_thermal_collision_profile358)_ 9.26927282810345479e-04 -Electron-alpha_thermal_collision_time_at_point_359_______________________ (t_plasma_electron_alpha_thermal_collision_profile359)_ 9.20814831577222281e-04 -Electron-alpha_thermal_collision_time_at_point_360_______________________ (t_plasma_electron_alpha_thermal_collision_profile360)_ 9.14711521181411414e-04 -Electron-alpha_thermal_collision_time_at_point_361_______________________ (t_plasma_electron_alpha_thermal_collision_profile361)_ 9.08617671373226129e-04 -Electron-alpha_thermal_collision_time_at_point_362_______________________ (t_plasma_electron_alpha_thermal_collision_profile362)_ 9.02533605094839753e-04 -Electron-alpha_thermal_collision_time_at_point_363_______________________ (t_plasma_electron_alpha_thermal_collision_profile363)_ 8.96459648537001395e-04 -Electron-alpha_thermal_collision_time_at_point_364_______________________ (t_plasma_electron_alpha_thermal_collision_profile364)_ 8.90396131197659512e-04 -Electron-alpha_thermal_collision_time_at_point_365_______________________ (t_plasma_electron_alpha_thermal_collision_profile365)_ 8.84343385942562197e-04 -Electron-alpha_thermal_collision_time_at_point_366_______________________ (t_plasma_electron_alpha_thermal_collision_profile366)_ 8.78301749067951065e-04 -Electron-alpha_thermal_collision_time_at_point_367_______________________ (t_plasma_electron_alpha_thermal_collision_profile367)_ 8.72271560365429606e-04 -Electron-alpha_thermal_collision_time_at_point_368_______________________ (t_plasma_electron_alpha_thermal_collision_profile368)_ 8.66253163189134937e-04 -Electron-alpha_thermal_collision_time_at_point_369_______________________ (t_plasma_electron_alpha_thermal_collision_profile369)_ 8.60246904525311263e-04 -Electron-alpha_thermal_collision_time_at_point_370_______________________ (t_plasma_electron_alpha_thermal_collision_profile370)_ 8.54253135064414536e-04 -Electron-alpha_thermal_collision_time_at_point_371_______________________ (t_plasma_electron_alpha_thermal_collision_profile371)_ 8.48272209275872631e-04 -Electron-alpha_thermal_collision_time_at_point_372_______________________ (t_plasma_electron_alpha_thermal_collision_profile372)_ 8.42304485485648202e-04 -Electron-alpha_thermal_collision_time_at_point_373_______________________ (t_plasma_electron_alpha_thermal_collision_profile373)_ 8.36350325956726698e-04 -Electron-alpha_thermal_collision_time_at_point_374_______________________ (t_plasma_electron_alpha_thermal_collision_profile374)_ 8.30410096972715082e-04 -Electron-alpha_thermal_collision_time_at_point_375_______________________ (t_plasma_electron_alpha_thermal_collision_profile375)_ 8.24484168924682730e-04 -Electron-alpha_thermal_collision_time_at_point_376_______________________ (t_plasma_electron_alpha_thermal_collision_profile376)_ 8.18572916401441759e-04 -Electron-alpha_thermal_collision_time_at_point_377_______________________ (t_plasma_electron_alpha_thermal_collision_profile377)_ 8.12676718283441646e-04 -Electron-alpha_thermal_collision_time_at_point_378_______________________ (t_plasma_electron_alpha_thermal_collision_profile378)_ 8.06795957840476005e-04 -Electron-alpha_thermal_collision_time_at_point_379_______________________ (t_plasma_electron_alpha_thermal_collision_profile379)_ 8.00931022833409919e-04 -Electron-alpha_thermal_collision_time_at_point_380_______________________ (t_plasma_electron_alpha_thermal_collision_profile380)_ 7.95082305620159512e-04 -Electron-alpha_thermal_collision_time_at_point_381_______________________ (t_plasma_electron_alpha_thermal_collision_profile381)_ 7.89250203266146991e-04 -Electron-alpha_thermal_collision_time_at_point_382_______________________ (t_plasma_electron_alpha_thermal_collision_profile382)_ 7.83435117659498107e-04 -Electron-alpha_thermal_collision_time_at_point_383_______________________ (t_plasma_electron_alpha_thermal_collision_profile383)_ 7.77637455631249495e-04 -Electron-alpha_thermal_collision_time_at_point_384_______________________ (t_plasma_electron_alpha_thermal_collision_profile384)_ 7.71857629080846476e-04 -Electron-alpha_thermal_collision_time_at_point_385_______________________ (t_plasma_electron_alpha_thermal_collision_profile385)_ 7.66096055107257589e-04 -Electron-alpha_thermal_collision_time_at_point_386_______________________ (t_plasma_electron_alpha_thermal_collision_profile386)_ 7.60353156146016543e-04 -Electron-alpha_thermal_collision_time_at_point_387_______________________ (t_plasma_electron_alpha_thermal_collision_profile387)_ 7.54629360112557004e-04 -Electron-alpha_thermal_collision_time_at_point_388_______________________ (t_plasma_electron_alpha_thermal_collision_profile388)_ 7.48925100552219006e-04 -Electron-alpha_thermal_collision_time_at_point_389_______________________ (t_plasma_electron_alpha_thermal_collision_profile389)_ 7.43240816797324485e-04 -Electron-alpha_thermal_collision_time_at_point_390_______________________ (t_plasma_electron_alpha_thermal_collision_profile390)_ 7.37576954131757855e-04 -Electron-alpha_thermal_collision_time_at_point_391_______________________ (t_plasma_electron_alpha_thermal_collision_profile391)_ 7.31933963963524604e-04 -Electron-alpha_thermal_collision_time_at_point_392_______________________ (t_plasma_electron_alpha_thermal_collision_profile392)_ 7.26312304005776615e-04 -Electron-alpha_thermal_collision_time_at_point_393_______________________ (t_plasma_electron_alpha_thermal_collision_profile393)_ 7.20712438466846470e-04 -Electron-alpha_thermal_collision_time_at_point_394_______________________ (t_plasma_electron_alpha_thermal_collision_profile394)_ 7.15134838249868688e-04 -Electron-alpha_thermal_collision_time_at_point_395_______________________ (t_plasma_electron_alpha_thermal_collision_profile395)_ 7.09579981162601365e-04 -Electron-alpha_thermal_collision_time_at_point_396_______________________ (t_plasma_electron_alpha_thermal_collision_profile396)_ 7.04048352138125604e-04 -Electron-alpha_thermal_collision_time_at_point_397_______________________ (t_plasma_electron_alpha_thermal_collision_profile397)_ 6.98540443467129545e-04 -Electron-alpha_thermal_collision_time_at_point_398_______________________ (t_plasma_electron_alpha_thermal_collision_profile398)_ 6.93056755042563573e-04 -Electron-alpha_thermal_collision_time_at_point_399_______________________ (t_plasma_electron_alpha_thermal_collision_profile399)_ 6.87597794617499048e-04 -Electron-alpha_thermal_collision_time_at_point_400_______________________ (t_plasma_electron_alpha_thermal_collision_profile400)_ 6.82164078077088926e-04 -Electron-alpha_thermal_collision_time_at_point_401_______________________ (t_plasma_electron_alpha_thermal_collision_profile401)_ 6.76756129725617763e-04 -Electron-alpha_thermal_collision_time_at_point_402_______________________ (t_plasma_electron_alpha_thermal_collision_profile402)_ 6.71374482589688236e-04 -Electron-alpha_thermal_collision_time_at_point_403_______________________ (t_plasma_electron_alpha_thermal_collision_profile403)_ 6.66019678738694488e-04 -Electron-alpha_thermal_collision_time_at_point_404_______________________ (t_plasma_electron_alpha_thermal_collision_profile404)_ 6.60692269623821258e-04 -Electron-alpha_thermal_collision_time_at_point_405_______________________ (t_plasma_electron_alpha_thermal_collision_profile405)_ 6.55392816436916963e-04 -Electron-alpha_thermal_collision_time_at_point_406_______________________ (t_plasma_electron_alpha_thermal_collision_profile406)_ 6.50121890490701609e-04 -Electron-alpha_thermal_collision_time_at_point_407_______________________ (t_plasma_electron_alpha_thermal_collision_profile407)_ 6.44880073621904707e-04 -Electron-alpha_thermal_collision_time_at_point_408_______________________ (t_plasma_electron_alpha_thermal_collision_profile408)_ 6.39667958619058929e-04 -Electron-alpha_thermal_collision_time_at_point_409_______________________ (t_plasma_electron_alpha_thermal_collision_profile409)_ 6.34486149676849335e-04 -Electron-alpha_thermal_collision_time_at_point_410_______________________ (t_plasma_electron_alpha_thermal_collision_profile410)_ 6.29335262879065918e-04 -Electron-alpha_thermal_collision_time_at_point_411_______________________ (t_plasma_electron_alpha_thermal_collision_profile411)_ 6.24215926712425235e-04 -Electron-alpha_thermal_collision_time_at_point_412_______________________ (t_plasma_electron_alpha_thermal_collision_profile412)_ 6.19128782613711181e-04 -Electron-alpha_thermal_collision_time_at_point_413_______________________ (t_plasma_electron_alpha_thermal_collision_profile413)_ 6.14074485552953682e-04 -Electron-alpha_thermal_collision_time_at_point_414_______________________ (t_plasma_electron_alpha_thermal_collision_profile414)_ 6.09053704655586076e-04 -Electron-alpha_thermal_collision_time_at_point_415_______________________ (t_plasma_electron_alpha_thermal_collision_profile415)_ 6.04067123866858409e-04 -Electron-alpha_thermal_collision_time_at_point_416_______________________ (t_plasma_electron_alpha_thermal_collision_profile416)_ 5.99115442662068675e-04 -Electron-alpha_thermal_collision_time_at_point_417_______________________ (t_plasma_electron_alpha_thermal_collision_profile417)_ 5.94199376806576075e-04 -Electron-alpha_thermal_collision_time_at_point_418_______________________ (t_plasma_electron_alpha_thermal_collision_profile418)_ 5.89319659169942845e-04 -Electron-alpha_thermal_collision_time_at_point_419_______________________ (t_plasma_electron_alpha_thermal_collision_profile419)_ 5.84477040599030561e-04 -Electron-alpha_thermal_collision_time_at_point_420_______________________ (t_plasma_electron_alpha_thermal_collision_profile420)_ 5.79672290855385718e-04 -Electron-alpha_thermal_collision_time_at_point_421_______________________ (t_plasma_electron_alpha_thermal_collision_profile421)_ 5.74906199622838144e-04 -Electron-alpha_thermal_collision_time_at_point_422_______________________ (t_plasma_electron_alpha_thermal_collision_profile422)_ 5.70179577591903861e-04 -Electron-alpha_thermal_collision_time_at_point_423_______________________ (t_plasma_electron_alpha_thermal_collision_profile423)_ 5.65493257628322025e-04 -Electron-alpha_thermal_collision_time_at_point_424_______________________ (t_plasma_electron_alpha_thermal_collision_profile424)_ 5.60848096033926438e-04 -Electron-alpha_thermal_collision_time_at_point_425_______________________ (t_plasma_electron_alpha_thermal_collision_profile425)_ 5.56244973909015292e-04 -Electron-alpha_thermal_collision_time_at_point_426_______________________ (t_plasma_electron_alpha_thermal_collision_profile426)_ 5.51684798626494131e-04 -Electron-alpha_thermal_collision_time_at_point_427_______________________ (t_plasma_electron_alpha_thermal_collision_profile427)_ 5.47168505429350719e-04 -Electron-alpha_thermal_collision_time_at_point_428_______________________ (t_plasma_electron_alpha_thermal_collision_profile428)_ 5.42697059164477975e-04 -Electron-alpha_thermal_collision_time_at_point_429_______________________ (t_plasma_electron_alpha_thermal_collision_profile429)_ 5.38271456167555874e-04 -Electron-alpha_thermal_collision_time_at_point_430_______________________ (t_plasma_electron_alpha_thermal_collision_profile430)_ 5.33892726315654325e-04 -Electron-alpha_thermal_collision_time_at_point_431_______________________ (t_plasma_electron_alpha_thermal_collision_profile431)_ 5.29561935266490238e-04 -Electron-alpha_thermal_collision_time_at_point_432_______________________ (t_plasma_electron_alpha_thermal_collision_profile432)_ 5.25280186905917323e-04 -Electron-alpha_thermal_collision_time_at_point_433_______________________ (t_plasma_electron_alpha_thermal_collision_profile433)_ 5.21048626028300789e-04 -Electron-alpha_thermal_collision_time_at_point_434_______________________ (t_plasma_electron_alpha_thermal_collision_profile434)_ 5.16868441278085658e-04 -Electron-alpha_thermal_collision_time_at_point_435_______________________ (t_plasma_electron_alpha_thermal_collision_profile435)_ 5.12740868385108206e-04 -Electron-alpha_thermal_collision_time_at_point_436_______________________ (t_plasma_electron_alpha_thermal_collision_profile436)_ 5.08667193731279148e-04 -Electron-alpha_thermal_collision_time_at_point_437_______________________ (t_plasma_electron_alpha_thermal_collision_profile437)_ 5.04648758292281624e-04 -Electron-alpha_thermal_collision_time_at_point_438_______________________ (t_plasma_electron_alpha_thermal_collision_profile438)_ 5.00686962005105212e-04 -Electron-alpha_thermal_collision_time_at_point_439_______________________ (t_plasma_electron_alpha_thermal_collision_profile439)_ 4.96783268620884966e-04 -Electron-alpha_thermal_collision_time_at_point_440_______________________ (t_plasma_electron_alpha_thermal_collision_profile440)_ 4.92939211112930812e-04 -Electron-alpha_thermal_collision_time_at_point_441_______________________ (t_plasma_electron_alpha_thermal_collision_profile441)_ 4.89156397722503833e-04 -Electron-alpha_thermal_collision_time_at_point_442_______________________ (t_plasma_electron_alpha_thermal_collision_profile442)_ 4.85436518740359213e-04 -Electron-alpha_thermal_collision_time_at_point_443_______________________ (t_plasma_electron_alpha_thermal_collision_profile443)_ 4.81781354141127042e-04 -Electron-alpha_thermal_collision_time_at_point_444_______________________ (t_plasma_electron_alpha_thermal_collision_profile444)_ 4.78192782211162275e-04 -Electron-alpha_thermal_collision_time_at_point_445_______________________ (t_plasma_electron_alpha_thermal_collision_profile445)_ 4.74672789339901477e-04 -Electron-alpha_thermal_collision_time_at_point_446_______________________ (t_plasma_electron_alpha_thermal_collision_profile446)_ 4.71223481181787826e-04 -Electron-alpha_thermal_collision_time_at_point_447_______________________ (t_plasma_electron_alpha_thermal_collision_profile447)_ 4.67847095442712078e-04 -Electron-alpha_thermal_collision_time_at_point_448_______________________ (t_plasma_electron_alpha_thermal_collision_profile448)_ 4.64546016605023868e-04 -Electron-alpha_thermal_collision_time_at_point_449_______________________ (t_plasma_electron_alpha_thermal_collision_profile449)_ 4.61322792982814028e-04 -Electron-alpha_thermal_collision_time_at_point_450_______________________ (t_plasma_electron_alpha_thermal_collision_profile450)_ 4.58180156600708998e-04 -Electron-alpha_thermal_collision_time_at_point_451_______________________ (t_plasma_electron_alpha_thermal_collision_profile451)_ 4.55121046523626811e-04 -Electron-alpha_thermal_collision_time_at_point_452_______________________ (t_plasma_electron_alpha_thermal_collision_profile452)_ 4.52148636444750073e-04 -Electron-alpha_thermal_collision_time_at_point_453_______________________ (t_plasma_electron_alpha_thermal_collision_profile453)_ 4.49266367583145377e-04 -Electron-alpha_thermal_collision_time_at_point_454_______________________ (t_plasma_electron_alpha_thermal_collision_profile454)_ 4.46477988279252462e-04 -Electron-alpha_thermal_collision_time_at_point_455_______________________ (t_plasma_electron_alpha_thermal_collision_profile455)_ 4.43787602148995770e-04 -Electron-alpha_thermal_collision_time_at_point_456_______________________ (t_plasma_electron_alpha_thermal_collision_profile456)_ 4.41199727332932735e-04 -Electron-alpha_thermal_collision_time_at_point_457_______________________ (t_plasma_electron_alpha_thermal_collision_profile457)_ 4.38719370363670137e-04 -Electron-alpha_thermal_collision_time_at_point_458_______________________ (t_plasma_electron_alpha_thermal_collision_profile458)_ 4.36352119651137833e-04 -Electron-alpha_thermal_collision_time_at_point_459_______________________ (t_plasma_electron_alpha_thermal_collision_profile459)_ 4.34104265854901180e-04 -Electron-alpha_thermal_collision_time_at_point_460_______________________ (t_plasma_electron_alpha_thermal_collision_profile460)_ 4.31982960012813194e-04 -Electron-alpha_thermal_collision_time_at_point_461_______________________ (t_plasma_electron_alpha_thermal_collision_profile461)_ 4.29996426217092254e-04 -Electron-alpha_thermal_collision_time_at_point_462_______________________ (t_plasma_electron_alpha_thermal_collision_profile462)_ 4.28154255794832941e-04 -Electron-alpha_thermal_collision_time_at_point_463_______________________ (t_plasma_electron_alpha_thermal_collision_profile463)_ 4.26467828316041985e-04 -Electron-alpha_thermal_collision_time_at_point_464_______________________ (t_plasma_electron_alpha_thermal_collision_profile464)_ 4.24950940063445004e-04 -Electron-alpha_thermal_collision_time_at_point_465_______________________ (t_plasma_electron_alpha_thermal_collision_profile465)_ 4.23620793979948885e-04 -Electron-alpha_thermal_collision_time_at_point_466_______________________ (t_plasma_electron_alpha_thermal_collision_profile466)_ 4.22499673735964813e-04 -Electron-alpha_thermal_collision_time_at_point_467_______________________ (t_plasma_electron_alpha_thermal_collision_profile467)_ 4.21618068635555099e-04 -Electron-alpha_thermal_collision_time_at_point_468_______________________ (t_plasma_electron_alpha_thermal_collision_profile468)_ 4.21021443248139032e-04 -Electron-alpha_thermal_collision_time_at_point_469_______________________ (t_plasma_electron_alpha_thermal_collision_profile469)_ 4.20789258131249420e-04 -Electron-alpha_thermal_collision_time_at_point_470_______________________ (t_plasma_electron_alpha_thermal_collision_profile470)_ 4.21151287103598796e-04 -Electron-alpha_thermal_collision_time_at_point_471_______________________ (t_plasma_electron_alpha_thermal_collision_profile471)_ 4.06843929294528909e-04 -Electron-alpha_thermal_collision_time_at_point_472_______________________ (t_plasma_electron_alpha_thermal_collision_profile472)_ 3.92449007399135784e-04 -Electron-alpha_thermal_collision_time_at_point_473_______________________ (t_plasma_electron_alpha_thermal_collision_profile473)_ 3.77968533760199299e-04 -Electron-alpha_thermal_collision_time_at_point_474_______________________ (t_plasma_electron_alpha_thermal_collision_profile474)_ 3.63404960494575699e-04 -Electron-alpha_thermal_collision_time_at_point_475_______________________ (t_plasma_electron_alpha_thermal_collision_profile475)_ 3.48761243089929212e-04 -Electron-alpha_thermal_collision_time_at_point_476_______________________ (t_plasma_electron_alpha_thermal_collision_profile476)_ 3.34040914087316222e-04 -Electron-alpha_thermal_collision_time_at_point_477_______________________ (t_plasma_electron_alpha_thermal_collision_profile477)_ 3.19248168742434688e-04 -Electron-alpha_thermal_collision_time_at_point_478_______________________ (t_plasma_electron_alpha_thermal_collision_profile478)_ 3.04387964987495765e-04 -Electron-alpha_thermal_collision_time_at_point_479_______________________ (t_plasma_electron_alpha_thermal_collision_profile479)_ 2.89466140562752243e-04 -Electron-alpha_thermal_collision_time_at_point_480_______________________ (t_plasma_electron_alpha_thermal_collision_profile480)_ 2.74489550890890895e-04 -Electron-alpha_thermal_collision_time_at_point_481_______________________ (t_plasma_electron_alpha_thermal_collision_profile481)_ 2.59466232183366255e-04 -Electron-alpha_thermal_collision_time_at_point_482_______________________ (t_plasma_electron_alpha_thermal_collision_profile482)_ 2.44405595472820089e-04 -Electron-alpha_thermal_collision_time_at_point_483_______________________ (t_plasma_electron_alpha_thermal_collision_profile483)_ 2.29318658871532558e-04 -Electron-alpha_thermal_collision_time_at_point_484_______________________ (t_plasma_electron_alpha_thermal_collision_profile484)_ 2.14218327525993375e-04 -Electron-alpha_thermal_collision_time_at_point_485_______________________ (t_plasma_electron_alpha_thermal_collision_profile485)_ 1.99119733716731539e-04 -Electron-alpha_thermal_collision_time_at_point_486_______________________ (t_plasma_electron_alpha_thermal_collision_profile486)_ 1.84040653714191130e-04 -Electron-alpha_thermal_collision_time_at_point_487_______________________ (t_plasma_electron_alpha_thermal_collision_profile487)_ 1.69002023930429082e-04 -Electron-alpha_thermal_collision_time_at_point_488_______________________ (t_plasma_electron_alpha_thermal_collision_profile488)_ 1.54028587542921281e-04 -Electron-alpha_thermal_collision_time_at_point_489_______________________ (t_plasma_electron_alpha_thermal_collision_profile489)_ 1.39149715668928259e-04 -Electron-alpha_thermal_collision_time_at_point_490_______________________ (t_plasma_electron_alpha_thermal_collision_profile490)_ 1.24400467009746753e-04 -Electron-alpha_thermal_collision_time_at_point_491_______________________ (t_plasma_electron_alpha_thermal_collision_profile491)_ 1.09822981434899299e-04 -Electron-alpha_thermal_collision_time_at_point_492_______________________ (t_plasma_electron_alpha_thermal_collision_profile492)_ 9.54683551532867181e-05 -Electron-alpha_thermal_collision_time_at_point_493_______________________ (t_plasma_electron_alpha_thermal_collision_profile493)_ 8.13992355102621145e-05 -Electron-alpha_thermal_collision_time_at_point_494_______________________ (t_plasma_electron_alpha_thermal_collision_profile494)_ 6.76935390677836743e-05 -Electron-alpha_thermal_collision_time_at_point_495_______________________ (t_plasma_electron_alpha_thermal_collision_profile495)_ 5.44500217429608343e-05 -Electron-alpha_thermal_collision_time_at_point_496_______________________ (t_plasma_electron_alpha_thermal_collision_profile496)_ 4.17971262500771852e-05 -Electron-alpha_thermal_collision_time_at_point_497_______________________ (t_plasma_electron_alpha_thermal_collision_profile497)_ 2.99082057812428443e-05 -Electron-alpha_thermal_collision_time_at_point_498_______________________ (t_plasma_electron_alpha_thermal_collision_profile498)_ 1.90309434694019445e-05 -Electron-alpha_thermal_collision_time_at_point_499_______________________ (t_plasma_electron_alpha_thermal_collision_profile499)_ 9.55580932826639103e-06 -Electron-alpha_thermal_collision_time_at_point_500_______________________ (t_plasma_electron_alpha_thermal_collision_profile500)_ 2.31367628078311617e-06 -Volume_averaged_electron-electron_collision_frequency_(Hz)_______________ (freq_plasma_electron_electron_collision_vol_avg)_ 1.45034118674118599e+03 -Electron-electron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_electron_collision_profile0)_ 6.65447922597799788e+02 -Electron-electron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_electron_collision_profile1)_ 6.65451707179113214e+02 -Electron-electron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_electron_collision_profile2)_ 6.65463061131904283e+02 -Electron-electron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_electron_collision_profile3)_ 6.65481985082749475e+02 -Electron-electron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_electron_collision_profile4)_ 6.65508480076027922e+02 -Electron-electron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_electron_collision_profile5)_ 6.65542547574048172e+02 -Electron-electron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_electron_collision_profile6)_ 6.65584189457225762e+02 -Electron-electron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_electron_collision_profile7)_ 6.65633408024312303e+02 -Electron-electron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_electron_collision_profile8)_ 6.65690205992675715e+02 -Electron-electron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_electron_collision_profile9)_ 6.65754586498630033e+02 -Electron-electron_collision_frequency_at_point_10________________________ (freq_plasma_electron_electron_collision_profile10)_ 6.65826553097816827e+02 -Electron-electron_collision_frequency_at_point_11________________________ (freq_plasma_electron_electron_collision_profile11)_ 6.65906109765639485e+02 -Electron-electron_collision_frequency_at_point_12________________________ (freq_plasma_electron_electron_collision_profile12)_ 6.65993260897745813e+02 -Electron-electron_collision_frequency_at_point_13________________________ (freq_plasma_electron_electron_collision_profile13)_ 6.66088011310564752e+02 -Electron-electron_collision_frequency_at_point_14________________________ (freq_plasma_electron_electron_collision_profile14)_ 6.66190366241891297e+02 -Electron-electron_collision_frequency_at_point_15________________________ (freq_plasma_electron_electron_collision_profile15)_ 6.66300331351526893e+02 -Electron-electron_collision_frequency_at_point_16________________________ (freq_plasma_electron_electron_collision_profile16)_ 6.66417912721968719e+02 -Electron-electron_collision_frequency_at_point_17________________________ (freq_plasma_electron_electron_collision_profile17)_ 6.66543116859151041e+02 -Electron-electron_collision_frequency_at_point_18________________________ (freq_plasma_electron_electron_collision_profile18)_ 6.66675950693240225e+02 -Electron-electron_collision_frequency_at_point_19________________________ (freq_plasma_electron_electron_collision_profile19)_ 6.66816421579478742e+02 -Electron-electron_collision_frequency_at_point_20________________________ (freq_plasma_electron_electron_collision_profile20)_ 6.66964537299085691e+02 -Electron-electron_collision_frequency_at_point_21________________________ (freq_plasma_electron_electron_collision_profile21)_ 6.67120306060206190e+02 -Electron-electron_collision_frequency_at_point_22________________________ (freq_plasma_electron_electron_collision_profile22)_ 6.67283736498916028e+02 -Electron-electron_collision_frequency_at_point_23________________________ (freq_plasma_electron_electron_collision_profile23)_ 6.67454837680276796e+02 -Electron-electron_collision_frequency_at_point_24________________________ (freq_plasma_electron_electron_collision_profile24)_ 6.67633619099445468e+02 -Electron-electron_collision_frequency_at_point_25________________________ (freq_plasma_electron_electron_collision_profile25)_ 6.67820090682838668e+02 -Electron-electron_collision_frequency_at_point_26________________________ (freq_plasma_electron_electron_collision_profile26)_ 6.68014262789348436e+02 -Electron-electron_collision_frequency_at_point_27________________________ (freq_plasma_electron_electron_collision_profile27)_ 6.68216146211610294e+02 -Electron-electron_collision_frequency_at_point_28________________________ (freq_plasma_electron_electron_collision_profile28)_ 6.68425752177331788e+02 -Electron-electron_collision_frequency_at_point_29________________________ (freq_plasma_electron_electron_collision_profile29)_ 6.68643092350667644e+02 -Electron-electron_collision_frequency_at_point_30________________________ (freq_plasma_electron_electron_collision_profile30)_ 6.68868178833656088e+02 -Electron-electron_collision_frequency_at_point_31________________________ (freq_plasma_electron_electron_collision_profile31)_ 6.69101024167703599e+02 -Electron-electron_collision_frequency_at_point_32________________________ (freq_plasma_electron_electron_collision_profile32)_ 6.69341641335133090e+02 -Electron-electron_collision_frequency_at_point_33________________________ (freq_plasma_electron_electron_collision_profile33)_ 6.69590043760778485e+02 -Electron-electron_collision_frequency_at_point_34________________________ (freq_plasma_electron_electron_collision_profile34)_ 6.69846245313644090e+02 -Electron-electron_collision_frequency_at_point_35________________________ (freq_plasma_electron_electron_collision_profile35)_ 6.70110260308612396e+02 -Electron-electron_collision_frequency_at_point_36________________________ (freq_plasma_electron_electron_collision_profile36)_ 6.70382103508215209e+02 -Electron-electron_collision_frequency_at_point_37________________________ (freq_plasma_electron_electron_collision_profile37)_ 6.70661790124456274e+02 -Electron-electron_collision_frequency_at_point_38________________________ (freq_plasma_electron_electron_collision_profile38)_ 6.70949335820694728e+02 -Electron-electron_collision_frequency_at_point_39________________________ (freq_plasma_electron_electron_collision_profile39)_ 6.71244756713585161e+02 -Electron-electron_collision_frequency_at_point_40________________________ (freq_plasma_electron_electron_collision_profile40)_ 6.71548069375076466e+02 -Electron-electron_collision_frequency_at_point_41________________________ (freq_plasma_electron_electron_collision_profile41)_ 6.71859290834467288e+02 -Electron-electron_collision_frequency_at_point_42________________________ (freq_plasma_electron_electron_collision_profile42)_ 6.72178438580523675e+02 -Electron-electron_collision_frequency_at_point_43________________________ (freq_plasma_electron_electron_collision_profile43)_ 6.72505530563652542e+02 -Electron-electron_collision_frequency_at_point_44________________________ (freq_plasma_electron_electron_collision_profile44)_ 6.72840585198139479e+02 -Electron-electron_collision_frequency_at_point_45________________________ (freq_plasma_electron_electron_collision_profile45)_ 6.73183621364441933e+02 -Electron-electron_collision_frequency_at_point_46________________________ (freq_plasma_electron_electron_collision_profile46)_ 6.73534658411547071e+02 -Electron-electron_collision_frequency_at_point_47________________________ (freq_plasma_electron_electron_collision_profile47)_ 6.73893716159389442e+02 -Electron-electron_collision_frequency_at_point_48________________________ (freq_plasma_electron_electron_collision_profile48)_ 6.74260814901331173e+02 -Electron-electron_collision_frequency_at_point_49________________________ (freq_plasma_electron_electron_collision_profile49)_ 6.74635975406702755e+02 -Electron-electron_collision_frequency_at_point_50________________________ (freq_plasma_electron_electron_collision_profile50)_ 6.75019218923410676e+02 -Electron-electron_collision_frequency_at_point_51________________________ (freq_plasma_electron_electron_collision_profile51)_ 6.75410567180602925e+02 -Electron-electron_collision_frequency_at_point_52________________________ (freq_plasma_electron_electron_collision_profile52)_ 6.75810042391404409e+02 -Electron-electron_collision_frequency_at_point_53________________________ (freq_plasma_electron_electron_collision_profile53)_ 6.76217667255712854e+02 -Electron-electron_collision_frequency_at_point_54________________________ (freq_plasma_electron_electron_collision_profile54)_ 6.76633464963061556e+02 -Electron-electron_collision_frequency_at_point_55________________________ (freq_plasma_electron_electron_collision_profile55)_ 6.77057459195547835e+02 -Electron-electron_collision_frequency_at_point_56________________________ (freq_plasma_electron_electron_collision_profile56)_ 6.77489674130827666e+02 -Electron-electron_collision_frequency_at_point_57________________________ (freq_plasma_electron_electron_collision_profile57)_ 6.77930134445178169e+02 -Electron-electron_collision_frequency_at_point_58________________________ (freq_plasma_electron_electron_collision_profile58)_ 6.78378865316627525e+02 -Electron-electron_collision_frequency_at_point_59________________________ (freq_plasma_electron_electron_collision_profile59)_ 6.78835892428151737e+02 -Electron-electron_collision_frequency_at_point_60________________________ (freq_plasma_electron_electron_collision_profile60)_ 6.79301241970943124e+02 -Electron-electron_collision_frequency_at_point_61________________________ (freq_plasma_electron_electron_collision_profile61)_ 6.79774940647747144e+02 -Electron-electron_collision_frequency_at_point_62________________________ (freq_plasma_electron_electron_collision_profile62)_ 6.80257015676270498e+02 -Electron-electron_collision_frequency_at_point_63________________________ (freq_plasma_electron_electron_collision_profile63)_ 6.80747494792657790e+02 -Electron-electron_collision_frequency_at_point_64________________________ (freq_plasma_electron_electron_collision_profile64)_ 6.81246406255046281e+02 -Electron-electron_collision_frequency_at_point_65________________________ (freq_plasma_electron_electron_collision_profile65)_ 6.81753778847186368e+02 -Electron-electron_collision_frequency_at_point_66________________________ (freq_plasma_electron_electron_collision_profile66)_ 6.82269641882140490e+02 -Electron-electron_collision_frequency_at_point_67________________________ (freq_plasma_electron_electron_collision_profile67)_ 6.82794025206053561e+02 -Electron-electron_collision_frequency_at_point_68________________________ (freq_plasma_electron_electron_collision_profile68)_ 6.83326959202001945e+02 -Electron-electron_collision_frequency_at_point_69________________________ (freq_plasma_electron_electron_collision_profile69)_ 6.83868474793913720e+02 -Electron-electron_collision_frequency_at_point_70________________________ (freq_plasma_electron_electron_collision_profile70)_ 6.84418603450571709e+02 -Electron-electron_collision_frequency_at_point_71________________________ (freq_plasma_electron_electron_collision_profile71)_ 6.84977377189687445e+02 -Electron-electron_collision_frequency_at_point_72________________________ (freq_plasma_electron_electron_collision_profile72)_ 6.85544828582060404e+02 -Electron-electron_collision_frequency_at_point_73________________________ (freq_plasma_electron_electron_collision_profile73)_ 6.86120990755812841e+02 -Electron-electron_collision_frequency_at_point_74________________________ (freq_plasma_electron_electron_collision_profile74)_ 6.86705897400706021e+02 -Electron-electron_collision_frequency_at_point_75________________________ (freq_plasma_electron_electron_collision_profile75)_ 6.87299582772538201e+02 -Electron-electron_collision_frequency_at_point_76________________________ (freq_plasma_electron_electron_collision_profile76)_ 6.87902081697624226e+02 -Electron-electron_collision_frequency_at_point_77________________________ (freq_plasma_electron_electron_collision_profile77)_ 6.88513429577361194e+02 -Electron-electron_collision_frequency_at_point_78________________________ (freq_plasma_electron_electron_collision_profile78)_ 6.89133662392874612e+02 -Electron-electron_collision_frequency_at_point_79________________________ (freq_plasma_electron_electron_collision_profile79)_ 6.89762816709752656e+02 -Electron-electron_collision_frequency_at_point_80________________________ (freq_plasma_electron_electron_collision_profile80)_ 6.90400929682865922e+02 -Electron-electron_collision_frequency_at_point_81________________________ (freq_plasma_electron_electron_collision_profile81)_ 6.91048039061277677e+02 -Electron-electron_collision_frequency_at_point_82________________________ (freq_plasma_electron_electron_collision_profile82)_ 6.91704183193236304e+02 -Electron-electron_collision_frequency_at_point_83________________________ (freq_plasma_electron_electron_collision_profile83)_ 6.92369401031264033e+02 -Electron-electron_collision_frequency_at_point_84________________________ (freq_plasma_electron_electron_collision_profile84)_ 6.93043732137333905e+02 -Electron-electron_collision_frequency_at_point_85________________________ (freq_plasma_electron_electron_collision_profile85)_ 6.93727216688138697e+02 -Electron-electron_collision_frequency_at_point_86________________________ (freq_plasma_electron_electron_collision_profile86)_ 6.94419895480453533e+02 -Electron-electron_collision_frequency_at_point_87________________________ (freq_plasma_electron_electron_collision_profile87)_ 6.95121809936594104e+02 -Electron-electron_collision_frequency_at_point_88________________________ (freq_plasma_electron_electron_collision_profile88)_ 6.95833002109968447e+02 -Electron-electron_collision_frequency_at_point_89________________________ (freq_plasma_electron_electron_collision_profile89)_ 6.96553514690725819e+02 -Electron-electron_collision_frequency_at_point_90________________________ (freq_plasma_electron_electron_collision_profile90)_ 6.97283391011508115e+02 -Electron-electron_collision_frequency_at_point_91________________________ (freq_plasma_electron_electron_collision_profile91)_ 6.98022675053294734e+02 -Electron-electron_collision_frequency_at_point_92________________________ (freq_plasma_electron_electron_collision_profile92)_ 6.98771411451353401e+02 -Electron-electron_collision_frequency_at_point_93________________________ (freq_plasma_electron_electron_collision_profile93)_ 6.99529645501289451e+02 -Electron-electron_collision_frequency_at_point_94________________________ (freq_plasma_electron_electron_collision_profile94)_ 7.00297423165202076e+02 -Electron-electron_collision_frequency_at_point_95________________________ (freq_plasma_electron_electron_collision_profile95)_ 7.01074791077943587e+02 -Electron-electron_collision_frequency_at_point_96________________________ (freq_plasma_electron_electron_collision_profile96)_ 7.01861796553485533e+02 -Electron-electron_collision_frequency_at_point_97________________________ (freq_plasma_electron_electron_collision_profile97)_ 7.02658487591394419e+02 -Electron-electron_collision_frequency_at_point_98________________________ (freq_plasma_electron_electron_collision_profile98)_ 7.03464912883413376e+02 -Electron-electron_collision_frequency_at_point_99________________________ (freq_plasma_electron_electron_collision_profile99)_ 7.04281121820159910e+02 -Electron-electron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_electron_collision_profile100)_ 7.05107164497930967e+02 -Electron-electron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_electron_collision_profile101)_ 7.05943091725627255e+02 -Electron-electron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_electron_collision_profile102)_ 7.06788955031787964e+02 -Electron-electron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_electron_collision_profile103)_ 7.07644806671748711e+02 -Electron-electron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_electron_collision_profile104)_ 7.08510699634913067e+02 -Electron-electron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_electron_collision_profile105)_ 7.09386687652149362e+02 -Electron-electron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_electron_collision_profile106)_ 7.10272825203308230e+02 -Electron-electron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_electron_collision_profile107)_ 7.11169167524862360e+02 -Electron-electron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_electron_collision_profile108)_ 7.12075770617678131e+02 -Electron-electron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_electron_collision_profile109)_ 7.12992691254908436e+02 -Electron-electron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_electron_collision_profile110)_ 7.13919986990020789e+02 -Electron-electron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_electron_collision_profile111)_ 7.14857716164954127e+02 -Electron-electron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_electron_collision_profile112)_ 7.15805937918410109e+02 -Electron-electron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_electron_collision_profile113)_ 7.16764712194282083e+02 -Electron-electron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_electron_collision_profile114)_ 7.17734099750218775e+02 -Electron-electron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_electron_collision_profile115)_ 7.18714162166328492e+02 -Electron-electron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_electron_collision_profile116)_ 7.19704961854028056e+02 -Electron-electron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_electron_collision_profile117)_ 7.20706562065031221e+02 -Electron-electron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_electron_collision_profile118)_ 7.21719026900489098e+02 -Electron-electron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_electron_collision_profile119)_ 7.22742421320273138e+02 -Electron-electron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_electron_collision_profile120)_ 7.23776811152411824e+02 -Electron-electron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_electron_collision_profile121)_ 7.24822263102680267e+02 -Electron-electron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_electron_collision_profile122)_ 7.25878844764347718e+02 -Electron-electron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_electron_collision_profile123)_ 7.26946624628076052e+02 -Electron-electron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_electron_collision_profile124)_ 7.28025672091985371e+02 -Electron-electron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_electron_collision_profile125)_ 7.29116057471878435e+02 -Electron-electron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_electron_collision_profile126)_ 7.30217852011632544e+02 -Electron-electron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_electron_collision_profile127)_ 7.31331127893757866e+02 -Electron-electron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_electron_collision_profile128)_ 7.32455958250126173e+02 -Electron-electron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_electron_collision_profile129)_ 7.33592417172873070e+02 -Electron-electron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_electron_collision_profile130)_ 7.34740579725478028e+02 -Electron-electron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_electron_collision_profile131)_ 7.35900521954018700e+02 -Electron-electron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_electron_collision_profile132)_ 7.37072320898610997e+02 -Electron-electron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_electron_collision_profile133)_ 7.38256054605031409e+02 -Electron-electron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_electron_collision_profile134)_ 7.39451802136525998e+02 -Electron-electron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_electron_collision_profile135)_ 7.40659643585811864e+02 -Electron-electron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_electron_collision_profile136)_ 7.41879660087270167e+02 -Electron-electron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_electron_collision_profile137)_ 7.43111933829337431e+02 -Electron-electron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_electron_collision_profile138)_ 7.44356548067091694e+02 -Electron-electron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_electron_collision_profile139)_ 7.45613587135049670e+02 -Electron-electron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_electron_collision_profile140)_ 7.46883136460161495e+02 -Electron-electron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_electron_collision_profile141)_ 7.48165282575020342e+02 -Electron-electron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_electron_collision_profile142)_ 7.49460113131284061e+02 -Electron-electron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_electron_collision_profile143)_ 7.50767716913308959e+02 -Electron-electron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_electron_collision_profile144)_ 7.52088183852010957e+02 -Electron-electron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_electron_collision_profile145)_ 7.53421605038944563e+02 -Electron-electron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_electron_collision_profile146)_ 7.54768072740607863e+02 -Electron-electron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_electron_collision_profile147)_ 7.56127680412984887e+02 -Electron-electron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_electron_collision_profile148)_ 7.57500522716315459e+02 -Electron-electron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_electron_collision_profile149)_ 7.58886695530109478e+02 -Electron-electron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_electron_collision_profile150)_ 7.60286295968397326e+02 -Electron-electron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_electron_collision_profile151)_ 7.61699422395234706e+02 -Electron-electron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_electron_collision_profile152)_ 7.63126174440450200e+02 -Electron-electron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_electron_collision_profile153)_ 7.64566653015652037e+02 -Electron-electron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_electron_collision_profile154)_ 7.66020960330494177e+02 -Electron-electron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_electron_collision_profile155)_ 7.67489199909202739e+02 -Electron-electron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_electron_collision_profile156)_ 7.68971476607373347e+02 -Electron-electron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_electron_collision_profile157)_ 7.70467896629038250e+02 -Electron-electron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_electron_collision_profile158)_ 7.71978567544010502e+02 -Electron-electron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_electron_collision_profile159)_ 7.73503598305513037e+02 -Electron-electron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_electron_collision_profile160)_ 7.75043099268088213e+02 -Electron-electron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_electron_collision_profile161)_ 7.76597182205803051e+02 -Electron-electron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_electron_collision_profile162)_ 7.78165960330748476e+02 -Electron-electron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_electron_collision_profile163)_ 7.79749548311840272e+02 -Electron-electron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_electron_collision_profile164)_ 7.81348062293924158e+02 -Electron-electron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_electron_collision_profile165)_ 7.82961619917196117e+02 -Electron-electron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_electron_collision_profile166)_ 7.84590340336934787e+02 -Electron-electron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_electron_collision_profile167)_ 7.86234344243558553e+02 -Electron-electron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_electron_collision_profile168)_ 7.87893753883010277e+02 -Electron-electron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_electron_collision_profile169)_ 7.89568693077473768e+02 -Electron-electron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_electron_collision_profile170)_ 7.91259287246428926e+02 -Electron-electron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_electron_collision_profile171)_ 7.92965663428053631e+02 -Electron-electron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_electron_collision_profile172)_ 7.94687950300972830e+02 -Electron-electron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_electron_collision_profile173)_ 7.96426278206368465e+02 -Electron-electron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_electron_collision_profile174)_ 7.98180779170447522e+02 -Electron-electron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_electron_collision_profile175)_ 7.99951586927281028e+02 -Electron-electron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_electron_collision_profile176)_ 8.01738836942020498e+02 -Electron-electron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_electron_collision_profile177)_ 8.03542666434491707e+02 -Electron-electron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_electron_collision_profile178)_ 8.05363214403181246e+02 -Electron-electron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_electron_collision_profile179)_ 8.07200621649613709e+02 -Electron-electron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_electron_collision_profile180)_ 8.09055030803135310e+02 -Electron-electron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_electron_collision_profile181)_ 8.10926586346103818e+02 -Electron-electron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_electron_collision_profile182)_ 8.12815434639493787e+02 -Electron-electron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_electron_collision_profile183)_ 8.14721723948929366e+02 -Electron-electron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_electron_collision_profile184)_ 8.16645604471139336e+02 -Electron-electron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_electron_collision_profile185)_ 8.18587228360861445e+02 -Electron-electron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_electron_collision_profile186)_ 8.20546749758182045e+02 -Electron-electron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_electron_collision_profile187)_ 8.22524324816336502e+02 -Electron-electron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_electron_collision_profile188)_ 8.24520111729966629e+02 -Electron-electron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_electron_collision_profile189)_ 8.26534270763849236e+02 -Electron-electron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_electron_collision_profile190)_ 8.28566964282104095e+02 -Electron-electron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_electron_collision_profile191)_ 8.30618356777884742e+02 -Electron-electron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_electron_collision_profile192)_ 8.32688614903564030e+02 -Electron-electron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_electron_collision_profile193)_ 8.34777907501427535e+02 -Electron-electron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_electron_collision_profile194)_ 8.36886405634872062e+02 -Electron-electron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_electron_collision_profile195)_ 8.39014282620130984e+02 -Electron-electron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_electron_collision_profile196)_ 8.41161714058524581e+02 -Electron-electron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_electron_collision_profile197)_ 8.43328877869255848e+02 -Electron-electron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_electron_collision_profile198)_ 8.45515954322748712e+02 -Electron-electron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_electron_collision_profile199)_ 8.47723126074549214e+02 -Electron-electron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_electron_collision_profile200)_ 8.49950578199792290e+02 -Electron-electron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_electron_collision_profile201)_ 8.52198498228249264e+02 -Electron-electron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_electron_collision_profile202)_ 8.54467076179960941e+02 -Electron-electron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_electron_collision_profile203)_ 8.56756504601471761e+02 -Electron-electron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_electron_collision_profile204)_ 8.59066978602671611e+02 -Electron-electron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_electron_collision_profile205)_ 8.61398695894257571e+02 -Electron-electron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_electron_collision_profile206)_ 8.63751856825826962e+02 -Electron-electron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_electron_collision_profile207)_ 8.66126664424612386e+02 -Electron-electron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_electron_collision_profile208)_ 8.68523324434868641e+02 -Electron-electron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_electron_collision_profile209)_ 8.70942045357925281e+02 -Electron-electron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_electron_collision_profile210)_ 8.73383038492914238e+02 -Electron-electron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_electron_collision_profile211)_ 8.75846517978185602e+02 -Electron-electron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_electron_collision_profile212)_ 8.78332700833424497e+02 -Electron-electron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_electron_collision_profile213)_ 8.80841807002478163e+02 -Electron-electron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_electron_collision_profile214)_ 8.83374059396908706e+02 -Electron-electron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_electron_collision_profile215)_ 8.85929683940282757e+02 -Electron-electron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_electron_collision_profile216)_ 8.88508909613211472e+02 -Electron-electron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_electron_collision_profile217)_ 8.91111968499153136e+02 -Electron-electron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_electron_collision_profile218)_ 8.93739095830991914e+02 -Electron-electron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_electron_collision_profile219)_ 8.96390530038408883e+02 -Electron-electron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_electron_collision_profile220)_ 8.99066512796053416e+02 -Electron-electron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_electron_collision_profile221)_ 9.01767289072529707e+02 -Electron-electron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_electron_collision_profile222)_ 9.04493107180224683e+02 -Electron-electron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_electron_collision_profile223)_ 9.07244218825970620e+02 -Electron-electron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_electron_collision_profile224)_ 9.10020879162574943e+02 -Electron-electron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_electron_collision_profile225)_ 9.12823346841221678e+02 -Electron-electron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_electron_collision_profile226)_ 9.15651884064767160e+02 -Electron-electron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_electron_collision_profile227)_ 9.18506756641936704e+02 -Electron-electron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_electron_collision_profile228)_ 9.21388234042445106e+02 -Electron-electron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_electron_collision_profile229)_ 9.24296589453052775e+02 -Electron-electron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_electron_collision_profile230)_ 9.27232099834574342e+02 -Electron-electron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_electron_collision_profile231)_ 9.30195045979857355e+02 -Electron-electron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_electron_collision_profile232)_ 9.33185712572742773e+02 -Electron-electron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_electron_collision_profile233)_ 9.36204388248030568e+02 -Electron-electron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_electron_collision_profile234)_ 9.39251365652463392e+02 -Electron-electron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_electron_collision_profile235)_ 9.42326941506739217e+02 -Electron-electron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_electron_collision_profile236)_ 9.45431416668588668e+02 -Electron-electron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_electron_collision_profile237)_ 9.48565096196912350e+02 -Electron-electron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_electron_collision_profile238)_ 9.51728289417007318e+02 -Electron-electron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_electron_collision_profile239)_ 9.54921309986906067e+02 -Electron-electron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_electron_collision_profile240)_ 9.58144475964830804e+02 -Electron-electron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_electron_collision_profile241)_ 9.61398109877794809e+02 -Electron-electron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_electron_collision_profile242)_ 9.64682538791364095e+02 -Electron-electron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_electron_collision_profile243)_ 9.67998094380595717e+02 -Electron-electron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_electron_collision_profile244)_ 9.71345113002177413e+02 -Electron-electron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_electron_collision_profile245)_ 9.74723935767784951e+02 -Electron-electron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_electron_collision_profile246)_ 9.78134908618670011e+02 -Electron-electron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_electron_collision_profile247)_ 9.81578382401513295e+02 -Electron-electron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_electron_collision_profile248)_ 9.85054712945547294e+02 -Electron-electron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_electron_collision_profile249)_ 9.88564261140976100e+02 -Electron-electron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_electron_collision_profile250)_ 9.92107393018708080e+02 -Electron-electron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_electron_collision_profile251)_ 9.95684479831432895e+02 -Electron-electron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_electron_collision_profile252)_ 9.99295898136040478e+02 -Electron-electron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_electron_collision_profile253)_ 1.00294202987743006e+03 -Electron-electron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_electron_collision_profile254)_ 1.00662326247370470e+03 -Electron-electron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_electron_collision_profile255)_ 1.01033998890278997e+03 -Electron-electron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_electron_collision_profile256)_ 1.01409260779048475e+03 -Electron-electron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_electron_collision_profile257)_ 1.01788152349997733e+03 -Electron-electron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_electron_collision_profile258)_ 1.02170714622282981e+03 -Electron-electron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_electron_collision_profile259)_ 1.02556989207147421e+03 -Electron-electron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_electron_collision_profile260)_ 1.02947018317321954e+03 -Electron-electron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_electron_collision_profile261)_ 1.03340844776580457e+03 -Electron-electron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_electron_collision_profile262)_ 1.03738512029450908e+03 -Electron-electron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_electron_collision_profile263)_ 1.04140064151085107e+03 -Electron-electron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_electron_collision_profile264)_ 1.04545545857288403e+03 -Electron-electron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_electron_collision_profile265)_ 1.04955002514711737e+03 -Electron-electron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_electron_collision_profile266)_ 1.05368480151208018e+03 -Electron-electron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_electron_collision_profile267)_ 1.05786025466354909e+03 -Electron-electron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_electron_collision_profile268)_ 1.06207685842145474e+03 -Electron-electron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_electron_collision_profile269)_ 1.06633509353850150e+03 -Electron-electron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_electron_collision_profile270)_ 1.07063544781049131e+03 -Electron-electron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_electron_collision_profile271)_ 1.07497841618840766e+03 -Electron-electron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_electron_collision_profile272)_ 1.07936450089223831e+03 -Electron-electron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_electron_collision_profile273)_ 1.08379421152659393e+03 -Electron-electron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_electron_collision_profile274)_ 1.08826806519810430e+03 -Electron-electron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_electron_collision_profile275)_ 1.09278658663463852e+03 -Electron-electron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_electron_collision_profile276)_ 1.09735030830634309e+03 -Electron-electron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_electron_collision_profile277)_ 1.10195977054852665e+03 -Electron-electron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_electron_collision_profile278)_ 1.10661552168640446e+03 -Electron-electron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_electron_collision_profile279)_ 1.11131811816171194e+03 -Electron-electron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_electron_collision_profile280)_ 1.11606812466119914e+03 -Electron-electron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_electron_collision_profile281)_ 1.12086611424703233e+03 -Electron-electron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_electron_collision_profile282)_ 1.12571266848909272e+03 -Electron-electron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_electron_collision_profile283)_ 1.13060837759919968e+03 -Electron-electron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_electron_collision_profile284)_ 1.13555384056725484e+03 -Electron-electron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_electron_collision_profile285)_ 1.14054966529932426e+03 -Electron-electron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_electron_collision_profile286)_ 1.14559646875765770e+03 -Electron-electron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_electron_collision_profile287)_ 1.15069487710264866e+03 -Electron-electron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_electron_collision_profile288)_ 1.15584552583674486e+03 -Electron-electron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_electron_collision_profile289)_ 1.16104905995029708e+03 -Electron-electron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_electron_collision_profile290)_ 1.16630613406936209e+03 -Electron-electron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_electron_collision_profile291)_ 1.17161741260543295e+03 -Electron-electron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_electron_collision_profile292)_ 1.17698356990712068e+03 -Electron-electron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_electron_collision_profile293)_ 1.18240529041374339e+03 -Electron-electron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_electron_collision_profile294)_ 1.18788326881084208e+03 -Electron-electron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_electron_collision_profile295)_ 1.19341821018759629e+03 -Electron-electron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_electron_collision_profile296)_ 1.19901083019611383e+03 -Electron-electron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_electron_collision_profile297)_ 1.20466185521259558e+03 -Electron-electron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_electron_collision_profile298)_ 1.21037202250032806e+03 -Electron-electron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_electron_collision_profile299)_ 1.21614208037449521e+03 -Electron-electron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_electron_collision_profile300)_ 1.22197278836876376e+03 -Electron-electron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_electron_collision_profile301)_ 1.22786491740361066e+03 -Electron-electron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_electron_collision_profile302)_ 1.23381924995636268e+03 -Electron-electron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_electron_collision_profile303)_ 1.23983658023287944e+03 -Electron-electron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_electron_collision_profile304)_ 1.24591771434085103e+03 -Electron-electron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_electron_collision_profile305)_ 1.25206347046464293e+03 -Electron-electron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_electron_collision_profile306)_ 1.25827467904162813e+03 -Electron-electron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_electron_collision_profile307)_ 1.26455218293993948e+03 -Electron-electron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_electron_collision_profile308)_ 1.27089683763756602e+03 -Electron-electron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_electron_collision_profile309)_ 1.27730951140270781e+03 -Electron-electron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_electron_collision_profile310)_ 1.28379108547530655e+03 -Electron-electron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_electron_collision_profile311)_ 1.29034245424964547e+03 -Electron-electron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_electron_collision_profile312)_ 1.29696452545792476e+03 -Electron-electron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_electron_collision_profile313)_ 1.30365822035467545e+03 -Electron-electron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_electron_collision_profile314)_ 1.31042447390191410e+03 -Electron-electron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_electron_collision_profile315)_ 1.31726423495487666e+03 -Electron-electron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_electron_collision_profile316)_ 1.32417846644820111e+03 -Electron-electron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_electron_collision_profile317)_ 1.33116814558240094e+03 -Electron-electron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_electron_collision_profile318)_ 1.33823426401044503e+03 -Electron-electron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_electron_collision_profile319)_ 1.34537782802427637e+03 -Electron-electron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_electron_collision_profile320)_ 1.35259985874106701e+03 -Electron-electron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_electron_collision_profile321)_ 1.35990139228898624e+03 -Electron-electron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_electron_collision_profile322)_ 1.36728347999228026e+03 -Electron-electron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_electron_collision_profile323)_ 1.37474718855538458e+03 -Electron-electron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_electron_collision_profile324)_ 1.38229360024584321e+03 -Electron-electron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_electron_collision_profile325)_ 1.38992381307572305e+03 -Electron-electron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_electron_collision_profile326)_ 1.39763894098124865e+03 -Electron-electron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_electron_collision_profile327)_ 1.40544011400031172e+03 -Electron-electron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_electron_collision_profile328)_ 1.41332847844754178e+03 -Electron-electron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_electron_collision_profile329)_ 1.42130519708653992e+03 -Electron-electron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_electron_collision_profile330)_ 1.42937144929890837e+03 -Electron-electron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_electron_collision_profile331)_ 1.43752843124964420e+03 -Electron-electron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_electron_collision_profile332)_ 1.44577735604845839e+03 -Electron-electron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_electron_collision_profile333)_ 1.45411945390653727e+03 -Electron-electron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_electron_collision_profile334)_ 1.46255597228824968e+03 -Electron-electron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_electron_collision_profile335)_ 1.47108817605725017e+03 -Electron-electron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_electron_collision_profile336)_ 1.47971734761640710e+03 -Electron-electron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_electron_collision_profile337)_ 1.48844478704094058e+03 -Electron-electron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_electron_collision_profile338)_ 1.49727181220412467e+03 -Electron-electron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_electron_collision_profile339)_ 1.50619975889485158e+03 -Electron-electron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_electron_collision_profile340)_ 1.51522998092632247e+03 -Electron-electron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_electron_collision_profile341)_ 1.52436385023508046e+03 -Electron-electron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_electron_collision_profile342)_ 1.53360275696955637e+03 -Electron-electron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_electron_collision_profile343)_ 1.54294810956722631e+03 -Electron-electron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_electron_collision_profile344)_ 1.55240133481945122e+03 -Electron-electron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_electron_collision_profile345)_ 1.56196387792299970e+03 -Electron-electron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_electron_collision_profile346)_ 1.57163720251716359e+03 -Electron-electron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_electron_collision_profile347)_ 1.58142279070537779e+03 -Electron-electron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_electron_collision_profile348)_ 1.59132214306010951e+03 -Electron-electron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_electron_collision_profile349)_ 1.60133677860976695e+03 -Electron-electron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_electron_collision_profile350)_ 1.61146823480625176e+03 -Electron-electron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_electron_collision_profile351)_ 1.62171806747175947e+03 -Electron-electron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_electron_collision_profile352)_ 1.63208785072325963e+03 -Electron-electron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_electron_collision_profile353)_ 1.64257917687308782e+03 -Electron-electron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_electron_collision_profile354)_ 1.65319365630390053e+03 -Electron-electron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_electron_collision_profile355)_ 1.66393291731620570e+03 -Electron-electron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_electron_collision_profile356)_ 1.67479860594652610e+03 -Electron-electron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_electron_collision_profile357)_ 1.68579238575417230e+03 -Electron-electron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_electron_collision_profile358)_ 1.69691593757444002e+03 -Electron-electron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_electron_collision_profile359)_ 1.70817095923597572e+03 -Electron-electron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_electron_collision_profile360)_ 1.71955916523983137e+03 -Electron-electron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_electron_collision_profile361)_ 1.73108228639770164e+03 -Electron-electron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_electron_collision_profile362)_ 1.74274206942654155e+03 -Electron-electron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_electron_collision_profile363)_ 1.75454027649674345e+03 -Electron-electron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_electron_collision_profile364)_ 1.76647868473077369e+03 -Electron-electron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_electron_collision_profile365)_ 1.77855908564904257e+03 -Electron-electron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_electron_collision_profile366)_ 1.79078328455957580e+03 -Electron-electron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_electron_collision_profile367)_ 1.80315309988785157e+03 -Electron-electron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_electron_collision_profile368)_ 1.81567036244295400e+03 -Electron-electron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_electron_collision_profile369)_ 1.82833691461598232e+03 -Electron-electron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_electron_collision_profile370)_ 1.84115460950638339e+03 -Electron-electron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_electron_collision_profile371)_ 1.85412530997166095e+03 -Electron-electron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_electron_collision_profile372)_ 1.86725088759561277e+03 -Electron-electron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_electron_collision_profile373)_ 1.88053322157001435e+03 -Electron-electron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_electron_collision_profile374)_ 1.89397419748428456e+03 -Electron-electron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_electron_collision_profile375)_ 1.90757570601747193e+03 -Electron-electron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_electron_collision_profile376)_ 1.92133964152644194e+03 -Electron-electron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_electron_collision_profile377)_ 1.93526790052390402e+03 -Electron-electron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_electron_collision_profile378)_ 1.94936238003946323e+03 -Electron-electron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_electron_collision_profile379)_ 1.96362497585654000e+03 -Electron-electron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_electron_collision_profile380)_ 1.97805758061755932e+03 -Electron-electron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_electron_collision_profile381)_ 1.99266208178939314e+03 -Electron-electron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_electron_collision_profile382)_ 2.00744035948056307e+03 -Electron-electron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_electron_collision_profile383)_ 2.02239428410121309e+03 -Electron-electron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_electron_collision_profile384)_ 2.03752571385638748e+03 -Electron-electron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_electron_collision_profile385)_ 2.05283649206253722e+03 -Electron-electron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_electron_collision_profile386)_ 2.06832844427667533e+03 -Electron-electron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_electron_collision_profile387)_ 2.08400337522693644e+03 -Electron-electron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_electron_collision_profile388)_ 2.09986306553268605e+03 -Electron-electron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_electron_collision_profile389)_ 2.11590926820162304e+03 -Electron-electron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_electron_collision_profile390)_ 2.13214370489064277e+03 -Electron-electron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_electron_collision_profile391)_ 2.14856806191639998e+03 -Electron-electron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_electron_collision_profile392)_ 2.16518398600080809e+03 -Electron-electron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_electron_collision_profile393)_ 2.18199307973576924e+03 -Electron-electron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_electron_collision_profile394)_ 2.19899689675061109e+03 -Electron-electron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_electron_collision_profile395)_ 2.21619693656471645e+03 -Electron-electron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_electron_collision_profile396)_ 2.23359463910688055e+03 -Electron-electron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_electron_collision_profile397)_ 2.25119137888181513e+03 -Electron-electron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_electron_collision_profile398)_ 2.26898845876319547e+03 -Electron-electron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_electron_collision_profile399)_ 2.28698710339134959e+03 -Electron-electron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_electron_collision_profile400)_ 2.30518845215259853e+03 -Electron-electron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_electron_collision_profile401)_ 2.32359355171577545e+03 -Electron-electron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_electron_collision_profile402)_ 2.34220334810019540e+03 -Electron-electron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_electron_collision_profile403)_ 2.36101867824779265e+03 -Electron-electron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_electron_collision_profile404)_ 2.38004026107059963e+03 -Electron-electron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_electron_collision_profile405)_ 2.39926868794310394e+03 -Electron-electron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_electron_collision_profile406)_ 2.41870441260723101e+03 -Electron-electron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_electron_collision_profile407)_ 2.43834774045585982e+03 -Electron-electron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_electron_collision_profile408)_ 2.45819881715878182e+03 -Electron-electron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_electron_collision_profile409)_ 2.47825761659288310e+03 -Electron-electron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_electron_collision_profile410)_ 2.49852392803614521e+03 -Electron-electron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_electron_collision_profile411)_ 2.51899734258256149e+03 -Electron-electron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_electron_collision_profile412)_ 2.53967723873261093e+03 -Electron-electron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_electron_collision_profile413)_ 2.56056276711107330e+03 -Electron-electron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_electron_collision_profile414)_ 2.58165283426113365e+03 -Electron-electron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_electron_collision_profile415)_ 2.60294608546046402e+03 -Electron-electron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_electron_collision_profile416)_ 2.62444088650162212e+03 -Electron-electron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_electron_collision_profile417)_ 2.64613530437538475e+03 -Electron-electron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_electron_collision_profile418)_ 2.66802708679165016e+03 -Electron-electron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_electron_collision_profile419)_ 2.69011364046818017e+03 -Electron-electron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_electron_collision_profile420)_ 2.71239200811273759e+03 -Electron-electron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_electron_collision_profile421)_ 2.73485884401894100e+03 -Electron-electron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_electron_collision_profile422)_ 2.75751038819046471e+03 -Electron-electron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_electron_collision_profile423)_ 2.78034243890189509e+03 -Electron-electron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_electron_collision_profile424)_ 2.80335032359753222e+03 -Electron-electron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_electron_collision_profile425)_ 2.82652886802158582e+03 -Electron-electron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_electron_collision_profile426)_ 2.84987236346451800e+03 -Electron-electron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_electron_collision_profile427)_ 2.87337453200031041e+03 -Electron-electron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_electron_collision_profile428)_ 2.89702848957830292e+03 -Electron-electron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_electron_collision_profile429)_ 2.92082670682047046e+03 -Electron-electron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_electron_collision_profile430)_ 2.94476096736036880e+03 -Electron-electron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_electron_collision_profile431)_ 2.96882232354314465e+03 -Electron-electron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_electron_collision_profile432)_ 2.99300104928643350e+03 -Electron-electron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_electron_collision_profile433)_ 3.01728658987920880e+03 -Electron-electron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_electron_collision_profile434)_ 3.04166750846881678e+03 -Electron-electron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_electron_collision_profile435)_ 3.06613142895497822e+03 -Electron-electron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_electron_collision_profile436)_ 3.09066497497189039e+03 -Electron-electron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_electron_collision_profile437)_ 3.11525370459492206e+03 -Electron-electron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_electron_collision_profile438)_ 3.13988204035445233e+03 -Electron-electron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_electron_collision_profile439)_ 3.16453319407436675e+03 -Electron-electron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_electron_collision_profile440)_ 3.18918908597353675e+03 -Electron-electron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_electron_collision_profile441)_ 3.21383025737157868e+03 -Electron-electron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_electron_collision_profile442)_ 3.23843577622077964e+03 -Electron-electron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_electron_collision_profile443)_ 3.26298313453768151e+03 -Electron-electron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_electron_collision_profile444)_ 3.28744813662264824e+03 -Electron-electron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_electron_collision_profile445)_ 3.31180477672254165e+03 -Electron-electron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_electron_collision_profile446)_ 3.33602510449575766e+03 -Electron-electron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_electron_collision_profile447)_ 3.36007907626076894e+03 -Electron-electron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_electron_collision_profile448)_ 3.38393438952101860e+03 -Electron-electron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_electron_collision_profile449)_ 3.40755629762350281e+03 -Electron-electron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_electron_collision_profile450)_ 3.43090740057139237e+03 -Electron-electron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_electron_collision_profile451)_ 3.45394740689784794e+03 -Electron-electron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_electron_collision_profile452)_ 3.47663286000779726e+03 -Electron-electron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_electron_collision_profile453)_ 3.49891682034606629e+03 -Electron-electron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_electron_collision_profile454)_ 3.52074849191081694e+03 -Electron-electron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_electron_collision_profile455)_ 3.54207277763006277e+03 -Electron-electron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_electron_collision_profile456)_ 3.56282974237474127e+03 -Electron-electron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_electron_collision_profile457)_ 3.58295395396194363e+03 -Electron-electron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_electron_collision_profile458)_ 3.60237365986435179e+03 -Electron-electron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_electron_collision_profile459)_ 3.62100973785673341e+03 -Electron-electron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_electron_collision_profile460)_ 3.63877432783914037e+03 -Electron-electron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_electron_collision_profile461)_ 3.65556900097243215e+03 -Electron-electron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_electron_collision_profile462)_ 3.67128223432755067e+03 -Electron-electron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_electron_collision_profile463)_ 3.68578580003479647e+03 -Electron-electron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_electron_collision_profile464)_ 3.69892937115722543e+03 -Electron-electron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_electron_collision_profile465)_ 3.71053200769007026e+03 -Electron-electron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_electron_collision_profile466)_ 3.72036771507266258e+03 -Electron-electron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_electron_collision_profile467)_ 3.72813838552353900e+03 -Electron-electron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_electron_collision_profile468)_ 3.73341492885834396e+03 -Electron-electron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_electron_collision_profile469)_ 3.73547108152865258e+03 -Electron-electron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_electron_collision_profile470)_ 3.73226050112361963e+03 -Electron-electron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_electron_collision_profile471)_ 3.86338938582753508e+03 -Electron-electron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_electron_collision_profile472)_ 4.00496505416764194e+03 -Electron-electron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_electron_collision_profile473)_ 4.15825691259054656e+03 -Electron-electron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_electron_collision_profile474)_ 4.32474407655509003e+03 -Electron-electron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_electron_collision_profile475)_ 4.50615979218971006e+03 -Electron-electron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_electron_collision_profile476)_ 4.70454749725667079e+03 -Electron-electron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_electron_collision_profile477)_ 4.92233220361901203e+03 -Electron-electron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_electron_collision_profile478)_ 5.16241226592098610e+03 -Electron-electron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_electron_collision_profile479)_ 5.42827859204378001e+03 -Electron-electron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_electron_collision_profile480)_ 5.72417126086446751e+03 -Electron-electron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_electron_collision_profile481)_ 6.05528783574957743e+03 -Electron-electron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_electron_collision_profile482)_ 6.42806419857762558e+03 -Electron-electron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_electron_collision_profile483)_ 6.85055880525588054e+03 -Electron-electron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_electron_collision_profile484)_ 7.33298713048990976e+03 -Electron-electron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_electron_collision_profile485)_ 7.88847864871780621e+03 -Electron-electron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_electron_collision_profile486)_ 8.53417102533676916e+03 -Electron-electron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_electron_collision_profile487)_ 9.29282830762348931e+03 -Electron-electron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_electron_collision_profile488)_ 1.01952968755777893e+04 -Electron-electron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_electron_collision_profile489)_ 1.12843449595222501e+04 -Electron-electron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_electron_collision_profile490)_ 1.26208741172124573e+04 -Electron-electron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_electron_collision_profile491)_ 1.42943780202559647e+04 -Electron-electron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_electron_collision_profile492)_ 1.64414075843455503e+04 -Electron-electron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_electron_collision_profile493)_ 1.92800883663534696e+04 -Electron-electron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_electron_collision_profile494)_ 2.31793472188016422e+04 -Electron-electron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_electron_collision_profile495)_ 2.88106672365189297e+04 -Electron-electron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_electron_collision_profile496)_ 3.75218949659809077e+04 -Electron-electron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_electron_collision_profile497)_ 5.24185324122285238e+04 -Electron-electron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_electron_collision_profile498)_ 8.23373435928891558e+04 -Electron-electron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_electron_collision_profile499)_ 1.63847351253279252e+05 -Electron-electron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_electron_collision_profile500)_ 6.95711980176164652e+05 -Volume_averaged_electron-deuteron_collision_frequency_(Hz)_______________ (freq_plasma_electron_deuteron_collision_vol_avg)_ 1.20490933320981003e+03 -Electron-deuteron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_deuteron_collision_profile0)_ 5.52498504856372620e+02 -Electron-deuteron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_deuteron_collision_profile1)_ 5.52501649419125329e+02 -Electron-deuteron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_deuteron_collision_profile2)_ 5.52511083281002470e+02 -Electron-deuteron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_deuteron_collision_profile3)_ 5.52526806962885530e+02 -Electron-deuteron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_deuteron_collision_profile4)_ 5.52548821332978946e+02 -Electron-deuteron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_deuteron_collision_profile5)_ 5.52577127606917088e+02 -Electron-deuteron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_deuteron_collision_profile6)_ 5.52611727347912847e+02 -Electron-deuteron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_deuteron_collision_profile7)_ 5.52652622466946241e+02 -Electron-deuteron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_deuteron_collision_profile8)_ 5.52699815222998268e+02 -Electron-deuteron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_deuteron_collision_profile9)_ 5.52753308223326258e+02 -Electron-deuteron_collision_frequency_at_point_10________________________ (freq_plasma_electron_deuteron_collision_profile10)_ 5.52813104423779009e+02 -Electron-deuteron_collision_frequency_at_point_11________________________ (freq_plasma_electron_deuteron_collision_profile11)_ 5.52879207129159113e+02 -Electron-deuteron_collision_frequency_at_point_12________________________ (freq_plasma_electron_deuteron_collision_profile12)_ 5.52951619993625400e+02 -Electron-deuteron_collision_frequency_at_point_13________________________ (freq_plasma_electron_deuteron_collision_profile13)_ 5.53030347021136777e+02 -Electron-deuteron_collision_frequency_at_point_14________________________ (freq_plasma_electron_deuteron_collision_profile14)_ 5.53115392565941306e+02 -Electron-deuteron_collision_frequency_at_point_15________________________ (freq_plasma_electron_deuteron_collision_profile15)_ 5.53206761333107238e+02 -Electron-deuteron_collision_frequency_at_point_16________________________ (freq_plasma_electron_deuteron_collision_profile16)_ 5.53304458379096104e+02 -Electron-deuteron_collision_frequency_at_point_17________________________ (freq_plasma_electron_deuteron_collision_profile17)_ 5.53408489112379925e+02 -Electron-deuteron_collision_frequency_at_point_18________________________ (freq_plasma_electron_deuteron_collision_profile18)_ 5.53518859294102981e+02 -Electron-deuteron_collision_frequency_at_point_19________________________ (freq_plasma_electron_deuteron_collision_profile19)_ 5.53635575038782235e+02 -Electron-deuteron_collision_frequency_at_point_20________________________ (freq_plasma_electron_deuteron_collision_profile20)_ 5.53758642815057783e+02 -Electron-deuteron_collision_frequency_at_point_21________________________ (freq_plasma_electron_deuteron_collision_profile21)_ 5.53888069446481154e+02 -Electron-deuteron_collision_frequency_at_point_22________________________ (freq_plasma_electron_deuteron_collision_profile22)_ 5.54023862112351708e+02 -Electron-deuteron_collision_frequency_at_point_23________________________ (freq_plasma_electron_deuteron_collision_profile23)_ 5.54166028348593500e+02 -Electron-deuteron_collision_frequency_at_point_24________________________ (freq_plasma_electron_deuteron_collision_profile24)_ 5.54314576048678873e+02 -Electron-deuteron_collision_frequency_at_point_25________________________ (freq_plasma_electron_deuteron_collision_profile25)_ 5.54469513464596275e+02 -Electron-deuteron_collision_frequency_at_point_26________________________ (freq_plasma_electron_deuteron_collision_profile26)_ 5.54630849207861274e+02 -Electron-deuteron_collision_frequency_at_point_27________________________ (freq_plasma_electron_deuteron_collision_profile27)_ 5.54798592250571801e+02 -Electron-deuteron_collision_frequency_at_point_28________________________ (freq_plasma_electron_deuteron_collision_profile28)_ 5.54972751926511819e+02 -Electron-deuteron_collision_frequency_at_point_29________________________ (freq_plasma_electron_deuteron_collision_profile29)_ 5.55153337932296495e+02 -Electron-deuteron_collision_frequency_at_point_30________________________ (freq_plasma_electron_deuteron_collision_profile30)_ 5.55340360328565453e+02 -Electron-deuteron_collision_frequency_at_point_31________________________ (freq_plasma_electron_deuteron_collision_profile31)_ 5.55533829541219006e+02 -Electron-deuteron_collision_frequency_at_point_32________________________ (freq_plasma_electron_deuteron_collision_profile32)_ 5.55733756362703957e+02 -Electron-deuteron_collision_frequency_at_point_33________________________ (freq_plasma_electron_deuteron_collision_profile33)_ 5.55940151953341569e+02 -Electron-deuteron_collision_frequency_at_point_34________________________ (freq_plasma_electron_deuteron_collision_profile34)_ 5.56153027842706479e+02 -Electron-deuteron_collision_frequency_at_point_35________________________ (freq_plasma_electron_deuteron_collision_profile35)_ 5.56372395931047322e+02 -Electron-deuteron_collision_frequency_at_point_36________________________ (freq_plasma_electron_deuteron_collision_profile36)_ 5.56598268490760006e+02 -Electron-deuteron_collision_frequency_at_point_37________________________ (freq_plasma_electron_deuteron_collision_profile37)_ 5.56830658167903266e+02 -Electron-deuteron_collision_frequency_at_point_38________________________ (freq_plasma_electron_deuteron_collision_profile38)_ 5.57069577983764816e+02 -Electron-deuteron_collision_frequency_at_point_39________________________ (freq_plasma_electron_deuteron_collision_profile39)_ 5.57315041336476156e+02 -Electron-deuteron_collision_frequency_at_point_40________________________ (freq_plasma_electron_deuteron_collision_profile40)_ 5.57567062002673197e+02 -Electron-deuteron_collision_frequency_at_point_41________________________ (freq_plasma_electron_deuteron_collision_profile41)_ 5.57825654139206904e+02 -Electron-deuteron_collision_frequency_at_point_42________________________ (freq_plasma_electron_deuteron_collision_profile42)_ 5.58090832284904195e+02 -Electron-deuteron_collision_frequency_at_point_43________________________ (freq_plasma_electron_deuteron_collision_profile43)_ 5.58362611362375674e+02 -Electron-deuteron_collision_frequency_at_point_44________________________ (freq_plasma_electron_deuteron_collision_profile44)_ 5.58641006679876568e+02 -Electron-deuteron_collision_frequency_at_point_45________________________ (freq_plasma_electron_deuteron_collision_profile45)_ 5.58926033933214285e+02 -Electron-deuteron_collision_frequency_at_point_46________________________ (freq_plasma_electron_deuteron_collision_profile46)_ 5.59217709207709049e+02 -Electron-deuteron_collision_frequency_at_point_47________________________ (freq_plasma_electron_deuteron_collision_profile47)_ 5.59516048980204914e+02 -Electron-deuteron_collision_frequency_at_point_48________________________ (freq_plasma_electron_deuteron_collision_profile48)_ 5.59821070121132266e+02 -Electron-deuteron_collision_frequency_at_point_49________________________ (freq_plasma_electron_deuteron_collision_profile49)_ 5.60132789896621603e+02 -Electron-deuteron_collision_frequency_at_point_50________________________ (freq_plasma_electron_deuteron_collision_profile50)_ 5.60451225970670976e+02 -Electron-deuteron_collision_frequency_at_point_51________________________ (freq_plasma_electron_deuteron_collision_profile51)_ 5.60776396407364700e+02 -Electron-deuteron_collision_frequency_at_point_52________________________ (freq_plasma_electron_deuteron_collision_profile52)_ 5.61108319673146866e+02 -Electron-deuteron_collision_frequency_at_point_53________________________ (freq_plasma_electron_deuteron_collision_profile53)_ 5.61447014639146914e+02 -Electron-deuteron_collision_frequency_at_point_54________________________ (freq_plasma_electron_deuteron_collision_profile54)_ 5.61792500583561718e+02 -Electron-deuteron_collision_frequency_at_point_55________________________ (freq_plasma_electron_deuteron_collision_profile55)_ 5.62144797194089733e+02 -Electron-deuteron_collision_frequency_at_point_56________________________ (freq_plasma_electron_deuteron_collision_profile56)_ 5.62503924570422214e+02 -Electron-deuteron_collision_frequency_at_point_57________________________ (freq_plasma_electron_deuteron_collision_profile57)_ 5.62869903226790825e+02 -Electron-deuteron_collision_frequency_at_point_58________________________ (freq_plasma_electron_deuteron_collision_profile58)_ 5.63242754094569364e+02 -Electron-deuteron_collision_frequency_at_point_59________________________ (freq_plasma_electron_deuteron_collision_profile59)_ 5.63622498524934826e+02 -Electron-deuteron_collision_frequency_at_point_60________________________ (freq_plasma_electron_deuteron_collision_profile60)_ 5.64009158291583276e+02 -Electron-deuteron_collision_frequency_at_point_61________________________ (freq_plasma_electron_deuteron_collision_profile61)_ 5.64402755593506299e+02 -Electron-deuteron_collision_frequency_at_point_62________________________ (freq_plasma_electron_deuteron_collision_profile62)_ 5.64803313057826244e+02 -Electron-deuteron_collision_frequency_at_point_63________________________ (freq_plasma_electron_deuteron_collision_profile63)_ 5.65210853742687164e+02 -Electron-deuteron_collision_frequency_at_point_64________________________ (freq_plasma_electron_deuteron_collision_profile64)_ 5.65625401140210101e+02 -Electron-deuteron_collision_frequency_at_point_65________________________ (freq_plasma_electron_deuteron_collision_profile65)_ 5.66046979179506707e+02 -Electron-deuteron_collision_frequency_at_point_66________________________ (freq_plasma_electron_deuteron_collision_profile66)_ 5.66475612229753324e+02 -Electron-deuteron_collision_frequency_at_point_67________________________ (freq_plasma_electron_deuteron_collision_profile67)_ 5.66911325103328750e+02 -Electron-deuteron_collision_frequency_at_point_68________________________ (freq_plasma_electron_deuteron_collision_profile68)_ 5.67354143059014518e+02 -Electron-deuteron_collision_frequency_at_point_69________________________ (freq_plasma_electron_deuteron_collision_profile69)_ 5.67804091805255780e+02 -Electron-deuteron_collision_frequency_at_point_70________________________ (freq_plasma_electron_deuteron_collision_profile70)_ 5.68261197503490166e+02 -Electron-deuteron_collision_frequency_at_point_71________________________ (freq_plasma_electron_deuteron_collision_profile71)_ 5.68725486771536907e+02 -Electron-deuteron_collision_frequency_at_point_72________________________ (freq_plasma_electron_deuteron_collision_profile72)_ 5.69196986687056324e+02 -Electron-deuteron_collision_frequency_at_point_73________________________ (freq_plasma_electron_deuteron_collision_profile73)_ 5.69675724791070365e+02 -Electron-deuteron_collision_frequency_at_point_74________________________ (freq_plasma_electron_deuteron_collision_profile74)_ 5.70161729091555117e+02 -Electron-deuteron_collision_frequency_at_point_75________________________ (freq_plasma_electron_deuteron_collision_profile75)_ 5.70655028067096282e+02 -Electron-deuteron_collision_frequency_at_point_76________________________ (freq_plasma_electron_deuteron_collision_profile76)_ 5.71155650670616751e+02 -Electron-deuteron_collision_frequency_at_point_77________________________ (freq_plasma_electron_deuteron_collision_profile77)_ 5.71663626333173056e+02 -Electron-deuteron_collision_frequency_at_point_78________________________ (freq_plasma_electron_deuteron_collision_profile78)_ 5.72178984967819815e+02 -Electron-deuteron_collision_frequency_at_point_79________________________ (freq_plasma_electron_deuteron_collision_profile79)_ 5.72701756973547845e+02 -Electron-deuteron_collision_frequency_at_point_80________________________ (freq_plasma_electron_deuteron_collision_profile80)_ 5.73231973239292870e+02 -Electron-deuteron_collision_frequency_at_point_81________________________ (freq_plasma_electron_deuteron_collision_profile81)_ 5.73769665148018134e+02 -Electron-deuteron_collision_frequency_at_point_82________________________ (freq_plasma_electron_deuteron_collision_profile82)_ 5.74314864580869312e+02 -Electron-deuteron_collision_frequency_at_point_83________________________ (freq_plasma_electron_deuteron_collision_profile83)_ 5.74867603921405021e+02 -Electron-deuteron_collision_frequency_at_point_84________________________ (freq_plasma_electron_deuteron_collision_profile84)_ 5.75427916059903623e+02 -Electron-deuteron_collision_frequency_at_point_85________________________ (freq_plasma_electron_deuteron_collision_profile85)_ 5.75995834397745512e+02 -Electron-deuteron_collision_frequency_at_point_86________________________ (freq_plasma_electron_deuteron_collision_profile86)_ 5.76571392851873156e+02 -Electron-deuteron_collision_frequency_at_point_87________________________ (freq_plasma_electron_deuteron_collision_profile87)_ 5.77154625859330963e+02 -Electron-deuteron_collision_frequency_at_point_88________________________ (freq_plasma_electron_deuteron_collision_profile88)_ 5.77745568381883231e+02 -Electron-deuteron_collision_frequency_at_point_89________________________ (freq_plasma_electron_deuteron_collision_profile89)_ 5.78344255910713173e+02 -Electron-deuteron_collision_frequency_at_point_90________________________ (freq_plasma_electron_deuteron_collision_profile90)_ 5.78950724471204808e+02 -Electron-deuteron_collision_frequency_at_point_91________________________ (freq_plasma_electron_deuteron_collision_profile91)_ 5.79565010627807283e+02 -Electron-deuteron_collision_frequency_at_point_92________________________ (freq_plasma_electron_deuteron_collision_profile92)_ 5.80187151488981272e+02 -Electron-deuteron_collision_frequency_at_point_93________________________ (freq_plasma_electron_deuteron_collision_profile93)_ 5.80817184712233598e+02 -Electron-deuteron_collision_frequency_at_point_94________________________ (freq_plasma_electron_deuteron_collision_profile94)_ 5.81455148509235642e+02 -Electron-deuteron_collision_frequency_at_point_95________________________ (freq_plasma_electron_deuteron_collision_profile95)_ 5.82101081651030313e+02 -Electron-deuteron_collision_frequency_at_point_96________________________ (freq_plasma_electron_deuteron_collision_profile96)_ 5.82755023473327356e+02 -Electron-deuteron_collision_frequency_at_point_97________________________ (freq_plasma_electron_deuteron_collision_profile97)_ 5.83417013881889147e+02 -Electron-deuteron_collision_frequency_at_point_98________________________ (freq_plasma_electron_deuteron_collision_profile98)_ 5.84087093358006200e+02 -Electron-deuteron_collision_frequency_at_point_99________________________ (freq_plasma_electron_deuteron_collision_profile99)_ 5.84765302964066109e+02 -Electron-deuteron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_deuteron_collision_profile100)_ 5.85451684349216748e+02 -Electron-deuteron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_deuteron_collision_profile101)_ 5.86146279755122578e+02 -Electron-deuteron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_deuteron_collision_profile102)_ 5.86849132021818377e+02 -Electron-deuteron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_deuteron_collision_profile103)_ 5.87560284593662573e+02 -Electron-deuteron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_deuteron_collision_profile104)_ 5.88279781525384124e+02 -Electron-deuteron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_deuteron_collision_profile105)_ 5.89007667488237644e+02 -Electron-deuteron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_deuteron_collision_profile106)_ 5.89743987776253448e+02 -Electron-deuteron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_deuteron_collision_profile107)_ 5.90488788312595375e+02 -Electron-deuteron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_deuteron_collision_profile108)_ 5.91242115656021838e+02 -Electron-deuteron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_deuteron_collision_profile109)_ 5.92004017007454763e+02 -Electron-deuteron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_deuteron_collision_profile110)_ 5.92774540216653349e+02 -Electron-deuteron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_deuteron_collision_profile111)_ 5.93553733789001853e+02 -Electron-deuteron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_deuteron_collision_profile112)_ 5.94341646892406061e+02 -Electron-deuteron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_deuteron_collision_profile113)_ 5.95138329364302422e+02 -Electron-deuteron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_deuteron_collision_profile114)_ 5.95943831718783258e+02 -Electron-deuteron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_deuteron_collision_profile115)_ 5.96758205153837139e+02 -Electron-deuteron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_deuteron_collision_profile116)_ 5.97581501558708510e+02 -Electron-deuteron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_deuteron_collision_profile117)_ 5.98413773521374992e+02 -Electron-deuteron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_deuteron_collision_profile118)_ 5.99255074336149960e+02 -Electron-deuteron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_deuteron_collision_profile119)_ 6.00105458011405290e+02 -Electron-deuteron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_deuteron_collision_profile120)_ 6.00964979277419502e+02 -Electron-deuteron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_deuteron_collision_profile121)_ 6.01833693594357328e+02 -Electron-deuteron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_deuteron_collision_profile122)_ 6.02711657160374443e+02 -Electron-deuteron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_deuteron_collision_profile123)_ 6.03598926919853852e+02 -Electron-deuteron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_deuteron_collision_profile124)_ 6.04495560571778014e+02 -Electron-deuteron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_deuteron_collision_profile125)_ 6.05401616578234211e+02 -Electron-deuteron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_deuteron_collision_profile126)_ 6.06317154173057929e+02 -Electron-deuteron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_deuteron_collision_profile127)_ 6.07242233370616418e+02 -Electron-deuteron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_deuteron_collision_profile128)_ 6.08176914974734132e+02 -Electron-deuteron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_deuteron_collision_profile129)_ 6.09121260587760503e+02 -Electron-deuteron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_deuteron_collision_profile130)_ 6.10075332619786650e+02 -Electron-deuteron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_deuteron_collision_profile131)_ 6.11039194298008624e+02 -Electron-deuteron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_deuteron_collision_profile132)_ 6.12012909676242657e+02 -Electron-deuteron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_deuteron_collision_profile133)_ 6.12996543644594112e+02 -Electron-deuteron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_deuteron_collision_profile134)_ 6.13990161939280938e+02 -Electron-deuteron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_deuteron_collision_profile135)_ 6.14993831152615826e+02 -Electron-deuteron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_deuteron_collision_profile136)_ 6.16007618743151625e+02 -Electron-deuteron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_deuteron_collision_profile137)_ 6.17031593045986483e+02 -Electron-deuteron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_deuteron_collision_profile138)_ 6.18065823283236682e+02 -Electron-deuteron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_deuteron_collision_profile139)_ 6.19110379574680792e+02 -Electron-deuteron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_deuteron_collision_profile140)_ 6.20165332948568789e+02 -Electron-deuteron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_deuteron_collision_profile141)_ 6.21230755352613414e+02 -Electron-deuteron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_deuteron_collision_profile142)_ 6.22306719665152968e+02 -Electron-deuteron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_deuteron_collision_profile143)_ 6.23393299706495327e+02 -Electron-deuteron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_deuteron_collision_profile144)_ 6.24490570250446467e+02 -Electron-deuteron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_deuteron_collision_profile145)_ 6.25598607036023964e+02 -Electron-deuteron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_deuteron_collision_profile146)_ 6.26717486779359206e+02 -Electron-deuteron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_deuteron_collision_profile147)_ 6.27847287185791060e+02 -Electron-deuteron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_deuteron_collision_profile148)_ 6.28988086962156217e+02 -Electron-deuteron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_deuteron_collision_profile149)_ 6.30139965829277457e+02 -Electron-deuteron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_deuteron_collision_profile150)_ 6.31303004534654292e+02 -Electron-deuteron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_deuteron_collision_profile151)_ 6.32477284865356069e+02 -Electron-deuteron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_deuteron_collision_profile152)_ 6.33662889661128133e+02 -Electron-deuteron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_deuteron_collision_profile153)_ 6.34859902827703877e+02 -Electron-deuteron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_deuteron_collision_profile154)_ 6.36068409350340175e+02 -Electron-deuteron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_deuteron_collision_profile155)_ 6.37288495307564062e+02 -Electron-deuteron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_deuteron_collision_profile156)_ 6.38520247885147569e+02 -Electron-deuteron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_deuteron_collision_profile157)_ 6.39763755390306414e+02 -Electron-deuteron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_deuteron_collision_profile158)_ 6.41019107266130050e+02 -Electron-deuteron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_deuteron_collision_profile159)_ 6.42286394106246007e+02 -Electron-deuteron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_deuteron_collision_profile160)_ 6.43565707669721633e+02 -Electron-deuteron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_deuteron_collision_profile161)_ 6.44857140896209444e+02 -Electron-deuteron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_deuteron_collision_profile162)_ 6.46160787921336919e+02 -Electron-deuteron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_deuteron_collision_profile163)_ 6.47476744092348213e+02 -Electron-deuteron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_deuteron_collision_profile164)_ 6.48805105983999283e+02 -Electron-deuteron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_deuteron_collision_profile165)_ 6.50145971414714495e+02 -Electron-deuteron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_deuteron_collision_profile166)_ 6.51499439463003000e+02 -Electron-deuteron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_deuteron_collision_profile167)_ 6.52865610484146941e+02 -Electron-deuteron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_deuteron_collision_profile168)_ 6.54244586127159209e+02 -Electron-deuteron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_deuteron_collision_profile169)_ 6.55636469352019276e+02 -Electron-deuteron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_deuteron_collision_profile170)_ 6.57041364447192450e+02 -Electron-deuteron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_deuteron_collision_profile171)_ 6.58459377047434259e+02 -Electron-deuteron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_deuteron_collision_profile172)_ 6.59890614151885757e+02 -Electron-deuteron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_deuteron_collision_profile173)_ 6.61335184142468847e+02 -Electron-deuteron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_deuteron_collision_profile174)_ 6.62793196802578905e+02 -Electron-deuteron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_deuteron_collision_profile175)_ 6.64264763336089572e+02 -Electron-deuteron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_deuteron_collision_profile176)_ 6.65749996386664293e+02 -Electron-deuteron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_deuteron_collision_profile177)_ 6.67249010057391729e+02 -Electron-deuteron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_deuteron_collision_profile178)_ 6.68761919930737463e+02 -Electron-deuteron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_deuteron_collision_profile179)_ 6.70288843088831072e+02 -Electron-deuteron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_deuteron_collision_profile180)_ 6.71829898134083123e+02 -Electron-deuteron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_deuteron_collision_profile181)_ 6.73385205210145614e+02 -Electron-deuteron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_deuteron_collision_profile182)_ 6.74954886023215863e+02 -Electron-deuteron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_deuteron_collision_profile183)_ 6.76539063863695446e+02 -Electron-deuteron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_deuteron_collision_profile184)_ 6.78137863628203831e+02 -Electron-deuteron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_deuteron_collision_profile185)_ 6.79751411841961612e+02 -Electron-deuteron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_deuteron_collision_profile186)_ 6.81379836681540496e+02 -Electron-deuteron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_deuteron_collision_profile187)_ 6.83023267997992207e+02 -Electron-deuteron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_deuteron_collision_profile188)_ 6.84681837340362449e+02 -Electron-deuteron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_deuteron_collision_profile189)_ 6.86355677979593111e+02 -Electron-deuteron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_deuteron_collision_profile190)_ 6.88044924932825552e+02 -Electron-deuteron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_deuteron_collision_profile191)_ 6.89749714988104529e+02 -Electron-deuteron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_deuteron_collision_profile192)_ 6.91470186729497982e+02 -Electron-deuteron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_deuteron_collision_profile193)_ 6.93206480562630304e+02 -Electron-deuteron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_deuteron_collision_profile194)_ 6.94958738740647618e+02 -Electron-deuteron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_deuteron_collision_profile195)_ 6.96727105390612451e+02 -Electron-deuteron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_deuteron_collision_profile196)_ 6.98511726540340987e+02 -Electron-deuteron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_deuteron_collision_profile197)_ 7.00312750145689620e+02 -Electron-deuteron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_deuteron_collision_profile198)_ 7.02130326118298967e+02 -Electron-deuteron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_deuteron_collision_profile199)_ 7.03964606353798899e+02 -Electron-deuteron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_deuteron_collision_profile200)_ 7.05815744760493089e+02 -Electron-deuteron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_deuteron_collision_profile201)_ 7.07683897288518665e+02 -Electron-deuteron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_deuteron_collision_profile202)_ 7.09569221959499146e+02 -Electron-deuteron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_deuteron_collision_profile203)_ 7.11471878896694989e+02 -Electron-deuteron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_deuteron_collision_profile204)_ 7.13392030355659699e+02 -Electron-deuteron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_deuteron_collision_profile205)_ 7.15329840755415034e+02 -Electron-deuteron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_deuteron_collision_profile206)_ 7.17285476710147691e+02 -Electron-deuteron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_deuteron_collision_profile207)_ 7.19259107061441568e+02 -Electron-deuteron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_deuteron_collision_profile208)_ 7.21250902911056755e+02 -Electron-deuteron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_deuteron_collision_profile209)_ 7.23261037654255119e+02 -Electron-deuteron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_deuteron_collision_profile210)_ 7.25289687013694675e+02 -Electron-deuteron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_deuteron_collision_profile211)_ 7.27337029073893177e+02 -Electron-deuteron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_deuteron_collision_profile212)_ 7.29403244316276528e+02 -Electron-deuteron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_deuteron_collision_profile213)_ 7.31488515654818229e+02 -Electron-deuteron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_deuteron_collision_profile214)_ 7.33593028472281844e+02 -Electron-deuteron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_deuteron_collision_profile215)_ 7.35716970657079628e+02 -Electron-deuteron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_deuteron_collision_profile216)_ 7.37860532640753604e+02 -Electron-deuteron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_deuteron_collision_profile217)_ 7.40023907436090326e+02 -Electron-deuteron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_deuteron_collision_profile218)_ 7.42207290675886725e+02 -Electron-deuteron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_deuteron_collision_profile219)_ 7.44410880652370338e+02 -Electron-deuteron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_deuteron_collision_profile220)_ 7.46634878357286198e+02 -Electron-deuteron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_deuteron_collision_profile221)_ 7.48879487522668569e+02 -Electron-deuteron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_deuteron_collision_profile222)_ 7.51144914662304586e+02 -Electron-deuteron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_deuteron_collision_profile223)_ 7.53431369113898882e+02 -Electron-deuteron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_deuteron_collision_profile224)_ 7.55739063081957056e+02 -Electron-deuteron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_deuteron_collision_profile225)_ 7.58068211681397315e+02 -Electron-deuteron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_deuteron_collision_profile226)_ 7.60419032981903797e+02 -Electron-deuteron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_deuteron_collision_profile227)_ 7.62791748053032734e+02 -Electron-deuteron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_deuteron_collision_profile228)_ 7.65186581010086798e+02 -Electron-deuteron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_deuteron_collision_profile229)_ 7.67603759060766833e+02 -Electron-deuteron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_deuteron_collision_profile230)_ 7.70043512552619404e+02 -Electron-deuteron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_deuteron_collision_profile231)_ 7.72506075021290940e+02 -Electron-deuteron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_deuteron_collision_profile232)_ 7.74991683239596910e+02 -Electron-deuteron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_deuteron_collision_profile233)_ 7.77500577267433528e+02 -Electron-deuteron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_deuteron_collision_profile234)_ 7.80033000502531422e+02 -Electron-deuteron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_deuteron_collision_profile235)_ 7.82589199732069460e+02 -Electron-deuteron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_deuteron_collision_profile236)_ 7.85169425185173395e+02 -Electron-deuteron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_deuteron_collision_profile237)_ 7.87773930586297638e+02 -Electron-deuteron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_deuteron_collision_profile238)_ 7.90402973209516176e+02 -Electron-deuteron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_deuteron_collision_profile239)_ 7.93056813933736748e+02 -Electron-deuteron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_deuteron_collision_profile240)_ 7.95735717298842815e+02 -Electron-deuteron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_deuteron_collision_profile241)_ 7.98439951562796523e+02 -Electron-deuteron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_deuteron_collision_profile242)_ 8.01169788759702442e+02 -Electron-deuteron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_deuteron_collision_profile243)_ 8.03925504758852071e+02 -Electron-deuteron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_deuteron_collision_profile244)_ 8.06707379324770727e+02 -Electron-deuteron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_deuteron_collision_profile245)_ 8.09515696178277608e+02 -Electron-deuteron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_deuteron_collision_profile246)_ 8.12350743058570060e+02 -Electron-deuteron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_deuteron_collision_profile247)_ 8.15212811786362408e+02 -Electron-deuteron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_deuteron_collision_profile248)_ 8.18102198328079794e+02 -Electron-deuteron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_deuteron_collision_profile249)_ 8.21019202861136478e+02 -Electron-deuteron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_deuteron_collision_profile250)_ 8.23964129840305077e+02 -Electron-deuteron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_deuteron_collision_profile251)_ 8.26937288065203006e+02 -Electron-deuteron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_deuteron_collision_profile252)_ 8.29938990748902143e+02 -Electron-deuteron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_deuteron_collision_profile253)_ 8.32969555587692525e+02 -Electron-deuteron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_deuteron_collision_profile254)_ 8.36029304831998274e+02 -Electron-deuteron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_deuteron_collision_profile255)_ 8.39118565358486080e+02 -Electron-deuteron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_deuteron_collision_profile256)_ 8.42237668743360473e+02 -Electron-deuteron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_deuteron_collision_profile257)_ 8.45386951336880657e+02 -Electron-deuteron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_deuteron_collision_profile258)_ 8.48566754339105842e+02 -Electron-deuteron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_deuteron_collision_profile259)_ 8.51777423876889657e+02 -Electron-deuteron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_deuteron_collision_profile260)_ 8.55019311082143645e+02 -Electron-deuteron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_deuteron_collision_profile261)_ 8.58292772171381216e+02 -Electron-deuteron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_deuteron_collision_profile262)_ 8.61598168526564336e+02 -Electron-deuteron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_deuteron_collision_profile263)_ 8.64935866777267279e+02 -Electron-deuteron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_deuteron_collision_profile264)_ 8.68306238884176310e+02 -Electron-deuteron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_deuteron_collision_profile265)_ 8.71709662223941791e+02 -Electron-deuteron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_deuteron_collision_profile266)_ 8.75146519675396235e+02 -Electron-deuteron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_deuteron_collision_profile267)_ 8.78617199707163081e+02 -Electron-deuteron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_deuteron_collision_profile268)_ 8.82122096466660196e+02 -Electron-deuteron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_deuteron_collision_profile269)_ 8.85661609870533880e+02 -Electron-deuteron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_deuteron_collision_profile270)_ 8.89236145696508061e+02 -Electron-deuteron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_deuteron_collision_profile271)_ 8.92846115676707882e+02 -Electron-deuteron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_deuteron_collision_profile272)_ 8.96491937592424165e+02 -Electron-deuteron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_deuteron_collision_profile273)_ 9.00174035370378647e+02 -Electron-deuteron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_deuteron_collision_profile274)_ 9.03892839180467945e+02 -Electron-deuteron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_deuteron_collision_profile275)_ 9.07648785535033312e+02 -Electron-deuteron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_deuteron_collision_profile276)_ 9.11442317389635605e+02 -Electron-deuteron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_deuteron_collision_profile277)_ 9.15273884245378213e+02 -Electron-deuteron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_deuteron_collision_profile278)_ 9.19143942252774877e+02 -Electron-deuteron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_deuteron_collision_profile279)_ 9.23052954317176614e+02 -Electron-deuteron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_deuteron_collision_profile280)_ 9.27001390205768530e+02 -Electron-deuteron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_deuteron_collision_profile281)_ 9.30989726656150879e+02 -Electron-deuteron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_deuteron_collision_profile282)_ 9.35018447486507284e+02 -Electron-deuteron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_deuteron_collision_profile283)_ 9.39088043707373231e+02 -Electron-deuteron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_deuteron_collision_profile284)_ 9.43199013635008555e+02 -Electron-deuteron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_deuteron_collision_profile285)_ 9.47351863006383269e+02 -Electron-deuteron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_deuteron_collision_profile286)_ 9.51547105095780125e+02 -Electron-deuteron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_deuteron_collision_profile287)_ 9.55785260833014604e+02 -Electron-deuteron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_deuteron_collision_profile288)_ 9.60066858923280734e+02 -Electron-deuteron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_deuteron_collision_profile289)_ 9.64392435968615359e+02 -Electron-deuteron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_deuteron_collision_profile290)_ 9.68762536590988361e+02 -Electron-deuteron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_deuteron_collision_profile291)_ 9.73177713557004722e+02 -Electron-deuteron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_deuteron_collision_profile292)_ 9.77638527904229363e+02 -Electron-deuteron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_deuteron_collision_profile293)_ 9.82145549069106551e+02 -Electron-deuteron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_deuteron_collision_profile294)_ 9.86699355016488198e+02 -Electron-deuteron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_deuteron_collision_profile295)_ 9.91300532370737869e+02 -Electron-deuteron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_deuteron_collision_profile296)_ 9.95949676548412413e+02 -Electron-deuteron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_deuteron_collision_profile297)_ 1.00064739189249451e+03 -Electron-deuteron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_deuteron_collision_profile298)_ 1.00539429180816319e+03 -Electron-deuteron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_deuteron_collision_profile299)_ 1.01019099890007078e+03 -Electron-deuteron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_deuteron_collision_profile300)_ 1.01503814511111011e+03 -Electron-deuteron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_deuteron_collision_profile301)_ 1.01993637186263231e+03 -Electron-deuteron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_deuteron_collision_profile302)_ 1.02488633019609256e+03 -Electron-deuteron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_deuteron_collision_profile303)_ 1.02988868091607196e+03 -Electron-deuteron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_deuteron_collision_profile304)_ 1.03494409473464839e+03 -Electron-deuteron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_deuteron_collision_profile305)_ 1.04005325241705691e+03 -Electron-deuteron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_deuteron_collision_profile306)_ 1.04521684492859595e+03 -Electron-deuteron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_deuteron_collision_profile307)_ 1.05043557358272392e+03 -Electron-deuteron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_deuteron_collision_profile308)_ 1.05571015019027413e+03 -Electron-deuteron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_deuteron_collision_profile309)_ 1.06104129720972765e+03 -Electron-deuteron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_deuteron_collision_profile310)_ 1.06642974789846949e+03 -Electron-deuteron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_deuteron_collision_profile311)_ 1.07187624646494419e+03 -Electron-deuteron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_deuteron_collision_profile312)_ 1.07738154822162323e+03 -Electron-deuteron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_deuteron_collision_profile313)_ 1.08294641973868374e+03 -Electron-deuteron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_deuteron_collision_profile314)_ 1.08857163899830971e+03 -Electron-deuteron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_deuteron_collision_profile315)_ 1.09425799554948026e+03 -Electron-deuteron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_deuteron_collision_profile316)_ 1.10000629066313945e+03 -Electron-deuteron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_deuteron_collision_profile317)_ 1.10581733748762008e+03 -Electron-deuteron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_deuteron_collision_profile318)_ 1.11169196120415768e+03 -Electron-deuteron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_deuteron_collision_profile319)_ 1.11763099918236753e+03 -Electron-deuteron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_deuteron_collision_profile320)_ 1.12363530113550814e+03 -Electron-deuteron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_deuteron_collision_profile321)_ 1.12970572927535090e+03 -Electron-deuteron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_deuteron_collision_profile322)_ 1.13584315846647996e+03 -Electron-deuteron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_deuteron_collision_profile323)_ 1.14204847637980561e+03 -Electron-deuteron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_deuteron_collision_profile324)_ 1.14832258364508743e+03 -Electron-deuteron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_deuteron_collision_profile325)_ 1.15466639400221834e+03 -Electron-deuteron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_deuteron_collision_profile326)_ 1.16108083445103557e+03 -Electron-deuteron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_deuteron_collision_profile327)_ 1.16756684539937646e+03 -Electron-deuteron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_deuteron_collision_profile328)_ 1.17412538080911372e+03 -Electron-deuteron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_deuteron_collision_profile329)_ 1.18075740833984196e+03 -Electron-deuteron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_deuteron_collision_profile330)_ 1.18746390948990984e+03 -Electron-deuteron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_deuteron_collision_profile331)_ 1.19424587973443499e+03 -Electron-deuteron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_deuteron_collision_profile332)_ 1.20110432865994130e+03 -Electron-deuteron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_deuteron_collision_profile333)_ 1.20804028009522426e+03 -Electron-deuteron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_deuteron_collision_profile334)_ 1.21505477223800949e+03 -Electron-deuteron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_deuteron_collision_profile335)_ 1.22214885777696645e+03 -Electron-deuteron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_deuteron_collision_profile336)_ 1.22932360400860330e+03 -Electron-deuteron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_deuteron_collision_profile337)_ 1.23658009294851377e+03 -Electron-deuteron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_deuteron_collision_profile338)_ 1.24391942143645861e+03 -Electron-deuteron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_deuteron_collision_profile339)_ 1.25134270123468650e+03 -Electron-deuteron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_deuteron_collision_profile340)_ 1.25885105911888195e+03 -Electron-deuteron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_deuteron_collision_profile341)_ 1.26644563696109776e+03 -Electron-deuteron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_deuteron_collision_profile342)_ 1.27412759180397279e+03 -Electron-deuteron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_deuteron_collision_profile343)_ 1.28189809592548545e+03 -Electron-deuteron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_deuteron_collision_profile344)_ 1.28975833689347860e+03 -Electron-deuteron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_deuteron_collision_profile345)_ 1.29770951760911271e+03 -Electron-deuteron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_deuteron_collision_profile346)_ 1.30575285633835256e+03 -Electron-deuteron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_deuteron_collision_profile347)_ 1.31388958673057323e+03 -Electron-deuteron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_deuteron_collision_profile348)_ 1.32212095782325605e+03 -Electron-deuteron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_deuteron_collision_profile349)_ 1.33044823403174883e+03 -Electron-deuteron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_deuteron_collision_profile350)_ 1.33887269512293005e+03 -Electron-deuteron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_deuteron_collision_profile351)_ 1.34739563617162321e+03 -Electron-deuteron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_deuteron_collision_profile352)_ 1.35601836749845324e+03 -Electron-deuteron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_deuteron_collision_profile353)_ 1.36474221458785269e+03 -Electron-deuteron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_deuteron_collision_profile354)_ 1.37356851798473599e+03 -Electron-deuteron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_deuteron_collision_profile355)_ 1.38249863316838832e+03 -Electron-deuteron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_deuteron_collision_profile356)_ 1.39153393040192327e+03 -Electron-deuteron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_deuteron_collision_profile357)_ 1.40067579455564487e+03 -Electron-deuteron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_deuteron_collision_profile358)_ 1.40992562490248679e+03 -Electron-deuteron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_deuteron_collision_profile359)_ 1.41928483488365168e+03 -Electron-deuteron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_deuteron_collision_profile360)_ 1.42875485184239460e+03 -Electron-deuteron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_deuteron_collision_profile361)_ 1.43833711672385311e+03 -Electron-deuteron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_deuteron_collision_profile362)_ 1.44803308373860227e+03 -Electron-deuteron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_deuteron_collision_profile363)_ 1.45784421998758944e+03 -Electron-deuteron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_deuteron_collision_profile364)_ 1.46777200504584471e+03 -Electron-deuteron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_deuteron_collision_profile365)_ 1.47781793050232613e+03 -Electron-deuteron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_deuteron_collision_profile366)_ 1.48798349945299469e+03 -Electron-deuteron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_deuteron_collision_profile367)_ 1.49827022594413393e+03 -Electron-deuteron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_deuteron_collision_profile368)_ 1.50867963436268224e+03 -Electron-deuteron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_deuteron_collision_profile369)_ 1.51921325877021536e+03 -Electron-deuteron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_deuteron_collision_profile370)_ 1.52987264217696361e+03 -Electron-deuteron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_deuteron_collision_profile371)_ 1.54065933575208692e+03 -Electron-deuteron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_deuteron_collision_profile372)_ 1.55157489796616915e+03 -Electron-deuteron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_deuteron_collision_profile373)_ 1.56262089366169562e+03 -Electron-deuteron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_deuteron_collision_profile374)_ 1.57379889304697781e+03 -Electron-deuteron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_deuteron_collision_profile375)_ 1.58511047060880742e+03 -Electron-deuteron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_deuteron_collision_profile376)_ 1.59655720393874094e+03 -Electron-deuteron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_deuteron_collision_profile377)_ 1.60814067246772788e+03 -Electron-deuteron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_deuteron_collision_profile378)_ 1.61986245610340279e+03 -Electron-deuteron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_deuteron_collision_profile379)_ 1.63172413376409827e+03 -Electron-deuteron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_deuteron_collision_profile380)_ 1.64372728180322656e+03 -Electron-deuteron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_deuteron_collision_profile381)_ 1.65587347231739022e+03 -Electron-deuteron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_deuteron_collision_profile382)_ 1.66816427133112484e+03 -Electron-deuteron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_deuteron_collision_profile383)_ 1.68060123685080544e+03 -Electron-deuteron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_deuteron_collision_profile384)_ 1.69318591677983227e+03 -Electron-deuteron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_deuteron_collision_profile385)_ 1.70591984668670352e+03 -Electron-deuteron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_deuteron_collision_profile386)_ 1.71880454741718518e+03 -Electron-deuteron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_deuteron_collision_profile387)_ 1.73184152254118862e+03 -Electron-deuteron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_deuteron_collision_profile388)_ 1.74503225562451348e+03 -Electron-deuteron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_deuteron_collision_profile389)_ 1.75837820731498641e+03 -Electron-deuteron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_deuteron_collision_profile390)_ 1.77188081223198947e+03 -Electron-deuteron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_deuteron_collision_profile391)_ 1.78554147564766595e+03 -Electron-deuteron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_deuteron_collision_profile392)_ 1.79936156994751605e+03 -Electron-deuteron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_deuteron_collision_profile393)_ 1.81334243085729895e+03 -Electron-deuteron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_deuteron_collision_profile394)_ 1.82748535342250125e+03 -Electron-deuteron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_deuteron_collision_profile395)_ 1.84179158772577625e+03 -Electron-deuteron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_deuteron_collision_profile396)_ 1.85626233432697813e+03 -Electron-deuteron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_deuteron_collision_profile397)_ 1.87089873940950997e+03 -Electron-deuteron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_deuteron_collision_profile398)_ 1.88570188961580016e+03 -Electron-deuteron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_deuteron_collision_profile399)_ 1.90067280655370473e+03 -Electron-deuteron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_deuteron_collision_profile400)_ 1.91581244095467105e+03 -Electron-deuteron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_deuteron_collision_profile401)_ 1.93112166646329433e+03 -Electron-deuteron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_deuteron_collision_profile402)_ 1.94660127303685886e+03 -Electron-deuteron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_deuteron_collision_profile403)_ 1.96225195993211560e+03 -Electron-deuteron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_deuteron_collision_profile404)_ 1.97807432825533851e+03 -Electron-deuteron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_deuteron_collision_profile405)_ 1.99406887305025862e+03 -Electron-deuteron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_deuteron_collision_profile406)_ 2.01023597489704844e+03 -Electron-deuteron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_deuteron_collision_profile407)_ 2.02657589099394568e+03 -Electron-deuteron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_deuteron_collision_profile408)_ 2.04308874569150066e+03 -Electron-deuteron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_deuteron_collision_profile409)_ 2.05977452044759229e+03 -Electron-deuteron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_deuteron_collision_profile410)_ 2.07663304316958693e+03 -Electron-deuteron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_deuteron_collision_profile411)_ 2.09366397690792792e+03 -Electron-deuteron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_deuteron_collision_profile412)_ 2.11086680786336819e+03 -Electron-deuteron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_deuteron_collision_profile413)_ 2.12824083266772277e+03 -Electron-deuteron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_deuteron_collision_profile414)_ 2.14578514489562122e+03 -Electron-deuteron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_deuteron_collision_profile415)_ 2.16349862076204772e+03 -Electron-deuteron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_deuteron_collision_profile416)_ 2.18137990395765610e+03 -Electron-deuteron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_deuteron_collision_profile417)_ 2.19942738957076517e+03 -Electron-deuteron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_deuteron_collision_profile418)_ 2.21763920704160364e+03 -Electron-deuteron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_deuteron_collision_profile419)_ 2.23601320209074720e+03 -Electron-deuteron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_deuteron_collision_profile420)_ 2.25454691755978911e+03 -Electron-deuteron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_deuteron_collision_profile421)_ 2.27323757309789289e+03 -Electron-deuteron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_deuteron_collision_profile422)_ 2.29208204362315064e+03 -Electron-deuteron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_deuteron_collision_profile423)_ 2.31107683648243710e+03 -Electron-deuteron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_deuteron_collision_profile424)_ 2.33021806722756764e+03 -Electron-deuteron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_deuteron_collision_profile425)_ 2.34950143391906158e+03 -Electron-deuteron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_deuteron_collision_profile426)_ 2.36892218986158286e+03 -Electron-deuteron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_deuteron_collision_profile427)_ 2.38847511466681590e+03 -Electron-deuteron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_deuteron_collision_profile428)_ 2.40815448353027750e+03 -Electron-deuteron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_deuteron_collision_profile429)_ 2.42795403459792487e+03 -Electron-deuteron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_deuteron_collision_profile430)_ 2.44786693428626495e+03 -Electron-deuteron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_deuteron_collision_profile431)_ 2.46788574040562116e+03 -Electron-deuteron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_deuteron_collision_profile432)_ 2.48800236291995861e+03 -Electron-deuteron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_deuteron_collision_profile433)_ 2.50820802215774711e+03 -Electron-deuteron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_deuteron_collision_profile434)_ 2.52849320426595204e+03 -Electron-deuteron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_deuteron_collision_profile435)_ 2.54884761367313558e+03 -Electron-deuteron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_deuteron_collision_profile436)_ 2.56926012229634125e+03 -Electron-deuteron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_deuteron_collision_profile437)_ 2.58971871518918124e+03 -Electron-deuteron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_deuteron_collision_profile438)_ 2.61021043228381086e+03 -Electron-deuteron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_deuteron_collision_profile439)_ 2.63072130582525369e+03 -Electron-deuteron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_deuteron_collision_profile440)_ 2.65123629303069447e+03 -Electron-deuteron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_deuteron_collision_profile441)_ 2.67173920342563497e+03 -Electron-deuteron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_deuteron_collision_profile442)_ 2.69221262020941595e+03 -Electron-deuteron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_deuteron_collision_profile443)_ 2.71263781487917686e+03 -Electron-deuteron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_deuteron_collision_profile444)_ 2.73299465418722275e+03 -Electron-deuteron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_deuteron_collision_profile445)_ 2.75326149831276234e+03 -Electron-deuteron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_deuteron_collision_profile446)_ 2.77341508888273120e+03 -Electron-deuteron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_deuteron_collision_profile447)_ 2.79343042516192145e+03 -Electron-deuteron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_deuteron_collision_profile448)_ 2.81328062632615956e+03 -Electron-deuteron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_deuteron_collision_profile449)_ 2.83293677720363576e+03 -Electron-deuteron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_deuteron_collision_profile450)_ 2.85236775417295030e+03 -Electron-deuteron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_deuteron_collision_profile451)_ 2.87154002698014574e+03 -Electron-deuteron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_deuteron_collision_profile452)_ 2.89041743098857978e+03 -Electron-deuteron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_deuteron_collision_profile453)_ 2.90896090267092677e+03 -Electron-deuteron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_deuteron_collision_profile454)_ 2.92712816878995409e+03 -Electron-deuteron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_deuteron_collision_profile455)_ 2.94487337638521512e+03 -Electron-deuteron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_deuteron_collision_profile456)_ 2.96214664590287248e+03 -Electron-deuteron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_deuteron_collision_profile457)_ 2.97889352279952118e+03 -Electron-deuteron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_deuteron_collision_profile458)_ 2.99505429243489516e+03 -Electron-deuteron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_deuteron_collision_profile459)_ 3.01056310685416383e+03 -Electron-deuteron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_deuteron_collision_profile460)_ 3.02534684627202159e+03 -Electron-deuteron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_deuteron_collision_profile461)_ 3.03932359554562163e+03 -Electron-deuteron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_deuteron_collision_profile462)_ 3.05240054275093917e+03 -Electron-deuteron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_deuteron_collision_profile463)_ 3.06447097448957447e+03 -Electron-deuteron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_deuteron_collision_profile464)_ 3.07540978728697655e+03 -Electron-deuteron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_deuteron_collision_profile465)_ 3.08506640285976027e+03 -Electron-deuteron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_deuteron_collision_profile466)_ 3.09325275095198185e+03 -Electron-deuteron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_deuteron_collision_profile467)_ 3.09972075304198006e+03 -Electron-deuteron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_deuteron_collision_profile468)_ 3.10411333552975202e+03 -Electron-deuteron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_deuteron_collision_profile469)_ 3.10582613701834953e+03 -Electron-deuteron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_deuteron_collision_profile470)_ 3.10315631465604974e+03 -Electron-deuteron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_deuteron_collision_profile471)_ 3.21228405134910736e+03 -Electron-deuteron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_deuteron_collision_profile472)_ 3.33010972109557724e+03 -Electron-deuteron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_deuteron_collision_profile473)_ 3.45769059215443576e+03 -Electron-deuteron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_deuteron_collision_profile474)_ 3.59625864729065279e+03 -Electron-deuteron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_deuteron_collision_profile475)_ 3.74725760225709109e+03 -Electron-deuteron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_deuteron_collision_profile476)_ 3.91238962606802124e+03 -Electron-deuteron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_deuteron_collision_profile477)_ 4.09367483296574619e+03 -Electron-deuteron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_deuteron_collision_profile478)_ 4.29352776883414117e+03 -Electron-deuteron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_deuteron_collision_profile479)_ 4.51485677504007799e+03 -Electron-deuteron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_deuteron_collision_profile480)_ 4.76119453953269931e+03 -Electron-deuteron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_deuteron_collision_profile481)_ 5.03687175046673838e+03 -Electron-deuteron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_deuteron_collision_profile482)_ 5.34725121951003621e+03 -Electron-deuteron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_deuteron_collision_profile483)_ 5.69904824698883840e+03 -Electron-deuteron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_deuteron_collision_profile484)_ 6.10077623722949193e+03 -Electron-deuteron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_deuteron_collision_profile485)_ 6.56337791248390295e+03 -Electron-deuteron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_deuteron_collision_profile486)_ 7.10113778932853893e+03 -Electron-deuteron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_deuteron_collision_profile487)_ 7.73303175591534637e+03 -Electron-deuteron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_deuteron_collision_profile488)_ 8.48477554592387241e+03 -Electron-deuteron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_deuteron_collision_profile489)_ 9.39202756901716566e+03 -Electron-deuteron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_deuteron_collision_profile490)_ 1.05055709782572012e+04 -Electron-deuteron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_deuteron_collision_profile491)_ 1.19000402797393854e+04 -Electron-deuteron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_deuteron_collision_profile492)_ 1.36893304942940340e+04 -Electron-deuteron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_deuteron_collision_profile493)_ 1.60554065989494957e+04 -Electron-deuteron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_deuteron_collision_profile494)_ 1.93060931909563624e+04 -Electron-deuteron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_deuteron_collision_profile495)_ 2.40017849996251462e+04 -Electron-deuteron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_deuteron_collision_profile496)_ 3.12676435074762994e+04 -Electron-deuteron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_deuteron_collision_profile497)_ 4.36969559574158411e+04 -Electron-deuteron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_deuteron_collision_profile498)_ 6.86722350265974528e+04 -Electron-deuteron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_deuteron_collision_profile499)_ 1.36764681451193843e+05 -Electron-deuteron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_deuteron_collision_profile500)_ 5.81812374283196055e+05 -Volume_averaged_electron-triton_collision_frequency_(Hz)_________________ (freq_plasma_electron_triton_collision_vol_avg)_ 1.20491228864359960e+03 -Electron-triton_collision_frequency_at_point_0___________________________ (freq_plasma_electron_triton_collision_profile0)_ 5.52499764483983768e+02 -Electron-triton_collision_frequency_at_point_1___________________________ (freq_plasma_electron_triton_collision_profile1)_ 5.52502909054723773e+02 -Electron-triton_collision_frequency_at_point_2___________________________ (freq_plasma_electron_triton_collision_profile2)_ 5.52512342940563940e+02 -Electron-triton_collision_frequency_at_point_3___________________________ (freq_plasma_electron_triton_collision_profile3)_ 5.52528066662386436e+02 -Electron-triton_collision_frequency_at_point_4___________________________ (freq_plasma_electron_triton_collision_profile4)_ 5.52550081088398315e+02 -Electron-triton_collision_frequency_at_point_5___________________________ (freq_plasma_electron_triton_collision_profile5)_ 5.52578387434237129e+02 -Electron-triton_collision_frequency_at_point_6___________________________ (freq_plasma_electron_triton_collision_profile6)_ 5.52612987263119976e+02 -Electron-triton_collision_frequency_at_point_7___________________________ (freq_plasma_electron_triton_collision_profile7)_ 5.52653882486031307e+02 -Electron-triton_collision_frequency_at_point_8___________________________ (freq_plasma_electron_triton_collision_profile8)_ 5.52701075361958829e+02 -Electron-triton_collision_frequency_at_point_9___________________________ (freq_plasma_electron_triton_collision_profile9)_ 5.52754568498165781e+02 -Electron-triton_collision_frequency_at_point_10__________________________ (freq_plasma_electron_triton_collision_profile10)_ 5.52814364850509264e+02 -Electron-triton_collision_frequency_at_point_11__________________________ (freq_plasma_electron_triton_collision_profile11)_ 5.52880467723800507e+02 -Electron-triton_collision_frequency_at_point_12__________________________ (freq_plasma_electron_triton_collision_profile12)_ 5.52952880772207664e+02 -Electron-triton_collision_frequency_at_point_13__________________________ (freq_plasma_electron_triton_collision_profile13)_ 5.53031607999700213e+02 -Electron-triton_collision_frequency_at_point_14__________________________ (freq_plasma_electron_triton_collision_profile14)_ 5.53116653760537588e+02 -Electron-triton_collision_frequency_at_point_15__________________________ (freq_plasma_electron_triton_collision_profile15)_ 5.53208022759800087e+02 -Electron-triton_collision_frequency_at_point_16__________________________ (freq_plasma_electron_triton_collision_profile16)_ 5.53305720053962773e+02 -Electron-triton_collision_frequency_at_point_17__________________________ (freq_plasma_electron_triton_collision_profile17)_ 5.53409751051511648e+02 -Electron-triton_collision_frequency_at_point_18__________________________ (freq_plasma_electron_triton_collision_profile18)_ 5.53520121513606000e+02 -Electron-triton_collision_frequency_at_point_19__________________________ (freq_plasma_electron_triton_collision_profile19)_ 5.53636837554778481e+02 -Electron-triton_collision_frequency_at_point_20__________________________ (freq_plasma_electron_triton_collision_profile20)_ 5.53759905643686579e+02 -Electron-triton_collision_frequency_at_point_21__________________________ (freq_plasma_electron_triton_collision_profile21)_ 5.53889332603899447e+02 -Electron-triton_collision_frequency_at_point_22__________________________ (freq_plasma_electron_triton_collision_profile22)_ 5.54025125614734975e+02 -Electron-triton_collision_frequency_at_point_23__________________________ (freq_plasma_electron_triton_collision_profile23)_ 5.54167292212137113e+02 -Electron-triton_collision_frequency_at_point_24__________________________ (freq_plasma_electron_triton_collision_profile24)_ 5.54315840289599009e+02 -Electron-triton_collision_frequency_at_point_25__________________________ (freq_plasma_electron_triton_collision_profile25)_ 5.54470778099130257e+02 -Electron-triton_collision_frequency_at_point_26__________________________ (freq_plasma_electron_triton_collision_profile26)_ 5.54632114252269048e+02 -Electron-triton_collision_frequency_at_point_27__________________________ (freq_plasma_electron_triton_collision_profile27)_ 5.54799857721136618e+02 -Electron-triton_collision_frequency_at_point_28__________________________ (freq_plasma_electron_triton_collision_profile28)_ 5.54974017839541716e+02 -Electron-triton_collision_frequency_at_point_29__________________________ (freq_plasma_electron_triton_collision_profile29)_ 5.55154604304124291e+02 -Electron-triton_collision_frequency_at_point_30__________________________ (freq_plasma_electron_triton_collision_profile30)_ 5.55341627175550570e+02 -Electron-triton_collision_frequency_at_point_31__________________________ (freq_plasma_electron_triton_collision_profile31)_ 5.55535096879748039e+02 -Electron-triton_collision_frequency_at_point_32__________________________ (freq_plasma_electron_triton_collision_profile32)_ 5.55735024209191351e+02 -Electron-triton_collision_frequency_at_point_33__________________________ (freq_plasma_electron_triton_collision_profile33)_ 5.55941420324231672e+02 -Electron-triton_collision_frequency_at_point_34__________________________ (freq_plasma_electron_triton_collision_profile34)_ 5.56154296754473080e+02 -Electron-triton_collision_frequency_at_point_35__________________________ (freq_plasma_electron_triton_collision_profile35)_ 5.56373665400195478e+02 -Electron-triton_collision_frequency_at_point_36__________________________ (freq_plasma_electron_triton_collision_profile36)_ 5.56599538533826717e+02 -Electron-triton_collision_frequency_at_point_37__________________________ (freq_plasma_electron_triton_collision_profile37)_ 5.56831928801458616e+02 -Electron-triton_collision_frequency_at_point_38__________________________ (freq_plasma_electron_triton_collision_profile38)_ 5.57070849224413223e+02 -Electron-triton_collision_frequency_at_point_39__________________________ (freq_plasma_electron_triton_collision_profile39)_ 5.57316313200856598e+02 -Electron-triton_collision_frequency_at_point_40__________________________ (freq_plasma_electron_triton_collision_profile40)_ 5.57568334507460463e+02 -Electron-triton_collision_frequency_at_point_41__________________________ (freq_plasma_electron_triton_collision_profile41)_ 5.57826927301113642e+02 -Electron-triton_collision_frequency_at_point_42__________________________ (freq_plasma_electron_triton_collision_profile42)_ 5.58092106120680000e+02 -Electron-triton_collision_frequency_at_point_43__________________________ (freq_plasma_electron_triton_collision_profile43)_ 5.58363885888809932e+02 -Electron-triton_collision_frequency_at_point_44__________________________ (freq_plasma_electron_triton_collision_profile44)_ 5.58642281913798001e+02 -Electron-triton_collision_frequency_at_point_45__________________________ (freq_plasma_electron_triton_collision_profile45)_ 5.58927309891493223e+02 -Electron-triton_collision_frequency_at_point_46__________________________ (freq_plasma_electron_triton_collision_profile46)_ 5.59218985907257434e+02 -Electron-triton_collision_frequency_at_point_47__________________________ (freq_plasma_electron_triton_collision_profile47)_ 5.59517326437977772e+02 -Electron-triton_collision_frequency_at_point_48__________________________ (freq_plasma_electron_triton_collision_profile48)_ 5.59822348354128735e+02 -Electron-triton_collision_frequency_at_point_49__________________________ (freq_plasma_electron_triton_collision_profile49)_ 5.60134068921886069e+02 -Electron-triton_collision_frequency_at_point_50__________________________ (freq_plasma_electron_triton_collision_profile50)_ 5.60452505805293640e+02 -Electron-triton_collision_frequency_at_point_51__________________________ (freq_plasma_electron_triton_collision_profile51)_ 5.60777677068483513e+02 -Electron-triton_collision_frequency_at_point_52__________________________ (freq_plasma_electron_triton_collision_profile52)_ 5.61109601177947638e+02 -Electron-triton_collision_frequency_at_point_53__________________________ (freq_plasma_electron_triton_collision_profile53)_ 5.61448297004864912e+02 -Electron-triton_collision_frequency_at_point_54__________________________ (freq_plasma_electron_triton_collision_profile54)_ 5.61793783827482230e+02 -Electron-triton_collision_frequency_at_point_55__________________________ (freq_plasma_electron_triton_collision_profile55)_ 5.62146081333550001e+02 -Electron-triton_collision_frequency_at_point_56__________________________ (freq_plasma_electron_triton_collision_profile56)_ 5.62505209622811776e+02 -Electron-triton_collision_frequency_at_point_57__________________________ (freq_plasma_electron_triton_collision_profile57)_ 5.62871189209552995e+02 -Electron-triton_collision_frequency_at_point_58__________________________ (freq_plasma_electron_triton_collision_profile58)_ 5.63244041025201909e+02 -Electron-triton_collision_frequency_at_point_59__________________________ (freq_plasma_electron_triton_collision_profile59)_ 5.63623786420991337e+02 -Electron-triton_collision_frequency_at_point_60__________________________ (freq_plasma_electron_triton_collision_profile60)_ 5.64010447170674752e+02 -Electron-triton_collision_frequency_at_point_61__________________________ (freq_plasma_electron_triton_collision_profile61)_ 5.64404045473301039e+02 -Electron-triton_collision_frequency_at_point_62__________________________ (freq_plasma_electron_triton_collision_profile62)_ 5.64804603956052347e+02 -Electron-triton_collision_frequency_at_point_63__________________________ (freq_plasma_electron_triton_collision_profile63)_ 5.65212145677132753e+02 -Electron-triton_collision_frequency_at_point_64__________________________ (freq_plasma_electron_triton_collision_profile64)_ 5.65626694128724580e+02 -Electron-triton_collision_frequency_at_point_65__________________________ (freq_plasma_electron_triton_collision_profile65)_ 5.66048273240002118e+02 -Electron-triton_collision_frequency_at_point_66__________________________ (freq_plasma_electron_triton_collision_profile66)_ 5.66476907380205603e+02 -Electron-triton_collision_frequency_at_point_67__________________________ (freq_plasma_electron_triton_collision_profile67)_ 5.66912621361778406e+02 -Electron-triton_collision_frequency_at_point_68__________________________ (freq_plasma_electron_triton_collision_profile68)_ 5.67355440443568796e+02 -Electron-triton_collision_frequency_at_point_69__________________________ (freq_plasma_electron_triton_collision_profile69)_ 5.67805390334088543e+02 -Electron-triton_collision_frequency_at_point_70__________________________ (freq_plasma_electron_triton_collision_profile70)_ 5.68262497194843831e+02 -Electron-triton_collision_frequency_at_point_71__________________________ (freq_plasma_electron_triton_collision_profile71)_ 5.68726787643723583e+02 -Electron-triton_collision_frequency_at_point_72__________________________ (freq_plasma_electron_triton_collision_profile72)_ 5.69198288758458716e+02 -Electron-triton_collision_frequency_at_point_73__________________________ (freq_plasma_electron_triton_collision_profile73)_ 5.69677028080143941e+02 -Electron-triton_collision_frequency_at_point_74__________________________ (freq_plasma_electron_triton_collision_profile74)_ 5.70163033616827875e+02 -Electron-triton_collision_frequency_at_point_75__________________________ (freq_plasma_electron_triton_collision_profile75)_ 5.70656333847171027e+02 -Electron-triton_collision_frequency_at_point_76__________________________ (freq_plasma_electron_triton_collision_profile76)_ 5.71156957724172230e+02 -Electron-triton_collision_frequency_at_point_77__________________________ (freq_plasma_electron_triton_collision_profile77)_ 5.71664934678964528e+02 -Electron-triton_collision_frequency_at_point_78__________________________ (freq_plasma_electron_triton_collision_profile78)_ 5.72180294624681210e+02 -Electron-triton_collision_frequency_at_point_79__________________________ (freq_plasma_electron_triton_collision_profile79)_ 5.72703067960392900e+02 -Electron-triton_collision_frequency_at_point_80__________________________ (freq_plasma_electron_triton_collision_profile80)_ 5.73233285575115474e+02 -Electron-triton_collision_frequency_at_point_81__________________________ (freq_plasma_electron_triton_collision_profile81)_ 5.73770978851895052e+02 -Electron-triton_collision_frequency_at_point_82__________________________ (freq_plasma_electron_triton_collision_profile82)_ 5.74316179671960185e+02 -Electron-triton_collision_frequency_at_point_83__________________________ (freq_plasma_electron_triton_collision_profile83)_ 5.74868920418954758e+02 -Electron-triton_collision_frequency_at_point_84__________________________ (freq_plasma_electron_triton_collision_profile84)_ 5.75429233983242966e+02 -Electron-triton_collision_frequency_at_point_85__________________________ (freq_plasma_electron_triton_collision_profile85)_ 5.75997153766292513e+02 -Electron-triton_collision_frequency_at_point_86__________________________ (freq_plasma_electron_triton_collision_profile86)_ 5.76572713685135227e+02 -Electron-triton_collision_frequency_at_point_87__________________________ (freq_plasma_electron_triton_collision_profile87)_ 5.77155948176905213e+02 -Electron-triton_collision_frequency_at_point_88__________________________ (freq_plasma_electron_triton_collision_profile88)_ 5.77746892203458629e+02 -Electron-triton_collision_frequency_at_point_89__________________________ (freq_plasma_electron_triton_collision_profile89)_ 5.78345581256071114e+02 -Electron-triton_collision_frequency_at_point_90__________________________ (freq_plasma_electron_triton_collision_profile90)_ 5.78952051360221958e+02 -Electron-triton_collision_frequency_at_point_91__________________________ (freq_plasma_electron_triton_collision_profile91)_ 5.79566339080455350e+02 -Electron-triton_collision_frequency_at_point_92__________________________ (freq_plasma_electron_triton_collision_profile92)_ 5.80188481525329621e+02 -Electron-triton_collision_frequency_at_point_93__________________________ (freq_plasma_electron_triton_collision_profile93)_ 5.80818516352450501e+02 -Electron-triton_collision_frequency_at_point_94__________________________ (freq_plasma_electron_triton_collision_profile94)_ 5.81456481773588507e+02 -Electron-triton_collision_frequency_at_point_95__________________________ (freq_plasma_electron_triton_collision_profile95)_ 5.82102416559888979e+02 -Electron-triton_collision_frequency_at_point_96__________________________ (freq_plasma_electron_triton_collision_profile96)_ 5.82756360047164435e+02 -Electron-triton_collision_frequency_at_point_97__________________________ (freq_plasma_electron_triton_collision_profile97)_ 5.83418352141282298e+02 -Electron-triton_collision_frequency_at_point_98__________________________ (freq_plasma_electron_triton_collision_profile98)_ 5.84088433323638583e+02 -Electron-triton_collision_frequency_at_point_99__________________________ (freq_plasma_electron_triton_collision_profile99)_ 5.84766644656729000e+02 -Electron-triton_collision_frequency_at_point_100_________________________ (freq_plasma_electron_triton_collision_profile100)_ 5.85453027789810335e+02 -Electron-triton_collision_frequency_at_point_101_________________________ (freq_plasma_electron_triton_collision_profile101)_ 5.86147624964658007e+02 -Electron-triton_collision_frequency_at_point_102_________________________ (freq_plasma_electron_triton_collision_profile102)_ 5.86850479021419119e+02 -Electron-triton_collision_frequency_at_point_103_________________________ (freq_plasma_electron_triton_collision_profile103)_ 5.87561633404566010e+02 -Electron-triton_collision_frequency_at_point_104_________________________ (freq_plasma_electron_triton_collision_profile104)_ 5.88281132168943145e+02 -Electron-triton_collision_frequency_at_point_105_________________________ (freq_plasma_electron_triton_collision_profile105)_ 5.89009019985922123e+02 -Electron-triton_collision_frequency_at_point_106_________________________ (freq_plasma_electron_triton_collision_profile106)_ 5.89745342149652743e+02 -Electron-triton_collision_frequency_at_point_107_________________________ (freq_plasma_electron_triton_collision_profile107)_ 5.90490144583418555e+02 -Electron-triton_collision_frequency_at_point_108_________________________ (freq_plasma_electron_triton_collision_profile108)_ 5.91243473846100642e+02 -Electron-triton_collision_frequency_at_point_109_________________________ (freq_plasma_electron_triton_collision_profile109)_ 5.92005377138744279e+02 -Electron-triton_collision_frequency_at_point_110_________________________ (freq_plasma_electron_triton_collision_profile110)_ 5.92775902311235200e+02 -Electron-triton_collision_frequency_at_point_111_________________________ (freq_plasma_electron_triton_collision_profile111)_ 5.93555097869084193e+02 -Electron-triton_collision_frequency_at_point_112_________________________ (freq_plasma_electron_triton_collision_profile112)_ 5.94343012980326193e+02 -Electron-triton_collision_frequency_at_point_113_________________________ (freq_plasma_electron_triton_collision_profile113)_ 5.95139697482528504e+02 -Electron-triton_collision_frequency_at_point_114_________________________ (freq_plasma_electron_triton_collision_profile114)_ 5.95945201889916348e+02 -Electron-triton_collision_frequency_at_point_115_________________________ (freq_plasma_electron_triton_collision_profile115)_ 5.96759577400612784e+02 -Electron-triton_collision_frequency_at_point_116_________________________ (freq_plasma_electron_triton_collision_profile116)_ 5.97582875903998001e+02 -Electron-triton_collision_frequency_at_point_117_________________________ (freq_plasma_electron_triton_collision_profile117)_ 5.98415149988187977e+02 -Electron-triton_collision_frequency_at_point_118_________________________ (freq_plasma_electron_triton_collision_profile118)_ 5.99256452947636603e+02 -Electron-triton_collision_frequency_at_point_119_________________________ (freq_plasma_electron_triton_collision_profile119)_ 6.00106838790856727e+02 -Electron-triton_collision_frequency_at_point_120_________________________ (freq_plasma_electron_triton_collision_profile120)_ 6.00966362248271480e+02 -Electron-triton_collision_frequency_at_point_121_________________________ (freq_plasma_electron_triton_collision_profile121)_ 6.01835078780190770e+02 -Electron-triton_collision_frequency_at_point_122_________________________ (freq_plasma_electron_triton_collision_profile122)_ 6.02713044584917952e+02 -Electron-triton_collision_frequency_at_point_123_________________________ (freq_plasma_electron_triton_collision_profile123)_ 6.03600316606986212e+02 -Electron-triton_collision_frequency_at_point_124_________________________ (freq_plasma_electron_triton_collision_profile124)_ 6.04496952545529325e+02 -Electron-triton_collision_frequency_at_point_125_________________________ (freq_plasma_electron_triton_collision_profile125)_ 6.05403010862788165e+02 -Electron-triton_collision_frequency_at_point_126_________________________ (freq_plasma_electron_triton_collision_profile126)_ 6.06318550792753967e+02 -Electron-triton_collision_frequency_at_point_127_________________________ (freq_plasma_electron_triton_collision_profile127)_ 6.07243632349952236e+02 -Electron-triton_collision_frequency_at_point_128_________________________ (freq_plasma_electron_triton_collision_profile128)_ 6.08178316338366926e+02 -Electron-triton_collision_frequency_at_point_129_________________________ (freq_plasma_electron_triton_collision_profile129)_ 6.09122664360509248e+02 -Electron-triton_collision_frequency_at_point_130_________________________ (freq_plasma_electron_triton_collision_profile130)_ 6.10076738826634937e+02 -Electron-triton_collision_frequency_at_point_131_________________________ (freq_plasma_electron_triton_collision_profile131)_ 6.11040602964106256e+02 -Electron-triton_collision_frequency_at_point_132_________________________ (freq_plasma_electron_triton_collision_profile132)_ 6.12014320826908033e+02 -Electron-triton_collision_frequency_at_point_133_________________________ (freq_plasma_electron_triton_collision_profile133)_ 6.12997957305316163e+02 -Electron-triton_collision_frequency_at_point_134_________________________ (freq_plasma_electron_triton_collision_profile134)_ 6.13991578135721625e+02 -Electron-triton_collision_frequency_at_point_135_________________________ (freq_plasma_electron_triton_collision_profile135)_ 6.14995249910612642e+02 -Electron-triton_collision_frequency_at_point_136_________________________ (freq_plasma_electron_triton_collision_profile136)_ 6.16009040088719189e+02 -Electron-triton_collision_frequency_at_point_137_________________________ (freq_plasma_electron_triton_collision_profile137)_ 6.17033017005319834e+02 -Electron-triton_collision_frequency_at_point_138_________________________ (freq_plasma_electron_triton_collision_profile138)_ 6.18067249882712758e+02 -Electron-triton_collision_frequency_at_point_139_________________________ (freq_plasma_electron_triton_collision_profile139)_ 6.19111808840861386e+02 -Electron-triton_collision_frequency_at_point_140_________________________ (freq_plasma_electron_triton_collision_profile140)_ 6.20166764908202708e+02 -Electron-triton_collision_frequency_at_point_141_________________________ (freq_plasma_electron_triton_collision_profile141)_ 6.21232190032638755e+02 -Electron-triton_collision_frequency_at_point_142_________________________ (freq_plasma_electron_triton_collision_profile142)_ 6.22308157092700185e+02 -Electron-triton_collision_frequency_at_point_143_________________________ (freq_plasma_electron_triton_collision_profile143)_ 6.23394739908888937e+02 -Electron-triton_collision_frequency_at_point_144_________________________ (freq_plasma_electron_triton_collision_profile144)_ 6.24492013255208349e+02 -Electron-triton_collision_frequency_at_point_145_________________________ (freq_plasma_electron_triton_collision_profile145)_ 6.25600052870876084e+02 -Electron-triton_collision_frequency_at_point_146_________________________ (freq_plasma_electron_triton_collision_profile146)_ 6.26718935472224757e+02 -Electron-triton_collision_frequency_at_point_147_________________________ (freq_plasma_electron_triton_collision_profile147)_ 6.27848738764798441e+02 -Electron-triton_collision_frequency_at_point_148_________________________ (freq_plasma_electron_triton_collision_profile148)_ 6.28989541455641188e+02 -Electron-triton_collision_frequency_at_point_149_________________________ (freq_plasma_electron_triton_collision_profile149)_ 6.30141423265786671e+02 -Electron-triton_collision_frequency_at_point_150_________________________ (freq_plasma_electron_triton_collision_profile150)_ 6.31304464942946765e+02 -Electron-triton_collision_frequency_at_point_151_________________________ (freq_plasma_electron_triton_collision_profile151)_ 6.32478748274406598e+02 -Electron-triton_collision_frequency_at_point_152_________________________ (freq_plasma_electron_triton_collision_profile152)_ 6.33664356100130021e+02 -Electron-triton_collision_frequency_at_point_153_________________________ (freq_plasma_electron_triton_collision_profile153)_ 6.34861372326072342e+02 -Electron-triton_collision_frequency_at_point_154_________________________ (freq_plasma_electron_triton_collision_profile154)_ 6.36069881937713944e+02 -Electron-triton_collision_frequency_at_point_155_________________________ (freq_plasma_electron_triton_collision_profile155)_ 6.37289971013809463e+02 -Electron-triton_collision_frequency_at_point_156_________________________ (freq_plasma_electron_triton_collision_profile156)_ 6.38521726740360805e+02 -Electron-triton_collision_frequency_at_point_157_________________________ (freq_plasma_electron_triton_collision_profile157)_ 6.39765237424817087e+02 -Electron-triton_collision_frequency_at_point_158_________________________ (freq_plasma_electron_triton_collision_profile158)_ 6.41020592510503775e+02 -Electron-triton_collision_frequency_at_point_159_________________________ (freq_plasma_electron_triton_collision_profile159)_ 6.42287882591287598e+02 -Electron-triton_collision_frequency_at_point_160_________________________ (freq_plasma_electron_triton_collision_profile160)_ 6.43567199426478396e+02 -Electron-triton_collision_frequency_at_point_161_________________________ (freq_plasma_electron_triton_collision_profile161)_ 6.44858635955973909e+02 -Electron-triton_collision_frequency_at_point_162_________________________ (freq_plasma_electron_triton_collision_profile162)_ 6.46162286315650704e+02 -Electron-triton_collision_frequency_at_point_163_________________________ (freq_plasma_electron_triton_collision_profile163)_ 6.47478245853004296e+02 -Electron-triton_collision_frequency_at_point_164_________________________ (freq_plasma_electron_triton_collision_profile164)_ 6.48806611143046439e+02 -Electron-triton_collision_frequency_at_point_165_________________________ (freq_plasma_electron_triton_collision_profile165)_ 6.50147480004459908e+02 -Electron-triton_collision_frequency_at_point_166_________________________ (freq_plasma_electron_triton_collision_profile166)_ 6.51500951516015562e+02 -Electron-triton_collision_frequency_at_point_167_________________________ (freq_plasma_electron_triton_collision_profile167)_ 6.52867126033261229e+02 -Electron-triton_collision_frequency_at_point_168_________________________ (freq_plasma_electron_triton_collision_profile168)_ 6.54246105205477988e+02 -Electron-triton_collision_frequency_at_point_169_________________________ (freq_plasma_electron_triton_collision_profile169)_ 6.55637991992918046e+02 -Electron-triton_collision_frequency_at_point_170_________________________ (freq_plasma_electron_triton_collision_profile170)_ 6.57042890684322742e+02 -Electron-triton_collision_frequency_at_point_171_________________________ (freq_plasma_electron_triton_collision_profile171)_ 6.58460906914726820e+02 -Electron-triton_collision_frequency_at_point_172_________________________ (freq_plasma_electron_triton_collision_profile172)_ 6.59892147683554185e+02 -Electron-triton_collision_frequency_at_point_173_________________________ (freq_plasma_electron_triton_collision_profile173)_ 6.61336721373013916e+02 -Electron-triton_collision_frequency_at_point_174_________________________ (freq_plasma_electron_triton_collision_profile174)_ 6.62794737766792082e+02 -Electron-triton_collision_frequency_at_point_175_________________________ (freq_plasma_electron_triton_collision_profile175)_ 6.64266308069056436e+02 -Electron-triton_collision_frequency_at_point_176_________________________ (freq_plasma_electron_triton_collision_profile176)_ 6.65751544923769188e+02 -Electron-triton_collision_frequency_at_point_177_________________________ (freq_plasma_electron_triton_collision_profile177)_ 6.67250562434320159e+02 -Electron-triton_collision_frequency_at_point_178_________________________ (freq_plasma_electron_triton_collision_profile178)_ 6.68763476183482112e+02 -Electron-triton_collision_frequency_at_point_179_________________________ (freq_plasma_electron_triton_collision_profile179)_ 6.70290403253694080e+02 -Electron-triton_collision_frequency_at_point_180_________________________ (freq_plasma_electron_triton_collision_profile180)_ 6.71831462247681316e+02 -Electron-triton_collision_frequency_at_point_181_________________________ (freq_plasma_electron_triton_collision_profile181)_ 6.73386773309414139e+02 -Electron-triton_collision_frequency_at_point_182_________________________ (freq_plasma_electron_triton_collision_profile182)_ 6.74956458145412057e+02 -Electron-triton_collision_frequency_at_point_183_________________________ (freq_plasma_electron_triton_collision_profile183)_ 6.76540640046404064e+02 -Electron-triton_collision_frequency_at_point_184_________________________ (freq_plasma_electron_triton_collision_profile184)_ 6.78139443909340002e+02 -Electron-triton_collision_frequency_at_point_185_________________________ (freq_plasma_electron_triton_collision_profile185)_ 6.79752996259776978e+02 -Electron-triton_collision_frequency_at_point_186_________________________ (freq_plasma_electron_triton_collision_profile186)_ 6.81381425274625826e+02 -Electron-triton_collision_frequency_at_point_187_________________________ (freq_plasma_electron_triton_collision_profile187)_ 6.83024860805282970e+02 -Electron-triton_collision_frequency_at_point_188_________________________ (freq_plasma_electron_triton_collision_profile188)_ 6.84683434401143359e+02 -Electron-triton_collision_frequency_at_point_189_________________________ (freq_plasma_electron_triton_collision_profile189)_ 6.86357279333502333e+02 -Electron-triton_collision_frequency_at_point_190_________________________ (freq_plasma_electron_triton_collision_profile190)_ 6.88046530619859482e+02 -Electron-triton_collision_frequency_at_point_191_________________________ (freq_plasma_electron_triton_collision_profile191)_ 6.89751325048623244e+02 -Electron-triton_collision_frequency_at_point_192_________________________ (freq_plasma_electron_triton_collision_profile192)_ 6.91471801204228655e+02 -Electron-triton_collision_frequency_at_point_193_________________________ (freq_plasma_electron_triton_collision_profile193)_ 6.93208099492673796e+02 -Electron-triton_collision_frequency_at_point_194_________________________ (freq_plasma_electron_triton_collision_profile194)_ 6.94960362167482344e+02 -Electron-triton_collision_frequency_at_point_195_________________________ (freq_plasma_electron_triton_collision_profile195)_ 6.96728733356099610e+02 -Electron-triton_collision_frequency_at_point_196_________________________ (freq_plasma_electron_triton_collision_profile196)_ 6.98513359086729679e+02 -Electron-triton_collision_frequency_at_point_197_________________________ (freq_plasma_electron_triton_collision_profile197)_ 7.00314387315622525e+02 -Electron-triton_collision_frequency_at_point_198_________________________ (freq_plasma_electron_triton_collision_profile198)_ 7.02131967954816673e+02 -Electron-triton_collision_frequency_at_point_199_________________________ (freq_plasma_electron_triton_collision_profile199)_ 7.03966252900346603e+02 -Electron-triton_collision_frequency_at_point_200_________________________ (freq_plasma_electron_triton_collision_profile200)_ 7.05817396060924466e+02 -Electron-triton_collision_frequency_at_point_201_________________________ (freq_plasma_electron_triton_collision_profile201)_ 7.07685553387102686e+02 -Electron-triton_collision_frequency_at_point_202_________________________ (freq_plasma_electron_triton_collision_profile202)_ 7.09570882900924971e+02 -Electron-triton_collision_frequency_at_point_203_________________________ (freq_plasma_electron_triton_collision_profile203)_ 7.11473544726077648e+02 -Electron-triton_collision_frequency_at_point_204_________________________ (freq_plasma_electron_triton_collision_profile204)_ 7.13393701118546460e+02 -Electron-triton_collision_frequency_at_point_205_________________________ (freq_plasma_electron_triton_collision_profile205)_ 7.15331516497790290e+02 -Electron-triton_collision_frequency_at_point_206_________________________ (freq_plasma_electron_triton_collision_profile206)_ 7.17287157478439326e+02 -Electron-triton_collision_frequency_at_point_207_________________________ (freq_plasma_electron_triton_collision_profile207)_ 7.19260792902527783e+02 -Electron-triton_collision_frequency_at_point_208_________________________ (freq_plasma_electron_triton_collision_profile208)_ 7.21252593872270381e+02 -Electron-triton_collision_frequency_at_point_209_________________________ (freq_plasma_electron_triton_collision_profile209)_ 7.23262733783391809e+02 -Electron-triton_collision_frequency_at_point_210_________________________ (freq_plasma_electron_triton_collision_profile210)_ 7.25291388359017901e+02 -Electron-triton_collision_frequency_at_point_211_________________________ (freq_plasma_electron_triton_collision_profile211)_ 7.27338735684141056e+02 -Electron-triton_collision_frequency_at_point_212_________________________ (freq_plasma_electron_triton_collision_profile212)_ 7.29404956240667730e+02 -Electron-triton_collision_frequency_at_point_213_________________________ (freq_plasma_electron_triton_collision_profile213)_ 7.31490232943059937e+02 -Electron-triton_collision_frequency_at_point_214_________________________ (freq_plasma_electron_triton_collision_profile214)_ 7.33594751174574981e+02 -Electron-triton_collision_frequency_at_point_215_________________________ (freq_plasma_electron_triton_collision_profile215)_ 7.35718698824126704e+02 -Electron-triton_collision_frequency_at_point_216_________________________ (freq_plasma_electron_triton_collision_profile216)_ 7.37862266323763947e+02 -Electron-triton_collision_frequency_at_point_217_________________________ (freq_plasma_electron_triton_collision_profile217)_ 7.40025646686789742e+02 -Electron-triton_collision_frequency_at_point_218_________________________ (freq_plasma_electron_triton_collision_profile218)_ 7.42209035546522387e+02 -Electron-triton_collision_frequency_at_point_219_________________________ (freq_plasma_electron_triton_collision_profile219)_ 7.44412631195718518e+02 -Electron-triton_collision_frequency_at_point_220_________________________ (freq_plasma_electron_triton_collision_profile220)_ 7.46636634626660111e+02 -Electron-triton_collision_frequency_at_point_221_________________________ (freq_plasma_electron_triton_collision_profile221)_ 7.48881249571925423e+02 -Electron-triton_collision_frequency_at_point_222_________________________ (freq_plasma_electron_triton_collision_profile222)_ 7.51146682545853423e+02 -Electron-triton_collision_frequency_at_point_223_________________________ (freq_plasma_electron_triton_collision_profile223)_ 7.53433142886707401e+02 -Electron-triton_collision_frequency_at_point_224_________________________ (freq_plasma_electron_triton_collision_profile224)_ 7.55740842799560596e+02 -Electron-triton_collision_frequency_at_point_225_________________________ (freq_plasma_electron_triton_collision_profile225)_ 7.58069997399905787e+02 -Electron-triton_collision_frequency_at_point_226_________________________ (freq_plasma_electron_triton_collision_profile226)_ 7.60420824758009985e+02 -Electron-triton_collision_frequency_at_point_227_________________________ (freq_plasma_electron_triton_collision_profile227)_ 7.62793545944021275e+02 -Electron-triton_collision_frequency_at_point_228_________________________ (freq_plasma_electron_triton_collision_profile228)_ 7.65188385073841118e+02 -Electron-triton_collision_frequency_at_point_229_________________________ (freq_plasma_electron_triton_collision_profile229)_ 7.67605569355778016e+02 -Electron-triton_collision_frequency_at_point_230_________________________ (freq_plasma_electron_triton_collision_profile230)_ 7.70045329137995282e+02 -Electron-triton_collision_frequency_at_point_231_________________________ (freq_plasma_electron_triton_collision_profile231)_ 7.72507897956763941e+02 -Electron-triton_collision_frequency_at_point_232_________________________ (freq_plasma_electron_triton_collision_profile232)_ 7.74993512585533949e+02 -Electron-triton_collision_frequency_at_point_233_________________________ (freq_plasma_electron_triton_collision_profile233)_ 7.77502413084843852e+02 -Electron-triton_collision_frequency_at_point_234_________________________ (freq_plasma_electron_triton_collision_profile234)_ 7.80034842853076043e+02 -Electron-triton_collision_frequency_at_point_235_________________________ (freq_plasma_electron_triton_collision_profile235)_ 7.82591048678070592e+02 -Electron-triton_collision_frequency_at_point_236_________________________ (freq_plasma_electron_triton_collision_profile236)_ 7.85171280789623893e+02 -Electron-triton_collision_frequency_at_point_237_________________________ (freq_plasma_electron_triton_collision_profile237)_ 7.87775792912870543e+02 -Electron-triton_collision_frequency_at_point_238_________________________ (freq_plasma_electron_triton_collision_profile238)_ 7.90404842322573472e+02 -Electron-triton_collision_frequency_at_point_239_________________________ (freq_plasma_electron_triton_collision_profile239)_ 7.93058689898340276e+02 -Electron-triton_collision_frequency_at_point_240_________________________ (freq_plasma_electron_triton_collision_profile240)_ 7.95737600180763934e+02 -Electron-triton_collision_frequency_at_point_241_________________________ (freq_plasma_electron_triton_collision_profile241)_ 7.98441841428526345e+02 -Electron-triton_collision_frequency_at_point_242_________________________ (freq_plasma_electron_triton_collision_profile242)_ 8.01171685676461607e+02 -Electron-triton_collision_frequency_at_point_243_________________________ (freq_plasma_electron_triton_collision_profile243)_ 8.03927408794602343e+02 -Electron-triton_collision_frequency_at_point_244_________________________ (freq_plasma_electron_triton_collision_profile244)_ 8.06709290548224089e+02 -Electron-triton_collision_frequency_at_point_245_________________________ (freq_plasma_electron_triton_collision_profile245)_ 8.09517614658908315e+02 -Electron-triton_collision_frequency_at_point_246_________________________ (freq_plasma_electron_triton_collision_profile246)_ 8.12352668866625208e+02 -Electron-triton_collision_frequency_at_point_247_________________________ (freq_plasma_electron_triton_collision_profile247)_ 8.15214744992872852e+02 -Electron-triton_collision_frequency_at_point_248_________________________ (freq_plasma_electron_triton_collision_profile248)_ 8.18104139004872081e+02 -Electron-triton_collision_frequency_at_point_249_________________________ (freq_plasma_electron_triton_collision_profile249)_ 8.21021151080843765e+02 -Electron-triton_collision_frequency_at_point_250_________________________ (freq_plasma_electron_triton_collision_profile250)_ 8.23966085676378725e+02 -Electron-triton_collision_frequency_at_point_251_________________________ (freq_plasma_electron_triton_collision_profile251)_ 8.26939251591925654e+02 -Electron-triton_collision_frequency_at_point_252_________________________ (freq_plasma_electron_triton_collision_profile252)_ 8.29940962041398166e+02 -Electron-triton_collision_frequency_at_point_253_________________________ (freq_plasma_electron_triton_collision_profile253)_ 8.32971534721941225e+02 -Electron-triton_collision_frequency_at_point_254_________________________ (freq_plasma_electron_triton_collision_profile254)_ 8.36031291884846496e+02 -Electron-triton_collision_frequency_at_point_255_________________________ (freq_plasma_electron_triton_collision_profile255)_ 8.39120560407660719e+02 -Electron-triton_collision_frequency_at_point_256_________________________ (freq_plasma_electron_triton_collision_profile256)_ 8.42239671867480638e+02 -Electron-triton_collision_frequency_at_point_257_________________________ (freq_plasma_electron_triton_collision_profile257)_ 8.45388962615472451e+02 -Electron-triton_collision_frequency_at_point_258_________________________ (freq_plasma_electron_triton_collision_profile258)_ 8.48568773852613504e+02 -Electron-triton_collision_frequency_at_point_259_________________________ (freq_plasma_electron_triton_collision_profile259)_ 8.51779451706690793e+02 -Electron-triton_collision_frequency_at_point_260_________________________ (freq_plasma_electron_triton_collision_profile260)_ 8.55021347310562078e+02 -Electron-triton_collision_frequency_at_point_261_________________________ (freq_plasma_electron_triton_collision_profile261)_ 8.58294816881701649e+02 -Electron-triton_collision_frequency_at_point_262_________________________ (freq_plasma_electron_triton_collision_profile262)_ 8.61600221803045542e+02 -Electron-triton_collision_frequency_at_point_263_________________________ (freq_plasma_electron_triton_collision_profile263)_ 8.64937928705157447e+02 -Electron-triton_collision_frequency_at_point_264_________________________ (freq_plasma_electron_triton_collision_profile264)_ 8.68308309549727710e+02 -Electron-triton_collision_frequency_at_point_265_________________________ (freq_plasma_electron_triton_collision_profile265)_ 8.71711741714424761e+02 -Electron-triton_collision_frequency_at_point_266_________________________ (freq_plasma_electron_triton_collision_profile266)_ 8.75148608079114638e+02 -Electron-triton_collision_frequency_at_point_267_________________________ (freq_plasma_electron_triton_collision_profile267)_ 8.78619297113470680e+02 -Electron-triton_collision_frequency_at_point_268_________________________ (freq_plasma_electron_triton_collision_profile268)_ 8.82124202965975655e+02 -Electron-triton_collision_frequency_at_point_269_________________________ (freq_plasma_electron_triton_collision_profile269)_ 8.85663725554355665e+02 -Electron-triton_collision_frequency_at_point_270_________________________ (freq_plasma_electron_triton_collision_profile270)_ 8.89238270657432622e+02 -Electron-triton_collision_frequency_at_point_271_________________________ (freq_plasma_electron_triton_collision_profile271)_ 8.92848250008443642e+02 -Electron-triton_collision_frequency_at_point_272_________________________ (freq_plasma_electron_triton_collision_profile272)_ 8.96494081389810276e+02 -Electron-triton_collision_frequency_at_point_273_________________________ (freq_plasma_electron_triton_collision_profile273)_ 9.00176188729401360e+02 -Electron-triton_collision_frequency_at_point_274_________________________ (freq_plasma_electron_triton_collision_profile274)_ 9.03895002198277325e+02 -Electron-triton_collision_frequency_at_point_275_________________________ (freq_plasma_electron_triton_collision_profile275)_ 9.07650958309960401e+02 -Electron-triton_collision_frequency_at_point_276_________________________ (freq_plasma_electron_triton_collision_profile276)_ 9.11444500021211752e+02 -Electron-triton_collision_frequency_at_point_277_________________________ (freq_plasma_electron_triton_collision_profile277)_ 9.15276076834352125e+02 -Electron-triton_collision_frequency_at_point_278_________________________ (freq_plasma_electron_triton_collision_profile278)_ 9.19146144901130924e+02 -Electron-triton_collision_frequency_at_point_279_________________________ (freq_plasma_electron_triton_collision_profile279)_ 9.23055167128154153e+02 -Electron-triton_collision_frequency_at_point_280_________________________ (freq_plasma_electron_triton_collision_profile280)_ 9.27003613283879986e+02 -Electron-triton_collision_frequency_at_point_281_________________________ (freq_plasma_electron_triton_collision_profile281)_ 9.30991960107201862e+02 -Electron-triton_collision_frequency_at_point_282_________________________ (freq_plasma_electron_triton_collision_profile282)_ 9.35020691417615922e+02 -Electron-triton_collision_frequency_at_point_283_________________________ (freq_plasma_electron_triton_collision_profile283)_ 9.39090298226989717e+02 -Electron-triton_collision_frequency_at_point_284_________________________ (freq_plasma_electron_triton_collision_profile284)_ 9.43201278852935616e+02 -Electron-triton_collision_frequency_at_point_285_________________________ (freq_plasma_electron_triton_collision_profile285)_ 9.47354139033797878e+02 -Electron-triton_collision_frequency_at_point_286_________________________ (freq_plasma_electron_triton_collision_profile286)_ 9.51549392045252034e+02 -Electron-triton_collision_frequency_at_point_287_________________________ (freq_plasma_electron_triton_collision_profile287)_ 9.55787558818529419e+02 -Electron-triton_collision_frequency_at_point_288_________________________ (freq_plasma_electron_triton_collision_profile288)_ 9.60069168060261404e+02 -Electron-triton_collision_frequency_at_point_289_________________________ (freq_plasma_electron_triton_collision_profile289)_ 9.64394756373943551e+02 -Electron-triton_collision_frequency_at_point_290_________________________ (freq_plasma_electron_triton_collision_profile290)_ 9.68764868383026510e+02 -Electron-triton_collision_frequency_at_point_291_________________________ (freq_plasma_electron_triton_collision_profile291)_ 9.73180056855619341e+02 -Electron-triton_collision_frequency_at_point_292_________________________ (freq_plasma_electron_triton_collision_profile292)_ 9.77640882830813894e+02 -Electron-triton_collision_frequency_at_point_293_________________________ (freq_plasma_electron_triton_collision_profile293)_ 9.82147915746605008e+02 -Electron-triton_collision_frequency_at_point_294_________________________ (freq_plasma_electron_triton_collision_profile294)_ 9.86701733569417343e+02 -Electron-triton_collision_frequency_at_point_295_________________________ (freq_plasma_electron_triton_collision_profile295)_ 9.91302922925213807e+02 -Electron-triton_collision_frequency_at_point_296_________________________ (freq_plasma_electron_triton_collision_profile296)_ 9.95952079232172650e+02 -Electron-triton_collision_frequency_at_point_297_________________________ (freq_plasma_electron_triton_collision_profile297)_ 1.00064980683492524e+03 -Electron-triton_collision_frequency_at_point_298_________________________ (freq_plasma_electron_triton_collision_profile298)_ 1.00539671914032260e+03 -Electron-triton_collision_frequency_at_point_299_________________________ (freq_plasma_electron_triton_collision_profile299)_ 1.01019343875471554e+03 -Electron-triton_collision_frequency_at_point_300_________________________ (freq_plasma_electron_triton_collision_profile300)_ 1.01504059762272152e+03 -Electron-triton_collision_frequency_at_point_301_________________________ (freq_plasma_electron_triton_collision_profile301)_ 1.01993883716744278e+03 -Electron-triton_collision_frequency_at_point_302_________________________ (freq_plasma_electron_triton_collision_profile302)_ 1.02488880843211200e+03 -Electron-triton_collision_frequency_at_point_303_________________________ (freq_plasma_electron_triton_collision_profile303)_ 1.02989117222311620e+03 -Electron-triton_collision_frequency_at_point_304_________________________ (freq_plasma_electron_triton_collision_profile304)_ 1.03494659925436508e+03 -Electron-triton_collision_frequency_at_point_305_________________________ (freq_plasma_electron_triton_collision_profile305)_ 1.04005577029295569e+03 -Electron-triton_collision_frequency_at_point_306_________________________ (freq_plasma_electron_triton_collision_profile306)_ 1.04521937630607613e+03 -Electron-triton_collision_frequency_at_point_307_________________________ (freq_plasma_electron_triton_collision_profile307)_ 1.05043811860910273e+03 -Electron-triton_collision_frequency_at_point_308_________________________ (freq_plasma_electron_triton_collision_profile308)_ 1.05571270901481762e+03 -Electron-triton_collision_frequency_at_point_309_________________________ (freq_plasma_electron_triton_collision_profile309)_ 1.06104386998367931e+03 -Electron-triton_collision_frequency_at_point_310_________________________ (freq_plasma_electron_triton_collision_profile310)_ 1.06643233477508215e+03 -Electron-triton_collision_frequency_at_point_311_________________________ (freq_plasma_electron_triton_collision_profile311)_ 1.07187884759950862e+03 -Electron-triton_collision_frequency_at_point_312_________________________ (freq_plasma_electron_triton_collision_profile312)_ 1.07738416377150088e+03 -Electron-triton_collision_frequency_at_point_313_________________________ (freq_plasma_electron_triton_collision_profile313)_ 1.08294904986333927e+03 -Electron-triton_collision_frequency_at_point_314_________________________ (freq_plasma_electron_triton_collision_profile314)_ 1.08857428385934054e+03 -Electron-triton_collision_frequency_at_point_315_________________________ (freq_plasma_electron_triton_collision_profile315)_ 1.09426065531065069e+03 -Electron-triton_collision_frequency_at_point_316_________________________ (freq_plasma_electron_triton_collision_profile316)_ 1.10000896549041454e+03 -Electron-triton_collision_frequency_at_point_317_________________________ (freq_plasma_electron_triton_collision_profile317)_ 1.10582002754919745e+03 -Electron-triton_collision_frequency_at_point_318_________________________ (freq_plasma_electron_triton_collision_profile318)_ 1.11169466667050256e+03 -Electron-triton_collision_frequency_at_point_319_________________________ (freq_plasma_electron_triton_collision_profile319)_ 1.11763372022624708e+03 -Electron-triton_collision_frequency_at_point_320_________________________ (freq_plasma_electron_triton_collision_profile320)_ 1.12363803793202601e+03 -Electron-triton_collision_frequency_at_point_321_________________________ (freq_plasma_electron_triton_collision_profile321)_ 1.12970848200198225e+03 -Electron-triton_collision_frequency_at_point_322_________________________ (freq_plasma_electron_triton_collision_profile322)_ 1.13584592730310874e+03 -Electron-triton_collision_frequency_at_point_323_________________________ (freq_plasma_electron_triton_collision_profile323)_ 1.14205126150875981e+03 -Electron-triton_collision_frequency_at_point_324_________________________ (freq_plasma_electron_triton_collision_profile324)_ 1.14832538525117616e+03 -Electron-triton_collision_frequency_at_point_325_________________________ (freq_plasma_electron_triton_collision_profile325)_ 1.15466921227276794e+03 -Electron-triton_collision_frequency_at_point_326_________________________ (freq_plasma_electron_triton_collision_profile326)_ 1.16108366957592921e+03 -Electron-triton_collision_frequency_at_point_327_________________________ (freq_plasma_electron_triton_collision_profile327)_ 1.16756969757109096e+03 -Electron-triton_collision_frequency_at_point_328_________________________ (freq_plasma_electron_triton_collision_profile328)_ 1.17412825022275842e+03 -Electron-triton_collision_frequency_at_point_329_________________________ (freq_plasma_electron_triton_collision_profile329)_ 1.18076029519319877e+03 -Electron-triton_collision_frequency_at_point_330_________________________ (freq_plasma_electron_triton_collision_profile330)_ 1.18746681398347027e+03 -Electron-triton_collision_frequency_at_point_331_________________________ (freq_plasma_electron_triton_collision_profile331)_ 1.19424880207144201e+03 -Electron-triton_collision_frequency_at_point_332_________________________ (freq_plasma_electron_triton_collision_profile332)_ 1.20110726904643070e+03 -Electron-triton_collision_frequency_at_point_333_________________________ (freq_plasma_electron_triton_collision_profile333)_ 1.20804323874006263e+03 -Electron-triton_collision_frequency_at_point_334_________________________ (freq_plasma_electron_triton_collision_profile334)_ 1.21505774935293607e+03 -Electron-triton_collision_frequency_at_point_335_________________________ (freq_plasma_electron_triton_collision_profile335)_ 1.22215185357663654e+03 -Electron-triton_collision_frequency_at_point_336_________________________ (freq_plasma_electron_triton_collision_profile336)_ 1.22932661871062874e+03 -Electron-triton_collision_frequency_at_point_337_________________________ (freq_plasma_electron_triton_collision_profile337)_ 1.23658312677350546e+03 -Electron-triton_collision_frequency_at_point_338_________________________ (freq_plasma_electron_triton_collision_profile338)_ 1.24392247460806857e+03 -Electron-triton_collision_frequency_at_point_339_________________________ (freq_plasma_electron_triton_collision_profile339)_ 1.25134577397965222e+03 -Electron-triton_collision_frequency_at_point_340_________________________ (freq_plasma_electron_triton_collision_profile340)_ 1.25885415166706798e+03 -Electron-triton_collision_frequency_at_point_341_________________________ (freq_plasma_electron_triton_collision_profile341)_ 1.26644874954554211e+03 -Electron-triton_collision_frequency_at_point_342_________________________ (freq_plasma_electron_triton_collision_profile342)_ 1.27413072466092740e+03 -Electron-triton_collision_frequency_at_point_343_________________________ (freq_plasma_electron_triton_collision_profile343)_ 1.28190124929446256e+03 -Electron-triton_collision_frequency_at_point_344_________________________ (freq_plasma_electron_triton_collision_profile344)_ 1.28976151101729442e+03 -Electron-triton_collision_frequency_at_point_345_________________________ (freq_plasma_electron_triton_collision_profile345)_ 1.29771271273393313e+03 -Electron-triton_collision_frequency_at_point_346_________________________ (freq_plasma_electron_triton_collision_profile346)_ 1.30575607271373588e+03 -Electron-triton_collision_frequency_at_point_347_________________________ (freq_plasma_electron_triton_collision_profile347)_ 1.31389282460951540e+03 -Electron-triton_collision_frequency_at_point_348_________________________ (freq_plasma_electron_triton_collision_profile348)_ 1.32212421746223845e+03 -Electron-triton_collision_frequency_at_point_349_________________________ (freq_plasma_electron_triton_collision_profile349)_ 1.33045151569077984e+03 -Electron-triton_collision_frequency_at_point_350_________________________ (freq_plasma_electron_triton_collision_profile350)_ 1.33887599906559217e+03 -Electron-triton_collision_frequency_at_point_351_________________________ (freq_plasma_electron_triton_collision_profile351)_ 1.34739896266511619e+03 -Electron-triton_collision_frequency_at_point_352_________________________ (freq_plasma_electron_triton_collision_profile352)_ 1.35602171681364189e+03 -Electron-triton_collision_frequency_at_point_353_________________________ (freq_plasma_electron_triton_collision_profile353)_ 1.36474558699930981e+03 -Electron-triton_collision_frequency_at_point_354_________________________ (freq_plasma_electron_triton_collision_profile354)_ 1.37357191377078698e+03 -Electron-triton_collision_frequency_at_point_355_________________________ (freq_plasma_electron_triton_collision_profile355)_ 1.38250205261115639e+03 -Electron-triton_collision_frequency_at_point_356_________________________ (freq_plasma_electron_triton_collision_profile356)_ 1.39153737378737242e+03 -Electron-triton_collision_frequency_at_point_357_________________________ (freq_plasma_electron_triton_collision_profile357)_ 1.40067926217362651e+03 -Electron-triton_collision_frequency_at_point_358_________________________ (freq_plasma_electron_triton_collision_profile358)_ 1.40992911704677863e+03 -Electron-triton_collision_frequency_at_point_359_________________________ (freq_plasma_electron_triton_collision_profile359)_ 1.41928835185200478e+03 -Electron-triton_collision_frequency_at_point_360_________________________ (freq_plasma_electron_triton_collision_profile360)_ 1.42875839393657202e+03 -Electron-triton_collision_frequency_at_point_361_________________________ (freq_plasma_electron_triton_collision_profile361)_ 1.43834068424967381e+03 -Electron-triton_collision_frequency_at_point_362_________________________ (freq_plasma_electron_triton_collision_profile362)_ 1.44803667700598157e+03 -Electron-triton_collision_frequency_at_point_363_________________________ (freq_plasma_electron_triton_collision_profile363)_ 1.45784783931057655e+03 -Electron-triton_collision_frequency_at_point_364_________________________ (freq_plasma_electron_triton_collision_profile364)_ 1.46777565074266454e+03 -Electron-triton_collision_frequency_at_point_365_________________________ (freq_plasma_electron_triton_collision_profile365)_ 1.47782160289541548e+03 -Electron-triton_collision_frequency_at_point_366_________________________ (freq_plasma_electron_triton_collision_profile366)_ 1.48798719886903791e+03 -Electron-triton_collision_frequency_at_point_367_________________________ (freq_plasma_electron_triton_collision_profile367)_ 1.49827395271409819e+03 -Electron-triton_collision_frequency_at_point_368_________________________ (freq_plasma_electron_triton_collision_profile368)_ 1.50868338882185230e+03 -Electron-triton_collision_frequency_at_point_369_________________________ (freq_plasma_electron_triton_collision_profile369)_ 1.51921704125822407e+03 -Electron-triton_collision_frequency_at_point_370_________________________ (freq_plasma_electron_triton_collision_profile370)_ 1.52987645303782165e+03 -Electron-triton_collision_frequency_at_point_371_________________________ (freq_plasma_electron_triton_collision_profile371)_ 1.54066317533421193e+03 -Electron-triton_collision_frequency_at_point_372_________________________ (freq_plasma_electron_triton_collision_profile372)_ 1.55157876662240983e+03 -Electron-triton_collision_frequency_at_point_373_________________________ (freq_plasma_electron_triton_collision_profile373)_ 1.56262479174935629e+03 -Electron-triton_collision_frequency_at_point_374_________________________ (freq_plasma_electron_triton_collision_profile374)_ 1.57380282092783909e+03 -Electron-triton_collision_frequency_at_point_375_________________________ (freq_plasma_electron_triton_collision_profile375)_ 1.58511442864914193e+03 -Electron-triton_collision_frequency_at_point_376_________________________ (freq_plasma_electron_triton_collision_profile376)_ 1.59656119250933079e+03 -Electron-triton_collision_frequency_at_point_377_________________________ (freq_plasma_electron_triton_collision_profile377)_ 1.60814469194387448e+03 -Electron-triton_collision_frequency_at_point_378_________________________ (freq_plasma_electron_triton_collision_profile378)_ 1.61986650686493635e+03 -Electron-triton_collision_frequency_at_point_379_________________________ (freq_plasma_electron_triton_collision_profile379)_ 1.63172821619537808e+03 -Electron-triton_collision_frequency_at_point_380_________________________ (freq_plasma_electron_triton_collision_profile380)_ 1.64373139629314574e+03 -Electron-triton_collision_frequency_at_point_381_________________________ (freq_plasma_electron_triton_collision_profile381)_ 1.65587761925936843e+03 -Electron-triton_collision_frequency_at_point_382_________________________ (freq_plasma_electron_triton_collision_profile382)_ 1.66816845112309852e+03 -Electron-triton_collision_frequency_at_point_383_________________________ (freq_plasma_electron_triton_collision_profile383)_ 1.68060544989521372e+03 -Electron-triton_collision_frequency_at_point_384_________________________ (freq_plasma_electron_triton_collision_profile384)_ 1.69319016348359673e+03 -Electron-triton_collision_frequency_at_point_385_________________________ (freq_plasma_electron_triton_collision_profile385)_ 1.70592412746120272e+03 -Electron-triton_collision_frequency_at_point_386_________________________ (freq_plasma_electron_triton_collision_profile386)_ 1.71880886267822120e+03 -Electron-triton_collision_frequency_at_point_387_________________________ (freq_plasma_electron_triton_collision_profile387)_ 1.73184587270894690e+03 -Electron-triton_collision_frequency_at_point_388_________________________ (freq_plasma_electron_triton_collision_profile388)_ 1.74503664112351703e+03 -Electron-triton_collision_frequency_at_point_389_________________________ (freq_plasma_electron_triton_collision_profile389)_ 1.75838262857404106e+03 -Electron-triton_collision_frequency_at_point_390_________________________ (freq_plasma_electron_triton_collision_profile390)_ 1.77188526968412179e+03 -Electron-triton_collision_frequency_at_point_391_________________________ (freq_plasma_electron_triton_collision_profile391)_ 1.78554596973005050e+03 -Electron-triton_collision_frequency_at_point_392_________________________ (freq_plasma_electron_triton_collision_profile392)_ 1.79936610110139122e+03 -Electron-triton_collision_frequency_at_point_393_________________________ (freq_plasma_electron_triton_collision_profile393)_ 1.81334699952788014e+03 -Electron-triton_collision_frequency_at_point_394_________________________ (freq_plasma_electron_triton_collision_profile394)_ 1.82748996005887375e+03 -Electron-triton_collision_frequency_at_point_395_________________________ (freq_plasma_electron_triton_collision_profile395)_ 1.84179623278078384e+03 -Electron-triton_collision_frequency_at_point_396_________________________ (freq_plasma_electron_triton_collision_profile396)_ 1.85626701825709324e+03 -Electron-triton_collision_frequency_at_point_397_________________________ (freq_plasma_electron_triton_collision_profile397)_ 1.87090346267469727e+03 -Electron-triton_collision_frequency_at_point_398_________________________ (freq_plasma_electron_triton_collision_profile398)_ 1.88570665267935965e+03 -Electron-triton_collision_frequency_at_point_399_________________________ (freq_plasma_electron_triton_collision_profile399)_ 1.90067760988210398e+03 -Electron-triton_collision_frequency_at_point_400_________________________ (freq_plasma_electron_triton_collision_profile400)_ 1.91581728501736029e+03 -Electron-triton_collision_frequency_at_point_401_________________________ (freq_plasma_electron_triton_collision_profile401)_ 1.93112655173250346e+03 -Electron-triton_collision_frequency_at_point_402_________________________ (freq_plasma_electron_triton_collision_profile402)_ 1.94660619998737639e+03 -Electron-triton_collision_frequency_at_point_403_________________________ (freq_plasma_electron_triton_collision_profile403)_ 1.96225692904105154e+03 -Electron-triton_collision_frequency_at_point_404_________________________ (freq_plasma_electron_triton_collision_profile404)_ 1.97807934000186174e+03 -Electron-triton_collision_frequency_at_point_405_________________________ (freq_plasma_electron_triton_collision_profile405)_ 1.99407392791531925e+03 -Electron-triton_collision_frequency_at_point_406_________________________ (freq_plasma_electron_triton_collision_profile406)_ 2.01024107336306884e+03 -Electron-triton_collision_frequency_at_point_407_________________________ (freq_plasma_electron_triton_collision_profile407)_ 2.02658103354449258e+03 -Electron-triton_collision_frequency_at_point_408_________________________ (freq_plasma_electron_triton_collision_profile408)_ 2.04309393281093003e+03 -Electron-triton_collision_frequency_at_point_409_________________________ (freq_plasma_electron_triton_collision_profile409)_ 2.05977975262066548e+03 -Electron-triton_collision_frequency_at_point_410_________________________ (freq_plasma_electron_triton_collision_profile410)_ 2.07663832088106028e+03 -Electron-triton_collision_frequency_at_point_411_________________________ (freq_plasma_electron_triton_collision_profile411)_ 2.09366930064210510e+03 -Electron-triton_collision_frequency_at_point_412_________________________ (freq_plasma_electron_triton_collision_profile412)_ 2.11087217810362654e+03 -Electron-triton_collision_frequency_at_point_413_________________________ (freq_plasma_electron_triton_collision_profile413)_ 2.12824624989599852e+03 -Electron-triton_collision_frequency_at_point_414_________________________ (freq_plasma_electron_triton_collision_profile414)_ 2.14579060959186245e+03 -Electron-triton_collision_frequency_at_point_415_________________________ (freq_plasma_electron_triton_collision_profile415)_ 2.16350413340362047e+03 -Electron-triton_collision_frequency_at_point_416_________________________ (freq_plasma_electron_triton_collision_profile416)_ 2.18138546501871951e+03 -Electron-triton_collision_frequency_at_point_417_________________________ (freq_plasma_electron_triton_collision_profile417)_ 2.19943299952158986e+03 -Electron-triton_collision_frequency_at_point_418_________________________ (freq_plasma_electron_triton_collision_profile418)_ 2.21764486634785089e+03 -Electron-triton_collision_frequency_at_point_419_________________________ (freq_plasma_electron_triton_collision_profile419)_ 2.23601891121269500e+03 -Electron-triton_collision_frequency_at_point_420_________________________ (freq_plasma_electron_triton_collision_profile420)_ 2.25455267695150678e+03 -Electron-triton_collision_frequency_at_point_421_________________________ (freq_plasma_electron_triton_collision_profile421)_ 2.27324338320635388e+03 -Electron-triton_collision_frequency_at_point_422_________________________ (freq_plasma_electron_triton_collision_profile422)_ 2.29208790488729346e+03 -Electron-triton_collision_frequency_at_point_423_________________________ (freq_plasma_electron_triton_collision_profile423)_ 2.31108274933215671e+03 -Electron-triton_collision_frequency_at_point_424_________________________ (freq_plasma_electron_triton_collision_profile424)_ 2.33022403208263859e+03 -Electron-triton_collision_frequency_at_point_425_________________________ (freq_plasma_electron_triton_collision_profile425)_ 2.34950745118799705e+03 -Electron-triton_collision_frequency_at_point_426_________________________ (freq_plasma_electron_triton_collision_profile426)_ 2.36892825994040822e+03 -Electron-triton_collision_frequency_at_point_427_________________________ (freq_plasma_electron_triton_collision_profile427)_ 2.38848123793776904e+03 -Electron-triton_collision_frequency_at_point_428_________________________ (freq_plasma_electron_triton_collision_profile428)_ 2.40816066036041775e+03 -Electron-triton_collision_frequency_at_point_429_________________________ (freq_plasma_electron_triton_collision_profile429)_ 2.42796026533765689e+03 -Electron-triton_collision_frequency_at_point_430_________________________ (freq_plasma_electron_triton_collision_profile430)_ 2.44787321926776031e+03 -Electron-triton_collision_frequency_at_point_431_________________________ (freq_plasma_electron_triton_collision_profile431)_ 2.46789207994113576e+03 -Electron-triton_collision_frequency_at_point_432_________________________ (freq_plasma_electron_triton_collision_profile432)_ 2.48800875730005191e+03 -Electron-triton_collision_frequency_at_point_433_________________________ (freq_plasma_electron_triton_collision_profile433)_ 2.50821447164937263e+03 -Electron-triton_collision_frequency_at_point_434_________________________ (freq_plasma_electron_triton_collision_profile434)_ 2.52849970911042146e+03 -Electron-triton_collision_frequency_at_point_435_________________________ (freq_plasma_electron_triton_collision_profile435)_ 2.54885417408397370e+03 -Electron-triton_collision_frequency_at_point_436_________________________ (freq_plasma_electron_triton_collision_profile436)_ 2.56926673845696223e+03 -Electron-triton_collision_frequency_at_point_437_________________________ (freq_plasma_electron_triton_collision_profile437)_ 2.58972538725044615e+03 -Electron-triton_collision_frequency_at_point_438_________________________ (freq_plasma_electron_triton_collision_profile438)_ 2.61021716036139924e+03 -Electron-triton_collision_frequency_at_point_439_________________________ (freq_plasma_electron_triton_collision_profile439)_ 2.63072808999688323e+03 -Electron-triton_collision_frequency_at_point_440_________________________ (freq_plasma_electron_triton_collision_profile440)_ 2.65124313333313330e+03 -Electron-triton_collision_frequency_at_point_441_________________________ (freq_plasma_electron_triton_collision_profile441)_ 2.67174609985151983e+03 -Electron-triton_collision_frequency_at_point_442_________________________ (freq_plasma_electron_triton_collision_profile442)_ 2.69221957270384928e+03 -Electron-triton_collision_frequency_at_point_443_________________________ (freq_plasma_electron_triton_collision_profile443)_ 2.71264482333609203e+03 -Electron-triton_collision_frequency_at_point_444_________________________ (freq_plasma_electron_triton_collision_profile444)_ 2.73300171844548322e+03 -Electron-triton_collision_frequency_at_point_445_________________________ (freq_plasma_electron_triton_collision_profile445)_ 2.75326861815197981e+03 -Electron-triton_collision_frequency_at_point_446_________________________ (freq_plasma_electron_triton_collision_profile446)_ 2.77342226401877997e+03 -Electron-triton_collision_frequency_at_point_447_________________________ (freq_plasma_electron_triton_collision_profile447)_ 2.79343765524209721e+03 -Electron-triton_collision_frequency_at_point_448_________________________ (freq_plasma_electron_triton_collision_profile448)_ 2.81328791092396614e+03 -Electron-triton_collision_frequency_at_point_449_________________________ (freq_plasma_electron_triton_collision_profile449)_ 2.83294411581314171e+03 -Electron-triton_collision_frequency_at_point_450_________________________ (freq_plasma_electron_triton_collision_profile450)_ 2.85237514620266347e+03 -Electron-triton_collision_frequency_at_point_451_________________________ (freq_plasma_electron_triton_collision_profile451)_ 2.87154747174634258e+03 -Electron-triton_collision_frequency_at_point_452_________________________ (freq_plasma_electron_triton_collision_profile452)_ 2.89042492770800891e+03 -Electron-triton_collision_frequency_at_point_453_________________________ (freq_plasma_electron_triton_collision_profile453)_ 2.90896845045276677e+03 -Electron-triton_collision_frequency_at_point_454_________________________ (freq_plasma_electron_triton_collision_profile454)_ 2.92713576662694550e+03 -Electron-triton_collision_frequency_at_point_455_________________________ (freq_plasma_electron_triton_collision_profile455)_ 2.94488102314374328e+03 -Electron-triton_collision_frequency_at_point_456_________________________ (freq_plasma_electron_triton_collision_profile456)_ 2.96215434031184395e+03 -Electron-triton_collision_frequency_at_point_457_________________________ (freq_plasma_electron_triton_collision_profile457)_ 2.97890126343772272e+03 -Electron-triton_collision_frequency_at_point_458_________________________ (freq_plasma_electron_triton_collision_profile458)_ 2.99506207771647632e+03 -Electron-triton_collision_frequency_at_point_459_________________________ (freq_plasma_electron_triton_collision_profile459)_ 3.01057093501172767e+03 -Electron-triton_collision_frequency_at_point_460_________________________ (freq_plasma_electron_triton_collision_profile460)_ 3.02535471533658301e+03 -Electron-triton_collision_frequency_at_point_461_________________________ (freq_plasma_electron_triton_collision_profile461)_ 3.03933150332239939e+03 -Electron-triton_collision_frequency_at_point_462_________________________ (freq_plasma_electron_triton_collision_profile462)_ 3.05240848678938983e+03 -Electron-triton_collision_frequency_at_point_463_________________________ (freq_plasma_electron_triton_collision_profile463)_ 3.06447895204517772e+03 -Electron-triton_collision_frequency_at_point_464_________________________ (freq_plasma_electron_triton_collision_profile464)_ 3.07541779527074914e+03 -Electron-triton_collision_frequency_at_point_465_________________________ (freq_plasma_electron_triton_collision_profile465)_ 3.08507443776834270e+03 -Electron-triton_collision_frequency_at_point_466_________________________ (freq_plasma_electron_triton_collision_profile466)_ 3.09326080876480000e+03 -Electron-triton_collision_frequency_at_point_467_________________________ (freq_plasma_electron_triton_collision_profile467)_ 3.09972882905673441e+03 -Electron-triton_collision_frequency_at_point_468_________________________ (freq_plasma_electron_triton_collision_profile468)_ 3.10412142406367184e+03 -Electron-triton_collision_frequency_at_point_469_________________________ (freq_plasma_electron_triton_collision_profile469)_ 3.10583423073049698e+03 -Electron-triton_collision_frequency_at_point_470_________________________ (freq_plasma_electron_triton_collision_profile470)_ 3.10316440153699932e+03 -Electron-triton_collision_frequency_at_point_471_________________________ (freq_plasma_electron_triton_collision_profile471)_ 3.21229243994502849e+03 -Electron-triton_collision_frequency_at_point_472_________________________ (freq_plasma_electron_triton_collision_profile472)_ 3.33011843593549656e+03 -Electron-triton_collision_frequency_at_point_473_________________________ (freq_plasma_electron_triton_collision_profile473)_ 3.45769966079701862e+03 -Electron-triton_collision_frequency_at_point_474_________________________ (freq_plasma_electron_triton_collision_profile474)_ 3.59626810083155988e+03 -Electron-triton_collision_frequency_at_point_475_________________________ (freq_plasma_electron_triton_collision_profile475)_ 3.74726747594504104e+03 -Electron-triton_collision_frequency_at_point_476_________________________ (freq_plasma_electron_triton_collision_profile476)_ 3.91239996005841749e+03 -Electron-triton_collision_frequency_at_point_477_________________________ (freq_plasma_electron_triton_collision_profile477)_ 4.09368567324979995e+03 -Electron-triton_collision_frequency_at_point_478_________________________ (freq_plasma_electron_triton_collision_profile478)_ 4.29353916839417343e+03 -Electron-triton_collision_frequency_at_point_479_________________________ (freq_plasma_electron_triton_collision_profile479)_ 4.51486879529938233e+03 -Electron-triton_collision_frequency_at_point_480_________________________ (freq_plasma_electron_triton_collision_profile480)_ 4.76120725219337874e+03 -Electron-triton_collision_frequency_at_point_481_________________________ (freq_plasma_electron_triton_collision_profile481)_ 5.03688523986502423e+03 -Electron-triton_collision_frequency_at_point_482_________________________ (freq_plasma_electron_triton_collision_profile482)_ 5.34726558567127267e+03 -Electron-triton_collision_frequency_at_point_483_________________________ (freq_plasma_electron_triton_collision_profile483)_ 5.69906360964273244e+03 -Electron-triton_collision_frequency_at_point_484_________________________ (freq_plasma_electron_triton_collision_profile484)_ 6.10079274116533543e+03 -Electron-triton_collision_frequency_at_point_485_________________________ (freq_plasma_electron_triton_collision_profile485)_ 6.56339573481025491e+03 -Electron-triton_collision_frequency_at_point_486_________________________ (freq_plasma_electron_triton_collision_profile486)_ 7.10115714949600442e+03 -Electron-triton_collision_frequency_at_point_487_________________________ (freq_plasma_electron_triton_collision_profile487)_ 7.73305292984182142e+03 -Electron-triton_collision_frequency_at_point_488_________________________ (freq_plasma_electron_triton_collision_profile488)_ 8.48479888637290605e+03 -Electron-triton_collision_frequency_at_point_489_________________________ (freq_plasma_electron_triton_collision_profile489)_ 9.39205353579712573e+03 -Electron-triton_collision_frequency_at_point_490_________________________ (freq_plasma_electron_triton_collision_profile490)_ 1.05056001843884096e+04 -Electron-triton_collision_frequency_at_point_491_________________________ (freq_plasma_electron_triton_collision_profile491)_ 1.19000735646560224e+04 -Electron-triton_collision_frequency_at_point_492_________________________ (freq_plasma_electron_triton_collision_profile492)_ 1.36893690450674530e+04 -Electron-triton_collision_frequency_at_point_493_________________________ (freq_plasma_electron_triton_collision_profile493)_ 1.60554521618910167e+04 -Electron-triton_collision_frequency_at_point_494_________________________ (freq_plasma_electron_triton_collision_profile494)_ 1.93061484658793670e+04 -Electron-triton_collision_frequency_at_point_495_________________________ (freq_plasma_electron_triton_collision_profile495)_ 2.40018544380836975e+04 -Electron-triton_collision_frequency_at_point_496_________________________ (freq_plasma_electron_triton_collision_profile496)_ 3.12677351165293512e+04 -Electron-triton_collision_frequency_at_point_497_________________________ (freq_plasma_electron_triton_collision_profile497)_ 4.36970860493335204e+04 -Electron-triton_collision_frequency_at_point_498_________________________ (freq_plasma_electron_triton_collision_profile498)_ 6.86724439744499687e+04 -Electron-triton_collision_frequency_at_point_499_________________________ (freq_plasma_electron_triton_collision_profile499)_ 1.36765111854857823e+05 -Electron-triton_collision_frequency_at_point_500_________________________ (freq_plasma_electron_triton_collision_profile500)_ 5.81814345912921242e+05 -Volume_averaged_electron-alpha_thermal_collision_frequency_(Hz)__________ (freq_plasma_electron_alpha_thermal_collision_vol_avg)_ 9.21960859035050930e+02 -Electron-alpha_thermal_collision_frequency_at_point_0____________________ (freq_plasma_electron_alpha_thermal_collision_profile0)_ 4.22755347959770290e+02 -Electron-alpha_thermal_collision_frequency_at_point_1____________________ (freq_plasma_electron_alpha_thermal_collision_profile1)_ 4.22757754086169371e+02 -Electron-alpha_thermal_collision_frequency_at_point_2____________________ (freq_plasma_electron_alpha_thermal_collision_profile2)_ 4.22764972598214513e+02 -Electron-alpha_thermal_collision_frequency_at_point_3____________________ (freq_plasma_electron_alpha_thermal_collision_profile3)_ 4.22777003894469033e+02 -Electron-alpha_thermal_collision_frequency_at_point_4____________________ (freq_plasma_electron_alpha_thermal_collision_profile4)_ 4.22793848639257135e+02 -Electron-alpha_thermal_collision_frequency_at_point_5____________________ (freq_plasma_electron_alpha_thermal_collision_profile5)_ 4.22815507762746734e+02 -Electron-alpha_thermal_collision_frequency_at_point_6____________________ (freq_plasma_electron_alpha_thermal_collision_profile6)_ 4.22841982461062003e+02 -Electron-alpha_thermal_collision_frequency_at_point_7____________________ (freq_plasma_electron_alpha_thermal_collision_profile7)_ 4.22873274196428383e+02 -Electron-alpha_thermal_collision_frequency_at_point_8____________________ (freq_plasma_electron_alpha_thermal_collision_profile8)_ 4.22909384697351925e+02 -Electron-alpha_thermal_collision_frequency_at_point_9____________________ (freq_plasma_electron_alpha_thermal_collision_profile9)_ 4.22950315958828185e+02 -Electron-alpha_thermal_collision_frequency_at_point_10___________________ (freq_plasma_electron_alpha_thermal_collision_profile10)_ 4.22996070242586143e+02 -Electron-alpha_thermal_collision_frequency_at_point_11___________________ (freq_plasma_electron_alpha_thermal_collision_profile11)_ 4.23046650077363324e+02 -Electron-alpha_thermal_collision_frequency_at_point_12___________________ (freq_plasma_electron_alpha_thermal_collision_profile12)_ 4.23102058259213720e+02 -Electron-alpha_thermal_collision_frequency_at_point_13___________________ (freq_plasma_electron_alpha_thermal_collision_profile13)_ 4.23162297851848962e+02 -Electron-alpha_thermal_collision_frequency_at_point_14___________________ (freq_plasma_electron_alpha_thermal_collision_profile14)_ 4.23227372187011383e+02 -Electron-alpha_thermal_collision_frequency_at_point_15___________________ (freq_plasma_electron_alpha_thermal_collision_profile15)_ 4.23297284864879600e+02 -Electron-alpha_thermal_collision_frequency_at_point_16___________________ (freq_plasma_electron_alpha_thermal_collision_profile16)_ 4.23372039754509672e+02 -Electron-alpha_thermal_collision_frequency_at_point_17___________________ (freq_plasma_electron_alpha_thermal_collision_profile17)_ 4.23451640994304512e+02 -Electron-alpha_thermal_collision_frequency_at_point_18___________________ (freq_plasma_electron_alpha_thermal_collision_profile18)_ 4.23536092992521731e+02 -Electron-alpha_thermal_collision_frequency_at_point_19___________________ (freq_plasma_electron_alpha_thermal_collision_profile19)_ 4.23625400427809325e+02 -Electron-alpha_thermal_collision_frequency_at_point_20___________________ (freq_plasma_electron_alpha_thermal_collision_profile20)_ 4.23719568249779854e+02 -Electron-alpha_thermal_collision_frequency_at_point_21___________________ (freq_plasma_electron_alpha_thermal_collision_profile21)_ 4.23818601679613892e+02 -Electron-alpha_thermal_collision_frequency_at_point_22___________________ (freq_plasma_electron_alpha_thermal_collision_profile22)_ 4.23922506210698941e+02 -Electron-alpha_thermal_collision_frequency_at_point_23___________________ (freq_plasma_electron_alpha_thermal_collision_profile23)_ 4.24031287609302296e+02 -Electron-alpha_thermal_collision_frequency_at_point_24___________________ (freq_plasma_electron_alpha_thermal_collision_profile24)_ 4.24144951915276295e+02 -Electron-alpha_thermal_collision_frequency_at_point_25___________________ (freq_plasma_electron_alpha_thermal_collision_profile25)_ 4.24263505442798476e+02 -Electron-alpha_thermal_collision_frequency_at_point_26___________________ (freq_plasma_electron_alpha_thermal_collision_profile26)_ 4.24386954781146869e+02 -Electron-alpha_thermal_collision_frequency_at_point_27___________________ (freq_plasma_electron_alpha_thermal_collision_profile27)_ 4.24515306795506035e+02 -Electron-alpha_thermal_collision_frequency_at_point_28___________________ (freq_plasma_electron_alpha_thermal_collision_profile28)_ 4.24648568627812210e+02 -Electron-alpha_thermal_collision_frequency_at_point_29___________________ (freq_plasma_electron_alpha_thermal_collision_profile29)_ 4.24786747697628982e+02 -Electron-alpha_thermal_collision_frequency_at_point_30___________________ (freq_plasma_electron_alpha_thermal_collision_profile30)_ 4.24929851703061388e+02 -Electron-alpha_thermal_collision_frequency_at_point_31___________________ (freq_plasma_electron_alpha_thermal_collision_profile31)_ 4.25077888621700424e+02 -Electron-alpha_thermal_collision_frequency_at_point_32___________________ (freq_plasma_electron_alpha_thermal_collision_profile32)_ 4.25230866711608257e+02 -Electron-alpha_thermal_collision_frequency_at_point_33___________________ (freq_plasma_electron_alpha_thermal_collision_profile33)_ 4.25388794512333504e+02 -Electron-alpha_thermal_collision_frequency_at_point_34___________________ (freq_plasma_electron_alpha_thermal_collision_profile34)_ 4.25551680845966530e+02 -Electron-alpha_thermal_collision_frequency_at_point_35___________________ (freq_plasma_electron_alpha_thermal_collision_profile35)_ 4.25719534818226464e+02 -Electron-alpha_thermal_collision_frequency_at_point_36___________________ (freq_plasma_electron_alpha_thermal_collision_profile36)_ 4.25892365819588520e+02 -Electron-alpha_thermal_collision_frequency_at_point_37___________________ (freq_plasma_electron_alpha_thermal_collision_profile37)_ 4.26070183526443770e+02 -Electron-alpha_thermal_collision_frequency_at_point_38___________________ (freq_plasma_electron_alpha_thermal_collision_profile38)_ 4.26252997902298091e+02 -Electron-alpha_thermal_collision_frequency_at_point_39___________________ (freq_plasma_electron_alpha_thermal_collision_profile39)_ 4.26440819199005830e+02 -Electron-alpha_thermal_collision_frequency_at_point_40___________________ (freq_plasma_electron_alpha_thermal_collision_profile40)_ 4.26633657958042193e+02 -Electron-alpha_thermal_collision_frequency_at_point_41___________________ (freq_plasma_electron_alpha_thermal_collision_profile41)_ 4.26831525011812744e+02 -Electron-alpha_thermal_collision_frequency_at_point_42___________________ (freq_plasma_electron_alpha_thermal_collision_profile42)_ 4.27034431484998038e+02 -Electron-alpha_thermal_collision_frequency_at_point_43___________________ (freq_plasma_electron_alpha_thermal_collision_profile43)_ 4.27242388795940428e+02 -Electron-alpha_thermal_collision_frequency_at_point_44___________________ (freq_plasma_electron_alpha_thermal_collision_profile44)_ 4.27455408658064698e+02 -Electron-alpha_thermal_collision_frequency_at_point_45___________________ (freq_plasma_electron_alpha_thermal_collision_profile45)_ 4.27673503081339561e+02 -Electron-alpha_thermal_collision_frequency_at_point_46___________________ (freq_plasma_electron_alpha_thermal_collision_profile46)_ 4.27896684373777816e+02 -Electron-alpha_thermal_collision_frequency_at_point_47___________________ (freq_plasma_electron_alpha_thermal_collision_profile47)_ 4.28124965142974645e+02 -Electron-alpha_thermal_collision_frequency_at_point_48___________________ (freq_plasma_electron_alpha_thermal_collision_profile48)_ 4.28358358297685243e+02 -Electron-alpha_thermal_collision_frequency_at_point_49___________________ (freq_plasma_electron_alpha_thermal_collision_profile49)_ 4.28596877049443833e+02 -Electron-alpha_thermal_collision_frequency_at_point_50___________________ (freq_plasma_electron_alpha_thermal_collision_profile50)_ 4.28840534914220655e+02 -Electron-alpha_thermal_collision_frequency_at_point_51___________________ (freq_plasma_electron_alpha_thermal_collision_profile51)_ 4.29089345714119816e+02 -Electron-alpha_thermal_collision_frequency_at_point_52___________________ (freq_plasma_electron_alpha_thermal_collision_profile52)_ 4.29343323579119783e+02 -Electron-alpha_thermal_collision_frequency_at_point_53___________________ (freq_plasma_electron_alpha_thermal_collision_profile53)_ 4.29602482948852412e+02 -Electron-alpha_thermal_collision_frequency_at_point_54___________________ (freq_plasma_electron_alpha_thermal_collision_profile54)_ 4.29866838574424833e+02 -Electron-alpha_thermal_collision_frequency_at_point_55___________________ (freq_plasma_electron_alpha_thermal_collision_profile55)_ 4.30136405520283404e+02 -Electron-alpha_thermal_collision_frequency_at_point_56___________________ (freq_plasma_electron_alpha_thermal_collision_profile56)_ 4.30411199166119161e+02 -Electron-alpha_thermal_collision_frequency_at_point_57___________________ (freq_plasma_electron_alpha_thermal_collision_profile57)_ 4.30691235208816920e+02 -Electron-alpha_thermal_collision_frequency_at_point_58___________________ (freq_plasma_electron_alpha_thermal_collision_profile58)_ 4.30976529664446502e+02 -Electron-alpha_thermal_collision_frequency_at_point_59___________________ (freq_plasma_electron_alpha_thermal_collision_profile59)_ 4.31267098870298582e+02 -Electron-alpha_thermal_collision_frequency_at_point_60___________________ (freq_plasma_electron_alpha_thermal_collision_profile60)_ 4.31562959486963507e+02 -Electron-alpha_thermal_collision_frequency_at_point_61___________________ (freq_plasma_electron_alpha_thermal_collision_profile61)_ 4.31864128500454683e+02 -Electron-alpha_thermal_collision_frequency_at_point_62___________________ (freq_plasma_electron_alpha_thermal_collision_profile62)_ 4.32170623224378630e+02 -Electron-alpha_thermal_collision_frequency_at_point_63___________________ (freq_plasma_electron_alpha_thermal_collision_profile63)_ 4.32482461302147385e+02 -Electron-alpha_thermal_collision_frequency_at_point_64___________________ (freq_plasma_electron_alpha_thermal_collision_profile64)_ 4.32799660709238651e+02 -Electron-alpha_thermal_collision_frequency_at_point_65___________________ (freq_plasma_electron_alpha_thermal_collision_profile65)_ 4.33122239755502733e+02 -Electron-alpha_thermal_collision_frequency_at_point_66___________________ (freq_plasma_electron_alpha_thermal_collision_profile66)_ 4.33450217087515227e+02 -Electron-alpha_thermal_collision_frequency_at_point_67___________________ (freq_plasma_electron_alpha_thermal_collision_profile67)_ 4.33783611690976272e+02 -Electron-alpha_thermal_collision_frequency_at_point_68___________________ (freq_plasma_electron_alpha_thermal_collision_profile68)_ 4.34122442893160326e+02 -Electron-alpha_thermal_collision_frequency_at_point_69___________________ (freq_plasma_electron_alpha_thermal_collision_profile69)_ 4.34466730365411422e+02 -Electron-alpha_thermal_collision_frequency_at_point_70___________________ (freq_plasma_electron_alpha_thermal_collision_profile70)_ 4.34816494125690156e+02 -Electron-alpha_thermal_collision_frequency_at_point_71___________________ (freq_plasma_electron_alpha_thermal_collision_profile71)_ 4.35171754541166592e+02 -Electron-alpha_thermal_collision_frequency_at_point_72___________________ (freq_plasma_electron_alpha_thermal_collision_profile72)_ 4.35532532330867809e+02 -Electron-alpha_thermal_collision_frequency_at_point_73___________________ (freq_plasma_electron_alpha_thermal_collision_profile73)_ 4.35898848568371704e+02 -Electron-alpha_thermal_collision_frequency_at_point_74___________________ (freq_plasma_electron_alpha_thermal_collision_profile74)_ 4.36270724684555091e+02 -Electron-alpha_thermal_collision_frequency_at_point_75___________________ (freq_plasma_electron_alpha_thermal_collision_profile75)_ 4.36648182470392214e+02 -Electron-alpha_thermal_collision_frequency_at_point_76___________________ (freq_plasma_electron_alpha_thermal_collision_profile76)_ 4.37031244079805560e+02 -Electron-alpha_thermal_collision_frequency_at_point_77___________________ (freq_plasma_electron_alpha_thermal_collision_profile77)_ 4.37419932032571694e+02 -Electron-alpha_thermal_collision_frequency_at_point_78___________________ (freq_plasma_electron_alpha_thermal_collision_profile78)_ 4.37814269217277626e+02 -Electron-alpha_thermal_collision_frequency_at_point_79___________________ (freq_plasma_electron_alpha_thermal_collision_profile79)_ 4.38214278894334711e+02 -Electron-alpha_thermal_collision_frequency_at_point_80___________________ (freq_plasma_electron_alpha_thermal_collision_profile80)_ 4.38619984699045460e+02 -Electron-alpha_thermal_collision_frequency_at_point_81___________________ (freq_plasma_electron_alpha_thermal_collision_profile81)_ 4.39031410644728112e+02 -Electron-alpha_thermal_collision_frequency_at_point_82___________________ (freq_plasma_electron_alpha_thermal_collision_profile82)_ 4.39448581125894805e+02 -Electron-alpha_thermal_collision_frequency_at_point_83___________________ (freq_plasma_electron_alpha_thermal_collision_profile83)_ 4.39871520921489548e+02 -Electron-alpha_thermal_collision_frequency_at_point_84___________________ (freq_plasma_electron_alpha_thermal_collision_profile84)_ 4.40300255198183606e+02 -Electron-alpha_thermal_collision_frequency_at_point_85___________________ (freq_plasma_electron_alpha_thermal_collision_profile85)_ 4.40734809513727669e+02 -Electron-alpha_thermal_collision_frequency_at_point_86___________________ (freq_plasma_electron_alpha_thermal_collision_profile86)_ 4.41175209820366490e+02 -Electron-alpha_thermal_collision_frequency_at_point_87___________________ (freq_plasma_electron_alpha_thermal_collision_profile87)_ 4.41621482468310660e+02 -Electron-alpha_thermal_collision_frequency_at_point_88___________________ (freq_plasma_electron_alpha_thermal_collision_profile88)_ 4.42073654209271012e+02 -Electron-alpha_thermal_collision_frequency_at_point_89___________________ (freq_plasma_electron_alpha_thermal_collision_profile89)_ 4.42531752200054427e+02 -Electron-alpha_thermal_collision_frequency_at_point_90___________________ (freq_plasma_electron_alpha_thermal_collision_profile90)_ 4.42995804006222386e+02 -Electron-alpha_thermal_collision_frequency_at_point_91___________________ (freq_plasma_electron_alpha_thermal_collision_profile91)_ 4.43465837605813022e+02 -Electron-alpha_thermal_collision_frequency_at_point_92___________________ (freq_plasma_electron_alpha_thermal_collision_profile92)_ 4.43941881393126323e+02 -Electron-alpha_thermal_collision_frequency_at_point_93___________________ (freq_plasma_electron_alpha_thermal_collision_profile93)_ 4.44423964182576015e+02 -Electron-alpha_thermal_collision_frequency_at_point_94___________________ (freq_plasma_electron_alpha_thermal_collision_profile94)_ 4.44912115212605727e+02 -Electron-alpha_thermal_collision_frequency_at_point_95___________________ (freq_plasma_electron_alpha_thermal_collision_profile95)_ 4.45406364149674630e+02 -Electron-alpha_thermal_collision_frequency_at_point_96___________________ (freq_plasma_electron_alpha_thermal_collision_profile96)_ 4.45906741092307925e+02 -Electron-alpha_thermal_collision_frequency_at_point_97___________________ (freq_plasma_electron_alpha_thermal_collision_profile97)_ 4.46413276575218049e+02 -Electron-alpha_thermal_collision_frequency_at_point_98___________________ (freq_plasma_electron_alpha_thermal_collision_profile98)_ 4.46926001573494773e+02 -Electron-alpha_thermal_collision_frequency_at_point_99___________________ (freq_plasma_electron_alpha_thermal_collision_profile99)_ 4.47444947506866527e+02 -Electron-alpha_thermal_collision_frequency_at_point_100__________________ (freq_plasma_electron_alpha_thermal_collision_profile100)_ 4.47970146244032662e+02 -Electron-alpha_thermal_collision_frequency_at_point_101__________________ (freq_plasma_electron_alpha_thermal_collision_profile101)_ 4.48501630107069730e+02 -Electron-alpha_thermal_collision_frequency_at_point_102__________________ (freq_plasma_electron_alpha_thermal_collision_profile102)_ 4.49039431875908917e+02 -Electron-alpha_thermal_collision_frequency_at_point_103__________________ (freq_plasma_electron_alpha_thermal_collision_profile103)_ 4.49583584792891997e+02 -Electron-alpha_thermal_collision_frequency_at_point_104__________________ (freq_plasma_electron_alpha_thermal_collision_profile104)_ 4.50134122567399174e+02 -Electron-alpha_thermal_collision_frequency_at_point_105__________________ (freq_plasma_electron_alpha_thermal_collision_profile105)_ 4.50691079380556630e+02 -Electron-alpha_thermal_collision_frequency_at_point_106__________________ (freq_plasma_electron_alpha_thermal_collision_profile106)_ 4.51254489890021432e+02 -Electron-alpha_thermal_collision_frequency_at_point_107__________________ (freq_plasma_electron_alpha_thermal_collision_profile107)_ 4.51824389234844034e+02 -Electron-alpha_thermal_collision_frequency_at_point_108__________________ (freq_plasma_electron_alpha_thermal_collision_profile108)_ 4.52400813040414164e+02 -Electron-alpha_thermal_collision_frequency_at_point_109__________________ (freq_plasma_electron_alpha_thermal_collision_profile109)_ 4.52983797423484702e+02 -Electron-alpha_thermal_collision_frequency_at_point_110__________________ (freq_plasma_electron_alpha_thermal_collision_profile110)_ 4.53573378997281395e+02 -Electron-alpha_thermal_collision_frequency_at_point_111__________________ (freq_plasma_electron_alpha_thermal_collision_profile111)_ 4.54169594876693793e+02 -Electron-alpha_thermal_collision_frequency_at_point_112__________________ (freq_plasma_electron_alpha_thermal_collision_profile112)_ 4.54772482683553619e+02 -Electron-alpha_thermal_collision_frequency_at_point_113__________________ (freq_plasma_electron_alpha_thermal_collision_profile113)_ 4.55382080551997831e+02 -Electron-alpha_thermal_collision_frequency_at_point_114__________________ (freq_plasma_electron_alpha_thermal_collision_profile114)_ 4.55998427133921155e+02 -Electron-alpha_thermal_collision_frequency_at_point_115__________________ (freq_plasma_electron_alpha_thermal_collision_profile115)_ 4.56621561604514341e+02 -Electron-alpha_thermal_collision_frequency_at_point_116__________________ (freq_plasma_electron_alpha_thermal_collision_profile116)_ 4.57251523667897573e+02 -Electron-alpha_thermal_collision_frequency_at_point_117__________________ (freq_plasma_electron_alpha_thermal_collision_profile117)_ 4.57888353562840905e+02 -Electron-alpha_thermal_collision_frequency_at_point_118__________________ (freq_plasma_electron_alpha_thermal_collision_profile118)_ 4.58532092068581960e+02 -Electron-alpha_thermal_collision_frequency_at_point_119__________________ (freq_plasma_electron_alpha_thermal_collision_profile119)_ 4.59182780510734347e+02 -Electron-alpha_thermal_collision_frequency_at_point_120__________________ (freq_plasma_electron_alpha_thermal_collision_profile120)_ 4.59840460767293905e+02 -Electron-alpha_thermal_collision_frequency_at_point_121__________________ (freq_plasma_electron_alpha_thermal_collision_profile121)_ 4.60505175274743465e+02 -Electron-alpha_thermal_collision_frequency_at_point_122__________________ (freq_plasma_electron_alpha_thermal_collision_profile122)_ 4.61176967034255085e+02 -Electron-alpha_thermal_collision_frequency_at_point_123__________________ (freq_plasma_electron_alpha_thermal_collision_profile123)_ 4.61855879617992059e+02 -Electron-alpha_thermal_collision_frequency_at_point_124__________________ (freq_plasma_electron_alpha_thermal_collision_profile124)_ 4.62541957175514483e+02 -Electron-alpha_thermal_collision_frequency_at_point_125__________________ (freq_plasma_electron_alpha_thermal_collision_profile125)_ 4.63235244440288398e+02 -Electron-alpha_thermal_collision_frequency_at_point_126__________________ (freq_plasma_electron_alpha_thermal_collision_profile126)_ 4.63935786736298439e+02 -Electron-alpha_thermal_collision_frequency_at_point_127__________________ (freq_plasma_electron_alpha_thermal_collision_profile127)_ 4.64643629984769291e+02 -Electron-alpha_thermal_collision_frequency_at_point_128__________________ (freq_plasma_electron_alpha_thermal_collision_profile128)_ 4.65358820710995133e+02 -Electron-alpha_thermal_collision_frequency_at_point_129__________________ (freq_plasma_electron_alpha_thermal_collision_profile129)_ 4.66081406051277554e+02 -Electron-alpha_thermal_collision_frequency_at_point_130__________________ (freq_plasma_electron_alpha_thermal_collision_profile130)_ 4.66811433759979195e+02 -Electron-alpha_thermal_collision_frequency_at_point_131__________________ (freq_plasma_electron_alpha_thermal_collision_profile131)_ 4.67548952216685620e+02 -Electron-alpha_thermal_collision_frequency_at_point_132__________________ (freq_plasma_electron_alpha_thermal_collision_profile132)_ 4.68294010433490087e+02 -Electron-alpha_thermal_collision_frequency_at_point_133__________________ (freq_plasma_electron_alpha_thermal_collision_profile133)_ 4.69046658062387621e+02 -Electron-alpha_thermal_collision_frequency_at_point_134__________________ (freq_plasma_electron_alpha_thermal_collision_profile134)_ 4.69806945402794781e+02 -Electron-alpha_thermal_collision_frequency_at_point_135__________________ (freq_plasma_electron_alpha_thermal_collision_profile135)_ 4.70574923409186738e+02 -Electron-alpha_thermal_collision_frequency_at_point_136__________________ (freq_plasma_electron_alpha_thermal_collision_profile136)_ 4.71350643698859074e+02 -Electron-alpha_thermal_collision_frequency_at_point_137__________________ (freq_plasma_electron_alpha_thermal_collision_profile137)_ 4.72134158559815489e+02 -Electron-alpha_thermal_collision_frequency_at_point_138__________________ (freq_plasma_electron_alpha_thermal_collision_profile138)_ 4.72925520958778520e+02 -Electron-alpha_thermal_collision_frequency_at_point_139__________________ (freq_plasma_electron_alpha_thermal_collision_profile139)_ 4.73724784549336334e+02 -Electron-alpha_thermal_collision_frequency_at_point_140__________________ (freq_plasma_electron_alpha_thermal_collision_profile140)_ 4.74532003680211972e+02 -Electron-alpha_thermal_collision_frequency_at_point_141__________________ (freq_plasma_electron_alpha_thermal_collision_profile141)_ 4.75347233403674750e+02 -Electron-alpha_thermal_collision_frequency_at_point_142__________________ (freq_plasma_electron_alpha_thermal_collision_profile142)_ 4.76170529484081328e+02 -Electron-alpha_thermal_collision_frequency_at_point_143__________________ (freq_plasma_electron_alpha_thermal_collision_profile143)_ 4.77001948406555584e+02 -Electron-alpha_thermal_collision_frequency_at_point_144__________________ (freq_plasma_electron_alpha_thermal_collision_profile144)_ 4.77841547385810202e+02 -Electron-alpha_thermal_collision_frequency_at_point_145__________________ (freq_plasma_electron_alpha_thermal_collision_profile145)_ 4.78689384375109171e+02 -Electron-alpha_thermal_collision_frequency_at_point_146__________________ (freq_plasma_electron_alpha_thermal_collision_profile146)_ 4.79545518075375128e+02 -Electron-alpha_thermal_collision_frequency_at_point_147__________________ (freq_plasma_electron_alpha_thermal_collision_profile147)_ 4.80410007944443407e+02 -Electron-alpha_thermal_collision_frequency_at_point_148__________________ (freq_plasma_electron_alpha_thermal_collision_profile148)_ 4.81282914206465762e+02 -Electron-alpha_thermal_collision_frequency_at_point_149__________________ (freq_plasma_electron_alpha_thermal_collision_profile149)_ 4.82164297861467105e+02 -Electron-alpha_thermal_collision_frequency_at_point_150__________________ (freq_plasma_electron_alpha_thermal_collision_profile150)_ 4.83054220695053345e+02 -Electron-alpha_thermal_collision_frequency_at_point_151__________________ (freq_plasma_electron_alpha_thermal_collision_profile151)_ 4.83952745288280596e+02 -Electron-alpha_thermal_collision_frequency_at_point_152__________________ (freq_plasma_electron_alpha_thermal_collision_profile152)_ 4.84859935027680194e+02 -Electron-alpha_thermal_collision_frequency_at_point_153__________________ (freq_plasma_electron_alpha_thermal_collision_profile153)_ 4.85775854115447430e+02 -Electron-alpha_thermal_collision_frequency_at_point_154__________________ (freq_plasma_electron_alpha_thermal_collision_profile154)_ 4.86700567579795916e+02 -Electron-alpha_thermal_collision_frequency_at_point_155__________________ (freq_plasma_electron_alpha_thermal_collision_profile155)_ 4.87634141285478393e+02 -Electron-alpha_thermal_collision_frequency_at_point_156__________________ (freq_plasma_electron_alpha_thermal_collision_profile156)_ 4.88576641944478069e+02 -Electron-alpha_thermal_collision_frequency_at_point_157__________________ (freq_plasma_electron_alpha_thermal_collision_profile157)_ 4.89528137126874526e+02 -Electron-alpha_thermal_collision_frequency_at_point_158__________________ (freq_plasma_electron_alpha_thermal_collision_profile158)_ 4.90488695271884239e+02 -Electron-alpha_thermal_collision_frequency_at_point_159__________________ (freq_plasma_electron_alpha_thermal_collision_profile159)_ 4.91458385699081873e+02 -Electron-alpha_thermal_collision_frequency_at_point_160__________________ (freq_plasma_electron_alpha_thermal_collision_profile160)_ 4.92437278619801475e+02 -Electron-alpha_thermal_collision_frequency_at_point_161__________________ (freq_plasma_electron_alpha_thermal_collision_profile161)_ 4.93425445148726965e+02 -Electron-alpha_thermal_collision_frequency_at_point_162__________________ (freq_plasma_electron_alpha_thermal_collision_profile162)_ 4.94422957315667020e+02 -Electron-alpha_thermal_collision_frequency_at_point_163__________________ (freq_plasma_electron_alpha_thermal_collision_profile163)_ 4.95429888077523060e+02 -Electron-alpha_thermal_collision_frequency_at_point_164__________________ (freq_plasma_electron_alpha_thermal_collision_profile164)_ 4.96446311330453341e+02 -Electron-alpha_thermal_collision_frequency_at_point_165__________________ (freq_plasma_electron_alpha_thermal_collision_profile165)_ 4.97472301922233896e+02 -Electron-alpha_thermal_collision_frequency_at_point_166__________________ (freq_plasma_electron_alpha_thermal_collision_profile166)_ 4.98507935664821048e+02 -Electron-alpha_thermal_collision_frequency_at_point_167__________________ (freq_plasma_electron_alpha_thermal_collision_profile167)_ 4.99553289347119971e+02 -Electron-alpha_thermal_collision_frequency_at_point_168__________________ (freq_plasma_electron_alpha_thermal_collision_profile168)_ 5.00608440747960287e+02 -Electron-alpha_thermal_collision_frequency_at_point_169__________________ (freq_plasma_electron_alpha_thermal_collision_profile169)_ 5.01673468649285155e+02 -Electron-alpha_thermal_collision_frequency_at_point_170__________________ (freq_plasma_electron_alpha_thermal_collision_profile170)_ 5.02748452849555918e+02 -Electron-alpha_thermal_collision_frequency_at_point_171__________________ (freq_plasma_electron_alpha_thermal_collision_profile171)_ 5.03833474177375194e+02 -Electron-alpha_thermal_collision_frequency_at_point_172__________________ (freq_plasma_electron_alpha_thermal_collision_profile172)_ 5.04928614505333826e+02 -Electron-alpha_thermal_collision_frequency_at_point_173__________________ (freq_plasma_electron_alpha_thermal_collision_profile173)_ 5.06033956764085133e+02 -Electron-alpha_thermal_collision_frequency_at_point_174__________________ (freq_plasma_electron_alpha_thermal_collision_profile174)_ 5.07149584956649903e+02 -Electron-alpha_thermal_collision_frequency_at_point_175__________________ (freq_plasma_electron_alpha_thermal_collision_profile175)_ 5.08275584172955632e+02 -Electron-alpha_thermal_collision_frequency_at_point_176__________________ (freq_plasma_electron_alpha_thermal_collision_profile176)_ 5.09412040604616323e+02 -Electron-alpha_thermal_collision_frequency_at_point_177__________________ (freq_plasma_electron_alpha_thermal_collision_profile177)_ 5.10559041559952846e+02 -Electron-alpha_thermal_collision_frequency_at_point_178__________________ (freq_plasma_electron_alpha_thermal_collision_profile178)_ 5.11716675479264211e+02 -Electron-alpha_thermal_collision_frequency_at_point_179__________________ (freq_plasma_electron_alpha_thermal_collision_profile179)_ 5.12885031950346956e+02 -Electron-alpha_thermal_collision_frequency_at_point_180__________________ (freq_plasma_electron_alpha_thermal_collision_profile180)_ 5.14064201724272152e+02 -Electron-alpha_thermal_collision_frequency_at_point_181__________________ (freq_plasma_electron_alpha_thermal_collision_profile181)_ 5.15254276731423261e+02 -Electron-alpha_thermal_collision_frequency_at_point_182__________________ (freq_plasma_electron_alpha_thermal_collision_profile182)_ 5.16455350097797464e+02 -Electron-alpha_thermal_collision_frequency_at_point_183__________________ (freq_plasma_electron_alpha_thermal_collision_profile183)_ 5.17667516161579556e+02 -Electron-alpha_thermal_collision_frequency_at_point_184__________________ (freq_plasma_electron_alpha_thermal_collision_profile184)_ 5.18890870489982717e+02 -Electron-alpha_thermal_collision_frequency_at_point_185__________________ (freq_plasma_electron_alpha_thermal_collision_profile185)_ 5.20125509896380095e+02 -Electron-alpha_thermal_collision_frequency_at_point_186__________________ (freq_plasma_electron_alpha_thermal_collision_profile186)_ 5.21371532457708895e+02 -Electron-alpha_thermal_collision_frequency_at_point_187__________________ (freq_plasma_electron_alpha_thermal_collision_profile187)_ 5.22629037532170059e+02 -Electron-alpha_thermal_collision_frequency_at_point_188__________________ (freq_plasma_electron_alpha_thermal_collision_profile188)_ 5.23898125777218070e+02 -Electron-alpha_thermal_collision_frequency_at_point_189__________________ (freq_plasma_electron_alpha_thermal_collision_profile189)_ 5.25178899167853274e+02 -Electron-alpha_thermal_collision_frequency_at_point_190__________________ (freq_plasma_electron_alpha_thermal_collision_profile190)_ 5.26471461015216164e+02 -Electron-alpha_thermal_collision_frequency_at_point_191__________________ (freq_plasma_electron_alpha_thermal_collision_profile191)_ 5.27775915985489860e+02 -Electron-alpha_thermal_collision_frequency_at_point_192__________________ (freq_plasma_electron_alpha_thermal_collision_profile192)_ 5.29092370119121824e+02 -Electron-alpha_thermal_collision_frequency_at_point_193__________________ (freq_plasma_electron_alpha_thermal_collision_profile193)_ 5.30420930850360946e+02 -Electron-alpha_thermal_collision_frequency_at_point_194__________________ (freq_plasma_electron_alpha_thermal_collision_profile194)_ 5.31761707027125908e+02 -Electron-alpha_thermal_collision_frequency_at_point_195__________________ (freq_plasma_electron_alpha_thermal_collision_profile195)_ 5.33114808931200969e+02 -Electron-alpha_thermal_collision_frequency_at_point_196__________________ (freq_plasma_electron_alpha_thermal_collision_profile196)_ 5.34480348298770309e+02 -Electron-alpha_thermal_collision_frequency_at_point_197__________________ (freq_plasma_electron_alpha_thermal_collision_profile197)_ 5.35858438341298779e+02 -Electron-alpha_thermal_collision_frequency_at_point_198__________________ (freq_plasma_electron_alpha_thermal_collision_profile198)_ 5.37249193766759049e+02 -Electron-alpha_thermal_collision_frequency_at_point_199__________________ (freq_plasma_electron_alpha_thermal_collision_profile199)_ 5.38652730801215512e+02 -Electron-alpha_thermal_collision_frequency_at_point_200__________________ (freq_plasma_electron_alpha_thermal_collision_profile200)_ 5.40069167210769137e+02 -Electron-alpha_thermal_collision_frequency_at_point_201__________________ (freq_plasma_electron_alpha_thermal_collision_profile201)_ 5.41498622323873974e+02 -Electron-alpha_thermal_collision_frequency_at_point_202__________________ (freq_plasma_electron_alpha_thermal_collision_profile202)_ 5.42941217054022900e+02 -Electron-alpha_thermal_collision_frequency_at_point_203__________________ (freq_plasma_electron_alpha_thermal_collision_profile203)_ 5.44397073922820596e+02 -Electron-alpha_thermal_collision_frequency_at_point_204__________________ (freq_plasma_electron_alpha_thermal_collision_profile204)_ 5.45866317083439640e+02 -Electron-alpha_thermal_collision_frequency_at_point_205__________________ (freq_plasma_electron_alpha_thermal_collision_profile205)_ 5.47349072344474166e+02 -Electron-alpha_thermal_collision_frequency_at_point_206__________________ (freq_plasma_electron_alpha_thermal_collision_profile206)_ 5.48845467194194612e+02 -Electron-alpha_thermal_collision_frequency_at_point_207__________________ (freq_plasma_electron_alpha_thermal_collision_profile207)_ 5.50355630825210710e+02 -Electron-alpha_thermal_collision_frequency_at_point_208__________________ (freq_plasma_electron_alpha_thermal_collision_profile208)_ 5.51879694159551036e+02 -Electron-alpha_thermal_collision_frequency_at_point_209__________________ (freq_plasma_electron_alpha_thermal_collision_profile209)_ 5.53417789874166147e+02 -Electron-alpha_thermal_collision_frequency_at_point_210__________________ (freq_plasma_electron_alpha_thermal_collision_profile210)_ 5.54970052426860548e+02 -Electron-alpha_thermal_collision_frequency_at_point_211__________________ (freq_plasma_electron_alpha_thermal_collision_profile211)_ 5.56536618082664745e+02 -Electron-alpha_thermal_collision_frequency_at_point_212__________________ (freq_plasma_electron_alpha_thermal_collision_profile212)_ 5.58117624940652831e+02 -Electron-alpha_thermal_collision_frequency_at_point_213__________________ (freq_plasma_electron_alpha_thermal_collision_profile213)_ 5.59713212961212776e+02 -Electron-alpha_thermal_collision_frequency_at_point_214__________________ (freq_plasma_electron_alpha_thermal_collision_profile214)_ 5.61323523993778736e+02 -Electron-alpha_thermal_collision_frequency_at_point_215__________________ (freq_plasma_electron_alpha_thermal_collision_profile215)_ 5.62948701805032897e+02 -Electron-alpha_thermal_collision_frequency_at_point_216__________________ (freq_plasma_electron_alpha_thermal_collision_profile216)_ 5.64588892107585480e+02 -Electron-alpha_thermal_collision_frequency_at_point_217__________________ (freq_plasma_electron_alpha_thermal_collision_profile217)_ 5.66244242589140185e+02 -Electron-alpha_thermal_collision_frequency_at_point_218__________________ (freq_plasma_electron_alpha_thermal_collision_profile218)_ 5.67914902942154526e+02 -Electron-alpha_thermal_collision_frequency_at_point_219__________________ (freq_plasma_electron_alpha_thermal_collision_profile219)_ 5.69601024894004468e+02 -Electron-alpha_thermal_collision_frequency_at_point_220__________________ (freq_plasma_electron_alpha_thermal_collision_profile220)_ 5.71302762237658044e+02 -Electron-alpha_thermal_collision_frequency_at_point_221__________________ (freq_plasma_electron_alpha_thermal_collision_profile221)_ 5.73020270862871598e+02 -Electron-alpha_thermal_collision_frequency_at_point_222__________________ (freq_plasma_electron_alpha_thermal_collision_profile222)_ 5.74753708787916935e+02 -Electron-alpha_thermal_collision_frequency_at_point_223__________________ (freq_plasma_electron_alpha_thermal_collision_profile223)_ 5.76503236191844508e+02 -Electron-alpha_thermal_collision_frequency_at_point_224__________________ (freq_plasma_electron_alpha_thermal_collision_profile224)_ 5.78269015447297306e+02 -Electron-alpha_thermal_collision_frequency_at_point_225__________________ (freq_plasma_electron_alpha_thermal_collision_profile225)_ 5.80051211153879876e+02 -Electron-alpha_thermal_collision_frequency_at_point_226__________________ (freq_plasma_electron_alpha_thermal_collision_profile226)_ 5.81849990172097023e+02 -Electron-alpha_thermal_collision_frequency_at_point_227__________________ (freq_plasma_electron_alpha_thermal_collision_profile227)_ 5.83665521657867544e+02 -Electron-alpha_thermal_collision_frequency_at_point_228__________________ (freq_plasma_electron_alpha_thermal_collision_profile228)_ 5.85497977097626062e+02 -Electron-alpha_thermal_collision_frequency_at_point_229__________________ (freq_plasma_electron_alpha_thermal_collision_profile229)_ 5.87347530344018992e+02 -Electron-alpha_thermal_collision_frequency_at_point_230__________________ (freq_plasma_electron_alpha_thermal_collision_profile230)_ 5.89214357652211106e+02 -Electron-alpha_thermal_collision_frequency_at_point_231__________________ (freq_plasma_electron_alpha_thermal_collision_profile231)_ 5.91098637716807048e+02 -Electron-alpha_thermal_collision_frequency_at_point_232__________________ (freq_plasma_electron_alpha_thermal_collision_profile232)_ 5.93000551709398906e+02 -Electron-alpha_thermal_collision_frequency_at_point_233__________________ (freq_plasma_electron_alpha_thermal_collision_profile233)_ 5.94920283316755217e+02 -Electron-alpha_thermal_collision_frequency_at_point_234__________________ (freq_plasma_electron_alpha_thermal_collision_profile234)_ 5.96858018779657755e+02 -Electron-alpha_thermal_collision_frequency_at_point_235__________________ (freq_plasma_electron_alpha_thermal_collision_profile235)_ 5.98813946932395197e+02 -Electron-alpha_thermal_collision_frequency_at_point_236__________________ (freq_plasma_electron_alpha_thermal_collision_profile236)_ 6.00788259242931986e+02 -Electron-alpha_thermal_collision_frequency_at_point_237__________________ (freq_plasma_electron_alpha_thermal_collision_profile237)_ 6.02781149853756460e+02 -Electron-alpha_thermal_collision_frequency_at_point_238__________________ (freq_plasma_electron_alpha_thermal_collision_profile238)_ 6.04792815623420893e+02 -Electron-alpha_thermal_collision_frequency_at_point_239__________________ (freq_plasma_electron_alpha_thermal_collision_profile239)_ 6.06823456168789676e+02 -Electron-alpha_thermal_collision_frequency_at_point_240__________________ (freq_plasma_electron_alpha_thermal_collision_profile240)_ 6.08873273908000442e+02 -Electron-alpha_thermal_collision_frequency_at_point_241__________________ (freq_plasma_electron_alpha_thermal_collision_profile241)_ 6.10942474104153462e+02 -Electron-alpha_thermal_collision_frequency_at_point_242__________________ (freq_plasma_electron_alpha_thermal_collision_profile242)_ 6.13031264909743072e+02 -Electron-alpha_thermal_collision_frequency_at_point_243__________________ (freq_plasma_electron_alpha_thermal_collision_profile243)_ 6.15139857411836033e+02 -Electron-alpha_thermal_collision_frequency_at_point_244__________________ (freq_plasma_electron_alpha_thermal_collision_profile244)_ 6.17268465678017947e+02 -Electron-alpha_thermal_collision_frequency_at_point_245__________________ (freq_plasma_electron_alpha_thermal_collision_profile245)_ 6.19417306803114343e+02 -Electron-alpha_thermal_collision_frequency_at_point_246__________________ (freq_plasma_electron_alpha_thermal_collision_profile246)_ 6.21586600956694610e+02 -Electron-alpha_thermal_collision_frequency_at_point_247__________________ (freq_plasma_electron_alpha_thermal_collision_profile247)_ 6.23776571431385946e+02 -Electron-alpha_thermal_collision_frequency_at_point_248__________________ (freq_plasma_electron_alpha_thermal_collision_profile248)_ 6.25987444691991868e+02 -Electron-alpha_thermal_collision_frequency_at_point_249__________________ (freq_plasma_electron_alpha_thermal_collision_profile249)_ 6.28219450425441551e+02 -Electron-alpha_thermal_collision_frequency_at_point_250__________________ (freq_plasma_electron_alpha_thermal_collision_profile250)_ 6.30472821591571801e+02 -Electron-alpha_thermal_collision_frequency_at_point_251__________________ (freq_plasma_electron_alpha_thermal_collision_profile251)_ 6.32747794474768284e+02 -Electron-alpha_thermal_collision_frequency_at_point_252__________________ (freq_plasma_electron_alpha_thermal_collision_profile252)_ 6.35044608736462465e+02 -Electron-alpha_thermal_collision_frequency_at_point_253__________________ (freq_plasma_electron_alpha_thermal_collision_profile253)_ 6.37363507468511557e+02 -Electron-alpha_thermal_collision_frequency_at_point_254__________________ (freq_plasma_electron_alpha_thermal_collision_profile254)_ 6.39704737247464323e+02 -Electron-alpha_thermal_collision_frequency_at_point_255__________________ (freq_plasma_electron_alpha_thermal_collision_profile255)_ 6.42068548189732837e+02 -Electron-alpha_thermal_collision_frequency_at_point_256__________________ (freq_plasma_electron_alpha_thermal_collision_profile256)_ 6.44455194007678870e+02 -Electron-alpha_thermal_collision_frequency_at_point_257__________________ (freq_plasma_electron_alpha_thermal_collision_profile257)_ 6.46864932066630217e+02 -Electron-alpha_thermal_collision_frequency_at_point_258__________________ (freq_plasma_electron_alpha_thermal_collision_profile258)_ 6.49298023442838371e+02 -Electron-alpha_thermal_collision_frequency_at_point_259__________________ (freq_plasma_electron_alpha_thermal_collision_profile259)_ 6.51754732982395467e+02 -Electron-alpha_thermal_collision_frequency_at_point_260__________________ (freq_plasma_electron_alpha_thermal_collision_profile260)_ 6.54235329361115078e+02 -Electron-alpha_thermal_collision_frequency_at_point_261__________________ (freq_plasma_electron_alpha_thermal_collision_profile261)_ 6.56740085145399917e+02 -Electron-alpha_thermal_collision_frequency_at_point_262__________________ (freq_plasma_electron_alpha_thermal_collision_profile262)_ 6.59269276854102031e+02 -Electron-alpha_thermal_collision_frequency_at_point_263__________________ (freq_plasma_electron_alpha_thermal_collision_profile263)_ 6.61823185021392533e+02 -Electron-alpha_thermal_collision_frequency_at_point_264__________________ (freq_plasma_electron_alpha_thermal_collision_profile264)_ 6.64402094260653143e+02 -Electron-alpha_thermal_collision_frequency_at_point_265__________________ (freq_plasma_electron_alpha_thermal_collision_profile265)_ 6.67006293329402070e+02 -Electron-alpha_thermal_collision_frequency_at_point_266__________________ (freq_plasma_electron_alpha_thermal_collision_profile266)_ 6.69636075195266130e+02 -Electron-alpha_thermal_collision_frequency_at_point_267__________________ (freq_plasma_electron_alpha_thermal_collision_profile267)_ 6.72291737103016317e+02 -Electron-alpha_thermal_collision_frequency_at_point_268__________________ (freq_plasma_electron_alpha_thermal_collision_profile268)_ 6.74973580642670072e+02 -Electron-alpha_thermal_collision_frequency_at_point_269__________________ (freq_plasma_electron_alpha_thermal_collision_profile269)_ 6.77681911818689287e+02 -Electron-alpha_thermal_collision_frequency_at_point_270__________________ (freq_plasma_electron_alpha_thermal_collision_profile270)_ 6.80417041120261160e+02 -Electron-alpha_thermal_collision_frequency_at_point_271__________________ (freq_plasma_electron_alpha_thermal_collision_profile271)_ 6.83179283592704792e+02 -Electron-alpha_thermal_collision_frequency_at_point_272__________________ (freq_plasma_electron_alpha_thermal_collision_profile272)_ 6.85968958909984849e+02 -Electron-alpha_thermal_collision_frequency_at_point_273__________________ (freq_plasma_electron_alpha_thermal_collision_profile273)_ 6.88786391448368477e+02 -Electron-alpha_thermal_collision_frequency_at_point_274__________________ (freq_plasma_electron_alpha_thermal_collision_profile274)_ 6.91631910361217592e+02 -Electron-alpha_thermal_collision_frequency_at_point_275__________________ (freq_plasma_electron_alpha_thermal_collision_profile275)_ 6.94505849654946246e+02 -Electron-alpha_thermal_collision_frequency_at_point_276__________________ (freq_plasma_electron_alpha_thermal_collision_profile276)_ 6.97408548266131675e+02 -Electron-alpha_thermal_collision_frequency_at_point_277__________________ (freq_plasma_electron_alpha_thermal_collision_profile277)_ 7.00340350139808834e+02 -Electron-alpha_thermal_collision_frequency_at_point_278__________________ (freq_plasma_electron_alpha_thermal_collision_profile278)_ 7.03301604308944889e+02 -Electron-alpha_thermal_collision_frequency_at_point_279__________________ (freq_plasma_electron_alpha_thermal_collision_profile279)_ 7.06292664975111734e+02 -Electron-alpha_thermal_collision_frequency_at_point_280__________________ (freq_plasma_electron_alpha_thermal_collision_profile280)_ 7.09313891590355297e+02 -Electron-alpha_thermal_collision_frequency_at_point_281__________________ (freq_plasma_electron_alpha_thermal_collision_profile281)_ 7.12365648940277993e+02 -Electron-alpha_thermal_collision_frequency_at_point_282__________________ (freq_plasma_electron_alpha_thermal_collision_profile282)_ 7.15448307228338422e+02 -Electron-alpha_thermal_collision_frequency_at_point_283__________________ (freq_plasma_electron_alpha_thermal_collision_profile283)_ 7.18562242161370818e+02 -Electron-alpha_thermal_collision_frequency_at_point_284__________________ (freq_plasma_electron_alpha_thermal_collision_profile284)_ 7.21707835036335837e+02 -Electron-alpha_thermal_collision_frequency_at_point_285__________________ (freq_plasma_electron_alpha_thermal_collision_profile285)_ 7.24885472828304273e+02 -Electron-alpha_thermal_collision_frequency_at_point_286__________________ (freq_plasma_electron_alpha_thermal_collision_profile286)_ 7.28095548279677132e+02 -Electron-alpha_thermal_collision_frequency_at_point_287__________________ (freq_plasma_electron_alpha_thermal_collision_profile287)_ 7.31338459990645333e+02 -Electron-alpha_thermal_collision_frequency_at_point_288__________________ (freq_plasma_electron_alpha_thermal_collision_profile288)_ 7.34614612510891448e+02 -Electron-alpha_thermal_collision_frequency_at_point_289__________________ (freq_plasma_electron_alpha_thermal_collision_profile289)_ 7.37924416432529938e+02 -Electron-alpha_thermal_collision_frequency_at_point_290__________________ (freq_plasma_electron_alpha_thermal_collision_profile290)_ 7.41268288484294430e+02 -Electron-alpha_thermal_collision_frequency_at_point_291__________________ (freq_plasma_electron_alpha_thermal_collision_profile291)_ 7.44646651626952917e+02 -Electron-alpha_thermal_collision_frequency_at_point_292__________________ (freq_plasma_electron_alpha_thermal_collision_profile292)_ 7.48059935149970784e+02 -Electron-alpha_thermal_collision_frequency_at_point_293__________________ (freq_plasma_electron_alpha_thermal_collision_profile293)_ 7.51508574769389725e+02 -Electron-alpha_thermal_collision_frequency_at_point_294__________________ (freq_plasma_electron_alpha_thermal_collision_profile294)_ 7.54993012726937650e+02 -Electron-alpha_thermal_collision_frequency_at_point_295__________________ (freq_plasma_electron_alpha_thermal_collision_profile295)_ 7.58513697890349363e+02 -Electron-alpha_thermal_collision_frequency_at_point_296__________________ (freq_plasma_electron_alpha_thermal_collision_profile296)_ 7.62071085854886974e+02 -Electron-alpha_thermal_collision_frequency_at_point_297__________________ (freq_plasma_electron_alpha_thermal_collision_profile297)_ 7.65665639046052092e+02 -Electron-alpha_thermal_collision_frequency_at_point_298__________________ (freq_plasma_electron_alpha_thermal_collision_profile298)_ 7.69297826823473315e+02 -Electron-alpha_thermal_collision_frequency_at_point_299__________________ (freq_plasma_electron_alpha_thermal_collision_profile299)_ 7.72968125585947519e+02 -Electron-alpha_thermal_collision_frequency_at_point_300__________________ (freq_plasma_electron_alpha_thermal_collision_profile300)_ 7.76677018877619730e+02 -Electron-alpha_thermal_collision_frequency_at_point_301__________________ (freq_plasma_electron_alpha_thermal_collision_profile301)_ 7.80424997495272578e+02 -Electron-alpha_thermal_collision_frequency_at_point_302__________________ (freq_plasma_electron_alpha_thermal_collision_profile302)_ 7.84212559596711458e+02 -Electron-alpha_thermal_collision_frequency_at_point_303__________________ (freq_plasma_electron_alpha_thermal_collision_profile303)_ 7.88040210810199710e+02 -Electron-alpha_thermal_collision_frequency_at_point_304__________________ (freq_plasma_electron_alpha_thermal_collision_profile304)_ 7.91908464344926415e+02 -Electron-alpha_thermal_collision_frequency_at_point_305__________________ (freq_plasma_electron_alpha_thermal_collision_profile305)_ 7.95817841102462580e+02 -Electron-alpha_thermal_collision_frequency_at_point_306__________________ (freq_plasma_electron_alpha_thermal_collision_profile306)_ 7.99768869789169685e+02 -Electron-alpha_thermal_collision_frequency_at_point_307__________________ (freq_plasma_electron_alpha_thermal_collision_profile307)_ 8.03762087029516806e+02 -Electron-alpha_thermal_collision_frequency_at_point_308__________________ (freq_plasma_electron_alpha_thermal_collision_profile308)_ 8.07798037480258131e+02 -Electron-alpha_thermal_collision_frequency_at_point_309__________________ (freq_plasma_electron_alpha_thermal_collision_profile309)_ 8.11877273945415823e+02 -Electron-alpha_thermal_collision_frequency_at_point_310__________________ (freq_plasma_electron_alpha_thermal_collision_profile310)_ 8.16000357492017883e+02 -Electron-alpha_thermal_collision_frequency_at_point_311__________________ (freq_plasma_electron_alpha_thermal_collision_profile311)_ 8.20167857566520638e+02 -Electron-alpha_thermal_collision_frequency_at_point_312__________________ (freq_plasma_electron_alpha_thermal_collision_profile312)_ 8.24380352111858429e+02 -Electron-alpha_thermal_collision_frequency_at_point_313__________________ (freq_plasma_electron_alpha_thermal_collision_profile313)_ 8.28638427685032752e+02 -Electron-alpha_thermal_collision_frequency_at_point_314__________________ (freq_plasma_electron_alpha_thermal_collision_profile314)_ 8.32942679575177408e+02 -Electron-alpha_thermal_collision_frequency_at_point_315__________________ (freq_plasma_electron_alpha_thermal_collision_profile315)_ 8.37293711922000284e+02 -Electron-alpha_thermal_collision_frequency_at_point_316__________________ (freq_plasma_electron_alpha_thermal_collision_profile316)_ 8.41692137834513233e+02 -Electron-alpha_thermal_collision_frequency_at_point_317__________________ (freq_plasma_electron_alpha_thermal_collision_profile317)_ 8.46138579509959754e+02 -Electron-alpha_thermal_collision_frequency_at_point_318__________________ (freq_plasma_electron_alpha_thermal_collision_profile318)_ 8.50633668352806467e+02 -Electron-alpha_thermal_collision_frequency_at_point_319__________________ (freq_plasma_electron_alpha_thermal_collision_profile319)_ 8.55178045093713763e+02 -Electron-alpha_thermal_collision_frequency_at_point_320__________________ (freq_plasma_electron_alpha_thermal_collision_profile320)_ 8.59772359908334806e+02 -Electron-alpha_thermal_collision_frequency_at_point_321__________________ (freq_plasma_electron_alpha_thermal_collision_profile321)_ 8.64417272535820302e+02 -Electron-alpha_thermal_collision_frequency_at_point_322__________________ (freq_plasma_electron_alpha_thermal_collision_profile322)_ 8.69113452396883645e+02 -Electron-alpha_thermal_collision_frequency_at_point_323__________________ (freq_plasma_electron_alpha_thermal_collision_profile323)_ 8.73861578711263519e+02 -Electron-alpha_thermal_collision_frequency_at_point_324__________________ (freq_plasma_electron_alpha_thermal_collision_profile324)_ 8.78662340614432196e+02 -Electron-alpha_thermal_collision_frequency_at_point_325__________________ (freq_plasma_electron_alpha_thermal_collision_profile325)_ 8.83516437273350789e+02 -Electron-alpha_thermal_collision_frequency_at_point_326__________________ (freq_plasma_electron_alpha_thermal_collision_profile326)_ 8.88424578001104123e+02 -Electron-alpha_thermal_collision_frequency_at_point_327__________________ (freq_plasma_electron_alpha_thermal_collision_profile327)_ 8.93387482370186149e+02 -Electron-alpha_thermal_collision_frequency_at_point_328__________________ (freq_plasma_electron_alpha_thermal_collision_profile328)_ 8.98405880324242048e+02 -Electron-alpha_thermal_collision_frequency_at_point_329__________________ (freq_plasma_electron_alpha_thermal_collision_profile329)_ 9.03480512288013756e+02 -Electron-alpha_thermal_collision_frequency_at_point_330__________________ (freq_plasma_electron_alpha_thermal_collision_profile330)_ 9.08612129275253892e+02 -Electron-alpha_thermal_collision_frequency_at_point_331__________________ (freq_plasma_electron_alpha_thermal_collision_profile331)_ 9.13801492994328669e+02 -Electron-alpha_thermal_collision_frequency_at_point_332__________________ (freq_plasma_electron_alpha_thermal_collision_profile332)_ 9.19049375951242951e+02 -Electron-alpha_thermal_collision_frequency_at_point_333__________________ (freq_plasma_electron_alpha_thermal_collision_profile333)_ 9.24356561549768912e+02 -Electron-alpha_thermal_collision_frequency_at_point_334__________________ (freq_plasma_electron_alpha_thermal_collision_profile334)_ 9.29723844188364524e+02 -Electron-alpha_thermal_collision_frequency_at_point_335__________________ (freq_plasma_electron_alpha_thermal_collision_profile335)_ 9.35152029353537841e+02 -Electron-alpha_thermal_collision_frequency_at_point_336__________________ (freq_plasma_electron_alpha_thermal_collision_profile336)_ 9.40641933709284103e+02 -Electron-alpha_thermal_collision_frequency_at_point_337__________________ (freq_plasma_electron_alpha_thermal_collision_profile337)_ 9.46194385182217388e+02 -Electron-alpha_thermal_collision_frequency_at_point_338__________________ (freq_plasma_electron_alpha_thermal_collision_profile338)_ 9.51810223041968470e+02 -Electron-alpha_thermal_collision_frequency_at_point_339__________________ (freq_plasma_electron_alpha_thermal_collision_profile339)_ 9.57490297976420834e+02 -Electron-alpha_thermal_collision_frequency_at_point_340__________________ (freq_plasma_electron_alpha_thermal_collision_profile340)_ 9.63235472161302368e+02 -Electron-alpha_thermal_collision_frequency_at_point_341__________________ (freq_plasma_electron_alpha_thermal_collision_profile341)_ 9.69046619323639902e+02 -Electron-alpha_thermal_collision_frequency_at_point_342__________________ (freq_plasma_electron_alpha_thermal_collision_profile342)_ 9.74924624798550440e+02 -Electron-alpha_thermal_collision_frequency_at_point_343__________________ (freq_plasma_electron_alpha_thermal_collision_profile343)_ 9.80870385578789069e+02 -Electron-alpha_thermal_collision_frequency_at_point_344__________________ (freq_plasma_electron_alpha_thermal_collision_profile344)_ 9.86884810356468506e+02 -Electron-alpha_thermal_collision_frequency_at_point_345__________________ (freq_plasma_electron_alpha_thermal_collision_profile345)_ 9.92968819556309313e+02 -Electron-alpha_thermal_collision_frequency_at_point_346__________________ (freq_plasma_electron_alpha_thermal_collision_profile346)_ 9.99123345359732639e+02 -Electron-alpha_thermal_collision_frequency_at_point_347__________________ (freq_plasma_electron_alpha_thermal_collision_profile347)_ 1.00534933171909472e+03 -Electron-alpha_thermal_collision_frequency_at_point_348__________________ (freq_plasma_electron_alpha_thermal_collision_profile348)_ 1.01164773436128621e+03 -Electron-alpha_thermal_collision_frequency_at_point_349__________________ (freq_plasma_electron_alpha_thermal_collision_profile349)_ 1.01801952077988960e+03 -Electron-alpha_thermal_collision_frequency_at_point_350__________________ (freq_plasma_electron_alpha_thermal_collision_profile350)_ 1.02446567021503324e+03 -Electron-alpha_thermal_collision_frequency_at_point_351__________________ (freq_plasma_electron_alpha_thermal_collision_profile351)_ 1.03098717362003799e+03 -Electron-alpha_thermal_collision_frequency_at_point_352__________________ (freq_plasma_electron_alpha_thermal_collision_profile352)_ 1.03758503361387011e+03 -Electron-alpha_thermal_collision_frequency_at_point_353__________________ (freq_plasma_electron_alpha_thermal_collision_profile353)_ 1.04426026441839781e+03 -Electron-alpha_thermal_collision_frequency_at_point_354__________________ (freq_plasma_electron_alpha_thermal_collision_profile354)_ 1.05101389177933379e+03 -Electron-alpha_thermal_collision_frequency_at_point_355__________________ (freq_plasma_electron_alpha_thermal_collision_profile355)_ 1.05784695286973556e+03 -Electron-alpha_thermal_collision_frequency_at_point_356__________________ (freq_plasma_electron_alpha_thermal_collision_profile356)_ 1.06476049617481772e+03 -Electron-alpha_thermal_collision_frequency_at_point_357__________________ (freq_plasma_electron_alpha_thermal_collision_profile357)_ 1.07175558135679080e+03 -Electron-alpha_thermal_collision_frequency_at_point_358__________________ (freq_plasma_electron_alpha_thermal_collision_profile358)_ 1.07883327909834065e+03 -Electron-alpha_thermal_collision_frequency_at_point_359__________________ (freq_plasma_electron_alpha_thermal_collision_profile359)_ 1.08599467092330065e+03 -Electron-alpha_thermal_collision_frequency_at_point_360__________________ (freq_plasma_electron_alpha_thermal_collision_profile360)_ 1.09324084899295121e+03 -Electron-alpha_thermal_collision_frequency_at_point_361__________________ (freq_plasma_electron_alpha_thermal_collision_profile361)_ 1.10057291587633836e+03 -Electron-alpha_thermal_collision_frequency_at_point_362__________________ (freq_plasma_electron_alpha_thermal_collision_profile362)_ 1.10799198429283774e+03 -Electron-alpha_thermal_collision_frequency_at_point_363__________________ (freq_plasma_electron_alpha_thermal_collision_profile363)_ 1.11549917682516298e+03 -Electron-alpha_thermal_collision_frequency_at_point_364__________________ (freq_plasma_electron_alpha_thermal_collision_profile364)_ 1.12309562560083668e+03 -Electron-alpha_thermal_collision_frequency_at_point_365__________________ (freq_plasma_electron_alpha_thermal_collision_profile365)_ 1.13078247194009055e+03 -Electron-alpha_thermal_collision_frequency_at_point_366__________________ (freq_plasma_electron_alpha_thermal_collision_profile366)_ 1.13856086596798241e+03 -Electron-alpha_thermal_collision_frequency_at_point_367__________________ (freq_plasma_electron_alpha_thermal_collision_profile367)_ 1.14643196618844240e+03 -Electron-alpha_thermal_collision_frequency_at_point_368__________________ (freq_plasma_electron_alpha_thermal_collision_profile368)_ 1.15439693901777218e+03 -Electron-alpha_thermal_collision_frequency_at_point_369__________________ (freq_plasma_electron_alpha_thermal_collision_profile369)_ 1.16245695827502595e+03 -Electron-alpha_thermal_collision_frequency_at_point_370__________________ (freq_plasma_electron_alpha_thermal_collision_profile370)_ 1.17061320462651338e+03 -Electron-alpha_thermal_collision_frequency_at_point_371__________________ (freq_plasma_electron_alpha_thermal_collision_profile371)_ 1.17886686498152494e+03 -Electron-alpha_thermal_collision_frequency_at_point_372__________________ (freq_plasma_electron_alpha_thermal_collision_profile372)_ 1.18721913183618994e+03 -Electron-alpha_thermal_collision_frequency_at_point_373__________________ (freq_plasma_electron_alpha_thermal_collision_profile373)_ 1.19567120256223893e+03 -Electron-alpha_thermal_collision_frequency_at_point_374__________________ (freq_plasma_electron_alpha_thermal_collision_profile374)_ 1.20422427863718190e+03 -Electron-alpha_thermal_collision_frequency_at_point_375__________________ (freq_plasma_electron_alpha_thermal_collision_profile375)_ 1.21287956481230003e+03 -Electron-alpha_thermal_collision_frequency_at_point_376__________________ (freq_plasma_electron_alpha_thermal_collision_profile376)_ 1.22163826821456109e+03 -Electron-alpha_thermal_collision_frequency_at_point_377__________________ (freq_plasma_electron_alpha_thermal_collision_profile377)_ 1.23050159737838658e+03 -Electron-alpha_thermal_collision_frequency_at_point_378__________________ (freq_plasma_electron_alpha_thermal_collision_profile378)_ 1.23947076120295264e+03 -Electron-alpha_thermal_collision_frequency_at_point_379__________________ (freq_plasma_electron_alpha_thermal_collision_profile379)_ 1.24854696783045642e+03 -Electron-alpha_thermal_collision_frequency_at_point_380__________________ (freq_plasma_electron_alpha_thermal_collision_profile380)_ 1.25773142344050257e+03 -Electron-alpha_thermal_collision_frequency_at_point_381__________________ (freq_plasma_electron_alpha_thermal_collision_profile381)_ 1.26702533095551826e+03 -Electron-alpha_thermal_collision_frequency_at_point_382__________________ (freq_plasma_electron_alpha_thermal_collision_profile382)_ 1.27642988865177063e+03 -Electron-alpha_thermal_collision_frequency_at_point_383__________________ (freq_plasma_electron_alpha_thermal_collision_profile383)_ 1.28594628867027382e+03 -Electron-alpha_thermal_collision_frequency_at_point_384__________________ (freq_plasma_electron_alpha_thermal_collision_profile384)_ 1.29557571542155119e+03 -Electron-alpha_thermal_collision_frequency_at_point_385__________________ (freq_plasma_electron_alpha_thermal_collision_profile385)_ 1.30531934387783076e+03 -Electron-alpha_thermal_collision_frequency_at_point_386__________________ (freq_plasma_electron_alpha_thermal_collision_profile386)_ 1.31517833774594374e+03 -Electron-alpha_thermal_collision_frequency_at_point_387__________________ (freq_plasma_electron_alpha_thermal_collision_profile387)_ 1.32515384751375791e+03 -Electron-alpha_thermal_collision_frequency_at_point_388__________________ (freq_plasma_electron_alpha_thermal_collision_profile388)_ 1.33524700836258694e+03 -Electron-alpha_thermal_collision_frequency_at_point_389__________________ (freq_plasma_electron_alpha_thermal_collision_profile389)_ 1.34545893793759660e+03 -Electron-alpha_thermal_collision_frequency_at_point_390__________________ (freq_plasma_electron_alpha_thermal_collision_profile390)_ 1.35579073396775880e+03 -Electron-alpha_thermal_collision_frequency_at_point_391__________________ (freq_plasma_electron_alpha_thermal_collision_profile391)_ 1.36624347172641137e+03 -Electron-alpha_thermal_collision_frequency_at_point_392__________________ (freq_plasma_electron_alpha_thermal_collision_profile392)_ 1.37681820132300368e+03 -Electron-alpha_thermal_collision_frequency_at_point_393__________________ (freq_plasma_electron_alpha_thermal_collision_profile393)_ 1.38751594481604207e+03 -Electron-alpha_thermal_collision_frequency_at_point_394__________________ (freq_plasma_electron_alpha_thermal_collision_profile394)_ 1.39833769313668813e+03 -Electron-alpha_thermal_collision_frequency_at_point_395__________________ (freq_plasma_electron_alpha_thermal_collision_profile395)_ 1.40928440281187750e+03 -Electron-alpha_thermal_collision_frequency_at_point_396__________________ (freq_plasma_electron_alpha_thermal_collision_profile396)_ 1.42035699247515936e+03 -Electron-alpha_thermal_collision_frequency_at_point_397__________________ (freq_plasma_electron_alpha_thermal_collision_profile397)_ 1.43155633915283238e+03 -Electron-alpha_thermal_collision_frequency_at_point_398__________________ (freq_plasma_electron_alpha_thermal_collision_profile398)_ 1.44288327431219636e+03 -Electron-alpha_thermal_collision_frequency_at_point_399__________________ (freq_plasma_electron_alpha_thermal_collision_profile399)_ 1.45433857965801917e+03 -Electron-alpha_thermal_collision_frequency_at_point_400__________________ (freq_plasma_electron_alpha_thermal_collision_profile400)_ 1.46592298266252828e+03 -Electron-alpha_thermal_collision_frequency_at_point_401__________________ (freq_plasma_electron_alpha_thermal_collision_profile401)_ 1.47763715181336806e+03 -Electron-alpha_thermal_collision_frequency_at_point_402__________________ (freq_plasma_electron_alpha_thermal_collision_profile402)_ 1.48948169156311519e+03 -Electron-alpha_thermal_collision_frequency_at_point_403__________________ (freq_plasma_electron_alpha_thermal_collision_profile403)_ 1.50145713696297412e+03 -Electron-alpha_thermal_collision_frequency_at_point_404__________________ (freq_plasma_electron_alpha_thermal_collision_profile404)_ 1.51356394796229506e+03 -Electron-alpha_thermal_collision_frequency_at_point_405__________________ (freq_plasma_electron_alpha_thermal_collision_profile405)_ 1.52580250335449364e+03 -Electron-alpha_thermal_collision_frequency_at_point_406__________________ (freq_plasma_electron_alpha_thermal_collision_profile406)_ 1.53817309434883964e+03 -Electron-alpha_thermal_collision_frequency_at_point_407__________________ (freq_plasma_electron_alpha_thermal_collision_profile407)_ 1.55067591774637981e+03 -Electron-alpha_thermal_collision_frequency_at_point_408__________________ (freq_plasma_electron_alpha_thermal_collision_profile408)_ 1.56331106869701648e+03 -Electron-alpha_thermal_collision_frequency_at_point_409__________________ (freq_plasma_electron_alpha_thermal_collision_profile409)_ 1.57607853301338537e+03 -Electron-alpha_thermal_collision_frequency_at_point_410__________________ (freq_plasma_electron_alpha_thermal_collision_profile410)_ 1.58897817901578742e+03 -Electron-alpha_thermal_collision_frequency_at_point_411__________________ (freq_plasma_electron_alpha_thermal_collision_profile411)_ 1.60200974888085102e+03 -Electron-alpha_thermal_collision_frequency_at_point_412__________________ (freq_plasma_electron_alpha_thermal_collision_profile412)_ 1.61517284946502514e+03 -Electron-alpha_thermal_collision_frequency_at_point_413__________________ (freq_plasma_electron_alpha_thermal_collision_profile413)_ 1.62846694257217541e+03 -Electron-alpha_thermal_collision_frequency_at_point_414__________________ (freq_plasma_electron_alpha_thermal_collision_profile414)_ 1.64189133463278131e+03 -Electron-alpha_thermal_collision_frequency_at_point_415__________________ (freq_plasma_electron_alpha_thermal_collision_profile415)_ 1.65544516576010278e+03 -Electron-alpha_thermal_collision_frequency_at_point_416__________________ (freq_plasma_electron_alpha_thermal_collision_profile416)_ 1.66912739814662132e+03 -Electron-alpha_thermal_collision_frequency_at_point_417__________________ (freq_plasma_electron_alpha_thermal_collision_profile417)_ 1.68293680376161046e+03 -Electron-alpha_thermal_collision_frequency_at_point_418__________________ (freq_plasma_electron_alpha_thermal_collision_profile418)_ 1.69687195130822670e+03 -Electron-alpha_thermal_collision_frequency_at_point_419__________________ (freq_plasma_electron_alpha_thermal_collision_profile419)_ 1.71093119239568409e+03 -Electron-alpha_thermal_collision_frequency_at_point_420__________________ (freq_plasma_electron_alpha_thermal_collision_profile420)_ 1.72511264687908965e+03 -Electron-alpha_thermal_collision_frequency_at_point_421__________________ (freq_plasma_electron_alpha_thermal_collision_profile421)_ 1.73941418731619297e+03 -Electron-alpha_thermal_collision_frequency_at_point_422__________________ (freq_plasma_electron_alpha_thermal_collision_profile422)_ 1.75383342248664803e+03 -Electron-alpha_thermal_collision_frequency_at_point_423__________________ (freq_plasma_electron_alpha_thermal_collision_profile423)_ 1.76836767991540455e+03 -Electron-alpha_thermal_collision_frequency_at_point_424__________________ (freq_plasma_electron_alpha_thermal_collision_profile424)_ 1.78301398733732822e+03 -Electron-alpha_thermal_collision_frequency_at_point_425__________________ (freq_plasma_electron_alpha_thermal_collision_profile425)_ 1.79776905303520016e+03 -Electron-alpha_thermal_collision_frequency_at_point_426__________________ (freq_plasma_electron_alpha_thermal_collision_profile426)_ 1.81262924497766994e+03 -Electron-alpha_thermal_collision_frequency_at_point_427__________________ (freq_plasma_electron_alpha_thermal_collision_profile427)_ 1.82759056867741810e+03 -Electron-alpha_thermal_collision_frequency_at_point_428__________________ (freq_plasma_electron_alpha_thermal_collision_profile428)_ 1.84264864368267172e+03 -Electron-alpha_thermal_collision_frequency_at_point_429__________________ (freq_plasma_electron_alpha_thermal_collision_profile429)_ 1.85779867860709101e+03 -Electron-alpha_thermal_collision_frequency_at_point_430__________________ (freq_plasma_electron_alpha_thermal_collision_profile430)_ 1.87303544459372961e+03 -Electron-alpha_thermal_collision_frequency_at_point_431__________________ (freq_plasma_electron_alpha_thermal_collision_profile431)_ 1.88835324709804217e+03 -Electron-alpha_thermal_collision_frequency_at_point_432__________________ (freq_plasma_electron_alpha_thermal_collision_profile432)_ 1.90374589586244861e+03 -Electron-alpha_thermal_collision_frequency_at_point_433__________________ (freq_plasma_electron_alpha_thermal_collision_profile433)_ 1.91920667294051168e+03 -Electron-alpha_thermal_collision_frequency_at_point_434__________________ (freq_plasma_electron_alpha_thermal_collision_profile434)_ 1.93472829861163791e+03 -Electron-alpha_thermal_collision_frequency_at_point_435__________________ (freq_plasma_electron_alpha_thermal_collision_profile435)_ 1.95030289500723461e+03 -Electron-alpha_thermal_collision_frequency_at_point_436__________________ (freq_plasma_electron_alpha_thermal_collision_profile436)_ 1.96592194724530282e+03 -Electron-alpha_thermal_collision_frequency_at_point_437__________________ (freq_plasma_electron_alpha_thermal_collision_profile437)_ 1.98157626184194760e+03 -Electron-alpha_thermal_collision_frequency_at_point_438__________________ (freq_plasma_electron_alpha_thermal_collision_profile438)_ 1.99725592213404502e+03 -Electron-alpha_thermal_collision_frequency_at_point_439__________________ (freq_plasma_electron_alpha_thermal_collision_profile439)_ 2.01295024040582121e+03 -Electron-alpha_thermal_collision_frequency_at_point_440__________________ (freq_plasma_electron_alpha_thermal_collision_profile440)_ 2.02864770636171443e+03 -Electron-alpha_thermal_collision_frequency_at_point_441__________________ (freq_plasma_electron_alpha_thermal_collision_profile441)_ 2.04433593152612798e+03 -Electron-alpha_thermal_collision_frequency_at_point_442__________________ (freq_plasma_electron_alpha_thermal_collision_profile442)_ 2.06000158907463765e+03 -Electron-alpha_thermal_collision_frequency_at_point_443__________________ (freq_plasma_electron_alpha_thermal_collision_profile443)_ 2.07563034850674694e+03 -Electron-alpha_thermal_collision_frequency_at_point_444__________________ (freq_plasma_electron_alpha_thermal_collision_profile444)_ 2.09120680445238531e+03 -Electron-alpha_thermal_collision_frequency_at_point_445__________________ (freq_plasma_electron_alpha_thermal_collision_profile445)_ 2.10671439875590750e+03 -Electron-alpha_thermal_collision_frequency_at_point_446__________________ (freq_plasma_electron_alpha_thermal_collision_profile446)_ 2.12213533479292300e+03 -Electron-alpha_thermal_collision_frequency_at_point_447__________________ (freq_plasma_electron_alpha_thermal_collision_profile447)_ 2.13745048273458860e+03 -Electron-alpha_thermal_collision_frequency_at_point_448__________________ (freq_plasma_electron_alpha_thermal_collision_profile448)_ 2.15263927416310435e+03 -Electron-alpha_thermal_collision_frequency_at_point_449__________________ (freq_plasma_electron_alpha_thermal_collision_profile449)_ 2.16767958403749117e+03 -Electron-alpha_thermal_collision_frequency_at_point_450__________________ (freq_plasma_electron_alpha_thermal_collision_profile450)_ 2.18254759747588014e+03 -Electron-alpha_thermal_collision_frequency_at_point_451__________________ (freq_plasma_electron_alpha_thermal_collision_profile451)_ 2.19721765811172327e+03 -Electron-alpha_thermal_collision_frequency_at_point_452__________________ (freq_plasma_electron_alpha_thermal_collision_profile452)_ 2.21166209382607349e+03 -Electron-alpha_thermal_collision_frequency_at_point_453__________________ (freq_plasma_electron_alpha_thermal_collision_profile453)_ 2.22585101435381921e+03 -Electron-alpha_thermal_collision_frequency_at_point_454__________________ (freq_plasma_electron_alpha_thermal_collision_profile454)_ 2.23975207345394074e+03 -Electron-alpha_thermal_collision_frequency_at_point_455__________________ (freq_plasma_electron_alpha_thermal_collision_profile455)_ 2.25333018578618021e+03 -Electron-alpha_thermal_collision_frequency_at_point_456__________________ (freq_plasma_electron_alpha_thermal_collision_profile456)_ 2.26654718497908834e+03 -Electron-alpha_thermal_collision_frequency_at_point_457__________________ (freq_plasma_electron_alpha_thermal_collision_profile457)_ 2.27936140401337707e+03 -Electron-alpha_thermal_collision_frequency_at_point_458__________________ (freq_plasma_electron_alpha_thermal_collision_profile458)_ 2.29172715099790730e+03 -Electron-alpha_thermal_collision_frequency_at_point_459__________________ (freq_plasma_electron_alpha_thermal_collision_profile459)_ 2.30359404100914480e+03 -Electron-alpha_thermal_collision_frequency_at_point_460__________________ (freq_plasma_electron_alpha_thermal_collision_profile460)_ 2.31490612493219351e+03 -Electron-alpha_thermal_collision_frequency_at_point_461__________________ (freq_plasma_electron_alpha_thermal_collision_profile461)_ 2.32560072370259695e+03 -Electron-alpha_thermal_collision_frequency_at_point_462__________________ (freq_plasma_electron_alpha_thermal_collision_profile462)_ 2.33560682035866421e+03 -Electron-alpha_thermal_collision_frequency_at_point_463__________________ (freq_plasma_electron_alpha_thermal_collision_profile463)_ 2.34484276093842027e+03 -Electron-alpha_thermal_collision_frequency_at_point_464__________________ (freq_plasma_electron_alpha_thermal_collision_profile464)_ 2.35321281993328557e+03 -Electron-alpha_thermal_collision_frequency_at_point_465__________________ (freq_plasma_electron_alpha_thermal_collision_profile465)_ 2.36060177925858079e+03 -Electron-alpha_thermal_collision_frequency_at_point_466__________________ (freq_plasma_electron_alpha_thermal_collision_profile466)_ 2.36686573307257959e+03 -Electron-alpha_thermal_collision_frequency_at_point_467__________________ (freq_plasma_electron_alpha_thermal_collision_profile467)_ 2.37181485896989807e+03 -Electron-alpha_thermal_collision_frequency_at_point_468__________________ (freq_plasma_electron_alpha_thermal_collision_profile468)_ 2.37517593471035207e+03 -Electron-alpha_thermal_collision_frequency_at_point_469__________________ (freq_plasma_electron_alpha_thermal_collision_profile469)_ 2.37648652068985939e+03 -Electron-alpha_thermal_collision_frequency_at_point_470__________________ (freq_plasma_electron_alpha_thermal_collision_profile470)_ 2.37444365153753051e+03 -Electron-alpha_thermal_collision_frequency_at_point_471__________________ (freq_plasma_electron_alpha_thermal_collision_profile471)_ 2.45794499560066970e+03 -Electron-alpha_thermal_collision_frequency_at_point_472__________________ (freq_plasma_electron_alpha_thermal_collision_profile472)_ 2.54810174352909326e+03 -Electron-alpha_thermal_collision_frequency_at_point_473__________________ (freq_plasma_electron_alpha_thermal_collision_profile473)_ 2.64572288611317617e+03 -Electron-alpha_thermal_collision_frequency_at_point_474__________________ (freq_plasma_electron_alpha_thermal_collision_profile474)_ 2.75175110058775954e+03 -Electron-alpha_thermal_collision_frequency_at_point_475__________________ (freq_plasma_electron_alpha_thermal_collision_profile475)_ 2.86729107609628181e+03 -Electron-alpha_thermal_collision_frequency_at_point_476__________________ (freq_plasma_electron_alpha_thermal_collision_profile476)_ 2.99364526268361897e+03 -Electron-alpha_thermal_collision_frequency_at_point_477__________________ (freq_plasma_electron_alpha_thermal_collision_profile477)_ 3.13235939281702531e+03 -Electron-alpha_thermal_collision_frequency_at_point_478__________________ (freq_plasma_electron_alpha_thermal_collision_profile478)_ 3.28528100656371180e+03 -Electron-alpha_thermal_collision_frequency_at_point_479__________________ (freq_plasma_electron_alpha_thermal_collision_profile479)_ 3.45463548191127347e+03 -Electron-alpha_thermal_collision_frequency_at_point_480__________________ (freq_plasma_electron_alpha_thermal_collision_profile480)_ 3.64312592867150033e+03 -Electron-alpha_thermal_collision_frequency_at_point_481__________________ (freq_plasma_electron_alpha_thermal_collision_profile481)_ 3.85406606318349122e+03 -Electron-alpha_thermal_collision_frequency_at_point_482__________________ (freq_plasma_electron_alpha_thermal_collision_profile482)_ 4.09155935266305414e+03 -Electron-alpha_thermal_collision_frequency_at_point_483__________________ (freq_plasma_electron_alpha_thermal_collision_profile483)_ 4.36074414930279909e+03 -Electron-alpha_thermal_collision_frequency_at_point_484__________________ (freq_plasma_electron_alpha_thermal_collision_profile484)_ 4.66813466218785288e+03 -Electron-alpha_thermal_collision_frequency_at_point_485__________________ (freq_plasma_electron_alpha_thermal_collision_profile485)_ 5.02210394386426651e+03 -Electron-alpha_thermal_collision_frequency_at_point_486__________________ (freq_plasma_electron_alpha_thermal_collision_profile486)_ 5.43358209079699282e+03 -Electron-alpha_thermal_collision_frequency_at_point_487__________________ (freq_plasma_electron_alpha_thermal_collision_profile487)_ 5.91708890073208386e+03 -Electron-alpha_thermal_collision_frequency_at_point_488__________________ (freq_plasma_electron_alpha_thermal_collision_profile488)_ 6.49230130556992935e+03 -Electron-alpha_thermal_collision_frequency_at_point_489__________________ (freq_plasma_electron_alpha_thermal_collision_profile489)_ 7.18650408441543914e+03 -Electron-alpha_thermal_collision_frequency_at_point_490__________________ (freq_plasma_electron_alpha_thermal_collision_profile490)_ 8.03855503148272055e+03 -Electron-alpha_thermal_collision_frequency_at_point_491__________________ (freq_plasma_electron_alpha_thermal_collision_profile491)_ 9.10556230521549332e+03 -Electron-alpha_thermal_collision_frequency_at_point_492__________________ (freq_plasma_electron_alpha_thermal_collision_profile492)_ 1.04746750731629490e+04 -Electron-alpha_thermal_collision_frequency_at_point_493__________________ (freq_plasma_electron_alpha_thermal_collision_profile493)_ 1.22851276640543947e+04 -Electron-alpha_thermal_collision_frequency_at_point_494__________________ (freq_plasma_electron_alpha_thermal_collision_profile494)_ 1.47724585502712234e+04 -Electron-alpha_thermal_collision_frequency_at_point_495__________________ (freq_plasma_electron_alpha_thermal_collision_profile495)_ 1.83654655772341830e+04 -Electron-alpha_thermal_collision_frequency_at_point_496__________________ (freq_plasma_electron_alpha_thermal_collision_profile496)_ 2.39250898259579117e+04 -Electron-alpha_thermal_collision_frequency_at_point_497__________________ (freq_plasma_electron_alpha_thermal_collision_profile497)_ 3.34356399482565248e+04 -Electron-alpha_thermal_collision_frequency_at_point_498__________________ (freq_plasma_electron_alpha_thermal_collision_profile498)_ 5.25460023360273990e+04 -Electron-alpha_thermal_collision_frequency_at_point_499__________________ (freq_plasma_electron_alpha_thermal_collision_profile499)_ 1.04648383579815461e+05 -Electron-alpha_thermal_collision_frequency_at_point_500__________________ (freq_plasma_electron_alpha_thermal_collision_profile500)_ 4.32212582333051076e+05 -Volume_averaged_electron-electron_mean_free_path_(λₑₑ)_(m)_______________ (len_plasma_electron_electron_mean_free_path_vol_avg)_ 4.48543049996867849e+04 -Electron-electron_mean_free_path_at_point_0______________________________ (len_plasma_electron_electron_mean_free_path_profile0)_ 1.37777887078541593e+05 -Electron-electron_mean_free_path_at_point_1______________________________ (len_plasma_electron_electron_mean_free_path_profile1)_ 1.37776773367602902e+05 -Electron-electron_mean_free_path_at_point_2______________________________ (len_plasma_electron_electron_mean_free_path_profile2)_ 1.37773432265373471e+05 -Electron-electron_mean_free_path_at_point_3______________________________ (len_plasma_electron_electron_mean_free_path_profile3)_ 1.37767863863613049e+05 -Electron-electron_mean_free_path_at_point_4______________________________ (len_plasma_electron_electron_mean_free_path_profile4)_ 1.37760068315254030e+05 -Electron-electron_mean_free_path_at_point_5______________________________ (len_plasma_electron_electron_mean_free_path_profile5)_ 1.37750045834402903e+05 -Electron-electron_mean_free_path_at_point_6______________________________ (len_plasma_electron_electron_mean_free_path_profile6)_ 1.37737796696339123e+05 -Electron-electron_mean_free_path_at_point_7______________________________ (len_plasma_electron_electron_mean_free_path_profile7)_ 1.37723321237515687e+05 -Electron-electron_mean_free_path_at_point_8______________________________ (len_plasma_electron_electron_mean_free_path_profile8)_ 1.37706619855560712e+05 -Electron-electron_mean_free_path_at_point_9______________________________ (len_plasma_electron_electron_mean_free_path_profile9)_ 1.37687693009275332e+05 -Electron-electron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_electron_mean_free_path_profile10)_ 1.37666541218636296e+05 -Electron-electron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_electron_mean_free_path_profile11)_ 1.37643165064796107e+05 -Electron-electron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_electron_mean_free_path_profile12)_ 1.37617565190081805e+05 -Electron-electron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_electron_mean_free_path_profile13)_ 1.37589742297997698e+05 -Electron-electron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_electron_mean_free_path_profile14)_ 1.37559697153225075e+05 -Electron-electron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_electron_mean_free_path_profile15)_ 1.37527430581622466e+05 -Electron-electron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_electron_mean_free_path_profile16)_ 1.37492943470227387e+05 -Electron-electron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_electron_mean_free_path_profile17)_ 1.37456236767255818e+05 -Electron-electron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_electron_mean_free_path_profile18)_ 1.37417311482104298e+05 -Electron-electron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_electron_mean_free_path_profile19)_ 1.37376168685350072e+05 -Electron-electron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_electron_mean_free_path_profile20)_ 1.37332809508751991e+05 -Electron-electron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_electron_mean_free_path_profile21)_ 1.37287235145251587e+05 -Electron-electron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_electron_mean_free_path_profile22)_ 1.37239446848974301e+05 -Electron-electron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_electron_mean_free_path_profile23)_ 1.37189445935230091e+05 -Electron-electron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_electron_mean_free_path_profile24)_ 1.37137233780515031e+05 -Electron-electron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_electron_mean_free_path_profile25)_ 1.37082811822512333e+05 -Electron-electron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_electron_mean_free_path_profile26)_ 1.37026181560092315e+05 -Electron-electron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_electron_mean_free_path_profile27)_ 1.36967344553315168e+05 -Electron-electron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_electron_mean_free_path_profile28)_ 1.36906302423432324e+05 -Electron-electron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_electron_mean_free_path_profile29)_ 1.36843056852885551e+05 -Electron-electron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_electron_mean_free_path_profile30)_ 1.36777609585310449e+05 -Electron-electron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_electron_mean_free_path_profile31)_ 1.36709962425537262e+05 -Electron-electron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_electron_mean_free_path_profile32)_ 1.36640117239590880e+05 -Electron-electron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_electron_mean_free_path_profile33)_ 1.36568075954694272e+05 -Electron-electron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_electron_mean_free_path_profile34)_ 1.36493840559268137e+05 -Electron-electron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_electron_mean_free_path_profile35)_ 1.36417413102933177e+05 -Electron-electron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_electron_mean_free_path_profile36)_ 1.36338795696511079e+05 -Electron-electron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_electron_mean_free_path_profile37)_ 1.36257990512026765e+05 -Electron-electron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_electron_mean_free_path_profile38)_ 1.36174999782708881e+05 -Electron-electron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_electron_mean_free_path_profile39)_ 1.36089825802991312e+05 -Electron-electron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_electron_mean_free_path_profile40)_ 1.36002470928515017e+05 -Electron-electron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_electron_mean_free_path_profile41)_ 1.35912937576129480e+05 -Electron-electron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_electron_mean_free_path_profile42)_ 1.35821228223894606e+05 -Electron-electron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_electron_mean_free_path_profile43)_ 1.35727345411080169e+05 -Electron-electron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_electron_mean_free_path_profile44)_ 1.35631291738170199e+05 -Electron-electron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_electron_mean_free_path_profile45)_ 1.35533069866862148e+05 -Electron-electron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_electron_mean_free_path_profile46)_ 1.35432682520069211e+05 -Electron-electron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_electron_mean_free_path_profile47)_ 1.35330132481921552e+05 -Electron-electron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_electron_mean_free_path_profile48)_ 1.35225422597768018e+05 -Electron-electron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_electron_mean_free_path_profile49)_ 1.35118555774176901e+05 -Electron-electron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_electron_mean_free_path_profile50)_ 1.35009534978937765e+05 -Electron-electron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_electron_mean_free_path_profile51)_ 1.34898363241062558e+05 -Electron-electron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_electron_mean_free_path_profile52)_ 1.34785043650786625e+05 -Electron-electron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_electron_mean_free_path_profile53)_ 1.34669579359571333e+05 -Electron-electron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_electron_mean_free_path_profile54)_ 1.34551973580102931e+05 -Electron-electron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_electron_mean_free_path_profile55)_ 1.34432229586295318e+05 -Electron-electron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_electron_mean_free_path_profile56)_ 1.34310350713291351e+05 -Electron-electron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_electron_mean_free_path_profile57)_ 1.34186340357462439e+05 -Electron-electron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_electron_mean_free_path_profile58)_ 1.34060201976411627e+05 -Electron-electron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_electron_mean_free_path_profile59)_ 1.33931939088972082e+05 -Electron-electron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_electron_mean_free_path_profile60)_ 1.33801555275209917e+05 -Electron-electron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_electron_mean_free_path_profile61)_ 1.33669054176424223e+05 -Electron-electron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_electron_mean_free_path_profile62)_ 1.33534439495147381e+05 -Electron-electron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_electron_mean_free_path_profile63)_ 1.33397714995147340e+05 -Electron-electron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_electron_mean_free_path_profile64)_ 1.33258884501425840e+05 -Electron-electron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_electron_mean_free_path_profile65)_ 1.33117951900220214e+05 -Electron-electron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_electron_mean_free_path_profile66)_ 1.32974921139004116e+05 -Electron-electron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_electron_mean_free_path_profile67)_ 1.32829796226486913e+05 -Electron-electron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_electron_mean_free_path_profile68)_ 1.32682581232614699e+05 -Electron-electron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_electron_mean_free_path_profile69)_ 1.32533280288569309e+05 -Electron-electron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_electron_mean_free_path_profile70)_ 1.32381897586768755e+05 -Electron-electron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_electron_mean_free_path_profile71)_ 1.32228437380867806e+05 -Electron-electron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_electron_mean_free_path_profile72)_ 1.32072903985756071e+05 -Electron-electron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_electron_mean_free_path_profile73)_ 1.31915301777559536e+05 -Electron-electron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_electron_mean_free_path_profile74)_ 1.31755635193638533e+05 -Electron-electron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_electron_mean_free_path_profile75)_ 1.31593908732586366e+05 -Electron-electron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_electron_mean_free_path_profile76)_ 1.31430126954231615e+05 -Electron-electron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_electron_mean_free_path_profile77)_ 1.31264294479633594e+05 -Electron-electron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_electron_mean_free_path_profile78)_ 1.31096415991082613e+05 -Electron-electron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_electron_mean_free_path_profile79)_ 1.30926496232098769e+05 -Electron-electron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_electron_mean_free_path_profile80)_ 1.30754540007430987e+05 -Electron-electron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_electron_mean_free_path_profile81)_ 1.30580552183053631e+05 -Electron-electron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_electron_mean_free_path_profile82)_ 1.30404537686165408e+05 -Electron-electron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_electron_mean_free_path_profile83)_ 1.30226501505188426e+05 -Electron-electron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_electron_mean_free_path_profile84)_ 1.30046448689764526e+05 -Electron-electron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_electron_mean_free_path_profile85)_ 1.29864384350752487e+05 -Electron-electron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_electron_mean_free_path_profile86)_ 1.29680313660226559e+05 -Electron-electron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_electron_mean_free_path_profile87)_ 1.29494241851473023e+05 -Electron-electron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_electron_mean_free_path_profile88)_ 1.29306174218986562e+05 -Electron-electron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_electron_mean_free_path_profile89)_ 1.29116116118468010e+05 -Electron-electron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_electron_mean_free_path_profile90)_ 1.28924072966818538e+05 -Electron-electron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_electron_mean_free_path_profile91)_ 1.28730050242138313e+05 -Electron-electron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_electron_mean_free_path_profile92)_ 1.28534053483720651e+05 -Electron-electron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_electron_mean_free_path_profile93)_ 1.28336088292048677e+05 -Electron-electron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_electron_mean_free_path_profile94)_ 1.28136160328789032e+05 -Electron-electron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_electron_mean_free_path_profile95)_ 1.27934275316788422e+05 -Electron-electron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_electron_mean_free_path_profile96)_ 1.27730439040068188e+05 -Electron-electron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_electron_mean_free_path_profile97)_ 1.27524657343817249e+05 -Electron-electron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_electron_mean_free_path_profile98)_ 1.27316936134388234e+05 -Electron-electron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_electron_mean_free_path_profile99)_ 1.27107281379290114e+05 -Electron-electron_mean_free_path_at_point_100____________________________ (len_plasma_electron_electron_mean_free_path_profile100)_ 1.26895699107181266e+05 -Electron-electron_mean_free_path_at_point_101____________________________ (len_plasma_electron_electron_mean_free_path_profile101)_ 1.26682195407863692e+05 -Electron-electron_mean_free_path_at_point_102____________________________ (len_plasma_electron_electron_mean_free_path_profile102)_ 1.26466776432275044e+05 -Electron-electron_mean_free_path_at_point_103____________________________ (len_plasma_electron_electron_mean_free_path_profile103)_ 1.26249448392481587e+05 -Electron-electron_mean_free_path_at_point_104____________________________ (len_plasma_electron_electron_mean_free_path_profile104)_ 1.26030217561669342e+05 -Electron-electron_mean_free_path_at_point_105____________________________ (len_plasma_electron_electron_mean_free_path_profile105)_ 1.25809090274136572e+05 -Electron-electron_mean_free_path_at_point_106____________________________ (len_plasma_electron_electron_mean_free_path_profile106)_ 1.25586072925285334e+05 -Electron-electron_mean_free_path_at_point_107____________________________ (len_plasma_electron_electron_mean_free_path_profile107)_ 1.25361171971610907e+05 -Electron-electron_mean_free_path_at_point_108____________________________ (len_plasma_electron_electron_mean_free_path_profile108)_ 1.25134393930694321e+05 -Electron-electron_mean_free_path_at_point_109____________________________ (len_plasma_electron_electron_mean_free_path_profile109)_ 1.24905745381190747e+05 -Electron-electron_mean_free_path_at_point_110____________________________ (len_plasma_electron_electron_mean_free_path_profile110)_ 1.24675232962819675e+05 -Electron-electron_mean_free_path_at_point_111____________________________ (len_plasma_electron_electron_mean_free_path_profile111)_ 1.24442863376354682e+05 -Electron-electron_mean_free_path_at_point_112____________________________ (len_plasma_electron_electron_mean_free_path_profile112)_ 1.24208643383612012e+05 -Electron-electron_mean_free_path_at_point_113____________________________ (len_plasma_electron_electron_mean_free_path_profile113)_ 1.23972579807438233e+05 -Electron-electron_mean_free_path_at_point_114____________________________ (len_plasma_electron_electron_mean_free_path_profile114)_ 1.23734679531698508e+05 -Electron-electron_mean_free_path_at_point_115____________________________ (len_plasma_electron_electron_mean_free_path_profile115)_ 1.23494949501264389e+05 -Electron-electron_mean_free_path_at_point_116____________________________ (len_plasma_electron_electron_mean_free_path_profile116)_ 1.23253396721999758e+05 -Electron-electron_mean_free_path_at_point_117____________________________ (len_plasma_electron_electron_mean_free_path_profile117)_ 1.23010028260748993e+05 -Electron-electron_mean_free_path_at_point_118____________________________ (len_plasma_electron_electron_mean_free_path_profile118)_ 1.22764851245320489e+05 -Electron-electron_mean_free_path_at_point_119____________________________ (len_plasma_electron_electron_mean_free_path_profile119)_ 1.22517872864473524e+05 -Electron-electron_mean_free_path_at_point_120____________________________ (len_plasma_electron_electron_mean_free_path_profile120)_ 1.22269100367902705e+05 -Electron-electron_mean_free_path_at_point_121____________________________ (len_plasma_electron_electron_mean_free_path_profile121)_ 1.22018541066223130e+05 -Electron-electron_mean_free_path_at_point_122____________________________ (len_plasma_electron_electron_mean_free_path_profile122)_ 1.21766202330952074e+05 -Electron-electron_mean_free_path_at_point_123____________________________ (len_plasma_electron_electron_mean_free_path_profile123)_ 1.21512091594493933e+05 -Electron-electron_mean_free_path_at_point_124____________________________ (len_plasma_electron_electron_mean_free_path_profile124)_ 1.21256216350122311e+05 -Electron-electron_mean_free_path_at_point_125____________________________ (len_plasma_electron_electron_mean_free_path_profile125)_ 1.20998584151961390e+05 -Electron-electron_mean_free_path_at_point_126____________________________ (len_plasma_electron_electron_mean_free_path_profile126)_ 1.20739202614968424e+05 -Electron-electron_mean_free_path_at_point_127____________________________ (len_plasma_electron_electron_mean_free_path_profile127)_ 1.20478079414912834e+05 -Electron-electron_mean_free_path_at_point_128____________________________ (len_plasma_electron_electron_mean_free_path_profile128)_ 1.20215222288358578e+05 -Electron-electron_mean_free_path_at_point_129____________________________ (len_plasma_electron_electron_mean_free_path_profile129)_ 1.19950639032641411e+05 -Electron-electron_mean_free_path_at_point_130____________________________ (len_plasma_electron_electron_mean_free_path_profile130)_ 1.19684337505848569e+05 -Electron-electron_mean_free_path_at_point_131____________________________ (len_plasma_electron_electron_mean_free_path_profile131)_ 1.19416325626797217e+05 -Electron-electron_mean_free_path_at_point_132____________________________ (len_plasma_electron_electron_mean_free_path_profile132)_ 1.19146611375011285e+05 -Electron-electron_mean_free_path_at_point_133____________________________ (len_plasma_electron_electron_mean_free_path_profile133)_ 1.18875202790698313e+05 -Electron-electron_mean_free_path_at_point_134____________________________ (len_plasma_electron_electron_mean_free_path_profile134)_ 1.18602107974725877e+05 -Electron-electron_mean_free_path_at_point_135____________________________ (len_plasma_electron_electron_mean_free_path_profile135)_ 1.18327335088595995e+05 -Electron-electron_mean_free_path_at_point_136____________________________ (len_plasma_electron_electron_mean_free_path_profile136)_ 1.18050892354420881e+05 -Electron-electron_mean_free_path_at_point_137____________________________ (len_plasma_electron_electron_mean_free_path_profile137)_ 1.17772788054895005e+05 -Electron-electron_mean_free_path_at_point_138____________________________ (len_plasma_electron_electron_mean_free_path_profile138)_ 1.17493030533269732e+05 -Electron-electron_mean_free_path_at_point_139____________________________ (len_plasma_electron_electron_mean_free_path_profile139)_ 1.17211628193324665e+05 -Electron-electron_mean_free_path_at_point_140____________________________ (len_plasma_electron_electron_mean_free_path_profile140)_ 1.16928589499338326e+05 -Electron-electron_mean_free_path_at_point_141____________________________ (len_plasma_electron_electron_mean_free_path_profile141)_ 1.16643922976060421e+05 -Electron-electron_mean_free_path_at_point_142____________________________ (len_plasma_electron_electron_mean_free_path_profile142)_ 1.16357637208679822e+05 -Electron-electron_mean_free_path_at_point_143____________________________ (len_plasma_electron_electron_mean_free_path_profile143)_ 1.16069740842794621e+05 -Electron-electron_mean_free_path_at_point_144____________________________ (len_plasma_electron_electron_mean_free_path_profile144)_ 1.15780242584379361e+05 -Electron-electron_mean_free_path_at_point_145____________________________ (len_plasma_electron_electron_mean_free_path_profile145)_ 1.15489151199752057e+05 -Electron-electron_mean_free_path_at_point_146____________________________ (len_plasma_electron_electron_mean_free_path_profile146)_ 1.15196475515541213e+05 -Electron-electron_mean_free_path_at_point_147____________________________ (len_plasma_electron_electron_mean_free_path_profile147)_ 1.14902224418650032e+05 -Electron-electron_mean_free_path_at_point_148____________________________ (len_plasma_electron_electron_mean_free_path_profile148)_ 1.14606406856220594e+05 -Electron-electron_mean_free_path_at_point_149____________________________ (len_plasma_electron_electron_mean_free_path_profile149)_ 1.14309031835598420e+05 -Electron-electron_mean_free_path_at_point_150____________________________ (len_plasma_electron_electron_mean_free_path_profile150)_ 1.14010108424294085e+05 -Electron-electron_mean_free_path_at_point_151____________________________ (len_plasma_electron_electron_mean_free_path_profile151)_ 1.13709645749943869e+05 -Electron-electron_mean_free_path_at_point_152____________________________ (len_plasma_electron_electron_mean_free_path_profile152)_ 1.13407653000271574e+05 -Electron-electron_mean_free_path_at_point_153____________________________ (len_plasma_electron_electron_mean_free_path_profile153)_ 1.13104139423046290e+05 -Electron-electron_mean_free_path_at_point_154____________________________ (len_plasma_electron_electron_mean_free_path_profile154)_ 1.12799114326041541e+05 -Electron-electron_mean_free_path_at_point_155____________________________ (len_plasma_electron_electron_mean_free_path_profile155)_ 1.12492587076992510e+05 -Electron-electron_mean_free_path_at_point_156____________________________ (len_plasma_electron_electron_mean_free_path_profile156)_ 1.12184567103551119e+05 -Electron-electron_mean_free_path_at_point_157____________________________ (len_plasma_electron_electron_mean_free_path_profile157)_ 1.11875063893242506e+05 -Electron-electron_mean_free_path_at_point_158____________________________ (len_plasma_electron_electron_mean_free_path_profile158)_ 1.11564086993417863e+05 -Electron-electron_mean_free_path_at_point_159____________________________ (len_plasma_electron_electron_mean_free_path_profile159)_ 1.11251646011206496e+05 -Electron-electron_mean_free_path_at_point_160____________________________ (len_plasma_electron_electron_mean_free_path_profile160)_ 1.10937750613469136e+05 -Electron-electron_mean_free_path_at_point_161____________________________ (len_plasma_electron_electron_mean_free_path_profile161)_ 1.10622410526746811e+05 -Electron-electron_mean_free_path_at_point_162____________________________ (len_plasma_electron_electron_mean_free_path_profile162)_ 1.10305635537210081e+05 -Electron-electron_mean_free_path_at_point_163____________________________ (len_plasma_electron_electron_mean_free_path_profile163)_ 1.09987435490607881e+05 -Electron-electron_mean_free_path_at_point_164____________________________ (len_plasma_electron_electron_mean_free_path_profile164)_ 1.09667820292212506e+05 -Electron-electron_mean_free_path_at_point_165____________________________ (len_plasma_electron_electron_mean_free_path_profile165)_ 1.09346799906766362e+05 -Electron-electron_mean_free_path_at_point_166____________________________ (len_plasma_electron_electron_mean_free_path_profile166)_ 1.09024384358425465e+05 -Electron-electron_mean_free_path_at_point_167____________________________ (len_plasma_electron_electron_mean_free_path_profile167)_ 1.08700583730702099e+05 -Electron-electron_mean_free_path_at_point_168____________________________ (len_plasma_electron_electron_mean_free_path_profile168)_ 1.08375408166406080e+05 -Electron-electron_mean_free_path_at_point_169____________________________ (len_plasma_electron_electron_mean_free_path_profile169)_ 1.08048867867584515e+05 -Electron-electron_mean_free_path_at_point_170____________________________ (len_plasma_electron_electron_mean_free_path_profile170)_ 1.07720973095461653e+05 -Electron-electron_mean_free_path_at_point_171____________________________ (len_plasma_electron_electron_mean_free_path_profile171)_ 1.07391734170374169e+05 -Electron-electron_mean_free_path_at_point_172____________________________ (len_plasma_electron_electron_mean_free_path_profile172)_ 1.07061161471708620e+05 -Electron-electron_mean_free_path_at_point_173____________________________ (len_plasma_electron_electron_mean_free_path_profile173)_ 1.06729265437834256e+05 -Electron-electron_mean_free_path_at_point_174____________________________ (len_plasma_electron_electron_mean_free_path_profile174)_ 1.06396056566036787e+05 -Electron-electron_mean_free_path_at_point_175____________________________ (len_plasma_electron_electron_mean_free_path_profile175)_ 1.06061545412449792e+05 -Electron-electron_mean_free_path_at_point_176____________________________ (len_plasma_electron_electron_mean_free_path_profile176)_ 1.05725742591983260e+05 -Electron-electron_mean_free_path_at_point_177____________________________ (len_plasma_electron_electron_mean_free_path_profile177)_ 1.05388658778253113e+05 -Electron-electron_mean_free_path_at_point_178____________________________ (len_plasma_electron_electron_mean_free_path_profile178)_ 1.05050304703506321e+05 -Electron-electron_mean_free_path_at_point_179____________________________ (len_plasma_electron_electron_mean_free_path_profile179)_ 1.04710691158547736e+05 -Electron-electron_mean_free_path_at_point_180____________________________ (len_plasma_electron_electron_mean_free_path_profile180)_ 1.04369828992661729e+05 -Electron-electron_mean_free_path_at_point_181____________________________ (len_plasma_electron_electron_mean_free_path_profile181)_ 1.04027729113534398e+05 -Electron-electron_mean_free_path_at_point_182____________________________ (len_plasma_electron_electron_mean_free_path_profile182)_ 1.03684402487174040e+05 -Electron-electron_mean_free_path_at_point_183____________________________ (len_plasma_electron_electron_mean_free_path_profile183)_ 1.03339860137828611e+05 -Electron-electron_mean_free_path_at_point_184____________________________ (len_plasma_electron_electron_mean_free_path_profile184)_ 1.02994113147902244e+05 -Electron-electron_mean_free_path_at_point_185____________________________ (len_plasma_electron_electron_mean_free_path_profile185)_ 1.02647172657870804e+05 -Electron-electron_mean_free_path_at_point_186____________________________ (len_plasma_electron_electron_mean_free_path_profile186)_ 1.02299049866193673e+05 -Electron-electron_mean_free_path_at_point_187____________________________ (len_plasma_electron_electron_mean_free_path_profile187)_ 1.01949756029225464e+05 -Electron-electron_mean_free_path_at_point_188____________________________ (len_plasma_electron_electron_mean_free_path_profile188)_ 1.01599302461124840e+05 -Electron-electron_mean_free_path_at_point_189____________________________ (len_plasma_electron_electron_mean_free_path_profile189)_ 1.01247700533761876e+05 -Electron-electron_mean_free_path_at_point_190____________________________ (len_plasma_electron_electron_mean_free_path_profile190)_ 1.00894961676624094e+05 -Electron-electron_mean_free_path_at_point_191____________________________ (len_plasma_electron_electron_mean_free_path_profile191)_ 1.00541097376718812e+05 -Electron-electron_mean_free_path_at_point_192____________________________ (len_plasma_electron_electron_mean_free_path_profile192)_ 1.00186119178474619e+05 -Electron-electron_mean_free_path_at_point_193____________________________ (len_plasma_electron_electron_mean_free_path_profile193)_ 9.98300386836417601e+04 -Electron-electron_mean_free_path_at_point_194____________________________ (len_plasma_electron_electron_mean_free_path_profile194)_ 9.94728675511882902e+04 -Electron-electron_mean_free_path_at_point_195____________________________ (len_plasma_electron_electron_mean_free_path_profile195)_ 9.91146174971967703e+04 -Electron-electron_mean_free_path_at_point_196____________________________ (len_plasma_electron_electron_mean_free_path_profile196)_ 9.87553002947556233e+04 -Electron-electron_mean_free_path_at_point_197____________________________ (len_plasma_electron_electron_mean_free_path_profile197)_ 9.83949277738513483e+04 -Electron-electron_mean_free_path_at_point_198____________________________ (len_plasma_electron_electron_mean_free_path_profile198)_ 9.80335118212570524e+04 -Electron-electron_mean_free_path_at_point_199____________________________ (len_plasma_electron_electron_mean_free_path_profile199)_ 9.76710643804191641e+04 -Electron-electron_mean_free_path_at_point_200____________________________ (len_plasma_electron_electron_mean_free_path_profile200)_ 9.73075974513415276e+04 -Electron-electron_mean_free_path_at_point_201____________________________ (len_plasma_electron_electron_mean_free_path_profile201)_ 9.69431230904672411e+04 -Electron-electron_mean_free_path_at_point_202____________________________ (len_plasma_electron_electron_mean_free_path_profile202)_ 9.65776534105589672e+04 -Electron-electron_mean_free_path_at_point_203____________________________ (len_plasma_electron_electron_mean_free_path_profile203)_ 9.62112005805767549e+04 -Electron-electron_mean_free_path_at_point_204____________________________ (len_plasma_electron_electron_mean_free_path_profile204)_ 9.58437768255516276e+04 -Electron-electron_mean_free_path_at_point_205____________________________ (len_plasma_electron_electron_mean_free_path_profile205)_ 9.54753944264593010e+04 -Electron-electron_mean_free_path_at_point_206____________________________ (len_plasma_electron_electron_mean_free_path_profile206)_ 9.51060657200900168e+04 -Electron-electron_mean_free_path_at_point_207____________________________ (len_plasma_electron_electron_mean_free_path_profile207)_ 9.47358030989157414e+04 -Electron-electron_mean_free_path_at_point_208____________________________ (len_plasma_electron_electron_mean_free_path_profile208)_ 9.43646190109565650e+04 -Electron-electron_mean_free_path_at_point_209____________________________ (len_plasma_electron_electron_mean_free_path_profile209)_ 9.39925259596418909e+04 -Electron-electron_mean_free_path_at_point_210____________________________ (len_plasma_electron_electron_mean_free_path_profile210)_ 9.36195365036705480e+04 -Electron-electron_mean_free_path_at_point_211____________________________ (len_plasma_electron_electron_mean_free_path_profile211)_ 9.32456632568689674e+04 -Electron-electron_mean_free_path_at_point_212____________________________ (len_plasma_electron_electron_mean_free_path_profile212)_ 9.28709188880446454e+04 -Electron-electron_mean_free_path_at_point_213____________________________ (len_plasma_electron_electron_mean_free_path_profile213)_ 9.24953161208394449e+04 -Electron-electron_mean_free_path_at_point_214____________________________ (len_plasma_electron_electron_mean_free_path_profile214)_ 9.21188677335764369e+04 -Electron-electron_mean_free_path_at_point_215____________________________ (len_plasma_electron_electron_mean_free_path_profile215)_ 9.17415865591090260e+04 -Electron-electron_mean_free_path_at_point_216____________________________ (len_plasma_electron_electron_mean_free_path_profile216)_ 9.13634854846620583e+04 -Electron-electron_mean_free_path_at_point_217____________________________ (len_plasma_electron_electron_mean_free_path_profile217)_ 9.09845774516737001e+04 -Electron-electron_mean_free_path_at_point_218____________________________ (len_plasma_electron_electron_mean_free_path_profile218)_ 9.06048754556326894e+04 -Electron-electron_mean_free_path_at_point_219____________________________ (len_plasma_electron_electron_mean_free_path_profile219)_ 9.02243925459125603e+04 -Electron-electron_mean_free_path_at_point_220____________________________ (len_plasma_electron_electron_mean_free_path_profile220)_ 8.98431418256048782e+04 -Electron-electron_mean_free_path_at_point_221____________________________ (len_plasma_electron_electron_mean_free_path_profile221)_ 8.94611364513454173e+04 -Electron-electron_mean_free_path_at_point_222____________________________ (len_plasma_electron_electron_mean_free_path_profile222)_ 8.90783896331419237e+04 -Electron-electron_mean_free_path_at_point_223____________________________ (len_plasma_electron_electron_mean_free_path_profile223)_ 8.86949146341952437e+04 -Electron-electron_mean_free_path_at_point_224____________________________ (len_plasma_electron_electron_mean_free_path_profile224)_ 8.83107247707188653e+04 -Electron-electron_mean_free_path_at_point_225____________________________ (len_plasma_electron_electron_mean_free_path_profile225)_ 8.79258334117544728e+04 -Electron-electron_mean_free_path_at_point_226____________________________ (len_plasma_electron_electron_mean_free_path_profile226)_ 8.75402539789859584e+04 -Electron-electron_mean_free_path_at_point_227____________________________ (len_plasma_electron_electron_mean_free_path_profile227)_ 8.71539999465468427e+04 -Electron-electron_mean_free_path_at_point_228____________________________ (len_plasma_electron_electron_mean_free_path_profile228)_ 8.67670848408275197e+04 -Electron-electron_mean_free_path_at_point_229____________________________ (len_plasma_electron_electron_mean_free_path_profile229)_ 8.63795222402776999e+04 -Electron-electron_mean_free_path_at_point_230____________________________ (len_plasma_electron_electron_mean_free_path_profile230)_ 8.59913257752055797e+04 -Electron-electron_mean_free_path_at_point_231____________________________ (len_plasma_electron_electron_mean_free_path_profile231)_ 8.56025091275727900e+04 -Electron-electron_mean_free_path_at_point_232____________________________ (len_plasma_electron_electron_mean_free_path_profile232)_ 8.52130860307873518e+04 -Electron-electron_mean_free_path_at_point_233____________________________ (len_plasma_electron_electron_mean_free_path_profile233)_ 8.48230702694910869e+04 -Electron-electron_mean_free_path_at_point_234____________________________ (len_plasma_electron_electron_mean_free_path_profile234)_ 8.44324756793457200e+04 -Electron-electron_mean_free_path_at_point_235____________________________ (len_plasma_electron_electron_mean_free_path_profile235)_ 8.40413161468133330e+04 -Electron-electron_mean_free_path_at_point_236____________________________ (len_plasma_electron_electron_mean_free_path_profile236)_ 8.36496056089330232e+04 -Electron-electron_mean_free_path_at_point_237____________________________ (len_plasma_electron_electron_mean_free_path_profile237)_ 8.32573580530956679e+04 -Electron-electron_mean_free_path_at_point_238____________________________ (len_plasma_electron_electron_mean_free_path_profile238)_ 8.28645875168129423e+04 -Electron-electron_mean_free_path_at_point_239____________________________ (len_plasma_electron_electron_mean_free_path_profile239)_ 8.24713080874832813e+04 -Electron-electron_mean_free_path_at_point_240____________________________ (len_plasma_electron_electron_mean_free_path_profile240)_ 8.20775339021537366e+04 -Electron-electron_mean_free_path_at_point_241____________________________ (len_plasma_electron_electron_mean_free_path_profile241)_ 8.16832791472778918e+04 -Electron-electron_mean_free_path_at_point_242____________________________ (len_plasma_electron_electron_mean_free_path_profile242)_ 8.12885580584692798e+04 -Electron-electron_mean_free_path_at_point_243____________________________ (len_plasma_electron_electron_mean_free_path_profile243)_ 8.08933849202521087e+04 -Electron-electron_mean_free_path_at_point_244____________________________ (len_plasma_electron_electron_mean_free_path_profile244)_ 8.04977740658048133e+04 -Electron-electron_mean_free_path_at_point_245____________________________ (len_plasma_electron_electron_mean_free_path_profile245)_ 8.01017398767040431e+04 -Electron-electron_mean_free_path_at_point_246____________________________ (len_plasma_electron_electron_mean_free_path_profile246)_ 7.97052967826595268e+04 -Electron-electron_mean_free_path_at_point_247____________________________ (len_plasma_electron_electron_mean_free_path_profile247)_ 7.93084592612474808e+04 -Electron-electron_mean_free_path_at_point_248____________________________ (len_plasma_electron_electron_mean_free_path_profile248)_ 7.89112418376399000e+04 -Electron-electron_mean_free_path_at_point_249____________________________ (len_plasma_electron_electron_mean_free_path_profile249)_ 7.85136590843265294e+04 -Electron-electron_mean_free_path_at_point_250____________________________ (len_plasma_electron_electron_mean_free_path_profile250)_ 7.81157256208361796e+04 -Electron-electron_mean_free_path_at_point_251____________________________ (len_plasma_electron_electron_mean_free_path_profile251)_ 7.77174561134510586e+04 -Electron-electron_mean_free_path_at_point_252____________________________ (len_plasma_electron_electron_mean_free_path_profile252)_ 7.73188652749169269e+04 -Electron-electron_mean_free_path_at_point_253____________________________ (len_plasma_electron_electron_mean_free_path_profile253)_ 7.69199678641481732e+04 -Electron-electron_mean_free_path_at_point_254____________________________ (len_plasma_electron_electron_mean_free_path_profile254)_ 7.65207786859306070e+04 -Electron-electron_mean_free_path_at_point_255____________________________ (len_plasma_electron_electron_mean_free_path_profile255)_ 7.61213125906150526e+04 -Electron-electron_mean_free_path_at_point_256____________________________ (len_plasma_electron_electron_mean_free_path_profile256)_ 7.57215844738119195e+04 -Electron-electron_mean_free_path_at_point_257____________________________ (len_plasma_electron_electron_mean_free_path_profile257)_ 7.53216092760749598e+04 -Electron-electron_mean_free_path_at_point_258____________________________ (len_plasma_electron_electron_mean_free_path_profile258)_ 7.49214019825842697e+04 -Electron-electron_mean_free_path_at_point_259____________________________ (len_plasma_electron_electron_mean_free_path_profile259)_ 7.45209776228228729e+04 -Electron-electron_mean_free_path_at_point_260____________________________ (len_plasma_electron_electron_mean_free_path_profile260)_ 7.41203512702477892e+04 -Electron-electron_mean_free_path_at_point_261____________________________ (len_plasma_electron_electron_mean_free_path_profile261)_ 7.37195380419570574e+04 -Electron-electron_mean_free_path_at_point_262____________________________ (len_plasma_electron_electron_mean_free_path_profile262)_ 7.33185530983509525e+04 -Electron-electron_mean_free_path_at_point_263____________________________ (len_plasma_electron_electron_mean_free_path_profile263)_ 7.29174116427876579e+04 -Electron-electron_mean_free_path_at_point_264____________________________ (len_plasma_electron_electron_mean_free_path_profile264)_ 7.25161289212349948e+04 -Electron-electron_mean_free_path_at_point_265____________________________ (len_plasma_electron_electron_mean_free_path_profile265)_ 7.21147202219157480e+04 -Electron-electron_mean_free_path_at_point_266____________________________ (len_plasma_electron_electron_mean_free_path_profile266)_ 7.17132008749467786e+04 -Electron-electron_mean_free_path_at_point_267____________________________ (len_plasma_electron_electron_mean_free_path_profile267)_ 7.13115862519750663e+04 -Electron-electron_mean_free_path_at_point_268____________________________ (len_plasma_electron_electron_mean_free_path_profile268)_ 7.09098917658067803e+04 -Electron-electron_mean_free_path_at_point_269____________________________ (len_plasma_electron_electron_mean_free_path_profile269)_ 7.05081328700306622e+04 -Electron-electron_mean_free_path_at_point_270____________________________ (len_plasma_electron_electron_mean_free_path_profile270)_ 7.01063250586358627e+04 -Electron-electron_mean_free_path_at_point_271____________________________ (len_plasma_electron_electron_mean_free_path_profile271)_ 6.97044838656253123e+04 -Electron-electron_mean_free_path_at_point_272____________________________ (len_plasma_electron_electron_mean_free_path_profile272)_ 6.93026248646214226e+04 -Electron-electron_mean_free_path_at_point_273____________________________ (len_plasma_electron_electron_mean_free_path_profile273)_ 6.89007636684677273e+04 -Electron-electron_mean_free_path_at_point_274____________________________ (len_plasma_electron_electron_mean_free_path_profile274)_ 6.84989159288242226e+04 -Electron-electron_mean_free_path_at_point_275____________________________ (len_plasma_electron_electron_mean_free_path_profile275)_ 6.80970973357556359e+04 -Electron-electron_mean_free_path_at_point_276____________________________ (len_plasma_electron_electron_mean_free_path_profile276)_ 6.76953236173165787e+04 -Electron-electron_mean_free_path_at_point_277____________________________ (len_plasma_electron_electron_mean_free_path_profile277)_ 6.72936105391272140e+04 -Electron-electron_mean_free_path_at_point_278____________________________ (len_plasma_electron_electron_mean_free_path_profile278)_ 6.68919739039448468e+04 -Electron-electron_mean_free_path_at_point_279____________________________ (len_plasma_electron_electron_mean_free_path_profile279)_ 6.64904295512306999e+04 -Electron-electron_mean_free_path_at_point_280____________________________ (len_plasma_electron_electron_mean_free_path_profile280)_ 6.60889933567077387e+04 -Electron-electron_mean_free_path_at_point_281____________________________ (len_plasma_electron_electron_mean_free_path_profile281)_ 6.56876812319136807e+04 -Electron-electron_mean_free_path_at_point_282____________________________ (len_plasma_electron_electron_mean_free_path_profile282)_ 6.52865091237481320e+04 -Electron-electron_mean_free_path_at_point_283____________________________ (len_plasma_electron_electron_mean_free_path_profile283)_ 6.48854930140136566e+04 -Electron-electron_mean_free_path_at_point_284____________________________ (len_plasma_electron_electron_mean_free_path_profile284)_ 6.44846489189488857e+04 -Electron-electron_mean_free_path_at_point_285____________________________ (len_plasma_electron_electron_mean_free_path_profile285)_ 6.40839928887572532e+04 -Electron-electron_mean_free_path_at_point_286____________________________ (len_plasma_electron_electron_mean_free_path_profile286)_ 6.36835410071277365e+04 -Electron-electron_mean_free_path_at_point_287____________________________ (len_plasma_electron_electron_mean_free_path_profile287)_ 6.32833093907505536e+04 -Electron-electron_mean_free_path_at_point_288____________________________ (len_plasma_electron_electron_mean_free_path_profile288)_ 6.28833141888254104e+04 -Electron-electron_mean_free_path_at_point_289____________________________ (len_plasma_electron_electron_mean_free_path_profile289)_ 6.24835715825635416e+04 -Electron-electron_mean_free_path_at_point_290____________________________ (len_plasma_electron_electron_mean_free_path_profile290)_ 6.20840977846829483e+04 -Electron-electron_mean_free_path_at_point_291____________________________ (len_plasma_electron_electron_mean_free_path_profile291)_ 6.16849090388982368e+04 -Electron-electron_mean_free_path_at_point_292____________________________ (len_plasma_electron_electron_mean_free_path_profile292)_ 6.12860216194019595e+04 -Electron-electron_mean_free_path_at_point_293____________________________ (len_plasma_electron_electron_mean_free_path_profile293)_ 6.08874518303409204e+04 -Electron-electron_mean_free_path_at_point_294____________________________ (len_plasma_electron_electron_mean_free_path_profile294)_ 6.04892160052846739e+04 -Electron-electron_mean_free_path_at_point_295____________________________ (len_plasma_electron_electron_mean_free_path_profile295)_ 6.00913305066885587e+04 -Electron-electron_mean_free_path_at_point_296____________________________ (len_plasma_electron_electron_mean_free_path_profile296)_ 5.96938117253490564e+04 -Electron-electron_mean_free_path_at_point_297____________________________ (len_plasma_electron_electron_mean_free_path_profile297)_ 5.92966760798529212e+04 -Electron-electron_mean_free_path_at_point_298____________________________ (len_plasma_electron_electron_mean_free_path_profile298)_ 5.88999400160192745e+04 -Electron-electron_mean_free_path_at_point_299____________________________ (len_plasma_electron_electron_mean_free_path_profile299)_ 5.85036200063348952e+04 -Electron-electron_mean_free_path_at_point_300____________________________ (len_plasma_electron_electron_mean_free_path_profile300)_ 5.81077325493838798e+04 -Electron-electron_mean_free_path_at_point_301____________________________ (len_plasma_electron_electron_mean_free_path_profile301)_ 5.77122941692690438e+04 -Electron-electron_mean_free_path_at_point_302____________________________ (len_plasma_electron_electron_mean_free_path_profile302)_ 5.73173214150275453e+04 -Electron-electron_mean_free_path_at_point_303____________________________ (len_plasma_electron_electron_mean_free_path_profile303)_ 5.69228308600390010e+04 -Electron-electron_mean_free_path_at_point_304____________________________ (len_plasma_electron_electron_mean_free_path_profile304)_ 5.65288391014290464e+04 -Electron-electron_mean_free_path_at_point_305____________________________ (len_plasma_electron_electron_mean_free_path_profile305)_ 5.61353627594623540e+04 -Electron-electron_mean_free_path_at_point_306____________________________ (len_plasma_electron_electron_mean_free_path_profile306)_ 5.57424184769331987e+04 -Electron-electron_mean_free_path_at_point_307____________________________ (len_plasma_electron_electron_mean_free_path_profile307)_ 5.53500229185467470e+04 -Electron-electron_mean_free_path_at_point_308____________________________ (len_plasma_electron_electron_mean_free_path_profile308)_ 5.49581927702944959e+04 -Electron-electron_mean_free_path_at_point_309____________________________ (len_plasma_electron_electron_mean_free_path_profile309)_ 5.45669447388235058e+04 -Electron-electron_mean_free_path_at_point_310____________________________ (len_plasma_electron_electron_mean_free_path_profile310)_ 5.41762955507981751e+04 -Electron-electron_mean_free_path_at_point_311____________________________ (len_plasma_electron_electron_mean_free_path_profile311)_ 5.37862619522576715e+04 -Electron-electron_mean_free_path_at_point_312____________________________ (len_plasma_electron_electron_mean_free_path_profile312)_ 5.33968607079640569e+04 -Electron-electron_mean_free_path_at_point_313____________________________ (len_plasma_electron_electron_mean_free_path_profile313)_ 5.30081086007471094e+04 -Electron-electron_mean_free_path_at_point_314____________________________ (len_plasma_electron_electron_mean_free_path_profile314)_ 5.26200224308407487e+04 -Electron-electron_mean_free_path_at_point_315____________________________ (len_plasma_electron_electron_mean_free_path_profile315)_ 5.22326190152148920e+04 -Electron-electron_mean_free_path_at_point_316____________________________ (len_plasma_electron_electron_mean_free_path_profile316)_ 5.18459151868998451e+04 -Electron-electron_mean_free_path_at_point_317____________________________ (len_plasma_electron_electron_mean_free_path_profile317)_ 5.14599277943065463e+04 -Electron-electron_mean_free_path_at_point_318____________________________ (len_plasma_electron_electron_mean_free_path_profile318)_ 5.10746737005402028e+04 -Electron-electron_mean_free_path_at_point_319____________________________ (len_plasma_electron_electron_mean_free_path_profile319)_ 5.06901697827074022e+04 -Electron-electron_mean_free_path_at_point_320____________________________ (len_plasma_electron_electron_mean_free_path_profile320)_ 5.03064329312205518e+04 -Electron-electron_mean_free_path_at_point_321____________________________ (len_plasma_electron_electron_mean_free_path_profile321)_ 4.99234800490930065e+04 -Electron-electron_mean_free_path_at_point_322____________________________ (len_plasma_electron_electron_mean_free_path_profile322)_ 4.95413280512338097e+04 -Electron-electron_mean_free_path_at_point_323____________________________ (len_plasma_electron_electron_mean_free_path_profile323)_ 4.91599938637333835e+04 -Electron-electron_mean_free_path_at_point_324____________________________ (len_plasma_electron_electron_mean_free_path_profile324)_ 4.87794944231473055e+04 -Electron-electron_mean_free_path_at_point_325____________________________ (len_plasma_electron_electron_mean_free_path_profile325)_ 4.83998466757743299e+04 -Electron-electron_mean_free_path_at_point_326____________________________ (len_plasma_electron_electron_mean_free_path_profile326)_ 4.80210675769307345e+04 -Electron-electron_mean_free_path_at_point_327____________________________ (len_plasma_electron_electron_mean_free_path_profile327)_ 4.76431740902205638e+04 -Electron-electron_mean_free_path_at_point_328____________________________ (len_plasma_electron_electron_mean_free_path_profile328)_ 4.72661831868020963e+04 -Electron-electron_mean_free_path_at_point_329____________________________ (len_plasma_electron_electron_mean_free_path_profile329)_ 4.68901118446522742e+04 -Electron-electron_mean_free_path_at_point_330____________________________ (len_plasma_electron_electron_mean_free_path_profile330)_ 4.65149770478255377e+04 -Electron-electron_mean_free_path_at_point_331____________________________ (len_plasma_electron_electron_mean_free_path_profile331)_ 4.61407957857128567e+04 -Electron-electron_mean_free_path_at_point_332____________________________ (len_plasma_electron_electron_mean_free_path_profile332)_ 4.57675850522968612e+04 -Electron-electron_mean_free_path_at_point_333____________________________ (len_plasma_electron_electron_mean_free_path_profile333)_ 4.53953618454051684e+04 -Electron-electron_mean_free_path_at_point_334____________________________ (len_plasma_electron_electron_mean_free_path_profile334)_ 4.50241431659641967e+04 -Electron-electron_mean_free_path_at_point_335____________________________ (len_plasma_electron_electron_mean_free_path_profile335)_ 4.46539460172483959e+04 -Electron-electron_mean_free_path_at_point_336____________________________ (len_plasma_electron_electron_mean_free_path_profile336)_ 4.42847874041333416e+04 -Electron-electron_mean_free_path_at_point_337____________________________ (len_plasma_electron_electron_mean_free_path_profile337)_ 4.39166843323454887e+04 -Electron-electron_mean_free_path_at_point_338____________________________ (len_plasma_electron_electron_mean_free_path_profile338)_ 4.35496538077148216e+04 -Electron-electron_mean_free_path_at_point_339____________________________ (len_plasma_electron_electron_mean_free_path_profile339)_ 4.31837128354275701e+04 -Electron-electron_mean_free_path_at_point_340____________________________ (len_plasma_electron_electron_mean_free_path_profile340)_ 4.28188784192811072e+04 -Electron-electron_mean_free_path_at_point_341____________________________ (len_plasma_electron_electron_mean_free_path_profile341)_ 4.24551675609421291e+04 -Electron-electron_mean_free_path_at_point_342____________________________ (len_plasma_electron_electron_mean_free_path_profile342)_ 4.20925972592074686e+04 -Electron-electron_mean_free_path_at_point_343____________________________ (len_plasma_electron_electron_mean_free_path_profile343)_ 4.17311845092685762e+04 -Electron-electron_mean_free_path_at_point_344____________________________ (len_plasma_electron_electron_mean_free_path_profile344)_ 4.13709463019833129e+04 -Electron-electron_mean_free_path_at_point_345____________________________ (len_plasma_electron_electron_mean_free_path_profile345)_ 4.10118996231503916e+04 -Electron-electron_mean_free_path_at_point_346____________________________ (len_plasma_electron_electron_mean_free_path_profile346)_ 4.06540614527923244e+04 -Electron-electron_mean_free_path_at_point_347____________________________ (len_plasma_electron_electron_mean_free_path_profile347)_ 4.02974487644472174e+04 -Electron-electron_mean_free_path_at_point_348____________________________ (len_plasma_electron_electron_mean_free_path_profile348)_ 3.99420785244668878e+04 -Electron-electron_mean_free_path_at_point_349____________________________ (len_plasma_electron_electron_mean_free_path_profile349)_ 3.95879676913272633e+04 -Electron-electron_mean_free_path_at_point_350____________________________ (len_plasma_electron_electron_mean_free_path_profile350)_ 3.92351332149481968e+04 -Electron-electron_mean_free_path_at_point_351____________________________ (len_plasma_electron_electron_mean_free_path_profile351)_ 3.88835920360275559e+04 -Electron-electron_mean_free_path_at_point_352____________________________ (len_plasma_electron_electron_mean_free_path_profile352)_ 3.85333610853871214e+04 -Electron-electron_mean_free_path_at_point_353____________________________ (len_plasma_electron_electron_mean_free_path_profile353)_ 3.81844572833359780e+04 -Electron-electron_mean_free_path_at_point_354____________________________ (len_plasma_electron_electron_mean_free_path_profile354)_ 3.78368975390483902e+04 -Electron-electron_mean_free_path_at_point_355____________________________ (len_plasma_electron_electron_mean_free_path_profile355)_ 3.74906987499622701e+04 -Electron-electron_mean_free_path_at_point_356____________________________ (len_plasma_electron_electron_mean_free_path_profile356)_ 3.71458778011963368e+04 -Electron-electron_mean_free_path_at_point_357____________________________ (len_plasma_electron_electron_mean_free_path_profile357)_ 3.68024515649900059e+04 -Electron-electron_mean_free_path_at_point_358____________________________ (len_plasma_electron_electron_mean_free_path_profile358)_ 3.64604369001670857e+04 -Electron-electron_mean_free_path_at_point_359____________________________ (len_plasma_electron_electron_mean_free_path_profile359)_ 3.61198506516254638e+04 -Electron-electron_mean_free_path_at_point_360____________________________ (len_plasma_electron_electron_mean_free_path_profile360)_ 3.57807096498548708e+04 -Electron-electron_mean_free_path_at_point_361____________________________ (len_plasma_electron_electron_mean_free_path_profile361)_ 3.54430307104866588e+04 -Electron-electron_mean_free_path_at_point_362____________________________ (len_plasma_electron_electron_mean_free_path_profile362)_ 3.51068306338737020e+04 -Electron-electron_mean_free_path_at_point_363____________________________ (len_plasma_electron_electron_mean_free_path_profile363)_ 3.47721262047097844e+04 -Electron-electron_mean_free_path_at_point_364____________________________ (len_plasma_electron_electron_mean_free_path_profile364)_ 3.44389341916845224e+04 -Electron-electron_mean_free_path_at_point_365____________________________ (len_plasma_electron_electron_mean_free_path_profile365)_ 3.41072713471822208e+04 -Electron-electron_mean_free_path_at_point_366____________________________ (len_plasma_electron_electron_mean_free_path_profile366)_ 3.37771544070236414e+04 -Electron-electron_mean_free_path_at_point_367____________________________ (len_plasma_electron_electron_mean_free_path_profile367)_ 3.34486000902570377e+04 -Electron-electron_mean_free_path_at_point_368____________________________ (len_plasma_electron_electron_mean_free_path_profile368)_ 3.31216250990010521e+04 -Electron-electron_mean_free_path_at_point_369____________________________ (len_plasma_electron_electron_mean_free_path_profile369)_ 3.27962461183431078e+04 -Electron-electron_mean_free_path_at_point_370____________________________ (len_plasma_electron_electron_mean_free_path_profile370)_ 3.24724798162971529e+04 -Electron-electron_mean_free_path_at_point_371____________________________ (len_plasma_electron_electron_mean_free_path_profile371)_ 3.21503428438265655e+04 -Electron-electron_mean_free_path_at_point_372____________________________ (len_plasma_electron_electron_mean_free_path_profile372)_ 3.18298518349346596e+04 -Electron-electron_mean_free_path_at_point_373____________________________ (len_plasma_electron_electron_mean_free_path_profile373)_ 3.15110234068302489e+04 -Electron-electron_mean_free_path_at_point_374____________________________ (len_plasma_electron_electron_mean_free_path_profile374)_ 3.11938741601711372e+04 -Electron-electron_mean_free_path_at_point_375____________________________ (len_plasma_electron_electron_mean_free_path_profile375)_ 3.08784206793923076e+04 -Electron-electron_mean_free_path_at_point_376____________________________ (len_plasma_electron_electron_mean_free_path_profile376)_ 3.05646795331267967e+04 -Electron-electron_mean_free_path_at_point_377____________________________ (len_plasma_electron_electron_mean_free_path_profile377)_ 3.02526672747200901e+04 -Electron-electron_mean_free_path_at_point_378____________________________ (len_plasma_electron_electron_mean_free_path_profile378)_ 2.99424004428517073e+04 -Electron-electron_mean_free_path_at_point_379____________________________ (len_plasma_electron_electron_mean_free_path_profile379)_ 2.96338955622663088e+04 -Electron-electron_mean_free_path_at_point_380____________________________ (len_plasma_electron_electron_mean_free_path_profile380)_ 2.93271691446240511e+04 -Electron-electron_mean_free_path_at_point_381____________________________ (len_plasma_electron_electron_mean_free_path_profile381)_ 2.90222376894787521e+04 -Electron-electron_mean_free_path_at_point_382____________________________ (len_plasma_electron_electron_mean_free_path_profile382)_ 2.87191176853916368e+04 -Electron-electron_mean_free_path_at_point_383____________________________ (len_plasma_electron_electron_mean_free_path_profile383)_ 2.84178256111911105e+04 -Electron-electron_mean_free_path_at_point_384____________________________ (len_plasma_electron_electron_mean_free_path_profile384)_ 2.81183779373883372e+04 -Electron-electron_mean_free_path_at_point_385____________________________ (len_plasma_electron_electron_mean_free_path_profile385)_ 2.78207911277598396e+04 -Electron-electron_mean_free_path_at_point_386____________________________ (len_plasma_electron_electron_mean_free_path_profile386)_ 2.75250816411079977e+04 -Electron-electron_mean_free_path_at_point_387____________________________ (len_plasma_electron_electron_mean_free_path_profile387)_ 2.72312659332133371e+04 -Electron-electron_mean_free_path_at_point_388____________________________ (len_plasma_electron_electron_mean_free_path_profile388)_ 2.69393604589901479e+04 -Electron-electron_mean_free_path_at_point_389____________________________ (len_plasma_electron_electron_mean_free_path_profile389)_ 2.66493816748614627e+04 -Electron-electron_mean_free_path_at_point_390____________________________ (len_plasma_electron_electron_mean_free_path_profile390)_ 2.63613460413678004e+04 -Electron-electron_mean_free_path_at_point_391____________________________ (len_plasma_electron_electron_mean_free_path_profile391)_ 2.60752700260269085e+04 -Electron-electron_mean_free_path_at_point_392____________________________ (len_plasma_electron_electron_mean_free_path_profile392)_ 2.57911701064612789e+04 -Electron-electron_mean_free_path_at_point_393____________________________ (len_plasma_electron_electron_mean_free_path_profile393)_ 2.55090627738135772e+04 -Electron-electron_mean_free_path_at_point_394____________________________ (len_plasma_electron_electron_mean_free_path_profile394)_ 2.52289645364709468e+04 -Electron-electron_mean_free_path_at_point_395____________________________ (len_plasma_electron_electron_mean_free_path_profile395)_ 2.49508919241176591e+04 -Electron-electron_mean_free_path_at_point_396____________________________ (len_plasma_electron_electron_mean_free_path_profile396)_ 2.46748614921435183e+04 -Electron-electron_mean_free_path_at_point_397____________________________ (len_plasma_electron_electron_mean_free_path_profile397)_ 2.44008898264320014e+04 -Electron-electron_mean_free_path_at_point_398____________________________ (len_plasma_electron_electron_mean_free_path_profile398)_ 2.41289935485548558e+04 -Electron-electron_mean_free_path_at_point_399____________________________ (len_plasma_electron_electron_mean_free_path_profile399)_ 2.38591893214049232e+04 -Electron-electron_mean_free_path_at_point_400____________________________ (len_plasma_electron_electron_mean_free_path_profile400)_ 2.35914938552997774e+04 -Electron-electron_mean_free_path_at_point_401____________________________ (len_plasma_electron_electron_mean_free_path_profile401)_ 2.33259239145886058e+04 -Electron-electron_mean_free_path_at_point_402____________________________ (len_plasma_electron_electron_mean_free_path_profile402)_ 2.30624963248036001e+04 -Electron-electron_mean_free_path_at_point_403____________________________ (len_plasma_electron_electron_mean_free_path_profile403)_ 2.28012279803951751e+04 -Electron-electron_mean_free_path_at_point_404____________________________ (len_plasma_electron_electron_mean_free_path_profile404)_ 2.25421358530944344e+04 -Electron-electron_mean_free_path_at_point_405____________________________ (len_plasma_electron_electron_mean_free_path_profile405)_ 2.22852370009556107e+04 -Electron-electron_mean_free_path_at_point_406____________________________ (len_plasma_electron_electron_mean_free_path_profile406)_ 2.20305485781255156e+04 -Electron-electron_mean_free_path_at_point_407____________________________ (len_plasma_electron_electron_mean_free_path_profile407)_ 2.17780878454023259e+04 -Electron-electron_mean_free_path_at_point_408____________________________ (len_plasma_electron_electron_mean_free_path_profile408)_ 2.15278721816422767e+04 -Electron-electron_mean_free_path_at_point_409____________________________ (len_plasma_electron_electron_mean_free_path_profile409)_ 2.12799190960858432e+04 -Electron-electron_mean_free_path_at_point_410____________________________ (len_plasma_electron_electron_mean_free_path_profile410)_ 2.10342462416739472e+04 -Electron-electron_mean_free_path_at_point_411____________________________ (len_plasma_electron_electron_mean_free_path_profile411)_ 2.07908714294395213e+04 -Electron-electron_mean_free_path_at_point_412____________________________ (len_plasma_electron_electron_mean_free_path_profile412)_ 2.05498126440601918e+04 -Electron-electron_mean_free_path_at_point_413____________________________ (len_plasma_electron_electron_mean_free_path_profile413)_ 2.03110880606712963e+04 -Electron-electron_mean_free_path_at_point_414____________________________ (len_plasma_electron_electron_mean_free_path_profile414)_ 2.00747160630460094e+04 -Electron-electron_mean_free_path_at_point_415____________________________ (len_plasma_electron_electron_mean_free_path_profile415)_ 1.98407152632599646e+04 -Electron-electron_mean_free_path_at_point_416____________________________ (len_plasma_electron_electron_mean_free_path_profile416)_ 1.96091045229708179e+04 -Electron-electron_mean_free_path_at_point_417____________________________ (len_plasma_electron_electron_mean_free_path_profile417)_ 1.93799029764545376e+04 -Electron-electron_mean_free_path_at_point_418____________________________ (len_plasma_electron_electron_mean_free_path_profile418)_ 1.91531300555577982e+04 -Electron-electron_mean_free_path_at_point_419____________________________ (len_plasma_electron_electron_mean_free_path_profile419)_ 1.89288055167391394e+04 -Electron-electron_mean_free_path_at_point_420____________________________ (len_plasma_electron_electron_mean_free_path_profile420)_ 1.87069494703948294e+04 -Electron-electron_mean_free_path_at_point_421____________________________ (len_plasma_electron_electron_mean_free_path_profile421)_ 1.84875824126824155e+04 -Electron-electron_mean_free_path_at_point_422____________________________ (len_plasma_electron_electron_mean_free_path_profile422)_ 1.82707252600820502e+04 -Electron-electron_mean_free_path_at_point_423____________________________ (len_plasma_electron_electron_mean_free_path_profile423)_ 1.80563993869629085e+04 -Electron-electron_mean_free_path_at_point_424____________________________ (len_plasma_electron_electron_mean_free_path_profile424)_ 1.78446266664505747e+04 -Electron-electron_mean_free_path_at_point_425____________________________ (len_plasma_electron_electron_mean_free_path_profile425)_ 1.76354295149305908e+04 -Electron-electron_mean_free_path_at_point_426____________________________ (len_plasma_electron_electron_mean_free_path_profile426)_ 1.74288309405615037e+04 -Electron-electron_mean_free_path_at_point_427____________________________ (len_plasma_electron_electron_mean_free_path_profile427)_ 1.72248545962182761e+04 -Electron-electron_mean_free_path_at_point_428____________________________ (len_plasma_electron_electron_mean_free_path_profile428)_ 1.70235248373408649e+04 -Electron-electron_mean_free_path_at_point_429____________________________ (len_plasma_electron_electron_mean_free_path_profile429)_ 1.68248667852239851e+04 -Electron-electron_mean_free_path_at_point_430____________________________ (len_plasma_electron_electron_mean_free_path_profile430)_ 1.66289063963560038e+04 -Electron-electron_mean_free_path_at_point_431____________________________ (len_plasma_electron_electron_mean_free_path_profile431)_ 1.64356705384988891e+04 -Electron-electron_mean_free_path_at_point_432____________________________ (len_plasma_electron_electron_mean_free_path_profile432)_ 1.62451870742974716e+04 -Electron-electron_mean_free_path_at_point_433____________________________ (len_plasma_electron_electron_mean_free_path_profile433)_ 1.60574849533192246e+04 -Electron-electron_mean_free_path_at_point_434____________________________ (len_plasma_electron_electron_mean_free_path_profile434)_ 1.58725943135607959e+04 -Electron-electron_mean_free_path_at_point_435____________________________ (len_plasma_electron_electron_mean_free_path_profile435)_ 1.56905465936119344e+04 -Electron-electron_mean_free_path_at_point_436____________________________ (len_plasma_electron_electron_mean_free_path_profile436)_ 1.55113746568583083e+04 -Electron-electron_mean_free_path_at_point_437____________________________ (len_plasma_electron_electron_mean_free_path_profile437)_ 1.53351129293193499e+04 -Electron-electron_mean_free_path_at_point_438____________________________ (len_plasma_electron_electron_mean_free_path_profile438)_ 1.51617975529898740e+04 -Electron-electron_mean_free_path_at_point_439____________________________ (len_plasma_electron_electron_mean_free_path_profile439)_ 1.49914665568659620e+04 -Electron-electron_mean_free_path_at_point_440____________________________ (len_plasma_electron_electron_mean_free_path_profile440)_ 1.48241600482242829e+04 -Electron-electron_mean_free_path_at_point_441____________________________ (len_plasma_electron_electron_mean_free_path_profile441)_ 1.46599204271888866e+04 -Electron-electron_mean_free_path_at_point_442____________________________ (len_plasma_electron_electron_mean_free_path_profile442)_ 1.44987926281933142e+04 -Electron-electron_mean_free_path_at_point_443____________________________ (len_plasma_electron_electron_mean_free_path_profile443)_ 1.43408243926447594e+04 -Electron-electron_mean_free_path_at_point_444____________________________ (len_plasma_electron_electron_mean_free_path_profile444)_ 1.41860665779732153e+04 -Electron-electron_mean_free_path_at_point_445____________________________ (len_plasma_electron_electron_mean_free_path_profile445)_ 1.40345735093323965e+04 -Electron-electron_mean_free_path_at_point_446____________________________ (len_plasma_electron_electron_mean_free_path_profile446)_ 1.38864033815862622e+04 -Electron-electron_mean_free_path_at_point_447____________________________ (len_plasma_electron_electron_mean_free_path_profile447)_ 1.37416187209575382e+04 -Electron-electron_mean_free_path_at_point_448____________________________ (len_plasma_electron_electron_mean_free_path_profile448)_ 1.36002869179275058e+04 -Electron-electron_mean_free_path_at_point_449____________________________ (len_plasma_electron_electron_mean_free_path_profile449)_ 1.34624808458648804e+04 -Electron-electron_mean_free_path_at_point_450____________________________ (len_plasma_electron_electron_mean_free_path_profile450)_ 1.33282795836088153e+04 -Electron-electron_mean_free_path_at_point_451____________________________ (len_plasma_electron_electron_mean_free_path_profile451)_ 1.31977692652151818e+04 -Electron-electron_mean_free_path_at_point_452____________________________ (len_plasma_electron_electron_mean_free_path_profile452)_ 1.30710440867314101e+04 -Electron-electron_mean_free_path_at_point_453____________________________ (len_plasma_electron_electron_mean_free_path_profile453)_ 1.29482075089232585e+04 -Electron-electron_mean_free_path_at_point_454____________________________ (len_plasma_electron_electron_mean_free_path_profile454)_ 1.28293737073619232e+04 -Electron-electron_mean_free_path_at_point_455____________________________ (len_plasma_electron_electron_mean_free_path_profile455)_ 1.27146693388146541e+04 -Electron-electron_mean_free_path_at_point_456____________________________ (len_plasma_electron_electron_mean_free_path_profile456)_ 1.26042357179463834e+04 -Electron-electron_mean_free_path_at_point_457____________________________ (len_plasma_electron_electron_mean_free_path_profile457)_ 1.24982315349721939e+04 -Electron-electron_mean_free_path_at_point_458____________________________ (len_plasma_electron_electron_mean_free_path_profile458)_ 1.23968362997038676e+04 -Electron-electron_mean_free_path_at_point_459____________________________ (len_plasma_electron_electron_mean_free_path_profile459)_ 1.23002547817124323e+04 -Electron-electron_mean_free_path_at_point_460____________________________ (len_plasma_electron_electron_mean_free_path_profile460)_ 1.22087228500400815e+04 -Electron-electron_mean_free_path_at_point_461____________________________ (len_plasma_electron_electron_mean_free_path_profile461)_ 1.21225153358794960e+04 -Electron-electron_mean_free_path_at_point_462____________________________ (len_plasma_electron_electron_mean_free_path_profile462)_ 1.20419569193667030e+04 -Electron-electron_mean_free_path_at_point_463____________________________ (len_plasma_electron_electron_mean_free_path_profile463)_ 1.19674377241692091e+04 -Electron-electron_mean_free_path_at_point_464____________________________ (len_plasma_electron_electron_mean_free_path_profile464)_ 1.18994366160580466e+04 -Electron-electron_mean_free_path_at_point_465____________________________ (len_plasma_electron_electron_mean_free_path_profile465)_ 1.18385579296887063e+04 -Electron-electron_mean_free_path_at_point_466____________________________ (len_plasma_electron_electron_mean_free_path_profile466)_ 1.17855936176744508e+04 -Electron-electron_mean_free_path_at_point_467____________________________ (len_plasma_electron_electron_mean_free_path_profile467)_ 1.17416393301990811e+04 -Electron-electron_mean_free_path_at_point_468____________________________ (len_plasma_electron_electron_mean_free_path_profile468)_ 1.17083460140918833e+04 -Electron-electron_mean_free_path_at_point_469____________________________ (len_plasma_electron_electron_mean_free_path_profile469)_ 1.16886271531329785e+04 -Electron-electron_mean_free_path_at_point_470____________________________ (len_plasma_electron_electron_mean_free_path_profile470)_ 1.16909856444764209e+04 -Electron-electron_mean_free_path_at_point_471____________________________ (len_plasma_electron_electron_mean_free_path_profile471)_ 1.11107250181860363e+04 -Electron-electron_mean_free_path_at_point_472____________________________ (len_plasma_electron_electron_mean_free_path_profile472)_ 1.05378320941425827e+04 -Electron-electron_mean_free_path_at_point_473____________________________ (len_plasma_electron_electron_mean_free_path_profile473)_ 9.97266871933997936e+03 -Electron-electron_mean_free_path_at_point_474____________________________ (len_plasma_electron_electron_mean_free_path_profile474)_ 9.41561909467979240e+03 -Electron-electron_mean_free_path_at_point_475____________________________ (len_plasma_electron_electron_mean_free_path_profile475)_ 8.86709153856129888e+03 -Electron-electron_mean_free_path_at_point_476____________________________ (len_plasma_electron_electron_mean_free_path_profile476)_ 8.32752042401666222e+03 -Electron-electron_mean_free_path_at_point_477____________________________ (len_plasma_electron_electron_mean_free_path_profile477)_ 7.79736831051604167e+03 -Electron-electron_mean_free_path_at_point_478____________________________ (len_plasma_electron_electron_mean_free_path_profile478)_ 7.27712829476417846e+03 -Electron-electron_mean_free_path_at_point_479____________________________ (len_plasma_electron_electron_mean_free_path_profile479)_ 6.76732660862828743e+03 -Electron-electron_mean_free_path_at_point_480____________________________ (len_plasma_electron_electron_mean_free_path_profile480)_ 6.26852549692101366e+03 -Electron-electron_mean_free_path_at_point_481____________________________ (len_plasma_electron_electron_mean_free_path_profile481)_ 5.78132641331261220e+03 -Electron-electron_mean_free_path_at_point_482____________________________ (len_plasma_electron_electron_mean_free_path_profile482)_ 5.30637357943846291e+03 -Electron-electron_mean_free_path_at_point_483____________________________ (len_plasma_electron_electron_mean_free_path_profile483)_ 4.84435796066167313e+03 -Electron-electron_mean_free_path_at_point_484____________________________ (len_plasma_electron_electron_mean_free_path_profile484)_ 4.39602172246163173e+03 -Electron-electron_mean_free_path_at_point_485____________________________ (len_plasma_electron_electron_mean_free_path_profile485)_ 3.96216324477222543e+03 -Electron-electron_mean_free_path_at_point_486____________________________ (len_plasma_electron_electron_mean_free_path_profile486)_ 3.54364278883434145e+03 -Electron-electron_mean_free_path_at_point_487____________________________ (len_plasma_electron_electron_mean_free_path_profile487)_ 3.14138893382912102e+03 -Electron-electron_mean_free_path_at_point_488____________________________ (len_plasma_electron_electron_mean_free_path_profile488)_ 2.75640593111835415e+03 -Electron-electron_mean_free_path_at_point_489____________________________ (len_plasma_electron_electron_mean_free_path_profile489)_ 2.38978216613328095e+03 -Electron-electron_mean_free_path_at_point_490____________________________ (len_plasma_electron_electron_mean_free_path_profile490)_ 2.04269997804999844e+03 -Electron-electron_mean_free_path_at_point_491____________________________ (len_plasma_electron_electron_mean_free_path_profile491)_ 1.71644717598342800e+03 -Electron-electron_mean_free_path_at_point_492____________________________ (len_plasma_electron_electron_mean_free_path_profile492)_ 1.41243072650601675e+03 -Electron-electron_mean_free_path_at_point_493____________________________ (len_plasma_electron_electron_mean_free_path_profile493)_ 1.13219330658992521e+03 -Electron-electron_mean_free_path_at_point_494____________________________ (len_plasma_electron_electron_mean_free_path_profile494)_ 8.77433790331494379e+02 -Electron-electron_mean_free_path_at_point_495____________________________ (len_plasma_electron_electron_mean_free_path_profile495)_ 6.50033422301078417e+02 -Electron-electron_mean_free_path_at_point_496____________________________ (len_plasma_electron_electron_mean_free_path_profile496)_ 4.52090794330061726e+02 -Electron-electron_mean_free_path_at_point_497____________________________ (len_plasma_electron_electron_mean_free_path_profile497)_ 2.85971777663929913e+02 -Electron-electron_mean_free_path_at_point_498____________________________ (len_plasma_electron_electron_mean_free_path_profile498)_ 1.54388412543158921e+02 -Electron-electron_mean_free_path_at_point_499____________________________ (len_plasma_electron_electron_mean_free_path_profile499)_ 6.05461965974069400e+01 -Electron-electron_mean_free_path_at_point_500____________________________ (len_plasma_electron_electron_mean_free_path_profile500)_ 8.52378486584074935e+00 -Volume_averaged_electron-deuteron_mean_free_path_(λₑD)_(m)_______________ (len_plasma_electron_deuteron_mean_free_path_vol_avg)_ 5.39908225047909291e+04 -Electron-deuteron_mean_free_path_at_point_0______________________________ (len_plasma_electron_deuteron_mean_free_path_profile0)_ 1.65944356284120411e+05 -Electron-deuteron_mean_free_path_at_point_1______________________________ (len_plasma_electron_deuteron_mean_free_path_profile1)_ 1.65943014185556211e+05 -Electron-deuteron_mean_free_path_at_point_2______________________________ (len_plasma_electron_deuteron_mean_free_path_profile2)_ 1.65938987926754809e+05 -Electron-deuteron_mean_free_path_at_point_3______________________________ (len_plasma_electron_deuteron_mean_free_path_profile3)_ 1.65932277618388354e+05 -Electron-deuteron_mean_free_path_at_point_4______________________________ (len_plasma_electron_deuteron_mean_free_path_profile4)_ 1.65922883444910432e+05 -Electron-deuteron_mean_free_path_at_point_5______________________________ (len_plasma_electron_deuteron_mean_free_path_profile5)_ 1.65910805664557149e+05 -Electron-deuteron_mean_free_path_at_point_6______________________________ (len_plasma_electron_deuteron_mean_free_path_profile6)_ 1.65896044609345874e+05 -Electron-deuteron_mean_free_path_at_point_7______________________________ (len_plasma_electron_deuteron_mean_free_path_profile7)_ 1.65878600685076177e+05 -Electron-deuteron_mean_free_path_at_point_8______________________________ (len_plasma_electron_deuteron_mean_free_path_profile8)_ 1.65858474371331453e+05 -Electron-deuteron_mean_free_path_at_point_9______________________________ (len_plasma_electron_deuteron_mean_free_path_profile9)_ 1.65835666221476393e+05 -Electron-deuteron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile10)_ 1.65810176862660388e+05 -Electron-deuteron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile11)_ 1.65782006995817239e+05 -Electron-deuteron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile12)_ 1.65751157395663846e+05 -Electron-deuteron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile13)_ 1.65717628910703614e+05 -Electron-deuteron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile14)_ 1.65681422463225725e+05 -Electron-deuteron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile15)_ 1.65642539049305691e+05 -Electron-deuteron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile16)_ 1.65600979738807568e+05 -Electron-deuteron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile17)_ 1.65556745675382757e+05 -Electron-deuteron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile18)_ 1.65509838076472981e+05 -Electron-deuteron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile19)_ 1.65460258233309985e+05 -Electron-deuteron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile20)_ 1.65408007510916941e+05 -Electron-deuteron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile21)_ 1.65353087348109490e+05 -Electron-deuteron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile22)_ 1.65295499257497198e+05 -Electron-deuteron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile23)_ 1.65235244825484318e+05 -Electron-deuteron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile24)_ 1.65172325712271326e+05 -Electron-deuteron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile25)_ 1.65106743651856494e+05 -Electron-deuteron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile26)_ 1.65038500452035543e+05 -Electron-deuteron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile27)_ 1.64967597994404845e+05 -Electron-deuteron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile28)_ 1.64894038234363223e+05 -Electron-deuteron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile29)_ 1.64817823201110557e+05 -Electron-deuteron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile30)_ 1.64738954997652065e+05 -Electron-deuteron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile31)_ 1.64657435800798965e+05 -Electron-deuteron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile32)_ 1.64573267861168773e+05 -Electron-deuteron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile33)_ 1.64486453503188852e+05 -Electron-deuteron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile34)_ 1.64396995125096262e+05 -Electron-deuteron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile35)_ 1.64304895198940329e+05 -Electron-deuteron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile36)_ 1.64210156270583509e+05 -Electron-deuteron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile37)_ 1.64112780959704221e+05 -Electron-deuteron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile38)_ 1.64012771959797363e+05 -Electron-deuteron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile39)_ 1.63910132038175565e+05 -Electron-deuteron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile40)_ 1.63804864035971928e+05 -Electron-deuteron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile41)_ 1.63696970868141245e+05 -Electron-deuteron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile42)_ 1.63586455523462093e+05 -Electron-deuteron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile43)_ 1.63473321064536402e+05 -Electron-deuteron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile44)_ 1.63357570627794252e+05 -Electron-deuteron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile45)_ 1.63239207423492888e+05 -Electron-deuteron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile46)_ 1.63118234735719336e+05 -Electron-deuteron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile47)_ 1.62994655922391801e+05 -Electron-deuteron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile48)_ 1.62868474415261531e+05 -Electron-deuteron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile49)_ 1.62739693719913426e+05 -Electron-deuteron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile50)_ 1.62608317415768484e+05 -Electron-deuteron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile51)_ 1.62474349156084558e+05 -Electron-deuteron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile52)_ 1.62337792667957663e+05 -Electron-deuteron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile53)_ 1.62198651752324833e+05 -Electron-deuteron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile54)_ 1.62056930283962720e+05 -Electron-deuteron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile55)_ 1.61912632211490680e+05 -Electron-deuteron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile56)_ 1.61765761557372083e+05 -Electron-deuteron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile57)_ 1.61616322417913791e+05 -Electron-deuteron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile58)_ 1.61464318963269703e+05 -Electron-deuteron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile59)_ 1.61309755437438405e+05 -Electron-deuteron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile60)_ 1.61152636158266920e+05 -Electron-deuteron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile61)_ 1.60992965517450270e+05 -Electron-deuteron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile62)_ 1.60830747980531451e+05 -Electron-deuteron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile63)_ 1.60665988086904195e+05 -Electron-deuteron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile64)_ 1.60498690449810761e+05 -Electron-deuteron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile65)_ 1.60328859756343678e+05 -Electron-deuteron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile66)_ 1.60156500767446501e+05 -Electron-deuteron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile67)_ 1.59981618317912711e+05 -Electron-deuteron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile68)_ 1.59804217316386872e+05 -Electron-deuteron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile69)_ 1.59624302745363209e+05 -Electron-deuteron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile70)_ 1.59441879661185929e+05 -Electron-deuteron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile71)_ 1.59256953194049449e+05 -Electron-deuteron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile72)_ 1.59069528547996102e+05 -Electron-deuteron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile73)_ 1.58879611000917823e+05 -Electron-deuteron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile74)_ 1.58687205904553033e+05 -Electron-deuteron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile75)_ 1.58492318684485217e+05 -Electron-deuteron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile76)_ 1.58294954840145074e+05 -Electron-deuteron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile77)_ 1.58095119944805017e+05 -Electron-deuteron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile78)_ 1.57892819645579235e+05 -Electron-deuteron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile79)_ 1.57688059663421736e+05 -Electron-deuteron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile80)_ 1.57480845793125016e+05 -Electron-deuteron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile81)_ 1.57271183903316123e+05 -Electron-deuteron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile82)_ 1.57059079936454247e+05 -Electron-deuteron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile83)_ 1.56844539908830047e+05 -Electron-deuteron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile84)_ 1.56627569910560502e+05 -Electron-deuteron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile85)_ 1.56408176105585444e+05 -Electron-deuteron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile86)_ 1.56186364731665322e+05 -Electron-deuteron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile87)_ 1.55962142100377154e+05 -Electron-deuteron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile88)_ 1.55735514597109373e+05 -Electron-deuteron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile89)_ 1.55506488681058952e+05 -Electron-deuteron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile90)_ 1.55275070885224384e+05 -Electron-deuteron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile91)_ 1.55041267816403153e+05 -Electron-deuteron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile92)_ 1.54805086155185185e+05 -Electron-deuteron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile93)_ 1.54566532655947580e+05 -Electron-deuteron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile94)_ 1.54325614146847394e+05 -Electron-deuteron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile95)_ 1.54082337529816898e+05 -Electron-deuteron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile96)_ 1.53836709780556615e+05 -Electron-deuteron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile97)_ 1.53588737948526716e+05 -Electron-deuteron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile98)_ 1.53338429156941536e+05 -Electron-deuteron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile99)_ 1.53085790602761088e+05 -Electron-deuteron_mean_free_path_at_point_100____________________________ (len_plasma_electron_deuteron_mean_free_path_profile100)_ 1.52830829556681449e+05 -Electron-deuteron_mean_free_path_at_point_101____________________________ (len_plasma_electron_deuteron_mean_free_path_profile101)_ 1.52573553363128391e+05 -Electron-deuteron_mean_free_path_at_point_102____________________________ (len_plasma_electron_deuteron_mean_free_path_profile102)_ 1.52313969440246496e+05 -Electron-deuteron_mean_free_path_at_point_103____________________________ (len_plasma_electron_deuteron_mean_free_path_profile103)_ 1.52052085279890918e+05 -Electron-deuteron_mean_free_path_at_point_104____________________________ (len_plasma_electron_deuteron_mean_free_path_profile104)_ 1.51787908447616152e+05 -Electron-deuteron_mean_free_path_at_point_105____________________________ (len_plasma_electron_deuteron_mean_free_path_profile105)_ 1.51521446582666482e+05 -Electron-deuteron_mean_free_path_at_point_106____________________________ (len_plasma_electron_deuteron_mean_free_path_profile106)_ 1.51252707397965685e+05 -Electron-deuteron_mean_free_path_at_point_107____________________________ (len_plasma_electron_deuteron_mean_free_path_profile107)_ 1.50981698680103407e+05 -Electron-deuteron_mean_free_path_at_point_108____________________________ (len_plasma_electron_deuteron_mean_free_path_profile108)_ 1.50708428289326490e+05 -Electron-deuteron_mean_free_path_at_point_109____________________________ (len_plasma_electron_deuteron_mean_free_path_profile109)_ 1.50432904159523780e+05 -Electron-deuteron_mean_free_path_at_point_110____________________________ (len_plasma_electron_deuteron_mean_free_path_profile110)_ 1.50155134298214660e+05 -Electron-deuteron_mean_free_path_at_point_111____________________________ (len_plasma_electron_deuteron_mean_free_path_profile111)_ 1.49875126786535693e+05 -Electron-deuteron_mean_free_path_at_point_112____________________________ (len_plasma_electron_deuteron_mean_free_path_profile112)_ 1.49592889779226593e+05 -Electron-deuteron_mean_free_path_at_point_113____________________________ (len_plasma_electron_deuteron_mean_free_path_profile113)_ 1.49308431504615321e+05 -Electron-deuteron_mean_free_path_at_point_114____________________________ (len_plasma_electron_deuteron_mean_free_path_profile114)_ 1.49021760264603043e+05 -Electron-deuteron_mean_free_path_at_point_115____________________________ (len_plasma_electron_deuteron_mean_free_path_profile115)_ 1.48732884434649110e+05 -Electron-deuteron_mean_free_path_at_point_116____________________________ (len_plasma_electron_deuteron_mean_free_path_profile116)_ 1.48441812463753828e+05 -Electron-deuteron_mean_free_path_at_point_117____________________________ (len_plasma_electron_deuteron_mean_free_path_profile117)_ 1.48148552874443616e+05 -Electron-deuteron_mean_free_path_at_point_118____________________________ (len_plasma_electron_deuteron_mean_free_path_profile118)_ 1.47853114262750809e+05 -Electron-deuteron_mean_free_path_at_point_119____________________________ (len_plasma_electron_deuteron_mean_free_path_profile119)_ 1.47555505298197240e+05 -Electron-deuteron_mean_free_path_at_point_120____________________________ (len_plasma_electron_deuteron_mean_free_path_profile120)_ 1.47255734723775298e+05 -Electron-deuteron_mean_free_path_at_point_121____________________________ (len_plasma_electron_deuteron_mean_free_path_profile121)_ 1.46953811355929036e+05 -Electron-deuteron_mean_free_path_at_point_122____________________________ (len_plasma_electron_deuteron_mean_free_path_profile122)_ 1.46649744084532344e+05 -Electron-deuteron_mean_free_path_at_point_123____________________________ (len_plasma_electron_deuteron_mean_free_path_profile123)_ 1.46343541872869944e+05 -Electron-deuteron_mean_free_path_at_point_124____________________________ (len_plasma_electron_deuteron_mean_free_path_profile124)_ 1.46035213757615129e+05 -Electron-deuteron_mean_free_path_at_point_125____________________________ (len_plasma_electron_deuteron_mean_free_path_profile125)_ 1.45724768848807231e+05 -Electron-deuteron_mean_free_path_at_point_126____________________________ (len_plasma_electron_deuteron_mean_free_path_profile126)_ 1.45412216329829913e+05 -Electron-deuteron_mean_free_path_at_point_127____________________________ (len_plasma_electron_deuteron_mean_free_path_profile127)_ 1.45097565457385441e+05 -Electron-deuteron_mean_free_path_at_point_128____________________________ (len_plasma_electron_deuteron_mean_free_path_profile128)_ 1.44780825561472710e+05 -Electron-deuteron_mean_free_path_at_point_129____________________________ (len_plasma_electron_deuteron_mean_free_path_profile129)_ 1.44462006045359682e+05 -Electron-deuteron_mean_free_path_at_point_130____________________________ (len_plasma_electron_deuteron_mean_free_path_profile130)_ 1.44141116385558445e+05 -Electron-deuteron_mean_free_path_at_point_131____________________________ (len_plasma_electron_deuteron_mean_free_path_profile131)_ 1.43818166131798207e+05 -Electron-deuteron_mean_free_path_at_point_132____________________________ (len_plasma_electron_deuteron_mean_free_path_profile132)_ 1.43493164906997437e+05 -Electron-deuteron_mean_free_path_at_point_133____________________________ (len_plasma_electron_deuteron_mean_free_path_profile133)_ 1.43166122407235031e+05 -Electron-deuteron_mean_free_path_at_point_134____________________________ (len_plasma_electron_deuteron_mean_free_path_profile134)_ 1.42837048401721520e+05 -Electron-deuteron_mean_free_path_at_point_135____________________________ (len_plasma_electron_deuteron_mean_free_path_profile135)_ 1.42505952732767793e+05 -Electron-deuteron_mean_free_path_at_point_136____________________________ (len_plasma_electron_deuteron_mean_free_path_profile136)_ 1.42172845315755025e+05 -Electron-deuteron_mean_free_path_at_point_137____________________________ (len_plasma_electron_deuteron_mean_free_path_profile137)_ 1.41837736139100918e+05 -Electron-deuteron_mean_free_path_at_point_138____________________________ (len_plasma_electron_deuteron_mean_free_path_profile138)_ 1.41500635264228011e+05 -Electron-deuteron_mean_free_path_at_point_139____________________________ (len_plasma_electron_deuteron_mean_free_path_profile139)_ 1.41161552825528837e+05 -Electron-deuteron_mean_free_path_at_point_140____________________________ (len_plasma_electron_deuteron_mean_free_path_profile140)_ 1.40820499030330480e+05 -Electron-deuteron_mean_free_path_at_point_141____________________________ (len_plasma_electron_deuteron_mean_free_path_profile141)_ 1.40477484158859646e+05 -Electron-deuteron_mean_free_path_at_point_142____________________________ (len_plasma_electron_deuteron_mean_free_path_profile142)_ 1.40132518564204191e+05 -Electron-deuteron_mean_free_path_at_point_143____________________________ (len_plasma_electron_deuteron_mean_free_path_profile143)_ 1.39785612672276242e+05 -Electron-deuteron_mean_free_path_at_point_144____________________________ (len_plasma_electron_deuteron_mean_free_path_profile144)_ 1.39436776981772040e+05 -Electron-deuteron_mean_free_path_at_point_145____________________________ (len_plasma_electron_deuteron_mean_free_path_profile145)_ 1.39086022064131801e+05 -Electron-deuteron_mean_free_path_at_point_146____________________________ (len_plasma_electron_deuteron_mean_free_path_profile146)_ 1.38733358563498798e+05 -Electron-deuteron_mean_free_path_at_point_147____________________________ (len_plasma_electron_deuteron_mean_free_path_profile147)_ 1.38378797196676489e+05 -Electron-deuteron_mean_free_path_at_point_148____________________________ (len_plasma_electron_deuteron_mean_free_path_profile148)_ 1.38022348753083963e+05 -Electron-deuteron_mean_free_path_at_point_149____________________________ (len_plasma_electron_deuteron_mean_free_path_profile149)_ 1.37664024094713124e+05 -Electron-deuteron_mean_free_path_at_point_150____________________________ (len_plasma_electron_deuteron_mean_free_path_profile150)_ 1.37303834156081168e+05 -Electron-deuteron_mean_free_path_at_point_151____________________________ (len_plasma_electron_deuteron_mean_free_path_profile151)_ 1.36941789944183343e+05 -Electron-deuteron_mean_free_path_at_point_152____________________________ (len_plasma_electron_deuteron_mean_free_path_profile152)_ 1.36577902538445487e+05 -Electron-deuteron_mean_free_path_at_point_153____________________________ (len_plasma_electron_deuteron_mean_free_path_profile153)_ 1.36212183090673148e+05 -Electron-deuteron_mean_free_path_at_point_154____________________________ (len_plasma_electron_deuteron_mean_free_path_profile154)_ 1.35844642825001094e+05 -Electron-deuteron_mean_free_path_at_point_155____________________________ (len_plasma_electron_deuteron_mean_free_path_profile155)_ 1.35475293037841475e+05 -Electron-deuteron_mean_free_path_at_point_156____________________________ (len_plasma_electron_deuteron_mean_free_path_profile156)_ 1.35104145097828907e+05 -Electron-deuteron_mean_free_path_at_point_157____________________________ (len_plasma_electron_deuteron_mean_free_path_profile157)_ 1.34731210445767385e+05 -Electron-deuteron_mean_free_path_at_point_158____________________________ (len_plasma_electron_deuteron_mean_free_path_profile158)_ 1.34356500594572426e+05 -Electron-deuteron_mean_free_path_at_point_159____________________________ (len_plasma_electron_deuteron_mean_free_path_profile159)_ 1.33980027129213267e+05 -Electron-deuteron_mean_free_path_at_point_160____________________________ (len_plasma_electron_deuteron_mean_free_path_profile160)_ 1.33601801706655213e+05 -Electron-deuteron_mean_free_path_at_point_161____________________________ (len_plasma_electron_deuteron_mean_free_path_profile161)_ 1.33221836055797525e+05 -Electron-deuteron_mean_free_path_at_point_162____________________________ (len_plasma_electron_deuteron_mean_free_path_profile162)_ 1.32840141977411724e+05 -Electron-deuteron_mean_free_path_at_point_163____________________________ (len_plasma_electron_deuteron_mean_free_path_profile163)_ 1.32456731344079017e+05 -Electron-deuteron_mean_free_path_at_point_164____________________________ (len_plasma_electron_deuteron_mean_free_path_profile164)_ 1.32071616100123269e+05 -Electron-deuteron_mean_free_path_at_point_165____________________________ (len_plasma_electron_deuteron_mean_free_path_profile165)_ 1.31684808261546073e+05 -Electron-deuteron_mean_free_path_at_point_166____________________________ (len_plasma_electron_deuteron_mean_free_path_profile166)_ 1.31296319915958098e+05 -Electron-deuteron_mean_free_path_at_point_167____________________________ (len_plasma_electron_deuteron_mean_free_path_profile167)_ 1.30906163222508811e+05 -Electron-deuteron_mean_free_path_at_point_168____________________________ (len_plasma_electron_deuteron_mean_free_path_profile168)_ 1.30514350411815307e+05 -Electron-deuteron_mean_free_path_at_point_169____________________________ (len_plasma_electron_deuteron_mean_free_path_profile169)_ 1.30120893785888984e+05 -Electron-deuteron_mean_free_path_at_point_170____________________________ (len_plasma_electron_deuteron_mean_free_path_profile170)_ 1.29725805718061805e+05 -Electron-deuteron_mean_free_path_at_point_171____________________________ (len_plasma_electron_deuteron_mean_free_path_profile171)_ 1.29329098652907924e+05 -Electron-deuteron_mean_free_path_at_point_172____________________________ (len_plasma_electron_deuteron_mean_free_path_profile172)_ 1.28930785106167386e+05 -Electron-deuteron_mean_free_path_at_point_173____________________________ (len_plasma_electron_deuteron_mean_free_path_profile173)_ 1.28530877664664367e+05 -Electron-deuteron_mean_free_path_at_point_174____________________________ (len_plasma_electron_deuteron_mean_free_path_profile174)_ 1.28129388986226564e+05 -Electron-deuteron_mean_free_path_at_point_175____________________________ (len_plasma_electron_deuteron_mean_free_path_profile175)_ 1.27726331799601438e+05 -Electron-deuteron_mean_free_path_at_point_176____________________________ (len_plasma_electron_deuteron_mean_free_path_profile176)_ 1.27321718904369831e+05 -Electron-deuteron_mean_free_path_at_point_177____________________________ (len_plasma_electron_deuteron_mean_free_path_profile177)_ 1.26915563170859416e+05 -Electron-deuteron_mean_free_path_at_point_178____________________________ (len_plasma_electron_deuteron_mean_free_path_profile178)_ 1.26507877540054527e+05 -Electron-deuteron_mean_free_path_at_point_179____________________________ (len_plasma_electron_deuteron_mean_free_path_profile179)_ 1.26098675023506206e+05 -Electron-deuteron_mean_free_path_at_point_180____________________________ (len_plasma_electron_deuteron_mean_free_path_profile180)_ 1.25687968703237537e+05 -Electron-deuteron_mean_free_path_at_point_181____________________________ (len_plasma_electron_deuteron_mean_free_path_profile181)_ 1.25275771731648754e+05 -Electron-deuteron_mean_free_path_at_point_182____________________________ (len_plasma_electron_deuteron_mean_free_path_profile182)_ 1.24862097331420446e+05 -Electron-deuteron_mean_free_path_at_point_183____________________________ (len_plasma_electron_deuteron_mean_free_path_profile183)_ 1.24446958795413564e+05 -Electron-deuteron_mean_free_path_at_point_184____________________________ (len_plasma_electron_deuteron_mean_free_path_profile184)_ 1.24030369486567361e+05 -Electron-deuteron_mean_free_path_at_point_185____________________________ (len_plasma_electron_deuteron_mean_free_path_profile185)_ 1.23612342837797230e+05 -Electron-deuteron_mean_free_path_at_point_186____________________________ (len_plasma_electron_deuteron_mean_free_path_profile186)_ 1.23192892351887058e+05 -Electron-deuteron_mean_free_path_at_point_187____________________________ (len_plasma_electron_deuteron_mean_free_path_profile187)_ 1.22772031601382303e+05 -Electron-deuteron_mean_free_path_at_point_188____________________________ (len_plasma_electron_deuteron_mean_free_path_profile188)_ 1.22349774228478709e+05 -Electron-deuteron_mean_free_path_at_point_189____________________________ (len_plasma_electron_deuteron_mean_free_path_profile189)_ 1.21926133944910121e+05 -Electron-deuteron_mean_free_path_at_point_190____________________________ (len_plasma_electron_deuteron_mean_free_path_profile190)_ 1.21501124531834066e+05 -Electron-deuteron_mean_free_path_at_point_191____________________________ (len_plasma_electron_deuteron_mean_free_path_profile191)_ 1.21074759839713326e+05 -Electron-deuteron_mean_free_path_at_point_192____________________________ (len_plasma_electron_deuteron_mean_free_path_profile192)_ 1.20647053788195641e+05 -Electron-deuteron_mean_free_path_at_point_193____________________________ (len_plasma_electron_deuteron_mean_free_path_profile193)_ 1.20218020365993580e+05 -Electron-deuteron_mean_free_path_at_point_194____________________________ (len_plasma_electron_deuteron_mean_free_path_profile194)_ 1.19787673630757650e+05 -Electron-deuteron_mean_free_path_at_point_195____________________________ (len_plasma_electron_deuteron_mean_free_path_profile195)_ 1.19356027708951093e+05 -Electron-deuteron_mean_free_path_at_point_196____________________________ (len_plasma_electron_deuteron_mean_free_path_profile196)_ 1.18923096795717822e+05 -Electron-deuteron_mean_free_path_at_point_197____________________________ (len_plasma_electron_deuteron_mean_free_path_profile197)_ 1.18488895154751837e+05 -Electron-deuteron_mean_free_path_at_point_198____________________________ (len_plasma_electron_deuteron_mean_free_path_profile198)_ 1.18053437118161193e+05 -Electron-deuteron_mean_free_path_at_point_199____________________________ (len_plasma_electron_deuteron_mean_free_path_profile199)_ 1.17616737086331326e+05 -Electron-deuteron_mean_free_path_at_point_200____________________________ (len_plasma_electron_deuteron_mean_free_path_profile200)_ 1.17178809527783349e+05 -Electron-deuteron_mean_free_path_at_point_201____________________________ (len_plasma_electron_deuteron_mean_free_path_profile201)_ 1.16739668979031369e+05 -Electron-deuteron_mean_free_path_at_point_202____________________________ (len_plasma_electron_deuteron_mean_free_path_profile202)_ 1.16299330044436705e+05 -Electron-deuteron_mean_free_path_at_point_203____________________________ (len_plasma_electron_deuteron_mean_free_path_profile203)_ 1.15857807396059739e+05 -Electron-deuteron_mean_free_path_at_point_204____________________________ (len_plasma_electron_deuteron_mean_free_path_profile204)_ 1.15415115773506594e+05 -Electron-deuteron_mean_free_path_at_point_205____________________________ (len_plasma_electron_deuteron_mean_free_path_profile205)_ 1.14971269983775434e+05 -Electron-deuteron_mean_free_path_at_point_206____________________________ (len_plasma_electron_deuteron_mean_free_path_profile206)_ 1.14526284901098858e+05 -Electron-deuteron_mean_free_path_at_point_207____________________________ (len_plasma_electron_deuteron_mean_free_path_profile207)_ 1.14080175466782763e+05 -Electron-deuteron_mean_free_path_at_point_208____________________________ (len_plasma_electron_deuteron_mean_free_path_profile208)_ 1.13632956689043742e+05 -Electron-deuteron_mean_free_path_at_point_209____________________________ (len_plasma_electron_deuteron_mean_free_path_profile209)_ 1.13184643642841169e+05 -Electron-deuteron_mean_free_path_at_point_210____________________________ (len_plasma_electron_deuteron_mean_free_path_profile210)_ 1.12735251469707189e+05 -Electron-deuteron_mean_free_path_at_point_211____________________________ (len_plasma_electron_deuteron_mean_free_path_profile211)_ 1.12284795377574628e+05 -Electron-deuteron_mean_free_path_at_point_212____________________________ (len_plasma_electron_deuteron_mean_free_path_profile212)_ 1.11833290640599211e+05 -Electron-deuteron_mean_free_path_at_point_213____________________________ (len_plasma_electron_deuteron_mean_free_path_profile213)_ 1.11380752598981708e+05 -Electron-deuteron_mean_free_path_at_point_214____________________________ (len_plasma_electron_deuteron_mean_free_path_profile214)_ 1.10927196658782093e+05 -Electron-deuteron_mean_free_path_at_point_215____________________________ (len_plasma_electron_deuteron_mean_free_path_profile215)_ 1.10472638291736337e+05 -Electron-deuteron_mean_free_path_at_point_216____________________________ (len_plasma_electron_deuteron_mean_free_path_profile216)_ 1.10017093035063837e+05 -Electron-deuteron_mean_free_path_at_point_217____________________________ (len_plasma_electron_deuteron_mean_free_path_profile217)_ 1.09560576491275846e+05 -Electron-deuteron_mean_free_path_at_point_218____________________________ (len_plasma_electron_deuteron_mean_free_path_profile218)_ 1.09103104327977504e+05 -Electron-deuteron_mean_free_path_at_point_219____________________________ (len_plasma_electron_deuteron_mean_free_path_profile219)_ 1.08644692277667215e+05 -Electron-deuteron_mean_free_path_at_point_220____________________________ (len_plasma_electron_deuteron_mean_free_path_profile220)_ 1.08185356137534589e+05 -Electron-deuteron_mean_free_path_at_point_221____________________________ (len_plasma_electron_deuteron_mean_free_path_profile221)_ 1.07725111769249066e+05 -Electron-deuteron_mean_free_path_at_point_222____________________________ (len_plasma_electron_deuteron_mean_free_path_profile222)_ 1.07263975098751500e+05 -Electron-deuteron_mean_free_path_at_point_223____________________________ (len_plasma_electron_deuteron_mean_free_path_profile223)_ 1.06801962116037117e+05 -Electron-deuteron_mean_free_path_at_point_224____________________________ (len_plasma_electron_deuteron_mean_free_path_profile224)_ 1.06339088874936890e+05 -Electron-deuteron_mean_free_path_at_point_225____________________________ (len_plasma_electron_deuteron_mean_free_path_profile225)_ 1.05875371492893595e+05 -Electron-deuteron_mean_free_path_at_point_226____________________________ (len_plasma_electron_deuteron_mean_free_path_profile226)_ 1.05410826150736626e+05 -Electron-deuteron_mean_free_path_at_point_227____________________________ (len_plasma_electron_deuteron_mean_free_path_profile227)_ 1.04945469092448431e+05 -Electron-deuteron_mean_free_path_at_point_228____________________________ (len_plasma_electron_deuteron_mean_free_path_profile228)_ 1.04479316624930754e+05 -Electron-deuteron_mean_free_path_at_point_229____________________________ (len_plasma_electron_deuteron_mean_free_path_profile229)_ 1.04012385117765298e+05 -Electron-deuteron_mean_free_path_at_point_230____________________________ (len_plasma_electron_deuteron_mean_free_path_profile230)_ 1.03544691002970270e+05 -Electron-deuteron_mean_free_path_at_point_231____________________________ (len_plasma_electron_deuteron_mean_free_path_profile231)_ 1.03076250774751694e+05 -Electron-deuteron_mean_free_path_at_point_232____________________________ (len_plasma_electron_deuteron_mean_free_path_profile232)_ 1.02607080989252878e+05 -Electron-deuteron_mean_free_path_at_point_233____________________________ (len_plasma_electron_deuteron_mean_free_path_profile233)_ 1.02137198264296196e+05 -Electron-deuteron_mean_free_path_at_point_234____________________________ (len_plasma_electron_deuteron_mean_free_path_profile234)_ 1.01666619279124352e+05 -Electron-deuteron_mean_free_path_at_point_235____________________________ (len_plasma_electron_deuteron_mean_free_path_profile235)_ 1.01195360774133966e+05 -Electron-deuteron_mean_free_path_at_point_236____________________________ (len_plasma_electron_deuteron_mean_free_path_profile236)_ 1.00723439550605224e+05 -Electron-deuteron_mean_free_path_at_point_237____________________________ (len_plasma_electron_deuteron_mean_free_path_profile237)_ 1.00250872470428949e+05 -Electron-deuteron_mean_free_path_at_point_238____________________________ (len_plasma_electron_deuteron_mean_free_path_profile238)_ 9.97776764558263385e+04 -Electron-deuteron_mean_free_path_at_point_239____________________________ (len_plasma_electron_deuteron_mean_free_path_profile239)_ 9.93038684890657169e+04 -Electron-deuteron_mean_free_path_at_point_240____________________________ (len_plasma_electron_deuteron_mean_free_path_profile240)_ 9.88294656121741573e+04 -Electron-deuteron_mean_free_path_at_point_241____________________________ (len_plasma_electron_deuteron_mean_free_path_profile241)_ 9.83544849266437814e+04 -Electron-deuteron_mean_free_path_at_point_242____________________________ (len_plasma_electron_deuteron_mean_free_path_profile242)_ 9.78789435931331827e+04 -Electron-deuteron_mean_free_path_at_point_243____________________________ (len_plasma_electron_deuteron_mean_free_path_profile243)_ 9.74028588311656495e+04 -Electron-deuteron_mean_free_path_at_point_244____________________________ (len_plasma_electron_deuteron_mean_free_path_profile244)_ 9.69262479188183061e+04 -Electron-deuteron_mean_free_path_at_point_245____________________________ (len_plasma_electron_deuteron_mean_free_path_profile245)_ 9.64491281924119394e+04 -Electron-deuteron_mean_free_path_at_point_246____________________________ (len_plasma_electron_deuteron_mean_free_path_profile246)_ 9.59715170461899834e+04 -Electron-deuteron_mean_free_path_at_point_247____________________________ (len_plasma_electron_deuteron_mean_free_path_profile247)_ 9.54934319319954666e+04 -Electron-deuteron_mean_free_path_at_point_248____________________________ (len_plasma_electron_deuteron_mean_free_path_profile248)_ 9.50148903589433612e+04 -Electron-deuteron_mean_free_path_at_point_249____________________________ (len_plasma_electron_deuteron_mean_free_path_profile249)_ 9.45359098930836044e+04 -Electron-deuteron_mean_free_path_at_point_250____________________________ (len_plasma_electron_deuteron_mean_free_path_profile250)_ 9.40565081570636394e+04 -Electron-deuteron_mean_free_path_at_point_251____________________________ (len_plasma_electron_deuteron_mean_free_path_profile251)_ 9.35767028297824727e+04 -Electron-deuteron_mean_free_path_at_point_252____________________________ (len_plasma_electron_deuteron_mean_free_path_profile252)_ 9.30965116460397112e+04 -Electron-deuteron_mean_free_path_at_point_253____________________________ (len_plasma_electron_deuteron_mean_free_path_profile253)_ 9.26159523961782252e+04 -Electron-deuteron_mean_free_path_at_point_254____________________________ (len_plasma_electron_deuteron_mean_free_path_profile254)_ 9.21350429257245269e+04 -Electron-deuteron_mean_free_path_at_point_255____________________________ (len_plasma_electron_deuteron_mean_free_path_profile255)_ 9.16538011350174347e+04 -Electron-deuteron_mean_free_path_at_point_256____________________________ (len_plasma_electron_deuteron_mean_free_path_profile256)_ 9.11722449788384110e+04 -Electron-deuteron_mean_free_path_at_point_257____________________________ (len_plasma_electron_deuteron_mean_free_path_profile257)_ 9.06903924660286866e+04 -Electron-deuteron_mean_free_path_at_point_258____________________________ (len_plasma_electron_deuteron_mean_free_path_profile258)_ 9.02082616591051192e+04 -Electron-deuteron_mean_free_path_at_point_259____________________________ (len_plasma_electron_deuteron_mean_free_path_profile259)_ 8.97258706738691253e+04 -Electron-deuteron_mean_free_path_at_point_260____________________________ (len_plasma_electron_deuteron_mean_free_path_profile260)_ 8.92432376790079288e+04 -Electron-deuteron_mean_free_path_at_point_261____________________________ (len_plasma_electron_deuteron_mean_free_path_profile261)_ 8.87603808956917928e+04 -Electron-deuteron_mean_free_path_at_point_262____________________________ (len_plasma_electron_deuteron_mean_free_path_profile262)_ 8.82773185971635539e+04 -Electron-deuteron_mean_free_path_at_point_263____________________________ (len_plasma_electron_deuteron_mean_free_path_profile263)_ 8.77940691083220736e+04 -Electron-deuteron_mean_free_path_at_point_264____________________________ (len_plasma_electron_deuteron_mean_free_path_profile264)_ 8.73106508053004363e+04 -Electron-deuteron_mean_free_path_at_point_265____________________________ (len_plasma_electron_deuteron_mean_free_path_profile265)_ 8.68270821150365809e+04 -Electron-deuteron_mean_free_path_at_point_266____________________________ (len_plasma_electron_deuteron_mean_free_path_profile266)_ 8.63433815148366411e+04 -Electron-deuteron_mean_free_path_at_point_267____________________________ (len_plasma_electron_deuteron_mean_free_path_profile267)_ 8.58595675319340953e+04 -Electron-deuteron_mean_free_path_at_point_268____________________________ (len_plasma_electron_deuteron_mean_free_path_profile268)_ 8.53756587430409563e+04 -Electron-deuteron_mean_free_path_at_point_269____________________________ (len_plasma_electron_deuteron_mean_free_path_profile269)_ 8.48916737738918600e+04 -Electron-deuteron_mean_free_path_at_point_270____________________________ (len_plasma_electron_deuteron_mean_free_path_profile270)_ 8.44076312987815763e+04 -Electron-deuteron_mean_free_path_at_point_271____________________________ (len_plasma_electron_deuteron_mean_free_path_profile271)_ 8.39235500400968886e+04 -Electron-deuteron_mean_free_path_at_point_272____________________________ (len_plasma_electron_deuteron_mean_free_path_profile272)_ 8.34394487678393634e+04 -Electron-deuteron_mean_free_path_at_point_273____________________________ (len_plasma_electron_deuteron_mean_free_path_profile273)_ 8.29553462991434499e+04 -Electron-deuteron_mean_free_path_at_point_274____________________________ (len_plasma_electron_deuteron_mean_free_path_profile274)_ 8.24712614977866033e+04 -Electron-deuteron_mean_free_path_at_point_275____________________________ (len_plasma_electron_deuteron_mean_free_path_profile275)_ 8.19872132736907224e+04 -Electron-deuteron_mean_free_path_at_point_276____________________________ (len_plasma_electron_deuteron_mean_free_path_profile276)_ 8.15032205824205303e+04 -Electron-deuteron_mean_free_path_at_point_277____________________________ (len_plasma_electron_deuteron_mean_free_path_profile277)_ 8.10193024246698187e+04 -Electron-deuteron_mean_free_path_at_point_278____________________________ (len_plasma_electron_deuteron_mean_free_path_profile278)_ 8.05354778457430511e+04 -Electron-deuteron_mean_free_path_at_point_279____________________________ (len_plasma_electron_deuteron_mean_free_path_profile279)_ 8.00517659350311151e+04 -Electron-deuteron_mean_free_path_at_point_280____________________________ (len_plasma_electron_deuteron_mean_free_path_profile280)_ 7.95681858254760737e+04 -Electron-deuteron_mean_free_path_at_point_281____________________________ (len_plasma_electron_deuteron_mean_free_path_profile281)_ 7.90847566930306348e+04 -Electron-deuteron_mean_free_path_at_point_282____________________________ (len_plasma_electron_deuteron_mean_free_path_profile282)_ 7.86014977561098349e+04 -Electron-deuteron_mean_free_path_at_point_283____________________________ (len_plasma_electron_deuteron_mean_free_path_profile283)_ 7.81184282750358689e+04 -Electron-deuteron_mean_free_path_at_point_284____________________________ (len_plasma_electron_deuteron_mean_free_path_profile284)_ 7.76355675514730683e+04 -Electron-deuteron_mean_free_path_at_point_285____________________________ (len_plasma_electron_deuteron_mean_free_path_profile285)_ 7.71529349278578302e+04 -Electron-deuteron_mean_free_path_at_point_286____________________________ (len_plasma_electron_deuteron_mean_free_path_profile286)_ 7.66705497868185048e+04 -Electron-deuteron_mean_free_path_at_point_287____________________________ (len_plasma_electron_deuteron_mean_free_path_profile287)_ 7.61884315505896520e+04 -Electron-deuteron_mean_free_path_at_point_288____________________________ (len_plasma_electron_deuteron_mean_free_path_profile288)_ 7.57065996804169408e+04 -Electron-deuteron_mean_free_path_at_point_289____________________________ (len_plasma_electron_deuteron_mean_free_path_profile289)_ 7.52250736759546708e+04 -Electron-deuteron_mean_free_path_at_point_290____________________________ (len_plasma_electron_deuteron_mean_free_path_profile290)_ 7.47438730746551591e+04 -Electron-deuteron_mean_free_path_at_point_291____________________________ (len_plasma_electron_deuteron_mean_free_path_profile291)_ 7.42630174511513760e+04 -Electron-deuteron_mean_free_path_at_point_292____________________________ (len_plasma_electron_deuteron_mean_free_path_profile292)_ 7.37825264166296110e+04 -Electron-deuteron_mean_free_path_at_point_293____________________________ (len_plasma_electron_deuteron_mean_free_path_profile293)_ 7.33024196181958978e+04 -Electron-deuteron_mean_free_path_at_point_294____________________________ (len_plasma_electron_deuteron_mean_free_path_profile294)_ 7.28227167382327461e+04 -Electron-deuteron_mean_free_path_at_point_295____________________________ (len_plasma_electron_deuteron_mean_free_path_profile295)_ 7.23434374937499961e+04 -Electron-deuteron_mean_free_path_at_point_296____________________________ (len_plasma_electron_deuteron_mean_free_path_profile296)_ 7.18646016357254557e+04 -Electron-deuteron_mean_free_path_at_point_297____________________________ (len_plasma_electron_deuteron_mean_free_path_profile297)_ 7.13862289484389912e+04 -Electron-deuteron_mean_free_path_at_point_298____________________________ (len_plasma_electron_deuteron_mean_free_path_profile298)_ 7.09083392487970123e+04 -Electron-deuteron_mean_free_path_at_point_299____________________________ (len_plasma_electron_deuteron_mean_free_path_profile299)_ 7.04309523856499582e+04 -Electron-deuteron_mean_free_path_at_point_300____________________________ (len_plasma_electron_deuteron_mean_free_path_profile300)_ 6.99540882391019841e+04 -Electron-deuteron_mean_free_path_at_point_301____________________________ (len_plasma_electron_deuteron_mean_free_path_profile301)_ 6.94777667198110430e+04 -Electron-deuteron_mean_free_path_at_point_302____________________________ (len_plasma_electron_deuteron_mean_free_path_profile302)_ 6.90020077682822448e+04 -Electron-deuteron_mean_free_path_at_point_303____________________________ (len_plasma_electron_deuteron_mean_free_path_profile303)_ 6.85268313541516400e+04 -Electron-deuteron_mean_free_path_at_point_304____________________________ (len_plasma_electron_deuteron_mean_free_path_profile304)_ 6.80522574754648813e+04 -Electron-deuteron_mean_free_path_at_point_305____________________________ (len_plasma_electron_deuteron_mean_free_path_profile305)_ 6.75783061579428759e+04 -Electron-deuteron_mean_free_path_at_point_306____________________________ (len_plasma_electron_deuteron_mean_free_path_profile306)_ 6.71049974542448326e+04 -Electron-deuteron_mean_free_path_at_point_307____________________________ (len_plasma_electron_deuteron_mean_free_path_profile307)_ 6.66323514432195516e+04 -Electron-deuteron_mean_free_path_at_point_308____________________________ (len_plasma_electron_deuteron_mean_free_path_profile308)_ 6.61603882291502232e+04 -Electron-deuteron_mean_free_path_at_point_309____________________________ (len_plasma_electron_deuteron_mean_free_path_profile309)_ 6.56891279409913404e+04 -Electron-deuteron_mean_free_path_at_point_310____________________________ (len_plasma_electron_deuteron_mean_free_path_profile310)_ 6.52185907315967779e+04 -Electron-deuteron_mean_free_path_at_point_311____________________________ (len_plasma_electron_deuteron_mean_free_path_profile311)_ 6.47487967769423922e+04 -Electron-deuteron_mean_free_path_at_point_312____________________________ (len_plasma_electron_deuteron_mean_free_path_profile312)_ 6.42797662753377954e+04 -Electron-deuteron_mean_free_path_at_point_313____________________________ (len_plasma_electron_deuteron_mean_free_path_profile313)_ 6.38115194466336907e+04 -Electron-deuteron_mean_free_path_at_point_314____________________________ (len_plasma_electron_deuteron_mean_free_path_profile314)_ 6.33440765314192395e+04 -Electron-deuteron_mean_free_path_at_point_315____________________________ (len_plasma_electron_deuteron_mean_free_path_profile315)_ 6.28774577902139717e+04 -Electron-deuteron_mean_free_path_at_point_316____________________________ (len_plasma_electron_deuteron_mean_free_path_profile316)_ 6.24116835026505942e+04 -Electron-deuteron_mean_free_path_at_point_317____________________________ (len_plasma_electron_deuteron_mean_free_path_profile317)_ 6.19467739666526977e+04 -Electron-deuteron_mean_free_path_at_point_318____________________________ (len_plasma_electron_deuteron_mean_free_path_profile318)_ 6.14827494976046437e+04 -Electron-deuteron_mean_free_path_at_point_319____________________________ (len_plasma_electron_deuteron_mean_free_path_profile319)_ 6.10196304275134753e+04 -Electron-deuteron_mean_free_path_at_point_320____________________________ (len_plasma_electron_deuteron_mean_free_path_profile320)_ 6.05574371041675331e+04 -Electron-deuteron_mean_free_path_at_point_321____________________________ (len_plasma_electron_deuteron_mean_free_path_profile321)_ 6.00961898902837784e+04 -Electron-deuteron_mean_free_path_at_point_322____________________________ (len_plasma_electron_deuteron_mean_free_path_profile322)_ 5.96359091626549998e+04 -Electron-deuteron_mean_free_path_at_point_323____________________________ (len_plasma_electron_deuteron_mean_free_path_profile323)_ 5.91766153112854445e+04 -Electron-deuteron_mean_free_path_at_point_324____________________________ (len_plasma_electron_deuteron_mean_free_path_profile324)_ 5.87183287385247386e+04 -Electron-deuteron_mean_free_path_at_point_325____________________________ (len_plasma_electron_deuteron_mean_free_path_profile325)_ 5.82610698581943579e+04 -Electron-deuteron_mean_free_path_at_point_326____________________________ (len_plasma_electron_deuteron_mean_free_path_profile326)_ 5.78048590947100238e+04 -Electron-deuteron_mean_free_path_at_point_327____________________________ (len_plasma_electron_deuteron_mean_free_path_profile327)_ 5.73497168821988671e+04 -Electron-deuteron_mean_free_path_at_point_328____________________________ (len_plasma_electron_deuteron_mean_free_path_profile328)_ 5.68956636636120893e+04 -Electron-deuteron_mean_free_path_at_point_329____________________________ (len_plasma_electron_deuteron_mean_free_path_profile329)_ 5.64427198898351417e+04 -Electron-deuteron_mean_free_path_at_point_330____________________________ (len_plasma_electron_deuteron_mean_free_path_profile330)_ 5.59909060187911382e+04 -Electron-deuteron_mean_free_path_at_point_331____________________________ (len_plasma_electron_deuteron_mean_free_path_profile331)_ 5.55402425145444504e+04 -Electron-deuteron_mean_free_path_at_point_332____________________________ (len_plasma_electron_deuteron_mean_free_path_profile332)_ 5.50907498463997108e+04 -Electron-deuteron_mean_free_path_at_point_333____________________________ (len_plasma_electron_deuteron_mean_free_path_profile333)_ 5.46424484879982047e+04 -Electron-deuteron_mean_free_path_at_point_334____________________________ (len_plasma_electron_deuteron_mean_free_path_profile334)_ 5.41953589164152509e+04 -Electron-deuteron_mean_free_path_at_point_335____________________________ (len_plasma_electron_deuteron_mean_free_path_profile335)_ 5.37495016112520025e+04 -Electron-deuteron_mean_free_path_at_point_336____________________________ (len_plasma_electron_deuteron_mean_free_path_profile336)_ 5.33048970537313944e+04 -Electron-deuteron_mean_free_path_at_point_337____________________________ (len_plasma_electron_deuteron_mean_free_path_profile337)_ 5.28615657257906714e+04 -Electron-deuteron_mean_free_path_at_point_338____________________________ (len_plasma_electron_deuteron_mean_free_path_profile338)_ 5.24195281091768338e+04 -Electron-deuteron_mean_free_path_at_point_339____________________________ (len_plasma_electron_deuteron_mean_free_path_profile339)_ 5.19788046845424324e+04 -Electron-deuteron_mean_free_path_at_point_340____________________________ (len_plasma_electron_deuteron_mean_free_path_profile340)_ 5.15394159305439534e+04 -Electron-deuteron_mean_free_path_at_point_341____________________________ (len_plasma_electron_deuteron_mean_free_path_profile341)_ 5.11013823229438640e+04 -Electron-deuteron_mean_free_path_at_point_342____________________________ (len_plasma_electron_deuteron_mean_free_path_profile342)_ 5.06647243337160398e+04 -Electron-deuteron_mean_free_path_at_point_343____________________________ (len_plasma_electron_deuteron_mean_free_path_profile343)_ 5.02294624301555159e+04 -Electron-deuteron_mean_free_path_at_point_344____________________________ (len_plasma_electron_deuteron_mean_free_path_profile344)_ 4.97956170739968875e+04 -Electron-deuteron_mean_free_path_at_point_345____________________________ (len_plasma_electron_deuteron_mean_free_path_profile345)_ 4.93632087205360513e+04 -Electron-deuteron_mean_free_path_at_point_346____________________________ (len_plasma_electron_deuteron_mean_free_path_profile346)_ 4.89322578177619725e+04 -Electron-deuteron_mean_free_path_at_point_347____________________________ (len_plasma_electron_deuteron_mean_free_path_profile347)_ 4.85027848054990754e+04 -Electron-deuteron_mean_free_path_at_point_348____________________________ (len_plasma_electron_deuteron_mean_free_path_profile348)_ 4.80748101145574328e+04 -Electron-deuteron_mean_free_path_at_point_349____________________________ (len_plasma_electron_deuteron_mean_free_path_profile349)_ 4.76483541658974063e+04 -Electron-deuteron_mean_free_path_at_point_350____________________________ (len_plasma_electron_deuteron_mean_free_path_profile350)_ 4.72234373698057461e+04 -Electron-deuteron_mean_free_path_at_point_351____________________________ (len_plasma_electron_deuteron_mean_free_path_profile351)_ 4.68000801250887671e+04 -Electron-deuteron_mean_free_path_at_point_352____________________________ (len_plasma_electron_deuteron_mean_free_path_profile352)_ 4.63783028182798516e+04 -Electron-deuteron_mean_free_path_at_point_353____________________________ (len_plasma_electron_deuteron_mean_free_path_profile353)_ 4.59581258228676670e+04 -Electron-deuteron_mean_free_path_at_point_354____________________________ (len_plasma_electron_deuteron_mean_free_path_profile354)_ 4.55395694985421724e+04 -Electron-deuteron_mean_free_path_at_point_355____________________________ (len_plasma_electron_deuteron_mean_free_path_profile355)_ 4.51226541904650294e+04 -Electron-deuteron_mean_free_path_at_point_356____________________________ (len_plasma_electron_deuteron_mean_free_path_profile356)_ 4.47074002285626557e+04 -Electron-deuteron_mean_free_path_at_point_357____________________________ (len_plasma_electron_deuteron_mean_free_path_profile357)_ 4.42938279268465922e+04 -Electron-deuteron_mean_free_path_at_point_358____________________________ (len_plasma_electron_deuteron_mean_free_path_profile358)_ 4.38819575827624285e+04 -Electron-deuteron_mean_free_path_at_point_359____________________________ (len_plasma_electron_deuteron_mean_free_path_profile359)_ 4.34718094765700225e+04 -Electron-deuteron_mean_free_path_at_point_360____________________________ (len_plasma_electron_deuteron_mean_free_path_profile360)_ 4.30634038707574218e+04 -Electron-deuteron_mean_free_path_at_point_361____________________________ (len_plasma_electron_deuteron_mean_free_path_profile361)_ 4.26567610094933843e+04 -Electron-deuteron_mean_free_path_at_point_362____________________________ (len_plasma_electron_deuteron_mean_free_path_profile362)_ 4.22519011181161040e+04 -Electron-deuteron_mean_free_path_at_point_363____________________________ (len_plasma_electron_deuteron_mean_free_path_profile363)_ 4.18488444026691213e+04 -Electron-deuteron_mean_free_path_at_point_364____________________________ (len_plasma_electron_deuteron_mean_free_path_profile364)_ 4.14476110494806708e+04 -Electron-deuteron_mean_free_path_at_point_365____________________________ (len_plasma_electron_deuteron_mean_free_path_profile365)_ 4.10482212247949938e+04 -Electron-deuteron_mean_free_path_at_point_366____________________________ (len_plasma_electron_deuteron_mean_free_path_profile366)_ 4.06506950744560672e+04 -Electron-deuteron_mean_free_path_at_point_367____________________________ (len_plasma_electron_deuteron_mean_free_path_profile367)_ 4.02550527236499620e+04 -Electron-deuteron_mean_free_path_at_point_368____________________________ (len_plasma_electron_deuteron_mean_free_path_profile368)_ 3.98613142767100435e+04 -Electron-deuteron_mean_free_path_at_point_369____________________________ (len_plasma_electron_deuteron_mean_free_path_profile369)_ 3.94694998169887040e+04 -Electron-deuteron_mean_free_path_at_point_370____________________________ (len_plasma_electron_deuteron_mean_free_path_profile370)_ 3.90796294068005373e+04 -Electron-deuteron_mean_free_path_at_point_371____________________________ (len_plasma_electron_deuteron_mean_free_path_profile371)_ 3.86917230874439629e+04 -Electron-deuteron_mean_free_path_at_point_372____________________________ (len_plasma_electron_deuteron_mean_free_path_profile372)_ 3.83058008793040572e+04 -Electron-deuteron_mean_free_path_at_point_373____________________________ (len_plasma_electron_deuteron_mean_free_path_profile373)_ 3.79218827820458901e+04 -Electron-deuteron_mean_free_path_at_point_374____________________________ (len_plasma_electron_deuteron_mean_free_path_profile374)_ 3.75399887749014597e+04 -Electron-deuteron_mean_free_path_at_point_375____________________________ (len_plasma_electron_deuteron_mean_free_path_profile375)_ 3.71601388170585415e+04 -Electron-deuteron_mean_free_path_at_point_376____________________________ (len_plasma_electron_deuteron_mean_free_path_profile376)_ 3.67823528481611938e+04 -Electron-deuteron_mean_free_path_at_point_377____________________________ (len_plasma_electron_deuteron_mean_free_path_profile377)_ 3.64066507889226268e+04 -Electron-deuteron_mean_free_path_at_point_378____________________________ (len_plasma_electron_deuteron_mean_free_path_profile378)_ 3.60330525418672769e+04 -Electron-deuteron_mean_free_path_at_point_379____________________________ (len_plasma_electron_deuteron_mean_free_path_profile379)_ 3.56615779922043075e+04 -Electron-deuteron_mean_free_path_at_point_380____________________________ (len_plasma_electron_deuteron_mean_free_path_profile380)_ 3.52922470088450937e+04 -Electron-deuteron_mean_free_path_at_point_381____________________________ (len_plasma_electron_deuteron_mean_free_path_profile381)_ 3.49250794455739888e+04 -Electron-deuteron_mean_free_path_at_point_382____________________________ (len_plasma_electron_deuteron_mean_free_path_profile382)_ 3.45600951423826991e+04 -Electron-deuteron_mean_free_path_at_point_383____________________________ (len_plasma_electron_deuteron_mean_free_path_profile383)_ 3.41973139269800595e+04 -Electron-deuteron_mean_free_path_at_point_384____________________________ (len_plasma_electron_deuteron_mean_free_path_profile384)_ 3.38367556164894704e+04 -Electron-deuteron_mean_free_path_at_point_385____________________________ (len_plasma_electron_deuteron_mean_free_path_profile385)_ 3.34784400193473775e+04 -Electron-deuteron_mean_free_path_at_point_386____________________________ (len_plasma_electron_deuteron_mean_free_path_profile386)_ 3.31223869374155256e+04 -Electron-deuteron_mean_free_path_at_point_387____________________________ (len_plasma_electron_deuteron_mean_free_path_profile387)_ 3.27686161683244791e+04 -Electron-deuteron_mean_free_path_at_point_388____________________________ (len_plasma_electron_deuteron_mean_free_path_profile388)_ 3.24171475080614728e+04 -Electron-deuteron_mean_free_path_at_point_389____________________________ (len_plasma_electron_deuteron_mean_free_path_profile389)_ 3.20680007538223981e+04 -Electron-deuteron_mean_free_path_at_point_390____________________________ (len_plasma_electron_deuteron_mean_free_path_profile390)_ 3.17211957071451325e+04 -Electron-deuteron_mean_free_path_at_point_391____________________________ (len_plasma_electron_deuteron_mean_free_path_profile391)_ 3.13767521773448461e+04 -Electron-deuteron_mean_free_path_at_point_392____________________________ (len_plasma_electron_deuteron_mean_free_path_profile392)_ 3.10346899852715760e+04 -Electron-deuteron_mean_free_path_at_point_393____________________________ (len_plasma_electron_deuteron_mean_free_path_profile393)_ 3.06950289674144697e+04 -Electron-deuteron_mean_free_path_at_point_394____________________________ (len_plasma_electron_deuteron_mean_free_path_profile394)_ 3.03577889803774669e+04 -Electron-deuteron_mean_free_path_at_point_395____________________________ (len_plasma_electron_deuteron_mean_free_path_profile395)_ 3.00229899057503499e+04 -Electron-deuteron_mean_free_path_at_point_396____________________________ (len_plasma_electron_deuteron_mean_free_path_profile396)_ 2.96906516554078662e+04 -Electron-deuteron_mean_free_path_at_point_397____________________________ (len_plasma_electron_deuteron_mean_free_path_profile397)_ 2.93607941772658232e+04 -Electron-deuteron_mean_free_path_at_point_398____________________________ (len_plasma_electron_deuteron_mean_free_path_profile398)_ 2.90334374615264423e+04 -Electron-deuteron_mean_free_path_at_point_399____________________________ (len_plasma_electron_deuteron_mean_free_path_profile399)_ 2.87086015474509695e+04 -Electron-deuteron_mean_free_path_at_point_400____________________________ (len_plasma_electron_deuteron_mean_free_path_profile400)_ 2.83863065306990393e+04 -Electron-deuteron_mean_free_path_at_point_401____________________________ (len_plasma_electron_deuteron_mean_free_path_profile401)_ 2.80665725712736094e+04 -Electron-deuteron_mean_free_path_at_point_402____________________________ (len_plasma_electron_deuteron_mean_free_path_profile402)_ 2.77494199021211825e+04 -Electron-deuteron_mean_free_path_at_point_403____________________________ (len_plasma_electron_deuteron_mean_free_path_profile403)_ 2.74348688384347952e+04 -Electron-deuteron_mean_free_path_at_point_404____________________________ (len_plasma_electron_deuteron_mean_free_path_profile404)_ 2.71229397877116971e+04 -Electron-deuteron_mean_free_path_at_point_405____________________________ (len_plasma_electron_deuteron_mean_free_path_profile405)_ 2.68136532606295077e+04 -Electron-deuteron_mean_free_path_at_point_406____________________________ (len_plasma_electron_deuteron_mean_free_path_profile406)_ 2.65070298827972583e+04 -Electron-deuteron_mean_free_path_at_point_407____________________________ (len_plasma_electron_deuteron_mean_free_path_profile407)_ 2.62030904074564605e+04 -Electron-deuteron_mean_free_path_at_point_408____________________________ (len_plasma_electron_deuteron_mean_free_path_profile408)_ 2.59018557292024707e+04 -Electron-deuteron_mean_free_path_at_point_409____________________________ (len_plasma_electron_deuteron_mean_free_path_profile409)_ 2.56033468988126042e+04 -Electron-deuteron_mean_free_path_at_point_410____________________________ (len_plasma_electron_deuteron_mean_free_path_profile410)_ 2.53075851392656841e+04 -Electron-deuteron_mean_free_path_at_point_411____________________________ (len_plasma_electron_deuteron_mean_free_path_profile411)_ 2.50145918630556880e+04 -Electron-deuteron_mean_free_path_at_point_412____________________________ (len_plasma_electron_deuteron_mean_free_path_profile412)_ 2.47243886909028624e+04 -Electron-deuteron_mean_free_path_at_point_413____________________________ (len_plasma_electron_deuteron_mean_free_path_profile413)_ 2.44369974719816128e+04 -Electron-deuteron_mean_free_path_at_point_414____________________________ (len_plasma_electron_deuteron_mean_free_path_profile414)_ 2.41524403057936324e+04 -Electron-deuteron_mean_free_path_at_point_415____________________________ (len_plasma_electron_deuteron_mean_free_path_profile415)_ 2.38707395658276691e+04 -Electron-deuteron_mean_free_path_at_point_416____________________________ (len_plasma_electron_deuteron_mean_free_path_profile416)_ 2.35919179251627866e+04 -Electron-deuteron_mean_free_path_at_point_417____________________________ (len_plasma_electron_deuteron_mean_free_path_profile417)_ 2.33159983841857975e+04 -Electron-deuteron_mean_free_path_at_point_418____________________________ (len_plasma_electron_deuteron_mean_free_path_profile418)_ 2.30430043006147062e+04 -Electron-deuteron_mean_free_path_at_point_419____________________________ (len_plasma_electron_deuteron_mean_free_path_profile419)_ 2.27729594220359722e+04 -Electron-deuteron_mean_free_path_at_point_420____________________________ (len_plasma_electron_deuteron_mean_free_path_profile420)_ 2.25058879211912172e+04 -Electron-deuteron_mean_free_path_at_point_421____________________________ (len_plasma_electron_deuteron_mean_free_path_profile421)_ 2.22418144342699634e+04 -Electron-deuteron_mean_free_path_at_point_422____________________________ (len_plasma_electron_deuteron_mean_free_path_profile422)_ 2.19807641024972072e+04 -Electron-deuteron_mean_free_path_at_point_423____________________________ (len_plasma_electron_deuteron_mean_free_path_profile423)_ 2.17227626173374338e+04 -Electron-deuteron_mean_free_path_at_point_424____________________________ (len_plasma_electron_deuteron_mean_free_path_profile424)_ 2.14678362696713193e+04 -Electron-deuteron_mean_free_path_at_point_425____________________________ (len_plasma_electron_deuteron_mean_free_path_profile425)_ 2.12160120033484600e+04 -Electron-deuteron_mean_free_path_at_point_426____________________________ (len_plasma_electron_deuteron_mean_free_path_profile426)_ 2.09673174735653811e+04 -Electron-deuteron_mean_free_path_at_point_427____________________________ (len_plasma_electron_deuteron_mean_free_path_profile427)_ 2.07217811105753317e+04 -Electron-deuteron_mean_free_path_at_point_428____________________________ (len_plasma_electron_deuteron_mean_free_path_profile428)_ 2.04794321893013512e+04 -Electron-deuteron_mean_free_path_at_point_429____________________________ (len_plasma_electron_deuteron_mean_free_path_profile429)_ 2.02403009054975810e+04 -Electron-deuteron_mean_free_path_at_point_430____________________________ (len_plasma_electron_deuteron_mean_free_path_profile430)_ 2.00044184591905469e+04 -Electron-deuteron_mean_free_path_at_point_431____________________________ (len_plasma_electron_deuteron_mean_free_path_profile431)_ 1.97718171462330392e+04 -Electron-deuteron_mean_free_path_at_point_432____________________________ (len_plasma_electron_deuteron_mean_free_path_profile432)_ 1.95425304589194020e+04 -Electron-deuteron_mean_free_path_at_point_433____________________________ (len_plasma_electron_deuteron_mean_free_path_profile433)_ 1.93165931967464749e+04 -Electron-deuteron_mean_free_path_at_point_434____________________________ (len_plasma_electron_deuteron_mean_free_path_profile434)_ 1.90940415885676521e+04 -Electron-deuteron_mean_free_path_at_point_435____________________________ (len_plasma_electron_deuteron_mean_free_path_profile435)_ 1.88749134275728284e+04 -Electron-deuteron_mean_free_path_at_point_436____________________________ (len_plasma_electron_deuteron_mean_free_path_profile436)_ 1.86592482207564863e+04 -Electron-deuteron_mean_free_path_at_point_437____________________________ (len_plasma_electron_deuteron_mean_free_path_profile437)_ 1.84470873547954980e+04 -Electron-deuteron_mean_free_path_at_point_438____________________________ (len_plasma_electron_deuteron_mean_free_path_profile438)_ 1.82384742805850183e+04 -Electron-deuteron_mean_free_path_at_point_439____________________________ (len_plasma_electron_deuteron_mean_free_path_profile439)_ 1.80334547190569538e+04 -Electron-deuteron_mean_free_path_at_point_440____________________________ (len_plasma_electron_deuteron_mean_free_path_profile440)_ 1.78320768913729080e+04 -Electron-deuteron_mean_free_path_at_point_441____________________________ (len_plasma_electron_deuteron_mean_free_path_profile441)_ 1.76343917771428933e+04 -Electron-deuteron_mean_free_path_at_point_442____________________________ (len_plasma_electron_deuteron_mean_free_path_profile442)_ 1.74404534050119073e+04 -Electron-deuteron_mean_free_path_at_point_443____________________________ (len_plasma_electron_deuteron_mean_free_path_profile443)_ 1.72503191807973344e+04 -Electron-deuteron_mean_free_path_at_point_444____________________________ (len_plasma_electron_deuteron_mean_free_path_profile444)_ 1.70640502594148493e+04 -Electron-deuteron_mean_free_path_at_point_445____________________________ (len_plasma_electron_deuteron_mean_free_path_profile445)_ 1.68817119681345685e+04 -Electron-deuteron_mean_free_path_at_point_446____________________________ (len_plasma_electron_deuteron_mean_free_path_profile446)_ 1.67033742903550410e+04 -Electron-deuteron_mean_free_path_at_point_447____________________________ (len_plasma_electron_deuteron_mean_free_path_profile447)_ 1.65291124211788010e+04 -Electron-deuteron_mean_free_path_at_point_448____________________________ (len_plasma_electron_deuteron_mean_free_path_profile448)_ 1.63590074087376379e+04 -Electron-deuteron_mean_free_path_at_point_449____________________________ (len_plasma_electron_deuteron_mean_free_path_profile449)_ 1.61931468986909749e+04 -Electron-deuteron_mean_free_path_at_point_450____________________________ (len_plasma_electron_deuteron_mean_free_path_profile450)_ 1.60316260038309938e+04 -Electron-deuteron_mean_free_path_at_point_451____________________________ (len_plasma_electron_deuteron_mean_free_path_profile451)_ 1.58745483267265863e+04 -Electron-deuteron_mean_free_path_at_point_452____________________________ (len_plasma_electron_deuteron_mean_free_path_profile452)_ 1.57220271713482398e+04 -Electron-deuteron_mean_free_path_at_point_453____________________________ (len_plasma_electron_deuteron_mean_free_path_profile453)_ 1.55741869905179246e+04 -Electron-deuteron_mean_free_path_at_point_454____________________________ (len_plasma_electron_deuteron_mean_free_path_profile454)_ 1.54311651310530760e+04 -Electron-deuteron_mean_free_path_at_point_455____________________________ (len_plasma_electron_deuteron_mean_free_path_profile455)_ 1.52931139595768727e+04 -Electron-deuteron_mean_free_path_at_point_456____________________________ (len_plasma_electron_deuteron_mean_free_path_profile456)_ 1.51602034821316865e+04 -Electron-deuteron_mean_free_path_at_point_457____________________________ (len_plasma_electron_deuteron_mean_free_path_profile457)_ 1.50326246148188366e+04 -Electron-deuteron_mean_free_path_at_point_458____________________________ (len_plasma_electron_deuteron_mean_free_path_profile458)_ 1.49105933286430463e+04 -Electron-deuteron_mean_free_path_at_point_459____________________________ (len_plasma_electron_deuteron_mean_free_path_profile459)_ 1.47943559931683958e+04 -Electron-deuteron_mean_free_path_at_point_460____________________________ (len_plasma_electron_deuteron_mean_free_path_profile460)_ 1.46841964045118712e+04 -Electron-deuteron_mean_free_path_at_point_461____________________________ (len_plasma_electron_deuteron_mean_free_path_profile461)_ 1.45804452479495158e+04 -Electron-deuteron_mean_free_path_at_point_462____________________________ (len_plasma_electron_deuteron_mean_free_path_profile462)_ 1.44834931999997243e+04 -Electron-deuteron_mean_free_path_at_point_463____________________________ (len_plasma_electron_deuteron_mean_free_path_profile463)_ 1.43938096962692161e+04 -Electron-deuteron_mean_free_path_at_point_464____________________________ (len_plasma_electron_deuteron_mean_free_path_profile464)_ 1.43119709709285817e+04 -Electron-deuteron_mean_free_path_at_point_465____________________________ (len_plasma_electron_deuteron_mean_free_path_profile465)_ 1.42387042568301786e+04 -Electron-deuteron_mean_free_path_at_point_466____________________________ (len_plasma_electron_deuteron_mean_free_path_profile466)_ 1.41749625809491772e+04 -Electron-deuteron_mean_free_path_at_point_467____________________________ (len_plasma_electron_deuteron_mean_free_path_profile467)_ 1.41220644643324904e+04 -Electron-deuteron_mean_free_path_at_point_468____________________________ (len_plasma_electron_deuteron_mean_free_path_profile468)_ 1.40819967173620498e+04 -Electron-deuteron_mean_free_path_at_point_469____________________________ (len_plasma_electron_deuteron_mean_free_path_profile469)_ 1.40582655908793586e+04 -Electron-deuteron_mean_free_path_at_point_470____________________________ (len_plasma_electron_deuteron_mean_free_path_profile470)_ 1.40611040874745395e+04 -Electron-deuteron_mean_free_path_at_point_471____________________________ (len_plasma_electron_deuteron_mean_free_path_profile471)_ 1.33627837445074474e+04 -Electron-deuteron_mean_free_path_at_point_472____________________________ (len_plasma_electron_deuteron_mean_free_path_profile472)_ 1.26733509759079734e+04 -Electron-deuteron_mean_free_path_at_point_473____________________________ (len_plasma_electron_deuteron_mean_free_path_profile473)_ 1.19932415969389313e+04 -Electron-deuteron_mean_free_path_at_point_474____________________________ (len_plasma_electron_deuteron_mean_free_path_profile474)_ 1.13229183160930734e+04 -Electron-deuteron_mean_free_path_at_point_475____________________________ (len_plasma_electron_deuteron_mean_free_path_profile475)_ 1.06628728541809996e+04 -Electron-deuteron_mean_free_path_at_point_476____________________________ (len_plasma_electron_deuteron_mean_free_path_profile476)_ 1.00136282716133192e+04 -Electron-deuteron_mean_free_path_at_point_477____________________________ (len_plasma_electron_deuteron_mean_free_path_profile477)_ 9.37574152916425192e+03 -Electron-deuteron_mean_free_path_at_point_478____________________________ (len_plasma_electron_deuteron_mean_free_path_profile478)_ 8.74980631131967675e+03 -Electron-deuteron_mean_free_path_at_point_479____________________________ (len_plasma_electron_deuteron_mean_free_path_profile479)_ 8.13645614586723605e+03 -Electron-deuteron_mean_free_path_at_point_480____________________________ (len_plasma_electron_deuteron_mean_free_path_profile480)_ 7.53636785885106292e+03 -Electron-deuteron_mean_free_path_at_point_481____________________________ (len_plasma_electron_deuteron_mean_free_path_profile481)_ 6.95026541062627621e+03 -Electron-deuteron_mean_free_path_at_point_482____________________________ (len_plasma_electron_deuteron_mean_free_path_profile482)_ 6.37892416683427018e+03 -Electron-deuteron_mean_free_path_at_point_483____________________________ (len_plasma_electron_deuteron_mean_free_path_profile483)_ 5.82317566810506833e+03 -Electron-deuteron_mean_free_path_at_point_484____________________________ (len_plasma_electron_deuteron_mean_free_path_profile484)_ 5.28391297478636170e+03 -Electron-deuteron_mean_free_path_at_point_485____________________________ (len_plasma_electron_deuteron_mean_free_path_profile485)_ 4.76209667885657018e+03 -Electron-deuteron_mean_free_path_at_point_486____________________________ (len_plasma_electron_deuteron_mean_free_path_profile486)_ 4.25876169563430085e+03 -Electron-deuteron_mean_free_path_at_point_487____________________________ (len_plasma_electron_deuteron_mean_free_path_profile487)_ 3.77502497480523698e+03 -Electron-deuteron_mean_free_path_at_point_488____________________________ (len_plasma_electron_deuteron_mean_free_path_profile488)_ 3.31209430647291128e+03 -Electron-deuteron_mean_free_path_at_point_489____________________________ (len_plasma_electron_deuteron_mean_free_path_profile489)_ 2.87127844787451386e+03 -Electron-deuteron_mean_free_path_at_point_490____________________________ (len_plasma_electron_deuteron_mean_free_path_profile490)_ 2.45399886741600994e+03 -Electron-deuteron_mean_free_path_at_point_491____________________________ (len_plasma_electron_deuteron_mean_free_path_profile491)_ 2.06180350726050392e+03 -Electron-deuteron_mean_free_path_at_point_492____________________________ (len_plasma_electron_deuteron_mean_free_path_profile492)_ 1.69638312617393717e+03 -Electron-deuteron_mean_free_path_at_point_493____________________________ (len_plasma_electron_deuteron_mean_free_path_profile493)_ 1.35959104270059015e+03 -Electron-deuteron_mean_free_path_at_point_494____________________________ (len_plasma_electron_deuteron_mean_free_path_profile494)_ 1.05346753931189392e+03 -Electron-deuteron_mean_free_path_at_point_495____________________________ (len_plasma_electron_deuteron_mean_free_path_profile495)_ 7.80270993295892026e+02 -Electron-deuteron_mean_free_path_at_point_496____________________________ (len_plasma_electron_deuteron_mean_free_path_profile496)_ 5.42519403353291295e+02 -Electron-deuteron_mean_free_path_at_point_497____________________________ (len_plasma_electron_deuteron_mean_free_path_profile497)_ 3.43049545855500696e+02 -Electron-deuteron_mean_free_path_at_point_498____________________________ (len_plasma_electron_deuteron_mean_free_path_profile498)_ 1.85110208884323242e+02 -Electron-deuteron_mean_free_path_at_point_499____________________________ (len_plasma_electron_deuteron_mean_free_path_profile499)_ 7.25357880096085239e+01 -Electron-deuteron_mean_free_path_at_point_500____________________________ (len_plasma_electron_deuteron_mean_free_path_profile500)_ 1.01924598199130561e+01 -Volume_averaged_electron-triton_mean_free_path_(λₑT)_(m)_________________ (len_plasma_electron_triton_mean_free_path_vol_avg)_ 5.39906900749845008e+04 -Electron-triton_mean_free_path_at_point_0________________________________ (len_plasma_electron_triton_mean_free_path_profile0)_ 1.65943977952568937e+05 -Electron-triton_mean_free_path_at_point_1________________________________ (len_plasma_electron_triton_mean_free_path_profile1)_ 1.65942635856818815e+05 -Electron-triton_mean_free_path_at_point_2________________________________ (len_plasma_electron_triton_mean_free_path_profile2)_ 1.65938609606459475e+05 -Electron-triton_mean_free_path_at_point_3________________________________ (len_plasma_electron_triton_mean_free_path_profile3)_ 1.65931899312163005e+05 -Electron-triton_mean_free_path_at_point_4________________________________ (len_plasma_electron_triton_mean_free_path_profile4)_ 1.65922505158382584e+05 -Electron-triton_mean_free_path_at_point_5________________________________ (len_plasma_electron_triton_mean_free_path_profile5)_ 1.65910427403353999e+05 -Electron-triton_mean_free_path_at_point_6________________________________ (len_plasma_electron_triton_mean_free_path_profile6)_ 1.65895666379093920e+05 -Electron-triton_mean_free_path_at_point_7________________________________ (len_plasma_electron_triton_mean_free_path_profile7)_ 1.65878222491401451e+05 -Electron-triton_mean_free_path_at_point_8________________________________ (len_plasma_electron_triton_mean_free_path_profile8)_ 1.65858096219858970e+05 -Electron-triton_mean_free_path_at_point_9________________________________ (len_plasma_electron_triton_mean_free_path_profile9)_ 1.65835288117830496e+05 -Electron-triton_mean_free_path_at_point_10_______________________________ (len_plasma_electron_triton_mean_free_path_profile10)_ 1.65809798812464229e+05 -Electron-triton_mean_free_path_at_point_11_______________________________ (len_plasma_electron_triton_mean_free_path_profile11)_ 1.65781629004692804e+05 -Electron-triton_mean_free_path_at_point_12_______________________________ (len_plasma_electron_triton_mean_free_path_profile12)_ 1.65750779469231929e+05 -Electron-triton_mean_free_path_at_point_13_______________________________ (len_plasma_electron_triton_mean_free_path_profile13)_ 1.65717251054583641e+05 -Electron-triton_mean_free_path_at_point_14_______________________________ (len_plasma_electron_triton_mean_free_path_profile14)_ 1.65681044683035434e+05 -Electron-triton_mean_free_path_at_point_15_______________________________ (len_plasma_electron_triton_mean_free_path_profile15)_ 1.65642161350661365e+05 -Electron-triton_mean_free_path_at_point_16_______________________________ (len_plasma_electron_triton_mean_free_path_profile16)_ 1.65600602127323597e+05 -Electron-triton_mean_free_path_at_point_17_______________________________ (len_plasma_electron_triton_mean_free_path_profile17)_ 1.65556368156671757e+05 -Electron-triton_mean_free_path_at_point_18_______________________________ (len_plasma_electron_triton_mean_free_path_profile18)_ 1.65509460656145442e+05 -Electron-triton_mean_free_path_at_point_19_______________________________ (len_plasma_electron_triton_mean_free_path_profile19)_ 1.65459880916974449e+05 -Electron-triton_mean_free_path_at_point_20_______________________________ (len_plasma_electron_triton_mean_free_path_profile20)_ 1.65407630304179533e+05 -Electron-triton_mean_free_path_at_point_21_______________________________ (len_plasma_electron_triton_mean_free_path_profile21)_ 1.65352710256574006e+05 -Electron-triton_mean_free_path_at_point_22_______________________________ (len_plasma_electron_triton_mean_free_path_profile22)_ 1.65295122286764992e+05 -Electron-triton_mean_free_path_at_point_23_______________________________ (len_plasma_electron_triton_mean_free_path_profile23)_ 1.65234867981154122e+05 -Electron-triton_mean_free_path_at_point_24_______________________________ (len_plasma_electron_triton_mean_free_path_profile24)_ 1.65171948999938992e+05 -Electron-triton_mean_free_path_at_point_25_______________________________ (len_plasma_electron_triton_mean_free_path_profile25)_ 1.65106367077115166e+05 -Electron-triton_mean_free_path_at_point_26_______________________________ (len_plasma_electron_triton_mean_free_path_profile26)_ 1.65038124020475429e+05 -Electron-triton_mean_free_path_at_point_27_______________________________ (len_plasma_electron_triton_mean_free_path_profile27)_ 1.64967221711612918e+05 -Electron-triton_mean_free_path_at_point_28_______________________________ (len_plasma_electron_triton_mean_free_path_profile28)_ 1.64893662105923257e+05 -Electron-triton_mean_free_path_at_point_29_______________________________ (len_plasma_electron_triton_mean_free_path_profile29)_ 1.64817447232603008e+05 -Electron-triton_mean_free_path_at_point_30_______________________________ (len_plasma_electron_triton_mean_free_path_profile30)_ 1.64738579194653954e+05 -Electron-triton_mean_free_path_at_point_31_______________________________ (len_plasma_electron_triton_mean_free_path_profile31)_ 1.64657060168883618e+05 -Electron-triton_mean_free_path_at_point_32_______________________________ (len_plasma_electron_triton_mean_free_path_profile32)_ 1.64572892405905935e+05 -Electron-triton_mean_free_path_at_point_33_______________________________ (len_plasma_electron_triton_mean_free_path_profile33)_ 1.64486078230144223e+05 -Electron-triton_mean_free_path_at_point_34_______________________________ (len_plasma_electron_triton_mean_free_path_profile34)_ 1.64396620039831760e+05 -Electron-triton_mean_free_path_at_point_35_______________________________ (len_plasma_electron_triton_mean_free_path_profile35)_ 1.64304520307013736e+05 -Electron-triton_mean_free_path_at_point_36_______________________________ (len_plasma_electron_triton_mean_free_path_profile36)_ 1.64209781577548361e+05 -Electron-triton_mean_free_path_at_point_37_______________________________ (len_plasma_electron_triton_mean_free_path_profile37)_ 1.64112406471109804e+05 -Electron-triton_mean_free_path_at_point_38_______________________________ (len_plasma_electron_triton_mean_free_path_profile38)_ 1.64012397681188333e+05 -Electron-triton_mean_free_path_at_point_39_______________________________ (len_plasma_electron_triton_mean_free_path_profile39)_ 1.63909757975092187e+05 -Electron-triton_mean_free_path_at_point_40_______________________________ (len_plasma_electron_triton_mean_free_path_profile40)_ 1.63804490193949779e+05 -Electron-triton_mean_free_path_at_point_41_______________________________ (len_plasma_electron_triton_mean_free_path_profile41)_ 1.63696597252710810e+05 -Electron-triton_mean_free_path_at_point_42_______________________________ (len_plasma_electron_triton_mean_free_path_profile42)_ 1.63586082140149199e+05 -Electron-triton_mean_free_path_at_point_43_______________________________ (len_plasma_electron_triton_mean_free_path_profile43)_ 1.63472947918861581e+05 -Electron-triton_mean_free_path_at_point_44_______________________________ (len_plasma_electron_triton_mean_free_path_profile44)_ 1.63357197725273028e+05 -Electron-triton_mean_free_path_at_point_45_______________________________ (len_plasma_electron_triton_mean_free_path_profile45)_ 1.63238834769635258e+05 -Electron-triton_mean_free_path_at_point_46_______________________________ (len_plasma_electron_triton_mean_free_path_profile46)_ 1.63117862336030026e+05 -Electron-triton_mean_free_path_at_point_47_______________________________ (len_plasma_electron_triton_mean_free_path_profile47)_ 1.62994283782369836e+05 -Electron-triton_mean_free_path_at_point_48_______________________________ (len_plasma_electron_triton_mean_free_path_profile48)_ 1.62868102540400345e+05 -Electron-triton_mean_free_path_at_point_49_______________________________ (len_plasma_electron_triton_mean_free_path_profile49)_ 1.62739322115700488e+05 -Electron-triton_mean_free_path_at_point_50_______________________________ (len_plasma_electron_triton_mean_free_path_profile50)_ 1.62607946087685530e+05 -Electron-triton_mean_free_path_at_point_51_______________________________ (len_plasma_electron_triton_mean_free_path_profile51)_ 1.62473978109607007e+05 -Electron-triton_mean_free_path_at_point_52_______________________________ (len_plasma_electron_triton_mean_free_path_profile52)_ 1.62337421908554825e+05 -Electron-triton_mean_free_path_at_point_53_______________________________ (len_plasma_electron_triton_mean_free_path_profile53)_ 1.62198281285459729e+05 -Electron-triton_mean_free_path_at_point_54_______________________________ (len_plasma_electron_triton_mean_free_path_profile54)_ 1.62056560115091939e+05 -Electron-triton_mean_free_path_at_point_55_______________________________ (len_plasma_electron_triton_mean_free_path_profile55)_ 1.61912262346064148e+05 -Electron-triton_mean_free_path_at_point_56_______________________________ (len_plasma_electron_triton_mean_free_path_profile56)_ 1.61765392000833061e+05 -Electron-triton_mean_free_path_at_point_57_______________________________ (len_plasma_electron_triton_mean_free_path_profile57)_ 1.61615953175698698e+05 -Electron-triton_mean_free_path_at_point_58_______________________________ (len_plasma_electron_triton_mean_free_path_profile58)_ 1.61463950040808006e+05 -Electron-triton_mean_free_path_at_point_59_______________________________ (len_plasma_electron_triton_mean_free_path_profile59)_ 1.61309386840152583e+05 -Electron-triton_mean_free_path_at_point_60_______________________________ (len_plasma_electron_triton_mean_free_path_profile60)_ 1.61152267891572003e+05 -Electron-triton_mean_free_path_at_point_61_______________________________ (len_plasma_electron_triton_mean_free_path_profile61)_ 1.60992597586754215e+05 -Electron-triton_mean_free_path_at_point_62_______________________________ (len_plasma_electron_triton_mean_free_path_profile62)_ 1.60830380391234532e+05 -Electron-triton_mean_free_path_at_point_63_______________________________ (len_plasma_electron_triton_mean_free_path_profile63)_ 1.60665620844399178e+05 -Electron-triton_mean_free_path_at_point_64_______________________________ (len_plasma_electron_triton_mean_free_path_profile64)_ 1.60498323559482786e+05 -Electron-triton_mean_free_path_at_point_65_______________________________ (len_plasma_electron_triton_mean_free_path_profile65)_ 1.60328493223569909e+05 -Electron-triton_mean_free_path_at_point_66_______________________________ (len_plasma_electron_triton_mean_free_path_profile66)_ 1.60156134597596159e+05 -Electron-triton_mean_free_path_at_point_67_______________________________ (len_plasma_electron_triton_mean_free_path_profile67)_ 1.59981252516346955e+05 -Electron-triton_mean_free_path_at_point_68_______________________________ (len_plasma_electron_triton_mean_free_path_profile68)_ 1.59803851888458506e+05 -Electron-triton_mean_free_path_at_point_69_______________________________ (len_plasma_electron_triton_mean_free_path_profile69)_ 1.59623937696416775e+05 -Electron-triton_mean_free_path_at_point_70_______________________________ (len_plasma_electron_triton_mean_free_path_profile70)_ 1.59441514996557467e+05 -Electron-triton_mean_free_path_at_point_71_______________________________ (len_plasma_electron_triton_mean_free_path_profile71)_ 1.59256588919066387e+05 -Electron-triton_mean_free_path_at_point_72_______________________________ (len_plasma_electron_triton_mean_free_path_profile72)_ 1.59069164667977137e+05 -Electron-triton_mean_free_path_at_point_73_______________________________ (len_plasma_electron_triton_mean_free_path_profile73)_ 1.58879247521172627e+05 -Electron-triton_mean_free_path_at_point_74_______________________________ (len_plasma_electron_triton_mean_free_path_profile74)_ 1.58686842830382375e+05 -Electron-triton_mean_free_path_at_point_75_______________________________ (len_plasma_electron_triton_mean_free_path_profile75)_ 1.58491956021180755e+05 -Electron-triton_mean_free_path_at_point_76_______________________________ (len_plasma_electron_triton_mean_free_path_profile76)_ 1.58294592592989124e+05 -Electron-triton_mean_free_path_at_point_77_______________________________ (len_plasma_electron_triton_mean_free_path_profile77)_ 1.58094758119070611e+05 -Electron-triton_mean_free_path_at_point_78_______________________________ (len_plasma_electron_triton_mean_free_path_profile78)_ 1.57892458246529743e+05 -Electron-triton_mean_free_path_at_point_79_______________________________ (len_plasma_electron_triton_mean_free_path_profile79)_ 1.57687698696310836e+05 -Electron-triton_mean_free_path_at_point_80_______________________________ (len_plasma_electron_triton_mean_free_path_profile80)_ 1.57480485263196751e+05 -Electron-triton_mean_free_path_at_point_81_______________________________ (len_plasma_electron_triton_mean_free_path_profile81)_ 1.57270823815804470e+05 -Electron-triton_mean_free_path_at_point_82_______________________________ (len_plasma_electron_triton_mean_free_path_profile82)_ 1.57058720296583226e+05 -Electron-triton_mean_free_path_at_point_83_______________________________ (len_plasma_electron_triton_mean_free_path_profile83)_ 1.56844180721813405e+05 -Electron-triton_mean_free_path_at_point_84_______________________________ (len_plasma_electron_triton_mean_free_path_profile84)_ 1.56627211181601713e+05 -Electron-triton_mean_free_path_at_point_85_______________________________ (len_plasma_electron_triton_mean_free_path_profile85)_ 1.56407817839877505e+05 -Electron-triton_mean_free_path_at_point_86_______________________________ (len_plasma_electron_triton_mean_free_path_profile86)_ 1.56186006934390636e+05 -Electron-triton_mean_free_path_at_point_87_______________________________ (len_plasma_electron_triton_mean_free_path_profile87)_ 1.55961784776707413e+05 -Electron-triton_mean_free_path_at_point_88_______________________________ (len_plasma_electron_triton_mean_free_path_profile88)_ 1.55735157752205385e+05 -Electron-triton_mean_free_path_at_point_89_______________________________ (len_plasma_electron_triton_mean_free_path_profile89)_ 1.55506132320070668e+05 -Electron-triton_mean_free_path_at_point_90_______________________________ (len_plasma_electron_triton_mean_free_path_profile90)_ 1.55274715013290406e+05 -Electron-triton_mean_free_path_at_point_91_______________________________ (len_plasma_electron_triton_mean_free_path_profile91)_ 1.55040912438651023e+05 -Electron-triton_mean_free_path_at_point_92_______________________________ (len_plasma_electron_triton_mean_free_path_profile92)_ 1.54804731276730949e+05 -Electron-triton_mean_free_path_at_point_93_______________________________ (len_plasma_electron_triton_mean_free_path_profile93)_ 1.54566178281895642e+05 -Electron-triton_mean_free_path_at_point_94_______________________________ (len_plasma_electron_triton_mean_free_path_profile94)_ 1.54325260282290837e+05 -Electron-triton_mean_free_path_at_point_95_______________________________ (len_plasma_electron_triton_mean_free_path_profile95)_ 1.54081984179836785e+05 -Electron-triton_mean_free_path_at_point_96_______________________________ (len_plasma_electron_triton_mean_free_path_profile96)_ 1.53836356950222078e+05 -Electron-triton_mean_free_path_at_point_97_______________________________ (len_plasma_electron_triton_mean_free_path_profile97)_ 1.53588385642894777e+05 -Electron-triton_mean_free_path_at_point_98_______________________________ (len_plasma_electron_triton_mean_free_path_profile98)_ 1.53338077381057141e+05 -Electron-triton_mean_free_path_at_point_99_______________________________ (len_plasma_electron_triton_mean_free_path_profile99)_ 1.53085439361656783e+05 -Electron-triton_mean_free_path_at_point_100______________________________ (len_plasma_electron_triton_mean_free_path_profile100)_ 1.52830478855377296e+05 -Electron-triton_mean_free_path_at_point_101______________________________ (len_plasma_electron_triton_mean_free_path_profile101)_ 1.52573203206631762e+05 -Electron-triton_mean_free_path_at_point_102______________________________ (len_plasma_electron_triton_mean_free_path_profile102)_ 1.52313619833552191e+05 -Electron-triton_mean_free_path_at_point_103______________________________ (len_plasma_electron_triton_mean_free_path_profile103)_ 1.52051736227980669e+05 -Electron-triton_mean_free_path_at_point_104______________________________ (len_plasma_electron_triton_mean_free_path_profile104)_ 1.51787559955458826e+05 -Electron-triton_mean_free_path_at_point_105______________________________ (len_plasma_electron_triton_mean_free_path_profile105)_ 1.51521098655217676e+05 -Electron-triton_mean_free_path_at_point_106______________________________ (len_plasma_electron_triton_mean_free_path_profile106)_ 1.51252360040167609e+05 -Electron-triton_mean_free_path_at_point_107______________________________ (len_plasma_electron_triton_mean_free_path_profile107)_ 1.50981351896885055e+05 -Electron-triton_mean_free_path_at_point_108______________________________ (len_plasma_electron_triton_mean_free_path_profile108)_ 1.50708082085603062e+05 -Electron-triton_mean_free_path_at_point_109______________________________ (len_plasma_electron_triton_mean_free_path_profile109)_ 1.50432558540196973e+05 -Electron-triton_mean_free_path_at_point_110______________________________ (len_plasma_electron_triton_mean_free_path_profile110)_ 1.50154789268171997e+05 -Electron-triton_mean_free_path_at_point_111______________________________ (len_plasma_electron_triton_mean_free_path_profile111)_ 1.49874782350650959e+05 -Electron-triton_mean_free_path_at_point_112______________________________ (len_plasma_electron_triton_mean_free_path_profile112)_ 1.49592545942359342e+05 -Electron-triton_mean_free_path_at_point_113______________________________ (len_plasma_electron_triton_mean_free_path_profile113)_ 1.49308088271610817e+05 -Electron-triton_mean_free_path_at_point_114______________________________ (len_plasma_electron_triton_mean_free_path_profile114)_ 1.49021417640292144e+05 -Electron-triton_mean_free_path_at_point_115______________________________ (len_plasma_electron_triton_mean_free_path_profile115)_ 1.48732542423848063e+05 -Electron-triton_mean_free_path_at_point_116______________________________ (len_plasma_electron_triton_mean_free_path_profile116)_ 1.48441471071264270e+05 -Electron-triton_mean_free_path_at_point_117______________________________ (len_plasma_electron_triton_mean_free_path_profile117)_ 1.48148212105052284e+05 -Electron-triton_mean_free_path_at_point_118______________________________ (len_plasma_electron_triton_mean_free_path_profile118)_ 1.47852774121229333e+05 -Electron-triton_mean_free_path_at_point_119______________________________ (len_plasma_electron_triton_mean_free_path_profile119)_ 1.47555165789302322e+05 -Electron-triton_mean_free_path_at_point_120______________________________ (len_plasma_electron_triton_mean_free_path_profile120)_ 1.47255395852248184e+05 -Electron-triton_mean_free_path_at_point_121______________________________ (len_plasma_electron_triton_mean_free_path_profile121)_ 1.46953473126495664e+05 -Electron-triton_mean_free_path_at_point_122______________________________ (len_plasma_electron_triton_mean_free_path_profile122)_ 1.46649406501903170e+05 -Electron-triton_mean_free_path_at_point_123______________________________ (len_plasma_electron_triton_mean_free_path_profile123)_ 1.46343204941739416e+05 -Electron-triton_mean_free_path_at_point_124______________________________ (len_plasma_electron_triton_mean_free_path_profile124)_ 1.46034877482662123e+05 -Electron-triton_mean_free_path_at_point_125______________________________ (len_plasma_electron_triton_mean_free_path_profile125)_ 1.45724433234694472e+05 -Electron-triton_mean_free_path_at_point_126______________________________ (len_plasma_electron_triton_mean_free_path_profile126)_ 1.45411881381204119e+05 -Electron-triton_mean_free_path_at_point_127______________________________ (len_plasma_electron_triton_mean_free_path_profile127)_ 1.45097231178876886e+05 -Electron-triton_mean_free_path_at_point_128______________________________ (len_plasma_electron_triton_mean_free_path_profile128)_ 1.44780491957695311e+05 -Electron-triton_mean_free_path_at_point_129______________________________ (len_plasma_electron_triton_mean_free_path_profile129)_ 1.44461673120910855e+05 -Electron-triton_mean_free_path_at_point_130______________________________ (len_plasma_electron_triton_mean_free_path_profile130)_ 1.44140784145018726e+05 -Electron-triton_mean_free_path_at_point_131______________________________ (len_plasma_electron_triton_mean_free_path_profile131)_ 1.43817834579731338e+05 -Electron-triton_mean_free_path_at_point_132______________________________ (len_plasma_electron_triton_mean_free_path_profile132)_ 1.43492834047950106e+05 -Electron-triton_mean_free_path_at_point_133______________________________ (len_plasma_electron_triton_mean_free_path_profile133)_ 1.43165792245736840e+05 -Electron-triton_mean_free_path_at_point_134______________________________ (len_plasma_electron_triton_mean_free_path_profile134)_ 1.42836718942284700e+05 -Electron-triton_mean_free_path_at_point_135______________________________ (len_plasma_electron_triton_mean_free_path_profile135)_ 1.42505623979887081e+05 -Electron-triton_mean_free_path_at_point_136______________________________ (len_plasma_electron_triton_mean_free_path_profile136)_ 1.42172517273907637e+05 -Electron-triton_mean_free_path_at_point_137______________________________ (len_plasma_electron_triton_mean_free_path_profile137)_ 1.41837408812746202e+05 -Electron-triton_mean_free_path_at_point_138______________________________ (len_plasma_electron_triton_mean_free_path_profile138)_ 1.41500308657807473e+05 -Electron-triton_mean_free_path_at_point_139______________________________ (len_plasma_electron_triton_mean_free_path_profile139)_ 1.41161226943465910e+05 -Electron-triton_mean_free_path_at_point_140______________________________ (len_plasma_electron_triton_mean_free_path_profile140)_ 1.40820173877030378e+05 -Electron-triton_mean_free_path_at_point_141______________________________ (len_plasma_electron_triton_mean_free_path_profile141)_ 1.40477159738709219e+05 -Electron-triton_mean_free_path_at_point_142______________________________ (len_plasma_electron_triton_mean_free_path_profile142)_ 1.40132194881571806e+05 -Electron-triton_mean_free_path_at_point_143______________________________ (len_plasma_electron_triton_mean_free_path_profile143)_ 1.39785289731511613e+05 -Electron-triton_mean_free_path_at_point_144______________________________ (len_plasma_electron_triton_mean_free_path_profile144)_ 1.39436454787206050e+05 -Electron-triton_mean_free_path_at_point_145______________________________ (len_plasma_electron_triton_mean_free_path_profile145)_ 1.39085700620076241e+05 -Electron-triton_mean_free_path_at_point_146______________________________ (len_plasma_electron_triton_mean_free_path_profile146)_ 1.38733037874246598e+05 -Electron-triton_mean_free_path_at_point_147______________________________ (len_plasma_electron_triton_mean_free_path_profile147)_ 1.38378477266501141e+05 -Electron-triton_mean_free_path_at_point_148______________________________ (len_plasma_electron_triton_mean_free_path_profile148)_ 1.38022029586239660e+05 -Electron-triton_mean_free_path_at_point_149______________________________ (len_plasma_electron_triton_mean_free_path_profile149)_ 1.37663705695434328e+05 -Electron-triton_mean_free_path_at_point_150______________________________ (len_plasma_electron_triton_mean_free_path_profile150)_ 1.37303516528582666e+05 -Electron-triton_mean_free_path_at_point_151______________________________ (len_plasma_electron_triton_mean_free_path_profile151)_ 1.36941473092660104e+05 -Electron-triton_mean_free_path_at_point_152______________________________ (len_plasma_electron_triton_mean_free_path_profile152)_ 1.36577586467072455e+05 -Electron-triton_mean_free_path_at_point_153______________________________ (len_plasma_electron_triton_mean_free_path_profile153)_ 1.36211867803604924e+05 -Electron-triton_mean_free_path_at_point_154______________________________ (len_plasma_electron_triton_mean_free_path_profile154)_ 1.35844328326372080e+05 -Electron-triton_mean_free_path_at_point_155______________________________ (len_plasma_electron_triton_mean_free_path_profile155)_ 1.35474979331765528e+05 -Electron-triton_mean_free_path_at_point_156______________________________ (len_plasma_electron_triton_mean_free_path_profile156)_ 1.35103832188399305e+05 -Electron-triton_mean_free_path_at_point_157______________________________ (len_plasma_electron_triton_mean_free_path_profile157)_ 1.34730898337056453e+05 -Electron-triton_mean_free_path_at_point_158______________________________ (len_plasma_electron_triton_mean_free_path_profile158)_ 1.34356189290631650e+05 -Electron-triton_mean_free_path_at_point_159______________________________ (len_plasma_electron_triton_mean_free_path_profile159)_ 1.33979716634072916e+05 -Electron-triton_mean_free_path_at_point_160______________________________ (len_plasma_electron_triton_mean_free_path_profile160)_ 1.33601492024324281e+05 -Electron-triton_mean_free_path_at_point_161______________________________ (len_plasma_electron_triton_mean_free_path_profile161)_ 1.33221527190263674e+05 -Electron-triton_mean_free_path_at_point_162______________________________ (len_plasma_electron_triton_mean_free_path_profile162)_ 1.32839833932640933e+05 -Electron-triton_mean_free_path_at_point_163______________________________ (len_plasma_electron_triton_mean_free_path_profile163)_ 1.32456424124015582e+05 -Electron-triton_mean_free_path_at_point_164______________________________ (len_plasma_electron_triton_mean_free_path_profile164)_ 1.32071309708689456e+05 -Electron-triton_mean_free_path_at_point_165______________________________ (len_plasma_electron_triton_mean_free_path_profile165)_ 1.31684502702642174e+05 -Electron-triton_mean_free_path_at_point_166______________________________ (len_plasma_electron_triton_mean_free_path_profile166)_ 1.31296015193462139e+05 -Electron-triton_mean_free_path_at_point_167______________________________ (len_plasma_electron_triton_mean_free_path_profile167)_ 1.30905859340276409e+05 -Electron-triton_mean_free_path_at_point_168______________________________ (len_plasma_electron_triton_mean_free_path_profile168)_ 1.30514047373679627e+05 -Electron-triton_mean_free_path_at_point_169______________________________ (len_plasma_electron_triton_mean_free_path_profile169)_ 1.30120591595660415e+05 -Electron-triton_mean_free_path_at_point_170______________________________ (len_plasma_electron_triton_mean_free_path_profile170)_ 1.29725504379527803e+05 -Electron-triton_mean_free_path_at_point_171______________________________ (len_plasma_electron_triton_mean_free_path_profile171)_ 1.29328798169833040e+05 -Electron-triton_mean_free_path_at_point_172______________________________ (len_plasma_electron_triton_mean_free_path_profile172)_ 1.28930485482292948e+05 -Electron-triton_mean_free_path_at_point_173______________________________ (len_plasma_electron_triton_mean_free_path_profile173)_ 1.28530578903708316e+05 -Electron-triton_mean_free_path_at_point_174______________________________ (len_plasma_electron_triton_mean_free_path_profile174)_ 1.28129091091883354e+05 -Electron-triton_mean_free_path_at_point_175______________________________ (len_plasma_electron_triton_mean_free_path_profile175)_ 1.27726034775541848e+05 -Electron-triton_mean_free_path_at_point_176______________________________ (len_plasma_electron_triton_mean_free_path_profile176)_ 1.27321422754240732e+05 -Electron-triton_mean_free_path_at_point_177______________________________ (len_plasma_electron_triton_mean_free_path_profile177)_ 1.26915267898283826e+05 -Electron-triton_mean_free_path_at_point_178______________________________ (len_plasma_electron_triton_mean_free_path_profile178)_ 1.26507583148631165e+05 -Electron-triton_mean_free_path_at_point_179______________________________ (len_plasma_electron_triton_mean_free_path_profile179)_ 1.26098381516809561e+05 -Electron-triton_mean_free_path_at_point_180______________________________ (len_plasma_electron_triton_mean_free_path_profile180)_ 1.25687676084817562e+05 -Electron-triton_mean_free_path_at_point_181______________________________ (len_plasma_electron_triton_mean_free_path_profile181)_ 1.25275480005030709e+05 -Electron-triton_mean_free_path_at_point_182______________________________ (len_plasma_electron_triton_mean_free_path_profile182)_ 1.24861806500104853e+05 -Electron-triton_mean_free_path_at_point_183______________________________ (len_plasma_electron_triton_mean_free_path_profile183)_ 1.24446668862875900e+05 -Electron-triton_mean_free_path_at_point_184______________________________ (len_plasma_electron_triton_mean_free_path_profile184)_ 1.24030080456258060e+05 -Electron-triton_mean_free_path_at_point_185______________________________ (len_plasma_electron_triton_mean_free_path_profile185)_ 1.23612054713141275e+05 -Electron-triton_mean_free_path_at_point_186______________________________ (len_plasma_electron_triton_mean_free_path_profile186)_ 1.23192605136284037e+05 -Electron-triton_mean_free_path_at_point_187______________________________ (len_plasma_electron_triton_mean_free_path_profile187)_ 1.22771745298206137e+05 -Electron-triton_mean_free_path_at_point_188______________________________ (len_plasma_electron_triton_mean_free_path_profile188)_ 1.22349488841077531e+05 -Electron-triton_mean_free_path_at_point_189______________________________ (len_plasma_electron_triton_mean_free_path_profile189)_ 1.21925849476606061e+05 -Electron-triton_mean_free_path_at_point_190______________________________ (len_plasma_electron_triton_mean_free_path_profile190)_ 1.21500840985923161e+05 -Electron-triton_mean_free_path_at_point_191______________________________ (len_plasma_electron_triton_mean_free_path_profile191)_ 1.21074477219465203e+05 -Electron-triton_mean_free_path_at_point_192______________________________ (len_plasma_electron_triton_mean_free_path_profile192)_ 1.20646772096853587e+05 -Electron-triton_mean_free_path_at_point_193______________________________ (len_plasma_electron_triton_mean_free_path_profile193)_ 1.20217739606774136e+05 -Electron-triton_mean_free_path_at_point_194______________________________ (len_plasma_electron_triton_mean_free_path_profile194)_ 1.19787393806850509e+05 -Electron-triton_mean_free_path_at_point_195______________________________ (len_plasma_electron_triton_mean_free_path_profile195)_ 1.19355748823519098e+05 -Electron-triton_mean_free_path_at_point_196______________________________ (len_plasma_electron_triton_mean_free_path_profile196)_ 1.18922818851896591e+05 -Electron-triton_mean_free_path_at_point_197______________________________ (len_plasma_electron_triton_mean_free_path_profile197)_ 1.18488618155649645e+05 -Electron-triton_mean_free_path_at_point_198______________________________ (len_plasma_electron_triton_mean_free_path_profile198)_ 1.18053161066858942e+05 -Electron-triton_mean_free_path_at_point_199______________________________ (len_plasma_electron_triton_mean_free_path_profile199)_ 1.17616461985882110e+05 -Electron-triton_mean_free_path_at_point_200______________________________ (len_plasma_electron_triton_mean_free_path_profile200)_ 1.17178535381212569e+05 -Electron-triton_mean_free_path_at_point_201______________________________ (len_plasma_electron_triton_mean_free_path_profile201)_ 1.16739395789336340e+05 -Electron-triton_mean_free_path_at_point_202______________________________ (len_plasma_electron_triton_mean_free_path_profile202)_ 1.16299057814586617e+05 -Electron-triton_mean_free_path_at_point_203______________________________ (len_plasma_electron_triton_mean_free_path_profile203)_ 1.15857536128995504e+05 -Electron-triton_mean_free_path_at_point_204______________________________ (len_plasma_electron_triton_mean_free_path_profile204)_ 1.15414845472140456e+05 -Electron-triton_mean_free_path_at_point_205______________________________ (len_plasma_electron_triton_mean_free_path_profile205)_ 1.14971000650991118e+05 -Electron-triton_mean_free_path_at_point_206______________________________ (len_plasma_electron_triton_mean_free_path_profile206)_ 1.14526016539751217e+05 -Electron-triton_mean_free_path_at_point_207______________________________ (len_plasma_electron_triton_mean_free_path_profile207)_ 1.14079908079697561e+05 -Electron-triton_mean_free_path_at_point_208______________________________ (len_plasma_electron_triton_mean_free_path_profile208)_ 1.13632690279017639e+05 -Electron-triton_mean_free_path_at_point_209______________________________ (len_plasma_electron_triton_mean_free_path_profile209)_ 1.13184378212641401e+05 -Electron-triton_mean_free_path_at_point_210______________________________ (len_plasma_electron_triton_mean_free_path_profile210)_ 1.12734987022071480e+05 -Electron-triton_mean_free_path_at_point_211______________________________ (len_plasma_electron_triton_mean_free_path_profile211)_ 1.12284531915210973e+05 -Electron-triton_mean_free_path_at_point_212______________________________ (len_plasma_electron_triton_mean_free_path_profile212)_ 1.11833028166185846e+05 -Electron-triton_mean_free_path_at_point_213______________________________ (len_plasma_electron_triton_mean_free_path_profile213)_ 1.11380491115166631e+05 -Electron-triton_mean_free_path_at_point_214______________________________ (len_plasma_electron_triton_mean_free_path_profile214)_ 1.10926936168183223e+05 -Electron-triton_mean_free_path_at_point_215______________________________ (len_plasma_electron_triton_mean_free_path_profile215)_ 1.10472378796941106e+05 -Electron-triton_mean_free_path_at_point_216______________________________ (len_plasma_electron_triton_mean_free_path_profile216)_ 1.10016834538629279e+05 -Electron-triton_mean_free_path_at_point_217______________________________ (len_plasma_electron_triton_mean_free_path_profile217)_ 1.09560318995728026e+05 -Electron-triton_mean_free_path_at_point_218______________________________ (len_plasma_electron_triton_mean_free_path_profile218)_ 1.09102847835811714e+05 -Electron-triton_mean_free_path_at_point_219______________________________ (len_plasma_electron_triton_mean_free_path_profile219)_ 1.08644436791347645e+05 -Electron-triton_mean_free_path_at_point_220______________________________ (len_plasma_electron_triton_mean_free_path_profile220)_ 1.08185101659494161e+05 -Electron-triton_mean_free_path_at_point_221______________________________ (len_plasma_electron_triton_mean_free_path_profile221)_ 1.07724858301889253e+05 -Electron-triton_mean_free_path_at_point_222______________________________ (len_plasma_electron_triton_mean_free_path_profile222)_ 1.07263722644442139e+05 -Electron-triton_mean_free_path_at_point_223______________________________ (len_plasma_electron_triton_mean_free_path_profile223)_ 1.06801710677116367e+05 -Electron-triton_mean_free_path_at_point_224______________________________ (len_plasma_electron_triton_mean_free_path_profile224)_ 1.06338838453710865e+05 -Electron-triton_mean_free_path_at_point_225______________________________ (len_plasma_electron_triton_mean_free_path_profile225)_ 1.05875122091636294e+05 -Electron-triton_mean_free_path_at_point_226______________________________ (len_plasma_electron_triton_mean_free_path_profile226)_ 1.05410577771689816e+05 -Electron-triton_mean_free_path_at_point_227______________________________ (len_plasma_electron_triton_mean_free_path_profile227)_ 1.04945221737821252e+05 -Electron-triton_mean_free_path_at_point_228______________________________ (len_plasma_electron_triton_mean_free_path_profile228)_ 1.04479070296899808e+05 -Electron-triton_mean_free_path_at_point_229______________________________ (len_plasma_electron_triton_mean_free_path_profile229)_ 1.04012139818474374e+05 -Electron-triton_mean_free_path_at_point_230______________________________ (len_plasma_electron_triton_mean_free_path_profile230)_ 1.03544446734530065e+05 -Electron-triton_mean_free_path_at_point_231______________________________ (len_plasma_electron_triton_mean_free_path_profile231)_ 1.03076007539239843e+05 -Electron-triton_mean_free_path_at_point_232______________________________ (len_plasma_electron_triton_mean_free_path_profile232)_ 1.02606838788713561e+05 -Electron-triton_mean_free_path_at_point_233______________________________ (len_plasma_electron_triton_mean_free_path_profile233)_ 1.02136957100740095e+05 -Electron-triton_mean_free_path_at_point_234______________________________ (len_plasma_electron_triton_mean_free_path_profile234)_ 1.01666379154528477e+05 -Electron-triton_mean_free_path_at_point_235______________________________ (len_plasma_electron_triton_mean_free_path_profile235)_ 1.01195121690441447e+05 -Electron-triton_mean_free_path_at_point_236______________________________ (len_plasma_electron_triton_mean_free_path_profile236)_ 1.00723201509725128e+05 -Electron-triton_mean_free_path_at_point_237______________________________ (len_plasma_electron_triton_mean_free_path_profile237)_ 1.00250635474236085e+05 -Electron-triton_mean_free_path_at_point_238______________________________ (len_plasma_electron_triton_mean_free_path_profile238)_ 9.97774405061611760e+04 -Electron-triton_mean_free_path_at_point_239______________________________ (len_plasma_electron_triton_mean_free_path_profile239)_ 9.93036335877341335e+04 -Electron-triton_mean_free_path_at_point_240______________________________ (len_plasma_electron_triton_mean_free_path_profile240)_ 9.88292317609472811e+04 -Electron-triton_mean_free_path_at_point_241______________________________ (len_plasma_electron_triton_mean_free_path_profile241)_ 9.83542521272577724e+04 -Electron-triton_mean_free_path_at_point_242______________________________ (len_plasma_electron_triton_mean_free_path_profile242)_ 9.78787118472891889e+04 -Electron-triton_mean_free_path_at_point_243______________________________ (len_plasma_electron_triton_mean_free_path_profile243)_ 9.74026281405294576e+04 -Electron-triton_mean_free_path_at_point_244______________________________ (len_plasma_electron_triton_mean_free_path_profile244)_ 9.69260182850203128e+04 -Electron-triton_mean_free_path_at_point_245______________________________ (len_plasma_electron_triton_mean_free_path_profile245)_ 9.64488996170468745e+04 -Electron-triton_mean_free_path_at_point_246______________________________ (len_plasma_electron_triton_mean_free_path_profile246)_ 9.59712895308168227e+04 -Electron-triton_mean_free_path_at_point_247______________________________ (len_plasma_electron_triton_mean_free_path_profile247)_ 9.54932054781371990e+04 -Electron-triton_mean_free_path_at_point_248______________________________ (len_plasma_electron_triton_mean_free_path_profile248)_ 9.50146649680868140e+04 -Electron-triton_mean_free_path_at_point_249______________________________ (len_plasma_electron_triton_mean_free_path_profile249)_ 9.45356855666792835e+04 -Electron-triton_mean_free_path_at_point_250______________________________ (len_plasma_electron_triton_mean_free_path_profile250)_ 9.40562848965255980e+04 -Electron-triton_mean_free_path_at_point_251______________________________ (len_plasma_electron_triton_mean_free_path_profile251)_ 9.35764806364880205e+04 -Electron-triton_mean_free_path_at_point_252______________________________ (len_plasma_electron_triton_mean_free_path_profile252)_ 9.30962905213293852e+04 -Electron-triton_mean_free_path_at_point_253______________________________ (len_plasma_electron_triton_mean_free_path_profile253)_ 9.26157323413555569e+04 -Electron-triton_mean_free_path_at_point_254______________________________ (len_plasma_electron_triton_mean_free_path_profile254)_ 9.21348239420557948e+04 -Electron-triton_mean_free_path_at_point_255______________________________ (len_plasma_electron_triton_mean_free_path_profile255)_ 9.16535832237315917e+04 -Electron-triton_mean_free_path_at_point_256______________________________ (len_plasma_electron_triton_mean_free_path_profile256)_ 9.11720281411268807e+04 -Electron-triton_mean_free_path_at_point_257______________________________ (len_plasma_electron_triton_mean_free_path_profile257)_ 9.06901767030451301e+04 -Electron-triton_mean_free_path_at_point_258______________________________ (len_plasma_electron_triton_mean_free_path_profile258)_ 9.02080469719653920e+04 -Electron-triton_mean_free_path_at_point_259______________________________ (len_plasma_electron_triton_mean_free_path_profile259)_ 8.97256570636509859e+04 -Electron-triton_mean_free_path_at_point_260______________________________ (len_plasma_electron_triton_mean_free_path_profile260)_ 8.92430251467509370e+04 -Electron-triton_mean_free_path_at_point_261______________________________ (len_plasma_electron_triton_mean_free_path_profile261)_ 8.87601694423970766e+04 -Electron-triton_mean_free_path_at_point_262______________________________ (len_plasma_electron_triton_mean_free_path_profile262)_ 8.82771082237937371e+04 -Electron-triton_mean_free_path_at_point_263______________________________ (len_plasma_electron_triton_mean_free_path_profile263)_ 8.77938598158009845e+04 -Electron-triton_mean_free_path_at_point_264______________________________ (len_plasma_electron_triton_mean_free_path_profile264)_ 8.73104425945129769e+04 -Electron-triton_mean_free_path_at_point_265______________________________ (len_plasma_electron_triton_mean_free_path_profile265)_ 8.68268749868286250e+04 -Electron-triton_mean_free_path_at_point_266______________________________ (len_plasma_electron_triton_mean_free_path_profile266)_ 8.63431754700148158e+04 -Electron-triton_mean_free_path_at_point_267______________________________ (len_plasma_electron_triton_mean_free_path_profile267)_ 8.58593625712655776e+04 -Electron-triton_mean_free_path_at_point_268______________________________ (len_plasma_electron_triton_mean_free_path_profile268)_ 8.53754548672532837e+04 -Electron-triton_mean_free_path_at_point_269______________________________ (len_plasma_electron_triton_mean_free_path_profile269)_ 8.48914709836729307e+04 -Electron-triton_mean_free_path_at_point_270______________________________ (len_plasma_electron_triton_mean_free_path_profile270)_ 8.44074295947792270e+04 -Electron-triton_mean_free_path_at_point_271______________________________ (len_plasma_electron_triton_mean_free_path_profile271)_ 8.39233494229189673e+04 -Electron-triton_mean_free_path_at_point_272______________________________ (len_plasma_electron_triton_mean_free_path_profile272)_ 8.34392492380534095e+04 -Electron-triton_mean_free_path_at_point_273______________________________ (len_plasma_electron_triton_mean_free_path_profile273)_ 8.29551478572765482e+04 -Electron-triton_mean_free_path_at_point_274______________________________ (len_plasma_electron_triton_mean_free_path_profile274)_ 8.24710641443252534e+04 -Electron-triton_mean_free_path_at_point_275______________________________ (len_plasma_electron_triton_mean_free_path_profile275)_ 8.19870170090807223e+04 -Electron-triton_mean_free_path_at_point_276______________________________ (len_plasma_electron_triton_mean_free_path_profile276)_ 8.15030254070666851e+04 -Electron-triton_mean_free_path_at_point_277______________________________ (len_plasma_electron_triton_mean_free_path_profile277)_ 8.10191083389358391e+04 -Electron-triton_mean_free_path_at_point_278______________________________ (len_plasma_electron_triton_mean_free_path_profile278)_ 8.05352848499513930e+04 -Electron-triton_mean_free_path_at_point_279______________________________ (len_plasma_electron_triton_mean_free_path_profile279)_ 8.00515740294628049e+04 -Electron-triton_mean_free_path_at_point_280______________________________ (len_plasma_electron_triton_mean_free_path_profile280)_ 7.95679950103705633e+04 -Electron-triton_mean_free_path_at_point_281______________________________ (len_plasma_electron_triton_mean_free_path_profile281)_ 7.90845669685856119e+04 -Electron-triton_mean_free_path_at_point_282______________________________ (len_plasma_electron_triton_mean_free_path_profile282)_ 7.86013091224810632e+04 -Electron-triton_mean_free_path_at_point_283______________________________ (len_plasma_electron_triton_mean_free_path_profile283)_ 7.81182407323370571e+04 -Electron-triton_mean_free_path_at_point_284______________________________ (len_plasma_electron_triton_mean_free_path_profile284)_ 7.76353810997757100e+04 -Electron-triton_mean_free_path_at_point_285______________________________ (len_plasma_electron_triton_mean_free_path_profile285)_ 7.71527495671909128e+04 -Electron-triton_mean_free_path_at_point_286______________________________ (len_plasma_electron_triton_mean_free_path_profile286)_ 7.66703655171685969e+04 -Electron-triton_mean_free_path_at_point_287______________________________ (len_plasma_electron_triton_mean_free_path_profile287)_ 7.61882483719005249e+04 -Electron-triton_mean_free_path_at_point_288______________________________ (len_plasma_electron_triton_mean_free_path_profile288)_ 7.57064175925895106e+04 -Electron-triton_mean_free_path_at_point_289______________________________ (len_plasma_electron_triton_mean_free_path_profile289)_ 7.52248926788467797e+04 -Electron-triton_mean_free_path_at_point_290______________________________ (len_plasma_electron_triton_mean_free_path_profile290)_ 7.47436931680815178e+04 -Electron-triton_mean_free_path_at_point_291______________________________ (len_plasma_electron_triton_mean_free_path_profile291)_ 7.42628386348833155e+04 -Electron-triton_mean_free_path_at_point_292______________________________ (len_plasma_electron_triton_mean_free_path_profile292)_ 7.37823486903949815e+04 -Electron-triton_mean_free_path_at_point_293______________________________ (len_plasma_electron_triton_mean_free_path_profile293)_ 7.33022429816788353e+04 -Electron-triton_mean_free_path_at_point_294______________________________ (len_plasma_electron_triton_mean_free_path_profile294)_ 7.28225411910736439e+04 -Electron-triton_mean_free_path_at_point_295______________________________ (len_plasma_electron_triton_mean_free_path_profile295)_ 7.23432630355452275e+04 -Electron-triton_mean_free_path_at_point_296______________________________ (len_plasma_electron_triton_mean_free_path_profile296)_ 7.18644282660273748e+04 -Electron-triton_mean_free_path_at_point_297______________________________ (len_plasma_electron_triton_mean_free_path_profile297)_ 7.13860566667555395e+04 -Electron-triton_mean_free_path_at_point_298______________________________ (len_plasma_electron_triton_mean_free_path_profile298)_ 7.09081680545918352e+04 -Electron-triton_mean_free_path_at_point_299______________________________ (len_plasma_electron_triton_mean_free_path_profile299)_ 7.04307822783420706e+04 -Electron-triton_mean_free_path_at_point_300______________________________ (len_plasma_electron_triton_mean_free_path_profile300)_ 6.99539192180656974e+04 -Electron-triton_mean_free_path_at_point_301______________________________ (len_plasma_electron_triton_mean_free_path_profile301)_ 6.94775987843758194e+04 -Electron-triton_mean_free_path_at_point_302______________________________ (len_plasma_electron_triton_mean_free_path_profile302)_ 6.90018409177325520e+04 -Electron-triton_mean_free_path_at_point_303______________________________ (len_plasma_electron_triton_mean_free_path_profile303)_ 6.85266655877267476e+04 -Electron-triton_mean_free_path_at_point_304______________________________ (len_plasma_electron_triton_mean_free_path_profile304)_ 6.80520927923587733e+04 -Electron-triton_mean_free_path_at_point_305______________________________ (len_plasma_electron_triton_mean_free_path_profile305)_ 6.75781425573041197e+04 -Electron-triton_mean_free_path_at_point_306______________________________ (len_plasma_electron_triton_mean_free_path_profile306)_ 6.71048349351763900e+04 -Electron-triton_mean_free_path_at_point_307______________________________ (len_plasma_electron_triton_mean_free_path_profile307)_ 6.66321900047786767e+04 -Electron-triton_mean_free_path_at_point_308______________________________ (len_plasma_electron_triton_mean_free_path_profile308)_ 6.61602278703482734e+04 -Electron-triton_mean_free_path_at_point_309______________________________ (len_plasma_electron_triton_mean_free_path_profile309)_ 6.56889686607937329e+04 -Electron-triton_mean_free_path_at_point_310______________________________ (len_plasma_electron_triton_mean_free_path_profile310)_ 6.52184325289227199e+04 -Electron-triton_mean_free_path_at_point_311______________________________ (len_plasma_electron_triton_mean_free_path_profile311)_ 6.47486396506648525e+04 -Electron-triton_mean_free_path_at_point_312______________________________ (len_plasma_electron_triton_mean_free_path_profile312)_ 6.42796102242833294e+04 -Electron-triton_mean_free_path_at_point_313______________________________ (len_plasma_electron_triton_mean_free_path_profile313)_ 6.38113644695822513e+04 -Electron-triton_mean_free_path_at_point_314______________________________ (len_plasma_electron_triton_mean_free_path_profile314)_ 6.33439226271041698e+04 -Electron-triton_mean_free_path_at_point_315______________________________ (len_plasma_electron_triton_mean_free_path_profile315)_ 6.28773049573218159e+04 -Electron-triton_mean_free_path_at_point_316______________________________ (len_plasma_electron_triton_mean_free_path_profile316)_ 6.24115317398208717e+04 -Electron-triton_mean_free_path_at_point_317______________________________ (len_plasma_electron_triton_mean_free_path_profile317)_ 6.19466232724779256e+04 -Electron-triton_mean_free_path_at_point_318______________________________ (len_plasma_electron_triton_mean_free_path_profile318)_ 6.14825998706301325e+04 -Electron-triton_mean_free_path_at_point_319______________________________ (len_plasma_electron_triton_mean_free_path_profile319)_ 6.10194818662371908e+04 -Electron-triton_mean_free_path_at_point_320______________________________ (len_plasma_electron_triton_mean_free_path_profile320)_ 6.05572896070399875e+04 -Electron-triton_mean_free_path_at_point_321______________________________ (len_plasma_electron_triton_mean_free_path_profile321)_ 6.00960434557079643e+04 -Electron-triton_mean_free_path_at_point_322______________________________ (len_plasma_electron_triton_mean_free_path_profile322)_ 5.96357637889861580e+04 -Electron-triton_mean_free_path_at_point_323______________________________ (len_plasma_electron_triton_mean_free_path_profile323)_ 5.91764709968310344e+04 -Electron-triton_mean_free_path_at_point_324______________________________ (len_plasma_electron_triton_mean_free_path_profile324)_ 5.87181854815442566e+04 -Electron-triton_mean_free_path_at_point_325______________________________ (len_plasma_electron_triton_mean_free_path_profile325)_ 5.82609276568992791e+04 -Electron-triton_mean_free_path_at_point_326______________________________ (len_plasma_electron_triton_mean_free_path_profile326)_ 5.78047179472636562e+04 -Electron-triton_mean_free_path_at_point_327______________________________ (len_plasma_electron_triton_mean_free_path_profile327)_ 5.73495767867161994e+04 -Electron-triton_mean_free_path_at_point_328______________________________ (len_plasma_electron_triton_mean_free_path_profile328)_ 5.68955246181597613e+04 -Electron-triton_mean_free_path_at_point_329______________________________ (len_plasma_electron_triton_mean_free_path_profile329)_ 5.64425818924312262e+04 -Electron-triton_mean_free_path_at_point_330______________________________ (len_plasma_electron_triton_mean_free_path_profile330)_ 5.59907690674051701e+04 -Electron-triton_mean_free_path_at_point_331______________________________ (len_plasma_electron_triton_mean_free_path_profile331)_ 5.55401066070971865e+04 -Electron-triton_mean_free_path_at_point_332______________________________ (len_plasma_electron_triton_mean_free_path_profile332)_ 5.50906149807630500e+04 -Electron-triton_mean_free_path_at_point_333______________________________ (len_plasma_electron_triton_mean_free_path_profile333)_ 5.46423146619951367e+04 -Electron-triton_mean_free_path_at_point_334______________________________ (len_plasma_electron_triton_mean_free_path_profile334)_ 5.41952261278197693e+04 -Electron-triton_mean_free_path_at_point_335______________________________ (len_plasma_electron_triton_mean_free_path_profile335)_ 5.37493698577888645e+04 -Electron-triton_mean_free_path_at_point_336______________________________ (len_plasma_electron_triton_mean_free_path_profile336)_ 5.33047663330761497e+04 -Electron-triton_mean_free_path_at_point_337______________________________ (len_plasma_electron_triton_mean_free_path_profile337)_ 5.28614360355695098e+04 -Electron-triton_mean_free_path_at_point_338______________________________ (len_plasma_electron_triton_mean_free_path_profile338)_ 5.24193994469665340e+04 -Electron-triton_mean_free_path_at_point_339______________________________ (len_plasma_electron_triton_mean_free_path_profile339)_ 5.19786770478701947e+04 -Electron-triton_mean_free_path_at_point_340______________________________ (len_plasma_electron_triton_mean_free_path_profile340)_ 5.15392893168873707e+04 -Electron-triton_mean_free_path_at_point_341______________________________ (len_plasma_electron_triton_mean_free_path_profile341)_ 5.11012567297307469e+04 -Electron-triton_mean_free_path_at_point_342______________________________ (len_plasma_electron_triton_mean_free_path_profile342)_ 5.06645997583244316e+04 -Electron-triton_mean_free_path_at_point_343______________________________ (len_plasma_electron_triton_mean_free_path_profile343)_ 5.02293388699135321e+04 -Electron-triton_mean_free_path_at_point_344______________________________ (len_plasma_electron_triton_mean_free_path_profile344)_ 4.97954945261826360e+04 -Electron-triton_mean_free_path_at_point_345______________________________ (len_plasma_electron_triton_mean_free_path_profile345)_ 4.93630871823775378e+04 -Electron-triton_mean_free_path_at_point_346______________________________ (len_plasma_electron_triton_mean_free_path_profile346)_ 4.89321372864370278e+04 -Electron-triton_mean_free_path_at_point_347______________________________ (len_plasma_electron_triton_mean_free_path_profile347)_ 4.85026652781353332e+04 -Electron-triton_mean_free_path_at_point_348______________________________ (len_plasma_electron_triton_mean_free_path_profile348)_ 4.80746915882321046e+04 -Electron-triton_mean_free_path_at_point_349______________________________ (len_plasma_electron_triton_mean_free_path_profile349)_ 4.76482366376373320e+04 -Electron-triton_mean_free_path_at_point_350______________________________ (len_plasma_electron_triton_mean_free_path_profile350)_ 4.72233208365872197e+04 -Electron-triton_mean_free_path_at_point_351______________________________ (len_plasma_electron_triton_mean_free_path_profile351)_ 4.67999645838375654e+04 -Electron-triton_mean_free_path_at_point_352______________________________ (len_plasma_electron_triton_mean_free_path_profile352)_ 4.63781882658710456e+04 -Electron-triton_mean_free_path_at_point_353______________________________ (len_plasma_electron_triton_mean_free_path_profile353)_ 4.59580122561255921e+04 -Electron-triton_mean_free_path_at_point_354______________________________ (len_plasma_electron_triton_mean_free_path_profile354)_ 4.55394569142403852e+04 -Electron-triton_mean_free_path_at_point_355______________________________ (len_plasma_electron_triton_mean_free_path_profile355)_ 4.51225425853261695e+04 -Electron-triton_mean_free_path_at_point_356______________________________ (len_plasma_electron_triton_mean_free_path_profile356)_ 4.47072895992584599e+04 -Electron-triton_mean_free_path_at_point_357______________________________ (len_plasma_electron_triton_mean_free_path_profile357)_ 4.42937182699977129e+04 -Electron-triton_mean_free_path_at_point_358______________________________ (len_plasma_electron_triton_mean_free_path_profile358)_ 4.38818488949384628e+04 -Electron-triton_mean_free_path_at_point_359______________________________ (len_plasma_electron_triton_mean_free_path_profile359)_ 4.34717017542893591e+04 -Electron-triton_mean_free_path_at_point_360______________________________ (len_plasma_electron_triton_mean_free_path_profile360)_ 4.30632971104872777e+04 -Electron-triton_mean_free_path_at_point_361______________________________ (len_plasma_electron_triton_mean_free_path_profile361)_ 4.26566552076496446e+04 -Electron-triton_mean_free_path_at_point_362______________________________ (len_plasma_electron_triton_mean_free_path_profile362)_ 4.22517962710632564e+04 -Electron-triton_mean_free_path_at_point_363______________________________ (len_plasma_electron_triton_mean_free_path_profile363)_ 4.18487405067202853e+04 -Electron-triton_mean_free_path_at_point_364______________________________ (len_plasma_electron_triton_mean_free_path_profile364)_ 4.14475081008974084e+04 -Electron-triton_mean_free_path_at_point_365______________________________ (len_plasma_electron_triton_mean_free_path_profile365)_ 4.10481192197873097e+04 -Electron-triton_mean_free_path_at_point_366______________________________ (len_plasma_electron_triton_mean_free_path_profile366)_ 4.06505940091823577e+04 -Electron-triton_mean_free_path_at_point_367______________________________ (len_plasma_electron_triton_mean_free_path_profile367)_ 4.02549525942169348e+04 -Electron-triton_mean_free_path_at_point_368______________________________ (len_plasma_electron_triton_mean_free_path_profile368)_ 3.98612150791726308e+04 -Electron-triton_mean_free_path_at_point_369______________________________ (len_plasma_electron_triton_mean_free_path_profile369)_ 3.94694015473499967e+04 -Electron-triton_mean_free_path_at_point_370______________________________ (len_plasma_electron_triton_mean_free_path_profile370)_ 3.90795320610117560e+04 -Electron-triton_mean_free_path_at_point_371______________________________ (len_plasma_electron_triton_mean_free_path_profile371)_ 3.86916266614043634e+04 -Electron-triton_mean_free_path_at_point_372______________________________ (len_plasma_electron_triton_mean_free_path_profile372)_ 3.83057053688608794e+04 -Electron-triton_mean_free_path_at_point_373______________________________ (len_plasma_electron_triton_mean_free_path_profile373)_ 3.79217881829942635e+04 -Electron-triton_mean_free_path_at_point_374______________________________ (len_plasma_electron_triton_mean_free_path_profile374)_ 3.75398950829843525e+04 -Electron-triton_mean_free_path_at_point_375______________________________ (len_plasma_electron_triton_mean_free_path_profile375)_ 3.71600460279667241e+04 -Electron-triton_mean_free_path_at_point_376______________________________ (len_plasma_electron_triton_mean_free_path_profile376)_ 3.67822609575330862e+04 -Electron-triton_mean_free_path_at_point_377______________________________ (len_plasma_electron_triton_mean_free_path_profile377)_ 3.64065597923442983e+04 -Electron-triton_mean_free_path_at_point_378______________________________ (len_plasma_electron_triton_mean_free_path_profile378)_ 3.60329624348723155e+04 -Electron-triton_mean_free_path_at_point_379______________________________ (len_plasma_electron_triton_mean_free_path_profile379)_ 3.56614887702738197e+04 -Electron-triton_mean_free_path_at_point_380______________________________ (len_plasma_electron_triton_mean_free_path_profile380)_ 3.52921586674075079e+04 -Electron-triton_mean_free_path_at_point_381______________________________ (len_plasma_electron_triton_mean_free_path_profile381)_ 3.49249919800050557e+04 -Electron-triton_mean_free_path_at_point_382______________________________ (len_plasma_electron_triton_mean_free_path_profile382)_ 3.45600085480053822e+04 -Electron-triton_mean_free_path_at_point_383______________________________ (len_plasma_electron_triton_mean_free_path_profile383)_ 3.41972281990644260e+04 -Electron-triton_mean_free_path_at_point_384______________________________ (len_plasma_electron_triton_mean_free_path_profile384)_ 3.38366707502526187e+04 -Electron-triton_mean_free_path_at_point_385______________________________ (len_plasma_electron_triton_mean_free_path_profile385)_ 3.34783560099532915e+04 -Electron-triton_mean_free_path_at_point_386______________________________ (len_plasma_electron_triton_mean_free_path_profile386)_ 3.31223037799750018e+04 -Electron-triton_mean_free_path_at_point_387______________________________ (len_plasma_electron_triton_mean_free_path_profile387)_ 3.27685338578950250e+04 -Electron-triton_mean_free_path_at_point_388______________________________ (len_plasma_electron_triton_mean_free_path_profile388)_ 3.24170660396471430e+04 -Electron-triton_mean_free_path_at_point_389______________________________ (len_plasma_electron_triton_mean_free_path_profile389)_ 3.20679201223737036e+04 -Electron-triton_mean_free_path_at_point_390______________________________ (len_plasma_electron_triton_mean_free_path_profile390)_ 3.17211159075588585e+04 -Electron-triton_mean_free_path_at_point_391______________________________ (len_plasma_electron_triton_mean_free_path_profile391)_ 3.13766732044639284e+04 -Electron-triton_mean_free_path_at_point_392______________________________ (len_plasma_electron_triton_mean_free_path_profile392)_ 3.10346118338849810e+04 -Electron-triton_mean_free_path_at_point_393______________________________ (len_plasma_electron_triton_mean_free_path_profile393)_ 3.06949516322569543e+04 -Electron-triton_mean_free_path_at_point_394______________________________ (len_plasma_electron_triton_mean_free_path_profile394)_ 3.03577124561294731e+04 -Electron-triton_mean_free_path_at_point_395______________________________ (len_plasma_electron_triton_mean_free_path_profile395)_ 3.00229141870377534e+04 -Electron-triton_mean_free_path_at_point_396______________________________ (len_plasma_electron_triton_mean_free_path_profile396)_ 2.96905767368018387e+04 -Electron-triton_mean_free_path_at_point_397______________________________ (len_plasma_electron_triton_mean_free_path_profile397)_ 2.93607200532825300e+04 -Electron-triton_mean_free_path_at_point_398______________________________ (len_plasma_electron_triton_mean_free_path_profile398)_ 2.90333641266268787e+04 -Electron-triton_mean_free_path_at_point_399______________________________ (len_plasma_electron_triton_mean_free_path_profile399)_ 2.87085289960406735e+04 -Electron-triton_mean_free_path_at_point_400______________________________ (len_plasma_electron_triton_mean_free_path_profile400)_ 2.83862347571278187e+04 -Electron-triton_mean_free_path_at_point_401______________________________ (len_plasma_electron_triton_mean_free_path_profile401)_ 2.80665015698352690e+04 -Electron-triton_mean_free_path_at_point_402______________________________ (len_plasma_electron_triton_mean_free_path_profile402)_ 2.77493496670532222e+04 -Electron-triton_mean_free_path_at_point_403______________________________ (len_plasma_electron_triton_mean_free_path_profile403)_ 2.74347993639180386e+04 -Electron-triton_mean_free_path_at_point_404______________________________ (len_plasma_electron_triton_mean_free_path_profile404)_ 2.71228710678699645e+04 -Electron-triton_mean_free_path_at_point_405______________________________ (len_plasma_electron_triton_mean_free_path_profile405)_ 2.68135852895291791e+04 -Electron-triton_mean_free_path_at_point_406______________________________ (len_plasma_electron_triton_mean_free_path_profile406)_ 2.65069626544469138e+04 -Electron-triton_mean_free_path_at_point_407______________________________ (len_plasma_electron_triton_mean_free_path_profile407)_ 2.62030239158063996e+04 -Electron-triton_mean_free_path_at_point_408______________________________ (len_plasma_electron_triton_mean_free_path_profile408)_ 2.59017899681442323e+04 -Electron-triton_mean_free_path_at_point_409______________________________ (len_plasma_electron_triton_mean_free_path_profile409)_ 2.56032818621784390e+04 -Electron-triton_mean_free_path_at_point_410______________________________ (len_plasma_electron_triton_mean_free_path_profile410)_ 2.53075208208279910e+04 -Electron-triton_mean_free_path_at_point_411______________________________ (len_plasma_electron_triton_mean_free_path_profile411)_ 2.50145282565264279e+04 -Electron-triton_mean_free_path_at_point_412______________________________ (len_plasma_electron_triton_mean_free_path_profile412)_ 2.47243257899328819e+04 -Electron-triton_mean_free_path_at_point_413______________________________ (len_plasma_electron_triton_mean_free_path_profile413)_ 2.44369352701599528e+04 -Electron-triton_mean_free_path_at_point_414______________________________ (len_plasma_electron_triton_mean_free_path_profile414)_ 2.41523787966467644e+04 -Electron-triton_mean_free_path_at_point_415______________________________ (len_plasma_electron_triton_mean_free_path_profile415)_ 2.38706787428187017e+04 -Electron-triton_mean_free_path_at_point_416______________________________ (len_plasma_electron_triton_mean_free_path_profile416)_ 2.35918577816905345e+04 -Electron-triton_mean_free_path_at_point_417______________________________ (len_plasma_electron_triton_mean_free_path_profile417)_ 2.33159389135838792e+04 -Electron-triton_mean_free_path_at_point_418______________________________ (len_plasma_electron_triton_mean_free_path_profile418)_ 2.30429454961504889e+04 -Electron-triton_mean_free_path_at_point_419______________________________ (len_plasma_electron_triton_mean_free_path_profile419)_ 2.27729012769094697e+04 -Electron-triton_mean_free_path_at_point_420______________________________ (len_plasma_electron_triton_mean_free_path_profile420)_ 2.25058304285338818e+04 -Electron-triton_mean_free_path_at_point_421______________________________ (len_plasma_electron_triton_mean_free_path_profile421)_ 2.22417575871434346e+04 -Electron-triton_mean_free_path_at_point_422______________________________ (len_plasma_electron_triton_mean_free_path_profile422)_ 2.19807078938918603e+04 -Electron-triton_mean_free_path_at_point_423______________________________ (len_plasma_electron_triton_mean_free_path_profile423)_ 2.17227070401708916e+04 -Electron-triton_mean_free_path_at_point_424______________________________ (len_plasma_electron_triton_mean_free_path_profile424)_ 2.14677813167868480e+04 -Electron-triton_mean_free_path_at_point_425______________________________ (len_plasma_electron_triton_mean_free_path_profile425)_ 2.12159576675131320e+04 -Electron-triton_mean_free_path_at_point_426______________________________ (len_plasma_electron_triton_mean_free_path_profile426)_ 2.09672637474682379e+04 -Electron-triton_mean_free_path_at_point_427______________________________ (len_plasma_electron_triton_mean_free_path_profile427)_ 2.07217279868252481e+04 -Electron-triton_mean_free_path_at_point_428______________________________ (len_plasma_electron_triton_mean_free_path_profile428)_ 2.04793796604248164e+04 -Electron-triton_mean_free_path_at_point_429______________________________ (len_plasma_electron_triton_mean_free_path_profile429)_ 2.02402489639362466e+04 -Electron-triton_mean_free_path_at_point_430______________________________ (len_plasma_electron_triton_mean_free_path_profile430)_ 2.00043670972985783e+04 -Electron-triton_mean_free_path_at_point_431______________________________ (len_plasma_electron_triton_mean_free_path_profile431)_ 1.97717663562742709e+04 -Electron-triton_mean_free_path_at_point_432______________________________ (len_plasma_electron_triton_mean_free_path_profile432)_ 1.95424802330641396e+04 -Electron-triton_mean_free_path_at_point_433______________________________ (len_plasma_electron_triton_mean_free_path_profile433)_ 1.93165435270681191e+04 -Electron-triton_mean_free_path_at_point_434______________________________ (len_plasma_electron_triton_mean_free_path_profile434)_ 1.90939924670390319e+04 -Electron-triton_mean_free_path_at_point_435______________________________ (len_plasma_electron_triton_mean_free_path_profile435)_ 1.88748648460620134e+04 -Electron-triton_mean_free_path_at_point_436______________________________ (len_plasma_electron_triton_mean_free_path_profile436)_ 1.86592001710225086e+04 -Electron-triton_mean_free_path_at_point_437______________________________ (len_plasma_electron_triton_mean_free_path_profile437)_ 1.84470398284834046e+04 -Electron-triton_mean_free_path_at_point_438______________________________ (len_plasma_electron_triton_mean_free_path_profile438)_ 1.82384272692206323e+04 -Electron-triton_mean_free_path_at_point_439______________________________ (len_plasma_electron_triton_mean_free_path_profile439)_ 1.80334082140409664e+04 -Electron-triton_mean_free_path_at_point_440______________________________ (len_plasma_electron_triton_mean_free_path_profile440)_ 1.78320308839745230e+04 -Electron-triton_mean_free_path_at_point_441______________________________ (len_plasma_electron_triton_mean_free_path_profile441)_ 1.76343462584927802e+04 -Electron-triton_mean_free_path_at_point_442______________________________ (len_plasma_electron_triton_mean_free_path_profile442)_ 1.74404083660944088e+04 -Electron-triton_mean_free_path_at_point_443______________________________ (len_plasma_electron_triton_mean_free_path_profile443)_ 1.72502746124418663e+04 -Electron-triton_mean_free_path_at_point_444______________________________ (len_plasma_electron_triton_mean_free_path_profile444)_ 1.70640061522863434e+04 -Electron-triton_mean_free_path_at_point_445______________________________ (len_plasma_electron_triton_mean_free_path_profile445)_ 1.68816683127229117e+04 -Electron-triton_mean_free_path_at_point_446______________________________ (len_plasma_electron_triton_mean_free_path_profile446)_ 1.67033310769632080e+04 -Electron-triton_mean_free_path_at_point_447______________________________ (len_plasma_electron_triton_mean_free_path_profile447)_ 1.65290696399096996e+04 -Electron-triton_mean_free_path_at_point_448______________________________ (len_plasma_electron_triton_mean_free_path_profile448)_ 1.63589650494792695e+04 -Electron-triton_mean_free_path_at_point_449______________________________ (len_plasma_electron_triton_mean_free_path_profile449)_ 1.61931049510997382e+04 -Electron-triton_mean_free_path_at_point_450______________________________ (len_plasma_electron_triton_mean_free_path_profile450)_ 1.60315844573128488e+04 -Electron-triton_mean_free_path_at_point_451______________________________ (len_plasma_electron_triton_mean_free_path_profile451)_ 1.58745071704155944e+04 -Electron-triton_mean_free_path_at_point_452______________________________ (len_plasma_electron_triton_mean_free_path_profile452)_ 1.57219863940820924e+04 -Electron-triton_mean_free_path_at_point_453______________________________ (len_plasma_electron_triton_mean_free_path_profile453)_ 1.55741465808098983e+04 -Electron-triton_mean_free_path_at_point_454______________________________ (len_plasma_electron_triton_mean_free_path_profile454)_ 1.54311250770594797e+04 -Electron-triton_mean_free_path_at_point_455______________________________ (len_plasma_electron_triton_mean_free_path_profile455)_ 1.52930742490593075e+04 -Electron-triton_mean_free_path_at_point_456______________________________ (len_plasma_electron_triton_mean_free_path_profile456)_ 1.51601641024126457e+04 -Electron-triton_mean_free_path_at_point_457______________________________ (len_plasma_electron_triton_mean_free_path_profile457)_ 1.50325855527291351e+04 -Electron-triton_mean_free_path_at_point_458______________________________ (len_plasma_electron_triton_mean_free_path_profile458)_ 1.49105545704588785e+04 -Electron-triton_mean_free_path_at_point_459______________________________ (len_plasma_electron_triton_mean_free_path_profile459)_ 1.47943175245349485e+04 -Electron-triton_mean_free_path_at_point_460______________________________ (len_plasma_electron_triton_mean_free_path_profile460)_ 1.46841582103493984e+04 -Electron-triton_mean_free_path_at_point_461______________________________ (len_plasma_electron_triton_mean_free_path_profile461)_ 1.45804073123356447e+04 -Electron-triton_mean_free_path_at_point_462______________________________ (len_plasma_electron_triton_mean_free_path_profile462)_ 1.44834555060189305e+04 -Electron-triton_mean_free_path_at_point_463______________________________ (len_plasma_electron_triton_mean_free_path_profile463)_ 1.43937722258153499e+04 -Electron-triton_mean_free_path_at_point_464______________________________ (len_plasma_electron_triton_mean_free_path_profile464)_ 1.43119337044370295e+04 -Electron-triton_mean_free_path_at_point_465______________________________ (len_plasma_electron_triton_mean_free_path_profile465)_ 1.42386671728993551e+04 -Electron-triton_mean_free_path_at_point_466______________________________ (len_plasma_electron_triton_mean_free_path_profile466)_ 1.41749256557746630e+04 -Electron-triton_mean_free_path_at_point_467______________________________ (len_plasma_electron_triton_mean_free_path_profile467)_ 1.41220276707910962e+04 -Electron-triton_mean_free_path_at_point_468______________________________ (len_plasma_electron_triton_mean_free_path_profile468)_ 1.40819600233373803e+04 -Electron-triton_mean_free_path_at_point_469______________________________ (len_plasma_electron_triton_mean_free_path_profile469)_ 1.40582289554550134e+04 -Electron-triton_mean_free_path_at_point_470______________________________ (len_plasma_electron_triton_mean_free_path_profile470)_ 1.40610674440808743e+04 -Electron-triton_mean_free_path_at_point_471______________________________ (len_plasma_electron_triton_mean_free_path_profile471)_ 1.33627488488697345e+04 -Electron-triton_mean_free_path_at_point_472______________________________ (len_plasma_electron_triton_mean_free_path_profile472)_ 1.26733178100530295e+04 -Electron-triton_mean_free_path_at_point_473______________________________ (len_plasma_electron_triton_mean_free_path_profile473)_ 1.19932101418005095e+04 -Electron-triton_mean_free_path_at_point_474______________________________ (len_plasma_electron_triton_mean_free_path_profile474)_ 1.13228885514402482e+04 -Electron-triton_mean_free_path_at_point_475______________________________ (len_plasma_electron_triton_mean_free_path_profile475)_ 1.06628447585406739e+04 -Electron-triton_mean_free_path_at_point_476______________________________ (len_plasma_electron_triton_mean_free_path_profile476)_ 1.00136018221859977e+04 -Electron-triton_mean_free_path_at_point_477______________________________ (len_plasma_electron_triton_mean_free_path_profile477)_ 9.37571670173256825e+03 -Electron-triton_mean_free_path_at_point_478______________________________ (len_plasma_electron_triton_mean_free_path_profile478)_ 8.74978308014874710e+03 -Electron-triton_mean_free_path_at_point_479______________________________ (len_plasma_electron_triton_mean_free_path_profile479)_ 8.13643448359594368e+03 -Electron-triton_mean_free_path_at_point_480______________________________ (len_plasma_electron_triton_mean_free_path_profile480)_ 7.53634773637323997e+03 -Electron-triton_mean_free_path_at_point_481______________________________ (len_plasma_electron_triton_mean_free_path_profile481)_ 6.95024679696051862e+03 -Electron-triton_mean_free_path_at_point_482______________________________ (len_plasma_electron_triton_mean_free_path_profile482)_ 6.37890702898098152e+03 -Electron-triton_mean_free_path_at_point_483______________________________ (len_plasma_electron_triton_mean_free_path_profile483)_ 5.82315997088908989e+03 -Electron-triton_mean_free_path_at_point_484______________________________ (len_plasma_electron_triton_mean_free_path_profile484)_ 5.28389868068321175e+03 -Electron-triton_mean_free_path_at_point_485______________________________ (len_plasma_electron_triton_mean_free_path_profile485)_ 4.76208374780006216e+03 -Electron-triton_mean_free_path_at_point_486______________________________ (len_plasma_electron_triton_mean_free_path_profile486)_ 4.25875008480272936e+03 -Electron-triton_mean_free_path_at_point_487______________________________ (len_plasma_electron_triton_mean_free_path_profile487)_ 3.77501463838287145e+03 -Electron-triton_mean_free_path_at_point_488______________________________ (len_plasma_electron_triton_mean_free_path_profile488)_ 3.31208519538266683e+03 -Electron-triton_mean_free_path_at_point_489______________________________ (len_plasma_electron_triton_mean_free_path_profile489)_ 2.87127050947686985e+03 -Electron-triton_mean_free_path_at_point_490______________________________ (len_plasma_electron_triton_mean_free_path_profile490)_ 2.45399204516771897e+03 -Electron-triton_mean_free_path_at_point_491______________________________ (len_plasma_electron_triton_mean_free_path_profile491)_ 2.06179774032490604e+03 -Electron-triton_mean_free_path_at_point_492______________________________ (len_plasma_electron_triton_mean_free_path_profile492)_ 1.69637834897191192e+03 -Electron-triton_mean_free_path_at_point_493______________________________ (len_plasma_electron_triton_mean_free_path_profile493)_ 1.35958718438713095e+03 -Electron-triton_mean_free_path_at_point_494______________________________ (len_plasma_electron_triton_mean_free_path_profile494)_ 1.05346452315684746e+03 -Electron-triton_mean_free_path_at_point_495______________________________ (len_plasma_electron_triton_mean_free_path_profile495)_ 7.80268735936354801e+02 -Electron-triton_mean_free_path_at_point_496______________________________ (len_plasma_electron_triton_mean_free_path_profile496)_ 5.42517813865321727e+02 -Electron-triton_mean_free_path_at_point_497______________________________ (len_plasma_electron_triton_mean_free_path_profile497)_ 3.43048524552312927e+02 -Electron-triton_mean_free_path_at_point_498______________________________ (len_plasma_electron_triton_mean_free_path_profile498)_ 1.85109645654323174e+02 -Electron-triton_mean_free_path_at_point_499______________________________ (len_plasma_electron_triton_mean_free_path_profile499)_ 7.25355597374380352e+01 -Electron-triton_mean_free_path_at_point_500______________________________ (len_plasma_electron_triton_mean_free_path_profile500)_ 1.01924252801034161e+01 -Volume_averaged_electron-alpha_thermal_mean_free_path_(λₑα)_(m)__________ (len_plasma_electron_alpha_thermal_mean_free_path_vol_avg)_ 7.05605290139802382e+04 -Electron-alpha_thermal_mean_free_path_at_point_0_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile0)_ 2.16872498902259773e+05 -Electron-alpha_thermal_mean_free_path_at_point_1_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile1)_ 2.16870744914624345e+05 -Electron-alpha_thermal_mean_free_path_at_point_2_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile2)_ 2.16865482999931235e+05 -Electron-alpha_thermal_mean_free_path_at_point_3_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile3)_ 2.16856713302817894e+05 -Electron-alpha_thermal_mean_free_path_at_point_4_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile4)_ 2.16844436064346752e+05 -Electron-alpha_thermal_mean_free_path_at_point_5_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile5)_ 2.16828651622006524e+05 -Electron-alpha_thermal_mean_free_path_at_point_6_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile6)_ 2.16809360409710847e+05 -Electron-alpha_thermal_mean_free_path_at_point_7_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile7)_ 2.16786562957799237e+05 -Electron-alpha_thermal_mean_free_path_at_point_8_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile8)_ 2.16760259893039183e+05 -Electron-alpha_thermal_mean_free_path_at_point_9_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile9)_ 2.16730451938623417e+05 -Electron-alpha_thermal_mean_free_path_at_point_10________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile10)_ 2.16697139914173225e+05 -Electron-alpha_thermal_mean_free_path_at_point_11________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile11)_ 2.16660324735739152e+05 -Electron-alpha_thermal_mean_free_path_at_point_12________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile12)_ 2.16620007415799017e+05 -Electron-alpha_thermal_mean_free_path_at_point_13________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile13)_ 2.16576189063261932e+05 -Electron-alpha_thermal_mean_free_path_at_point_14________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile14)_ 2.16528870883467607e+05 -Electron-alpha_thermal_mean_free_path_at_point_15________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile15)_ 2.16478054178187653e+05 -Electron-alpha_thermal_mean_free_path_at_point_16________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile16)_ 2.16423740345627273e+05 -Electron-alpha_thermal_mean_free_path_at_point_17________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile17)_ 2.16365930880424770e+05 -Electron-alpha_thermal_mean_free_path_at_point_18________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile18)_ 2.16304627373654774e+05 -Electron-alpha_thermal_mean_free_path_at_point_19________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile19)_ 2.16239831512828445e+05 -Electron-alpha_thermal_mean_free_path_at_point_20________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile20)_ 2.16171545081894699e+05 -Electron-alpha_thermal_mean_free_path_at_point_21________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile21)_ 2.16099769961241836e+05 -Electron-alpha_thermal_mean_free_path_at_point_22________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile22)_ 2.16024508127699693e+05 -Electron-alpha_thermal_mean_free_path_at_point_23________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile23)_ 2.15945761654540052e+05 -Electron-alpha_thermal_mean_free_path_at_point_24________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile24)_ 2.15863532711479114e+05 -Electron-alpha_thermal_mean_free_path_at_point_25________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile25)_ 2.15777823564679653e+05 -Electron-alpha_thermal_mean_free_path_at_point_26________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile26)_ 2.15688636576750112e+05 -Electron-alpha_thermal_mean_free_path_at_point_27________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile27)_ 2.15595974206749001e+05 -Electron-alpha_thermal_mean_free_path_at_point_28________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile28)_ 2.15499839010187337e+05 -Electron-alpha_thermal_mean_free_path_at_point_29________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile29)_ 2.15400233639026817e+05 -Electron-alpha_thermal_mean_free_path_at_point_30________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile30)_ 2.15297160841685167e+05 -Electron-alpha_thermal_mean_free_path_at_point_31________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile31)_ 2.15190623463037336e+05 -Electron-alpha_thermal_mean_free_path_at_point_32________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile32)_ 2.15080624444415647e+05 -Electron-alpha_thermal_mean_free_path_at_point_33________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile33)_ 2.14967166823614505e+05 -Electron-alpha_thermal_mean_free_path_at_point_34________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile34)_ 2.14850253734890255e+05 -Electron-alpha_thermal_mean_free_path_at_point_35________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile35)_ 2.14729888408964558e+05 -Electron-alpha_thermal_mean_free_path_at_point_36________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile36)_ 2.14606074173025467e+05 -Electron-alpha_thermal_mean_free_path_at_point_37________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile37)_ 2.14478814450731006e+05 -Electron-alpha_thermal_mean_free_path_at_point_38________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile38)_ 2.14348112762209785e+05 -Electron-alpha_thermal_mean_free_path_at_point_39________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile39)_ 2.14213972724063380e+05 -Electron-alpha_thermal_mean_free_path_at_point_40________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile40)_ 2.14076398049369076e+05 -Electron-alpha_thermal_mean_free_path_at_point_41________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile41)_ 2.13935392547681258e+05 -Electron-alpha_thermal_mean_free_path_at_point_42________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile42)_ 2.13790960125035490e+05 -Electron-alpha_thermal_mean_free_path_at_point_43________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile43)_ 2.13643104783946241e+05 -Electron-alpha_thermal_mean_free_path_at_point_44________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile44)_ 2.13491830623414600e+05 -Electron-alpha_thermal_mean_free_path_at_point_45________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile45)_ 2.13337141838926211e+05 -Electron-alpha_thermal_mean_free_path_at_point_46________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile46)_ 2.13179042722454760e+05 -Electron-alpha_thermal_mean_free_path_at_point_47________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile47)_ 2.13017537662463816e+05 -Electron-alpha_thermal_mean_free_path_at_point_48________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile48)_ 2.12852631143909821e+05 -Electron-alpha_thermal_mean_free_path_at_point_49________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile49)_ 2.12684327748241805e+05 -Electron-alpha_thermal_mean_free_path_at_point_50________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile50)_ 2.12512632153405575e+05 -Electron-alpha_thermal_mean_free_path_at_point_51________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile51)_ 2.12337549133844412e+05 -Electron-alpha_thermal_mean_free_path_at_point_52________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile52)_ 2.12159083560500352e+05 -Electron-alpha_thermal_mean_free_path_at_point_53________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile53)_ 2.11977240400818497e+05 -Electron-alpha_thermal_mean_free_path_at_point_54________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile54)_ 2.11792024718744971e+05 -Electron-alpha_thermal_mean_free_path_at_point_55________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile55)_ 2.11603441674730857e+05 -Electron-alpha_thermal_mean_free_path_at_point_56________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile56)_ 2.11411496525733819e+05 -Electron-alpha_thermal_mean_free_path_at_point_57________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile57)_ 2.11216194625217846e+05 -Electron-alpha_thermal_mean_free_path_at_point_58________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile58)_ 2.11017541423157556e+05 -Electron-alpha_thermal_mean_free_path_at_point_59________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile59)_ 2.10815542466035200e+05 -Electron-alpha_thermal_mean_free_path_at_point_60________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile60)_ 2.10610203396845289e+05 -Electron-alpha_thermal_mean_free_path_at_point_61________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile61)_ 2.10401529955094680e+05 -Electron-alpha_thermal_mean_free_path_at_point_62________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile62)_ 2.10189527976801939e+05 -Electron-alpha_thermal_mean_free_path_at_point_63________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile63)_ 2.09974203394501033e+05 -Electron-alpha_thermal_mean_free_path_at_point_64________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile64)_ 2.09755562237239006e+05 -Electron-alpha_thermal_mean_free_path_at_point_65________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile65)_ 2.09533610630577430e+05 -Electron-alpha_thermal_mean_free_path_at_point_66________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile66)_ 2.09308354796593718e+05 -Electron-alpha_thermal_mean_free_path_at_point_67________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile67)_ 2.09079801053880015e+05 -Electron-alpha_thermal_mean_free_path_at_point_68________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile68)_ 2.08847955817544454e+05 -Electron-alpha_thermal_mean_free_path_at_point_69________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile69)_ 2.08612825599209056e+05 -Electron-alpha_thermal_mean_free_path_at_point_70________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile70)_ 2.08374417007010488e+05 -Electron-alpha_thermal_mean_free_path_at_point_71________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile71)_ 2.08132736745600385e+05 -Electron-alpha_thermal_mean_free_path_at_point_72________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile72)_ 2.07887791616142000e+05 -Electron-alpha_thermal_mean_free_path_at_point_73________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile73)_ 2.07639588516312651e+05 -Electron-alpha_thermal_mean_free_path_at_point_74________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile74)_ 2.07388134440299938e+05 -Electron-alpha_thermal_mean_free_path_at_point_75________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile75)_ 2.07133436478799122e+05 -Electron-alpha_thermal_mean_free_path_at_point_76________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile76)_ 2.06875501819016703e+05 -Electron-alpha_thermal_mean_free_path_at_point_77________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile77)_ 2.06614337744662771e+05 -Electron-alpha_thermal_mean_free_path_at_point_78________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile78)_ 2.06349951635951234e+05 -Electron-alpha_thermal_mean_free_path_at_point_79________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile79)_ 2.06082350969597261e+05 -Electron-alpha_thermal_mean_free_path_at_point_80________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile80)_ 2.05811543318815617e+05 -Electron-alpha_thermal_mean_free_path_at_point_81________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile81)_ 2.05537536353315198e+05 -Electron-alpha_thermal_mean_free_path_at_point_82________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile82)_ 2.05260337839296466e+05 -Electron-alpha_thermal_mean_free_path_at_point_83________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile83)_ 2.04979955639449967e+05 -Electron-alpha_thermal_mean_free_path_at_point_84________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile84)_ 2.04696397712949838e+05 -Electron-alpha_thermal_mean_free_path_at_point_85________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile85)_ 2.04409672115449561e+05 -Electron-alpha_thermal_mean_free_path_at_point_86________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile86)_ 2.04119786999078467e+05 -Electron-alpha_thermal_mean_free_path_at_point_87________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile87)_ 2.03826750612436794e+05 -Electron-alpha_thermal_mean_free_path_at_point_88________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile88)_ 2.03530571300589130e+05 -Electron-alpha_thermal_mean_free_path_at_point_89________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile89)_ 2.03231257505060261e+05 -Electron-alpha_thermal_mean_free_path_at_point_90________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile90)_ 2.02928817763826140e+05 -Electron-alpha_thermal_mean_free_path_at_point_91________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile91)_ 2.02623260711310693e+05 -Electron-alpha_thermal_mean_free_path_at_point_92________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile92)_ 2.02314595078377024e+05 -Electron-alpha_thermal_mean_free_path_at_point_93________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile93)_ 2.02002829692320811e+05 -Electron-alpha_thermal_mean_free_path_at_point_94________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile94)_ 2.01687973476860992e+05 -Electron-alpha_thermal_mean_free_path_at_point_95________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile95)_ 2.01370035452132812e+05 -Electron-alpha_thermal_mean_free_path_at_point_96________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile96)_ 2.01049024734679435e+05 -Electron-alpha_thermal_mean_free_path_at_point_97________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile97)_ 2.00724950537440629e+05 -Electron-alpha_thermal_mean_free_path_at_point_98________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile98)_ 2.00397822169745341e+05 -Electron-alpha_thermal_mean_free_path_at_point_99________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile99)_ 2.00067649037300609e+05 -Electron-alpha_thermal_mean_free_path_at_point_100_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile100)_ 1.99734440642179514e+05 -Electron-alpha_thermal_mean_free_path_at_point_101_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile101)_ 1.99398206582811865e+05 -Electron-alpha_thermal_mean_free_path_at_point_102_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile102)_ 1.99058956553971104e+05 -Electron-alpha_thermal_mean_free_path_at_point_103_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile103)_ 1.98716700346762809e+05 -Electron-alpha_thermal_mean_free_path_at_point_104_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile104)_ 1.98371447848610027e+05 -Electron-alpha_thermal_mean_free_path_at_point_105_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile105)_ 1.98023209043241222e+05 -Electron-alpha_thermal_mean_free_path_at_point_106_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile106)_ 1.97671994010676310e+05 -Electron-alpha_thermal_mean_free_path_at_point_107_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile107)_ 1.97317812927209481e+05 -Electron-alpha_thermal_mean_free_path_at_point_108_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile108)_ 1.96960676065397041e+05 -Electron-alpha_thermal_mean_free_path_at_point_109_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile109)_ 1.96600593794038490e+05 -Electron-alpha_thermal_mean_free_path_at_point_110_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile110)_ 1.96237576578160515e+05 -Electron-alpha_thermal_mean_free_path_at_point_111_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile111)_ 1.95871634979000548e+05 -Electron-alpha_thermal_mean_free_path_at_point_112_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile112)_ 1.95502779653987731e+05 -Electron-alpha_thermal_mean_free_path_at_point_113_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile113)_ 1.95131021356723650e+05 -Electron-alpha_thermal_mean_free_path_at_point_114_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile114)_ 1.94756370936962572e+05 -Electron-alpha_thermal_mean_free_path_at_point_115_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile115)_ 1.94378839340592356e+05 -Electron-alpha_thermal_mean_free_path_at_point_116_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile116)_ 1.93998437609611079e+05 -Electron-alpha_thermal_mean_free_path_at_point_117_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile117)_ 1.93615176882108179e+05 -Electron-alpha_thermal_mean_free_path_at_point_118_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile118)_ 1.93229068392238027e+05 -Electron-alpha_thermal_mean_free_path_at_point_119_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile119)_ 1.92840123470198334e+05 -Electron-alpha_thermal_mean_free_path_at_point_120_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile120)_ 1.92448353542205412e+05 -Electron-alpha_thermal_mean_free_path_at_point_121_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile121)_ 1.92053770130469551e+05 -Electron-alpha_thermal_mean_free_path_at_point_122_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile122)_ 1.91656384853166586e+05 -Electron-alpha_thermal_mean_free_path_at_point_123_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile123)_ 1.91256209424412606e+05 -Electron-alpha_thermal_mean_free_path_at_point_124_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile124)_ 1.90853255654235661e+05 -Electron-alpha_thermal_mean_free_path_at_point_125_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile125)_ 1.90447535448545357e+05 -Electron-alpha_thermal_mean_free_path_at_point_126_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile126)_ 1.90039060809105315e+05 -Electron-alpha_thermal_mean_free_path_at_point_127_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile127)_ 1.89627843833499035e+05 -Electron-alpha_thermal_mean_free_path_at_point_128_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile128)_ 1.89213896715101379e+05 -Electron-alpha_thermal_mean_free_path_at_point_129_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile129)_ 1.88797231743042590e+05 -Electron-alpha_thermal_mean_free_path_at_point_130_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile130)_ 1.88377861302175297e+05 -Electron-alpha_thermal_mean_free_path_at_point_131_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile131)_ 1.87955797873040254e+05 -Electron-alpha_thermal_mean_free_path_at_point_132_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile132)_ 1.87531054031828331e+05 -Electron-alpha_thermal_mean_free_path_at_point_133_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile133)_ 1.87103642450344487e+05 -Electron-alpha_thermal_mean_free_path_at_point_134_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile134)_ 1.86673575895968825e+05 -Electron-alpha_thermal_mean_free_path_at_point_135_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile135)_ 1.86240867231616488e+05 -Electron-alpha_thermal_mean_free_path_at_point_136_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile136)_ 1.85805529415698285e+05 -Electron-alpha_thermal_mean_free_path_at_point_137_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile137)_ 1.85367575502076012e+05 -Electron-alpha_thermal_mean_free_path_at_point_138_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile138)_ 1.84927018640021852e+05 -Electron-alpha_thermal_mean_free_path_at_point_139_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile139)_ 1.84483872074172134e+05 -Electron-alpha_thermal_mean_free_path_at_point_140_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile140)_ 1.84038149144481547e+05 -Electron-alpha_thermal_mean_free_path_at_point_141_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile141)_ 1.83589863286177075e+05 -Electron-alpha_thermal_mean_free_path_at_point_142_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile142)_ 1.83139028029708017e+05 -Electron-alpha_thermal_mean_free_path_at_point_143_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile143)_ 1.82685657000697393e+05 -Electron-alpha_thermal_mean_free_path_at_point_144_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile144)_ 1.82229763919890043e+05 -Electron-alpha_thermal_mean_free_path_at_point_145_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile145)_ 1.81771362603099697e+05 -Electron-alpha_thermal_mean_free_path_at_point_146_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile146)_ 1.81310466961155820e+05 -Electron-alpha_thermal_mean_free_path_at_point_147_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile147)_ 1.80847090999847220e+05 -Electron-alpha_thermal_mean_free_path_at_point_148_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile148)_ 1.80381248819864122e+05 -Electron-alpha_thermal_mean_free_path_at_point_149_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile149)_ 1.79912954616741918e+05 -Electron-alpha_thermal_mean_free_path_at_point_150_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile150)_ 1.79442222680799721e+05 -Electron-alpha_thermal_mean_free_path_at_point_151_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile151)_ 1.78969067397077568e+05 -Electron-alpha_thermal_mean_free_path_at_point_152_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile152)_ 1.78493503245275468e+05 -Electron-alpha_thermal_mean_free_path_at_point_153_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile153)_ 1.78015544799686002e+05 -Electron-alpha_thermal_mean_free_path_at_point_154_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile154)_ 1.77535206729129102e+05 -Electron-alpha_thermal_mean_free_path_at_point_155_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile155)_ 1.77052503796883742e+05 -Electron-alpha_thermal_mean_free_path_at_point_156_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile156)_ 1.76567450860616518e+05 -Electron-alpha_thermal_mean_free_path_at_point_157_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile157)_ 1.76080062872311944e+05 -Electron-alpha_thermal_mean_free_path_at_point_158_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile158)_ 1.75590354878197220e+05 -Electron-alpha_thermal_mean_free_path_at_point_159_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile159)_ 1.75098342018666212e+05 -Electron-alpha_thermal_mean_free_path_at_point_160_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile160)_ 1.74604039528204739e+05 -Electron-alpha_thermal_mean_free_path_at_point_161_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile161)_ 1.74107462735308800e+05 -Electron-alpha_thermal_mean_free_path_at_point_162_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile162)_ 1.73608627062404208e+05 -Electron-alpha_thermal_mean_free_path_at_point_163_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile163)_ 1.73107548025764961e+05 -Electron-alpha_thermal_mean_free_path_at_point_164_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile164)_ 1.72604241235425143e+05 -Electron-alpha_thermal_mean_free_path_at_point_165_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile165)_ 1.72098722395094752e+05 -Electron-alpha_thermal_mean_free_path_at_point_166_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile166)_ 1.71591007302069338e+05 -Electron-alpha_thermal_mean_free_path_at_point_167_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile167)_ 1.71081111847138556e+05 -Electron-alpha_thermal_mean_free_path_at_point_168_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile168)_ 1.70569052014493122e+05 -Electron-alpha_thermal_mean_free_path_at_point_169_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile169)_ 1.70054843881628738e+05 -Electron-alpha_thermal_mean_free_path_at_point_170_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile170)_ 1.69538503619249910e+05 -Electron-alpha_thermal_mean_free_path_at_point_171_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile171)_ 1.69020047491167614e+05 -Electron-alpha_thermal_mean_free_path_at_point_172_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile172)_ 1.68499491854199208e+05 -Electron-alpha_thermal_mean_free_path_at_point_173_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile173)_ 1.67976853158062208e+05 -Electron-alpha_thermal_mean_free_path_at_point_174_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile174)_ 1.67452147945268109e+05 -Electron-alpha_thermal_mean_free_path_at_point_175_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile175)_ 1.66925392851013690e+05 -Electron-alpha_thermal_mean_free_path_at_point_176_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile176)_ 1.66396604603067477e+05 -Electron-alpha_thermal_mean_free_path_at_point_177_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile177)_ 1.65865800021657604e+05 -Electron-alpha_thermal_mean_free_path_at_point_178_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile178)_ 1.65332996019352489e+05 -Electron-alpha_thermal_mean_free_path_at_point_179_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile179)_ 1.64798209600944596e+05 -Electron-alpha_thermal_mean_free_path_at_point_180_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile180)_ 1.64261457863326126e+05 -Electron-alpha_thermal_mean_free_path_at_point_181_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile181)_ 1.63722757995365042e+05 -Electron-alpha_thermal_mean_free_path_at_point_182_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile182)_ 1.63182127277778753e+05 -Electron-alpha_thermal_mean_free_path_at_point_183_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile183)_ 1.62639583083002915e+05 -Electron-alpha_thermal_mean_free_path_at_point_184_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile184)_ 1.62095142875059129e+05 -Electron-alpha_thermal_mean_free_path_at_point_185_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile185)_ 1.61548824209420010e+05 -Electron-alpha_thermal_mean_free_path_at_point_186_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile186)_ 1.61000644732869638e+05 -Electron-alpha_thermal_mean_free_path_at_point_187_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile187)_ 1.60450622183363099e+05 -Electron-alpha_thermal_mean_free_path_at_point_188_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile188)_ 1.59898774389881844e+05 -Electron-alpha_thermal_mean_free_path_at_point_189_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile189)_ 1.59345119272286014e+05 -Electron-alpha_thermal_mean_free_path_at_point_190_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile190)_ 1.58789674841165775e+05 -Electron-alpha_thermal_mean_free_path_at_point_191_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile191)_ 1.58232459197686170e+05 -Electron-alpha_thermal_mean_free_path_at_point_192_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile192)_ 1.57673490533430071e+05 -Electron-alpha_thermal_mean_free_path_at_point_193_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile193)_ 1.57112787130240962e+05 -Electron-alpha_thermal_mean_free_path_at_point_194_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile194)_ 1.56550367360057193e+05 -Electron-alpha_thermal_mean_free_path_at_point_195_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile195)_ 1.55986249684748385e+05 -Electron-alpha_thermal_mean_free_path_at_point_196_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile196)_ 1.55420452655942994e+05 -Electron-alpha_thermal_mean_free_path_at_point_197_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile197)_ 1.54852994914857351e+05 -Electron-alpha_thermal_mean_free_path_at_point_198_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile198)_ 1.54283895192118158e+05 -Electron-alpha_thermal_mean_free_path_at_point_199_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile199)_ 1.53713172307583241e+05 -Electron-alpha_thermal_mean_free_path_at_point_200_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile200)_ 1.53140845170157612e+05 -Electron-alpha_thermal_mean_free_path_at_point_201_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile201)_ 1.52566932777605572e+05 -Electron-alpha_thermal_mean_free_path_at_point_202_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile202)_ 1.51991454216361191e+05 -Electron-alpha_thermal_mean_free_path_at_point_203_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile203)_ 1.51414428661334241e+05 -Electron-alpha_thermal_mean_free_path_at_point_204_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile204)_ 1.50835875375709787e+05 -Electron-alpha_thermal_mean_free_path_at_point_205_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile205)_ 1.50255813710747781e+05 -Electron-alpha_thermal_mean_free_path_at_point_206_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile206)_ 1.49674263105576392e+05 -Electron-alpha_thermal_mean_free_path_at_point_207_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile207)_ 1.49091243086981878e+05 -Electron-alpha_thermal_mean_free_path_at_point_208_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile208)_ 1.48506773269196245e+05 -Electron-alpha_thermal_mean_free_path_at_point_209_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile209)_ 1.47920873353677074e+05 -Electron-alpha_thermal_mean_free_path_at_point_210_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile210)_ 1.47333563128886133e+05 -Electron-alpha_thermal_mean_free_path_at_point_211_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile211)_ 1.46744862470063934e+05 -Electron-alpha_thermal_mean_free_path_at_point_212_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile212)_ 1.46154791338997806e+05 -Electron-alpha_thermal_mean_free_path_at_point_213_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile213)_ 1.45563369783789007e+05 -Electron-alpha_thermal_mean_free_path_at_point_214_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile214)_ 1.44970617938610085e+05 -Electron-alpha_thermal_mean_free_path_at_point_215_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile215)_ 1.44376556023465586e+05 -Electron-alpha_thermal_mean_free_path_at_point_216_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile216)_ 1.43781204343940190e+05 -Electron-alpha_thermal_mean_free_path_at_point_217_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile217)_ 1.43184583290948183e+05 -Electron-alpha_thermal_mean_free_path_at_point_218_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile218)_ 1.42586713340475224e+05 -Electron-alpha_thermal_mean_free_path_at_point_219_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile219)_ 1.41987615053315763e+05 -Electron-alpha_thermal_mean_free_path_at_point_220_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile220)_ 1.41387309074808902e+05 -Electron-alpha_thermal_mean_free_path_at_point_221_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile221)_ 1.40785816134562483e+05 -Electron-alpha_thermal_mean_free_path_at_point_222_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile222)_ 1.40183157046180509e+05 -Electron-alpha_thermal_mean_free_path_at_point_223_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile223)_ 1.39579352706979553e+05 -Electron-alpha_thermal_mean_free_path_at_point_224_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile224)_ 1.38974424097702838e+05 -Electron-alpha_thermal_mean_free_path_at_point_225_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile225)_ 1.38368392282227869e+05 -Electron-alpha_thermal_mean_free_path_at_point_226_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile226)_ 1.37761278407271981e+05 -Electron-alpha_thermal_mean_free_path_at_point_227_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile227)_ 1.37153103702087072e+05 -Electron-alpha_thermal_mean_free_path_at_point_228_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile228)_ 1.36543889478154131e+05 -Electron-alpha_thermal_mean_free_path_at_point_229_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile229)_ 1.35933657128870604e+05 -Electron-alpha_thermal_mean_free_path_at_point_230_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile230)_ 1.35322428129231819e+05 -Electron-alpha_thermal_mean_free_path_at_point_231_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile231)_ 1.34710224035506428e+05 -Electron-alpha_thermal_mean_free_path_at_point_232_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile232)_ 1.34097066484908573e+05 -Electron-alpha_thermal_mean_free_path_at_point_233_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile233)_ 1.33482977195260930e+05 -Electron-alpha_thermal_mean_free_path_at_point_234_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile234)_ 1.32867977964656107e+05 -Electron-alpha_thermal_mean_free_path_at_point_235_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile235)_ 1.32252090671108628e+05 -Electron-alpha_thermal_mean_free_path_at_point_236_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile236)_ 1.31635337272201636e+05 -Electron-alpha_thermal_mean_free_path_at_point_237_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile237)_ 1.31017739804730067e+05 -Electron-alpha_thermal_mean_free_path_at_point_238_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile238)_ 1.30399320384334627e+05 -Electron-alpha_thermal_mean_free_path_at_point_239_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile239)_ 1.29780101205131592e+05 -Electron-alpha_thermal_mean_free_path_at_point_240_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile240)_ 1.29160104539335385e+05 -Electron-alpha_thermal_mean_free_path_at_point_241_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile241)_ 1.28539352736875575e+05 -Electron-alpha_thermal_mean_free_path_at_point_242_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile242)_ 1.27917868225006125e+05 -Electron-alpha_thermal_mean_free_path_at_point_243_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile243)_ 1.27295673507911080e+05 -Electron-alpha_thermal_mean_free_path_at_point_244_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile244)_ 1.26672791166298281e+05 -Electron-alpha_thermal_mean_free_path_at_point_245_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile245)_ 1.26049243856994086e+05 -Electron-alpha_thermal_mean_free_path_at_point_246_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile246)_ 1.25425054312524080e+05 -Electron-alpha_thermal_mean_free_path_at_point_247_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile247)_ 1.24800245340690351e+05 -Electron-alpha_thermal_mean_free_path_at_point_248_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile248)_ 1.24174839824143593e+05 -Electron-alpha_thermal_mean_free_path_at_point_249_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile249)_ 1.23548860719942561e+05 -Electron-alpha_thermal_mean_free_path_at_point_250_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile250)_ 1.22922331059113349e+05 -Electron-alpha_thermal_mean_free_path_at_point_251_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile251)_ 1.22295273946196990e+05 -Electron-alpha_thermal_mean_free_path_at_point_252_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile252)_ 1.21667712558790692e+05 -Electron-alpha_thermal_mean_free_path_at_point_253_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile253)_ 1.21039670147081357e+05 -Electron-alpha_thermal_mean_free_path_at_point_254_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile254)_ 1.20411170033374830e+05 -Electron-alpha_thermal_mean_free_path_at_point_255_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile255)_ 1.19782235611611351e+05 -Electron-alpha_thermal_mean_free_path_at_point_256_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile256)_ 1.19152890346881832e+05 -Electron-alpha_thermal_mean_free_path_at_point_257_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile257)_ 1.18523157774927880e+05 -Electron-alpha_thermal_mean_free_path_at_point_258_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile258)_ 1.17893061501639691e+05 -Electron-alpha_thermal_mean_free_path_at_point_259_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile259)_ 1.17262625202544659e+05 -Electron-alpha_thermal_mean_free_path_at_point_260_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile260)_ 1.16631872622286712e+05 -Electron-alpha_thermal_mean_free_path_at_point_261_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile261)_ 1.16000827574099589e+05 -Electron-alpha_thermal_mean_free_path_at_point_262_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile262)_ 1.15369513939270546e+05 -Electron-alpha_thermal_mean_free_path_at_point_263_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile263)_ 1.14737955666595954e+05 -Electron-alpha_thermal_mean_free_path_at_point_264_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile264)_ 1.14106176771829938e+05 -Electron-alpha_thermal_mean_free_path_at_point_265_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile265)_ 1.13474201337123464e+05 -Electron-alpha_thermal_mean_free_path_at_point_266_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile266)_ 1.12842053510453421e+05 -Electron-alpha_thermal_mean_free_path_at_point_267_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile267)_ 1.12209757505046582e+05 -Electron-alpha_thermal_mean_free_path_at_point_268_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile268)_ 1.11577337598793165e+05 -Electron-alpha_thermal_mean_free_path_at_point_269_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile269)_ 1.10944818133650784e+05 -Electron-alpha_thermal_mean_free_path_at_point_270_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile270)_ 1.10312223515040081e+05 -Electron-alpha_thermal_mean_free_path_at_point_271_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile271)_ 1.09679578211233194e+05 -Electron-alpha_thermal_mean_free_path_at_point_272_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile272)_ 1.09046906752729614e+05 -Electron-alpha_thermal_mean_free_path_at_point_273_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile273)_ 1.08414233731626737e+05 -Electron-alpha_thermal_mean_free_path_at_point_274_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile274)_ 1.07781583800979555e+05 -Electron-alpha_thermal_mean_free_path_at_point_275_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile275)_ 1.07148981674149036e+05 -Electron-alpha_thermal_mean_free_path_at_point_276_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile276)_ 1.06516452124146614e+05 -Electron-alpha_thermal_mean_free_path_at_point_277_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile277)_ 1.05884019982962593e+05 -Electron-alpha_thermal_mean_free_path_at_point_278_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile278)_ 1.05251710140889001e+05 -Electron-alpha_thermal_mean_free_path_at_point_279_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile279)_ 1.04619547545834110e+05 -Electron-alpha_thermal_mean_free_path_at_point_280_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile280)_ 1.03987557202623066e+05 -Electron-alpha_thermal_mean_free_path_at_point_281_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile281)_ 1.03355764172291529e+05 -Electron-alpha_thermal_mean_free_path_at_point_282_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile282)_ 1.02724193571368858e+05 -Electron-alpha_thermal_mean_free_path_at_point_283_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile283)_ 1.02092870571152802e+05 -Electron-alpha_thermal_mean_free_path_at_point_284_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile284)_ 1.01461820396971001e+05 -Electron-alpha_thermal_mean_free_path_at_point_285_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile285)_ 1.00831068327435816e+05 -Electron-alpha_thermal_mean_free_path_at_point_286_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile286)_ 1.00200639693686462e+05 -Electron-alpha_thermal_mean_free_path_at_point_287_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile287)_ 9.95705598786231567e+04 -Electron-alpha_thermal_mean_free_path_at_point_288_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile288)_ 9.89408543161296548e+04 -Electron-alpha_thermal_mean_free_path_at_point_289_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile289)_ 9.83115484902857570e+04 -Electron-alpha_thermal_mean_free_path_at_point_290_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile290)_ 9.76826679345692392e+04 -Electron-alpha_thermal_mean_free_path_at_point_291_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile291)_ 9.70542382310492685e+04 -Electron-alpha_thermal_mean_free_path_at_point_292_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile292)_ 9.64262850095662143e+04 -Electron-alpha_thermal_mean_free_path_at_point_293_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile293)_ 9.57988339469037601e+04 -Electron-alpha_thermal_mean_free_path_at_point_294_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile294)_ 9.51719107659484143e+04 -Electron-alpha_thermal_mean_free_path_at_point_295_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile295)_ 9.45455412348407554e+04 -Electron-alpha_thermal_mean_free_path_at_point_296_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile296)_ 9.39197511661140015e+04 -Electron-alpha_thermal_mean_free_path_at_point_297_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile297)_ 9.32945664158236468e+04 -Electron-alpha_thermal_mean_free_path_at_point_298_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile298)_ 9.26700128826647415e+04 -Electron-alpha_thermal_mean_free_path_at_point_299_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile299)_ 9.20461165070795978e+04 -Electron-alpha_thermal_mean_free_path_at_point_300_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile300)_ 9.14229032703558769e+04 -Electron-alpha_thermal_mean_free_path_at_point_301_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile301)_ 9.08003991937119572e+04 -Electron-alpha_thermal_mean_free_path_at_point_302_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile302)_ 9.01786303373731498e+04 -Electron-alpha_thermal_mean_free_path_at_point_303_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile303)_ 8.95576227996358211e+04 -Electron-alpha_thermal_mean_free_path_at_point_304_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile304)_ 8.89374027159246907e+04 -Electron-alpha_thermal_mean_free_path_at_point_305_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile305)_ 8.83179962578331033e+04 -Electron-alpha_thermal_mean_free_path_at_point_306_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile306)_ 8.76994296321597794e+04 -Electron-alpha_thermal_mean_free_path_at_point_307_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile307)_ 8.70817290799305774e+04 -Electron-alpha_thermal_mean_free_path_at_point_308_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile308)_ 8.64649208754112478e+04 -Electron-alpha_thermal_mean_free_path_at_point_309_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile309)_ 8.58490313251103507e+04 -Electron-alpha_thermal_mean_free_path_at_point_310_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile310)_ 8.52340867667702696e+04 -Electron-alpha_thermal_mean_free_path_at_point_311_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile311)_ 8.46201135683514731e+04 -Electron-alpha_thermal_mean_free_path_at_point_312_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile312)_ 8.40071381270021084e+04 -Electron-alpha_thermal_mean_free_path_at_point_313_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile313)_ 8.33951868680221232e+04 -Electron-alpha_thermal_mean_free_path_at_point_314_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile314)_ 8.27842862438145530e+04 -Electron-alpha_thermal_mean_free_path_at_point_315_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile315)_ 8.21744627328291390e+04 -Electron-alpha_thermal_mean_free_path_at_point_316_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile316)_ 8.15657428384944506e+04 -Electron-alpha_thermal_mean_free_path_at_point_317_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile317)_ 8.09581530881431390e+04 -Electron-alpha_thermal_mean_free_path_at_point_318_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile318)_ 8.03517200319273543e+04 -Electron-alpha_thermal_mean_free_path_at_point_319_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile319)_ 7.97464702417230001e+04 -Electron-alpha_thermal_mean_free_path_at_point_320_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile320)_ 7.91424303100305406e+04 -Electron-alpha_thermal_mean_free_path_at_point_321_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile321)_ 7.85396268488604255e+04 -Electron-alpha_thermal_mean_free_path_at_point_322_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile322)_ 7.79380864886185009e+04 -Electron-alpha_thermal_mean_free_path_at_point_323_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile323)_ 7.73378358769766637e+04 -Electron-alpha_thermal_mean_free_path_at_point_324_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile324)_ 7.67389016777405923e+04 -Electron-alpha_thermal_mean_free_path_at_point_325_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile325)_ 7.61413105697085412e+04 -Electron-alpha_thermal_mean_free_path_at_point_326_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile326)_ 7.55450892455240537e+04 -Electron-alpha_thermal_mean_free_path_at_point_327_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile327)_ 7.49502644105223153e+04 -Electron-alpha_thermal_mean_free_path_at_point_328_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile328)_ 7.43568627815705840e+04 -Electron-alpha_thermal_mean_free_path_at_point_329_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile329)_ 7.37649110859051725e+04 -Electron-alpha_thermal_mean_free_path_at_point_330_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile330)_ 7.31744360599596403e+04 -Electron-alpha_thermal_mean_free_path_at_point_331_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile331)_ 7.25854644481935102e+04 -Electron-alpha_thermal_mean_free_path_at_point_332_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile332)_ 7.19980230019144365e+04 -Electron-alpha_thermal_mean_free_path_at_point_333_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile333)_ 7.14121384780975641e+04 -Electron-alpha_thermal_mean_free_path_at_point_334_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile334)_ 7.08278376382058923e+04 -Electron-alpha_thermal_mean_free_path_at_point_335_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile335)_ 7.02451472470029112e+04 -Electron-alpha_thermal_mean_free_path_at_point_336_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile336)_ 6.96640940713718155e+04 -Electron-alpha_thermal_mean_free_path_at_point_337_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile337)_ 6.90847048791287962e+04 -Electron-alpha_thermal_mean_free_path_at_point_338_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile338)_ 6.85070064378414390e+04 -Electron-alpha_thermal_mean_free_path_at_point_339_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile339)_ 6.79310255136467895e+04 -Electron-alpha_thermal_mean_free_path_at_point_340_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile340)_ 6.73567888700729090e+04 -Electron-alpha_thermal_mean_free_path_at_point_341_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile341)_ 6.67843232668656128e+04 -Electron-alpha_thermal_mean_free_path_at_point_342_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile342)_ 6.62136554588191648e+04 -Electron-alpha_thermal_mean_free_path_at_point_343_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile343)_ 6.56448121946128085e+04 -Electron-alpha_thermal_mean_free_path_at_point_344_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile344)_ 6.50778202156587431e+04 -Electron-alpha_thermal_mean_free_path_at_point_345_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile345)_ 6.45127062549541879e+04 -Electron-alpha_thermal_mean_free_path_at_point_346_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile346)_ 6.39494970359467043e+04 -Electron-alpha_thermal_mean_free_path_at_point_347_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile347)_ 6.33882192714135963e+04 -Electron-alpha_thermal_mean_free_path_at_point_348_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile348)_ 6.28288996623508647e+04 -Electron-alpha_thermal_mean_free_path_at_point_349_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile349)_ 6.22715648968819223e+04 -Electron-alpha_thermal_mean_free_path_at_point_350_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile350)_ 6.17162416491805561e+04 -Electron-alpha_thermal_mean_free_path_at_point_351_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile351)_ 6.11629565784166698e+04 -Electron-alpha_thermal_mean_free_path_at_point_352_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile352)_ 6.06117363277203622e+04 -Electron-alpha_thermal_mean_free_path_at_point_353_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile353)_ 6.00626075231734794e+04 -Electron-alpha_thermal_mean_free_path_at_point_354_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile354)_ 5.95155967728241449e+04 -Electron-alpha_thermal_mean_free_path_at_point_355_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile355)_ 5.89707306657332083e+04 -Electron-alpha_thermal_mean_free_path_at_point_356_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile356)_ 5.84280357710504104e+04 -Electron-alpha_thermal_mean_free_path_at_point_357_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile357)_ 5.78875386371261920e+04 -Electron-alpha_thermal_mean_free_path_at_point_358_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile358)_ 5.73492657906606692e+04 -Electron-alpha_thermal_mean_free_path_at_point_359_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile359)_ 5.68132437358937896e+04 -Electron-alpha_thermal_mean_free_path_at_point_360_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile360)_ 5.62794989538393420e+04 -Electron-alpha_thermal_mean_free_path_at_point_361_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile361)_ 5.57480579015694166e+04 -Electron-alpha_thermal_mean_free_path_at_point_362_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile362)_ 5.52189470115462173e+04 -Electron-alpha_thermal_mean_free_path_at_point_363_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile363)_ 5.46921926910156617e+04 -Electron-alpha_thermal_mean_free_path_at_point_364_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile364)_ 5.41678213214574134e+04 -Electron-alpha_thermal_mean_free_path_at_point_365_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile365)_ 5.36458592581032572e+04 -Electron-alpha_thermal_mean_free_path_at_point_366_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile366)_ 5.31263328295236934e+04 -Electron-alpha_thermal_mean_free_path_at_point_367_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile367)_ 5.26092683372911415e+04 -Electron-alpha_thermal_mean_free_path_at_point_368_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile368)_ 5.20946920557254271e+04 -Electron-alpha_thermal_mean_free_path_at_point_369_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile369)_ 5.15826302317261943e+04 -Electron-alpha_thermal_mean_free_path_at_point_370_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile370)_ 5.10731090846985826e+04 -Electron-alpha_thermal_mean_free_path_at_point_371_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile371)_ 5.05661548065814131e+04 -Electron-alpha_thermal_mean_free_path_at_point_372_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile372)_ 5.00617935619817872e+04 -Electron-alpha_thermal_mean_free_path_at_point_373_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile373)_ 4.95600514884275181e+04 -Electron-alpha_thermal_mean_free_path_at_point_374_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile374)_ 4.90609546967422430e+04 -Electron-alpha_thermal_mean_free_path_at_point_375_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile375)_ 4.85645292715537216e+04 -Electron-alpha_thermal_mean_free_path_at_point_376_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile376)_ 4.80708012719476246e+04 -Electron-alpha_thermal_mean_free_path_at_point_377_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile377)_ 4.75797967322688564e+04 -Electron-alpha_thermal_mean_free_path_at_point_378_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile378)_ 4.70915416630911059e+04 -Electron-alpha_thermal_mean_free_path_at_point_379_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile379)_ 4.66060620523585822e+04 -Electron-alpha_thermal_mean_free_path_at_point_380_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile380)_ 4.61233838667156524e+04 -Electron-alpha_thermal_mean_free_path_at_point_381_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile381)_ 4.56435330530369756e+04 -Electron-alpha_thermal_mean_free_path_at_point_382_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile382)_ 4.51665355401713678e+04 -Electron-alpha_thermal_mean_free_path_at_point_383_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile383)_ 4.46924172409149687e+04 -Electron-alpha_thermal_mean_free_path_at_point_384_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile384)_ 4.42212040542295581e+04 -Electron-alpha_thermal_mean_free_path_at_point_385_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile385)_ 4.37529218677236859e+04 -Electron-alpha_thermal_mean_free_path_at_point_386_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile386)_ 4.32875965604132944e+04 -Electron-alpha_thermal_mean_free_path_at_point_387_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile387)_ 4.28252540057841907e+04 -Electron-alpha_thermal_mean_free_path_at_point_388_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile388)_ 4.23659200751744065e+04 -Electron-alpha_thermal_mean_free_path_at_point_389_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile389)_ 4.19096206415012639e+04 -Electron-alpha_thermal_mean_free_path_at_point_390_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile390)_ 4.14563815833563713e+04 -Electron-alpha_thermal_mean_free_path_at_point_391_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile391)_ 4.10062287894951878e+04 -Electron-alpha_thermal_mean_free_path_at_point_392_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile392)_ 4.05591881637479528e+04 -Electron-alpha_thermal_mean_free_path_at_point_393_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile393)_ 4.01152856303832159e+04 -Electron-alpha_thermal_mean_free_path_at_point_394_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile394)_ 3.96745471399574089e+04 -Electron-alpha_thermal_mean_free_path_at_point_395_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile395)_ 3.92369986756805447e+04 -Electron-alpha_thermal_mean_free_path_at_point_396_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile396)_ 3.88026662603419027e+04 -Electron-alpha_thermal_mean_free_path_at_point_397_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile397)_ 3.83715759638323871e+04 -Electron-alpha_thermal_mean_free_path_at_point_398_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile398)_ 3.79437539113068051e+04 -Electron-alpha_thermal_mean_free_path_at_point_399_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile399)_ 3.75192262920347712e+04 -Electron-alpha_thermal_mean_free_path_at_point_400_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile400)_ 3.70980193689927110e+04 -Electron-alpha_thermal_mean_free_path_at_point_401_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile401)_ 3.66801594892469075e+04 -Electron-alpha_thermal_mean_free_path_at_point_402_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile402)_ 3.62656730951932841e+04 -Electron-alpha_thermal_mean_free_path_at_point_403_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile403)_ 3.58545867367153187e+04 -Electron-alpha_thermal_mean_free_path_at_point_404_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile404)_ 3.54469270843284758e+04 -Electron-alpha_thermal_mean_free_path_at_point_405_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile405)_ 3.50427209433942407e+04 -Electron-alpha_thermal_mean_free_path_at_point_406_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile406)_ 3.46419952694775493e+04 -Electron-alpha_thermal_mean_free_path_at_point_407_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile407)_ 3.42447771849457204e+04 -Electron-alpha_thermal_mean_free_path_at_point_408_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile408)_ 3.38510939969010142e+04 -Electron-alpha_thermal_mean_free_path_at_point_409_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile409)_ 3.34609732165593741e+04 -Electron-alpha_thermal_mean_free_path_at_point_410_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile410)_ 3.30744425801863399e+04 -Electron-alpha_thermal_mean_free_path_at_point_411_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile411)_ 3.26915300717243190e+04 -Electron-alpha_thermal_mean_free_path_at_point_412_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile412)_ 3.23122639472459741e+04 -Electron-alpha_thermal_mean_free_path_at_point_413_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile413)_ 3.19366727613902003e+04 -Electron-alpha_thermal_mean_free_path_at_point_414_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile414)_ 3.15647853959479071e+04 -Electron-alpha_thermal_mean_free_path_at_point_415_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile415)_ 3.11966310907830957e+04 -Electron-alpha_thermal_mean_free_path_at_point_416_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile416)_ 3.08322394772935331e+04 -Electron-alpha_thermal_mean_free_path_at_point_417_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile417)_ 3.04716406146347908e+04 -Electron-alpha_thermal_mean_free_path_at_point_418_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile418)_ 3.01148650289577781e+04 -Electron-alpha_thermal_mean_free_path_at_point_419_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile419)_ 2.97619437559315811e+04 -Electron-alpha_thermal_mean_free_path_at_point_420_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile420)_ 2.94129083868597190e+04 -Electron-alpha_thermal_mean_free_path_at_point_421_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile421)_ 2.90677911187247919e+04 -Electron-alpha_thermal_mean_free_path_at_point_422_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile422)_ 2.87266248085392181e+04 -Electron-alpha_thermal_mean_free_path_at_point_423_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile423)_ 2.83894430324222812e+04 -Electron-alpha_thermal_mean_free_path_at_point_424_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile424)_ 2.80562801498691770e+04 -Electron-alpha_thermal_mean_free_path_at_point_425_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile425)_ 2.77271713737388636e+04 -Electron-alpha_thermal_mean_free_path_at_point_426_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile426)_ 2.74021528465482879e+04 -Electron-alpha_thermal_mean_free_path_at_point_427_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile427)_ 2.70812617237345839e+04 -Electron-alpha_thermal_mean_free_path_at_point_428_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile428)_ 2.67645362646322683e+04 -Electron-alpha_thermal_mean_free_path_at_point_429_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile429)_ 2.64520159320083767e+04 -Electron-alpha_thermal_mean_free_path_at_point_430_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile430)_ 2.61437415011117191e+04 -Electron-alpha_thermal_mean_free_path_at_point_431_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile431)_ 2.58397551793245038e+04 -Electron-alpha_thermal_mean_free_path_at_point_432_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile432)_ 2.55401007376563321e+04 -Electron-alpha_thermal_mean_free_path_at_point_433_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile433)_ 2.52448236554974937e+04 -Electron-alpha_thermal_mean_free_path_at_point_434_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile434)_ 2.49539712802618924e+04 -Electron-alpha_thermal_mean_free_path_at_point_435_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile435)_ 2.46675930037921426e+04 -Electron-alpha_thermal_mean_free_path_at_point_436_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile436)_ 2.43857404576992121e+04 -Electron-alpha_thermal_mean_free_path_at_point_437_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile437)_ 2.41084677301478441e+04 -Electron-alpha_thermal_mean_free_path_at_point_438_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile438)_ 2.38358316070262299e+04 -Electron-alpha_thermal_mean_free_path_at_point_439_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile439)_ 2.35678918409298312e+04 -Electron-alpha_thermal_mean_free_path_at_point_440_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile440)_ 2.33047114520002215e+04 -Electron-alpha_thermal_mean_free_path_at_point_441_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile441)_ 2.30463570653907336e+04 -Electron-alpha_thermal_mean_free_path_at_point_442_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile442)_ 2.27928992910335692e+04 -Electron-alpha_thermal_mean_free_path_at_point_443_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile443)_ 2.25444131524820623e+04 -Electron-alpha_thermal_mean_free_path_at_point_444_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile444)_ 2.23009785729801224e+04 -Electron-alpha_thermal_mean_free_path_at_point_445_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile445)_ 2.20626809286150492e+04 -Electron-alpha_thermal_mean_free_path_at_point_446_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile446)_ 2.18296116805608726e+04 -Electron-alpha_thermal_mean_free_path_at_point_447_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile447)_ 2.16018691011594674e+04 -Electron-alpha_thermal_mean_free_path_at_point_448_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile448)_ 2.13795591120672871e+04 -Electron-alpha_thermal_mean_free_path_at_point_449_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile449)_ 2.11627962572392971e+04 -Electron-alpha_thermal_mean_free_path_at_point_450_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile450)_ 2.09517048394145859e+04 -Electron-alpha_thermal_mean_free_path_at_point_451_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile451)_ 2.07464202566081112e+04 -Electron-alpha_thermal_mean_free_path_at_point_452_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile452)_ 2.05470905855814308e+04 -Electron-alpha_thermal_mean_free_path_at_point_453_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile453)_ 2.03538784735127956e+04 -Electron-alpha_thermal_mean_free_path_at_point_454_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile454)_ 2.01669634187230731e+04 -Electron-alpha_thermal_mean_free_path_at_point_455_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile455)_ 1.99865445488939695e+04 -Electron-alpha_thermal_mean_free_path_at_point_456_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile456)_ 1.98128440446368841e+04 -Electron-alpha_thermal_mean_free_path_at_point_457_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile457)_ 1.96461114138869016e+04 -Electron-alpha_thermal_mean_free_path_at_point_458_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile458)_ 1.94866289087937985e+04 -Electron-alpha_thermal_mean_free_path_at_point_459_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile459)_ 1.93347185093377084e+04 -Electron-alpha_thermal_mean_free_path_at_point_460_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile460)_ 1.91907511082032361e+04 -Electron-alpha_thermal_mean_free_path_at_point_461_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile461)_ 1.90551588774449738e+04 -Electron-alpha_thermal_mean_free_path_at_point_462_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile462)_ 1.89284523915800783e+04 -Electron-alpha_thermal_mean_free_path_at_point_463_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile463)_ 1.88112451552575585e+04 -Electron-alpha_thermal_mean_free_path_at_point_464_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile464)_ 1.87042902480060002e+04 -Electron-alpha_thermal_mean_free_path_at_point_465_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile465)_ 1.86085380893001638e+04 -Electron-alpha_thermal_mean_free_path_at_point_466_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile466)_ 1.85252341886086615e+04 -Electron-alpha_thermal_mean_free_path_at_point_467_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile467)_ 1.84561017190438506e+04 -Electron-alpha_thermal_mean_free_path_at_point_468_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile468)_ 1.84037372400290587e+04 -Electron-alpha_thermal_mean_free_path_at_point_469_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile469)_ 1.83727230654033883e+04 -Electron-alpha_thermal_mean_free_path_at_point_470_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile470)_ 1.83764326905918715e+04 -Electron-alpha_thermal_mean_free_path_at_point_471_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile471)_ 1.74637988974274849e+04 -Electron-alpha_thermal_mean_free_path_at_point_472_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile472)_ 1.65627802700200118e+04 -Electron-alpha_thermal_mean_free_path_at_point_473_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile473)_ 1.56739463746684560e+04 -Electron-alpha_thermal_mean_free_path_at_point_474_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile474)_ 1.47979019243847397e+04 -Electron-alpha_thermal_mean_free_path_at_point_475_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile475)_ 1.39352895483251632e+04 -Electron-alpha_thermal_mean_free_path_at_point_476_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile476)_ 1.30867928333103264e+04 -Electron-alpha_thermal_mean_free_path_at_point_477_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile477)_ 1.22531396704814488e+04 -Electron-alpha_thermal_mean_free_path_at_point_478_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile478)_ 1.14351059451275305e+04 -Electron-alpha_thermal_mean_free_path_at_point_479_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile479)_ 1.06335196136703853e+04 -Electron-alpha_thermal_mean_free_path_at_point_480_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile480)_ 9.84926521893690551e+03 -Electron-alpha_thermal_mean_free_path_at_point_481_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile481)_ 9.08328890348937784e+03 -Electron-alpha_thermal_mean_free_path_at_point_482_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile482)_ 8.33660399135253101e+03 -Electron-alpha_thermal_mean_free_path_at_point_483_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile483)_ 7.61029722152540307e+03 -Electron-alpha_thermal_mean_free_path_at_point_484_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile484)_ 6.90553573299381515e+03 -Electron-alpha_thermal_mean_free_path_at_point_485_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile485)_ 6.22357492168324461e+03 -Electron-alpha_thermal_mean_free_path_at_point_486_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile486)_ 5.56576731652502622e+03 -Electron-alpha_thermal_mean_free_path_at_point_487_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile487)_ 4.93357265697506045e+03 -Electron-alpha_thermal_mean_free_path_at_point_488_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile488)_ 4.32856940161498915e+03 -Electron-alpha_thermal_mean_free_path_at_point_489_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile489)_ 3.75246796272513302e+03 -Electron-alpha_thermal_mean_free_path_at_point_490_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile490)_ 3.20712605452505113e+03 -Electron-alpha_thermal_mean_free_path_at_point_491_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile491)_ 2.69456667945201389e+03 -Electron-alpha_thermal_mean_free_path_at_point_492_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile492)_ 2.21699948656512015e+03 -Electron-alpha_thermal_mean_free_path_at_point_493_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile493)_ 1.77684657382255023e+03 -Electron-alpha_thermal_mean_free_path_at_point_494_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile494)_ 1.37677438175851216e+03 -Electron-alpha_thermal_mean_free_path_at_point_495_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile495)_ 1.01973437829678767e+03 -Electron-alpha_thermal_mean_free_path_at_point_496_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile496)_ 7.09017329645920313e+02 -Electron-alpha_thermal_mean_free_path_at_point_497_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile497)_ 4.48330611277591970e+02 -Electron-alpha_thermal_mean_free_path_at_point_498_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile498)_ 2.41920054907983797e+02 -Electron-alpha_thermal_mean_free_path_at_point_499_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile499)_ 9.47968196124040787e+01 -Electron-alpha_thermal_mean_free_path_at_point_500_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile500)_ 1.37203299718843486e+01 -Volume_averaged_electron-alpha_Spitzer_slowing_down_time_(s)_____________ (t_plasma_electron_alpha_spitzer_slow_vol_avg)_ 6.16412929208435267e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_0______________________ (t_plasma_electron_alpha_spitzer_slow_profile0)_ 1.34429663983198511e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_1______________________ (t_plasma_electron_alpha_spitzer_slow_profile1)_ 1.34428898876561975e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_2______________________ (t_plasma_electron_alpha_spitzer_slow_profile2)_ 1.34426603566664848e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_3______________________ (t_plasma_electron_alpha_spitzer_slow_profile3)_ 1.34422778083544636e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_4______________________ (t_plasma_electron_alpha_spitzer_slow_profile4)_ 1.34417422477265602e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_5______________________ (t_plasma_electron_alpha_spitzer_slow_profile5)_ 1.34410536817919701e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_6______________________ (t_plasma_electron_alpha_spitzer_slow_profile6)_ 1.34402121195629953e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_7______________________ (t_plasma_electron_alpha_spitzer_slow_profile7)_ 1.34392175720553242e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_8______________________ (t_plasma_electron_alpha_spitzer_slow_profile8)_ 1.34380700522884267e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_9______________________ (t_plasma_electron_alpha_spitzer_slow_profile9)_ 1.34367695752860628e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_10_____________________ (t_plasma_electron_alpha_spitzer_slow_profile10)_ 1.34353161580768110e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_11_____________________ (t_plasma_electron_alpha_spitzer_slow_profile11)_ 1.34337098196946703e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_12_____________________ (t_plasma_electron_alpha_spitzer_slow_profile12)_ 1.34319505811797879e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_13_____________________ (t_plasma_electron_alpha_spitzer_slow_profile13)_ 1.34300384655791905e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_14_____________________ (t_plasma_electron_alpha_spitzer_slow_profile14)_ 1.34279734979476428e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_15_____________________ (t_plasma_electron_alpha_spitzer_slow_profile15)_ 1.34257557053485566e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_16_____________________ (t_plasma_electron_alpha_spitzer_slow_profile16)_ 1.34233851168549556e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_17_____________________ (t_plasma_electron_alpha_spitzer_slow_profile17)_ 1.34208617635505822e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_18_____________________ (t_plasma_electron_alpha_spitzer_slow_profile18)_ 1.34181856785309561e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_19_____________________ (t_plasma_electron_alpha_spitzer_slow_profile19)_ 1.34153568969046599e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_20_____________________ (t_plasma_electron_alpha_spitzer_slow_profile20)_ 1.34123754557945429e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_21_____________________ (t_plasma_electron_alpha_spitzer_slow_profile21)_ 1.34092413943391420e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_22_____________________ (t_plasma_electron_alpha_spitzer_slow_profile22)_ 1.34059547536940382e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_23_____________________ (t_plasma_electron_alpha_spitzer_slow_profile23)_ 1.34025155770334137e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_24_____________________ (t_plasma_electron_alpha_spitzer_slow_profile24)_ 1.33989239095516033e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_25_____________________ (t_plasma_electron_alpha_spitzer_slow_profile25)_ 1.33951797984647425e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_26_____________________ (t_plasma_electron_alpha_spitzer_slow_profile26)_ 1.33912832930124681e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_27_____________________ (t_plasma_electron_alpha_spitzer_slow_profile27)_ 1.33872344444597857e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_28_____________________ (t_plasma_electron_alpha_spitzer_slow_profile28)_ 1.33830333060988460e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_29_____________________ (t_plasma_electron_alpha_spitzer_slow_profile29)_ 1.33786799332509676e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_30_____________________ (t_plasma_electron_alpha_spitzer_slow_profile30)_ 1.33741743832686066e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_31_____________________ (t_plasma_electron_alpha_spitzer_slow_profile31)_ 1.33695167155374950e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_32_____________________ (t_plasma_electron_alpha_spitzer_slow_profile32)_ 1.33647069914787786e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_33_____________________ (t_plasma_electron_alpha_spitzer_slow_profile33)_ 1.33597452745512735e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_34_____________________ (t_plasma_electron_alpha_spitzer_slow_profile34)_ 1.33546316302537948e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_35_____________________ (t_plasma_electron_alpha_spitzer_slow_profile35)_ 1.33493661261275509e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_36_____________________ (t_plasma_electron_alpha_spitzer_slow_profile36)_ 1.33439488317586119e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_37_____________________ (t_plasma_electron_alpha_spitzer_slow_profile37)_ 1.33383798187804703e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_38_____________________ (t_plasma_electron_alpha_spitzer_slow_profile38)_ 1.33326591608766520e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_39_____________________ (t_plasma_electron_alpha_spitzer_slow_profile39)_ 1.33267869337834277e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_40_____________________ (t_plasma_electron_alpha_spitzer_slow_profile40)_ 1.33207632152925948e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_41_____________________ (t_plasma_electron_alpha_spitzer_slow_profile41)_ 1.33145880852543108e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_42_____________________ (t_plasma_electron_alpha_spitzer_slow_profile42)_ 1.33082616255800890e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_43_____________________ (t_plasma_electron_alpha_spitzer_slow_profile43)_ 1.33017839202457178e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_44_____________________ (t_plasma_electron_alpha_spitzer_slow_profile44)_ 1.32951550552944231e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_45_____________________ (t_plasma_electron_alpha_spitzer_slow_profile45)_ 1.32883751188399901e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_46_____________________ (t_plasma_electron_alpha_spitzer_slow_profile46)_ 1.32814442010700406e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_47_____________________ (t_plasma_electron_alpha_spitzer_slow_profile47)_ 1.32743623942493372e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_48_____________________ (t_plasma_electron_alpha_spitzer_slow_profile48)_ 1.32671297927231802e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_49_____________________ (t_plasma_electron_alpha_spitzer_slow_profile49)_ 1.32597464929208964e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_50_____________________ (t_plasma_electron_alpha_spitzer_slow_profile50)_ 1.32522125933593893e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_51_____________________ (t_plasma_electron_alpha_spitzer_slow_profile51)_ 1.32445281946468096e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_52_____________________ (t_plasma_electron_alpha_spitzer_slow_profile52)_ 1.32366933994862213e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_53_____________________ (t_plasma_electron_alpha_spitzer_slow_profile53)_ 1.32287083126794403e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_54_____________________ (t_plasma_electron_alpha_spitzer_slow_profile54)_ 1.32205730411309030e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_55_____________________ (t_plasma_electron_alpha_spitzer_slow_profile55)_ 1.32122876938516187e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_56_____________________ (t_plasma_electron_alpha_spitzer_slow_profile56)_ 1.32038523819632236e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_57_____________________ (t_plasma_electron_alpha_spitzer_slow_profile57)_ 1.31952672187020847e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_58_____________________ (t_plasma_electron_alpha_spitzer_slow_profile58)_ 1.31865323194235118e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_59_____________________ (t_plasma_electron_alpha_spitzer_slow_profile59)_ 1.31776478016060494e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_60_____________________ (t_plasma_electron_alpha_spitzer_slow_profile60)_ 1.31686137848558404e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_61_____________________ (t_plasma_electron_alpha_spitzer_slow_profile61)_ 1.31594303909110777e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_62_____________________ (t_plasma_electron_alpha_spitzer_slow_profile62)_ 1.31500977436465161e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_63_____________________ (t_plasma_electron_alpha_spitzer_slow_profile63)_ 1.31406159690781266e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_64_____________________ (t_plasma_electron_alpha_spitzer_slow_profile64)_ 1.31309851953677792e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_65_____________________ (t_plasma_electron_alpha_spitzer_slow_profile65)_ 1.31212055528280147e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_66_____________________ (t_plasma_electron_alpha_spitzer_slow_profile66)_ 1.31112771739269274e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_67_____________________ (t_plasma_electron_alpha_spitzer_slow_profile67)_ 1.31012001932931321e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_68_____________________ (t_plasma_electron_alpha_spitzer_slow_profile68)_ 1.30909747477207627e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_69_____________________ (t_plasma_electron_alpha_spitzer_slow_profile69)_ 1.30806009761746544e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_70_____________________ (t_plasma_electron_alpha_spitzer_slow_profile70)_ 1.30700790197954864e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_71_____________________ (t_plasma_electron_alpha_spitzer_slow_profile71)_ 1.30594090219051640e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_72_____________________ (t_plasma_electron_alpha_spitzer_slow_profile72)_ 1.30485911280121103e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_73_____________________ (t_plasma_electron_alpha_spitzer_slow_profile73)_ 1.30376254858168217e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_74_____________________ (t_plasma_electron_alpha_spitzer_slow_profile74)_ 1.30265122452173676e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_75_____________________ (t_plasma_electron_alpha_spitzer_slow_profile75)_ 1.30152515583150574e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_76_____________________ (t_plasma_electron_alpha_spitzer_slow_profile76)_ 1.30038435794202178e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_77_____________________ (t_plasma_electron_alpha_spitzer_slow_profile77)_ 1.29922884650579396e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_78_____________________ (t_plasma_electron_alpha_spitzer_slow_profile78)_ 1.29805863739740723e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_79_____________________ (t_plasma_electron_alpha_spitzer_slow_profile79)_ 1.29687374671411715e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_80_____________________ (t_plasma_electron_alpha_spitzer_slow_profile80)_ 1.29567419077646417e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_81_____________________ (t_plasma_electron_alpha_spitzer_slow_profile81)_ 1.29445998612888835e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_82_____________________ (t_plasma_electron_alpha_spitzer_slow_profile82)_ 1.29323114954035967e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_83_____________________ (t_plasma_electron_alpha_spitzer_slow_profile83)_ 1.29198769800501712e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_84_____________________ (t_plasma_electron_alpha_spitzer_slow_profile84)_ 1.29072964874281015e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_85_____________________ (t_plasma_electron_alpha_spitzer_slow_profile85)_ 1.28945701920015843e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_86_____________________ (t_plasma_electron_alpha_spitzer_slow_profile86)_ 1.28816982705061678e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_87_____________________ (t_plasma_electron_alpha_spitzer_slow_profile87)_ 1.28686809019554649e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_88_____________________ (t_plasma_electron_alpha_spitzer_slow_profile88)_ 1.28555182676480473e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_89_____________________ (t_plasma_electron_alpha_spitzer_slow_profile89)_ 1.28422105511743512e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_90_____________________ (t_plasma_electron_alpha_spitzer_slow_profile90)_ 1.28287579384236894e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_91_____________________ (t_plasma_electron_alpha_spitzer_slow_profile91)_ 1.28151606175914301e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_92_____________________ (t_plasma_electron_alpha_spitzer_slow_profile92)_ 1.28014187791861800e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_93_____________________ (t_plasma_electron_alpha_spitzer_slow_profile93)_ 1.27875326160371383e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_94_____________________ (t_plasma_electron_alpha_spitzer_slow_profile94)_ 1.27735023233015177e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_95_____________________ (t_plasma_electron_alpha_spitzer_slow_profile95)_ 1.27593280984720314e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_96_____________________ (t_plasma_electron_alpha_spitzer_slow_profile96)_ 1.27450101413845762e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_97_____________________ (t_plasma_electron_alpha_spitzer_slow_profile97)_ 1.27305486542258861e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_98_____________________ (t_plasma_electron_alpha_spitzer_slow_profile98)_ 1.27159438415414217e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_99_____________________ (t_plasma_electron_alpha_spitzer_slow_profile99)_ 1.27011959102432304e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_100____________________ (t_plasma_electron_alpha_spitzer_slow_profile100)_ 1.26863050696180513e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_101____________________ (t_plasma_electron_alpha_spitzer_slow_profile101)_ 1.26712715313353530e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_102____________________ (t_plasma_electron_alpha_spitzer_slow_profile102)_ 1.26560955094556604e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_103____________________ (t_plasma_electron_alpha_spitzer_slow_profile103)_ 1.26407772204388125e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_104____________________ (t_plasma_electron_alpha_spitzer_slow_profile104)_ 1.26253168831524798e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_105____________________ (t_plasma_electron_alpha_spitzer_slow_profile105)_ 1.26097147188806447e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_106____________________ (t_plasma_electron_alpha_spitzer_slow_profile106)_ 1.25939709513323117e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_107____________________ (t_plasma_electron_alpha_spitzer_slow_profile107)_ 1.25780858066502499e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_108____________________ (t_plasma_electron_alpha_spitzer_slow_profile108)_ 1.25620595134198521e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_109____________________ (t_plasma_electron_alpha_spitzer_slow_profile109)_ 1.25458923026781388e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_110____________________ (t_plasma_electron_alpha_spitzer_slow_profile110)_ 1.25295844079228336e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_111____________________ (t_plasma_electron_alpha_spitzer_slow_profile111)_ 1.25131360651215728e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_112____________________ (t_plasma_electron_alpha_spitzer_slow_profile112)_ 1.24965475127212078e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_113____________________ (t_plasma_electron_alpha_spitzer_slow_profile113)_ 1.24798189916572433e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_114____________________ (t_plasma_electron_alpha_spitzer_slow_profile114)_ 1.24629507453633304e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_115____________________ (t_plasma_electron_alpha_spitzer_slow_profile115)_ 1.24459430197810117e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_116____________________ (t_plasma_electron_alpha_spitzer_slow_profile116)_ 1.24287960633693695e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_117____________________ (t_plasma_electron_alpha_spitzer_slow_profile117)_ 1.24115101271149930e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_118____________________ (t_plasma_electron_alpha_spitzer_slow_profile118)_ 1.23940854645419218e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_119____________________ (t_plasma_electron_alpha_spitzer_slow_profile119)_ 1.23765223317217954e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_120____________________ (t_plasma_electron_alpha_spitzer_slow_profile120)_ 1.23588209872840760e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_121____________________ (t_plasma_electron_alpha_spitzer_slow_profile121)_ 1.23409816924263827e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_122____________________ (t_plasma_electron_alpha_spitzer_slow_profile122)_ 1.23230047109249607e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_123____________________ (t_plasma_electron_alpha_spitzer_slow_profile123)_ 1.23048903091453044e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_124____________________ (t_plasma_electron_alpha_spitzer_slow_profile124)_ 1.22866387560528412e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_125____________________ (t_plasma_electron_alpha_spitzer_slow_profile125)_ 1.22682503232237727e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_126____________________ (t_plasma_electron_alpha_spitzer_slow_profile126)_ 1.22497252848560323e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_127____________________ (t_plasma_electron_alpha_spitzer_slow_profile127)_ 1.22310639177803804e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_128____________________ (t_plasma_electron_alpha_spitzer_slow_profile128)_ 1.22122665014715914e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_129____________________ (t_plasma_electron_alpha_spitzer_slow_profile129)_ 1.21933333180598180e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_130____________________ (t_plasma_electron_alpha_spitzer_slow_profile130)_ 1.21742646523420195e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_131____________________ (t_plasma_electron_alpha_spitzer_slow_profile131)_ 1.21550607917935882e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_132____________________ (t_plasma_electron_alpha_spitzer_slow_profile132)_ 1.21357220265800447e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_133____________________ (t_plasma_electron_alpha_spitzer_slow_profile133)_ 1.21162486495689015e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_134____________________ (t_plasma_electron_alpha_spitzer_slow_profile134)_ 1.20966409563416422e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_135____________________ (t_plasma_electron_alpha_spitzer_slow_profile135)_ 1.20768992452058566e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_136____________________ (t_plasma_electron_alpha_spitzer_slow_profile136)_ 1.20570238172074573e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_137____________________ (t_plasma_electron_alpha_spitzer_slow_profile137)_ 1.20370149761430789e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_138____________________ (t_plasma_electron_alpha_spitzer_slow_profile138)_ 1.20168730285726388e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_139____________________ (t_plasma_electron_alpha_spitzer_slow_profile139)_ 1.19965982838319163e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_140____________________ (t_plasma_electron_alpha_spitzer_slow_profile140)_ 1.19761910540454375e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_141____________________ (t_plasma_electron_alpha_spitzer_slow_profile141)_ 1.19556516541393587e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_142____________________ (t_plasma_electron_alpha_spitzer_slow_profile142)_ 1.19349804018545402e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_143____________________ (t_plasma_electron_alpha_spitzer_slow_profile143)_ 1.19141776177598224e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_144____________________ (t_plasma_electron_alpha_spitzer_slow_profile144)_ 1.18932436252653351e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_145____________________ (t_plasma_electron_alpha_spitzer_slow_profile145)_ 1.18721787506360221e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_146____________________ (t_plasma_electron_alpha_spitzer_slow_profile146)_ 1.18509833230053063e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_147____________________ (t_plasma_electron_alpha_spitzer_slow_profile147)_ 1.18296576743888870e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_148____________________ (t_plasma_electron_alpha_spitzer_slow_profile148)_ 1.18082021396986914e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_149____________________ (t_plasma_electron_alpha_spitzer_slow_profile149)_ 1.17866170567569561e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_150____________________ (t_plasma_electron_alpha_spitzer_slow_profile150)_ 1.17649027663105277e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_151____________________ (t_plasma_electron_alpha_spitzer_slow_profile151)_ 1.17430596120452124e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_152____________________ (t_plasma_electron_alpha_spitzer_slow_profile152)_ 1.17210879406003476e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_153____________________ (t_plasma_electron_alpha_spitzer_slow_profile153)_ 1.16989881015835584e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_154____________________ (t_plasma_electron_alpha_spitzer_slow_profile154)_ 1.16767604475855746e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_155____________________ (t_plasma_electron_alpha_spitzer_slow_profile155)_ 1.16544053341952725e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_156____________________ (t_plasma_electron_alpha_spitzer_slow_profile156)_ 1.16319231200148931e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_157____________________ (t_plasma_electron_alpha_spitzer_slow_profile157)_ 1.16093141666753330e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_158____________________ (t_plasma_electron_alpha_spitzer_slow_profile158)_ 1.15865788388517355e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_159____________________ (t_plasma_electron_alpha_spitzer_slow_profile159)_ 1.15637175042790763e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_160____________________ (t_plasma_electron_alpha_spitzer_slow_profile160)_ 1.15407305337680977e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_161____________________ (t_plasma_electron_alpha_spitzer_slow_profile161)_ 1.15176183012212308e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_162____________________ (t_plasma_electron_alpha_spitzer_slow_profile162)_ 1.14943811836488274e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_163____________________ (t_plasma_electron_alpha_spitzer_slow_profile163)_ 1.14710195611855026e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_164____________________ (t_plasma_electron_alpha_spitzer_slow_profile164)_ 1.14475338171066277e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_165____________________ (t_plasma_electron_alpha_spitzer_slow_profile165)_ 1.14239243378450528e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_166____________________ (t_plasma_electron_alpha_spitzer_slow_profile166)_ 1.14001915130079556e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_167____________________ (t_plasma_electron_alpha_spitzer_slow_profile167)_ 1.13763357353939010e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_168____________________ (t_plasma_electron_alpha_spitzer_slow_profile168)_ 1.13523574010100536e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_169____________________ (t_plasma_electron_alpha_spitzer_slow_profile169)_ 1.13282569090896024e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_170____________________ (t_plasma_electron_alpha_spitzer_slow_profile170)_ 1.13040346621093124e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_171____________________ (t_plasma_electron_alpha_spitzer_slow_profile171)_ 1.12796910658073357e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_172____________________ (t_plasma_electron_alpha_spitzer_slow_profile172)_ 1.12552265292011433e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_173____________________ (t_plasma_electron_alpha_spitzer_slow_profile173)_ 1.12306414646056796e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_174____________________ (t_plasma_electron_alpha_spitzer_slow_profile174)_ 1.12059362876516766e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_175____________________ (t_plasma_electron_alpha_spitzer_slow_profile175)_ 1.11811114173042259e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_176____________________ (t_plasma_electron_alpha_spitzer_slow_profile176)_ 1.11561672758814456e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_177____________________ (t_plasma_electron_alpha_spitzer_slow_profile177)_ 1.11311042890734302e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_178____________________ (t_plasma_electron_alpha_spitzer_slow_profile178)_ 1.11059228859613368e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_179____________________ (t_plasma_electron_alpha_spitzer_slow_profile179)_ 1.10806234990367170e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_180____________________ (t_plasma_electron_alpha_spitzer_slow_profile180)_ 1.10552065642210162e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_181____________________ (t_plasma_electron_alpha_spitzer_slow_profile181)_ 1.10296725208853030e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_182____________________ (t_plasma_electron_alpha_spitzer_slow_profile182)_ 1.10040218118701727e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_183____________________ (t_plasma_electron_alpha_spitzer_slow_profile183)_ 1.09782548835058669e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_184____________________ (t_plasma_electron_alpha_spitzer_slow_profile184)_ 1.09523721856326706e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_185____________________ (t_plasma_electron_alpha_spitzer_slow_profile185)_ 1.09263741716213847e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_186____________________ (t_plasma_electron_alpha_spitzer_slow_profile186)_ 1.09002612983941427e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_187____________________ (t_plasma_electron_alpha_spitzer_slow_profile187)_ 1.08740340264453694e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_188____________________ (t_plasma_electron_alpha_spitzer_slow_profile188)_ 1.08476928198629996e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_189____________________ (t_plasma_electron_alpha_spitzer_slow_profile189)_ 1.08212381463498764e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_190____________________ (t_plasma_electron_alpha_spitzer_slow_profile190)_ 1.07946704772454072e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_191____________________ (t_plasma_electron_alpha_spitzer_slow_profile191)_ 1.07679902875474443e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_192____________________ (t_plasma_electron_alpha_spitzer_slow_profile192)_ 1.07411980559343556e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_193____________________ (t_plasma_electron_alpha_spitzer_slow_profile193)_ 1.07142942647873896e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_194____________________ (t_plasma_electron_alpha_spitzer_slow_profile194)_ 1.06872794002132010e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_195____________________ (t_plasma_electron_alpha_spitzer_slow_profile195)_ 1.06601539520666710e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_196____________________ (t_plasma_electron_alpha_spitzer_slow_profile196)_ 1.06329184139739619e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_197____________________ (t_plasma_electron_alpha_spitzer_slow_profile197)_ 1.06055732833557448e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_198____________________ (t_plasma_electron_alpha_spitzer_slow_profile198)_ 1.05781190614507659e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_199____________________ (t_plasma_electron_alpha_spitzer_slow_profile199)_ 1.05505562533395914e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_200____________________ (t_plasma_electron_alpha_spitzer_slow_profile200)_ 1.05228853679686396e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_201____________________ (t_plasma_electron_alpha_spitzer_slow_profile201)_ 1.04951069181744261e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_202____________________ (t_plasma_electron_alpha_spitzer_slow_profile202)_ 1.04672214207081304e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_203____________________ (t_plasma_electron_alpha_spitzer_slow_profile203)_ 1.04392293962603167e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_204____________________ (t_plasma_electron_alpha_spitzer_slow_profile204)_ 1.04111313694860375e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_205____________________ (t_plasma_electron_alpha_spitzer_slow_profile205)_ 1.03829278690300919e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_206____________________ (t_plasma_electron_alpha_spitzer_slow_profile206)_ 1.03546194275526360e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_207____________________ (t_plasma_electron_alpha_spitzer_slow_profile207)_ 1.03262065817549908e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_208____________________ (t_plasma_electron_alpha_spitzer_slow_profile208)_ 1.02976898724057864e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_209____________________ (t_plasma_electron_alpha_spitzer_slow_profile209)_ 1.02690698443673223e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_210____________________ (t_plasma_electron_alpha_spitzer_slow_profile210)_ 1.02403470466222801e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_211____________________ (t_plasma_electron_alpha_spitzer_slow_profile211)_ 1.02115220323006262e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_212____________________ (t_plasma_electron_alpha_spitzer_slow_profile212)_ 1.01825953587069007e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_213____________________ (t_plasma_electron_alpha_spitzer_slow_profile213)_ 1.01535675873477005e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_214____________________ (t_plasma_electron_alpha_spitzer_slow_profile214)_ 1.01244392839595232e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_215____________________ (t_plasma_electron_alpha_spitzer_slow_profile215)_ 1.00952110185368982e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_216____________________ (t_plasma_electron_alpha_spitzer_slow_profile216)_ 1.00658833653607704e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_217____________________ (t_plasma_electron_alpha_spitzer_slow_profile217)_ 1.00364569030272466e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_218____________________ (t_plasma_electron_alpha_spitzer_slow_profile218)_ 1.00069322144766226e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_219____________________ (t_plasma_electron_alpha_spitzer_slow_profile219)_ 9.97730988702269395e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_220____________________ (t_plasma_electron_alpha_spitzer_slow_profile220)_ 9.94759051238244485e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_221____________________ (t_plasma_electron_alpha_spitzer_slow_profile221)_ 9.91777468670601237e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_222____________________ (t_plasma_electron_alpha_spitzer_slow_profile222)_ 9.88786301060696537e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_223____________________ (t_plasma_electron_alpha_spitzer_slow_profile223)_ 9.85785608919294010e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_224____________________ (t_plasma_electron_alpha_spitzer_slow_profile224)_ 9.82775453209659200e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_225____________________ (t_plasma_electron_alpha_spitzer_slow_profile225)_ 9.79755895350688966e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_226____________________ (t_plasma_electron_alpha_spitzer_slow_profile226)_ 9.76726997220072835e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_227____________________ (t_plasma_electron_alpha_spitzer_slow_profile227)_ 9.73688821157490891e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_228____________________ (t_plasma_electron_alpha_spitzer_slow_profile228)_ 9.70641429967846303e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_229____________________ (t_plasma_electron_alpha_spitzer_slow_profile229)_ 9.67584886924532706e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_230____________________ (t_plasma_electron_alpha_spitzer_slow_profile230)_ 9.64519255772735451e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_231____________________ (t_plasma_electron_alpha_spitzer_slow_profile231)_ 9.61444600732772159e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_232____________________ (t_plasma_electron_alpha_spitzer_slow_profile232)_ 9.58360986503469348e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_233____________________ (t_plasma_electron_alpha_spitzer_slow_profile233)_ 9.55268478265574261e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_234____________________ (t_plasma_electron_alpha_spitzer_slow_profile234)_ 9.52167141685204776e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_235____________________ (t_plasma_electron_alpha_spitzer_slow_profile235)_ 9.49057042917341942e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_236____________________ (t_plasma_electron_alpha_spitzer_slow_profile236)_ 9.45938248609353161e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_237____________________ (t_plasma_electron_alpha_spitzer_slow_profile237)_ 9.42810825904560779e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_238____________________ (t_plasma_electron_alpha_spitzer_slow_profile238)_ 9.39674842445851755e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_239____________________ (t_plasma_electron_alpha_spitzer_slow_profile239)_ 9.36530366379318746e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_240____________________ (t_plasma_electron_alpha_spitzer_slow_profile240)_ 9.33377466357952490e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_241____________________ (t_plasma_electron_alpha_spitzer_slow_profile241)_ 9.30216211545370375e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_242____________________ (t_plasma_electron_alpha_spitzer_slow_profile242)_ 9.27046671619584539e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_243____________________ (t_plasma_electron_alpha_spitzer_slow_profile243)_ 9.23868916776821036e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_244____________________ (t_plasma_electron_alpha_spitzer_slow_profile244)_ 9.20683017735372755e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_245____________________ (t_plasma_electron_alpha_spitzer_slow_profile245)_ 9.17489045739500964e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_246____________________ (t_plasma_electron_alpha_spitzer_slow_profile246)_ 9.14287072563384595e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_247____________________ (t_plasma_electron_alpha_spitzer_slow_profile247)_ 9.11077170515106283e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_248____________________ (t_plasma_electron_alpha_spitzer_slow_profile248)_ 9.07859412440690461e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_249____________________ (t_plasma_electron_alpha_spitzer_slow_profile249)_ 9.04633871728187100e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_250____________________ (t_plasma_electron_alpha_spitzer_slow_profile250)_ 9.01400622311803068e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_251____________________ (t_plasma_electron_alpha_spitzer_slow_profile251)_ 8.98159738676075570e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_252____________________ (t_plasma_electron_alpha_spitzer_slow_profile252)_ 8.94911295860105316e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_253____________________ (t_plasma_electron_alpha_spitzer_slow_profile253)_ 8.91655369461826219e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_254____________________ (t_plasma_electron_alpha_spitzer_slow_profile254)_ 8.88392035642336930e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_255____________________ (t_plasma_electron_alpha_spitzer_slow_profile255)_ 8.85121371130274448e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_256____________________ (t_plasma_electron_alpha_spitzer_slow_profile256)_ 8.81843453226244689e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_257____________________ (t_plasma_electron_alpha_spitzer_slow_profile257)_ 8.78558359807302902e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_258____________________ (t_plasma_electron_alpha_spitzer_slow_profile258)_ 8.75266169331489707e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_259____________________ (t_plasma_electron_alpha_spitzer_slow_profile259)_ 8.71966960842418093e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_260____________________ (t_plasma_electron_alpha_spitzer_slow_profile260)_ 8.68660813973918811e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_261____________________ (t_plasma_electron_alpha_spitzer_slow_profile261)_ 8.65347808954739839e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_262____________________ (t_plasma_electron_alpha_spitzer_slow_profile262)_ 8.62028026613303355e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_263____________________ (t_plasma_electron_alpha_spitzer_slow_profile263)_ 8.58701548382520441e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_264____________________ (t_plasma_electron_alpha_spitzer_slow_profile264)_ 8.55368456304664626e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_265____________________ (t_plasma_electron_alpha_spitzer_slow_profile265)_ 8.52028833036303945e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_266____________________ (t_plasma_electron_alpha_spitzer_slow_profile266)_ 8.48682761853297940e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_267____________________ (t_plasma_electron_alpha_spitzer_slow_profile267)_ 8.45330326655849174e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_268____________________ (t_plasma_electron_alpha_spitzer_slow_profile268)_ 8.41971611973628686e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_269____________________ (t_plasma_electron_alpha_spitzer_slow_profile269)_ 8.38606702970949858e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_270____________________ (t_plasma_electron_alpha_spitzer_slow_profile270)_ 8.35235685452026422e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_271____________________ (t_plasma_electron_alpha_spitzer_slow_profile271)_ 8.31858645866277557e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_272____________________ (t_plasma_electron_alpha_spitzer_slow_profile272)_ 8.28475671313716799e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_273____________________ (t_plasma_electron_alpha_spitzer_slow_profile273)_ 8.25086849550397572e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_274____________________ (t_plasma_electron_alpha_spitzer_slow_profile274)_ 8.21692268993938435e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_275____________________ (t_plasma_electron_alpha_spitzer_slow_profile275)_ 8.18292018729109172e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_276____________________ (t_plasma_electron_alpha_spitzer_slow_profile276)_ 8.14886188513499365e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_277____________________ (t_plasma_electron_alpha_spitzer_slow_profile277)_ 8.11474868783256253e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_278____________________ (t_plasma_electron_alpha_spitzer_slow_profile278)_ 8.08058150658896746e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_279____________________ (t_plasma_electron_alpha_spitzer_slow_profile279)_ 8.04636125951197378e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_280____________________ (t_plasma_electron_alpha_spitzer_slow_profile280)_ 8.01208887167167094e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_281____________________ (t_plasma_electron_alpha_spitzer_slow_profile281)_ 7.97776527516090073e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_282____________________ (t_plasma_electron_alpha_spitzer_slow_profile282)_ 7.94339140915659270e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_283____________________ (t_plasma_electron_alpha_spitzer_slow_profile283)_ 7.90896821998188781e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_284____________________ (t_plasma_electron_alpha_spitzer_slow_profile284)_ 7.87449666116910585e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_285____________________ (t_plasma_electron_alpha_spitzer_slow_profile285)_ 7.83997769352359652e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_286____________________ (t_plasma_electron_alpha_spitzer_slow_profile286)_ 7.80541228518844776e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_287____________________ (t_plasma_electron_alpha_spitzer_slow_profile287)_ 7.77080141171011984e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_288____________________ (t_plasma_electron_alpha_spitzer_slow_profile288)_ 7.73614605610496775e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_289____________________ (t_plasma_electron_alpha_spitzer_slow_profile289)_ 7.70144720892675161e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_290____________________ (t_plasma_electron_alpha_spitzer_slow_profile290)_ 7.66670586833503864e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_291____________________ (t_plasma_electron_alpha_spitzer_slow_profile291)_ 7.63192304016466316e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_292____________________ (t_plasma_electron_alpha_spitzer_slow_profile292)_ 7.59709973799608473e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_293____________________ (t_plasma_electron_alpha_spitzer_slow_profile293)_ 7.56223698322689319e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_294____________________ (t_plasma_electron_alpha_spitzer_slow_profile294)_ 7.52733580514425515e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_295____________________ (t_plasma_electron_alpha_spitzer_slow_profile295)_ 7.49239724099848403e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_296____________________ (t_plasma_electron_alpha_spitzer_slow_profile296)_ 7.45742233607768812e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_297____________________ (t_plasma_electron_alpha_spitzer_slow_profile297)_ 7.42241214378355108e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_298____________________ (t_plasma_electron_alpha_spitzer_slow_profile298)_ 7.38736772570823819e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_299____________________ (t_plasma_electron_alpha_spitzer_slow_profile299)_ 7.35229015171246947e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_300____________________ (t_plasma_electron_alpha_spitzer_slow_profile300)_ 7.31718050000484066e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_301____________________ (t_plasma_electron_alpha_spitzer_slow_profile301)_ 7.28203985722232772e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_302____________________ (t_plasma_electron_alpha_spitzer_slow_profile302)_ 7.24686931851205030e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_303____________________ (t_plasma_electron_alpha_spitzer_slow_profile303)_ 7.21166998761436084e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_304____________________ (t_plasma_electron_alpha_spitzer_slow_profile304)_ 7.17644297694722599e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_305____________________ (t_plasma_electron_alpha_spitzer_slow_profile305)_ 7.14118940769198685e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_306____________________ (t_plasma_electron_alpha_spitzer_slow_profile306)_ 7.10591040988048483e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_307____________________ (t_plasma_electron_alpha_spitzer_slow_profile307)_ 7.07060712248363088e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_308____________________ (t_plasma_electron_alpha_spitzer_slow_profile308)_ 7.03528069350143448e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_309____________________ (t_plasma_electron_alpha_spitzer_slow_profile309)_ 6.99993228005455270e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_310____________________ (t_plasma_electron_alpha_spitzer_slow_profile310)_ 6.96456304847734353e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_311____________________ (t_plasma_electron_alpha_spitzer_slow_profile311)_ 6.92917417441255790e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_312____________________ (t_plasma_electron_alpha_spitzer_slow_profile312)_ 6.89376684290758712e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_313____________________ (t_plasma_electron_alpha_spitzer_slow_profile313)_ 6.85834224851247676e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_314____________________ (t_plasma_electron_alpha_spitzer_slow_profile314)_ 6.82290159537956686e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_315____________________ (t_plasma_electron_alpha_spitzer_slow_profile315)_ 6.78744609736497195e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_316____________________ (t_plasma_electron_alpha_spitzer_slow_profile316)_ 6.75197697813184394e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_317____________________ (t_plasma_electron_alpha_spitzer_slow_profile317)_ 6.71649547125550583e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_318____________________ (t_plasma_electron_alpha_spitzer_slow_profile318)_ 6.68100282033053716e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_319____________________ (t_plasma_electron_alpha_spitzer_slow_profile319)_ 6.64550027907982011e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_320____________________ (t_plasma_electron_alpha_spitzer_slow_profile320)_ 6.60998911146564061e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_321____________________ (t_plasma_electron_alpha_spitzer_slow_profile321)_ 6.57447059180288673e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_322____________________ (t_plasma_electron_alpha_spitzer_slow_profile322)_ 6.53894600487441302e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_323____________________ (t_plasma_electron_alpha_spitzer_slow_profile323)_ 6.50341664604867864e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_324____________________ (t_plasma_electron_alpha_spitzer_slow_profile324)_ 6.46788382139962259e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_325____________________ (t_plasma_electron_alpha_spitzer_slow_profile325)_ 6.43234884782898919e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_326____________________ (t_plasma_electron_alpha_spitzer_slow_profile326)_ 6.39681305319104831e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_327____________________ (t_plasma_electron_alpha_spitzer_slow_profile327)_ 6.36127777641992243e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_328____________________ (t_plasma_electron_alpha_spitzer_slow_profile328)_ 6.32574436765945824e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_329____________________ (t_plasma_electron_alpha_spitzer_slow_profile329)_ 6.29021418839584290e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_330____________________ (t_plasma_electron_alpha_spitzer_slow_profile330)_ 6.25468861159301448e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_331____________________ (t_plasma_electron_alpha_spitzer_slow_profile331)_ 6.21916902183095810e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_332____________________ (t_plasma_electron_alpha_spitzer_slow_profile332)_ 6.18365681544699286e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_333____________________ (t_plasma_electron_alpha_spitzer_slow_profile333)_ 6.14815340068013749e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_334____________________ (t_plasma_electron_alpha_spitzer_slow_profile334)_ 6.11266019781870007e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_335____________________ (t_plasma_electron_alpha_spitzer_slow_profile335)_ 6.07717863935116287e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_336____________________ (t_plasma_electron_alpha_spitzer_slow_profile336)_ 6.04171017012051559e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_337____________________ (t_plasma_electron_alpha_spitzer_slow_profile337)_ 6.00625624748213349e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_338____________________ (t_plasma_electron_alpha_spitzer_slow_profile338)_ 5.97081834146535151e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_339____________________ (t_plasma_electron_alpha_spitzer_slow_profile339)_ 5.93539793493882750e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_340____________________ (t_plasma_electron_alpha_spitzer_slow_profile340)_ 5.89999652377993899e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_341____________________ (t_plasma_electron_alpha_spitzer_slow_profile341)_ 5.86461561704823109e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_342____________________ (t_plasma_electron_alpha_spitzer_slow_profile342)_ 5.82925673716315318e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_343____________________ (t_plasma_electron_alpha_spitzer_slow_profile343)_ 5.79392142008625433e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_344____________________ (t_plasma_electron_alpha_spitzer_slow_profile344)_ 5.75861121550796384e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_345____________________ (t_plasma_electron_alpha_spitzer_slow_profile345)_ 5.72332768703915362e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_346____________________ (t_plasma_electron_alpha_spitzer_slow_profile346)_ 5.68807241240772643e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_347____________________ (t_plasma_electron_alpha_spitzer_slow_profile347)_ 5.65284698366032679e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_348____________________ (t_plasma_electron_alpha_spitzer_slow_profile348)_ 5.61765300736949080e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_349____________________ (t_plasma_electron_alpha_spitzer_slow_profile349)_ 5.58249210484636271e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_350____________________ (t_plasma_electron_alpha_spitzer_slow_profile350)_ 5.54736591235931109e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_351____________________ (t_plasma_electron_alpha_spitzer_slow_profile351)_ 5.51227608135857028e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_352____________________ (t_plasma_electron_alpha_spitzer_slow_profile352)_ 5.47722427870729223e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_353____________________ (t_plasma_electron_alpha_spitzer_slow_profile353)_ 5.44221218691914199e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_354____________________ (t_plasma_electron_alpha_spitzer_slow_profile354)_ 5.40724150440287987e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_355____________________ (t_plasma_electron_alpha_spitzer_slow_profile355)_ 5.37231394571406562e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_356____________________ (t_plasma_electron_alpha_spitzer_slow_profile356)_ 5.33743124181433992e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_357____________________ (t_plasma_electron_alpha_spitzer_slow_profile357)_ 5.30259514033852630e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_358____________________ (t_plasma_electron_alpha_spitzer_slow_profile358)_ 5.26780740586995755e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_359____________________ (t_plasma_electron_alpha_spitzer_slow_profile359)_ 5.23306982022435974e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_360____________________ (t_plasma_electron_alpha_spitzer_slow_profile360)_ 5.19838418274275016e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_361____________________ (t_plasma_electron_alpha_spitzer_slow_profile361)_ 5.16375231059363005e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_362____________________ (t_plasma_electron_alpha_spitzer_slow_profile362)_ 5.12917603908512820e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_363____________________ (t_plasma_electron_alpha_spitzer_slow_profile363)_ 5.09465722198730431e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_364____________________ (t_plasma_electron_alpha_spitzer_slow_profile364)_ 5.06019773186531463e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_365____________________ (t_plasma_electron_alpha_spitzer_slow_profile365)_ 5.02579946042381209e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_366____________________ (t_plasma_electron_alpha_spitzer_slow_profile366)_ 4.99146431886323461e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_367____________________ (t_plasma_electron_alpha_spitzer_slow_profile367)_ 4.95719423824846905e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_368____________________ (t_plasma_electron_alpha_spitzer_slow_profile368)_ 4.92299116989058427e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_369____________________ (t_plasma_electron_alpha_spitzer_slow_profile369)_ 4.88885708574222089e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_370____________________ (t_plasma_electron_alpha_spitzer_slow_profile370)_ 4.85479397880738184e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_371____________________ (t_plasma_electron_alpha_spitzer_slow_profile371)_ 4.82080386356628532e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_372____________________ (t_plasma_electron_alpha_spitzer_slow_profile372)_ 4.78688877641617105e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_373____________________ (t_plasma_electron_alpha_spitzer_slow_profile373)_ 4.75305077612872051e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_374____________________ (t_plasma_electron_alpha_spitzer_slow_profile374)_ 4.71929194432514465e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_375____________________ (t_plasma_electron_alpha_spitzer_slow_profile375)_ 4.68561438596972302e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_376____________________ (t_plasma_electron_alpha_spitzer_slow_profile376)_ 4.65202022988286668e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_377____________________ (t_plasma_electron_alpha_spitzer_slow_profile377)_ 4.61851162927473191e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_378____________________ (t_plasma_electron_alpha_spitzer_slow_profile378)_ 4.58509076230048662e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_379____________________ (t_plasma_electron_alpha_spitzer_slow_profile379)_ 4.55175983263845674e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_380____________________ (t_plasma_electron_alpha_spitzer_slow_profile380)_ 4.51852107009239390e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_381____________________ (t_plasma_electron_alpha_spitzer_slow_profile381)_ 4.48537673121921776e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_382____________________ (t_plasma_electron_alpha_spitzer_slow_profile382)_ 4.45232909998368231e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_383____________________ (t_plasma_electron_alpha_spitzer_slow_profile383)_ 4.41938048844153220e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_384____________________ (t_plasma_electron_alpha_spitzer_slow_profile384)_ 4.38653323745271218e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_385____________________ (t_plasma_electron_alpha_spitzer_slow_profile385)_ 4.35378971742650445e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_386____________________ (t_plasma_electron_alpha_spitzer_slow_profile386)_ 4.32115232910035008e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_387____________________ (t_plasma_electron_alpha_spitzer_slow_profile387)_ 4.28862350435443129e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_388____________________ (t_plasma_electron_alpha_spitzer_slow_profile388)_ 4.25620570706417678e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_389____________________ (t_plasma_electron_alpha_spitzer_slow_profile389)_ 4.22390143399292428e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_390____________________ (t_plasma_electron_alpha_spitzer_slow_profile390)_ 4.19171321572725519e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_391____________________ (t_plasma_electron_alpha_spitzer_slow_profile391)_ 4.15964361765766066e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_392____________________ (t_plasma_electron_alpha_spitzer_slow_profile392)_ 4.12769524100731311e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_393____________________ (t_plasma_electron_alpha_spitzer_slow_profile393)_ 4.09587072391206175e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_394____________________ (t_plasma_electron_alpha_spitzer_slow_profile394)_ 4.06417274255488792e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_395____________________ (t_plasma_electron_alpha_spitzer_slow_profile395)_ 4.03260401235834454e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_396____________________ (t_plasma_electron_alpha_spitzer_slow_profile396)_ 4.00116728923880172e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_397____________________ (t_plasma_electron_alpha_spitzer_slow_profile397)_ 3.96986537092654856e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_398____________________ (t_plasma_electron_alpha_spitzer_slow_profile398)_ 3.93870109835617987e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_399____________________ (t_plasma_electron_alpha_spitzer_slow_profile399)_ 3.90767735713203834e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_400____________________ (t_plasma_electron_alpha_spitzer_slow_profile400)_ 3.87679707907377824e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_401____________________ (t_plasma_electron_alpha_spitzer_slow_profile401)_ 3.84606324384770826e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_402____________________ (t_plasma_electron_alpha_spitzer_slow_profile402)_ 3.81547888068981822e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_403____________________ (t_plasma_electron_alpha_spitzer_slow_profile403)_ 3.78504707022705666e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_404____________________ (t_plasma_electron_alpha_spitzer_slow_profile404)_ 3.75477094640390086e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_405____________________ (t_plasma_electron_alpha_spitzer_slow_profile405)_ 3.72465369852184924e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_406____________________ (t_plasma_electron_alpha_spitzer_slow_profile406)_ 3.69469857340018804e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_407____________________ (t_plasma_electron_alpha_spitzer_slow_profile407)_ 3.66490887766705242e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_408____________________ (t_plasma_electron_alpha_spitzer_slow_profile408)_ 3.63528798019061572e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_409____________________ (t_plasma_electron_alpha_spitzer_slow_profile409)_ 3.60583931466119723e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_410____________________ (t_plasma_electron_alpha_spitzer_slow_profile410)_ 3.57656638233591895e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_411____________________ (t_plasma_electron_alpha_spitzer_slow_profile411)_ 3.54747275495880088e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_412____________________ (t_plasma_electron_alpha_spitzer_slow_profile412)_ 3.51856207787021313e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_413____________________ (t_plasma_electron_alpha_spitzer_slow_profile413)_ 3.48983807332111651e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_414____________________ (t_plasma_electron_alpha_spitzer_slow_profile414)_ 3.46130454400885634e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_415____________________ (t_plasma_electron_alpha_spitzer_slow_profile415)_ 3.43296537685306158e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_416____________________ (t_plasma_electron_alpha_spitzer_slow_profile416)_ 3.40482454703196491e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_417____________________ (t_plasma_electron_alpha_spitzer_slow_profile417)_ 3.37688612230161056e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_418____________________ (t_plasma_electron_alpha_spitzer_slow_profile418)_ 3.34915426762270207e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_419____________________ (t_plasma_electron_alpha_spitzer_slow_profile419)_ 3.32163325012248323e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_420____________________ (t_plasma_electron_alpha_spitzer_slow_profile420)_ 3.29432744442196890e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_421____________________ (t_plasma_electron_alpha_spitzer_slow_profile421)_ 3.26724133836223118e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_422____________________ (t_plasma_electron_alpha_spitzer_slow_profile422)_ 3.24037953916713861e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_423____________________ (t_plasma_electron_alpha_spitzer_slow_profile423)_ 3.21374678008426284e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_424____________________ (t_plasma_electron_alpha_spitzer_slow_profile424)_ 3.18734792755051288e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_425____________________ (t_plasma_electron_alpha_spitzer_slow_profile425)_ 3.16118798893460451e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_426____________________ (t_plasma_electron_alpha_spitzer_slow_profile426)_ 3.13527212091473328e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_427____________________ (t_plasma_electron_alpha_spitzer_slow_profile427)_ 3.10960563855717409e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_428____________________ (t_plasma_electron_alpha_spitzer_slow_profile428)_ 3.08419402516973473e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_429____________________ (t_plasma_electron_alpha_spitzer_slow_profile429)_ 3.05904294301370672e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_430____________________ (t_plasma_electron_alpha_spitzer_slow_profile430)_ 3.03415824496898301e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_431____________________ (t_plasma_electron_alpha_spitzer_slow_profile431)_ 3.00954598725995115e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_432____________________ (t_plasma_electron_alpha_spitzer_slow_profile432)_ 2.98521244336478031e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_433____________________ (t_plasma_electron_alpha_spitzer_slow_profile433)_ 2.96116411924822742e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_434____________________ (t_plasma_electron_alpha_spitzer_slow_profile434)_ 2.93740777007882536e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_435____________________ (t_plasma_electron_alpha_spitzer_slow_profile435)_ 2.91395041861542636e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_436____________________ (t_plasma_electron_alpha_spitzer_slow_profile436)_ 2.89079937547698007e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_437____________________ (t_plasma_electron_alpha_spitzer_slow_profile437)_ 2.86796226154353240e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_438____________________ (t_plasma_electron_alpha_spitzer_slow_profile438)_ 2.84544703277730071e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_439____________________ (t_plasma_electron_alpha_spitzer_slow_profile439)_ 2.82326200780177783e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_440____________________ (t_plasma_electron_alpha_spitzer_slow_profile440)_ 2.80141589863602380e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_441____________________ (t_plasma_electron_alpha_spitzer_slow_profile441)_ 2.77991784505333239e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_442____________________ (t_plasma_electron_alpha_spitzer_slow_profile442)_ 2.75877745312132494e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_443____________________ (t_plasma_electron_alpha_spitzer_slow_profile443)_ 2.73800483858879118e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_444____________________ (t_plasma_electron_alpha_spitzer_slow_profile444)_ 2.71761067591849925e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_445____________________ (t_plasma_electron_alpha_spitzer_slow_profile445)_ 2.69760625393232367e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_446____________________ (t_plasma_electron_alpha_spitzer_slow_profile446)_ 2.67800353924541934e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_447____________________ (t_plasma_electron_alpha_spitzer_slow_profile447)_ 2.65881524893266441e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_448____________________ (t_plasma_electron_alpha_spitzer_slow_profile448)_ 2.64005493421217152e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_449____________________ (t_plasma_electron_alpha_spitzer_slow_profile449)_ 2.62173707737191009e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_450____________________ (t_plasma_electron_alpha_spitzer_slow_profile450)_ 2.60387720474261730e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_451____________________ (t_plasma_electron_alpha_spitzer_slow_profile451)_ 2.58649201928279726e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_452____________________ (t_plasma_electron_alpha_spitzer_slow_profile452)_ 2.56959955736354551e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_453____________________ (t_plasma_electron_alpha_spitzer_slow_profile453)_ 2.55321937572854651e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_454____________________ (t_plasma_electron_alpha_spitzer_slow_profile454)_ 2.53737277651864213e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_455____________________ (t_plasma_electron_alpha_spitzer_slow_profile455)_ 2.52208308093578359e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_456____________________ (t_plasma_electron_alpha_spitzer_slow_profile456)_ 2.50737596596103729e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_457____________________ (t_plasma_electron_alpha_spitzer_slow_profile457)_ 2.49327988414945384e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_458____________________ (t_plasma_electron_alpha_spitzer_slow_profile458)_ 2.47982659491491980e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_459____________________ (t_plasma_electron_alpha_spitzer_slow_profile459)_ 2.46705184861634591e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_460____________________ (t_plasma_electron_alpha_spitzer_slow_profile460)_ 2.45499628521639313e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_461____________________ (t_plasma_electron_alpha_spitzer_slow_profile461)_ 2.44370664293789369e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_462____________________ (t_plasma_electron_alpha_spitzer_slow_profile462)_ 2.43323743011698151e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_463____________________ (t_plasma_electron_alpha_spitzer_slow_profile463)_ 2.42365331782793264e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_464____________________ (t_plasma_electron_alpha_spitzer_slow_profile464)_ 2.41503271153109239e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_465____________________ (t_plasma_electron_alpha_spitzer_slow_profile465)_ 2.40747337702937658e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_466____________________ (t_plasma_electron_alpha_spitzer_slow_profile466)_ 2.40110195433673096e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_467____________________ (t_plasma_electron_alpha_spitzer_slow_profile467)_ 2.39609171678831195e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_468____________________ (t_plasma_electron_alpha_spitzer_slow_profile468)_ 2.39270104343923012e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_469____________________ (t_plasma_electron_alpha_spitzer_slow_profile469)_ 2.39138151546657796e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_470____________________ (t_plasma_electron_alpha_spitzer_slow_profile470)_ 2.39343895722824357e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_471____________________ (t_plasma_electron_alpha_spitzer_slow_profile471)_ 2.31212901326312364e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_472____________________ (t_plasma_electron_alpha_spitzer_slow_profile472)_ 2.23032143507040509e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_473____________________ (t_plasma_electron_alpha_spitzer_slow_profile473)_ 2.14802765896704106e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_474____________________ (t_plasma_electron_alpha_spitzer_slow_profile474)_ 2.06526162054385454e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_475____________________ (t_plasma_electron_alpha_spitzer_slow_profile475)_ 1.98204011609122571e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_476____________________ (t_plasma_electron_alpha_spitzer_slow_profile476)_ 1.89838322134355808e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_477____________________ (t_plasma_electron_alpha_spitzer_slow_profile477)_ 1.81431477829951088e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_478____________________ (t_plasma_electron_alpha_spitzer_slow_profile478)_ 1.72986296331391093e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_479____________________ (t_plasma_electron_alpha_spitzer_slow_profile479)_ 1.64506095276629516e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_480____________________ (t_plasma_electron_alpha_spitzer_slow_profile480)_ 1.55994770661293053e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_481____________________ (t_plasma_electron_alpha_spitzer_slow_profile481)_ 1.47456889533412239e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_482____________________ (t_plasma_electron_alpha_spitzer_slow_profile482)_ 1.38897800263713345e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_483____________________ (t_plasma_electron_alpha_spitzer_slow_profile483)_ 1.30323764540091841e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_484____________________ (t_plasma_electron_alpha_spitzer_slow_profile484)_ 1.21742116468201281e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_485____________________ (t_plasma_electron_alpha_spitzer_slow_profile485)_ 1.13161455853109050e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_486____________________ (t_plasma_electron_alpha_spitzer_slow_profile486)_ 1.04591885102073082e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_487____________________ (t_plasma_electron_alpha_spitzer_slow_profile487)_ 9.60453025579872527e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_488____________________ (t_plasma_electron_alpha_spitzer_slow_profile488)_ 8.75357699812473466e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_489____________________ (t_plasma_electron_alpha_spitzer_slow_profile489)_ 7.90799792302001037e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_490____________________ (t_plasma_electron_alpha_spitzer_slow_profile490)_ 7.06978544660775837e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_491____________________ (t_plasma_electron_alpha_spitzer_slow_profile491)_ 6.24133441388682458e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_492____________________ (t_plasma_electron_alpha_spitzer_slow_profile492)_ 5.42554866631976482e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_493____________________ (t_plasma_electron_alpha_spitzer_slow_profile493)_ 4.62598850638044831e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_494____________________ (t_plasma_electron_alpha_spitzer_slow_profile494)_ 3.84708199924437624e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_495____________________ (t_plasma_electron_alpha_spitzer_slow_profile495)_ 3.09444152854908353e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_496____________________ (t_plasma_electron_alpha_spitzer_slow_profile496)_ 2.37536660412754480e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_497____________________ (t_plasma_electron_alpha_spitzer_slow_profile497)_ 1.69970903686249009e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_498____________________ (t_plasma_electron_alpha_spitzer_slow_profile498)_ 1.08154487205141502e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_499____________________ (t_plasma_electron_alpha_spitzer_slow_profile499)_ 5.43064856133082443e-03 -Electron-alpha_Spitzer_slowing_down_time_at_point_500____________________ (t_plasma_electron_alpha_spitzer_slow_profile500)_ 1.31488211348599368e-03 -Volume_averaged_plasma_fuel_Spitzer_resistivity_(η)_(Ohm_m)______________ (res_plasma_fuel_spitzer_vol_avg)_ 1.31570862657945193e-09 -Plasma_Spitzer_resistivity_at_point_0____________________________________ (res_plasma_fuel_spitzer_profile0)_ 4.58669039022365360e-10 -Plasma_Spitzer_resistivity_at_point_1____________________________________ (res_plasma_fuel_spitzer_profile1)_ 4.58672487614522428e-10 -Plasma_Spitzer_resistivity_at_point_2____________________________________ (res_plasma_fuel_spitzer_profile2)_ 4.58682833610741968e-10 -Plasma_Spitzer_resistivity_at_point_3____________________________________ (res_plasma_fuel_spitzer_profile3)_ 4.58700077670301663e-10 -Plasma_Spitzer_resistivity_at_point_4____________________________________ (res_plasma_fuel_spitzer_profile4)_ 4.58724220892094309e-10 -Plasma_Spitzer_resistivity_at_point_5____________________________________ (res_plasma_fuel_spitzer_profile5)_ 4.58755264814778106e-10 -Plasma_Spitzer_resistivity_at_point_6____________________________________ (res_plasma_fuel_spitzer_profile6)_ 4.58793211416982366e-10 -Plasma_Spitzer_resistivity_at_point_7____________________________________ (res_plasma_fuel_spitzer_profile7)_ 4.58838063117574743e-10 -Plasma_Spitzer_resistivity_at_point_8____________________________________ (res_plasma_fuel_spitzer_profile8)_ 4.58889822775986888e-10 -Plasma_Spitzer_resistivity_at_point_9____________________________________ (res_plasma_fuel_spitzer_profile9)_ 4.58948493692599340e-10 -Plasma_Spitzer_resistivity_at_point_10___________________________________ (res_plasma_fuel_spitzer_profile10)_ 4.59014079609186089e-10 -Plasma_Spitzer_resistivity_at_point_11___________________________________ (res_plasma_fuel_spitzer_profile11)_ 4.59086584709419362e-10 -Plasma_Spitzer_resistivity_at_point_12___________________________________ (res_plasma_fuel_spitzer_profile12)_ 4.59166013619432930e-10 -Plasma_Spitzer_resistivity_at_point_13___________________________________ (res_plasma_fuel_spitzer_profile13)_ 4.59252371408446893e-10 -Plasma_Spitzer_resistivity_at_point_14___________________________________ (res_plasma_fuel_spitzer_profile14)_ 4.59345663589449789e-10 -Plasma_Spitzer_resistivity_at_point_15___________________________________ (res_plasma_fuel_spitzer_profile15)_ 4.59445896119944352e-10 -Plasma_Spitzer_resistivity_at_point_16___________________________________ (res_plasma_fuel_spitzer_profile16)_ 4.59553075402750444e-10 -Plasma_Spitzer_resistivity_at_point_17___________________________________ (res_plasma_fuel_spitzer_profile17)_ 4.59667208286869614e-10 -Plasma_Spitzer_resistivity_at_point_18___________________________________ (res_plasma_fuel_spitzer_profile18)_ 4.59788302068411441e-10 -Plasma_Spitzer_resistivity_at_point_19___________________________________ (res_plasma_fuel_spitzer_profile19)_ 4.59916364491578389e-10 -Plasma_Spitzer_resistivity_at_point_20___________________________________ (res_plasma_fuel_spitzer_profile20)_ 4.60051403749714055e-10 -Plasma_Spitzer_resistivity_at_point_21___________________________________ (res_plasma_fuel_spitzer_profile21)_ 4.60193428486411233e-10 -Plasma_Spitzer_resistivity_at_point_22___________________________________ (res_plasma_fuel_spitzer_profile22)_ 4.60342447796682419e-10 -Plasma_Spitzer_resistivity_at_point_23___________________________________ (res_plasma_fuel_spitzer_profile23)_ 4.60498471228191642e-10 -Plasma_Spitzer_resistivity_at_point_24___________________________________ (res_plasma_fuel_spitzer_profile24)_ 4.60661508782548280e-10 -Plasma_Spitzer_resistivity_at_point_25___________________________________ (res_plasma_fuel_spitzer_profile25)_ 4.60831570916663837e-10 -Plasma_Spitzer_resistivity_at_point_26___________________________________ (res_plasma_fuel_spitzer_profile26)_ 4.61008668544172165e-10 -Plasma_Spitzer_resistivity_at_point_27___________________________________ (res_plasma_fuel_spitzer_profile27)_ 4.61192813036909291e-10 -Plasma_Spitzer_resistivity_at_point_28___________________________________ (res_plasma_fuel_spitzer_profile28)_ 4.61384016226462101e-10 -Plasma_Spitzer_resistivity_at_point_29___________________________________ (res_plasma_fuel_spitzer_profile29)_ 4.61582290405774937e-10 -Plasma_Spitzer_resistivity_at_point_30___________________________________ (res_plasma_fuel_spitzer_profile30)_ 4.61787648330825718e-10 -Plasma_Spitzer_resistivity_at_point_31___________________________________ (res_plasma_fuel_spitzer_profile31)_ 4.62000103222361318e-10 -Plasma_Spitzer_resistivity_at_point_32___________________________________ (res_plasma_fuel_spitzer_profile32)_ 4.62219668767702523e-10 -Plasma_Spitzer_resistivity_at_point_33___________________________________ (res_plasma_fuel_spitzer_profile33)_ 4.62446359122610257e-10 -Plasma_Spitzer_resistivity_at_point_34___________________________________ (res_plasma_fuel_spitzer_profile34)_ 4.62680188913221385e-10 -Plasma_Spitzer_resistivity_at_point_35___________________________________ (res_plasma_fuel_spitzer_profile35)_ 4.62921173238045999e-10 -Plasma_Spitzer_resistivity_at_point_36___________________________________ (res_plasma_fuel_spitzer_profile36)_ 4.63169327670036970e-10 -Plasma_Spitzer_resistivity_at_point_37___________________________________ (res_plasma_fuel_spitzer_profile37)_ 4.63424668258721023e-10 -Plasma_Spitzer_resistivity_at_point_38___________________________________ (res_plasma_fuel_spitzer_profile38)_ 4.63687211532400690e-10 -Plasma_Spitzer_resistivity_at_point_39___________________________________ (res_plasma_fuel_spitzer_profile39)_ 4.63956974500423944e-10 -Plasma_Spitzer_resistivity_at_point_40___________________________________ (res_plasma_fuel_spitzer_profile40)_ 4.64233974655521290e-10 -Plasma_Spitzer_resistivity_at_point_41___________________________________ (res_plasma_fuel_spitzer_profile41)_ 4.64518229976212962e-10 -Plasma_Spitzer_resistivity_at_point_42___________________________________ (res_plasma_fuel_spitzer_profile42)_ 4.64809758929284942e-10 -Plasma_Spitzer_resistivity_at_point_43___________________________________ (res_plasma_fuel_spitzer_profile43)_ 4.65108580472336200e-10 -Plasma_Spitzer_resistivity_at_point_44___________________________________ (res_plasma_fuel_spitzer_profile44)_ 4.65414714056396366e-10 -Plasma_Spitzer_resistivity_at_point_45___________________________________ (res_plasma_fuel_spitzer_profile45)_ 4.65728179628613857e-10 -Plasma_Spitzer_resistivity_at_point_46___________________________________ (res_plasma_fuel_spitzer_profile46)_ 4.66048997635017785e-10 -Plasma_Spitzer_resistivity_at_point_47___________________________________ (res_plasma_fuel_spitzer_profile47)_ 4.66377189023350839e-10 -Plasma_Spitzer_resistivity_at_point_48___________________________________ (res_plasma_fuel_spitzer_profile48)_ 4.66712775245977241e-10 -Plasma_Spitzer_resistivity_at_point_49___________________________________ (res_plasma_fuel_spitzer_profile49)_ 4.67055778262862250e-10 -Plasma_Spitzer_resistivity_at_point_50___________________________________ (res_plasma_fuel_spitzer_profile50)_ 4.67406220544629836e-10 -Plasma_Spitzer_resistivity_at_point_51___________________________________ (res_plasma_fuel_spitzer_profile51)_ 4.67764125075691904e-10 -Plasma_Spitzer_resistivity_at_point_52___________________________________ (res_plasma_fuel_spitzer_profile52)_ 4.68129515357456513e-10 -Plasma_Spitzer_resistivity_at_point_53___________________________________ (res_plasma_fuel_spitzer_profile53)_ 4.68502415411612404e-10 -Plasma_Spitzer_resistivity_at_point_54___________________________________ (res_plasma_fuel_spitzer_profile54)_ 4.68882849783489524e-10 -Plasma_Spitzer_resistivity_at_point_55___________________________________ (res_plasma_fuel_spitzer_profile55)_ 4.69270843545499998e-10 -Plasma_Spitzer_resistivity_at_point_56___________________________________ (res_plasma_fuel_spitzer_profile56)_ 4.69666422300657258e-10 -Plasma_Spitzer_resistivity_at_point_57___________________________________ (res_plasma_fuel_spitzer_profile57)_ 4.70069612186176146e-10 -Plasma_Spitzer_resistivity_at_point_58___________________________________ (res_plasma_fuel_spitzer_profile58)_ 4.70480439877152831e-10 -Plasma_Spitzer_resistivity_at_point_59___________________________________ (res_plasma_fuel_spitzer_profile59)_ 4.70898932590326725e-10 -Plasma_Spitzer_resistivity_at_point_60___________________________________ (res_plasma_fuel_spitzer_profile60)_ 4.71325118087925734e-10 -Plasma_Spitzer_resistivity_at_point_61___________________________________ (res_plasma_fuel_spitzer_profile61)_ 4.71759024681594641e-10 -Plasma_Spitzer_resistivity_at_point_62___________________________________ (res_plasma_fuel_spitzer_profile62)_ 4.72200681236408071e-10 -Plasma_Spitzer_resistivity_at_point_63___________________________________ (res_plasma_fuel_spitzer_profile63)_ 4.72650117174968552e-10 -Plasma_Spitzer_resistivity_at_point_64___________________________________ (res_plasma_fuel_spitzer_profile64)_ 4.73107362481591633e-10 -Plasma_Spitzer_resistivity_at_point_65___________________________________ (res_plasma_fuel_spitzer_profile65)_ 4.73572447706577857e-10 -Plasma_Spitzer_resistivity_at_point_66___________________________________ (res_plasma_fuel_spitzer_profile66)_ 4.74045403970573454e-10 -Plasma_Spitzer_resistivity_at_point_67___________________________________ (res_plasma_fuel_spitzer_profile67)_ 4.74526262969020674e-10 -Plasma_Spitzer_resistivity_at_point_68___________________________________ (res_plasma_fuel_spitzer_profile68)_ 4.75015056976698388e-10 -Plasma_Spitzer_resistivity_at_point_69___________________________________ (res_plasma_fuel_spitzer_profile69)_ 4.75511818852353887e-10 -Plasma_Spitzer_resistivity_at_point_70___________________________________ (res_plasma_fuel_spitzer_profile70)_ 4.76016582043429185e-10 -Plasma_Spitzer_resistivity_at_point_71___________________________________ (res_plasma_fuel_spitzer_profile71)_ 4.76529380590878103e-10 -Plasma_Spitzer_resistivity_at_point_72___________________________________ (res_plasma_fuel_spitzer_profile72)_ 4.77050249134082105e-10 -Plasma_Spitzer_resistivity_at_point_73___________________________________ (res_plasma_fuel_spitzer_profile73)_ 4.77579222915859283e-10 -Plasma_Spitzer_resistivity_at_point_74___________________________________ (res_plasma_fuel_spitzer_profile74)_ 4.78116337787573238e-10 -Plasma_Spitzer_resistivity_at_point_75___________________________________ (res_plasma_fuel_spitzer_profile75)_ 4.78661630214337905e-10 -Plasma_Spitzer_resistivity_at_point_76___________________________________ (res_plasma_fuel_spitzer_profile76)_ 4.79215137280324638e-10 -Plasma_Spitzer_resistivity_at_point_77___________________________________ (res_plasma_fuel_spitzer_profile77)_ 4.79776896694170217e-10 -Plasma_Spitzer_resistivity_at_point_78___________________________________ (res_plasma_fuel_spitzer_profile78)_ 4.80346946794486695e-10 -Plasma_Spitzer_resistivity_at_point_79___________________________________ (res_plasma_fuel_spitzer_profile79)_ 4.80925326555474959e-10 -Plasma_Spitzer_resistivity_at_point_80___________________________________ (res_plasma_fuel_spitzer_profile80)_ 4.81512075592644370e-10 -Plasma_Spitzer_resistivity_at_point_81___________________________________ (res_plasma_fuel_spitzer_profile81)_ 4.82107234168639737e-10 -Plasma_Spitzer_resistivity_at_point_82___________________________________ (res_plasma_fuel_spitzer_profile82)_ 4.82710843199174062e-10 -Plasma_Spitzer_resistivity_at_point_83___________________________________ (res_plasma_fuel_spitzer_profile83)_ 4.83322944259073263e-10 -Plasma_Spitzer_resistivity_at_point_84___________________________________ (res_plasma_fuel_spitzer_profile84)_ 4.83943579588431126e-10 -Plasma_Spitzer_resistivity_at_point_85___________________________________ (res_plasma_fuel_spitzer_profile85)_ 4.84572792098876333e-10 -Plasma_Spitzer_resistivity_at_point_86___________________________________ (res_plasma_fuel_spitzer_profile86)_ 4.85210625379954884e-10 -Plasma_Spitzer_resistivity_at_point_87___________________________________ (res_plasma_fuel_spitzer_profile87)_ 4.85857123705627290e-10 -Plasma_Spitzer_resistivity_at_point_88___________________________________ (res_plasma_fuel_spitzer_profile88)_ 4.86512332040883645e-10 -Plasma_Spitzer_resistivity_at_point_89___________________________________ (res_plasma_fuel_spitzer_profile89)_ 4.87176296048476970e-10 -Plasma_Spitzer_resistivity_at_point_90___________________________________ (res_plasma_fuel_spitzer_profile90)_ 4.87849062095779620e-10 -Plasma_Spitzer_resistivity_at_point_91___________________________________ (res_plasma_fuel_spitzer_profile91)_ 4.88530677261759303e-10 -Plasma_Spitzer_resistivity_at_point_92___________________________________ (res_plasma_fuel_spitzer_profile92)_ 4.89221189344080742e-10 -Plasma_Spitzer_resistivity_at_point_93___________________________________ (res_plasma_fuel_spitzer_profile93)_ 4.89920646866333680e-10 -Plasma_Spitzer_resistivity_at_point_94___________________________________ (res_plasma_fuel_spitzer_profile94)_ 4.90629099085388375e-10 -Plasma_Spitzer_resistivity_at_point_95___________________________________ (res_plasma_fuel_spitzer_profile95)_ 4.91346595998880451e-10 -Plasma_Spitzer_resistivity_at_point_96___________________________________ (res_plasma_fuel_spitzer_profile96)_ 4.92073188352827885e-10 -Plasma_Spitzer_resistivity_at_point_97___________________________________ (res_plasma_fuel_spitzer_profile97)_ 4.92808927649381898e-10 -Plasma_Spitzer_resistivity_at_point_98___________________________________ (res_plasma_fuel_spitzer_profile98)_ 4.93553866154712876e-10 -Plasma_Spitzer_resistivity_at_point_99___________________________________ (res_plasma_fuel_spitzer_profile99)_ 4.94308056907034237e-10 -Plasma_Spitzer_resistivity_at_point_100__________________________________ (res_plasma_fuel_spitzer_profile100)_ 4.95071553724765456e-10 -Plasma_Spitzer_resistivity_at_point_101__________________________________ (res_plasma_fuel_spitzer_profile101)_ 4.95844411214837996e-10 -Plasma_Spitzer_resistivity_at_point_102__________________________________ (res_plasma_fuel_spitzer_profile102)_ 4.96626684781144025e-10 -Plasma_Spitzer_resistivity_at_point_103__________________________________ (res_plasma_fuel_spitzer_profile103)_ 4.97418430633132375e-10 -Plasma_Spitzer_resistivity_at_point_104__________________________________ (res_plasma_fuel_spitzer_profile104)_ 4.98219705794551327e-10 -Plasma_Spitzer_resistivity_at_point_105__________________________________ (res_plasma_fuel_spitzer_profile105)_ 4.99030568112344103e-10 -Plasma_Spitzer_resistivity_at_point_106__________________________________ (res_plasma_fuel_spitzer_profile106)_ 4.99851076265696370e-10 -Plasma_Spitzer_resistivity_at_point_107__________________________________ (res_plasma_fuel_spitzer_profile107)_ 5.00681289775237481e-10 -Plasma_Spitzer_resistivity_at_point_108__________________________________ (res_plasma_fuel_spitzer_profile108)_ 5.01521269012403437e-10 -Plasma_Spitzer_resistivity_at_point_109__________________________________ (res_plasma_fuel_spitzer_profile109)_ 5.02371075208956912e-10 -Plasma_Spitzer_resistivity_at_point_110__________________________________ (res_plasma_fuel_spitzer_profile110)_ 5.03230770466670016e-10 -Plasma_Spitzer_resistivity_at_point_111__________________________________ (res_plasma_fuel_spitzer_profile111)_ 5.04100417767174680e-10 -Plasma_Spitzer_resistivity_at_point_112__________________________________ (res_plasma_fuel_spitzer_profile112)_ 5.04980080981979391e-10 -Plasma_Spitzer_resistivity_at_point_113__________________________________ (res_plasma_fuel_spitzer_profile113)_ 5.05869824882657169e-10 -Plasma_Spitzer_resistivity_at_point_114__________________________________ (res_plasma_fuel_spitzer_profile114)_ 5.06769715151206414e-10 -Plasma_Spitzer_resistivity_at_point_115__________________________________ (res_plasma_fuel_spitzer_profile115)_ 5.07679818390588672e-10 -Plasma_Spitzer_resistivity_at_point_116__________________________________ (res_plasma_fuel_spitzer_profile116)_ 5.08600202135444861e-10 -Plasma_Spitzer_resistivity_at_point_117__________________________________ (res_plasma_fuel_spitzer_profile117)_ 5.09530934862993274e-10 -Plasma_Spitzer_resistivity_at_point_118__________________________________ (res_plasma_fuel_spitzer_profile118)_ 5.10472086004113697e-10 -Plasma_Spitzer_resistivity_at_point_119__________________________________ (res_plasma_fuel_spitzer_profile119)_ 5.11423725954617946e-10 -Plasma_Spitzer_resistivity_at_point_120__________________________________ (res_plasma_fuel_spitzer_profile120)_ 5.12385926086711186e-10 -Plasma_Spitzer_resistivity_at_point_121__________________________________ (res_plasma_fuel_spitzer_profile121)_ 5.13358758760649383e-10 -Plasma_Spitzer_resistivity_at_point_122__________________________________ (res_plasma_fuel_spitzer_profile122)_ 5.14342297336592179e-10 -Plasma_Spitzer_resistivity_at_point_123__________________________________ (res_plasma_fuel_spitzer_profile123)_ 5.15336616186656161e-10 -Plasma_Spitzer_resistivity_at_point_124__________________________________ (res_plasma_fuel_spitzer_profile124)_ 5.16341790707173673e-10 -Plasma_Spitzer_resistivity_at_point_125__________________________________ (res_plasma_fuel_spitzer_profile125)_ 5.17357897331157084e-10 -Plasma_Spitzer_resistivity_at_point_126__________________________________ (res_plasma_fuel_spitzer_profile126)_ 5.18385013540974818e-10 -Plasma_Spitzer_resistivity_at_point_127__________________________________ (res_plasma_fuel_spitzer_profile127)_ 5.19423217881240889e-10 -Plasma_Spitzer_resistivity_at_point_128__________________________________ (res_plasma_fuel_spitzer_profile128)_ 5.20472589971924168e-10 -Plasma_Spitzer_resistivity_at_point_129__________________________________ (res_plasma_fuel_spitzer_profile129)_ 5.21533210521674881e-10 -Plasma_Spitzer_resistivity_at_point_130__________________________________ (res_plasma_fuel_spitzer_profile130)_ 5.22605161341381998e-10 -Plasma_Spitzer_resistivity_at_point_131__________________________________ (res_plasma_fuel_spitzer_profile131)_ 5.23688525357954473e-10 -Plasma_Spitzer_resistivity_at_point_132__________________________________ (res_plasma_fuel_spitzer_profile132)_ 5.24783386628339059e-10 -Plasma_Spitzer_resistivity_at_point_133__________________________________ (res_plasma_fuel_spitzer_profile133)_ 5.25889830353773462e-10 -Plasma_Spitzer_resistivity_at_point_134__________________________________ (res_plasma_fuel_spitzer_profile134)_ 5.27007942894279474e-10 -Plasma_Spitzer_resistivity_at_point_135__________________________________ (res_plasma_fuel_spitzer_profile135)_ 5.28137811783403637e-10 -Plasma_Spitzer_resistivity_at_point_136__________________________________ (res_plasma_fuel_spitzer_profile136)_ 5.29279525743204730e-10 -Plasma_Spitzer_resistivity_at_point_137__________________________________ (res_plasma_fuel_spitzer_profile137)_ 5.30433174699497667e-10 -Plasma_Spitzer_resistivity_at_point_138__________________________________ (res_plasma_fuel_spitzer_profile138)_ 5.31598849797350831e-10 -Plasma_Spitzer_resistivity_at_point_139__________________________________ (res_plasma_fuel_spitzer_profile139)_ 5.32776643416852140e-10 -Plasma_Spitzer_resistivity_at_point_140__________________________________ (res_plasma_fuel_spitzer_profile140)_ 5.33966649189134424e-10 -Plasma_Spitzer_resistivity_at_point_141__________________________________ (res_plasma_fuel_spitzer_profile141)_ 5.35168962012680401e-10 -Plasma_Spitzer_resistivity_at_point_142__________________________________ (res_plasma_fuel_spitzer_profile142)_ 5.36383678069898032e-10 -Plasma_Spitzer_resistivity_at_point_143__________________________________ (res_plasma_fuel_spitzer_profile143)_ 5.37610894843978768e-10 -Plasma_Spitzer_resistivity_at_point_144__________________________________ (res_plasma_fuel_spitzer_profile144)_ 5.38850711136043871e-10 -Plasma_Spitzer_resistivity_at_point_145__________________________________ (res_plasma_fuel_spitzer_profile145)_ 5.40103227082579828e-10 -Plasma_Spitzer_resistivity_at_point_146__________________________________ (res_plasma_fuel_spitzer_profile146)_ 5.41368544173169899e-10 -Plasma_Spitzer_resistivity_at_point_147__________________________________ (res_plasma_fuel_spitzer_profile147)_ 5.42646765268528310e-10 -Plasma_Spitzer_resistivity_at_point_148__________________________________ (res_plasma_fuel_spitzer_profile148)_ 5.43937994618841116e-10 -Plasma_Spitzer_resistivity_at_point_149__________________________________ (res_plasma_fuel_spitzer_profile149)_ 5.45242337882418617e-10 -Plasma_Spitzer_resistivity_at_point_150__________________________________ (res_plasma_fuel_spitzer_profile150)_ 5.46559902144666528e-10 -Plasma_Spitzer_resistivity_at_point_151__________________________________ (res_plasma_fuel_spitzer_profile151)_ 5.47890795937380180e-10 -Plasma_Spitzer_resistivity_at_point_152__________________________________ (res_plasma_fuel_spitzer_profile152)_ 5.49235129258368760e-10 -Plasma_Spitzer_resistivity_at_point_153__________________________________ (res_plasma_fuel_spitzer_profile153)_ 5.50593013591411762e-10 -Plasma_Spitzer_resistivity_at_point_154__________________________________ (res_plasma_fuel_spitzer_profile154)_ 5.51964561926562863e-10 -Plasma_Spitzer_resistivity_at_point_155__________________________________ (res_plasma_fuel_spitzer_profile155)_ 5.53349888780794179e-10 -Plasma_Spitzer_resistivity_at_point_156__________________________________ (res_plasma_fuel_spitzer_profile156)_ 5.54749110218999208e-10 -Plasma_Spitzer_resistivity_at_point_157__________________________________ (res_plasma_fuel_spitzer_profile157)_ 5.56162343875353114e-10 -Plasma_Spitzer_resistivity_at_point_158__________________________________ (res_plasma_fuel_spitzer_profile158)_ 5.57589708975040901e-10 -Plasma_Spitzer_resistivity_at_point_159__________________________________ (res_plasma_fuel_spitzer_profile159)_ 5.59031326356357922e-10 -Plasma_Spitzer_resistivity_at_point_160__________________________________ (res_plasma_fuel_spitzer_profile160)_ 5.60487318493190993e-10 -Plasma_Spitzer_resistivity_at_point_161__________________________________ (res_plasma_fuel_spitzer_profile161)_ 5.61957809517886627e-10 -Plasma_Spitzer_resistivity_at_point_162__________________________________ (res_plasma_fuel_spitzer_profile162)_ 5.63442925244512182e-10 -Plasma_Spitzer_resistivity_at_point_163__________________________________ (res_plasma_fuel_spitzer_profile163)_ 5.64942793192519327e-10 -Plasma_Spitzer_resistivity_at_point_164__________________________________ (res_plasma_fuel_spitzer_profile164)_ 5.66457542610815203e-10 -Plasma_Spitzer_resistivity_at_point_165__________________________________ (res_plasma_fuel_spitzer_profile165)_ 5.67987304502250590e-10 -Plasma_Spitzer_resistivity_at_point_166__________________________________ (res_plasma_fuel_spitzer_profile166)_ 5.69532211648530655e-10 -Plasma_Spitzer_resistivity_at_point_167__________________________________ (res_plasma_fuel_spitzer_profile167)_ 5.71092398635558217e-10 -Plasma_Spitzer_resistivity_at_point_168__________________________________ (res_plasma_fuel_spitzer_profile168)_ 5.72668001879215625e-10 -Plasma_Spitzer_resistivity_at_point_169__________________________________ (res_plasma_fuel_spitzer_profile169)_ 5.74259159651595063e-10 -Plasma_Spitzer_resistivity_at_point_170__________________________________ (res_plasma_fuel_spitzer_profile170)_ 5.75866012107684746e-10 -Plasma_Spitzer_resistivity_at_point_171__________________________________ (res_plasma_fuel_spitzer_profile171)_ 5.77488701312518329e-10 -Plasma_Spitzer_resistivity_at_point_172__________________________________ (res_plasma_fuel_spitzer_profile172)_ 5.79127371268798811e-10 -Plasma_Spitzer_resistivity_at_point_173__________________________________ (res_plasma_fuel_spitzer_profile173)_ 5.80782167945003651e-10 -Plasma_Spitzer_resistivity_at_point_174__________________________________ (res_plasma_fuel_spitzer_profile174)_ 5.82453239303980504e-10 -Plasma_Spitzer_resistivity_at_point_175__________________________________ (res_plasma_fuel_spitzer_profile175)_ 5.84140735332043613e-10 -Plasma_Spitzer_resistivity_at_point_176__________________________________ (res_plasma_fuel_spitzer_profile176)_ 5.85844808068578804e-10 -Plasma_Spitzer_resistivity_at_point_177__________________________________ (res_plasma_fuel_spitzer_profile177)_ 5.87565611636168789e-10 -Plasma_Spitzer_resistivity_at_point_178__________________________________ (res_plasma_fuel_spitzer_profile178)_ 5.89303302271244546e-10 -Plasma_Spitzer_resistivity_at_point_179__________________________________ (res_plasma_fuel_spitzer_profile179)_ 5.91058038355279234e-10 -Plasma_Spitzer_resistivity_at_point_180__________________________________ (res_plasma_fuel_spitzer_profile180)_ 5.92829980446527111e-10 -Plasma_Spitzer_resistivity_at_point_181__________________________________ (res_plasma_fuel_spitzer_profile181)_ 5.94619291312324214e-10 -Plasma_Spitzer_resistivity_at_point_182__________________________________ (res_plasma_fuel_spitzer_profile182)_ 5.96426135961957519e-10 -Plasma_Spitzer_resistivity_at_point_183__________________________________ (res_plasma_fuel_spitzer_profile183)_ 5.98250681680116017e-10 -Plasma_Spitzer_resistivity_at_point_184__________________________________ (res_plasma_fuel_spitzer_profile184)_ 6.00093098060930651e-10 -Plasma_Spitzer_resistivity_at_point_185__________________________________ (res_plasma_fuel_spitzer_profile185)_ 6.01953557042620666e-10 -Plasma_Spitzer_resistivity_at_point_186__________________________________ (res_plasma_fuel_spitzer_profile186)_ 6.03832232942751980e-10 -Plasma_Spitzer_resistivity_at_point_187__________________________________ (res_plasma_fuel_spitzer_profile187)_ 6.05729302494121208e-10 -Plasma_Spitzer_resistivity_at_point_188__________________________________ (res_plasma_fuel_spitzer_profile188)_ 6.07644944881280647e-10 -Plasma_Spitzer_resistivity_at_point_189__________________________________ (res_plasma_fuel_spitzer_profile189)_ 6.09579341777708366e-10 -Plasma_Spitzer_resistivity_at_point_190__________________________________ (res_plasma_fuel_spitzer_profile190)_ 6.11532677383646647e-10 -Plasma_Spitzer_resistivity_at_point_191__________________________________ (res_plasma_fuel_spitzer_profile191)_ 6.13505138464611176e-10 -Plasma_Spitzer_resistivity_at_point_192__________________________________ (res_plasma_fuel_spitzer_profile192)_ 6.15496914390591541e-10 -Plasma_Spitzer_resistivity_at_point_193__________________________________ (res_plasma_fuel_spitzer_profile193)_ 6.17508197175950708e-10 -Plasma_Spitzer_resistivity_at_point_194__________________________________ (res_plasma_fuel_spitzer_profile194)_ 6.19539181520041445e-10 -Plasma_Spitzer_resistivity_at_point_195__________________________________ (res_plasma_fuel_spitzer_profile195)_ 6.21590064848551296e-10 -Plasma_Spitzer_resistivity_at_point_196__________________________________ (res_plasma_fuel_spitzer_profile196)_ 6.23661047355588387e-10 -Plasma_Spitzer_resistivity_at_point_197__________________________________ (res_plasma_fuel_spitzer_profile197)_ 6.25752332046527733e-10 -Plasma_Spitzer_resistivity_at_point_198__________________________________ (res_plasma_fuel_spitzer_profile198)_ 6.27864124781626503e-10 -Plasma_Spitzer_resistivity_at_point_199__________________________________ (res_plasma_fuel_spitzer_profile199)_ 6.29996634320427181e-10 -Plasma_Spitzer_resistivity_at_point_200__________________________________ (res_plasma_fuel_spitzer_profile200)_ 6.32150072366962263e-10 -Plasma_Spitzer_resistivity_at_point_201__________________________________ (res_plasma_fuel_spitzer_profile201)_ 6.34324653615778481e-10 -Plasma_Spitzer_resistivity_at_point_202__________________________________ (res_plasma_fuel_spitzer_profile202)_ 6.36520595798790589e-10 -Plasma_Spitzer_resistivity_at_point_203__________________________________ (res_plasma_fuel_spitzer_profile203)_ 6.38738119732989520e-10 -Plasma_Spitzer_resistivity_at_point_204__________________________________ (res_plasma_fuel_spitzer_profile204)_ 6.40977449369011230e-10 -Plasma_Spitzer_resistivity_at_point_205__________________________________ (res_plasma_fuel_spitzer_profile205)_ 6.43238811840595064e-10 -Plasma_Spitzer_resistivity_at_point_206__________________________________ (res_plasma_fuel_spitzer_profile206)_ 6.45522437514936309e-10 -Plasma_Spitzer_resistivity_at_point_207__________________________________ (res_plasma_fuel_spitzer_profile207)_ 6.47828560043959812e-10 -Plasma_Spitzer_resistivity_at_point_208__________________________________ (res_plasma_fuel_spitzer_profile208)_ 6.50157416416529862e-10 -Plasma_Spitzer_resistivity_at_point_209__________________________________ (res_plasma_fuel_spitzer_profile209)_ 6.52509247011611434e-10 -Plasma_Spitzer_resistivity_at_point_210__________________________________ (res_plasma_fuel_spitzer_profile210)_ 6.54884295652406573e-10 -Plasma_Spitzer_resistivity_at_point_211__________________________________ (res_plasma_fuel_spitzer_profile211)_ 6.57282809661480713e-10 -Plasma_Spitzer_resistivity_at_point_212__________________________________ (res_plasma_fuel_spitzer_profile212)_ 6.59705039916903008e-10 -Plasma_Spitzer_resistivity_at_point_213__________________________________ (res_plasma_fuel_spitzer_profile213)_ 6.62151240909413507e-10 -Plasma_Spitzer_resistivity_at_point_214__________________________________ (res_plasma_fuel_spitzer_profile214)_ 6.64621670800645508e-10 -Plasma_Spitzer_resistivity_at_point_215__________________________________ (res_plasma_fuel_spitzer_profile215)_ 6.67116591482415994e-10 -Plasma_Spitzer_resistivity_at_point_216__________________________________ (res_plasma_fuel_spitzer_profile216)_ 6.69636268637113654e-10 -Plasma_Spitzer_resistivity_at_point_217__________________________________ (res_plasma_fuel_spitzer_profile217)_ 6.72180971799196133e-10 -Plasma_Spitzer_resistivity_at_point_218__________________________________ (res_plasma_fuel_spitzer_profile218)_ 6.74750974417826844e-10 -Plasma_Spitzer_resistivity_at_point_219__________________________________ (res_plasma_fuel_spitzer_profile219)_ 6.77346553920671990e-10 -Plasma_Spitzer_resistivity_at_point_220__________________________________ (res_plasma_fuel_spitzer_profile220)_ 6.79967991778872815e-10 -Plasma_Spitzer_resistivity_at_point_221__________________________________ (res_plasma_fuel_spitzer_profile221)_ 6.82615573573228113e-10 -Plasma_Spitzer_resistivity_at_point_222__________________________________ (res_plasma_fuel_spitzer_profile222)_ 6.85289589061604284e-10 -Plasma_Spitzer_resistivity_at_point_223__________________________________ (res_plasma_fuel_spitzer_profile223)_ 6.87990332247595454e-10 -Plasma_Spitzer_resistivity_at_point_224__________________________________ (res_plasma_fuel_spitzer_profile224)_ 6.90718101450463668e-10 -Plasma_Spitzer_resistivity_at_point_225__________________________________ (res_plasma_fuel_spitzer_profile225)_ 6.93473199376379408e-10 -Plasma_Spitzer_resistivity_at_point_226__________________________________ (res_plasma_fuel_spitzer_profile226)_ 6.96255933190991382e-10 -Plasma_Spitzer_resistivity_at_point_227__________________________________ (res_plasma_fuel_spitzer_profile227)_ 6.99066614593350734e-10 -Plasma_Spitzer_resistivity_at_point_228__________________________________ (res_plasma_fuel_spitzer_profile228)_ 7.01905559891214562e-10 -Plasma_Spitzer_resistivity_at_point_229__________________________________ (res_plasma_fuel_spitzer_profile229)_ 7.04773090077759372e-10 -Plasma_Spitzer_resistivity_at_point_230__________________________________ (res_plasma_fuel_spitzer_profile230)_ 7.07669530909728763e-10 -Plasma_Spitzer_resistivity_at_point_231__________________________________ (res_plasma_fuel_spitzer_profile231)_ 7.10595212987047182e-10 -Plasma_Spitzer_resistivity_at_point_232__________________________________ (res_plasma_fuel_spitzer_profile232)_ 7.13550471833923635e-10 -Plasma_Spitzer_resistivity_at_point_233__________________________________ (res_plasma_fuel_spitzer_profile233)_ 7.16535647981481245e-10 -Plasma_Spitzer_resistivity_at_point_234__________________________________ (res_plasma_fuel_spitzer_profile234)_ 7.19551087051936835e-10 -Plasma_Spitzer_resistivity_at_point_235__________________________________ (res_plasma_fuel_spitzer_profile235)_ 7.22597139844361155e-10 -Plasma_Spitzer_resistivity_at_point_236__________________________________ (res_plasma_fuel_spitzer_profile236)_ 7.25674162422059238e-10 -Plasma_Spitzer_resistivity_at_point_237__________________________________ (res_plasma_fuel_spitzer_profile237)_ 7.28782516201589623e-10 -Plasma_Spitzer_resistivity_at_point_238__________________________________ (res_plasma_fuel_spitzer_profile238)_ 7.31922568043463870e-10 -Plasma_Spitzer_resistivity_at_point_239__________________________________ (res_plasma_fuel_spitzer_profile239)_ 7.35094690344559394e-10 -Plasma_Spitzer_resistivity_at_point_240__________________________________ (res_plasma_fuel_spitzer_profile240)_ 7.38299261132270709e-10 -Plasma_Spitzer_resistivity_at_point_241__________________________________ (res_plasma_fuel_spitzer_profile241)_ 7.41536664160444287e-10 -Plasma_Spitzer_resistivity_at_point_242__________________________________ (res_plasma_fuel_spitzer_profile242)_ 7.44807289007124523e-10 -Plasma_Spitzer_resistivity_at_point_243__________________________________ (res_plasma_fuel_spitzer_profile243)_ 7.48111531174145353e-10 -Plasma_Spitzer_resistivity_at_point_244__________________________________ (res_plasma_fuel_spitzer_profile244)_ 7.51449792188609390e-10 -Plasma_Spitzer_resistivity_at_point_245__________________________________ (res_plasma_fuel_spitzer_profile245)_ 7.54822479706291604e-10 -Plasma_Spitzer_resistivity_at_point_246__________________________________ (res_plasma_fuel_spitzer_profile246)_ 7.58230007616989146e-10 -Plasma_Spitzer_resistivity_at_point_247__________________________________ (res_plasma_fuel_spitzer_profile247)_ 7.61672796151882771e-10 -Plasma_Spitzer_resistivity_at_point_248__________________________________ (res_plasma_fuel_spitzer_profile248)_ 7.65151271992922384e-10 -Plasma_Spitzer_resistivity_at_point_249__________________________________ (res_plasma_fuel_spitzer_profile249)_ 7.68665868384291064e-10 -Plasma_Spitzer_resistivity_at_point_250__________________________________ (res_plasma_fuel_spitzer_profile250)_ 7.72217025245981521e-10 -Plasma_Spitzer_resistivity_at_point_251__________________________________ (res_plasma_fuel_spitzer_profile251)_ 7.75805189289532823e-10 -Plasma_Spitzer_resistivity_at_point_252__________________________________ (res_plasma_fuel_spitzer_profile252)_ 7.79430814135953578e-10 -Plasma_Spitzer_resistivity_at_point_253__________________________________ (res_plasma_fuel_spitzer_profile253)_ 7.83094360435895868e-10 -Plasma_Spitzer_resistivity_at_point_254__________________________________ (res_plasma_fuel_spitzer_profile254)_ 7.86796295992097421e-10 -Plasma_Spitzer_resistivity_at_point_255__________________________________ (res_plasma_fuel_spitzer_profile255)_ 7.90537095884160149e-10 -Plasma_Spitzer_resistivity_at_point_256__________________________________ (res_plasma_fuel_spitzer_profile256)_ 7.94317242595687812e-10 -Plasma_Spitzer_resistivity_at_point_257__________________________________ (res_plasma_fuel_spitzer_profile257)_ 7.98137226143844832e-10 -Plasma_Spitzer_resistivity_at_point_258__________________________________ (res_plasma_fuel_spitzer_profile258)_ 8.01997544211367601e-10 -Plasma_Spitzer_resistivity_at_point_259__________________________________ (res_plasma_fuel_spitzer_profile259)_ 8.05898702281086380e-10 -Plasma_Spitzer_resistivity_at_point_260__________________________________ (res_plasma_fuel_spitzer_profile260)_ 8.09841213772995333e-10 -Plasma_Spitzer_resistivity_at_point_261__________________________________ (res_plasma_fuel_spitzer_profile261)_ 8.13825600183925589e-10 -Plasma_Spitzer_resistivity_at_point_262__________________________________ (res_plasma_fuel_spitzer_profile262)_ 8.17852391229862599e-10 -Plasma_Spitzer_resistivity_at_point_263__________________________________ (res_plasma_fuel_spitzer_profile263)_ 8.21922124990963720e-10 -Plasma_Spitzer_resistivity_at_point_264__________________________________ (res_plasma_fuel_spitzer_profile264)_ 8.26035348059320070e-10 -Plasma_Spitzer_resistivity_at_point_265__________________________________ (res_plasma_fuel_spitzer_profile265)_ 8.30192615689516945e-10 -Plasma_Spitzer_resistivity_at_point_266__________________________________ (res_plasma_fuel_spitzer_profile266)_ 8.34394491952039534e-10 -Plasma_Spitzer_resistivity_at_point_267__________________________________ (res_plasma_fuel_spitzer_profile267)_ 8.38641549889580476e-10 -Plasma_Spitzer_resistivity_at_point_268__________________________________ (res_plasma_fuel_spitzer_profile268)_ 8.42934371676293434e-10 -Plasma_Spitzer_resistivity_at_point_269__________________________________ (res_plasma_fuel_spitzer_profile269)_ 8.47273548780061217e-10 -Plasma_Spitzer_resistivity_at_point_270__________________________________ (res_plasma_fuel_spitzer_profile270)_ 8.51659682127805654e-10 -Plasma_Spitzer_resistivity_at_point_271__________________________________ (res_plasma_fuel_spitzer_profile271)_ 8.56093382273927414e-10 -Plasma_Spitzer_resistivity_at_point_272__________________________________ (res_plasma_fuel_spitzer_profile272)_ 8.60575269571890980e-10 -Plasma_Spitzer_resistivity_at_point_273__________________________________ (res_plasma_fuel_spitzer_profile273)_ 8.65105974349050199e-10 -Plasma_Spitzer_resistivity_at_point_274__________________________________ (res_plasma_fuel_spitzer_profile274)_ 8.69686137084731894e-10 -Plasma_Spitzer_resistivity_at_point_275__________________________________ (res_plasma_fuel_spitzer_profile275)_ 8.74316408591668003e-10 -Plasma_Spitzer_resistivity_at_point_276__________________________________ (res_plasma_fuel_spitzer_profile276)_ 8.78997450200800966e-10 -Plasma_Spitzer_resistivity_at_point_277__________________________________ (res_plasma_fuel_spitzer_profile277)_ 8.83729933949541758e-10 -Plasma_Spitzer_resistivity_at_point_278__________________________________ (res_plasma_fuel_spitzer_profile278)_ 8.88514542773530003e-10 -Plasma_Spitzer_resistivity_at_point_279__________________________________ (res_plasma_fuel_spitzer_profile279)_ 8.93351970701951681e-10 -Plasma_Spitzer_resistivity_at_point_280__________________________________ (res_plasma_fuel_spitzer_profile280)_ 8.98242923056469144e-10 -Plasma_Spitzer_resistivity_at_point_281__________________________________ (res_plasma_fuel_spitzer_profile281)_ 9.03188116653833628e-10 -Plasma_Spitzer_resistivity_at_point_282__________________________________ (res_plasma_fuel_spitzer_profile282)_ 9.08188280012221215e-10 -Plasma_Spitzer_resistivity_at_point_283__________________________________ (res_plasma_fuel_spitzer_profile283)_ 9.13244153561365455e-10 -Plasma_Spitzer_resistivity_at_point_284__________________________________ (res_plasma_fuel_spitzer_profile284)_ 9.18356489856533380e-10 -Plasma_Spitzer_resistivity_at_point_285__________________________________ (res_plasma_fuel_spitzer_profile285)_ 9.23526053796406423e-10 -Plasma_Spitzer_resistivity_at_point_286__________________________________ (res_plasma_fuel_spitzer_profile286)_ 9.28753622844927781e-10 -Plasma_Spitzer_resistivity_at_point_287__________________________________ (res_plasma_fuel_spitzer_profile287)_ 9.34039987257167285e-10 -Plasma_Spitzer_resistivity_at_point_288__________________________________ (res_plasma_fuel_spitzer_profile288)_ 9.39385950309262721e-10 -Plasma_Spitzer_resistivity_at_point_289__________________________________ (res_plasma_fuel_spitzer_profile289)_ 9.44792328532497676e-10 -Plasma_Spitzer_resistivity_at_point_290__________________________________ (res_plasma_fuel_spitzer_profile290)_ 9.50259951951564085e-10 -Plasma_Spitzer_resistivity_at_point_291__________________________________ (res_plasma_fuel_spitzer_profile291)_ 9.55789664327071533e-10 -Plasma_Spitzer_resistivity_at_point_292__________________________________ (res_plasma_fuel_spitzer_profile292)_ 9.61382323402359335e-10 -Plasma_Spitzer_resistivity_at_point_293__________________________________ (res_plasma_fuel_spitzer_profile293)_ 9.67038801154650490e-10 -Plasma_Spitzer_resistivity_at_point_294__________________________________ (res_plasma_fuel_spitzer_profile294)_ 9.72759984050620507e-10 -Plasma_Spitzer_resistivity_at_point_295__________________________________ (res_plasma_fuel_spitzer_profile295)_ 9.78546773306414183e-10 -Plasma_Spitzer_resistivity_at_point_296__________________________________ (res_plasma_fuel_spitzer_profile296)_ 9.84400085152169488e-10 -Plasma_Spitzer_resistivity_at_point_297__________________________________ (res_plasma_fuel_spitzer_profile297)_ 9.90320851101093418e-10 -Plasma_Spitzer_resistivity_at_point_298__________________________________ (res_plasma_fuel_spitzer_profile298)_ 9.96310018223136771e-10 -Plasma_Spitzer_resistivity_at_point_299__________________________________ (res_plasma_fuel_spitzer_profile299)_ 1.00236854942330754e-09 -Plasma_Spitzer_resistivity_at_point_300__________________________________ (res_plasma_fuel_spitzer_profile300)_ 1.00849742372467463e-09 -Plasma_Spitzer_resistivity_at_point_301__________________________________ (res_plasma_fuel_spitzer_profile301)_ 1.01469763655608300e-09 -Plasma_Spitzer_resistivity_at_point_302__________________________________ (res_plasma_fuel_spitzer_profile302)_ 1.02097020004464180e-09 -Plasma_Spitzer_resistivity_at_point_303__________________________________ (res_plasma_fuel_spitzer_profile303)_ 1.02731614331299121e-09 -Plasma_Spitzer_resistivity_at_point_304__________________________________ (res_plasma_fuel_spitzer_profile304)_ 1.03373651278139972e-09 -Plasma_Spitzer_resistivity_at_point_305__________________________________ (res_plasma_fuel_spitzer_profile305)_ 1.04023237247470400e-09 -Plasma_Spitzer_resistivity_at_point_306__________________________________ (res_plasma_fuel_spitzer_profile306)_ 1.04680480433412017e-09 -Plasma_Spitzer_resistivity_at_point_307__________________________________ (res_plasma_fuel_spitzer_profile307)_ 1.05345490853394445e-09 -Plasma_Spitzer_resistivity_at_point_308__________________________________ (res_plasma_fuel_spitzer_profile308)_ 1.06018380380315242e-09 -Plasma_Spitzer_resistivity_at_point_309__________________________________ (res_plasma_fuel_spitzer_profile309)_ 1.06699262775190051e-09 -Plasma_Spitzer_resistivity_at_point_310__________________________________ (res_plasma_fuel_spitzer_profile310)_ 1.07388253720294765e-09 -Plasma_Spitzer_resistivity_at_point_311__________________________________ (res_plasma_fuel_spitzer_profile311)_ 1.08085470852797227e-09 -Plasma_Spitzer_resistivity_at_point_312__________________________________ (res_plasma_fuel_spitzer_profile312)_ 1.08791033798879377e-09 -Plasma_Spitzer_resistivity_at_point_313__________________________________ (res_plasma_fuel_spitzer_profile313)_ 1.09505064208345808e-09 -Plasma_Spitzer_resistivity_at_point_314__________________________________ (res_plasma_fuel_spitzer_profile314)_ 1.10227685789718933e-09 -Plasma_Spitzer_resistivity_at_point_315__________________________________ (res_plasma_fuel_spitzer_profile315)_ 1.10959024345814262e-09 -Plasma_Spitzer_resistivity_at_point_316__________________________________ (res_plasma_fuel_spitzer_profile316)_ 1.11699207809794290e-09 -Plasma_Spitzer_resistivity_at_point_317__________________________________ (res_plasma_fuel_spitzer_profile317)_ 1.12448366281693896e-09 -Plasma_Spitzer_resistivity_at_point_318__________________________________ (res_plasma_fuel_spitzer_profile318)_ 1.13206632065411721e-09 -Plasma_Spitzer_resistivity_at_point_319__________________________________ (res_plasma_fuel_spitzer_profile319)_ 1.13974139706159583e-09 -Plasma_Spitzer_resistivity_at_point_320__________________________________ (res_plasma_fuel_spitzer_profile320)_ 1.14751026028362206e-09 -Plasma_Spitzer_resistivity_at_point_321__________________________________ (res_plasma_fuel_spitzer_profile321)_ 1.15537430173995998e-09 -Plasma_Spitzer_resistivity_at_point_322__________________________________ (res_plasma_fuel_spitzer_profile322)_ 1.16333493641356907e-09 -Plasma_Spitzer_resistivity_at_point_323__________________________________ (res_plasma_fuel_spitzer_profile323)_ 1.17139360324243171e-09 -Plasma_Spitzer_resistivity_at_point_324__________________________________ (res_plasma_fuel_spitzer_profile324)_ 1.17955176551540386e-09 -Plasma_Spitzer_resistivity_at_point_325__________________________________ (res_plasma_fuel_spitzer_profile325)_ 1.18781091127190349e-09 -Plasma_Spitzer_resistivity_at_point_326__________________________________ (res_plasma_fuel_spitzer_profile326)_ 1.19617255370528359e-09 -Plasma_Spitzer_resistivity_at_point_327__________________________________ (res_plasma_fuel_spitzer_profile327)_ 1.20463823156966358e-09 -Plasma_Spitzer_resistivity_at_point_328__________________________________ (res_plasma_fuel_spitzer_profile328)_ 1.21320950959002766e-09 -Plasma_Spitzer_resistivity_at_point_329__________________________________ (res_plasma_fuel_spitzer_profile329)_ 1.22188797887532295e-09 -Plasma_Spitzer_resistivity_at_point_330__________________________________ (res_plasma_fuel_spitzer_profile330)_ 1.23067525733430347e-09 -Plasma_Spitzer_resistivity_at_point_331__________________________________ (res_plasma_fuel_spitzer_profile331)_ 1.23957299009382645e-09 -Plasma_Spitzer_resistivity_at_point_332__________________________________ (res_plasma_fuel_spitzer_profile332)_ 1.24858284991928095e-09 -Plasma_Spitzer_resistivity_at_point_333__________________________________ (res_plasma_fuel_spitzer_profile333)_ 1.25770653763679657e-09 -Plasma_Spitzer_resistivity_at_point_334__________________________________ (res_plasma_fuel_spitzer_profile334)_ 1.26694578255685981e-09 -Plasma_Spitzer_resistivity_at_point_335__________________________________ (res_plasma_fuel_spitzer_profile335)_ 1.27630234289891454e-09 -Plasma_Spitzer_resistivity_at_point_336__________________________________ (res_plasma_fuel_spitzer_profile336)_ 1.28577800621650990e-09 -Plasma_Spitzer_resistivity_at_point_337__________________________________ (res_plasma_fuel_spitzer_profile337)_ 1.29537458982249430e-09 -Plasma_Spitzer_resistivity_at_point_338__________________________________ (res_plasma_fuel_spitzer_profile338)_ 1.30509394121374720e-09 -Plasma_Spitzer_resistivity_at_point_339__________________________________ (res_plasma_fuel_spitzer_profile339)_ 1.31493793849485920e-09 -Plasma_Spitzer_resistivity_at_point_340__________________________________ (res_plasma_fuel_spitzer_profile340)_ 1.32490849080015168e-09 -Plasma_Spitzer_resistivity_at_point_341__________________________________ (res_plasma_fuel_spitzer_profile341)_ 1.33500753871337838e-09 -Plasma_Spitzer_resistivity_at_point_342__________________________________ (res_plasma_fuel_spitzer_profile342)_ 1.34523705468438036e-09 -Plasma_Spitzer_resistivity_at_point_343__________________________________ (res_plasma_fuel_spitzer_profile343)_ 1.35559904344192191e-09 -Plasma_Spitzer_resistivity_at_point_344__________________________________ (res_plasma_fuel_spitzer_profile344)_ 1.36609554240188192e-09 -Plasma_Spitzer_resistivity_at_point_345__________________________________ (res_plasma_fuel_spitzer_profile345)_ 1.37672862206990235e-09 -Plasma_Spitzer_resistivity_at_point_346__________________________________ (res_plasma_fuel_spitzer_profile346)_ 1.38750038643752180e-09 -Plasma_Spitzer_resistivity_at_point_347__________________________________ (res_plasma_fuel_spitzer_profile347)_ 1.39841297337077788e-09 -Plasma_Spitzer_resistivity_at_point_348__________________________________ (res_plasma_fuel_spitzer_profile348)_ 1.40946855499014432e-09 -Plasma_Spitzer_resistivity_at_point_349__________________________________ (res_plasma_fuel_spitzer_profile349)_ 1.42066933804064050e-09 -Plasma_Spitzer_resistivity_at_point_350__________________________________ (res_plasma_fuel_spitzer_profile350)_ 1.43201756425079646e-09 -Plasma_Spitzer_resistivity_at_point_351__________________________________ (res_plasma_fuel_spitzer_profile351)_ 1.44351551067915173e-09 -Plasma_Spitzer_resistivity_at_point_352__________________________________ (res_plasma_fuel_spitzer_profile352)_ 1.45516549004676488e-09 -Plasma_Spitzer_resistivity_at_point_353__________________________________ (res_plasma_fuel_spitzer_profile353)_ 1.46696985105422215e-09 -Plasma_Spitzer_resistivity_at_point_354__________________________________ (res_plasma_fuel_spitzer_profile354)_ 1.47893097868140380e-09 -Plasma_Spitzer_resistivity_at_point_355__________________________________ (res_plasma_fuel_spitzer_profile355)_ 1.49105129446825833e-09 -Plasma_Spitzer_resistivity_at_point_356__________________________________ (res_plasma_fuel_spitzer_profile356)_ 1.50333325677462557e-09 -Plasma_Spitzer_resistivity_at_point_357__________________________________ (res_plasma_fuel_spitzer_profile357)_ 1.51577936101707414e-09 -Plasma_Spitzer_resistivity_at_point_358__________________________________ (res_plasma_fuel_spitzer_profile358)_ 1.52839213988053315e-09 -Plasma_Spitzer_resistivity_at_point_359__________________________________ (res_plasma_fuel_spitzer_profile359)_ 1.54117416350239489e-09 -Plasma_Spitzer_resistivity_at_point_360__________________________________ (res_plasma_fuel_spitzer_profile360)_ 1.55412803962654496e-09 -Plasma_Spitzer_resistivity_at_point_361__________________________________ (res_plasma_fuel_spitzer_profile361)_ 1.56725641372469003e-09 -Plasma_Spitzer_resistivity_at_point_362__________________________________ (res_plasma_fuel_spitzer_profile362)_ 1.58056196908206470e-09 -Plasma_Spitzer_resistivity_at_point_363__________________________________ (res_plasma_fuel_spitzer_profile363)_ 1.59404742684452498e-09 -Plasma_Spitzer_resistivity_at_point_364__________________________________ (res_plasma_fuel_spitzer_profile364)_ 1.60771554602373301e-09 -Plasma_Spitzer_resistivity_at_point_365__________________________________ (res_plasma_fuel_spitzer_profile365)_ 1.62156912345698426e-09 -Plasma_Spitzer_resistivity_at_point_366__________________________________ (res_plasma_fuel_spitzer_profile366)_ 1.63561099371796733e-09 -Plasma_Spitzer_resistivity_at_point_367__________________________________ (res_plasma_fuel_spitzer_profile367)_ 1.64984402897452199e-09 -Plasma_Spitzer_resistivity_at_point_368__________________________________ (res_plasma_fuel_spitzer_profile368)_ 1.66427113878917425e-09 -Plasma_Spitzer_resistivity_at_point_369__________________________________ (res_plasma_fuel_spitzer_profile369)_ 1.67889526985799758e-09 -Plasma_Spitzer_resistivity_at_point_370__________________________________ (res_plasma_fuel_spitzer_profile370)_ 1.69371940568299554e-09 -Plasma_Spitzer_resistivity_at_point_371__________________________________ (res_plasma_fuel_spitzer_profile371)_ 1.70874656617295805e-09 -Plasma_Spitzer_resistivity_at_point_372__________________________________ (res_plasma_fuel_spitzer_profile372)_ 1.72397980716734363e-09 -Plasma_Spitzer_resistivity_at_point_373__________________________________ (res_plasma_fuel_spitzer_profile373)_ 1.73942221987747174e-09 -Plasma_Spitzer_resistivity_at_point_374__________________________________ (res_plasma_fuel_spitzer_profile374)_ 1.75507693023883132e-09 -Plasma_Spitzer_resistivity_at_point_375__________________________________ (res_plasma_fuel_spitzer_profile375)_ 1.77094709816804690e-09 -Plasma_Spitzer_resistivity_at_point_376__________________________________ (res_plasma_fuel_spitzer_profile376)_ 1.78703591671749244e-09 -Plasma_Spitzer_resistivity_at_point_377__________________________________ (res_plasma_fuel_spitzer_profile377)_ 1.80334661112020643e-09 -Plasma_Spitzer_resistivity_at_point_378__________________________________ (res_plasma_fuel_spitzer_profile378)_ 1.81988243771721709e-09 -Plasma_Spitzer_resistivity_at_point_379__________________________________ (res_plasma_fuel_spitzer_profile379)_ 1.83664668275893247e-09 -Plasma_Spitzer_resistivity_at_point_380__________________________________ (res_plasma_fuel_spitzer_profile380)_ 1.85364266107167854e-09 -Plasma_Spitzer_resistivity_at_point_381__________________________________ (res_plasma_fuel_spitzer_profile381)_ 1.87087371457994474e-09 -Plasma_Spitzer_resistivity_at_point_382__________________________________ (res_plasma_fuel_spitzer_profile382)_ 1.88834321067427767e-09 -Plasma_Spitzer_resistivity_at_point_383__________________________________ (res_plasma_fuel_spitzer_profile383)_ 1.90605454041409655e-09 -Plasma_Spitzer_resistivity_at_point_384__________________________________ (res_plasma_fuel_spitzer_profile384)_ 1.92401111655412220e-09 -Plasma_Spitzer_resistivity_at_point_385__________________________________ (res_plasma_fuel_spitzer_profile385)_ 1.94221637138226027e-09 -Plasma_Spitzer_resistivity_at_point_386__________________________________ (res_plasma_fuel_spitzer_profile386)_ 1.96067375435617833e-09 -Plasma_Spitzer_resistivity_at_point_387__________________________________ (res_plasma_fuel_spitzer_profile387)_ 1.97938672952485860e-09 -Plasma_Spitzer_resistivity_at_point_388__________________________________ (res_plasma_fuel_spitzer_profile388)_ 1.99835877272066260e-09 -Plasma_Spitzer_resistivity_at_point_389__________________________________ (res_plasma_fuel_spitzer_profile389)_ 2.01759336850650036e-09 -Plasma_Spitzer_resistivity_at_point_390__________________________________ (res_plasma_fuel_spitzer_profile390)_ 2.03709400686172258e-09 -Plasma_Spitzer_resistivity_at_point_391__________________________________ (res_plasma_fuel_spitzer_profile391)_ 2.05686417958934316e-09 -Plasma_Spitzer_resistivity_at_point_392__________________________________ (res_plasma_fuel_spitzer_profile392)_ 2.07690737642614541e-09 -Plasma_Spitzer_resistivity_at_point_393__________________________________ (res_plasma_fuel_spitzer_profile393)_ 2.09722708083602237e-09 -Plasma_Spitzer_resistivity_at_point_394__________________________________ (res_plasma_fuel_spitzer_profile394)_ 2.11782676546574061e-09 -Plasma_Spitzer_resistivity_at_point_395__________________________________ (res_plasma_fuel_spitzer_profile395)_ 2.13870988724097471e-09 -Plasma_Spitzer_resistivity_at_point_396__________________________________ (res_plasma_fuel_spitzer_profile396)_ 2.15987988207912847e-09 -Plasma_Spitzer_resistivity_at_point_397__________________________________ (res_plasma_fuel_spitzer_profile397)_ 2.18134015919397466e-09 -Plasma_Spitzer_resistivity_at_point_398__________________________________ (res_plasma_fuel_spitzer_profile398)_ 2.20309409496562137e-09 -Plasma_Spitzer_resistivity_at_point_399__________________________________ (res_plasma_fuel_spitzer_profile399)_ 2.22514502634763064e-09 -Plasma_Spitzer_resistivity_at_point_400__________________________________ (res_plasma_fuel_spitzer_profile400)_ 2.24749624378145508e-09 -Plasma_Spitzer_resistivity_at_point_401__________________________________ (res_plasma_fuel_spitzer_profile401)_ 2.27015098358639073e-09 -Plasma_Spitzer_resistivity_at_point_402__________________________________ (res_plasma_fuel_spitzer_profile402)_ 2.29311241979141295e-09 -Plasma_Spitzer_resistivity_at_point_403__________________________________ (res_plasma_fuel_spitzer_profile403)_ 2.31638365537302378e-09 -Plasma_Spitzer_resistivity_at_point_404__________________________________ (res_plasma_fuel_spitzer_profile404)_ 2.33996771286116653e-09 -Plasma_Spitzer_resistivity_at_point_405__________________________________ (res_plasma_fuel_spitzer_profile405)_ 2.36386752427277265e-09 -Plasma_Spitzer_resistivity_at_point_406__________________________________ (res_plasma_fuel_spitzer_profile406)_ 2.38808592033008125e-09 -Plasma_Spitzer_resistivity_at_point_407__________________________________ (res_plasma_fuel_spitzer_profile407)_ 2.41262561891811817e-09 -Plasma_Spitzer_resistivity_at_point_408__________________________________ (res_plasma_fuel_spitzer_profile408)_ 2.43748921273295266e-09 -Plasma_Spitzer_resistivity_at_point_409__________________________________ (res_plasma_fuel_spitzer_profile409)_ 2.46267915606917238e-09 -Plasma_Spitzer_resistivity_at_point_410__________________________________ (res_plasma_fuel_spitzer_profile410)_ 2.48819775069193974e-09 -Plasma_Spitzer_resistivity_at_point_411__________________________________ (res_plasma_fuel_spitzer_profile411)_ 2.51404713073532330e-09 -Plasma_Spitzer_resistivity_at_point_412__________________________________ (res_plasma_fuel_spitzer_profile412)_ 2.54022924656505537e-09 -Plasma_Spitzer_resistivity_at_point_413__________________________________ (res_plasma_fuel_spitzer_profile413)_ 2.56674584753973694e-09 -Plasma_Spitzer_resistivity_at_point_414__________________________________ (res_plasma_fuel_spitzer_profile414)_ 2.59359846360032965e-09 -Plasma_Spitzer_resistivity_at_point_415__________________________________ (res_plasma_fuel_spitzer_profile415)_ 2.62078838561312048e-09 -Plasma_Spitzer_resistivity_at_point_416__________________________________ (res_plasma_fuel_spitzer_profile416)_ 2.64831664438641940e-09 -Plasma_Spitzer_resistivity_at_point_417__________________________________ (res_plasma_fuel_spitzer_profile417)_ 2.67618398827590284e-09 -Plasma_Spitzer_resistivity_at_point_418__________________________________ (res_plasma_fuel_spitzer_profile418)_ 2.70439085928770579e-09 -Plasma_Spitzer_resistivity_at_point_419__________________________________ (res_plasma_fuel_spitzer_profile419)_ 2.73293736758212041e-09 -Plasma_Spitzer_resistivity_at_point_420__________________________________ (res_plasma_fuel_spitzer_profile420)_ 2.76182326427394413e-09 -Plasma_Spitzer_resistivity_at_point_421__________________________________ (res_plasma_fuel_spitzer_profile421)_ 2.79104791241803483e-09 -Plasma_Spitzer_resistivity_at_point_422__________________________________ (res_plasma_fuel_spitzer_profile422)_ 2.82061025606050990e-09 -Plasma_Spitzer_resistivity_at_point_423__________________________________ (res_plasma_fuel_spitzer_profile423)_ 2.85050878722708969e-09 -Plasma_Spitzer_resistivity_at_point_424__________________________________ (res_plasma_fuel_spitzer_profile424)_ 2.88074151071016602e-09 -Plasma_Spitzer_resistivity_at_point_425__________________________________ (res_plasma_fuel_spitzer_profile425)_ 2.91130590650523153e-09 -Plasma_Spitzer_resistivity_at_point_426__________________________________ (res_plasma_fuel_spitzer_profile426)_ 2.94219888973520113e-09 -Plasma_Spitzer_resistivity_at_point_427__________________________________ (res_plasma_fuel_spitzer_profile427)_ 2.97341676788743876e-09 -Plasma_Spitzer_resistivity_at_point_428__________________________________ (res_plasma_fuel_spitzer_profile428)_ 3.00495519517306204e-09 -Plasma_Spitzer_resistivity_at_point_429__________________________________ (res_plasma_fuel_spitzer_profile429)_ 3.03680912380079833e-09 -Plasma_Spitzer_resistivity_at_point_430__________________________________ (res_plasma_fuel_spitzer_profile430)_ 3.06897275193800647e-09 -Plasma_Spitzer_resistivity_at_point_431__________________________________ (res_plasma_fuel_spitzer_profile431)_ 3.10143946810908116e-09 -Plasma_Spitzer_resistivity_at_point_432__________________________________ (res_plasma_fuel_spitzer_profile432)_ 3.13420179175558797e-09 -Plasma_Spitzer_resistivity_at_point_433__________________________________ (res_plasma_fuel_spitzer_profile433)_ 3.16725130965281828e-09 -Plasma_Spitzer_resistivity_at_point_434__________________________________ (res_plasma_fuel_spitzer_profile434)_ 3.20057860784256442e-09 -Plasma_Spitzer_resistivity_at_point_435__________________________________ (res_plasma_fuel_spitzer_profile435)_ 3.23417319870154771e-09 -Plasma_Spitzer_resistivity_at_point_436__________________________________ (res_plasma_fuel_spitzer_profile436)_ 3.26802344271697489e-09 -Plasma_Spitzer_resistivity_at_point_437__________________________________ (res_plasma_fuel_spitzer_profile437)_ 3.30211646448404696e-09 -Plasma_Spitzer_resistivity_at_point_438__________________________________ (res_plasma_fuel_spitzer_profile438)_ 3.33643806237265856e-09 -Plasma_Spitzer_resistivity_at_point_439__________________________________ (res_plasma_fuel_spitzer_profile439)_ 3.37097261122922290e-09 -Plasma_Spitzer_resistivity_at_point_440__________________________________ (res_plasma_fuel_spitzer_profile440)_ 3.40570295738132019e-09 -Plasma_Spitzer_resistivity_at_point_441__________________________________ (res_plasma_fuel_spitzer_profile441)_ 3.44061030509322097e-09 -Plasma_Spitzer_resistivity_at_point_442__________________________________ (res_plasma_fuel_spitzer_profile442)_ 3.47567409347371032e-09 -Plasma_Spitzer_resistivity_at_point_443__________________________________ (res_plasma_fuel_spitzer_profile443)_ 3.51087186265630061e-09 -Plasma_Spitzer_resistivity_at_point_444__________________________________ (res_plasma_fuel_spitzer_profile444)_ 3.54617910784662947e-09 -Plasma_Spitzer_resistivity_at_point_445__________________________________ (res_plasma_fuel_spitzer_profile445)_ 3.58156911954905740e-09 -Plasma_Spitzer_resistivity_at_point_446__________________________________ (res_plasma_fuel_spitzer_profile446)_ 3.61701280792691251e-09 -Plasma_Spitzer_resistivity_at_point_447__________________________________ (res_plasma_fuel_spitzer_profile447)_ 3.65247850879524201e-09 -Plasma_Spitzer_resistivity_at_point_448__________________________________ (res_plasma_fuel_spitzer_profile448)_ 3.68793176815796341e-09 -Plasma_Spitzer_resistivity_at_point_449__________________________________ (res_plasma_fuel_spitzer_profile449)_ 3.72333510143933291e-09 -Plasma_Spitzer_resistivity_at_point_450__________________________________ (res_plasma_fuel_spitzer_profile450)_ 3.75864772255809225e-09 -Plasma_Spitzer_resistivity_at_point_451__________________________________ (res_plasma_fuel_spitzer_profile451)_ 3.79382523666296793e-09 -Plasma_Spitzer_resistivity_at_point_452__________________________________ (res_plasma_fuel_spitzer_profile452)_ 3.82881928855941322e-09 -Plasma_Spitzer_resistivity_at_point_453__________________________________ (res_plasma_fuel_spitzer_profile453)_ 3.86357715641892893e-09 -Plasma_Spitzer_resistivity_at_point_454__________________________________ (res_plasma_fuel_spitzer_profile454)_ 3.89804127698723846e-09 -Plasma_Spitzer_resistivity_at_point_455__________________________________ (res_plasma_fuel_spitzer_profile455)_ 3.93214868375844134e-09 -Plasma_Spitzer_resistivity_at_point_456__________________________________ (res_plasma_fuel_spitzer_profile456)_ 3.96583033277328737e-09 -Plasma_Spitzer_resistivity_at_point_457__________________________________ (res_plasma_fuel_spitzer_profile457)_ 3.99901028073287896e-09 -Plasma_Spitzer_resistivity_at_point_458__________________________________ (res_plasma_fuel_spitzer_profile458)_ 4.03160466517918760e-09 -Plasma_Spitzer_resistivity_at_point_459__________________________________ (res_plasma_fuel_spitzer_profile459)_ 4.06352041348909416e-09 -Plasma_Spitzer_resistivity_at_point_460__________________________________ (res_plasma_fuel_spitzer_profile460)_ 4.09465357088783498e-09 -Plasma_Spitzer_resistivity_at_point_461__________________________________ (res_plasma_fuel_spitzer_profile461)_ 4.12488707751206367e-09 -Plasma_Spitzer_resistivity_at_point_462__________________________________ (res_plasma_fuel_spitzer_profile462)_ 4.15408772114728695e-09 -Plasma_Spitzer_resistivity_at_point_463__________________________________ (res_plasma_fuel_spitzer_profile463)_ 4.18210180528896142e-09 -Plasma_Spitzer_resistivity_at_point_464__________________________________ (res_plasma_fuel_spitzer_profile464)_ 4.20874871241889925e-09 -Plasma_Spitzer_resistivity_at_point_465__________________________________ (res_plasma_fuel_spitzer_profile465)_ 4.23381079423967648e-09 -Plasma_Spitzer_resistivity_at_point_466__________________________________ (res_plasma_fuel_spitzer_profile466)_ 4.25701630026496736e-09 -Plasma_Spitzer_resistivity_at_point_467__________________________________ (res_plasma_fuel_spitzer_profile467)_ 4.27800752261953036e-09 -Plasma_Spitzer_resistivity_at_point_468__________________________________ (res_plasma_fuel_spitzer_profile468)_ 4.29627175478955011e-09 -Plasma_Spitzer_resistivity_at_point_469__________________________________ (res_plasma_fuel_spitzer_profile469)_ 4.31094709838998744e-09 -Plasma_Spitzer_resistivity_at_point_470__________________________________ (res_plasma_fuel_spitzer_profile470)_ 4.31963253666477432e-09 -Plasma_Spitzer_resistivity_at_point_471__________________________________ (res_plasma_fuel_spitzer_profile471)_ 4.53376790266610062e-09 -Plasma_Spitzer_resistivity_at_point_472__________________________________ (res_plasma_fuel_spitzer_profile472)_ 4.76639679171450426e-09 -Plasma_Spitzer_resistivity_at_point_473__________________________________ (res_plasma_fuel_spitzer_profile473)_ 5.01984833803044019e-09 -Plasma_Spitzer_resistivity_at_point_474__________________________________ (res_plasma_fuel_spitzer_profile474)_ 5.29684431110114537e-09 -Plasma_Spitzer_resistivity_at_point_475__________________________________ (res_plasma_fuel_spitzer_profile475)_ 5.60058337385317193e-09 -Plasma_Spitzer_resistivity_at_point_476__________________________________ (res_plasma_fuel_spitzer_profile476)_ 5.93484761946007169e-09 -Plasma_Spitzer_resistivity_at_point_477__________________________________ (res_plasma_fuel_spitzer_profile477)_ 6.30413848235411255e-09 -Plasma_Spitzer_resistivity_at_point_478__________________________________ (res_plasma_fuel_spitzer_profile478)_ 6.71385179696706007e-09 -Plasma_Spitzer_resistivity_at_point_479__________________________________ (res_plasma_fuel_spitzer_profile479)_ 7.17050563892550800e-09 -Plasma_Spitzer_resistivity_at_point_480__________________________________ (res_plasma_fuel_spitzer_profile480)_ 7.68204023440053269e-09 -Plasma_Spitzer_resistivity_at_point_481__________________________________ (res_plasma_fuel_spitzer_profile481)_ 8.25821762883943875e-09 -Plasma_Spitzer_resistivity_at_point_482__________________________________ (res_plasma_fuel_spitzer_profile482)_ 8.91116153201678634e-09 -Plasma_Spitzer_resistivity_at_point_483__________________________________ (res_plasma_fuel_spitzer_profile483)_ 9.65609739900336004e-09 -Plasma_Spitzer_resistivity_at_point_484__________________________________ (res_plasma_fuel_spitzer_profile484)_ 1.05123837776930102e-08 -Plasma_Spitzer_resistivity_at_point_485__________________________________ (res_plasma_fuel_spitzer_profile485)_ 1.15049759475164143e-08 -Plasma_Spitzer_resistivity_at_point_486__________________________________ (res_plasma_fuel_spitzer_profile486)_ 1.26665457101183968e-08 -Plasma_Spitzer_resistivity_at_point_487__________________________________ (res_plasma_fuel_spitzer_profile487)_ 1.40406225116031820e-08 -Plasma_Spitzer_resistivity_at_point_488__________________________________ (res_plasma_fuel_spitzer_profile488)_ 1.56863702219513563e-08 -Plasma_Spitzer_resistivity_at_point_489__________________________________ (res_plasma_fuel_spitzer_profile489)_ 1.76860698372313558e-08 -Plasma_Spitzer_resistivity_at_point_490__________________________________ (res_plasma_fuel_spitzer_profile490)_ 2.01572491711729738e-08 -Plasma_Spitzer_resistivity_at_point_491__________________________________ (res_plasma_fuel_spitzer_profile491)_ 2.32731481146369893e-08 -Plasma_Spitzer_resistivity_at_point_492__________________________________ (res_plasma_fuel_spitzer_profile492)_ 2.72989245159698062e-08 -Plasma_Spitzer_resistivity_at_point_493__________________________________ (res_plasma_fuel_spitzer_profile493)_ 3.26594757042126945e-08 -Plasma_Spitzer_resistivity_at_point_494__________________________________ (res_plasma_fuel_spitzer_profile494)_ 4.00757463546299569e-08 -Plasma_Spitzer_resistivity_at_point_495__________________________________ (res_plasma_fuel_spitzer_profile495)_ 5.08641816073207500e-08 -Plasma_Spitzer_resistivity_at_point_496__________________________________ (res_plasma_fuel_spitzer_profile496)_ 6.76759927375721243e-08 -Plasma_Spitzer_resistivity_at_point_497__________________________________ (res_plasma_fuel_spitzer_profile497)_ 9.66405690666366873e-08 -Plasma_Spitzer_resistivity_at_point_498__________________________________ (res_plasma_fuel_spitzer_profile498)_ 1.55261887419998155e-07 -Plasma_Spitzer_resistivity_at_point_499__________________________________ (res_plasma_fuel_spitzer_profile499)_ 3.16263381316917890e-07 -Plasma_Spitzer_resistivity_at_point_500__________________________________ (res_plasma_fuel_spitzer_profile500)_ 1.37681321612474018e-06 +Volume_averaged_electron_plasma_frequency_(ωₚₑ)_(Hz)_____________________ (freq_plasma_electron_vol_avg)_ 8.09204272237549133e+10 +Plasma_electron_frequency_at_point_0_____________________________________ (freq_plasma_electron_profile0)_ 9.28061099563304596e+10 +Plasma_electron_frequency_at_point_1_____________________________________ (freq_plasma_electron_profile1)_ 9.28060251711748352e+10 +Plasma_electron_frequency_at_point_2_____________________________________ (freq_plasma_electron_profile2)_ 9.28057708152431946e+10 +Plasma_electron_frequency_at_point_3_____________________________________ (freq_plasma_electron_profile3)_ 9.28053468871412964e+10 +Plasma_electron_frequency_at_point_4_____________________________________ (freq_plasma_electron_profile4)_ 9.28047533845453491e+10 +Plasma_electron_frequency_at_point_5_____________________________________ (freq_plasma_electron_profile5)_ 9.28039903042019653e+10 +Plasma_electron_frequency_at_point_6_____________________________________ (freq_plasma_electron_profile6)_ 9.28030576419280090e+10 +Plasma_electron_frequency_at_point_7_____________________________________ (freq_plasma_electron_profile7)_ 9.28019553926105957e+10 +Plasma_electron_frequency_at_point_8_____________________________________ (freq_plasma_electron_profile8)_ 9.28006835502068634e+10 +Plasma_electron_frequency_at_point_9_____________________________________ (freq_plasma_electron_profile9)_ 9.27992421077438354e+10 +Plasma_electron_frequency_at_point_10____________________________________ (freq_plasma_electron_profile10)_ 9.27976310573182068e+10 +Plasma_electron_frequency_at_point_11____________________________________ (freq_plasma_electron_profile11)_ 9.27958503900961914e+10 +Plasma_electron_frequency_at_point_12____________________________________ (freq_plasma_electron_profile12)_ 9.27939000963131866e+10 +Plasma_electron_frequency_at_point_13____________________________________ (freq_plasma_electron_profile13)_ 9.27917801652736206e+10 +Plasma_electron_frequency_at_point_14____________________________________ (freq_plasma_electron_profile14)_ 9.27894905853505096e+10 +Plasma_electron_frequency_at_point_15____________________________________ (freq_plasma_electron_profile15)_ 9.27870313439852905e+10 +Plasma_electron_frequency_at_point_16____________________________________ (freq_plasma_electron_profile16)_ 9.27844024276873932e+10 +Plasma_electron_frequency_at_point_17____________________________________ (freq_plasma_electron_profile17)_ 9.27816038220338440e+10 +Plasma_electron_frequency_at_point_18____________________________________ (freq_plasma_electron_profile18)_ 9.27786355116689758e+10 +Plasma_electron_frequency_at_point_19____________________________________ (freq_plasma_electron_profile19)_ 9.27754974803038788e+10 +Plasma_electron_frequency_at_point_20____________________________________ (freq_plasma_electron_profile20)_ 9.27721897107160797e+10 +Plasma_electron_frequency_at_point_21____________________________________ (freq_plasma_electron_profile21)_ 9.27687121847489624e+10 +Plasma_electron_frequency_at_point_22____________________________________ (freq_plasma_electron_profile22)_ 9.27650648833113251e+10 +Plasma_electron_frequency_at_point_23____________________________________ (freq_plasma_electron_profile23)_ 9.27612477863768463e+10 +Plasma_electron_frequency_at_point_24____________________________________ (freq_plasma_electron_profile24)_ 9.27572608729835052e+10 +Plasma_electron_frequency_at_point_25____________________________________ (freq_plasma_electron_profile25)_ 9.27531041212330933e+10 +Plasma_electron_frequency_at_point_26____________________________________ (freq_plasma_electron_profile26)_ 9.27487775082904663e+10 +Plasma_electron_frequency_at_point_27____________________________________ (freq_plasma_electron_profile27)_ 9.27442810103830566e+10 +Plasma_electron_frequency_at_point_28____________________________________ (freq_plasma_electron_profile28)_ 9.27396146028001709e+10 +Plasma_electron_frequency_at_point_29____________________________________ (freq_plasma_electron_profile29)_ 9.27347782598922577e+10 +Plasma_electron_frequency_at_point_30____________________________________ (freq_plasma_electron_profile30)_ 9.27297719550702972e+10 +Plasma_electron_frequency_at_point_31____________________________________ (freq_plasma_electron_profile31)_ 9.27245956608049316e+10 +Plasma_electron_frequency_at_point_32____________________________________ (freq_plasma_electron_profile32)_ 9.27192493486259003e+10 +Plasma_electron_frequency_at_point_33____________________________________ (freq_plasma_electron_profile33)_ 9.27137329891210785e+10 +Plasma_electron_frequency_at_point_34____________________________________ (freq_plasma_electron_profile34)_ 9.27080465519357147e+10 +Plasma_electron_frequency_at_point_35____________________________________ (freq_plasma_electron_profile35)_ 9.27021900057716980e+10 +Plasma_electron_frequency_at_point_36____________________________________ (freq_plasma_electron_profile36)_ 9.26961633183865356e+10 +Plasma_electron_frequency_at_point_37____________________________________ (freq_plasma_electron_profile37)_ 9.26899664565925446e+10 +Plasma_electron_frequency_at_point_38____________________________________ (freq_plasma_electron_profile38)_ 9.26835993862559662e+10 +Plasma_electron_frequency_at_point_39____________________________________ (freq_plasma_electron_profile39)_ 9.26770620722959595e+10 +Plasma_electron_frequency_at_point_40____________________________________ (freq_plasma_electron_profile40)_ 9.26703544786836548e+10 +Plasma_electron_frequency_at_point_41____________________________________ (freq_plasma_electron_profile41)_ 9.26634765684411316e+10 +Plasma_electron_frequency_at_point_42____________________________________ (freq_plasma_electron_profile42)_ 9.26564283036404572e+10 +Plasma_electron_frequency_at_point_43____________________________________ (freq_plasma_electron_profile43)_ 9.26492096454026184e+10 +Plasma_electron_frequency_at_point_44____________________________________ (freq_plasma_electron_profile44)_ 9.26418205538964081e+10 +Plasma_electron_frequency_at_point_45____________________________________ (freq_plasma_electron_profile45)_ 9.26342609883372955e+10 +Plasma_electron_frequency_at_point_46____________________________________ (freq_plasma_electron_profile46)_ 9.26265309069864349e+10 +Plasma_electron_frequency_at_point_47____________________________________ (freq_plasma_electron_profile47)_ 9.26186302671493073e+10 +Plasma_electron_frequency_at_point_48____________________________________ (freq_plasma_electron_profile48)_ 9.26105590251746979e+10 +Plasma_electron_frequency_at_point_49____________________________________ (freq_plasma_electron_profile49)_ 9.26023171364534912e+10 +Plasma_electron_frequency_at_point_50____________________________________ (freq_plasma_electron_profile50)_ 9.25939045554172668e+10 +Plasma_electron_frequency_at_point_51____________________________________ (freq_plasma_electron_profile51)_ 9.25853212355371552e+10 +Plasma_electron_frequency_at_point_52____________________________________ (freq_plasma_electron_profile52)_ 9.25765671293225555e+10 +Plasma_electron_frequency_at_point_53____________________________________ (freq_plasma_electron_profile53)_ 9.25676421883197632e+10 +Plasma_electron_frequency_at_point_54____________________________________ (freq_plasma_electron_profile54)_ 9.25585463631106262e+10 +Plasma_electron_frequency_at_point_55____________________________________ (freq_plasma_electron_profile55)_ 9.25492796033112183e+10 +Plasma_electron_frequency_at_point_56____________________________________ (freq_plasma_electron_profile56)_ 9.25398418575703278e+10 +Plasma_electron_frequency_at_point_57____________________________________ (freq_plasma_electron_profile57)_ 9.25302330735681763e+10 +Plasma_electron_frequency_at_point_58____________________________________ (freq_plasma_electron_profile58)_ 9.25204531980148010e+10 +Plasma_electron_frequency_at_point_59____________________________________ (freq_plasma_electron_profile59)_ 9.25105021766486664e+10 +Plasma_electron_frequency_at_point_60____________________________________ (freq_plasma_electron_profile60)_ 9.25003799542350769e+10 +Plasma_electron_frequency_at_point_61____________________________________ (freq_plasma_electron_profile61)_ 9.24900864745647888e+10 +Plasma_electron_frequency_at_point_62____________________________________ (freq_plasma_electron_profile62)_ 9.24796216804521942e+10 +Plasma_electron_frequency_at_point_63____________________________________ (freq_plasma_electron_profile63)_ 9.24689855137338562e+10 +Plasma_electron_frequency_at_point_64____________________________________ (freq_plasma_electron_profile64)_ 9.24581779152669525e+10 +Plasma_electron_frequency_at_point_65____________________________________ (freq_plasma_electron_profile65)_ 9.24471988249274292e+10 +Plasma_electron_frequency_at_point_66____________________________________ (freq_plasma_electron_profile66)_ 9.24360481816084900e+10 +Plasma_electron_frequency_at_point_67____________________________________ (freq_plasma_electron_profile67)_ 9.24247259232187195e+10 +Plasma_electron_frequency_at_point_68____________________________________ (freq_plasma_electron_profile68)_ 9.24132319866804810e+10 +Plasma_electron_frequency_at_point_69____________________________________ (freq_plasma_electron_profile69)_ 9.24015663079280396e+10 +Plasma_electron_frequency_at_point_70____________________________________ (freq_plasma_electron_profile70)_ 9.23897288219058228e+10 +Plasma_electron_frequency_at_point_71____________________________________ (freq_plasma_electron_profile71)_ 9.23777194625664978e+10 +Plasma_electron_frequency_at_point_72____________________________________ (freq_plasma_electron_profile72)_ 9.23655381628692474e+10 +Plasma_electron_frequency_at_point_73____________________________________ (freq_plasma_electron_profile73)_ 9.23531848547777405e+10 +Plasma_electron_frequency_at_point_74____________________________________ (freq_plasma_electron_profile74)_ 9.23406594692582245e+10 +Plasma_electron_frequency_at_point_75____________________________________ (freq_plasma_electron_profile75)_ 9.23279619362777100e+10 +Plasma_electron_frequency_at_point_76____________________________________ (freq_plasma_electron_profile76)_ 9.23150921848018188e+10 +Plasma_electron_frequency_at_point_77____________________________________ (freq_plasma_electron_profile77)_ 9.23020501427928162e+10 +Plasma_electron_frequency_at_point_78____________________________________ (freq_plasma_electron_profile78)_ 9.22888357372076416e+10 +Plasma_electron_frequency_at_point_79____________________________________ (freq_plasma_electron_profile79)_ 9.22754488939957733e+10 +Plasma_electron_frequency_at_point_80____________________________________ (freq_plasma_electron_profile80)_ 9.22618895380970917e+10 +Plasma_electron_frequency_at_point_81____________________________________ (freq_plasma_electron_profile81)_ 9.22481575934397736e+10 +Plasma_electron_frequency_at_point_82____________________________________ (freq_plasma_electron_profile82)_ 9.22342529829382324e+10 +Plasma_electron_frequency_at_point_83____________________________________ (freq_plasma_electron_profile83)_ 9.22201756284907074e+10 +Plasma_electron_frequency_at_point_84____________________________________ (freq_plasma_electron_profile84)_ 9.22059254509771729e+10 +Plasma_electron_frequency_at_point_85____________________________________ (freq_plasma_electron_profile85)_ 9.21915023702571411e+10 +Plasma_electron_frequency_at_point_86____________________________________ (freq_plasma_electron_profile86)_ 9.21769063051671753e+10 +Plasma_electron_frequency_at_point_87____________________________________ (freq_plasma_electron_profile87)_ 9.21621371735187225e+10 +Plasma_electron_frequency_at_point_88____________________________________ (freq_plasma_electron_profile88)_ 9.21471948920956879e+10 +Plasma_electron_frequency_at_point_89____________________________________ (freq_plasma_electron_profile89)_ 9.21320793766521149e+10 +Plasma_electron_frequency_at_point_90____________________________________ (freq_plasma_electron_profile90)_ 9.21167905419096527e+10 +Plasma_electron_frequency_at_point_91____________________________________ (freq_plasma_electron_profile91)_ 9.21013283015552368e+10 +Plasma_electron_frequency_at_point_92____________________________________ (freq_plasma_electron_profile92)_ 9.20856925682385101e+10 +Plasma_electron_frequency_at_point_93____________________________________ (freq_plasma_electron_profile93)_ 9.20698832535693512e+10 +Plasma_electron_frequency_at_point_94____________________________________ (freq_plasma_electron_profile94)_ 9.20539002681152649e+10 +Plasma_electron_frequency_at_point_95____________________________________ (freq_plasma_electron_profile95)_ 9.20377435213989105e+10 +Plasma_electron_frequency_at_point_96____________________________________ (freq_plasma_electron_profile96)_ 9.20214129218954010e+10 +Plasma_electron_frequency_at_point_97____________________________________ (freq_plasma_electron_profile97)_ 9.20049083770296326e+10 +Plasma_electron_frequency_at_point_98____________________________________ (freq_plasma_electron_profile98)_ 9.19882297931737366e+10 +Plasma_electron_frequency_at_point_99____________________________________ (freq_plasma_electron_profile99)_ 9.19713770756441498e+10 +Plasma_electron_frequency_at_point_100___________________________________ (freq_plasma_electron_profile100)_ 9.19543501286991119e+10 +Plasma_electron_frequency_at_point_101___________________________________ (freq_plasma_electron_profile101)_ 9.19371488555356445e+10 +Plasma_electron_frequency_at_point_102___________________________________ (freq_plasma_electron_profile102)_ 9.19197731582869263e+10 +Plasma_electron_frequency_at_point_103___________________________________ (freq_plasma_electron_profile103)_ 9.19022229380193329e+10 +Plasma_electron_frequency_at_point_104___________________________________ (freq_plasma_electron_profile104)_ 9.18844980947295532e+10 +Plasma_electron_frequency_at_point_105___________________________________ (freq_plasma_electron_profile105)_ 9.18665985273417206e+10 +Plasma_electron_frequency_at_point_106___________________________________ (freq_plasma_electron_profile106)_ 9.18485241337044373e+10 +Plasma_electron_frequency_at_point_107___________________________________ (freq_plasma_electron_profile107)_ 9.18302748105876770e+10 +Plasma_electron_frequency_at_point_108___________________________________ (freq_plasma_electron_profile108)_ 9.18118504536800079e+10 +Plasma_electron_frequency_at_point_109___________________________________ (freq_plasma_electron_profile109)_ 9.17932509575852356e+10 +Plasma_electron_frequency_at_point_110___________________________________ (freq_plasma_electron_profile110)_ 9.17744762158194427e+10 +Plasma_electron_frequency_at_point_111___________________________________ (freq_plasma_electron_profile111)_ 9.17555261208079834e+10 +Plasma_electron_frequency_at_point_112___________________________________ (freq_plasma_electron_profile112)_ 9.17364005638820038e+10 +Plasma_electron_frequency_at_point_113___________________________________ (freq_plasma_electron_profile113)_ 9.17170994352755432e+10 +Plasma_electron_frequency_at_point_114___________________________________ (freq_plasma_electron_profile114)_ 9.16976226241220703e+10 +Plasma_electron_frequency_at_point_115___________________________________ (freq_plasma_electron_profile115)_ 9.16779700184513245e+10 +Plasma_electron_frequency_at_point_116___________________________________ (freq_plasma_electron_profile116)_ 9.16581415051859436e+10 +Plasma_electron_frequency_at_point_117___________________________________ (freq_plasma_electron_profile117)_ 9.16381369701380920e+10 +Plasma_electron_frequency_at_point_118___________________________________ (freq_plasma_electron_profile118)_ 9.16179562980061646e+10 +Plasma_electron_frequency_at_point_119___________________________________ (freq_plasma_electron_profile119)_ 9.15975993723711700e+10 +Plasma_electron_frequency_at_point_120___________________________________ (freq_plasma_electron_profile120)_ 9.15770660756934967e+10 +Plasma_electron_frequency_at_point_121___________________________________ (freq_plasma_electron_profile121)_ 9.15563562893092194e+10 +Plasma_electron_frequency_at_point_122___________________________________ (freq_plasma_electron_profile122)_ 9.15354698934265442e+10 +Plasma_electron_frequency_at_point_123___________________________________ (freq_plasma_electron_profile123)_ 9.15144067671223755e+10 +Plasma_electron_frequency_at_point_124___________________________________ (freq_plasma_electron_profile124)_ 9.14931667883386078e+10 +Plasma_electron_frequency_at_point_125___________________________________ (freq_plasma_electron_profile125)_ 9.14717498338784027e+10 +Plasma_electron_frequency_at_point_126___________________________________ (freq_plasma_electron_profile126)_ 9.14501557794025269e+10 +Plasma_electron_frequency_at_point_127___________________________________ (freq_plasma_electron_profile127)_ 9.14283844994256897e+10 +Plasma_electron_frequency_at_point_128___________________________________ (freq_plasma_electron_profile128)_ 9.14064358673125916e+10 +Plasma_electron_frequency_at_point_129___________________________________ (freq_plasma_electron_profile129)_ 9.13843097552742157e+10 +Plasma_electron_frequency_at_point_130___________________________________ (freq_plasma_electron_profile130)_ 9.13620060343639526e+10 +Plasma_electron_frequency_at_point_131___________________________________ (freq_plasma_electron_profile131)_ 9.13395245744736633e+10 +Plasma_electron_frequency_at_point_132___________________________________ (freq_plasma_electron_profile132)_ 9.13168652443297424e+10 +Plasma_electron_frequency_at_point_133___________________________________ (freq_plasma_electron_profile133)_ 9.12940279114890747e+10 +Plasma_electron_frequency_at_point_134___________________________________ (freq_plasma_electron_profile134)_ 9.12710124423350983e+10 +Plasma_electron_frequency_at_point_135___________________________________ (freq_plasma_electron_profile135)_ 9.12478187020736389e+10 +Plasma_electron_frequency_at_point_136___________________________________ (freq_plasma_electron_profile136)_ 9.12244465547289124e+10 +Plasma_electron_frequency_at_point_137___________________________________ (freq_plasma_electron_profile137)_ 9.12008958631391449e+10 +Plasma_electron_frequency_at_point_138___________________________________ (freq_plasma_electron_profile138)_ 9.11771664889526367e+10 +Plasma_electron_frequency_at_point_139___________________________________ (freq_plasma_electron_profile139)_ 9.11532582926232758e+10 +Plasma_electron_frequency_at_point_140___________________________________ (freq_plasma_electron_profile140)_ 9.11291711334064178e+10 +Plasma_electron_frequency_at_point_141___________________________________ (freq_plasma_electron_profile141)_ 9.11049048693544769e+10 +Plasma_electron_frequency_at_point_142___________________________________ (freq_plasma_electron_profile142)_ 9.10804593573125000e+10 +Plasma_electron_frequency_at_point_143___________________________________ (freq_plasma_electron_profile143)_ 9.10558344529138489e+10 +Plasma_electron_frequency_at_point_144___________________________________ (freq_plasma_electron_profile144)_ 9.10310300105756531e+10 +Plasma_electron_frequency_at_point_145___________________________________ (freq_plasma_electron_profile145)_ 9.10060458834943085e+10 +Plasma_electron_frequency_at_point_146___________________________________ (freq_plasma_electron_profile146)_ 9.09808819236409149e+10 +Plasma_electron_frequency_at_point_147___________________________________ (freq_plasma_electron_profile147)_ 9.09555379817566681e+10 +Plasma_electron_frequency_at_point_148___________________________________ (freq_plasma_electron_profile148)_ 9.09300139073482361e+10 +Plasma_electron_frequency_at_point_149___________________________________ (freq_plasma_electron_profile149)_ 9.09043095486830139e+10 +Plasma_electron_frequency_at_point_150___________________________________ (freq_plasma_electron_profile150)_ 9.08784247527843628e+10 +Plasma_electron_frequency_at_point_151___________________________________ (freq_plasma_electron_profile151)_ 9.08523593654268951e+10 +Plasma_electron_frequency_at_point_152___________________________________ (freq_plasma_electron_profile152)_ 9.08261132311315613e+10 +Plasma_electron_frequency_at_point_153___________________________________ (freq_plasma_electron_profile153)_ 9.07996861931607056e+10 +Plasma_electron_frequency_at_point_154___________________________________ (freq_plasma_electron_profile154)_ 9.07730780935132751e+10 +Plasma_electron_frequency_at_point_155___________________________________ (freq_plasma_electron_profile155)_ 9.07462887729197235e+10 +Plasma_electron_frequency_at_point_156___________________________________ (freq_plasma_electron_profile156)_ 9.07193180708369598e+10 +Plasma_electron_frequency_at_point_157___________________________________ (freq_plasma_electron_profile157)_ 9.06921658254432831e+10 +Plasma_electron_frequency_at_point_158___________________________________ (freq_plasma_electron_profile158)_ 9.06648318736333466e+10 +Plasma_electron_frequency_at_point_159___________________________________ (freq_plasma_electron_profile159)_ 9.06373160510127106e+10 +Plasma_electron_frequency_at_point_160___________________________________ (freq_plasma_electron_profile160)_ 9.06096181918928833e+10 +Plasma_electron_frequency_at_point_161___________________________________ (freq_plasma_electron_profile161)_ 9.05817381292858582e+10 +Plasma_electron_frequency_at_point_162___________________________________ (freq_plasma_electron_profile162)_ 9.05536756948987732e+10 +Plasma_electron_frequency_at_point_163___________________________________ (freq_plasma_electron_profile163)_ 9.05254307191286469e+10 +Plasma_electron_frequency_at_point_164___________________________________ (freq_plasma_electron_profile164)_ 9.04970030310567474e+10 +Plasma_electron_frequency_at_point_165___________________________________ (freq_plasma_electron_profile165)_ 9.04683924584431915e+10 +Plasma_electron_frequency_at_point_166___________________________________ (freq_plasma_electron_profile166)_ 9.04395988277213593e+10 +Plasma_electron_frequency_at_point_167___________________________________ (freq_plasma_electron_profile167)_ 9.04106219639923096e+10 +Plasma_electron_frequency_at_point_168___________________________________ (freq_plasma_electron_profile168)_ 9.03814616910190887e+10 +Plasma_electron_frequency_at_point_169___________________________________ (freq_plasma_electron_profile169)_ 9.03521178312210236e+10 +Plasma_electron_frequency_at_point_170___________________________________ (freq_plasma_electron_profile170)_ 9.03225902056679077e+10 +Plasma_electron_frequency_at_point_171___________________________________ (freq_plasma_electron_profile171)_ 9.02928786340742493e+10 +Plasma_electron_frequency_at_point_172___________________________________ (freq_plasma_electron_profile172)_ 9.02629829347932434e+10 +Plasma_electron_frequency_at_point_173___________________________________ (freq_plasma_electron_profile173)_ 9.02329029248109894e+10 +Plasma_electron_frequency_at_point_174___________________________________ (freq_plasma_electron_profile174)_ 9.02026384197403870e+10 +Plasma_electron_frequency_at_point_175___________________________________ (freq_plasma_electron_profile175)_ 9.01721892338150940e+10 +Plasma_electron_frequency_at_point_176___________________________________ (freq_plasma_electron_profile176)_ 9.01415551798834229e+10 +Plasma_electron_frequency_at_point_177___________________________________ (freq_plasma_electron_profile177)_ 9.01107360694021301e+10 +Plasma_electron_frequency_at_point_178___________________________________ (freq_plasma_electron_profile178)_ 9.00797317124302063e+10 +Plasma_electron_frequency_at_point_179___________________________________ (freq_plasma_electron_profile179)_ 9.00485419176225739e+10 +Plasma_electron_frequency_at_point_180___________________________________ (freq_plasma_electron_profile180)_ 9.00171664922237244e+10 +Plasma_electron_frequency_at_point_181___________________________________ (freq_plasma_electron_profile181)_ 8.99856052420613403e+10 +Plasma_electron_frequency_at_point_182___________________________________ (freq_plasma_electron_profile182)_ 8.99538579715397491e+10 +Plasma_electron_frequency_at_point_183___________________________________ (freq_plasma_electron_profile183)_ 8.99219244836333618e+10 +Plasma_electron_frequency_at_point_184___________________________________ (freq_plasma_electron_profile184)_ 8.98898045798802032e+10 +Plasma_electron_frequency_at_point_185___________________________________ (freq_plasma_electron_profile185)_ 8.98574980603751373e+10 +Plasma_electron_frequency_at_point_186___________________________________ (freq_plasma_electron_profile186)_ 8.98250047237630463e+10 +Plasma_electron_frequency_at_point_187___________________________________ (freq_plasma_electron_profile187)_ 8.97923243672323303e+10 +Plasma_electron_frequency_at_point_188___________________________________ (freq_plasma_electron_profile188)_ 8.97594567865077362e+10 +Plasma_electron_frequency_at_point_189___________________________________ (freq_plasma_electron_profile189)_ 8.97264017758435669e+10 +Plasma_electron_frequency_at_point_190___________________________________ (freq_plasma_electron_profile190)_ 8.96931591280167542e+10 +Plasma_electron_frequency_at_point_191___________________________________ (freq_plasma_electron_profile191)_ 8.96597286343196411e+10 +Plasma_electron_frequency_at_point_192___________________________________ (freq_plasma_electron_profile192)_ 8.96261100845529785e+10 +Plasma_electron_frequency_at_point_193___________________________________ (freq_plasma_electron_profile193)_ 8.95923032670187531e+10 +Plasma_electron_frequency_at_point_194___________________________________ (freq_plasma_electron_profile194)_ 8.95583079685127869e+10 +Plasma_electron_frequency_at_point_195___________________________________ (freq_plasma_electron_profile195)_ 8.95241239743175354e+10 +Plasma_electron_frequency_at_point_196___________________________________ (freq_plasma_electron_profile196)_ 8.94897510681946411e+10 +Plasma_electron_frequency_at_point_197___________________________________ (freq_plasma_electron_profile197)_ 8.94551890323774414e+10 +Plasma_electron_frequency_at_point_198___________________________________ (freq_plasma_electron_profile198)_ 8.94204376475635071e+10 +Plasma_electron_frequency_at_point_199___________________________________ (freq_plasma_electron_profile199)_ 8.93854966929069672e+10 +Plasma_electron_frequency_at_point_200___________________________________ (freq_plasma_electron_profile200)_ 8.93503659460107727e+10 +Plasma_electron_frequency_at_point_201___________________________________ (freq_plasma_electron_profile201)_ 8.93150451829190521e+10 +Plasma_electron_frequency_at_point_202___________________________________ (freq_plasma_electron_profile202)_ 8.92795341781092377e+10 +Plasma_electron_frequency_at_point_203___________________________________ (freq_plasma_electron_profile203)_ 8.92438327044841309e+10 +Plasma_electron_frequency_at_point_204___________________________________ (freq_plasma_electron_profile204)_ 8.92079405333639679e+10 +Plasma_electron_frequency_at_point_205___________________________________ (freq_plasma_electron_profile205)_ 8.91718574344783325e+10 +Plasma_electron_frequency_at_point_206___________________________________ (freq_plasma_electron_profile206)_ 8.91355831759580078e+10 +Plasma_electron_frequency_at_point_207___________________________________ (freq_plasma_electron_profile207)_ 8.90991175243267822e+10 +Plasma_electron_frequency_at_point_208___________________________________ (freq_plasma_electron_profile208)_ 8.90624602444932404e+10 +Plasma_electron_frequency_at_point_209___________________________________ (freq_plasma_electron_profile209)_ 8.90256110997422638e+10 +Plasma_electron_frequency_at_point_210___________________________________ (freq_plasma_electron_profile210)_ 8.89885698517266998e+10 +Plasma_electron_frequency_at_point_211___________________________________ (freq_plasma_electron_profile211)_ 8.89513362604587555e+10 +Plasma_electron_frequency_at_point_212___________________________________ (freq_plasma_electron_profile212)_ 8.89139100843014221e+10 +Plasma_electron_frequency_at_point_213___________________________________ (freq_plasma_electron_profile213)_ 8.88762910799598236e+10 +Plasma_electron_frequency_at_point_214___________________________________ (freq_plasma_electron_profile214)_ 8.88384790024723969e+10 +Plasma_electron_frequency_at_point_215___________________________________ (freq_plasma_electron_profile215)_ 8.88004736052020264e+10 +Plasma_electron_frequency_at_point_216___________________________________ (freq_plasma_electron_profile216)_ 8.87622746398271637e+10 +Plasma_electron_frequency_at_point_217___________________________________ (freq_plasma_electron_profile217)_ 8.87238818563328400e+10 +Plasma_electron_frequency_at_point_218___________________________________ (freq_plasma_electron_profile218)_ 8.86852950030013733e+10 +Plasma_electron_frequency_at_point_219___________________________________ (freq_plasma_electron_profile219)_ 8.86465138264033813e+10 +Plasma_electron_frequency_at_point_220___________________________________ (freq_plasma_electron_profile220)_ 8.86075380713883972e+10 +Plasma_electron_frequency_at_point_221___________________________________ (freq_plasma_electron_profile221)_ 8.85683674810755157e+10 +Plasma_electron_frequency_at_point_222___________________________________ (freq_plasma_electron_profile222)_ 8.85290017968439484e+10 +Plasma_electron_frequency_at_point_223___________________________________ (freq_plasma_electron_profile223)_ 8.84894407583234558e+10 +Plasma_electron_frequency_at_point_224___________________________________ (freq_plasma_electron_profile224)_ 8.84496841033847046e+10 +Plasma_electron_frequency_at_point_225___________________________________ (freq_plasma_electron_profile225)_ 8.84097315681295929e+10 +Plasma_electron_frequency_at_point_226___________________________________ (freq_plasma_electron_profile226)_ 8.83695828868813171e+10 +Plasma_electron_frequency_at_point_227___________________________________ (freq_plasma_electron_profile227)_ 8.83292377921745453e+10 +Plasma_electron_frequency_at_point_228___________________________________ (freq_plasma_electron_profile228)_ 8.82886960147453766e+10 +Plasma_electron_frequency_at_point_229___________________________________ (freq_plasma_electron_profile229)_ 8.82479572835212555e+10 +Plasma_electron_frequency_at_point_230___________________________________ (freq_plasma_electron_profile230)_ 8.82070213256107178e+10 +Plasma_electron_frequency_at_point_231___________________________________ (freq_plasma_electron_profile231)_ 8.81658878662930603e+10 +Plasma_electron_frequency_at_point_232___________________________________ (freq_plasma_electron_profile232)_ 8.81245566290081024e+10 +Plasma_electron_frequency_at_point_233___________________________________ (freq_plasma_electron_profile233)_ 8.80830273353455048e+10 +Plasma_electron_frequency_at_point_234___________________________________ (freq_plasma_electron_profile234)_ 8.80412997050342560e+10 +Plasma_electron_frequency_at_point_235___________________________________ (freq_plasma_electron_profile235)_ 8.79993734559319305e+10 +Plasma_electron_frequency_at_point_236___________________________________ (freq_plasma_electron_profile236)_ 8.79572483040139465e+10 +Plasma_electron_frequency_at_point_237___________________________________ (freq_plasma_electron_profile237)_ 8.79149239633625793e+10 +Plasma_electron_frequency_at_point_238___________________________________ (freq_plasma_electron_profile238)_ 8.78724001461559906e+10 +Plasma_electron_frequency_at_point_239___________________________________ (freq_plasma_electron_profile239)_ 8.78296765626571045e+10 +Plasma_electron_frequency_at_point_240___________________________________ (freq_plasma_electron_profile240)_ 8.77867529212023926e+10 +Plasma_electron_frequency_at_point_241___________________________________ (freq_plasma_electron_profile241)_ 8.77436289281904907e+10 +Plasma_electron_frequency_at_point_242___________________________________ (freq_plasma_electron_profile242)_ 8.77003042880708313e+10 +Plasma_electron_frequency_at_point_243___________________________________ (freq_plasma_electron_profile243)_ 8.76567787033319550e+10 +Plasma_electron_frequency_at_point_244___________________________________ (freq_plasma_electron_profile244)_ 8.76130518744900208e+10 +Plasma_electron_frequency_at_point_245___________________________________ (freq_plasma_electron_profile245)_ 8.75691235000769043e+10 +Plasma_electron_frequency_at_point_246___________________________________ (freq_plasma_electron_profile246)_ 8.75249932766283417e+10 +Plasma_electron_frequency_at_point_247___________________________________ (freq_plasma_electron_profile247)_ 8.74806608986719208e+10 +Plasma_electron_frequency_at_point_248___________________________________ (freq_plasma_electron_profile248)_ 8.74361260587149353e+10 +Plasma_electron_frequency_at_point_249___________________________________ (freq_plasma_electron_profile249)_ 8.73913884472321625e+10 +Plasma_electron_frequency_at_point_250___________________________________ (freq_plasma_electron_profile250)_ 8.73464477526535187e+10 +Plasma_electron_frequency_at_point_251___________________________________ (freq_plasma_electron_profile251)_ 8.73013036613515320e+10 +Plasma_electron_frequency_at_point_252___________________________________ (freq_plasma_electron_profile252)_ 8.72559558576287994e+10 +Plasma_electron_frequency_at_point_253___________________________________ (freq_plasma_electron_profile253)_ 8.72104040237051697e+10 +Plasma_electron_frequency_at_point_254___________________________________ (freq_plasma_electron_profile254)_ 8.71646478397050171e+10 +Plasma_electron_frequency_at_point_255___________________________________ (freq_plasma_electron_profile255)_ 8.71186869836441193e+10 +Plasma_electron_frequency_at_point_256___________________________________ (freq_plasma_electron_profile256)_ 8.70725211314167175e+10 +Plasma_electron_frequency_at_point_257___________________________________ (freq_plasma_electron_profile257)_ 8.70261499567821198e+10 +Plasma_electron_frequency_at_point_258___________________________________ (freq_plasma_electron_profile258)_ 8.69795731313514709e+10 +Plasma_electron_frequency_at_point_259___________________________________ (freq_plasma_electron_profile259)_ 8.69327903245742188e+10 +Plasma_electron_frequency_at_point_260___________________________________ (freq_plasma_electron_profile260)_ 8.68858012037244263e+10 +Plasma_electron_frequency_at_point_261___________________________________ (freq_plasma_electron_profile261)_ 8.68386054338871307e+10 +Plasma_electron_frequency_at_point_262___________________________________ (freq_plasma_electron_profile262)_ 8.67912026779443665e+10 +Plasma_electron_frequency_at_point_263___________________________________ (freq_plasma_electron_profile263)_ 8.67435925965611115e+10 +Plasma_electron_frequency_at_point_264___________________________________ (freq_plasma_electron_profile264)_ 8.66957748481712494e+10 +Plasma_electron_frequency_at_point_265___________________________________ (freq_plasma_electron_profile265)_ 8.66477490889630890e+10 +Plasma_electron_frequency_at_point_266___________________________________ (freq_plasma_electron_profile266)_ 8.65995149728650513e+10 +Plasma_electron_frequency_at_point_267___________________________________ (freq_plasma_electron_profile267)_ 8.65510721515310211e+10 +Plasma_electron_frequency_at_point_268___________________________________ (freq_plasma_electron_profile268)_ 8.65024202743255615e+10 +Plasma_electron_frequency_at_point_269___________________________________ (freq_plasma_electron_profile269)_ 8.64535589883091125e+10 +Plasma_electron_frequency_at_point_270___________________________________ (freq_plasma_electron_profile270)_ 8.64044879382229309e+10 +Plasma_electron_frequency_at_point_271___________________________________ (freq_plasma_electron_profile271)_ 8.63552067664738617e+10 +Plasma_electron_frequency_at_point_272___________________________________ (freq_plasma_electron_profile272)_ 8.63057151131190338e+10 +Plasma_electron_frequency_at_point_273___________________________________ (freq_plasma_electron_profile273)_ 8.62560126158504486e+10 +Plasma_electron_frequency_at_point_274___________________________________ (freq_plasma_electron_profile274)_ 8.62060989099791565e+10 +Plasma_electron_frequency_at_point_275___________________________________ (freq_plasma_electron_profile275)_ 8.61559736284196472e+10 +Plasma_electron_frequency_at_point_276___________________________________ (freq_plasma_electron_profile276)_ 8.61056364016737823e+10 +Plasma_electron_frequency_at_point_277___________________________________ (freq_plasma_electron_profile277)_ 8.60550868578146515e+10 +Plasma_electron_frequency_at_point_278___________________________________ (freq_plasma_electron_profile278)_ 8.60043246224704437e+10 +Plasma_electron_frequency_at_point_279___________________________________ (freq_plasma_electron_profile279)_ 8.59533493188078156e+10 +Plasma_electron_frequency_at_point_280___________________________________ (freq_plasma_electron_profile280)_ 8.59021605675153961e+10 +Plasma_electron_frequency_at_point_281___________________________________ (freq_plasma_electron_profile281)_ 8.58507579867869873e+10 +Plasma_electron_frequency_at_point_282___________________________________ (freq_plasma_electron_profile282)_ 8.57991411923045502e+10 +Plasma_electron_frequency_at_point_283___________________________________ (freq_plasma_electron_profile283)_ 8.57473097972212067e+10 +Plasma_electron_frequency_at_point_284___________________________________ (freq_plasma_electron_profile284)_ 8.56952634121438293e+10 +Plasma_electron_frequency_at_point_285___________________________________ (freq_plasma_electron_profile285)_ 8.56430016451156311e+10 +Plasma_electron_frequency_at_point_286___________________________________ (freq_plasma_electron_profile286)_ 8.55905241015984802e+10 +Plasma_electron_frequency_at_point_287___________________________________ (freq_plasma_electron_profile287)_ 8.55378303844551544e+10 +Plasma_electron_frequency_at_point_288___________________________________ (freq_plasma_electron_profile288)_ 8.54849200939311981e+10 +Plasma_electron_frequency_at_point_289___________________________________ (freq_plasma_electron_profile289)_ 8.54317928276368103e+10 +Plasma_electron_frequency_at_point_290___________________________________ (freq_plasma_electron_profile290)_ 8.53784481805284424e+10 +Plasma_electron_frequency_at_point_291___________________________________ (freq_plasma_electron_profile291)_ 8.53248857448902893e+10 +Plasma_electron_frequency_at_point_292___________________________________ (freq_plasma_electron_profile292)_ 8.52711051103153839e+10 +Plasma_electron_frequency_at_point_293___________________________________ (freq_plasma_electron_profile293)_ 8.52171058636867828e+10 +Plasma_electron_frequency_at_point_294___________________________________ (freq_plasma_electron_profile294)_ 8.51628875891583405e+10 +Plasma_electron_frequency_at_point_295___________________________________ (freq_plasma_electron_profile295)_ 8.51084498681353760e+10 +Plasma_electron_frequency_at_point_296___________________________________ (freq_plasma_electron_profile296)_ 8.50537922792551117e+10 +Plasma_electron_frequency_at_point_297___________________________________ (freq_plasma_electron_profile297)_ 8.49989143983669586e+10 +Plasma_electron_frequency_at_point_298___________________________________ (freq_plasma_electron_profile298)_ 8.49438157985125122e+10 +Plasma_electron_frequency_at_point_299___________________________________ (freq_plasma_electron_profile299)_ 8.48884960499054260e+10 +Plasma_electron_frequency_at_point_300___________________________________ (freq_plasma_electron_profile300)_ 8.48329547199109650e+10 +Plasma_electron_frequency_at_point_301___________________________________ (freq_plasma_electron_profile301)_ 8.47771913730255280e+10 +Plasma_electron_frequency_at_point_302___________________________________ (freq_plasma_electron_profile302)_ 8.47212055708557434e+10 +Plasma_electron_frequency_at_point_303___________________________________ (freq_plasma_electron_profile303)_ 8.46649968720974579e+10 +Plasma_electron_frequency_at_point_304___________________________________ (freq_plasma_electron_profile304)_ 8.46085648325145721e+10 +Plasma_electron_frequency_at_point_305___________________________________ (freq_plasma_electron_profile305)_ 8.45519090049174500e+10 +Plasma_electron_frequency_at_point_306___________________________________ (freq_plasma_electron_profile306)_ 8.44950289391413574e+10 +Plasma_electron_frequency_at_point_307___________________________________ (freq_plasma_electron_profile307)_ 8.44379241820244141e+10 +Plasma_electron_frequency_at_point_308___________________________________ (freq_plasma_electron_profile308)_ 8.43805942773855133e+10 +Plasma_electron_frequency_at_point_309___________________________________ (freq_plasma_electron_profile309)_ 8.43230387660018921e+10 +Plasma_electron_frequency_at_point_310___________________________________ (freq_plasma_electron_profile310)_ 8.42652571855865326e+10 +Plasma_electron_frequency_at_point_311___________________________________ (freq_plasma_electron_profile311)_ 8.42072490707653046e+10 +Plasma_electron_frequency_at_point_312___________________________________ (freq_plasma_electron_profile312)_ 8.41490139530537567e+10 +Plasma_electron_frequency_at_point_313___________________________________ (freq_plasma_electron_profile313)_ 8.40905513608338928e+10 +Plasma_electron_frequency_at_point_314___________________________________ (freq_plasma_electron_profile314)_ 8.40318608193304291e+10 +Plasma_electron_frequency_at_point_315___________________________________ (freq_plasma_electron_profile315)_ 8.39729418505870361e+10 +Plasma_electron_frequency_at_point_316___________________________________ (freq_plasma_electron_profile316)_ 8.39137939734421387e+10 +Plasma_electron_frequency_at_point_317___________________________________ (freq_plasma_electron_profile317)_ 8.38544167035046082e+10 +Plasma_electron_frequency_at_point_318___________________________________ (freq_plasma_electron_profile318)_ 8.37948095531290131e+10 +Plasma_electron_frequency_at_point_319___________________________________ (freq_plasma_electron_profile319)_ 8.37349720313908386e+10 +Plasma_electron_frequency_at_point_320___________________________________ (freq_plasma_electron_profile320)_ 8.36749036440611725e+10 +Plasma_electron_frequency_at_point_321___________________________________ (freq_plasma_electron_profile321)_ 8.36146038935813599e+10 +Plasma_electron_frequency_at_point_322___________________________________ (freq_plasma_electron_profile322)_ 8.35540722790372009e+10 +Plasma_electron_frequency_at_point_323___________________________________ (freq_plasma_electron_profile323)_ 8.34933082961329651e+10 +Plasma_electron_frequency_at_point_324___________________________________ (freq_plasma_electron_profile324)_ 8.34323114371651306e+10 +Plasma_electron_frequency_at_point_325___________________________________ (freq_plasma_electron_profile325)_ 8.33710811909956970e+10 +Plasma_electron_frequency_at_point_326___________________________________ (freq_plasma_electron_profile326)_ 8.33096170430254211e+10 +Plasma_electron_frequency_at_point_327___________________________________ (freq_plasma_electron_profile327)_ 8.32479184751665497e+10 +Plasma_electron_frequency_at_point_328___________________________________ (freq_plasma_electron_profile328)_ 8.31859849658154602e+10 +Plasma_electron_frequency_at_point_329___________________________________ (freq_plasma_electron_profile329)_ 8.31238159898247833e+10 +Plasma_electron_frequency_at_point_330___________________________________ (freq_plasma_electron_profile330)_ 8.30614110184753418e+10 +Plasma_electron_frequency_at_point_331___________________________________ (freq_plasma_electron_profile331)_ 8.29987695194477844e+10 +Plasma_electron_frequency_at_point_332___________________________________ (freq_plasma_electron_profile332)_ 8.29358909567938843e+10 +Plasma_electron_frequency_at_point_333___________________________________ (freq_plasma_electron_profile333)_ 8.28727747909074860e+10 +Plasma_electron_frequency_at_point_334___________________________________ (freq_plasma_electron_profile334)_ 8.28094204784951324e+10 +Plasma_electron_frequency_at_point_335___________________________________ (freq_plasma_electron_profile335)_ 8.27458274725464478e+10 +Plasma_electron_frequency_at_point_336___________________________________ (freq_plasma_electron_profile336)_ 8.26819952223040314e+10 +Plasma_electron_frequency_at_point_337___________________________________ (freq_plasma_electron_profile337)_ 8.26179231732331848e+10 +Plasma_electron_frequency_at_point_338___________________________________ (freq_plasma_electron_profile338)_ 8.25536107669912262e+10 +Plasma_electron_frequency_at_point_339___________________________________ (freq_plasma_electron_profile339)_ 8.24890574413963928e+10 +Plasma_electron_frequency_at_point_340___________________________________ (freq_plasma_electron_profile340)_ 8.24242626303964539e+10 +Plasma_electron_frequency_at_point_341___________________________________ (freq_plasma_electron_profile341)_ 8.23592257640370178e+10 +Plasma_electron_frequency_at_point_342___________________________________ (freq_plasma_electron_profile342)_ 8.22939462684293671e+10 +Plasma_electron_frequency_at_point_343___________________________________ (freq_plasma_electron_profile343)_ 8.22284235657180481e+10 +Plasma_electron_frequency_at_point_344___________________________________ (freq_plasma_electron_profile344)_ 8.21626570740479584e+10 +Plasma_electron_frequency_at_point_345___________________________________ (freq_plasma_electron_profile345)_ 8.20966462075311737e+10 +Plasma_electron_frequency_at_point_346___________________________________ (freq_plasma_electron_profile346)_ 8.20303903762133484e+10 +Plasma_electron_frequency_at_point_347___________________________________ (freq_plasma_electron_profile347)_ 8.19638889860397186e+10 +Plasma_electron_frequency_at_point_348___________________________________ (freq_plasma_electron_profile348)_ 8.18971414388207092e+10 +Plasma_electron_frequency_at_point_349___________________________________ (freq_plasma_electron_profile349)_ 8.18301471321971588e+10 +Plasma_electron_frequency_at_point_350___________________________________ (freq_plasma_electron_profile350)_ 8.17629054596052094e+10 +Plasma_electron_frequency_at_point_351___________________________________ (freq_plasma_electron_profile351)_ 8.16954158102406464e+10 +Plasma_electron_frequency_at_point_352___________________________________ (freq_plasma_electron_profile352)_ 8.16276775690229340e+10 +Plasma_electron_frequency_at_point_353___________________________________ (freq_plasma_electron_profile353)_ 8.15596901165587769e+10 +Plasma_electron_frequency_at_point_354___________________________________ (freq_plasma_electron_profile354)_ 8.14914528291052856e+10 +Plasma_electron_frequency_at_point_355___________________________________ (freq_plasma_electron_profile355)_ 8.14229650785327454e+10 +Plasma_electron_frequency_at_point_356___________________________________ (freq_plasma_electron_profile356)_ 8.13542262322868195e+10 +Plasma_electron_frequency_at_point_357___________________________________ (freq_plasma_electron_profile357)_ 8.12852356533504791e+10 +Plasma_electron_frequency_at_point_358___________________________________ (freq_plasma_electron_profile358)_ 8.12159927002053680e+10 +Plasma_electron_frequency_at_point_359___________________________________ (freq_plasma_electron_profile359)_ 8.11464967267926636e+10 +Plasma_electron_frequency_at_point_360___________________________________ (freq_plasma_electron_profile360)_ 8.10767470824737091e+10 +Plasma_electron_frequency_at_point_361___________________________________ (freq_plasma_electron_profile361)_ 8.10067431119898529e+10 +Plasma_electron_frequency_at_point_362___________________________________ (freq_plasma_electron_profile362)_ 8.09364841554221344e+10 +Plasma_electron_frequency_at_point_363___________________________________ (freq_plasma_electron_profile363)_ 8.08659695481501770e+10 +Plasma_electron_frequency_at_point_364___________________________________ (freq_plasma_electron_profile364)_ 8.07951986208108673e+10 +Plasma_electron_frequency_at_point_365___________________________________ (freq_plasma_electron_profile365)_ 8.07241706992563629e+10 +Plasma_electron_frequency_at_point_366___________________________________ (freq_plasma_electron_profile366)_ 8.06528851045116272e+10 +Plasma_electron_frequency_at_point_367___________________________________ (freq_plasma_electron_profile367)_ 8.05813411527314911e+10 +Plasma_electron_frequency_at_point_368___________________________________ (freq_plasma_electron_profile368)_ 8.05095381551572266e+10 +Plasma_electron_frequency_at_point_369___________________________________ (freq_plasma_electron_profile369)_ 8.04374754180724487e+10 +Plasma_electron_frequency_at_point_370___________________________________ (freq_plasma_electron_profile370)_ 8.03651522427586365e+10 +Plasma_electron_frequency_at_point_371___________________________________ (freq_plasma_electron_profile371)_ 8.02925679254500580e+10 +Plasma_electron_frequency_at_point_372___________________________________ (freq_plasma_electron_profile372)_ 8.02197217572881165e+10 +Plasma_electron_frequency_at_point_373___________________________________ (freq_plasma_electron_profile373)_ 8.01466130242751312e+10 +Plasma_electron_frequency_at_point_374___________________________________ (freq_plasma_electron_profile374)_ 8.00732410072276611e+10 +Plasma_electron_frequency_at_point_375___________________________________ (freq_plasma_electron_profile375)_ 7.99996049817290802e+10 +Plasma_electron_frequency_at_point_376___________________________________ (freq_plasma_electron_profile376)_ 7.99257042180817871e+10 +Plasma_electron_frequency_at_point_377___________________________________ (freq_plasma_electron_profile377)_ 7.98515379812585297e+10 +Plasma_electron_frequency_at_point_378___________________________________ (freq_plasma_electron_profile378)_ 7.97771055308534088e+10 +Plasma_electron_frequency_at_point_379___________________________________ (freq_plasma_electron_profile379)_ 7.97024061210321655e+10 +Plasma_electron_frequency_at_point_380___________________________________ (freq_plasma_electron_profile380)_ 7.96274390004817200e+10 +Plasma_electron_frequency_at_point_381___________________________________ (freq_plasma_electron_profile381)_ 7.95522034123593903e+10 +Plasma_electron_frequency_at_point_382___________________________________ (freq_plasma_electron_profile382)_ 7.94766985942411041e+10 +Plasma_electron_frequency_at_point_383___________________________________ (freq_plasma_electron_profile383)_ 7.94009237780692291e+10 +Plasma_electron_frequency_at_point_384___________________________________ (freq_plasma_electron_profile384)_ 7.93248781900996552e+10 +Plasma_electron_frequency_at_point_385___________________________________ (freq_plasma_electron_profile385)_ 7.92485610508481445e+10 +Plasma_electron_frequency_at_point_386___________________________________ (freq_plasma_electron_profile386)_ 7.91719715750361938e+10 +Plasma_electron_frequency_at_point_387___________________________________ (freq_plasma_electron_profile387)_ 7.90951089715359344e+10 +Plasma_electron_frequency_at_point_388___________________________________ (freq_plasma_electron_profile388)_ 7.90179724433145905e+10 +Plasma_electron_frequency_at_point_389___________________________________ (freq_plasma_electron_profile389)_ 7.89405611873780365e+10 +Plasma_electron_frequency_at_point_390___________________________________ (freq_plasma_electron_profile390)_ 7.88628743947137604e+10 +Plasma_electron_frequency_at_point_391___________________________________ (freq_plasma_electron_profile391)_ 7.87849112502330475e+10 +Plasma_electron_frequency_at_point_392___________________________________ (freq_plasma_electron_profile392)_ 7.87066709327123566e+10 +Plasma_electron_frequency_at_point_393___________________________________ (freq_plasma_electron_profile393)_ 7.86281526147340698e+10 +Plasma_electron_frequency_at_point_394___________________________________ (freq_plasma_electron_profile394)_ 7.85493554626263428e+10 +Plasma_electron_frequency_at_point_395___________________________________ (freq_plasma_electron_profile395)_ 7.84702786364023132e+10 +Plasma_electron_frequency_at_point_396___________________________________ (freq_plasma_electron_profile396)_ 7.83909212896983337e+10 +Plasma_electron_frequency_at_point_397___________________________________ (freq_plasma_electron_profile397)_ 7.83112825697115936e+10 +Plasma_electron_frequency_at_point_398___________________________________ (freq_plasma_electron_profile398)_ 7.82313616171367950e+10 +Plasma_electron_frequency_at_point_399___________________________________ (freq_plasma_electron_profile399)_ 7.81511575661020203e+10 +Plasma_electron_frequency_at_point_400___________________________________ (freq_plasma_electron_profile400)_ 7.80706695441038055e+10 +Plasma_electron_frequency_at_point_401___________________________________ (freq_plasma_electron_profile401)_ 7.79898966719413300e+10 +Plasma_electron_frequency_at_point_402___________________________________ (freq_plasma_electron_profile402)_ 7.79088380636496582e+10 +Plasma_electron_frequency_at_point_403___________________________________ (freq_plasma_electron_profile403)_ 7.78274928264322357e+10 +Plasma_electron_frequency_at_point_404___________________________________ (freq_plasma_electron_profile404)_ 7.77458600605923309e+10 +Plasma_electron_frequency_at_point_405___________________________________ (freq_plasma_electron_profile405)_ 7.76639388594637604e+10 +Plasma_electron_frequency_at_point_406___________________________________ (freq_plasma_electron_profile406)_ 7.75817283093404388e+10 +Plasma_electron_frequency_at_point_407___________________________________ (freq_plasma_electron_profile407)_ 7.74992274894052277e+10 +Plasma_electron_frequency_at_point_408___________________________________ (freq_plasma_electron_profile408)_ 7.74164354716575775e+10 +Plasma_electron_frequency_at_point_409___________________________________ (freq_plasma_electron_profile409)_ 7.73333513208404388e+10 +Plasma_electron_frequency_at_point_410___________________________________ (freq_plasma_electron_profile410)_ 7.72499740943659821e+10 +Plasma_electron_frequency_at_point_411___________________________________ (freq_plasma_electron_profile411)_ 7.71663028422404938e+10 +Plasma_electron_frequency_at_point_412___________________________________ (freq_plasma_electron_profile412)_ 7.70823366069879913e+10 +Plasma_electron_frequency_at_point_413___________________________________ (freq_plasma_electron_profile413)_ 7.69980744235731201e+10 +Plasma_electron_frequency_at_point_414___________________________________ (freq_plasma_electron_profile414)_ 7.69135153193226624e+10 +Plasma_electron_frequency_at_point_415___________________________________ (freq_plasma_electron_profile415)_ 7.68286583138462067e+10 +Plasma_electron_frequency_at_point_416___________________________________ (freq_plasma_electron_profile416)_ 7.67435024189556580e+10 +Plasma_electron_frequency_at_point_417___________________________________ (freq_plasma_electron_profile417)_ 7.66580466385835419e+10 +Plasma_electron_frequency_at_point_418___________________________________ (freq_plasma_electron_profile418)_ 7.65722899687002563e+10 +Plasma_electron_frequency_at_point_419___________________________________ (freq_plasma_electron_profile419)_ 7.64862313972302856e+10 +Plasma_electron_frequency_at_point_420___________________________________ (freq_plasma_electron_profile420)_ 7.63998699039669189e+10 +Plasma_electron_frequency_at_point_421___________________________________ (freq_plasma_electron_profile421)_ 7.63132044604860992e+10 +Plasma_electron_frequency_at_point_422___________________________________ (freq_plasma_electron_profile422)_ 7.62262340300589447e+10 +Plasma_electron_frequency_at_point_423___________________________________ (freq_plasma_electron_profile423)_ 7.61389575675629272e+10 +Plasma_electron_frequency_at_point_424___________________________________ (freq_plasma_electron_profile424)_ 7.60513740193920135e+10 +Plasma_electron_frequency_at_point_425___________________________________ (freq_plasma_electron_profile425)_ 7.59634823233653107e+10 +Plasma_electron_frequency_at_point_426___________________________________ (freq_plasma_electron_profile426)_ 7.58752814086345673e+10 +Plasma_electron_frequency_at_point_427___________________________________ (freq_plasma_electron_profile427)_ 7.57867701955902710e+10 +Plasma_electron_frequency_at_point_428___________________________________ (freq_plasma_electron_profile428)_ 7.56979475957664795e+10 +Plasma_electron_frequency_at_point_429___________________________________ (freq_plasma_electron_profile429)_ 7.56088125117441559e+10 +Plasma_electron_frequency_at_point_430___________________________________ (freq_plasma_electron_profile430)_ 7.55193638370532227e+10 +Plasma_electron_frequency_at_point_431___________________________________ (freq_plasma_electron_profile431)_ 7.54296004560731964e+10 +Plasma_electron_frequency_at_point_432___________________________________ (freq_plasma_electron_profile432)_ 7.53395212439323120e+10 +Plasma_electron_frequency_at_point_433___________________________________ (freq_plasma_electron_profile433)_ 7.52491250664051971e+10 +Plasma_electron_frequency_at_point_434___________________________________ (freq_plasma_electron_profile434)_ 7.51584107798091125e+10 +Plasma_electron_frequency_at_point_435___________________________________ (freq_plasma_electron_profile435)_ 7.50673772308986053e+10 +Plasma_electron_frequency_at_point_436___________________________________ (freq_plasma_electron_profile436)_ 7.49760232567586670e+10 +Plasma_electron_frequency_at_point_437___________________________________ (freq_plasma_electron_profile437)_ 7.48843476846962433e+10 +Plasma_electron_frequency_at_point_438___________________________________ (freq_plasma_electron_profile438)_ 7.47923493321302185e+10 +Plasma_electron_frequency_at_point_439___________________________________ (freq_plasma_electron_profile439)_ 7.47000270064797058e+10 +Plasma_electron_frequency_at_point_440___________________________________ (freq_plasma_electron_profile440)_ 7.46073795050507965e+10 +Plasma_electron_frequency_at_point_441___________________________________ (freq_plasma_electron_profile441)_ 7.45144056149213257e+10 +Plasma_electron_frequency_at_point_442___________________________________ (freq_plasma_electron_profile442)_ 7.44211041128243256e+10 +Plasma_electron_frequency_at_point_443___________________________________ (freq_plasma_electron_profile443)_ 7.43274737650293732e+10 +Plasma_electron_frequency_at_point_444___________________________________ (freq_plasma_electron_profile444)_ 7.42335133272223358e+10 +Plasma_electron_frequency_at_point_445___________________________________ (freq_plasma_electron_profile445)_ 7.41392215443831940e+10 +Plasma_electron_frequency_at_point_446___________________________________ (freq_plasma_electron_profile446)_ 7.40445971506621399e+10 +Plasma_electron_frequency_at_point_447___________________________________ (freq_plasma_electron_profile447)_ 7.39496388692536316e+10 +Plasma_electron_frequency_at_point_448___________________________________ (freq_plasma_electron_profile448)_ 7.38543454122686462e+10 +Plasma_electron_frequency_at_point_449___________________________________ (freq_plasma_electron_profile449)_ 7.37587154806048431e+10 +Plasma_electron_frequency_at_point_450___________________________________ (freq_plasma_electron_profile450)_ 7.36627477638149261e+10 +Plasma_electron_frequency_at_point_451___________________________________ (freq_plasma_electron_profile451)_ 7.35664409399727325e+10 +Plasma_electron_frequency_at_point_452___________________________________ (freq_plasma_electron_profile452)_ 7.34697936755374756e+10 +Plasma_electron_frequency_at_point_453___________________________________ (freq_plasma_electron_profile453)_ 7.33728046252156525e+10 +Plasma_electron_frequency_at_point_454___________________________________ (freq_plasma_electron_profile454)_ 7.32754724318210297e+10 +Plasma_electron_frequency_at_point_455___________________________________ (freq_plasma_electron_profile455)_ 7.31777957261321869e+10 +Plasma_electron_frequency_at_point_456___________________________________ (freq_plasma_electron_profile456)_ 7.30797731267480927e+10 +Plasma_electron_frequency_at_point_457___________________________________ (freq_plasma_electron_profile457)_ 7.29814032399411011e+10 +Plasma_electron_frequency_at_point_458___________________________________ (freq_plasma_electron_profile458)_ 7.28826846595079193e+10 +Plasma_electron_frequency_at_point_459___________________________________ (freq_plasma_electron_profile459)_ 7.27836159666179962e+10 +Plasma_electron_frequency_at_point_460___________________________________ (freq_plasma_electron_profile460)_ 7.26841957296595917e+10 +Plasma_electron_frequency_at_point_461___________________________________ (freq_plasma_electron_profile461)_ 7.25844225040832825e+10 +Plasma_electron_frequency_at_point_462___________________________________ (freq_plasma_electron_profile462)_ 7.24842948322431488e+10 +Plasma_electron_frequency_at_point_463___________________________________ (freq_plasma_electron_profile463)_ 7.23838112432351837e+10 +Plasma_electron_frequency_at_point_464___________________________________ (freq_plasma_electron_profile464)_ 7.22829702527332916e+10 +Plasma_electron_frequency_at_point_465___________________________________ (freq_plasma_electron_profile465)_ 7.21817703628223877e+10 +Plasma_electron_frequency_at_point_466___________________________________ (freq_plasma_electron_profile466)_ 7.20802100618289948e+10 +Plasma_electron_frequency_at_point_467___________________________________ (freq_plasma_electron_profile467)_ 7.19782878241490173e+10 +Plasma_electron_frequency_at_point_468___________________________________ (freq_plasma_electron_profile468)_ 7.18760021100725708e+10 +Plasma_electron_frequency_at_point_469___________________________________ (freq_plasma_electron_profile469)_ 7.17733513656060638e+10 +Plasma_electron_frequency_at_point_470___________________________________ (freq_plasma_electron_profile470)_ 7.16703340222913208e+10 +Plasma_electron_frequency_at_point_471___________________________________ (freq_plasma_electron_profile471)_ 7.11767793674148712e+10 +Plasma_electron_frequency_at_point_472___________________________________ (freq_plasma_electron_profile472)_ 7.06797783200294495e+10 +Plasma_electron_frequency_at_point_473___________________________________ (freq_plasma_electron_profile473)_ 7.01792576593636475e+10 +Plasma_electron_frequency_at_point_474___________________________________ (freq_plasma_electron_profile474)_ 6.96751415346262512e+10 +Plasma_electron_frequency_at_point_475___________________________________ (freq_plasma_electron_profile475)_ 6.91673513308197174e+10 +Plasma_electron_frequency_at_point_476___________________________________ (freq_plasma_electron_profile476)_ 6.86558055256210251e+10 +Plasma_electron_frequency_at_point_477___________________________________ (freq_plasma_electron_profile477)_ 6.81404195365918045e+10 +Plasma_electron_frequency_at_point_478___________________________________ (freq_plasma_electron_profile478)_ 6.76211055579069214e+10 +Plasma_electron_frequency_at_point_479___________________________________ (freq_plasma_electron_profile479)_ 6.70977723857091827e+10 +Plasma_electron_frequency_at_point_480___________________________________ (freq_plasma_electron_profile480)_ 6.65703252311064301e+10 +Plasma_electron_frequency_at_point_481___________________________________ (freq_plasma_electron_profile481)_ 6.60386655197251358e+10 +Plasma_electron_frequency_at_point_482___________________________________ (freq_plasma_electron_profile482)_ 6.55026906766201553e+10 +Plasma_electron_frequency_at_point_483___________________________________ (freq_plasma_electron_profile483)_ 6.49622938952114716e+10 +Plasma_electron_frequency_at_point_484___________________________________ (freq_plasma_electron_profile484)_ 6.44173638887736359e+10 +Plasma_electron_frequency_at_point_485___________________________________ (freq_plasma_electron_profile485)_ 6.38677846228403625e+10 +Plasma_electron_frequency_at_point_486___________________________________ (freq_plasma_electron_profile486)_ 6.33134350267016602e+10 +Plasma_electron_frequency_at_point_487___________________________________ (freq_plasma_electron_profile487)_ 6.27541886819614563e+10 +Plasma_electron_frequency_at_point_488___________________________________ (freq_plasma_electron_profile488)_ 6.21899134858866577e+10 +Plasma_electron_frequency_at_point_489___________________________________ (freq_plasma_electron_profile489)_ 6.16204712870074997e+10 +Plasma_electron_frequency_at_point_490___________________________________ (freq_plasma_electron_profile490)_ 6.10457174901218033e+10 +Plasma_electron_frequency_at_point_491___________________________________ (freq_plasma_electron_profile491)_ 6.04655006275033722e+10 +Plasma_electron_frequency_at_point_492___________________________________ (freq_plasma_electron_profile492)_ 5.98796618927116089e+10 +Plasma_electron_frequency_at_point_493___________________________________ (freq_plasma_electron_profile493)_ 5.92880346329367447e+10 +Plasma_electron_frequency_at_point_494___________________________________ (freq_plasma_electron_profile494)_ 5.86904437952819824e+10 +Plasma_electron_frequency_at_point_495___________________________________ (freq_plasma_electron_profile495)_ 5.80867053217687836e+10 +Plasma_electron_frequency_at_point_496___________________________________ (freq_plasma_electron_profile496)_ 5.74766254871391144e+10 +Plasma_electron_frequency_at_point_497___________________________________ (freq_plasma_electron_profile497)_ 5.68600001727022171e+10 +Plasma_electron_frequency_at_point_498___________________________________ (freq_plasma_electron_profile498)_ 5.62366140685100784e+10 +Plasma_electron_frequency_at_point_499___________________________________ (freq_plasma_electron_profile499)_ 5.56062397950211334e+10 +Plasma_electron_frequency_at_point_500___________________________________ (freq_plasma_electron_profile500)_ 5.49686369340939789e+10 +Volume_averaged_electron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_electron_vol_avg)_ 1.39600515308623993e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_electron_profile0)_ 2.09400772962935944e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_electron_profile1)_ 2.09191790155587738e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_electron_profile2)_ 2.08983224063707794e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_electron_profile3)_ 2.08775073442130402e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_electron_profile4)_ 2.08567337050645691e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_electron_profile5)_ 2.08360013653975067e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_electron_profile6)_ 2.08153102021746674e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_electron_profile7)_ 2.07946600928471100e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_electron_profile8)_ 2.07740509153517242e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_electron_profile9)_ 2.07534825481088013e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_electron_profile10)_ 2.07329548700196747e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_electron_profile11)_ 2.07124677604643219e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_electron_profile12)_ 2.06920210992990051e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_electron_profile13)_ 2.06716147668539398e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_electron_profile14)_ 2.06512486439309265e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_electron_profile15)_ 2.06309226118010742e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_electron_profile16)_ 2.06106365522024475e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_electron_profile17)_ 2.05903903473378082e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_electron_profile18)_ 2.05701838798723175e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_electron_profile19)_ 2.05500170329312683e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_electron_profile20)_ 2.05298896900978363e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_electron_profile21)_ 2.05098017354108551e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_electron_profile22)_ 2.04897530533625519e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_electron_profile23)_ 2.04697435288963776e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_electron_profile24)_ 2.04497730474047729e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_electron_profile25)_ 2.04298414947269897e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_electron_profile26)_ 2.04099487571469269e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_electron_profile27)_ 2.03900947213909424e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_electron_profile28)_ 2.03702792746257446e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_electron_profile29)_ 2.03505023044562042e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_electron_profile30)_ 2.03307636989232666e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_electron_profile31)_ 2.03110633465018341e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_electron_profile32)_ 2.02914011360986359e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_electron_profile33)_ 2.02717769570501862e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_electron_profile34)_ 2.02521906991206696e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_electron_profile35)_ 2.02326422524998962e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_electron_profile36)_ 2.02131315078012482e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_electron_profile37)_ 2.01936583560596283e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_electron_profile38)_ 2.01742226887294403e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_electron_profile39)_ 2.01548243976825867e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_electron_profile40)_ 2.01354633752064240e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_electron_profile41)_ 2.01161395140018158e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_electron_profile42)_ 2.00968527071811035e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_electron_profile43)_ 2.00776028482661804e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_electron_profile44)_ 2.00583898311864990e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_electron_profile45)_ 2.00392135502771423e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_electron_profile46)_ 2.00200739002768768e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_electron_profile47)_ 2.00009707763262329e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_electron_profile48)_ 1.99819040739655792e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_electron_profile49)_ 1.99628736891332275e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_electron_profile50)_ 1.99438795181635498e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_electron_profile51)_ 1.99249214577850677e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_electron_profile52)_ 1.99059994051186066e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_electron_profile53)_ 1.98871132576754211e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_electron_profile54)_ 1.98682629133553497e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_electron_profile55)_ 1.98494482704449738e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_electron_profile56)_ 1.98306692276157898e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_electron_profile57)_ 1.98119256839223938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_electron_profile58)_ 1.97932175388006561e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_electron_profile59)_ 1.97745446920659332e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_electron_profile60)_ 1.97559070439113007e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_electron_profile61)_ 1.97373044949057343e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_electron_profile62)_ 1.97187369459923706e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_electron_profile63)_ 1.97002042984867371e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_electron_profile64)_ 1.96817064540750153e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_electron_profile65)_ 1.96632433148122803e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_electron_profile66)_ 1.96448147831207977e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_electron_profile67)_ 1.96264207617882874e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_electron_profile68)_ 1.96080611539662231e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_electron_profile69)_ 1.95897358631681244e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_electron_profile70)_ 1.95714447932678711e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_electron_profile71)_ 1.95531878484980316e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_electron_profile72)_ 1.95349649334481750e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_electron_profile73)_ 1.95167759530632111e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_electron_profile74)_ 1.94986208126417572e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_electron_profile75)_ 1.94804994178344696e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_electron_profile76)_ 1.94624116746424255e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_electron_profile77)_ 1.94443574894154816e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_electron_profile78)_ 1.94263367688506897e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_electron_profile79)_ 1.94083494199906433e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_electron_profile80)_ 1.93903953502219147e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_electron_profile81)_ 1.93724744672734650e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_electron_profile82)_ 1.93545866792150452e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_electron_profile83)_ 1.93367318944556213e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_electron_profile84)_ 1.93189100217418365e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_electron_profile85)_ 1.93011209701564362e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_electron_profile86)_ 1.92833646491167389e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_electron_profile87)_ 1.92656409683730652e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_electron_profile88)_ 1.92479498380072479e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_electron_profile89)_ 1.92302911684310944e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_electron_profile90)_ 1.92126648703848694e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_electron_profile91)_ 1.91950708549358002e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_electron_profile92)_ 1.91775090334765686e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_electron_profile93)_ 1.91599793177238495e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_electron_profile94)_ 1.91424816197167969e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_electron_profile95)_ 1.91250158518155945e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_electron_profile96)_ 1.91075819266999939e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_electron_profile97)_ 1.90901797573678436e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_electron_profile98)_ 1.90728092571336609e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_electron_profile99)_ 1.90554703396271759e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_electron_profile100)_ 1.90381629187919098e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_electron_profile101)_ 1.90208869088837494e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_electron_profile102)_ 1.90036422244695282e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_electron_profile103)_ 1.89864287804256287e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_electron_profile104)_ 1.89692464919365540e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_electron_profile105)_ 1.89520952744935730e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_electron_profile106)_ 1.89349750438933044e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_electron_profile107)_ 1.89178857162363647e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_electron_profile108)_ 1.89008272079259613e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_electron_profile109)_ 1.88837994356665710e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_electron_profile110)_ 1.88668023164625488e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_electron_profile111)_ 1.88498357676168091e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_electron_profile112)_ 1.88328997067294617e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_electron_profile113)_ 1.88159940516964905e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_electron_profile114)_ 1.87991187207084259e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_electron_profile115)_ 1.87822736322490082e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_electron_profile116)_ 1.87654587050939056e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_electron_profile117)_ 1.87486738583093811e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_electron_profile118)_ 1.87319190112510193e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_electron_profile119)_ 1.87151940835624054e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_electron_profile120)_ 1.86984989951738556e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_electron_profile121)_ 1.86818336663011505e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_electron_profile122)_ 1.86651980174442505e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_electron_profile123)_ 1.86485919693860229e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_electron_profile124)_ 1.86320154431910126e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_electron_profile125)_ 1.86154683602041656e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_electron_profile126)_ 1.85989506420495911e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_electron_profile127)_ 1.85824622106293365e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_electron_profile128)_ 1.85660029881221344e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_electron_profile129)_ 1.85495728969822052e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_electron_profile130)_ 1.85331718599380127e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_electron_profile131)_ 1.85167997999910706e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_electron_profile132)_ 1.85004566404147339e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_electron_profile133)_ 1.84841423047529907e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_electron_profile134)_ 1.84678567168192902e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_electron_profile135)_ 1.84515998006953278e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_electron_profile136)_ 1.84353714807298920e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_electron_profile137)_ 1.84191716815376892e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_electron_profile138)_ 1.84030003279981506e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_electron_profile139)_ 1.83868573452542938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_electron_profile140)_ 1.83707426587115601e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_electron_profile141)_ 1.83546561940366852e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_electron_profile142)_ 1.83385978771565125e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_electron_profile143)_ 1.83225676342569000e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_electron_profile144)_ 1.83065653917815613e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_electron_profile145)_ 1.82905910764309662e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_electron_profile146)_ 1.82746446151611969e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_electron_profile147)_ 1.82587259351828339e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_electron_profile148)_ 1.82428349639598694e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_electron_profile149)_ 1.82269716292085999e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_electron_profile150)_ 1.82111358588965179e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_electron_profile151)_ 1.81953275812412262e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_electron_profile152)_ 1.81795467247093597e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_electron_profile153)_ 1.81637932180155060e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_electron_profile154)_ 1.81480669901211182e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_electron_profile155)_ 1.81323679702334747e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_electron_profile156)_ 1.81166960878045715e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_electron_profile157)_ 1.81010512725301300e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_electron_profile158)_ 1.80854334543484833e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_electron_profile159)_ 1.80698425634395599e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_electron_profile160)_ 1.80542785302238525e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_electron_profile161)_ 1.80387412853613525e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_electron_profile162)_ 1.80232307597505524e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_electron_profile163)_ 1.80077468845274017e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_electron_profile164)_ 1.79922895910642883e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_electron_profile165)_ 1.79768588109690308e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_electron_profile166)_ 1.79614544760838837e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_electron_profile167)_ 1.79460765184844971e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_electron_profile168)_ 1.79307248704789490e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_electron_profile169)_ 1.79153994646067444e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_electron_profile170)_ 1.79001002336378235e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_electron_profile171)_ 1.78848271105715820e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_electron_profile172)_ 1.78695800286358826e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_electron_profile173)_ 1.78543589212861115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_electron_profile174)_ 1.78391637222041656e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_electron_profile175)_ 1.78239943652975281e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_electron_profile176)_ 1.78088507846982941e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_electron_profile177)_ 1.77937329147622192e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_electron_profile178)_ 1.77786406900677643e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_electron_profile179)_ 1.77635740454151611e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_electron_profile180)_ 1.77485329158254791e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_electron_profile181)_ 1.77335172365396698e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_electron_profile182)_ 1.77185269430176605e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_electron_profile183)_ 1.77035619709374084e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_electron_profile184)_ 1.76886222561940002e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_electron_profile185)_ 1.76737077348987274e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_electron_profile186)_ 1.76588183433781708e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_electron_profile187)_ 1.76439540181733093e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_electron_profile188)_ 1.76291146960385986e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_electron_profile189)_ 1.76143003139410828e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_electron_profile190)_ 1.75995108090595245e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_electron_profile191)_ 1.75847461187834656e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_electron_profile192)_ 1.75700061807123993e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_electron_profile193)_ 1.75552909326548492e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_electron_profile194)_ 1.75406003126275269e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_electron_profile195)_ 1.75259342588544281e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_electron_profile196)_ 1.75112927097659912e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_electron_profile197)_ 1.74966756039982422e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_electron_profile198)_ 1.74820828803919037e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_electron_profile199)_ 1.74675144779915741e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_electron_profile200)_ 1.74529703360448730e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_electron_profile201)_ 1.74384503940015747e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_electron_profile202)_ 1.74239545915127960e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_electron_profile203)_ 1.74094828684301453e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_electron_profile204)_ 1.73950351648048889e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_electron_profile205)_ 1.73806114208871429e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_electron_profile206)_ 1.73662115771250153e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_electron_profile207)_ 1.73518355741638153e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_electron_profile208)_ 1.73374833528452362e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_electron_profile209)_ 1.73231548542065216e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_electron_profile210)_ 1.73088500194796814e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_electron_profile211)_ 1.72945687900906708e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_electron_profile212)_ 1.72803111076586060e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_electron_profile213)_ 1.72660769139949677e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_electron_profile214)_ 1.72518661511027893e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_electron_profile215)_ 1.72376787611759003e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_electron_profile216)_ 1.72235146865981049e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_electron_profile217)_ 1.72093738699424408e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_electron_profile218)_ 1.71952562539703796e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_electron_profile219)_ 1.71811617816310608e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_electron_profile220)_ 1.71670903960605194e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_electron_profile221)_ 1.71530420405809265e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_electron_profile222)_ 1.71390166586998260e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_electron_profile223)_ 1.71250141941093903e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_electron_profile224)_ 1.71110345906856262e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_electron_profile225)_ 1.70970777924876801e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_electron_profile226)_ 1.70831437437570435e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_electron_profile227)_ 1.70692323889168518e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_electron_profile228)_ 1.70553436725711060e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_electron_profile229)_ 1.70414775395039764e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_electron_profile230)_ 1.70276339346790344e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_electron_profile231)_ 1.70138128032385498e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_electron_profile232)_ 1.70000140905027496e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_electron_profile233)_ 1.69862377419691193e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_electron_profile234)_ 1.69724837033116516e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_electron_profile235)_ 1.69587519203801727e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_electron_profile236)_ 1.69450423391995880e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_electron_profile237)_ 1.69313549059692200e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_electron_profile238)_ 1.69176895670620605e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_electron_profile239)_ 1.69040462690241089e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_electron_profile240)_ 1.68904249585736420e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_electron_profile241)_ 1.68768255826005585e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_electron_profile242)_ 1.68632480881656433e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_electron_profile243)_ 1.68496924224999115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_electron_profile244)_ 1.68361585330039276e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_electron_profile245)_ 1.68226463672471039e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_electron_profile246)_ 1.68091558729670349e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_electron_profile247)_ 1.67956869980688263e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_electron_profile248)_ 1.67822396906244141e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_electron_profile249)_ 1.67688138988719147e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_electron_profile250)_ 1.67554095712149414e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_electron_profile251)_ 1.67420266562219574e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_electron_profile252)_ 1.67286651026256134e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_electron_profile253)_ 1.67153248593220856e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_electron_profile254)_ 1.67020058753704315e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_electron_profile255)_ 1.66887080999919525e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_electron_profile256)_ 1.66754314825695251e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_electron_profile257)_ 1.66621759726469727e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_electron_profile258)_ 1.66489415199284302e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_electron_profile259)_ 1.66357280742776917e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_electron_profile260)_ 1.66225355857175995e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_electron_profile261)_ 1.66093640044293915e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_electron_profile262)_ 1.65962132807520935e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_electron_profile263)_ 1.65830833651818756e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_electron_profile264)_ 1.65699742083714569e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_electron_profile265)_ 1.65568857611294556e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_electron_profile266)_ 1.65438179744198029e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_electron_profile267)_ 1.65307707993611145e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_electron_profile268)_ 1.65177441872260803e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_electron_profile269)_ 1.65047380894408600e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_electron_profile270)_ 1.64917524575844971e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_electron_profile271)_ 1.64787872433882782e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_electron_profile272)_ 1.64658423987351868e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_electron_profile273)_ 1.64529178756592560e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_electron_profile274)_ 1.64400136263450134e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_electron_profile275)_ 1.64271296031268738e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_electron_profile276)_ 1.64142657584885590e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_electron_profile277)_ 1.64014220450625153e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_electron_profile278)_ 1.63885984156293121e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_electron_profile279)_ 1.63757948231171021e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_electron_profile280)_ 1.63630112206010101e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_electron_profile281)_ 1.63502475613025696e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_electron_profile282)_ 1.63375037985891632e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_electron_profile283)_ 1.63247798859734375e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_electron_profile284)_ 1.63120757771127563e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_electron_profile285)_ 1.62993914258086243e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_electron_profile286)_ 1.62867267860061340e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_electron_profile287)_ 1.62740818117933960e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_electron_profile288)_ 1.62614564574010040e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_electron_profile289)_ 1.62488506772014679e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_electron_profile290)_ 1.62362644257086700e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_electron_profile291)_ 1.62236976575773132e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_electron_profile292)_ 1.62111503276023895e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_electron_profile293)_ 1.61986223907186188e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_electron_profile294)_ 1.61861138019999176e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_electron_profile295)_ 1.61736245166588684e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_electron_profile296)_ 1.61611544900461761e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_electron_profile297)_ 1.61487036776501495e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_electron_profile298)_ 1.61362720350961426e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_electron_profile299)_ 1.61238595181460724e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_electron_profile300)_ 1.61114660826978424e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_electron_profile301)_ 1.60990916847848633e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_electron_profile302)_ 1.60867362805755127e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_electron_profile303)_ 1.60743998263726196e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_electron_profile304)_ 1.60620822786129456e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_electron_profile305)_ 1.60497835938666870e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_electron_profile306)_ 1.60375037288369507e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_electron_profile307)_ 1.60252426403592438e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_electron_profile308)_ 1.60130002854009857e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_electron_profile309)_ 1.60007766210609894e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_electron_profile310)_ 1.59885716045689484e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_electron_profile311)_ 1.59763851932849792e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_electron_profile312)_ 1.59642173446990814e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_electron_profile313)_ 1.59520680164306641e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_electron_profile314)_ 1.59399371662280518e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_electron_profile315)_ 1.59278247519680023e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_electron_profile316)_ 1.59157307316551941e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_electron_profile317)_ 1.59036550634217682e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_electron_profile318)_ 1.58915977055268341e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_electron_profile319)_ 1.58795586163559814e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_electron_profile320)_ 1.58675377544208130e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_electron_profile321)_ 1.58555350783584656e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_electron_profile322)_ 1.58435505469311371e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_electron_profile323)_ 1.58315841190255981e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_electron_profile324)_ 1.58196357536527496e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_electron_profile325)_ 1.58077054099471283e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_electron_profile326)_ 1.57957930471664642e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_electron_profile327)_ 1.57838986246911865e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_electron_profile328)_ 1.57720221020239960e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_electron_profile329)_ 1.57601634387893921e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_electron_profile330)_ 1.57483225947332031e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_electron_profile331)_ 1.57364995297221436e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_electron_profile332)_ 1.57246942037433533e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_electron_profile333)_ 1.57129065769039703e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_electron_profile334)_ 1.57011366094306305e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_electron_profile335)_ 1.56893842616690765e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_electron_profile336)_ 1.56776494940836914e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_electron_profile337)_ 1.56659322672570190e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_electron_profile338)_ 1.56542325418893890e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_electron_profile339)_ 1.56425502787984283e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_electron_profile340)_ 1.56308854389186371e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_electron_profile341)_ 1.56192379833009613e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_electron_profile342)_ 1.56076078731123566e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_electron_profile343)_ 1.55959950696353363e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_electron_profile344)_ 1.55843995342675781e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_electron_profile345)_ 1.55728212285214691e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_electron_profile346)_ 1.55612601140236786e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_electron_profile347)_ 1.55497161525147583e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_electron_profile348)_ 1.55381893058486969e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_electron_profile349)_ 1.55266795359925110e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_electron_profile350)_ 1.55151868050258270e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_electron_profile351)_ 1.55037110751404541e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_electron_profile352)_ 1.54922523086399811e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_electron_profile353)_ 1.54808104679393585e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_electron_profile354)_ 1.54693855155644958e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_electron_profile355)_ 1.54579774141518402e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_electron_profile356)_ 1.54465861264479645e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_electron_profile357)_ 1.54352116153091980e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_electron_profile358)_ 1.54238538437011719e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_electron_profile359)_ 1.54125127746984528e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_electron_profile360)_ 1.54011883714841248e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_electron_profile361)_ 1.53898805973494049e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_electron_profile362)_ 1.53785894156932465e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_electron_profile363)_ 1.53673147900219147e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_electron_profile364)_ 1.53560566839486389e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_electron_profile365)_ 1.53448150611931854e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_electron_profile366)_ 1.53335898855814850e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_electron_profile367)_ 1.53223811210452423e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_electron_profile368)_ 1.53111887316215424e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_electron_profile369)_ 1.53000126814524811e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_electron_profile370)_ 1.52888529347847504e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_electron_profile371)_ 1.52777094559693085e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_electron_profile372)_ 1.52665822094609558e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_electron_profile373)_ 1.52554711598179718e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_electron_profile374)_ 1.52443762717017395e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_electron_profile375)_ 1.52332975098763763e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_electron_profile376)_ 1.52222348392083496e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_electron_profile377)_ 1.52111882246661041e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_electron_profile378)_ 1.52001576313197174e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_electron_profile379)_ 1.51891430243405029e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_electron_profile380)_ 1.51781443690006470e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_electron_profile381)_ 1.51671616306728577e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_electron_profile382)_ 1.51561947748300018e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_electron_profile383)_ 1.51452437670447205e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_electron_profile384)_ 1.51343085729890930e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_electron_profile385)_ 1.51233891584342651e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_electron_profile386)_ 1.51124854892501038e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_electron_profile387)_ 1.51015975314048218e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_electron_profile388)_ 1.50907252509646454e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_electron_profile389)_ 1.50798686140934479e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_electron_profile390)_ 1.50690275870524048e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_electron_profile391)_ 1.50582021361996368e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_electron_profile392)_ 1.50473922279898712e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_electron_profile393)_ 1.50365978289740997e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_electron_profile394)_ 1.50258189057992065e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_electron_profile395)_ 1.50150554252076599e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_electron_profile396)_ 1.50043073540371460e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_electron_profile397)_ 1.49935746592202393e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_electron_profile398)_ 1.49828573077840546e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_electron_profile399)_ 1.49721552668499207e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_electron_profile400)_ 1.49614685036330414e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_electron_profile401)_ 1.49507969854421478e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_electron_profile402)_ 1.49401406796791809e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_electron_profile403)_ 1.49294995538389557e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_electron_profile404)_ 1.49188735755088226e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_electron_profile405)_ 1.49082627123683441e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_electron_profile406)_ 1.48976669321889801e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_electron_profile407)_ 1.48870862028337311e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_electron_profile408)_ 1.48765204922568451e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_electron_profile409)_ 1.48659697685034698e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_electron_profile410)_ 1.48554339997093506e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_electron_profile411)_ 1.48449131541004913e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_electron_profile412)_ 1.48344071999928497e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_electron_profile413)_ 1.48239161057920044e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_electron_profile414)_ 1.48134398399928558e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_electron_profile415)_ 1.48029783711793030e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_electron_profile416)_ 1.47925316680239197e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_electron_profile417)_ 1.47820996992876526e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_electron_profile418)_ 1.47716824338195160e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_electron_profile419)_ 1.47612798405562622e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_electron_profile420)_ 1.47508918885220917e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_electron_profile421)_ 1.47405185468283356e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_electron_profile422)_ 1.47301597846731506e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_electron_profile423)_ 1.47198155713412170e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_electron_profile424)_ 1.47094858762034332e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_electron_profile425)_ 1.46991706687166138e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_electron_profile426)_ 1.46888699184231903e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_electron_profile427)_ 1.46785835949509064e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_electron_profile428)_ 1.46683116680125244e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_electron_profile429)_ 1.46580541074055206e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_electron_profile430)_ 1.46478108830118073e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_electron_profile431)_ 1.46375819647974121e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_electron_profile432)_ 1.46273673228122070e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_electron_profile433)_ 1.46171669271896057e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_electron_profile434)_ 1.46069807481462708e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_electron_profile435)_ 1.45968087559818176e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_electron_profile436)_ 1.45866509210785614e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_electron_profile437)_ 1.45765072139011780e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_electron_profile438)_ 1.45663776049964508e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_electron_profile439)_ 1.45562620649929810e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_electron_profile440)_ 1.45461605646008972e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_electron_profile441)_ 1.45360730746115753e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_electron_profile442)_ 1.45259995658973602e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_electron_profile443)_ 1.45159400094112823e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_electron_profile444)_ 1.45058943761867767e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_electron_profile445)_ 1.44958626373374084e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_electron_profile446)_ 1.44858447640565948e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_electron_profile447)_ 1.44758407276173279e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_electron_profile448)_ 1.44658504993719055e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_electron_profile449)_ 1.44558740507516510e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_electron_profile450)_ 1.44459113532666382e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_electron_profile451)_ 1.44359623785054382e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_electron_profile452)_ 1.44260270981348206e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_electron_profile453)_ 1.44161054838995148e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_electron_profile454)_ 1.44061975076219208e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_electron_profile455)_ 1.43963031412018494e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_electron_profile456)_ 1.43864223566162598e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_electron_profile457)_ 1.43765551259189911e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_electron_profile458)_ 1.43667014212405029e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_electron_profile459)_ 1.43568612147875977e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_electron_profile460)_ 1.43470344788431854e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_electron_profile461)_ 1.43372211857660004e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_electron_profile462)_ 1.43274213079903564e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_electron_profile463)_ 1.43176348180258820e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_electron_profile464)_ 1.43078616884572632e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_electron_profile465)_ 1.42981018919439911e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_electron_profile466)_ 1.42883554012201050e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_electron_profile467)_ 1.42786221890939331e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_electron_profile468)_ 1.42689022284478516e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_electron_profile469)_ 1.42591954922380249e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_electron_profile470)_ 1.42495019534941498e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_electron_profile471)_ 1.42398215853192200e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_electron_profile472)_ 1.42301543608892700e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_electron_profile473)_ 1.42205002534531189e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_electron_profile474)_ 1.42108592363321320e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_electron_profile475)_ 1.42012312829199829e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_electron_profile476)_ 1.41916163666823914e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_electron_profile477)_ 1.41820144611568970e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_electron_profile478)_ 1.41724255399525970e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_electron_profile479)_ 1.41628495767499298e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_electron_profile480)_ 1.41532865453003998e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_electron_profile481)_ 1.41437364194263794e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_electron_profile482)_ 1.41341991730208313e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_electron_profile483)_ 1.41246747800470978e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_electron_profile484)_ 1.41151632145386475e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_electron_profile485)_ 1.41056644505988495e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_electron_profile486)_ 1.40961784624007324e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_electron_profile487)_ 1.40867052241867554e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_electron_profile488)_ 1.40772447102685638e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_electron_profile489)_ 1.40677968950267731e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_electron_profile490)_ 1.40583617529107269e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_electron_profile491)_ 1.40489392584382660e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_electron_profile492)_ 1.40395293861955078e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_electron_profile493)_ 1.40301321108366089e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_electron_profile494)_ 1.40207474070835419e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_electron_profile495)_ 1.40113752497258667e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_electron_profile496)_ 1.40020156136205048e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_electron_profile497)_ 1.39926684736915192e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_electron_profile498)_ 1.39833338049298828e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_electron_profile499)_ 1.39740115823932617e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_electron_profile500)_ 1.39647017812057892e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_electron_profile501)_ 1.39554043765578491e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_electron_profile502)_ 1.39461193437058502e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_electron_profile503)_ 1.39368466579720032e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_electron_profile504)_ 1.39275862947441193e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_electron_profile505)_ 1.39183382294753601e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_electron_profile506)_ 1.39091024376840698e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_electron_profile507)_ 1.38998788949535095e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_electron_profile508)_ 1.38906675769316711e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_electron_profile509)_ 1.38814684593310547e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_electron_profile510)_ 1.38722815179284546e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_electron_profile511)_ 1.38631067285647430e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_electron_profile512)_ 1.38539440671446747e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_electron_profile513)_ 1.38447935096366547e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_electron_profile514)_ 1.38356550320725372e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_electron_profile515)_ 1.38265286105474243e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_electron_profile516)_ 1.38174142212194427e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_electron_profile517)_ 1.38083118403095490e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_electron_profile518)_ 1.37992214441013123e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_electron_profile519)_ 1.37901430089407227e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_electron_profile520)_ 1.37810765112359589e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_electron_profile521)_ 1.37720219274572235e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_electron_profile522)_ 1.37629792341365021e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_electron_profile523)_ 1.37539484078673859e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_electron_profile524)_ 1.37449294253048492e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_electron_profile525)_ 1.37359222631650696e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_electron_profile526)_ 1.37269268982252090e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_electron_profile527)_ 1.37179433073232285e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_electron_profile528)_ 1.37089714673576813e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_electron_profile529)_ 1.37000113552875122e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_electron_profile530)_ 1.36910629481318680e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_electron_profile531)_ 1.36821262229699051e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_electron_profile532)_ 1.36732011569405685e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_electron_profile533)_ 1.36642877272424332e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_electron_profile534)_ 1.36553859111334824e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_electron_profile535)_ 1.36464956859309204e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_electron_profile536)_ 1.36376170290109924e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_electron_profile537)_ 1.36287499178087753e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_electron_profile538)_ 1.36198943298179947e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_electron_profile539)_ 1.36110502425908417e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_electron_profile540)_ 1.36022176337377640e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_electron_profile541)_ 1.35933964809272995e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_electron_profile542)_ 1.35845867618858688e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_electron_profile543)_ 1.35757884543975983e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_electron_profile544)_ 1.35670015363041397e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_electron_profile545)_ 1.35582259855044571e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_electron_profile546)_ 1.35494617799546844e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_electron_profile547)_ 1.35407088976678894e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_electron_profile548)_ 1.35319673167139389e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_electron_profile549)_ 1.35232370152192841e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_electron_profile550)_ 1.35145179713667923e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_electron_profile551)_ 1.35058101633955505e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_electron_profile552)_ 1.34971135696007034e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_electron_profile553)_ 1.34884281683332657e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_electron_profile554)_ 1.34797539379999329e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_electron_profile555)_ 1.34710908570629135e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_electron_profile556)_ 1.34624389040397522e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_electron_profile557)_ 1.34537980575031403e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_electron_profile558)_ 1.34451682960807526e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_electron_profile559)_ 1.34365495984550598e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_electron_profile560)_ 1.34279419433631622e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_electron_profile561)_ 1.34193453095966034e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_electron_profile562)_ 1.34107596760012131e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_electron_profile563)_ 1.34021850214769150e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_electron_profile564)_ 1.33936213249775650e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_electron_profile565)_ 1.33850685655107895e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_electron_profile566)_ 1.33765267221377731e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_electron_profile567)_ 1.33679957739731491e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_electron_profile568)_ 1.33594757001847626e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_electron_profile569)_ 1.33509664799935623e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_electron_profile570)_ 1.33424680926733887e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_electron_profile571)_ 1.33339805175508224e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_electron_profile572)_ 1.33255037340050156e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_electron_profile573)_ 1.33170377214675308e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_electron_profile574)_ 1.33085824594221558e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_electron_profile575)_ 1.33001379274047531e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_electron_profile576)_ 1.32917041050031021e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_electron_profile577)_ 1.32832809718567123e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_electron_profile578)_ 1.32748685076566757e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_electron_profile579)_ 1.32664666921455017e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_electron_profile580)_ 1.32580755051169464e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_electron_profile581)_ 1.32496949264158646e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_electron_profile582)_ 1.32413249359380264e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_electron_profile583)_ 1.32329655136299850e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_electron_profile584)_ 1.32246166394888916e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_electron_profile585)_ 1.32162782935623535e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_electron_profile586)_ 1.32079504559482666e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_electron_profile587)_ 1.31996331067946396e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_electron_profile588)_ 1.31913262262994934e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_electron_profile589)_ 1.31830297947106232e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_electron_profile590)_ 1.31747437923255127e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_electron_profile591)_ 1.31664681994911392e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_electron_profile592)_ 1.31582029966038254e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_electron_profile593)_ 1.31499481641090912e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_electron_profile594)_ 1.31417036825014999e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_electron_profile595)_ 1.31334695323244949e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_electron_profile596)_ 1.31252456941702515e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_electron_profile597)_ 1.31170321486795349e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_electron_profile598)_ 1.31088288765415207e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_electron_profile599)_ 1.31006358584936844e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_electron_profile600)_ 1.30924530753216064e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_electron_profile601)_ 1.30842805078588608e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_electron_profile602)_ 1.30761181369868347e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_electron_profile603)_ 1.30679659436345993e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_electron_profile604)_ 1.30598239087787521e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_electron_profile605)_ 1.30516920134432739e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_electron_profile606)_ 1.30435702386993713e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_electron_profile607)_ 1.30354585656653595e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_electron_profile608)_ 1.30273569755064575e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_electron_profile609)_ 1.30192654494347183e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_electron_profile610)_ 1.30111839687088104e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_electron_profile611)_ 1.30031125146339294e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_electron_profile612)_ 1.29950510685616180e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_electron_profile613)_ 1.29869996118896484e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_electron_profile614)_ 1.29789581260618546e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_electron_profile615)_ 1.29709265925680023e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_electron_profile616)_ 1.29629049929436554e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_electron_profile617)_ 1.29548933087700211e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_electron_profile618)_ 1.29468915216738068e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_electron_profile619)_ 1.29388996133270966e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_electron_profile620)_ 1.29309175654471878e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_electron_profile621)_ 1.29229453597964828e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_electron_profile622)_ 1.29149829781823135e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_electron_profile623)_ 1.29070304024568329e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_electron_profile624)_ 1.28990876145168594e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_electron_profile625)_ 1.28911545963037491e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_electron_profile626)_ 1.28832313298032532e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_electron_profile627)_ 1.28753177970453857e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_electron_profile628)_ 1.28674139801042938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_electron_profile629)_ 1.28595198610980942e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_electron_profile630)_ 1.28516354221887772e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_electron_profile631)_ 1.28437606455820419e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_electron_profile632)_ 1.28358955135271881e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_electron_profile633)_ 1.28280400083169479e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_electron_profile634)_ 1.28201941122873978e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_electron_profile635)_ 1.28123578078177826e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_electron_profile636)_ 1.28045310773304169e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_electron_profile637)_ 1.27967139032905319e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_electron_profile638)_ 1.27889062682061584e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_electron_profile639)_ 1.27811081546279846e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_electron_profile640)_ 1.27733195451492355e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_electron_profile641)_ 1.27655404224055374e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_electron_profile642)_ 1.27577707690748001e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_electron_profile643)_ 1.27500105678770645e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_electron_profile644)_ 1.27422598015744049e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_electron_profile645)_ 1.27345184529707748e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_electron_profile646)_ 1.27267865049118988e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_electron_profile647)_ 1.27190639402851318e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_electron_profile648)_ 1.27113507420193390e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_electron_profile649)_ 1.27036468930847855e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_electron_profile650)_ 1.26959523764929688e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_electron_profile651)_ 1.26882671752965485e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_electron_profile652)_ 1.26805912725891647e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_electron_profile653)_ 1.26729246515053772e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_electron_profile654)_ 1.26652672952204788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_electron_profile655)_ 1.26576191869504181e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_electron_profile656)_ 1.26499803099516556e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_electron_profile657)_ 1.26423506475210464e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_electron_profile658)_ 1.26347301829957169e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_electron_profile659)_ 1.26271188997529480e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_electron_profile660)_ 1.26195167812100494e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_electron_profile661)_ 1.26119238108242432e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_electron_profile662)_ 1.26043399720925400e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_electron_profile663)_ 1.25967652485516190e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_electron_profile664)_ 1.25891996237777145e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_electron_profile665)_ 1.25816430813864914e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_electron_profile666)_ 1.25740956050329300e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_electron_profile667)_ 1.25665571784112076e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_electron_profile668)_ 1.25590277852545822e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_electron_profile669)_ 1.25515074093352646e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_electron_profile670)_ 1.25439960344643295e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_electron_profile671)_ 1.25364936444915619e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_electron_profile672)_ 1.25290002233053772e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_electron_profile673)_ 1.25215157548326721e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_electron_profile674)_ 1.25140402230387436e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_electron_profile675)_ 1.25065736119271423e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_electron_profile676)_ 1.24991159055395920e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_electron_profile677)_ 1.24916670879558350e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_electron_profile678)_ 1.24842271432935654e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_electron_profile679)_ 1.24767960557082703e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_electron_profile680)_ 1.24693738093931564e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_electron_profile681)_ 1.24619603885790100e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_electron_profile682)_ 1.24545557775341019e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_electron_profile683)_ 1.24471599605640701e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_electron_profile684)_ 1.24397729220118057e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_electron_profile685)_ 1.24323946462573517e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_electron_profile686)_ 1.24250251177177795e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_electron_profile687)_ 1.24176643208470932e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_electron_profile688)_ 1.24103122401361130e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_electron_profile689)_ 1.24029688601123627e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_electron_profile690)_ 1.23956341653399734e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_electron_profile691)_ 1.23883081404195602e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_electron_profile692)_ 1.23809907699881226e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_electron_profile693)_ 1.23736820387189468e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_electron_profile694)_ 1.23663819313214691e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_electron_profile695)_ 1.23590904325412125e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_electron_profile696)_ 1.23518075271596298e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_electron_profile697)_ 1.23445331999940460e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_electron_profile698)_ 1.23372674358975235e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_electron_profile699)_ 1.23300102197587601e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_electron_profile700)_ 1.23227615365019943e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_electron_profile701)_ 1.23155213710868927e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_electron_profile702)_ 1.23082897085084518e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_electron_profile703)_ 1.23010665337968872e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_electron_profile704)_ 1.22938518320175339e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_electron_profile705)_ 1.22866455882707458e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_electron_profile706)_ 1.22794477876917938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_electron_profile707)_ 1.22722584154507584e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_electron_profile708)_ 1.22650774567524261e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_electron_profile709)_ 1.22579048968361938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_electron_profile710)_ 1.22507407209759766e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_electron_profile711)_ 1.22435849144800797e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_electron_profile712)_ 1.22364374626911255e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_electron_profile713)_ 1.22292983509859329e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_electron_profile714)_ 1.22221675647754486e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_electron_profile715)_ 1.22150450895045975e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_electron_profile716)_ 1.22079309106522385e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_electron_profile717)_ 1.22008250137310196e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_electron_profile718)_ 1.21937273842873123e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_electron_profile719)_ 1.21866380079011002e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_electron_profile720)_ 1.21795568701858749e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_electron_profile721)_ 1.21724839567885544e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_electron_profile722)_ 1.21654192533893738e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_electron_profile723)_ 1.21583627457017944e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_electron_profile724)_ 1.21513144194724014e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_electron_profile725)_ 1.21442742604808212e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_electron_profile726)_ 1.21372422545396027e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_electron_profile727)_ 1.21302183874941528e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_electron_profile728)_ 1.21232026452226120e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_electron_profile729)_ 1.21161950136357773e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_electron_profile730)_ 1.21091954786770065e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_electron_profile731)_ 1.21022040263221115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_electron_profile732)_ 1.20952206425792816e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_electron_profile733)_ 1.20882453134889832e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_electron_profile734)_ 1.20812780251238571e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_electron_profile735)_ 1.20743187635886490e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_electron_profile736)_ 1.20673675150200867e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_electron_profile737)_ 1.20604242655868225e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_electron_profile738)_ 1.20534890014893005e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_electron_profile739)_ 1.20465617089597092e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_electron_profile740)_ 1.20396423742618576e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_electron_profile741)_ 1.20327309836910995e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_electron_profile742)_ 1.20258275235742355e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_electron_profile743)_ 1.20189319802694366e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_electron_profile744)_ 1.20120443401661285e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_electron_profile745)_ 1.20051645896849335e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_electron_profile746)_ 1.19982927152775574e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_electron_profile747)_ 1.19914287034267151e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_electron_profile748)_ 1.19845725406460236e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_electron_profile749)_ 1.19777242134799393e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_electron_profile750)_ 1.19708837085036514e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_electron_profile751)_ 1.19640510123230011e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_electron_profile752)_ 1.19572261115743835e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_electron_profile753)_ 1.19504089929246826e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_electron_profile754)_ 1.19435996430711655e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_electron_profile755)_ 1.19367980487413956e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_electron_profile756)_ 1.19300041966931671e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_electron_profile757)_ 1.19232180737143875e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_electron_profile758)_ 1.19164396666230225e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_electron_profile759)_ 1.19096689622669846e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_electron_profile760)_ 1.19029059475240753e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_electron_profile761)_ 1.18961506093018677e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_electron_profile762)_ 1.18894029345376602e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_electron_profile763)_ 1.18826629101983521e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_electron_profile764)_ 1.18759305232803940e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_electron_profile765)_ 1.18692057608096786e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_electron_profile766)_ 1.18624886098414780e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_electron_profile767)_ 1.18557790574603485e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_electron_profile768)_ 1.18490770907800430e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_electron_profile769)_ 1.18423826969434433e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_electron_profile770)_ 1.18356958631224701e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_electron_profile771)_ 1.18290165765179993e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_electron_profile772)_ 1.18223448243597839e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_electron_profile773)_ 1.18156805939063690e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_electron_profile774)_ 1.18090238724450089e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_electron_profile775)_ 1.18023746472916077e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_electron_profile776)_ 1.17957329057905975e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_electron_profile777)_ 1.17890986353149002e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_electron_profile778)_ 1.17824718232658173e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_electron_profile779)_ 1.17758524570729752e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_electron_profile780)_ 1.17692405241942108e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_electron_profile781)_ 1.17626360121155426e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_electron_profile782)_ 1.17560389083510345e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_electron_profile783)_ 1.17494492004427658e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_electron_profile784)_ 1.17428668759607239e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_electron_profile785)_ 1.17362919225027390e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_electron_profile786)_ 1.17297243276944000e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_electron_profile787)_ 1.17231640791889786e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_electron_profile788)_ 1.17166111646673523e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_electron_profile789)_ 1.17100655718379303e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_electron_profile790)_ 1.17035272884365692e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_electron_profile791)_ 1.16969963022265030e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_electron_profile792)_ 1.16904726009982666e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_electron_profile793)_ 1.16839561725696182e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_electron_profile794)_ 1.16774470047854568e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_electron_profile795)_ 1.16709450855177567e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_electron_profile796)_ 1.16644504026654968e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_electron_profile797)_ 1.16579629441545563e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_electron_profile798)_ 1.16514826979376862e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_electron_profile799)_ 1.16450096519943832e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_electron_profile800)_ 1.16385437943308685e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_electron_profile801)_ 1.16320851129799622e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_electron_profile802)_ 1.16256335960010544e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_electron_profile803)_ 1.16191892314799850e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_electron_profile804)_ 1.16127520075290283e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_electron_profile805)_ 1.16063219122867630e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_electron_profile806)_ 1.15998989339180389e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_electron_profile807)_ 1.15934830606138779e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_electron_profile808)_ 1.15870742805914276e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_electron_profile809)_ 1.15806725820938644e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_electron_profile810)_ 1.15742779533903351e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_electron_profile811)_ 1.15678903827758804e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_electron_profile812)_ 1.15615098585713715e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_electron_profile813)_ 1.15551363691234268e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_electron_profile814)_ 1.15487699028043503e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_electron_profile815)_ 1.15424104480120575e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_electron_profile816)_ 1.15360579931700027e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_electron_profile817)_ 1.15297125267271164e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_electron_profile818)_ 1.15233740371577179e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_electron_profile819)_ 1.15170425129614807e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_electron_profile820)_ 1.15107179426633118e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_electron_profile821)_ 1.15044003148133347e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_electron_profile822)_ 1.14980896179867767e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_electron_profile823)_ 1.14917858407839355e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_electron_profile824)_ 1.14854889718300781e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_electron_profile825)_ 1.14791989997754105e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_electron_profile826)_ 1.14729159132949615e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_electron_profile827)_ 1.14666397010885635e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_electron_profile828)_ 1.14603703518807510e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_electron_profile829)_ 1.14541078544207077e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_electron_profile830)_ 1.14478521974821930e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_electron_profile831)_ 1.14416033698634781e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_electron_profile832)_ 1.14353613603872864e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_electron_profile833)_ 1.14291261579007065e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_electron_profile834)_ 1.14228977512751465e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_electron_profile835)_ 1.14166761294062607e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_electron_profile836)_ 1.14104612812138794e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_electron_profile837)_ 1.14042531956419449e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_electron_profile838)_ 1.13980518616584534e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_electron_profile839)_ 1.13918572682553757e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_electron_profile840)_ 1.13856694044486130e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_electron_profile841)_ 1.13794882592779007e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_electron_profile842)_ 1.13733138218067795e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_electron_profile843)_ 1.13671460811225006e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_electron_profile844)_ 1.13609850263359863e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_electron_profile845)_ 1.13548306465817413e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_electron_profile846)_ 1.13486829310178101e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_electron_profile847)_ 1.13425418688256989e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_electron_profile848)_ 1.13364074492103287e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_electron_profile849)_ 1.13302796613999420e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_electron_profile850)_ 1.13241584946460800e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_electron_profile851)_ 1.13180439382234848e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_electron_profile852)_ 1.13119359814300568e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_electron_profile853)_ 1.13058346135867813e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_electron_profile854)_ 1.12997398240376785e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_electron_profile855)_ 1.12936516021497269e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_electron_profile856)_ 1.12875699373128143e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_electron_profile857)_ 1.12814948189396652e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_electron_profile858)_ 1.12754262364657867e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_electron_profile859)_ 1.12693641793494064e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_electron_profile860)_ 1.12633086370714081e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_electron_profile861)_ 1.12572595991352829e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_electron_profile862)_ 1.12512170550670380e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_electron_profile863)_ 1.12451809944151810e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_electron_profile864)_ 1.12391514067506134e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_electron_profile865)_ 1.12331282816666122e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_electron_profile866)_ 1.12271116087787323e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_electron_profile867)_ 1.12211013777247833e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_electron_profile868)_ 1.12150975781647369e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_electron_profile869)_ 1.12091001997806946e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_electron_profile870)_ 1.12031092322768005e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_electron_profile871)_ 1.11971246653792175e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_electron_profile872)_ 1.11911464888360352e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_electron_profile873)_ 1.11851746924172333e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_electron_profile874)_ 1.11792092659146103e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_electron_profile875)_ 1.11732501991417343e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_electron_profile876)_ 1.11672974819338806e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_electron_profile877)_ 1.11613511041479736e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_electron_profile878)_ 1.11554110556625305e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_electron_profile879)_ 1.11494773263776031e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_electron_profile880)_ 1.11435499062147232e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_electron_profile881)_ 1.11376287851168381e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_electron_profile882)_ 1.11317139530482727e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_electron_profile883)_ 1.11258053999946335e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_electron_profile884)_ 1.11199031159628098e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_electron_profile885)_ 1.11140070909808548e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_electron_profile886)_ 1.11081173150979843e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_electron_profile887)_ 1.11022337783844788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_electron_profile888)_ 1.10963564709316544e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_electron_profile889)_ 1.10904853828517944e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_electron_profile890)_ 1.10846205042781052e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_electron_profile891)_ 1.10787618253646378e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_electron_profile892)_ 1.10729093362862625e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_electron_profile893)_ 1.10670630272385925e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_electron_profile894)_ 1.10612228884379395e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_electron_profile895)_ 1.10553889101212524e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_electron_profile896)_ 1.10495610825460709e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_electron_profile897)_ 1.10437393959904602e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_electron_profile898)_ 1.10379238407529724e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_electron_profile899)_ 1.10321144071525772e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_electron_profile900)_ 1.10263110855286133e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_electron_profile901)_ 1.10205138662407455e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_electron_profile902)_ 1.10147227396688873e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_electron_profile903)_ 1.10089376962131805e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_electron_profile904)_ 1.10031587262939072e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_electron_profile905)_ 1.09973858203514664e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_electron_profile906)_ 1.09916189688462997e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_electron_profile907)_ 1.09858581622588547e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_electron_profile908)_ 1.09801033910895203e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_electron_profile909)_ 1.09743546458585846e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_electron_profile910)_ 1.09686119171061722e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_electron_profile911)_ 1.09628751953922058e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_electron_profile912)_ 1.09571444712963379e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_electron_profile913)_ 1.09514197354179184e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_electron_profile914)_ 1.09457009783759232e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_electron_profile915)_ 1.09399881908089218e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_electron_profile916)_ 1.09342813633750092e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_electron_profile917)_ 1.09285804867517700e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_electron_profile918)_ 1.09228855516362152e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_electron_profile919)_ 1.09171965487447372e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_electron_profile920)_ 1.09115134688130646e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_electron_profile921)_ 1.09058363025961990e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_electron_profile922)_ 1.09001650408683807e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_electron_profile923)_ 1.08944996744230194e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_electron_profile924)_ 1.08888401940726746e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_electron_profile925)_ 1.08831865906489578e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_electron_profile926)_ 1.08775388550025406e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_electron_profile927)_ 1.08718969780030563e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_electron_profile928)_ 1.08662609505390854e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_electron_profile929)_ 1.08606307635180801e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_electron_profile930)_ 1.08550064078663361e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_electron_profile931)_ 1.08493878745289307e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_electron_profile932)_ 1.08437751544696838e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_electron_profile933)_ 1.08381682386710922e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_electron_profile934)_ 1.08325671181343124e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_electron_profile935)_ 1.08269717838790771e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_electron_profile936)_ 1.08213822269436737e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_electron_profile937)_ 1.08157984383848770e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_electron_profile938)_ 1.08102204092779221e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_electron_profile939)_ 1.08046481307164398e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_electron_profile940)_ 1.07990815938124130e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_electron_profile941)_ 1.07935207896961365e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_electron_profile942)_ 1.07879657095161575e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_electron_profile943)_ 1.07824163444392471e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_electron_profile944)_ 1.07768726856503311e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_electron_profile945)_ 1.07713347243524643e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_electron_profile946)_ 1.07658024517667664e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_electron_profile947)_ 1.07602758591323914e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_electron_profile948)_ 1.07547549377064606e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_electron_profile949)_ 1.07492396787640488e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_electron_profile950)_ 1.07437300735981003e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_electron_profile951)_ 1.07382261135194138e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_electron_profile952)_ 1.07327277898565765e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_electron_profile953)_ 1.07272350939559357e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_electron_profile954)_ 1.07217480171815308e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_electron_profile955)_ 1.07162665509150787e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_electron_profile956)_ 1.07107906865558975e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_electron_profile957)_ 1.07053204155208862e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_electron_profile958)_ 1.06998557292444595e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_electron_profile959)_ 1.06943966191785172e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_electron_profile960)_ 1.06889430767923981e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_electron_profile961)_ 1.06834950935728317e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_electron_profile962)_ 1.06780526610238907e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_electron_profile963)_ 1.06726157706669540e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_electron_profile964)_ 1.06671844140406601e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_electron_profile965)_ 1.06617585827008621e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_electron_profile966)_ 1.06563382682205887e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_electron_profile967)_ 1.06509234621899857e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_electron_profile968)_ 1.06455141562162994e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_electron_profile969)_ 1.06401103419238022e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_electron_profile970)_ 1.06347120109537781e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_electron_profile971)_ 1.06293191549644470e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_electron_profile972)_ 1.06239317656309662e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_electron_profile973)_ 1.06185498346453369e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_electron_profile974)_ 1.06131733537164032e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_electron_profile975)_ 1.06078023145697845e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_electron_profile976)_ 1.06024367089478485e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_electron_profile977)_ 1.05970765286096527e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_electron_profile978)_ 1.05917217653309219e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_electron_profile979)_ 1.05863724109039856e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_electron_profile980)_ 1.05810284571377563e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_electron_profile981)_ 1.05756898958576660e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_electron_profile982)_ 1.05703567189056458e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_electron_profile983)_ 1.05650289181400681e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_electron_profile984)_ 1.05597064854357162e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_electron_profile985)_ 1.05543894126837341e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_electron_profile986)_ 1.05490776917915924e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_electron_profile987)_ 1.05437713146830460e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_electron_profile988)_ 1.05384702732980865e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_electron_profile989)_ 1.05331745595929123e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_electron_profile990)_ 1.05278841655398758e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_electron_profile991)_ 1.05225990831274582e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_electron_profile992)_ 1.05173193043602066e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_electron_profile993)_ 1.05120448212587250e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_electron_profile994)_ 1.05067756258595947e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_electron_profile995)_ 1.05015117102153793e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_electron_profile996)_ 1.04962530663945389e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_electron_profile997)_ 1.04909996864814301e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_electron_profile998)_ 1.04857515625762344e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_electron_profile999)_ 1.04805086867949478e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_electron_profile1000)_ 1.04752710512693115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_electron_profile1001)_ 1.04700386481468002e+11 +Volume_averaged_deuteron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_deuteron_vol_avg)_ 3.80332824147595316e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_deuteron_profile0)_ 5.70499236221392900e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_deuteron_profile1)_ 5.69929875706201941e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_deuteron_profile2)_ 5.69361650506096035e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_deuteron_profile3)_ 5.68794557228699550e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_deuteron_profile4)_ 5.68228592495138720e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_deuteron_profile5)_ 5.67663752939974517e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_deuteron_profile6)_ 5.67100035211136341e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_deuteron_profile7)_ 5.66537435969855413e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_deuteron_profile8)_ 5.65975951890598908e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_deuteron_profile9)_ 5.65415579661004245e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_deuteron_profile10)_ 5.64856315981814340e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_deuteron_profile11)_ 5.64298157566812634e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_deuteron_profile12)_ 5.63741101142758504e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_deuteron_profile13)_ 5.63185143449323848e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_deuteron_profile14)_ 5.62630281239028871e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_deuteron_profile15)_ 5.62076511277179495e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_deuteron_profile16)_ 5.61523830341803581e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_deuteron_profile17)_ 5.60972235223589689e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_deuteron_profile18)_ 5.60421722725823671e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_deuteron_profile19)_ 5.59872289664327800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_deuteron_profile20)_ 5.59323932867398933e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_deuteron_profile21)_ 5.58776649175747931e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_deuteron_profile22)_ 5.58230435442438275e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_deuteron_profile23)_ 5.57685288532826528e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_deuteron_profile24)_ 5.57141205324501768e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_deuteron_profile25)_ 5.56598182707226425e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_deuteron_profile26)_ 5.56056217582876682e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_deuteron_profile27)_ 5.55515306865383536e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_deuteron_profile28)_ 5.54975447480674759e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_deuteron_profile29)_ 5.54436636366615891e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_deuteron_profile30)_ 5.53898870472952724e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_deuteron_profile31)_ 5.53362146761254221e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_deuteron_profile32)_ 5.52826462204854116e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_deuteron_profile33)_ 5.52291813788795322e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_deuteron_profile34)_ 5.51758198509772345e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_deuteron_profile35)_ 5.51225613376075625e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_deuteron_profile36)_ 5.50694055407535583e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_deuteron_profile37)_ 5.50163521635466665e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_deuteron_profile38)_ 5.49634009102612361e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_deuteron_profile39)_ 5.49105514863090739e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_deuteron_profile40)_ 5.48578035982338339e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_deuteron_profile41)_ 5.48051569537057951e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_deuteron_profile42)_ 5.47526112615162358e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_deuteron_profile43)_ 5.47001662315722555e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_deuteron_profile44)_ 5.46478215748913214e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_deuteron_profile45)_ 5.45955770035960153e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_deuteron_profile46)_ 5.45434322309087217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_deuteron_profile47)_ 5.44913869711464122e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_deuteron_profile48)_ 5.44394409397153854e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_deuteron_profile49)_ 5.43875938531061187e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_deuteron_profile50)_ 5.43358454288881347e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_deuteron_profile51)_ 5.42841953857047856e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_deuteron_profile52)_ 5.42326434432682171e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_deuteron_profile53)_ 5.41811893223543018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_deuteron_profile54)_ 5.41298327447975725e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_deuteron_profile55)_ 5.40785734334862009e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_deuteron_profile56)_ 5.40274111123570800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_deuteron_profile57)_ 5.39763455063907728e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_deuteron_profile58)_ 5.39253763416066468e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_deuteron_profile59)_ 5.38745033450579494e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_deuteron_profile60)_ 5.38237262448269799e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_deuteron_profile61)_ 5.37730447700201720e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_deuteron_profile62)_ 5.37224586507633328e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_deuteron_profile63)_ 5.36719676181968302e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_deuteron_profile64)_ 5.36215714044708312e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_deuteron_profile65)_ 5.35712697427405566e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_deuteron_profile66)_ 5.35210623671616018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_deuteron_profile67)_ 5.34709490128852352e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_deuteron_profile68)_ 5.34209294160537273e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_deuteron_profile69)_ 5.33710033137957379e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_deuteron_profile70)_ 5.33211704442216903e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_deuteron_profile71)_ 5.32714305464192405e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_deuteron_profile72)_ 5.32217833604486808e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_deuteron_profile73)_ 5.31722286273383871e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_deuteron_profile74)_ 5.31227660890804008e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_deuteron_profile75)_ 5.30733954886258692e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_deuteron_profile76)_ 5.30241165698806271e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_deuteron_profile77)_ 5.29749290777007714e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_deuteron_profile78)_ 5.29258327578882650e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_deuteron_profile79)_ 5.28768273571865186e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_deuteron_profile80)_ 5.28279126232760623e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_deuteron_profile81)_ 5.27790883047702610e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_deuteron_profile82)_ 5.27303541512109265e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_deuteron_profile83)_ 5.26817099130640551e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_deuteron_profile84)_ 5.26331553417156041e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_deuteron_profile85)_ 5.25846901894672439e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_deuteron_profile86)_ 5.25363142095321417e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_deuteron_profile87)_ 5.24880271560307369e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_deuteron_profile88)_ 5.24398287839866206e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_deuteron_profile89)_ 5.23917188493224159e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_deuteron_profile90)_ 5.23436971088555828e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_deuteron_profile91)_ 5.22957633202943653e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_deuteron_profile92)_ 5.22479172422336936e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_deuteron_profile93)_ 5.22001586341512129e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_deuteron_profile94)_ 5.21524872564031333e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_deuteron_profile95)_ 5.21049028702202812e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_deuteron_profile96)_ 5.20574052377041355e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_deuteron_profile97)_ 5.20099941218227968e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_deuteron_profile98)_ 5.19626692864071280e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_deuteron_profile99)_ 5.19154304961467609e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_deuteron_profile100)_ 5.18682775165862218e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_deuteron_profile101)_ 5.18212101141210794e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_deuteron_profile102)_ 5.17742280559940413e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_deuteron_profile103)_ 5.17273311102911532e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_deuteron_profile104)_ 5.16805190459379479e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_deuteron_profile105)_ 5.16337916326956898e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_deuteron_profile106)_ 5.15871486411575675e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_deuteron_profile107)_ 5.15405898427449763e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_deuteron_profile108)_ 5.14941150097037256e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_deuteron_profile109)_ 5.14477239151003957e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_deuteron_profile110)_ 5.14014163328185752e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_deuteron_profile111)_ 5.13551920375552475e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_deuteron_profile112)_ 5.13090508048170954e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_deuteron_profile113)_ 5.12629924109169021e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_deuteron_profile114)_ 5.12170166329699010e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_deuteron_profile115)_ 5.11711232488901764e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_deuteron_profile116)_ 5.11253120373871401e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_deuteron_profile117)_ 5.10795827779619172e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_deuteron_profile118)_ 5.10339352509038746e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_deuteron_profile119)_ 5.09883692372869998e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_deuteron_profile120)_ 5.09428845189664885e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_deuteron_profile121)_ 5.08974808785752505e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_deuteron_profile122)_ 5.08521580995204225e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_deuteron_profile123)_ 5.08069159659799188e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_deuteron_profile124)_ 5.07617542628990412e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_deuteron_profile125)_ 5.07166727759870663e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_deuteron_profile126)_ 5.06716712917137817e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_deuteron_profile127)_ 5.06267495973062366e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_deuteron_profile128)_ 5.05819074807452932e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_deuteron_profile129)_ 5.05371447307623327e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_deuteron_profile130)_ 5.04924611368359327e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_deuteron_profile131)_ 5.04478564891885519e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_deuteron_profile132)_ 5.04033305787832662e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_deuteron_profile133)_ 5.03588831973204911e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_deuteron_profile134)_ 5.03145141372347474e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_deuteron_profile135)_ 5.02702231916914061e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_deuteron_profile136)_ 5.02260101545834839e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_deuteron_profile137)_ 5.01818748205284998e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_deuteron_profile138)_ 5.01378169848651737e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_deuteron_profile139)_ 5.00938364436503872e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_deuteron_profile140)_ 5.00499329936559424e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_deuteron_profile141)_ 5.00061064323655292e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_deuteron_profile142)_ 4.99623565579715073e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_deuteron_profile143)_ 4.99186831693718880e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_deuteron_profile144)_ 4.98750860661671832e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_deuteron_profile145)_ 4.98315650486574396e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_deuteron_profile146)_ 4.97881199178390875e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_deuteron_profile147)_ 4.97447504754019454e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_deuteron_profile148)_ 4.97014565237262249e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_deuteron_profile149)_ 4.96582378658795059e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_deuteron_profile150)_ 4.96150943056137636e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_deuteron_profile151)_ 4.95720256473623589e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_deuteron_profile152)_ 4.95290316962371469e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_deuteron_profile153)_ 4.94861122580255121e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_deuteron_profile154)_ 4.94432671391873881e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_deuteron_profile155)_ 4.94004961468524635e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_deuteron_profile156)_ 4.93577990888171420e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_deuteron_profile157)_ 4.93151757735418230e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_deuteron_profile158)_ 4.92726260101479217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_deuteron_profile159)_ 4.92301496084150299e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_deuteron_profile160)_ 4.91877463787781522e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_deuteron_profile161)_ 4.91454161323248148e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_deuteron_profile162)_ 4.91031586807922870e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_deuteron_profile163)_ 4.90609738365648091e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_deuteron_profile164)_ 4.90188614126707688e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_deuteron_profile165)_ 4.89768212227799594e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_deuteron_profile166)_ 4.89348530812008828e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_deuteron_profile167)_ 4.88929568028779402e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_deuteron_profile168)_ 4.88511322033887431e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_deuteron_profile169)_ 4.88093790989413932e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_deuteron_profile170)_ 4.87676973063718453e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_deuteron_profile171)_ 4.87260866431411579e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_deuteron_profile172)_ 4.86845469273328483e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_deuteron_profile173)_ 4.86430779776502922e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_deuteron_profile174)_ 4.86016796134139895e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_deuteron_profile175)_ 4.85603516545590460e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_deuteron_profile176)_ 4.85190939216324836e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_deuteron_profile177)_ 4.84779062357906923e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_deuteron_profile178)_ 4.84367884187968075e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_deuteron_profile179)_ 4.83957402930181623e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_deuteron_profile180)_ 4.83547616814237311e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_deuteron_profile181)_ 4.83138524075815827e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_deuteron_profile182)_ 4.82730122956563309e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_deuteron_profile183)_ 4.82322411704066172e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_deuteron_profile184)_ 4.81915388571826443e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_deuteron_profile185)_ 4.81509051819236353e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_deuteron_profile186)_ 4.81103399711553752e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_deuteron_profile187)_ 4.80698430519877374e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_deuteron_profile188)_ 4.80294142521122247e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_deuteron_profile189)_ 4.79890533997995183e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_deuteron_profile190)_ 4.79487603238970935e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_deuteron_profile191)_ 4.79085348538267016e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_deuteron_profile192)_ 4.78683768195820972e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_deuteron_profile193)_ 4.78282860517264903e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_deuteron_profile194)_ 4.77882623813903257e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_deuteron_profile195)_ 4.77483056402687654e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_deuteron_profile196)_ 4.77084156606194153e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_deuteron_profile197)_ 4.76685922752599642e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_deuteron_profile198)_ 4.76288353175658360e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_deuteron_profile199)_ 4.75891446214678586e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_deuteron_profile200)_ 4.75495200214499831e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_deuteron_profile201)_ 4.75099613525469527e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_deuteron_profile202)_ 4.74704684503420144e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_deuteron_profile203)_ 4.74310411509646475e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_deuteron_profile204)_ 4.73916792910883278e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_deuteron_profile205)_ 4.73523827079282254e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_deuteron_profile206)_ 4.73131512392389700e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_deuteron_profile207)_ 4.72739847233124450e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_deuteron_profile208)_ 4.72348829989755452e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_deuteron_profile209)_ 4.71958459055879563e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_deuteron_profile210)_ 4.71568732830400020e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_deuteron_profile211)_ 4.71179649717503563e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_deuteron_profile212)_ 4.70791208126639947e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_deuteron_profile213)_ 4.70403406472499445e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_deuteron_profile214)_ 4.70016243174991161e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_deuteron_profile215)_ 4.69629716659222320e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_deuteron_profile216)_ 4.69243825355476066e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_deuteron_profile217)_ 4.68858567699190751e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_deuteron_profile218)_ 4.68473942130938768e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_deuteron_profile219)_ 4.68089947096405253e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_deuteron_profile220)_ 4.67706581046367213e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_deuteron_profile221)_ 4.67323842436672971e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_deuteron_profile222)_ 4.66941729728220999e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_deuteron_profile223)_ 4.66560241386939809e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_deuteron_profile224)_ 4.66179375883766785e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_deuteron_profile225)_ 4.65799131694628373e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_deuteron_profile226)_ 4.65419507300419211e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_deuteron_profile227)_ 4.65040501186982393e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_deuteron_profile228)_ 4.64662111845088899e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_deuteron_profile229)_ 4.64284337770418152e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_deuteron_profile230)_ 4.63907177463537231e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_deuteron_profile231)_ 4.63530629429881796e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_deuteron_profile232)_ 4.63154692179735824e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_deuteron_profile233)_ 4.62779364228212684e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_deuteron_profile234)_ 4.62404644095234275e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_deuteron_profile235)_ 4.62030530305513293e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_deuteron_profile236)_ 4.61657021388532147e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_deuteron_profile237)_ 4.61284115878525302e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_deuteron_profile238)_ 4.60911812314458713e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_deuteron_profile239)_ 4.60540109240011647e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_deuteron_profile240)_ 4.60169005203557089e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_deuteron_profile241)_ 4.59798498758143634e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_deuteron_profile242)_ 4.59428588461475745e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_deuteron_profile243)_ 4.59059272875895798e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_deuteron_profile244)_ 4.58690550568364933e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_deuteron_profile245)_ 4.58322420110444948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_deuteron_profile246)_ 4.57954880078279376e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_deuteron_profile247)_ 4.57587929052575678e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_deuteron_profile248)_ 4.57221565618586391e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_deuteron_profile249)_ 4.56855788366091475e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_deuteron_profile250)_ 4.56490595889379904e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_deuteron_profile251)_ 4.56125986787231863e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_deuteron_profile252)_ 4.55761959662900493e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_deuteron_profile253)_ 4.55398513124094382e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_deuteron_profile254)_ 4.55035645782959610e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_deuteron_profile255)_ 4.54673356256062388e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_deuteron_profile256)_ 4.54311643164371029e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_deuteron_profile257)_ 4.53950505133238733e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_deuteron_profile258)_ 4.53589940792386308e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_deuteron_profile259)_ 4.53229948775884360e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_deuteron_profile260)_ 4.52870527722136676e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_deuteron_profile261)_ 4.52511676273862422e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_deuteron_profile262)_ 4.52153393078079522e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_deuteron_profile263)_ 4.51795676786087230e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_deuteron_profile264)_ 4.51438526053450108e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_deuteron_profile265)_ 4.51081939539979771e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_deuteron_profile266)_ 4.50725915909719244e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_deuteron_profile267)_ 4.50370453830926195e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_deuteron_profile268)_ 4.50015551976055503e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_deuteron_profile269)_ 4.49661209021743611e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_deuteron_profile270)_ 4.49307423648791835e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_deuteron_profile271)_ 4.48954194542149603e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_deuteron_profile272)_ 4.48601520390898958e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_deuteron_profile273)_ 4.48249399888237268e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_deuteron_profile274)_ 4.47897831731462181e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_deuteron_profile275)_ 4.47546814621954784e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_deuteron_profile276)_ 4.47196347265163884e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_deuteron_profile277)_ 4.46846428370590284e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_deuteron_profile278)_ 4.46497056651770398e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_deuteron_profile279)_ 4.46148230826261193e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_deuteron_profile280)_ 4.45799949615624025e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_deuteron_profile281)_ 4.45452211745408997e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_deuteron_profile282)_ 4.45105015945139825e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_deuteron_profile283)_ 4.44758360948297828e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_deuteron_profile284)_ 4.44412245492306948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_deuteron_profile285)_ 4.44066668318518102e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_deuteron_profile286)_ 4.43721628172194511e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_deuteron_profile287)_ 4.43377123802495673e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_deuteron_profile288)_ 4.43033153962462693e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_deuteron_profile289)_ 4.42689717409003377e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_deuteron_profile290)_ 4.42346812902877182e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_deuteron_profile291)_ 4.42004439208679795e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_deuteron_profile292)_ 4.41662595094829351e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_deuteron_profile293)_ 4.41321279333550483e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_deuteron_profile294)_ 4.40980490700860545e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_deuteron_profile295)_ 4.40640227976554260e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_deuteron_profile296)_ 4.40300489944189936e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_deuteron_profile297)_ 4.39961275391074270e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_deuteron_profile298)_ 4.39622583108248115e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_deuteron_profile299)_ 4.39284411890472621e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_deuteron_profile300)_ 4.38946760536213964e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_deuteron_profile301)_ 4.38609627847630084e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_deuteron_profile302)_ 4.38273012630555928e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_deuteron_profile303)_ 4.37936913694489598e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_deuteron_profile304)_ 4.37601329852578118e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_deuteron_profile305)_ 4.37266259921603650e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_deuteron_profile306)_ 4.36931702721969709e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_deuteron_profile307)_ 4.36597657077686787e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_deuteron_profile308)_ 4.36264121816359311e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_deuteron_profile309)_ 4.35931095769171342e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_deuteron_profile310)_ 4.35598577770872861e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_deuteron_profile311)_ 4.35266566659767032e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_deuteron_profile312)_ 4.34935061277695671e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_deuteron_profile313)_ 4.34604060470026135e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_deuteron_profile314)_ 4.34273563085638210e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_deuteron_profile315)_ 4.33943567976910621e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_deuteron_profile316)_ 4.33614073999707103e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_deuteron_profile317)_ 4.33285080013364404e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_deuteron_profile318)_ 4.32956584880678058e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_deuteron_profile319)_ 4.32628587467889711e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_deuteron_profile320)_ 4.32301086644674018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_deuteron_profile321)_ 4.31974081284125820e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_deuteron_profile322)_ 4.31647570262747109e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_deuteron_profile323)_ 4.31321552460433841e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_deuteron_profile324)_ 4.30996026760463640e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_deuteron_profile325)_ 4.30670992049482912e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_deuteron_profile326)_ 4.30346447217493951e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_deuteron_profile327)_ 4.30022391157842204e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_deuteron_profile328)_ 4.29698822767204195e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_deuteron_profile329)_ 4.29375740945574641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_deuteron_profile330)_ 4.29053144596254304e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_deuteron_profile331)_ 4.28731032625836655e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_deuteron_profile332)_ 4.28409403944196776e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_deuteron_profile333)_ 4.28088257464478612e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_deuteron_profile334)_ 4.27767592103081942e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_deuteron_profile335)_ 4.27447406779651344e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_deuteron_profile336)_ 4.27127700417063832e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_deuteron_profile337)_ 4.26808471941415742e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_deuteron_profile338)_ 4.26489720282012224e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_deuteron_profile339)_ 4.26171444371354058e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_deuteron_profile340)_ 4.25853643145126253e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_deuteron_profile341)_ 4.25536315542186573e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_deuteron_profile342)_ 4.25219460504552796e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_deuteron_profile343)_ 4.24903076977391616e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_deuteron_profile344)_ 4.24587163909007013e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_deuteron_profile345)_ 4.24271720250827968e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_deuteron_profile346)_ 4.23956744957397506e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_deuteron_profile347)_ 4.23642236986360848e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_deuteron_profile348)_ 4.23328195298453942e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_deuteron_profile349)_ 4.23014618857492059e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_deuteron_profile350)_ 4.22701506630358472e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_deuteron_profile351)_ 4.22388857586992905e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_deuteron_profile352)_ 4.22076670700380132e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_deuteron_profile353)_ 4.21764944946539402e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_deuteron_profile354)_ 4.21453679304512441e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_deuteron_profile355)_ 4.21142872756352797e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_deuteron_profile356)_ 4.20832524287114441e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_deuteron_profile357)_ 4.20522632884841189e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_deuteron_profile358)_ 4.20213197540555075e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_deuteron_profile359)_ 4.19904217248245925e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_deuteron_profile360)_ 4.19595691004859954e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_deuteron_profile361)_ 4.19287617810289487e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_deuteron_profile362)_ 4.18979996667362005e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_deuteron_profile363)_ 4.18672826581828743e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_deuteron_profile364)_ 4.18366106562354788e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_deuteron_profile365)_ 4.18059835620508343e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_deuteron_profile366)_ 4.17754012770749331e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_deuteron_profile367)_ 4.17448637030419856e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_deuteron_profile368)_ 4.17143707419732884e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_deuteron_profile369)_ 4.16839222961762398e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_deuteron_profile370)_ 4.16535182682432011e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_deuteron_profile371)_ 4.16231585610506088e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_deuteron_profile372)_ 4.15928430777577832e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_deuteron_profile373)_ 4.15625717218059897e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_deuteron_profile374)_ 4.15323443969174102e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_deuteron_profile375)_ 4.15021610070940703e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_deuteron_profile376)_ 4.14720214566168860e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_deuteron_profile377)_ 4.14419256500445828e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_deuteron_profile378)_ 4.14118734922127873e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_deuteron_profile379)_ 4.13818648882329240e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_deuteron_profile380)_ 4.13518997434912696e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_deuteron_profile381)_ 4.13219779636479244e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_deuteron_profile382)_ 4.12920994546358883e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_deuteron_profile383)_ 4.12622641226599962e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_deuteron_profile384)_ 4.12324718741959855e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_deuteron_profile385)_ 4.12027226159894913e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_deuteron_profile386)_ 4.11730162550551146e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_deuteron_profile387)_ 4.11433526986753866e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_deuteron_profile388)_ 4.11137318543998823e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_deuteron_profile389)_ 4.10841536300441995e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_deuteron_profile390)_ 4.10546179336890355e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_deuteron_profile391)_ 4.10251246736791953e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_deuteron_profile392)_ 4.09956737586227134e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_deuteron_profile393)_ 4.09662650973898396e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_deuteron_profile394)_ 4.09368985991121382e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_deuteron_profile395)_ 4.09075741731815487e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_deuteron_profile396)_ 4.08782917292494178e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_deuteron_profile397)_ 4.08490511772256345e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_deuteron_profile398)_ 4.08198524272776470e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_deuteron_profile399)_ 4.07906953898295909e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_deuteron_profile400)_ 4.07615799755613357e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_deuteron_profile401)_ 4.07325060954075903e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_deuteron_profile402)_ 4.07034736605569720e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_deuteron_profile403)_ 4.06744825824511647e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_deuteron_profile404)_ 4.06455327727839425e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_deuteron_profile405)_ 4.06166241435003132e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_deuteron_profile406)_ 4.05877566067956239e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_deuteron_profile407)_ 4.05589300751146600e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_deuteron_profile408)_ 4.05301444611507729e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_deuteron_profile409)_ 4.05013996778449863e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_deuteron_profile410)_ 4.04726956383851469e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_deuteron_profile411)_ 4.04440322562049851e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_deuteron_profile412)_ 4.04154094449833259e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_deuteron_profile413)_ 4.03868271186431646e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_deuteron_profile414)_ 4.03582851913508400e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_deuteron_profile415)_ 4.03297835775151402e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_deuteron_profile416)_ 4.03013221917864829e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_deuteron_profile417)_ 4.02729009490560219e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_deuteron_profile418)_ 4.02445197644548565e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_deuteron_profile419)_ 4.02161785533531234e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_deuteron_profile420)_ 4.01878772313592061e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_deuteron_profile421)_ 4.01596157143188715e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_deuteron_profile422)_ 4.01313939183144346e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_deuteron_profile423)_ 4.01032117596639320e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_deuteron_profile424)_ 4.00750691549203098e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_deuteron_profile425)_ 4.00469660208705738e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_deuteron_profile426)_ 4.00189022745349929e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_deuteron_profile427)_ 3.99908778331662789e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_deuteron_profile428)_ 3.99628926142487377e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_deuteron_profile429)_ 3.99349465354975089e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_deuteron_profile430)_ 3.99070395148577541e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_deuteron_profile431)_ 3.98791714705037996e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_deuteron_profile432)_ 3.98513423208384067e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_deuteron_profile433)_ 3.98235519844919443e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_deuteron_profile434)_ 3.97958003803215623e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_deuteron_profile435)_ 3.97680874274104685e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_deuteron_profile436)_ 3.97404130450671092e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_deuteron_profile437)_ 3.97127771528243646e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_deuteron_profile438)_ 3.96851796704388037e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_deuteron_profile439)_ 3.96576205178898871e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_deuteron_profile440)_ 3.96300996153792068e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_deuteron_profile441)_ 3.96026168833297044e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_deuteron_profile442)_ 3.95751722423849106e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_deuteron_profile443)_ 3.95477656134082004e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_deuteron_profile444)_ 3.95203969174819663e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_deuteron_profile445)_ 3.94930660759069398e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_deuteron_profile446)_ 3.94657730102014095e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_deuteron_profile447)_ 3.94385176421004385e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_deuteron_profile448)_ 3.94112998935551643e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_deuteron_profile449)_ 3.93841196867320240e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_deuteron_profile450)_ 3.93569769440120161e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_deuteron_profile451)_ 3.93298715879899710e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_deuteron_profile452)_ 3.93028035414738059e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_deuteron_profile453)_ 3.92757727274838015e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_deuteron_profile454)_ 3.92487790692518502e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_deuteron_profile455)_ 3.92218224902207702e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_deuteron_profile456)_ 3.91949029140435383e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_deuteron_profile457)_ 3.91680202645826042e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_deuteron_profile458)_ 3.91411744659091458e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_deuteron_profile459)_ 3.91143654423023537e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_deuteron_profile460)_ 3.90875931182487607e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_deuteron_profile461)_ 3.90608574184414744e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_deuteron_profile462)_ 3.90341582677795142e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_deuteron_profile463)_ 3.90074955913671032e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_deuteron_profile464)_ 3.89808693145129234e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_deuteron_profile465)_ 3.89542793627294898e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_deuteron_profile466)_ 3.89277256617324054e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_deuteron_profile467)_ 3.89012081374396756e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_deuteron_profile468)_ 3.88747267159710303e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_deuteron_profile469)_ 3.88482813236472383e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_deuteron_profile470)_ 3.88218718869894221e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_deuteron_profile471)_ 3.87954983327183649e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_deuteron_profile472)_ 3.87691605877538621e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_deuteron_profile473)_ 3.87428585792140067e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_deuteron_profile474)_ 3.87165922344145402e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_deuteron_profile475)_ 3.86903614808681831e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_deuteron_profile476)_ 3.86641662462839782e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_deuteron_profile477)_ 3.86380064585666060e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_deuteron_profile478)_ 3.86118820458157063e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_deuteron_profile479)_ 3.85857929363252968e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_deuteron_profile480)_ 3.85597390585830063e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_deuteron_profile481)_ 3.85337203412695229e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_deuteron_profile482)_ 3.85077367132578790e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_deuteron_profile483)_ 3.84817881036128253e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_deuteron_profile484)_ 3.84558744415901974e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_deuteron_profile485)_ 3.84299956566362306e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_deuteron_profile486)_ 3.84041516783869714e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_deuteron_profile487)_ 3.83783424366676360e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_deuteron_profile488)_ 3.83525678614918962e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_deuteron_profile489)_ 3.83268278830613643e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_deuteron_profile490)_ 3.83011224317648783e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_deuteron_profile491)_ 3.82754514381779060e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_deuteron_profile492)_ 3.82498148330619186e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_deuteron_profile493)_ 3.82242125473637432e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_deuteron_profile494)_ 3.81986445122150108e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_deuteron_profile495)_ 3.81731106589314491e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_deuteron_profile496)_ 3.81476109190123156e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_deuteron_profile497)_ 3.81221452241398171e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_deuteron_profile498)_ 3.80967135061784163e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_deuteron_profile499)_ 3.80713156971742883e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_deuteron_profile500)_ 3.80459517293547168e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_deuteron_profile501)_ 3.80206215351274535e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_deuteron_profile502)_ 3.79953250470801368e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_deuteron_profile503)_ 3.79700621979796812e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_deuteron_profile504)_ 3.79448329207717255e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_deuteron_profile505)_ 3.79196371485799700e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_deuteron_profile506)_ 3.78944748147056624e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_deuteron_profile507)_ 3.78693458526269495e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_deuteron_profile508)_ 3.78442501959983036e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_deuteron_profile509)_ 3.78191877786499560e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_deuteron_profile510)_ 3.77941585345873237e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_deuteron_profile511)_ 3.77691623979903683e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_deuteron_profile512)_ 3.77441993032131121e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_deuteron_profile513)_ 3.77192691847829819e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_deuteron_profile514)_ 3.76943719774002880e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_deuteron_profile515)_ 3.76695076159376279e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_deuteron_profile516)_ 3.76446760354393125e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_deuteron_profile517)_ 3.76198771711208448e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_deuteron_profile518)_ 3.75951109583682939e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_deuteron_profile519)_ 3.75703773327377960e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_deuteron_profile520)_ 3.75456762299549207e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_deuteron_profile521)_ 3.75210075859142244e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_deuteron_profile522)_ 3.74963713366785496e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_deuteron_profile523)_ 3.74717674184786379e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_deuteron_profile524)_ 3.74471957677124217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_deuteron_profile525)_ 3.74226563209445924e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_deuteron_profile526)_ 3.73981490149059892e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_deuteron_profile527)_ 3.73736737864930853e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_deuteron_profile528)_ 3.73492305727674589e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_deuteron_profile529)_ 3.73248193109551892e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_deuteron_profile530)_ 3.73004399384463951e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_deuteron_profile531)_ 3.72760923927946761e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_deuteron_profile532)_ 3.72517766117165238e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_deuteron_profile533)_ 3.72274925330908969e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_deuteron_profile534)_ 3.72032400949585959e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_deuteron_profile535)_ 3.71790192355217710e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_deuteron_profile536)_ 3.71548298931434229e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_deuteron_profile537)_ 3.71306720063468441e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_deuteron_profile538)_ 3.71065455138150975e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_deuteron_profile539)_ 3.70824503543905467e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_deuteron_profile540)_ 3.70583864670742601e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_deuteron_profile541)_ 3.70343537910255790e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_deuteron_profile542)_ 3.70103522655615285e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_deuteron_profile543)_ 3.69863818301563710e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_deuteron_profile544)_ 3.69624424244410694e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_deuteron_profile545)_ 3.69385339882027358e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_deuteron_profile546)_ 3.69146564613842592e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_deuteron_profile547)_ 3.68908097840836123e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_deuteron_profile548)_ 3.68669938965535387e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_deuteron_profile549)_ 3.68432087392009273e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_deuteron_profile550)_ 3.68194542525863573e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_deuteron_profile551)_ 3.67957303774236068e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_deuteron_profile552)_ 3.67720370545791611e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_deuteron_profile553)_ 3.67483742250717133e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_deuteron_profile554)_ 3.67247418300716653e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_deuteron_profile555)_ 3.67011398109006658e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_deuteron_profile556)_ 3.66775681090311110e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_deuteron_profile557)_ 3.66540266660856456e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_deuteron_profile558)_ 3.66305154238367155e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_deuteron_profile559)_ 3.66070343242060542e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_deuteron_profile560)_ 3.65835833092642203e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_deuteron_profile561)_ 3.65601623212301135e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_deuteron_profile562)_ 3.65367713024705350e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_deuteron_profile563)_ 3.65134101954996437e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_deuteron_profile564)_ 3.64900789429785460e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_deuteron_profile565)_ 3.64667774877148494e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_deuteron_profile566)_ 3.64435057726620510e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_deuteron_profile567)_ 3.64202637409192920e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_deuteron_profile568)_ 3.63970513357306793e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_deuteron_profile569)_ 3.63738685004849955e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_deuteron_profile570)_ 3.63507151787151098e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_deuteron_profile571)_ 3.63275913140976056e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_deuteron_profile572)_ 3.63044968504522741e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_deuteron_profile573)_ 3.62814317317417040e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_deuteron_profile574)_ 3.62583959020707533e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_deuteron_profile575)_ 3.62353893056861907e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_deuteron_profile576)_ 3.62124118869761825e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_deuteron_profile577)_ 3.61894635904698595e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_deuteron_profile578)_ 3.61665443608368784e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_deuteron_profile579)_ 3.61436541428869888e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_deuteron_profile580)_ 3.61207928815695345e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_deuteron_profile581)_ 3.60979605219731033e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_deuteron_profile582)_ 3.60751570093249828e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_deuteron_profile583)_ 3.60523822889908105e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_deuteron_profile584)_ 3.60296363064740971e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_deuteron_profile585)_ 3.60069190074157864e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_deuteron_profile586)_ 3.59842303375938609e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_deuteron_profile587)_ 3.59615702429228127e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_deuteron_profile588)_ 3.59389386694533974e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_deuteron_profile589)_ 3.59163355633719712e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_deuteron_profile590)_ 3.58937608710002750e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_deuteron_profile591)_ 3.58712145387948751e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_deuteron_profile592)_ 3.58486965133467913e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_deuteron_profile593)_ 3.58262067413810790e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_deuteron_profile594)_ 3.58037451697563827e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_deuteron_profile595)_ 3.57813117454645634e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_deuteron_profile596)_ 3.57589064156302065e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_deuteron_profile597)_ 3.57365291275102943e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_deuteron_profile598)_ 3.57141798284937069e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_deuteron_profile599)_ 3.56918584661009014e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_deuteron_profile600)_ 3.56695649879834056e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_deuteron_profile601)_ 3.56472993419234976e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_deuteron_profile602)_ 3.56250614758337140e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_deuteron_profile603)_ 3.56028513377565145e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_deuteron_profile604)_ 3.55806688758638278e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_deuteron_profile605)_ 3.55585140384566933e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_deuteron_profile606)_ 3.55363867739647999e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_deuteron_profile607)_ 3.55142870309461728e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_deuteron_profile608)_ 3.54922147580866516e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_deuteron_profile609)_ 3.54701699041996524e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_deuteron_profile610)_ 3.54481524182256013e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_deuteron_profile611)_ 3.54261622492316663e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_deuteron_profile612)_ 3.54041993464113027e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_deuteron_profile613)_ 3.53822636590839177e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_deuteron_profile614)_ 3.53603551366943866e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_deuteron_profile615)_ 3.53384737288127691e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_deuteron_profile616)_ 3.53166193851338476e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_deuteron_profile617)_ 3.52947920554767847e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_deuteron_profile618)_ 3.52729916897847056e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_deuteron_profile619)_ 3.52512182381243482e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_deuteron_profile620)_ 3.52294716506856456e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_deuteron_profile621)_ 3.52077518777814060e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_deuteron_profile622)_ 3.51860588698468506e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_deuteron_profile623)_ 3.51643925774393156e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_deuteron_profile624)_ 3.51427529512378126e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_deuteron_profile625)_ 3.51211399420427084e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_deuteron_profile626)_ 3.50995535007753149e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_deuteron_profile627)_ 3.50779935784775317e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_deuteron_profile628)_ 3.50564601263115034e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_deuteron_profile629)_ 3.50349530955591649e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_deuteron_profile630)_ 3.50134724376219809e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_deuteron_profile631)_ 3.49920181040204838e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_deuteron_profile632)_ 3.49705900463940278e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_deuteron_profile633)_ 3.49491882165002674e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_deuteron_profile634)_ 3.49278125662149489e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_deuteron_profile635)_ 3.49064630475314409e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_deuteron_profile636)_ 3.48851396125604361e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_deuteron_profile637)_ 3.48638422135295719e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_deuteron_profile638)_ 3.48425708027830645e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_deuteron_profile639)_ 3.48213253327813670e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_deuteron_profile640)_ 3.48001057561008185e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_deuteron_profile641)_ 3.47789120254332721e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_deuteron_profile642)_ 3.47577440935857892e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_deuteron_profile643)_ 3.47366019134801924e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_deuteron_profile644)_ 3.47154854381528571e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_deuteron_profile645)_ 3.46943946207542196e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_deuteron_profile646)_ 3.46733294145485386e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_deuteron_profile647)_ 3.46522897729135007e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_deuteron_profile648)_ 3.46312756493398622e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_deuteron_profile649)_ 3.46102869974311814e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_deuteron_profile650)_ 3.45893237709033489e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_deuteron_profile651)_ 3.45683859235844091e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_deuteron_profile652)_ 3.45474734094140530e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_deuteron_profile653)_ 3.45265861824434325e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_deuteron_profile654)_ 3.45057241968347058e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_deuteron_profile655)_ 3.44848874068607688e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_deuteron_profile656)_ 3.44640757669049129e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_deuteron_profile657)_ 3.44432892314604595e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_deuteron_profile658)_ 3.44225277551304623e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_deuteron_profile659)_ 3.44017912926273718e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_deuteron_profile660)_ 3.43810797987726927e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_deuteron_profile661)_ 3.43603932284966558e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_deuteron_profile662)_ 3.43397315368379056e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_deuteron_profile663)_ 3.43190946789431721e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_deuteron_profile664)_ 3.42984826100669354e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_deuteron_profile665)_ 3.42778952855710909e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_deuteron_profile666)_ 3.42573326609246805e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_deuteron_profile667)_ 3.42367946917034984e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_deuteron_profile668)_ 3.42162813335898444e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_deuteron_profile669)_ 3.41957925423721150e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_deuteron_profile670)_ 3.41753282739446089e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_deuteron_profile671)_ 3.41548884843070731e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_deuteron_profile672)_ 3.41344731295645237e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_deuteron_profile673)_ 3.41140821659267843e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_deuteron_profile674)_ 3.40937155497083217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_deuteron_profile675)_ 3.40733732373278216e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_deuteron_profile676)_ 3.40530551853079572e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_deuteron_profile677)_ 3.40327613502749875e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_deuteron_profile678)_ 3.40124916889585704e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_deuteron_profile679)_ 3.39922461581913307e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_deuteron_profile680)_ 3.39720247149086520e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_deuteron_profile681)_ 3.39518273161483034e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_deuteron_profile682)_ 3.39316539190501720e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_deuteron_profile683)_ 3.39115044808559641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_deuteron_profile684)_ 3.38913789589088634e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_deuteron_profile685)_ 3.38712773106532842e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_deuteron_profile686)_ 3.38511994936345220e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_deuteron_profile687)_ 3.38311454654984847e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_deuteron_profile688)_ 3.38111151839913800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_deuteron_profile689)_ 3.37911086069594324e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_deuteron_profile690)_ 3.37711256923485771e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_deuteron_profile691)_ 3.37511663982041627e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_deuteron_profile692)_ 3.37312306826706678e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_deuteron_profile693)_ 3.37113185039914101e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_deuteron_profile694)_ 3.36914298205082193e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_deuteron_profile695)_ 3.36715645906612277e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_deuteron_profile696)_ 3.36517227729884684e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_deuteron_profile697)_ 3.36319043261256963e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_deuteron_profile698)_ 3.36121092088060230e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_deuteron_profile699)_ 3.35923373798596635e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_deuteron_profile700)_ 3.35725887982136607e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_deuteron_profile701)_ 3.35528634228915609e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_deuteron_profile702)_ 3.35331612130131759e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_deuteron_profile703)_ 3.35134821277942732e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_deuteron_profile704)_ 3.34938261265463009e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_deuteron_profile705)_ 3.34741931686761081e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_deuteron_profile706)_ 3.34545832136856690e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_deuteron_profile707)_ 3.34349962211718038e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_deuteron_profile708)_ 3.34154321508258916e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_deuteron_profile709)_ 3.33958909624335878e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_deuteron_profile710)_ 3.33763726158745997e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_deuteron_profile711)_ 3.33568770711223371e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_deuteron_profile712)_ 3.33374042882436961e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_deuteron_profile713)_ 3.33179542273987308e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_deuteron_profile714)_ 3.32985268488404900e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_deuteron_profile715)_ 3.32791221129145846e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_deuteron_profile716)_ 3.32597399800590798e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_deuteron_profile717)_ 3.32403804108040929e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_deuteron_profile718)_ 3.32210433657716289e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_deuteron_profile719)_ 3.32017288056752533e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_deuteron_profile720)_ 3.31824366913198344e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_deuteron_profile721)_ 3.31631669836012982e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_deuteron_profile722)_ 3.31439196435063481e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_deuteron_profile723)_ 3.31246946321122013e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_deuteron_profile724)_ 3.31054919105863385e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_deuteron_profile725)_ 3.30863114401862398e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_deuteron_profile726)_ 3.30671531822590865e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_deuteron_profile727)_ 3.30480170982415751e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_deuteron_profile728)_ 3.30289031496595964e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_deuteron_profile729)_ 3.30098112981280014e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_deuteron_profile730)_ 3.29907415053503476e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_deuteron_profile731)_ 3.29716937331186160e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_deuteron_profile732)_ 3.29526679433130063e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_deuteron_profile733)_ 3.29336640979016423e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_deuteron_profile734)_ 3.29146821589403078e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_deuteron_profile735)_ 3.28957220885722600e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_deuteron_profile736)_ 3.28767838490278795e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_deuteron_profile737)_ 3.28578674026245400e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_deuteron_profile738)_ 3.28389727117662095e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_deuteron_profile739)_ 3.28200997389433533e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_deuteron_profile740)_ 3.28012484467325918e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_deuteron_profile741)_ 3.27824187977964655e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_deuteron_profile742)_ 3.27636107548832111e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_deuteron_profile743)_ 3.27448242808265164e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_deuteron_profile744)_ 3.27260593385452405e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_deuteron_profile745)_ 3.27073158910432048e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_deuteron_profile746)_ 3.26885939014089517e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_deuteron_profile747)_ 3.26698933328154720e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_deuteron_profile748)_ 3.26512141485199817e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_deuteron_profile749)_ 3.26325563118636794e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_deuteron_profile750)_ 3.26139197862715237e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_deuteron_profile751)_ 3.25953045352519713e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_deuteron_profile752)_ 3.25767105223967135e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_deuteron_profile753)_ 3.25581377113805227e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_deuteron_profile754)_ 3.25395860659609400e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_deuteron_profile755)_ 3.25210555499780364e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_deuteron_profile756)_ 3.25025461273542643e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_deuteron_profile757)_ 3.24840577620941065e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_deuteron_profile758)_ 3.24655904182839356e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_deuteron_profile759)_ 3.24471440600917228e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_deuteron_profile760)_ 3.24287186517668627e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_deuteron_profile761)_ 3.24103141576398611e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_deuteron_profile762)_ 3.23919305421222039e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_deuteron_profile763)_ 3.23735677697060294e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_deuteron_profile764)_ 3.23552258049639910e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_deuteron_profile765)_ 3.23369046125489436e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_deuteron_profile766)_ 3.23186041571937948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_deuteron_profile767)_ 3.23003244037112221e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_deuteron_profile768)_ 3.22820653169934675e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_deuteron_profile769)_ 3.22638268620121144e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_deuteron_profile770)_ 3.22456090038178675e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_deuteron_profile771)_ 3.22274117075403184e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_deuteron_profile772)_ 3.22092349383877292e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_deuteron_profile773)_ 3.21910786616468169e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_deuteron_profile774)_ 3.21729428426824957e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_deuteron_profile775)_ 3.21548274469377510e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_deuteron_profile776)_ 3.21367324399332777e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_deuteron_profile777)_ 3.21186577872674018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_deuteron_profile778)_ 3.21006034546157569e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_deuteron_profile779)_ 3.20825694077311493e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_deuteron_profile780)_ 3.20645556124432534e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_deuteron_profile781)_ 3.20465620346584991e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_deuteron_profile782)_ 3.20285886403597519e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_deuteron_profile783)_ 3.20106353956061900e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_deuteron_profile784)_ 3.19927022665330172e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_deuteron_profile785)_ 3.19747892193513066e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_deuteron_profile786)_ 3.19568962203477547e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_deuteron_profile787)_ 3.19390232358844727e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_deuteron_profile788)_ 3.19211702323987894e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_deuteron_profile789)_ 3.19033371764030419e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_deuteron_profile790)_ 3.18855240344843343e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_deuteron_profile791)_ 3.18677307733043768e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_deuteron_profile792)_ 3.18499573595992401e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_deuteron_profile793)_ 3.18322037601791769e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_deuteron_profile794)_ 3.18144699419283830e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_deuteron_profile795)_ 3.17967558718048036e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_deuteron_profile796)_ 3.17790615168399811e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_deuteron_profile797)_ 3.17613868441387303e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_deuteron_profile798)_ 3.17437318208790720e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_deuteron_profile799)_ 3.17260964143119082e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_deuteron_profile800)_ 3.17084805917609334e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_deuteron_profile801)_ 3.16908843206223249e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_deuteron_profile802)_ 3.16733075683646463e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_deuteron_profile803)_ 3.16557503025285155e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_deuteron_profile804)_ 3.16382124907265641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_deuteron_profile805)_ 3.16206941006430984e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_deuteron_profile806)_ 3.16031951000340059e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_deuteron_profile807)_ 3.15857154567264579e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_deuteron_profile808)_ 3.15682551386188157e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_deuteron_profile809)_ 3.15508141136803553e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_deuteron_profile810)_ 3.15333923499511033e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_deuteron_profile811)_ 3.15159898155416325e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_deuteron_profile812)_ 3.14986064786329009e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_deuteron_profile813)_ 3.14812423074759915e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_deuteron_profile814)_ 3.14638972703919820e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_deuteron_profile815)_ 3.14465713357717246e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_deuteron_profile816)_ 3.14292644720756412e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_deuteron_profile817)_ 3.14119766478335820e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_deuteron_profile818)_ 3.13947078316445462e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_deuteron_profile819)_ 3.13774579921766147e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_deuteron_profile820)_ 3.13602270981666297e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_deuteron_profile821)_ 3.13430151184201092e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_deuteron_profile822)_ 3.13258220218109936e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_deuteron_profile823)_ 3.13086477772814967e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_deuteron_profile824)_ 3.12914923538418822e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_deuteron_profile825)_ 3.12743557205703482e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_deuteron_profile826)_ 3.12572378466127217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_deuteron_profile827)_ 3.12401387011824064e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_deuteron_profile828)_ 3.12230582535601109e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_deuteron_profile829)_ 3.12059964730936848e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_deuteron_profile830)_ 3.11889533291979469e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_deuteron_profile831)_ 3.11719287913544960e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_deuteron_profile832)_ 3.11549228291115388e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_deuteron_profile833)_ 3.11379354120836668e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_deuteron_profile834)_ 3.11209665099517405e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_deuteron_profile835)_ 3.11040160924626589e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_deuteron_profile836)_ 3.10870841294292025e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_deuteron_profile837)_ 3.10701705907298364e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_deuteron_profile838)_ 3.10532754463085607e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_deuteron_profile839)_ 3.10363986661746949e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_deuteron_profile840)_ 3.10195402204027437e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_deuteron_profile841)_ 3.10027000791321583e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_deuteron_profile842)_ 3.09858782125672512e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_deuteron_profile843)_ 3.09690745909769163e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_deuteron_profile844)_ 3.09522891846945472e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_deuteron_profile845)_ 3.09355219641177915e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_deuteron_profile846)_ 3.09187728997084163e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_deuteron_profile847)_ 3.09020419619921185e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_deuteron_profile848)_ 3.08853291215583831e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_deuteron_profile849)_ 3.08686343490602337e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_deuteron_profile850)_ 3.08519576152141765e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_deuteron_profile851)_ 3.08352988907999136e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_deuteron_profile852)_ 3.08186581466602497e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_deuteron_profile853)_ 3.08020353537008837e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_deuteron_profile854)_ 3.07854304828902632e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_deuteron_profile855)_ 3.07688435052593984e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_deuteron_profile856)_ 3.07522743919016905e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_deuteron_profile857)_ 3.07357231139727943e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_deuteron_profile858)_ 3.07191896426903978e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_deuteron_profile859)_ 3.07026739493341073e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_deuteron_profile860)_ 3.06861760052452609e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_deuteron_profile861)_ 3.06696957818267718e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_deuteron_profile862)_ 3.06532332505429052e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_deuteron_profile863)_ 3.06367883829192333e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_deuteron_profile864)_ 3.06203611505423263e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_deuteron_profile865)_ 3.06039515250597261e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_deuteron_profile866)_ 3.05875594781796671e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_deuteron_profile867)_ 3.05711849816710092e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_deuteron_profile868)_ 3.05548280073629916e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_deuteron_profile869)_ 3.05384885271451622e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_deuteron_profile870)_ 3.05221665129670948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_deuteron_profile871)_ 3.05058619368383773e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_deuteron_profile872)_ 3.04895747708283179e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_deuteron_profile873)_ 3.04733049870658703e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_deuteron_profile874)_ 3.04570525577394329e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_deuteron_profile875)_ 3.04408174550967179e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_deuteron_profile876)_ 3.04245996514445581e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_deuteron_profile877)_ 3.04083991191487983e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_deuteron_profile878)_ 3.03922158306340836e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_deuteron_profile879)_ 3.03760497583837435e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_deuteron_profile880)_ 3.03599008749396279e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_deuteron_profile881)_ 3.03437691529019289e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_deuteron_profile882)_ 3.03276545649290755e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_deuteron_profile883)_ 3.03115570837374888e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_deuteron_profile884)_ 3.02954766821015626e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_deuteron_profile885)_ 3.02794133328533582e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_deuteron_profile886)_ 3.02633670088825896e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_deuteron_profile887)_ 3.02473376831363551e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_deuteron_profile888)_ 3.02313253286190815e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_deuteron_profile889)_ 3.02153299183922932e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_deuteron_profile890)_ 3.01993514255745374e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_deuteron_profile891)_ 3.01833898233411424e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_deuteron_profile892)_ 3.01674450849241614e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_deuteron_profile893)_ 3.01515171836121641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_deuteron_profile894)_ 3.01356060927500986e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_deuteron_profile895)_ 3.01197117857391573e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_deuteron_profile896)_ 3.01038342360366061e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_deuteron_profile897)_ 3.00879734171556570e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_deuteron_profile898)_ 3.00721293026653193e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_deuteron_profile899)_ 3.00563018661902323e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_deuteron_profile900)_ 3.00404910814105421e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_deuteron_profile901)_ 3.00246969220617525e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_deuteron_profile902)_ 3.00089193619345427e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_deuteron_profile903)_ 2.99931583748747073e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_deuteron_profile904)_ 2.99774139347829074e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_deuteron_profile905)_ 2.99616860156146102e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_deuteron_profile906)_ 2.99459745913798846e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_deuteron_profile907)_ 2.99302796361433156e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_deuteron_profile908)_ 2.99146011240238026e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_deuteron_profile909)_ 2.98989390291944742e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_deuteron_profile910)_ 2.98832933258824944e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_deuteron_profile911)_ 2.98676639883689582e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_deuteron_profile912)_ 2.98520509909887314e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_deuteron_profile913)_ 2.98364543081303239e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_deuteron_profile914)_ 2.98208739142357372e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_deuteron_profile915)_ 2.98053097838003375e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_deuteron_profile916)_ 2.97897618913726844e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_deuteron_profile917)_ 2.97742302115544565e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_deuteron_profile918)_ 2.97587147190002315e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_deuteron_profile919)_ 2.97432153884174190e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_deuteron_profile920)_ 2.97277321945660859e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_deuteron_profile921)_ 2.97122651122588143e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_deuteron_profile922)_ 2.96968141163606048e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_deuteron_profile923)_ 2.96813791817886829e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_deuteron_profile924)_ 2.96659602835124396e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_deuteron_profile925)_ 2.96505573965531848e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_deuteron_profile926)_ 2.96351704959841408e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_deuteron_profile927)_ 2.96197995569302067e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_deuteron_profile928)_ 2.96044445545678847e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_deuteron_profile929)_ 2.95891054641250968e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_deuteron_profile930)_ 2.95737822608811222e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_deuteron_profile931)_ 2.95584749201663770e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_deuteron_profile932)_ 2.95431834173623659e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_deuteron_profile933)_ 2.95279077279014662e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_deuteron_profile934)_ 2.95126478272668943e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_deuteron_profile935)_ 2.94974036909924783e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_deuteron_profile936)_ 2.94821752946625948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_deuteron_profile937)_ 2.94669626139119901e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_deuteron_profile938)_ 2.94517656244257018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_deuteron_profile939)_ 2.94365843019388877e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_deuteron_profile940)_ 2.94214186222367026e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_deuteron_profile941)_ 2.94062685611541942e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_deuteron_profile942)_ 2.93911340945761390e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_deuteron_profile943)_ 2.93760151984369606e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_deuteron_profile944)_ 2.93609118487205356e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_deuteron_profile945)_ 2.93458240214601457e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_deuteron_profile946)_ 2.93307516927382834e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_deuteron_profile947)_ 2.93156948386865743e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_deuteron_profile948)_ 2.93006534354855977e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_deuteron_profile949)_ 2.92856274593648426e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_deuteron_profile950)_ 2.92706168866024800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_deuteron_profile951)_ 2.92556216935253292e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_deuteron_profile952)_ 2.92406418565086760e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_deuteron_profile953)_ 2.92256773519761786e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_deuteron_profile954)_ 2.92107281563997120e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_deuteron_profile955)_ 2.91957942462993041e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_deuteron_profile956)_ 2.91808755982429385e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_deuteron_profile957)_ 2.91659721888464987e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_deuteron_profile958)_ 2.91510839947735779e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_deuteron_profile959)_ 2.91362109927354269e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_deuteron_profile960)_ 2.91213531594907902e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_deuteron_profile961)_ 2.91065104718457907e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_deuteron_profile962)_ 2.90916829066538215e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_deuteron_profile963)_ 2.90768704408154003e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_deuteron_profile964)_ 2.90620730512780882e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_deuteron_profile965)_ 2.90472907150363401e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_deuteron_profile966)_ 2.90325234091313928e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_deuteron_profile967)_ 2.90177711106511354e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_deuteron_profile968)_ 2.90030337967300341e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_deuteron_profile969)_ 2.89883114445489496e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_deuteron_profile970)_ 2.89736040313350819e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_deuteron_profile971)_ 2.89589115343617797e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_deuteron_profile972)_ 2.89442339309485294e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_deuteron_profile973)_ 2.89295711984607093e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_deuteron_profile974)_ 2.89149233143095933e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_deuteron_profile975)_ 2.89002902559521459e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_deuteron_profile976)_ 2.88856720008909665e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_deuteron_profile977)_ 2.88710685266741365e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_deuteron_profile978)_ 2.88564798108951226e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_deuteron_profile979)_ 2.88419058311926462e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_deuteron_profile980)_ 2.88273465652506053e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_deuteron_profile981)_ 2.88128019907979034e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_deuteron_profile982)_ 2.87982720856083930e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_deuteron_profile983)_ 2.87837568275007270e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_deuteron_profile984)_ 2.87692561943382621e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_deuteron_profile985)_ 2.87547701640289240e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_deuteron_profile986)_ 2.87402987145251334e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_deuteron_profile987)_ 2.87258418238236643e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_deuteron_profile988)_ 2.87113994699655324e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_deuteron_profile989)_ 2.86969716310359016e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_deuteron_profile990)_ 2.86825582851639576e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_deuteron_profile991)_ 2.86681594105228148e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_deuteron_profile992)_ 2.86537749853293709e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_deuteron_profile993)_ 2.86394049878442585e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_deuteron_profile994)_ 2.86250493963716477e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_deuteron_profile995)_ 2.86107081892592423e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_deuteron_profile996)_ 2.85963813448980674e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_deuteron_profile997)_ 2.85820688417224474e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_deuteron_profile998)_ 2.85677706582098231e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_deuteron_profile999)_ 2.85534867728807218e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_deuteron_profile1000)_ 2.85392171642985679e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_deuteron_profile1001)_ 2.85249618110696524e+07 +Volume_averaged_triton_toroidal_Larmor_frequency_(ωc)_(Hz)_______________ (freq_plasma_larmor_toroidal_triton_vol_avg)_ 2.53961266150983460e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_0_______________________ (freq_plasma_larmor_toroidal_triton_profile0)_ 3.80941899226475134e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_1_______________________ (freq_plasma_larmor_toroidal_triton_profile1)_ 3.80561717690321058e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_2_______________________ (freq_plasma_larmor_toroidal_triton_profile2)_ 3.80182294242972732e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_3_______________________ (freq_plasma_larmor_toroidal_triton_profile3)_ 3.79803626619224772e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_4_______________________ (freq_plasma_larmor_toroidal_triton_profile4)_ 3.79425712562887222e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_5_______________________ (freq_plasma_larmor_toroidal_triton_profile5)_ 3.79048549826741219e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_6_______________________ (freq_plasma_larmor_toroidal_triton_profile6)_ 3.78672136172494143e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_7_______________________ (freq_plasma_larmor_toroidal_triton_profile7)_ 3.78296469370735735e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_8_______________________ (freq_plasma_larmor_toroidal_triton_profile8)_ 3.77921547200893611e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_9_______________________ (freq_plasma_larmor_toroidal_triton_profile9)_ 3.77547367451189682e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_10______________________ (freq_plasma_larmor_toroidal_triton_profile10)_ 3.77173927918597087e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_11______________________ (freq_plasma_larmor_toroidal_triton_profile11)_ 3.76801226408796087e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_12______________________ (freq_plasma_larmor_toroidal_triton_profile12)_ 3.76429260736131966e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_13______________________ (freq_plasma_larmor_toroidal_triton_profile13)_ 3.76058028723571673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_14______________________ (freq_plasma_larmor_toroidal_triton_profile14)_ 3.75687528202661723e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_15______________________ (freq_plasma_larmor_toroidal_triton_profile15)_ 3.75317757013485879e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_16______________________ (freq_plasma_larmor_toroidal_triton_profile16)_ 3.74948713004622981e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_17______________________ (freq_plasma_larmor_toroidal_triton_profile17)_ 3.74580394033105746e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_18______________________ (freq_plasma_larmor_toroidal_triton_profile18)_ 3.74212797964378446e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_19______________________ (freq_plasma_larmor_toroidal_triton_profile19)_ 3.73845922672256529e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_20______________________ (freq_plasma_larmor_toroidal_triton_profile20)_ 3.73479766038885042e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_21______________________ (freq_plasma_larmor_toroidal_triton_profile21)_ 3.73114325954698324e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_22______________________ (freq_plasma_larmor_toroidal_triton_profile22)_ 3.72749600318378955e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_23______________________ (freq_plasma_larmor_toroidal_triton_profile23)_ 3.72385587036818042e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_24______________________ (freq_plasma_larmor_toroidal_triton_profile24)_ 3.72022284025074765e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_25______________________ (freq_plasma_larmor_toroidal_triton_profile25)_ 3.71659689206336886e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_26______________________ (freq_plasma_larmor_toroidal_triton_profile26)_ 3.71297800511880890e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_27______________________ (freq_plasma_larmor_toroidal_triton_profile27)_ 3.70936615881032720e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_28______________________ (freq_plasma_larmor_toroidal_triton_profile28)_ 3.70576133261128888e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_29______________________ (freq_plasma_larmor_toroidal_triton_profile29)_ 3.70216350607477352e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_30______________________ (freq_plasma_larmor_toroidal_triton_profile30)_ 3.69857265883318707e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_31______________________ (freq_plasma_larmor_toroidal_triton_profile31)_ 3.69498877059788406e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_32______________________ (freq_plasma_larmor_toroidal_triton_profile32)_ 3.69141182115877643e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_33______________________ (freq_plasma_larmor_toroidal_triton_profile33)_ 3.68784179038396180e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_34______________________ (freq_plasma_larmor_toroidal_triton_profile34)_ 3.68427865821933970e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_35______________________ (freq_plasma_larmor_toroidal_triton_profile35)_ 3.68072240468823984e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_36______________________ (freq_plasma_larmor_toroidal_triton_profile36)_ 3.67717300989104807e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_37______________________ (freq_plasma_larmor_toroidal_triton_profile37)_ 3.67363045400483310e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_38______________________ (freq_plasma_larmor_toroidal_triton_profile38)_ 3.67009471728297994e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_39______________________ (freq_plasma_larmor_toroidal_triton_profile39)_ 3.66656578005482331e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_40______________________ (freq_plasma_larmor_toroidal_triton_profile40)_ 3.66304362272527963e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_41______________________ (freq_plasma_larmor_toroidal_triton_profile41)_ 3.65952822577448785e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_42______________________ (freq_plasma_larmor_toroidal_triton_profile42)_ 3.65601956975744665e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_43______________________ (freq_plasma_larmor_toroidal_triton_profile43)_ 3.65251763530365601e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_44______________________ (freq_plasma_larmor_toroidal_triton_profile44)_ 3.64902240311676189e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_45______________________ (freq_plasma_larmor_toroidal_triton_profile45)_ 3.64553385397420302e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_46______________________ (freq_plasma_larmor_toroidal_triton_profile46)_ 3.64205196872685403e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_47______________________ (freq_plasma_larmor_toroidal_triton_profile47)_ 3.63857672829868048e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_48______________________ (freq_plasma_larmor_toroidal_triton_profile48)_ 3.63510811368638426e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_49______________________ (freq_plasma_larmor_toroidal_triton_profile49)_ 3.63164610595906302e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_50______________________ (freq_plasma_larmor_toroidal_triton_profile50)_ 3.62819068625786528e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_51______________________ (freq_plasma_larmor_toroidal_triton_profile51)_ 3.62474183579564318e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_52______________________ (freq_plasma_larmor_toroidal_triton_profile52)_ 3.62129953585661575e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_53______________________ (freq_plasma_larmor_toroidal_triton_profile53)_ 3.61786376779603139e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_54______________________ (freq_plasma_larmor_toroidal_triton_profile54)_ 3.61443451303982660e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_55______________________ (freq_plasma_larmor_toroidal_triton_profile55)_ 3.61101175308429599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_56______________________ (freq_plasma_larmor_toroidal_triton_profile56)_ 3.60759546949575841e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_57______________________ (freq_plasma_larmor_toroidal_triton_profile57)_ 3.60418564391022399e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_58______________________ (freq_plasma_larmor_toroidal_triton_profile58)_ 3.60078225803306624e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_59______________________ (freq_plasma_larmor_toroidal_triton_profile59)_ 3.59738529363869429e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_60______________________ (freq_plasma_larmor_toroidal_triton_profile60)_ 3.59399473257023171e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_61______________________ (freq_plasma_larmor_toroidal_triton_profile61)_ 3.59061055673918650e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_62______________________ (freq_plasma_larmor_toroidal_triton_profile62)_ 3.58723274812513292e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_63______________________ (freq_plasma_larmor_toroidal_triton_profile63)_ 3.58386128877539113e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_64______________________ (freq_plasma_larmor_toroidal_triton_profile64)_ 3.58049616080471054e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_65______________________ (freq_plasma_larmor_toroidal_triton_profile65)_ 3.57713734639495015e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_66______________________ (freq_plasma_larmor_toroidal_triton_profile66)_ 3.57378482779476717e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_67______________________ (freq_plasma_larmor_toroidal_triton_profile67)_ 3.57043858731930405e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_68______________________ (freq_plasma_larmor_toroidal_triton_profile68)_ 3.56709860734987482e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_69______________________ (freq_plasma_larmor_toroidal_triton_profile69)_ 3.56376487033366039e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_70______________________ (freq_plasma_larmor_toroidal_triton_profile70)_ 3.56043735878339559e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_71______________________ (freq_plasma_larmor_toroidal_triton_profile71)_ 3.55711605527706742e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_72______________________ (freq_plasma_larmor_toroidal_triton_profile72)_ 3.55380094245761111e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_73______________________ (freq_plasma_larmor_toroidal_triton_profile73)_ 3.55049200303260386e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_74______________________ (freq_plasma_larmor_toroidal_triton_profile74)_ 3.54718921977396831e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_75______________________ (freq_plasma_larmor_toroidal_triton_profile75)_ 3.54389257551767305e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_76______________________ (freq_plasma_larmor_toroidal_triton_profile76)_ 3.54060205316343233e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_77______________________ (freq_plasma_larmor_toroidal_triton_profile77)_ 3.53731763567441255e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_78______________________ (freq_plasma_larmor_toroidal_triton_profile78)_ 3.53403930607693866e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_79______________________ (freq_plasma_larmor_toroidal_triton_profile79)_ 3.53076704746020064e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_80______________________ (freq_plasma_larmor_toroidal_triton_profile80)_ 3.52750084297596291e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_81______________________ (freq_plasma_larmor_toroidal_triton_profile81)_ 3.52424067583827749e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_82______________________ (freq_plasma_larmor_toroidal_triton_profile82)_ 3.52098652932319194e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_83______________________ (freq_plasma_larmor_toroidal_triton_profile83)_ 3.51773838676846549e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_84______________________ (freq_plasma_larmor_toroidal_triton_profile84)_ 3.51449623157328740e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_85______________________ (freq_plasma_larmor_toroidal_triton_profile85)_ 3.51126004719798937e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_86______________________ (freq_plasma_larmor_toroidal_triton_profile86)_ 3.50802981716376916e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_87______________________ (freq_plasma_larmor_toroidal_triton_profile87)_ 3.50480552505240515e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_88______________________ (freq_plasma_larmor_toroidal_triton_profile88)_ 3.50158715450598374e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_89______________________ (freq_plasma_larmor_toroidal_triton_profile89)_ 3.49837468922662064e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_90______________________ (freq_plasma_larmor_toroidal_triton_profile90)_ 3.49516811297618374e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_91______________________ (freq_plasma_larmor_toroidal_triton_profile91)_ 3.49196740957602337e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_92______________________ (freq_plasma_larmor_toroidal_triton_profile92)_ 3.48877256290669367e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_93______________________ (freq_plasma_larmor_toroidal_triton_profile93)_ 3.48558355690769330e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_94______________________ (freq_plasma_larmor_toroidal_triton_profile94)_ 3.48240037557718381e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_95______________________ (freq_plasma_larmor_toroidal_triton_profile95)_ 3.47922300297173038e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_96______________________ (freq_plasma_larmor_toroidal_triton_profile96)_ 3.47605142320603132e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_97______________________ (freq_plasma_larmor_toroidal_triton_profile97)_ 3.47288562045265585e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_98______________________ (freq_plasma_larmor_toroidal_triton_profile98)_ 3.46972557894178033e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_99______________________ (freq_plasma_larmor_toroidal_triton_profile99)_ 3.46657128296092451e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_100_____________________ (freq_plasma_larmor_toroidal_triton_profile100)_ 3.46342271685469225e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_101_____________________ (freq_plasma_larmor_toroidal_triton_profile101)_ 3.46027986502451599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_102_____________________ (freq_plasma_larmor_toroidal_triton_profile102)_ 3.45714271192839146e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_103_____________________ (freq_plasma_larmor_toroidal_triton_profile103)_ 3.45401124208063111e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_104_____________________ (freq_plasma_larmor_toroidal_triton_profile104)_ 3.45088544005159885e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_105_____________________ (freq_plasma_larmor_toroidal_triton_profile105)_ 3.44776529046746492e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_106_____________________ (freq_plasma_larmor_toroidal_triton_profile106)_ 3.44465077800995111e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_107_____________________ (freq_plasma_larmor_toroidal_triton_profile107)_ 3.44154188741607964e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_108_____________________ (freq_plasma_larmor_toroidal_triton_profile108)_ 3.43843860347792283e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_109_____________________ (freq_plasma_larmor_toroidal_triton_profile109)_ 3.43534091104235724e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_110_____________________ (freq_plasma_larmor_toroidal_triton_profile110)_ 3.43224879501081631e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_111_____________________ (freq_plasma_larmor_toroidal_triton_profile111)_ 3.42916224033904374e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_112_____________________ (freq_plasma_larmor_toroidal_triton_profile112)_ 3.42608123203685209e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_113_____________________ (freq_plasma_larmor_toroidal_triton_profile113)_ 3.42300575516787767e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_114_____________________ (freq_plasma_larmor_toroidal_triton_profile114)_ 3.41993579484934211e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_115_____________________ (freq_plasma_larmor_toroidal_triton_profile115)_ 3.41687133625180721e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_116_____________________ (freq_plasma_larmor_toroidal_triton_profile116)_ 3.41381236459894031e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_117_____________________ (freq_plasma_larmor_toroidal_triton_profile117)_ 3.41075886516727731e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_118_____________________ (freq_plasma_larmor_toroidal_triton_profile118)_ 3.40771082328598425e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_119_____________________ (freq_plasma_larmor_toroidal_triton_profile119)_ 3.40466822433662266e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_120_____________________ (freq_plasma_larmor_toroidal_triton_profile120)_ 3.40163105375291407e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_121_____________________ (freq_plasma_larmor_toroidal_triton_profile121)_ 3.39859929702051356e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_122_____________________ (freq_plasma_larmor_toroidal_triton_profile122)_ 3.39557293967677355e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_123_____________________ (freq_plasma_larmor_toroidal_triton_profile123)_ 3.39255196731051281e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_124_____________________ (freq_plasma_larmor_toroidal_triton_profile124)_ 3.38953636556179151e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_125_____________________ (freq_plasma_larmor_toroidal_triton_profile125)_ 3.38652612012168467e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_126_____________________ (freq_plasma_larmor_toroidal_triton_profile126)_ 3.38352121673204675e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_127_____________________ (freq_plasma_larmor_toroidal_triton_profile127)_ 3.38052164118529856e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_128_____________________ (freq_plasma_larmor_toroidal_triton_profile128)_ 3.37752737932419553e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_129_____________________ (freq_plasma_larmor_toroidal_triton_profile129)_ 3.37453841704160795e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_130_____________________ (freq_plasma_larmor_toroidal_triton_profile130)_ 3.37155474028029814e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_131_____________________ (freq_plasma_larmor_toroidal_triton_profile131)_ 3.36857633503270000e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_132_____________________ (freq_plasma_larmor_toroidal_triton_profile132)_ 3.36560318734070361e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_133_____________________ (freq_plasma_larmor_toroidal_triton_profile133)_ 3.36263528329542875e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_134_____________________ (freq_plasma_larmor_toroidal_triton_profile134)_ 3.35967260903701931e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_135_____________________ (freq_plasma_larmor_toroidal_triton_profile135)_ 3.35671515075441599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_136_____________________ (freq_plasma_larmor_toroidal_triton_profile136)_ 3.35376289468515031e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_137_____________________ (freq_plasma_larmor_toroidal_triton_profile137)_ 3.35081582711512856e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_138_____________________ (freq_plasma_larmor_toroidal_triton_profile138)_ 3.34787393437841684e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_139_____________________ (freq_plasma_larmor_toroidal_triton_profile139)_ 3.34493720285703242e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_140_____________________ (freq_plasma_larmor_toroidal_triton_profile140)_ 3.34200561898073293e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_141_____________________ (freq_plasma_larmor_toroidal_triton_profile141)_ 3.33907916922680996e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_142_____________________ (freq_plasma_larmor_toroidal_triton_profile142)_ 3.33615784011987448e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_143_____________________ (freq_plasma_larmor_toroidal_triton_profile143)_ 3.33324161823165826e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_144_____________________ (freq_plasma_larmor_toroidal_triton_profile144)_ 3.33033049018079974e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_145_____________________ (freq_plasma_larmor_toroidal_triton_profile145)_ 3.32742444263264909e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_146_____________________ (freq_plasma_larmor_toroidal_triton_profile146)_ 3.32452346229905561e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_147_____________________ (freq_plasma_larmor_toroidal_triton_profile147)_ 3.32162753593816757e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_148_____________________ (freq_plasma_larmor_toroidal_triton_profile148)_ 3.31873665035423525e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_149_____________________ (freq_plasma_larmor_toroidal_triton_profile149)_ 3.31585079239740558e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_150_____________________ (freq_plasma_larmor_toroidal_triton_profile150)_ 3.31296994896352477e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_151_____________________ (freq_plasma_larmor_toroidal_triton_profile151)_ 3.31009410699393786e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_152_____________________ (freq_plasma_larmor_toroidal_triton_profile152)_ 3.30722325347529612e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_153_____________________ (freq_plasma_larmor_toroidal_triton_profile153)_ 3.30435737543935627e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_154_____________________ (freq_plasma_larmor_toroidal_triton_profile154)_ 3.30149645996278487e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_155_____________________ (freq_plasma_larmor_toroidal_triton_profile155)_ 3.29864049416696988e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_156_____________________ (freq_plasma_larmor_toroidal_triton_profile156)_ 3.29578946521781869e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_157_____________________ (freq_plasma_larmor_toroidal_triton_profile157)_ 3.29294336032557525e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_158_____________________ (freq_plasma_larmor_toroidal_triton_profile158)_ 3.29010216674462184e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_159_____________________ (freq_plasma_larmor_toroidal_triton_profile159)_ 3.28726587177328989e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_160_____________________ (freq_plasma_larmor_toroidal_triton_profile160)_ 3.28443446275367476e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_161_____________________ (freq_plasma_larmor_toroidal_triton_profile161)_ 3.28160792707144283e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_162_____________________ (freq_plasma_larmor_toroidal_triton_profile162)_ 3.27878625215564631e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_163_____________________ (freq_plasma_larmor_toroidal_triton_profile163)_ 3.27596942547853701e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_164_____________________ (freq_plasma_larmor_toroidal_triton_profile164)_ 3.27315743455537967e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_165_____________________ (freq_plasma_larmor_toroidal_triton_profile165)_ 3.27035026694426797e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_166_____________________ (freq_plasma_larmor_toroidal_triton_profile166)_ 3.26754791024594381e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_167_____________________ (freq_plasma_larmor_toroidal_triton_profile167)_ 3.26475035210361034e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_168_____________________ (freq_plasma_larmor_toroidal_triton_profile168)_ 3.26195758020275161e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_169_____________________ (freq_plasma_larmor_toroidal_triton_profile169)_ 3.25916958227095418e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_170_____________________ (freq_plasma_larmor_toroidal_triton_profile170)_ 3.25638634607772566e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_171_____________________ (freq_plasma_larmor_toroidal_triton_profile171)_ 3.25360785943431444e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_172_____________________ (freq_plasma_larmor_toroidal_triton_profile172)_ 3.25083411019353494e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_173_____________________ (freq_plasma_larmor_toroidal_triton_profile173)_ 3.24806508624958880e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_174_____________________ (freq_plasma_larmor_toroidal_triton_profile174)_ 3.24530077553788684e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_175_____________________ (freq_plasma_larmor_toroidal_triton_profile175)_ 3.24254116603487842e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_176_____________________ (freq_plasma_larmor_toroidal_triton_profile176)_ 3.23978624575787298e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_177_____________________ (freq_plasma_larmor_toroidal_triton_profile177)_ 3.23703600276486985e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_178_____________________ (freq_plasma_larmor_toroidal_triton_profile178)_ 3.23429042515438236e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_179_____________________ (freq_plasma_larmor_toroidal_triton_profile179)_ 3.23154950106526799e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_180_____________________ (freq_plasma_larmor_toroidal_triton_profile180)_ 3.22881321867655925e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_181_____________________ (freq_plasma_larmor_toroidal_triton_profile181)_ 3.22608156620728932e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_182_____________________ (freq_plasma_larmor_toroidal_triton_profile182)_ 3.22335453191632852e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_183_____________________ (freq_plasma_larmor_toroidal_triton_profile183)_ 3.22063210410220996e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_184_____________________ (freq_plasma_larmor_toroidal_triton_profile184)_ 3.21791427110296749e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_185_____________________ (freq_plasma_larmor_toroidal_triton_profile185)_ 3.21520102129596658e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_186_____________________ (freq_plasma_larmor_toroidal_triton_profile186)_ 3.21249234309773892e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_187_____________________ (freq_plasma_larmor_toroidal_triton_profile187)_ 3.20978822496381849e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_188_____________________ (freq_plasma_larmor_toroidal_triton_profile188)_ 3.20708865538857579e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_189_____________________ (freq_plasma_larmor_toroidal_triton_profile189)_ 3.20439362290505581e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_190_____________________ (freq_plasma_larmor_toroidal_triton_profile190)_ 3.20170311608481668e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_191_____________________ (freq_plasma_larmor_toroidal_triton_profile191)_ 3.19901712353776544e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_192_____________________ (freq_plasma_larmor_toroidal_triton_profile192)_ 3.19633563391200081e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_193_____________________ (freq_plasma_larmor_toroidal_triton_profile193)_ 3.19365863589364849e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_194_____________________ (freq_plasma_larmor_toroidal_triton_profile194)_ 3.19098611820670851e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_195_____________________ (freq_plasma_larmor_toroidal_triton_profile195)_ 3.18831806961289048e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_196_____________________ (freq_plasma_larmor_toroidal_triton_profile196)_ 3.18565447891145907e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_197_____________________ (freq_plasma_larmor_toroidal_triton_profile197)_ 3.18299533493907936e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_198_____________________ (freq_plasma_larmor_toroidal_triton_profile198)_ 3.18034062656965517e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_199_____________________ (freq_plasma_larmor_toroidal_triton_profile199)_ 3.17769034271418005e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_200_____________________ (freq_plasma_larmor_toroidal_triton_profile200)_ 3.17504447232057974e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_201_____________________ (freq_plasma_larmor_toroidal_triton_profile201)_ 3.17240300437355787e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_202_____________________ (freq_plasma_larmor_toroidal_triton_profile202)_ 3.16976592789444476e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_203_____________________ (freq_plasma_larmor_toroidal_triton_profile203)_ 3.16713323194104396e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_204_____________________ (freq_plasma_larmor_toroidal_triton_profile204)_ 3.16450490560748279e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_205_____________________ (freq_plasma_larmor_toroidal_triton_profile205)_ 3.16188093802406043e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_206_____________________ (freq_plasma_larmor_toroidal_triton_profile206)_ 3.15926131835709773e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_207_____________________ (freq_plasma_larmor_toroidal_triton_profile207)_ 3.15664603580878824e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_208_____________________ (freq_plasma_larmor_toroidal_triton_profile208)_ 3.15403507961705253e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_209_____________________ (freq_plasma_larmor_toroidal_triton_profile209)_ 3.15142843905538544e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_210_____________________ (freq_plasma_larmor_toroidal_triton_profile210)_ 3.14882610343271419e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_211_____________________ (freq_plasma_larmor_toroidal_triton_profile211)_ 3.14622806209324822e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_212_____________________ (freq_plasma_larmor_toroidal_triton_profile212)_ 3.14363430441633649e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_213_____________________ (freq_plasma_larmor_toroidal_triton_profile213)_ 3.14104481981632337e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_214_____________________ (freq_plasma_larmor_toroidal_triton_profile214)_ 3.13845959774240032e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_215_____________________ (freq_plasma_larmor_toroidal_triton_profile215)_ 3.13587862767846771e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_216_____________________ (freq_plasma_larmor_toroidal_triton_profile216)_ 3.13330189914298840e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_217_____________________ (freq_plasma_larmor_toroidal_triton_profile217)_ 3.13072940168884806e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_218_____________________ (freq_plasma_larmor_toroidal_triton_profile218)_ 3.12816112490321323e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_219_____________________ (freq_plasma_larmor_toroidal_triton_profile219)_ 3.12559705840739086e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_220_____________________ (freq_plasma_larmor_toroidal_triton_profile220)_ 3.12303719185668863e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_221_____________________ (freq_plasma_larmor_toroidal_triton_profile221)_ 3.12048151494027562e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_222_____________________ (freq_plasma_larmor_toroidal_triton_profile222)_ 3.11793001738104336e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_223_____________________ (freq_plasma_larmor_toroidal_triton_profile223)_ 3.11538268893547133e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_224_____________________ (freq_plasma_larmor_toroidal_triton_profile224)_ 3.11283951939348280e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_225_____________________ (freq_plasma_larmor_toroidal_triton_profile225)_ 3.11030049857831746e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_226_____________________ (freq_plasma_larmor_toroidal_triton_profile226)_ 3.10776561634638719e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_227_____________________ (freq_plasma_larmor_toroidal_triton_profile227)_ 3.10523486258714721e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_228_____________________ (freq_plasma_larmor_toroidal_triton_profile228)_ 3.10270822722295858e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_229_____________________ (freq_plasma_larmor_toroidal_triton_profile229)_ 3.10018570020895638e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_230_____________________ (freq_plasma_larmor_toroidal_triton_profile230)_ 3.09766727153291330e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_231_____________________ (freq_plasma_larmor_toroidal_triton_profile231)_ 3.09515293121511079e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_232_____________________ (freq_plasma_larmor_toroidal_triton_profile232)_ 3.09264266930820458e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_233_____________________ (freq_plasma_larmor_toroidal_triton_profile233)_ 3.09013647589709647e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_234_____________________ (freq_plasma_larmor_toroidal_triton_profile234)_ 3.08763434109879881e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_235_____________________ (freq_plasma_larmor_toroidal_triton_profile235)_ 3.08513625506231152e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_236_____________________ (freq_plasma_larmor_toroidal_triton_profile236)_ 3.08264220796848536e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_237_____________________ (freq_plasma_larmor_toroidal_triton_profile237)_ 3.08015219002990052e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_238_____________________ (freq_plasma_larmor_toroidal_triton_profile238)_ 3.07766619149073176e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_239_____________________ (freq_plasma_larmor_toroidal_triton_profile239)_ 3.07518420262662694e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_240_____________________ (freq_plasma_larmor_toroidal_triton_profile240)_ 3.07270621374457404e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_241_____________________ (freq_plasma_larmor_toroidal_triton_profile241)_ 3.07023221518278345e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_242_____________________ (freq_plasma_larmor_toroidal_triton_profile242)_ 3.06776219731055275e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_243_____________________ (freq_plasma_larmor_toroidal_triton_profile243)_ 3.06529615052814819e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_244_____________________ (freq_plasma_larmor_toroidal_triton_profile244)_ 3.06283406526667997e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_245_____________________ (freq_plasma_larmor_toroidal_triton_profile245)_ 3.06037593198797479e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_246_____________________ (freq_plasma_larmor_toroidal_triton_profile246)_ 3.05792174118445590e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_247_____________________ (freq_plasma_larmor_toroidal_triton_profile247)_ 3.05547148337902017e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_248_____________________ (freq_plasma_larmor_toroidal_triton_profile248)_ 3.05302514912491329e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_249_____________________ (freq_plasma_larmor_toroidal_triton_profile249)_ 3.05058272900561355e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_250_____________________ (freq_plasma_larmor_toroidal_triton_profile250)_ 3.04814421363470517e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_251_____________________ (freq_plasma_larmor_toroidal_triton_profile251)_ 3.04570959365576394e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_252_____________________ (freq_plasma_larmor_toroidal_triton_profile252)_ 3.04327885974223204e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_253_____________________ (freq_plasma_larmor_toroidal_triton_profile253)_ 3.04085200259730220e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_254_____________________ (freq_plasma_larmor_toroidal_triton_profile254)_ 3.03842901295379810e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_255_____________________ (freq_plasma_larmor_toroidal_triton_profile255)_ 3.03600988157405816e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_256_____________________ (freq_plasma_larmor_toroidal_triton_profile256)_ 3.03359459924981445e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_257_____________________ (freq_plasma_larmor_toroidal_triton_profile257)_ 3.03118315680207983e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_258_____________________ (freq_plasma_larmor_toroidal_triton_profile258)_ 3.02877554508102983e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_259_____________________ (freq_plasma_larmor_toroidal_triton_profile259)_ 3.02637175496588610e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_260_____________________ (freq_plasma_larmor_toroidal_triton_profile260)_ 3.02397177736480273e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_261_____________________ (freq_plasma_larmor_toroidal_triton_profile261)_ 3.02157560321475193e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_262_____________________ (freq_plasma_larmor_toroidal_triton_profile262)_ 3.01918322348140702e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_263_____________________ (freq_plasma_larmor_toroidal_triton_profile263)_ 3.01679462915903181e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_264_____________________ (freq_plasma_larmor_toroidal_triton_profile264)_ 3.01440981127036922e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_265_____________________ (freq_plasma_larmor_toroidal_triton_profile265)_ 3.01202876086652167e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_266_____________________ (freq_plasma_larmor_toroidal_triton_profile266)_ 3.00965146902684756e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_267_____________________ (freq_plasma_larmor_toroidal_triton_profile267)_ 3.00727792685884610e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_268_____________________ (freq_plasma_larmor_toroidal_triton_profile268)_ 3.00490812549804337e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_269_____________________ (freq_plasma_larmor_toroidal_triton_profile269)_ 3.00254205610788725e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_270_____________________ (freq_plasma_larmor_toroidal_triton_profile270)_ 3.00017970987963602e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_271_____________________ (freq_plasma_larmor_toroidal_triton_profile271)_ 2.99782107803224586e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_272_____________________ (freq_plasma_larmor_toroidal_triton_profile272)_ 2.99546615181226768e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_273_____________________ (freq_plasma_larmor_toroidal_triton_profile273)_ 2.99311492249373347e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_274_____________________ (freq_plasma_larmor_toroidal_triton_profile274)_ 2.99076738137805201e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_275_____________________ (freq_plasma_larmor_toroidal_triton_profile275)_ 2.98842351979390010e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_276_____________________ (freq_plasma_larmor_toroidal_triton_profile276)_ 2.98608332909711562e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_277_____________________ (freq_plasma_larmor_toroidal_triton_profile277)_ 2.98374680067059211e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_278_____________________ (freq_plasma_larmor_toroidal_triton_profile278)_ 2.98141392592417262e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_279_____________________ (freq_plasma_larmor_toroidal_triton_profile279)_ 2.97908469629454426e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_280_____________________ (freq_plasma_larmor_toroidal_triton_profile280)_ 2.97675910324513428e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_281_____________________ (freq_plasma_larmor_toroidal_triton_profile281)_ 2.97443713826600350e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_282_____________________ (freq_plasma_larmor_toroidal_triton_profile282)_ 2.97211879287374690e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_283_____________________ (freq_plasma_larmor_toroidal_triton_profile283)_ 2.96980405861138403e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_284_____________________ (freq_plasma_larmor_toroidal_triton_profile284)_ 2.96749292704826221e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_285_____________________ (freq_plasma_larmor_toroidal_triton_profile285)_ 2.96518538977995031e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_286_____________________ (freq_plasma_larmor_toroidal_triton_profile286)_ 2.96288143842814043e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_287_____________________ (freq_plasma_larmor_toroidal_triton_profile287)_ 2.96058106464054137e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_288_____________________ (freq_plasma_larmor_toroidal_triton_profile288)_ 2.95828426009078138e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_289_____________________ (freq_plasma_larmor_toroidal_triton_profile289)_ 2.95599101647830755e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_290_____________________ (freq_plasma_larmor_toroidal_triton_profile290)_ 2.95370132552828602e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_291_____________________ (freq_plasma_larmor_toroidal_triton_profile291)_ 2.95141517899149880e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_292_____________________ (freq_plasma_larmor_toroidal_triton_profile292)_ 2.94913256864425093e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_293_____________________ (freq_plasma_larmor_toroidal_triton_profile293)_ 2.94685348628826626e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_294_____________________ (freq_plasma_larmor_toroidal_triton_profile294)_ 2.94457792375059240e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_295_____________________ (freq_plasma_larmor_toroidal_triton_profile295)_ 2.94230587288350053e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_296_____________________ (freq_plasma_larmor_toroidal_triton_profile296)_ 2.94003732556439228e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_297_____________________ (freq_plasma_larmor_toroidal_triton_profile297)_ 2.93777227369569875e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_298_____________________ (freq_plasma_larmor_toroidal_triton_profile298)_ 2.93551070920478553e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_299_____________________ (freq_plasma_larmor_toroidal_triton_profile299)_ 2.93325262404385917e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_300_____________________ (freq_plasma_larmor_toroidal_triton_profile300)_ 2.93099801018986702e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_301_____________________ (freq_plasma_larmor_toroidal_triton_profile301)_ 2.92874685964440592e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_302_____________________ (freq_plasma_larmor_toroidal_triton_profile302)_ 2.92649916443362758e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_303_____________________ (freq_plasma_larmor_toroidal_triton_profile303)_ 2.92425491660814211e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_304_____________________ (freq_plasma_larmor_toroidal_triton_profile304)_ 2.92201410824292488e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_305_____________________ (freq_plasma_larmor_toroidal_triton_profile305)_ 2.91977673143722564e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_306_____________________ (freq_plasma_larmor_toroidal_triton_profile306)_ 2.91754277831447348e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_307_____________________ (freq_plasma_larmor_toroidal_triton_profile307)_ 2.91531224102218412e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_308_____________________ (freq_plasma_larmor_toroidal_triton_profile308)_ 2.91308511173186898e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_309_____________________ (freq_plasma_larmor_toroidal_triton_profile309)_ 2.91086138263894469e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_310_____________________ (freq_plasma_larmor_toroidal_triton_profile310)_ 2.90864104596263655e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_311_____________________ (freq_plasma_larmor_toroidal_triton_profile311)_ 2.90642409394589663e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_312_____________________ (freq_plasma_larmor_toroidal_triton_profile312)_ 2.90421051885530613e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_313_____________________ (freq_plasma_larmor_toroidal_triton_profile313)_ 2.90200031298098676e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_314_____________________ (freq_plasma_larmor_toroidal_triton_profile314)_ 2.89979346863651425e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_315_____________________ (freq_plasma_larmor_toroidal_triton_profile315)_ 2.89758997815882713e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_316_____________________ (freq_plasma_larmor_toroidal_triton_profile316)_ 2.89538983390813693e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_317_____________________ (freq_plasma_larmor_toroidal_triton_profile317)_ 2.89319302826784253e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_318_____________________ (freq_plasma_larmor_toroidal_triton_profile318)_ 2.89099955364444032e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_319_____________________ (freq_plasma_larmor_toroidal_triton_profile319)_ 2.88880940246743709e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_320_____________________ (freq_plasma_larmor_toroidal_triton_profile320)_ 2.88662256718926318e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_321_____________________ (freq_plasma_larmor_toroidal_triton_profile321)_ 2.88443904028518647e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_322_____________________ (freq_plasma_larmor_toroidal_triton_profile322)_ 2.88225881425322518e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_323_____________________ (freq_plasma_larmor_toroidal_triton_profile323)_ 2.88008188161406107e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_324_____________________ (freq_plasma_larmor_toroidal_triton_profile324)_ 2.87790823491095603e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_325_____________________ (freq_plasma_larmor_toroidal_triton_profile325)_ 2.87573786670966558e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_326_____________________ (freq_plasma_larmor_toroidal_triton_profile326)_ 2.87357076959835514e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_327_____________________ (freq_plasma_larmor_toroidal_triton_profile327)_ 2.87140693618751280e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_328_____________________ (freq_plasma_larmor_toroidal_triton_profile328)_ 2.86924635910986960e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_329_____________________ (freq_plasma_larmor_toroidal_triton_profile329)_ 2.86708903102031313e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_330_____________________ (freq_plasma_larmor_toroidal_triton_profile330)_ 2.86493494459580556e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_331_____________________ (freq_plasma_larmor_toroidal_triton_profile331)_ 2.86278409253529795e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_332_____________________ (freq_plasma_larmor_toroidal_triton_profile332)_ 2.86063646755965203e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_333_____________________ (freq_plasma_larmor_toroidal_triton_profile333)_ 2.85849206241155751e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_334_____________________ (freq_plasma_larmor_toroidal_triton_profile334)_ 2.85635086985544302e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_335_____________________ (freq_plasma_larmor_toroidal_triton_profile335)_ 2.85421288267740719e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_336_____________________ (freq_plasma_larmor_toroidal_triton_profile336)_ 2.85207809368512854e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_337_____________________ (freq_plasma_larmor_toroidal_triton_profile337)_ 2.84994649570778497e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_338_____________________ (freq_plasma_larmor_toroidal_triton_profile338)_ 2.84781808159597963e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_339_____________________ (freq_plasma_larmor_toroidal_triton_profile339)_ 2.84569284422165453e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_340_____________________ (freq_plasma_larmor_toroidal_triton_profile340)_ 2.84357077647801377e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_341_____________________ (freq_plasma_larmor_toroidal_triton_profile341)_ 2.84145187127944604e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_342_____________________ (freq_plasma_larmor_toroidal_triton_profile342)_ 2.83933612156144232e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_343_____________________ (freq_plasma_larmor_toroidal_triton_profile343)_ 2.83722352028051838e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_344_____________________ (freq_plasma_larmor_toroidal_triton_profile344)_ 2.83511406041413881e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_345_____________________ (freq_plasma_larmor_toroidal_triton_profile345)_ 2.83300773496063687e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_346_____________________ (freq_plasma_larmor_toroidal_triton_profile346)_ 2.83090453693913668e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_347_____________________ (freq_plasma_larmor_toroidal_triton_profile347)_ 2.82880445938947834e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_348_____________________ (freq_plasma_larmor_toroidal_triton_profile348)_ 2.82670749537214004e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_349_____________________ (freq_plasma_larmor_toroidal_triton_profile349)_ 2.82461363796816021e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_350_____________________ (freq_plasma_larmor_toroidal_triton_profile350)_ 2.82252288027906492e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_351_____________________ (freq_plasma_larmor_toroidal_triton_profile351)_ 2.82043521542678773e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_352_____________________ (freq_plasma_larmor_toroidal_triton_profile352)_ 2.81835063655359708e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_353_____________________ (freq_plasma_larmor_toroidal_triton_profile353)_ 2.81626913682202138e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_354_____________________ (freq_plasma_larmor_toroidal_triton_profile354)_ 2.81419070941477232e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_355_____________________ (freq_plasma_larmor_toroidal_triton_profile355)_ 2.81211534753467329e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_356_____________________ (freq_plasma_larmor_toroidal_triton_profile356)_ 2.81004304440458082e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_357_____________________ (freq_plasma_larmor_toroidal_triton_profile357)_ 2.80797379326731674e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_358_____________________ (freq_plasma_larmor_toroidal_triton_profile358)_ 2.80590758738559000e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_359_____________________ (freq_plasma_larmor_toroidal_triton_profile359)_ 2.80384442004192434e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_360_____________________ (freq_plasma_larmor_toroidal_triton_profile360)_ 2.80178428453858681e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_361_____________________ (freq_plasma_larmor_toroidal_triton_profile361)_ 2.79972717419751585e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_362_____________________ (freq_plasma_larmor_toroidal_triton_profile362)_ 2.79767308236024715e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_363_____________________ (freq_plasma_larmor_toroidal_triton_profile363)_ 2.79562200238784216e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_364_____________________ (freq_plasma_larmor_toroidal_triton_profile364)_ 2.79357392766081803e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_365_____________________ (freq_plasma_larmor_toroidal_triton_profile365)_ 2.79152885157907531e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_366_____________________ (freq_plasma_larmor_toroidal_triton_profile366)_ 2.78948676756182611e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_367_____________________ (freq_plasma_larmor_toroidal_triton_profile367)_ 2.78744766904752664e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_368_____________________ (freq_plasma_larmor_toroidal_triton_profile368)_ 2.78541154949380346e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_369_____________________ (freq_plasma_larmor_toroidal_triton_profile369)_ 2.78337840237738490e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_370_____________________ (freq_plasma_larmor_toroidal_triton_profile370)_ 2.78134822119403109e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_371_____________________ (freq_plasma_larmor_toroidal_triton_profile371)_ 2.77932099945846684e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_372_____________________ (freq_plasma_larmor_toroidal_triton_profile372)_ 2.77729673070430942e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_373_____________________ (freq_plasma_larmor_toroidal_triton_profile373)_ 2.77527540848400034e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_374_____________________ (freq_plasma_larmor_toroidal_triton_profile374)_ 2.77325702636873946e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_375_____________________ (freq_plasma_larmor_toroidal_triton_profile375)_ 2.77124157794841342e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_376_____________________ (freq_plasma_larmor_toroidal_triton_profile376)_ 2.76922905683153048e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_377_____________________ (freq_plasma_larmor_toroidal_triton_profile377)_ 2.76721945664514974e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_378_____________________ (freq_plasma_larmor_toroidal_triton_profile378)_ 2.76521277103481963e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_379_____________________ (freq_plasma_larmor_toroidal_triton_profile379)_ 2.76320899366450496e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_380_____________________ (freq_plasma_larmor_toroidal_triton_profile380)_ 2.76120811821652204e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_381_____________________ (freq_plasma_larmor_toroidal_triton_profile381)_ 2.75921013839147314e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_382_____________________ (freq_plasma_larmor_toroidal_triton_profile382)_ 2.75721504790818244e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_383_____________________ (freq_plasma_larmor_toroidal_triton_profile383)_ 2.75522284050362483e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_384_____________________ (freq_plasma_larmor_toroidal_triton_profile384)_ 2.75323350993286446e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_385_____________________ (freq_plasma_larmor_toroidal_triton_profile385)_ 2.75124704996898733e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_386_____________________ (freq_plasma_larmor_toroidal_triton_profile386)_ 2.74926345440304056e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_387_____________________ (freq_plasma_larmor_toroidal_triton_profile387)_ 2.74728271704396009e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_388_____________________ (freq_plasma_larmor_toroidal_triton_profile388)_ 2.74530483171851449e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_389_____________________ (freq_plasma_larmor_toroidal_triton_profile389)_ 2.74332979227123521e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_390_____________________ (freq_plasma_larmor_toroidal_triton_profile390)_ 2.74135759256435446e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_391_____________________ (freq_plasma_larmor_toroidal_triton_profile391)_ 2.73938822647774220e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_392_____________________ (freq_plasma_larmor_toroidal_triton_profile392)_ 2.73742168790884167e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_393_____________________ (freq_plasma_larmor_toroidal_triton_profile393)_ 2.73545797077260911e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_394_____________________ (freq_plasma_larmor_toroidal_triton_profile394)_ 2.73349706900144555e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_395_____________________ (freq_plasma_larmor_toroidal_triton_profile395)_ 2.73153897654514126e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_396_____________________ (freq_plasma_larmor_toroidal_triton_profile396)_ 2.72958368737080656e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_397_____________________ (freq_plasma_larmor_toroidal_triton_profile397)_ 2.72763119546281621e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_398_____________________ (freq_plasma_larmor_toroidal_triton_profile398)_ 2.72568149482274204e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_399_____________________ (freq_plasma_larmor_toroidal_triton_profile399)_ 2.72373457946929745e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_400_____________________ (freq_plasma_larmor_toroidal_triton_profile400)_ 2.72179044343826994e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_401_____________________ (freq_plasma_larmor_toroidal_triton_profile401)_ 2.71984908078246564e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_402_____________________ (freq_plasma_larmor_toroidal_triton_profile402)_ 2.71791048557164408e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_403_____________________ (freq_plasma_larmor_toroidal_triton_profile403)_ 2.71597465189246200e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_404_____________________ (freq_plasma_larmor_toroidal_triton_profile404)_ 2.71404157384841070e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_405_____________________ (freq_plasma_larmor_toroidal_triton_profile405)_ 2.71211124555975571e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_406_____________________ (freq_plasma_larmor_toroidal_triton_profile406)_ 2.71018366116348021e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_407_____________________ (freq_plasma_larmor_toroidal_triton_profile407)_ 2.70825881481322199e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_408_____________________ (freq_plasma_larmor_toroidal_triton_profile408)_ 2.70633670067921691e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_409_____________________ (freq_plasma_larmor_toroidal_triton_profile409)_ 2.70441731294823885e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_410_____________________ (freq_plasma_larmor_toroidal_triton_profile410)_ 2.70250064582354128e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_411_____________________ (freq_plasma_larmor_toroidal_triton_profile411)_ 2.70058669352479950e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_412_____________________ (freq_plasma_larmor_toroidal_triton_profile412)_ 2.69867545028805174e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_413_____________________ (freq_plasma_larmor_toroidal_triton_profile413)_ 2.69676691036564149e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_414_____________________ (freq_plasma_larmor_toroidal_triton_profile414)_ 2.69486106802616008e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_415_____________________ (freq_plasma_larmor_toroidal_triton_profile415)_ 2.69295791755439043e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_416_____________________ (freq_plasma_larmor_toroidal_triton_profile416)_ 2.69105745325124711e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_417_____________________ (freq_plasma_larmor_toroidal_triton_profile417)_ 2.68915966943372115e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_418_____________________ (freq_plasma_larmor_toroidal_triton_profile418)_ 2.68726456043482535e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_419_____________________ (freq_plasma_larmor_toroidal_triton_profile419)_ 2.68537212060353272e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_420_____________________ (freq_plasma_larmor_toroidal_triton_profile420)_ 2.68348234430472665e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_421_____________________ (freq_plasma_larmor_toroidal_triton_profile421)_ 2.68159522591913976e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_422_____________________ (freq_plasma_larmor_toroidal_triton_profile422)_ 2.67971075984330066e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_423_____________________ (freq_plasma_larmor_toroidal_triton_profile423)_ 2.67782894048947804e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_424_____________________ (freq_plasma_larmor_toroidal_triton_profile424)_ 2.67594976228562593e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_425_____________________ (freq_plasma_larmor_toroidal_triton_profile425)_ 2.67407321967532709e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_426_____________________ (freq_plasma_larmor_toroidal_triton_profile426)_ 2.67219930711774118e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_427_____________________ (freq_plasma_larmor_toroidal_triton_profile427)_ 2.67032801908754706e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_428_____________________ (freq_plasma_larmor_toroidal_triton_profile428)_ 2.66845935007488951e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_429_____________________ (freq_plasma_larmor_toroidal_triton_profile429)_ 2.66659329458532631e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_430_____________________ (freq_plasma_larmor_toroidal_triton_profile430)_ 2.66472984713977426e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_431_____________________ (freq_plasma_larmor_toroidal_triton_profile431)_ 2.66286900227445327e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_432_____________________ (freq_plasma_larmor_toroidal_triton_profile432)_ 2.66101075454083532e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_433_____________________ (freq_plasma_larmor_toroidal_triton_profile433)_ 2.65915509850559086e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_434_____________________ (freq_plasma_larmor_toroidal_triton_profile434)_ 2.65730202875053473e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_435_____________________ (freq_plasma_larmor_toroidal_triton_profile435)_ 2.65545153987257443e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_436_____________________ (freq_plasma_larmor_toroidal_triton_profile436)_ 2.65360362648365796e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_437_____________________ (freq_plasma_larmor_toroidal_triton_profile437)_ 2.65175828321072087e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_438_____________________ (freq_plasma_larmor_toroidal_triton_profile438)_ 2.64991550469563343e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_439_____________________ (freq_plasma_larmor_toroidal_triton_profile439)_ 2.64807528559515066e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_440_____________________ (freq_plasma_larmor_toroidal_triton_profile440)_ 2.64623762058085836e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_441_____________________ (freq_plasma_larmor_toroidal_triton_profile441)_ 2.64440250433912389e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_442_____________________ (freq_plasma_larmor_toroidal_triton_profile442)_ 2.64256993157104403e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_443_____________________ (freq_plasma_larmor_toroidal_triton_profile443)_ 2.64073989699239396e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_444_____________________ (freq_plasma_larmor_toroidal_triton_profile444)_ 2.63891239533357583e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_445_____________________ (freq_plasma_larmor_toroidal_triton_profile445)_ 2.63708742133956887e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_446_____________________ (freq_plasma_larmor_toroidal_triton_profile446)_ 2.63526496976988018e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_447_____________________ (freq_plasma_larmor_toroidal_triton_profile447)_ 2.63344503539849222e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_448_____________________ (freq_plasma_larmor_toroidal_triton_profile448)_ 2.63162761301381402e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_449_____________________ (freq_plasma_larmor_toroidal_triton_profile449)_ 2.62981269741863236e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_450_____________________ (freq_plasma_larmor_toroidal_triton_profile450)_ 2.62800028343005963e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_451_____________________ (freq_plasma_larmor_toroidal_triton_profile451)_ 2.62619036587948836e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_452_____________________ (freq_plasma_larmor_toroidal_triton_profile452)_ 2.62438293961253762e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_453_____________________ (freq_plasma_larmor_toroidal_triton_profile453)_ 2.62257799948900752e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_454_____________________ (freq_plasma_larmor_toroidal_triton_profile454)_ 2.62077554038282968e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_455_____________________ (freq_plasma_larmor_toroidal_triton_profile455)_ 2.61897555718201697e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_456_____________________ (freq_plasma_larmor_toroidal_triton_profile456)_ 2.61717804478861801e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_457_____________________ (freq_plasma_larmor_toroidal_triton_profile457)_ 2.61538299811866693e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_458_____________________ (freq_plasma_larmor_toroidal_triton_profile458)_ 2.61359041210213639e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_459_____________________ (freq_plasma_larmor_toroidal_triton_profile459)_ 2.61180028168288805e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_460_____________________ (freq_plasma_larmor_toroidal_triton_profile460)_ 2.61001260181862898e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_461_____________________ (freq_plasma_larmor_toroidal_triton_profile461)_ 2.60822736748085991e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_462_____________________ (freq_plasma_larmor_toroidal_triton_profile462)_ 2.60644457365483008e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_463_____________________ (freq_plasma_larmor_toroidal_triton_profile463)_ 2.60466421533949226e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_464_____________________ (freq_plasma_larmor_toroidal_triton_profile464)_ 2.60288628754745163e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_465_____________________ (freq_plasma_larmor_toroidal_triton_profile465)_ 2.60111078530492261e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_466_____________________ (freq_plasma_larmor_toroidal_triton_profile466)_ 2.59933770365168154e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_467_____________________ (freq_plasma_larmor_toroidal_triton_profile467)_ 2.59756703764101975e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_468_____________________ (freq_plasma_larmor_toroidal_triton_profile468)_ 2.59579878233969845e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_469_____________________ (freq_plasma_larmor_toroidal_triton_profile469)_ 2.59403293282790296e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_470_____________________ (freq_plasma_larmor_toroidal_triton_profile470)_ 2.59226948419919573e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_471_____________________ (freq_plasma_larmor_toroidal_triton_profile471)_ 2.59050843156047352e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_472_____________________ (freq_plasma_larmor_toroidal_triton_profile472)_ 2.58874977003191933e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_473_____________________ (freq_plasma_larmor_toroidal_triton_profile473)_ 2.58699349474695884e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_474_____________________ (freq_plasma_larmor_toroidal_triton_profile474)_ 2.58523960085221529e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_475_____________________ (freq_plasma_larmor_toroidal_triton_profile475)_ 2.58348808350746408e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_476_____________________ (freq_plasma_larmor_toroidal_triton_profile476)_ 2.58173893788559027e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_477_____________________ (freq_plasma_larmor_toroidal_triton_profile477)_ 2.57999215917254202e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_478_____________________ (freq_plasma_larmor_toroidal_triton_profile478)_ 2.57824774256728627e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_479_____________________ (freq_plasma_larmor_toroidal_triton_profile479)_ 2.57650568328176811e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_480_____________________ (freq_plasma_larmor_toroidal_triton_profile480)_ 2.57476597654086202e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_481_____________________ (freq_plasma_larmor_toroidal_triton_profile481)_ 2.57302861758233234e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_482_____________________ (freq_plasma_larmor_toroidal_triton_profile482)_ 2.57129360165678822e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_483_____________________ (freq_plasma_larmor_toroidal_triton_profile483)_ 2.56956092402763925e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_484_____________________ (freq_plasma_larmor_toroidal_triton_profile484)_ 2.56783057997105494e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_485_____________________ (freq_plasma_larmor_toroidal_triton_profile485)_ 2.56610256477591954e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_486_____________________ (freq_plasma_larmor_toroidal_triton_profile486)_ 2.56437687374379039e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_487_____________________ (freq_plasma_larmor_toroidal_triton_profile487)_ 2.56265350218885541e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_488_____________________ (freq_plasma_larmor_toroidal_triton_profile488)_ 2.56093244543788880e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_489_____________________ (freq_plasma_larmor_toroidal_triton_profile489)_ 2.55921369883021265e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_490_____________________ (freq_plasma_larmor_toroidal_triton_profile490)_ 2.55749725771765038e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_491_____________________ (freq_plasma_larmor_toroidal_triton_profile491)_ 2.55578311746448837e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_492_____________________ (freq_plasma_larmor_toroidal_triton_profile492)_ 2.55407127344743274e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_493_____________________ (freq_plasma_larmor_toroidal_triton_profile493)_ 2.55236172105556689e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_494_____________________ (freq_plasma_larmor_toroidal_triton_profile494)_ 2.55065445569031239e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_495_____________________ (freq_plasma_larmor_toroidal_triton_profile495)_ 2.54894947276538573e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_496_____________________ (freq_plasma_larmor_toroidal_triton_profile496)_ 2.54724676770675816e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_497_____________________ (freq_plasma_larmor_toroidal_triton_profile497)_ 2.54554633595261499e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_498_____________________ (freq_plasma_larmor_toroidal_triton_profile498)_ 2.54384817295331359e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_499_____________________ (freq_plasma_larmor_toroidal_triton_profile499)_ 2.54215227417134456e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_500_____________________ (freq_plasma_larmor_toroidal_triton_profile500)_ 2.54045863508129008e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_501_____________________ (freq_plasma_larmor_toroidal_triton_profile501)_ 2.53876725116978474e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_502_____________________ (freq_plasma_larmor_toroidal_triton_profile502)_ 2.53707811793547384e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_503_____________________ (freq_plasma_larmor_toroidal_triton_profile503)_ 2.53539123088897392e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_504_____________________ (freq_plasma_larmor_toroidal_triton_profile504)_ 2.53370658555283584e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_505_____________________ (freq_plasma_larmor_toroidal_triton_profile505)_ 2.53202417746149823e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_506_____________________ (freq_plasma_larmor_toroidal_triton_profile506)_ 2.53034400216125846e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_507_____________________ (freq_plasma_larmor_toroidal_triton_profile507)_ 2.52866605521022342e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_508_____________________ (freq_plasma_larmor_toroidal_triton_profile508)_ 2.52699033217827491e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_509_____________________ (freq_plasma_larmor_toroidal_triton_profile509)_ 2.52531682864703089e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_510_____________________ (freq_plasma_larmor_toroidal_triton_profile510)_ 2.52364554020980597e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_511_____________________ (freq_plasma_larmor_toroidal_triton_profile511)_ 2.52197646247157194e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_512_____________________ (freq_plasma_larmor_toroidal_triton_profile512)_ 2.52030959104892053e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_513_____________________ (freq_plasma_larmor_toroidal_triton_profile513)_ 2.51864492157002427e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_514_____________________ (freq_plasma_larmor_toroidal_triton_profile514)_ 2.51698244967459850e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_515_____________________ (freq_plasma_larmor_toroidal_triton_profile515)_ 2.51532217101386376e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_516_____________________ (freq_plasma_larmor_toroidal_triton_profile516)_ 2.51366408125050552e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_517_____________________ (freq_plasma_larmor_toroidal_triton_profile517)_ 2.51200817605864108e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_518_____________________ (freq_plasma_larmor_toroidal_triton_profile518)_ 2.51035445112377666e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_519_____________________ (freq_plasma_larmor_toroidal_triton_profile519)_ 2.50870290214277469e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_520_____________________ (freq_plasma_larmor_toroidal_triton_profile520)_ 2.50705352482381091e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_521_____________________ (freq_plasma_larmor_toroidal_triton_profile521)_ 2.50540631488634534e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_522_____________________ (freq_plasma_larmor_toroidal_triton_profile522)_ 2.50376126806107461e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_523_____________________ (freq_plasma_larmor_toroidal_triton_profile523)_ 2.50211838008990660e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_524_____________________ (freq_plasma_larmor_toroidal_triton_profile524)_ 2.50047764672591276e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_525_____________________ (freq_plasma_larmor_toroidal_triton_profile525)_ 2.49883906373330094e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_526_____________________ (freq_plasma_larmor_toroidal_triton_profile526)_ 2.49720262688737214e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_527_____________________ (freq_plasma_larmor_toroidal_triton_profile527)_ 2.49556833197448738e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_528_____________________ (freq_plasma_larmor_toroidal_triton_profile528)_ 2.49393617479203194e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_529_____________________ (freq_plasma_larmor_toroidal_triton_profile529)_ 2.49230615114837699e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_530_____________________ (freq_plasma_larmor_toroidal_triton_profile530)_ 2.49067825686284527e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_531_____________________ (freq_plasma_larmor_toroidal_triton_profile531)_ 2.48905248776567690e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_532_____________________ (freq_plasma_larmor_toroidal_triton_profile532)_ 2.48742883969798870e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_533_____________________ (freq_plasma_larmor_toroidal_triton_profile533)_ 2.48580730851174481e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_534_____________________ (freq_plasma_larmor_toroidal_triton_profile534)_ 2.48418789006971791e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_535_____________________ (freq_plasma_larmor_toroidal_triton_profile535)_ 2.48257058024545386e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_536_____________________ (freq_plasma_larmor_toroidal_triton_profile536)_ 2.48095537492323816e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_537_____________________ (freq_plasma_larmor_toroidal_triton_profile537)_ 2.47934226999806054e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_538_____________________ (freq_plasma_larmor_toroidal_triton_profile538)_ 2.47773126137557961e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_539_____________________ (freq_plasma_larmor_toroidal_triton_profile539)_ 2.47612234497208931e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_540_____________________ (freq_plasma_larmor_toroidal_triton_profile540)_ 2.47451551671448201e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_541_____________________ (freq_plasma_larmor_toroidal_triton_profile541)_ 2.47291077254021876e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_542_____________________ (freq_plasma_larmor_toroidal_triton_profile542)_ 2.47130810839728899e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_543_____________________ (freq_plasma_larmor_toroidal_triton_profile543)_ 2.46970752024418153e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_544_____________________ (freq_plasma_larmor_toroidal_triton_profile544)_ 2.46810900404984951e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_545_____________________ (freq_plasma_larmor_toroidal_triton_profile545)_ 2.46651255579367168e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_546_____________________ (freq_plasma_larmor_toroidal_triton_profile546)_ 2.46491817146542817e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_547_____________________ (freq_plasma_larmor_toroidal_triton_profile547)_ 2.46332584706525616e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_548_____________________ (freq_plasma_larmor_toroidal_triton_profile548)_ 2.46173557860362604e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_549_____________________ (freq_plasma_larmor_toroidal_triton_profile549)_ 2.46014736210130081e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_550_____________________ (freq_plasma_larmor_toroidal_triton_profile550)_ 2.45856119358930811e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_551_____________________ (freq_plasma_larmor_toroidal_triton_profile551)_ 2.45697706910890266e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_552_____________________ (freq_plasma_larmor_toroidal_triton_profile552)_ 2.45539498471153677e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_553_____________________ (freq_plasma_larmor_toroidal_triton_profile553)_ 2.45381493645882681e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_554_____________________ (freq_plasma_larmor_toroidal_triton_profile554)_ 2.45223692042251900e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_555_____________________ (freq_plasma_larmor_toroidal_triton_profile555)_ 2.45066093268445805e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_556_____________________ (freq_plasma_larmor_toroidal_triton_profile556)_ 2.44908696933655553e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_557_____________________ (freq_plasma_larmor_toroidal_triton_profile557)_ 2.44751502648075521e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_558_____________________ (freq_plasma_larmor_toroidal_triton_profile558)_ 2.44594510022900365e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_559_____________________ (freq_plasma_larmor_toroidal_triton_profile559)_ 2.44437718670321591e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_560_____________________ (freq_plasma_larmor_toroidal_triton_profile560)_ 2.44281128203524500e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_561_____________________ (freq_plasma_larmor_toroidal_triton_profile561)_ 2.44124738236684836e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_562_____________________ (freq_plasma_larmor_toroidal_triton_profile562)_ 2.43968548384965919e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_563_____________________ (freq_plasma_larmor_toroidal_triton_profile563)_ 2.43812558264515176e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_564_____________________ (freq_plasma_larmor_toroidal_triton_profile564)_ 2.43656767492461093e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_565_____________________ (freq_plasma_larmor_toroidal_triton_profile565)_ 2.43501175686910450e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_566_____________________ (freq_plasma_larmor_toroidal_triton_profile566)_ 2.43345782466944233e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_567_____________________ (freq_plasma_larmor_toroidal_triton_profile567)_ 2.43190587452615909e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_568_____________________ (freq_plasma_larmor_toroidal_triton_profile568)_ 2.43035590264946893e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_569_____________________ (freq_plasma_larmor_toroidal_triton_profile569)_ 2.42880790525924638e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_570_____________________ (freq_plasma_larmor_toroidal_triton_profile570)_ 2.42726187858498842e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_571_____________________ (freq_plasma_larmor_toroidal_triton_profile571)_ 2.42571781886578687e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_572_____________________ (freq_plasma_larmor_toroidal_triton_profile572)_ 2.42417572235029638e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_573_____________________ (freq_plasma_larmor_toroidal_triton_profile573)_ 2.42263558529670723e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_574_____________________ (freq_plasma_larmor_toroidal_triton_profile574)_ 2.42109740397270918e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_575_____________________ (freq_plasma_larmor_toroidal_triton_profile575)_ 2.41956117465546727e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_576_____________________ (freq_plasma_larmor_toroidal_triton_profile576)_ 2.41802689363158941e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_577_____________________ (freq_plasma_larmor_toroidal_triton_profile577)_ 2.41649455719709545e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_578_____________________ (freq_plasma_larmor_toroidal_triton_profile578)_ 2.41496416165738851e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_579_____________________ (freq_plasma_larmor_toroidal_triton_profile579)_ 2.41343570332722589e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_580_____________________ (freq_plasma_larmor_toroidal_triton_profile580)_ 2.41190917853068747e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_581_____________________ (freq_plasma_larmor_toroidal_triton_profile581)_ 2.41038458360114880e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_582_____________________ (freq_plasma_larmor_toroidal_triton_profile582)_ 2.40886191488124914e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_583_____________________ (freq_plasma_larmor_toroidal_triton_profile583)_ 2.40734116872286461e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_584_____________________ (freq_plasma_larmor_toroidal_triton_profile584)_ 2.40582234148707688e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_585_____________________ (freq_plasma_larmor_toroidal_triton_profile585)_ 2.40430542954414673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_586_____________________ (freq_plasma_larmor_toroidal_triton_profile586)_ 2.40279042927348316e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_587_____________________ (freq_plasma_larmor_toroidal_triton_profile587)_ 2.40127733706361204e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_588_____________________ (freq_plasma_larmor_toroidal_triton_profile588)_ 2.39976614931215681e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_589_____________________ (freq_plasma_larmor_toroidal_triton_profile589)_ 2.39825686242579632e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_590_____________________ (freq_plasma_larmor_toroidal_triton_profile590)_ 2.39674947282024920e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_591_____________________ (freq_plasma_larmor_toroidal_triton_profile591)_ 2.39524397692023665e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_592_____________________ (freq_plasma_larmor_toroidal_triton_profile592)_ 2.39374037115945816e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_593_____________________ (freq_plasma_larmor_toroidal_triton_profile593)_ 2.39223865198056251e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_594_____________________ (freq_plasma_larmor_toroidal_triton_profile594)_ 2.39073881583512016e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_595_____________________ (freq_plasma_larmor_toroidal_triton_profile595)_ 2.38924085918359458e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_596_____________________ (freq_plasma_larmor_toroidal_triton_profile596)_ 2.38774477849531397e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_597_____________________ (freq_plasma_larmor_toroidal_triton_profile597)_ 2.38625057024844624e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_598_____________________ (freq_plasma_larmor_toroidal_triton_profile598)_ 2.38475823092996664e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_599_____________________ (freq_plasma_larmor_toroidal_triton_profile599)_ 2.38326775703563578e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_600_____________________ (freq_plasma_larmor_toroidal_triton_profile600)_ 2.38177914506996647e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_601_____________________ (freq_plasma_larmor_toroidal_triton_profile601)_ 2.38029239154620282e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_602_____________________ (freq_plasma_larmor_toroidal_triton_profile602)_ 2.37880749298628643e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_603_____________________ (freq_plasma_larmor_toroidal_triton_profile603)_ 2.37732444592083395e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_604_____________________ (freq_plasma_larmor_toroidal_triton_profile604)_ 2.37584324688910730e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_605_____________________ (freq_plasma_larmor_toroidal_triton_profile605)_ 2.37436389243898988e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_606_____________________ (freq_plasma_larmor_toroidal_triton_profile606)_ 2.37288637912695482e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_607_____________________ (freq_plasma_larmor_toroidal_triton_profile607)_ 2.37141070351804569e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_608_____________________ (freq_plasma_larmor_toroidal_triton_profile608)_ 2.36993686218583956e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_609_____________________ (freq_plasma_larmor_toroidal_triton_profile609)_ 2.36846485171243288e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_610_____________________ (freq_plasma_larmor_toroidal_triton_profile610)_ 2.36699466868840270e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_611_____________________ (freq_plasma_larmor_toroidal_triton_profile611)_ 2.36552630971278958e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_612_____________________ (freq_plasma_larmor_toroidal_triton_profile612)_ 2.36405977139306664e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_613_____________________ (freq_plasma_larmor_toroidal_triton_profile613)_ 2.36259505034511574e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_614_____________________ (freq_plasma_larmor_toroidal_triton_profile614)_ 2.36113214319319949e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_615_____________________ (freq_plasma_larmor_toroidal_triton_profile615)_ 2.35967104656993598e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_616_____________________ (freq_plasma_larmor_toroidal_triton_profile616)_ 2.35821175711627491e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_617_____________________ (freq_plasma_larmor_toroidal_triton_profile617)_ 2.35675427148146890e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_618_____________________ (freq_plasma_larmor_toroidal_triton_profile618)_ 2.35529858632304929e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_619_____________________ (freq_plasma_larmor_toroidal_triton_profile619)_ 2.35384469830680080e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_620_____________________ (freq_plasma_larmor_toroidal_triton_profile620)_ 2.35239260410673432e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_621_____________________ (freq_plasma_larmor_toroidal_triton_profile621)_ 2.35094230040506609e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_622_____________________ (freq_plasma_larmor_toroidal_triton_profile622)_ 2.34949378389218561e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_623_____________________ (freq_plasma_larmor_toroidal_triton_profile623)_ 2.34804705126663633e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_624_____________________ (freq_plasma_larmor_toroidal_triton_profile624)_ 2.34660209923508763e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_625_____________________ (freq_plasma_larmor_toroidal_triton_profile625)_ 2.34515892451231070e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_626_____________________ (freq_plasma_larmor_toroidal_triton_profile626)_ 2.34371752382115349e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_627_____________________ (freq_plasma_larmor_toroidal_triton_profile627)_ 2.34227789389251620e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_628_____________________ (freq_plasma_larmor_toroidal_triton_profile628)_ 2.34084003146532662e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_629_____________________ (freq_plasma_larmor_toroidal_triton_profile629)_ 2.33940393328651339e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_630_____________________ (freq_plasma_larmor_toroidal_triton_profile630)_ 2.33796959611098543e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_631_____________________ (freq_plasma_larmor_toroidal_triton_profile631)_ 2.33653701670160331e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_632_____________________ (freq_plasma_larmor_toroidal_triton_profile632)_ 2.33510619182915986e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_633_____________________ (freq_plasma_larmor_toroidal_triton_profile633)_ 2.33367711827234812e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_634_____________________ (freq_plasma_larmor_toroidal_triton_profile634)_ 2.33224979281774759e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_635_____________________ (freq_plasma_larmor_toroidal_triton_profile635)_ 2.33082421225978993e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_636_____________________ (freq_plasma_larmor_toroidal_triton_profile636)_ 2.32940037340074331e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_637_____________________ (freq_plasma_larmor_toroidal_triton_profile637)_ 2.32797827305068150e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_638_____________________ (freq_plasma_larmor_toroidal_triton_profile638)_ 2.32655790802746601e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_639_____________________ (freq_plasma_larmor_toroidal_triton_profile639)_ 2.32513927515671775e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_640_____________________ (freq_plasma_larmor_toroidal_triton_profile640)_ 2.32372237127179615e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_641_____________________ (freq_plasma_larmor_toroidal_triton_profile641)_ 2.32230719321377389e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_642_____________________ (freq_plasma_larmor_toroidal_triton_profile642)_ 2.32089373783141673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_643_____________________ (freq_plasma_larmor_toroidal_triton_profile643)_ 2.31948200198115371e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_644_____________________ (freq_plasma_larmor_toroidal_triton_profile644)_ 2.31807198252706230e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_645_____________________ (freq_plasma_larmor_toroidal_triton_profile645)_ 2.31666367634083666e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_646_____________________ (freq_plasma_larmor_toroidal_triton_profile646)_ 2.31525708030177131e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_647_____________________ (freq_plasma_larmor_toroidal_triton_profile647)_ 2.31385219129673392e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_648_____________________ (freq_plasma_larmor_toroidal_triton_profile648)_ 2.31244900622014329e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_649_____________________ (freq_plasma_larmor_toroidal_triton_profile649)_ 2.31104752197394967e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_650_____________________ (freq_plasma_larmor_toroidal_triton_profile650)_ 2.30964773546760529e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_651_____________________ (freq_plasma_larmor_toroidal_triton_profile651)_ 2.30824964361804947e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_652_____________________ (freq_plasma_larmor_toroidal_triton_profile652)_ 2.30685324334967695e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_653_____________________ (freq_plasma_larmor_toroidal_triton_profile653)_ 2.30545853159432709e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_654_____________________ (freq_plasma_larmor_toroidal_triton_profile654)_ 2.30406550529124849e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_655_____________________ (freq_plasma_larmor_toroidal_triton_profile655)_ 2.30267416138708740e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_656_____________________ (freq_plasma_larmor_toroidal_triton_profile656)_ 2.30128449683585800e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_657_____________________ (freq_plasma_larmor_toroidal_triton_profile657)_ 2.29989650859892480e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_658_____________________ (freq_plasma_larmor_toroidal_triton_profile658)_ 2.29851019364497699e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_659_____________________ (freq_plasma_larmor_toroidal_triton_profile659)_ 2.29712554895001017e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_660_____________________ (freq_plasma_larmor_toroidal_triton_profile660)_ 2.29574257149730101e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_661_____________________ (freq_plasma_larmor_toroidal_triton_profile661)_ 2.29436125827738680e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_662_____________________ (freq_plasma_larmor_toroidal_triton_profile662)_ 2.29298160628804378e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_663_____________________ (freq_plasma_larmor_toroidal_triton_profile663)_ 2.29160361253426522e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_664_____________________ (freq_plasma_larmor_toroidal_triton_profile664)_ 2.29022727402823865e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_665_____________________ (freq_plasma_larmor_toroidal_triton_profile665)_ 2.28885258778932579e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_666_____________________ (freq_plasma_larmor_toroidal_triton_profile666)_ 2.28747955084404126e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_667_____________________ (freq_plasma_larmor_toroidal_triton_profile667)_ 2.28610816022602953e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_668_____________________ (freq_plasma_larmor_toroidal_triton_profile668)_ 2.28473841297604404e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_669_____________________ (freq_plasma_larmor_toroidal_triton_profile669)_ 2.28337030614192635e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_670_____________________ (freq_plasma_larmor_toroidal_triton_profile670)_ 2.28200383677858599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_671_____________________ (freq_plasma_larmor_toroidal_triton_profile671)_ 2.28063900194797628e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_672_____________________ (freq_plasma_larmor_toroidal_triton_profile672)_ 2.27927579871907793e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_673_____________________ (freq_plasma_larmor_toroidal_triton_profile673)_ 2.27791422416787148e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_674_____________________ (freq_plasma_larmor_toroidal_triton_profile674)_ 2.27655427537732385e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_675_____________________ (freq_plasma_larmor_toroidal_triton_profile675)_ 2.27519594943736047e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_676_____________________ (freq_plasma_larmor_toroidal_triton_profile676)_ 2.27383924344485216e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_677_____________________ (freq_plasma_larmor_toroidal_triton_profile677)_ 2.27248415450358540e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_678_____________________ (freq_plasma_larmor_toroidal_triton_profile678)_ 2.27113067972425073e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_679_____________________ (freq_plasma_larmor_toroidal_triton_profile679)_ 2.26977881622441486e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_680_____________________ (freq_plasma_larmor_toroidal_triton_profile680)_ 2.26842856112850532e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_681_____________________ (freq_plasma_larmor_toroidal_triton_profile681)_ 2.26707991156778671e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_682_____________________ (freq_plasma_larmor_toroidal_triton_profile682)_ 2.26573286468034275e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_683_____________________ (freq_plasma_larmor_toroidal_triton_profile683)_ 2.26438741761105508e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_684_____________________ (freq_plasma_larmor_toroidal_triton_profile684)_ 2.26304356751158275e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_685_____________________ (freq_plasma_larmor_toroidal_triton_profile685)_ 2.26170131154034212e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_686_____________________ (freq_plasma_larmor_toroidal_triton_profile686)_ 2.26036064686248787e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_687_____________________ (freq_plasma_larmor_toroidal_triton_profile687)_ 2.25902157064989172e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_688_____________________ (freq_plasma_larmor_toroidal_triton_profile688)_ 2.25768408008112349e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_689_____________________ (freq_plasma_larmor_toroidal_triton_profile689)_ 2.25634817234143019e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_690_____________________ (freq_plasma_larmor_toroidal_triton_profile690)_ 2.25501384462271854e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_691_____________________ (freq_plasma_larmor_toroidal_triton_profile691)_ 2.25368109412353262e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_692_____________________ (freq_plasma_larmor_toroidal_triton_profile692)_ 2.25234991804903522e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_693_____________________ (freq_plasma_larmor_toroidal_triton_profile693)_ 2.25102031361098997e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_694_____________________ (freq_plasma_larmor_toroidal_triton_profile694)_ 2.24969227802773826e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_695_____________________ (freq_plasma_larmor_toroidal_triton_profile695)_ 2.24836580852418467e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_696_____________________ (freq_plasma_larmor_toroidal_triton_profile696)_ 2.24704090233177170e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_697_____________________ (freq_plasma_larmor_toroidal_triton_profile697)_ 2.24571755668846667e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_698_____________________ (freq_plasma_larmor_toroidal_triton_profile698)_ 2.24439576883873865e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_699_____________________ (freq_plasma_larmor_toroidal_triton_profile699)_ 2.24307553603353910e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_700_____________________ (freq_plasma_larmor_toroidal_triton_profile700)_ 2.24175685553028621e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_701_____________________ (freq_plasma_larmor_toroidal_triton_profile701)_ 2.24043972459284179e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_702_____________________ (freq_plasma_larmor_toroidal_triton_profile702)_ 2.23912414049149565e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_703_____________________ (freq_plasma_larmor_toroidal_triton_profile703)_ 2.23781010050294437e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_704_____________________ (freq_plasma_larmor_toroidal_triton_profile704)_ 2.23649760191027410e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_705_____________________ (freq_plasma_larmor_toroidal_triton_profile705)_ 2.23518664200294055e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_706_____________________ (freq_plasma_larmor_toroidal_triton_profile706)_ 2.23387721807675250e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_707_____________________ (freq_plasma_larmor_toroidal_triton_profile707)_ 2.23256932743385062e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_708_____________________ (freq_plasma_larmor_toroidal_triton_profile708)_ 2.23126296738269031e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_709_____________________ (freq_plasma_larmor_toroidal_triton_profile709)_ 2.22995813523802161e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_710_____________________ (freq_plasma_larmor_toroidal_triton_profile710)_ 2.22865482832087502e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_711_____________________ (freq_plasma_larmor_toroidal_triton_profile711)_ 2.22735304395853803e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_712_____________________ (freq_plasma_larmor_toroidal_triton_profile712)_ 2.22605277948454022e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_713_____________________ (freq_plasma_larmor_toroidal_triton_profile713)_ 2.22475403223863244e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_714_____________________ (freq_plasma_larmor_toroidal_triton_profile714)_ 2.22345679956677370e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_715_____________________ (freq_plasma_larmor_toroidal_triton_profile715)_ 2.22216107882110514e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_716_____________________ (freq_plasma_larmor_toroidal_triton_profile716)_ 2.22086686735993996e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_717_____________________ (freq_plasma_larmor_toroidal_triton_profile717)_ 2.21957416254773960e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_718_____________________ (freq_plasma_larmor_toroidal_triton_profile718)_ 2.21828296175509952e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_719_____________________ (freq_plasma_larmor_toroidal_triton_profile719)_ 2.21699326235873066e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_720_____________________ (freq_plasma_larmor_toroidal_triton_profile720)_ 2.21570506174143888e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_721_____________________ (freq_plasma_larmor_toroidal_triton_profile721)_ 2.21441835729211196e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_722_____________________ (freq_plasma_larmor_toroidal_triton_profile722)_ 2.21313314640569724e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_723_____________________ (freq_plasma_larmor_toroidal_triton_profile723)_ 2.21184942648318820e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_724_____________________ (freq_plasma_larmor_toroidal_triton_profile724)_ 2.21056719493160360e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_725_____________________ (freq_plasma_larmor_toroidal_triton_profile725)_ 2.20928644916397296e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_726_____________________ (freq_plasma_larmor_toroidal_triton_profile726)_ 2.20800718659931496e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_727_____________________ (freq_plasma_larmor_toroidal_triton_profile727)_ 2.20672940466262586e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_728_____________________ (freq_plasma_larmor_toroidal_triton_profile728)_ 2.20545310078485683e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_729_____________________ (freq_plasma_larmor_toroidal_triton_profile729)_ 2.20417827240290008e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_730_____________________ (freq_plasma_larmor_toroidal_triton_profile730)_ 2.20290491695957109e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_731_____________________ (freq_plasma_larmor_toroidal_triton_profile731)_ 2.20163303190358952e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_732_____________________ (freq_plasma_larmor_toroidal_triton_profile732)_ 2.20036261468956545e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_733_____________________ (freq_plasma_larmor_toroidal_triton_profile733)_ 2.19909366277798004e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_734_____________________ (freq_plasma_larmor_toroidal_triton_profile734)_ 2.19782617363516800e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_735_____________________ (freq_plasma_larmor_toroidal_triton_profile735)_ 2.19656014473330490e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_736_____________________ (freq_plasma_larmor_toroidal_triton_profile736)_ 2.19529557355038337e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_737_____________________ (freq_plasma_larmor_toroidal_triton_profile737)_ 2.19403245757020563e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_738_____________________ (freq_plasma_larmor_toroidal_triton_profile738)_ 2.19277079428235590e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_739_____________________ (freq_plasma_larmor_toroidal_triton_profile739)_ 2.19151058118219338e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_740_____________________ (freq_plasma_larmor_toroidal_triton_profile740)_ 2.19025181577083133e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_741_____________________ (freq_plasma_larmor_toroidal_triton_profile741)_ 2.18899449555511884e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_742_____________________ (freq_plasma_larmor_toroidal_triton_profile742)_ 2.18773861804762855e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_743_____________________ (freq_plasma_larmor_toroidal_triton_profile743)_ 2.18648418076663837e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_744_____________________ (freq_plasma_larmor_toroidal_triton_profile744)_ 2.18523118123611286e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_745_____________________ (freq_plasma_larmor_toroidal_triton_profile745)_ 2.18397961698569134e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_746_____________________ (freq_plasma_larmor_toroidal_triton_profile746)_ 2.18272948555066772e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_747_____________________ (freq_plasma_larmor_toroidal_triton_profile747)_ 2.18148078447197787e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_748_____________________ (freq_plasma_larmor_toroidal_triton_profile748)_ 2.18023351129617915e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_749_____________________ (freq_plasma_larmor_toroidal_triton_profile749)_ 2.17898766357543804e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_750_____________________ (freq_plasma_larmor_toroidal_triton_profile750)_ 2.17774323886751384e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_751_____________________ (freq_plasma_larmor_toroidal_triton_profile751)_ 2.17650023473574072e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_752_____________________ (freq_plasma_larmor_toroidal_triton_profile752)_ 2.17525864874901138e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_753_____________________ (freq_plasma_larmor_toroidal_triton_profile753)_ 2.17401847848176546e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_754_____________________ (freq_plasma_larmor_toroidal_triton_profile754)_ 2.17277972151397020e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_755_____________________ (freq_plasma_larmor_toroidal_triton_profile755)_ 2.17154237543110251e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_756_____________________ (freq_plasma_larmor_toroidal_triton_profile756)_ 2.17030643782414198e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_757_____________________ (freq_plasma_larmor_toroidal_triton_profile757)_ 2.16907190628954321e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_758_____________________ (freq_plasma_larmor_toroidal_triton_profile758)_ 2.16783877842923105e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_759_____________________ (freq_plasma_larmor_toroidal_triton_profile759)_ 2.16660705185057744e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_760_____________________ (freq_plasma_larmor_toroidal_triton_profile760)_ 2.16537672416639253e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_761_____________________ (freq_plasma_larmor_toroidal_triton_profile761)_ 2.16414779299490154e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_762_____________________ (freq_plasma_larmor_toroidal_triton_profile762)_ 2.16292025595973767e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_763_____________________ (freq_plasma_larmor_toroidal_triton_profile763)_ 2.16169411068991870e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_764_____________________ (freq_plasma_larmor_toroidal_triton_profile764)_ 2.16046935481983982e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_765_____________________ (freq_plasma_larmor_toroidal_triton_profile765)_ 2.15924598598925062e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_766_____________________ (freq_plasma_larmor_toroidal_triton_profile766)_ 2.15802400184324645e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_767_____________________ (freq_plasma_larmor_toroidal_triton_profile767)_ 2.15680340003224947e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_768_____________________ (freq_plasma_larmor_toroidal_triton_profile768)_ 2.15558417821199410e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_769_____________________ (freq_plasma_larmor_toroidal_triton_profile769)_ 2.15436633404351249e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_770_____________________ (freq_plasma_larmor_toroidal_triton_profile770)_ 2.15314986519312076e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_771_____________________ (freq_plasma_larmor_toroidal_triton_profile771)_ 2.15193476933240257e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_772_____________________ (freq_plasma_larmor_toroidal_triton_profile772)_ 2.15072104413819350e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_773_____________________ (freq_plasma_larmor_toroidal_triton_profile773)_ 2.14950868729256913e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_774_____________________ (freq_plasma_larmor_toroidal_triton_profile774)_ 2.14829769648282602e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_775_____________________ (freq_plasma_larmor_toroidal_triton_profile775)_ 2.14708806940147355e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_776_____________________ (freq_plasma_larmor_toroidal_triton_profile776)_ 2.14587980374621078e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_777_____________________ (freq_plasma_larmor_toroidal_triton_profile777)_ 2.14467289721991941e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_778_____________________ (freq_plasma_larmor_toroidal_triton_profile778)_ 2.14346734753064439e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_779_____________________ (freq_plasma_larmor_toroidal_triton_profile779)_ 2.14226315239158273e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_780_____________________ (freq_plasma_larmor_toroidal_triton_profile780)_ 2.14106030952106491e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_781_____________________ (freq_plasma_larmor_toroidal_triton_profile781)_ 2.13985881664254628e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_782_____________________ (freq_plasma_larmor_toroidal_triton_profile782)_ 2.13865867148458622e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_783_____________________ (freq_plasma_larmor_toroidal_triton_profile783)_ 2.13745987178083919e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_784_____________________ (freq_plasma_larmor_toroidal_triton_profile784)_ 2.13626241527003720e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_785_____________________ (freq_plasma_larmor_toroidal_triton_profile785)_ 2.13506629969597794e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_786_____________________ (freq_plasma_larmor_toroidal_triton_profile786)_ 2.13387152280750796e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_787_____________________ (freq_plasma_larmor_toroidal_triton_profile787)_ 2.13267808235851042e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_788_____________________ (freq_plasma_larmor_toroidal_triton_profile788)_ 2.13148597610789090e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_789_____________________ (freq_plasma_larmor_toroidal_triton_profile789)_ 2.13029520181956291e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_790_____________________ (freq_plasma_larmor_toroidal_triton_profile790)_ 2.12910575726243295e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_791_____________________ (freq_plasma_larmor_toroidal_triton_profile791)_ 2.12791764021038897e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_792_____________________ (freq_plasma_larmor_toroidal_triton_profile792)_ 2.12673084844228476e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_793_____________________ (freq_plasma_larmor_toroidal_triton_profile793)_ 2.12554537974192686e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_794_____________________ (freq_plasma_larmor_toroidal_triton_profile794)_ 2.12436123189805970e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_795_____________________ (freq_plasma_larmor_toroidal_triton_profile795)_ 2.12317840270435214e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_796_____________________ (freq_plasma_larmor_toroidal_triton_profile796)_ 2.12199688995938636e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_797_____________________ (freq_plasma_larmor_toroidal_triton_profile797)_ 2.12081669146663882e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_798_____________________ (freq_plasma_larmor_toroidal_triton_profile798)_ 2.11963780503447317e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_799_____________________ (freq_plasma_larmor_toroidal_triton_profile799)_ 2.11846022847612016e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_800_____________________ (freq_plasma_larmor_toroidal_triton_profile800)_ 2.11728395960967094e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_801_____________________ (freq_plasma_larmor_toroidal_triton_profile801)_ 2.11610899625805579e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_802_____________________ (freq_plasma_larmor_toroidal_triton_profile802)_ 2.11493533624903932e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_803_____________________ (freq_plasma_larmor_toroidal_triton_profile803)_ 2.11376297741519772e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_804_____________________ (freq_plasma_larmor_toroidal_triton_profile804)_ 2.11259191759391539e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_805_____________________ (freq_plasma_larmor_toroidal_triton_profile805)_ 2.11142215462736264e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_806_____________________ (freq_plasma_larmor_toroidal_triton_profile806)_ 2.11025368636248894e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_807_____________________ (freq_plasma_larmor_toroidal_triton_profile807)_ 2.10908651065100469e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_808_____________________ (freq_plasma_larmor_toroidal_triton_profile808)_ 2.10792062534937374e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_809_____________________ (freq_plasma_larmor_toroidal_triton_profile809)_ 2.10675602831879407e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_810_____________________ (freq_plasma_larmor_toroidal_triton_profile810)_ 2.10559271742518917e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_811_____________________ (freq_plasma_larmor_toroidal_triton_profile811)_ 2.10443069053919278e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_812_____________________ (freq_plasma_larmor_toroidal_triton_profile812)_ 2.10326994553613774e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_813_____________________ (freq_plasma_larmor_toroidal_triton_profile813)_ 2.10211048029604033e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_814_____________________ (freq_plasma_larmor_toroidal_triton_profile814)_ 2.10095229270359091e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_815_____________________ (freq_plasma_larmor_toroidal_triton_profile815)_ 2.09979538064813763e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_816_____________________ (freq_plasma_larmor_toroidal_triton_profile816)_ 2.09863974202367477e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_817_____________________ (freq_plasma_larmor_toroidal_triton_profile817)_ 2.09748537472883277e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_818_____________________ (freq_plasma_larmor_toroidal_triton_profile818)_ 2.09633227666685879e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_819_____________________ (freq_plasma_larmor_toroidal_triton_profile819)_ 2.09518044574561380e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_820_____________________ (freq_plasma_larmor_toroidal_triton_profile820)_ 2.09402987987754904e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_821_____________________ (freq_plasma_larmor_toroidal_triton_profile821)_ 2.09288057697970197e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_822_____________________ (freq_plasma_larmor_toroidal_triton_profile822)_ 2.09173253497367911e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_823_____________________ (freq_plasma_larmor_toroidal_triton_profile823)_ 2.09058575178564563e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_824_____________________ (freq_plasma_larmor_toroidal_triton_profile824)_ 2.08944022534631044e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_825_____________________ (freq_plasma_larmor_toroidal_triton_profile825)_ 2.08829595359091908e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_826_____________________ (freq_plasma_larmor_toroidal_triton_profile826)_ 2.08715293445923217e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_827_____________________ (freq_plasma_larmor_toroidal_triton_profile827)_ 2.08601116589552350e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_828_____________________ (freq_plasma_larmor_toroidal_triton_profile828)_ 2.08487064584856033e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_829_____________________ (freq_plasma_larmor_toroidal_triton_profile829)_ 2.08373137227159403e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_830_____________________ (freq_plasma_larmor_toroidal_triton_profile830)_ 2.08259334312234707e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_831_____________________ (freq_plasma_larmor_toroidal_triton_profile831)_ 2.08145655636300035e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_832_____________________ (freq_plasma_larmor_toroidal_triton_profile832)_ 2.08032100996018425e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_833_____________________ (freq_plasma_larmor_toroidal_triton_profile833)_ 2.07918670188496038e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_834_____________________ (freq_plasma_larmor_toroidal_triton_profile834)_ 2.07805363011281565e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_835_____________________ (freq_plasma_larmor_toroidal_triton_profile835)_ 2.07692179262364767e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_836_____________________ (freq_plasma_larmor_toroidal_triton_profile836)_ 2.07579118740175143e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_837_____________________ (freq_plasma_larmor_toroidal_triton_profile837)_ 2.07466181243580915e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_838_____________________ (freq_plasma_larmor_toroidal_triton_profile838)_ 2.07353366571887806e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_839_____________________ (freq_plasma_larmor_toroidal_triton_profile839)_ 2.07240674524837844e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_840_____________________ (freq_plasma_larmor_toroidal_triton_profile840)_ 2.07128104902608246e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_841_____________________ (freq_plasma_larmor_toroidal_triton_profile841)_ 2.07015657505809814e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_842_____________________ (freq_plasma_larmor_toroidal_triton_profile842)_ 2.06903332135486566e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_843_____________________ (freq_plasma_larmor_toroidal_triton_profile843)_ 2.06791128593113683e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_844_____________________ (freq_plasma_larmor_toroidal_triton_profile844)_ 2.06679046680597141e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_845_____________________ (freq_plasma_larmor_toroidal_triton_profile845)_ 2.06567086200271770e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_846_____________________ (freq_plasma_larmor_toroidal_triton_profile846)_ 2.06455246954900771e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_847_____________________ (freq_plasma_larmor_toroidal_triton_profile847)_ 2.06343528747674078e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_848_____________________ (freq_plasma_larmor_toroidal_triton_profile848)_ 2.06231931382207535e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_849_____________________ (freq_plasma_larmor_toroidal_triton_profile849)_ 2.06120454662541449e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_850_____________________ (freq_plasma_larmor_toroidal_triton_profile850)_ 2.06009098393139765e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_851_____________________ (freq_plasma_larmor_toroidal_triton_profile851)_ 2.05897862378888577e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_852_____________________ (freq_plasma_larmor_toroidal_triton_profile852)_ 2.05786746425095350e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_853_____________________ (freq_plasma_larmor_toroidal_triton_profile853)_ 2.05675750337487422e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_854_____________________ (freq_plasma_larmor_toroidal_triton_profile854)_ 2.05564873922211155e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_855_____________________ (freq_plasma_larmor_toroidal_triton_profile855)_ 2.05454116985830665e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_856_____________________ (freq_plasma_larmor_toroidal_triton_profile856)_ 2.05343479335326701e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_857_____________________ (freq_plasma_larmor_toroidal_triton_profile857)_ 2.05232960778095685e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_858_____________________ (freq_plasma_larmor_toroidal_triton_profile858)_ 2.05122561121948212e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_859_____________________ (freq_plasma_larmor_toroidal_triton_profile859)_ 2.05012280175108463e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_860_____________________ (freq_plasma_larmor_toroidal_triton_profile860)_ 2.04902117746212594e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_861_____________________ (freq_plasma_larmor_toroidal_triton_profile861)_ 2.04792073644308150e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_862_____________________ (freq_plasma_larmor_toroidal_triton_profile862)_ 2.04682147678852193e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_863_____________________ (freq_plasma_larmor_toroidal_triton_profile863)_ 2.04572339659711234e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_864_____________________ (freq_plasma_larmor_toroidal_triton_profile864)_ 2.04462649397159070e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_865_____________________ (freq_plasma_larmor_toroidal_triton_profile865)_ 2.04353076701876633e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_866_____________________ (freq_plasma_larmor_toroidal_triton_profile866)_ 2.04243621384950019e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_867_____________________ (freq_plasma_larmor_toroidal_triton_profile867)_ 2.04134283257870302e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_868_____________________ (freq_plasma_larmor_toroidal_triton_profile868)_ 2.04025062132531665e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_869_____________________ (freq_plasma_larmor_toroidal_triton_profile869)_ 2.03915957821230888e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_870_____________________ (freq_plasma_larmor_toroidal_triton_profile870)_ 2.03806970136665776e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_871_____________________ (freq_plasma_larmor_toroidal_triton_profile871)_ 2.03698098891934678e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_872_____________________ (freq_plasma_larmor_toroidal_triton_profile872)_ 2.03589343900534809e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_873_____________________ (freq_plasma_larmor_toroidal_triton_profile873)_ 2.03480704976361655e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_874_____________________ (freq_plasma_larmor_toroidal_triton_profile874)_ 2.03372181933707558e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_875_____________________ (freq_plasma_larmor_toroidal_triton_profile875)_ 2.03263774587261043e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_876_____________________ (freq_plasma_larmor_toroidal_triton_profile876)_ 2.03155482752105333e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_877_____________________ (freq_plasma_larmor_toroidal_triton_profile877)_ 2.03047306243717633e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_878_____________________ (freq_plasma_larmor_toroidal_triton_profile878)_ 2.02939244877967909e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_879_____________________ (freq_plasma_larmor_toroidal_triton_profile879)_ 2.02831298471117914e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_880_____________________ (freq_plasma_larmor_toroidal_triton_profile880)_ 2.02723466839820147e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_881_____________________ (freq_plasma_larmor_toroidal_triton_profile881)_ 2.02615749801116697e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_882_____________________ (freq_plasma_larmor_toroidal_triton_profile882)_ 2.02508147172438540e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_883_____________________ (freq_plasma_larmor_toroidal_triton_profile883)_ 2.02400658771603853e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_884_____________________ (freq_plasma_larmor_toroidal_triton_profile884)_ 2.02293284416817874e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_885_____________________ (freq_plasma_larmor_toroidal_triton_profile885)_ 2.02186023926671073e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_886_____________________ (freq_plasma_larmor_toroidal_triton_profile886)_ 2.02078877120138705e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_887_____________________ (freq_plasma_larmor_toroidal_triton_profile887)_ 2.01971843816579282e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_888_____________________ (freq_plasma_larmor_toroidal_triton_profile888)_ 2.01864923835734092e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_889_____________________ (freq_plasma_larmor_toroidal_triton_profile889)_ 2.01758116997725740e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_890_____________________ (freq_plasma_larmor_toroidal_triton_profile890)_ 2.01651423123057522e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_891_____________________ (freq_plasma_larmor_toroidal_triton_profile891)_ 2.01544842032611892e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_892_____________________ (freq_plasma_larmor_toroidal_triton_profile892)_ 2.01438373547650129e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_893_____________________ (freq_plasma_larmor_toroidal_triton_profile893)_ 2.01332017489810809e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_894_____________________ (freq_plasma_larmor_toroidal_triton_profile894)_ 2.01225773681109063e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_895_____________________ (freq_plasma_larmor_toroidal_triton_profile895)_ 2.01119641943935528e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_896_____________________ (freq_plasma_larmor_toroidal_triton_profile896)_ 2.01013622101055197e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_897_____________________ (freq_plasma_larmor_toroidal_triton_profile897)_ 2.00907713975606784e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_898_____________________ (freq_plasma_larmor_toroidal_triton_profile898)_ 2.00801917391101494e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_899_____________________ (freq_plasma_larmor_toroidal_triton_profile899)_ 2.00696232171421945e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_900_____________________ (freq_plasma_larmor_toroidal_triton_profile900)_ 2.00590658140821494e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_901_____________________ (freq_plasma_larmor_toroidal_triton_profile901)_ 2.00485195123923123e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_902_____________________ (freq_plasma_larmor_toroidal_triton_profile902)_ 2.00379842945718169e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_903_____________________ (freq_plasma_larmor_toroidal_triton_profile903)_ 2.00274601431566030e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_904_____________________ (freq_plasma_larmor_toroidal_triton_profile904)_ 2.00169470407192484e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_905_____________________ (freq_plasma_larmor_toroidal_triton_profile905)_ 2.00064449698689245e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_906_____________________ (freq_plasma_larmor_toroidal_triton_profile906)_ 1.99959539132512696e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_907_____________________ (freq_plasma_larmor_toroidal_triton_profile907)_ 1.99854738535483070e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_908_____________________ (freq_plasma_larmor_toroidal_triton_profile908)_ 1.99750047734783515e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_909_____________________ (freq_plasma_larmor_toroidal_triton_profile909)_ 1.99645466557959020e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_910_____________________ (freq_plasma_larmor_toroidal_triton_profile910)_ 1.99540994832915589e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_911_____________________ (freq_plasma_larmor_toroidal_triton_profile911)_ 1.99436632387919314e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_912_____________________ (freq_plasma_larmor_toroidal_triton_profile912)_ 1.99332379051595256e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_913_____________________ (freq_plasma_larmor_toroidal_triton_profile913)_ 1.99228234652926698e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_914_____________________ (freq_plasma_larmor_toroidal_triton_profile914)_ 1.99124199021254145e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_915_____________________ (freq_plasma_larmor_toroidal_triton_profile915)_ 1.99020271986274384e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_916_____________________ (freq_plasma_larmor_toroidal_triton_profile916)_ 1.98916453378039487e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_917_____________________ (freq_plasma_larmor_toroidal_triton_profile917)_ 1.98812743026956059e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_918_____________________ (freq_plasma_larmor_toroidal_triton_profile918)_ 1.98709140763784125e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_919_____________________ (freq_plasma_larmor_toroidal_triton_profile919)_ 1.98605646419636309e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_920_____________________ (freq_plasma_larmor_toroidal_triton_profile920)_ 1.98502259825976975e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_921_____________________ (freq_plasma_larmor_toroidal_triton_profile921)_ 1.98398980814621076e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_922_____________________ (freq_plasma_larmor_toroidal_triton_profile922)_ 1.98295809217733592e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_923_____________________ (freq_plasma_larmor_toroidal_triton_profile923)_ 1.98192744867828265e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_924_____________________ (freq_plasma_larmor_toroidal_triton_profile924)_ 1.98089787597767152e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_925_____________________ (freq_plasma_larmor_toroidal_triton_profile925)_ 1.97986937240758911e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_926_____________________ (freq_plasma_larmor_toroidal_triton_profile926)_ 1.97884193630358949e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_927_____________________ (freq_plasma_larmor_toroidal_triton_profile927)_ 1.97781556600467674e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_928_____________________ (freq_plasma_larmor_toroidal_triton_profile928)_ 1.97679025985330082e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_929_____________________ (freq_plasma_larmor_toroidal_triton_profile929)_ 1.97576601619534567e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_930_____________________ (freq_plasma_larmor_toroidal_triton_profile930)_ 1.97474283338012286e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_931_____________________ (freq_plasma_larmor_toroidal_triton_profile931)_ 1.97372070976036079e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_932_____________________ (freq_plasma_larmor_toroidal_triton_profile932)_ 1.97269964369219765e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_933_____________________ (freq_plasma_larmor_toroidal_triton_profile933)_ 1.97167963353516906e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_934_____________________ (freq_plasma_larmor_toroidal_triton_profile934)_ 1.97066067765220515e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_935_____________________ (freq_plasma_larmor_toroidal_triton_profile935)_ 1.96964277440961599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_936_____________________ (freq_plasma_larmor_toroidal_triton_profile936)_ 1.96862592217708677e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_937_____________________ (freq_plasma_larmor_toroidal_triton_profile937)_ 1.96761011932766587e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_938_____________________ (freq_plasma_larmor_toroidal_triton_profile938)_ 1.96659536423776001e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_939_____________________ (freq_plasma_larmor_toroidal_triton_profile939)_ 1.96558165528712235e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_940_____________________ (freq_plasma_larmor_toroidal_triton_profile940)_ 1.96456899085884430e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_941_____________________ (freq_plasma_larmor_toroidal_triton_profile941)_ 1.96355736933934987e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_942_____________________ (freq_plasma_larmor_toroidal_triton_profile942)_ 1.96254678911838233e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_943_____________________ (freq_plasma_larmor_toroidal_triton_profile943)_ 1.96153724858900085e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_944_____________________ (freq_plasma_larmor_toroidal_triton_profile944)_ 1.96052874614756666e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_945_____________________ (freq_plasma_larmor_toroidal_triton_profile945)_ 1.95952128019373976e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_946_____________________ (freq_plasma_larmor_toroidal_triton_profile946)_ 1.95851484913046584e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_947_____________________ (freq_plasma_larmor_toroidal_triton_profile947)_ 1.95750945136397220e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_948_____________________ (freq_plasma_larmor_toroidal_triton_profile948)_ 1.95650508530375399e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_949_____________________ (freq_plasma_larmor_toroidal_triton_profile949)_ 1.95550174936257303e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_950_____________________ (freq_plasma_larmor_toroidal_triton_profile950)_ 1.95449944195644110e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_951_____________________ (freq_plasma_larmor_toroidal_triton_profile951)_ 1.95349816150461957e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_952_____________________ (freq_plasma_larmor_toroidal_triton_profile952)_ 1.95249790642960407e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_953_____________________ (freq_plasma_larmor_toroidal_triton_profile953)_ 1.95149867515712269e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_954_____________________ (freq_plasma_larmor_toroidal_triton_profile954)_ 1.95050046611612104e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_955_____________________ (freq_plasma_larmor_toroidal_triton_profile955)_ 1.94950327773876116e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_956_____________________ (freq_plasma_larmor_toroidal_triton_profile956)_ 1.94850710846040696e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_957_____________________ (freq_plasma_larmor_toroidal_triton_profile957)_ 1.94751195671962053e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_958_____________________ (freq_plasma_larmor_toroidal_triton_profile958)_ 1.94651782095815055e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_959_____________________ (freq_plasma_larmor_toroidal_triton_profile959)_ 1.94552469962092713e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_960_____________________ (freq_plasma_larmor_toroidal_triton_profile960)_ 1.94453259115605131e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_961_____________________ (freq_plasma_larmor_toroidal_triton_profile961)_ 1.94354149401478954e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_962_____________________ (freq_plasma_larmor_toroidal_triton_profile962)_ 1.94255140665156282e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_963_____________________ (freq_plasma_larmor_toroidal_triton_profile963)_ 1.94156232752393968e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_964_____________________ (freq_plasma_larmor_toroidal_triton_profile964)_ 1.94057425509262979e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_965_____________________ (freq_plasma_larmor_toroidal_triton_profile965)_ 1.93958718782147355e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_966_____________________ (freq_plasma_larmor_toroidal_triton_profile966)_ 1.93860112417743653e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_967_____________________ (freq_plasma_larmor_toroidal_triton_profile967)_ 1.93761606263059787e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_968_____________________ (freq_plasma_larmor_toroidal_triton_profile968)_ 1.93663200165414773e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_969_____________________ (freq_plasma_larmor_toroidal_triton_profile969)_ 1.93564893972437382e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_970_____________________ (freq_plasma_larmor_toroidal_triton_profile970)_ 1.93466687532065809e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_971_____________________ (freq_plasma_larmor_toroidal_triton_profile971)_ 1.93368580692546479e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_972_____________________ (freq_plasma_larmor_toroidal_triton_profile972)_ 1.93270573302433714e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_973_____________________ (freq_plasma_larmor_toroidal_triton_profile973)_ 1.93172665210588500e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_974_____________________ (freq_plasma_larmor_toroidal_triton_profile974)_ 1.93074856266178079e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_975_____________________ (freq_plasma_larmor_toroidal_triton_profile975)_ 1.92977146318674944e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_976_____________________ (freq_plasma_larmor_toroidal_triton_profile976)_ 1.92879535217856206e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_977_____________________ (freq_plasma_larmor_toroidal_triton_profile977)_ 1.92782022813802660e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_978_____________________ (freq_plasma_larmor_toroidal_triton_profile978)_ 1.92684608956898302e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_979_____________________ (freq_plasma_larmor_toroidal_triton_profile979)_ 1.92587293497829139e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_980_____________________ (freq_plasma_larmor_toroidal_triton_profile980)_ 1.92490076287582926e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_981_____________________ (freq_plasma_larmor_toroidal_triton_profile981)_ 1.92392957177447900e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_982_____________________ (freq_plasma_larmor_toroidal_triton_profile982)_ 1.92295936019012481e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_983_____________________ (freq_plasma_larmor_toroidal_triton_profile983)_ 1.92199012664164156e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_984_____________________ (freq_plasma_larmor_toroidal_triton_profile984)_ 1.92102186965089031e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_985_____________________ (freq_plasma_larmor_toroidal_triton_profile985)_ 1.92005458774270751e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_986_____________________ (freq_plasma_larmor_toroidal_triton_profile986)_ 1.91908827944490016e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_987_____________________ (freq_plasma_larmor_toroidal_triton_profile987)_ 1.91812294328823797e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_988_____________________ (freq_plasma_larmor_toroidal_triton_profile988)_ 1.91715857780644409e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_989_____________________ (freq_plasma_larmor_toroidal_triton_profile989)_ 1.91619518153618947e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_990_____________________ (freq_plasma_larmor_toroidal_triton_profile990)_ 1.91523275301708542e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_991_____________________ (freq_plasma_larmor_toroidal_triton_profile991)_ 1.91427129079167545e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_992_____________________ (freq_plasma_larmor_toroidal_triton_profile992)_ 1.91331079340542741e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_993_____________________ (freq_plasma_larmor_toroidal_triton_profile993)_ 1.91235125940672904e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_994_____________________ (freq_plasma_larmor_toroidal_triton_profile994)_ 1.91139268734687567e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_995_____________________ (freq_plasma_larmor_toroidal_triton_profile995)_ 1.91043507578006908e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_996_____________________ (freq_plasma_larmor_toroidal_triton_profile996)_ 1.90947842326340340e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_997_____________________ (freq_plasma_larmor_toroidal_triton_profile997)_ 1.90852272835686579e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_998_____________________ (freq_plasma_larmor_toroidal_triton_profile998)_ 1.90756798962332010e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_999_____________________ (freq_plasma_larmor_toroidal_triton_profile999)_ 1.90661420562850870e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_1000____________________ (freq_plasma_larmor_toroidal_triton_profile1000)_ 1.90566137494103797e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_1001____________________ (freq_plasma_larmor_toroidal_triton_profile1001)_ 1.90470949613237642e+07 +Volume_averaged_electron_upper_hybrid_frequency_(ωₕ)_(Hz)________________ (freq_plasma_upper_hybrid_vol_avg)_ 1.61358047262937500e+11 +Plasma_upper_hybrid_frequency_at_point_0_________________________________ (freq_plasma_upper_hybrid_profile0)_ 2.16495345824955994e+11 +Plasma_upper_hybrid_frequency_at_point_1_________________________________ (freq_plasma_upper_hybrid_profile1)_ 2.16456136370953583e+11 +Plasma_upper_hybrid_frequency_at_point_2_________________________________ (freq_plasma_upper_hybrid_profile2)_ 2.16417524017701569e+11 +Plasma_upper_hybrid_frequency_at_point_3_________________________________ (freq_plasma_upper_hybrid_profile3)_ 2.16379506678443634e+11 +Plasma_upper_hybrid_frequency_at_point_4_________________________________ (freq_plasma_upper_hybrid_profile4)_ 2.16342082272003876e+11 +Plasma_upper_hybrid_frequency_at_point_5_________________________________ (freq_plasma_upper_hybrid_profile5)_ 2.16305248722777618e+11 +Plasma_upper_hybrid_frequency_at_point_6_________________________________ (freq_plasma_upper_hybrid_profile6)_ 2.16269003960722107e+11 +Plasma_upper_hybrid_frequency_at_point_7_________________________________ (freq_plasma_upper_hybrid_profile7)_ 2.16233345921347473e+11 +Plasma_upper_hybrid_frequency_at_point_8_________________________________ (freq_plasma_upper_hybrid_profile8)_ 2.16198272545707550e+11 +Plasma_upper_hybrid_frequency_at_point_9_________________________________ (freq_plasma_upper_hybrid_profile9)_ 2.16163781780390472e+11 +Plasma_upper_hybrid_frequency_at_point_10________________________________ (freq_plasma_upper_hybrid_profile10)_ 2.16129871577510132e+11 +Plasma_upper_hybrid_frequency_at_point_11________________________________ (freq_plasma_upper_hybrid_profile11)_ 2.16096539894696838e+11 +Plasma_upper_hybrid_frequency_at_point_12________________________________ (freq_plasma_upper_hybrid_profile12)_ 2.16063784695088562e+11 +Plasma_upper_hybrid_frequency_at_point_13________________________________ (freq_plasma_upper_hybrid_profile13)_ 2.16031603947322052e+11 +Plasma_upper_hybrid_frequency_at_point_14________________________________ (freq_plasma_upper_hybrid_profile14)_ 2.15999995625523712e+11 +Plasma_upper_hybrid_frequency_at_point_15________________________________ (freq_plasma_upper_hybrid_profile15)_ 2.15968957709301392e+11 +Plasma_upper_hybrid_frequency_at_point_16________________________________ (freq_plasma_upper_hybrid_profile16)_ 2.15938488183734924e+11 +Plasma_upper_hybrid_frequency_at_point_17________________________________ (freq_plasma_upper_hybrid_profile17)_ 2.15908585039368073e+11 +Plasma_upper_hybrid_frequency_at_point_18________________________________ (freq_plasma_upper_hybrid_profile18)_ 2.15879246272199310e+11 +Plasma_upper_hybrid_frequency_at_point_19________________________________ (freq_plasma_upper_hybrid_profile19)_ 2.15850469883673523e+11 +Plasma_upper_hybrid_frequency_at_point_20________________________________ (freq_plasma_upper_hybrid_profile20)_ 2.15822253880673340e+11 +Plasma_upper_hybrid_frequency_at_point_21________________________________ (freq_plasma_upper_hybrid_profile21)_ 2.15794596275510681e+11 +Plasma_upper_hybrid_frequency_at_point_22________________________________ (freq_plasma_upper_hybrid_profile22)_ 2.15767495085917877e+11 +Plasma_upper_hybrid_frequency_at_point_23________________________________ (freq_plasma_upper_hybrid_profile23)_ 2.15740948335039673e+11 +Plasma_upper_hybrid_frequency_at_point_24________________________________ (freq_plasma_upper_hybrid_profile24)_ 2.15714954051424438e+11 +Plasma_upper_hybrid_frequency_at_point_25________________________________ (freq_plasma_upper_hybrid_profile25)_ 2.15689510269015930e+11 +Plasma_upper_hybrid_frequency_at_point_26________________________________ (freq_plasma_upper_hybrid_profile26)_ 2.15664615027144745e+11 +Plasma_upper_hybrid_frequency_at_point_27________________________________ (freq_plasma_upper_hybrid_profile27)_ 2.15640266370520020e+11 +Plasma_upper_hybrid_frequency_at_point_28________________________________ (freq_plasma_upper_hybrid_profile28)_ 2.15616462349221405e+11 +Plasma_upper_hybrid_frequency_at_point_29________________________________ (freq_plasma_upper_hybrid_profile29)_ 2.15593201018690247e+11 +Plasma_upper_hybrid_frequency_at_point_30________________________________ (freq_plasma_upper_hybrid_profile30)_ 2.15570480439721649e+11 +Plasma_upper_hybrid_frequency_at_point_31________________________________ (freq_plasma_upper_hybrid_profile31)_ 2.15418994967509247e+11 +Plasma_upper_hybrid_frequency_at_point_32________________________________ (freq_plasma_upper_hybrid_profile32)_ 2.15267869608851868e+11 +Plasma_upper_hybrid_frequency_at_point_33________________________________ (freq_plasma_upper_hybrid_profile33)_ 2.15117103033987335e+11 +Plasma_upper_hybrid_frequency_at_point_34________________________________ (freq_plasma_upper_hybrid_profile34)_ 2.14966693917714539e+11 +Plasma_upper_hybrid_frequency_at_point_35________________________________ (freq_plasma_upper_hybrid_profile35)_ 2.14816640939373291e+11 +Plasma_upper_hybrid_frequency_at_point_36________________________________ (freq_plasma_upper_hybrid_profile36)_ 2.14666942782824127e+11 +Plasma_upper_hybrid_frequency_at_point_37________________________________ (freq_plasma_upper_hybrid_profile37)_ 2.14517598136427917e+11 +Plasma_upper_hybrid_frequency_at_point_38________________________________ (freq_plasma_upper_hybrid_profile38)_ 2.14368605693026154e+11 +Plasma_upper_hybrid_frequency_at_point_39________________________________ (freq_plasma_upper_hybrid_profile39)_ 2.14219964149920898e+11 +Plasma_upper_hybrid_frequency_at_point_40________________________________ (freq_plasma_upper_hybrid_profile40)_ 2.14071672208854828e+11 +Plasma_upper_hybrid_frequency_at_point_41________________________________ (freq_plasma_upper_hybrid_profile41)_ 2.13923728575991882e+11 +Plasma_upper_hybrid_frequency_at_point_42________________________________ (freq_plasma_upper_hybrid_profile42)_ 2.13776131961897247e+11 +Plasma_upper_hybrid_frequency_at_point_43________________________________ (freq_plasma_upper_hybrid_profile43)_ 2.13628881081518372e+11 +Plasma_upper_hybrid_frequency_at_point_44________________________________ (freq_plasma_upper_hybrid_profile44)_ 2.13481974654165039e+11 +Plasma_upper_hybrid_frequency_at_point_45________________________________ (freq_plasma_upper_hybrid_profile45)_ 2.13335411403490723e+11 +Plasma_upper_hybrid_frequency_at_point_46________________________________ (freq_plasma_upper_hybrid_profile46)_ 2.13189190057472900e+11 +Plasma_upper_hybrid_frequency_at_point_47________________________________ (freq_plasma_upper_hybrid_profile47)_ 2.13043309348394379e+11 +Plasma_upper_hybrid_frequency_at_point_48________________________________ (freq_plasma_upper_hybrid_profile48)_ 2.12897768012824097e+11 +Plasma_upper_hybrid_frequency_at_point_49________________________________ (freq_plasma_upper_hybrid_profile49)_ 2.12752564791598358e+11 +Plasma_upper_hybrid_frequency_at_point_50________________________________ (freq_plasma_upper_hybrid_profile50)_ 2.12607698429802338e+11 +Plasma_upper_hybrid_frequency_at_point_51________________________________ (freq_plasma_upper_hybrid_profile51)_ 2.12463167676750977e+11 +Plasma_upper_hybrid_frequency_at_point_52________________________________ (freq_plasma_upper_hybrid_profile52)_ 2.12318971285970856e+11 +Plasma_upper_hybrid_frequency_at_point_53________________________________ (freq_plasma_upper_hybrid_profile53)_ 2.12175108015181580e+11 +Plasma_upper_hybrid_frequency_at_point_54________________________________ (freq_plasma_upper_hybrid_profile54)_ 2.12031576626277527e+11 +Plasma_upper_hybrid_frequency_at_point_55________________________________ (freq_plasma_upper_hybrid_profile55)_ 2.11888375885309540e+11 +Plasma_upper_hybrid_frequency_at_point_56________________________________ (freq_plasma_upper_hybrid_profile56)_ 2.11745504562466858e+11 +Plasma_upper_hybrid_frequency_at_point_57________________________________ (freq_plasma_upper_hybrid_profile57)_ 2.11602961432059143e+11 +Plasma_upper_hybrid_frequency_at_point_58________________________________ (freq_plasma_upper_hybrid_profile58)_ 2.11460745272498322e+11 +Plasma_upper_hybrid_frequency_at_point_59________________________________ (freq_plasma_upper_hybrid_profile59)_ 2.11318854866280975e+11 +Plasma_upper_hybrid_frequency_at_point_60________________________________ (freq_plasma_upper_hybrid_profile60)_ 2.11177288999970551e+11 +Plasma_upper_hybrid_frequency_at_point_61________________________________ (freq_plasma_upper_hybrid_profile61)_ 2.11036046464179688e+11 +Plasma_upper_hybrid_frequency_at_point_62________________________________ (freq_plasma_upper_hybrid_profile62)_ 2.10895126053552643e+11 +Plasma_upper_hybrid_frequency_at_point_63________________________________ (freq_plasma_upper_hybrid_profile63)_ 2.10754526566747803e+11 +Plasma_upper_hybrid_frequency_at_point_64________________________________ (freq_plasma_upper_hybrid_profile64)_ 2.10614246806420532e+11 +Plasma_upper_hybrid_frequency_at_point_65________________________________ (freq_plasma_upper_hybrid_profile65)_ 2.10474285579205658e+11 +Plasma_upper_hybrid_frequency_at_point_66________________________________ (freq_plasma_upper_hybrid_profile66)_ 2.10334641695700409e+11 +Plasma_upper_hybrid_frequency_at_point_67________________________________ (freq_plasma_upper_hybrid_profile67)_ 2.10195313970447296e+11 +Plasma_upper_hybrid_frequency_at_point_68________________________________ (freq_plasma_upper_hybrid_profile68)_ 2.10056301221917267e+11 +Plasma_upper_hybrid_frequency_at_point_69________________________________ (freq_plasma_upper_hybrid_profile69)_ 2.09917602272492554e+11 +Plasma_upper_hybrid_frequency_at_point_70________________________________ (freq_plasma_upper_hybrid_profile70)_ 2.09779215948450043e+11 +Plasma_upper_hybrid_frequency_at_point_71________________________________ (freq_plasma_upper_hybrid_profile71)_ 2.09641141079944489e+11 +Plasma_upper_hybrid_frequency_at_point_72________________________________ (freq_plasma_upper_hybrid_profile72)_ 2.09503376500991974e+11 +Plasma_upper_hybrid_frequency_at_point_73________________________________ (freq_plasma_upper_hybrid_profile73)_ 2.09365921049453156e+11 +Plasma_upper_hybrid_frequency_at_point_74________________________________ (freq_plasma_upper_hybrid_profile74)_ 2.09228773567017120e+11 +Plasma_upper_hybrid_frequency_at_point_75________________________________ (freq_plasma_upper_hybrid_profile75)_ 2.09091932899184662e+11 +Plasma_upper_hybrid_frequency_at_point_76________________________________ (freq_plasma_upper_hybrid_profile76)_ 2.08955397895252350e+11 +Plasma_upper_hybrid_frequency_at_point_77________________________________ (freq_plasma_upper_hybrid_profile77)_ 2.08819167408295990e+11 +Plasma_upper_hybrid_frequency_at_point_78________________________________ (freq_plasma_upper_hybrid_profile78)_ 2.08683240295154877e+11 +Plasma_upper_hybrid_frequency_at_point_79________________________________ (freq_plasma_upper_hybrid_profile79)_ 2.08547615416415314e+11 +Plasma_upper_hybrid_frequency_at_point_80________________________________ (freq_plasma_upper_hybrid_profile80)_ 2.08412291636395172e+11 +Plasma_upper_hybrid_frequency_at_point_81________________________________ (freq_plasma_upper_hybrid_profile81)_ 2.08277267823127777e+11 +Plasma_upper_hybrid_frequency_at_point_82________________________________ (freq_plasma_upper_hybrid_profile82)_ 2.08142542848346039e+11 +Plasma_upper_hybrid_frequency_at_point_83________________________________ (freq_plasma_upper_hybrid_profile83)_ 2.08008115587466858e+11 +Plasma_upper_hybrid_frequency_at_point_84________________________________ (freq_plasma_upper_hybrid_profile84)_ 2.07873984919575653e+11 +Plasma_upper_hybrid_frequency_at_point_85________________________________ (freq_plasma_upper_hybrid_profile85)_ 2.07740149727410614e+11 +Plasma_upper_hybrid_frequency_at_point_86________________________________ (freq_plasma_upper_hybrid_profile86)_ 2.07606608897347473e+11 +Plasma_upper_hybrid_frequency_at_point_87________________________________ (freq_plasma_upper_hybrid_profile87)_ 2.07473361319383789e+11 +Plasma_upper_hybrid_frequency_at_point_88________________________________ (freq_plasma_upper_hybrid_profile88)_ 2.07340405887123993e+11 +Plasma_upper_hybrid_frequency_at_point_89________________________________ (freq_plasma_upper_hybrid_profile89)_ 2.07207741497764191e+11 +Plasma_upper_hybrid_frequency_at_point_90________________________________ (freq_plasma_upper_hybrid_profile90)_ 2.07075367052076721e+11 +Plasma_upper_hybrid_frequency_at_point_91________________________________ (freq_plasma_upper_hybrid_profile91)_ 2.06943281454395416e+11 +Plasma_upper_hybrid_frequency_at_point_92________________________________ (freq_plasma_upper_hybrid_profile92)_ 2.06811483612600342e+11 +Plasma_upper_hybrid_frequency_at_point_93________________________________ (freq_plasma_upper_hybrid_profile93)_ 2.06679972438103302e+11 +Plasma_upper_hybrid_frequency_at_point_94________________________________ (freq_plasma_upper_hybrid_profile94)_ 2.06548746845832611e+11 +Plasma_upper_hybrid_frequency_at_point_95________________________________ (freq_plasma_upper_hybrid_profile95)_ 2.06417805754218567e+11 +Plasma_upper_hybrid_frequency_at_point_96________________________________ (freq_plasma_upper_hybrid_profile96)_ 2.06287148085178680e+11 +Plasma_upper_hybrid_frequency_at_point_97________________________________ (freq_plasma_upper_hybrid_profile97)_ 2.06156772764103149e+11 +Plasma_upper_hybrid_frequency_at_point_98________________________________ (freq_plasma_upper_hybrid_profile98)_ 2.06026678719840393e+11 +Plasma_upper_hybrid_frequency_at_point_99________________________________ (freq_plasma_upper_hybrid_profile99)_ 2.05896864884682465e+11 +Plasma_upper_hybrid_frequency_at_point_100_______________________________ (freq_plasma_upper_hybrid_profile100)_ 2.05767330194350800e+11 +Plasma_upper_hybrid_frequency_at_point_101_______________________________ (freq_plasma_upper_hybrid_profile101)_ 2.05638073587981842e+11 +Plasma_upper_hybrid_frequency_at_point_102_______________________________ (freq_plasma_upper_hybrid_profile102)_ 2.05509094008112793e+11 +Plasma_upper_hybrid_frequency_at_point_103_______________________________ (freq_plasma_upper_hybrid_profile103)_ 2.05380390400667725e+11 +Plasma_upper_hybrid_frequency_at_point_104_______________________________ (freq_plasma_upper_hybrid_profile104)_ 2.05251961714942963e+11 +Plasma_upper_hybrid_frequency_at_point_105_______________________________ (freq_plasma_upper_hybrid_profile105)_ 2.05123806903593658e+11 +Plasma_upper_hybrid_frequency_at_point_106_______________________________ (freq_plasma_upper_hybrid_profile106)_ 2.04995924922619507e+11 +Plasma_upper_hybrid_frequency_at_point_107_______________________________ (freq_plasma_upper_hybrid_profile107)_ 2.04868314731351013e+11 +Plasma_upper_hybrid_frequency_at_point_108_______________________________ (freq_plasma_upper_hybrid_profile108)_ 2.04740975292435516e+11 +Plasma_upper_hybrid_frequency_at_point_109_______________________________ (freq_plasma_upper_hybrid_profile109)_ 2.04613905571823761e+11 +Plasma_upper_hybrid_frequency_at_point_110_______________________________ (freq_plasma_upper_hybrid_profile110)_ 2.04487104538755829e+11 +Plasma_upper_hybrid_frequency_at_point_111_______________________________ (freq_plasma_upper_hybrid_profile111)_ 2.04360571165748047e+11 +Plasma_upper_hybrid_frequency_at_point_112_______________________________ (freq_plasma_upper_hybrid_profile112)_ 2.04234304428579010e+11 +Plasma_upper_hybrid_frequency_at_point_113_______________________________ (freq_plasma_upper_hybrid_profile113)_ 2.04108303306276398e+11 +Plasma_upper_hybrid_frequency_at_point_114_______________________________ (freq_plasma_upper_hybrid_profile114)_ 2.03982566781103455e+11 +Plasma_upper_hybrid_frequency_at_point_115_______________________________ (freq_plasma_upper_hybrid_profile115)_ 2.03857093838545715e+11 +Plasma_upper_hybrid_frequency_at_point_116_______________________________ (freq_plasma_upper_hybrid_profile116)_ 2.03731883467297791e+11 +Plasma_upper_hybrid_frequency_at_point_117_______________________________ (freq_plasma_upper_hybrid_profile117)_ 2.03606934659250061e+11 +Plasma_upper_hybrid_frequency_at_point_118_______________________________ (freq_plasma_upper_hybrid_profile118)_ 2.03482246409475677e+11 +Plasma_upper_hybrid_frequency_at_point_119_______________________________ (freq_plasma_upper_hybrid_profile119)_ 2.03357817716217468e+11 +Plasma_upper_hybrid_frequency_at_point_120_______________________________ (freq_plasma_upper_hybrid_profile120)_ 2.03233647580874786e+11 +Plasma_upper_hybrid_frequency_at_point_121_______________________________ (freq_plasma_upper_hybrid_profile121)_ 2.03109735007990814e+11 +Plasma_upper_hybrid_frequency_at_point_122_______________________________ (freq_plasma_upper_hybrid_profile122)_ 2.02986079005239685e+11 +Plasma_upper_hybrid_frequency_at_point_123_______________________________ (freq_plasma_upper_hybrid_profile123)_ 2.02862678583413330e+11 +Plasma_upper_hybrid_frequency_at_point_124_______________________________ (freq_plasma_upper_hybrid_profile124)_ 2.02739532756409241e+11 +Plasma_upper_hybrid_frequency_at_point_125_______________________________ (freq_plasma_upper_hybrid_profile125)_ 2.02616640541217468e+11 +Plasma_upper_hybrid_frequency_at_point_126_______________________________ (freq_plasma_upper_hybrid_profile126)_ 2.02494000957908020e+11 +Plasma_upper_hybrid_frequency_at_point_127_______________________________ (freq_plasma_upper_hybrid_profile127)_ 2.02371613029618469e+11 +Plasma_upper_hybrid_frequency_at_point_128_______________________________ (freq_plasma_upper_hybrid_profile128)_ 2.02249475782541229e+11 +Plasma_upper_hybrid_frequency_at_point_129_______________________________ (freq_plasma_upper_hybrid_profile129)_ 2.02127588245911377e+11 +Plasma_upper_hybrid_frequency_at_point_130_______________________________ (freq_plasma_upper_hybrid_profile130)_ 2.02005949451994110e+11 +Plasma_upper_hybrid_frequency_at_point_131_______________________________ (freq_plasma_upper_hybrid_profile131)_ 2.01884558436072418e+11 +Plasma_upper_hybrid_frequency_at_point_132_______________________________ (freq_plasma_upper_hybrid_profile132)_ 2.01763414236435059e+11 +Plasma_upper_hybrid_frequency_at_point_133_______________________________ (freq_plasma_upper_hybrid_profile133)_ 2.01642515894363953e+11 +Plasma_upper_hybrid_frequency_at_point_134_______________________________ (freq_plasma_upper_hybrid_profile134)_ 2.01521862454122559e+11 +Plasma_upper_hybrid_frequency_at_point_135_______________________________ (freq_plasma_upper_hybrid_profile135)_ 2.01401452962943298e+11 +Plasma_upper_hybrid_frequency_at_point_136_______________________________ (freq_plasma_upper_hybrid_profile136)_ 2.01281286471015930e+11 +Plasma_upper_hybrid_frequency_at_point_137_______________________________ (freq_plasma_upper_hybrid_profile137)_ 2.01161362031475464e+11 +Plasma_upper_hybrid_frequency_at_point_138_______________________________ (freq_plasma_upper_hybrid_profile138)_ 2.01041678700390137e+11 +Plasma_upper_hybrid_frequency_at_point_139_______________________________ (freq_plasma_upper_hybrid_profile139)_ 2.00922235536749634e+11 +Plasma_upper_hybrid_frequency_at_point_140_______________________________ (freq_plasma_upper_hybrid_profile140)_ 2.00803031602453339e+11 +Plasma_upper_hybrid_frequency_at_point_141_______________________________ (freq_plasma_upper_hybrid_profile141)_ 2.00684065962298798e+11 +Plasma_upper_hybrid_frequency_at_point_142_______________________________ (freq_plasma_upper_hybrid_profile142)_ 2.00565337683969574e+11 +Plasma_upper_hybrid_frequency_at_point_143_______________________________ (freq_plasma_upper_hybrid_profile143)_ 2.00446845838024048e+11 +Plasma_upper_hybrid_frequency_at_point_144_______________________________ (freq_plasma_upper_hybrid_profile144)_ 2.00328589497883545e+11 +Plasma_upper_hybrid_frequency_at_point_145_______________________________ (freq_plasma_upper_hybrid_profile145)_ 2.00210567739821289e+11 +Plasma_upper_hybrid_frequency_at_point_146_______________________________ (freq_plasma_upper_hybrid_profile146)_ 2.00092779642950409e+11 +Plasma_upper_hybrid_frequency_at_point_147_______________________________ (freq_plasma_upper_hybrid_profile147)_ 1.99975224289212677e+11 +Plasma_upper_hybrid_frequency_at_point_148_______________________________ (freq_plasma_upper_hybrid_profile148)_ 1.99857900763367462e+11 +Plasma_upper_hybrid_frequency_at_point_149_______________________________ (freq_plasma_upper_hybrid_profile149)_ 1.99740808152980194e+11 +Plasma_upper_hybrid_frequency_at_point_150_______________________________ (freq_plasma_upper_hybrid_profile150)_ 1.99623945548411102e+11 +Plasma_upper_hybrid_frequency_at_point_151_______________________________ (freq_plasma_upper_hybrid_profile151)_ 1.99507312042804077e+11 +Plasma_upper_hybrid_frequency_at_point_152_______________________________ (freq_plasma_upper_hybrid_profile152)_ 1.99390906732075653e+11 +Plasma_upper_hybrid_frequency_at_point_153_______________________________ (freq_plasma_upper_hybrid_profile153)_ 1.99274728714903656e+11 +Plasma_upper_hybrid_frequency_at_point_154_______________________________ (freq_plasma_upper_hybrid_profile154)_ 1.99158777092716492e+11 +Plasma_upper_hybrid_frequency_at_point_155_______________________________ (freq_plasma_upper_hybrid_profile155)_ 1.99043050969682007e+11 +Plasma_upper_hybrid_frequency_at_point_156_______________________________ (freq_plasma_upper_hybrid_profile156)_ 1.98927549452696320e+11 +Plasma_upper_hybrid_frequency_at_point_157_______________________________ (freq_plasma_upper_hybrid_profile157)_ 1.98812271651373657e+11 +Plasma_upper_hybrid_frequency_at_point_158_______________________________ (freq_plasma_upper_hybrid_profile158)_ 1.98697216678034698e+11 +Plasma_upper_hybrid_frequency_at_point_159_______________________________ (freq_plasma_upper_hybrid_profile159)_ 1.98582383647696259e+11 +Plasma_upper_hybrid_frequency_at_point_160_______________________________ (freq_plasma_upper_hybrid_profile160)_ 1.98467771678060547e+11 +Plasma_upper_hybrid_frequency_at_point_161_______________________________ (freq_plasma_upper_hybrid_profile161)_ 1.98353379889504303e+11 +Plasma_upper_hybrid_frequency_at_point_162_______________________________ (freq_plasma_upper_hybrid_profile162)_ 1.98239207405068420e+11 +Plasma_upper_hybrid_frequency_at_point_163_______________________________ (freq_plasma_upper_hybrid_profile163)_ 1.98125253350447205e+11 +Plasma_upper_hybrid_frequency_at_point_164_______________________________ (freq_plasma_upper_hybrid_profile164)_ 1.98011516853977814e+11 +Plasma_upper_hybrid_frequency_at_point_165_______________________________ (freq_plasma_upper_hybrid_profile165)_ 1.97897997046629822e+11 +Plasma_upper_hybrid_frequency_at_point_166_______________________________ (freq_plasma_upper_hybrid_profile166)_ 1.97784693061995026e+11 +Plasma_upper_hybrid_frequency_at_point_167_______________________________ (freq_plasma_upper_hybrid_profile167)_ 1.97671604036276642e+11 +Plasma_upper_hybrid_frequency_at_point_168_______________________________ (freq_plasma_upper_hybrid_profile168)_ 1.97558729108279175e+11 +Plasma_upper_hybrid_frequency_at_point_169_______________________________ (freq_plasma_upper_hybrid_profile169)_ 1.97446067419398285e+11 +Plasma_upper_hybrid_frequency_at_point_170_______________________________ (freq_plasma_upper_hybrid_profile170)_ 1.97333618113610291e+11 +Plasma_upper_hybrid_frequency_at_point_171_______________________________ (freq_plasma_upper_hybrid_profile171)_ 1.97221380337462097e+11 +Plasma_upper_hybrid_frequency_at_point_172_______________________________ (freq_plasma_upper_hybrid_profile172)_ 1.97109353240060913e+11 +Plasma_upper_hybrid_frequency_at_point_173_______________________________ (freq_plasma_upper_hybrid_profile173)_ 1.96997535973064575e+11 +Plasma_upper_hybrid_frequency_at_point_174_______________________________ (freq_plasma_upper_hybrid_profile174)_ 1.96885927690670837e+11 +Plasma_upper_hybrid_frequency_at_point_175_______________________________ (freq_plasma_upper_hybrid_profile175)_ 1.96774527549607910e+11 +Plasma_upper_hybrid_frequency_at_point_176_______________________________ (freq_plasma_upper_hybrid_profile176)_ 1.96663334709124207e+11 +Plasma_upper_hybrid_frequency_at_point_177_______________________________ (freq_plasma_upper_hybrid_profile177)_ 1.96552348330978607e+11 +Plasma_upper_hybrid_frequency_at_point_178_______________________________ (freq_plasma_upper_hybrid_profile178)_ 1.96441567579430328e+11 +Plasma_upper_hybrid_frequency_at_point_179_______________________________ (freq_plasma_upper_hybrid_profile179)_ 1.96330991621229340e+11 +Plasma_upper_hybrid_frequency_at_point_180_______________________________ (freq_plasma_upper_hybrid_profile180)_ 1.96220619625606537e+11 +Plasma_upper_hybrid_frequency_at_point_181_______________________________ (freq_plasma_upper_hybrid_profile181)_ 1.96110450764263855e+11 +Plasma_upper_hybrid_frequency_at_point_182_______________________________ (freq_plasma_upper_hybrid_profile182)_ 1.96000484211364746e+11 +Plasma_upper_hybrid_frequency_at_point_183_______________________________ (freq_plasma_upper_hybrid_profile183)_ 1.95890719143524292e+11 +Plasma_upper_hybrid_frequency_at_point_184_______________________________ (freq_plasma_upper_hybrid_profile184)_ 1.95781154739799896e+11 +Plasma_upper_hybrid_frequency_at_point_185_______________________________ (freq_plasma_upper_hybrid_profile185)_ 1.95671790181681488e+11 +Plasma_upper_hybrid_frequency_at_point_186_______________________________ (freq_plasma_upper_hybrid_profile186)_ 1.95562624653082062e+11 +Plasma_upper_hybrid_frequency_at_point_187_______________________________ (freq_plasma_upper_hybrid_profile187)_ 1.95453657340328247e+11 +Plasma_upper_hybrid_frequency_at_point_188_______________________________ (freq_plasma_upper_hybrid_profile188)_ 1.95344887432150757e+11 +Plasma_upper_hybrid_frequency_at_point_189_______________________________ (freq_plasma_upper_hybrid_profile189)_ 1.95236314119674988e+11 +Plasma_upper_hybrid_frequency_at_point_190_______________________________ (freq_plasma_upper_hybrid_profile190)_ 1.95127936596411926e+11 +Plasma_upper_hybrid_frequency_at_point_191_______________________________ (freq_plasma_upper_hybrid_profile191)_ 1.95019754058248322e+11 +Plasma_upper_hybrid_frequency_at_point_192_______________________________ (freq_plasma_upper_hybrid_profile192)_ 1.94911765703438080e+11 +Plasma_upper_hybrid_frequency_at_point_193_______________________________ (freq_plasma_upper_hybrid_profile193)_ 1.94803970732592255e+11 +Plasma_upper_hybrid_frequency_at_point_194_______________________________ (freq_plasma_upper_hybrid_profile194)_ 1.94696368348670593e+11 +Plasma_upper_hybrid_frequency_at_point_195_______________________________ (freq_plasma_upper_hybrid_profile195)_ 1.94588957756971832e+11 +Plasma_upper_hybrid_frequency_at_point_196_______________________________ (freq_plasma_upper_hybrid_profile196)_ 1.94481738165124847e+11 +Plasma_upper_hybrid_frequency_at_point_197_______________________________ (freq_plasma_upper_hybrid_profile197)_ 1.94374708783079590e+11 +Plasma_upper_hybrid_frequency_at_point_198_______________________________ (freq_plasma_upper_hybrid_profile198)_ 1.94267868823097870e+11 +Plasma_upper_hybrid_frequency_at_point_199_______________________________ (freq_plasma_upper_hybrid_profile199)_ 1.94161217499744568e+11 +Plasma_upper_hybrid_frequency_at_point_200_______________________________ (freq_plasma_upper_hybrid_profile200)_ 1.94054754029878632e+11 +Plasma_upper_hybrid_frequency_at_point_201_______________________________ (freq_plasma_upper_hybrid_profile201)_ 1.93948477632643921e+11 +Plasma_upper_hybrid_frequency_at_point_202_______________________________ (freq_plasma_upper_hybrid_profile202)_ 1.93842387529460663e+11 +Plasma_upper_hybrid_frequency_at_point_203_______________________________ (freq_plasma_upper_hybrid_profile203)_ 1.93736482944016479e+11 +Plasma_upper_hybrid_frequency_at_point_204_______________________________ (freq_plasma_upper_hybrid_profile204)_ 1.93630763102257446e+11 +Plasma_upper_hybrid_frequency_at_point_205_______________________________ (freq_plasma_upper_hybrid_profile205)_ 1.93525227232379639e+11 +Plasma_upper_hybrid_frequency_at_point_206_______________________________ (freq_plasma_upper_hybrid_profile206)_ 1.93419874564820007e+11 +Plasma_upper_hybrid_frequency_at_point_207_______________________________ (freq_plasma_upper_hybrid_profile207)_ 1.93314704332248077e+11 +Plasma_upper_hybrid_frequency_at_point_208_______________________________ (freq_plasma_upper_hybrid_profile208)_ 1.93209715769557068e+11 +Plasma_upper_hybrid_frequency_at_point_209_______________________________ (freq_plasma_upper_hybrid_profile209)_ 1.93104908113855255e+11 +Plasma_upper_hybrid_frequency_at_point_210_______________________________ (freq_plasma_upper_hybrid_profile210)_ 1.93000280604457550e+11 +Plasma_upper_hybrid_frequency_at_point_211_______________________________ (freq_plasma_upper_hybrid_profile211)_ 1.92895832482876831e+11 +Plasma_upper_hybrid_frequency_at_point_212_______________________________ (freq_plasma_upper_hybrid_profile212)_ 1.92791562992815491e+11 +Plasma_upper_hybrid_frequency_at_point_213_______________________________ (freq_plasma_upper_hybrid_profile213)_ 1.92687471380156982e+11 +Plasma_upper_hybrid_frequency_at_point_214_______________________________ (freq_plasma_upper_hybrid_profile214)_ 1.92583556892957306e+11 +Plasma_upper_hybrid_frequency_at_point_215_______________________________ (freq_plasma_upper_hybrid_profile215)_ 1.92479818781436798e+11 +Plasma_upper_hybrid_frequency_at_point_216_______________________________ (freq_plasma_upper_hybrid_profile216)_ 1.92376256297971405e+11 +Plasma_upper_hybrid_frequency_at_point_217_______________________________ (freq_plasma_upper_hybrid_profile217)_ 1.92272868697084747e+11 +Plasma_upper_hybrid_frequency_at_point_218_______________________________ (freq_plasma_upper_hybrid_profile218)_ 1.92169655235439697e+11 +Plasma_upper_hybrid_frequency_at_point_219_______________________________ (freq_plasma_upper_hybrid_profile219)_ 1.92066615171830048e+11 +Plasma_upper_hybrid_frequency_at_point_220_______________________________ (freq_plasma_upper_hybrid_profile220)_ 1.91963747767172241e+11 +Plasma_upper_hybrid_frequency_at_point_221_______________________________ (freq_plasma_upper_hybrid_profile221)_ 1.91861052284497467e+11 +Plasma_upper_hybrid_frequency_at_point_222_______________________________ (freq_plasma_upper_hybrid_profile222)_ 1.91758527988943146e+11 +Plasma_upper_hybrid_frequency_at_point_223_______________________________ (freq_plasma_upper_hybrid_profile223)_ 1.91656174147745178e+11 +Plasma_upper_hybrid_frequency_at_point_224_______________________________ (freq_plasma_upper_hybrid_profile224)_ 1.91553990030229462e+11 +Plasma_upper_hybrid_frequency_at_point_225_______________________________ (freq_plasma_upper_hybrid_profile225)_ 1.91451974907804199e+11 +Plasma_upper_hybrid_frequency_at_point_226_______________________________ (freq_plasma_upper_hybrid_profile226)_ 1.91350128053951538e+11 +Plasma_upper_hybrid_frequency_at_point_227_______________________________ (freq_plasma_upper_hybrid_profile227)_ 1.91248448744220032e+11 +Plasma_upper_hybrid_frequency_at_point_228_______________________________ (freq_plasma_upper_hybrid_profile228)_ 1.91146936256216217e+11 +Plasma_upper_hybrid_frequency_at_point_229_______________________________ (freq_plasma_upper_hybrid_profile229)_ 1.91045589869597107e+11 +Plasma_upper_hybrid_frequency_at_point_230_______________________________ (freq_plasma_upper_hybrid_profile230)_ 1.90944408866061890e+11 +Plasma_upper_hybrid_frequency_at_point_231_______________________________ (freq_plasma_upper_hybrid_profile231)_ 1.90843392529344452e+11 +Plasma_upper_hybrid_frequency_at_point_232_______________________________ (freq_plasma_upper_hybrid_profile232)_ 1.90742540145205292e+11 +Plasma_upper_hybrid_frequency_at_point_233_______________________________ (freq_plasma_upper_hybrid_profile233)_ 1.90641851001423981e+11 +Plasma_upper_hybrid_frequency_at_point_234_______________________________ (freq_plasma_upper_hybrid_profile234)_ 1.90541324387791107e+11 +Plasma_upper_hybrid_frequency_at_point_235_______________________________ (freq_plasma_upper_hybrid_profile235)_ 1.90440959596100861e+11 +Plasma_upper_hybrid_frequency_at_point_236_______________________________ (freq_plasma_upper_hybrid_profile236)_ 1.90340755920143036e+11 +Plasma_upper_hybrid_frequency_at_point_237_______________________________ (freq_plasma_upper_hybrid_profile237)_ 1.90240712655695679e+11 +Plasma_upper_hybrid_frequency_at_point_238_______________________________ (freq_plasma_upper_hybrid_profile238)_ 1.90140829100517151e+11 +Plasma_upper_hybrid_frequency_at_point_239_______________________________ (freq_plasma_upper_hybrid_profile239)_ 1.90041104554338776e+11 +Plasma_upper_hybrid_frequency_at_point_240_______________________________ (freq_plasma_upper_hybrid_profile240)_ 1.89941538318857117e+11 +Plasma_upper_hybrid_frequency_at_point_241_______________________________ (freq_plasma_upper_hybrid_profile241)_ 1.89842129697726624e+11 +Plasma_upper_hybrid_frequency_at_point_242_______________________________ (freq_plasma_upper_hybrid_profile242)_ 1.89742877996551819e+11 +Plasma_upper_hybrid_frequency_at_point_243_______________________________ (freq_plasma_upper_hybrid_profile243)_ 1.89643782522880035e+11 +Plasma_upper_hybrid_frequency_at_point_244_______________________________ (freq_plasma_upper_hybrid_profile244)_ 1.89544842586194122e+11 +Plasma_upper_hybrid_frequency_at_point_245_______________________________ (freq_plasma_upper_hybrid_profile245)_ 1.89446057497904602e+11 +Plasma_upper_hybrid_frequency_at_point_246_______________________________ (freq_plasma_upper_hybrid_profile246)_ 1.89347426571342682e+11 +Plasma_upper_hybrid_frequency_at_point_247_______________________________ (freq_plasma_upper_hybrid_profile247)_ 1.89248949121752625e+11 +Plasma_upper_hybrid_frequency_at_point_248_______________________________ (freq_plasma_upper_hybrid_profile248)_ 1.89150624466284576e+11 +Plasma_upper_hybrid_frequency_at_point_249_______________________________ (freq_plasma_upper_hybrid_profile249)_ 1.89052451923987213e+11 +Plasma_upper_hybrid_frequency_at_point_250_______________________________ (freq_plasma_upper_hybrid_profile250)_ 1.88954430815800568e+11 +Plasma_upper_hybrid_frequency_at_point_251_______________________________ (freq_plasma_upper_hybrid_profile251)_ 1.88856560464548553e+11 +Plasma_upper_hybrid_frequency_at_point_252_______________________________ (freq_plasma_upper_hybrid_profile252)_ 1.88758840194932037e+11 +Plasma_upper_hybrid_frequency_at_point_253_______________________________ (freq_plasma_upper_hybrid_profile253)_ 1.88661269333521454e+11 +Plasma_upper_hybrid_frequency_at_point_254_______________________________ (freq_plasma_upper_hybrid_profile254)_ 1.88563847208749634e+11 +Plasma_upper_hybrid_frequency_at_point_255_______________________________ (freq_plasma_upper_hybrid_profile255)_ 1.88466573150904999e+11 +Plasma_upper_hybrid_frequency_at_point_256_______________________________ (freq_plasma_upper_hybrid_profile256)_ 1.88369446492123993e+11 +Plasma_upper_hybrid_frequency_at_point_257_______________________________ (freq_plasma_upper_hybrid_profile257)_ 1.88272466566384369e+11 +Plasma_upper_hybrid_frequency_at_point_258_______________________________ (freq_plasma_upper_hybrid_profile258)_ 1.88175632709498016e+11 +Plasma_upper_hybrid_frequency_at_point_259_______________________________ (freq_plasma_upper_hybrid_profile259)_ 1.88078944259103821e+11 +Plasma_upper_hybrid_frequency_at_point_260_______________________________ (freq_plasma_upper_hybrid_profile260)_ 1.87982400554661041e+11 +Plasma_upper_hybrid_frequency_at_point_261_______________________________ (freq_plasma_upper_hybrid_profile261)_ 1.87886000937441925e+11 +Plasma_upper_hybrid_frequency_at_point_262_______________________________ (freq_plasma_upper_hybrid_profile262)_ 1.87789744750525116e+11 +Plasma_upper_hybrid_frequency_at_point_263_______________________________ (freq_plasma_upper_hybrid_profile263)_ 1.87693631338788391e+11 +Plasma_upper_hybrid_frequency_at_point_264_______________________________ (freq_plasma_upper_hybrid_profile264)_ 1.87597660048902252e+11 +Plasma_upper_hybrid_frequency_at_point_265_______________________________ (freq_plasma_upper_hybrid_profile265)_ 1.87501830229322571e+11 +Plasma_upper_hybrid_frequency_at_point_266_______________________________ (freq_plasma_upper_hybrid_profile266)_ 1.87406141230284241e+11 +Plasma_upper_hybrid_frequency_at_point_267_______________________________ (freq_plasma_upper_hybrid_profile267)_ 1.87310592403793945e+11 +Plasma_upper_hybrid_frequency_at_point_268_______________________________ (freq_plasma_upper_hybrid_profile268)_ 1.87215183103623718e+11 +Plasma_upper_hybrid_frequency_at_point_269_______________________________ (freq_plasma_upper_hybrid_profile269)_ 1.87119912685303894e+11 +Plasma_upper_hybrid_frequency_at_point_270_______________________________ (freq_plasma_upper_hybrid_profile270)_ 1.87024780506116821e+11 +Plasma_upper_hybrid_frequency_at_point_271_______________________________ (freq_plasma_upper_hybrid_profile271)_ 1.86929785925089569e+11 +Plasma_upper_hybrid_frequency_at_point_272_______________________________ (freq_plasma_upper_hybrid_profile272)_ 1.86834928302987946e+11 +Plasma_upper_hybrid_frequency_at_point_273_______________________________ (freq_plasma_upper_hybrid_profile273)_ 1.86740207002309235e+11 +Plasma_upper_hybrid_frequency_at_point_274_______________________________ (freq_plasma_upper_hybrid_profile274)_ 1.86645621387275940e+11 +Plasma_upper_hybrid_frequency_at_point_275_______________________________ (freq_plasma_upper_hybrid_profile275)_ 1.86551170823829102e+11 +Plasma_upper_hybrid_frequency_at_point_276_______________________________ (freq_plasma_upper_hybrid_profile276)_ 1.86456854679621643e+11 +Plasma_upper_hybrid_frequency_at_point_277_______________________________ (freq_plasma_upper_hybrid_profile277)_ 1.86362672324012085e+11 +Plasma_upper_hybrid_frequency_at_point_278_______________________________ (freq_plasma_upper_hybrid_profile278)_ 1.86268623128057617e+11 +Plasma_upper_hybrid_frequency_at_point_279_______________________________ (freq_plasma_upper_hybrid_profile279)_ 1.86174706464508026e+11 +Plasma_upper_hybrid_frequency_at_point_280_______________________________ (freq_plasma_upper_hybrid_profile280)_ 1.86080921707798950e+11 +Plasma_upper_hybrid_frequency_at_point_281_______________________________ (freq_plasma_upper_hybrid_profile281)_ 1.85987268234045502e+11 +Plasma_upper_hybrid_frequency_at_point_282_______________________________ (freq_plasma_upper_hybrid_profile282)_ 1.85893745421035919e+11 +Plasma_upper_hybrid_frequency_at_point_283_______________________________ (freq_plasma_upper_hybrid_profile283)_ 1.85800352648225067e+11 +Plasma_upper_hybrid_frequency_at_point_284_______________________________ (freq_plasma_upper_hybrid_profile284)_ 1.85707089296728210e+11 +Plasma_upper_hybrid_frequency_at_point_285_______________________________ (freq_plasma_upper_hybrid_profile285)_ 1.85613954749314453e+11 +Plasma_upper_hybrid_frequency_at_point_286_______________________________ (freq_plasma_upper_hybrid_profile286)_ 1.85520948390400635e+11 +Plasma_upper_hybrid_frequency_at_point_287_______________________________ (freq_plasma_upper_hybrid_profile287)_ 1.85428069606044830e+11 +Plasma_upper_hybrid_frequency_at_point_288_______________________________ (freq_plasma_upper_hybrid_profile288)_ 1.85335317783940247e+11 +Plasma_upper_hybrid_frequency_at_point_289_______________________________ (freq_plasma_upper_hybrid_profile289)_ 1.85242692313408844e+11 +Plasma_upper_hybrid_frequency_at_point_290_______________________________ (freq_plasma_upper_hybrid_profile290)_ 1.85150192585395203e+11 +Plasma_upper_hybrid_frequency_at_point_291_______________________________ (freq_plasma_upper_hybrid_profile291)_ 1.85057817992460175e+11 +Plasma_upper_hybrid_frequency_at_point_292_______________________________ (freq_plasma_upper_hybrid_profile292)_ 1.84965567928774902e+11 +Plasma_upper_hybrid_frequency_at_point_293_______________________________ (freq_plasma_upper_hybrid_profile293)_ 1.84873441790114502e+11 +Plasma_upper_hybrid_frequency_at_point_294_______________________________ (freq_plasma_upper_hybrid_profile294)_ 1.84781438973851898e+11 +Plasma_upper_hybrid_frequency_at_point_295_______________________________ (freq_plasma_upper_hybrid_profile295)_ 1.84689558878951813e+11 +Plasma_upper_hybrid_frequency_at_point_296_______________________________ (freq_plasma_upper_hybrid_profile296)_ 1.84597800905964661e+11 +Plasma_upper_hybrid_frequency_at_point_297_______________________________ (freq_plasma_upper_hybrid_profile297)_ 1.84506164457020508e+11 +Plasma_upper_hybrid_frequency_at_point_298_______________________________ (freq_plasma_upper_hybrid_profile298)_ 1.84414648935822754e+11 +Plasma_upper_hybrid_frequency_at_point_299_______________________________ (freq_plasma_upper_hybrid_profile299)_ 1.84323253747642578e+11 +Plasma_upper_hybrid_frequency_at_point_300_______________________________ (freq_plasma_upper_hybrid_profile300)_ 1.84231978299312469e+11 +Plasma_upper_hybrid_frequency_at_point_301_______________________________ (freq_plasma_upper_hybrid_profile301)_ 1.84140821999220459e+11 +Plasma_upper_hybrid_frequency_at_point_302_______________________________ (freq_plasma_upper_hybrid_profile302)_ 1.84049784257304260e+11 +Plasma_upper_hybrid_frequency_at_point_303_______________________________ (freq_plasma_upper_hybrid_profile303)_ 1.83958864485045105e+11 +Plasma_upper_hybrid_frequency_at_point_304_______________________________ (freq_plasma_upper_hybrid_profile304)_ 1.83868062095461945e+11 +Plasma_upper_hybrid_frequency_at_point_305_______________________________ (freq_plasma_upper_hybrid_profile305)_ 1.83777376503105530e+11 +Plasma_upper_hybrid_frequency_at_point_306_______________________________ (freq_plasma_upper_hybrid_profile306)_ 1.83686807124052582e+11 +Plasma_upper_hybrid_frequency_at_point_307_______________________________ (freq_plasma_upper_hybrid_profile307)_ 1.83596353375899780e+11 +Plasma_upper_hybrid_frequency_at_point_308_______________________________ (freq_plasma_upper_hybrid_profile308)_ 1.83506014677758209e+11 +Plasma_upper_hybrid_frequency_at_point_309_______________________________ (freq_plasma_upper_hybrid_profile309)_ 1.83415790450247314e+11 +Plasma_upper_hybrid_frequency_at_point_310_______________________________ (freq_plasma_upper_hybrid_profile310)_ 1.83325680115488953e+11 +Plasma_upper_hybrid_frequency_at_point_311_______________________________ (freq_plasma_upper_hybrid_profile311)_ 1.83235683097102173e+11 +Plasma_upper_hybrid_frequency_at_point_312_______________________________ (freq_plasma_upper_hybrid_profile312)_ 1.83145798820196930e+11 +Plasma_upper_hybrid_frequency_at_point_313_______________________________ (freq_plasma_upper_hybrid_profile313)_ 1.83056026711368561e+11 +Plasma_upper_hybrid_frequency_at_point_314_______________________________ (freq_plasma_upper_hybrid_profile314)_ 1.82966366198692078e+11 +Plasma_upper_hybrid_frequency_at_point_315_______________________________ (freq_plasma_upper_hybrid_profile315)_ 1.82876816711716583e+11 +Plasma_upper_hybrid_frequency_at_point_316_______________________________ (freq_plasma_upper_hybrid_profile316)_ 1.82787377681459198e+11 +Plasma_upper_hybrid_frequency_at_point_317_______________________________ (freq_plasma_upper_hybrid_profile317)_ 1.82698048540399963e+11 +Plasma_upper_hybrid_frequency_at_point_318_______________________________ (freq_plasma_upper_hybrid_profile318)_ 1.82608828722475830e+11 +Plasma_upper_hybrid_frequency_at_point_319_______________________________ (freq_plasma_upper_hybrid_profile319)_ 1.82519717663075104e+11 +Plasma_upper_hybrid_frequency_at_point_320_______________________________ (freq_plasma_upper_hybrid_profile320)_ 1.82430714799031891e+11 +Plasma_upper_hybrid_frequency_at_point_321_______________________________ (freq_plasma_upper_hybrid_profile321)_ 1.82341819568620667e+11 +Plasma_upper_hybrid_frequency_at_point_322_______________________________ (freq_plasma_upper_hybrid_profile322)_ 1.82253031411550446e+11 +Plasma_upper_hybrid_frequency_at_point_323_______________________________ (freq_plasma_upper_hybrid_profile323)_ 1.82164349768959473e+11 +Plasma_upper_hybrid_frequency_at_point_324_______________________________ (freq_plasma_upper_hybrid_profile324)_ 1.82075774083409576e+11 +Plasma_upper_hybrid_frequency_at_point_325_______________________________ (freq_plasma_upper_hybrid_profile325)_ 1.81987303798880768e+11 +Plasma_upper_hybrid_frequency_at_point_326_______________________________ (freq_plasma_upper_hybrid_profile326)_ 1.81898938360765778e+11 +Plasma_upper_hybrid_frequency_at_point_327_______________________________ (freq_plasma_upper_hybrid_profile327)_ 1.81810677215864288e+11 +Plasma_upper_hybrid_frequency_at_point_328_______________________________ (freq_plasma_upper_hybrid_profile328)_ 1.81722519812378021e+11 +Plasma_upper_hybrid_frequency_at_point_329_______________________________ (freq_plasma_upper_hybrid_profile329)_ 1.81634465599904938e+11 +Plasma_upper_hybrid_frequency_at_point_330_______________________________ (freq_plasma_upper_hybrid_profile330)_ 1.81546514029433929e+11 +Plasma_upper_hybrid_frequency_at_point_331_______________________________ (freq_plasma_upper_hybrid_profile331)_ 1.81458664553339447e+11 +Plasma_upper_hybrid_frequency_at_point_332_______________________________ (freq_plasma_upper_hybrid_profile332)_ 1.81370916625376099e+11 +Plasma_upper_hybrid_frequency_at_point_333_______________________________ (freq_plasma_upper_hybrid_profile333)_ 1.81283269700673523e+11 +Plasma_upper_hybrid_frequency_at_point_334_______________________________ (freq_plasma_upper_hybrid_profile334)_ 1.81195723235730530e+11 +Plasma_upper_hybrid_frequency_at_point_335_______________________________ (freq_plasma_upper_hybrid_profile335)_ 1.81108276688410431e+11 +Plasma_upper_hybrid_frequency_at_point_336_______________________________ (freq_plasma_upper_hybrid_profile336)_ 1.81020929517935455e+11 +Plasma_upper_hybrid_frequency_at_point_337_______________________________ (freq_plasma_upper_hybrid_profile337)_ 1.80933681184881195e+11 +Plasma_upper_hybrid_frequency_at_point_338_______________________________ (freq_plasma_upper_hybrid_profile338)_ 1.80846531151171844e+11 +Plasma_upper_hybrid_frequency_at_point_339_______________________________ (freq_plasma_upper_hybrid_profile339)_ 1.80759478880074768e+11 +Plasma_upper_hybrid_frequency_at_point_340_______________________________ (freq_plasma_upper_hybrid_profile340)_ 1.80672523836195068e+11 +Plasma_upper_hybrid_frequency_at_point_341_______________________________ (freq_plasma_upper_hybrid_profile341)_ 1.80585665485470673e+11 +Plasma_upper_hybrid_frequency_at_point_342_______________________________ (freq_plasma_upper_hybrid_profile342)_ 1.80498903295167084e+11 +Plasma_upper_hybrid_frequency_at_point_343_______________________________ (freq_plasma_upper_hybrid_profile343)_ 1.80412236733872009e+11 +Plasma_upper_hybrid_frequency_at_point_344_______________________________ (freq_plasma_upper_hybrid_profile344)_ 1.80325665271490509e+11 +Plasma_upper_hybrid_frequency_at_point_345_______________________________ (freq_plasma_upper_hybrid_profile345)_ 1.80239188379239624e+11 +Plasma_upper_hybrid_frequency_at_point_346_______________________________ (freq_plasma_upper_hybrid_profile346)_ 1.80152805529643311e+11 +Plasma_upper_hybrid_frequency_at_point_347_______________________________ (freq_plasma_upper_hybrid_profile347)_ 1.80066516196527496e+11 +Plasma_upper_hybrid_frequency_at_point_348_______________________________ (freq_plasma_upper_hybrid_profile348)_ 1.79980319855014740e+11 +Plasma_upper_hybrid_frequency_at_point_349_______________________________ (freq_plasma_upper_hybrid_profile349)_ 1.79894215981519348e+11 +Plasma_upper_hybrid_frequency_at_point_350_______________________________ (freq_plasma_upper_hybrid_profile350)_ 1.79808204053742340e+11 +Plasma_upper_hybrid_frequency_at_point_351_______________________________ (freq_plasma_upper_hybrid_profile351)_ 1.79722283550666199e+11 +Plasma_upper_hybrid_frequency_at_point_352_______________________________ (freq_plasma_upper_hybrid_profile352)_ 1.79636453952550049e+11 +Plasma_upper_hybrid_frequency_at_point_353_______________________________ (freq_plasma_upper_hybrid_profile353)_ 1.79550714740924561e+11 +Plasma_upper_hybrid_frequency_at_point_354_______________________________ (freq_plasma_upper_hybrid_profile354)_ 1.79465065398587128e+11 +Plasma_upper_hybrid_frequency_at_point_355_______________________________ (freq_plasma_upper_hybrid_profile355)_ 1.79379505409596649e+11 +Plasma_upper_hybrid_frequency_at_point_356_______________________________ (freq_plasma_upper_hybrid_profile356)_ 1.79294034259268646e+11 +Plasma_upper_hybrid_frequency_at_point_357_______________________________ (freq_plasma_upper_hybrid_profile357)_ 1.79208651434170563e+11 +Plasma_upper_hybrid_frequency_at_point_358_______________________________ (freq_plasma_upper_hybrid_profile358)_ 1.79123356422116516e+11 +Plasma_upper_hybrid_frequency_at_point_359_______________________________ (freq_plasma_upper_hybrid_profile359)_ 1.79038148712162537e+11 +Plasma_upper_hybrid_frequency_at_point_360_______________________________ (freq_plasma_upper_hybrid_profile360)_ 1.78953027794601593e+11 +Plasma_upper_hybrid_frequency_at_point_361_______________________________ (freq_plasma_upper_hybrid_profile361)_ 1.78867993160958954e+11 +Plasma_upper_hybrid_frequency_at_point_362_______________________________ (freq_plasma_upper_hybrid_profile362)_ 1.78783044303987122e+11 +Plasma_upper_hybrid_frequency_at_point_363_______________________________ (freq_plasma_upper_hybrid_profile363)_ 1.78698180717660858e+11 +Plasma_upper_hybrid_frequency_at_point_364_______________________________ (freq_plasma_upper_hybrid_profile364)_ 1.78613401897172760e+11 +Plasma_upper_hybrid_frequency_at_point_365_______________________________ (freq_plasma_upper_hybrid_profile365)_ 1.78528707338928040e+11 +Plasma_upper_hybrid_frequency_at_point_366_______________________________ (freq_plasma_upper_hybrid_profile366)_ 1.78444096540540039e+11 +Plasma_upper_hybrid_frequency_at_point_367_______________________________ (freq_plasma_upper_hybrid_profile367)_ 1.78359569000825165e+11 +Plasma_upper_hybrid_frequency_at_point_368_______________________________ (freq_plasma_upper_hybrid_profile368)_ 1.78275124219798340e+11 +Plasma_upper_hybrid_frequency_at_point_369_______________________________ (freq_plasma_upper_hybrid_profile369)_ 1.78190761698668182e+11 +Plasma_upper_hybrid_frequency_at_point_370_______________________________ (freq_plasma_upper_hybrid_profile370)_ 1.78106480939832123e+11 +Plasma_upper_hybrid_frequency_at_point_371_______________________________ (freq_plasma_upper_hybrid_profile371)_ 1.78022281446872009e+11 +Plasma_upper_hybrid_frequency_at_point_372_______________________________ (freq_plasma_upper_hybrid_profile372)_ 1.77938162724549072e+11 +Plasma_upper_hybrid_frequency_at_point_373_______________________________ (freq_plasma_upper_hybrid_profile373)_ 1.77854124278799377e+11 +Plasma_upper_hybrid_frequency_at_point_374_______________________________ (freq_plasma_upper_hybrid_profile374)_ 1.77770165616729095e+11 +Plasma_upper_hybrid_frequency_at_point_375_______________________________ (freq_plasma_upper_hybrid_profile375)_ 1.77686286246609955e+11 +Plasma_upper_hybrid_frequency_at_point_376_______________________________ (freq_plasma_upper_hybrid_profile376)_ 1.77602485677874420e+11 +Plasma_upper_hybrid_frequency_at_point_377_______________________________ (freq_plasma_upper_hybrid_profile377)_ 1.77518763421111084e+11 +Plasma_upper_hybrid_frequency_at_point_378_______________________________ (freq_plasma_upper_hybrid_profile378)_ 1.77435118988060272e+11 +Plasma_upper_hybrid_frequency_at_point_379_______________________________ (freq_plasma_upper_hybrid_profile379)_ 1.77351551891609070e+11 +Plasma_upper_hybrid_frequency_at_point_380_______________________________ (freq_plasma_upper_hybrid_profile380)_ 1.77268061645786987e+11 +Plasma_upper_hybrid_frequency_at_point_381_______________________________ (freq_plasma_upper_hybrid_profile381)_ 1.77184647765761292e+11 +Plasma_upper_hybrid_frequency_at_point_382_______________________________ (freq_plasma_upper_hybrid_profile382)_ 1.77101309767832581e+11 +Plasma_upper_hybrid_frequency_at_point_383_______________________________ (freq_plasma_upper_hybrid_profile383)_ 1.77018047169429840e+11 +Plasma_upper_hybrid_frequency_at_point_384_______________________________ (freq_plasma_upper_hybrid_profile384)_ 1.76934859489106354e+11 +Plasma_upper_hybrid_frequency_at_point_385_______________________________ (freq_plasma_upper_hybrid_profile385)_ 1.76851746246534882e+11 +Plasma_upper_hybrid_frequency_at_point_386_______________________________ (freq_plasma_upper_hybrid_profile386)_ 1.76768706962503418e+11 +Plasma_upper_hybrid_frequency_at_point_387_______________________________ (freq_plasma_upper_hybrid_profile387)_ 1.76685741158910278e+11 +Plasma_upper_hybrid_frequency_at_point_388_______________________________ (freq_plasma_upper_hybrid_profile388)_ 1.76602848358760071e+11 +Plasma_upper_hybrid_frequency_at_point_389_______________________________ (freq_plasma_upper_hybrid_profile389)_ 1.76520028086158936e+11 +Plasma_upper_hybrid_frequency_at_point_390_______________________________ (freq_plasma_upper_hybrid_profile390)_ 1.76437279866310150e+11 +Plasma_upper_hybrid_frequency_at_point_391_______________________________ (freq_plasma_upper_hybrid_profile391)_ 1.76354603225509705e+11 +Plasma_upper_hybrid_frequency_at_point_392_______________________________ (freq_plasma_upper_hybrid_profile392)_ 1.76271997691141815e+11 +Plasma_upper_hybrid_frequency_at_point_393_______________________________ (freq_plasma_upper_hybrid_profile393)_ 1.76189462791674683e+11 +Plasma_upper_hybrid_frequency_at_point_394_______________________________ (freq_plasma_upper_hybrid_profile394)_ 1.76106998056655823e+11 +Plasma_upper_hybrid_frequency_at_point_395_______________________________ (freq_plasma_upper_hybrid_profile395)_ 1.76024603016707794e+11 +Plasma_upper_hybrid_frequency_at_point_396_______________________________ (freq_plasma_upper_hybrid_profile396)_ 1.75942277203523987e+11 +Plasma_upper_hybrid_frequency_at_point_397_______________________________ (freq_plasma_upper_hybrid_profile397)_ 1.75860020149863892e+11 +Plasma_upper_hybrid_frequency_at_point_398_______________________________ (freq_plasma_upper_hybrid_profile398)_ 1.75777831389549042e+11 +Plasma_upper_hybrid_frequency_at_point_399_______________________________ (freq_plasma_upper_hybrid_profile399)_ 1.75695710457458527e+11 +Plasma_upper_hybrid_frequency_at_point_400_______________________________ (freq_plasma_upper_hybrid_profile400)_ 1.75613656889524780e+11 +Plasma_upper_hybrid_frequency_at_point_401_______________________________ (freq_plasma_upper_hybrid_profile401)_ 1.75531670222729095e+11 +Plasma_upper_hybrid_frequency_at_point_402_______________________________ (freq_plasma_upper_hybrid_profile402)_ 1.75449749995097473e+11 +Plasma_upper_hybrid_frequency_at_point_403_______________________________ (freq_plasma_upper_hybrid_profile403)_ 1.75367895745696198e+11 +Plasma_upper_hybrid_frequency_at_point_404_______________________________ (freq_plasma_upper_hybrid_profile404)_ 1.75286107014627716e+11 +Plasma_upper_hybrid_frequency_at_point_405_______________________________ (freq_plasma_upper_hybrid_profile405)_ 1.75204383343026093e+11 +Plasma_upper_hybrid_frequency_at_point_406_______________________________ (freq_plasma_upper_hybrid_profile406)_ 1.75122724273053192e+11 +Plasma_upper_hybrid_frequency_at_point_407_______________________________ (freq_plasma_upper_hybrid_profile407)_ 1.75041129347893921e+11 +Plasma_upper_hybrid_frequency_at_point_408_______________________________ (freq_plasma_upper_hybrid_profile408)_ 1.74959598111752441e+11 +Plasma_upper_hybrid_frequency_at_point_409_______________________________ (freq_plasma_upper_hybrid_profile409)_ 1.74878130109847565e+11 +Plasma_upper_hybrid_frequency_at_point_410_______________________________ (freq_plasma_upper_hybrid_profile410)_ 1.74796724888408905e+11 +Plasma_upper_hybrid_frequency_at_point_411_______________________________ (freq_plasma_upper_hybrid_profile411)_ 1.74715381994672424e+11 +Plasma_upper_hybrid_frequency_at_point_412_______________________________ (freq_plasma_upper_hybrid_profile412)_ 1.74634100976876312e+11 +Plasma_upper_hybrid_frequency_at_point_413_______________________________ (freq_plasma_upper_hybrid_profile413)_ 1.74552881384256836e+11 +Plasma_upper_hybrid_frequency_at_point_414_______________________________ (freq_plasma_upper_hybrid_profile414)_ 1.74471722767044189e+11 +Plasma_upper_hybrid_frequency_at_point_415_______________________________ (freq_plasma_upper_hybrid_profile415)_ 1.74390624676458313e+11 +Plasma_upper_hybrid_frequency_at_point_416_______________________________ (freq_plasma_upper_hybrid_profile416)_ 1.74309586664704742e+11 +Plasma_upper_hybrid_frequency_at_point_417_______________________________ (freq_plasma_upper_hybrid_profile417)_ 1.74228608284970459e+11 +Plasma_upper_hybrid_frequency_at_point_418_______________________________ (freq_plasma_upper_hybrid_profile418)_ 1.74147689091419922e+11 +Plasma_upper_hybrid_frequency_at_point_419_______________________________ (freq_plasma_upper_hybrid_profile419)_ 1.74066828639190674e+11 +Plasma_upper_hybrid_frequency_at_point_420_______________________________ (freq_plasma_upper_hybrid_profile420)_ 1.73986026484389587e+11 +Plasma_upper_hybrid_frequency_at_point_421_______________________________ (freq_plasma_upper_hybrid_profile421)_ 1.73905282184088470e+11 +Plasma_upper_hybrid_frequency_at_point_422_______________________________ (freq_plasma_upper_hybrid_profile422)_ 1.73824595296320221e+11 +Plasma_upper_hybrid_frequency_at_point_423_______________________________ (freq_plasma_upper_hybrid_profile423)_ 1.73743965380074646e+11 +Plasma_upper_hybrid_frequency_at_point_424_______________________________ (freq_plasma_upper_hybrid_profile424)_ 1.73663391995294403e+11 +Plasma_upper_hybrid_frequency_at_point_425_______________________________ (freq_plasma_upper_hybrid_profile425)_ 1.73582874702871063e+11 +Plasma_upper_hybrid_frequency_at_point_426_______________________________ (freq_plasma_upper_hybrid_profile426)_ 1.73502413064640900e+11 +Plasma_upper_hybrid_frequency_at_point_427_______________________________ (freq_plasma_upper_hybrid_profile427)_ 1.73422006643381165e+11 +Plasma_upper_hybrid_frequency_at_point_428_______________________________ (freq_plasma_upper_hybrid_profile428)_ 1.73341655002805634e+11 +Plasma_upper_hybrid_frequency_at_point_429_______________________________ (freq_plasma_upper_hybrid_profile429)_ 1.73261357707561035e+11 +Plasma_upper_hybrid_frequency_at_point_430_______________________________ (freq_plasma_upper_hybrid_profile430)_ 1.73181114323222931e+11 +Plasma_upper_hybrid_frequency_at_point_431_______________________________ (freq_plasma_upper_hybrid_profile431)_ 1.73100924416291504e+11 +Plasma_upper_hybrid_frequency_at_point_432_______________________________ (freq_plasma_upper_hybrid_profile432)_ 1.73020787554187988e+11 +Plasma_upper_hybrid_frequency_at_point_433_______________________________ (freq_plasma_upper_hybrid_profile433)_ 1.72940703305250427e+11 +Plasma_upper_hybrid_frequency_at_point_434_______________________________ (freq_plasma_upper_hybrid_profile434)_ 1.72860671238729767e+11 +Plasma_upper_hybrid_frequency_at_point_435_______________________________ (freq_plasma_upper_hybrid_profile435)_ 1.72780690924785950e+11 +Plasma_upper_hybrid_frequency_at_point_436_______________________________ (freq_plasma_upper_hybrid_profile436)_ 1.72700761934484131e+11 +Plasma_upper_hybrid_frequency_at_point_437_______________________________ (freq_plasma_upper_hybrid_profile437)_ 1.72620883839790466e+11 +Plasma_upper_hybrid_frequency_at_point_438_______________________________ (freq_plasma_upper_hybrid_profile438)_ 1.72541056213568420e+11 +Plasma_upper_hybrid_frequency_at_point_439_______________________________ (freq_plasma_upper_hybrid_profile439)_ 1.72461278629574829e+11 +Plasma_upper_hybrid_frequency_at_point_440_______________________________ (freq_plasma_upper_hybrid_profile440)_ 1.72381550662455994e+11 +Plasma_upper_hybrid_frequency_at_point_441_______________________________ (freq_plasma_upper_hybrid_profile441)_ 1.72301871887743805e+11 +Plasma_upper_hybrid_frequency_at_point_442_______________________________ (freq_plasma_upper_hybrid_profile442)_ 1.72222241881851837e+11 +Plasma_upper_hybrid_frequency_at_point_443_______________________________ (freq_plasma_upper_hybrid_profile443)_ 1.72142660222071533e+11 +Plasma_upper_hybrid_frequency_at_point_444_______________________________ (freq_plasma_upper_hybrid_profile444)_ 1.72063126486568420e+11 +Plasma_upper_hybrid_frequency_at_point_445_______________________________ (freq_plasma_upper_hybrid_profile445)_ 1.71983640254378082e+11 +Plasma_upper_hybrid_frequency_at_point_446_______________________________ (freq_plasma_upper_hybrid_profile446)_ 1.71904201105402557e+11 +Plasma_upper_hybrid_frequency_at_point_447_______________________________ (freq_plasma_upper_hybrid_profile447)_ 1.71824808620406311e+11 +Plasma_upper_hybrid_frequency_at_point_448_______________________________ (freq_plasma_upper_hybrid_profile448)_ 1.71745462381012573e+11 +Plasma_upper_hybrid_frequency_at_point_449_______________________________ (freq_plasma_upper_hybrid_profile449)_ 1.71666161969699493e+11 +Plasma_upper_hybrid_frequency_at_point_450_______________________________ (freq_plasma_upper_hybrid_profile450)_ 1.71586906969796265e+11 +Plasma_upper_hybrid_frequency_at_point_451_______________________________ (freq_plasma_upper_hybrid_profile451)_ 1.71507696965479492e+11 +Plasma_upper_hybrid_frequency_at_point_452_______________________________ (freq_plasma_upper_hybrid_profile452)_ 1.71428531541769257e+11 +Plasma_upper_hybrid_frequency_at_point_453_______________________________ (freq_plasma_upper_hybrid_profile453)_ 1.71349410284525574e+11 +Plasma_upper_hybrid_frequency_at_point_454_______________________________ (freq_plasma_upper_hybrid_profile454)_ 1.71270332780444244e+11 +Plasma_upper_hybrid_frequency_at_point_455_______________________________ (freq_plasma_upper_hybrid_profile455)_ 1.71191298617053558e+11 +Plasma_upper_hybrid_frequency_at_point_456_______________________________ (freq_plasma_upper_hybrid_profile456)_ 1.71112307382710358e+11 +Plasma_upper_hybrid_frequency_at_point_457_______________________________ (freq_plasma_upper_hybrid_profile457)_ 1.71033358666596161e+11 +Plasma_upper_hybrid_frequency_at_point_458_______________________________ (freq_plasma_upper_hybrid_profile458)_ 1.70954452058713745e+11 +Plasma_upper_hybrid_frequency_at_point_459_______________________________ (freq_plasma_upper_hybrid_profile459)_ 1.70875587149883057e+11 +Plasma_upper_hybrid_frequency_at_point_460_______________________________ (freq_plasma_upper_hybrid_profile460)_ 1.70796763531737915e+11 +Plasma_upper_hybrid_frequency_at_point_461_______________________________ (freq_plasma_upper_hybrid_profile461)_ 1.70717980796722015e+11 +Plasma_upper_hybrid_frequency_at_point_462_______________________________ (freq_plasma_upper_hybrid_profile462)_ 1.70639238538085358e+11 +Plasma_upper_hybrid_frequency_at_point_463_______________________________ (freq_plasma_upper_hybrid_profile463)_ 1.70560536349880646e+11 +Plasma_upper_hybrid_frequency_at_point_464_______________________________ (freq_plasma_upper_hybrid_profile464)_ 1.70481873826959412e+11 +Plasma_upper_hybrid_frequency_at_point_465_______________________________ (freq_plasma_upper_hybrid_profile465)_ 1.70403250564968475e+11 +Plasma_upper_hybrid_frequency_at_point_466_______________________________ (freq_plasma_upper_hybrid_profile466)_ 1.70324666160346405e+11 +Plasma_upper_hybrid_frequency_at_point_467_______________________________ (freq_plasma_upper_hybrid_profile467)_ 1.70246120210319641e+11 +Plasma_upper_hybrid_frequency_at_point_468_______________________________ (freq_plasma_upper_hybrid_profile468)_ 1.70167612312898926e+11 +Plasma_upper_hybrid_frequency_at_point_469_______________________________ (freq_plasma_upper_hybrid_profile469)_ 1.70089142066875885e+11 +Plasma_upper_hybrid_frequency_at_point_470_______________________________ (freq_plasma_upper_hybrid_profile470)_ 1.70010709071819061e+11 +Plasma_upper_hybrid_frequency_at_point_471_______________________________ (freq_plasma_upper_hybrid_profile471)_ 1.69932312928070587e+11 +Plasma_upper_hybrid_frequency_at_point_472_______________________________ (freq_plasma_upper_hybrid_profile472)_ 1.69853953236742462e+11 +Plasma_upper_hybrid_frequency_at_point_473_______________________________ (freq_plasma_upper_hybrid_profile473)_ 1.69775629599712921e+11 +Plasma_upper_hybrid_frequency_at_point_474_______________________________ (freq_plasma_upper_hybrid_profile474)_ 1.69697341619622894e+11 +Plasma_upper_hybrid_frequency_at_point_475_______________________________ (freq_plasma_upper_hybrid_profile475)_ 1.69619088899872406e+11 +Plasma_upper_hybrid_frequency_at_point_476_______________________________ (freq_plasma_upper_hybrid_profile476)_ 1.69540871044617065e+11 +Plasma_upper_hybrid_frequency_at_point_477_______________________________ (freq_plasma_upper_hybrid_profile477)_ 1.69462687658764404e+11 +Plasma_upper_hybrid_frequency_at_point_478_______________________________ (freq_plasma_upper_hybrid_profile478)_ 1.69384538347970306e+11 +Plasma_upper_hybrid_frequency_at_point_479_______________________________ (freq_plasma_upper_hybrid_profile479)_ 1.69306422718635681e+11 +Plasma_upper_hybrid_frequency_at_point_480_______________________________ (freq_plasma_upper_hybrid_profile480)_ 1.69228340377902496e+11 +Plasma_upper_hybrid_frequency_at_point_481_______________________________ (freq_plasma_upper_hybrid_profile481)_ 1.69150290933650726e+11 +Plasma_upper_hybrid_frequency_at_point_482_______________________________ (freq_plasma_upper_hybrid_profile482)_ 1.69072273994494446e+11 +Plasma_upper_hybrid_frequency_at_point_483_______________________________ (freq_plasma_upper_hybrid_profile483)_ 1.68994289169778442e+11 +Plasma_upper_hybrid_frequency_at_point_484_______________________________ (freq_plasma_upper_hybrid_profile484)_ 1.68916336069574799e+11 +Plasma_upper_hybrid_frequency_at_point_485_______________________________ (freq_plasma_upper_hybrid_profile485)_ 1.68838414304679260e+11 +Plasma_upper_hybrid_frequency_at_point_486_______________________________ (freq_plasma_upper_hybrid_profile486)_ 1.68760523486607727e+11 +Plasma_upper_hybrid_frequency_at_point_487_______________________________ (freq_plasma_upper_hybrid_profile487)_ 1.68682663227592865e+11 +Plasma_upper_hybrid_frequency_at_point_488_______________________________ (freq_plasma_upper_hybrid_profile488)_ 1.68604833140580475e+11 +Plasma_upper_hybrid_frequency_at_point_489_______________________________ (freq_plasma_upper_hybrid_profile489)_ 1.68527032839226135e+11 +Plasma_upper_hybrid_frequency_at_point_490_______________________________ (freq_plasma_upper_hybrid_profile490)_ 1.68449261937891754e+11 +Plasma_upper_hybrid_frequency_at_point_491_______________________________ (freq_plasma_upper_hybrid_profile491)_ 1.68371520051641907e+11 +Plasma_upper_hybrid_frequency_at_point_492_______________________________ (freq_plasma_upper_hybrid_profile492)_ 1.68293806796240601e+11 +Plasma_upper_hybrid_frequency_at_point_493_______________________________ (freq_plasma_upper_hybrid_profile493)_ 1.68216121788147705e+11 +Plasma_upper_hybrid_frequency_at_point_494_______________________________ (freq_plasma_upper_hybrid_profile494)_ 1.68138464644515533e+11 +Plasma_upper_hybrid_frequency_at_point_495_______________________________ (freq_plasma_upper_hybrid_profile495)_ 1.68060834983185394e+11 +Plasma_upper_hybrid_frequency_at_point_496_______________________________ (freq_plasma_upper_hybrid_profile496)_ 1.67983232422684143e+11 +Plasma_upper_hybrid_frequency_at_point_497_______________________________ (freq_plasma_upper_hybrid_profile497)_ 1.67905656582220825e+11 +Plasma_upper_hybrid_frequency_at_point_498_______________________________ (freq_plasma_upper_hybrid_profile498)_ 1.67828107081683197e+11 +Plasma_upper_hybrid_frequency_at_point_499_______________________________ (freq_plasma_upper_hybrid_profile499)_ 1.67750583541634338e+11 +Plasma_upper_hybrid_frequency_at_point_500_______________________________ (freq_plasma_upper_hybrid_profile500)_ 1.67673085583309143e+11 +Plasma_upper_hybrid_frequency_at_point_501_______________________________ (freq_plasma_upper_hybrid_profile501)_ 1.67595659778382965e+11 +Plasma_upper_hybrid_frequency_at_point_502_______________________________ (freq_plasma_upper_hybrid_profile502)_ 1.67518305814503113e+11 +Plasma_upper_hybrid_frequency_at_point_503_______________________________ (freq_plasma_upper_hybrid_profile503)_ 1.67440976386886810e+11 +Plasma_upper_hybrid_frequency_at_point_504_______________________________ (freq_plasma_upper_hybrid_profile504)_ 1.67363671119502655e+11 +Plasma_upper_hybrid_frequency_at_point_505_______________________________ (freq_plasma_upper_hybrid_profile505)_ 1.67286389636974976e+11 +Plasma_upper_hybrid_frequency_at_point_506_______________________________ (freq_plasma_upper_hybrid_profile506)_ 1.67209131564580841e+11 +Plasma_upper_hybrid_frequency_at_point_507_______________________________ (freq_plasma_upper_hybrid_profile507)_ 1.67131896528246277e+11 +Plasma_upper_hybrid_frequency_at_point_508_______________________________ (freq_plasma_upper_hybrid_profile508)_ 1.67054684154543121e+11 +Plasma_upper_hybrid_frequency_at_point_509_______________________________ (freq_plasma_upper_hybrid_profile509)_ 1.66977494070685822e+11 +Plasma_upper_hybrid_frequency_at_point_510_______________________________ (freq_plasma_upper_hybrid_profile510)_ 1.66900325904527802e+11 +Plasma_upper_hybrid_frequency_at_point_511_______________________________ (freq_plasma_upper_hybrid_profile511)_ 1.66823179284558228e+11 +Plasma_upper_hybrid_frequency_at_point_512_______________________________ (freq_plasma_upper_hybrid_profile512)_ 1.66746053839898804e+11 +Plasma_upper_hybrid_frequency_at_point_513_______________________________ (freq_plasma_upper_hybrid_profile513)_ 1.66668949200300262e+11 +Plasma_upper_hybrid_frequency_at_point_514_______________________________ (freq_plasma_upper_hybrid_profile514)_ 1.66591864996139252e+11 +Plasma_upper_hybrid_frequency_at_point_515_______________________________ (freq_plasma_upper_hybrid_profile515)_ 1.66514800858414673e+11 +Plasma_upper_hybrid_frequency_at_point_516_______________________________ (freq_plasma_upper_hybrid_profile516)_ 1.66437756418744843e+11 +Plasma_upper_hybrid_frequency_at_point_517_______________________________ (freq_plasma_upper_hybrid_profile517)_ 1.66360731309363770e+11 +Plasma_upper_hybrid_frequency_at_point_518_______________________________ (freq_plasma_upper_hybrid_profile518)_ 1.66283725163118103e+11 +Plasma_upper_hybrid_frequency_at_point_519_______________________________ (freq_plasma_upper_hybrid_profile519)_ 1.66206737613463776e+11 +Plasma_upper_hybrid_frequency_at_point_520_______________________________ (freq_plasma_upper_hybrid_profile520)_ 1.66129768294462585e+11 +Plasma_upper_hybrid_frequency_at_point_521_______________________________ (freq_plasma_upper_hybrid_profile521)_ 1.66052816840779175e+11 +Plasma_upper_hybrid_frequency_at_point_522_______________________________ (freq_plasma_upper_hybrid_profile522)_ 1.65975882887677521e+11 +Plasma_upper_hybrid_frequency_at_point_523_______________________________ (freq_plasma_upper_hybrid_profile523)_ 1.65898966071017883e+11 +Plasma_upper_hybrid_frequency_at_point_524_______________________________ (freq_plasma_upper_hybrid_profile524)_ 1.65822066027253174e+11 +Plasma_upper_hybrid_frequency_at_point_525_______________________________ (freq_plasma_upper_hybrid_profile525)_ 1.65745182393426147e+11 +Plasma_upper_hybrid_frequency_at_point_526_______________________________ (freq_plasma_upper_hybrid_profile526)_ 1.65668314807165771e+11 +Plasma_upper_hybrid_frequency_at_point_527_______________________________ (freq_plasma_upper_hybrid_profile527)_ 1.65591462906684235e+11 +Plasma_upper_hybrid_frequency_at_point_528_______________________________ (freq_plasma_upper_hybrid_profile528)_ 1.65514626330773560e+11 +Plasma_upper_hybrid_frequency_at_point_529_______________________________ (freq_plasma_upper_hybrid_profile529)_ 1.65437804718802368e+11 +Plasma_upper_hybrid_frequency_at_point_530_______________________________ (freq_plasma_upper_hybrid_profile530)_ 1.65360997710712646e+11 +Plasma_upper_hybrid_frequency_at_point_531_______________________________ (freq_plasma_upper_hybrid_profile531)_ 1.65284204947016693e+11 +Plasma_upper_hybrid_frequency_at_point_532_______________________________ (freq_plasma_upper_hybrid_profile532)_ 1.65207426068793457e+11 +Plasma_upper_hybrid_frequency_at_point_533_______________________________ (freq_plasma_upper_hybrid_profile533)_ 1.65130660717685883e+11 +Plasma_upper_hybrid_frequency_at_point_534_______________________________ (freq_plasma_upper_hybrid_profile534)_ 1.65053908535897217e+11 +Plasma_upper_hybrid_frequency_at_point_535_______________________________ (freq_plasma_upper_hybrid_profile535)_ 1.64977169166187958e+11 +Plasma_upper_hybrid_frequency_at_point_536_______________________________ (freq_plasma_upper_hybrid_profile536)_ 1.64900442251872864e+11 +Plasma_upper_hybrid_frequency_at_point_537_______________________________ (freq_plasma_upper_hybrid_profile537)_ 1.64823727436817352e+11 +Plasma_upper_hybrid_frequency_at_point_538_______________________________ (freq_plasma_upper_hybrid_profile538)_ 1.64747024365434540e+11 +Plasma_upper_hybrid_frequency_at_point_539_______________________________ (freq_plasma_upper_hybrid_profile539)_ 1.64670332682682129e+11 +Plasma_upper_hybrid_frequency_at_point_540_______________________________ (freq_plasma_upper_hybrid_profile540)_ 1.64593652034058868e+11 +Plasma_upper_hybrid_frequency_at_point_541_______________________________ (freq_plasma_upper_hybrid_profile541)_ 1.64516982065601837e+11 +Plasma_upper_hybrid_frequency_at_point_542_______________________________ (freq_plasma_upper_hybrid_profile542)_ 1.64440322423882751e+11 +Plasma_upper_hybrid_frequency_at_point_543_______________________________ (freq_plasma_upper_hybrid_profile543)_ 1.64363672756005249e+11 +Plasma_upper_hybrid_frequency_at_point_544_______________________________ (freq_plasma_upper_hybrid_profile544)_ 1.64287032709601440e+11 +Plasma_upper_hybrid_frequency_at_point_545_______________________________ (freq_plasma_upper_hybrid_profile545)_ 1.64210401932828766e+11 +Plasma_upper_hybrid_frequency_at_point_546_______________________________ (freq_plasma_upper_hybrid_profile546)_ 1.64133780074366974e+11 +Plasma_upper_hybrid_frequency_at_point_547_______________________________ (freq_plasma_upper_hybrid_profile547)_ 1.64057166783414703e+11 +Plasma_upper_hybrid_frequency_at_point_548_______________________________ (freq_plasma_upper_hybrid_profile548)_ 1.63980561709686584e+11 +Plasma_upper_hybrid_frequency_at_point_549_______________________________ (freq_plasma_upper_hybrid_profile549)_ 1.63903964503409943e+11 +Plasma_upper_hybrid_frequency_at_point_550_______________________________ (freq_plasma_upper_hybrid_profile550)_ 1.63827374815321716e+11 +Plasma_upper_hybrid_frequency_at_point_551_______________________________ (freq_plasma_upper_hybrid_profile551)_ 1.63750792296665161e+11 +Plasma_upper_hybrid_frequency_at_point_552_______________________________ (freq_plasma_upper_hybrid_profile552)_ 1.63674216599186920e+11 +Plasma_upper_hybrid_frequency_at_point_553_______________________________ (freq_plasma_upper_hybrid_profile553)_ 1.63597647375133728e+11 +Plasma_upper_hybrid_frequency_at_point_554_______________________________ (freq_plasma_upper_hybrid_profile554)_ 1.63521084277249298e+11 +Plasma_upper_hybrid_frequency_at_point_555_______________________________ (freq_plasma_upper_hybrid_profile555)_ 1.63444526958771240e+11 +Plasma_upper_hybrid_frequency_at_point_556_______________________________ (freq_plasma_upper_hybrid_profile556)_ 1.63367975073427979e+11 +Plasma_upper_hybrid_frequency_at_point_557_______________________________ (freq_plasma_upper_hybrid_profile557)_ 1.63291428275435364e+11 +Plasma_upper_hybrid_frequency_at_point_558_______________________________ (freq_plasma_upper_hybrid_profile558)_ 1.63214886219493927e+11 +Plasma_upper_hybrid_frequency_at_point_559_______________________________ (freq_plasma_upper_hybrid_profile559)_ 1.63138348560785461e+11 +Plasma_upper_hybrid_frequency_at_point_560_______________________________ (freq_plasma_upper_hybrid_profile560)_ 1.63061814954970032e+11 +Plasma_upper_hybrid_frequency_at_point_561_______________________________ (freq_plasma_upper_hybrid_profile561)_ 1.62985285058182739e+11 +Plasma_upper_hybrid_frequency_at_point_562_______________________________ (freq_plasma_upper_hybrid_profile562)_ 1.62908758527030975e+11 +Plasma_upper_hybrid_frequency_at_point_563_______________________________ (freq_plasma_upper_hybrid_profile563)_ 1.62832235018590790e+11 +Plasma_upper_hybrid_frequency_at_point_564_______________________________ (freq_plasma_upper_hybrid_profile564)_ 1.62755714190404083e+11 +Plasma_upper_hybrid_frequency_at_point_565_______________________________ (freq_plasma_upper_hybrid_profile565)_ 1.62679195700475677e+11 +Plasma_upper_hybrid_frequency_at_point_566_______________________________ (freq_plasma_upper_hybrid_profile566)_ 1.62602679207269684e+11 +Plasma_upper_hybrid_frequency_at_point_567_______________________________ (freq_plasma_upper_hybrid_profile567)_ 1.62526164369707092e+11 +Plasma_upper_hybrid_frequency_at_point_568_______________________________ (freq_plasma_upper_hybrid_profile568)_ 1.62449650847161926e+11 +Plasma_upper_hybrid_frequency_at_point_569_______________________________ (freq_plasma_upper_hybrid_profile569)_ 1.62373138299458862e+11 +Plasma_upper_hybrid_frequency_at_point_570_______________________________ (freq_plasma_upper_hybrid_profile570)_ 1.62296626386869690e+11 +Plasma_upper_hybrid_frequency_at_point_571_______________________________ (freq_plasma_upper_hybrid_profile571)_ 1.62220114770110382e+11 +Plasma_upper_hybrid_frequency_at_point_572_______________________________ (freq_plasma_upper_hybrid_profile572)_ 1.62143603110337952e+11 +Plasma_upper_hybrid_frequency_at_point_573_______________________________ (freq_plasma_upper_hybrid_profile573)_ 1.62067091069147552e+11 +Plasma_upper_hybrid_frequency_at_point_574_______________________________ (freq_plasma_upper_hybrid_profile574)_ 1.61990578308569092e+11 +Plasma_upper_hybrid_frequency_at_point_575_______________________________ (freq_plasma_upper_hybrid_profile575)_ 1.61914064491064362e+11 +Plasma_upper_hybrid_frequency_at_point_576_______________________________ (freq_plasma_upper_hybrid_profile576)_ 1.61837549279524048e+11 +Plasma_upper_hybrid_frequency_at_point_577_______________________________ (freq_plasma_upper_hybrid_profile577)_ 1.61761032337264465e+11 +Plasma_upper_hybrid_frequency_at_point_578_______________________________ (freq_plasma_upper_hybrid_profile578)_ 1.61684513328024506e+11 +Plasma_upper_hybrid_frequency_at_point_579_______________________________ (freq_plasma_upper_hybrid_profile579)_ 1.61607991915962799e+11 +Plasma_upper_hybrid_frequency_at_point_580_______________________________ (freq_plasma_upper_hybrid_profile580)_ 1.61531467765654327e+11 +Plasma_upper_hybrid_frequency_at_point_581_______________________________ (freq_plasma_upper_hybrid_profile581)_ 1.61454940542087646e+11 +Plasma_upper_hybrid_frequency_at_point_582_______________________________ (freq_plasma_upper_hybrid_profile582)_ 1.61378409910661591e+11 +Plasma_upper_hybrid_frequency_at_point_583_______________________________ (freq_plasma_upper_hybrid_profile583)_ 1.61301875537182465e+11 +Plasma_upper_hybrid_frequency_at_point_584_______________________________ (freq_plasma_upper_hybrid_profile584)_ 1.61225337087860718e+11 +Plasma_upper_hybrid_frequency_at_point_585_______________________________ (freq_plasma_upper_hybrid_profile585)_ 1.61148794229308167e+11 +Plasma_upper_hybrid_frequency_at_point_586_______________________________ (freq_plasma_upper_hybrid_profile586)_ 1.61072246628534760e+11 +Plasma_upper_hybrid_frequency_at_point_587_______________________________ (freq_plasma_upper_hybrid_profile587)_ 1.60995693952945465e+11 +Plasma_upper_hybrid_frequency_at_point_588_______________________________ (freq_plasma_upper_hybrid_profile588)_ 1.60919135870337585e+11 +Plasma_upper_hybrid_frequency_at_point_589_______________________________ (freq_plasma_upper_hybrid_profile589)_ 1.60842572048897125e+11 +Plasma_upper_hybrid_frequency_at_point_590_______________________________ (freq_plasma_upper_hybrid_profile590)_ 1.60766002157196442e+11 +Plasma_upper_hybrid_frequency_at_point_591_______________________________ (freq_plasma_upper_hybrid_profile591)_ 1.60689425864190582e+11 +Plasma_upper_hybrid_frequency_at_point_592_______________________________ (freq_plasma_upper_hybrid_profile592)_ 1.60612842839214600e+11 +Plasma_upper_hybrid_frequency_at_point_593_______________________________ (freq_plasma_upper_hybrid_profile593)_ 1.60536252751980438e+11 +Plasma_upper_hybrid_frequency_at_point_594_______________________________ (freq_plasma_upper_hybrid_profile594)_ 1.60459655272573853e+11 +Plasma_upper_hybrid_frequency_at_point_595_______________________________ (freq_plasma_upper_hybrid_profile595)_ 1.60383050071451416e+11 +Plasma_upper_hybrid_frequency_at_point_596_______________________________ (freq_plasma_upper_hybrid_profile596)_ 1.60306436819437408e+11 +Plasma_upper_hybrid_frequency_at_point_597_______________________________ (freq_plasma_upper_hybrid_profile597)_ 1.60229815187721008e+11 +Plasma_upper_hybrid_frequency_at_point_598_______________________________ (freq_plasma_upper_hybrid_profile598)_ 1.60153184847852783e+11 +Plasma_upper_hybrid_frequency_at_point_599_______________________________ (freq_plasma_upper_hybrid_profile599)_ 1.60076545471742340e+11 +Plasma_upper_hybrid_frequency_at_point_600_______________________________ (freq_plasma_upper_hybrid_profile600)_ 1.59999896731654633e+11 +Plasma_upper_hybrid_frequency_at_point_601_______________________________ (freq_plasma_upper_hybrid_profile601)_ 1.59923238300207397e+11 +Plasma_upper_hybrid_frequency_at_point_602_______________________________ (freq_plasma_upper_hybrid_profile602)_ 1.59846569850367828e+11 +Plasma_upper_hybrid_frequency_at_point_603_______________________________ (freq_plasma_upper_hybrid_profile603)_ 1.59769891055449799e+11 +Plasma_upper_hybrid_frequency_at_point_604_______________________________ (freq_plasma_upper_hybrid_profile604)_ 1.59693201589110626e+11 +Plasma_upper_hybrid_frequency_at_point_605_______________________________ (freq_plasma_upper_hybrid_profile605)_ 1.59616501125348083e+11 +Plasma_upper_hybrid_frequency_at_point_606_______________________________ (freq_plasma_upper_hybrid_profile606)_ 1.59539789338497559e+11 +Plasma_upper_hybrid_frequency_at_point_607_______________________________ (freq_plasma_upper_hybrid_profile607)_ 1.59463065903228912e+11 +Plasma_upper_hybrid_frequency_at_point_608_______________________________ (freq_plasma_upper_hybrid_profile608)_ 1.59386330494543121e+11 +Plasma_upper_hybrid_frequency_at_point_609_______________________________ (freq_plasma_upper_hybrid_profile609)_ 1.59309582787770050e+11 +Plasma_upper_hybrid_frequency_at_point_610_______________________________ (freq_plasma_upper_hybrid_profile610)_ 1.59232822458564545e+11 +Plasma_upper_hybrid_frequency_at_point_611_______________________________ (freq_plasma_upper_hybrid_profile611)_ 1.59156049182904022e+11 +Plasma_upper_hybrid_frequency_at_point_612_______________________________ (freq_plasma_upper_hybrid_profile612)_ 1.59079262637085175e+11 +Plasma_upper_hybrid_frequency_at_point_613_______________________________ (freq_plasma_upper_hybrid_profile613)_ 1.59002462497721100e+11 +Plasma_upper_hybrid_frequency_at_point_614_______________________________ (freq_plasma_upper_hybrid_profile614)_ 1.58925648441738068e+11 +Plasma_upper_hybrid_frequency_at_point_615_______________________________ (freq_plasma_upper_hybrid_profile615)_ 1.58848820146372772e+11 +Plasma_upper_hybrid_frequency_at_point_616_______________________________ (freq_plasma_upper_hybrid_profile616)_ 1.58771977289169067e+11 +Plasma_upper_hybrid_frequency_at_point_617_______________________________ (freq_plasma_upper_hybrid_profile617)_ 1.58695119547975128e+11 +Plasma_upper_hybrid_frequency_at_point_618_______________________________ (freq_plasma_upper_hybrid_profile618)_ 1.58618246600940277e+11 +Plasma_upper_hybrid_frequency_at_point_619_______________________________ (freq_plasma_upper_hybrid_profile619)_ 1.58541358126512146e+11 +Plasma_upper_hybrid_frequency_at_point_620_______________________________ (freq_plasma_upper_hybrid_profile620)_ 1.58464453803433380e+11 +Plasma_upper_hybrid_frequency_at_point_621_______________________________ (freq_plasma_upper_hybrid_profile621)_ 1.58387533310739075e+11 +Plasma_upper_hybrid_frequency_at_point_622_______________________________ (freq_plasma_upper_hybrid_profile622)_ 1.58310596327753204e+11 +Plasma_upper_hybrid_frequency_at_point_623_______________________________ (freq_plasma_upper_hybrid_profile623)_ 1.58233642534085968e+11 +Plasma_upper_hybrid_frequency_at_point_624_______________________________ (freq_plasma_upper_hybrid_profile624)_ 1.58156671609630676e+11 +Plasma_upper_hybrid_frequency_at_point_625_______________________________ (freq_plasma_upper_hybrid_profile625)_ 1.58079683234560760e+11 +Plasma_upper_hybrid_frequency_at_point_626_______________________________ (freq_plasma_upper_hybrid_profile626)_ 1.58002677089326691e+11 +Plasma_upper_hybrid_frequency_at_point_627_______________________________ (freq_plasma_upper_hybrid_profile627)_ 1.57925652854652954e+11 +Plasma_upper_hybrid_frequency_at_point_628_______________________________ (freq_plasma_upper_hybrid_profile628)_ 1.57848610211535156e+11 +Plasma_upper_hybrid_frequency_at_point_629_______________________________ (freq_plasma_upper_hybrid_profile629)_ 1.57771548841236786e+11 +Plasma_upper_hybrid_frequency_at_point_630_______________________________ (freq_plasma_upper_hybrid_profile630)_ 1.57694468425286346e+11 +Plasma_upper_hybrid_frequency_at_point_631_______________________________ (freq_plasma_upper_hybrid_profile631)_ 1.57617368645474335e+11 +Plasma_upper_hybrid_frequency_at_point_632_______________________________ (freq_plasma_upper_hybrid_profile632)_ 1.57540249183850220e+11 +Plasma_upper_hybrid_frequency_at_point_633_______________________________ (freq_plasma_upper_hybrid_profile633)_ 1.57463109722719208e+11 +Plasma_upper_hybrid_frequency_at_point_634_______________________________ (freq_plasma_upper_hybrid_profile634)_ 1.57385949944639557e+11 +Plasma_upper_hybrid_frequency_at_point_635_______________________________ (freq_plasma_upper_hybrid_profile635)_ 1.57308769532419312e+11 +Plasma_upper_hybrid_frequency_at_point_636_______________________________ (freq_plasma_upper_hybrid_profile636)_ 1.57231568169113373e+11 +Plasma_upper_hybrid_frequency_at_point_637_______________________________ (freq_plasma_upper_hybrid_profile637)_ 1.57154345538020416e+11 +Plasma_upper_hybrid_frequency_at_point_638_______________________________ (freq_plasma_upper_hybrid_profile638)_ 1.57077101322679840e+11 +Plasma_upper_hybrid_frequency_at_point_639_______________________________ (freq_plasma_upper_hybrid_profile639)_ 1.56999835206868866e+11 +Plasma_upper_hybrid_frequency_at_point_640_______________________________ (freq_plasma_upper_hybrid_profile640)_ 1.56922546874599396e+11 +Plasma_upper_hybrid_frequency_at_point_641_______________________________ (freq_plasma_upper_hybrid_profile641)_ 1.56845236010114899e+11 +Plasma_upper_hybrid_frequency_at_point_642_______________________________ (freq_plasma_upper_hybrid_profile642)_ 1.56767902297887726e+11 +Plasma_upper_hybrid_frequency_at_point_643_______________________________ (freq_plasma_upper_hybrid_profile643)_ 1.56690545422615509e+11 +Plasma_upper_hybrid_frequency_at_point_644_______________________________ (freq_plasma_upper_hybrid_profile644)_ 1.56613165069218719e+11 +Plasma_upper_hybrid_frequency_at_point_645_______________________________ (freq_plasma_upper_hybrid_profile645)_ 1.56535760922837189e+11 +Plasma_upper_hybrid_frequency_at_point_646_______________________________ (freq_plasma_upper_hybrid_profile646)_ 1.56458332668827301e+11 +Plasma_upper_hybrid_frequency_at_point_647_______________________________ (freq_plasma_upper_hybrid_profile647)_ 1.56380879992758850e+11 +Plasma_upper_hybrid_frequency_at_point_648_______________________________ (freq_plasma_upper_hybrid_profile648)_ 1.56303402580411987e+11 +Plasma_upper_hybrid_frequency_at_point_649_______________________________ (freq_plasma_upper_hybrid_profile649)_ 1.56225900117774384e+11 +Plasma_upper_hybrid_frequency_at_point_650_______________________________ (freq_plasma_upper_hybrid_profile650)_ 1.56148372291037750e+11 +Plasma_upper_hybrid_frequency_at_point_651_______________________________ (freq_plasma_upper_hybrid_profile651)_ 1.56070818786595306e+11 +Plasma_upper_hybrid_frequency_at_point_652_______________________________ (freq_plasma_upper_hybrid_profile652)_ 1.55993239291038269e+11 +Plasma_upper_hybrid_frequency_at_point_653_______________________________ (freq_plasma_upper_hybrid_profile653)_ 1.55915633491153168e+11 +Plasma_upper_hybrid_frequency_at_point_654_______________________________ (freq_plasma_upper_hybrid_profile654)_ 1.55838001073918427e+11 +Plasma_upper_hybrid_frequency_at_point_655_______________________________ (freq_plasma_upper_hybrid_profile655)_ 1.55760341726501709e+11 +Plasma_upper_hybrid_frequency_at_point_656_______________________________ (freq_plasma_upper_hybrid_profile656)_ 1.55682655136256561e+11 +Plasma_upper_hybrid_frequency_at_point_657_______________________________ (freq_plasma_upper_hybrid_profile657)_ 1.55604940990719391e+11 +Plasma_upper_hybrid_frequency_at_point_658_______________________________ (freq_plasma_upper_hybrid_profile658)_ 1.55527198977606506e+11 +Plasma_upper_hybrid_frequency_at_point_659_______________________________ (freq_plasma_upper_hybrid_profile659)_ 1.55449428784810944e+11 +Plasma_upper_hybrid_frequency_at_point_660_______________________________ (freq_plasma_upper_hybrid_profile660)_ 1.55371630100399506e+11 +Plasma_upper_hybrid_frequency_at_point_661_______________________________ (freq_plasma_upper_hybrid_profile661)_ 1.55293802612609619e+11 +Plasma_upper_hybrid_frequency_at_point_662_______________________________ (freq_plasma_upper_hybrid_profile662)_ 1.55215946009846222e+11 +Plasma_upper_hybrid_frequency_at_point_663_______________________________ (freq_plasma_upper_hybrid_profile663)_ 1.55138059980678741e+11 +Plasma_upper_hybrid_frequency_at_point_664_______________________________ (freq_plasma_upper_hybrid_profile664)_ 1.55060144213838043e+11 +Plasma_upper_hybrid_frequency_at_point_665_______________________________ (freq_plasma_upper_hybrid_profile665)_ 1.54982198398213318e+11 +Plasma_upper_hybrid_frequency_at_point_666_______________________________ (freq_plasma_upper_hybrid_profile666)_ 1.54904222222848877e+11 +Plasma_upper_hybrid_frequency_at_point_667_______________________________ (freq_plasma_upper_hybrid_profile667)_ 1.54826215376941254e+11 +Plasma_upper_hybrid_frequency_at_point_668_______________________________ (freq_plasma_upper_hybrid_profile668)_ 1.54748177549836090e+11 +Plasma_upper_hybrid_frequency_at_point_669_______________________________ (freq_plasma_upper_hybrid_profile669)_ 1.54670108431024750e+11 +Plasma_upper_hybrid_frequency_at_point_670_______________________________ (freq_plasma_upper_hybrid_profile670)_ 1.54592007710141754e+11 +Plasma_upper_hybrid_frequency_at_point_671_______________________________ (freq_plasma_upper_hybrid_profile671)_ 1.54513875076961121e+11 +Plasma_upper_hybrid_frequency_at_point_672_______________________________ (freq_plasma_upper_hybrid_profile672)_ 1.54435710221393677e+11 +Plasma_upper_hybrid_frequency_at_point_673_______________________________ (freq_plasma_upper_hybrid_profile673)_ 1.54357512833483612e+11 +Plasma_upper_hybrid_frequency_at_point_674_______________________________ (freq_plasma_upper_hybrid_profile674)_ 1.54279282603405701e+11 +Plasma_upper_hybrid_frequency_at_point_675_______________________________ (freq_plasma_upper_hybrid_profile675)_ 1.54201019221461884e+11 +Plasma_upper_hybrid_frequency_at_point_676_______________________________ (freq_plasma_upper_hybrid_profile676)_ 1.54122722378078461e+11 +Plasma_upper_hybrid_frequency_at_point_677_______________________________ (freq_plasma_upper_hybrid_profile677)_ 1.54044391763802521e+11 +Plasma_upper_hybrid_frequency_at_point_678_______________________________ (freq_plasma_upper_hybrid_profile678)_ 1.53966027069299377e+11 +Plasma_upper_hybrid_frequency_at_point_679_______________________________ (freq_plasma_upper_hybrid_profile679)_ 1.53887627985348938e+11 +Plasma_upper_hybrid_frequency_at_point_680_______________________________ (freq_plasma_upper_hybrid_profile680)_ 1.53809194202842865e+11 +Plasma_upper_hybrid_frequency_at_point_681_______________________________ (freq_plasma_upper_hybrid_profile681)_ 1.53730725412781281e+11 +Plasma_upper_hybrid_frequency_at_point_682_______________________________ (freq_plasma_upper_hybrid_profile682)_ 1.53652221306269775e+11 +Plasma_upper_hybrid_frequency_at_point_683_______________________________ (freq_plasma_upper_hybrid_profile683)_ 1.53573681574516144e+11 +Plasma_upper_hybrid_frequency_at_point_684_______________________________ (freq_plasma_upper_hybrid_profile684)_ 1.53495105908827179e+11 +Plasma_upper_hybrid_frequency_at_point_685_______________________________ (freq_plasma_upper_hybrid_profile685)_ 1.53416494000605743e+11 +Plasma_upper_hybrid_frequency_at_point_686_______________________________ (freq_plasma_upper_hybrid_profile686)_ 1.53337845541347321e+11 +Plasma_upper_hybrid_frequency_at_point_687_______________________________ (freq_plasma_upper_hybrid_profile687)_ 1.53259160222637085e+11 +Plasma_upper_hybrid_frequency_at_point_688_______________________________ (freq_plasma_upper_hybrid_profile688)_ 1.53180437736146606e+11 +Plasma_upper_hybrid_frequency_at_point_689_______________________________ (freq_plasma_upper_hybrid_profile689)_ 1.53101677773630707e+11 +Plasma_upper_hybrid_frequency_at_point_690_______________________________ (freq_plasma_upper_hybrid_profile690)_ 1.53022880026924286e+11 +Plasma_upper_hybrid_frequency_at_point_691_______________________________ (freq_plasma_upper_hybrid_profile691)_ 1.52944044187939178e+11 +Plasma_upper_hybrid_frequency_at_point_692_______________________________ (freq_plasma_upper_hybrid_profile692)_ 1.52865169948660797e+11 +Plasma_upper_hybrid_frequency_at_point_693_______________________________ (freq_plasma_upper_hybrid_profile693)_ 1.52786257001145233e+11 +Plasma_upper_hybrid_frequency_at_point_694_______________________________ (freq_plasma_upper_hybrid_profile694)_ 1.52707305037515717e+11 +Plasma_upper_hybrid_frequency_at_point_695_______________________________ (freq_plasma_upper_hybrid_profile695)_ 1.52628313749959747e+11 +Plasma_upper_hybrid_frequency_at_point_696_______________________________ (freq_plasma_upper_hybrid_profile696)_ 1.52549282830725586e+11 +Plasma_upper_hybrid_frequency_at_point_697_______________________________ (freq_plasma_upper_hybrid_profile697)_ 1.52470211972119232e+11 +Plasma_upper_hybrid_frequency_at_point_698_______________________________ (freq_plasma_upper_hybrid_profile698)_ 1.52391100866501160e+11 +Plasma_upper_hybrid_frequency_at_point_699_______________________________ (freq_plasma_upper_hybrid_profile699)_ 1.52311949206283020e+11 +Plasma_upper_hybrid_frequency_at_point_700_______________________________ (freq_plasma_upper_hybrid_profile700)_ 1.52232756683924561e+11 +Plasma_upper_hybrid_frequency_at_point_701_______________________________ (freq_plasma_upper_hybrid_profile701)_ 1.52153522991930237e+11 +Plasma_upper_hybrid_frequency_at_point_702_______________________________ (freq_plasma_upper_hybrid_profile702)_ 1.52074247822846008e+11 +Plasma_upper_hybrid_frequency_at_point_703_______________________________ (freq_plasma_upper_hybrid_profile703)_ 1.51994930869256134e+11 +Plasma_upper_hybrid_frequency_at_point_704_______________________________ (freq_plasma_upper_hybrid_profile704)_ 1.51915571823779938e+11 +Plasma_upper_hybrid_frequency_at_point_705_______________________________ (freq_plasma_upper_hybrid_profile705)_ 1.51836170379068451e+11 +Plasma_upper_hybrid_frequency_at_point_706_______________________________ (freq_plasma_upper_hybrid_profile706)_ 1.51756726227801239e+11 +Plasma_upper_hybrid_frequency_at_point_707_______________________________ (freq_plasma_upper_hybrid_profile707)_ 1.51677239062683105e+11 +Plasma_upper_hybrid_frequency_at_point_708_______________________________ (freq_plasma_upper_hybrid_profile708)_ 1.51597708576440735e+11 +Plasma_upper_hybrid_frequency_at_point_709_______________________________ (freq_plasma_upper_hybrid_profile709)_ 1.51518134461819489e+11 +Plasma_upper_hybrid_frequency_at_point_710_______________________________ (freq_plasma_upper_hybrid_profile710)_ 1.51438516411580231e+11 +Plasma_upper_hybrid_frequency_at_point_711_______________________________ (freq_plasma_upper_hybrid_profile711)_ 1.51358854118495697e+11 +Plasma_upper_hybrid_frequency_at_point_712_______________________________ (freq_plasma_upper_hybrid_profile712)_ 1.51279147275347534e+11 +Plasma_upper_hybrid_frequency_at_point_713_______________________________ (freq_plasma_upper_hybrid_profile713)_ 1.51199395574922729e+11 +Plasma_upper_hybrid_frequency_at_point_714_______________________________ (freq_plasma_upper_hybrid_profile714)_ 1.51119598710010651e+11 +Plasma_upper_hybrid_frequency_at_point_715_______________________________ (freq_plasma_upper_hybrid_profile715)_ 1.51039756373399139e+11 +Plasma_upper_hybrid_frequency_at_point_716_______________________________ (freq_plasma_upper_hybrid_profile716)_ 1.50959868257871826e+11 +Plasma_upper_hybrid_frequency_at_point_717_______________________________ (freq_plasma_upper_hybrid_profile717)_ 1.50879934056204285e+11 +Plasma_upper_hybrid_frequency_at_point_718_______________________________ (freq_plasma_upper_hybrid_profile718)_ 1.50799953461161041e+11 +Plasma_upper_hybrid_frequency_at_point_719_______________________________ (freq_plasma_upper_hybrid_profile719)_ 1.50719926165491974e+11 +Plasma_upper_hybrid_frequency_at_point_720_______________________________ (freq_plasma_upper_hybrid_profile720)_ 1.50639851861929016e+11 +Plasma_upper_hybrid_frequency_at_point_721_______________________________ (freq_plasma_upper_hybrid_profile721)_ 1.50559730243182953e+11 +Plasma_upper_hybrid_frequency_at_point_722_______________________________ (freq_plasma_upper_hybrid_profile722)_ 1.50479561001939789e+11 +Plasma_upper_hybrid_frequency_at_point_723_______________________________ (freq_plasma_upper_hybrid_profile723)_ 1.50399343830857605e+11 +Plasma_upper_hybrid_frequency_at_point_724_______________________________ (freq_plasma_upper_hybrid_profile724)_ 1.50319078422562927e+11 +Plasma_upper_hybrid_frequency_at_point_725_______________________________ (freq_plasma_upper_hybrid_profile725)_ 1.50238764469647583e+11 +Plasma_upper_hybrid_frequency_at_point_726_______________________________ (freq_plasma_upper_hybrid_profile726)_ 1.50158401664665070e+11 +Plasma_upper_hybrid_frequency_at_point_727_______________________________ (freq_plasma_upper_hybrid_profile727)_ 1.50077989700127289e+11 +Plasma_upper_hybrid_frequency_at_point_728_______________________________ (freq_plasma_upper_hybrid_profile728)_ 1.49997528268501038e+11 +Plasma_upper_hybrid_frequency_at_point_729_______________________________ (freq_plasma_upper_hybrid_profile729)_ 1.49917017062204651e+11 +Plasma_upper_hybrid_frequency_at_point_730_______________________________ (freq_plasma_upper_hybrid_profile730)_ 1.49836455773604584e+11 +Plasma_upper_hybrid_frequency_at_point_731_______________________________ (freq_plasma_upper_hybrid_profile731)_ 1.49755844095011719e+11 +Plasma_upper_hybrid_frequency_at_point_732_______________________________ (freq_plasma_upper_hybrid_profile732)_ 1.49675181718678253e+11 +Plasma_upper_hybrid_frequency_at_point_733_______________________________ (freq_plasma_upper_hybrid_profile733)_ 1.49594468336794098e+11 +Plasma_upper_hybrid_frequency_at_point_734_______________________________ (freq_plasma_upper_hybrid_profile734)_ 1.49513703641483246e+11 +Plasma_upper_hybrid_frequency_at_point_735_______________________________ (freq_plasma_upper_hybrid_profile735)_ 1.49432887324800629e+11 +Plasma_upper_hybrid_frequency_at_point_736_______________________________ (freq_plasma_upper_hybrid_profile736)_ 1.49352019078728180e+11 +Plasma_upper_hybrid_frequency_at_point_737_______________________________ (freq_plasma_upper_hybrid_profile737)_ 1.49271098595171814e+11 +Plasma_upper_hybrid_frequency_at_point_738_______________________________ (freq_plasma_upper_hybrid_profile738)_ 1.49190125565957550e+11 +Plasma_upper_hybrid_frequency_at_point_739_______________________________ (freq_plasma_upper_hybrid_profile739)_ 1.49109099682828156e+11 +Plasma_upper_hybrid_frequency_at_point_740_______________________________ (freq_plasma_upper_hybrid_profile740)_ 1.49028020637439606e+11 +Plasma_upper_hybrid_frequency_at_point_741_______________________________ (freq_plasma_upper_hybrid_profile741)_ 1.48946888121357574e+11 +Plasma_upper_hybrid_frequency_at_point_742_______________________________ (freq_plasma_upper_hybrid_profile742)_ 1.48865701826053772e+11 +Plasma_upper_hybrid_frequency_at_point_743_______________________________ (freq_plasma_upper_hybrid_profile743)_ 1.48784461442902527e+11 +Plasma_upper_hybrid_frequency_at_point_744_______________________________ (freq_plasma_upper_hybrid_profile744)_ 1.48703166663177094e+11 +Plasma_upper_hybrid_frequency_at_point_745_______________________________ (freq_plasma_upper_hybrid_profile745)_ 1.48621817178046173e+11 +Plasma_upper_hybrid_frequency_at_point_746_______________________________ (freq_plasma_upper_hybrid_profile746)_ 1.48540412678570312e+11 +Plasma_upper_hybrid_frequency_at_point_747_______________________________ (freq_plasma_upper_hybrid_profile747)_ 1.48458952855698303e+11 +Plasma_upper_hybrid_frequency_at_point_748_______________________________ (freq_plasma_upper_hybrid_profile748)_ 1.48377437400263428e+11 +Plasma_upper_hybrid_frequency_at_point_749_______________________________ (freq_plasma_upper_hybrid_profile749)_ 1.48295866002980194e+11 +Plasma_upper_hybrid_frequency_at_point_750_______________________________ (freq_plasma_upper_hybrid_profile750)_ 1.48214238354440277e+11 +Plasma_upper_hybrid_frequency_at_point_751_______________________________ (freq_plasma_upper_hybrid_profile751)_ 1.48132554145109283e+11 +Plasma_upper_hybrid_frequency_at_point_752_______________________________ (freq_plasma_upper_hybrid_profile752)_ 1.48050813065322723e+11 +Plasma_upper_hybrid_frequency_at_point_753_______________________________ (freq_plasma_upper_hybrid_profile753)_ 1.47969014805282715e+11 +Plasma_upper_hybrid_frequency_at_point_754_______________________________ (freq_plasma_upper_hybrid_profile754)_ 1.47887159055054077e+11 +Plasma_upper_hybrid_frequency_at_point_755_______________________________ (freq_plasma_upper_hybrid_profile755)_ 1.47805245504560608e+11 +Plasma_upper_hybrid_frequency_at_point_756_______________________________ (freq_plasma_upper_hybrid_profile756)_ 1.47723273843581696e+11 +Plasma_upper_hybrid_frequency_at_point_757_______________________________ (freq_plasma_upper_hybrid_profile757)_ 1.47641243761748230e+11 +Plasma_upper_hybrid_frequency_at_point_758_______________________________ (freq_plasma_upper_hybrid_profile758)_ 1.47559154948539154e+11 +Plasma_upper_hybrid_frequency_at_point_759_______________________________ (freq_plasma_upper_hybrid_profile759)_ 1.47477007093277679e+11 +Plasma_upper_hybrid_frequency_at_point_760_______________________________ (freq_plasma_upper_hybrid_profile760)_ 1.47394799885127533e+11 +Plasma_upper_hybrid_frequency_at_point_761_______________________________ (freq_plasma_upper_hybrid_profile761)_ 1.47312533013089020e+11 +Plasma_upper_hybrid_frequency_at_point_762_______________________________ (freq_plasma_upper_hybrid_profile762)_ 1.47230206165995728e+11 +Plasma_upper_hybrid_frequency_at_point_763_______________________________ (freq_plasma_upper_hybrid_profile763)_ 1.47147819032510193e+11 +Plasma_upper_hybrid_frequency_at_point_764_______________________________ (freq_plasma_upper_hybrid_profile764)_ 1.47065371301120605e+11 +Plasma_upper_hybrid_frequency_at_point_765_______________________________ (freq_plasma_upper_hybrid_profile765)_ 1.46982862660136566e+11 +Plasma_upper_hybrid_frequency_at_point_766_______________________________ (freq_plasma_upper_hybrid_profile766)_ 1.46900292797685699e+11 +Plasma_upper_hybrid_frequency_at_point_767_______________________________ (freq_plasma_upper_hybrid_profile767)_ 1.46817661401709503e+11 +Plasma_upper_hybrid_frequency_at_point_768_______________________________ (freq_plasma_upper_hybrid_profile768)_ 1.46734968159959656e+11 +Plasma_upper_hybrid_frequency_at_point_769_______________________________ (freq_plasma_upper_hybrid_profile769)_ 1.46652212759994171e+11 +Plasma_upper_hybrid_frequency_at_point_770_______________________________ (freq_plasma_upper_hybrid_profile770)_ 1.46569394889173492e+11 +Plasma_upper_hybrid_frequency_at_point_771_______________________________ (freq_plasma_upper_hybrid_profile771)_ 1.46486514234656677e+11 +Plasma_upper_hybrid_frequency_at_point_772_______________________________ (freq_plasma_upper_hybrid_profile772)_ 1.46403570483397400e+11 +Plasma_upper_hybrid_frequency_at_point_773_______________________________ (freq_plasma_upper_hybrid_profile773)_ 1.46320563322140137e+11 +Plasma_upper_hybrid_frequency_at_point_774_______________________________ (freq_plasma_upper_hybrid_profile774)_ 1.46237492437416199e+11 +Plasma_upper_hybrid_frequency_at_point_775_______________________________ (freq_plasma_upper_hybrid_profile775)_ 1.46154357515539978e+11 +Plasma_upper_hybrid_frequency_at_point_776_______________________________ (freq_plasma_upper_hybrid_profile776)_ 1.46071158242604645e+11 +Plasma_upper_hybrid_frequency_at_point_777_______________________________ (freq_plasma_upper_hybrid_profile777)_ 1.45987894304478607e+11 +Plasma_upper_hybrid_frequency_at_point_778_______________________________ (freq_plasma_upper_hybrid_profile778)_ 1.45904565386801086e+11 +Plasma_upper_hybrid_frequency_at_point_779_______________________________ (freq_plasma_upper_hybrid_profile779)_ 1.45821171174978699e+11 +Plasma_upper_hybrid_frequency_at_point_780_______________________________ (freq_plasma_upper_hybrid_profile780)_ 1.45737711354180817e+11 +Plasma_upper_hybrid_frequency_at_point_781_______________________________ (freq_plasma_upper_hybrid_profile781)_ 1.45654185609336151e+11 +Plasma_upper_hybrid_frequency_at_point_782_______________________________ (freq_plasma_upper_hybrid_profile782)_ 1.45570593625128174e+11 +Plasma_upper_hybrid_frequency_at_point_783_______________________________ (freq_plasma_upper_hybrid_profile783)_ 1.45486935085991577e+11 +Plasma_upper_hybrid_frequency_at_point_784_______________________________ (freq_plasma_upper_hybrid_profile784)_ 1.45403209676107849e+11 +Plasma_upper_hybrid_frequency_at_point_785_______________________________ (freq_plasma_upper_hybrid_profile785)_ 1.45319417079401398e+11 +Plasma_upper_hybrid_frequency_at_point_786_______________________________ (freq_plasma_upper_hybrid_profile786)_ 1.45235556979535370e+11 +Plasma_upper_hybrid_frequency_at_point_787_______________________________ (freq_plasma_upper_hybrid_profile787)_ 1.45151629059907532e+11 +Plasma_upper_hybrid_frequency_at_point_788_______________________________ (freq_plasma_upper_hybrid_profile788)_ 1.45067633003646210e+11 +Plasma_upper_hybrid_frequency_at_point_789_______________________________ (freq_plasma_upper_hybrid_profile789)_ 1.44983568493606201e+11 +Plasma_upper_hybrid_frequency_at_point_790_______________________________ (freq_plasma_upper_hybrid_profile790)_ 1.44899435212364441e+11 +Plasma_upper_hybrid_frequency_at_point_791_______________________________ (freq_plasma_upper_hybrid_profile791)_ 1.44815232842215973e+11 +Plasma_upper_hybrid_frequency_at_point_792_______________________________ (freq_plasma_upper_hybrid_profile792)_ 1.44730961065169800e+11 +Plasma_upper_hybrid_frequency_at_point_793_______________________________ (freq_plasma_upper_hybrid_profile793)_ 1.44646619562944580e+11 +Plasma_upper_hybrid_frequency_at_point_794_______________________________ (freq_plasma_upper_hybrid_profile794)_ 1.44562208016964386e+11 +Plasma_upper_hybrid_frequency_at_point_795_______________________________ (freq_plasma_upper_hybrid_profile795)_ 1.44477726108354584e+11 +Plasma_upper_hybrid_frequency_at_point_796_______________________________ (freq_plasma_upper_hybrid_profile796)_ 1.44393173517937592e+11 +Plasma_upper_hybrid_frequency_at_point_797_______________________________ (freq_plasma_upper_hybrid_profile797)_ 1.44308549926228394e+11 +Plasma_upper_hybrid_frequency_at_point_798_______________________________ (freq_plasma_upper_hybrid_profile798)_ 1.44223855013430573e+11 +Plasma_upper_hybrid_frequency_at_point_799_______________________________ (freq_plasma_upper_hybrid_profile799)_ 1.44139088459431641e+11 +Plasma_upper_hybrid_frequency_at_point_800_______________________________ (freq_plasma_upper_hybrid_profile800)_ 1.44054249943799164e+11 +Plasma_upper_hybrid_frequency_at_point_801_______________________________ (freq_plasma_upper_hybrid_profile801)_ 1.43969339145776001e+11 +Plasma_upper_hybrid_frequency_at_point_802_______________________________ (freq_plasma_upper_hybrid_profile802)_ 1.43884355744276215e+11 +Plasma_upper_hybrid_frequency_at_point_803_______________________________ (freq_plasma_upper_hybrid_profile803)_ 1.43799299417880493e+11 +Plasma_upper_hybrid_frequency_at_point_804_______________________________ (freq_plasma_upper_hybrid_profile804)_ 1.43714169844832001e+11 +Plasma_upper_hybrid_frequency_at_point_805_______________________________ (freq_plasma_upper_hybrid_profile805)_ 1.43628966703031769e+11 +Plasma_upper_hybrid_frequency_at_point_806_______________________________ (freq_plasma_upper_hybrid_profile806)_ 1.43543689670034332e+11 +Plasma_upper_hybrid_frequency_at_point_807_______________________________ (freq_plasma_upper_hybrid_profile807)_ 1.43458338423043335e+11 +Plasma_upper_hybrid_frequency_at_point_808_______________________________ (freq_plasma_upper_hybrid_profile808)_ 1.43372912638906921e+11 +Plasma_upper_hybrid_frequency_at_point_809_______________________________ (freq_plasma_upper_hybrid_profile809)_ 1.43287411994113434e+11 +Plasma_upper_hybrid_frequency_at_point_810_______________________________ (freq_plasma_upper_hybrid_profile810)_ 1.43201836164786713e+11 +Plasma_upper_hybrid_frequency_at_point_811_______________________________ (freq_plasma_upper_hybrid_profile811)_ 1.43116184826681671e+11 +Plasma_upper_hybrid_frequency_at_point_812_______________________________ (freq_plasma_upper_hybrid_profile812)_ 1.43030457655179871e+11 +Plasma_upper_hybrid_frequency_at_point_813_______________________________ (freq_plasma_upper_hybrid_profile813)_ 1.42944654325284668e+11 +Plasma_upper_hybrid_frequency_at_point_814_______________________________ (freq_plasma_upper_hybrid_profile814)_ 1.42858774511616913e+11 +Plasma_upper_hybrid_frequency_at_point_815_______________________________ (freq_plasma_upper_hybrid_profile815)_ 1.42772817888410095e+11 +Plasma_upper_hybrid_frequency_at_point_816_______________________________ (freq_plasma_upper_hybrid_profile816)_ 1.42686784129505920e+11 +Plasma_upper_hybrid_frequency_at_point_817_______________________________ (freq_plasma_upper_hybrid_profile817)_ 1.42600672908349609e+11 +Plasma_upper_hybrid_frequency_at_point_818_______________________________ (freq_plasma_upper_hybrid_profile818)_ 1.42514483897985077e+11 +Plasma_upper_hybrid_frequency_at_point_819_______________________________ (freq_plasma_upper_hybrid_profile819)_ 1.42428216771050568e+11 +Plasma_upper_hybrid_frequency_at_point_820_______________________________ (freq_plasma_upper_hybrid_profile820)_ 1.42341871199773529e+11 +Plasma_upper_hybrid_frequency_at_point_821_______________________________ (freq_plasma_upper_hybrid_profile821)_ 1.42255446855966248e+11 +Plasma_upper_hybrid_frequency_at_point_822_______________________________ (freq_plasma_upper_hybrid_profile822)_ 1.42168943411020813e+11 +Plasma_upper_hybrid_frequency_at_point_823_______________________________ (freq_plasma_upper_hybrid_profile823)_ 1.42082360535904633e+11 +Plasma_upper_hybrid_frequency_at_point_824_______________________________ (freq_plasma_upper_hybrid_profile824)_ 1.41995697901155243e+11 +Plasma_upper_hybrid_frequency_at_point_825_______________________________ (freq_plasma_upper_hybrid_profile825)_ 1.41908955176875977e+11 +Plasma_upper_hybrid_frequency_at_point_826_______________________________ (freq_plasma_upper_hybrid_profile826)_ 1.41822132032730591e+11 +Plasma_upper_hybrid_frequency_at_point_827_______________________________ (freq_plasma_upper_hybrid_profile827)_ 1.41735228137938934e+11 +Plasma_upper_hybrid_frequency_at_point_828_______________________________ (freq_plasma_upper_hybrid_profile828)_ 1.41648243161271545e+11 +Plasma_upper_hybrid_frequency_at_point_829_______________________________ (freq_plasma_upper_hybrid_profile829)_ 1.41561176771045135e+11 +Plasma_upper_hybrid_frequency_at_point_830_______________________________ (freq_plasma_upper_hybrid_profile830)_ 1.41474028635117493e+11 +Plasma_upper_hybrid_frequency_at_point_831_______________________________ (freq_plasma_upper_hybrid_profile831)_ 1.41386798420882385e+11 +Plasma_upper_hybrid_frequency_at_point_832_______________________________ (freq_plasma_upper_hybrid_profile832)_ 1.41299485795264923e+11 +Plasma_upper_hybrid_frequency_at_point_833_______________________________ (freq_plasma_upper_hybrid_profile833)_ 1.41212090424716187e+11 +Plasma_upper_hybrid_frequency_at_point_834_______________________________ (freq_plasma_upper_hybrid_profile834)_ 1.41124611975208466e+11 +Plasma_upper_hybrid_frequency_at_point_835_______________________________ (freq_plasma_upper_hybrid_profile835)_ 1.41037050112230011e+11 +Plasma_upper_hybrid_frequency_at_point_836_______________________________ (freq_plasma_upper_hybrid_profile836)_ 1.40949404500780121e+11 +Plasma_upper_hybrid_frequency_at_point_837_______________________________ (freq_plasma_upper_hybrid_profile837)_ 1.40861674805363800e+11 +Plasma_upper_hybrid_frequency_at_point_838_______________________________ (freq_plasma_upper_hybrid_profile838)_ 1.40773860689986877e+11 +Plasma_upper_hybrid_frequency_at_point_839_______________________________ (freq_plasma_upper_hybrid_profile839)_ 1.40685961818150757e+11 +Plasma_upper_hybrid_frequency_at_point_840_______________________________ (freq_plasma_upper_hybrid_profile840)_ 1.40597977852847229e+11 +Plasma_upper_hybrid_frequency_at_point_841_______________________________ (freq_plasma_upper_hybrid_profile841)_ 1.40509908456553101e+11 +Plasma_upper_hybrid_frequency_at_point_842_______________________________ (freq_plasma_upper_hybrid_profile842)_ 1.40421753291225250e+11 +Plasma_upper_hybrid_frequency_at_point_843_______________________________ (freq_plasma_upper_hybrid_profile843)_ 1.40333512018295197e+11 +Plasma_upper_hybrid_frequency_at_point_844_______________________________ (freq_plasma_upper_hybrid_profile844)_ 1.40245184298663849e+11 +Plasma_upper_hybrid_frequency_at_point_845_______________________________ (freq_plasma_upper_hybrid_profile845)_ 1.40156769792696045e+11 +Plasma_upper_hybrid_frequency_at_point_846_______________________________ (freq_plasma_upper_hybrid_profile846)_ 1.40068268160215515e+11 +Plasma_upper_hybrid_frequency_at_point_847_______________________________ (freq_plasma_upper_hybrid_profile847)_ 1.39979679060499176e+11 +Plasma_upper_hybrid_frequency_at_point_848_______________________________ (freq_plasma_upper_hybrid_profile848)_ 1.39891002152272064e+11 +Plasma_upper_hybrid_frequency_at_point_849_______________________________ (freq_plasma_upper_hybrid_profile849)_ 1.39802237093701477e+11 +Plasma_upper_hybrid_frequency_at_point_850_______________________________ (freq_plasma_upper_hybrid_profile850)_ 1.39713383542391998e+11 +Plasma_upper_hybrid_frequency_at_point_851_______________________________ (freq_plasma_upper_hybrid_profile851)_ 1.39624441155379639e+11 +Plasma_upper_hybrid_frequency_at_point_852_______________________________ (freq_plasma_upper_hybrid_profile852)_ 1.39535409589126556e+11 +Plasma_upper_hybrid_frequency_at_point_853_______________________________ (freq_plasma_upper_hybrid_profile853)_ 1.39446288499515350e+11 +Plasma_upper_hybrid_frequency_at_point_854_______________________________ (freq_plasma_upper_hybrid_profile854)_ 1.39357077541843567e+11 +Plasma_upper_hybrid_frequency_at_point_855_______________________________ (freq_plasma_upper_hybrid_profile855)_ 1.39267776370818085e+11 +Plasma_upper_hybrid_frequency_at_point_856_______________________________ (freq_plasma_upper_hybrid_profile856)_ 1.39178384640549591e+11 +Plasma_upper_hybrid_frequency_at_point_857_______________________________ (freq_plasma_upper_hybrid_profile857)_ 1.39088902004546539e+11 +Plasma_upper_hybrid_frequency_at_point_858_______________________________ (freq_plasma_upper_hybrid_profile858)_ 1.38999328115710052e+11 +Plasma_upper_hybrid_frequency_at_point_859_______________________________ (freq_plasma_upper_hybrid_profile859)_ 1.38909662626327637e+11 +Plasma_upper_hybrid_frequency_at_point_860_______________________________ (freq_plasma_upper_hybrid_profile860)_ 1.38819905188067719e+11 +Plasma_upper_hybrid_frequency_at_point_861_______________________________ (freq_plasma_upper_hybrid_profile861)_ 1.38730055451973907e+11 +Plasma_upper_hybrid_frequency_at_point_862_______________________________ (freq_plasma_upper_hybrid_profile862)_ 1.38640113068458832e+11 +Plasma_upper_hybrid_frequency_at_point_863_______________________________ (freq_plasma_upper_hybrid_profile863)_ 1.38550077687298828e+11 +Plasma_upper_hybrid_frequency_at_point_864_______________________________ (freq_plasma_upper_hybrid_profile864)_ 1.38459948957627380e+11 +Plasma_upper_hybrid_frequency_at_point_865_______________________________ (freq_plasma_upper_hybrid_profile865)_ 1.38369726527929901e+11 +Plasma_upper_hybrid_frequency_at_point_866_______________________________ (freq_plasma_upper_hybrid_profile866)_ 1.38279410046037231e+11 +Plasma_upper_hybrid_frequency_at_point_867_______________________________ (freq_plasma_upper_hybrid_profile867)_ 1.38188999159119965e+11 +Plasma_upper_hybrid_frequency_at_point_868_______________________________ (freq_plasma_upper_hybrid_profile868)_ 1.38098493513682312e+11 +Plasma_upper_hybrid_frequency_at_point_869_______________________________ (freq_plasma_upper_hybrid_profile869)_ 1.38007892755556091e+11 +Plasma_upper_hybrid_frequency_at_point_870_______________________________ (freq_plasma_upper_hybrid_profile870)_ 1.37917196529894623e+11 +Plasma_upper_hybrid_frequency_at_point_871_______________________________ (freq_plasma_upper_hybrid_profile871)_ 1.37826404481166595e+11 +Plasma_upper_hybrid_frequency_at_point_872_______________________________ (freq_plasma_upper_hybrid_profile872)_ 1.37735516253149902e+11 +Plasma_upper_hybrid_frequency_at_point_873_______________________________ (freq_plasma_upper_hybrid_profile873)_ 1.37644531488925568e+11 +Plasma_upper_hybrid_frequency_at_point_874_______________________________ (freq_plasma_upper_hybrid_profile874)_ 1.37553449830871246e+11 +Plasma_upper_hybrid_frequency_at_point_875_______________________________ (freq_plasma_upper_hybrid_profile875)_ 1.37462270920655334e+11 +Plasma_upper_hybrid_frequency_at_point_876_______________________________ (freq_plasma_upper_hybrid_profile876)_ 1.37370994399230331e+11 +Plasma_upper_hybrid_frequency_at_point_877_______________________________ (freq_plasma_upper_hybrid_profile877)_ 1.37279619906826721e+11 +Plasma_upper_hybrid_frequency_at_point_878_______________________________ (freq_plasma_upper_hybrid_profile878)_ 1.37188147082946472e+11 +Plasma_upper_hybrid_frequency_at_point_879_______________________________ (freq_plasma_upper_hybrid_profile879)_ 1.37096575566356689e+11 +Plasma_upper_hybrid_frequency_at_point_880_______________________________ (freq_plasma_upper_hybrid_profile880)_ 1.37004904995083160e+11 +Plasma_upper_hybrid_frequency_at_point_881_______________________________ (freq_plasma_upper_hybrid_profile881)_ 1.36913135006403793e+11 +Plasma_upper_hybrid_frequency_at_point_882_______________________________ (freq_plasma_upper_hybrid_profile882)_ 1.36821265236842346e+11 +Plasma_upper_hybrid_frequency_at_point_883_______________________________ (freq_plasma_upper_hybrid_profile883)_ 1.36729295322161377e+11 +Plasma_upper_hybrid_frequency_at_point_884_______________________________ (freq_plasma_upper_hybrid_profile884)_ 1.36637224897356216e+11 +Plasma_upper_hybrid_frequency_at_point_885_______________________________ (freq_plasma_upper_hybrid_profile885)_ 1.36545053596647797e+11 +Plasma_upper_hybrid_frequency_at_point_886_______________________________ (freq_plasma_upper_hybrid_profile886)_ 1.36452781053476410e+11 +Plasma_upper_hybrid_frequency_at_point_887_______________________________ (freq_plasma_upper_hybrid_profile887)_ 1.36360406900494659e+11 +Plasma_upper_hybrid_frequency_at_point_888_______________________________ (freq_plasma_upper_hybrid_profile888)_ 1.36267930769560837e+11 +Plasma_upper_hybrid_frequency_at_point_889_______________________________ (freq_plasma_upper_hybrid_profile889)_ 1.36175352291732132e+11 +Plasma_upper_hybrid_frequency_at_point_890_______________________________ (freq_plasma_upper_hybrid_profile890)_ 1.36082671097257767e+11 +Plasma_upper_hybrid_frequency_at_point_891_______________________________ (freq_plasma_upper_hybrid_profile891)_ 1.35989886815571991e+11 +Plasma_upper_hybrid_frequency_at_point_892_______________________________ (freq_plasma_upper_hybrid_profile892)_ 1.35896999075287338e+11 +Plasma_upper_hybrid_frequency_at_point_893_______________________________ (freq_plasma_upper_hybrid_profile893)_ 1.35804007504187485e+11 +Plasma_upper_hybrid_frequency_at_point_894_______________________________ (freq_plasma_upper_hybrid_profile894)_ 1.35710911729220383e+11 +Plasma_upper_hybrid_frequency_at_point_895_______________________________ (freq_plasma_upper_hybrid_profile895)_ 1.35617711376491028e+11 +Plasma_upper_hybrid_frequency_at_point_896_______________________________ (freq_plasma_upper_hybrid_profile896)_ 1.35524406071254517e+11 +Plasma_upper_hybrid_frequency_at_point_897_______________________________ (freq_plasma_upper_hybrid_profile897)_ 1.35430995437908722e+11 +Plasma_upper_hybrid_frequency_at_point_898_______________________________ (freq_plasma_upper_hybrid_profile898)_ 1.35337479099987305e+11 +Plasma_upper_hybrid_frequency_at_point_899_______________________________ (freq_plasma_upper_hybrid_profile899)_ 1.35243856680152283e+11 +Plasma_upper_hybrid_frequency_at_point_900_______________________________ (freq_plasma_upper_hybrid_profile900)_ 1.35150127800186798e+11 +Plasma_upper_hybrid_frequency_at_point_901_______________________________ (freq_plasma_upper_hybrid_profile901)_ 1.35056292080987885e+11 +Plasma_upper_hybrid_frequency_at_point_902_______________________________ (freq_plasma_upper_hybrid_profile902)_ 1.34962349142558914e+11 +Plasma_upper_hybrid_frequency_at_point_903_______________________________ (freq_plasma_upper_hybrid_profile903)_ 1.34868298604002350e+11 +Plasma_upper_hybrid_frequency_at_point_904_______________________________ (freq_plasma_upper_hybrid_profile904)_ 1.34774140083512085e+11 +Plasma_upper_hybrid_frequency_at_point_905_______________________________ (freq_plasma_upper_hybrid_profile905)_ 1.34679873198366043e+11 +Plasma_upper_hybrid_frequency_at_point_906_______________________________ (freq_plasma_upper_hybrid_profile906)_ 1.34585497564918579e+11 +Plasma_upper_hybrid_frequency_at_point_907_______________________________ (freq_plasma_upper_hybrid_profile907)_ 1.34491012798592850e+11 +Plasma_upper_hybrid_frequency_at_point_908_______________________________ (freq_plasma_upper_hybrid_profile908)_ 1.34396418513873138e+11 +Plasma_upper_hybrid_frequency_at_point_909_______________________________ (freq_plasma_upper_hybrid_profile909)_ 1.34301714324297119e+11 +Plasma_upper_hybrid_frequency_at_point_910_______________________________ (freq_plasma_upper_hybrid_profile910)_ 1.34206899842448074e+11 +Plasma_upper_hybrid_frequency_at_point_911_______________________________ (freq_plasma_upper_hybrid_profile911)_ 1.34111974679947144e+11 +Plasma_upper_hybrid_frequency_at_point_912_______________________________ (freq_plasma_upper_hybrid_profile912)_ 1.34016938447445374e+11 +Plasma_upper_hybrid_frequency_at_point_913_______________________________ (freq_plasma_upper_hybrid_profile913)_ 1.33921790754615829e+11 +Plasma_upper_hybrid_frequency_at_point_914_______________________________ (freq_plasma_upper_hybrid_profile914)_ 1.33826531210145569e+11 +Plasma_upper_hybrid_frequency_at_point_915_______________________________ (freq_plasma_upper_hybrid_profile915)_ 1.33731159421727707e+11 +Plasma_upper_hybrid_frequency_at_point_916_______________________________ (freq_plasma_upper_hybrid_profile916)_ 1.33635674996053116e+11 +Plasma_upper_hybrid_frequency_at_point_917_______________________________ (freq_plasma_upper_hybrid_profile917)_ 1.33540077538802582e+11 +Plasma_upper_hybrid_frequency_at_point_918_______________________________ (freq_plasma_upper_hybrid_profile918)_ 1.33444366654638397e+11 +Plasma_upper_hybrid_frequency_at_point_919_______________________________ (freq_plasma_upper_hybrid_profile919)_ 1.33348541947196091e+11 +Plasma_upper_hybrid_frequency_at_point_920_______________________________ (freq_plasma_upper_hybrid_profile920)_ 1.33252603019076324e+11 +Plasma_upper_hybrid_frequency_at_point_921_______________________________ (freq_plasma_upper_hybrid_profile921)_ 1.33156549471836273e+11 +Plasma_upper_hybrid_frequency_at_point_922_______________________________ (freq_plasma_upper_hybrid_profile922)_ 1.33060380905981445e+11 +Plasma_upper_hybrid_frequency_at_point_923_______________________________ (freq_plasma_upper_hybrid_profile923)_ 1.32964096920956985e+11 +Plasma_upper_hybrid_frequency_at_point_924_______________________________ (freq_plasma_upper_hybrid_profile924)_ 1.32867697115139359e+11 +Plasma_upper_hybrid_frequency_at_point_925_______________________________ (freq_plasma_upper_hybrid_profile925)_ 1.32771181085827454e+11 +Plasma_upper_hybrid_frequency_at_point_926_______________________________ (freq_plasma_upper_hybrid_profile926)_ 1.32674548429234283e+11 +Plasma_upper_hybrid_frequency_at_point_927_______________________________ (freq_plasma_upper_hybrid_profile927)_ 1.32577798740477982e+11 +Plasma_upper_hybrid_frequency_at_point_928_______________________________ (freq_plasma_upper_hybrid_profile928)_ 1.32480931613573242e+11 +Plasma_upper_hybrid_frequency_at_point_929_______________________________ (freq_plasma_upper_hybrid_profile929)_ 1.32383946641422272e+11 +Plasma_upper_hybrid_frequency_at_point_930_______________________________ (freq_plasma_upper_hybrid_profile930)_ 1.32286843415806091e+11 +Plasma_upper_hybrid_frequency_at_point_931_______________________________ (freq_plasma_upper_hybrid_profile931)_ 1.32189621527375443e+11 +Plasma_upper_hybrid_frequency_at_point_932_______________________________ (freq_plasma_upper_hybrid_profile932)_ 1.32092280565641830e+11 +Plasma_upper_hybrid_frequency_at_point_933_______________________________ (freq_plasma_upper_hybrid_profile933)_ 1.31994820118968353e+11 +Plasma_upper_hybrid_frequency_at_point_934_______________________________ (freq_plasma_upper_hybrid_profile934)_ 1.31897239774560730e+11 +Plasma_upper_hybrid_frequency_at_point_935_______________________________ (freq_plasma_upper_hybrid_profile935)_ 1.31799539118457825e+11 +Plasma_upper_hybrid_frequency_at_point_936_______________________________ (freq_plasma_upper_hybrid_profile936)_ 1.31701717735522629e+11 +Plasma_upper_hybrid_frequency_at_point_937_______________________________ (freq_plasma_upper_hybrid_profile937)_ 1.31603775209432693e+11 +Plasma_upper_hybrid_frequency_at_point_938_______________________________ (freq_plasma_upper_hybrid_profile938)_ 1.31505711122670883e+11 +Plasma_upper_hybrid_frequency_at_point_939_______________________________ (freq_plasma_upper_hybrid_profile939)_ 1.31407525056515793e+11 +Plasma_upper_hybrid_frequency_at_point_940_______________________________ (freq_plasma_upper_hybrid_profile940)_ 1.31309216591032181e+11 +Plasma_upper_hybrid_frequency_at_point_941_______________________________ (freq_plasma_upper_hybrid_profile941)_ 1.31210785305061508e+11 +Plasma_upper_hybrid_frequency_at_point_942_______________________________ (freq_plasma_upper_hybrid_profile942)_ 1.31112230776211960e+11 +Plasma_upper_hybrid_frequency_at_point_943_______________________________ (freq_plasma_upper_hybrid_profile943)_ 1.31013552580849060e+11 +Plasma_upper_hybrid_frequency_at_point_944_______________________________ (freq_plasma_upper_hybrid_profile944)_ 1.30914750294085449e+11 +Plasma_upper_hybrid_frequency_at_point_945_______________________________ (freq_plasma_upper_hybrid_profile945)_ 1.30815823489771347e+11 +Plasma_upper_hybrid_frequency_at_point_946_______________________________ (freq_plasma_upper_hybrid_profile946)_ 1.30716771740484253e+11 +Plasma_upper_hybrid_frequency_at_point_947_______________________________ (freq_plasma_upper_hybrid_profile947)_ 1.30617594617519180e+11 +Plasma_upper_hybrid_frequency_at_point_948_______________________________ (freq_plasma_upper_hybrid_profile948)_ 1.30518291690878250e+11 +Plasma_upper_hybrid_frequency_at_point_949_______________________________ (freq_plasma_upper_hybrid_profile949)_ 1.30418862529260818e+11 +Plasma_upper_hybrid_frequency_at_point_950_______________________________ (freq_plasma_upper_hybrid_profile950)_ 1.30319306700052856e+11 +Plasma_upper_hybrid_frequency_at_point_951_______________________________ (freq_plasma_upper_hybrid_profile951)_ 1.30219623769316910e+11 +Plasma_upper_hybrid_frequency_at_point_952_______________________________ (freq_plasma_upper_hybrid_profile952)_ 1.30119813301781448e+11 +Plasma_upper_hybrid_frequency_at_point_953_______________________________ (freq_plasma_upper_hybrid_profile953)_ 1.30019874860830521e+11 +Plasma_upper_hybrid_frequency_at_point_954_______________________________ (freq_plasma_upper_hybrid_profile954)_ 1.29919808008492981e+11 +Plasma_upper_hybrid_frequency_at_point_955_______________________________ (freq_plasma_upper_hybrid_profile955)_ 1.29819612305432098e+11 +Plasma_upper_hybrid_frequency_at_point_956_______________________________ (freq_plasma_upper_hybrid_profile956)_ 1.29719287310934555e+11 +Plasma_upper_hybrid_frequency_at_point_957_______________________________ (freq_plasma_upper_hybrid_profile957)_ 1.29618832582899765e+11 +Plasma_upper_hybrid_frequency_at_point_958_______________________________ (freq_plasma_upper_hybrid_profile958)_ 1.29518247677828903e+11 +Plasma_upper_hybrid_frequency_at_point_959_______________________________ (freq_plasma_upper_hybrid_profile959)_ 1.29417532150813934e+11 +Plasma_upper_hybrid_frequency_at_point_960_______________________________ (freq_plasma_upper_hybrid_profile960)_ 1.29316685555526611e+11 +Plasma_upper_hybrid_frequency_at_point_961_______________________________ (freq_plasma_upper_hybrid_profile961)_ 1.29215707444207184e+11 +Plasma_upper_hybrid_frequency_at_point_962_______________________________ (freq_plasma_upper_hybrid_profile962)_ 1.29114597367653244e+11 +Plasma_upper_hybrid_frequency_at_point_963_______________________________ (freq_plasma_upper_hybrid_profile963)_ 1.29013354875208359e+11 +Plasma_upper_hybrid_frequency_at_point_964_______________________________ (freq_plasma_upper_hybrid_profile964)_ 1.28911979514750671e+11 +Plasma_upper_hybrid_frequency_at_point_965_______________________________ (freq_plasma_upper_hybrid_profile965)_ 1.28810470832681427e+11 +Plasma_upper_hybrid_frequency_at_point_966_______________________________ (freq_plasma_upper_hybrid_profile966)_ 1.28708828373913361e+11 +Plasma_upper_hybrid_frequency_at_point_967_______________________________ (freq_plasma_upper_hybrid_profile967)_ 1.28607051681858826e+11 +Plasma_upper_hybrid_frequency_at_point_968_______________________________ (freq_plasma_upper_hybrid_profile968)_ 1.28505140298418427e+11 +Plasma_upper_hybrid_frequency_at_point_969_______________________________ (freq_plasma_upper_hybrid_profile969)_ 1.28403093763968719e+11 +Plasma_upper_hybrid_frequency_at_point_970_______________________________ (freq_plasma_upper_hybrid_profile970)_ 1.28300911617350571e+11 +Plasma_upper_hybrid_frequency_at_point_971_______________________________ (freq_plasma_upper_hybrid_profile971)_ 1.28198593395856796e+11 +Plasma_upper_hybrid_frequency_at_point_972_______________________________ (freq_plasma_upper_hybrid_profile972)_ 1.27878561679414917e+11 +Plasma_upper_hybrid_frequency_at_point_973_______________________________ (freq_plasma_upper_hybrid_profile973)_ 1.27557795224177322e+11 +Plasma_upper_hybrid_frequency_at_point_974_______________________________ (freq_plasma_upper_hybrid_profile974)_ 1.27236288334825851e+11 +Plasma_upper_hybrid_frequency_at_point_975_______________________________ (freq_plasma_upper_hybrid_profile975)_ 1.26914035245789154e+11 +Plasma_upper_hybrid_frequency_at_point_976_______________________________ (freq_plasma_upper_hybrid_profile976)_ 1.26591030120011017e+11 +Plasma_upper_hybrid_frequency_at_point_977_______________________________ (freq_plasma_upper_hybrid_profile977)_ 1.26267267047690765e+11 +Plasma_upper_hybrid_frequency_at_point_978_______________________________ (freq_plasma_upper_hybrid_profile978)_ 1.25942740044995132e+11 +Plasma_upper_hybrid_frequency_at_point_979_______________________________ (freq_plasma_upper_hybrid_profile979)_ 1.25617443052740479e+11 +Plasma_upper_hybrid_frequency_at_point_980_______________________________ (freq_plasma_upper_hybrid_profile980)_ 1.25291369935045151e+11 +Plasma_upper_hybrid_frequency_at_point_981_______________________________ (freq_plasma_upper_hybrid_profile981)_ 1.24964514477950409e+11 +Plasma_upper_hybrid_frequency_at_point_982_______________________________ (freq_plasma_upper_hybrid_profile982)_ 1.24636870388009598e+11 +Plasma_upper_hybrid_frequency_at_point_983_______________________________ (freq_plasma_upper_hybrid_profile983)_ 1.24308431290844345e+11 +Plasma_upper_hybrid_frequency_at_point_984_______________________________ (freq_plasma_upper_hybrid_profile984)_ 1.23979190729666977e+11 +Plasma_upper_hybrid_frequency_at_point_985_______________________________ (freq_plasma_upper_hybrid_profile985)_ 1.23649142163768082e+11 +Plasma_upper_hybrid_frequency_at_point_986_______________________________ (freq_plasma_upper_hybrid_profile986)_ 1.23318278966968353e+11 +Plasma_upper_hybrid_frequency_at_point_987_______________________________ (freq_plasma_upper_hybrid_profile987)_ 1.22986594426033585e+11 +Plasma_upper_hybrid_frequency_at_point_988_______________________________ (freq_plasma_upper_hybrid_profile988)_ 1.22654081739051651e+11 +Plasma_upper_hybrid_frequency_at_point_989_______________________________ (freq_plasma_upper_hybrid_profile989)_ 1.22320734013770538e+11 +Plasma_upper_hybrid_frequency_at_point_990_______________________________ (freq_plasma_upper_hybrid_profile990)_ 1.21986544265896149e+11 +Plasma_upper_hybrid_frequency_at_point_991_______________________________ (freq_plasma_upper_hybrid_profile991)_ 1.21651505417348801e+11 +Plasma_upper_hybrid_frequency_at_point_992_______________________________ (freq_plasma_upper_hybrid_profile992)_ 1.21315610294476929e+11 +Plasma_upper_hybrid_frequency_at_point_993_______________________________ (freq_plasma_upper_hybrid_profile993)_ 1.20978851626227203e+11 +Plasma_upper_hybrid_frequency_at_point_994_______________________________ (freq_plasma_upper_hybrid_profile994)_ 1.20641222042268936e+11 +Plasma_upper_hybrid_frequency_at_point_995_______________________________ (freq_plasma_upper_hybrid_profile995)_ 1.20302714071072510e+11 +Plasma_upper_hybrid_frequency_at_point_996_______________________________ (freq_plasma_upper_hybrid_profile996)_ 1.19963320137939148e+11 +Plasma_upper_hybrid_frequency_at_point_997_______________________________ (freq_plasma_upper_hybrid_profile997)_ 1.19623032562981766e+11 +Plasma_upper_hybrid_frequency_at_point_998_______________________________ (freq_plasma_upper_hybrid_profile998)_ 1.19281843559054245e+11 +Plasma_upper_hybrid_frequency_at_point_999_______________________________ (freq_plasma_upper_hybrid_profile999)_ 1.18939745229628693e+11 +Plasma_upper_hybrid_frequency_at_point_1000______________________________ (freq_plasma_upper_hybrid_profile1000)_ 1.18596729566617813e+11 +Plasma_upper_hybrid_frequency_at_point_1001______________________________ (freq_plasma_upper_hybrid_profile1001)_ 1.18252788448141922e+11 +Volume_averaged_electron-electron_Coulomb_log_(Λₑₑ)______________________ (plasma_coulomb_log_electron_electron_vol_avg)_ 1.74314164550027826e+01 OP +Electron-electron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_electron_profile0)_ 1.80042338073384407e+01 +Electron-electron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_electron_profile1)_ 1.80042297196837175e+01 +Electron-electron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_electron_profile2)_ 1.80042174566294158e+01 +Electron-electron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_electron_profile3)_ 1.80041970179051134e+01 +Electron-electron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_electron_profile4)_ 1.80041684030601097e+01 +Electron-electron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_electron_profile5)_ 1.80041316114633752e+01 +Electron-electron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_electron_profile6)_ 1.80040866423035233e+01 +Electron-electron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_electron_profile7)_ 1.80040334945887857e+01 +Electron-electron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_electron_profile8)_ 1.80039721671469195e+01 +Electron-electron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_electron_profile9)_ 1.80039026586251794e+01 +Electron-electron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_electron_profile10)_ 1.80038249674902104e+01 +Electron-electron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_electron_profile11)_ 1.80037390920279812e+01 +Electron-electron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_electron_profile12)_ 1.80036450303436908e+01 +Electron-electron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_electron_profile13)_ 1.80035427803616450e+01 +Electron-electron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_electron_profile14)_ 1.80034323398251637e+01 +Electron-electron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_electron_profile15)_ 1.80033137062964315e+01 +Electron-electron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_electron_profile16)_ 1.80031868771563737e+01 +Electron-electron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_electron_profile17)_ 1.80030518496045211e+01 +Electron-electron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_electron_profile18)_ 1.80029086206588254e+01 +Electron-electron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_electron_profile19)_ 1.80027571871555168e+01 +Electron-electron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_electron_profile20)_ 1.80025975457489196e+01 +Electron-electron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_electron_profile21)_ 1.80024296929112566e+01 +Electron-electron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_electron_profile22)_ 1.80022536249324752e+01 +Electron-electron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_electron_profile23)_ 1.80020693379200125e+01 +Electron-electron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_electron_profile24)_ 1.80018768277985828e+01 +Electron-electron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_electron_profile25)_ 1.80016760903099780e+01 +Electron-electron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_electron_profile26)_ 1.80014671210127872e+01 +Electron-electron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_electron_profile27)_ 1.80012499152821803e+01 +Electron-electron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_electron_profile28)_ 1.80010244683096374e+01 +Electron-electron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_electron_profile29)_ 1.80007907751026721e+01 +Electron-electron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_electron_profile30)_ 1.80005488304845684e+01 +Electron-electron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_electron_profile31)_ 1.80002986290940754e+01 +Electron-electron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_electron_profile32)_ 1.80000401653851156e+01 +Electron-electron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_electron_profile33)_ 1.79997734336264763e+01 +Electron-electron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_electron_profile34)_ 1.79994984279014680e+01 +Electron-electron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_electron_profile35)_ 1.79992151421076265e+01 +Electron-electron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_electron_profile36)_ 1.79989235699563466e+01 +Electron-electron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_electron_profile37)_ 1.79986237049725268e+01 +Electron-electron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_electron_profile38)_ 1.79983155404942252e+01 +Electron-electron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_electron_profile39)_ 1.79979990696722645e+01 +Electron-electron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_electron_profile40)_ 1.79976742854698628e+01 +Electron-electron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_electron_profile41)_ 1.79973411806622252e+01 +Electron-electron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_electron_profile42)_ 1.79969997478361527e+01 +Electron-electron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_electron_profile43)_ 1.79966499793896055e+01 +Electron-electron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_electron_profile44)_ 1.79962918675313013e+01 +Electron-electron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_electron_profile45)_ 1.79959254042802463e+01 +Electron-electron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_electron_profile46)_ 1.79955505814653129e+01 +Electron-electron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_electron_profile47)_ 1.79951673907247631e+01 +Electron-electron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_electron_profile48)_ 1.79947758235057762e+01 +Electron-electron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_electron_profile49)_ 1.79943758710639869e+01 +Electron-electron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_electron_profile50)_ 1.79939675244629633e+01 +Electron-electron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_electron_profile51)_ 1.79935507745737233e+01 +Electron-electron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_electron_profile52)_ 1.79931256120742127e+01 +Electron-electron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_electron_profile53)_ 1.79926920274487792e+01 +Electron-electron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_electron_profile54)_ 1.79922500109876253e+01 +Electron-electron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_electron_profile55)_ 1.79917995527862828e+01 +Electron-electron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_electron_profile56)_ 1.79913406427450226e+01 +Electron-electron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_electron_profile57)_ 1.79908732705683114e+01 +Electron-electron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_electron_profile58)_ 1.79903974257642076e+01 +Electron-electron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_electron_profile59)_ 1.79899130976437753e+01 +Electron-electron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_electron_profile60)_ 1.79894202753204802e+01 +Electron-electron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_electron_profile61)_ 1.79889189477095748e+01 +Electron-electron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_electron_profile62)_ 1.79884091035274558e+01 +Electron-electron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_electron_profile63)_ 1.79878907312910385e+01 +Electron-electron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_electron_profile64)_ 1.79873638193170997e+01 +Electron-electron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_electron_profile65)_ 1.79868283557216060e+01 +Electron-electron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_electron_profile66)_ 1.79862843284190497e+01 +Electron-electron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_electron_profile67)_ 1.79857317251217630e+01 +Electron-electron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_electron_profile68)_ 1.79851705333392040e+01 +Electron-electron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_electron_profile69)_ 1.79846007403772497e+01 +Electron-electron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_electron_profile70)_ 1.79840223333374887e+01 +Electron-electron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_electron_profile71)_ 1.79834352991164650e+01 +Electron-electron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_electron_profile72)_ 1.79828396244049422e+01 +Electron-electron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_electron_profile73)_ 1.79822352956871363e+01 +Electron-electron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_electron_profile74)_ 1.79816222992399517e+01 +Electron-electron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_electron_profile75)_ 1.79810006211321962e+01 +Electron-electron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_electron_profile76)_ 1.79803702472237745e+01 +Electron-electron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_electron_profile77)_ 1.79797311631648959e+01 +Electron-electron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_electron_profile78)_ 1.79790833543952289e+01 +Electron-electron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_electron_profile79)_ 1.79784268061430943e+01 +Electron-electron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_electron_profile80)_ 1.79777615034245954e+01 +Electron-electron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_electron_profile81)_ 1.79770874310427828e+01 +Electron-electron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_electron_profile82)_ 1.79764045735867484e+01 +Electron-electron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_electron_profile83)_ 1.79757129154307798e+01 +Electron-electron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_electron_profile84)_ 1.79750124407334226e+01 +Electron-electron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_electron_profile85)_ 1.79743031334366101e+01 +Electron-electron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_electron_profile86)_ 1.79735849772647036e+01 +Electron-electron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_electron_profile87)_ 1.79728579557235797e+01 +Electron-electron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_electron_profile88)_ 1.79721220520996674e+01 +Electron-electron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_electron_profile89)_ 1.79713772494589890e+01 +Electron-electron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_electron_profile90)_ 1.79706235306461863e+01 +Electron-electron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_electron_profile91)_ 1.79698608782835265e+01 +Electron-electron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_electron_profile92)_ 1.79690892747698925e+01 +Electron-electron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_electron_profile93)_ 1.79683087022797814e+01 +Electron-electron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_electron_profile94)_ 1.79675191427622636e+01 +Electron-electron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_electron_profile95)_ 1.79667205779399382e+01 +Electron-electron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_electron_profile96)_ 1.79659129893078777e+01 +Electron-electron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_electron_profile97)_ 1.79650963581325556e+01 +Electron-electron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_electron_profile98)_ 1.79642706654507656e+01 +Electron-electron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_electron_profile99)_ 1.79634358920685031e+01 +Electron-electron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_electron_profile100)_ 1.79625920185598744e+01 +Electron-electron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_electron_profile101)_ 1.79617390252659632e+01 +Electron-electron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_electron_profile102)_ 1.79608768922936690e+01 +Electron-electron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_electron_profile103)_ 1.79600055995145773e+01 +Electron-electron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_electron_profile104)_ 1.79591251265637730e+01 +Electron-electron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_electron_profile105)_ 1.79582354528386539e+01 +Electron-electron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_electron_profile106)_ 1.79573365574977437e+01 +Electron-electron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_electron_profile107)_ 1.79564284194594599e+01 +Electron-electron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_electron_profile108)_ 1.79555110174008981e+01 +Electron-electron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_electron_profile109)_ 1.79545843297565852e+01 +Electron-electron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_electron_profile110)_ 1.79536483347172116e+01 +Electron-electron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_electron_profile111)_ 1.79527030102283653e+01 +Electron-electron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_electron_profile112)_ 1.79517483339892401e+01 +Electron-electron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_electron_profile113)_ 1.79507842834513376e+01 +Electron-electron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_electron_profile114)_ 1.79498108358171322e+01 +Electron-electron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_electron_profile115)_ 1.79488279680387599e+01 +Electron-electron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_electron_profile116)_ 1.79478356568166326e+01 +Electron-electron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_electron_profile117)_ 1.79468338785981203e+01 +Electron-electron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_electron_profile118)_ 1.79458226095761191e+01 +Electron-electron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_electron_profile119)_ 1.79448018256877013e+01 +Electron-electron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_electron_profile120)_ 1.79437715026126590e+01 +Electron-electron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_electron_profile121)_ 1.79427316157721179e+01 +Electron-electron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_electron_profile122)_ 1.79416821403270497e+01 +Electron-electron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_electron_profile123)_ 1.79406230511768534e+01 +Electron-electron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_electron_profile124)_ 1.79395543229578500e+01 +Electron-electron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_electron_profile125)_ 1.79384759300418004e+01 +Electron-electron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_electron_profile126)_ 1.79373878465343957e+01 +Electron-electron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_electron_profile127)_ 1.79362900462737400e+01 +Electron-electron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_electron_profile128)_ 1.79351825028287912e+01 +Electron-electron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_electron_profile129)_ 1.79340651894978151e+01 +Electron-electron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_electron_profile130)_ 1.79329380793068154e+01 +Electron-electron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_electron_profile131)_ 1.79318011450079311e+01 +Electron-electron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_electron_profile132)_ 1.79306543590778276e+01 +Electron-electron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_electron_profile133)_ 1.79294976937160939e+01 +Electron-electron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_electron_profile134)_ 1.79283311208435734e+01 +Electron-electron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_electron_profile135)_ 1.79271546121007255e+01 +Electron-electron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_electron_profile136)_ 1.79259681388459349e+01 +Electron-electron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_electron_profile137)_ 1.79247716721538310e+01 +Electron-electron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_electron_profile138)_ 1.79235651828135651e+01 +Electron-electron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_electron_profile139)_ 1.79223486413271083e+01 +Electron-electron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_electron_profile140)_ 1.79211220179074822e+01 +Electron-electron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_electron_profile141)_ 1.79198852824770007e+01 +Electron-electron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_electron_profile142)_ 1.79186384046655007e+01 +Electron-electron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_electron_profile143)_ 1.79173813538085440e+01 +Electron-electron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_electron_profile144)_ 1.79161140989455951e+01 +Electron-electron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_electron_profile145)_ 1.79148366088182023e+01 +Electron-electron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_electron_profile146)_ 1.79135488518681250e+01 +Electron-electron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_electron_profile147)_ 1.79122507962354973e+01 +Electron-electron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_electron_profile148)_ 1.79109424097569168e+01 +Electron-electron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_electron_profile149)_ 1.79096236599635610e+01 +Electron-electron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_electron_profile150)_ 1.79082945140792447e+01 +Electron-electron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_electron_profile151)_ 1.79069549390185045e+01 +Electron-electron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_electron_profile152)_ 1.79056049013846241e+01 +Electron-electron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_electron_profile153)_ 1.79042443674676690e+01 +Electron-electron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_electron_profile154)_ 1.79028733032424974e+01 +Electron-electron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_electron_profile155)_ 1.79014916743667278e+01 +Electron-electron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_electron_profile156)_ 1.79000994461787322e+01 +Electron-electron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_electron_profile157)_ 1.78986965836955818e+01 +Electron-electron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_electron_profile158)_ 1.78972830516109731e+01 +Electron-electron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_electron_profile159)_ 1.78958588142931561e+01 +Electron-electron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_electron_profile160)_ 1.78944238357828240e+01 +Electron-electron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_electron_profile161)_ 1.78929780797909963e+01 +Electron-electron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_electron_profile162)_ 1.78915215096968758e+01 +Electron-electron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_electron_profile163)_ 1.78900540885456891e+01 +Electron-electron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_electron_profile164)_ 1.78885757790465298e+01 +Electron-electron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_electron_profile165)_ 1.78870865435701347e+01 +Electron-electron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_electron_profile166)_ 1.78855863441466987e+01 +Electron-electron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_electron_profile167)_ 1.78840751424636331e+01 +Electron-electron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_electron_profile168)_ 1.78825528998633061e+01 +Electron-electron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_electron_profile169)_ 1.78810195773408047e+01 +Electron-electron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_electron_profile170)_ 1.78794751355416146e+01 +Electron-electron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_electron_profile171)_ 1.78779195347593500e+01 +Electron-electron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_electron_profile172)_ 1.78763527349334126e+01 +Electron-electron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_electron_profile173)_ 1.78747746956466536e+01 +Electron-electron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_electron_profile174)_ 1.78731853761230219e+01 +Electron-electron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_electron_profile175)_ 1.78715847352251949e+01 +Electron-electron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_electron_profile176)_ 1.78699727314521688e+01 +Electron-electron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_electron_profile177)_ 1.78683493229368615e+01 +Electron-electron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_electron_profile178)_ 1.78667144674436855e+01 +Electron-electron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_electron_profile179)_ 1.78650681223660932e+01 +Electron-electron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_electron_profile180)_ 1.78634102447241219e+01 +Electron-electron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_electron_profile181)_ 1.78617407911619104e+01 +Electron-electron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_electron_profile182)_ 1.78600597179451981e+01 +Electron-electron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_electron_profile183)_ 1.78583669809588201e+01 +Electron-electron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_electron_profile184)_ 1.78566625357041673e+01 +Electron-electron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_electron_profile185)_ 1.78549463372966457e+01 +Electron-electron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_electron_profile186)_ 1.78532183404631120e+01 +Electron-electron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_electron_profile187)_ 1.78514784995392795e+01 +Electron-electron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_electron_profile188)_ 1.78497267684671463e+01 +Electron-electron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_electron_profile189)_ 1.78479631007923665e+01 +Electron-electron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_electron_profile190)_ 1.78461874496616275e+01 +Electron-electron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_electron_profile191)_ 1.78443997678200041e+01 +Electron-electron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_electron_profile192)_ 1.78426000076083042e+01 +Electron-electron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_electron_profile193)_ 1.78407881209603971e+01 +Electron-electron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_electron_profile194)_ 1.78389640594005279e+01 +Electron-electron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_electron_profile195)_ 1.78371277740406136e+01 +Electron-electron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_electron_profile196)_ 1.78352792155775326e+01 +Electron-electron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_electron_profile197)_ 1.78334183342903785e+01 +Electron-electron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_electron_profile198)_ 1.78315450800377668e+01 +Electron-electron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_electron_profile199)_ 1.78296594022550146e+01 +Electron-electron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_electron_profile200)_ 1.78277612499514397e+01 +Electron-electron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_electron_profile201)_ 1.78258505717075408e+01 +Electron-electron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_electron_profile202)_ 1.78239273156722255e+01 +Electron-electron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_electron_profile203)_ 1.78219914295600148e+01 +Electron-electron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_electron_profile204)_ 1.78200428606482291e+01 +Electron-electron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_electron_profile205)_ 1.78180815557741674e+01 +Electron-electron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_electron_profile206)_ 1.78161074613322867e+01 +Electron-electron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_electron_profile207)_ 1.78141205232713631e+01 +Electron-electron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_electron_profile208)_ 1.78121206870916424e+01 +Electron-electron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_electron_profile209)_ 1.78101078978420091e+01 +Electron-electron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_electron_profile210)_ 1.78080821001171081e+01 +Electron-electron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_electron_profile211)_ 1.78060432380544960e+01 +Electron-electron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_electron_profile212)_ 1.78039912553317627e+01 +Electron-electron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_electron_profile213)_ 1.78019260951636724e+01 +Electron-electron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_electron_profile214)_ 1.77998477002992814e+01 +Electron-electron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_electron_profile215)_ 1.77977560130190717e+01 +Electron-electron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_electron_profile216)_ 1.77956509751320553e+01 +Electron-electron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_electron_profile217)_ 1.77935325279729177e+01 +Electron-electron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_electron_profile218)_ 1.77914006123991193e+01 +Electron-electron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_electron_profile219)_ 1.77892551687880420e+01 +Electron-electron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_electron_profile220)_ 1.77870961370340979e+01 +Electron-electron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_electron_profile221)_ 1.77849234565458687e+01 +Electron-electron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_electron_profile222)_ 1.77827370662432358e+01 +Electron-electron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_electron_profile223)_ 1.77805369045545376e+01 +Electron-electron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_electron_profile224)_ 1.77783229094137099e+01 +Electron-electron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_electron_profile225)_ 1.77760950182574327e+01 +Electron-electron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_electron_profile226)_ 1.77738531680223275e+01 +Electron-electron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_electron_profile227)_ 1.77715972951421257e+01 +Electron-electron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_electron_profile228)_ 1.77693273355448618e+01 +Electron-electron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_electron_profile229)_ 1.77670432246500880e+01 +Electron-electron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_electron_profile230)_ 1.77647448973661071e+01 +Electron-electron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_electron_profile231)_ 1.77624322880872114e+01 +Electron-electron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_electron_profile232)_ 1.77601053306909620e+01 +Electron-electron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_electron_profile233)_ 1.77577639585354525e+01 +Electron-electron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_electron_profile234)_ 1.77554081044566665e+01 +Electron-electron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_electron_profile235)_ 1.77530377007657805e+01 +Electron-electron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_electron_profile236)_ 1.77506526792465458e+01 +Electron-electron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_electron_profile237)_ 1.77482529711527057e+01 +Electron-electron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_electron_profile238)_ 1.77458385072053950e+01 +Electron-electron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_electron_profile239)_ 1.77434092175906422e+01 +Electron-electron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_electron_profile240)_ 1.77409650319568684e+01 +Electron-electron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_electron_profile241)_ 1.77385058794124255e+01 +Electron-electron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_electron_profile242)_ 1.77360316885231981e+01 +Electron-electron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_electron_profile243)_ 1.77335423873102478e+01 +Electron-electron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_electron_profile244)_ 1.77310379032474863e+01 +Electron-electron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_electron_profile245)_ 1.77285181632594302e+01 +Electron-electron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_electron_profile246)_ 1.77259830937190017e+01 +Electron-electron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_electron_profile247)_ 1.77234326204453723e+01 +Electron-electron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_electron_profile248)_ 1.77208666687018912e+01 +Electron-electron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_electron_profile249)_ 1.77182851631940608e+01 +Electron-electron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_electron_profile250)_ 1.77156880280676106e+01 +Electron-electron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_electron_profile251)_ 1.77130751869066074e+01 +Electron-electron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_electron_profile252)_ 1.77104465627316863e+01 +Electron-electron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_electron_profile253)_ 1.77078020779983092e+01 +Electron-electron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_electron_profile254)_ 1.77051416545951810e+01 +Electron-electron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_electron_profile255)_ 1.77024652138426823e+01 +Electron-electron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_electron_profile256)_ 1.76997726764914667e+01 +Electron-electron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_electron_profile257)_ 1.76970639627210957e+01 +Electron-electron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_electron_profile258)_ 1.76943389921388388e+01 +Electron-electron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_electron_profile259)_ 1.76915976837785465e+01 +Electron-electron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_electron_profile260)_ 1.76888399560996419e+01 +Electron-electron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_electron_profile261)_ 1.76860657269862713e+01 +Electron-electron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_electron_profile262)_ 1.76832749137465370e+01 +Electron-electron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_electron_profile263)_ 1.76804674331118932e+01 +Electron-electron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_electron_profile264)_ 1.76776432012366769e+01 +Electron-electron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_electron_profile265)_ 1.76748021336977956e+01 +Electron-electron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_electron_profile266)_ 1.76719441454945567e+01 +Electron-electron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_electron_profile267)_ 1.76690691510486637e+01 +Electron-electron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_electron_profile268)_ 1.76661770642044011e+01 +Electron-electron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_electron_profile269)_ 1.76632677982289685e+01 +Electron-electron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_electron_profile270)_ 1.76603412658130239e+01 +Electron-electron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_electron_profile271)_ 1.76573973790714192e+01 +Electron-electron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_electron_profile272)_ 1.76544360495441239e+01 +Electron-electron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_electron_profile273)_ 1.76514571881973943e+01 +Electron-electron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_electron_profile274)_ 1.76484607054251228e+01 +Electron-electron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_electron_profile275)_ 1.76454465110504657e+01 +Electron-electron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_electron_profile276)_ 1.76424145143276938e+01 +Electron-electron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_electron_profile277)_ 1.76393646239442710e+01 +Electron-electron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_electron_profile278)_ 1.76362967480232555e+01 +Electron-electron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_electron_profile279)_ 1.76332107941259402e+01 +Electron-electron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_electron_profile280)_ 1.76301066692547757e+01 +Electron-electron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_electron_profile281)_ 1.76269842798566252e+01 +Electron-electron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_electron_profile282)_ 1.76238435318263313e+01 +Electron-electron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_electron_profile283)_ 1.76206843305105565e+01 +Electron-electron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_electron_profile284)_ 1.76175065807120745e+01 +Electron-electron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_electron_profile285)_ 1.76143101866942899e+01 +Electron-electron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_electron_profile286)_ 1.76110950521862577e+01 +Electron-electron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_electron_profile287)_ 1.76078610803879840e+01 +Electron-electron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_electron_profile288)_ 1.76046081739762101e+01 +Electron-electron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_electron_profile289)_ 1.76013362351105727e+01 +Electron-electron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_electron_profile290)_ 1.75980451654402366e+01 +Electron-electron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_electron_profile291)_ 1.75947348661109579e+01 +Electron-electron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_electron_profile292)_ 1.75914052377726513e+01 +Electron-electron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_electron_profile293)_ 1.75880561805874436e+01 +Electron-electron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_electron_profile294)_ 1.75846875942382503e+01 +Electron-electron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_electron_profile295)_ 1.75812993779378886e+01 +Electron-electron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_electron_profile296)_ 1.75778914304387648e+01 +Electron-electron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_electron_profile297)_ 1.75744636500431497e+01 +Electron-electron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_electron_profile298)_ 1.75710159346140529e+01 +Electron-electron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_electron_profile299)_ 1.75675481815867549e+01 +Electron-electron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_electron_profile300)_ 1.75640602879809826e+01 +Electron-electron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_electron_profile301)_ 1.75605521504137982e+01 +Electron-electron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_electron_profile302)_ 1.75570236651131992e+01 +Electron-electron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_electron_profile303)_ 1.75534747279324606e+01 +Electron-electron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_electron_profile304)_ 1.75499052343652764e+01 +Electron-electron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_electron_profile305)_ 1.75463150795617189e+01 +Electron-electron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_electron_profile306)_ 1.75427041583450034e+01 +Electron-electron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_electron_profile307)_ 1.75390723652292024e+01 +Electron-electron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_electron_profile308)_ 1.75354195944378262e+01 +Electron-electron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_electron_profile309)_ 1.75317457399233767e+01 +Electron-electron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_electron_profile310)_ 1.75280506953879183e+01 +Electron-electron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_electron_profile311)_ 1.75243343543046528e+01 +Electron-electron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_electron_profile312)_ 1.75205966099406112e+01 +Electron-electron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_electron_profile313)_ 1.75168373553804280e+01 +Electron-electron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_electron_profile314)_ 1.75130564835513383e+01 +Electron-electron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_electron_profile315)_ 1.75092538872493506e+01 +Electron-electron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_electron_profile316)_ 1.75054294591667130e+01 +Electron-electron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_electron_profile317)_ 1.75015830919207147e+01 +Electron-electron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_electron_profile318)_ 1.74977146780838169e+01 +Electron-electron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_electron_profile319)_ 1.74938241102152681e+01 +Electron-electron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_electron_profile320)_ 1.74899112808942014e+01 +Electron-electron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_electron_profile321)_ 1.74859760827542488e+01 +Electron-electron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_electron_profile322)_ 1.74820184085198456e+01 +Electron-electron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_electron_profile323)_ 1.74780381510441423e+01 +Electron-electron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_electron_profile324)_ 1.74740352033487234e+01 +Electron-electron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_electron_profile325)_ 1.74700094586651566e+01 +Electron-electron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_electron_profile326)_ 1.74659608104783821e+01 +Electron-electron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_electron_profile327)_ 1.74618891525721871e+01 +Electron-electron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_electron_profile328)_ 1.74577943790766490e+01 +Electron-electron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_electron_profile329)_ 1.74536763845177703e+01 +Electron-electron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_electron_profile330)_ 1.74495350638693694e+01 +Electron-electron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_electron_profile331)_ 1.74453703126072632e+01 +Electron-electron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_electron_profile332)_ 1.74411820267659117e+01 +Electron-electron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_electron_profile333)_ 1.74369701029975559e+01 +Electron-electron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_electron_profile334)_ 1.74327344386340393e+01 +Electron-electron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_electron_profile335)_ 1.74284749317513281e+01 +Electron-electron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_electron_profile336)_ 1.74241914812369281e+01 +Electron-electron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_electron_profile337)_ 1.74198839868602349e+01 +Electron-electron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_electron_profile338)_ 1.74155523493460400e+01 +Electron-electron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_electron_profile339)_ 1.74111964704512339e+01 +Electron-electron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_electron_profile340)_ 1.74068162530448660e+01 +Electron-electron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_electron_profile341)_ 1.74024116011917762e+01 +Electron-electron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_electron_profile342)_ 1.73979824202398099e+01 +Electron-electron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_electron_profile343)_ 1.73935286169108849e+01 +Electron-electron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_electron_profile344)_ 1.73890500993960266e+01 +Electron-electron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_electron_profile345)_ 1.73845467774545419e+01 +Electron-electron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_electron_profile346)_ 1.73800185625174848e+01 +Electron-electron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_electron_profile347)_ 1.73754653677956625e+01 +Electron-electron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_electron_profile348)_ 1.73708871083922780e+01 +Electron-electron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_electron_profile349)_ 1.73662837014205138e+01 +Electron-electron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_electron_profile350)_ 1.73616550661261897e+01 +Electron-electron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_electron_profile351)_ 1.73570011240156745e+01 +Electron-electron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_electron_profile352)_ 1.73523217989894682e+01 +Electron-electron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_electron_profile353)_ 1.73476170174814257e+01 +Electron-electron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_electron_profile354)_ 1.73428867086041016e+01 +Electron-electron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_electron_profile355)_ 1.73381308043003131e+01 +Electron-electron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_electron_profile356)_ 1.73333492395013202e+01 +Electron-electron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_electron_profile357)_ 1.73285419522917792e+01 +Electron-electron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_electron_profile358)_ 1.73237088840818814e+01 +Electron-electron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_electron_profile359)_ 1.73188499797869220e+01 +Electron-electron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_electron_profile360)_ 1.73139651880146062e+01 +Electron-electron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_electron_profile361)_ 1.73090544612605015e+01 +Electron-electron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_electron_profile362)_ 1.73041177561119284e+01 +Electron-electron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_electron_profile363)_ 1.72991550334606714e+01 +Electron-electron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_electron_profile364)_ 1.72941662587249603e+01 +Electron-electron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_electron_profile365)_ 1.72891514020809574e+01 +Electron-electron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_electron_profile366)_ 1.72841104387044666e+01 +Electron-electron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_electron_profile367)_ 1.72790433490229383e+01 +Electron-electron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_electron_profile368)_ 1.72739501189786004e+01 +Electron-electron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_electron_profile369)_ 1.72688307403029242e+01 +Electron-electron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_electron_profile370)_ 1.72636852108031071e+01 +Electron-electron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_electron_profile371)_ 1.72585135346610095e+01 +Electron-electron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_electron_profile372)_ 1.72533157227451568e+01 +Electron-electron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_electron_profile373)_ 1.72480917929363891e+01 +Electron-electron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_electron_profile374)_ 1.72428417704677379e+01 +Electron-electron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_electron_profile375)_ 1.72375656882792576e+01 +Electron-electron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_electron_profile376)_ 1.72322635873883812e+01 +Electron-electron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_electron_profile377)_ 1.72269355172765763e+01 +Electron-electron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_electron_profile378)_ 1.72215815362930798e+01 +Electron-electron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_electron_profile379)_ 1.72162017120764226e+01 +Electron-electron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_electron_profile380)_ 1.72107961219945693e+01 +Electron-electron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_electron_profile381)_ 1.72053648536046317e+01 +Electron-electron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_electron_profile382)_ 1.71999080051329436e+01 +Electron-electron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_electron_profile383)_ 1.71944256859765545e+01 +Electron-electron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_electron_profile384)_ 1.71889180172270208e+01 +Electron-electron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_electron_profile385)_ 1.71833851322177296e+01 +Electron-electron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_electron_profile386)_ 1.71778271770956614e+01 +Electron-electron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_electron_profile387)_ 1.71722443114189751e+01 +Electron-electron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_electron_profile388)_ 1.71666367087813825e+01 +Electron-electron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_electron_profile389)_ 1.71610045574649135e+01 +Electron-electron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_electron_profile390)_ 1.71553480611222007e+01 +Electron-electron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_electron_profile391)_ 1.71496674394898037e+01 +Electron-electron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_electron_profile392)_ 1.71439629291341511e+01 +Electron-electron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_electron_profile393)_ 1.71382347842315852e+01 +Electron-electron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_electron_profile394)_ 1.71324832773843418e+01 +Electron-electron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_electron_profile395)_ 1.71267087004741221e+01 +Electron-electron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_electron_profile396)_ 1.71209113655552763e+01 +Electron-electron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_electron_profile397)_ 1.71150916057894626e+01 +Electron-electron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_electron_profile398)_ 1.71092497764240612e+01 +Electron-electron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_electron_profile399)_ 1.71033862558164387e+01 +Electron-electron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_electron_profile400)_ 1.70975014465065875e+01 +Electron-electron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_electron_profile401)_ 1.70915957763405544e+01 +Electron-electron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_electron_profile402)_ 1.70856696996473971e+01 +Electron-electron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_electron_profile403)_ 1.70797236984725593e+01 +Electron-electron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_electron_profile404)_ 1.70737582838706174e+01 +Electron-electron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_electron_profile405)_ 1.70677739972607121e+01 +Electron-electron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_electron_profile406)_ 1.70617714118481452e+01 +Electron-electron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_electron_profile407)_ 1.70557511341156776e+01 +Electron-electron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_electron_profile408)_ 1.70497138053887021e+01 +Electron-electron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_electron_profile409)_ 1.70436601034782704e+01 +Electron-electron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_electron_profile410)_ 1.70375907444067138e+01 +Electron-electron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_electron_profile411)_ 1.70315064842205821e+01 +Electron-electron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_electron_profile412)_ 1.70254081208961523e+01 +Electron-electron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_electron_profile413)_ 1.70192964963431237e+01 +Electron-electron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_electron_profile414)_ 1.70131724985126347e+01 +Electron-electron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_electron_profile415)_ 1.70070370636160746e+01 +Electron-electron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_electron_profile416)_ 1.70008911784617496e+01 +Electron-electron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_electron_profile417)_ 1.69947358829172508e+01 +Electron-electron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_electron_profile418)_ 1.69885722725057597e+01 +Electron-electron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_electron_profile419)_ 1.69824015011453824e+01 +Electron-electron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_electron_profile420)_ 1.69762247840416265e+01 +Electron-electron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_electron_profile421)_ 1.69700434007437018e+01 +Electron-electron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_electron_profile422)_ 1.69638586983767219e+01 +Electron-electron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_electron_profile423)_ 1.69576720950629394e+01 +Electron-electron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_electron_profile424)_ 1.69514850835464408e+01 +Electron-electron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_electron_profile425)_ 1.69452992350373677e+01 +Electron-electron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_electron_profile426)_ 1.69391162032935405e+01 +Electron-electron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_electron_profile427)_ 1.69329377289590752e+01 +Electron-electron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_electron_profile428)_ 1.69267656441823569e+01 +Electron-electron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_electron_profile429)_ 1.69206018775379583e+01 +Electron-electron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_electron_profile430)_ 1.69144484592803650e+01 +Electron-electron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_electron_profile431)_ 1.69083075269609999e+01 +Electron-electron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_electron_profile432)_ 1.69021813314440728e+01 +Electron-electron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_electron_profile433)_ 1.68960722433617008e+01 +Electron-electron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_electron_profile434)_ 1.68899827600545009e+01 +Electron-electron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_electron_profile435)_ 1.68839155130505887e+01 +Electron-electron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_electron_profile436)_ 1.68778732761439549e+01 +Electron-electron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_electron_profile437)_ 1.68718589741427181e+01 +Electron-electron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_electron_profile438)_ 1.68658756923692792e+01 +Electron-electron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_electron_profile439)_ 1.68599266870079987e+01 +Electron-electron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_electron_profile440)_ 1.68540153964129544e+01 +Electron-electron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_electron_profile441)_ 1.68481454535084012e+01 +Electron-electron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_electron_profile442)_ 1.68423206994395933e+01 +Electron-electron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_electron_profile443)_ 1.68365451986621046e+01 +Electron-electron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_electron_profile444)_ 1.68308232556960640e+01 +Electron-electron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_electron_profile445)_ 1.68251594338191843e+01 +Electron-electron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_electron_profile446)_ 1.68195585760324420e+01 +Electron-electron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_electron_profile447)_ 1.68140258287086013e+01 +Electron-electron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_electron_profile448)_ 1.68085666684317268e+01 +Electron-electron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_electron_profile449)_ 1.68031869326621042e+01 +Electron-electron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_electron_profile450)_ 1.67978928550277082e+01 +Electron-electron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_electron_profile451)_ 1.67926911062624242e+01 +Electron-electron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_electron_profile452)_ 1.67875888421065902e+01 +Electron-electron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_electron_profile453)_ 1.67825937598865025e+01 +Electron-electron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_electron_profile454)_ 1.67777141660433564e+01 +Electron-electron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_electron_profile455)_ 1.67729590576608878e+01 +Electron-electron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_electron_profile456)_ 1.67683382221551192e+01 +Electron-electron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_electron_profile457)_ 1.67638623609194397e+01 +Electron-electron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_electron_profile458)_ 1.67595432451589375e+01 +Electron-electron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_electron_profile459)_ 1.67553939159043104e+01 +Electron-electron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_electron_profile460)_ 1.67514289461600185e+01 +Electron-electron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_electron_profile461)_ 1.67476647929622438e+01 +Electron-electron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_electron_profile462)_ 1.67441202839978907e+01 +Electron-electron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_electron_profile463)_ 1.67408173139535279e+01 +Electron-electron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_electron_profile464)_ 1.67377818844932911e+01 +Electron-electron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_electron_profile465)_ 1.67350457439323534e+01 +Electron-electron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_electron_profile466)_ 1.67326491636799588e+01 +Electron-electron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_electron_profile467)_ 1.67306461293070683e+01 +Electron-electron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_electron_profile468)_ 1.67291156073544904e+01 +Electron-electron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_electron_profile469)_ 1.67281932701721594e+01 +Electron-electron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_electron_profile470)_ 1.67282661017996581e+01 +Electron-electron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_electron_profile471)_ 1.67021625525954640e+01 +Electron-electron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_electron_profile472)_ 1.66750105184549717e+01 +Electron-electron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_electron_profile473)_ 1.66467310726749709e+01 +Electron-electron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_electron_profile474)_ 1.66172363468249422e+01 +Electron-electron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_electron_profile475)_ 1.65864281459216159e+01 +Electron-electron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_electron_profile476)_ 1.65541962861770422e+01 +Electron-electron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_electron_profile477)_ 1.65204165859792695e+01 +Electron-electron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_electron_profile478)_ 1.64849484196791067e+01 +Electron-electron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_electron_profile479)_ 1.64476317150118057e+01 +Electron-electron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_electron_profile480)_ 1.64082832352995780e+01 +Electron-electron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_electron_profile481)_ 1.63666919320414159e+01 +Electron-electron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_electron_profile482)_ 1.63226130745988165e+01 +Electron-electron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_electron_profile483)_ 1.62757607497603125e+01 +Electron-electron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_electron_profile484)_ 1.62257981564885618e+01 +Electron-electron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_electron_profile485)_ 1.61723248700235658e+01 +Electron-electron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_electron_profile486)_ 1.61148598645828827e+01 +Electron-electron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_electron_profile487)_ 1.60528184792083124e+01 +Electron-electron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_electron_profile488)_ 1.59854805347980840e+01 +Electron-electron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_electron_profile489)_ 1.59119451832576768e+01 +Electron-electron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_electron_profile490)_ 1.58310652597122115e+01 +Electron-electron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_electron_profile491)_ 1.57413488508530861e+01 +Electron-electron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_electron_profile492)_ 1.56408062367526615e+01 +Electron-electron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_electron_profile493)_ 1.55267012408658243e+01 +Electron-electron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_electron_profile494)_ 1.53951249965854284e+01 +Electron-electron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_electron_profile495)_ 1.52402141931822008e+01 +Electron-electron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_electron_profile496)_ 1.50525853567511962e+01 +Electron-electron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_electron_profile497)_ 1.48157991842445558e+01 +Electron-electron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_electron_profile498)_ 1.44968454230357313e+01 +Electron-electron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_electron_profile499)_ 1.40119451212949500e+01 +Electron-electron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_electron_profile500)_ 1.29941224144352816e+01 +Volume_averaged_electron-deuteron_Coulomb_log_(ΛₑD)______________________ (plasma_coulomb_log_electron_deuteron_vol_avg)_ 1.77778589280348847e+01 OP +Electron-deuteron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_deuteron_profile0)_ 1.83506817821350268e+01 +Electron-deuteron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_deuteron_profile1)_ 1.83506776944249133e+01 +Electron-deuteron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_deuteron_profile2)_ 1.83506654312044333e+01 +Electron-deuteron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_deuteron_profile3)_ 1.83506449922031685e+01 +Electron-deuteron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_deuteron_profile4)_ 1.83506163769704251e+01 +Electron-deuteron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_deuteron_profile5)_ 1.83505795848751774e+01 +Electron-deuteron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_deuteron_profile6)_ 1.83505346151060458e+01 +Electron-deuteron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_deuteron_profile7)_ 1.83504814666712655e+01 +Electron-deuteron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_deuteron_profile8)_ 1.83504201383986079e+01 +Electron-deuteron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_deuteron_profile9)_ 1.83503506289353311e+01 +Electron-deuteron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_deuteron_profile10)_ 1.83502729367480981e+01 +Electron-deuteron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_deuteron_profile11)_ 1.83501870601228951e+01 +Electron-deuteron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_deuteron_profile12)_ 1.83500929971649249e+01 +Electron-deuteron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_deuteron_profile13)_ 1.83499907457985181e+01 +Electron-deuteron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_deuteron_profile14)_ 1.83498803037670086e+01 +Electron-deuteron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_deuteron_profile15)_ 1.83497616686325991e+01 +Electron-deuteron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_deuteron_profile16)_ 1.83496348377762395e+01 +Electron-deuteron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_deuteron_profile17)_ 1.83494998083974785e+01 +Electron-deuteron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_deuteron_profile18)_ 1.83493565775142926e+01 +Electron-deuteron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_deuteron_profile19)_ 1.83492051419629369e+01 +Electron-deuteron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_deuteron_profile20)_ 1.83490454983977571e+01 +Electron-deuteron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_deuteron_profile21)_ 1.83488776432910150e+01 +Electron-deuteron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_deuteron_profile22)_ 1.83487015729326757e+01 +Electron-deuteron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_deuteron_profile23)_ 1.83485172834302084e+01 +Electron-deuteron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_deuteron_profile24)_ 1.83483247707083663e+01 +Electron-deuteron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_deuteron_profile25)_ 1.83481240305089628e+01 +Electron-deuteron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_deuteron_profile26)_ 1.83479150583906332e+01 +Electron-deuteron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_deuteron_profile27)_ 1.83476978497285792e+01 +Electron-deuteron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_deuteron_profile28)_ 1.83474723997143165e+01 +Electron-deuteron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_deuteron_profile29)_ 1.83472387033553979e+01 +Electron-deuteron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_deuteron_profile30)_ 1.83469967554751463e+01 +Electron-deuteron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_deuteron_profile31)_ 1.83467465507123535e+01 +Electron-deuteron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_deuteron_profile32)_ 1.83464880835209918e+01 +Electron-deuteron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_deuteron_profile33)_ 1.83462213481698804e+01 +Electron-deuteron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_deuteron_profile34)_ 1.83459463387423867e+01 +Electron-deuteron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_deuteron_profile35)_ 1.83456630491360890e+01 +Electron-deuteron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_deuteron_profile36)_ 1.83453714730624320e+01 +Electron-deuteron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_deuteron_profile37)_ 1.83450716040463639e+01 +Electron-deuteron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_deuteron_profile38)_ 1.83447634354259961e+01 +Electron-deuteron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_deuteron_profile39)_ 1.83444469603522009e+01 +Electron-deuteron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_deuteron_profile40)_ 1.83441221717882499e+01 +Electron-deuteron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_deuteron_profile41)_ 1.83437890625094084e+01 +Electron-deuteron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_deuteron_profile42)_ 1.83434476251025345e+01 +Electron-deuteron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_deuteron_profile43)_ 1.83430978519656485e+01 +Electron-deuteron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_deuteron_profile44)_ 1.83427397353075214e+01 +Electron-deuteron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_deuteron_profile45)_ 1.83423732671472308e+01 +Electron-deuteron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_deuteron_profile46)_ 1.83419984393136986e+01 +Electron-deuteron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_deuteron_profile47)_ 1.83416152434452648e+01 +Electron-deuteron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_deuteron_profile48)_ 1.83412236709891694e+01 +Electron-deuteron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_deuteron_profile49)_ 1.83408237132011180e+01 +Electron-deuteron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_deuteron_profile50)_ 1.83404153611447356e+01 +Electron-deuteron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_deuteron_profile51)_ 1.83399986056911288e+01 +Electron-deuteron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_deuteron_profile52)_ 1.83395734375183004e+01 +Electron-deuteron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_deuteron_profile53)_ 1.83391398471106761e+01 +Electron-deuteron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_deuteron_profile54)_ 1.83386978247585333e+01 +Electron-deuteron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_deuteron_profile55)_ 1.83382473605574781e+01 +Electron-deuteron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_deuteron_profile56)_ 1.83377884444078667e+01 +Electron-deuteron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_deuteron_profile57)_ 1.83373210660142334e+01 +Electron-deuteron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_deuteron_profile58)_ 1.83368452148847254e+01 +Electron-deuteron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_deuteron_profile59)_ 1.83363608803304814e+01 +Electron-deuteron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_deuteron_profile60)_ 1.83358680514650629e+01 +Electron-deuteron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_deuteron_profile61)_ 1.83353667172037937e+01 +Electron-deuteron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_deuteron_profile62)_ 1.83348568662631664e+01 +Electron-deuteron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_deuteron_profile63)_ 1.83343384871601742e+01 +Electron-deuteron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_deuteron_profile64)_ 1.83338115682116936e+01 +Electron-deuteron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_deuteron_profile65)_ 1.83332760975337763e+01 +Electron-deuteron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_deuteron_profile66)_ 1.83327320630410071e+01 +Electron-deuteron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_deuteron_profile67)_ 1.83321794524458141e+01 +Electron-deuteron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_deuteron_profile68)_ 1.83316182532577479e+01 +Electron-deuteron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_deuteron_profile69)_ 1.83310484527827846e+01 +Electron-deuteron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_deuteron_profile70)_ 1.83304700381226127e+01 +Electron-deuteron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_deuteron_profile71)_ 1.83298829961738683e+01 +Electron-deuteron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_deuteron_profile72)_ 1.83292873136274217e+01 +Electron-deuteron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_deuteron_profile73)_ 1.83286829769675883e+01 +Electron-deuteron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_deuteron_profile74)_ 1.83280699724713827e+01 +Electron-deuteron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_deuteron_profile75)_ 1.83274482862077086e+01 +Electron-deuteron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_deuteron_profile76)_ 1.83268179040365915e+01 +Electron-deuteron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_deuteron_profile77)_ 1.83261788116083366e+01 +Electron-deuteron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_deuteron_profile78)_ 1.83255309943627260e+01 +Electron-deuteron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_deuteron_profile79)_ 1.83248744375281944e+01 +Electron-deuteron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_deuteron_profile80)_ 1.83242091261209623e+01 +Electron-deuteron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_deuteron_profile81)_ 1.83235350449441796e+01 +Electron-deuteron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_deuteron_profile82)_ 1.83228521785870697e+01 +Electron-deuteron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_deuteron_profile83)_ 1.83221605114240305e+01 +Electron-deuteron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_deuteron_profile84)_ 1.83214600276137283e+01 +Electron-deuteron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_deuteron_profile85)_ 1.83207507110982206e+01 +Electron-deuteron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_deuteron_profile86)_ 1.83200325456019861e+01 +Electron-deuteron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_deuteron_profile87)_ 1.83193055146310257e+01 +Electron-deuteron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_deuteron_profile88)_ 1.83185696014718928e+01 +Electron-deuteron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_deuteron_profile89)_ 1.83178247891907375e+01 +Electron-deuteron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_deuteron_profile90)_ 1.83170710606323297e+01 +Electron-deuteron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_deuteron_profile91)_ 1.83163083984190678e+01 +Electron-deuteron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_deuteron_profile92)_ 1.83155367849499662e+01 +Electron-deuteron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_deuteron_profile93)_ 1.83147562023996571e+01 +Electron-deuteron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_deuteron_profile94)_ 1.83139666327173387e+01 +Electron-deuteron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_deuteron_profile95)_ 1.83131680576257487e+01 +Electron-deuteron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_deuteron_profile96)_ 1.83123604586201019e+01 +Electron-deuteron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_deuteron_profile97)_ 1.83115438169670064e+01 +Electron-deuteron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_deuteron_profile98)_ 1.83107181137033947e+01 +Electron-deuteron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_deuteron_profile99)_ 1.83098833296354080e+01 +Electron-deuteron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_deuteron_profile100)_ 1.83090394453372980e+01 +Electron-deuteron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_deuteron_profile101)_ 1.83081864411502870e+01 +Electron-deuteron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_deuteron_profile102)_ 1.83073242971814309e+01 +Electron-deuteron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_deuteron_profile103)_ 1.83064529933024538e+01 +Electron-deuteron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_deuteron_profile104)_ 1.83055725091485968e+01 +Electron-deuteron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_deuteron_profile105)_ 1.83046828241174104e+01 +Electron-deuteron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_deuteron_profile106)_ 1.83037839173675678e+01 +Electron-deuteron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_deuteron_profile107)_ 1.83028757678176461e+01 +Electron-deuteron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_deuteron_profile108)_ 1.83019583541448903e+01 +Electron-deuteron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_deuteron_profile109)_ 1.83010316547839906e+01 +Electron-deuteron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_deuteron_profile110)_ 1.83000956479257937e+01 +Electron-deuteron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_deuteron_profile111)_ 1.82991503115160512e+01 +Electron-deuteron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_deuteron_profile112)_ 1.82981956232541236e+01 +Electron-deuteron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_deuteron_profile113)_ 1.82972315605916691e+01 +Electron-deuteron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_deuteron_profile114)_ 1.82962581007313325e+01 +Electron-deuteron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_deuteron_profile115)_ 1.82952752206254168e+01 +Electron-deuteron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_deuteron_profile116)_ 1.82942828969745079e+01 +Electron-deuteron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_deuteron_profile117)_ 1.82932811062261358e+01 +Electron-deuteron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_deuteron_profile118)_ 1.82922698245733848e+01 +Electron-deuteron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_deuteron_profile119)_ 1.82912490279534872e+01 +Electron-deuteron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_deuteron_profile120)_ 1.82902186920464231e+01 +Electron-deuteron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_deuteron_profile121)_ 1.82891787922734821e+01 +Electron-deuteron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_deuteron_profile122)_ 1.82881293037958272e+01 +Electron-deuteron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_deuteron_profile123)_ 1.82870702015130320e+01 +Electron-deuteron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_deuteron_profile124)_ 1.82860014600616054e+01 +Electron-deuteron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_deuteron_profile125)_ 1.82849230538134861e+01 +Electron-deuteron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_deuteron_profile126)_ 1.82838349568745571e+01 +Electron-deuteron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_deuteron_profile127)_ 1.82827371430831036e+01 +Electron-deuteron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_deuteron_profile128)_ 1.82816295860082789e+01 +Electron-deuteron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_deuteron_profile129)_ 1.82805122589485372e+01 +Electron-deuteron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_deuteron_profile130)_ 1.82793851349300738e+01 +Electron-deuteron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_deuteron_profile131)_ 1.82782481867052304e+01 +Electron-deuteron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_deuteron_profile132)_ 1.82771013867508572e+01 +Electron-deuteron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_deuteron_profile133)_ 1.82759447072667491e+01 +Electron-deuteron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_deuteron_profile134)_ 1.82747781201739450e+01 +Electron-deuteron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_deuteron_profile135)_ 1.82736015971131032e+01 +Electron-deuteron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_deuteron_profile136)_ 1.82724151094428144e+01 +Electron-deuteron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_deuteron_profile137)_ 1.82712186282379179e+01 +Electron-deuteron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_deuteron_profile138)_ 1.82700121242877671e+01 +Electron-deuteron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_deuteron_profile139)_ 1.82687955680945358e+01 +Electron-deuteron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_deuteron_profile140)_ 1.82675689298714659e+01 +Electron-deuteron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_deuteron_profile141)_ 1.82663321795410774e+01 +Electron-deuteron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_deuteron_profile142)_ 1.82650852867334201e+01 +Electron-deuteron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_deuteron_profile143)_ 1.82638282207842764e+01 +Electron-deuteron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_deuteron_profile144)_ 1.82625609507333238e+01 +Electron-deuteron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_deuteron_profile145)_ 1.82612834453223236e+01 +Electron-deuteron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_deuteron_profile146)_ 1.82599956729932700e+01 +Electron-deuteron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_deuteron_profile147)_ 1.82586976018865101e+01 +Electron-deuteron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_deuteron_profile148)_ 1.82573891998388653e+01 +Electron-deuteron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_deuteron_profile149)_ 1.82560704343817441e+01 +Electron-deuteron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_deuteron_profile150)_ 1.82547412727391851e+01 +Electron-deuteron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_deuteron_profile151)_ 1.82534016818259595e+01 +Electron-deuteron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_deuteron_profile152)_ 1.82520516282455780e+01 +Electron-deuteron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_deuteron_profile153)_ 1.82506910782883409e+01 +Electron-deuteron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_deuteron_profile154)_ 1.82493199979293408e+01 +Electron-deuteron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_deuteron_profile155)_ 1.82479383528264378e+01 +Electron-deuteron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_deuteron_profile156)_ 1.82465461083182383e+01 +Electron-deuteron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_deuteron_profile157)_ 1.82451432294220552e+01 +Electron-deuteron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_deuteron_profile158)_ 1.82437296808318266e+01 +Electron-deuteron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_deuteron_profile159)_ 1.82423054269160509e+01 +Electron-deuteron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_deuteron_profile160)_ 1.82408704317156705e+01 +Electron-deuteron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_deuteron_profile161)_ 1.82394246589419389e+01 +Electron-deuteron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_deuteron_profile162)_ 1.82379680719743220e+01 +Electron-deuteron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_deuteron_profile163)_ 1.82365006338582987e+01 +Electron-deuteron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_deuteron_profile164)_ 1.82350223073032112e+01 +Electron-deuteron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_deuteron_profile165)_ 1.82335330546800591e+01 +Electron-deuteron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_deuteron_profile166)_ 1.82320328380192898e+01 +Electron-deuteron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_deuteron_profile167)_ 1.82305216190085702e+01 +Electron-deuteron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_deuteron_profile168)_ 1.82289993589905421e+01 +Electron-deuteron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_deuteron_profile169)_ 1.82274660189605520e+01 +Electron-deuteron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_deuteron_profile170)_ 1.82259215595643447e+01 +Electron-deuteron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_deuteron_profile171)_ 1.82243659410958116e+01 +Electron-deuteron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_deuteron_profile172)_ 1.82227991234946174e+01 +Electron-deuteron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_deuteron_profile173)_ 1.82212210663438903e+01 +Electron-deuteron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_deuteron_profile174)_ 1.82196317288678529e+01 +Electron-deuteron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_deuteron_profile175)_ 1.82180310699294523e+01 +Electron-deuteron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_deuteron_profile176)_ 1.82164190480279693e+01 +Electron-deuteron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_deuteron_profile177)_ 1.82147956212965987e+01 +Electron-deuteron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_deuteron_profile178)_ 1.82131607475000337e+01 +Electron-deuteron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_deuteron_profile179)_ 1.82115143840320144e+01 +Electron-deuteron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_deuteron_profile180)_ 1.82098564879128624e+01 +Electron-deuteron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_deuteron_profile181)_ 1.82081870157870078e+01 +Electron-deuteron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_deuteron_profile182)_ 1.82065059239204707e+01 +Electron-deuteron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_deuteron_profile183)_ 1.82048131681983882e+01 +Electron-deuteron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_deuteron_profile184)_ 1.82031087041224424e+01 +Electron-deuteron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_deuteron_profile185)_ 1.82013924868083379e+01 +Electron-deuteron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_deuteron_profile186)_ 1.81996644709832225e+01 +Electron-deuteron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_deuteron_profile187)_ 1.81979246109831223e+01 +Electron-deuteron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_deuteron_profile188)_ 1.81961728607503304e+01 +Electron-deuteron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_deuteron_profile189)_ 1.81944091738308096e+01 +Electron-deuteron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_deuteron_profile190)_ 1.81926335033715496e+01 +Electron-deuteron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_deuteron_profile191)_ 1.81908458021179378e+01 +Electron-deuteron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_deuteron_profile192)_ 1.81890460224110981e+01 +Electron-deuteron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_deuteron_profile193)_ 1.81872341161852091e+01 +Electron-deuteron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_deuteron_profile194)_ 1.81854100349648320e+01 +Electron-deuteron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_deuteron_profile195)_ 1.81835737298622000e+01 +Electron-deuteron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_deuteron_profile196)_ 1.81817251515745149e+01 +Electron-deuteron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_deuteron_profile197)_ 1.81798642503812005e+01 +Electron-deuteron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_deuteron_profile198)_ 1.81779909761411815e+01 +Electron-deuteron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_deuteron_profile199)_ 1.81761052782901196e+01 +Electron-deuteron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_deuteron_profile200)_ 1.81742071058376453e+01 +Electron-deuteron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_deuteron_profile201)_ 1.81722964073646018e+01 +Electron-deuteron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_deuteron_profile202)_ 1.81703731310202272e+01 +Electron-deuteron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_deuteron_profile203)_ 1.81684372245193764e+01 +Electron-deuteron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_deuteron_profile204)_ 1.81664886351397143e+01 +Electron-deuteron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_deuteron_profile205)_ 1.81645273097188742e+01 +Electron-deuteron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_deuteron_profile206)_ 1.81625531946516645e+01 +Electron-deuteron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_deuteron_profile207)_ 1.81605662358871989e+01 +Electron-deuteron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_deuteron_profile208)_ 1.81585663789260821e+01 +Electron-deuteron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_deuteron_profile209)_ 1.81565535688175430e+01 +Electron-deuteron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_deuteron_profile210)_ 1.81545277501565820e+01 +Electron-deuteron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_deuteron_profile211)_ 1.81524888670811002e+01 +Electron-deuteron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_deuteron_profile212)_ 1.81504368632690642e+01 +Electron-deuteron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_deuteron_profile213)_ 1.81483716819355898e+01 +Electron-deuteron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_deuteron_profile214)_ 1.81462932658300922e+01 +Electron-deuteron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_deuteron_profile215)_ 1.81442015572334299e+01 +Electron-deuteron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_deuteron_profile216)_ 1.81420964979549773e+01 +Electron-deuteron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_deuteron_profile217)_ 1.81399780293297859e+01 +Electron-deuteron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_deuteron_profile218)_ 1.81378460922156961e+01 +Electron-deuteron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_deuteron_profile219)_ 1.81357006269904630e+01 +Electron-deuteron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_deuteron_profile220)_ 1.81335415735488752e+01 +Electron-deuteron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_deuteron_profile221)_ 1.81313688712999017e+01 +Electron-deuteron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_deuteron_profile222)_ 1.81291824591638004e+01 +Electron-deuteron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_deuteron_profile223)_ 1.81269822755693006e+01 +Electron-deuteron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_deuteron_profile224)_ 1.81247682584507217e+01 +Electron-deuteron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_deuteron_profile225)_ 1.81225403452451417e+01 +Electron-deuteron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_deuteron_profile226)_ 1.81202984728895764e+01 +Electron-deuteron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_deuteron_profile227)_ 1.81180425778181515e+01 +Electron-deuteron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_deuteron_profile228)_ 1.81157725959592995e+01 +Electron-deuteron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_deuteron_profile229)_ 1.81134884627329740e+01 +Electron-deuteron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_deuteron_profile230)_ 1.81111901130478898e+01 +Electron-deuteron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_deuteron_profile231)_ 1.81088774812987410e+01 +Electron-deuteron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_deuteron_profile232)_ 1.81065505013635004e+01 +Electron-deuteron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_deuteron_profile233)_ 1.81042091066006812e+01 +Electron-deuteron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_deuteron_profile234)_ 1.81018532298466752e+01 +Electron-deuteron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_deuteron_profile235)_ 1.80994828034130784e+01 +Electron-deuteron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_deuteron_profile236)_ 1.80970977590840754e+01 +Electron-deuteron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_deuteron_profile237)_ 1.80946980281138217e+01 +Electron-deuteron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_deuteron_profile238)_ 1.80922835412238889e+01 +Electron-deuteron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_deuteron_profile239)_ 1.80898542286007284e+01 +Electron-deuteron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_deuteron_profile240)_ 1.80874100198932020e+01 +Electron-deuteron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_deuteron_profile241)_ 1.80849508442100912e+01 +Electron-deuteron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_deuteron_profile242)_ 1.80824766301177355e+01 +Electron-deuteron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_deuteron_profile243)_ 1.80799873056376228e+01 +Electron-deuteron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_deuteron_profile244)_ 1.80774827982441160e+01 +Electron-deuteron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_deuteron_profile245)_ 1.80749630348621899e+01 +Electron-deuteron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_deuteron_profile246)_ 1.80724279418652038e+01 +Electron-deuteron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_deuteron_profile247)_ 1.80698774450727946e+01 +Electron-deuteron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_deuteron_profile248)_ 1.80673114697487662e+01 +Electron-deuteron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_deuteron_profile249)_ 1.80647299405990900e+01 +Electron-deuteron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_deuteron_profile250)_ 1.80621327817699466e+01 +Electron-deuteron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_deuteron_profile251)_ 1.80595199168458862e+01 +Electron-deuteron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_deuteron_profile252)_ 1.80568912688480019e+01 +Electron-deuteron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_deuteron_profile253)_ 1.80542467602322354e+01 +Electron-deuteron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_deuteron_profile254)_ 1.80515863128877783e+01 +Electron-deuteron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_deuteron_profile255)_ 1.80489098481354802e+01 +Electron-deuteron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_deuteron_profile256)_ 1.80462172867264847e+01 +Electron-deuteron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_deuteron_profile257)_ 1.80435085488408369e+01 +Electron-deuteron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_deuteron_profile258)_ 1.80407835540863069e+01 +Electron-deuteron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_deuteron_profile259)_ 1.80380422214972320e+01 +Electron-deuteron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_deuteron_profile260)_ 1.80352844695335399e+01 +Electron-deuteron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_deuteron_profile261)_ 1.80325102160798743e+01 +Electron-deuteron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_deuteron_profile262)_ 1.80297193784448417e+01 +Electron-deuteron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_deuteron_profile263)_ 1.80269118733604152e+01 +Electron-deuteron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_deuteron_profile264)_ 1.80240876169814364e+01 +Electron-deuteron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_deuteron_profile265)_ 1.80212465248853277e+01 +Electron-deuteron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_deuteron_profile266)_ 1.80183885120719189e+01 +Electron-deuteron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_deuteron_profile267)_ 1.80155134929634393e+01 +Electron-deuteron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_deuteron_profile268)_ 1.80126213814047063e+01 +Electron-deuteron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_deuteron_profile269)_ 1.80097120906634345e+01 +Electron-deuteron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_deuteron_profile270)_ 1.80067855334308291e+01 +Electron-deuteron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_deuteron_profile271)_ 1.80038416218222821e+01 +Electron-deuteron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_deuteron_profile272)_ 1.80008802673783066e+01 +Electron-deuteron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_deuteron_profile273)_ 1.79979013810656951e+01 +Electron-deuteron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_deuteron_profile274)_ 1.79949048732789016e+01 +Electron-deuteron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_deuteron_profile275)_ 1.79918906538416294e+01 +Electron-deuteron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_deuteron_profile276)_ 1.79888586320087143e+01 +Electron-deuteron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_deuteron_profile277)_ 1.79858087164681812e+01 +Electron-deuteron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_deuteron_profile278)_ 1.79827408153436608e+01 +Electron-deuteron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_deuteron_profile279)_ 1.79796548361970032e+01 +Electron-deuteron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_deuteron_profile280)_ 1.79765506860312492e+01 +Electron-deuteron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_deuteron_profile281)_ 1.79734282712938338e+01 +Electron-deuteron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_deuteron_profile282)_ 1.79702874978801823e+01 +Electron-deuteron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_deuteron_profile283)_ 1.79671282711375540e+01 +Electron-deuteron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_deuteron_profile284)_ 1.79639504958693053e+01 +Electron-deuteron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_deuteron_profile285)_ 1.79607540763394482e+01 +Electron-deuteron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_deuteron_profile286)_ 1.79575389162776311e+01 +Electron-deuteron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_deuteron_profile287)_ 1.79543049188844712e+01 +Electron-deuteron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_deuteron_profile288)_ 1.79510519868373173e+01 +Electron-deuteron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_deuteron_profile289)_ 1.79477800222964241e+01 +Electron-deuteron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_deuteron_profile290)_ 1.79444889269115748e+01 +Electron-deuteron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_deuteron_profile291)_ 1.79411786018291508e+01 +Electron-deuteron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_deuteron_profile292)_ 1.79378489476996954e+01 +Electron-deuteron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_deuteron_profile293)_ 1.79344998646859715e+01 +Electron-deuteron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_deuteron_profile294)_ 1.79311312524715376e+01 +Electron-deuteron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_deuteron_profile295)_ 1.79277430102698467e+01 +Electron-deuteron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_deuteron_profile296)_ 1.79243350368339662e+01 +Electron-deuteron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_deuteron_profile297)_ 1.79209072304668062e+01 +Electron-deuteron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_deuteron_profile298)_ 1.79174594890320478e+01 +Electron-deuteron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_deuteron_profile299)_ 1.79139917099656323e+01 +Electron-deuteron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_deuteron_profile300)_ 1.79105037902879545e+01 +Electron-deuteron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_deuteron_profile301)_ 1.79069956266167551e+01 +Electron-deuteron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_deuteron_profile302)_ 1.79034671151807139e+01 +Electron-deuteron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_deuteron_profile303)_ 1.78999181518337842e+01 +Electron-deuteron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_deuteron_profile304)_ 1.78963486320703566e+01 +Electron-deuteron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_deuteron_profile305)_ 1.78927584510411961e+01 +Electron-deuteron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_deuteron_profile306)_ 1.78891475035702356e+01 +Electron-deuteron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_deuteron_profile307)_ 1.78855156841722405e+01 +Electron-deuteron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_deuteron_profile308)_ 1.78818628870714420e+01 +Electron-deuteron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_deuteron_profile309)_ 1.78781890062210564e+01 +Electron-deuteron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_deuteron_profile310)_ 1.78744939353238799e+01 +Electron-deuteron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_deuteron_profile311)_ 1.78707775678538425e+01 +Electron-deuteron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_deuteron_profile312)_ 1.78670397970787178e+01 +Electron-deuteron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_deuteron_profile313)_ 1.78632805160838792e+01 +Electron-deuteron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_deuteron_profile314)_ 1.78594996177973186e+01 +Electron-deuteron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_deuteron_profile315)_ 1.78556969950157978e+01 +Electron-deuteron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_deuteron_profile316)_ 1.78518725404323249e+01 +Electron-deuteron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_deuteron_profile317)_ 1.78480261466649672e+01 +Electron-deuteron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_deuteron_profile318)_ 1.78441577062869534e+01 +Electron-deuteron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_deuteron_profile319)_ 1.78402671118583243e+01 +Electron-deuteron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_deuteron_profile320)_ 1.78363542559589909e+01 +Electron-deuteron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_deuteron_profile321)_ 1.78324190312233917e+01 +Electron-deuteron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_deuteron_profile322)_ 1.78284613303767614e+01 +Electron-deuteron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_deuteron_profile323)_ 1.78244810462730641e+01 +Electron-deuteron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_deuteron_profile324)_ 1.78204780719347049e+01 +Electron-deuteron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_deuteron_profile325)_ 1.78164523005940687e+01 +Electron-deuteron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_deuteron_profile326)_ 1.78124036257369376e+01 +Electron-deuteron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_deuteron_profile327)_ 1.78083319411479266e+01 +Electron-deuteron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_deuteron_profile328)_ 1.78042371409579694e+01 +Electron-deuteron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_deuteron_profile329)_ 1.78001191196939210e+01 +Electron-deuteron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_deuteron_profile330)_ 1.77959777723304704e+01 +Electron-deuteron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_deuteron_profile331)_ 1.77918129943442942e+01 +Electron-deuteron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_deuteron_profile332)_ 1.77876246817707369e+01 +Electron-deuteron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_deuteron_profile333)_ 1.77834127312629242e+01 +Electron-deuteron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_deuteron_profile334)_ 1.77791770401536091e+01 +Electron-deuteron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_deuteron_profile335)_ 1.77749175065196496e+01 +Electron-deuteron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_deuteron_profile336)_ 1.77706340292494573e+01 +Electron-deuteron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_deuteron_profile337)_ 1.77663265081133623e+01 +Electron-deuteron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_deuteron_profile338)_ 1.77619948438370905e+01 +Electron-deuteron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_deuteron_profile339)_ 1.77576389381784558e+01 +Electron-deuteron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_deuteron_profile340)_ 1.77532586940074708e+01 +Electron-deuteron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_deuteron_profile341)_ 1.77488540153899237e+01 +Electron-deuteron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_deuteron_profile342)_ 1.77444248076746334e+01 +Electron-deuteron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_deuteron_profile343)_ 1.77399709775844912e+01 +Electron-deuteron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_deuteron_profile344)_ 1.77354924333115171e+01 +Electron-deuteron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_deuteron_profile345)_ 1.77309890846160059e+01 +Electron-deuteron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_deuteron_profile346)_ 1.77264608429300203e+01 +Electron-deuteron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_deuteron_profile347)_ 1.77219076214653946e+01 +Electron-deuteron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_deuteron_profile348)_ 1.77173293353263475e+01 +Electron-deuteron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_deuteron_profile349)_ 1.77127259016271132e+01 +Electron-deuteron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_deuteron_profile350)_ 1.77080972396145455e+01 +Electron-deuteron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_deuteron_profile351)_ 1.77034432707960896e+01 +Electron-deuteron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_deuteron_profile352)_ 1.76987639190733042e+01 +Electron-deuteron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_deuteron_profile353)_ 1.76940591108811418e+01 +Electron-deuteron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_deuteron_profile354)_ 1.76893287753332409e+01 +Electron-deuteron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_deuteron_profile355)_ 1.76845728443735375e+01 +Electron-deuteron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_deuteron_profile356)_ 1.76797912529344039e+01 +Electron-deuteron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_deuteron_profile357)_ 1.76749839391016259e+01 +Electron-deuteron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_deuteron_profile358)_ 1.76701508442865531e+01 +Electron-deuteron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_deuteron_profile359)_ 1.76652919134056212e+01 +Electron-deuteron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_deuteron_profile360)_ 1.76604070950677219e+01 +Electron-deuteron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_deuteron_profile361)_ 1.76554963417695987e+01 +Electron-deuteron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_deuteron_profile362)_ 1.76505596100997728e+01 +Electron-deuteron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_deuteron_profile363)_ 1.76455968609512475e+01 +Electron-deuteron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_deuteron_profile364)_ 1.76406080597434709e+01 +Electron-deuteron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_deuteron_profile365)_ 1.76355931766538561e+01 +Electron-deuteron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_deuteron_profile366)_ 1.76305521868594539e+01 +Electron-deuteron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_deuteron_profile367)_ 1.76254850707889901e+01 +Electron-deuteron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_deuteron_profile368)_ 1.76203918143859823e+01 +Electron-deuteron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_deuteron_profile369)_ 1.76152724093832092e+01 +Electron-deuteron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_deuteron_profile370)_ 1.76101268535891826e+01 +Electron-deuteron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_deuteron_profile371)_ 1.76049551511871023e+01 +Electron-deuteron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_deuteron_profile372)_ 1.75997573130468474e+01 +Electron-deuteron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_deuteron_profile373)_ 1.75945333570506364e+01 +Electron-deuteron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_deuteron_profile374)_ 1.75892833084328757e+01 +Electron-deuteron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_deuteron_profile375)_ 1.75840072001350372e+01 +Electron-deuteron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_deuteron_profile376)_ 1.75787050731759820e+01 +Electron-deuteron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_deuteron_profile377)_ 1.75733769770386203e+01 +Electron-deuteron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_deuteron_profile378)_ 1.75680229700736561e+01 +Electron-deuteron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_deuteron_profile379)_ 1.75626431199211055e+01 +Electron-deuteron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_deuteron_profile380)_ 1.75572375039504429e+01 +Electron-deuteron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_deuteron_profile381)_ 1.75518062097203078e+01 +Electron-deuteron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_deuteron_profile382)_ 1.75463493354585829e+01 +Electron-deuteron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_deuteron_profile383)_ 1.75408669905638881e+01 +Electron-deuteron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_deuteron_profile384)_ 1.75353592961293820e+01 +Electron-deuteron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_deuteron_profile385)_ 1.75298263854900576e+01 +Electron-deuteron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_deuteron_profile386)_ 1.75242684047945652e+01 +Electron-deuteron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_deuteron_profile387)_ 1.75186855136027049e+01 +Electron-deuteron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_deuteron_profile388)_ 1.75130778855098939e+01 +Electron-deuteron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_deuteron_profile389)_ 1.75074457087998852e+01 +Electron-deuteron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_deuteron_profile390)_ 1.75017891871270557e+01 +Electron-deuteron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_deuteron_profile391)_ 1.74961085402297449e+01 +Electron-deuteron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_deuteron_profile392)_ 1.74904040046761722e+01 +Electron-deuteron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_deuteron_profile393)_ 1.74846758346445341e+01 +Electron-deuteron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_deuteron_profile394)_ 1.74789243027389318e+01 +Electron-deuteron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_deuteron_profile395)_ 1.74731497008429386e+01 +Electron-deuteron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_deuteron_profile396)_ 1.74673523410128553e+01 +Electron-deuteron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_deuteron_profile397)_ 1.74615325564122976e+01 +Electron-deuteron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_deuteron_profile398)_ 1.74556907022906422e+01 +Electron-deuteron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_deuteron_profile399)_ 1.74498271570072809e+01 +Electron-deuteron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_deuteron_profile400)_ 1.74439423231042845e+01 +Electron-deuteron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_deuteron_profile401)_ 1.74380366284298134e+01 +Electron-deuteron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_deuteron_profile402)_ 1.74321105273150643e+01 +Electron-deuteron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_deuteron_profile403)_ 1.74261645018076727e+01 +Electron-deuteron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_deuteron_profile404)_ 1.74201990629644392e+01 +Electron-deuteron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_deuteron_profile405)_ 1.74142147522067958e+01 +Electron-deuteron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_deuteron_profile406)_ 1.74082121427423395e+01 +Electron-deuteron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_deuteron_profile407)_ 1.74021918410562222e+01 +Electron-deuteron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_deuteron_profile408)_ 1.73961544884762347e+01 +Electron-deuteron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_deuteron_profile409)_ 1.73901007628159050e+01 +Electron-deuteron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_deuteron_profile410)_ 1.73840313801000867e+01 +Electron-deuteron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_deuteron_profile411)_ 1.73779470963778948e+01 +Electron-deuteron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_deuteron_profile412)_ 1.73718487096282530e+01 +Electron-deuteron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_deuteron_profile413)_ 1.73657370617635358e+01 +Electron-deuteron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_deuteron_profile414)_ 1.73596130407376492e+01 +Electron-deuteron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_deuteron_profile415)_ 1.73534775827647891e+01 +Electron-deuteron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_deuteron_profile416)_ 1.73473316746561572e+01 +Electron-deuteron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_deuteron_profile417)_ 1.73411763562822898e+01 +Electron-deuteron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_deuteron_profile418)_ 1.73350127231694096e+01 +Electron-deuteron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_deuteron_profile419)_ 1.73288419292387204e+01 +Electron-deuteron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_deuteron_profile420)_ 1.73226651896989097e+01 +Electron-deuteron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_deuteron_profile421)_ 1.73164837841024877e+01 +Electron-deuteron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_deuteron_profile422)_ 1.73102990595779040e+01 +Electron-deuteron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_deuteron_profile423)_ 1.73041124342508716e+01 +Electron-deuteron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_deuteron_profile424)_ 1.72979254008690297e+01 +Electron-deuteron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_deuteron_profile425)_ 1.72917395306461792e+01 +Electron-deuteron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_deuteron_profile426)_ 1.72855564773438992e+01 +Electron-deuteron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_deuteron_profile427)_ 1.72793779816101889e+01 +Electron-deuteron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_deuteron_profile428)_ 1.72732058755974336e+01 +Electron-deuteron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_deuteron_profile429)_ 1.72670420878843274e+01 +Electron-deuteron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_deuteron_profile430)_ 1.72608886487296189e+01 +Electron-deuteron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_deuteron_profile431)_ 1.72547476956891614e+01 +Electron-deuteron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_deuteron_profile432)_ 1.72486214796316979e+01 +Electron-deuteron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_deuteron_profile433)_ 1.72425123711940955e+01 +Electron-deuteron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_deuteron_profile434)_ 1.72364228677218492e+01 +Electron-deuteron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_deuteron_profile435)_ 1.72303556007481760e+01 +Electron-deuteron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_deuteron_profile436)_ 1.72243133440723284e+01 +Electron-deuteron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_deuteron_profile437)_ 1.72182990225079351e+01 +Electron-deuteron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_deuteron_profile438)_ 1.72123157213831242e+01 +Electron-deuteron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_deuteron_profile439)_ 1.72063666968882139e+01 +Electron-deuteron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_deuteron_profile440)_ 1.72004553873835171e+01 +Electron-deuteron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_deuteron_profile441)_ 1.71945854257998327e+01 +Electron-deuteron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_deuteron_profile442)_ 1.71887606532892221e+01 +Electron-deuteron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_deuteron_profile443)_ 1.71829851343144462e+01 +Electron-deuteron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_deuteron_profile444)_ 1.71772631734031798e+01 +Electron-deuteron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_deuteron_profile445)_ 1.71715993338410833e+01 +Electron-deuteron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_deuteron_profile446)_ 1.71659984586375103e+01 +Electron-deuteron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_deuteron_profile447)_ 1.71604656941741283e+01 +Electron-deuteron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_deuteron_profile448)_ 1.71550065170444093e+01 +Electron-deuteron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_deuteron_profile449)_ 1.71496267647186791e+01 +Electron-deuteron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_deuteron_profile450)_ 1.71443326708356167e+01 +Electron-deuteron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_deuteron_profile451)_ 1.71391309061405757e+01 +Electron-deuteron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_deuteron_profile452)_ 1.71340286263862112e+01 +Electron-deuteron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_deuteron_profile453)_ 1.71290335289121103e+01 +Electron-deuteron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_deuteron_profile454)_ 1.71241539201738782e+01 +Electron-deuteron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_deuteron_profile455)_ 1.71193987972709714e+01 +Electron-deuteron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_deuteron_profile456)_ 1.71147779476365969e+01 +Electron-deuteron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_deuteron_profile457)_ 1.71103020726831261e+01 +Electron-deuteron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_deuteron_profile458)_ 1.71059829436367181e+01 +Electron-deuteron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_deuteron_profile459)_ 1.71018336015516965e+01 +Electron-deuteron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_deuteron_profile460)_ 1.70978686194592555e+01 +Electron-deuteron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_deuteron_profile461)_ 1.70941044544261906e+01 +Electron-deuteron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_deuteron_profile462)_ 1.70905599341749834e+01 +Electron-deuteron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_deuteron_profile463)_ 1.70872569534342773e+01 +Electron-deuteron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_deuteron_profile464)_ 1.70842215139190330e+01 +Electron-deuteron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_deuteron_profile465)_ 1.70814853640077224e+01 +Electron-deuteron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_deuteron_profile466)_ 1.70790887751913836e+01 +Electron-deuteron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_deuteron_profile467)_ 1.70770857331529058e+01 +Electron-deuteron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_deuteron_profile468)_ 1.70755552046000716e+01 +Electron-deuteron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_deuteron_profile469)_ 1.70746328621753207e+01 +Electron-deuteron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_deuteron_profile470)_ 1.70747056907688020e+01 +Electron-deuteron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_deuteron_profile471)_ 1.70486020693763400e+01 +Electron-deuteron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_deuteron_profile472)_ 1.70214499630558755e+01 +Electron-deuteron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_deuteron_profile473)_ 1.69931704451041945e+01 +Electron-deuteron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_deuteron_profile474)_ 1.69636756470907706e+01 +Electron-deuteron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_deuteron_profile475)_ 1.69328673740323659e+01 +Electron-deuteron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_deuteron_profile476)_ 1.69006354421410023e+01 +Electron-deuteron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_deuteron_profile477)_ 1.68668556698047603e+01 +Electron-deuteron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_deuteron_profile478)_ 1.68313874313744343e+01 +Electron-deuteron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_deuteron_profile479)_ 1.67940706545852869e+01 +Electron-deuteron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_deuteron_profile480)_ 1.67547221027595405e+01 +Electron-deuteron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_deuteron_profile481)_ 1.67131307273961838e+01 +Electron-deuteron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_deuteron_profile482)_ 1.66690517978567350e+01 +Electron-deuteron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_deuteron_profile483)_ 1.66221994009297056e+01 +Electron-deuteron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_deuteron_profile484)_ 1.65722367355777749e+01 +Electron-deuteron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_deuteron_profile485)_ 1.65187633770409370e+01 +Electron-deuteron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_deuteron_profile486)_ 1.64612982995367538e+01 +Electron-deuteron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_deuteron_profile487)_ 1.63992568421070395e+01 +Electron-deuteron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_deuteron_profile488)_ 1.63319188256500318e+01 +Electron-deuteron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_deuteron_profile489)_ 1.62583834020711997e+01 +Electron-deuteron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_deuteron_profile490)_ 1.61775034064956635e+01 +Electron-deuteron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_deuteron_profile491)_ 1.60877869256148607e+01 +Electron-deuteron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_deuteron_profile492)_ 1.59872442395011216e+01 +Electron-deuteron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_deuteron_profile493)_ 1.58731391716093544e+01 +Electron-deuteron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_deuteron_profile494)_ 1.57415628553324698e+01 +Electron-deuteron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_deuteron_profile495)_ 1.55866519799410739e+01 +Electron-deuteron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_deuteron_profile496)_ 1.53990230715303174e+01 +Electron-deuteron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_deuteron_profile497)_ 1.51622368270522792e+01 +Electron-deuteron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_deuteron_profile498)_ 1.48432829938805160e+01 +Electron-deuteron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_deuteron_profile499)_ 1.43583826201851199e+01 +Electron-deuteron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_deuteron_profile500)_ 1.33405598413794220e+01 +Volume_averaged_electron-triton_Coulomb_log_(ΛₑT)________________________ (plasma_coulomb_log_electron_triton_vol_avg)_ 1.77779024903161513e+01 OP +Electron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_electron_triton_profile0)_ 1.83507235170867631e+01 +Electron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_electron_triton_profile1)_ 1.83507194293950455e+01 +Electron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_electron_triton_profile2)_ 1.83507071662297570e+01 +Electron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_electron_triton_profile3)_ 1.83506867273204861e+01 +Electron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_electron_triton_profile4)_ 1.83506581122165215e+01 +Electron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_electron_triton_profile5)_ 1.83506213202868445e+01 +Electron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_electron_triton_profile6)_ 1.83505763507200719e+01 +Electron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_electron_triton_profile7)_ 1.83505232025244425e+01 +Electron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_electron_triton_profile8)_ 1.83504618745277170e+01 +Electron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_electron_triton_profile9)_ 1.83503923653771537e+01 +Electron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_electron_triton_profile10)_ 1.83503146735394118e+01 +Electron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_electron_triton_profile11)_ 1.83502287973004670e+01 +Electron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_electron_triton_profile12)_ 1.83501347347655290e+01 +Electron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_electron_triton_profile13)_ 1.83500324838589144e+01 +Electron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_electron_triton_profile14)_ 1.83499220423239500e+01 +Electron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_electron_triton_profile15)_ 1.83498034077228382e+01 +Electron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_electron_triton_profile16)_ 1.83496765774365151e+01 +Electron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_electron_triton_profile17)_ 1.83495415486645292e+01 +Electron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_electron_triton_profile18)_ 1.83493983184248464e+01 +Electron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_electron_triton_profile19)_ 1.83492468835537110e+01 +Electron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_electron_triton_profile20)_ 1.83490872407054653e+01 +Electron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_electron_triton_profile21)_ 1.83489193863523603e+01 +Electron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_electron_triton_profile22)_ 1.83487433167843434e+01 +Electron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_electron_triton_profile23)_ 1.83485590281088875e+01 +Electron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_electron_triton_profile24)_ 1.83483665162507243e+01 +Electron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_electron_triton_profile25)_ 1.83481657769516637e+01 +Electron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_electron_triton_profile26)_ 1.83479568057703233e+01 +Electron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_electron_triton_profile27)_ 1.83477395980818976e+01 +Electron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_electron_triton_profile28)_ 1.83475141490778846e+01 +Electron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_electron_triton_profile29)_ 1.83472804537658298e+01 +Electron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_electron_triton_profile30)_ 1.83470385069690458e+01 +Electron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_electron_triton_profile31)_ 1.83467883033263028e+01 +Electron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_electron_triton_profile32)_ 1.83465298372915520e+01 +Electron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_electron_triton_profile33)_ 1.83462631031336159e+01 +Electron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_electron_triton_profile34)_ 1.83459880949358372e+01 +Electron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_electron_triton_profile35)_ 1.83457048065957800e+01 +Electron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_electron_triton_profile36)_ 1.83454132318248675e+01 +Electron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_electron_triton_profile37)_ 1.83451133641480375e+01 +Electron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_electron_triton_profile38)_ 1.83448051969033834e+01 +Electron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_electron_triton_profile39)_ 1.83444887232417564e+01 +Electron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_electron_triton_profile40)_ 1.83441639361264137e+01 +Electron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_electron_triton_profile41)_ 1.83438308283326066e+01 +Electron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_electron_triton_profile42)_ 1.83434893924471574e+01 +Electron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_electron_triton_profile43)_ 1.83431396208680866e+01 +Electron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_electron_triton_profile44)_ 1.83427815058041332e+01 +Electron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_electron_triton_profile45)_ 1.83424150392743535e+01 +Electron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_electron_triton_profile46)_ 1.83420402131076585e+01 +Electron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_electron_triton_profile47)_ 1.83416570189423602e+01 +Electron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_electron_triton_profile48)_ 1.83412654482256769e+01 +Electron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_electron_triton_profile49)_ 1.83408654922132861e+01 +Electron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_electron_triton_profile50)_ 1.83404571419688089e+01 +Electron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_electron_triton_profile51)_ 1.83400403883633061e+01 +Electron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_electron_triton_profile52)_ 1.83396152220747659e+01 +Electron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_electron_triton_profile53)_ 1.83391816335875895e+01 +Electron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_electron_triton_profile54)_ 1.83387396131920362e+01 +Electron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_electron_triton_profile55)_ 1.83382891509836803e+01 +Electron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_electron_triton_profile56)_ 1.83378302368628425e+01 +Electron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_electron_triton_profile57)_ 1.83373628605340500e+01 +Electron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_electron_triton_profile58)_ 1.83368870115054108e+01 +Electron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_electron_triton_profile59)_ 1.83364026790880423e+01 +Electron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_electron_triton_profile60)_ 1.83359098523954742e+01 +Electron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_electron_triton_profile61)_ 1.83354085203430017e+01 +Electron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_electron_triton_profile62)_ 1.83348986716470890e+01 +Electron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_electron_triton_profile63)_ 1.83343802948247117e+01 +Electron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_electron_triton_profile64)_ 1.83338533781926962e+01 +Electron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_electron_triton_profile65)_ 1.83333179098670804e+01 +Electron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_electron_triton_profile66)_ 1.83327738777624134e+01 +Electron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_electron_triton_profile67)_ 1.83322212695910878e+01 +Electron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_electron_triton_profile68)_ 1.83316600728626291e+01 +Electron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_electron_triton_profile69)_ 1.83310902748829783e+01 +Electron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_electron_triton_profile70)_ 1.83305118627537880e+01 +Electron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_electron_triton_profile71)_ 1.83299248233716696e+01 +Electron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_electron_triton_profile72)_ 1.83293291434274508e+01 +Electron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_electron_triton_profile73)_ 1.83287248094054220e+01 +Electron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_electron_triton_profile74)_ 1.83281118075825589e+01 +Electron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_electron_triton_profile75)_ 1.83274901240277259e+01 +Electron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_electron_triton_profile76)_ 1.83268597446009167e+01 +Electron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_electron_triton_profile77)_ 1.83262206549523974e+01 +Electron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_electron_triton_profile78)_ 1.83255728405219251e+01 +Electron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_electron_triton_profile79)_ 1.83249162865378814e+01 +Electron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_electron_triton_profile80)_ 1.83242509780164546e+01 +Electron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_electron_triton_profile81)_ 1.83235768997607700e+01 +Electron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_electron_triton_profile82)_ 1.83228940363599939e+01 +Electron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_electron_triton_profile83)_ 1.83222023721884923e+01 +Electron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_electron_triton_profile84)_ 1.83215018914048926e+01 +Electron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_electron_triton_profile85)_ 1.83207925779512095e+01 +Electron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_electron_triton_profile86)_ 1.83200744155518862e+01 +Electron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_electron_triton_profile87)_ 1.83193473877128774e+01 +Electron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_electron_triton_profile88)_ 1.83186114777207010e+01 +Electron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_electron_triton_profile89)_ 1.83178666686414608e+01 +Electron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_electron_triton_profile90)_ 1.83171129433198843e+01 +Electron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_electron_triton_profile91)_ 1.83163502843783270e+01 +Electron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_electron_triton_profile92)_ 1.83155786742157574e+01 +Electron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_electron_triton_profile93)_ 1.83147980950067648e+01 +Electron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_electron_triton_profile94)_ 1.83140085287005050e+01 +Electron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_electron_triton_profile95)_ 1.83132099570196694e+01 +Electron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_electron_triton_profile96)_ 1.83124023614594300e+01 +Electron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_electron_triton_profile97)_ 1.83115857232863455e+01 +Electron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_electron_triton_profile98)_ 1.83107600235372985e+01 +Electron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_electron_triton_profile99)_ 1.83099252430183874e+01 +Electron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_electron_triton_profile100)_ 1.83090813623038144e+01 +Electron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_electron_triton_profile101)_ 1.83082283617347557e+01 +Electron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_electron_triton_profile102)_ 1.83073662214182136e+01 +Electron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_electron_triton_profile103)_ 1.83064949212258696e+01 +Electron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_electron_triton_profile104)_ 1.83056144407929118e+01 +Electron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_electron_triton_profile105)_ 1.83047247595168372e+01 +Electron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_electron_triton_profile106)_ 1.83038258565562728e+01 +Electron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_electron_triton_profile107)_ 1.83029177108297390e+01 +Electron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_electron_triton_profile108)_ 1.83020003010144379e+01 +Electron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_electron_triton_profile109)_ 1.83010736055449996e+01 +Electron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_electron_triton_profile110)_ 1.83001376026122173e+01 +Electron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_electron_triton_profile111)_ 1.82991922701617966e+01 +Electron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_electron_triton_profile112)_ 1.82982375858930340e+01 +Electron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_electron_triton_profile113)_ 1.82972735272575378e+01 +Electron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_electron_triton_profile114)_ 1.82963000714578996e+01 +Electron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_electron_triton_profile115)_ 1.82953171954463620e+01 +Electron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_electron_triton_profile116)_ 1.82943248759234578e+01 +Electron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_electron_triton_profile117)_ 1.82933230893366634e+01 +Electron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_electron_triton_profile118)_ 1.82923118118789958e+01 +Electron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_electron_triton_profile119)_ 1.82912910194876446e+01 +Electron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_electron_triton_profile120)_ 1.82902606878425118e+01 +Electron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_electron_triton_profile121)_ 1.82892207923648407e+01 +Electron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_electron_triton_profile122)_ 1.82881713082157411e+01 +Electron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_electron_triton_profile123)_ 1.82871122102947119e+01 +Electron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_electron_triton_profile124)_ 1.82860434732382053e+01 +Electron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_electron_triton_profile125)_ 1.82849650714181031e+01 +Electron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_electron_triton_profile126)_ 1.82838769789402278e+01 +Electron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_electron_triton_profile127)_ 1.82827791696427973e+01 +Electron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_electron_triton_profile128)_ 1.82816716170949007e+01 +Electron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_electron_triton_profile129)_ 1.82805542945949355e+01 +Electron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_electron_triton_profile130)_ 1.82794271751690260e+01 +Electron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_electron_triton_profile131)_ 1.82782902315694535e+01 +Electron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_electron_triton_profile132)_ 1.82771434362730005e+01 +Electron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_electron_triton_profile133)_ 1.82759867614794018e+01 +Electron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_electron_triton_profile134)_ 1.82748201791096214e+01 +Electron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_electron_triton_profile135)_ 1.82736436608042574e+01 +Electron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_electron_triton_profile136)_ 1.82724571779218330e+01 +Electron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_electron_triton_profile137)_ 1.82712607015371127e+01 +Electron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_electron_triton_profile138)_ 1.82700542024393897e+01 +Electron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_electron_triton_profile139)_ 1.82688376511307666e+01 +Electron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_electron_triton_profile140)_ 1.82676110178244073e+01 +Electron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_electron_triton_profile141)_ 1.82663742724427713e+01 +Electron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_electron_triton_profile142)_ 1.82651273846158340e+01 +Electron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_electron_triton_profile143)_ 1.82638703236793063e+01 +Electron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_electron_triton_profile144)_ 1.82626030586727950e+01 +Electron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_electron_triton_profile145)_ 1.82613255583379903e+01 +Electron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_electron_triton_profile146)_ 1.82600377911168010e+01 +Electron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_electron_triton_profile147)_ 1.82587397251495176e+01 +Electron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_electron_triton_profile148)_ 1.82574313282728795e+01 +Electron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_electron_triton_profile149)_ 1.82561125680182137e+01 +Electron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_electron_triton_profile150)_ 1.82547834116094911e+01 +Electron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_electron_triton_profile151)_ 1.82534438259614014e+01 +Electron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_electron_triton_profile152)_ 1.82520937776773842e+01 +Electron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_electron_triton_profile153)_ 1.82507332330476615e+01 +Electron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_electron_triton_profile154)_ 1.82493621580472443e+01 +Electron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_electron_triton_profile155)_ 1.82479805183339145e+01 +Electron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_electron_triton_profile156)_ 1.82465882792462004e+01 +Electron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_electron_triton_profile157)_ 1.82451854058013332e+01 +Electron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_electron_triton_profile158)_ 1.82437718626931726e+01 +Electron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_electron_triton_profile159)_ 1.82423476142901357e+01 +Electron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_electron_triton_profile160)_ 1.82409126246330793e+01 +Electron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_electron_triton_profile161)_ 1.82394668574331789e+01 +Electron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_electron_triton_profile162)_ 1.82380102760698186e+01 +Electron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_electron_triton_profile163)_ 1.82365428435883885e+01 +Electron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_electron_triton_profile164)_ 1.82350645226981456e+01 +Electron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_electron_triton_profile165)_ 1.82335752757700043e+01 +Electron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_electron_triton_profile166)_ 1.82320750648343335e+01 +Electron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_electron_triton_profile167)_ 1.82305638515787116e+01 +Electron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_electron_triton_profile168)_ 1.82290415973456881e+01 +Electron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_electron_triton_profile169)_ 1.82275082631305203e+01 +Electron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_electron_triton_profile170)_ 1.82259638095788823e+01 +Electron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_electron_triton_profile171)_ 1.82244081969845517e+01 +Electron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_electron_triton_profile172)_ 1.82228413852871185e+01 +Electron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_electron_triton_profile173)_ 1.82212633340696186e+01 +Electron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_electron_triton_profile174)_ 1.82196740025561823e+01 +Electron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_electron_triton_profile175)_ 1.82180733496096643e+01 +Electron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_electron_triton_profile176)_ 1.82164613337292529e+01 +Electron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_electron_triton_profile177)_ 1.82148379130480613e+01 +Electron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_electron_triton_profile178)_ 1.82132030453306690e+01 +Electron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_electron_triton_profile179)_ 1.82115566879707345e+01 +Electron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_electron_triton_profile180)_ 1.82098987979884832e+01 +Electron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_electron_triton_profile181)_ 1.82082293320282425e+01 +Electron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_electron_triton_profile182)_ 1.82065482463559469e+01 +Electron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_electron_triton_profile183)_ 1.82048554968566272e+01 +Electron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_electron_triton_profile184)_ 1.82031510390318729e+01 +Electron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_electron_triton_profile185)_ 1.82014348279972857e+01 +Electron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_electron_triton_profile186)_ 1.81997068184799247e+01 +Electron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_electron_triton_profile187)_ 1.81979669648157021e+01 +Electron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_electron_triton_profile188)_ 1.81962152209468222e+01 +Electron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_electron_triton_profile189)_ 1.81944515404191307e+01 +Electron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_electron_triton_profile190)_ 1.81926758763795355e+01 +Electron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_electron_triton_profile191)_ 1.81908881815733068e+01 +Electron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_electron_triton_profile192)_ 1.81890884083414690e+01 +Electron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_electron_triton_profile193)_ 1.81872765086180941e+01 +Electron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_electron_triton_profile194)_ 1.81854524339276509e+01 +Electron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_electron_triton_profile195)_ 1.81836161353822519e+01 +Electron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_electron_triton_profile196)_ 1.81817675636789957e+01 +Electron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_electron_triton_profile197)_ 1.81799066690972033e+01 +Electron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_electron_triton_profile198)_ 1.81780334014956857e+01 +Electron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_electron_triton_profile199)_ 1.81761477103099978e+01 +Electron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_electron_triton_profile200)_ 1.81742495445496672e+01 +Electron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_electron_triton_profile201)_ 1.81723388527954199e+01 +Electron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_electron_triton_profile202)_ 1.81704155831963838e+01 +Electron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_electron_triton_profile203)_ 1.81684796834673037e+01 +Electron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_electron_triton_profile204)_ 1.81665311008857273e+01 +Electron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_electron_triton_profile205)_ 1.81645697822891812e+01 +Electron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_electron_triton_profile206)_ 1.81625956740723566e+01 +Electron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_electron_triton_profile207)_ 1.81606087221842536e+01 +Electron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_electron_triton_profile208)_ 1.81586088721253560e+01 +Electron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_electron_triton_profile209)_ 1.81565960689447827e+01 +Electron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_electron_triton_profile210)_ 1.81545702572374132e+01 +Electron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_electron_triton_profile211)_ 1.81525313811410349e+01 +Electron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_electron_triton_profile212)_ 1.81504793843334866e+01 +Electron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_electron_triton_profile213)_ 1.81484142100297667e+01 +Electron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_electron_triton_profile214)_ 1.81463358009791840e+01 +Electron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_electron_triton_profile215)_ 1.81442440994624548e+01 +Electron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_electron_triton_profile216)_ 1.81421390472888397e+01 +Electron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_electron_triton_profile217)_ 1.81400205857932733e+01 +Electron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_electron_triton_profile218)_ 1.81378886558334642e+01 +Electron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_electron_triton_profile219)_ 1.81357431977870469e+01 +Electron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_electron_triton_profile220)_ 1.81335841515486855e+01 +Electron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_electron_triton_profile221)_ 1.81314114565272142e+01 +Electron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_electron_triton_profile222)_ 1.81292250516427700e+01 +Electron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_electron_triton_profile223)_ 1.81270248753239542e+01 +Electron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_electron_triton_profile224)_ 1.81248108655049585e+01 +Electron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_electron_triton_profile225)_ 1.81225829596227221e+01 +Electron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_electron_triton_profile226)_ 1.81203410946141368e+01 +Electron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_electron_triton_profile227)_ 1.81180852069131966e+01 +Electron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_electron_triton_profile228)_ 1.81158152324481989e+01 +Electron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_electron_triton_profile229)_ 1.81135311066389697e+01 +Electron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_electron_triton_profile230)_ 1.81112327643940780e+01 +Electron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_electron_triton_profile231)_ 1.81089201401080899e+01 +Electron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_electron_triton_profile232)_ 1.81065931676588470e+01 +Electron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_electron_triton_profile233)_ 1.81042517804047094e+01 +Electron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_electron_triton_profile234)_ 1.81018959111819413e+01 +Electron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_electron_triton_profile235)_ 1.80995254923020070e+01 +Electron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_electron_triton_profile236)_ 1.80971404555489315e+01 +Electron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_electron_triton_profile237)_ 1.80947407321767422e+01 +Electron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_electron_triton_profile238)_ 1.80923262529068651e+01 +Electron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_electron_triton_profile239)_ 1.80898969479256131e+01 +Electron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_electron_triton_profile240)_ 1.80874527468816986e+01 +Electron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_electron_triton_profile241)_ 1.80849935788837612e+01 +Electron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_electron_triton_profile242)_ 1.80825193724979876e+01 +Electron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_electron_triton_profile243)_ 1.80800300557457270e+01 +Electron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_electron_triton_profile244)_ 1.80775255561011932e+01 +Electron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_electron_triton_profile245)_ 1.80750058004892011e+01 +Electron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_electron_triton_profile246)_ 1.80724707152829751e+01 +Electron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_electron_triton_profile247)_ 1.80699202263019885e+01 +Electron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_electron_triton_profile248)_ 1.80673542588099032e+01 +Electron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_electron_triton_profile249)_ 1.80647727375125271e+01 +Electron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_electron_triton_profile250)_ 1.80621755865558953e+01 +Electron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_electron_triton_profile251)_ 1.80595627295243943e+01 +Electron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_electron_triton_profile252)_ 1.80569340894389718e+01 +Electron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_electron_triton_profile253)_ 1.80542895887554025e+01 +Electron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_electron_triton_profile254)_ 1.80516291493627179e+01 +Electron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_electron_triton_profile255)_ 1.80489526925816151e+01 +Electron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_electron_triton_profile256)_ 1.80462601391630741e+01 +Electron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_electron_triton_profile257)_ 1.80435514092869731e+01 +Electron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_electron_triton_profile258)_ 1.80408264225609258e+01 +Electron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_electron_triton_profile259)_ 1.80380850980191028e+01 +Electron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_electron_triton_profile260)_ 1.80353273541212644e+01 +Electron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_electron_triton_profile261)_ 1.80325531087518875e+01 +Electron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_electron_triton_profile262)_ 1.80297622792194154e+01 +Electron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_electron_triton_profile263)_ 1.80269547822556397e+01 +Electron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_electron_triton_profile264)_ 1.80241305340152458e+01 +Electron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_electron_triton_profile265)_ 1.80212894500754821e+01 +Electron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_electron_triton_profile266)_ 1.80184314454360042e+01 +Electron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_electron_triton_profile267)_ 1.80155564345188637e+01 +Electron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_electron_triton_profile268)_ 1.80126643311687005e+01 +Electron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_electron_triton_profile269)_ 1.80097550486530658e+01 +Electron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_electron_triton_profile270)_ 1.80068284996629799e+01 +Electron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_electron_triton_profile271)_ 1.80038845963136431e+01 +Electron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_electron_triton_profile272)_ 1.80009232501454051e+01 +Electron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_electron_triton_profile273)_ 1.79979443721248735e+01 +Electron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_electron_triton_profile274)_ 1.79949478726463106e+01 +Electron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_electron_triton_profile275)_ 1.79919336615332526e+01 +Electron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_electron_triton_profile276)_ 1.79889016480403292e+01 +Electron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_electron_triton_profile277)_ 1.79858517408553915e+01 +Electron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_electron_triton_profile278)_ 1.79827838481018780e+01 +Electron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_electron_triton_profile279)_ 1.79796978773414544e+01 +Electron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_electron_triton_profile280)_ 1.79765937355769552e+01 +Electron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_electron_triton_profile281)_ 1.79734713292556449e+01 +Electron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_electron_triton_profile282)_ 1.79703305642727358e+01 +Electron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_electron_triton_profile283)_ 1.79671713459753022e+01 +Electron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_electron_triton_profile284)_ 1.79639935791664946e+01 +Electron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_electron_triton_profile285)_ 1.79607971681101368e+01 +Electron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_electron_triton_profile286)_ 1.79575820165356745e+01 +Electron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_electron_triton_profile287)_ 1.79543480276435190e+01 +Electron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_electron_triton_profile288)_ 1.79510951041108200e+01 +Electron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_electron_triton_profile289)_ 1.79478231480976262e+01 +Electron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_electron_triton_profile290)_ 1.79445320612535149e+01 +Electron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_electron_triton_profile291)_ 1.79412217447246682e+01 +Electron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_electron_triton_profile292)_ 1.79378920991614059e+01 +Electron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_electron_triton_profile293)_ 1.79345430247262918e+01 +Electron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_electron_triton_profile294)_ 1.79311744211026642e+01 +Electron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_electron_triton_profile295)_ 1.79277861875037665e+01 +Electron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_electron_triton_profile296)_ 1.79243782226824422e+01 +Electron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_electron_triton_profile297)_ 1.79209504249413989e+01 +Electron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_electron_triton_profile298)_ 1.79175026921440903e+01 +Electron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_electron_triton_profile299)_ 1.79140349217262340e+01 +Electron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_electron_triton_profile300)_ 1.79105470107080080e+01 +Electron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_electron_triton_profile301)_ 1.79070388557069258e+01 +Electron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_electron_triton_profile302)_ 1.79035103529514359e+01 +Electron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_electron_triton_profile303)_ 1.78999613982952788e+01 +Electron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_electron_triton_profile304)_ 1.78963918872326033e+01 +Electron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_electron_triton_profile305)_ 1.78928017149139507e+01 +Electron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_electron_triton_profile306)_ 1.78891907761630087e+01 +Electron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_electron_triton_profile307)_ 1.78855589654943188e+01 +Electron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_electron_triton_profile308)_ 1.78819061771318601e+01 +Electron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_electron_triton_profile309)_ 1.78782323050286323e+01 +Electron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_electron_triton_profile310)_ 1.78745372428871683e+01 +Electron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_electron_triton_profile311)_ 1.78708208841811746e+01 +Electron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_electron_triton_profile312)_ 1.78670831221781654e+01 +Electron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_electron_triton_profile313)_ 1.78633238499632725e+01 +Electron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_electron_triton_profile314)_ 1.78595429604642320e+01 +Electron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_electron_triton_profile315)_ 1.78557403464775639e+01 +Electron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_electron_triton_profile316)_ 1.78519159006960244e+01 +Electron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_electron_triton_profile317)_ 1.78480695157374143e+01 +Electron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_electron_triton_profile318)_ 1.78442010841747063e+01 +Electron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_electron_triton_profile319)_ 1.78403104985676855e+01 +Electron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_electron_triton_profile320)_ 1.78363976514960036e+01 +Electron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_electron_triton_profile321)_ 1.78324624355938290e+01 +Electron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_electron_triton_profile322)_ 1.78285047435861337e+01 +Electron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_electron_triton_profile323)_ 1.78245244683266009e+01 +Electron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_electron_triton_profile324)_ 1.78205215028373765e+01 +Electron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_electron_triton_profile325)_ 1.78164957403505682e+01 +Electron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_electron_triton_profile326)_ 1.78124470743516774e+01 +Electron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_electron_triton_profile327)_ 1.78083753986250493e+01 +Electron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_electron_triton_profile328)_ 1.78042806073013260e+01 +Electron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_electron_triton_profile329)_ 1.78001625949070892e+01 +Electron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_electron_triton_profile330)_ 1.77960212564167257e+01 +Electron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_electron_triton_profile331)_ 1.77918564873066387e+01 +Electron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_electron_triton_profile332)_ 1.77876681836118671e+01 +Electron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_electron_triton_profile333)_ 1.77834562419852595e+01 +Electron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_electron_triton_profile334)_ 1.77792205597592456e+01 +Electron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_electron_triton_profile335)_ 1.77749610350104028e+01 +Electron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_electron_triton_profile336)_ 1.77706775666268371e+01 +Electron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_electron_triton_profile337)_ 1.77663700543785730e+01 +Electron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_electron_triton_profile338)_ 1.77620383989910167e+01 +Electron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_electron_triton_profile339)_ 1.77576825022216802e+01 +Electron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_electron_triton_profile340)_ 1.77533022669402563e+01 +Electron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_electron_triton_profile341)_ 1.77488975972122205e+01 +Electron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_electron_triton_profile342)_ 1.77444683983860614e+01 +Electron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_electron_triton_profile343)_ 1.77400145771843576e+01 +Electron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_electron_triton_profile344)_ 1.77355360417987917e+01 +Electron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_electron_triton_profile345)_ 1.77310327019893279e+01 +Electron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_electron_triton_profile346)_ 1.77265044691876987e+01 +Electron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_electron_triton_profile347)_ 1.77219512566053936e+01 +Electron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_electron_triton_profile348)_ 1.77173729793462975e+01 +Electron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_electron_triton_profile349)_ 1.77127695545242965e+01 +Electron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_electron_triton_profile350)_ 1.77081409013858995e+01 +Electron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_electron_triton_profile351)_ 1.77034869414381859e+01 +Electron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_electron_triton_profile352)_ 1.76988075985823805e+01 +Electron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_electron_triton_profile353)_ 1.76941027992530522e+01 +Electron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_electron_triton_profile354)_ 1.76893724725634911e+01 +Electron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_electron_triton_profile355)_ 1.76846165504572603e+01 +Electron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_electron_triton_profile356)_ 1.76798349678663556e+01 +Electron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_electron_triton_profile357)_ 1.76750276628761966e+01 +Electron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_electron_triton_profile358)_ 1.76701945768977460e+01 +Electron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_electron_triton_profile359)_ 1.76653356548470555e+01 +Electron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_electron_triton_profile360)_ 1.76604508453326297e+01 +Electron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_electron_triton_profile361)_ 1.76555401008508142e+01 +Electron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_electron_triton_profile362)_ 1.76506033779897429e+01 +Electron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_electron_triton_profile363)_ 1.76456406376420034e+01 +Electron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_electron_triton_profile364)_ 1.76406518452266425e+01 +Electron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_electron_triton_profile365)_ 1.76356369709206540e+01 +Electron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_electron_triton_profile366)_ 1.76305959899006837e+01 +Electron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_electron_triton_profile367)_ 1.76255288825950274e+01 +Electron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_electron_triton_profile368)_ 1.76204356349467730e+01 +Electron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_electron_triton_profile369)_ 1.76153162386882727e+01 +Electron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_electron_triton_profile370)_ 1.76101706916275944e+01 +Electron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_electron_triton_profile371)_ 1.76049989979474937e+01 +Electron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_electron_triton_profile372)_ 1.75998011685173985e+01 +Electron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_electron_triton_profile373)_ 1.75945772212190690e+01 +Electron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_electron_triton_profile374)_ 1.75893271812864711e+01 +Electron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_electron_triton_profile375)_ 1.75840510816605864e+01 +Electron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_electron_triton_profile376)_ 1.75787489633598106e+01 +Electron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_electron_triton_profile377)_ 1.75734208758665709e+01 +Electron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_electron_triton_profile378)_ 1.75680668775310878e+01 +Electron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_electron_triton_profile379)_ 1.75626870359928837e+01 +Electron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_electron_triton_profile380)_ 1.75572814286209287e+01 +Electron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_electron_triton_profile381)_ 1.75518501429733540e+01 +Electron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_electron_triton_profile382)_ 1.75463932772775273e+01 +Electron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_electron_triton_profile383)_ 1.75409109409315533e+01 +Electron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_electron_triton_profile384)_ 1.75354032550280508e+01 +Electron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_electron_triton_profile385)_ 1.75298703529014901e+01 +Electron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_electron_triton_profile386)_ 1.75243123806999535e+01 +Electron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_electron_triton_profile387)_ 1.75187294979827080e+01 +Electron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_electron_triton_profile388)_ 1.75131218783445988e+01 +Electron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_electron_triton_profile389)_ 1.75074897100688034e+01 +Electron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_electron_triton_profile390)_ 1.75018331968091232e+01 +Electron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_electron_triton_profile391)_ 1.74961525583033044e+01 +Electron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_electron_triton_profile392)_ 1.74904480311189801e+01 +Electron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_electron_triton_profile393)_ 1.74847198694337145e+01 +Electron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_electron_triton_profile394)_ 1.74789683458510012e+01 +Electron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_electron_triton_profile395)_ 1.74731937522537955e+01 +Electron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_electron_triton_profile396)_ 1.74673964006977371e+01 +Electron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_electron_triton_profile397)_ 1.74615766243457990e+01 +Electron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_electron_triton_profile398)_ 1.74557347784466970e+01 +Electron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_electron_triton_profile399)_ 1.74498712413591548e+01 +Electron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_electron_triton_profile400)_ 1.74439864156245363e+01 +Electron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_electron_triton_profile401)_ 1.74380807290903057e+01 +Electron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_electron_triton_profile402)_ 1.74321546360869668e+01 +Electron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_electron_triton_profile403)_ 1.74262086186613985e+01 +Electron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_electron_triton_profile404)_ 1.74202431878696800e+01 +Electron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_electron_triton_profile405)_ 1.74142588851324831e+01 +Electron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_electron_triton_profile406)_ 1.74082562836566375e+01 +Electron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_electron_triton_profile407)_ 1.74022359899264991e+01 +Electron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_electron_triton_profile408)_ 1.73961986452690702e+01 +Electron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_electron_triton_profile409)_ 1.73901449274970581e+01 +Electron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_electron_triton_profile410)_ 1.73840755526344601e+01 +Electron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_electron_triton_profile411)_ 1.73779912767295563e+01 +Electron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_electron_triton_profile412)_ 1.73718928977603859e+01 +Electron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_electron_triton_profile413)_ 1.73657812576384316e+01 +Electron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_electron_triton_profile414)_ 1.73596572443166828e+01 +Electron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_electron_triton_profile415)_ 1.73535217940084152e+01 +Electron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_electron_triton_profile416)_ 1.73473758935238394e+01 +Electron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_electron_triton_profile417)_ 1.73412205827325501e+01 +Electron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_electron_triton_profile418)_ 1.73350569571597219e+01 +Electron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_electron_triton_profile419)_ 1.73288861707255677e+01 +Electron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_electron_triton_profile420)_ 1.73227094386376876e+01 +Electron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_electron_triton_profile421)_ 1.73165280404475119e+01 +Electron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_electron_triton_profile422)_ 1.73103433232823853e+01 +Electron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_electron_triton_profile423)_ 1.73041567052668555e+01 +Electron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_electron_triton_profile424)_ 1.72979696791473927e+01 +Electron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_electron_triton_profile425)_ 1.72917838161365900e+01 +Electron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_electron_triton_profile426)_ 1.72856007699947583e+01 +Electron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_electron_triton_profile427)_ 1.72794222813686176e+01 +Electron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_electron_triton_profile428)_ 1.72732501824092246e+01 +Electron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_electron_triton_profile429)_ 1.72670864016939056e+01 +Electron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_electron_triton_profile430)_ 1.72609329694799989e+01 +Electron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_electron_triton_profile431)_ 1.72547920233218726e+01 +Electron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_electron_triton_profile432)_ 1.72486658140867739e+01 +Electron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_electron_triton_profile433)_ 1.72425567124099750e+01 +Electron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_electron_triton_profile434)_ 1.72364672156353791e+01 +Electron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_electron_triton_profile435)_ 1.72303999552944909e+01 +Electron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_electron_triton_profile436)_ 1.72243577051848256e+01 +Electron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_electron_triton_profile437)_ 1.72183433901181751e+01 +Electron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_electron_triton_profile438)_ 1.72123600954207525e+01 +Electron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_electron_triton_profile439)_ 1.72064110772809151e+01 +Electron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_electron_triton_profile440)_ 1.72004997740569046e+01 +Electron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_electron_triton_profile441)_ 1.71946298186773348e+01 +Electron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_electron_triton_profile442)_ 1.71888050522920182e+01 +Electron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_electron_triton_profile443)_ 1.71830295393613177e+01 +Electron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_electron_triton_profile444)_ 1.71773075844104071e+01 +Electron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_electron_triton_profile445)_ 1.71716437507223034e+01 +Electron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_electron_triton_profile446)_ 1.71660428813035928e+01 +Electron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_electron_triton_profile447)_ 1.71605101225329655e+01 +Electron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_electron_triton_profile448)_ 1.71550509510007814e+01 +Electron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_electron_triton_profile449)_ 1.71496712041740267e+01 +Electron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_electron_triton_profile450)_ 1.71443771156878313e+01 +Electron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_electron_triton_profile451)_ 1.71391753562837330e+01 +Electron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_electron_triton_profile452)_ 1.71340730817102838e+01 +Electron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_electron_triton_profile453)_ 1.71290779893026794e+01 +Electron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_electron_triton_profile454)_ 1.71241983855117361e+01 +Electron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_electron_triton_profile455)_ 1.71194432674316666e+01 +Electron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_electron_triton_profile456)_ 1.71148224224899970e+01 +Electron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_electron_triton_profile457)_ 1.71103465520927713e+01 +Electron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_electron_triton_profile458)_ 1.71060274274591748e+01 +Electron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_electron_triton_profile459)_ 1.71018780896356652e+01 +Electron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_electron_triton_profile460)_ 1.70979131116445622e+01 +Electron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_electron_triton_profile461)_ 1.70941489505425039e+01 +Electron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_electron_triton_profile462)_ 1.70906044340401344e+01 +Electron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_electron_triton_profile463)_ 1.70873014568521278e+01 +Electron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_electron_triton_profile464)_ 1.70842660206765764e+01 +Electron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_electron_triton_profile465)_ 1.70815298738709096e+01 +Electron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_electron_triton_profile466)_ 1.70791332878990296e+01 +Electron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_electron_triton_profile467)_ 1.70771302484066041e+01 +Electron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_electron_triton_profile468)_ 1.70755997220459896e+01 +Electron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_electron_triton_profile469)_ 1.70746773813624770e+01 +Electron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_electron_triton_profile470)_ 1.70747502109636784e+01 +Electron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_electron_triton_profile471)_ 1.70486466135479908e+01 +Electron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_electron_triton_profile472)_ 1.70214945312015438e+01 +Electron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_electron_triton_profile473)_ 1.69932150372211161e+01 +Electron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_electron_triton_profile474)_ 1.69637202631762278e+01 +Electron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_electron_triton_profile475)_ 1.69329120140835911e+01 +Electron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_electron_triton_profile476)_ 1.69006801061552530e+01 +Electron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_electron_triton_profile477)_ 1.68669003577792793e+01 +Electron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_electron_triton_profile478)_ 1.68314321433064578e+01 +Electron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_electron_triton_profile479)_ 1.67941153904720686e+01 +Electron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_electron_triton_profile480)_ 1.67547668625983199e+01 +Electron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_electron_triton_profile481)_ 1.67131755111842075e+01 +Electron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_electron_triton_profile482)_ 1.66690966055912320e+01 +Electron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_electron_triton_profile483)_ 1.66222442326079012e+01 +Electron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_electron_triton_profile484)_ 1.65722815911969157e+01 +Electron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_electron_triton_profile485)_ 1.65188082565982697e+01 +Electron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_electron_triton_profile486)_ 1.64613432030295179e+01 +Electron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_electron_triton_profile487)_ 1.63993017695324355e+01 +Electron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_electron_triton_profile488)_ 1.63319637770053099e+01 +Electron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_electron_triton_profile489)_ 1.62584283773535923e+01 +Electron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_electron_triton_profile490)_ 1.61775484057024279e+01 +Electron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_electron_triton_profile491)_ 1.60878319487431973e+01 +Electron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_electron_triton_profile492)_ 1.59872892865482203e+01 +Electron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_electron_triton_profile493)_ 1.58731842425724743e+01 +Electron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_electron_triton_profile494)_ 1.57416079502087811e+01 +Electron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_electron_triton_profile495)_ 1.55866970987278659e+01 +Electron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_electron_triton_profile496)_ 1.53990682142247923e+01 +Electron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_electron_triton_profile497)_ 1.51622819936516162e+01 +Electron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_electron_triton_profile498)_ 1.48433281843819511e+01 +Electron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_electron_triton_profile499)_ 1.43584278345859637e+01 +Electron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_electron_triton_profile500)_ 1.33406050796768145e+01 +Volume_averaged_deuteron-triton_Coulomb_log_(Λ_DT)_______________________ (plasma_coulomb_log_deuteron_triton_vol_avg)_ 2.05216078166018576e+01 OP +Deuteron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_deuteron_triton_profile0)_ 2.14780102943463120e+01 +Deuteron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_deuteron_triton_profile1)_ 2.14780034230345791e+01 +Deuteron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_deuteron_triton_profile2)_ 2.14779828089533495e+01 +Deuteron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_deuteron_triton_profile3)_ 2.14779484516906543e+01 +Deuteron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_deuteron_triton_profile4)_ 2.14779003505566699e+01 +Deuteron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_deuteron_triton_profile5)_ 2.14778385045789371e+01 +Deuteron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_deuteron_triton_profile6)_ 2.14777629125569405e+01 +Deuteron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_deuteron_triton_profile7)_ 2.14776735729622175e+01 +Deuteron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_deuteron_triton_profile8)_ 2.14775704840071811e+01 +Deuteron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_deuteron_triton_profile9)_ 2.14774536436259780e+01 +Deuteron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_deuteron_triton_profile10)_ 2.14773230494909981e+01 +Deuteron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_deuteron_triton_profile11)_ 2.14771786990008273e+01 +Deuteron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_deuteron_triton_profile12)_ 2.14770205892491681e+01 +Deuteron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_deuteron_triton_profile13)_ 2.14768487170983562e+01 +Deuteron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_deuteron_triton_profile14)_ 2.14766630790959177e+01 +Deuteron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_deuteron_triton_profile15)_ 2.14764636715409267e+01 +Deuteron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_deuteron_triton_profile16)_ 2.14762504904314326e+01 +Deuteron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_deuteron_triton_profile17)_ 2.14760235315117676e+01 +Deuteron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_deuteron_triton_profile18)_ 2.14757827902460932e+01 +Deuteron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_deuteron_triton_profile19)_ 2.14755282618133414e+01 +Deuteron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_deuteron_triton_profile20)_ 2.14752599410925740e+01 +Deuteron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_deuteron_triton_profile21)_ 2.14749778227626820e+01 +Deuteron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_deuteron_triton_profile22)_ 2.14746819011329357e+01 +Deuteron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_deuteron_triton_profile23)_ 2.14743721702974035e+01 +Deuteron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_deuteron_triton_profile24)_ 2.14740486240392876e+01 +Deuteron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_deuteron_triton_profile25)_ 2.14737112558781469e+01 +Deuteron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_deuteron_triton_profile26)_ 2.14733600590527764e+01 +Deuteron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_deuteron_triton_profile27)_ 2.14729950265183902e+01 +Deuteron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_deuteron_triton_profile28)_ 2.14726161509652052e+01 +Deuteron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_deuteron_triton_profile29)_ 2.14722234247774075e+01 +Deuteron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_deuteron_triton_profile30)_ 2.14718168400708045e+01 +Deuteron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_deuteron_triton_profile31)_ 2.14713963886851289e+01 +Deuteron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_deuteron_triton_profile32)_ 2.14709620621739710e+01 +Deuteron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_deuteron_triton_profile33)_ 2.14705138518185095e+01 +Deuteron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_deuteron_triton_profile34)_ 2.14700517486006710e+01 +Deuteron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_deuteron_triton_profile35)_ 2.14695757432311645e+01 +Deuteron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_deuteron_triton_profile36)_ 2.14690858261464967e+01 +Deuteron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_deuteron_triton_profile37)_ 2.14685819874676724e+01 +Deuteron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_deuteron_triton_profile38)_ 2.14680642170712552e+01 +Deuteron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_deuteron_triton_profile39)_ 2.14675325045097587e+01 +Deuteron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_deuteron_triton_profile40)_ 2.14669868390707528e+01 +Deuteron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_deuteron_triton_profile41)_ 2.14664272097617932e+01 +Deuteron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_deuteron_triton_profile42)_ 2.14658536052881068e+01 +Deuteron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_deuteron_triton_profile43)_ 2.14652660140877956e+01 +Deuteron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_deuteron_triton_profile44)_ 2.14646644242758882e+01 +Deuteron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_deuteron_triton_profile45)_ 2.14640488237322877e+01 +Deuteron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_deuteron_triton_profile46)_ 2.14634191999785706e+01 +Deuteron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_deuteron_triton_profile47)_ 2.14627755403091740e+01 +Deuteron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_deuteron_triton_profile48)_ 2.14621178316872623e+01 +Deuteron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_deuteron_triton_profile49)_ 2.14614460608183570e+01 +Deuteron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_deuteron_triton_profile50)_ 2.14607602140724509e+01 +Deuteron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_deuteron_triton_profile51)_ 2.14600602775745273e+01 +Deuteron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_deuteron_triton_profile52)_ 2.14593462371025190e+01 +Deuteron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_deuteron_triton_profile53)_ 2.14586180781922735e+01 +Deuteron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_deuteron_triton_profile54)_ 2.14578757860498932e+01 +Deuteron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_deuteron_triton_profile55)_ 2.14571193455988762e+01 +Deuteron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_deuteron_triton_profile56)_ 2.14563487414598271e+01 +Deuteron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_deuteron_triton_profile57)_ 2.14555639579590505e+01 +Deuteron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_deuteron_triton_profile58)_ 2.14547649791299122e+01 +Deuteron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_deuteron_triton_profile59)_ 2.14539517886657904e+01 +Deuteron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_deuteron_triton_profile60)_ 2.14531243700447476e+01 +Deuteron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_deuteron_triton_profile61)_ 2.14522827063517845e+01 +Deuteron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_deuteron_triton_profile62)_ 2.14514267804277345e+01 +Deuteron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_deuteron_triton_profile63)_ 2.14505565747663596e+01 +Deuteron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_deuteron_triton_profile64)_ 2.14496720716174032e+01 +Deuteron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_deuteron_triton_profile65)_ 2.14487732528543980e+01 +Deuteron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_deuteron_triton_profile66)_ 2.14478601000922957e+01 +Deuteron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_deuteron_triton_profile67)_ 2.14469325946182501e+01 +Deuteron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_deuteron_triton_profile68)_ 2.14459907174292219e+01 +Deuteron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_deuteron_triton_profile69)_ 2.14450344491966156e+01 +Deuteron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_deuteron_triton_profile70)_ 2.14440637702746564e+01 +Deuteron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_deuteron_triton_profile71)_ 2.14430786607136490e+01 +Deuteron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_deuteron_triton_profile72)_ 2.14420791002708349e+01 +Deuteron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_deuteron_triton_profile73)_ 2.14410650683602029e+01 +Deuteron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_deuteron_triton_profile74)_ 2.14400365440827478e+01 +Deuteron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_deuteron_triton_profile75)_ 2.14389935062299344e+01 +Deuteron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_deuteron_triton_profile76)_ 2.14379359332993893e+01 +Deuteron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_deuteron_triton_profile77)_ 2.14368638034175376e+01 +Deuteron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_deuteron_triton_profile78)_ 2.14357770944506996e+01 +Deuteron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_deuteron_triton_profile79)_ 2.14346757838712492e+01 +Deuteron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_deuteron_triton_profile80)_ 2.14335598489129922e+01 +Deuteron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_deuteron_triton_profile81)_ 2.14324292664150100e+01 +Deuteron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_deuteron_triton_profile82)_ 2.14312840129280424e+01 +Deuteron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_deuteron_triton_profile83)_ 2.14301240646686857e+01 +Deuteron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_deuteron_triton_profile84)_ 2.14289493975029046e+01 +Deuteron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_deuteron_triton_profile85)_ 2.14277599870182733e+01 +Deuteron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_deuteron_triton_profile86)_ 2.14265558084212451e+01 +Deuteron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_deuteron_triton_profile87)_ 2.14253368366167720e+01 +Deuteron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_deuteron_triton_profile88)_ 2.14241030461522364e+01 +Deuteron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_deuteron_triton_profile89)_ 2.14228544112477941e+01 +Deuteron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_deuteron_triton_profile90)_ 2.14215909057970428e+01 +Deuteron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_deuteron_triton_profile91)_ 2.14203125033628012e+01 +Deuteron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_deuteron_triton_profile92)_ 2.14190191771528937e+01 +Deuteron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_deuteron_triton_profile93)_ 2.14177109000082631e+01 +Deuteron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_deuteron_triton_profile94)_ 2.14163876444781138e+01 +Deuteron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_deuteron_triton_profile95)_ 2.14150493827409605e+01 +Deuteron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_deuteron_triton_profile96)_ 2.14136960866300008e+01 +Deuteron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_deuteron_triton_profile97)_ 2.14123277276336061e+01 +Deuteron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_deuteron_triton_profile98)_ 2.14109442768758491e+01 +Deuteron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_deuteron_triton_profile99)_ 2.14095457051644082e+01 +Deuteron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_deuteron_triton_profile100)_ 2.14081319829085466e+01 +Deuteron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_deuteron_triton_profile101)_ 2.14067030802245810e+01 +Deuteron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_deuteron_triton_profile102)_ 2.14052589668035722e+01 +Deuteron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_deuteron_triton_profile103)_ 2.14037996120218850e+01 +Deuteron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_deuteron_triton_profile104)_ 2.14023249848989856e+01 +Deuteron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_deuteron_triton_profile105)_ 2.14008350540600070e+01 +Deuteron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_deuteron_triton_profile106)_ 2.13993297877988802e+01 +Deuteron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_deuteron_triton_profile107)_ 2.13978091540283053e+01 +Deuteron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_deuteron_triton_profile108)_ 2.13962731203001049e+01 +Deuteron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_deuteron_triton_profile109)_ 2.13947216537928178e+01 +Deuteron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_deuteron_triton_profile110)_ 2.13931547213194797e+01 +Deuteron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_deuteron_triton_profile111)_ 2.13915722893100479e+01 +Deuteron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_deuteron_triton_profile112)_ 2.13899743238444913e+01 +Deuteron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_deuteron_triton_profile113)_ 2.13883607905843967e+01 +Deuteron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_deuteron_triton_profile114)_ 2.13867316548669919e+01 +Deuteron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_deuteron_triton_profile115)_ 2.13850868816061350e+01 +Deuteron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_deuteron_triton_profile116)_ 2.13834264353328969e+01 +Deuteron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_deuteron_triton_profile117)_ 2.13817502802288040e+01 +Deuteron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_deuteron_triton_profile118)_ 2.13800583800543755e+01 +Deuteron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_deuteron_triton_profile119)_ 2.13783506982052316e+01 +Deuteron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_deuteron_triton_profile120)_ 2.13766271976659858e+01 +Deuteron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_deuteron_triton_profile121)_ 2.13748878410254228e+01 +Deuteron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_deuteron_triton_profile122)_ 2.13731325905329363e+01 +Deuteron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_deuteron_triton_profile123)_ 2.13713614079339074e+01 +Deuteron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_deuteron_triton_profile124)_ 2.13695742546879970e+01 +Deuteron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_deuteron_triton_profile125)_ 2.13677710917760457e+01 +Deuteron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_deuteron_triton_profile126)_ 2.13659518797923731e+01 +Deuteron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_deuteron_triton_profile127)_ 2.13641165789498082e+01 +Deuteron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_deuteron_triton_profile128)_ 2.13622651490251094e+01 +Deuteron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_deuteron_triton_profile129)_ 2.13603975493844160e+01 +Deuteron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_deuteron_triton_profile130)_ 2.13585137390036657e+01 +Deuteron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_deuteron_triton_profile131)_ 2.13566136764345558e+01 +Deuteron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_deuteron_triton_profile132)_ 2.13546973197779479e+01 +Deuteron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_deuteron_triton_profile133)_ 2.13527646267432800e+01 +Deuteron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_deuteron_triton_profile134)_ 2.13508155546273493e+01 +Deuteron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_deuteron_triton_profile135)_ 2.13488500602719888e+01 +Deuteron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_deuteron_triton_profile136)_ 2.13468681000947882e+01 +Deuteron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_deuteron_triton_profile137)_ 2.13448696301200691e+01 +Deuteron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_deuteron_triton_profile138)_ 2.13428546058996318e+01 +Deuteron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_deuteron_triton_profile139)_ 2.13408229825250189e+01 +Deuteron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_deuteron_triton_profile140)_ 2.13387747147322102e+01 +Deuteron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_deuteron_triton_profile141)_ 2.13367097567376938e+01 +Deuteron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_deuteron_triton_profile142)_ 2.13346280623430324e+01 +Deuteron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_deuteron_triton_profile143)_ 2.13325295849051635e+01 +Deuteron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_deuteron_triton_profile144)_ 2.13304142773409282e+01 +Deuteron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_deuteron_triton_profile145)_ 2.13282820920784424e+01 +Deuteron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_deuteron_triton_profile146)_ 2.13261329811199118e+01 +Deuteron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_deuteron_triton_profile147)_ 2.13239668960276134e+01 +Deuteron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_deuteron_triton_profile148)_ 2.13217837878375889e+01 +Deuteron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_deuteron_triton_profile149)_ 2.13195836072000660e+01 +Deuteron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_deuteron_triton_profile150)_ 2.13173663042235617e+01 +Deuteron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_deuteron_triton_profile151)_ 2.13151318286263560e+01 +Deuteron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_deuteron_triton_profile152)_ 2.13128801295746442e+01 +Deuteron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_deuteron_triton_profile153)_ 2.13106111558155646e+01 +Deuteron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_deuteron_triton_profile154)_ 2.13083248555955471e+01 +Deuteron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_deuteron_triton_profile155)_ 2.13060211766805914e+01 +Deuteron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_deuteron_triton_profile156)_ 2.13037000663551055e+01 +Deuteron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_deuteron_triton_profile157)_ 2.13013614713962731e+01 +Deuteron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_deuteron_triton_profile158)_ 2.12990053381270030e+01 +Deuteron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_deuteron_triton_profile159)_ 2.12966316123577499e+01 +Deuteron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_deuteron_triton_profile160)_ 2.12942402394041430e+01 +Deuteron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_deuteron_triton_profile161)_ 2.12918311640336704e+01 +Deuteron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_deuteron_triton_profile162)_ 2.12894043306117737e+01 +Deuteron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_deuteron_triton_profile163)_ 2.12869596829065060e+01 +Deuteron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_deuteron_triton_profile164)_ 2.12844971642181910e+01 +Deuteron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_deuteron_triton_profile165)_ 2.12820167173204737e+01 +Deuteron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_deuteron_triton_profile166)_ 2.12795182844724451e+01 +Deuteron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_deuteron_triton_profile167)_ 2.12770018074060303e+01 +Deuteron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_deuteron_triton_profile168)_ 2.12744672273492519e+01 +Deuteron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_deuteron_triton_profile169)_ 2.12719144849803428e+01 +Deuteron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_deuteron_triton_profile170)_ 2.12693435204592269e+01 +Deuteron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_deuteron_triton_profile171)_ 2.12667542734008350e+01 +Deuteron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_deuteron_triton_profile172)_ 2.12641466829151113e+01 +Deuteron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_deuteron_triton_profile173)_ 2.12615206875104370e+01 +Deuteron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_deuteron_triton_profile174)_ 2.12588762252229202e+01 +Deuteron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_deuteron_triton_profile175)_ 2.12562132334664220e+01 +Deuteron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_deuteron_triton_profile176)_ 2.12535316491537110e+01 +Deuteron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_deuteron_triton_profile177)_ 2.12508314086527363e+01 +Deuteron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_deuteron_triton_profile178)_ 2.12481124476943499e+01 +Deuteron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_deuteron_triton_profile179)_ 2.12453747015563437e+01 +Deuteron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_deuteron_triton_profile180)_ 2.12426181048554348e+01 +Deuteron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_deuteron_triton_profile181)_ 2.12398425916920139e+01 +Deuteron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_deuteron_triton_profile182)_ 2.12370480955460224e+01 +Deuteron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_deuteron_triton_profile183)_ 2.12342345493828013e+01 +Deuteron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_deuteron_triton_profile184)_ 2.12314018855456794e+01 +Deuteron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_deuteron_triton_profile185)_ 2.12285500357819821e+01 +Deuteron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_deuteron_triton_profile186)_ 2.12256789312780150e+01 +Deuteron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_deuteron_triton_profile187)_ 2.12227885026138310e+01 +Deuteron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_deuteron_triton_profile188)_ 2.12198786797549879e+01 +Deuteron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_deuteron_triton_profile189)_ 2.12169493920962537e+01 +Deuteron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_deuteron_triton_profile190)_ 2.12140005684102135e+01 +Deuteron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_deuteron_triton_profile191)_ 2.12110321368707879e+01 +Deuteron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_deuteron_triton_profile192)_ 2.12080440250071689e+01 +Deuteron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_deuteron_triton_profile193)_ 2.12050361597768102e+01 +Deuteron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_deuteron_triton_profile194)_ 2.12020084674902307e+01 +Deuteron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_deuteron_triton_profile195)_ 2.11989608738286677e+01 +Deuteron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_deuteron_triton_profile196)_ 2.11958933038501698e+01 +Deuteron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_deuteron_triton_profile197)_ 2.11928056819929047e+01 +Deuteron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_deuteron_triton_profile198)_ 2.11896979320135550e+01 +Deuteron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_deuteron_triton_profile199)_ 2.11865699770787366e+01 +Deuteron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_deuteron_triton_profile200)_ 2.11834217396827569e+01 +Deuteron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_deuteron_triton_profile201)_ 2.11802531416860873e+01 +Deuteron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_deuteron_triton_profile202)_ 2.11770641042531302e+01 +Deuteron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_deuteron_triton_profile203)_ 2.11738545479294622e+01 +Deuteron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_deuteron_triton_profile204)_ 2.11706243925795157e+01 +Deuteron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_deuteron_triton_profile205)_ 2.11673735574164255e+01 +Deuteron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_deuteron_triton_profile206)_ 2.11641019609631158e+01 +Deuteron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_deuteron_triton_profile207)_ 2.11608095210671614e+01 +Deuteron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_deuteron_triton_profile208)_ 2.11574961549249529e+01 +Deuteron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_deuteron_triton_profile209)_ 2.11541617790062126e+01 +Deuteron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_deuteron_triton_profile210)_ 2.11508063091324203e+01 +Deuteron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_deuteron_triton_profile211)_ 2.11474296603614249e+01 +Deuteron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_deuteron_triton_profile212)_ 2.11440317471605717e+01 +Deuteron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_deuteron_triton_profile213)_ 2.11406124831996678e+01 +Deuteron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_deuteron_triton_profile214)_ 2.11371717814908209e+01 +Deuteron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_deuteron_triton_profile215)_ 2.11337095543304159e+01 +Deuteron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_deuteron_triton_profile216)_ 2.11302257132895832e+01 +Deuteron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_deuteron_triton_profile217)_ 2.11267201692107491e+01 +Deuteron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_deuteron_triton_profile218)_ 2.11231928322290088e+01 +Deuteron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_deuteron_triton_profile219)_ 2.11196436117596527e+01 +Deuteron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_deuteron_triton_profile220)_ 2.11160724164668139e+01 +Deuteron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_deuteron_triton_profile221)_ 2.11124791542879748e+01 +Deuteron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_deuteron_triton_profile222)_ 2.11088637324055881e+01 +Deuteron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_deuteron_triton_profile223)_ 2.11052260572623176e+01 +Deuteron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_deuteron_triton_profile224)_ 2.11015660345797293e+01 +Deuteron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_deuteron_triton_profile225)_ 2.10978835692666777e+01 +Deuteron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_deuteron_triton_profile226)_ 2.10941785655386695e+01 +Deuteron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_deuteron_triton_profile227)_ 2.10904509267912488e+01 +Deuteron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_deuteron_triton_profile228)_ 2.10867005557041125e+01 +Deuteron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_deuteron_triton_profile229)_ 2.10829273541423596e+01 +Deuteron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_deuteron_triton_profile230)_ 2.10791312232100729e+01 +Deuteron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_deuteron_triton_profile231)_ 2.10753120632534205e+01 +Deuteron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_deuteron_triton_profile232)_ 2.10714697738058128e+01 +Deuteron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_deuteron_triton_profile233)_ 2.10676042536259942e+01 +Deuteron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_deuteron_triton_profile234)_ 2.10637154006622467e+01 +Deuteron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_deuteron_triton_profile235)_ 2.10598031121168923e+01 +Deuteron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_deuteron_triton_profile236)_ 2.10558672843390795e+01 +Deuteron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_deuteron_triton_profile237)_ 2.10519078128990067e+01 +Deuteron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_deuteron_triton_profile238)_ 2.10479245925388057e+01 +Deuteron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_deuteron_triton_profile239)_ 2.10439175172214199e+01 +Deuteron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_deuteron_triton_profile240)_ 2.10398864800648404e+01 +Deuteron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_deuteron_triton_profile241)_ 2.10358313733978086e+01 +Deuteron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_deuteron_triton_profile242)_ 2.10317520887069662e+01 +Deuteron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_deuteron_triton_profile243)_ 2.10276485166364679e+01 +Deuteron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_deuteron_triton_profile244)_ 2.10235205470211000e+01 +Deuteron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_deuteron_triton_profile245)_ 2.10193680688664415e+01 +Deuteron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_deuteron_triton_profile246)_ 2.10151909703388711e+01 +Deuteron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_deuteron_triton_profile247)_ 2.10109891387453445e+01 +Deuteron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_deuteron_triton_profile248)_ 2.10067624605839853e+01 +Deuteron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_deuteron_triton_profile249)_ 2.10025108214938854e+01 +Deuteron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_deuteron_triton_profile250)_ 2.09982341062346762e+01 +Deuteron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_deuteron_triton_profile251)_ 2.09939321987513061e+01 +Deuteron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_deuteron_triton_profile252)_ 2.09896049821235735e+01 +Deuteron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_deuteron_triton_profile253)_ 2.09852523385595511e+01 +Deuteron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_deuteron_triton_profile254)_ 2.09808741494510791e+01 +Deuteron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_deuteron_triton_profile255)_ 2.09764702952573963e+01 +Deuteron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_deuteron_triton_profile256)_ 2.09720406556471168e+01 +Deuteron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_deuteron_triton_profile257)_ 2.09675851093503738e+01 +Deuteron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_deuteron_triton_profile258)_ 2.09631035342949481e+01 +Deuteron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_deuteron_triton_profile259)_ 2.09585958075206520e+01 +Deuteron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_deuteron_triton_profile260)_ 2.09540618051590535e+01 +Deuteron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_deuteron_triton_profile261)_ 2.09495014025224471e+01 +Deuteron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_deuteron_triton_profile262)_ 2.09449144740033475e+01 +Deuteron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_deuteron_triton_profile263)_ 2.09403008931286188e+01 +Deuteron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_deuteron_triton_profile264)_ 2.09356605325898570e+01 +Deuteron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_deuteron_triton_profile265)_ 2.09309932641563918e+01 +Deuteron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_deuteron_triton_profile266)_ 2.09262989587447947e+01 +Deuteron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_deuteron_triton_profile267)_ 2.09215774863781583e+01 +Deuteron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_deuteron_triton_profile268)_ 2.09168287162171325e+01 +Deuteron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_deuteron_triton_profile269)_ 2.09120525165409177e+01 +Deuteron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_deuteron_triton_profile270)_ 2.09072487547535708e+01 +Deuteron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_deuteron_triton_profile271)_ 2.09024172973832769e+01 +Deuteron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_deuteron_triton_profile272)_ 2.08975580101222640e+01 +Deuteron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_deuteron_triton_profile273)_ 2.08926707577165978e+01 +Deuteron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_deuteron_triton_profile274)_ 2.08877554041053557e+01 +Deuteron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_deuteron_triton_profile275)_ 2.08828118123254391e+01 +Deuteron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_deuteron_triton_profile276)_ 2.08778398445859104e+01 +Deuteron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_deuteron_triton_profile277)_ 2.08728393622058164e+01 +Deuteron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_deuteron_triton_profile278)_ 2.08678102256709614e+01 +Deuteron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_deuteron_triton_profile279)_ 2.08627522945678550e+01 +Deuteron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_deuteron_triton_profile280)_ 2.08576654277093034e+01 +Deuteron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_deuteron_triton_profile281)_ 2.08525494829972899e+01 +Deuteron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_deuteron_triton_profile282)_ 2.08474043175116748e+01 +Deuteron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_deuteron_triton_profile283)_ 2.08422297875170166e+01 +Deuteron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_deuteron_triton_profile284)_ 2.08370257484467274e+01 +Deuteron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_deuteron_triton_profile285)_ 2.08317920549103022e+01 +Deuteron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_deuteron_triton_profile286)_ 2.08265285606893329e+01 +Deuteron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_deuteron_triton_profile287)_ 2.08212351187881524e+01 +Deuteron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_deuteron_triton_profile288)_ 2.08159115813961613e+01 +Deuteron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_deuteron_triton_profile289)_ 2.08105577999279632e+01 +Deuteron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_deuteron_triton_profile290)_ 2.08051736250096333e+01 +Deuteron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_deuteron_triton_profile291)_ 2.07997589065439676e+01 +Deuteron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_deuteron_triton_profile292)_ 2.07943134935793452e+01 +Deuteron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_deuteron_triton_profile293)_ 2.07888372345659178e+01 +Deuteron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_deuteron_triton_profile294)_ 2.07833299771026319e+01 +Deuteron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_deuteron_triton_profile295)_ 2.07777915680999072e+01 +Deuteron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_deuteron_triton_profile296)_ 2.07722218538176371e+01 +Deuteron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_deuteron_triton_profile297)_ 2.07666206797749950e+01 +Deuteron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_deuteron_triton_profile298)_ 2.07609878908493322e+01 +Deuteron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_deuteron_triton_profile299)_ 2.07553233312514180e+01 +Deuteron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_deuteron_triton_profile300)_ 2.07496268445660021e+01 +Deuteron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_deuteron_triton_profile301)_ 2.07438982737814079e+01 +Deuteron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_deuteron_triton_profile302)_ 2.07381374612334675e+01 +Deuteron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_deuteron_triton_profile303)_ 2.07323442487518612e+01 +Deuteron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_deuteron_triton_profile304)_ 2.07265184775687423e+01 +Deuteron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_deuteron_triton_profile305)_ 2.07206599884264797e+01 +Deuteron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_deuteron_triton_profile306)_ 2.07147686215581679e+01 +Deuteron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_deuteron_triton_profile307)_ 2.07088442167018911e+01 +Deuteron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_deuteron_triton_profile308)_ 2.07028866131624625e+01 +Deuteron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_deuteron_triton_profile309)_ 2.06968956498198224e+01 +Deuteron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_deuteron_triton_profile310)_ 2.06908711651595389e+01 +Deuteron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_deuteron_triton_profile311)_ 2.06848129973991988e+01 +Deuteron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_deuteron_triton_profile312)_ 2.06787209842686579e+01 +Deuteron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_deuteron_triton_profile313)_ 2.06725949633838937e+01 +Deuteron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_deuteron_triton_profile314)_ 2.06664347720078787e+01 +Deuteron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_deuteron_triton_profile315)_ 2.06602402472654312e+01 +Deuteron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_deuteron_triton_profile316)_ 2.06540112260344024e+01 +Deuteron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_deuteron_triton_profile317)_ 2.06477475451703754e+01 +Deuteron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_deuteron_triton_profile318)_ 2.06414490413428062e+01 +Deuteron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_deuteron_triton_profile319)_ 2.06351155513089601e+01 +Deuteron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_deuteron_triton_profile320)_ 2.06287469117431783e+01 +Deuteron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_deuteron_triton_profile321)_ 2.06223429594313217e+01 +Deuteron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_deuteron_triton_profile322)_ 2.06159035312992884e+01 +Deuteron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_deuteron_triton_profile323)_ 2.06094284644520087e+01 +Deuteron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_deuteron_triton_profile324)_ 2.06029175962369848e+01 +Deuteron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_deuteron_triton_profile325)_ 2.05963707642918834e+01 +Deuteron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_deuteron_triton_profile326)_ 2.05897878066356661e+01 +Deuteron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_deuteron_triton_profile327)_ 2.05831685617119398e+01 +Deuteron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_deuteron_triton_profile328)_ 2.05765128685181153e+01 +Deuteron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_deuteron_triton_profile329)_ 2.05698205665797360e+01 +Deuteron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_deuteron_triton_profile330)_ 2.05630914961270967e+01 +Deuteron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_deuteron_triton_profile331)_ 2.05563254981263697e+01 +Deuteron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_deuteron_triton_profile332)_ 2.05495224143836772e+01 +Deuteron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_deuteron_triton_profile333)_ 2.05426820875620741e+01 +Deuteron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_deuteron_triton_profile334)_ 2.05358043614496033e+01 +Deuteron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_deuteron_triton_profile335)_ 2.05288890808305204e+01 +Deuteron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_deuteron_triton_profile336)_ 2.05219360917512716e+01 +Deuteron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_deuteron_triton_profile337)_ 2.05149452415806905e+01 +Deuteron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_deuteron_triton_profile338)_ 2.05079163791266872e+01 +Deuteron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_deuteron_triton_profile339)_ 2.05008493546635826e+01 +Deuteron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_deuteron_triton_profile340)_ 2.04937440202187453e+01 +Deuteron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_deuteron_triton_profile341)_ 2.04866002295400840e+01 +Deuteron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_deuteron_triton_profile342)_ 2.04794178383437497e+01 +Deuteron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_deuteron_triton_profile343)_ 2.04721967043740314e+01 +Deuteron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_deuteron_triton_profile344)_ 2.04649366876076115e+01 +Deuteron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_deuteron_triton_profile345)_ 2.04576376502767907e+01 +Deuteron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_deuteron_triton_profile346)_ 2.04502994572268300e+01 +Deuteron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_deuteron_triton_profile347)_ 2.04429219759305738e+01 +Deuteron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_deuteron_triton_profile348)_ 2.04355050766749677e+01 +Deuteron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_deuteron_triton_profile349)_ 2.04280486328012785e+01 +Deuteron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_deuteron_triton_profile350)_ 2.04205525207812606e+01 +Deuteron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_deuteron_triton_profile351)_ 2.04130166205175350e+01 +Deuteron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_deuteron_triton_profile352)_ 2.04054408155277116e+01 +Deuteron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_deuteron_triton_profile353)_ 2.03978249930821285e+01 +Deuteron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_deuteron_triton_profile354)_ 2.03901690444967691e+01 +Deuteron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_deuteron_triton_profile355)_ 2.03824728653290883e+01 +Deuteron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_deuteron_triton_profile356)_ 2.03747363556082490e+01 +Deuteron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_deuteron_triton_profile357)_ 2.03669594200956254e+01 +Deuteron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_deuteron_triton_profile358)_ 2.03591419685658224e+01 +Deuteron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_deuteron_triton_profile359)_ 2.03512839159933776e+01 +Deuteron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_deuteron_triton_profile360)_ 2.03433851830234680e+01 +Deuteron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_deuteron_triton_profile361)_ 2.03354456959470049e+01 +Deuteron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_deuteron_triton_profile362)_ 2.03274653873759199e+01 +Deuteron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_deuteron_triton_profile363)_ 2.03194441963113412e+01 +Deuteron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_deuteron_triton_profile364)_ 2.03113820685605475e+01 +Deuteron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_deuteron_triton_profile365)_ 2.03032789570037302e+01 +Deuteron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_deuteron_triton_profile366)_ 2.02951348221576602e+01 +Deuteron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_deuteron_triton_profile367)_ 2.02869496323153058e+01 +Deuteron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_deuteron_triton_profile368)_ 2.02787233641148461e+01 +Deuteron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_deuteron_triton_profile369)_ 2.02704560029308425e+01 +Deuteron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_deuteron_triton_profile370)_ 2.02621475431268578e+01 +Deuteron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_deuteron_triton_profile371)_ 2.02537979887731119e+01 +Deuteron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_deuteron_triton_profile372)_ 2.02454073538963542e+01 +Deuteron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_deuteron_triton_profile373)_ 2.02369756631643085e+01 +Deuteron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_deuteron_triton_profile374)_ 2.02285029521673216e+01 +Deuteron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_deuteron_triton_profile375)_ 2.02199892681531743e+01 +Deuteron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_deuteron_triton_profile376)_ 2.02114346705143966e+01 +Deuteron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_deuteron_triton_profile377)_ 2.02028392312995990e+01 +Deuteron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_deuteron_triton_profile378)_ 2.01942030359291067e+01 +Deuteron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_deuteron_triton_profile379)_ 2.01855261837877720e+01 +Deuteron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_deuteron_triton_profile380)_ 2.01768087888834344e+01 +Deuteron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_deuteron_triton_profile381)_ 2.01680509805107455e+01 +Deuteron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_deuteron_triton_profile382)_ 2.01592529039901862e+01 +Deuteron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_deuteron_triton_profile383)_ 2.01504147215110976e+01 +Deuteron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_deuteron_triton_profile384)_ 2.01415366127552211e+01 +Deuteron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_deuteron_triton_profile385)_ 2.01326187758406121e+01 +Deuteron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_deuteron_triton_profile386)_ 2.01236614282029791e+01 +Deuteron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_deuteron_triton_profile387)_ 2.01146648073194321e+01 +Deuteron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_deuteron_triton_profile388)_ 2.01056291718281663e+01 +Deuteron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_deuteron_triton_profile389)_ 2.00965548024641230e+01 +Deuteron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_deuteron_triton_profile390)_ 2.00874420031093663e+01 +Deuteron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_deuteron_triton_profile391)_ 2.00782911017205983e+01 +Deuteron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_deuteron_triton_profile392)_ 2.00691024516296288e+01 +Deuteron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_deuteron_triton_profile393)_ 2.00598764326603742e+01 +Deuteron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_deuteron_triton_profile394)_ 2.00506134523350603e+01 +Deuteron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_deuteron_triton_profile395)_ 2.00413139470902593e+01 +Deuteron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_deuteron_triton_profile396)_ 2.00319783837677008e+01 +Deuteron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_deuteron_triton_profile397)_ 2.00226072609502346e+01 +Deuteron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_deuteron_triton_profile398)_ 2.00132011104741352e+01 +Deuteron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_deuteron_triton_profile399)_ 2.00037604987981119e+01 +Deuteron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_deuteron_triton_profile400)_ 1.99942860288307465e+01 +Deuteron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_deuteron_triton_profile401)_ 1.99847783416172824e+01 +Deuteron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_deuteron_triton_profile402)_ 1.99752381179142162e+01 +Deuteron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_deuteron_triton_profile403)_ 1.99656660801871624e+01 +Deuteron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_deuteron_triton_profile404)_ 1.99560629944916705e+01 +Deuteron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_deuteron_triton_profile405)_ 1.99464296727872181e+01 +Deuteron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_deuteron_triton_profile406)_ 1.99367669745080462e+01 +Deuteron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_deuteron_triton_profile407)_ 1.99270758094242346e+01 +Deuteron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_deuteron_triton_profile408)_ 1.99173571395425846e+01 +Deuteron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_deuteron_triton_profile409)_ 1.99076119818697990e+01 +Deuteron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_deuteron_triton_profile410)_ 1.98978414107948645e+01 +Deuteron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_deuteron_triton_profile411)_ 1.98880465609769601e+01 +Deuteron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_deuteron_triton_profile412)_ 1.98782286302321651e+01 +Deuteron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_deuteron_triton_profile413)_ 1.98683888823068493e+01 +Deuteron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_deuteron_triton_profile414)_ 1.98585286503547458e+01 +Deuteron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_deuteron_triton_profile415)_ 1.98486493401220443e+01 +Deuteron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_deuteron_triton_profile416)_ 1.98387524334346814e+01 +Deuteron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_deuteron_triton_profile417)_ 1.98288394920015492e+01 +Deuteron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_deuteron_triton_profile418)_ 1.98189121612865549e+01 +Deuteron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_deuteron_triton_profile419)_ 1.98089721746400009e+01 +Deuteron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_deuteron_triton_profile420)_ 1.97990213574932312e+01 +Deuteron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_deuteron_triton_profile421)_ 1.97890616324854989e+01 +Deuteron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_deuteron_triton_profile422)_ 1.97790950235425491e+01 +Deuteron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_deuteron_triton_profile423)_ 1.97691236616787016e+01 +Deuteron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_deuteron_triton_profile424)_ 1.97591497902035158e+01 +Deuteron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_deuteron_triton_profile425)_ 1.97491757705711066e+01 +Deuteron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_deuteron_triton_profile426)_ 1.97392040883832820e+01 +Deuteron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_deuteron_triton_profile427)_ 1.97292373601711795e+01 +Deuteron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_deuteron_triton_profile428)_ 1.97192783401493976e+01 +Deuteron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_deuteron_triton_profile429)_ 1.97093299277705718e+01 +Deuteron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_deuteron_triton_profile430)_ 1.96993951755487053e+01 +Deuteron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_deuteron_triton_profile431)_ 1.96894772976838972e+01 +Deuteron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_deuteron_triton_profile432)_ 1.96795796787855544e+01 +Deuteron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_deuteron_triton_profile433)_ 1.96697058840839034e+01 +Deuteron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_deuteron_triton_profile434)_ 1.96598596695060444e+01 +Deuteron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_deuteron_triton_profile435)_ 1.96500449932193888e+01 +Deuteron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_deuteron_triton_profile436)_ 1.96402660275257261e+01 +Deuteron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_deuteron_triton_profile437)_ 1.96305271724127941e+01 +Deuteron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_deuteron_triton_profile438)_ 1.96208330696035347e+01 +Deuteron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_deuteron_triton_profile439)_ 1.96111886183450004e+01 +Deuteron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_deuteron_triton_profile440)_ 1.96015989923154095e+01 +Deuteron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_deuteron_triton_profile441)_ 1.95920696585704803e+01 +Deuteron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_deuteron_triton_profile442)_ 1.95826063978428806e+01 +Deuteron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_deuteron_triton_profile443)_ 1.95732153275932710e+01 +Deuteron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_deuteron_triton_profile444)_ 1.95639029271760130e+01 +Deuteron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_deuteron_triton_profile445)_ 1.95546760661272394e+01 +Deuteron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_deuteron_triton_profile446)_ 1.95455420356927014e+01 +Deuteron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_deuteron_triton_profile447)_ 1.95365085847366018e+01 +Deuteron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_deuteron_triton_profile448)_ 1.95275839601035237e+01 +Deuteron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_deuteron_triton_profile449)_ 1.95187769531694926e+01 +Deuteron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_deuteron_triton_profile450)_ 1.95100969528752266e+01 +Deuteron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_deuteron_triton_profile451)_ 1.95015540078533469e+01 +Deuteron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_deuteron_triton_profile452)_ 1.94931588985423652e+01 +Deuteron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_deuteron_triton_profile453)_ 1.94849232230108633e+01 +Deuteron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_deuteron_triton_profile454)_ 1.94768594986931980e+01 +Deuteron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_deuteron_triton_profile455)_ 1.94689812858710276e+01 +Deuteron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_deuteron_triton_profile456)_ 1.94613033381876832e+01 +Deuteron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_deuteron_triton_profile457)_ 1.94538417896461233e+01 +Deuteron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_deuteron_triton_profile458)_ 1.94466143901620931e+01 +Deuteron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_deuteron_triton_profile459)_ 1.94396408079429541e+01 +Deuteron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_deuteron_triton_profile460)_ 1.94329430257677416e+01 +Deuteron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_deuteron_triton_profile461)_ 1.94265458733669405e+01 +Deuteron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_deuteron_triton_profile462)_ 1.94204777629628964e+01 +Deuteron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_deuteron_triton_profile463)_ 1.94147717423534800e+01 +Deuteron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_deuteron_triton_profile464)_ 1.94094670670408682e+01 +Deuteron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_deuteron_triton_profile465)_ 1.94046116796848374e+01 +Deuteron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_deuteron_triton_profile466)_ 1.94002664078294949e+01 +Deuteron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_deuteron_triton_profile467)_ 1.93965128130589406e+01 +Deuteron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_deuteron_triton_profile468)_ 1.93934702267349763e+01 +Deuteron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_deuteron_triton_profile469)_ 1.93913437188899351e+01 +Deuteron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_deuteron_triton_profile470)_ 1.93907183511371741e+01 +Deuteron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_deuteron_triton_profile471)_ 1.93477165703963969e+01 +Deuteron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_deuteron_triton_profile472)_ 1.93030934810739652e+01 +Deuteron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_deuteron_triton_profile473)_ 1.92567293163575606e+01 +Deuteron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_deuteron_triton_profile474)_ 1.92084908375306078e+01 +Deuteron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_deuteron_triton_profile475)_ 1.91582292528468550e+01 +Deuteron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_deuteron_triton_profile476)_ 1.91057777205863601e+01 +Deuteron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_deuteron_triton_profile477)_ 1.90509483316201731e+01 +Deuteron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_deuteron_triton_profile478)_ 1.89935284353850378e+01 +Deuteron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_deuteron_triton_profile479)_ 1.89332761319161911e+01 +Deuteron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_deuteron_triton_profile480)_ 1.88699146896174454e+01 +Deuteron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_deuteron_triton_profile481)_ 1.88031255688013452e+01 +Deuteron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_deuteron_triton_profile482)_ 1.87325396106481321e+01 +Deuteron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_deuteron_triton_profile483)_ 1.86577257794576212e+01 +Deuteron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_deuteron_triton_profile484)_ 1.85781765989718650e+01 +Deuteron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_deuteron_triton_profile485)_ 1.84932890398933019e+01 +Deuteron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_deuteron_triton_profile486)_ 1.84023390464884500e+01 +Deuteron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_deuteron_triton_profile487)_ 1.83044469761461244e+01 +Deuteron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_deuteron_triton_profile488)_ 1.81985297656375806e+01 +Deuteron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_deuteron_triton_profile489)_ 1.80832331936385344e+01 +Deuteron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_deuteron_triton_profile490)_ 1.79568333980386114e+01 +Deuteron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_deuteron_triton_profile491)_ 1.78170892155723593e+01 +Deuteron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_deuteron_triton_profile492)_ 1.76610125803048916e+01 +Deuteron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_deuteron_triton_profile493)_ 1.74844955344523356e+01 +Deuteron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_deuteron_triton_profile494)_ 1.72816708602134597e+01 +Deuteron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_deuteron_triton_profile495)_ 1.70437394299229368e+01 +Deuteron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_deuteron_triton_profile496)_ 1.67566216084932691e+01 +Deuteron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_deuteron_triton_profile497)_ 1.63956537296557592e+01 +Deuteron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_deuteron_triton_profile498)_ 1.59113153929362738e+01 +Deuteron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_deuteron_triton_profile499)_ 1.51779328073027457e+01 +Deuteron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_deuteron_triton_profile500)_ 1.36450364438831055e+01 +Volume_averaged_electron-alpha_thermal_Coulomb_log_(Λₑαₜₕ)_______________ (plasma_coulomb_log_electron_alpha_thermal_vol_avg)_ 1.77779240633107278e+01 OP +Electron-alpha_thermal_Coulomb_log_at_point_0____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile0)_ 1.83507441849370814e+01 +Electron-alpha_thermal_Coulomb_log_at_point_1____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile1)_ 1.83507400972544765e+01 +Electron-alpha_thermal_Coulomb_log_at_point_2____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile2)_ 1.83507278341165261e+01 +Electron-alpha_thermal_Coulomb_log_at_point_3____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile3)_ 1.83507073952528188e+01 +Electron-alpha_thermal_Coulomb_log_at_point_4____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile4)_ 1.83506787802126468e+01 +Electron-alpha_thermal_Coulomb_log_at_point_5____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile5)_ 1.83506419883649841e+01 +Electron-alpha_thermal_Coulomb_log_at_point_6____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile6)_ 1.83505970188984513e+01 +Electron-alpha_thermal_Coulomb_log_at_point_7____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile7)_ 1.83505438708212800e+01 +Electron-alpha_thermal_Coulomb_log_at_point_8____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile8)_ 1.83504825429612346e+01 +Electron-alpha_thermal_Coulomb_log_at_point_9____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile9)_ 1.83504130339655731e+01 +Electron-alpha_thermal_Coulomb_log_at_point_10___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile10)_ 1.83503353423009479e+01 +Electron-alpha_thermal_Coulomb_log_at_point_11___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile11)_ 1.83502494662533344e+01 +Electron-alpha_thermal_Coulomb_log_at_point_12___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile12)_ 1.83501554039279391e+01 +Electron-alpha_thermal_Coulomb_log_at_point_13___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile13)_ 1.83500531532490783e+01 +Electron-alpha_thermal_Coulomb_log_at_point_14___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile14)_ 1.83499427119600718e+01 +Electron-alpha_thermal_Coulomb_log_at_point_15___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile15)_ 1.83498240776231221e+01 +Electron-alpha_thermal_Coulomb_log_at_point_16___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile16)_ 1.83496972476191651e+01 +Electron-alpha_thermal_Coulomb_log_at_point_17___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile17)_ 1.83495622191477388e+01 +Electron-alpha_thermal_Coulomb_log_at_point_18___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile18)_ 1.83494189892268089e+01 +Electron-alpha_thermal_Coulomb_log_at_point_19___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile19)_ 1.83492675546926129e+01 +Electron-alpha_thermal_Coulomb_log_at_point_20___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile20)_ 1.83491079121994964e+01 +Electron-alpha_thermal_Coulomb_log_at_point_21___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile21)_ 1.83489400582196929e+01 +Electron-alpha_thermal_Coulomb_log_at_point_22___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile22)_ 1.83487639890431637e+01 +Electron-alpha_thermal_Coulomb_log_at_point_23___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile23)_ 1.83485797007773570e+01 +Electron-alpha_thermal_Coulomb_log_at_point_24___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile24)_ 1.83483871893470081e+01 +Electron-alpha_thermal_Coulomb_log_at_point_25___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile25)_ 1.83481864504939267e+01 +Electron-alpha_thermal_Coulomb_log_at_point_26___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile26)_ 1.83479774797767163e+01 +Electron-alpha_thermal_Coulomb_log_at_point_27___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile27)_ 1.83477602725705680e+01 +Electron-alpha_thermal_Coulomb_log_at_point_28___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile28)_ 1.83475348240669724e+01 +Electron-alpha_thermal_Coulomb_log_at_point_29___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile29)_ 1.83473011292734718e+01 +Electron-alpha_thermal_Coulomb_log_at_point_30___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile30)_ 1.83470591830133714e+01 +Electron-alpha_thermal_Coulomb_log_at_point_31___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile31)_ 1.83468089799254308e+01 +Electron-alpha_thermal_Coulomb_log_at_point_32___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile32)_ 1.83465505144636047e+01 +Electron-alpha_thermal_Coulomb_log_at_point_33___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile33)_ 1.83462837808966945e+01 +Electron-alpha_thermal_Coulomb_log_at_point_34___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile34)_ 1.83460087733080428e+01 +Electron-alpha_thermal_Coulomb_log_at_point_35___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile35)_ 1.83457254855952030e+01 +Electron-alpha_thermal_Coulomb_log_at_point_36___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile36)_ 1.83454339114695948e+01 +Electron-alpha_thermal_Coulomb_log_at_point_37___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile37)_ 1.83451340444561488e+01 +Electron-alpha_thermal_Coulomb_log_at_point_38___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile38)_ 1.83448258778929372e+01 +Electron-alpha_thermal_Coulomb_log_at_point_39___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile39)_ 1.83445094049308182e+01 +Electron-alpha_thermal_Coulomb_log_at_point_40___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile40)_ 1.83441846185330313e+01 +Electron-alpha_thermal_Coulomb_log_at_point_41___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile41)_ 1.83438515114748171e+01 +Electron-alpha_thermal_Coulomb_log_at_point_42___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile42)_ 1.83435100763429979e+01 +Electron-alpha_thermal_Coulomb_log_at_point_43___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile43)_ 1.83431603055355730e+01 +Electron-alpha_thermal_Coulomb_log_at_point_44___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile44)_ 1.83428021912612778e+01 +Electron-alpha_thermal_Coulomb_log_at_point_45___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile45)_ 1.83424357255391612e+01 +Electron-alpha_thermal_Coulomb_log_at_point_46___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile46)_ 1.83420609001981170e+01 +Electron-alpha_thermal_Coulomb_log_at_point_47___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile47)_ 1.83416777068764496e+01 +Electron-alpha_thermal_Coulomb_log_at_point_48___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile48)_ 1.83412861370213705e+01 +Electron-alpha_thermal_Coulomb_log_at_point_49___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile49)_ 1.83408861818885391e+01 +Electron-alpha_thermal_Coulomb_log_at_point_50___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile50)_ 1.83404778325415663e+01 +Electron-alpha_thermal_Coulomb_log_at_point_51___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile51)_ 1.83400610798515018e+01 +Electron-alpha_thermal_Coulomb_log_at_point_52___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile52)_ 1.83396359144963306e+01 +Electron-alpha_thermal_Coulomb_log_at_point_53___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile53)_ 1.83392023269604323e+01 +Electron-alpha_thermal_Coulomb_log_at_point_54___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile54)_ 1.83387603075340557e+01 +Electron-alpha_thermal_Coulomb_log_at_point_55___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile55)_ 1.83383098463127610e+01 +Electron-alpha_thermal_Coulomb_log_at_point_56___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile56)_ 1.83378509331968615e+01 +Electron-alpha_thermal_Coulomb_log_at_point_57___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile57)_ 1.83373835578908668e+01 +Electron-alpha_thermal_Coulomb_log_at_point_58___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile58)_ 1.83369077099028743e+01 +Electron-alpha_thermal_Coulomb_log_at_point_59___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile59)_ 1.83364233785439872e+01 +Electron-alpha_thermal_Coulomb_log_at_point_60___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile60)_ 1.83359305529277172e+01 +Electron-alpha_thermal_Coulomb_log_at_point_61___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile61)_ 1.83354292219693562e+01 +Electron-alpha_thermal_Coulomb_log_at_point_62___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile62)_ 1.83349193743853434e+01 +Electron-alpha_thermal_Coulomb_log_at_point_63___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile63)_ 1.83344009986926437e+01 +Electron-alpha_thermal_Coulomb_log_at_point_64___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile64)_ 1.83338740832080695e+01 +Electron-alpha_thermal_Coulomb_log_at_point_65___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile65)_ 1.83333386160476408e+01 +Electron-alpha_thermal_Coulomb_log_at_point_66___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile66)_ 1.83327945851258995e+01 +Electron-alpha_thermal_Coulomb_log_at_point_67___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile67)_ 1.83322419781552171e+01 +Electron-alpha_thermal_Coulomb_log_at_point_68___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile68)_ 1.83316807826450976e+01 +Electron-alpha_thermal_Coulomb_log_at_point_69___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile69)_ 1.83311109859014785e+01 +Electron-alpha_thermal_Coulomb_log_at_point_70___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile70)_ 1.83305325750259840e+01 +Electron-alpha_thermal_Coulomb_log_at_point_71___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile71)_ 1.83299455369152220e+01 +Electron-alpha_thermal_Coulomb_log_at_point_72___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile72)_ 1.83293498582599916e+01 +Electron-alpha_thermal_Coulomb_log_at_point_73___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile73)_ 1.83287455255445728e+01 +Electron-alpha_thermal_Coulomb_log_at_point_74___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile74)_ 1.83281325250459197e+01 +Electron-alpha_thermal_Coulomb_log_at_point_75___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile75)_ 1.83275108428328899e+01 +Electron-alpha_thermal_Coulomb_log_at_point_76___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile76)_ 1.83268804647654449e+01 +Electron-alpha_thermal_Coulomb_log_at_point_77___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile77)_ 1.83262413764938472e+01 +Electron-alpha_thermal_Coulomb_log_at_point_78___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile78)_ 1.83255935634578186e+01 +Electron-alpha_thermal_Coulomb_log_at_point_79___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile79)_ 1.83249370108857406e+01 +Electron-alpha_thermal_Coulomb_log_at_point_80___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile80)_ 1.83242717037937766e+01 +Electron-alpha_thermal_Coulomb_log_at_point_81___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile81)_ 1.83235976269850234e+01 +Electron-alpha_thermal_Coulomb_log_at_point_82___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile82)_ 1.83229147650486368e+01 +Electron-alpha_thermal_Coulomb_log_at_point_83___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile83)_ 1.83222231023589650e+01 +Electron-alpha_thermal_Coulomb_log_at_point_84___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile84)_ 1.83215226230746175e+01 +Electron-alpha_thermal_Coulomb_log_at_point_85___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile85)_ 1.83208133111375808e+01 +Electron-alpha_thermal_Coulomb_log_at_point_86___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile86)_ 1.83200951502722802e+01 +Electron-alpha_thermal_Coulomb_log_at_point_87___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile87)_ 1.83193681239846562e+01 +Electron-alpha_thermal_Coulomb_log_at_point_88___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile88)_ 1.83186322155612018e+01 +Electron-alpha_thermal_Coulomb_log_at_point_89___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile89)_ 1.83178874080679961e+01 +Electron-alpha_thermal_Coulomb_log_at_point_90___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile90)_ 1.83171336843497556e+01 +Electron-alpha_thermal_Coulomb_log_at_point_91___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile91)_ 1.83163710270288007e+01 +Electron-alpha_thermal_Coulomb_log_at_point_92___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile92)_ 1.83155994185040889e+01 +Electron-alpha_thermal_Coulomb_log_at_point_93___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile93)_ 1.83148188409501884e+01 +Electron-alpha_thermal_Coulomb_log_at_point_94___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile94)_ 1.83140292763162265e+01 +Electron-alpha_thermal_Coulomb_log_at_point_95___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile95)_ 1.83132307063248767e+01 +Electron-alpha_thermal_Coulomb_log_at_point_96___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile96)_ 1.83124231124712828e+01 +Electron-alpha_thermal_Coulomb_log_at_point_97___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile97)_ 1.83116064760219857e+01 +Electron-alpha_thermal_Coulomb_log_at_point_98___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile98)_ 1.83107807780138430e+01 +Electron-alpha_thermal_Coulomb_log_at_point_99___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile99)_ 1.83099459992529319e+01 +Electron-alpha_thermal_Coulomb_log_at_point_100__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile100)_ 1.83091021203134332e+01 +Electron-alpha_thermal_Coulomb_log_at_point_101__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile101)_ 1.83082491215364911e+01 +Electron-alpha_thermal_Coulomb_log_at_point_102__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile102)_ 1.83073869830290867e+01 +Electron-alpha_thermal_Coulomb_log_at_point_103__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile103)_ 1.83065156846628803e+01 +Electron-alpha_thermal_Coulomb_log_at_point_104__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile104)_ 1.83056352060730312e+01 +Electron-alpha_thermal_Coulomb_log_at_point_105__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile105)_ 1.83047455266570154e+01 +Electron-alpha_thermal_Coulomb_log_at_point_106__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile106)_ 1.83038466255734313e+01 +Electron-alpha_thermal_Coulomb_log_at_point_107__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile107)_ 1.83029384817407781e+01 +Electron-alpha_thermal_Coulomb_log_at_point_108__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile108)_ 1.83020210738362259e+01 +Electron-alpha_thermal_Coulomb_log_at_point_109__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile109)_ 1.83010943802943835e+01 +Electron-alpha_thermal_Coulomb_log_at_point_110__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile110)_ 1.83001583793060192e+01 +Electron-alpha_thermal_Coulomb_log_at_point_111__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile111)_ 1.82992130488168030e+01 +Electron-alpha_thermal_Coulomb_log_at_point_112__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile112)_ 1.82982583665260172e+01 +Electron-alpha_thermal_Coulomb_log_at_point_113__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile113)_ 1.82972943098852348e+01 +Electron-alpha_thermal_Coulomb_log_at_point_114__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile114)_ 1.82963208560970259e+01 +Electron-alpha_thermal_Coulomb_log_at_point_115__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile115)_ 1.82953379821135940e+01 +Electron-alpha_thermal_Coulomb_log_at_point_116__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile116)_ 1.82943456646354576e+01 +Electron-alpha_thermal_Coulomb_log_at_point_117__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile117)_ 1.82933438801100579e+01 +Electron-alpha_thermal_Coulomb_log_at_point_118__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile118)_ 1.82923326047303867e+01 +Electron-alpha_thermal_Coulomb_log_at_point_119__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile119)_ 1.82913118144335947e+01 +Electron-alpha_thermal_Coulomb_log_at_point_120__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile120)_ 1.82902814848995696e+01 +Electron-alpha_thermal_Coulomb_log_at_point_121__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile121)_ 1.82892415915495228e+01 +Electron-alpha_thermal_Coulomb_log_at_point_122__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile122)_ 1.82881921095445215e+01 +Electron-alpha_thermal_Coulomb_log_at_point_123__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile123)_ 1.82871330137840502e+01 +Electron-alpha_thermal_Coulomb_log_at_point_124__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile124)_ 1.82860642789045258e+01 +Electron-alpha_thermal_Coulomb_log_at_point_125__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile125)_ 1.82849858792777944e+01 +Electron-alpha_thermal_Coulomb_log_at_point_126__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile126)_ 1.82838977890096572e+01 +Electron-alpha_thermal_Coulomb_log_at_point_127__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile127)_ 1.82827999819382931e+01 +Electron-alpha_thermal_Coulomb_log_at_point_128__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile128)_ 1.82816924316327665e+01 +Electron-alpha_thermal_Coulomb_log_at_point_129__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile129)_ 1.82805751113914354e+01 +Electron-alpha_thermal_Coulomb_log_at_point_130__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile130)_ 1.82794479942404031e+01 +Electron-alpha_thermal_Coulomb_log_at_point_131__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile131)_ 1.82783110529319082e+01 +Electron-alpha_thermal_Coulomb_log_at_point_132__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile132)_ 1.82771642599427118e+01 +Electron-alpha_thermal_Coulomb_log_at_point_133__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile133)_ 1.82760075874725061e+01 +Electron-alpha_thermal_Coulomb_log_at_point_134__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile134)_ 1.82748410074422267e+01 +Electron-alpha_thermal_Coulomb_log_at_point_135__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile135)_ 1.82736644914924398e+01 +Electron-alpha_thermal_Coulomb_log_at_point_136__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile136)_ 1.82724780109816329e+01 +Electron-alpha_thermal_Coulomb_log_at_point_137__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile137)_ 1.82712815369845352e+01 +Electron-alpha_thermal_Coulomb_log_at_point_138__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile138)_ 1.82700750402904148e+01 +Electron-alpha_thermal_Coulomb_log_at_point_139__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile139)_ 1.82688584914013283e+01 +Electron-alpha_thermal_Coulomb_log_at_point_140__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile140)_ 1.82676318605304111e+01 +Electron-alpha_thermal_Coulomb_log_at_point_141__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile141)_ 1.82663951176000872e+01 +Electron-alpha_thermal_Coulomb_log_at_point_142__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile142)_ 1.82651482322402998e+01 +Electron-alpha_thermal_Coulomb_log_at_point_143__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile143)_ 1.82638911737867176e+01 +Electron-alpha_thermal_Coulomb_log_at_point_144__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile144)_ 1.82626239112789186e+01 +Electron-alpha_thermal_Coulomb_log_at_point_145__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile145)_ 1.82613464134585470e+01 +Electron-alpha_thermal_Coulomb_log_at_point_146__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile146)_ 1.82600586487674903e+01 +Electron-alpha_thermal_Coulomb_log_at_point_147__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile147)_ 1.82587605853459856e+01 +Electron-alpha_thermal_Coulomb_log_at_point_148__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile148)_ 1.82574521910307510e+01 +Electron-alpha_thermal_Coulomb_log_at_point_149__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile149)_ 1.82561334333530674e+01 +Electron-alpha_thermal_Coulomb_log_at_point_150__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile150)_ 1.82548042795368701e+01 +Electron-alpha_thermal_Coulomb_log_at_point_151__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile151)_ 1.82534646964968132e+01 +Electron-alpha_thermal_Coulomb_log_at_point_152__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile152)_ 1.82521146508362904e+01 +Electron-alpha_thermal_Coulomb_log_at_point_153__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile153)_ 1.82507541088454950e+01 +Electron-alpha_thermal_Coulomb_log_at_point_154__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile154)_ 1.82493830364993919e+01 +Electron-alpha_thermal_Coulomb_log_at_point_155__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile155)_ 1.82480013994557311e+01 +Electron-alpha_thermal_Coulomb_log_at_point_156__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile156)_ 1.82466091630529945e+01 +Electron-alpha_thermal_Coulomb_log_at_point_157__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile157)_ 1.82452062923083744e+01 +Electron-alpha_thermal_Coulomb_log_at_point_158__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile158)_ 1.82437927519156986e+01 +Electron-alpha_thermal_Coulomb_log_at_point_159__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile159)_ 1.82423685062433378e+01 +Electron-alpha_thermal_Coulomb_log_at_point_160__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile160)_ 1.82409335193321027e+01 +Electron-alpha_thermal_Coulomb_log_at_point_161__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile161)_ 1.82394877548931440e+01 +Electron-alpha_thermal_Coulomb_log_at_point_162__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile162)_ 1.82380311763057854e+01 +Electron-alpha_thermal_Coulomb_log_at_point_163__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile163)_ 1.82365637466153849e+01 +Electron-alpha_thermal_Coulomb_log_at_point_164__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile164)_ 1.82350854285311641e+01 +Electron-alpha_thermal_Coulomb_log_at_point_165__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile165)_ 1.82335961844239876e+01 +Electron-alpha_thermal_Coulomb_log_at_point_166__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile166)_ 1.82320959763241817e+01 +Electron-alpha_thermal_Coulomb_log_at_point_167__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile167)_ 1.82305847659192821e+01 +Electron-alpha_thermal_Coulomb_log_at_point_168__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile168)_ 1.82290625145517957e+01 +Electron-alpha_thermal_Coulomb_log_at_point_169__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile169)_ 1.82275291832169373e+01 +Electron-alpha_thermal_Coulomb_log_at_point_170__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile170)_ 1.82259847325603346e+01 +Electron-alpha_thermal_Coulomb_log_at_point_171__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile171)_ 1.82244291228757298e+01 +Electron-alpha_thermal_Coulomb_log_at_point_172__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile172)_ 1.82228623141026596e+01 +Electron-alpha_thermal_Coulomb_log_at_point_173__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile173)_ 1.82212842658241136e+01 +Electron-alpha_thermal_Coulomb_log_at_point_174__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile174)_ 1.82196949372641868e+01 +Electron-alpha_thermal_Coulomb_log_at_point_175__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile175)_ 1.82180942872856804e+01 +Electron-alpha_thermal_Coulomb_log_at_point_176__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile176)_ 1.82164822743877401e+01 +Electron-alpha_thermal_Coulomb_log_at_point_177__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile177)_ 1.82148588567034295e+01 +Electron-alpha_thermal_Coulomb_log_at_point_178__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile178)_ 1.82132239919972889e+01 +Electron-alpha_thermal_Coulomb_log_at_point_179__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile179)_ 1.82115776376629235e+01 +Electron-alpha_thermal_Coulomb_log_at_point_180__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile180)_ 1.82099197507205126e+01 +Electron-alpha_thermal_Coulomb_log_at_point_181__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile181)_ 1.82082502878143409e+01 +Electron-alpha_thermal_Coulomb_log_at_point_182__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile182)_ 1.82065692052102897e+01 +Electron-alpha_thermal_Coulomb_log_at_point_183__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile183)_ 1.82048764587933469e+01 +Electron-alpha_thermal_Coulomb_log_at_point_184__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile184)_ 1.82031720040650491e+01 +Electron-alpha_thermal_Coulomb_log_at_point_185__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile185)_ 1.82014557961409515e+01 +Electron-alpha_thermal_Coulomb_log_at_point_186__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile186)_ 1.81997277897480600e+01 +Electron-alpha_thermal_Coulomb_log_at_point_187__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile187)_ 1.81979879392222408e+01 +Electron-alpha_thermal_Coulomb_log_at_point_188__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile188)_ 1.81962361985056482e+01 +Electron-alpha_thermal_Coulomb_log_at_point_189__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile189)_ 1.81944725211440819e+01 +Electron-alpha_thermal_Coulomb_log_at_point_190__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile190)_ 1.81926968602843857e+01 +Electron-alpha_thermal_Coulomb_log_at_point_191__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile191)_ 1.81909091686717979e+01 +Electron-alpha_thermal_Coulomb_log_at_point_192__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile192)_ 1.81891093986472718e+01 +Electron-alpha_thermal_Coulomb_log_at_point_193__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile193)_ 1.81872975021448475e+01 +Electron-alpha_thermal_Coulomb_log_at_point_194__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile194)_ 1.81854734306889227e+01 +Electron-alpha_thermal_Coulomb_log_at_point_195__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile195)_ 1.81836371353915744e+01 +Electron-alpha_thermal_Coulomb_log_at_point_196__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile196)_ 1.81817885669498374e+01 +Electron-alpha_thermal_Coulomb_log_at_point_197__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile197)_ 1.81799276756429826e+01 +Electron-alpha_thermal_Coulomb_log_at_point_198__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile198)_ 1.81780544113297680e+01 +Electron-alpha_thermal_Coulomb_log_at_point_199__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile199)_ 1.81761687234456986e+01 +Electron-alpha_thermal_Coulomb_log_at_point_200__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile200)_ 1.81742705610002382e+01 +Electron-alpha_thermal_Coulomb_log_at_point_201__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile201)_ 1.81723598725740665e+01 +Electron-alpha_thermal_Coulomb_log_at_point_202__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile202)_ 1.81704366063162546e+01 +Electron-alpha_thermal_Coulomb_log_at_point_203__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile203)_ 1.81685007099414868e+01 +Electron-alpha_thermal_Coulomb_log_at_point_204__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile204)_ 1.81665521307272613e+01 +Electron-alpha_thermal_Coulomb_log_at_point_205__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile205)_ 1.81645908155110476e+01 +Electron-alpha_thermal_Coulomb_log_at_point_206__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile206)_ 1.81626167106874767e+01 +Electron-alpha_thermal_Coulomb_log_at_point_207__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile207)_ 1.81606297622054953e+01 +Electron-alpha_thermal_Coulomb_log_at_point_208__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile208)_ 1.81586299155655304e+01 +Electron-alpha_thermal_Coulomb_log_at_point_209__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile209)_ 1.81566171158166405e+01 +Electron-alpha_thermal_Coulomb_log_at_point_210__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile210)_ 1.81545913075536447e+01 +Electron-alpha_thermal_Coulomb_log_at_point_211__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile211)_ 1.81525524349142806e+01 +Electron-alpha_thermal_Coulomb_log_at_point_212__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile212)_ 1.81505004415763196e+01 +Electron-alpha_thermal_Coulomb_log_at_point_213__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile213)_ 1.81484352707547067e+01 +Electron-alpha_thermal_Coulomb_log_at_point_214__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile214)_ 1.81463568651986833e+01 +Electron-alpha_thermal_Coulomb_log_at_point_215__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile215)_ 1.81442651671889124e+01 +Electron-alpha_thermal_Coulomb_log_at_point_216__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile216)_ 1.81421601185345942e+01 +Electron-alpha_thermal_Coulomb_log_at_point_217__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile217)_ 1.81400416605705992e+01 +Electron-alpha_thermal_Coulomb_log_at_point_218__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile218)_ 1.81379097341545723e+01 +Electron-alpha_thermal_Coulomb_log_at_point_219__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile219)_ 1.81357642796640910e+01 +Electron-alpha_thermal_Coulomb_log_at_point_220__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile220)_ 1.81336052369937590e+01 +Electron-alpha_thermal_Coulomb_log_at_point_221__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile221)_ 1.81314325455523360e+01 +Electron-alpha_thermal_Coulomb_log_at_point_222__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile222)_ 1.81292461442599127e+01 +Electron-alpha_thermal_Coulomb_log_at_point_223__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile223)_ 1.81270459715450158e+01 +Electron-alpha_thermal_Coulomb_log_at_point_224__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile224)_ 1.81248319653417695e+01 +Electron-alpha_thermal_Coulomb_log_at_point_225__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile225)_ 1.81226040630870635e+01 +Electron-alpha_thermal_Coulomb_log_at_point_226__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile226)_ 1.81203622017177111e+01 +Electron-alpha_thermal_Coulomb_log_at_point_227__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile227)_ 1.81181063176676496e+01 +Electron-alpha_thermal_Coulomb_log_at_point_228__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile228)_ 1.81158363468650982e+01 +Electron-alpha_thermal_Coulomb_log_at_point_229__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile229)_ 1.81135522247298333e+01 +Electron-alpha_thermal_Coulomb_log_at_point_230__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile230)_ 1.81112538861703491e+01 +Electron-alpha_thermal_Coulomb_log_at_point_231__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile231)_ 1.81089412655811444e+01 +Electron-alpha_thermal_Coulomb_log_at_point_232__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile232)_ 1.81066142968399859e+01 +Electron-alpha_thermal_Coulomb_log_at_point_233__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile233)_ 1.81042729133051807e+01 +Electron-alpha_thermal_Coulomb_log_at_point_234__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile234)_ 1.81019170478129148e+01 +Electron-alpha_thermal_Coulomb_log_at_point_235__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile235)_ 1.80995466326745849e+01 +Electron-alpha_thermal_Coulomb_log_at_point_236__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile236)_ 1.80971615996741484e+01 +Electron-alpha_thermal_Coulomb_log_at_point_237__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile237)_ 1.80947618800655654e+01 +Electron-alpha_thermal_Coulomb_log_at_point_238__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile238)_ 1.80923474045701838e+01 +Electron-alpha_thermal_Coulomb_log_at_point_239__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile239)_ 1.80899181033742522e+01 +Electron-alpha_thermal_Coulomb_log_at_point_240__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile240)_ 1.80874739061264016e+01 +Electron-alpha_thermal_Coulomb_log_at_point_241__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile241)_ 1.80850147419352183e+01 +Electron-alpha_thermal_Coulomb_log_at_point_242__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile242)_ 1.80825405393667964e+01 +Electron-alpha_thermal_Coulomb_log_at_point_243__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile243)_ 1.80800512264424249e+01 +Electron-alpha_thermal_Coulomb_log_at_point_244__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile244)_ 1.80775467306362394e+01 +Electron-alpha_thermal_Coulomb_log_at_point_245__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile245)_ 1.80750269788729874e+01 +Electron-alpha_thermal_Coulomb_log_at_point_246__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile246)_ 1.80724918975258042e+01 +Electron-alpha_thermal_Coulomb_log_at_point_247__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile247)_ 1.80699414124141065e+01 +Electron-alpha_thermal_Coulomb_log_at_point_248__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile248)_ 1.80673754488014637e+01 +Electron-alpha_thermal_Coulomb_log_at_point_249__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile249)_ 1.80647939313936234e+01 +Electron-alpha_thermal_Coulomb_log_at_point_250__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile250)_ 1.80621967843365354e+01 +Electron-alpha_thermal_Coulomb_log_at_point_251__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile251)_ 1.80595839312145081e+01 +Electron-alpha_thermal_Coulomb_log_at_point_252__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile252)_ 1.80569552950484145e+01 +Electron-alpha_thermal_Coulomb_log_at_point_253__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile253)_ 1.80543107982939510e+01 +Electron-alpha_thermal_Coulomb_log_at_point_254__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile254)_ 1.80516503628400713e+01 +Electron-alpha_thermal_Coulomb_log_at_point_255__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile255)_ 1.80489739100073905e+01 +Electron-alpha_thermal_Coulomb_log_at_point_256__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile256)_ 1.80462813605468071e+01 +Electron-alpha_thermal_Coulomb_log_at_point_257__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile257)_ 1.80435726346381315e+01 +Electron-alpha_thermal_Coulomb_log_at_point_258__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile258)_ 1.80408476518888818e+01 +Electron-alpha_thermal_Coulomb_log_at_point_259__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile259)_ 1.80381063313331538e+01 +Electron-alpha_thermal_Coulomb_log_at_point_260__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile260)_ 1.80353485914306262e+01 +Electron-alpha_thermal_Coulomb_log_at_point_261__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile261)_ 1.80325743500656870e+01 +Electron-alpha_thermal_Coulomb_log_at_point_262__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile262)_ 1.80297835245467084e+01 +Electron-alpha_thermal_Coulomb_log_at_point_263__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile263)_ 1.80269760316053897e+01 +Electron-alpha_thermal_Coulomb_log_at_point_264__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile264)_ 1.80241517873963311e+01 +Electron-alpha_thermal_Coulomb_log_at_point_265__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile265)_ 1.80213107074966956e+01 +Electron-alpha_thermal_Coulomb_log_at_point_266__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile266)_ 1.80184527069060572e+01 +Electron-alpha_thermal_Coulomb_log_at_point_267__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile267)_ 1.80155777000463857e+01 +Electron-alpha_thermal_Coulomb_log_at_point_268__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile268)_ 1.80126856007622251e+01 +Electron-alpha_thermal_Coulomb_log_at_point_269__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile269)_ 1.80097763223210379e+01 +Electron-alpha_thermal_Coulomb_log_at_point_270__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile270)_ 1.80068497774137626e+01 +Electron-alpha_thermal_Coulomb_log_at_point_271__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile271)_ 1.80039058781555177e+01 +Electron-alpha_thermal_Coulomb_log_at_point_272__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile272)_ 1.80009445360865463e+01 +Electron-alpha_thermal_Coulomb_log_at_point_273__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile273)_ 1.79979656621733781e+01 +Electron-alpha_thermal_Coulomb_log_at_point_274__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile274)_ 1.79949691668101828e+01 +Electron-alpha_thermal_Coulomb_log_at_point_275__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile275)_ 1.79919549598204007e+01 +Electron-alpha_thermal_Coulomb_log_at_point_276__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile276)_ 1.79889229504585728e+01 +Electron-alpha_thermal_Coulomb_log_at_point_277__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile277)_ 1.79858730474124648e+01 +Electron-alpha_thermal_Coulomb_log_at_point_278__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile278)_ 1.79828051588054088e+01 +Electron-alpha_thermal_Coulomb_log_at_point_279__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile279)_ 1.79797191921989814e+01 +Electron-alpha_thermal_Coulomb_log_at_point_280__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile280)_ 1.79766150545959285e+01 +Electron-alpha_thermal_Coulomb_log_at_point_281__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile281)_ 1.79734926524434044e+01 +Electron-alpha_thermal_Coulomb_log_at_point_282__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile282)_ 1.79703518916365432e+01 +Electron-alpha_thermal_Coulomb_log_at_point_283__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile283)_ 1.79671926775223127e+01 +Electron-alpha_thermal_Coulomb_log_at_point_284__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile284)_ 1.79640149149037711e+01 +Electron-alpha_thermal_Coulomb_log_at_point_285__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile285)_ 1.79608185080446354e+01 +Electron-alpha_thermal_Coulomb_log_at_point_286__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile286)_ 1.79576033606742591e+01 +Electron-alpha_thermal_Coulomb_log_at_point_287__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile287)_ 1.79543693759929539e+01 +Electron-alpha_thermal_Coulomb_log_at_point_288__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile288)_ 1.79511164566777630e+01 +Electron-alpha_thermal_Coulomb_log_at_point_289__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile289)_ 1.79478445048886392e+01 +Electron-alpha_thermal_Coulomb_log_at_point_290__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile290)_ 1.79445534222750638e+01 +Electron-alpha_thermal_Coulomb_log_at_point_291__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile291)_ 1.79412431099830947e+01 +Electron-alpha_thermal_Coulomb_log_at_point_292__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile292)_ 1.79379134686629733e+01 +Electron-alpha_thermal_Coulomb_log_at_point_293__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile293)_ 1.79345643984771463e+01 +Electron-alpha_thermal_Coulomb_log_at_point_294__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile294)_ 1.79311957991088420e+01 +Electron-alpha_thermal_Coulomb_log_at_point_295__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile295)_ 1.79278075697712076e+01 +Electron-alpha_thermal_Coulomb_log_at_point_296__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile296)_ 1.79243996092169802e+01 +Electron-alpha_thermal_Coulomb_log_at_point_297__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile297)_ 1.79209718157487501e+01 +Electron-alpha_thermal_Coulomb_log_at_point_298__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile298)_ 1.79175240872298716e+01 +Electron-alpha_thermal_Coulomb_log_at_point_299__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile299)_ 1.79140563210959485e+01 +Electron-alpha_thermal_Coulomb_log_at_point_300__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile300)_ 1.79105684143670558e+01 +Electron-alpha_thermal_Coulomb_log_at_point_301__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile301)_ 1.79070602636605791e+01 +Electron-alpha_thermal_Coulomb_log_at_point_302__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile302)_ 1.79035317652048747e+01 +Electron-alpha_thermal_Coulomb_log_at_point_303__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile303)_ 1.78999828148535549e+01 +Electron-alpha_thermal_Coulomb_log_at_point_304__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile304)_ 1.78964133081006658e+01 +Electron-alpha_thermal_Coulomb_log_at_point_305__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile305)_ 1.78928231400966276e+01 +Electron-alpha_thermal_Coulomb_log_at_point_306__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile306)_ 1.78892122056650145e+01 +Electron-alpha_thermal_Coulomb_log_at_point_307__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile307)_ 1.78855803993202471e+01 +Electron-alpha_thermal_Coulomb_log_at_point_308__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile308)_ 1.78819276152861946e+01 +Electron-alpha_thermal_Coulomb_log_at_point_309__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile309)_ 1.78782537475157319e+01 +Electron-alpha_thermal_Coulomb_log_at_point_310__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile310)_ 1.78745586897112823e+01 +Electron-alpha_thermal_Coulomb_log_at_point_311__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile311)_ 1.78708423353464170e+01 +Electron-alpha_thermal_Coulomb_log_at_point_312__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile312)_ 1.78671045776885364e+01 +Electron-alpha_thermal_Coulomb_log_at_point_313__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile313)_ 1.78633453098226518e+01 +Electron-alpha_thermal_Coulomb_log_at_point_314__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile314)_ 1.78595644246763818e+01 +Electron-alpha_thermal_Coulomb_log_at_point_315__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile315)_ 1.78557618150461046e+01 +Electron-alpha_thermal_Coulomb_log_at_point_316__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile316)_ 1.78519373736244589e+01 +Electron-alpha_thermal_Coulomb_log_at_point_317__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile317)_ 1.78480909930291212e+01 +Electron-alpha_thermal_Coulomb_log_at_point_318__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile318)_ 1.78442225658329399e+01 +Electron-alpha_thermal_Coulomb_log_at_point_319__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile319)_ 1.78403319845955615e+01 +Electron-alpha_thermal_Coulomb_log_at_point_320__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile320)_ 1.78364191418965170e+01 +Electron-alpha_thermal_Coulomb_log_at_point_321__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile321)_ 1.78324839303698397e+01 +Electron-alpha_thermal_Coulomb_log_at_point_322__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile322)_ 1.78285262427403666e+01 +Electron-alpha_thermal_Coulomb_log_at_point_323__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile323)_ 1.78245459718616530e+01 +Electron-alpha_thermal_Coulomb_log_at_point_324__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile324)_ 1.78205430107557063e+01 +Electron-alpha_thermal_Coulomb_log_at_point_325__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile325)_ 1.78165172526544957e+01 +Electron-alpha_thermal_Coulomb_log_at_point_326__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile326)_ 1.78124685910433946e+01 +Electron-alpha_thermal_Coulomb_log_at_point_327__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile327)_ 1.78083969197066061e+01 +Electron-alpha_thermal_Coulomb_log_at_point_328__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile328)_ 1.78043021327746303e+01 +Electron-alpha_thermal_Coulomb_log_at_point_329__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile329)_ 1.78001841247739065e+01 +Electron-alpha_thermal_Coulomb_log_at_point_330__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile330)_ 1.77960427906786833e+01 +Electron-alpha_thermal_Coulomb_log_at_point_331__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile331)_ 1.77918780259652216e+01 +Electron-alpha_thermal_Coulomb_log_at_point_332__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile332)_ 1.77876897266684146e+01 +Electron-alpha_thermal_Coulomb_log_at_point_333__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile333)_ 1.77834777894409619e+01 +Electron-alpha_thermal_Coulomb_log_at_point_334__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile334)_ 1.77792421116151544e+01 +Electron-alpha_thermal_Coulomb_log_at_point_335__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile335)_ 1.77749825912674027e+01 +Electron-alpha_thermal_Coulomb_log_at_point_336__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile336)_ 1.77706991272856847e+01 +Electron-alpha_thermal_Coulomb_log_at_point_337__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile337)_ 1.77663916194398617e+01 +Electron-alpha_thermal_Coulomb_log_at_point_338__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile338)_ 1.77620599684551799e+01 +Electron-alpha_thermal_Coulomb_log_at_point_339__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile339)_ 1.77577040760890092e+01 +Electron-alpha_thermal_Coulomb_log_at_point_340__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile340)_ 1.77533238452108826e+01 +Electron-alpha_thermal_Coulomb_log_at_point_341__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile341)_ 1.77489191798861192e+01 +Electron-alpha_thermal_Coulomb_log_at_point_342__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile342)_ 1.77444899854630442e+01 +Electron-alpha_thermal_Coulomb_log_at_point_343__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile343)_ 1.77400361686640800e+01 +Electron-alpha_thermal_Coulomb_log_at_point_344__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile344)_ 1.77355576376807349e+01 +Electron-alpha_thermal_Coulomb_log_at_point_345__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile345)_ 1.77310543022728346e+01 +Electron-alpha_thermal_Coulomb_log_at_point_346__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile346)_ 1.77265260738719164e+01 +Electron-alpha_thermal_Coulomb_log_at_point_347__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile347)_ 1.77219728656893238e+01 +Electron-alpha_thermal_Coulomb_log_at_point_348__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile348)_ 1.77173945928287608e+01 +Electron-alpha_thermal_Coulomb_log_at_point_349__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile349)_ 1.77127911724039500e+01 +Electron-alpha_thermal_Coulomb_log_at_point_350__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile350)_ 1.77081625236612155e+01 +Electron-alpha_thermal_Coulomb_log_at_point_351__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile351)_ 1.77035085681074804e+01 +Electron-alpha_thermal_Coulomb_log_at_point_352__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile352)_ 1.76988292296437777e+01 +Electron-alpha_thermal_Coulomb_log_at_point_353__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile353)_ 1.76941244347045092e+01 +Electron-alpha_thermal_Coulomb_log_at_point_354__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile354)_ 1.76893941124027698e+01 +Electron-alpha_thermal_Coulomb_log_at_point_355__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile355)_ 1.76846381946819555e+01 +Electron-alpha_thermal_Coulomb_log_at_point_356__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile356)_ 1.76798566164738737e+01 +Electron-alpha_thermal_Coulomb_log_at_point_357__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile357)_ 1.76750493158637525e+01 +Electron-alpha_thermal_Coulomb_log_at_point_358__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile358)_ 1.76702162342623623e+01 +Electron-alpha_thermal_Coulomb_log_at_point_359__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile359)_ 1.76653573165855882e+01 +Electron-alpha_thermal_Coulomb_log_at_point_360__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile360)_ 1.76604725114417143e+01 +Electron-alpha_thermal_Coulomb_log_at_point_361__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile361)_ 1.76555617713269086e+01 +Electron-alpha_thermal_Coulomb_log_at_point_362__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile362)_ 1.76506250528290956e+01 +Electron-alpha_thermal_Coulomb_log_at_point_363__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile363)_ 1.76456623168406708e+01 +Electron-alpha_thermal_Coulomb_log_at_point_364__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile364)_ 1.76406735287804750e+01 +Electron-alpha_thermal_Coulomb_log_at_point_365__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile365)_ 1.76356586588253101e+01 +Electron-alpha_thermal_Coulomb_log_at_point_366__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile366)_ 1.76306176821515947e+01 +Electron-alpha_thermal_Coulomb_log_at_point_367__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile367)_ 1.76255505791874327e+01 +Electron-alpha_thermal_Coulomb_log_at_point_368__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile368)_ 1.76204573358756988e+01 +Electron-alpha_thermal_Coulomb_log_at_point_369__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile369)_ 1.76153379439485107e+01 +Electron-alpha_thermal_Coulomb_log_at_point_370__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile370)_ 1.76101924012137374e+01 +Electron-alpha_thermal_Coulomb_log_at_point_371__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile371)_ 1.76050207118539248e+01 +Electron-alpha_thermal_Coulomb_log_at_point_372__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile372)_ 1.75998228867382558e+01 +Electron-alpha_thermal_Coulomb_log_at_point_373__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile373)_ 1.75945989437482702e+01 +Electron-alpha_thermal_Coulomb_log_at_point_374__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile374)_ 1.75893489081177101e+01 +Electron-alpha_thermal_Coulomb_log_at_point_375__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile375)_ 1.75840728127873192e+01 +Electron-alpha_thermal_Coulomb_log_at_point_376__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile376)_ 1.75787706987752657e+01 +Electron-alpha_thermal_Coulomb_log_at_point_377__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile377)_ 1.75734426155637422e+01 +Electron-alpha_thermal_Coulomb_log_at_point_378__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile378)_ 1.75680886215027137e+01 +Electron-alpha_thermal_Coulomb_log_at_point_379__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile379)_ 1.75627087842314644e+01 +Electron-alpha_thermal_Coulomb_log_at_point_380__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile380)_ 1.75573031811187263e+01 +Electron-alpha_thermal_Coulomb_log_at_point_381__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile381)_ 1.75518718997223679e+01 +Electron-alpha_thermal_Coulomb_log_at_point_382__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile382)_ 1.75464150382695081e+01 +Electron-alpha_thermal_Coulomb_log_at_point_383__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile383)_ 1.75409327061579852e+01 +Electron-alpha_thermal_Coulomb_log_at_point_384__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile384)_ 1.75354250244801655e+01 +Electron-alpha_thermal_Coulomb_log_at_point_385__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile385)_ 1.75298921265702461e+01 +Electron-alpha_thermal_Coulomb_log_at_point_386__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile386)_ 1.75243341585760390e+01 +Electron-alpha_thermal_Coulomb_log_at_point_387__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile387)_ 1.75187512800565308e+01 +Electron-alpha_thermal_Coulomb_log_at_point_388__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile388)_ 1.75131436646063037e+01 +Electron-alpha_thermal_Coulomb_log_at_point_389__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile389)_ 1.75075115005082438e+01 +Electron-alpha_thermal_Coulomb_log_at_point_390__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile390)_ 1.75018549914158577e+01 +Electron-alpha_thermal_Coulomb_log_at_point_391__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile391)_ 1.74961743570666179e+01 +Electron-alpha_thermal_Coulomb_log_at_point_392__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile392)_ 1.74904698340278379e+01 +Electron-alpha_thermal_Coulomb_log_at_point_393__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile393)_ 1.74847416764768013e+01 +Electron-alpha_thermal_Coulomb_log_at_point_394__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile394)_ 1.74789901570166784e+01 +Electron-alpha_thermal_Coulomb_log_at_point_395__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile395)_ 1.74732155675301186e+01 +Electron-alpha_thermal_Coulomb_log_at_point_396__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile396)_ 1.74674182200724495e+01 +Electron-alpha_thermal_Coulomb_log_at_point_397__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile397)_ 1.74615984478063169e+01 +Electron-alpha_thermal_Coulomb_log_at_point_398__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile398)_ 1.74557566059800990e+01 +Electron-alpha_thermal_Coulomb_log_at_point_399__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile399)_ 1.74498930729521931e+01 +Electron-alpha_thermal_Coulomb_log_at_point_400__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile400)_ 1.74440082512636323e+01 +Electron-alpha_thermal_Coulomb_log_at_point_401__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile401)_ 1.74381025687615221e+01 +Electron-alpha_thermal_Coulomb_log_at_point_402__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile402)_ 1.74321764797760075e+01 +Electron-alpha_thermal_Coulomb_log_at_point_403__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile403)_ 1.74262304663536263e+01 +Electron-alpha_thermal_Coulomb_log_at_point_404__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile404)_ 1.74202650395500740e+01 +Electron-alpha_thermal_Coulomb_log_at_point_405__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile405)_ 1.74142807407856530e+01 +Electron-alpha_thermal_Coulomb_log_at_point_406__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile406)_ 1.74082781432668128e+01 +Electron-alpha_thermal_Coulomb_log_at_point_407__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile407)_ 1.74022578534775221e+01 +Electron-alpha_thermal_Coulomb_log_at_point_408__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile408)_ 1.73962205127443852e+01 +Electron-alpha_thermal_Coulomb_log_at_point_409__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile409)_ 1.73901667988796866e+01 +Electron-alpha_thermal_Coulomb_log_at_point_410__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile410)_ 1.73840974279070366e+01 +Electron-alpha_thermal_Coulomb_log_at_point_411__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile411)_ 1.73780131558742781e+01 +Electron-alpha_thermal_Coulomb_log_at_point_412__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile412)_ 1.73719147807590097e+01 +Electron-alpha_thermal_Coulomb_log_at_point_413__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile413)_ 1.73658031444722951e+01 +Electron-alpha_thermal_Coulomb_log_at_point_414__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile414)_ 1.73596791349666439e+01 +Electron-alpha_thermal_Coulomb_log_at_point_415__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile415)_ 1.73535436884548702e+01 +Electron-alpha_thermal_Coulomb_log_at_point_416__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile416)_ 1.73473977917467366e+01 +Electron-alpha_thermal_Coulomb_log_at_point_417__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile417)_ 1.73412424847113229e+01 +Electron-alpha_thermal_Coulomb_log_at_point_418__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile418)_ 1.73350788628733277e+01 +Electron-alpha_thermal_Coulomb_log_at_point_419__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile419)_ 1.73289080801524236e+01 +Electron-alpha_thermal_Coulomb_log_at_point_420__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile420)_ 1.73227313517557207e+01 +Electron-alpha_thermal_Coulomb_log_at_point_421__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile421)_ 1.73165499572340877e+01 +Electron-alpha_thermal_Coulomb_log_at_point_422__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile422)_ 1.73103652437143190e+01 +Electron-alpha_thermal_Coulomb_log_at_point_423__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile423)_ 1.73041786293204041e+01 +Electron-alpha_thermal_Coulomb_log_at_point_424__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile424)_ 1.72979916067982238e+01 +Electron-alpha_thermal_Coulomb_log_at_point_425__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile425)_ 1.72918057473597599e+01 +Electron-alpha_thermal_Coulomb_log_at_point_426__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile426)_ 1.72856227047647195e+01 +Electron-alpha_thermal_Coulomb_log_at_point_427__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile427)_ 1.72794442196591724e+01 +Electron-alpha_thermal_Coulomb_log_at_point_428__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile428)_ 1.72732721241935288e+01 +Electron-alpha_thermal_Coulomb_log_at_point_429__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile429)_ 1.72671083469444291e+01 +Electron-alpha_thermal_Coulomb_log_at_point_430__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile430)_ 1.72609549181685082e+01 +Electron-alpha_thermal_Coulomb_log_at_point_431__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile431)_ 1.72548139754194061e+01 +Electron-alpha_thermal_Coulomb_log_at_point_432__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile432)_ 1.72486877695636345e+01 +Electron-alpha_thermal_Coulomb_log_at_point_433__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile433)_ 1.72425786712356768e+01 +Electron-alpha_thermal_Coulomb_log_at_point_434__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile434)_ 1.72364891777786298e+01 +Electron-alpha_thermal_Coulomb_log_at_point_435__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile435)_ 1.72304219207231561e+01 +Electron-alpha_thermal_Coulomb_log_at_point_436__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile436)_ 1.72243796738659114e+01 +Electron-alpha_thermal_Coulomb_log_at_point_437__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile437)_ 1.72183653620177850e+01 +Electron-alpha_thermal_Coulomb_log_at_point_438__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile438)_ 1.72123820705040416e+01 +Electron-alpha_thermal_Coulomb_log_at_point_439__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile439)_ 1.72064330555120684e+01 +Electron-alpha_thermal_Coulomb_log_at_point_440__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile440)_ 1.72005217553990626e+01 +Electron-alpha_thermal_Coulomb_log_at_point_441__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile441)_ 1.71946518030925830e+01 +Electron-alpha_thermal_Coulomb_log_at_point_442__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile442)_ 1.71888270397413017e+01 +Electron-alpha_thermal_Coulomb_log_at_point_443__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile443)_ 1.71830515298044162e+01 +Electron-alpha_thermal_Coulomb_log_at_point_444__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile444)_ 1.71773295778058532e+01 +Electron-alpha_thermal_Coulomb_log_at_point_445__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile445)_ 1.71716657470273191e+01 +Electron-alpha_thermal_Coulomb_log_at_point_446__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile446)_ 1.71660648804740106e+01 +Electron-alpha_thermal_Coulomb_log_at_point_447__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile447)_ 1.71605321245231828e+01 +Electron-alpha_thermal_Coulomb_log_at_point_448__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile448)_ 1.71550729557636217e+01 +Electron-alpha_thermal_Coulomb_log_at_point_449__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile449)_ 1.71496932116606686e+01 +Electron-alpha_thermal_Coulomb_log_at_point_450__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile450)_ 1.71443991258477020e+01 +Electron-alpha_thermal_Coulomb_log_at_point_451__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile451)_ 1.71391973690643624e+01 +Electron-alpha_thermal_Coulomb_log_at_point_452__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile452)_ 1.71340950970571839e+01 +Electron-alpha_thermal_Coulomb_log_at_point_453__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile453)_ 1.71291000071591668e+01 +Electron-alpha_thermal_Coulomb_log_at_point_454__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile454)_ 1.71242204058187539e+01 +Electron-alpha_thermal_Coulomb_log_at_point_455__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile455)_ 1.71194652901275930e+01 +Electron-alpha_thermal_Coulomb_log_at_point_456__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile456)_ 1.71148444475103574e+01 +Electron-alpha_thermal_Coulomb_log_at_point_457__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile457)_ 1.71103685793699825e+01 +Electron-alpha_thermal_Coulomb_log_at_point_458__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile458)_ 1.71060494569221753e+01 +Electron-alpha_thermal_Coulomb_log_at_point_459__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile459)_ 1.71019001212095247e+01 +Electron-alpha_thermal_Coulomb_log_at_point_460__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile460)_ 1.70979351452499309e+01 +Electron-alpha_thermal_Coulomb_log_at_point_461__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile461)_ 1.70941709860950013e+01 +Electron-alpha_thermal_Coulomb_log_at_point_462__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile462)_ 1.70906264714495464e+01 +Electron-alpha_thermal_Coulomb_log_at_point_463__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile463)_ 1.70873234960213054e+01 +Electron-alpha_thermal_Coulomb_log_at_point_464__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile464)_ 1.70842880615000041e+01 +Electron-alpha_thermal_Coulomb_log_at_point_465__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile465)_ 1.70815519162326623e+01 +Electron-alpha_thermal_Coulomb_log_at_point_466__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile466)_ 1.70791553316697033e+01 +Electron-alpha_thermal_Coulomb_log_at_point_467__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile467)_ 1.70771522934384343e+01 +Electron-alpha_thermal_Coulomb_log_at_point_468__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile468)_ 1.70756217681636890e+01 +Electron-alpha_thermal_Coulomb_log_at_point_469__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile469)_ 1.70746994283426616e+01 +Electron-alpha_thermal_Coulomb_log_at_point_470__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile470)_ 1.70747722584430122e+01 +Electron-alpha_thermal_Coulomb_log_at_point_471__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile471)_ 1.70486686729037231e+01 +Electron-alpha_thermal_Coulomb_log_at_point_472__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile472)_ 1.70215166024323103e+01 +Electron-alpha_thermal_Coulomb_log_at_point_473__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile473)_ 1.69932371203255670e+01 +Electron-alpha_thermal_Coulomb_log_at_point_474__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile474)_ 1.69637423581529738e+01 +Electron-alpha_thermal_Coulomb_log_at_point_475__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile475)_ 1.69329341209312751e+01 +Electron-alpha_thermal_Coulomb_log_at_point_476__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile476)_ 1.69007022248725143e+01 +Electron-alpha_thermal_Coulomb_log_at_point_477__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile477)_ 1.68669224883647608e+01 +Electron-alpha_thermal_Coulomb_log_at_point_478__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile478)_ 1.68314542857587846e+01 +Electron-alpha_thermal_Coulomb_log_at_point_479__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile479)_ 1.67941375447898693e+01 +Electron-alpha_thermal_Coulomb_log_at_point_480__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile480)_ 1.67547890287802304e+01 +Electron-alpha_thermal_Coulomb_log_at_point_481__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile481)_ 1.67131976892288456e+01 +Electron-alpha_thermal_Coulomb_log_at_point_482__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile482)_ 1.66691187954972264e+01 +Electron-alpha_thermal_Coulomb_log_at_point_483__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile483)_ 1.66222664343739304e+01 +Electron-alpha_thermal_Coulomb_log_at_point_484__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile484)_ 1.65723038048215692e+01 +Electron-alpha_thermal_Coulomb_log_at_point_485__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile485)_ 1.65188304820801619e+01 +Electron-alpha_thermal_Coulomb_log_at_point_486__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile486)_ 1.64613654403672882e+01 +Electron-alpha_thermal_Coulomb_log_at_point_487__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile487)_ 1.63993240187247373e+01 +Electron-alpha_thermal_Coulomb_log_at_point_488__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile488)_ 1.63319860380507400e+01 +Electron-alpha_thermal_Coulomb_log_at_point_489__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile489)_ 1.62584506502507971e+01 +Electron-alpha_thermal_Coulomb_log_at_point_490__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile490)_ 1.61775706904499934e+01 +Electron-alpha_thermal_Coulomb_log_at_point_491__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile491)_ 1.60878542453397593e+01 +Electron-alpha_thermal_Coulomb_log_at_point_492__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile492)_ 1.59873115949924482e+01 +Electron-alpha_thermal_Coulomb_log_at_point_493__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile493)_ 1.58732065628629488e+01 +Electron-alpha_thermal_Coulomb_log_at_point_494__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile494)_ 1.57416302823440830e+01 +Electron-alpha_thermal_Coulomb_log_at_point_495__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile495)_ 1.55867194427067037e+01 +Electron-alpha_thermal_Coulomb_log_at_point_496__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile496)_ 1.53990905700457166e+01 +Electron-alpha_thermal_Coulomb_log_at_point_497__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile497)_ 1.51623043613133444e+01 +Electron-alpha_thermal_Coulomb_log_at_point_498__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile498)_ 1.48433505638830034e+01 +Electron-alpha_thermal_Coulomb_log_at_point_499__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile499)_ 1.43584502259248783e+01 +Electron-alpha_thermal_Coulomb_log_at_point_500__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile500)_ 1.29515958626762746e+01 +Volume_averaged_electron-electron_collision_time_(τₑₑ)_(s)_______________ (t_plasma_electron_electron_collision_vol_avg)_ 6.93530117822094673e-04 OP +Electron-electron_collision_time_at_point_0______________________________ (t_plasma_electron_electron_collision_profile0)_ 1.52359441383684052e-03 +Electron-electron_collision_time_at_point_1______________________________ (t_plasma_electron_electron_collision_profile1)_ 1.52358568244914086e-03 +Electron-electron_collision_time_at_point_2______________________________ (t_plasma_electron_electron_collision_profile2)_ 1.52355948840050760e-03 +Electron-electron_collision_time_at_point_3______________________________ (t_plasma_electron_electron_collision_profile3)_ 1.52351583203434314e-03 +Electron-electron_collision_time_at_point_4______________________________ (t_plasma_electron_electron_collision_profile4)_ 1.52345471392299823e-03 +Electron-electron_collision_time_at_point_5______________________________ (t_plasma_electron_electron_collision_profile5)_ 1.52337613486779348e-03 +Electron-electron_collision_time_at_point_6______________________________ (t_plasma_electron_electron_collision_profile6)_ 1.52328009589904707e-03 +Electron-electron_collision_time_at_point_7______________________________ (t_plasma_electron_electron_collision_profile7)_ 1.52316659827611491e-03 +Electron-electron_collision_time_at_point_8______________________________ (t_plasma_electron_electron_collision_profile8)_ 1.52303564348743310e-03 +Electron-electron_collision_time_at_point_9______________________________ (t_plasma_electron_electron_collision_profile9)_ 1.52288723325057630e-03 +Electron-electron_collision_time_at_point_10_____________________________ (t_plasma_electron_electron_collision_profile10)_ 1.52272136951231646e-03 +Electron-electron_collision_time_at_point_11_____________________________ (t_plasma_electron_electron_collision_profile11)_ 1.52253805444869657e-03 +Electron-electron_collision_time_at_point_12_____________________________ (t_plasma_electron_electron_collision_profile12)_ 1.52233729046510739e-03 +Electron-electron_collision_time_at_point_13_____________________________ (t_plasma_electron_electron_collision_profile13)_ 1.52211908019637921e-03 +Electron-electron_collision_time_at_point_14_____________________________ (t_plasma_electron_electron_collision_profile14)_ 1.52188342650687162e-03 +Electron-electron_collision_time_at_point_15_____________________________ (t_plasma_electron_electron_collision_profile15)_ 1.52163033249058427e-03 +Electron-electron_collision_time_at_point_16_____________________________ (t_plasma_electron_electron_collision_profile16)_ 1.52135980147126686e-03 +Electron-electron_collision_time_at_point_17_____________________________ (t_plasma_electron_electron_collision_profile17)_ 1.52107183700253882e-03 +Electron-electron_collision_time_at_point_18_____________________________ (t_plasma_electron_electron_collision_profile18)_ 1.52076644286802351e-03 +Electron-electron_collision_time_at_point_19_____________________________ (t_plasma_electron_electron_collision_profile19)_ 1.52044362308148225e-03 +Electron-electron_collision_time_at_point_20_____________________________ (t_plasma_electron_electron_collision_profile20)_ 1.52010338188696050e-03 +Electron-electron_collision_time_at_point_21_____________________________ (t_plasma_electron_electron_collision_profile21)_ 1.51974572375894825e-03 +Electron-electron_collision_time_at_point_22_____________________________ (t_plasma_electron_electron_collision_profile22)_ 1.51937065340253599e-03 +Electron-electron_collision_time_at_point_23_____________________________ (t_plasma_electron_electron_collision_profile23)_ 1.51897817575359162e-03 +Electron-electron_collision_time_at_point_24_____________________________ (t_plasma_electron_electron_collision_profile24)_ 1.51856829597894131e-03 +Electron-electron_collision_time_at_point_25_____________________________ (t_plasma_electron_electron_collision_profile25)_ 1.51814101947655468e-03 +Electron-electron_collision_time_at_point_26_____________________________ (t_plasma_electron_electron_collision_profile26)_ 1.51769635187574319e-03 +Electron-electron_collision_time_at_point_27_____________________________ (t_plasma_electron_electron_collision_profile27)_ 1.51723429903737029e-03 +Electron-electron_collision_time_at_point_28_____________________________ (t_plasma_electron_electron_collision_profile28)_ 1.51675486705405869e-03 +Electron-electron_collision_time_at_point_29_____________________________ (t_plasma_electron_electron_collision_profile29)_ 1.51625806225042133e-03 +Electron-electron_collision_time_at_point_30_____________________________ (t_plasma_electron_electron_collision_profile30)_ 1.51574389118328489e-03 +Electron-electron_collision_time_at_point_31_____________________________ (t_plasma_electron_electron_collision_profile31)_ 1.51521236064193639e-03 +Electron-electron_collision_time_at_point_32_____________________________ (t_plasma_electron_electron_collision_profile32)_ 1.51466347764836928e-03 +Electron-electron_collision_time_at_point_33_____________________________ (t_plasma_electron_electron_collision_profile33)_ 1.51409724945754148e-03 +Electron-electron_collision_time_at_point_34_____________________________ (t_plasma_electron_electron_collision_profile34)_ 1.51351368355764058e-03 +Electron-electron_collision_time_at_point_35_____________________________ (t_plasma_electron_electron_collision_profile35)_ 1.51291278767035965e-03 +Electron-electron_collision_time_at_point_36_____________________________ (t_plasma_electron_electron_collision_profile36)_ 1.51229456975117958e-03 +Electron-electron_collision_time_at_point_37_____________________________ (t_plasma_electron_electron_collision_profile37)_ 1.51165903798966355e-03 +Electron-electron_collision_time_at_point_38_____________________________ (t_plasma_electron_electron_collision_profile38)_ 1.51100620080975561e-03 +Electron-electron_collision_time_at_point_39_____________________________ (t_plasma_electron_electron_collision_profile39)_ 1.51033606687009099e-03 +Electron-electron_collision_time_at_point_40_____________________________ (t_plasma_electron_electron_collision_profile40)_ 1.50964864506431527e-03 +Electron-electron_collision_time_at_point_41_____________________________ (t_plasma_electron_electron_collision_profile41)_ 1.50894394452141117e-03 +Electron-electron_collision_time_at_point_42_____________________________ (t_plasma_electron_electron_collision_profile42)_ 1.50822197460603489e-03 +Electron-electron_collision_time_at_point_43_____________________________ (t_plasma_electron_electron_collision_profile43)_ 1.50748274491886041e-03 +Electron-electron_collision_time_at_point_44_____________________________ (t_plasma_electron_electron_collision_profile44)_ 1.50672626529693623e-03 +Electron-electron_collision_time_at_point_45_____________________________ (t_plasma_electron_electron_collision_profile45)_ 1.50595254581404291e-03 +Electron-electron_collision_time_at_point_46_____________________________ (t_plasma_electron_electron_collision_profile46)_ 1.50516159678106974e-03 +Electron-electron_collision_time_at_point_47_____________________________ (t_plasma_electron_electron_collision_profile47)_ 1.50435342874639401e-03 +Electron-electron_collision_time_at_point_48_____________________________ (t_plasma_electron_electron_collision_profile48)_ 1.50352805249627020e-03 +Electron-electron_collision_time_at_point_49_____________________________ (t_plasma_electron_electron_collision_profile49)_ 1.50268547905522899e-03 +Electron-electron_collision_time_at_point_50_____________________________ (t_plasma_electron_electron_collision_profile50)_ 1.50182571968648579e-03 +Electron-electron_collision_time_at_point_51_____________________________ (t_plasma_electron_electron_collision_profile51)_ 1.50094878589235661e-03 +Electron-electron_collision_time_at_point_52_____________________________ (t_plasma_electron_electron_collision_profile52)_ 1.50005468941468508e-03 +Electron-electron_collision_time_at_point_53_____________________________ (t_plasma_electron_electron_collision_profile53)_ 1.49914344223527887e-03 +Electron-electron_collision_time_at_point_54_____________________________ (t_plasma_electron_electron_collision_profile54)_ 1.49821505657635212e-03 +Electron-electron_collision_time_at_point_55_____________________________ (t_plasma_electron_electron_collision_profile55)_ 1.49726954490097945e-03 +Electron-electron_collision_time_at_point_56_____________________________ (t_plasma_electron_electron_collision_profile56)_ 1.49630691991356024e-03 +Electron-electron_collision_time_at_point_57_____________________________ (t_plasma_electron_electron_collision_profile57)_ 1.49532719456028983e-03 +Electron-electron_collision_time_at_point_58_____________________________ (t_plasma_electron_electron_collision_profile58)_ 1.49433038202964456e-03 +Electron-electron_collision_time_at_point_59_____________________________ (t_plasma_electron_electron_collision_profile59)_ 1.49331649575286667e-03 +Electron-electron_collision_time_at_point_60_____________________________ (t_plasma_electron_electron_collision_profile60)_ 1.49228554940447015e-03 +Electron-electron_collision_time_at_point_61_____________________________ (t_plasma_electron_electron_collision_profile61)_ 1.49123755690274903e-03 +Electron-electron_collision_time_at_point_62_____________________________ (t_plasma_electron_electron_collision_profile62)_ 1.49017253241029608e-03 +Electron-electron_collision_time_at_point_63_____________________________ (t_plasma_electron_electron_collision_profile63)_ 1.48909049033453447e-03 +Electron-electron_collision_time_at_point_64_____________________________ (t_plasma_electron_electron_collision_profile64)_ 1.48799144532825250e-03 +Electron-electron_collision_time_at_point_65_____________________________ (t_plasma_electron_electron_collision_profile65)_ 1.48687541229015636e-03 +Electron-electron_collision_time_at_point_66_____________________________ (t_plasma_electron_electron_collision_profile66)_ 1.48574240636542543e-03 +Electron-electron_collision_time_at_point_67_____________________________ (t_plasma_electron_electron_collision_profile67)_ 1.48459244294627955e-03 +Electron-electron_collision_time_at_point_68_____________________________ (t_plasma_electron_electron_collision_profile68)_ 1.48342553767255776e-03 +Electron-electron_collision_time_at_point_69_____________________________ (t_plasma_electron_electron_collision_profile69)_ 1.48224170643230721e-03 +Electron-electron_collision_time_at_point_70_____________________________ (t_plasma_electron_electron_collision_profile70)_ 1.48104096536237758e-03 +Electron-electron_collision_time_at_point_71_____________________________ (t_plasma_electron_electron_collision_profile71)_ 1.47982333084902928e-03 +Electron-electron_collision_time_at_point_72_____________________________ (t_plasma_electron_electron_collision_profile72)_ 1.47858881952855057e-03 +Electron-electron_collision_time_at_point_73_____________________________ (t_plasma_electron_electron_collision_profile73)_ 1.47733744828788620e-03 +Electron-electron_collision_time_at_point_74_____________________________ (t_plasma_electron_electron_collision_profile74)_ 1.47606923426527232e-03 +Electron-electron_collision_time_at_point_75_____________________________ (t_plasma_electron_electron_collision_profile75)_ 1.47478419485088308e-03 +Electron-electron_collision_time_at_point_76_____________________________ (t_plasma_electron_electron_collision_profile76)_ 1.47348234768749330e-03 +Electron-electron_collision_time_at_point_77_____________________________ (t_plasma_electron_electron_collision_profile77)_ 1.47216371067113920e-03 +Electron-electron_collision_time_at_point_78_____________________________ (t_plasma_electron_electron_collision_profile78)_ 1.47082830195180208e-03 +Electron-electron_collision_time_at_point_79_____________________________ (t_plasma_electron_electron_collision_profile79)_ 1.46947613993409464e-03 +Electron-electron_collision_time_at_point_80_____________________________ (t_plasma_electron_electron_collision_profile80)_ 1.46810724327795894e-03 +Electron-electron_collision_time_at_point_81_____________________________ (t_plasma_electron_electron_collision_profile81)_ 1.46672163089937510e-03 +Electron-electron_collision_time_at_point_82_____________________________ (t_plasma_electron_electron_collision_profile82)_ 1.46531932197108399e-03 +Electron-electron_collision_time_at_point_83_____________________________ (t_plasma_electron_electron_collision_profile83)_ 1.46390033592331431e-03 +Electron-electron_collision_time_at_point_84_____________________________ (t_plasma_electron_electron_collision_profile84)_ 1.46246469244452719e-03 +Electron-electron_collision_time_at_point_85_____________________________ (t_plasma_electron_electron_collision_profile85)_ 1.46101241148216369e-03 +Electron-electron_collision_time_at_point_86_____________________________ (t_plasma_electron_electron_collision_profile86)_ 1.45954351324340892e-03 +Electron-electron_collision_time_at_point_87_____________________________ (t_plasma_electron_electron_collision_profile87)_ 1.45805801819596549e-03 +Electron-electron_collision_time_at_point_88_____________________________ (t_plasma_electron_electron_collision_profile88)_ 1.45655594706883764e-03 +Electron-electron_collision_time_at_point_89_____________________________ (t_plasma_electron_electron_collision_profile89)_ 1.45503732085312657e-03 +Electron-electron_collision_time_at_point_90_____________________________ (t_plasma_electron_electron_collision_profile90)_ 1.45350216080283499e-03 +Electron-electron_collision_time_at_point_91_____________________________ (t_plasma_electron_electron_collision_profile91)_ 1.45195048843568494e-03 +Electron-electron_collision_time_at_point_92_____________________________ (t_plasma_electron_electron_collision_profile92)_ 1.45038232553394643e-03 +Electron-electron_collision_time_at_point_93_____________________________ (t_plasma_electron_electron_collision_profile93)_ 1.44879769414527700e-03 +Electron-electron_collision_time_at_point_94_____________________________ (t_plasma_electron_electron_collision_profile94)_ 1.44719661658357130e-03 +Electron-electron_collision_time_at_point_95_____________________________ (t_plasma_electron_electron_collision_profile95)_ 1.44557911542982477e-03 +Electron-electron_collision_time_at_point_96_____________________________ (t_plasma_electron_electron_collision_profile96)_ 1.44394521353300581e-03 +Electron-electron_collision_time_at_point_97_____________________________ (t_plasma_electron_electron_collision_profile97)_ 1.44229493401094150e-03 +Electron-electron_collision_time_at_point_98_____________________________ (t_plasma_electron_electron_collision_profile98)_ 1.44062830025121322e-03 +Electron-electron_collision_time_at_point_99_____________________________ (t_plasma_electron_electron_collision_profile99)_ 1.43894533591206841e-03 +Electron-electron_collision_time_at_point_100____________________________ (t_plasma_electron_electron_collision_profile100)_ 1.43724606492333438e-03 +Electron-electron_collision_time_at_point_101____________________________ (t_plasma_electron_electron_collision_profile101)_ 1.43553051148735678e-03 +Electron-electron_collision_time_at_point_102____________________________ (t_plasma_electron_electron_collision_profile102)_ 1.43379870007993631e-03 +Electron-electron_collision_time_at_point_103____________________________ (t_plasma_electron_electron_collision_profile103)_ 1.43205065545129267e-03 +Electron-electron_collision_time_at_point_104____________________________ (t_plasma_electron_electron_collision_profile104)_ 1.43028640262702483e-03 +Electron-electron_collision_time_at_point_105____________________________ (t_plasma_electron_electron_collision_profile105)_ 1.42850596690909451e-03 +Electron-electron_collision_time_at_point_106____________________________ (t_plasma_electron_electron_collision_profile106)_ 1.42670937387681792e-03 +Electron-electron_collision_time_at_point_107____________________________ (t_plasma_electron_electron_collision_profile107)_ 1.42489664938786850e-03 +Electron-electron_collision_time_at_point_108____________________________ (t_plasma_electron_electron_collision_profile108)_ 1.42306781957929709e-03 +Electron-electron_collision_time_at_point_109____________________________ (t_plasma_electron_electron_collision_profile109)_ 1.42122291086855613e-03 +Electron-electron_collision_time_at_point_110____________________________ (t_plasma_electron_electron_collision_profile110)_ 1.41936194995454608e-03 +Electron-electron_collision_time_at_point_111____________________________ (t_plasma_electron_electron_collision_profile111)_ 1.41748496381866626e-03 +Electron-electron_collision_time_at_point_112____________________________ (t_plasma_electron_electron_collision_profile112)_ 1.41559197972588712e-03 +Electron-electron_collision_time_at_point_113____________________________ (t_plasma_electron_electron_collision_profile113)_ 1.41368302522582251e-03 +Electron-electron_collision_time_at_point_114____________________________ (t_plasma_electron_electron_collision_profile114)_ 1.41175812815382863e-03 +Electron-electron_collision_time_at_point_115____________________________ (t_plasma_electron_electron_collision_profile115)_ 1.40981731663210970e-03 +Electron-electron_collision_time_at_point_116____________________________ (t_plasma_electron_electron_collision_profile116)_ 1.40786061907083250e-03 +Electron-electron_collision_time_at_point_117____________________________ (t_plasma_electron_electron_collision_profile117)_ 1.40588806416926484e-03 +Electron-electron_collision_time_at_point_118____________________________ (t_plasma_electron_electron_collision_profile118)_ 1.40389968091691542e-03 +Electron-electron_collision_time_at_point_119____________________________ (t_plasma_electron_electron_collision_profile119)_ 1.40189549859469570e-03 +Electron-electron_collision_time_at_point_120____________________________ (t_plasma_electron_electron_collision_profile120)_ 1.39987554677609410e-03 +Electron-electron_collision_time_at_point_121____________________________ (t_plasma_electron_electron_collision_profile121)_ 1.39783985532835752e-03 +Electron-electron_collision_time_at_point_122____________________________ (t_plasma_electron_electron_collision_profile122)_ 1.39578845441369614e-03 +Electron-electron_collision_time_at_point_123____________________________ (t_plasma_electron_electron_collision_profile123)_ 1.39372137449049233e-03 +Electron-electron_collision_time_at_point_124____________________________ (t_plasma_electron_electron_collision_profile124)_ 1.39163864631453352e-03 +Electron-electron_collision_time_at_point_125____________________________ (t_plasma_electron_electron_collision_profile125)_ 1.38954030094024916e-03 +Electron-electron_collision_time_at_point_126____________________________ (t_plasma_electron_electron_collision_profile126)_ 1.38742636972196895e-03 +Electron-electron_collision_time_at_point_127____________________________ (t_plasma_electron_electron_collision_profile127)_ 1.38529688431519209e-03 +Electron-electron_collision_time_at_point_128____________________________ (t_plasma_electron_electron_collision_profile128)_ 1.38315187667787374e-03 +Electron-electron_collision_time_at_point_129____________________________ (t_plasma_electron_electron_collision_profile129)_ 1.38099137907172131e-03 +Electron-electron_collision_time_at_point_130____________________________ (t_plasma_electron_electron_collision_profile130)_ 1.37881542406350873e-03 +Electron-electron_collision_time_at_point_131____________________________ (t_plasma_electron_electron_collision_profile131)_ 1.37662404452640655e-03 +Electron-electron_collision_time_at_point_132____________________________ (t_plasma_electron_electron_collision_profile132)_ 1.37441727364132353e-03 +Electron-electron_collision_time_at_point_133____________________________ (t_plasma_electron_electron_collision_profile133)_ 1.37219514489826449e-03 +Electron-electron_collision_time_at_point_134____________________________ (t_plasma_electron_electron_collision_profile134)_ 1.36995769209770444e-03 +Electron-electron_collision_time_at_point_135____________________________ (t_plasma_electron_electron_collision_profile135)_ 1.36770494935197764e-03 +Electron-electron_collision_time_at_point_136____________________________ (t_plasma_electron_electron_collision_profile136)_ 1.36543695108667972e-03 +Electron-electron_collision_time_at_point_137____________________________ (t_plasma_electron_electron_collision_profile137)_ 1.36315373204208860e-03 +Electron-electron_collision_time_at_point_138____________________________ (t_plasma_electron_electron_collision_profile138)_ 1.36085532727459870e-03 +Electron-electron_collision_time_at_point_139____________________________ (t_plasma_electron_electron_collision_profile139)_ 1.35854177215817117e-03 +Electron-electron_collision_time_at_point_140____________________________ (t_plasma_electron_electron_collision_profile140)_ 1.35621310238580079e-03 +Electron-electron_collision_time_at_point_141____________________________ (t_plasma_electron_electron_collision_profile141)_ 1.35386935397099851e-03 +Electron-electron_collision_time_at_point_142____________________________ (t_plasma_electron_electron_collision_profile142)_ 1.35151056324929139e-03 +Electron-electron_collision_time_at_point_143____________________________ (t_plasma_electron_electron_collision_profile143)_ 1.34913676687973562e-03 +Electron-electron_collision_time_at_point_144____________________________ (t_plasma_electron_electron_collision_profile144)_ 1.34674800184644882e-03 +Electron-electron_collision_time_at_point_145____________________________ (t_plasma_electron_electron_collision_profile145)_ 1.34434430546015535e-03 +Electron-electron_collision_time_at_point_146____________________________ (t_plasma_electron_electron_collision_profile146)_ 1.34192571535975895e-03 +Electron-electron_collision_time_at_point_147____________________________ (t_plasma_electron_electron_collision_profile147)_ 1.33949226951391343e-03 +Electron-electron_collision_time_at_point_148____________________________ (t_plasma_electron_electron_collision_profile148)_ 1.33704400622262866e-03 +Electron-electron_collision_time_at_point_149____________________________ (t_plasma_electron_electron_collision_profile149)_ 1.33458096411888426e-03 +Electron-electron_collision_time_at_point_150____________________________ (t_plasma_electron_electron_collision_profile150)_ 1.33210318217026245e-03 +Electron-electron_collision_time_at_point_151____________________________ (t_plasma_electron_electron_collision_profile151)_ 1.32961069968059813e-03 +Electron-electron_collision_time_at_point_152____________________________ (t_plasma_electron_electron_collision_profile152)_ 1.32710355629164604e-03 +Electron-electron_collision_time_at_point_153____________________________ (t_plasma_electron_electron_collision_profile153)_ 1.32458179198477141e-03 +Electron-electron_collision_time_at_point_154____________________________ (t_plasma_electron_electron_collision_profile154)_ 1.32204544708264585e-03 +Electron-electron_collision_time_at_point_155____________________________ (t_plasma_electron_electron_collision_profile155)_ 1.31949456225097695e-03 +Electron-electron_collision_time_at_point_156____________________________ (t_plasma_electron_electron_collision_profile156)_ 1.31692917850024312e-03 +Electron-electron_collision_time_at_point_157____________________________ (t_plasma_electron_electron_collision_profile157)_ 1.31434933718745550e-03 +Electron-electron_collision_time_at_point_158____________________________ (t_plasma_electron_electron_collision_profile158)_ 1.31175508001793255e-03 +Electron-electron_collision_time_at_point_159____________________________ (t_plasma_electron_electron_collision_profile159)_ 1.30914644904709917e-03 +Electron-electron_collision_time_at_point_160____________________________ (t_plasma_electron_electron_collision_profile160)_ 1.30652348668229817e-03 +Electron-electron_collision_time_at_point_161____________________________ (t_plasma_electron_electron_collision_profile161)_ 1.30388623568462631e-03 +Electron-electron_collision_time_at_point_162____________________________ (t_plasma_electron_electron_collision_profile162)_ 1.30123473917078867e-03 +Electron-electron_collision_time_at_point_163____________________________ (t_plasma_electron_electron_collision_profile163)_ 1.29856904061496871e-03 +Electron-electron_collision_time_at_point_164____________________________ (t_plasma_electron_electron_collision_profile164)_ 1.29588918385072343e-03 +Electron-electron_collision_time_at_point_165____________________________ (t_plasma_electron_electron_collision_profile165)_ 1.29319521307289399e-03 +Electron-electron_collision_time_at_point_166____________________________ (t_plasma_electron_electron_collision_profile166)_ 1.29048717283954117e-03 +Electron-electron_collision_time_at_point_167____________________________ (t_plasma_electron_electron_collision_profile167)_ 1.28776510807389246e-03 +Electron-electron_collision_time_at_point_168____________________________ (t_plasma_electron_electron_collision_profile168)_ 1.28502906406632216e-03 +Electron-electron_collision_time_at_point_169____________________________ (t_plasma_electron_electron_collision_profile169)_ 1.28227908647634051e-03 +Electron-electron_collision_time_at_point_170____________________________ (t_plasma_electron_electron_collision_profile170)_ 1.27951522133460923e-03 +Electron-electron_collision_time_at_point_171____________________________ (t_plasma_electron_electron_collision_profile171)_ 1.27673751504497890e-03 +Electron-electron_collision_time_at_point_172____________________________ (t_plasma_electron_electron_collision_profile172)_ 1.27394601438654467e-03 +Electron-electron_collision_time_at_point_173____________________________ (t_plasma_electron_electron_collision_profile173)_ 1.27114076651572354e-03 +Electron-electron_collision_time_at_point_174____________________________ (t_plasma_electron_electron_collision_profile174)_ 1.26832181896835709e-03 +Electron-electron_collision_time_at_point_175____________________________ (t_plasma_electron_electron_collision_profile175)_ 1.26548921966183284e-03 +Electron-electron_collision_time_at_point_176____________________________ (t_plasma_electron_electron_collision_profile176)_ 1.26264301689722703e-03 +Electron-electron_collision_time_at_point_177____________________________ (t_plasma_electron_electron_collision_profile177)_ 1.25978325936147197e-03 +Electron-electron_collision_time_at_point_178____________________________ (t_plasma_electron_electron_collision_profile178)_ 1.25690999612954415e-03 +Electron-electron_collision_time_at_point_179____________________________ (t_plasma_electron_electron_collision_profile179)_ 1.25402327666667974e-03 +Electron-electron_collision_time_at_point_180____________________________ (t_plasma_electron_electron_collision_profile180)_ 1.25112315083060368e-03 +Electron-electron_collision_time_at_point_181____________________________ (t_plasma_electron_electron_collision_profile181)_ 1.24820966887379241e-03 +Electron-electron_collision_time_at_point_182____________________________ (t_plasma_electron_electron_collision_profile182)_ 1.24528288144575309e-03 +Electron-electron_collision_time_at_point_183____________________________ (t_plasma_electron_electron_collision_profile183)_ 1.24234283959533034e-03 +Electron-electron_collision_time_at_point_184____________________________ (t_plasma_electron_electron_collision_profile184)_ 1.23938959477303445e-03 +Electron-electron_collision_time_at_point_185____________________________ (t_plasma_electron_electron_collision_profile185)_ 1.23642319883339523e-03 +Electron-electron_collision_time_at_point_186____________________________ (t_plasma_electron_electron_collision_profile186)_ 1.23344370403734045e-03 +Electron-electron_collision_time_at_point_187____________________________ (t_plasma_electron_electron_collision_profile187)_ 1.23045116305459871e-03 +Electron-electron_collision_time_at_point_188____________________________ (t_plasma_electron_electron_collision_profile188)_ 1.22744562896612524e-03 +Electron-electron_collision_time_at_point_189____________________________ (t_plasma_electron_electron_collision_profile189)_ 1.22442715526655801e-03 +Electron-electron_collision_time_at_point_190____________________________ (t_plasma_electron_electron_collision_profile190)_ 1.22139579586669428e-03 +Electron-electron_collision_time_at_point_191____________________________ (t_plasma_electron_electron_collision_profile191)_ 1.21835160509599512e-03 +Electron-electron_collision_time_at_point_192____________________________ (t_plasma_electron_electron_collision_profile192)_ 1.21529463770511550e-03 +Electron-electron_collision_time_at_point_193____________________________ (t_plasma_electron_electron_collision_profile193)_ 1.21222494886846365e-03 +Electron-electron_collision_time_at_point_194____________________________ (t_plasma_electron_electron_collision_profile194)_ 1.20914259418677993e-03 +Electron-electron_collision_time_at_point_195____________________________ (t_plasma_electron_electron_collision_profile195)_ 1.20604762968975175e-03 +Electron-electron_collision_time_at_point_196____________________________ (t_plasma_electron_electron_collision_profile196)_ 1.20294011183864728e-03 +Electron-electron_collision_time_at_point_197____________________________ (t_plasma_electron_electron_collision_profile197)_ 1.19982009752898498e-03 +Electron-electron_collision_time_at_point_198____________________________ (t_plasma_electron_electron_collision_profile198)_ 1.19668764409322048e-03 +Electron-electron_collision_time_at_point_199____________________________ (t_plasma_electron_electron_collision_profile199)_ 1.19354280930347419e-03 +Electron-electron_collision_time_at_point_200____________________________ (t_plasma_electron_electron_collision_profile200)_ 1.19038565137427610e-03 +Electron-electron_collision_time_at_point_201____________________________ (t_plasma_electron_electron_collision_profile201)_ 1.18721622896534565e-03 +Electron-electron_collision_time_at_point_202____________________________ (t_plasma_electron_electron_collision_profile202)_ 1.18403460118439983e-03 +Electron-electron_collision_time_at_point_203____________________________ (t_plasma_electron_electron_collision_profile203)_ 1.18084082758998792e-03 +Electron-electron_collision_time_at_point_204____________________________ (t_plasma_electron_electron_collision_profile204)_ 1.17763496819435986e-03 +Electron-electron_collision_time_at_point_205____________________________ (t_plasma_electron_electron_collision_profile205)_ 1.17441708346636194e-03 +Electron-electron_collision_time_at_point_206____________________________ (t_plasma_electron_electron_collision_profile206)_ 1.17118723433436416e-03 +Electron-electron_collision_time_at_point_207____________________________ (t_plasma_electron_electron_collision_profile207)_ 1.16794548218921703e-03 +Electron-electron_collision_time_at_point_208____________________________ (t_plasma_electron_electron_collision_profile208)_ 1.16469188888724271e-03 +Electron-electron_collision_time_at_point_209____________________________ (t_plasma_electron_electron_collision_profile209)_ 1.16142651675325208e-03 +Electron-electron_collision_time_at_point_210____________________________ (t_plasma_electron_electron_collision_profile210)_ 1.15814942858360049e-03 +Electron-electron_collision_time_at_point_211____________________________ (t_plasma_electron_electron_collision_profile211)_ 1.15486068764926756e-03 +Electron-electron_collision_time_at_point_212____________________________ (t_plasma_electron_electron_collision_profile212)_ 1.15156035769898007e-03 +Electron-electron_collision_time_at_point_213____________________________ (t_plasma_electron_electron_collision_profile213)_ 1.14824850296235746e-03 +Electron-electron_collision_time_at_point_214____________________________ (t_plasma_electron_electron_collision_profile214)_ 1.14492518815309681e-03 +Electron-electron_collision_time_at_point_215____________________________ (t_plasma_electron_electron_collision_profile215)_ 1.14159047847218987e-03 +Electron-electron_collision_time_at_point_216____________________________ (t_plasma_electron_electron_collision_profile216)_ 1.13824443961117478e-03 +Electron-electron_collision_time_at_point_217____________________________ (t_plasma_electron_electron_collision_profile217)_ 1.13488713775542101e-03 +Electron-electron_collision_time_at_point_218____________________________ (t_plasma_electron_electron_collision_profile218)_ 1.13151863958745069e-03 +Electron-electron_collision_time_at_point_219____________________________ (t_plasma_electron_electron_collision_profile219)_ 1.12813901229029553e-03 +Electron-electron_collision_time_at_point_220____________________________ (t_plasma_electron_electron_collision_profile220)_ 1.12474832355088862e-03 +Electron-electron_collision_time_at_point_221____________________________ (t_plasma_electron_electron_collision_profile221)_ 1.12134664156349271e-03 +Electron-electron_collision_time_at_point_222____________________________ (t_plasma_electron_electron_collision_profile222)_ 1.11793403503316615e-03 +Electron-electron_collision_time_at_point_223____________________________ (t_plasma_electron_electron_collision_profile223)_ 1.11451057317926401e-03 +Electron-electron_collision_time_at_point_224____________________________ (t_plasma_electron_electron_collision_profile224)_ 1.11107632573897931e-03 +Electron-electron_collision_time_at_point_225____________________________ (t_plasma_electron_electron_collision_profile225)_ 1.10763136297092240e-03 +Electron-electron_collision_time_at_point_226____________________________ (t_plasma_electron_electron_collision_profile226)_ 1.10417575565873458e-03 +Electron-electron_collision_time_at_point_227____________________________ (t_plasma_electron_electron_collision_profile227)_ 1.10070957511474755e-03 +Electron-electron_collision_time_at_point_228____________________________ (t_plasma_electron_electron_collision_profile228)_ 1.09723289318367683e-03 +Electron-electron_collision_time_at_point_229____________________________ (t_plasma_electron_electron_collision_profile229)_ 1.09374578224635962e-03 +Electron-electron_collision_time_at_point_230____________________________ (t_plasma_electron_electron_collision_profile230)_ 1.09024831522352788e-03 +Electron-electron_collision_time_at_point_231____________________________ (t_plasma_electron_electron_collision_profile231)_ 1.08674056557962967e-03 +Electron-electron_collision_time_at_point_232____________________________ (t_plasma_electron_electron_collision_profile232)_ 1.08322260732668612e-03 +Electron-electron_collision_time_at_point_233____________________________ (t_plasma_electron_electron_collision_profile233)_ 1.07969451502819367e-03 +Electron-electron_collision_time_at_point_234____________________________ (t_plasma_electron_electron_collision_profile234)_ 1.07615636380306860e-03 +Electron-electron_collision_time_at_point_235____________________________ (t_plasma_electron_electron_collision_profile235)_ 1.07260822932963413e-03 +Electron-electron_collision_time_at_point_236____________________________ (t_plasma_electron_electron_collision_profile236)_ 1.06905018784965379e-03 +Electron-electron_collision_time_at_point_237____________________________ (t_plasma_electron_electron_collision_profile237)_ 1.06548231617240355e-03 +Electron-electron_collision_time_at_point_238____________________________ (t_plasma_electron_electron_collision_profile238)_ 1.06190469167880127e-03 +Electron-electron_collision_time_at_point_239____________________________ (t_plasma_electron_electron_collision_profile239)_ 1.05831739232556312e-03 +Electron-electron_collision_time_at_point_240____________________________ (t_plasma_electron_electron_collision_profile240)_ 1.05472049664942762e-03 +Electron-electron_collision_time_at_point_241____________________________ (t_plasma_electron_electron_collision_profile241)_ 1.05111408377140921e-03 +Electron-electron_collision_time_at_point_242____________________________ (t_plasma_electron_electron_collision_profile242)_ 1.04749823340110899e-03 +Electron-electron_collision_time_at_point_243____________________________ (t_plasma_electron_electron_collision_profile243)_ 1.04387302584107305e-03 +Electron-electron_collision_time_at_point_244____________________________ (t_plasma_electron_electron_collision_profile244)_ 1.04023854199119668e-03 +Electron-electron_collision_time_at_point_245____________________________ (t_plasma_electron_electron_collision_profile245)_ 1.03659486335317915e-03 +Electron-electron_collision_time_at_point_246____________________________ (t_plasma_electron_electron_collision_profile246)_ 1.03294207203503095e-03 +Electron-electron_collision_time_at_point_247____________________________ (t_plasma_electron_electron_collision_profile247)_ 1.02928025075563136e-03 +Electron-electron_collision_time_at_point_248____________________________ (t_plasma_electron_electron_collision_profile248)_ 1.02560948284933606e-03 +Electron-electron_collision_time_at_point_249____________________________ (t_plasma_electron_electron_collision_profile249)_ 1.02192985227064119e-03 +Electron-electron_collision_time_at_point_250____________________________ (t_plasma_electron_electron_collision_profile250)_ 1.01824144359889571e-03 +Electron-electron_collision_time_at_point_251____________________________ (t_plasma_electron_electron_collision_profile251)_ 1.01454434204307489e-03 +Electron-electron_collision_time_at_point_252____________________________ (t_plasma_electron_electron_collision_profile252)_ 1.01083863344660118e-03 +Electron-electron_collision_time_at_point_253____________________________ (t_plasma_electron_electron_collision_profile253)_ 1.00712440429222673e-03 +Electron-electron_collision_time_at_point_254____________________________ (t_plasma_electron_electron_collision_profile254)_ 1.00340174170696853e-03 +Electron-electron_collision_time_at_point_255____________________________ (t_plasma_electron_electron_collision_profile255)_ 9.99670733467108909e-04 +Electron-electron_collision_time_at_point_256____________________________ (t_plasma_electron_electron_collision_profile256)_ 9.95931468003241442e-04 +Electron-electron_collision_time_at_point_257____________________________ (t_plasma_electron_electron_collision_profile257)_ 9.92184034405388599e-04 +Electron-electron_collision_time_at_point_258____________________________ (t_plasma_electron_electron_collision_profile258)_ 9.88428522428174035e-04 +Electron-electron_collision_time_at_point_259____________________________ (t_plasma_electron_electron_collision_profile259)_ 9.84665022496055602e-04 +Electron-electron_collision_time_at_point_260____________________________ (t_plasma_electron_electron_collision_profile260)_ 9.80893625708624496e-04 +Electron-electron_collision_time_at_point_261____________________________ (t_plasma_electron_electron_collision_profile261)_ 9.77114423845962298e-04 +Electron-electron_collision_time_at_point_262____________________________ (t_plasma_electron_electron_collision_profile262)_ 9.73327509374067408e-04 +Electron-electron_collision_time_at_point_263____________________________ (t_plasma_electron_electron_collision_profile263)_ 9.69532975450342733e-04 +Electron-electron_collision_time_at_point_264____________________________ (t_plasma_electron_electron_collision_profile264)_ 9.65730915929154609e-04 +Electron-electron_collision_time_at_point_265____________________________ (t_plasma_electron_electron_collision_profile265)_ 9.61921425367452329e-04 +Electron-electron_collision_time_at_point_266____________________________ (t_plasma_electron_electron_collision_profile266)_ 9.58104599030463566e-04 +Electron-electron_collision_time_at_point_267____________________________ (t_plasma_electron_electron_collision_profile267)_ 9.54280532897454088e-04 +Electron-electron_collision_time_at_point_268____________________________ (t_plasma_electron_electron_collision_profile268)_ 9.50449323667563149e-04 +Electron-electron_collision_time_at_point_269____________________________ (t_plasma_electron_electron_collision_profile269)_ 9.46611068765703940e-04 +Electron-electron_collision_time_at_point_270____________________________ (t_plasma_electron_electron_collision_profile270)_ 9.42765866348547945e-04 +Electron-electron_collision_time_at_point_271____________________________ (t_plasma_electron_electron_collision_profile271)_ 9.38913815310572948e-04 +Electron-electron_collision_time_at_point_272____________________________ (t_plasma_electron_electron_collision_profile272)_ 9.35055015290195825e-04 +Electron-electron_collision_time_at_point_273____________________________ (t_plasma_electron_electron_collision_profile273)_ 9.31189566675977320e-04 +Electron-electron_collision_time_at_point_274____________________________ (t_plasma_electron_electron_collision_profile274)_ 9.27317570612909555e-04 +Electron-electron_collision_time_at_point_275____________________________ (t_plasma_electron_electron_collision_profile275)_ 9.23439129008777693e-04 +Electron-electron_collision_time_at_point_276____________________________ (t_plasma_electron_electron_collision_profile276)_ 9.19554344540612456e-04 +Electron-electron_collision_time_at_point_277____________________________ (t_plasma_electron_electron_collision_profile277)_ 9.15663320661216917e-04 +Electron-electron_collision_time_at_point_278____________________________ (t_plasma_electron_electron_collision_profile278)_ 9.11766161605784145e-04 +Electron-electron_collision_time_at_point_279____________________________ (t_plasma_electron_electron_collision_profile279)_ 9.07862972398596380e-04 +Electron-electron_collision_time_at_point_280____________________________ (t_plasma_electron_electron_collision_profile280)_ 9.03953858859818317e-04 +Electron-electron_collision_time_at_point_281____________________________ (t_plasma_electron_electron_collision_profile281)_ 9.00038927612373664e-04 +Electron-electron_collision_time_at_point_282____________________________ (t_plasma_electron_electron_collision_profile282)_ 8.96118286088916447e-04 +Electron-electron_collision_time_at_point_283____________________________ (t_plasma_electron_electron_collision_profile283)_ 8.92192042538896869e-04 +Electron-electron_collision_time_at_point_284____________________________ (t_plasma_electron_electron_collision_profile284)_ 8.88260306035716825e-04 +Electron-electron_collision_time_at_point_285____________________________ (t_plasma_electron_electron_collision_profile285)_ 8.84323186483992646e-04 +Electron-electron_collision_time_at_point_286____________________________ (t_plasma_electron_electron_collision_profile286)_ 8.80380794626902416e-04 +Electron-electron_collision_time_at_point_287____________________________ (t_plasma_electron_electron_collision_profile287)_ 8.76433242053648422e-04 +Electron-electron_collision_time_at_point_288____________________________ (t_plasma_electron_electron_collision_profile288)_ 8.72480641207011879e-04 +Electron-electron_collision_time_at_point_289____________________________ (t_plasma_electron_electron_collision_profile289)_ 8.68523105391022141e-04 +Electron-electron_collision_time_at_point_290____________________________ (t_plasma_electron_electron_collision_profile290)_ 8.64560748778722839e-04 +Electron-electron_collision_time_at_point_291____________________________ (t_plasma_electron_electron_collision_profile291)_ 8.60593686420059564e-04 +Electron-electron_collision_time_at_point_292____________________________ (t_plasma_electron_electron_collision_profile292)_ 8.56622034249868484e-04 +Electron-electron_collision_time_at_point_293____________________________ (t_plasma_electron_electron_collision_profile293)_ 8.52645909095988666e-04 +Electron-electron_collision_time_at_point_294____________________________ (t_plasma_electron_electron_collision_profile294)_ 8.48665428687485324e-04 +Electron-electron_collision_time_at_point_295____________________________ (t_plasma_electron_electron_collision_profile295)_ 8.44680711662995458e-04 +Electron-electron_collision_time_at_point_296____________________________ (t_plasma_electron_electron_collision_profile296)_ 8.40691877579195475e-04 +Electron-electron_collision_time_at_point_297____________________________ (t_plasma_electron_electron_collision_profile297)_ 8.36699046919395879e-04 +Electron-electron_collision_time_at_point_298____________________________ (t_plasma_electron_electron_collision_profile298)_ 8.32702341102257711e-04 +Electron-electron_collision_time_at_point_299____________________________ (t_plasma_electron_electron_collision_profile299)_ 8.28701882490649505e-04 +Electron-electron_collision_time_at_point_300____________________________ (t_plasma_electron_electron_collision_profile300)_ 8.24697794400629908e-04 +Electron-electron_collision_time_at_point_301____________________________ (t_plasma_electron_electron_collision_profile301)_ 8.20690201110573728e-04 +Electron-electron_collision_time_at_point_302____________________________ (t_plasma_electron_electron_collision_profile302)_ 8.16679227870433302e-04 +Electron-electron_collision_time_at_point_303____________________________ (t_plasma_electron_electron_collision_profile303)_ 8.12665000911150345e-04 +Electron-electron_collision_time_at_point_304____________________________ (t_plasma_electron_electron_collision_profile304)_ 8.08647647454208422e-04 +Electron-electron_collision_time_at_point_305____________________________ (t_plasma_electron_electron_collision_profile305)_ 8.04627295721343063e-04 +Electron-electron_collision_time_at_point_306____________________________ (t_plasma_electron_electron_collision_profile306)_ 8.00604074944402905e-04 +Electron-electron_collision_time_at_point_307____________________________ (t_plasma_electron_electron_collision_profile307)_ 7.96578115375372493e-04 +Electron-electron_collision_time_at_point_308____________________________ (t_plasma_electron_electron_collision_profile308)_ 7.92549548296555000e-04 +Electron-electron_collision_time_at_point_309____________________________ (t_plasma_electron_electron_collision_profile309)_ 7.88518506030928411e-04 +Electron-electron_collision_time_at_point_310____________________________ (t_plasma_electron_electron_collision_profile310)_ 7.84485121952666195e-04 +Electron-electron_collision_time_at_point_311____________________________ (t_plasma_electron_electron_collision_profile311)_ 7.80449530497842169e-04 +Electron-electron_collision_time_at_point_312____________________________ (t_plasma_electron_electron_collision_profile312)_ 7.76411867175307979e-04 +Electron-electron_collision_time_at_point_313____________________________ (t_plasma_electron_electron_collision_profile313)_ 7.72372268577768760e-04 +Electron-electron_collision_time_at_point_314____________________________ (t_plasma_electron_electron_collision_profile314)_ 7.68330872393035861e-04 +Electron-electron_collision_time_at_point_315____________________________ (t_plasma_electron_electron_collision_profile315)_ 7.64287817415490000e-04 +Electron-electron_collision_time_at_point_316____________________________ (t_plasma_electron_electron_collision_profile316)_ 7.60243243557737203e-04 +Electron-electron_collision_time_at_point_317____________________________ (t_plasma_electron_electron_collision_profile317)_ 7.56197291862476906e-04 +Electron-electron_collision_time_at_point_318____________________________ (t_plasma_electron_electron_collision_profile318)_ 7.52150104514586479e-04 +Electron-electron_collision_time_at_point_319____________________________ (t_plasma_electron_electron_collision_profile319)_ 7.48101824853420741e-04 +Electron-electron_collision_time_at_point_320____________________________ (t_plasma_electron_electron_collision_profile320)_ 7.44052597385343488e-04 +Electron-electron_collision_time_at_point_321____________________________ (t_plasma_electron_electron_collision_profile321)_ 7.40002567796490618e-04 +Electron-electron_collision_time_at_point_322____________________________ (t_plasma_electron_electron_collision_profile322)_ 7.35951882965774702e-04 +Electron-electron_collision_time_at_point_323____________________________ (t_plasma_electron_electron_collision_profile323)_ 7.31900690978137727e-04 +Electron-electron_collision_time_at_point_324____________________________ (t_plasma_electron_electron_collision_profile324)_ 7.27849141138062965e-04 +Electron-electron_collision_time_at_point_325____________________________ (t_plasma_electron_electron_collision_profile325)_ 7.23797383983344777e-04 +Electron-electron_collision_time_at_point_326____________________________ (t_plasma_electron_electron_collision_profile326)_ 7.19745571299138139e-04 +Electron-electron_collision_time_at_point_327____________________________ (t_plasma_electron_electron_collision_profile327)_ 7.15693856132285067e-04 +Electron-electron_collision_time_at_point_328____________________________ (t_plasma_electron_electron_collision_profile328)_ 7.11642392805931947e-04 +Electron-electron_collision_time_at_point_329____________________________ (t_plasma_electron_electron_collision_profile329)_ 7.07591336934451404e-04 +Electron-electron_collision_time_at_point_330____________________________ (t_plasma_electron_electron_collision_profile330)_ 7.03540845438667536e-04 +Electron-electron_collision_time_at_point_331____________________________ (t_plasma_electron_electron_collision_profile331)_ 6.99491076561407714e-04 +Electron-electron_collision_time_at_point_332____________________________ (t_plasma_electron_electron_collision_profile332)_ 6.95442189883381805e-04 +Electron-electron_collision_time_at_point_333____________________________ (t_plasma_electron_electron_collision_profile333)_ 6.91394346339408231e-04 +Electron-electron_collision_time_at_point_334____________________________ (t_plasma_electron_electron_collision_profile334)_ 6.87347708234991315e-04 +Electron-electron_collision_time_at_point_335____________________________ (t_plasma_electron_electron_collision_profile335)_ 6.83302439263268335e-04 +Electron-electron_collision_time_at_point_336____________________________ (t_plasma_electron_electron_collision_profile336)_ 6.79258704522336270e-04 +Electron-electron_collision_time_at_point_337____________________________ (t_plasma_electron_electron_collision_profile337)_ 6.75216670532974165e-04 +Electron-electron_collision_time_at_point_338____________________________ (t_plasma_electron_electron_collision_profile338)_ 6.71176505256771100e-04 +Electron-electron_collision_time_at_point_339____________________________ (t_plasma_electron_electron_collision_profile339)_ 6.67138378114681230e-04 +Electron-electron_collision_time_at_point_340____________________________ (t_plasma_electron_electron_collision_profile340)_ 6.63102460006017485e-04 +Electron-electron_collision_time_at_point_341____________________________ (t_plasma_electron_electron_collision_profile341)_ 6.59068923327898689e-04 +Electron-electron_collision_time_at_point_342____________________________ (t_plasma_electron_electron_collision_profile342)_ 6.55037941995173512e-04 +Electron-electron_collision_time_at_point_343____________________________ (t_plasma_electron_electron_collision_profile343)_ 6.51009691460834798e-04 +Electron-electron_collision_time_at_point_344____________________________ (t_plasma_electron_electron_collision_profile344)_ 6.46984348736943916e-04 +Electron-electron_collision_time_at_point_345____________________________ (t_plasma_electron_electron_collision_profile345)_ 6.42962092416084511e-04 +Electron-electron_collision_time_at_point_346____________________________ (t_plasma_electron_electron_collision_profile346)_ 6.38943102693373985e-04 +Electron-electron_collision_time_at_point_347____________________________ (t_plasma_electron_electron_collision_profile347)_ 6.34927561389041456e-04 +Electron-electron_collision_time_at_point_348____________________________ (t_plasma_electron_electron_collision_profile348)_ 6.30915651971608333e-04 +Electron-electron_collision_time_at_point_349____________________________ (t_plasma_electron_electron_collision_profile349)_ 6.26907559581688502e-04 +Electron-electron_collision_time_at_point_350____________________________ (t_plasma_electron_electron_collision_profile350)_ 6.22903471056436217e-04 +Electron-electron_collision_time_at_point_351____________________________ (t_plasma_electron_electron_collision_profile351)_ 6.18903574954669019e-04 +Electron-electron_collision_time_at_point_352____________________________ (t_plasma_electron_electron_collision_profile352)_ 6.14908061582694187e-04 +Electron-electron_collision_time_at_point_353____________________________ (t_plasma_electron_electron_collision_profile353)_ 6.10917123020868224e-04 +Electron-electron_collision_time_at_point_354____________________________ (t_plasma_electron_electron_collision_profile354)_ 6.06930953150919728e-04 +Electron-electron_collision_time_at_point_355____________________________ (t_plasma_electron_electron_collision_profile355)_ 6.02949747684074677e-04 +Electron-electron_collision_time_at_point_356____________________________ (t_plasma_electron_electron_collision_profile356)_ 5.98973704190009296e-04 +Electron-electron_collision_time_at_point_357____________________________ (t_plasma_electron_electron_collision_profile357)_ 5.95003022126678509e-04 +Electron-electron_collision_time_at_point_358____________________________ (t_plasma_electron_electron_collision_profile358)_ 5.91037902871052322e-04 +Electron-electron_collision_time_at_point_359____________________________ (t_plasma_electron_electron_collision_profile359)_ 5.87078549750801298e-04 +Electron-electron_collision_time_at_point_360____________________________ (t_plasma_electron_electron_collision_profile360)_ 5.83125168076981787e-04 +Electron-electron_collision_time_at_point_361____________________________ (t_plasma_electron_electron_collision_profile361)_ 5.79177965177754724e-04 +Electron-electron_collision_time_at_point_362____________________________ (t_plasma_electron_electron_collision_profile362)_ 5.75237150433200654e-04 +Electron-electron_collision_time_at_point_363____________________________ (t_plasma_electron_electron_collision_profile363)_ 5.71302935311271019e-04 +Electron-electron_collision_time_at_point_364____________________________ (t_plasma_electron_electron_collision_profile364)_ 5.67375533404936060e-04 +Electron-electron_collision_time_at_point_365____________________________ (t_plasma_electron_electron_collision_profile365)_ 5.63455160470588672e-04 +Electron-electron_collision_time_at_point_366____________________________ (t_plasma_electron_electron_collision_profile366)_ 5.59542034467755368e-04 +Electron-electron_collision_time_at_point_367____________________________ (t_plasma_electron_electron_collision_profile367)_ 5.55636375600192961e-04 +Electron-electron_collision_time_at_point_368____________________________ (t_plasma_electron_electron_collision_profile368)_ 5.51738406358427669e-04 +Electron-electron_collision_time_at_point_369____________________________ (t_plasma_electron_electron_collision_profile369)_ 5.47848351563814495e-04 +Electron-electron_collision_time_at_point_370____________________________ (t_plasma_electron_electron_collision_profile370)_ 5.43966438414193406e-04 +Electron-electron_collision_time_at_point_371____________________________ (t_plasma_electron_electron_collision_profile371)_ 5.40092896531223546e-04 +Electron-electron_collision_time_at_point_372____________________________ (t_plasma_electron_electron_collision_profile372)_ 5.36227958009479486e-04 +Electron-electron_collision_time_at_point_373____________________________ (t_plasma_electron_electron_collision_profile373)_ 5.32371857467407424e-04 +Electron-electron_collision_time_at_point_374____________________________ (t_plasma_electron_electron_collision_profile374)_ 5.28524832100232518e-04 +Electron-electron_collision_time_at_point_375____________________________ (t_plasma_electron_electron_collision_profile375)_ 5.24687121734923492e-04 +Electron-electron_collision_time_at_point_376____________________________ (t_plasma_electron_electron_collision_profile376)_ 5.20858968887328026e-04 +Electron-electron_collision_time_at_point_377____________________________ (t_plasma_electron_electron_collision_profile377)_ 5.17040618821589968e-04 +Electron-electron_collision_time_at_point_378____________________________ (t_plasma_electron_electron_collision_profile378)_ 5.13232319611980621e-04 +Electron-electron_collision_time_at_point_379____________________________ (t_plasma_electron_electron_collision_profile379)_ 5.09434322207269236e-04 +Electron-electron_collision_time_at_point_380____________________________ (t_plasma_electron_electron_collision_profile380)_ 5.05646880497782653e-04 +Electron-electron_collision_time_at_point_381____________________________ (t_plasma_electron_electron_collision_profile381)_ 5.01870251385299693e-04 +Electron-electron_collision_time_at_point_382____________________________ (t_plasma_electron_electron_collision_profile382)_ 4.98104694855942831e-04 +Electron-electron_collision_time_at_point_383____________________________ (t_plasma_electron_electron_collision_profile383)_ 4.94350474056240072e-04 +Electron-electron_collision_time_at_point_384____________________________ (t_plasma_electron_electron_collision_profile384)_ 4.90607855372541678e-04 +Electron-electron_collision_time_at_point_385____________________________ (t_plasma_electron_electron_collision_profile385)_ 4.86877108513986676e-04 +Electron-electron_collision_time_at_point_386____________________________ (t_plasma_electron_electron_collision_profile386)_ 4.83158506599227870e-04 +Electron-electron_collision_time_at_point_387____________________________ (t_plasma_electron_electron_collision_profile387)_ 4.79452326247144754e-04 +Electron-electron_collision_time_at_point_388____________________________ (t_plasma_electron_electron_collision_profile388)_ 4.75758847671781571e-04 +Electron-electron_collision_time_at_point_389____________________________ (t_plasma_electron_electron_collision_profile389)_ 4.72078354781768216e-04 +Electron-electron_collision_time_at_point_390____________________________ (t_plasma_electron_electron_collision_profile390)_ 4.68411135284500140e-04 +Electron-electron_collision_time_at_point_391____________________________ (t_plasma_electron_electron_collision_profile391)_ 4.64757480795378549e-04 +Electron-electron_collision_time_at_point_392____________________________ (t_plasma_electron_electron_collision_profile392)_ 4.61117686952420224e-04 +Electron-electron_collision_time_at_point_393____________________________ (t_plasma_electron_electron_collision_profile393)_ 4.57492053536590298e-04 +Electron-electron_collision_time_at_point_394____________________________ (t_plasma_electron_electron_collision_profile394)_ 4.53880884598212915e-04 +Electron-electron_collision_time_at_point_395____________________________ (t_plasma_electron_electron_collision_profile395)_ 4.50284488589865358e-04 +Electron-electron_collision_time_at_point_396____________________________ (t_plasma_electron_electron_collision_profile396)_ 4.46703178506177188e-04 +Electron-electron_collision_time_at_point_397____________________________ (t_plasma_electron_electron_collision_profile397)_ 4.43137272030993837e-04 +Electron-electron_collision_time_at_point_398____________________________ (t_plasma_electron_electron_collision_profile398)_ 4.39587091692397508e-04 +Electron-electron_collision_time_at_point_399____________________________ (t_plasma_electron_electron_collision_profile399)_ 4.36052965026124798e-04 +Electron-electron_collision_time_at_point_400____________________________ (t_plasma_electron_electron_collision_profile400)_ 4.32535224747950507e-04 +Electron-electron_collision_time_at_point_401____________________________ (t_plasma_electron_electron_collision_profile401)_ 4.29034208935669559e-04 +Electron-electron_collision_time_at_point_402____________________________ (t_plasma_electron_electron_collision_profile402)_ 4.25550261221343618e-04 +Electron-electron_collision_time_at_point_403____________________________ (t_plasma_electron_electron_collision_profile403)_ 4.22083730994553426e-04 +Electron-electron_collision_time_at_point_404____________________________ (t_plasma_electron_electron_collision_profile404)_ 4.18634973617440932e-04 +Electron-electron_collision_time_at_point_405____________________________ (t_plasma_electron_electron_collision_profile405)_ 4.15204350652408874e-04 +Electron-electron_collision_time_at_point_406____________________________ (t_plasma_electron_electron_collision_profile406)_ 4.11792230103407320e-04 +Electron-electron_collision_time_at_point_407____________________________ (t_plasma_electron_electron_collision_profile407)_ 4.08398986671834542e-04 +Electron-electron_collision_time_at_point_408____________________________ (t_plasma_electron_electron_collision_profile408)_ 4.05025002028144680e-04 +Electron-electron_collision_time_at_point_409____________________________ (t_plasma_electron_electron_collision_profile409)_ 4.01670665100389661e-04 +Electron-electron_collision_time_at_point_410____________________________ (t_plasma_electron_electron_collision_profile410)_ 3.98336372380997676e-04 +Electron-electron_collision_time_at_point_411____________________________ (t_plasma_electron_electron_collision_profile411)_ 3.95022528253239898e-04 +Electron-electron_collision_time_at_point_412____________________________ (t_plasma_electron_electron_collision_profile412)_ 3.91729545338957534e-04 +Electron-electron_collision_time_at_point_413____________________________ (t_plasma_electron_electron_collision_profile413)_ 3.88457844869283947e-04 +Electron-electron_collision_time_at_point_414____________________________ (t_plasma_electron_electron_collision_profile414)_ 3.85207857080250508e-04 +Electron-electron_collision_time_at_point_415____________________________ (t_plasma_electron_electron_collision_profile415)_ 3.81980021635369032e-04 +Electron-electron_collision_time_at_point_416____________________________ (t_plasma_electron_electron_collision_profile416)_ 3.78774788077480948e-04 +Electron-electron_collision_time_at_point_417____________________________ (t_plasma_electron_electron_collision_profile417)_ 3.75592616312401455e-04 +Electron-electron_collision_time_at_point_418____________________________ (t_plasma_electron_electron_collision_profile418)_ 3.72433977127154881e-04 +Electron-electron_collision_time_at_point_419____________________________ (t_plasma_electron_electron_collision_profile419)_ 3.69299352745885903e-04 +Electron-electron_collision_time_at_point_420____________________________ (t_plasma_electron_electron_collision_profile420)_ 3.66189237426868964e-04 +Electron-electron_collision_time_at_point_421____________________________ (t_plasma_electron_electron_collision_profile421)_ 3.63104138104413212e-04 +Electron-electron_collision_time_at_point_422____________________________ (t_plasma_electron_electron_collision_profile422)_ 3.60044575079885416e-04 +Electron-electron_collision_time_at_point_423____________________________ (t_plasma_electron_electron_collision_profile423)_ 3.57011082766556373e-04 +Electron-electron_collision_time_at_point_424____________________________ (t_plasma_electron_electron_collision_profile424)_ 3.54004210493520394e-04 +Electron-electron_collision_time_at_point_425____________________________ (t_plasma_electron_electron_collision_profile425)_ 3.51024523374572704e-04 +Electron-electron_collision_time_at_point_426____________________________ (t_plasma_electron_electron_collision_profile426)_ 3.48072603248628727e-04 +Electron-electron_collision_time_at_point_427____________________________ (t_plasma_electron_electron_collision_profile427)_ 3.45149049699101874e-04 +Electron-electron_collision_time_at_point_428____________________________ (t_plasma_electron_electron_collision_profile428)_ 3.42254481160589297e-04 +Electron-electron_collision_time_at_point_429____________________________ (t_plasma_electron_electron_collision_profile429)_ 3.39389536122298139e-04 +Electron-electron_collision_time_at_point_430____________________________ (t_plasma_electron_electron_collision_profile430)_ 3.36554874438911122e-04 +Electron-electron_collision_time_at_point_431____________________________ (t_plasma_electron_electron_collision_profile431)_ 3.33751178761027597e-04 +Electron-electron_collision_time_at_point_432____________________________ (t_plasma_electron_electron_collision_profile432)_ 3.30979156099034052e-04 +Electron-electron_collision_time_at_point_433____________________________ (t_plasma_electron_electron_collision_profile433)_ 3.28239539536221770e-04 +Electron-electron_collision_time_at_point_434____________________________ (t_plasma_electron_electron_collision_profile434)_ 3.25533090109314137e-04 +Electron-electron_collision_time_at_point_435____________________________ (t_plasma_electron_electron_collision_profile435)_ 3.22860598877292438e-04 +Electron-electron_collision_time_at_point_436____________________________ (t_plasma_electron_electron_collision_profile436)_ 3.20222889202677091e-04 +Electron-electron_collision_time_at_point_437____________________________ (t_plasma_electron_electron_collision_profile437)_ 3.17620819273259976e-04 +Electron-electron_collision_time_at_point_438____________________________ (t_plasma_electron_electron_collision_profile438)_ 3.15055284896922038e-04 +Electron-electron_collision_time_at_point_439____________________________ (t_plasma_electron_electron_collision_profile439)_ 3.12527222607694320e-04 +Electron-electron_collision_time_at_point_440____________________________ (t_plasma_electron_electron_collision_profile440)_ 3.10037613127925478e-04 +Electron-electron_collision_time_at_point_441____________________________ (t_plasma_electron_electron_collision_profile441)_ 3.07587485239542565e-04 +Electron-electron_collision_time_at_point_442____________________________ (t_plasma_electron_electron_collision_profile442)_ 3.05177920127331379e-04 +Electron-electron_collision_time_at_point_443____________________________ (t_plasma_electron_electron_collision_profile443)_ 3.02810056269375264e-04 +Electron-electron_collision_time_at_point_444____________________________ (t_plasma_electron_electron_collision_profile444)_ 3.00485094964933236e-04 +Electron-electron_collision_time_at_point_445____________________________ (t_plasma_electron_electron_collision_profile445)_ 2.98204306608910725e-04 +Electron-electron_collision_time_at_point_446____________________________ (t_plasma_electron_electron_collision_profile446)_ 2.95969037845835337e-04 +Electron-electron_collision_time_at_point_447____________________________ (t_plasma_electron_electron_collision_profile447)_ 2.93780719766368410e-04 +Electron-electron_collision_time_at_point_448____________________________ (t_plasma_electron_electron_collision_profile448)_ 2.91640877347950386e-04 +Electron-electron_collision_time_at_point_449____________________________ (t_plasma_electron_electron_collision_profile449)_ 2.89551140391045611e-04 +Electron-electron_collision_time_at_point_450____________________________ (t_plasma_electron_electron_collision_profile450)_ 2.87513256267615564e-04 +Electron-electron_collision_time_at_point_451____________________________ (t_plasma_electron_electron_collision_profile451)_ 2.85529104884634205e-04 +Electron-electron_collision_time_at_point_452____________________________ (t_plasma_electron_electron_collision_profile452)_ 2.83600716380871354e-04 +Electron-electron_collision_time_at_point_453____________________________ (t_plasma_electron_electron_collision_profile453)_ 2.81730292231933586e-04 +Electron-electron_collision_time_at_point_454____________________________ (t_plasma_electron_electron_collision_profile454)_ 2.79920230654773401e-04 +Electron-electron_collision_time_at_point_455____________________________ (t_plasma_electron_electron_collision_profile455)_ 2.78173157506229245e-04 +Electron-electron_collision_time_at_point_456____________________________ (t_plasma_electron_electron_collision_profile456)_ 2.76491964303925792e-04 +Electron-electron_collision_time_at_point_457____________________________ (t_plasma_electron_electron_collision_profile457)_ 2.74879855631404496e-04 +Electron-electron_collision_time_at_point_458____________________________ (t_plasma_electron_electron_collision_profile458)_ 2.73340409137154720e-04 +Electron-electron_collision_time_at_point_459____________________________ (t_plasma_electron_electron_collision_profile459)_ 2.71877652794299261e-04 +Electron-electron_collision_time_at_point_460____________________________ (t_plasma_electron_electron_collision_profile460)_ 2.70496166398963896e-04 +Electron-electron_collision_time_at_point_461____________________________ (t_plasma_electron_electron_collision_profile461)_ 2.69201218087156894e-04 +Electron-electron_collision_time_at_point_462____________________________ (t_plasma_electron_electron_collision_profile462)_ 2.67998953176583701e-04 +Electron-electron_collision_time_at_point_463____________________________ (t_plasma_electron_electron_collision_profile463)_ 2.66896664430977279e-04 +Electron-electron_collision_time_at_point_464____________________________ (t_plasma_electron_electron_collision_profile464)_ 2.65903195514701548e-04 +Electron-electron_collision_time_at_point_465____________________________ (t_plasma_electron_electron_collision_profile465)_ 2.65029576517398504e-04 +Electron-electron_collision_time_at_point_466____________________________ (t_plasma_electron_electron_collision_profile466)_ 2.64290098689315433e-04 +Electron-electron_collision_time_at_point_467____________________________ (t_plasma_electron_electron_collision_profile467)_ 2.63704320633652138e-04 +Electron-electron_collision_time_at_point_468____________________________ (t_plasma_electron_electron_collision_profile468)_ 2.63301414474663323e-04 +Electron-electron_collision_time_at_point_469____________________________ (t_plasma_electron_electron_collision_profile469)_ 2.63132377485838554e-04 +Electron-electron_collision_time_at_point_470____________________________ (t_plasma_electron_electron_collision_profile470)_ 2.63344710648125678e-04 +Electron-electron_collision_time_at_point_471____________________________ (t_plasma_electron_electron_collision_profile471)_ 2.54406631286840663e-04 +Electron-electron_collision_time_at_point_472____________________________ (t_plasma_electron_electron_collision_profile472)_ 2.45413560046521355e-04 +Electron-electron_collision_time_at_point_473____________________________ (t_plasma_electron_electron_collision_profile473)_ 2.36366738188963522e-04 +Electron-electron_collision_time_at_point_474____________________________ (t_plasma_electron_electron_collision_profile474)_ 2.27267680650390967e-04 +Electron-electron_collision_time_at_point_475____________________________ (t_plasma_electron_electron_collision_profile475)_ 2.18118215685767804e-04 +Electron-electron_collision_time_at_point_476____________________________ (t_plasma_electron_electron_collision_profile476)_ 2.08920530805977486e-04 +Electron-electron_collision_time_at_point_477____________________________ (t_plasma_electron_electron_collision_profile477)_ 1.99677226189593930e-04 +Electron-electron_collision_time_at_point_478____________________________ (t_plasma_electron_electron_collision_profile478)_ 1.90391377019020211e-04 +Electron-electron_collision_time_at_point_479____________________________ (t_plasma_electron_electron_collision_profile479)_ 1.81066606532522223e-04 +Electron-electron_collision_time_at_point_480____________________________ (t_plasma_electron_electron_collision_profile480)_ 1.71707172023595077e-04 +Electron-electron_collision_time_at_point_481____________________________ (t_plasma_electron_electron_collision_profile481)_ 1.62318066591331272e-04 +Electron-electron_collision_time_at_point_482____________________________ (t_plasma_electron_electron_collision_profile482)_ 1.52905140198428334e-04 +Electron-electron_collision_time_at_point_483____________________________ (t_plasma_electron_electron_collision_profile483)_ 1.43475244596936947e-04 +Electron-electron_collision_time_at_point_484____________________________ (t_plasma_electron_electron_collision_profile484)_ 1.34036408038096857e-04 +Electron-electron_collision_time_at_point_485____________________________ (t_plasma_electron_electron_collision_profile485)_ 1.24598047544561050e-04 +Electron-electron_collision_time_at_point_486____________________________ (t_plasma_electron_electron_collision_profile486)_ 1.15171229124663442e-04 +Electron-electron_collision_time_at_point_487____________________________ (t_plasma_electron_electron_collision_profile487)_ 1.05768990014842209e-04 +Electron-electron_collision_time_at_point_488____________________________ (t_plasma_electron_electron_collision_profile488)_ 9.64067424359378675e-05 +Electron-electron_collision_time_at_point_489____________________________ (t_plasma_electron_electron_collision_profile489)_ 8.71027864164831836e-05 +Electron-electron_collision_time_at_point_490____________________________ (t_plasma_electron_electron_collision_profile490)_ 7.78789716435111486e-05 +Electron-electron_collision_time_at_point_491____________________________ (t_plasma_electron_electron_collision_profile491)_ 6.87615680338568368e-05 +Electron-electron_collision_time_at_point_492____________________________ (t_plasma_electron_electron_collision_profile492)_ 5.97824373555298145e-05 +Electron-electron_collision_time_at_point_493____________________________ (t_plasma_electron_electron_collision_profile493)_ 5.09806547762671854e-05 +Electron-electron_collision_time_at_point_494____________________________ (t_plasma_electron_electron_collision_profile494)_ 4.24048328389825820e-05 +Electron-electron_collision_time_at_point_495____________________________ (t_plasma_electron_electron_collision_profile495)_ 3.41166038131277832e-05 +Electron-electron_collision_time_at_point_496____________________________ (t_plasma_electron_electron_collision_profile496)_ 2.61961522781085167e-05 +Electron-electron_collision_time_at_point_497____________________________ (t_plasma_electron_electron_collision_profile497)_ 1.87517375391155085e-05 +Electron-electron_collision_time_at_point_498____________________________ (t_plasma_electron_electron_collision_profile498)_ 1.19381013439321102e-05 +Electron-electron_collision_time_at_point_499____________________________ (t_plasma_electron_electron_collision_profile499)_ 5.99931842953150654e-06 +Electron-electron_collision_time_at_point_500____________________________ (t_plasma_electron_electron_collision_profile500)_ 1.41297169319457467e-06 +Volume_averaged_electron-deuteron_collision_time_(τₑD)_(s)_______________ (t_plasma_electron_deuteron_collision_vol_avg)_ 8.54776544378105653e-04 OP +Electron-deuteron_collision_time_at_point_0______________________________ (t_plasma_electron_deuteron_collision_profile0)_ 1.87899601467234707e-03 +Electron-deuteron_collision_time_at_point_1______________________________ (t_plasma_electron_deuteron_collision_profile1)_ 1.87898523850721366e-03 +Electron-deuteron_collision_time_at_point_2______________________________ (t_plasma_electron_deuteron_collision_profile2)_ 1.87895291015333522e-03 +Electron-deuteron_collision_time_at_point_3______________________________ (t_plasma_electron_deuteron_collision_profile3)_ 1.87889903003528010e-03 +Electron-deuteron_collision_time_at_point_4______________________________ (t_plasma_electron_deuteron_collision_profile4)_ 1.87882359886067996e-03 +Electron-deuteron_collision_time_at_point_5______________________________ (t_plasma_electron_deuteron_collision_profile5)_ 1.87872661762025534e-03 +Electron-deuteron_collision_time_at_point_6______________________________ (t_plasma_electron_deuteron_collision_profile6)_ 1.87860808758785205e-03 +Electron-deuteron_collision_time_at_point_7______________________________ (t_plasma_electron_deuteron_collision_profile7)_ 1.87846801032048698e-03 +Electron-deuteron_collision_time_at_point_8______________________________ (t_plasma_electron_deuteron_collision_profile8)_ 1.87830638765840185e-03 +Electron-deuteron_collision_time_at_point_9______________________________ (t_plasma_electron_deuteron_collision_profile9)_ 1.87812322172513824e-03 +Electron-deuteron_collision_time_at_point_10_____________________________ (t_plasma_electron_deuteron_collision_profile10)_ 1.87791851492760523e-03 +Electron-deuteron_collision_time_at_point_11_____________________________ (t_plasma_electron_deuteron_collision_profile11)_ 1.87769226995617268e-03 +Electron-deuteron_collision_time_at_point_12_____________________________ (t_plasma_electron_deuteron_collision_profile12)_ 1.87744448978476855e-03 +Electron-deuteron_collision_time_at_point_13_____________________________ (t_plasma_electron_deuteron_collision_profile13)_ 1.87717517767098754e-03 +Electron-deuteron_collision_time_at_point_14_____________________________ (t_plasma_electron_deuteron_collision_profile14)_ 1.87688433715620410e-03 +Electron-deuteron_collision_time_at_point_15_____________________________ (t_plasma_electron_deuteron_collision_profile15)_ 1.87657197206571075e-03 +Electron-deuteron_collision_time_at_point_16_____________________________ (t_plasma_electron_deuteron_collision_profile16)_ 1.87623808650884904e-03 +Electron-deuteron_collision_time_at_point_17_____________________________ (t_plasma_electron_deuteron_collision_profile17)_ 1.87588268487916309e-03 +Electron-deuteron_collision_time_at_point_18_____________________________ (t_plasma_electron_deuteron_collision_profile18)_ 1.87550577185456157e-03 +Electron-deuteron_collision_time_at_point_19_____________________________ (t_plasma_electron_deuteron_collision_profile19)_ 1.87510735239748206e-03 +Electron-deuteron_collision_time_at_point_20_____________________________ (t_plasma_electron_deuteron_collision_profile20)_ 1.87468743175507645e-03 +Electron-deuteron_collision_time_at_point_21_____________________________ (t_plasma_electron_deuteron_collision_profile21)_ 1.87424601545940306e-03 +Electron-deuteron_collision_time_at_point_22_____________________________ (t_plasma_electron_deuteron_collision_profile22)_ 1.87378310932762374e-03 +Electron-deuteron_collision_time_at_point_23_____________________________ (t_plasma_electron_deuteron_collision_profile23)_ 1.87329871946222137e-03 +Electron-deuteron_collision_time_at_point_24_____________________________ (t_plasma_electron_deuteron_collision_profile24)_ 1.87279285225121716e-03 +Electron-deuteron_collision_time_at_point_25_____________________________ (t_plasma_electron_deuteron_collision_profile25)_ 1.87226551436840932e-03 +Electron-deuteron_collision_time_at_point_26_____________________________ (t_plasma_electron_deuteron_collision_profile26)_ 1.87171671277360885e-03 +Electron-deuteron_collision_time_at_point_27_____________________________ (t_plasma_electron_deuteron_collision_profile27)_ 1.87114645471290401e-03 +Electron-deuteron_collision_time_at_point_28_____________________________ (t_plasma_electron_deuteron_collision_profile28)_ 1.87055474771891735e-03 +Electron-deuteron_collision_time_at_point_29_____________________________ (t_plasma_electron_deuteron_collision_profile29)_ 1.86994159961108276e-03 +Electron-deuteron_collision_time_at_point_30_____________________________ (t_plasma_electron_deuteron_collision_profile30)_ 1.86930701849593152e-03 +Electron-deuteron_collision_time_at_point_31_____________________________ (t_plasma_electron_deuteron_collision_profile31)_ 1.86865101276738961e-03 +Electron-deuteron_collision_time_at_point_32_____________________________ (t_plasma_electron_deuteron_collision_profile32)_ 1.86797359110708341e-03 +Electron-deuteron_collision_time_at_point_33_____________________________ (t_plasma_electron_deuteron_collision_profile33)_ 1.86727476248465998e-03 +Electron-deuteron_collision_time_at_point_34_____________________________ (t_plasma_electron_deuteron_collision_profile34)_ 1.86655453615810953e-03 +Electron-deuteron_collision_time_at_point_35_____________________________ (t_plasma_electron_deuteron_collision_profile35)_ 1.86581292167411323e-03 +Electron-deuteron_collision_time_at_point_36_____________________________ (t_plasma_electron_deuteron_collision_profile36)_ 1.86504992886838447e-03 +Electron-deuteron_collision_time_at_point_37_____________________________ (t_plasma_electron_deuteron_collision_profile37)_ 1.86426556786603581e-03 +Electron-deuteron_collision_time_at_point_38_____________________________ (t_plasma_electron_deuteron_collision_profile38)_ 1.86345984908194758e-03 +Electron-deuteron_collision_time_at_point_39_____________________________ (t_plasma_electron_deuteron_collision_profile39)_ 1.86263278322115018e-03 +Electron-deuteron_collision_time_at_point_40_____________________________ (t_plasma_electron_deuteron_collision_profile40)_ 1.86178438127921459e-03 +Electron-deuteron_collision_time_at_point_41_____________________________ (t_plasma_electron_deuteron_collision_profile41)_ 1.86091465454266592e-03 +Electron-deuteron_collision_time_at_point_42_____________________________ (t_plasma_electron_deuteron_collision_profile42)_ 1.86002361458938409e-03 +Electron-deuteron_collision_time_at_point_43_____________________________ (t_plasma_electron_deuteron_collision_profile43)_ 1.85911127328903950e-03 +Electron-deuteron_collision_time_at_point_44_____________________________ (t_plasma_electron_deuteron_collision_profile44)_ 1.85817764280353124e-03 +Electron-deuteron_collision_time_at_point_45_____________________________ (t_plasma_electron_deuteron_collision_profile45)_ 1.85722273558742447e-03 +Electron-deuteron_collision_time_at_point_46_____________________________ (t_plasma_electron_deuteron_collision_profile46)_ 1.85624656438842161e-03 +Electron-deuteron_collision_time_at_point_47_____________________________ (t_plasma_electron_deuteron_collision_profile47)_ 1.85524914224781965e-03 +Electron-deuteron_collision_time_at_point_48_____________________________ (t_plasma_electron_deuteron_collision_profile48)_ 1.85423048250100541e-03 +Electron-deuteron_collision_time_at_point_49_____________________________ (t_plasma_electron_deuteron_collision_profile49)_ 1.85319059877793414e-03 +Electron-deuteron_collision_time_at_point_50_____________________________ (t_plasma_electron_deuteron_collision_profile50)_ 1.85212950500364230e-03 +Electron-deuteron_collision_time_at_point_51_____________________________ (t_plasma_electron_deuteron_collision_profile51)_ 1.85104721539875654e-03 +Electron-deuteron_collision_time_at_point_52_____________________________ (t_plasma_electron_deuteron_collision_profile52)_ 1.84994374448002293e-03 +Electron-deuteron_collision_time_at_point_53_____________________________ (t_plasma_electron_deuteron_collision_profile53)_ 1.84881910706084502e-03 +Electron-deuteron_collision_time_at_point_54_____________________________ (t_plasma_electron_deuteron_collision_profile54)_ 1.84767331825182895e-03 +Electron-deuteron_collision_time_at_point_55_____________________________ (t_plasma_electron_deuteron_collision_profile55)_ 1.84650639346134200e-03 +Electron-deuteron_collision_time_at_point_56_____________________________ (t_plasma_electron_deuteron_collision_profile56)_ 1.84531834839609201e-03 +Electron-deuteron_collision_time_at_point_57_____________________________ (t_plasma_electron_deuteron_collision_profile57)_ 1.84410919906170226e-03 +Electron-deuteron_collision_time_at_point_58_____________________________ (t_plasma_electron_deuteron_collision_profile58)_ 1.84287896176331075e-03 +Electron-deuteron_collision_time_at_point_59_____________________________ (t_plasma_electron_deuteron_collision_profile59)_ 1.84162765310617394e-03 +Electron-deuteron_collision_time_at_point_60_____________________________ (t_plasma_electron_deuteron_collision_profile60)_ 1.84035528999628448e-03 +Electron-deuteron_collision_time_at_point_61_____________________________ (t_plasma_electron_deuteron_collision_profile61)_ 1.83906188964100183e-03 +Electron-deuteron_collision_time_at_point_62_____________________________ (t_plasma_electron_deuteron_collision_profile62)_ 1.83774746954969235e-03 +Electron-deuteron_collision_time_at_point_63_____________________________ (t_plasma_electron_deuteron_collision_profile63)_ 1.83641204753438370e-03 +Electron-deuteron_collision_time_at_point_64_____________________________ (t_plasma_electron_deuteron_collision_profile64)_ 1.83505564171042778e-03 +Electron-deuteron_collision_time_at_point_65_____________________________ (t_plasma_electron_deuteron_collision_profile65)_ 1.83367827049717765e-03 +Electron-deuteron_collision_time_at_point_66_____________________________ (t_plasma_electron_deuteron_collision_profile66)_ 1.83227995261867841e-03 +Electron-deuteron_collision_time_at_point_67_____________________________ (t_plasma_electron_deuteron_collision_profile67)_ 1.83086070710436455e-03 +Electron-deuteron_collision_time_at_point_68_____________________________ (t_plasma_electron_deuteron_collision_profile68)_ 1.82942055328977338e-03 +Electron-deuteron_collision_time_at_point_69_____________________________ (t_plasma_electron_deuteron_collision_profile69)_ 1.82795951081727291e-03 +Electron-deuteron_collision_time_at_point_70_____________________________ (t_plasma_electron_deuteron_collision_profile70)_ 1.82647759963679526e-03 +Electron-deuteron_collision_time_at_point_71_____________________________ (t_plasma_electron_deuteron_collision_profile71)_ 1.82497484000658755e-03 +Electron-deuteron_collision_time_at_point_72_____________________________ (t_plasma_electron_deuteron_collision_profile72)_ 1.82345125249397237e-03 +Electron-deuteron_collision_time_at_point_73_____________________________ (t_plasma_electron_deuteron_collision_profile73)_ 1.82190685797612426e-03 +Electron-deuteron_collision_time_at_point_74_____________________________ (t_plasma_electron_deuteron_collision_profile74)_ 1.82034167764084953e-03 +Electron-deuteron_collision_time_at_point_75_____________________________ (t_plasma_electron_deuteron_collision_profile75)_ 1.81875573298739563e-03 +Electron-deuteron_collision_time_at_point_76_____________________________ (t_plasma_electron_deuteron_collision_profile76)_ 1.81714904582725117e-03 +Electron-deuteron_collision_time_at_point_77_____________________________ (t_plasma_electron_deuteron_collision_profile77)_ 1.81552163828497897e-03 +Electron-deuteron_collision_time_at_point_78_____________________________ (t_plasma_electron_deuteron_collision_profile78)_ 1.81387353279904569e-03 +Electron-deuteron_collision_time_at_point_79_____________________________ (t_plasma_electron_deuteron_collision_profile79)_ 1.81220475212267641e-03 +Electron-deuteron_collision_time_at_point_80_____________________________ (t_plasma_electron_deuteron_collision_profile80)_ 1.81051531932471441e-03 +Electron-deuteron_collision_time_at_point_81_____________________________ (t_plasma_electron_deuteron_collision_profile81)_ 1.80880525779049655e-03 +Electron-deuteron_collision_time_at_point_82_____________________________ (t_plasma_electron_deuteron_collision_profile82)_ 1.80707459122274100e-03 +Electron-deuteron_collision_time_at_point_83_____________________________ (t_plasma_electron_deuteron_collision_profile83)_ 1.80532334364244865e-03 +Electron-deuteron_collision_time_at_point_84_____________________________ (t_plasma_electron_deuteron_collision_profile84)_ 1.80355153938981929e-03 +Electron-deuteron_collision_time_at_point_85_____________________________ (t_plasma_electron_deuteron_collision_profile85)_ 1.80175920312517618e-03 +Electron-deuteron_collision_time_at_point_86_____________________________ (t_plasma_electron_deuteron_collision_profile86)_ 1.79994635982990564e-03 +Electron-deuteron_collision_time_at_point_87_____________________________ (t_plasma_electron_deuteron_collision_profile87)_ 1.79811303480741634e-03 +Electron-deuteron_collision_time_at_point_88_____________________________ (t_plasma_electron_deuteron_collision_profile88)_ 1.79625925368410121e-03 +Electron-deuteron_collision_time_at_point_89_____________________________ (t_plasma_electron_deuteron_collision_profile89)_ 1.79438504241032342e-03 +Electron-deuteron_collision_time_at_point_90_____________________________ (t_plasma_electron_deuteron_collision_profile90)_ 1.79249042726140691e-03 +Electron-deuteron_collision_time_at_point_91_____________________________ (t_plasma_electron_deuteron_collision_profile91)_ 1.79057543483864337e-03 +Electron-deuteron_collision_time_at_point_92_____________________________ (t_plasma_electron_deuteron_collision_profile92)_ 1.78864009207031945e-03 +Electron-deuteron_collision_time_at_point_93_____________________________ (t_plasma_electron_deuteron_collision_profile93)_ 1.78668442621274953e-03 +Electron-deuteron_collision_time_at_point_94_____________________________ (t_plasma_electron_deuteron_collision_profile94)_ 1.78470846485132505e-03 +Electron-deuteron_collision_time_at_point_95_____________________________ (t_plasma_electron_deuteron_collision_profile95)_ 1.78271223590157962e-03 +Electron-deuteron_collision_time_at_point_96_____________________________ (t_plasma_electron_deuteron_collision_profile96)_ 1.78069576761026322e-03 +Electron-deuteron_collision_time_at_point_97_____________________________ (t_plasma_electron_deuteron_collision_profile97)_ 1.77865908855643945e-03 +Electron-deuteron_collision_time_at_point_98_____________________________ (t_plasma_electron_deuteron_collision_profile98)_ 1.77660222765258879e-03 +Electron-deuteron_collision_time_at_point_99_____________________________ (t_plasma_electron_deuteron_collision_profile99)_ 1.77452521414573012e-03 +Electron-deuteron_collision_time_at_point_100____________________________ (t_plasma_electron_deuteron_collision_profile100)_ 1.77242807761855258e-03 +Electron-deuteron_collision_time_at_point_101____________________________ (t_plasma_electron_deuteron_collision_profile101)_ 1.77031084799057162e-03 +Electron-deuteron_collision_time_at_point_102____________________________ (t_plasma_electron_deuteron_collision_profile102)_ 1.76817355551928514e-03 +Electron-deuteron_collision_time_at_point_103____________________________ (t_plasma_electron_deuteron_collision_profile103)_ 1.76601623080136221e-03 +Electron-deuteron_collision_time_at_point_104____________________________ (t_plasma_electron_deuteron_collision_profile104)_ 1.76383890477382899e-03 +Electron-deuteron_collision_time_at_point_105____________________________ (t_plasma_electron_deuteron_collision_profile105)_ 1.76164160871527847e-03 +Electron-deuteron_collision_time_at_point_106____________________________ (t_plasma_electron_deuteron_collision_profile106)_ 1.75942437424710064e-03 +Electron-deuteron_collision_time_at_point_107____________________________ (t_plasma_electron_deuteron_collision_profile107)_ 1.75718723333471365e-03 +Electron-deuteron_collision_time_at_point_108____________________________ (t_plasma_electron_deuteron_collision_profile108)_ 1.75493021828882607e-03 +Electron-deuteron_collision_time_at_point_109____________________________ (t_plasma_electron_deuteron_collision_profile109)_ 1.75265336176669631e-03 +Electron-deuteron_collision_time_at_point_110____________________________ (t_plasma_electron_deuteron_collision_profile110)_ 1.75035669677342997e-03 +Electron-deuteron_collision_time_at_point_111____________________________ (t_plasma_electron_deuteron_collision_profile111)_ 1.74804025666326960e-03 +Electron-deuteron_collision_time_at_point_112____________________________ (t_plasma_electron_deuteron_collision_profile112)_ 1.74570407514092110e-03 +Electron-deuteron_collision_time_at_point_113____________________________ (t_plasma_electron_deuteron_collision_profile113)_ 1.74334818626287798e-03 +Electron-deuteron_collision_time_at_point_114____________________________ (t_plasma_electron_deuteron_collision_profile114)_ 1.74097262443877383e-03 +Electron-deuteron_collision_time_at_point_115____________________________ (t_plasma_electron_deuteron_collision_profile115)_ 1.73857742443274746e-03 +Electron-deuteron_collision_time_at_point_116____________________________ (t_plasma_electron_deuteron_collision_profile116)_ 1.73616262136481883e-03 +Electron-deuteron_collision_time_at_point_117____________________________ (t_plasma_electron_deuteron_collision_profile117)_ 1.73372825071229242e-03 +Electron-deuteron_collision_time_at_point_118____________________________ (t_plasma_electron_deuteron_collision_profile118)_ 1.73127434831116386e-03 +Electron-deuteron_collision_time_at_point_119____________________________ (t_plasma_electron_deuteron_collision_profile119)_ 1.72880095035755454e-03 +Electron-deuteron_collision_time_at_point_120____________________________ (t_plasma_electron_deuteron_collision_profile120)_ 1.72630809340915711e-03 +Electron-deuteron_collision_time_at_point_121____________________________ (t_plasma_electron_deuteron_collision_profile121)_ 1.72379581438669694e-03 +Electron-deuteron_collision_time_at_point_122____________________________ (t_plasma_electron_deuteron_collision_profile122)_ 1.72126415057541338e-03 +Electron-deuteron_collision_time_at_point_123____________________________ (t_plasma_electron_deuteron_collision_profile123)_ 1.71871313962655681e-03 +Electron-deuteron_collision_time_at_point_124____________________________ (t_plasma_electron_deuteron_collision_profile124)_ 1.71614281955890483e-03 +Electron-deuteron_collision_time_at_point_125____________________________ (t_plasma_electron_deuteron_collision_profile125)_ 1.71355322876029113e-03 +Electron-deuteron_collision_time_at_point_126____________________________ (t_plasma_electron_deuteron_collision_profile126)_ 1.71094440598915619e-03 +Electron-deuteron_collision_time_at_point_127____________________________ (t_plasma_electron_deuteron_collision_profile127)_ 1.70831639037611347e-03 +Electron-deuteron_collision_time_at_point_128____________________________ (t_plasma_electron_deuteron_collision_profile128)_ 1.70566922142553518e-03 +Electron-deuteron_collision_time_at_point_129____________________________ (t_plasma_electron_deuteron_collision_profile129)_ 1.70300293901715278e-03 +Electron-deuteron_collision_time_at_point_130____________________________ (t_plasma_electron_deuteron_collision_profile130)_ 1.70031758340768004e-03 +Electron-deuteron_collision_time_at_point_131____________________________ (t_plasma_electron_deuteron_collision_profile131)_ 1.69761319523244777e-03 +Electron-deuteron_collision_time_at_point_132____________________________ (t_plasma_electron_deuteron_collision_profile132)_ 1.69488981550706421e-03 +Electron-deuteron_collision_time_at_point_133____________________________ (t_plasma_electron_deuteron_collision_profile133)_ 1.69214748562908964e-03 +Electron-deuteron_collision_time_at_point_134____________________________ (t_plasma_electron_deuteron_collision_profile134)_ 1.68938624737972648e-03 +Electron-deuteron_collision_time_at_point_135____________________________ (t_plasma_electron_deuteron_collision_profile135)_ 1.68660614292553902e-03 +Electron-deuteron_collision_time_at_point_136____________________________ (t_plasma_electron_deuteron_collision_profile136)_ 1.68380721482017971e-03 +Electron-deuteron_collision_time_at_point_137____________________________ (t_plasma_electron_deuteron_collision_profile137)_ 1.68098950600614012e-03 +Electron-deuteron_collision_time_at_point_138____________________________ (t_plasma_electron_deuteron_collision_profile138)_ 1.67815305981652255e-03 +Electron-deuteron_collision_time_at_point_139____________________________ (t_plasma_electron_deuteron_collision_profile139)_ 1.67529791997683068e-03 +Electron-deuteron_collision_time_at_point_140____________________________ (t_plasma_electron_deuteron_collision_profile140)_ 1.67242413060677371e-03 +Electron-deuteron_collision_time_at_point_141____________________________ (t_plasma_electron_deuteron_collision_profile141)_ 1.66953173622209883e-03 +Electron-deuteron_collision_time_at_point_142____________________________ (t_plasma_electron_deuteron_collision_profile142)_ 1.66662078173644050e-03 +Electron-deuteron_collision_time_at_point_143____________________________ (t_plasma_electron_deuteron_collision_profile143)_ 1.66369131246318545e-03 +Electron-deuteron_collision_time_at_point_144____________________________ (t_plasma_electron_deuteron_collision_profile144)_ 1.66074337411736351e-03 +Electron-deuteron_collision_time_at_point_145____________________________ (t_plasma_electron_deuteron_collision_profile145)_ 1.65777701281755521e-03 +Electron-deuteron_collision_time_at_point_146____________________________ (t_plasma_electron_deuteron_collision_profile146)_ 1.65479227508782707e-03 +Electron-deuteron_collision_time_at_point_147____________________________ (t_plasma_electron_deuteron_collision_profile147)_ 1.65178920785967356e-03 +Electron-deuteron_collision_time_at_point_148____________________________ (t_plasma_electron_deuteron_collision_profile148)_ 1.64876785847399565e-03 +Electron-deuteron_collision_time_at_point_149____________________________ (t_plasma_electron_deuteron_collision_profile149)_ 1.64572827468309046e-03 +Electron-deuteron_collision_time_at_point_150____________________________ (t_plasma_electron_deuteron_collision_profile150)_ 1.64267050465266530e-03 +Electron-deuteron_collision_time_at_point_151____________________________ (t_plasma_electron_deuteron_collision_profile151)_ 1.63959459696387511e-03 +Electron-deuteron_collision_time_at_point_152____________________________ (t_plasma_electron_deuteron_collision_profile152)_ 1.63650060061537529e-03 +Electron-deuteron_collision_time_at_point_153____________________________ (t_plasma_electron_deuteron_collision_profile153)_ 1.63338856502540900e-03 +Electron-deuteron_collision_time_at_point_154____________________________ (t_plasma_electron_deuteron_collision_profile154)_ 1.63025854003389769e-03 +Electron-deuteron_collision_time_at_point_155____________________________ (t_plasma_electron_deuteron_collision_profile155)_ 1.62711057590457335e-03 +Electron-deuteron_collision_time_at_point_156____________________________ (t_plasma_electron_deuteron_collision_profile156)_ 1.62394472332712172e-03 +Electron-deuteron_collision_time_at_point_157____________________________ (t_plasma_electron_deuteron_collision_profile157)_ 1.62076103341934983e-03 +Electron-deuteron_collision_time_at_point_158____________________________ (t_plasma_electron_deuteron_collision_profile158)_ 1.61755955772937871e-03 +Electron-deuteron_collision_time_at_point_159____________________________ (t_plasma_electron_deuteron_collision_profile159)_ 1.61434034823785882e-03 +Electron-deuteron_collision_time_at_point_160____________________________ (t_plasma_electron_deuteron_collision_profile160)_ 1.61110345736020745e-03 +Electron-deuteron_collision_time_at_point_161____________________________ (t_plasma_electron_deuteron_collision_profile161)_ 1.60784893794887183e-03 +Electron-deuteron_collision_time_at_point_162____________________________ (t_plasma_electron_deuteron_collision_profile162)_ 1.60457684329561208e-03 +Electron-deuteron_collision_time_at_point_163____________________________ (t_plasma_electron_deuteron_collision_profile163)_ 1.60128722713381248e-03 +Electron-deuteron_collision_time_at_point_164____________________________ (t_plasma_electron_deuteron_collision_profile164)_ 1.59798014364081749e-03 +Electron-deuteron_collision_time_at_point_165____________________________ (t_plasma_electron_deuteron_collision_profile165)_ 1.59465564744028405e-03 +Electron-deuteron_collision_time_at_point_166____________________________ (t_plasma_electron_deuteron_collision_profile166)_ 1.59131379360457378e-03 +Electron-deuteron_collision_time_at_point_167____________________________ (t_plasma_electron_deuteron_collision_profile167)_ 1.58795463765715010e-03 +Electron-deuteron_collision_time_at_point_168____________________________ (t_plasma_electron_deuteron_collision_profile168)_ 1.58457823557501989e-03 +Electron-deuteron_collision_time_at_point_169____________________________ (t_plasma_electron_deuteron_collision_profile169)_ 1.58118464379118813e-03 +Electron-deuteron_collision_time_at_point_170____________________________ (t_plasma_electron_deuteron_collision_profile170)_ 1.57777391919714503e-03 +Electron-deuteron_collision_time_at_point_171____________________________ (t_plasma_electron_deuteron_collision_profile171)_ 1.57434611914536991e-03 +Electron-deuteron_collision_time_at_point_172____________________________ (t_plasma_electron_deuteron_collision_profile172)_ 1.57090130145187776e-03 +Electron-deuteron_collision_time_at_point_173____________________________ (t_plasma_electron_deuteron_collision_profile173)_ 1.56743952439877018e-03 +Electron-deuteron_collision_time_at_point_174____________________________ (t_plasma_electron_deuteron_collision_profile174)_ 1.56396084673683612e-03 +Electron-deuteron_collision_time_at_point_175____________________________ (t_plasma_electron_deuteron_collision_profile175)_ 1.56046532768816092e-03 +Electron-deuteron_collision_time_at_point_176____________________________ (t_plasma_electron_deuteron_collision_profile176)_ 1.55695302694877223e-03 +Electron-deuteron_collision_time_at_point_177____________________________ (t_plasma_electron_deuteron_collision_profile177)_ 1.55342400469131231e-03 +Electron-deuteron_collision_time_at_point_178____________________________ (t_plasma_electron_deuteron_collision_profile178)_ 1.54987832156773379e-03 +Electron-deuteron_collision_time_at_point_179____________________________ (t_plasma_electron_deuteron_collision_profile179)_ 1.54631603871203276e-03 +Electron-deuteron_collision_time_at_point_180____________________________ (t_plasma_electron_deuteron_collision_profile180)_ 1.54273721774299787e-03 +Electron-deuteron_collision_time_at_point_181____________________________ (t_plasma_electron_deuteron_collision_profile181)_ 1.53914192076699602e-03 +Electron-deuteron_collision_time_at_point_182____________________________ (t_plasma_electron_deuteron_collision_profile182)_ 1.53553021038079049e-03 +Electron-deuteron_collision_time_at_point_183____________________________ (t_plasma_electron_deuteron_collision_profile183)_ 1.53190214967437394e-03 +Electron-deuteron_collision_time_at_point_184____________________________ (t_plasma_electron_deuteron_collision_profile184)_ 1.52825780223384846e-03 +Electron-deuteron_collision_time_at_point_185____________________________ (t_plasma_electron_deuteron_collision_profile185)_ 1.52459723214432236e-03 +Electron-deuteron_collision_time_at_point_186____________________________ (t_plasma_electron_deuteron_collision_profile186)_ 1.52092050399284511e-03 +Electron-deuteron_collision_time_at_point_187____________________________ (t_plasma_electron_deuteron_collision_profile187)_ 1.51722768287136591e-03 +Electron-deuteron_collision_time_at_point_188____________________________ (t_plasma_electron_deuteron_collision_profile188)_ 1.51351883437972844e-03 +Electron-deuteron_collision_time_at_point_189____________________________ (t_plasma_electron_deuteron_collision_profile189)_ 1.50979402462869693e-03 +Electron-deuteron_collision_time_at_point_190____________________________ (t_plasma_electron_deuteron_collision_profile190)_ 1.50605332024300793e-03 +Electron-deuteron_collision_time_at_point_191____________________________ (t_plasma_electron_deuteron_collision_profile191)_ 1.50229678836445984e-03 +Electron-deuteron_collision_time_at_point_192____________________________ (t_plasma_electron_deuteron_collision_profile192)_ 1.49852449665503263e-03 +Electron-deuteron_collision_time_at_point_193____________________________ (t_plasma_electron_deuteron_collision_profile193)_ 1.49473651330003787e-03 +Electron-deuteron_collision_time_at_point_194____________________________ (t_plasma_electron_deuteron_collision_profile194)_ 1.49093290701130476e-03 +Electron-deuteron_collision_time_at_point_195____________________________ (t_plasma_electron_deuteron_collision_profile195)_ 1.48711374703039715e-03 +Electron-deuteron_collision_time_at_point_196____________________________ (t_plasma_electron_deuteron_collision_profile196)_ 1.48327910313186535e-03 +Electron-deuteron_collision_time_at_point_197____________________________ (t_plasma_electron_deuteron_collision_profile197)_ 1.47942904562653075e-03 +Electron-deuteron_collision_time_at_point_198____________________________ (t_plasma_electron_deuteron_collision_profile198)_ 1.47556364536480591e-03 +Electron-deuteron_collision_time_at_point_199____________________________ (t_plasma_electron_deuteron_collision_profile199)_ 1.47168297374004691e-03 +Electron-deuteron_collision_time_at_point_200____________________________ (t_plasma_electron_deuteron_collision_profile200)_ 1.46778710269194730e-03 +Electron-deuteron_collision_time_at_point_201____________________________ (t_plasma_electron_deuteron_collision_profile201)_ 1.46387610470995449e-03 +Electron-deuteron_collision_time_at_point_202____________________________ (t_plasma_electron_deuteron_collision_profile202)_ 1.45995005283673825e-03 +Electron-deuteron_collision_time_at_point_203____________________________ (t_plasma_electron_deuteron_collision_profile203)_ 1.45600902067167994e-03 +Electron-deuteron_collision_time_at_point_204____________________________ (t_plasma_electron_deuteron_collision_profile204)_ 1.45205308237441200e-03 +Electron-deuteron_collision_time_at_point_205____________________________ (t_plasma_electron_deuteron_collision_profile205)_ 1.44808231266838365e-03 +Electron-deuteron_collision_time_at_point_206____________________________ (t_plasma_electron_deuteron_collision_profile206)_ 1.44409678684447040e-03 +Electron-deuteron_collision_time_at_point_207____________________________ (t_plasma_electron_deuteron_collision_profile207)_ 1.44009658076461747e-03 +Electron-deuteron_collision_time_at_point_208____________________________ (t_plasma_electron_deuteron_collision_profile208)_ 1.43608177086552795e-03 +Electron-deuteron_collision_time_at_point_209____________________________ (t_plasma_electron_deuteron_collision_profile209)_ 1.43205243416237799e-03 +Electron-deuteron_collision_time_at_point_210____________________________ (t_plasma_electron_deuteron_collision_profile210)_ 1.42800864825258673e-03 +Electron-deuteron_collision_time_at_point_211____________________________ (t_plasma_electron_deuteron_collision_profile211)_ 1.42395049131961065e-03 +Electron-deuteron_collision_time_at_point_212____________________________ (t_plasma_electron_deuteron_collision_profile212)_ 1.41987804213678935e-03 +Electron-deuteron_collision_time_at_point_213____________________________ (t_plasma_electron_deuteron_collision_profile213)_ 1.41579138007122450e-03 +Electron-deuteron_collision_time_at_point_214____________________________ (t_plasma_electron_deuteron_collision_profile214)_ 1.41169058508770675e-03 +Electron-deuteron_collision_time_at_point_215____________________________ (t_plasma_electron_deuteron_collision_profile215)_ 1.40757573775267546e-03 +Electron-deuteron_collision_time_at_point_216____________________________ (t_plasma_electron_deuteron_collision_profile216)_ 1.40344691923823006e-03 +Electron-deuteron_collision_time_at_point_217____________________________ (t_plasma_electron_deuteron_collision_profile217)_ 1.39930421132617518e-03 +Electron-deuteron_collision_time_at_point_218____________________________ (t_plasma_electron_deuteron_collision_profile218)_ 1.39514769641211657e-03 +Electron-deuteron_collision_time_at_point_219____________________________ (t_plasma_electron_deuteron_collision_profile219)_ 1.39097745750959428e-03 +Electron-deuteron_collision_time_at_point_220____________________________ (t_plasma_electron_deuteron_collision_profile220)_ 1.38679357825426488e-03 +Electron-deuteron_collision_time_at_point_221____________________________ (t_plasma_electron_deuteron_collision_profile221)_ 1.38259614290812309e-03 +Electron-deuteron_collision_time_at_point_222____________________________ (t_plasma_electron_deuteron_collision_profile222)_ 1.37838523636377554e-03 +Electron-deuteron_collision_time_at_point_223____________________________ (t_plasma_electron_deuteron_collision_profile223)_ 1.37416094414875411e-03 +Electron-deuteron_collision_time_at_point_224____________________________ (t_plasma_electron_deuteron_collision_profile224)_ 1.36992335242987662e-03 +Electron-deuteron_collision_time_at_point_225____________________________ (t_plasma_electron_deuteron_collision_profile225)_ 1.36567254801766018e-03 +Electron-deuteron_collision_time_at_point_226____________________________ (t_plasma_electron_deuteron_collision_profile226)_ 1.36140861837077271e-03 +Electron-deuteron_collision_time_at_point_227____________________________ (t_plasma_electron_deuteron_collision_profile227)_ 1.35713165160054124e-03 +Electron-deuteron_collision_time_at_point_228____________________________ (t_plasma_electron_deuteron_collision_profile228)_ 1.35284173647550344e-03 +Electron-deuteron_collision_time_at_point_229____________________________ (t_plasma_electron_deuteron_collision_profile229)_ 1.34853896242601132e-03 +Electron-deuteron_collision_time_at_point_230____________________________ (t_plasma_electron_deuteron_collision_profile230)_ 1.34422341954888117e-03 +Electron-deuteron_collision_time_at_point_231____________________________ (t_plasma_electron_deuteron_collision_profile231)_ 1.33989519861210161e-03 +Electron-deuteron_collision_time_at_point_232____________________________ (t_plasma_electron_deuteron_collision_profile232)_ 1.33555439105958389e-03 +Electron-deuteron_collision_time_at_point_233____________________________ (t_plasma_electron_deuteron_collision_profile233)_ 1.33120108901597120e-03 +Electron-deuteron_collision_time_at_point_234____________________________ (t_plasma_electron_deuteron_collision_profile234)_ 1.32683538529149636e-03 +Electron-deuteron_collision_time_at_point_235____________________________ (t_plasma_electron_deuteron_collision_profile235)_ 1.32245737338689581e-03 +Electron-deuteron_collision_time_at_point_236____________________________ (t_plasma_electron_deuteron_collision_profile236)_ 1.31806714749837421e-03 +Electron-deuteron_collision_time_at_point_237____________________________ (t_plasma_electron_deuteron_collision_profile237)_ 1.31366480252262884e-03 +Electron-deuteron_collision_time_at_point_238____________________________ (t_plasma_electron_deuteron_collision_profile238)_ 1.30925043406192559e-03 +Electron-deuteron_collision_time_at_point_239____________________________ (t_plasma_electron_deuteron_collision_profile239)_ 1.30482413842922837e-03 +Electron-deuteron_collision_time_at_point_240____________________________ (t_plasma_electron_deuteron_collision_profile240)_ 1.30038601265339781e-03 +Electron-deuteron_collision_time_at_point_241____________________________ (t_plasma_electron_deuteron_collision_profile241)_ 1.29593615448443168e-03 +Electron-deuteron_collision_time_at_point_242____________________________ (t_plasma_electron_deuteron_collision_profile242)_ 1.29147466239877507e-03 +Electron-deuteron_collision_time_at_point_243____________________________ (t_plasma_electron_deuteron_collision_profile243)_ 1.28700163560468810e-03 +Electron-deuteron_collision_time_at_point_244____________________________ (t_plasma_electron_deuteron_collision_profile244)_ 1.28251717404767140e-03 +Electron-deuteron_collision_time_at_point_245____________________________ (t_plasma_electron_deuteron_collision_profile245)_ 1.27802137841595120e-03 +Electron-deuteron_collision_time_at_point_246____________________________ (t_plasma_electron_deuteron_collision_profile246)_ 1.27351435014603706e-03 +Electron-deuteron_collision_time_at_point_247____________________________ (t_plasma_electron_deuteron_collision_profile247)_ 1.26899619142832511e-03 +Electron-deuteron_collision_time_at_point_248____________________________ (t_plasma_electron_deuteron_collision_profile248)_ 1.26446700521278097e-03 +Electron-deuteron_collision_time_at_point_249____________________________ (t_plasma_electron_deuteron_collision_profile249)_ 1.25992689521468122e-03 +Electron-deuteron_collision_time_at_point_250____________________________ (t_plasma_electron_deuteron_collision_profile250)_ 1.25537596592041872e-03 +Electron-deuteron_collision_time_at_point_251____________________________ (t_plasma_electron_deuteron_collision_profile251)_ 1.25081432259337697e-03 +Electron-deuteron_collision_time_at_point_252____________________________ (t_plasma_electron_deuteron_collision_profile252)_ 1.24624207127987355e-03 +Electron-deuteron_collision_time_at_point_253____________________________ (t_plasma_electron_deuteron_collision_profile253)_ 1.24165931881516740e-03 +Electron-deuteron_collision_time_at_point_254____________________________ (t_plasma_electron_deuteron_collision_profile254)_ 1.23706617282954017e-03 +Electron-deuteron_collision_time_at_point_255____________________________ (t_plasma_electron_deuteron_collision_profile255)_ 1.23246274175445227e-03 +Electron-deuteron_collision_time_at_point_256____________________________ (t_plasma_electron_deuteron_collision_profile256)_ 1.22784913482875823e-03 +Electron-deuteron_collision_time_at_point_257____________________________ (t_plasma_electron_deuteron_collision_profile257)_ 1.22322546210500540e-03 +Electron-deuteron_collision_time_at_point_258____________________________ (t_plasma_electron_deuteron_collision_profile258)_ 1.21859183445580674e-03 +Electron-deuteron_collision_time_at_point_259____________________________ (t_plasma_electron_deuteron_collision_profile259)_ 1.21394836358028335e-03 +Electron-deuteron_collision_time_at_point_260____________________________ (t_plasma_electron_deuteron_collision_profile260)_ 1.20929516201058874e-03 +Electron-deuteron_collision_time_at_point_261____________________________ (t_plasma_electron_deuteron_collision_profile261)_ 1.20463234311850515e-03 +Electron-deuteron_collision_time_at_point_262____________________________ (t_plasma_electron_deuteron_collision_profile262)_ 1.19996002112212653e-03 +Electron-deuteron_collision_time_at_point_263____________________________ (t_plasma_electron_deuteron_collision_profile263)_ 1.19527831109261275e-03 +Electron-deuteron_collision_time_at_point_264____________________________ (t_plasma_electron_deuteron_collision_profile264)_ 1.19058732896103799e-03 +Electron-deuteron_collision_time_at_point_265____________________________ (t_plasma_electron_deuteron_collision_profile265)_ 1.18588719152530608e-03 +Electron-deuteron_collision_time_at_point_266____________________________ (t_plasma_electron_deuteron_collision_profile266)_ 1.18117801645716263e-03 +Electron-deuteron_collision_time_at_point_267____________________________ (t_plasma_electron_deuteron_collision_profile267)_ 1.17645992230928811e-03 +Electron-deuteron_collision_time_at_point_268____________________________ (t_plasma_electron_deuteron_collision_profile268)_ 1.17173302852248288e-03 +Electron-deuteron_collision_time_at_point_269____________________________ (t_plasma_electron_deuteron_collision_profile269)_ 1.16699745543292783e-03 +Electron-deuteron_collision_time_at_point_270____________________________ (t_plasma_electron_deuteron_collision_profile270)_ 1.16225332427955397e-03 +Electron-deuteron_collision_time_at_point_271____________________________ (t_plasma_electron_deuteron_collision_profile271)_ 1.15750075721148720e-03 +Electron-deuteron_collision_time_at_point_272____________________________ (t_plasma_electron_deuteron_collision_profile272)_ 1.15273987729559951e-03 +Electron-deuteron_collision_time_at_point_273____________________________ (t_plasma_electron_deuteron_collision_profile273)_ 1.14797080852414488e-03 +Electron-deuteron_collision_time_at_point_274____________________________ (t_plasma_electron_deuteron_collision_profile274)_ 1.14319367582250107e-03 +Electron-deuteron_collision_time_at_point_275____________________________ (t_plasma_electron_deuteron_collision_profile275)_ 1.13840860505699912e-03 +Electron-deuteron_collision_time_at_point_276____________________________ (t_plasma_electron_deuteron_collision_profile276)_ 1.13361572304286617e-03 +Electron-deuteron_collision_time_at_point_277____________________________ (t_plasma_electron_deuteron_collision_profile277)_ 1.12881515755226033e-03 +Electron-deuteron_collision_time_at_point_278____________________________ (t_plasma_electron_deuteron_collision_profile278)_ 1.12400703732241534e-03 +Electron-deuteron_collision_time_at_point_279____________________________ (t_plasma_electron_deuteron_collision_profile279)_ 1.11919149206388753e-03 +Electron-deuteron_collision_time_at_point_280____________________________ (t_plasma_electron_deuteron_collision_profile280)_ 1.11436865246891431e-03 +Electron-deuteron_collision_time_at_point_281____________________________ (t_plasma_electron_deuteron_collision_profile281)_ 1.10953865021988160e-03 +Electron-deuteron_collision_time_at_point_282____________________________ (t_plasma_electron_deuteron_collision_profile282)_ 1.10470161799790158e-03 +Electron-deuteron_collision_time_at_point_283____________________________ (t_plasma_electron_deuteron_collision_profile283)_ 1.09985768949150868e-03 +Electron-deuteron_collision_time_at_point_284____________________________ (t_plasma_electron_deuteron_collision_profile284)_ 1.09500699940546890e-03 +Electron-deuteron_collision_time_at_point_285____________________________ (t_plasma_electron_deuteron_collision_profile285)_ 1.09014968346971388e-03 +Electron-deuteron_collision_time_at_point_286____________________________ (t_plasma_electron_deuteron_collision_profile286)_ 1.08528587844838658e-03 +Electron-deuteron_collision_time_at_point_287____________________________ (t_plasma_electron_deuteron_collision_profile287)_ 1.08041572214902411e-03 +Electron-deuteron_collision_time_at_point_288____________________________ (t_plasma_electron_deuteron_collision_profile288)_ 1.07553935343185250e-03 +Electron-deuteron_collision_time_at_point_289____________________________ (t_plasma_electron_deuteron_collision_profile289)_ 1.07065691221922715e-03 +Electron-deuteron_collision_time_at_point_290____________________________ (t_plasma_electron_deuteron_collision_profile290)_ 1.06576853950518914e-03 +Electron-deuteron_collision_time_at_point_291____________________________ (t_plasma_electron_deuteron_collision_profile291)_ 1.06087437736516999e-03 +Electron-deuteron_collision_time_at_point_292____________________________ (t_plasma_electron_deuteron_collision_profile292)_ 1.05597456896582313e-03 +Electron-deuteron_collision_time_at_point_293____________________________ (t_plasma_electron_deuteron_collision_profile293)_ 1.05106925857500469e-03 +Electron-deuteron_collision_time_at_point_294____________________________ (t_plasma_electron_deuteron_collision_profile294)_ 1.04615859157189276e-03 +Electron-deuteron_collision_time_at_point_295____________________________ (t_plasma_electron_deuteron_collision_profile295)_ 1.04124271445725741e-03 +Electron-deuteron_collision_time_at_point_296____________________________ (t_plasma_electron_deuteron_collision_profile296)_ 1.03632177486387748e-03 +Electron-deuteron_collision_time_at_point_297____________________________ (t_plasma_electron_deuteron_collision_profile297)_ 1.03139592156711608e-03 +Electron-deuteron_collision_time_at_point_298____________________________ (t_plasma_electron_deuteron_collision_profile298)_ 1.02646530449564490e-03 +Electron-deuteron_collision_time_at_point_299____________________________ (t_plasma_electron_deuteron_collision_profile299)_ 1.02153007474234088e-03 +Electron-deuteron_collision_time_at_point_300____________________________ (t_plasma_electron_deuteron_collision_profile300)_ 1.01659038457533961e-03 +Electron-deuteron_collision_time_at_point_301____________________________ (t_plasma_electron_deuteron_collision_profile301)_ 1.01164638744926012e-03 +Electron-deuteron_collision_time_at_point_302____________________________ (t_plasma_electron_deuteron_collision_profile302)_ 1.00669823801660110e-03 +Electron-deuteron_collision_time_at_point_303____________________________ (t_plasma_electron_deuteron_collision_profile303)_ 1.00174609213931850e-03 +Electron-deuteron_collision_time_at_point_304____________________________ (t_plasma_electron_deuteron_collision_profile304)_ 9.96790106900578669e-04 +Electron-deuteron_collision_time_at_point_305____________________________ (t_plasma_electron_deuteron_collision_profile305)_ 9.91830440616700863e-04 +Electron-deuteron_collision_time_at_point_306____________________________ (t_plasma_electron_deuteron_collision_profile306)_ 9.86867252849290763e-04 +Electron-deuteron_collision_time_at_point_307____________________________ (t_plasma_electron_deuteron_collision_profile307)_ 9.81900704417570025e-04 +Electron-deuteron_collision_time_at_point_308____________________________ (t_plasma_electron_deuteron_collision_profile308)_ 9.76930957410900329e-04 +Electron-deuteron_collision_time_at_point_309____________________________ (t_plasma_electron_deuteron_collision_profile309)_ 9.71958175201523625e-04 +Electron-deuteron_collision_time_at_point_310____________________________ (t_plasma_electron_deuteron_collision_profile310)_ 9.66982522457504579e-04 +Electron-deuteron_collision_time_at_point_311____________________________ (t_plasma_electron_deuteron_collision_profile311)_ 9.62004165155896148e-04 +Electron-deuteron_collision_time_at_point_312____________________________ (t_plasma_electron_deuteron_collision_profile312)_ 9.57023270596120803e-04 +Electron-deuteron_collision_time_at_point_313____________________________ (t_plasma_electron_deuteron_collision_profile313)_ 9.52040007413592227e-04 +Electron-deuteron_collision_time_at_point_314____________________________ (t_plasma_electron_deuteron_collision_profile314)_ 9.47054545593558087e-04 +Electron-deuteron_collision_time_at_point_315____________________________ (t_plasma_electron_deuteron_collision_profile315)_ 9.42067056485198563e-04 +Electron-deuteron_collision_time_at_point_316____________________________ (t_plasma_electron_deuteron_collision_profile316)_ 9.37077712815961882e-04 +Electron-deuteron_collision_time_at_point_317____________________________ (t_plasma_electron_deuteron_collision_profile317)_ 9.32086688706163110e-04 +Electron-deuteron_collision_time_at_point_318____________________________ (t_plasma_electron_deuteron_collision_profile318)_ 9.27094159683844758e-04 +Electron-deuteron_collision_time_at_point_319____________________________ (t_plasma_electron_deuteron_collision_profile319)_ 9.22100302699906072e-04 +Electron-deuteron_collision_time_at_point_320____________________________ (t_plasma_electron_deuteron_collision_profile320)_ 9.17105296143515183e-04 +Electron-deuteron_collision_time_at_point_321____________________________ (t_plasma_electron_deuteron_collision_profile321)_ 9.12109319857804229e-04 +Electron-deuteron_collision_time_at_point_322____________________________ (t_plasma_electron_deuteron_collision_profile322)_ 9.07112555155864596e-04 +Electron-deuteron_collision_time_at_point_323____________________________ (t_plasma_electron_deuteron_collision_profile323)_ 9.02115184837046376e-04 +Electron-deuteron_collision_time_at_point_324____________________________ (t_plasma_electron_deuteron_collision_profile324)_ 8.97117393203572251e-04 +Electron-deuteron_collision_time_at_point_325____________________________ (t_plasma_electron_deuteron_collision_profile325)_ 8.92119366077475761e-04 +Electron-deuteron_collision_time_at_point_326____________________________ (t_plasma_electron_deuteron_collision_profile326)_ 8.87121290817876555e-04 +Electron-deuteron_collision_time_at_point_327____________________________ (t_plasma_electron_deuteron_collision_profile327)_ 8.82123356338599426e-04 +Electron-deuteron_collision_time_at_point_328____________________________ (t_plasma_electron_deuteron_collision_profile328)_ 8.77125753126150069e-04 +Electron-deuteron_collision_time_at_point_329____________________________ (t_plasma_electron_deuteron_collision_profile329)_ 8.72128673258065518e-04 +Electron-deuteron_collision_time_at_point_330____________________________ (t_plasma_electron_deuteron_collision_profile330)_ 8.67132310421636588e-04 +Electron-deuteron_collision_time_at_point_331____________________________ (t_plasma_electron_deuteron_collision_profile331)_ 8.62136859933034178e-04 +Electron-deuteron_collision_time_at_point_332____________________________ (t_plasma_electron_deuteron_collision_profile332)_ 8.57142518756833795e-04 +Electron-deuteron_collision_time_at_point_333____________________________ (t_plasma_electron_deuteron_collision_profile333)_ 8.52149485525971386e-04 +Electron-deuteron_collision_time_at_point_334____________________________ (t_plasma_electron_deuteron_collision_profile334)_ 8.47157960562125358e-04 +Electron-deuteron_collision_time_at_point_335____________________________ (t_plasma_electron_deuteron_collision_profile335)_ 8.42168145896560042e-04 +Electron-deuteron_collision_time_at_point_336____________________________ (t_plasma_electron_deuteron_collision_profile336)_ 8.37180245291430482e-04 +Electron-deuteron_collision_time_at_point_337____________________________ (t_plasma_electron_deuteron_collision_profile337)_ 8.32194464261574031e-04 +Electron-deuteron_collision_time_at_point_338____________________________ (t_plasma_electron_deuteron_collision_profile338)_ 8.27211010096804474e-04 +Electron-deuteron_collision_time_at_point_339____________________________ (t_plasma_electron_deuteron_collision_profile339)_ 8.22230091884727982e-04 +Electron-deuteron_collision_time_at_point_340____________________________ (t_plasma_electron_deuteron_collision_profile340)_ 8.17251920534097149e-04 +Electron-deuteron_collision_time_at_point_341____________________________ (t_plasma_electron_deuteron_collision_profile341)_ 8.12276708798727407e-04 +Electron-deuteron_collision_time_at_point_342____________________________ (t_plasma_electron_deuteron_collision_profile342)_ 8.07304671301995228e-04 +Electron-deuteron_collision_time_at_point_343____________________________ (t_plasma_electron_deuteron_collision_profile343)_ 8.02336024561942389e-04 +Electron-deuteron_collision_time_at_point_344____________________________ (t_plasma_electron_deuteron_collision_profile344)_ 7.97370987017004631e-04 +Electron-deuteron_collision_time_at_point_345____________________________ (t_plasma_electron_deuteron_collision_profile345)_ 7.92409779052393771e-04 +Electron-deuteron_collision_time_at_point_346____________________________ (t_plasma_electron_deuteron_collision_profile346)_ 7.87452623027165241e-04 +Electron-deuteron_collision_time_at_point_347____________________________ (t_plasma_electron_deuteron_collision_profile347)_ 7.82499743301979405e-04 +Electron-deuteron_collision_time_at_point_348____________________________ (t_plasma_electron_deuteron_collision_profile348)_ 7.77551366267610340e-04 +Electron-deuteron_collision_time_at_point_349____________________________ (t_plasma_electron_deuteron_collision_profile349)_ 7.72607720374210070e-04 +Electron-deuteron_collision_time_at_point_350____________________________ (t_plasma_electron_deuteron_collision_profile350)_ 7.67669036161372736e-04 +Electron-deuteron_collision_time_at_point_351____________________________ (t_plasma_electron_deuteron_collision_profile351)_ 7.62735546289029158e-04 +Electron-deuteron_collision_time_at_point_352____________________________ (t_plasma_electron_deuteron_collision_profile352)_ 7.57807485569205927e-04 +Electron-deuteron_collision_time_at_point_353____________________________ (t_plasma_electron_deuteron_collision_profile353)_ 7.52885090998686355e-04 +Electron-deuteron_collision_time_at_point_354____________________________ (t_plasma_electron_deuteron_collision_profile354)_ 7.47968601792611733e-04 +Electron-deuteron_collision_time_at_point_355____________________________ (t_plasma_electron_deuteron_collision_profile355)_ 7.43058259419066740e-04 +Electron-deuteron_collision_time_at_point_356____________________________ (t_plasma_electron_deuteron_collision_profile356)_ 7.38154307634686694e-04 +Electron-deuteron_collision_time_at_point_357____________________________ (t_plasma_electron_deuteron_collision_profile357)_ 7.33256992521340561e-04 +Electron-deuteron_collision_time_at_point_358____________________________ (t_plasma_electron_deuteron_collision_profile358)_ 7.28366562523927760e-04 +Electron-deuteron_collision_time_at_point_359____________________________ (t_plasma_electron_deuteron_collision_profile359)_ 7.23483268489350678e-04 +Electron-deuteron_collision_time_at_point_360____________________________ (t_plasma_electron_deuteron_collision_profile360)_ 7.18607363706707343e-04 +Electron-deuteron_collision_time_at_point_361____________________________ (t_plasma_electron_deuteron_collision_profile361)_ 7.13739103948764762e-04 +Electron-deuteron_collision_time_at_point_362____________________________ (t_plasma_electron_deuteron_collision_profile362)_ 7.08878747514774823e-04 +Electron-deuteron_collision_time_at_point_363____________________________ (t_plasma_electron_deuteron_collision_profile363)_ 7.04026555274692503e-04 +Electron-deuteron_collision_time_at_point_364____________________________ (t_plasma_electron_deuteron_collision_profile364)_ 6.99182790714865127e-04 +Electron-deuteron_collision_time_at_point_365____________________________ (t_plasma_electron_deuteron_collision_profile365)_ 6.94347719985266283e-04 +Electron-deuteron_collision_time_at_point_366____________________________ (t_plasma_electron_deuteron_collision_profile366)_ 6.89521611948340865e-04 +Electron-deuteron_collision_time_at_point_367____________________________ (t_plasma_electron_deuteron_collision_profile367)_ 6.84704738229552855e-04 +Electron-deuteron_collision_time_at_point_368____________________________ (t_plasma_electron_deuteron_collision_profile368)_ 6.79897373269710225e-04 +Electron-deuteron_collision_time_at_point_369____________________________ (t_plasma_electron_deuteron_collision_profile369)_ 6.75099794379161377e-04 +Electron-deuteron_collision_time_at_point_370____________________________ (t_plasma_electron_deuteron_collision_profile370)_ 6.70312281793955956e-04 +Electron-deuteron_collision_time_at_point_371____________________________ (t_plasma_electron_deuteron_collision_profile371)_ 6.65535118734070078e-04 +Electron-deuteron_collision_time_at_point_372____________________________ (t_plasma_electron_deuteron_collision_profile372)_ 6.60768591463804637e-04 +Electron-deuteron_collision_time_at_point_373____________________________ (t_plasma_electron_deuteron_collision_profile373)_ 6.56012989354468447e-04 +Electron-deuteron_collision_time_at_point_374____________________________ (t_plasma_electron_deuteron_collision_profile374)_ 6.51268604949467350e-04 +Electron-deuteron_collision_time_at_point_375____________________________ (t_plasma_electron_deuteron_collision_profile375)_ 6.46535734031922216e-04 +Electron-deuteron_collision_time_at_point_376____________________________ (t_plasma_electron_deuteron_collision_profile376)_ 6.41814675694963514e-04 +Electron-deuteron_collision_time_at_point_377____________________________ (t_plasma_electron_deuteron_collision_profile377)_ 6.37105732414831915e-04 +Electron-deuteron_collision_time_at_point_378____________________________ (t_plasma_electron_deuteron_collision_profile378)_ 6.32409210126952848e-04 +Electron-deuteron_collision_time_at_point_379____________________________ (t_plasma_electron_deuteron_collision_profile379)_ 6.27725418305137258e-04 +Electron-deuteron_collision_time_at_point_380____________________________ (t_plasma_electron_deuteron_collision_profile380)_ 6.23054670044093399e-04 +Electron-deuteron_collision_time_at_point_381____________________________ (t_plasma_electron_deuteron_collision_profile381)_ 6.18397282145428245e-04 +Electron-deuteron_collision_time_at_point_382____________________________ (t_plasma_electron_deuteron_collision_profile382)_ 6.13753575207341587e-04 +Electron-deuteron_collision_time_at_point_383____________________________ (t_plasma_electron_deuteron_collision_profile383)_ 6.09123873718222597e-04 +Electron-deuteron_collision_time_at_point_384____________________________ (t_plasma_electron_deuteron_collision_profile384)_ 6.04508506154377220e-04 +Electron-deuteron_collision_time_at_point_385____________________________ (t_plasma_electron_deuteron_collision_profile385)_ 5.99907805082129869e-04 +Electron-deuteron_collision_time_at_point_386____________________________ (t_plasma_electron_deuteron_collision_profile386)_ 5.95322107264548823e-04 +Electron-deuteron_collision_time_at_point_387____________________________ (t_plasma_electron_deuteron_collision_profile387)_ 5.90751753773089447e-04 +Electron-deuteron_collision_time_at_point_388____________________________ (t_plasma_electron_deuteron_collision_profile388)_ 5.86197090104434654e-04 +Electron-deuteron_collision_time_at_point_389____________________________ (t_plasma_electron_deuteron_collision_profile389)_ 5.81658466302860454e-04 +Electron-deuteron_collision_time_at_point_390____________________________ (t_plasma_electron_deuteron_collision_profile390)_ 5.77136237088462698e-04 +Electron-deuteron_collision_time_at_point_391____________________________ (t_plasma_electron_deuteron_collision_profile391)_ 5.72630761991614525e-04 +Electron-deuteron_collision_time_at_point_392____________________________ (t_plasma_electron_deuteron_collision_profile392)_ 5.68142405494040685e-04 +Electron-deuteron_collision_time_at_point_393____________________________ (t_plasma_electron_deuteron_collision_profile393)_ 5.63671537176936143e-04 +Electron-deuteron_collision_time_at_point_394____________________________ (t_plasma_electron_deuteron_collision_profile394)_ 5.59218531876578477e-04 +Electron-deuteron_collision_time_at_point_395____________________________ (t_plasma_electron_deuteron_collision_profile395)_ 5.54783769847920971e-04 +Electron-deuteron_collision_time_at_point_396____________________________ (t_plasma_electron_deuteron_collision_profile396)_ 5.50367636936692581e-04 +Electron-deuteron_collision_time_at_point_397____________________________ (t_plasma_electron_deuteron_collision_profile397)_ 5.45970524760572024e-04 +Electron-deuteron_collision_time_at_point_398____________________________ (t_plasma_electron_deuteron_collision_profile398)_ 5.41592830900039664e-04 +Electron-deuteron_collision_time_at_point_399____________________________ (t_plasma_electron_deuteron_collision_profile399)_ 5.37234959099573890e-04 +Electron-deuteron_collision_time_at_point_400____________________________ (t_plasma_electron_deuteron_collision_profile400)_ 5.32897319479892903e-04 +Electron-deuteron_collision_time_at_point_401____________________________ (t_plasma_electron_deuteron_collision_profile401)_ 5.28580328762022012e-04 +Electron-deuteron_collision_time_at_point_402____________________________ (t_plasma_electron_deuteron_collision_profile402)_ 5.24284410504007384e-04 +Electron-deuteron_collision_time_at_point_403____________________________ (t_plasma_electron_deuteron_collision_profile403)_ 5.20009995351187093e-04 +Electron-deuteron_collision_time_at_point_404____________________________ (t_plasma_electron_deuteron_collision_profile404)_ 5.15757521300990156e-04 +Electron-deuteron_collision_time_at_point_405____________________________ (t_plasma_electron_deuteron_collision_profile405)_ 5.11527433983328234e-04 +Electron-deuteron_collision_time_at_point_406____________________________ (t_plasma_electron_deuteron_collision_profile406)_ 5.07320186957731104e-04 +Electron-deuteron_collision_time_at_point_407____________________________ (t_plasma_electron_deuteron_collision_profile407)_ 5.03136242028483357e-04 +Electron-deuteron_collision_time_at_point_408____________________________ (t_plasma_electron_deuteron_collision_profile408)_ 4.98976069579120394e-04 +Electron-deuteron_collision_time_at_point_409____________________________ (t_plasma_electron_deuteron_collision_profile409)_ 4.94840148927785223e-04 +Electron-deuteron_collision_time_at_point_410____________________________ (t_plasma_electron_deuteron_collision_profile410)_ 4.90728968705057096e-04 +Electron-deuteron_collision_time_at_point_411____________________________ (t_plasma_electron_deuteron_collision_profile411)_ 4.86643027256042241e-04 +Electron-deuteron_collision_time_at_point_412____________________________ (t_plasma_electron_deuteron_collision_profile412)_ 4.82582833068658608e-04 +Electron-deuteron_collision_time_at_point_413____________________________ (t_plasma_electron_deuteron_collision_profile413)_ 4.78548905230258184e-04 +Electron-deuteron_collision_time_at_point_414____________________________ (t_plasma_electron_deuteron_collision_profile414)_ 4.74541773914911142e-04 +Electron-deuteron_collision_time_at_point_415____________________________ (t_plasma_electron_deuteron_collision_profile415)_ 4.70561980903933257e-04 +Electron-deuteron_collision_time_at_point_416____________________________ (t_plasma_electron_deuteron_collision_profile416)_ 4.66610080142476483e-04 +Electron-deuteron_collision_time_at_point_417____________________________ (t_plasma_electron_deuteron_collision_profile417)_ 4.62686638335303420e-04 +Electron-deuteron_collision_time_at_point_418____________________________ (t_plasma_electron_deuteron_collision_profile418)_ 4.58792235585185496e-04 +Electron-deuteron_collision_time_at_point_419____________________________ (t_plasma_electron_deuteron_collision_profile419)_ 4.54927466077732388e-04 +Electron-deuteron_collision_time_at_point_420____________________________ (t_plasma_electron_deuteron_collision_profile420)_ 4.51092938816868535e-04 +Electron-deuteron_collision_time_at_point_421____________________________ (t_plasma_electron_deuteron_collision_profile421)_ 4.47289278415634209e-04 +Electron-deuteron_collision_time_at_point_422____________________________ (t_plasma_electron_deuteron_collision_profile422)_ 4.43517125947522149e-04 +Electron-deuteron_collision_time_at_point_423____________________________ (t_plasma_electron_deuteron_collision_profile423)_ 4.39777139864140805e-04 +Electron-deuteron_collision_time_at_point_424____________________________ (t_plasma_electron_deuteron_collision_profile424)_ 4.36069996985680673e-04 +Electron-deuteron_collision_time_at_point_425____________________________ (t_plasma_electron_deuteron_collision_profile425)_ 4.32396393571435355e-04 +Electron-deuteron_collision_time_at_point_426____________________________ (t_plasma_electron_deuteron_collision_profile426)_ 4.28757046478489882e-04 +Electron-deuteron_collision_time_at_point_427____________________________ (t_plasma_electron_deuteron_collision_profile427)_ 4.25152694417720359e-04 +Electron-deuteron_collision_time_at_point_428____________________________ (t_plasma_electron_deuteron_collision_profile428)_ 4.21584099317392981e-04 +Electron-deuteron_collision_time_at_point_429____________________________ (t_plasma_electron_deuteron_collision_profile429)_ 4.18052047805992375e-04 +Electron-deuteron_collision_time_at_point_430____________________________ (t_plasma_electron_deuteron_collision_profile430)_ 4.14557352827458678e-04 +Electron-deuteron_collision_time_at_point_431____________________________ (t_plasma_electron_deuteron_collision_profile431)_ 4.11100855403800491e-04 +Electron-deuteron_collision_time_at_point_432____________________________ (t_plasma_electron_deuteron_collision_profile432)_ 4.07683426562151967e-04 +Electron-deuteron_collision_time_at_point_433____________________________ (t_plasma_electron_deuteron_collision_profile433)_ 4.04305969445771475e-04 +Electron-deuteron_collision_time_at_point_434____________________________ (t_plasma_electron_deuteron_collision_profile434)_ 4.00969421631370269e-04 +Electron-deuteron_collision_time_at_point_435____________________________ (t_plasma_electron_deuteron_collision_profile435)_ 3.97674757678513505e-04 +Electron-deuteron_collision_time_at_point_436____________________________ (t_plasma_electron_deuteron_collision_profile436)_ 3.94422991940871035e-04 +Electron-deuteron_collision_time_at_point_437____________________________ (t_plasma_electron_deuteron_collision_profile437)_ 3.91215181673819910e-04 +Electron-deuteron_collision_time_at_point_438____________________________ (t_plasma_electron_deuteron_collision_profile438)_ 3.88052430478625135e-04 +Electron-deuteron_collision_time_at_point_439____________________________ (t_plasma_electron_deuteron_collision_profile439)_ 3.84935892130227263e-04 +Electron-deuteron_collision_time_at_point_440____________________________ (t_plasma_electron_deuteron_collision_profile440)_ 3.81866774843931279e-04 +Electron-deuteron_collision_time_at_point_441____________________________ (t_plasma_electron_deuteron_collision_profile441)_ 3.78846346046306855e-04 +Electron-deuteron_collision_time_at_point_442____________________________ (t_plasma_electron_deuteron_collision_profile442)_ 3.75875937727860058e-04 +Electron-deuteron_collision_time_at_point_443____________________________ (t_plasma_electron_deuteron_collision_profile443)_ 3.72956952470080154e-04 +Electron-deuteron_collision_time_at_point_444____________________________ (t_plasma_electron_deuteron_collision_profile444)_ 3.70090870258145605e-04 +Electron-deuteron_collision_time_at_point_445____________________________ (t_plasma_electron_deuteron_collision_profile445)_ 3.67279256213817339e-04 +Electron-deuteron_collision_time_at_point_446____________________________ (t_plasma_electron_deuteron_collision_profile446)_ 3.64523769412341354e-04 +Electron-deuteron_collision_time_at_point_447____________________________ (t_plasma_electron_deuteron_collision_profile447)_ 3.61826172984298369e-04 +Electron-deuteron_collision_time_at_point_448____________________________ (t_plasma_electron_deuteron_collision_profile448)_ 3.59188345750883359e-04 +Electron-deuteron_collision_time_at_point_449____________________________ (t_plasma_electron_deuteron_collision_profile449)_ 3.56612295702545261e-04 +Electron-deuteron_collision_time_at_point_450____________________________ (t_plasma_electron_deuteron_collision_profile450)_ 3.54100175711250713e-04 +Electron-deuteron_collision_time_at_point_451____________________________ (t_plasma_electron_deuteron_collision_profile451)_ 3.51654301972848492e-04 +Electron-deuteron_collision_time_at_point_452____________________________ (t_plasma_electron_deuteron_collision_profile452)_ 3.49277175818265380e-04 +Electron-deuteron_collision_time_at_point_453____________________________ (t_plasma_electron_deuteron_collision_profile453)_ 3.46971509725481993e-04 +Electron-deuteron_collision_time_at_point_454____________________________ (t_plasma_electron_deuteron_collision_profile454)_ 3.44740258630729852e-04 +Electron-deuteron_collision_time_at_point_455____________________________ (t_plasma_electron_deuteron_collision_profile455)_ 3.42586658011249088e-04 +Electron-deuteron_collision_time_at_point_456____________________________ (t_plasma_electron_deuteron_collision_profile456)_ 3.40514270746574126e-04 +Electron-deuteron_collision_time_at_point_457____________________________ (t_plasma_electron_deuteron_collision_profile457)_ 3.38527045546166265e-04 +Electron-deuteron_collision_time_at_point_458____________________________ (t_plasma_electron_deuteron_collision_profile458)_ 3.36629390899414961e-04 +Electron-deuteron_collision_time_at_point_459____________________________ (t_plasma_electron_deuteron_collision_profile459)_ 3.34826270299916709e-04 +Electron-deuteron_collision_time_at_point_460____________________________ (t_plasma_electron_deuteron_collision_profile460)_ 3.33123327344660332e-04 +Electron-deuteron_collision_time_at_point_461____________________________ (t_plasma_electron_deuteron_collision_profile461)_ 3.31527053994563675e-04 +Electron-deuteron_collision_time_at_point_462____________________________ (t_plasma_electron_deuteron_collision_profile462)_ 3.30045023327020656e-04 +Electron-deuteron_collision_time_at_point_463____________________________ (t_plasma_electron_deuteron_collision_profile463)_ 3.28686222644038097e-04 +Electron-deuteron_collision_time_at_point_464____________________________ (t_plasma_electron_deuteron_collision_profile464)_ 3.27461550741132089e-04 +Electron-deuteron_collision_time_at_point_465____________________________ (t_plasma_electron_deuteron_collision_profile465)_ 3.26384601208933912e-04 +Electron-deuteron_collision_time_at_point_466____________________________ (t_plasma_electron_deuteron_collision_profile466)_ 3.25472987073737894e-04 +Electron-deuteron_collision_time_at_point_467____________________________ (t_plasma_electron_deuteron_collision_profile467)_ 3.24750813483077943e-04 +Electron-deuteron_collision_time_at_point_468____________________________ (t_plasma_electron_deuteron_collision_profile468)_ 3.24254034470363361e-04 +Electron-deuteron_collision_time_at_point_469____________________________ (t_plasma_electron_deuteron_collision_profile469)_ 3.24045504089399148e-04 +Electron-deuteron_collision_time_at_point_470____________________________ (t_plasma_electron_deuteron_collision_profile470)_ 3.24307019455815238e-04 +Electron-deuteron_collision_time_at_point_471____________________________ (t_plasma_electron_deuteron_collision_profile471)_ 3.13289909113623319e-04 +Electron-deuteron_collision_time_at_point_472____________________________ (t_plasma_electron_deuteron_collision_profile472)_ 3.02205362837311626e-04 +Electron-deuteron_collision_time_at_point_473____________________________ (t_plasma_electron_deuteron_collision_profile473)_ 2.91054929708809080e-04 +Electron-deuteron_collision_time_at_point_474____________________________ (t_plasma_electron_deuteron_collision_profile474)_ 2.79840497417504217e-04 +Electron-deuteron_collision_time_at_point_475____________________________ (t_plasma_electron_deuteron_collision_profile475)_ 2.68564341229108011e-04 +Electron-deuteron_collision_time_at_point_476____________________________ (t_plasma_electron_deuteron_collision_profile476)_ 2.57229180720697941e-04 +Electron-deuteron_collision_time_at_point_477____________________________ (t_plasma_electron_deuteron_collision_profile477)_ 2.45838245739443564e-04 +Electron-deuteron_collision_time_at_point_478____________________________ (t_plasma_electron_deuteron_collision_profile478)_ 2.34395353372972276e-04 +Electron-deuteron_collision_time_at_point_479____________________________ (t_plasma_electron_deuteron_collision_profile479)_ 2.22904998140596250e-04 +Electron-deuteron_collision_time_at_point_480____________________________ (t_plasma_electron_deuteron_collision_profile480)_ 2.11372458156854775e-04 +Electron-deuteron_collision_time_at_point_481____________________________ (t_plasma_electron_deuteron_collision_profile481)_ 1.99803920724085730e-04 +Electron-deuteron_collision_time_at_point_482____________________________ (t_plasma_electron_deuteron_collision_profile482)_ 1.88206631738673425e-04 +Electron-deuteron_collision_time_at_point_483____________________________ (t_plasma_electron_deuteron_collision_profile483)_ 1.76589074532154130e-04 +Electron-deuteron_collision_time_at_point_484____________________________ (t_plasma_electron_deuteron_collision_profile484)_ 1.64961185439449449e-04 +Electron-deuteron_collision_time_at_point_485____________________________ (t_plasma_electron_deuteron_collision_profile485)_ 1.53334615680493139e-04 +Electron-deuteron_collision_time_at_point_486____________________________ (t_plasma_electron_deuteron_collision_profile486)_ 1.41723052346154902e-04 +Electron-deuteron_collision_time_at_point_487____________________________ (t_plasma_electron_deuteron_collision_profile487)_ 1.30142615844957822e-04 +Electron-deuteron_collision_time_at_point_488____________________________ (t_plasma_electron_deuteron_collision_profile488)_ 1.18612357817593652e-04 +Electron-deuteron_collision_time_at_point_489____________________________ (t_plasma_electron_deuteron_collision_profile489)_ 1.07154893461536944e-04 +Electron-deuteron_collision_time_at_point_490____________________________ (t_plasma_electron_deuteron_collision_profile490)_ 9.57972174865336155e-05 +Electron-deuteron_collision_time_at_point_491____________________________ (t_plasma_electron_deuteron_collision_profile491)_ 8.45717772174732555e-05 +Electron-deuteron_collision_time_at_point_492____________________________ (t_plasma_electron_deuteron_collision_profile492)_ 7.35179165403056407e-05 +Electron-deuteron_collision_time_at_point_493____________________________ (t_plasma_electron_deuteron_collision_profile493)_ 6.26838739936827607e-05 +Electron-deuteron_collision_time_at_point_494____________________________ (t_plasma_electron_deuteron_collision_profile494)_ 5.21296458450620366e-05 +Electron-deuteron_collision_time_at_point_495____________________________ (t_plasma_electron_deuteron_collision_profile495)_ 4.19312753516767374e-05 +Electron-deuteron_collision_time_at_point_496____________________________ (t_plasma_electron_deuteron_collision_profile496)_ 3.21876657351692372e-05 +Electron-deuteron_collision_time_at_point_497____________________________ (t_plasma_electron_deuteron_collision_profile497)_ 2.30323032587426068e-05 +Electron-deuteron_collision_time_at_point_498____________________________ (t_plasma_electron_deuteron_collision_profile498)_ 1.46559120212419592e-05 +Electron-deuteron_collision_time_at_point_499____________________________ (t_plasma_electron_deuteron_collision_profile499)_ 7.35917053066077572e-06 +Electron-deuteron_collision_time_at_point_500____________________________ (t_plasma_electron_deuteron_collision_profile500)_ 1.72997731127563799e-06 +Volume_averaged_electron-triton_collision_time_(τₑT)_(s)_________________ (t_plasma_electron_triton_collision_vol_avg)_ 8.54774449866884832e-04 OP +Electron-triton_collision_time_at_point_0________________________________ (t_plasma_electron_triton_collision_profile0)_ 1.87899174128182303e-03 +Electron-triton_collision_time_at_point_1________________________________ (t_plasma_electron_triton_collision_profile1)_ 1.87898096513836239e-03 +Electron-triton_collision_time_at_point_2________________________________ (t_plasma_electron_triton_collision_profile2)_ 1.87894863684950138e-03 +Electron-triton_collision_time_at_point_3________________________________ (t_plasma_electron_triton_collision_profile3)_ 1.87889475683980728e-03 +Electron-triton_collision_time_at_point_4________________________________ (t_plasma_electron_triton_collision_profile4)_ 1.87881932581691283e-03 +Electron-triton_collision_time_at_point_5________________________________ (t_plasma_electron_triton_collision_profile5)_ 1.87872234477153661e-03 +Electron-triton_collision_time_at_point_6________________________________ (t_plasma_electron_triton_collision_profile6)_ 1.87860381497752357e-03 +Electron-triton_collision_time_at_point_7________________________________ (t_plasma_electron_triton_collision_profile7)_ 1.87846373799188844e-03 +Electron-triton_collision_time_at_point_8________________________________ (t_plasma_electron_triton_collision_profile8)_ 1.87830211565487206e-03 +Electron-triton_collision_time_at_point_9________________________________ (t_plasma_electron_triton_collision_profile9)_ 1.87811895009001363e-03 +Electron-triton_collision_time_at_point_10_______________________________ (t_plasma_electron_triton_collision_profile10)_ 1.87791424370421984e-03 +Electron-triton_collision_time_at_point_11_______________________________ (t_plasma_electron_triton_collision_profile11)_ 1.87768799918785882e-03 +Electron-triton_collision_time_at_point_12_______________________________ (t_plasma_electron_triton_collision_profile12)_ 1.87744021951485483e-03 +Electron-triton_collision_time_at_point_13_______________________________ (t_plasma_electron_triton_collision_profile13)_ 1.87717090794279977e-03 +Electron-triton_collision_time_at_point_14_______________________________ (t_plasma_electron_triton_collision_profile14)_ 1.87688006801306571e-03 +Electron-triton_collision_time_at_point_15_______________________________ (t_plasma_electron_triton_collision_profile15)_ 1.87656770355094015e-03 +Electron-triton_collision_time_at_point_16_______________________________ (t_plasma_electron_triton_collision_profile16)_ 1.87623381866576229e-03 +Electron-triton_collision_time_at_point_17_______________________________ (t_plasma_electron_triton_collision_profile17)_ 1.87587841775107059e-03 +Electron-triton_collision_time_at_point_18_______________________________ (t_plasma_electron_triton_collision_profile18)_ 1.87550150548477048e-03 +Electron-triton_collision_time_at_point_19_______________________________ (t_plasma_electron_triton_collision_profile19)_ 1.87510308682929498e-03 +Electron-triton_collision_time_at_point_20_______________________________ (t_plasma_electron_triton_collision_profile20)_ 1.87468316703179034e-03 +Electron-triton_collision_time_at_point_21_______________________________ (t_plasma_electron_triton_collision_profile21)_ 1.87424175162430990e-03 +Electron-triton_collision_time_at_point_22_______________________________ (t_plasma_electron_triton_collision_profile22)_ 1.87377884642401138e-03 +Electron-triton_collision_time_at_point_23_______________________________ (t_plasma_electron_triton_collision_profile23)_ 1.87329445753336966e-03 +Electron-triton_collision_time_at_point_24_______________________________ (t_plasma_electron_triton_collision_profile24)_ 1.87278859134040114e-03 +Electron-triton_collision_time_at_point_25_______________________________ (t_plasma_electron_triton_collision_profile25)_ 1.87226125451889799e-03 +Electron-triton_collision_time_at_point_26_______________________________ (t_plasma_electron_triton_collision_profile26)_ 1.87171245402866469e-03 +Electron-triton_collision_time_at_point_27_______________________________ (t_plasma_electron_triton_collision_profile27)_ 1.87114219711578258e-03 +Electron-triton_collision_time_at_point_28_______________________________ (t_plasma_electron_triton_collision_profile28)_ 1.87055049131286660e-03 +Electron-triton_collision_time_at_point_29_______________________________ (t_plasma_electron_triton_collision_profile29)_ 1.86993734443934392e-03 +Electron-triton_collision_time_at_point_30_______________________________ (t_plasma_electron_triton_collision_profile30)_ 1.86930276460173781e-03 +Electron-triton_collision_time_at_point_31_______________________________ (t_plasma_electron_triton_collision_profile31)_ 1.86864676019396665e-03 +Electron-triton_collision_time_at_point_32_______________________________ (t_plasma_electron_triton_collision_profile32)_ 1.86796933989764858e-03 +Electron-triton_collision_time_at_point_33_______________________________ (t_plasma_electron_triton_collision_profile33)_ 1.86727051268242221e-03 +Electron-triton_collision_time_at_point_34_______________________________ (t_plasma_electron_triton_collision_profile34)_ 1.86655028780626821e-03 +Electron-triton_collision_time_at_point_35_______________________________ (t_plasma_electron_triton_collision_profile35)_ 1.86580867481586014e-03 +Electron-triton_collision_time_at_point_36_______________________________ (t_plasma_electron_triton_collision_profile36)_ 1.86504568354690166e-03 +Electron-triton_collision_time_at_point_37_______________________________ (t_plasma_electron_triton_collision_profile37)_ 1.86426132412449469e-03 +Electron-triton_collision_time_at_point_38_______________________________ (t_plasma_electron_triton_collision_profile38)_ 1.86345560696351046e-03 +Electron-triton_collision_time_at_point_39_______________________________ (t_plasma_electron_triton_collision_profile39)_ 1.86262854276896938e-03 +Electron-triton_collision_time_at_point_40_______________________________ (t_plasma_electron_triton_collision_profile40)_ 1.86178014253643204e-03 +Electron-triton_collision_time_at_point_41_______________________________ (t_plasma_electron_triton_collision_profile41)_ 1.86091041755241139e-03 +Electron-triton_collision_time_at_point_42_______________________________ (t_plasma_electron_triton_collision_profile42)_ 1.86001937939477870e-03 +Electron-triton_collision_time_at_point_43_______________________________ (t_plasma_electron_triton_collision_profile43)_ 1.85910703993319090e-03 +Electron-triton_collision_time_at_point_44_______________________________ (t_plasma_electron_triton_collision_profile44)_ 1.85817341132953691e-03 +Electron-triton_collision_time_at_point_45_______________________________ (t_plasma_electron_triton_collision_profile45)_ 1.85721850603836908e-03 +Electron-triton_collision_time_at_point_46_______________________________ (t_plasma_electron_triton_collision_profile46)_ 1.85624233680737726e-03 +Electron-triton_collision_time_at_point_47_______________________________ (t_plasma_electron_triton_collision_profile47)_ 1.85524491667784673e-03 +Electron-triton_collision_time_at_point_48_______________________________ (t_plasma_electron_triton_collision_profile48)_ 1.85422625898515130e-03 +Electron-triton_collision_time_at_point_49_______________________________ (t_plasma_electron_triton_collision_profile49)_ 1.85318637735923343e-03 +Electron-triton_collision_time_at_point_50_______________________________ (t_plasma_electron_triton_collision_profile50)_ 1.85212528572511440e-03 +Electron-triton_collision_time_at_point_51_______________________________ (t_plasma_electron_triton_collision_profile51)_ 1.85104299830340957e-03 +Electron-triton_collision_time_at_point_52_______________________________ (t_plasma_electron_triton_collision_profile52)_ 1.84993952961084963e-03 +Electron-triton_collision_time_at_point_53_______________________________ (t_plasma_electron_triton_collision_profile53)_ 1.84881489446082426e-03 +Electron-triton_collision_time_at_point_54_______________________________ (t_plasma_electron_triton_collision_profile54)_ 1.84766910796392309e-03 +Electron-triton_collision_time_at_point_55_______________________________ (t_plasma_electron_triton_collision_profile55)_ 1.84650218552850106e-03 +Electron-triton_collision_time_at_point_56_______________________________ (t_plasma_electron_triton_collision_profile56)_ 1.84531414286124977e-03 +Electron-triton_collision_time_at_point_57_______________________________ (t_plasma_electron_triton_collision_profile57)_ 1.84410499596777576e-03 +Electron-triton_collision_time_at_point_58_______________________________ (t_plasma_electron_triton_collision_profile58)_ 1.84287476115320274e-03 +Electron-triton_collision_time_at_point_59_______________________________ (t_plasma_electron_triton_collision_profile59)_ 1.84162345502276916e-03 +Electron-triton_collision_time_at_point_60_______________________________ (t_plasma_electron_triton_collision_profile60)_ 1.84035109448245230e-03 +Electron-triton_collision_time_at_point_61_______________________________ (t_plasma_electron_triton_collision_profile61)_ 1.83905769673959425e-03 +Electron-triton_collision_time_at_point_62_______________________________ (t_plasma_electron_triton_collision_profile62)_ 1.83774327930354511e-03 +Electron-triton_collision_time_at_point_63_______________________________ (t_plasma_electron_triton_collision_profile63)_ 1.83640785998631282e-03 +Electron-triton_collision_time_at_point_64_______________________________ (t_plasma_electron_triton_collision_profile64)_ 1.83505145690323300e-03 +Electron-triton_collision_time_at_point_65_______________________________ (t_plasma_electron_triton_collision_profile65)_ 1.83367408847364029e-03 +Electron-triton_collision_time_at_point_66_______________________________ (t_plasma_electron_triton_collision_profile66)_ 1.83227577342156048e-03 +Electron-triton_collision_time_at_point_67_______________________________ (t_plasma_electron_triton_collision_profile67)_ 1.83085653077640987e-03 +Electron-triton_collision_time_at_point_68_______________________________ (t_plasma_electron_triton_collision_profile68)_ 1.82941637987370513e-03 +Electron-triton_collision_time_at_point_69_______________________________ (t_plasma_electron_triton_collision_profile69)_ 1.82795534035579675e-03 +Electron-triton_collision_time_at_point_70_______________________________ (t_plasma_electron_triton_collision_profile70)_ 1.82647343217259535e-03 +Electron-triton_collision_time_at_point_71_______________________________ (t_plasma_electron_triton_collision_profile71)_ 1.82497067558232791e-03 +Electron-triton_collision_time_at_point_72_______________________________ (t_plasma_electron_triton_collision_profile72)_ 1.82344709115229617e-03 +Electron-triton_collision_time_at_point_73_______________________________ (t_plasma_electron_triton_collision_profile73)_ 1.82190269975965411e-03 +Electron-triton_collision_time_at_point_74_______________________________ (t_plasma_electron_triton_collision_profile74)_ 1.82033752259218675e-03 +Electron-triton_collision_time_at_point_75_______________________________ (t_plasma_electron_triton_collision_profile75)_ 1.81875158114911902e-03 +Electron-triton_collision_time_at_point_76_______________________________ (t_plasma_electron_triton_collision_profile76)_ 1.81714489724191827e-03 +Electron-triton_collision_time_at_point_77_______________________________ (t_plasma_electron_triton_collision_profile77)_ 1.81551749299512411e-03 +Electron-triton_collision_time_at_point_78_______________________________ (t_plasma_electron_triton_collision_profile78)_ 1.81386939084718000e-03 +Electron-triton_collision_time_at_point_79_______________________________ (t_plasma_electron_triton_collision_profile79)_ 1.81220061355128847e-03 +Electron-triton_collision_time_at_point_80_______________________________ (t_plasma_electron_triton_collision_profile80)_ 1.81051118417627005e-03 +Electron-triton_collision_time_at_point_81_______________________________ (t_plasma_electron_triton_collision_profile81)_ 1.80880112610743446e-03 +Electron-triton_collision_time_at_point_82_______________________________ (t_plasma_electron_triton_collision_profile82)_ 1.80707046304747886e-03 +Electron-triton_collision_time_at_point_83_______________________________ (t_plasma_electron_triton_collision_profile83)_ 1.80531921901737769e-03 +Electron-triton_collision_time_at_point_84_______________________________ (t_plasma_electron_triton_collision_profile84)_ 1.80354741835730536e-03 +Electron-triton_collision_time_at_point_85_______________________________ (t_plasma_electron_triton_collision_profile85)_ 1.80175508572756019e-03 +Electron-triton_collision_time_at_point_86_______________________________ (t_plasma_electron_triton_collision_profile86)_ 1.79994224610950247e-03 +Electron-triton_collision_time_at_point_87_______________________________ (t_plasma_electron_triton_collision_profile87)_ 1.79810892480651422e-03 +Electron-triton_collision_time_at_point_88_______________________________ (t_plasma_electron_triton_collision_profile88)_ 1.79625514744496191e-03 +Electron-triton_collision_time_at_point_89_______________________________ (t_plasma_electron_triton_collision_profile89)_ 1.79438093997518052e-03 +Electron-triton_collision_time_at_point_90_______________________________ (t_plasma_electron_triton_collision_profile90)_ 1.79248632867246753e-03 +Electron-triton_collision_time_at_point_91_______________________________ (t_plasma_electron_triton_collision_profile91)_ 1.79057134013808580e-03 +Electron-triton_collision_time_at_point_92_______________________________ (t_plasma_electron_triton_collision_profile92)_ 1.78863600130029486e-03 +Electron-triton_collision_time_at_point_93_______________________________ (t_plasma_electron_triton_collision_profile93)_ 1.78668033941537939e-03 +Electron-triton_collision_time_at_point_94_______________________________ (t_plasma_electron_triton_collision_profile94)_ 1.78470438206870135e-03 +Electron-triton_collision_time_at_point_95_______________________________ (t_plasma_electron_triton_collision_profile95)_ 1.78270815717576398e-03 +Electron-triton_collision_time_at_point_96_______________________________ (t_plasma_electron_triton_collision_profile96)_ 1.78069169298328777e-03 +Electron-triton_collision_time_at_point_97_______________________________ (t_plasma_electron_triton_collision_profile97)_ 1.77865501807030662e-03 +Electron-triton_collision_time_at_point_98_______________________________ (t_plasma_electron_triton_collision_profile98)_ 1.77659816134926912e-03 +Electron-triton_collision_time_at_point_99_______________________________ (t_plasma_electron_triton_collision_profile99)_ 1.77452115206716229e-03 +Electron-triton_collision_time_at_point_100______________________________ (t_plasma_electron_triton_collision_profile100)_ 1.77242401980664426e-03 +Electron-triton_collision_time_at_point_101______________________________ (t_plasma_electron_triton_collision_profile101)_ 1.77030679448719752e-03 +Electron-triton_collision_time_at_point_102______________________________ (t_plasma_electron_triton_collision_profile102)_ 1.76816950636628743e-03 +Electron-triton_collision_time_at_point_103______________________________ (t_plasma_electron_triton_collision_profile103)_ 1.76601218604054968e-03 +Electron-triton_collision_time_at_point_104______________________________ (t_plasma_electron_triton_collision_profile104)_ 1.76383486444697574e-03 +Electron-triton_collision_time_at_point_105______________________________ (t_plasma_electron_triton_collision_profile105)_ 1.76163757286412650e-03 +Electron-triton_collision_time_at_point_106______________________________ (t_plasma_electron_triton_collision_profile106)_ 1.75942034291335530e-03 +Electron-triton_collision_time_at_point_107______________________________ (t_plasma_electron_triton_collision_profile107)_ 1.75718320656004603e-03 +Electron-triton_collision_time_at_point_108______________________________ (t_plasma_electron_triton_collision_profile108)_ 1.75492619611487106e-03 +Electron-triton_collision_time_at_point_109______________________________ (t_plasma_electron_triton_collision_profile109)_ 1.75264934423505323e-03 +Electron-triton_collision_time_at_point_110______________________________ (t_plasma_electron_triton_collision_profile110)_ 1.75035268392566149e-03 +Electron-triton_collision_time_at_point_111______________________________ (t_plasma_electron_triton_collision_profile111)_ 1.74803624854090000e-03 +Electron-triton_collision_time_at_point_112______________________________ (t_plasma_electron_triton_collision_profile112)_ 1.74570007178543934e-03 +Electron-triton_collision_time_at_point_113______________________________ (t_plasma_electron_triton_collision_profile113)_ 1.74334418771573290e-03 +Electron-triton_collision_time_at_point_114______________________________ (t_plasma_electron_triton_collision_profile114)_ 1.74096863074137630e-03 +Electron-triton_collision_time_at_point_115______________________________ (t_plasma_electron_triton_collision_profile115)_ 1.73857343562646934e-03 +Electron-triton_collision_time_at_point_116______________________________ (t_plasma_electron_triton_collision_profile116)_ 1.73615863749099208e-03 +Electron-triton_collision_time_at_point_117______________________________ (t_plasma_electron_triton_collision_profile117)_ 1.73372427181220866e-03 +Electron-triton_collision_time_at_point_118______________________________ (t_plasma_electron_triton_collision_profile118)_ 1.73127037442607438e-03 +Electron-triton_collision_time_at_point_119______________________________ (t_plasma_electron_triton_collision_profile119)_ 1.72879698152866900e-03 +Electron-triton_collision_time_at_point_120______________________________ (t_plasma_electron_triton_collision_profile120)_ 1.72630412967764353e-03 +Electron-triton_collision_time_at_point_121______________________________ (t_plasma_electron_triton_collision_profile121)_ 1.72379185579368127e-03 +Electron-triton_collision_time_at_point_122______________________________ (t_plasma_electron_triton_collision_profile122)_ 1.72126019716197778e-03 +Electron-triton_collision_time_at_point_123______________________________ (t_plasma_electron_triton_collision_profile123)_ 1.71870919143374094e-03 +Electron-triton_collision_time_at_point_124______________________________ (t_plasma_electron_triton_collision_profile124)_ 1.71613887662770389e-03 +Electron-triton_collision_time_at_point_125______________________________ (t_plasma_electron_triton_collision_profile125)_ 1.71354929113165630e-03 +Electron-triton_collision_time_at_point_126______________________________ (t_plasma_electron_triton_collision_profile126)_ 1.71094047370399203e-03 +Electron-triton_collision_time_at_point_127______________________________ (t_plasma_electron_triton_collision_profile127)_ 1.70831246347528010e-03 +Electron-triton_collision_time_at_point_128______________________________ (t_plasma_electron_triton_collision_profile128)_ 1.70566529994984608e-03 +Electron-triton_collision_time_at_point_129______________________________ (t_plasma_electron_triton_collision_profile129)_ 1.70299902300737548e-03 +Electron-triton_collision_time_at_point_130______________________________ (t_plasma_electron_triton_collision_profile130)_ 1.70031367290453261e-03 +Electron-triton_collision_time_at_point_131______________________________ (t_plasma_electron_triton_collision_profile131)_ 1.69760929027660146e-03 +Electron-triton_collision_time_at_point_132______________________________ (t_plasma_electron_triton_collision_profile132)_ 1.69488591613914212e-03 +Electron-triton_collision_time_at_point_133______________________________ (t_plasma_electron_triton_collision_profile133)_ 1.69214359188966349e-03 +Electron-triton_collision_time_at_point_134______________________________ (t_plasma_electron_triton_collision_profile134)_ 1.68938235930932070e-03 +Electron-triton_collision_time_at_point_135______________________________ (t_plasma_electron_triton_collision_profile135)_ 1.68660226056462558e-03 +Electron-triton_collision_time_at_point_136______________________________ (t_plasma_electron_triton_collision_profile136)_ 1.68380333820918006e-03 +Electron-triton_collision_time_at_point_137______________________________ (t_plasma_electron_triton_collision_profile137)_ 1.68098563518542408e-03 +Electron-triton_collision_time_at_point_138______________________________ (t_plasma_electron_triton_collision_profile138)_ 1.67814919482640748e-03 +Electron-triton_collision_time_at_point_139______________________________ (t_plasma_electron_triton_collision_profile139)_ 1.67529406085758018e-03 +Electron-triton_collision_time_at_point_140______________________________ (t_plasma_electron_triton_collision_profile140)_ 1.67242027739859887e-03 +Electron-triton_collision_time_at_point_141______________________________ (t_plasma_electron_triton_collision_profile141)_ 1.66952788896515569e-03 +Electron-triton_collision_time_at_point_142______________________________ (t_plasma_electron_triton_collision_profile142)_ 1.66661694047083001e-03 +Electron-triton_collision_time_at_point_143______________________________ (t_plasma_electron_triton_collision_profile143)_ 1.66368747722895238e-03 +Electron-triton_collision_time_at_point_144______________________________ (t_plasma_electron_triton_collision_profile144)_ 1.66073954495449716e-03 +Electron-triton_collision_time_at_point_145______________________________ (t_plasma_electron_triton_collision_profile145)_ 1.65777318976598697e-03 +Electron-triton_collision_time_at_point_146______________________________ (t_plasma_electron_triton_collision_profile146)_ 1.65478845818743171e-03 +Electron-triton_collision_time_at_point_147______________________________ (t_plasma_electron_triton_collision_profile147)_ 1.65178539715026625e-03 +Electron-triton_collision_time_at_point_148______________________________ (t_plasma_electron_triton_collision_profile148)_ 1.64876405399533234e-03 +Electron-triton_collision_time_at_point_149______________________________ (t_plasma_electron_triton_collision_profile149)_ 1.64572447647486878e-03 +Electron-triton_collision_time_at_point_150______________________________ (t_plasma_electron_triton_collision_profile150)_ 1.64266671275452064e-03 +Electron-triton_collision_time_at_point_151______________________________ (t_plasma_electron_triton_collision_profile151)_ 1.63959081141538195e-03 +Electron-triton_collision_time_at_point_152______________________________ (t_plasma_electron_triton_collision_profile152)_ 1.63649682145604650e-03 +Electron-triton_collision_time_at_point_153______________________________ (t_plasma_electron_triton_collision_profile153)_ 1.63338479229469436e-03 +Electron-triton_collision_time_at_point_154______________________________ (t_plasma_electron_triton_collision_profile154)_ 1.63025477377118280e-03 +Electron-triton_collision_time_at_point_155______________________________ (t_plasma_electron_triton_collision_profile155)_ 1.62710681614918092e-03 +Electron-triton_collision_time_at_point_156______________________________ (t_plasma_electron_triton_collision_profile156)_ 1.62394097011830853e-03 +Electron-triton_collision_time_at_point_157______________________________ (t_plasma_electron_triton_collision_profile157)_ 1.62075728679630677e-03 +Electron-triton_collision_time_at_point_158______________________________ (t_plasma_electron_triton_collision_profile158)_ 1.61755581773123029e-03 +Electron-triton_collision_time_at_point_159______________________________ (t_plasma_electron_triton_collision_profile159)_ 1.61433661490366235e-03 +Electron-triton_collision_time_at_point_160______________________________ (t_plasma_electron_triton_collision_profile160)_ 1.61109973072895213e-03 +Electron-triton_collision_time_at_point_161______________________________ (t_plasma_electron_triton_collision_profile161)_ 1.60784521805947770e-03 +Electron-triton_collision_time_at_point_162______________________________ (t_plasma_electron_triton_collision_profile162)_ 1.60457313018692871e-03 +Electron-triton_collision_time_at_point_163______________________________ (t_plasma_electron_triton_collision_profile163)_ 1.60128352084462004e-03 +Electron-triton_collision_time_at_point_164______________________________ (t_plasma_electron_triton_collision_profile164)_ 1.59797644420982396e-03 +Electron-triton_collision_time_at_point_165______________________________ (t_plasma_electron_triton_collision_profile165)_ 1.59465195490612671e-03 +Electron-triton_collision_time_at_point_166______________________________ (t_plasma_electron_triton_collision_profile166)_ 1.59131010800581422e-03 +Electron-triton_collision_time_at_point_167______________________________ (t_plasma_electron_triton_collision_profile167)_ 1.58795095903227815e-03 +Electron-triton_collision_time_at_point_168______________________________ (t_plasma_electron_triton_collision_profile168)_ 1.58457456396244993e-03 +Electron-triton_collision_time_at_point_169______________________________ (t_plasma_electron_triton_collision_profile169)_ 1.58118097922925883e-03 +Electron-triton_collision_time_at_point_170______________________________ (t_plasma_electron_triton_collision_profile170)_ 1.57777026172411768e-03 +Electron-triton_collision_time_at_point_171______________________________ (t_plasma_electron_triton_collision_profile171)_ 1.57434246879943097e-03 +Electron-triton_collision_time_at_point_172______________________________ (t_plasma_electron_triton_collision_profile172)_ 1.57089765827113370e-03 +Electron-triton_collision_time_at_point_173______________________________ (t_plasma_electron_triton_collision_profile173)_ 1.56743588842124808e-03 +Electron-triton_collision_time_at_point_174______________________________ (t_plasma_electron_triton_collision_profile174)_ 1.56395721800048305e-03 +Electron-triton_collision_time_at_point_175______________________________ (t_plasma_electron_triton_collision_profile175)_ 1.56046170623084374e-03 +Electron-triton_collision_time_at_point_176______________________________ (t_plasma_electron_triton_collision_profile176)_ 1.55694941280827581e-03 +Electron-triton_collision_time_at_point_177______________________________ (t_plasma_electron_triton_collision_profile177)_ 1.55342039790533695e-03 +Electron-triton_collision_time_at_point_178______________________________ (t_plasma_electron_triton_collision_profile178)_ 1.54987472217389959e-03 +Electron-triton_collision_time_at_point_179______________________________ (t_plasma_electron_triton_collision_profile179)_ 1.54631244674787154e-03 +Electron-triton_collision_time_at_point_180______________________________ (t_plasma_electron_triton_collision_profile180)_ 1.54273363324595732e-03 +Electron-triton_collision_time_at_point_181______________________________ (t_plasma_electron_triton_collision_profile181)_ 1.53913834377443839e-03 +Electron-triton_collision_time_at_point_182______________________________ (t_plasma_electron_triton_collision_profile182)_ 1.53552664092998763e-03 +Electron-triton_collision_time_at_point_183______________________________ (t_plasma_electron_triton_collision_profile183)_ 1.53189858780251181e-03 +Electron-triton_collision_time_at_point_184______________________________ (t_plasma_electron_triton_collision_profile184)_ 1.52825424797802152e-03 +Electron-triton_collision_time_at_point_185______________________________ (t_plasma_electron_triton_collision_profile185)_ 1.52459368554153617e-03 +Electron-triton_collision_time_at_point_186______________________________ (t_plasma_electron_triton_collision_profile186)_ 1.52091696508001176e-03 +Electron-triton_collision_time_at_point_187______________________________ (t_plasma_electron_triton_collision_profile187)_ 1.51722415168530577e-03 +Electron-triton_collision_time_at_point_188______________________________ (t_plasma_electron_triton_collision_profile188)_ 1.51351531095716822e-03 +Electron-triton_collision_time_at_point_189______________________________ (t_plasma_electron_triton_collision_profile189)_ 1.50979050900626921e-03 +Electron-triton_collision_time_at_point_190______________________________ (t_plasma_electron_triton_collision_profile190)_ 1.50604981245724837e-03 +Electron-triton_collision_time_at_point_191______________________________ (t_plasma_electron_triton_collision_profile191)_ 1.50229328845180826e-03 +Electron-triton_collision_time_at_point_192______________________________ (t_plasma_electron_triton_collision_profile192)_ 1.49852100465183019e-03 +Electron-triton_collision_time_at_point_193______________________________ (t_plasma_electron_triton_collision_profile193)_ 1.49473302924252728e-03 +Electron-triton_collision_time_at_point_194______________________________ (t_plasma_electron_triton_collision_profile194)_ 1.49092943093562746e-03 +Electron-triton_collision_time_at_point_195______________________________ (t_plasma_electron_triton_collision_profile195)_ 1.48711027897259463e-03 +Electron-triton_collision_time_at_point_196______________________________ (t_plasma_electron_triton_collision_profile196)_ 1.48327564312787630e-03 +Electron-triton_collision_time_at_point_197______________________________ (t_plasma_electron_triton_collision_profile197)_ 1.47942559371219045e-03 +Electron-triton_collision_time_at_point_198______________________________ (t_plasma_electron_triton_collision_profile198)_ 1.47556020157584553e-03 +Electron-triton_collision_time_at_point_199______________________________ (t_plasma_electron_triton_collision_profile199)_ 1.47167953811209117e-03 +Electron-triton_collision_time_at_point_200______________________________ (t_plasma_electron_triton_collision_profile200)_ 1.46778367526051445e-03 +Electron-triton_collision_time_at_point_201______________________________ (t_plasma_electron_triton_collision_profile201)_ 1.46387268551045370e-03 +Electron-triton_collision_time_at_point_202______________________________ (t_plasma_electron_triton_collision_profile202)_ 1.45994664190447071e-03 +Electron-triton_collision_time_at_point_203______________________________ (t_plasma_electron_triton_collision_profile203)_ 1.45600561804183626e-03 +Electron-triton_collision_time_at_point_204______________________________ (t_plasma_electron_triton_collision_profile204)_ 1.45204968808207002e-03 +Electron-triton_collision_time_at_point_205______________________________ (t_plasma_electron_triton_collision_profile205)_ 1.44807892674850953e-03 +Electron-triton_collision_time_at_point_206______________________________ (t_plasma_electron_triton_collision_profile206)_ 1.44409340933191496e-03 +Electron-triton_collision_time_at_point_207______________________________ (t_plasma_electron_triton_collision_profile207)_ 1.44009321169411703e-03 +Electron-triton_collision_time_at_point_208______________________________ (t_plasma_electron_triton_collision_profile208)_ 1.43607841027170173e-03 +Electron-triton_collision_time_at_point_209______________________________ (t_plasma_electron_triton_collision_profile209)_ 1.43204908207972791e-03 +Electron-triton_collision_time_at_point_210______________________________ (t_plasma_electron_triton_collision_profile210)_ 1.42800530471549523e-03 +Electron-triton_collision_time_at_point_211______________________________ (t_plasma_electron_triton_collision_profile211)_ 1.42394715636233894e-03 +Electron-triton_collision_time_at_point_212______________________________ (t_plasma_electron_triton_collision_profile212)_ 1.41987471579347788e-03 +Electron-triton_collision_time_at_point_213______________________________ (t_plasma_electron_triton_collision_profile213)_ 1.41578806237589033e-03 +Electron-triton_collision_time_at_point_214______________________________ (t_plasma_electron_triton_collision_profile214)_ 1.41168727607424160e-03 +Electron-triton_collision_time_at_point_215______________________________ (t_plasma_electron_triton_collision_profile215)_ 1.40757243745484638e-03 +Electron-triton_collision_time_at_point_216______________________________ (t_plasma_electron_triton_collision_profile216)_ 1.40344362768967702e-03 +Electron-triton_collision_time_at_point_217______________________________ (t_plasma_electron_triton_collision_profile217)_ 1.39930092856040914e-03 +Electron-triton_collision_time_at_point_218______________________________ (t_plasma_electron_triton_collision_profile218)_ 1.39514442246251838e-03 +Electron-triton_collision_time_at_point_219______________________________ (t_plasma_electron_triton_collision_profile219)_ 1.39097419240941317e-03 +Electron-triton_collision_time_at_point_220______________________________ (t_plasma_electron_triton_collision_profile220)_ 1.38679032203661802e-03 +Electron-triton_collision_time_at_point_221______________________________ (t_plasma_electron_triton_collision_profile221)_ 1.38259289560599408e-03 +Electron-triton_collision_time_at_point_222______________________________ (t_plasma_electron_triton_collision_profile222)_ 1.37838199801001114e-03 +Electron-triton_collision_time_at_point_223______________________________ (t_plasma_electron_triton_collision_profile223)_ 1.37415771477606427e-03 +Electron-triton_collision_time_at_point_224______________________________ (t_plasma_electron_triton_collision_profile224)_ 1.36992013207083338e-03 +Electron-triton_collision_time_at_point_225______________________________ (t_plasma_electron_triton_collision_profile225)_ 1.36566933670469529e-03 +Electron-triton_collision_time_at_point_226______________________________ (t_plasma_electron_triton_collision_profile226)_ 1.36140541613617651e-03 +Electron-triton_collision_time_at_point_227______________________________ (t_plasma_electron_triton_collision_profile227)_ 1.35712845847646099e-03 +Electron-triton_collision_time_at_point_228______________________________ (t_plasma_electron_triton_collision_profile228)_ 1.35283855249394153e-03 +Electron-triton_collision_time_at_point_229______________________________ (t_plasma_electron_triton_collision_profile229)_ 1.34853578761882399e-03 +Electron-triton_collision_time_at_point_230______________________________ (t_plasma_electron_triton_collision_profile230)_ 1.34422025394777766e-03 +Electron-triton_collision_time_at_point_231______________________________ (t_plasma_electron_triton_collision_profile231)_ 1.33989204224864173e-03 +Electron-triton_collision_time_at_point_232______________________________ (t_plasma_electron_triton_collision_profile232)_ 1.33555124396517633e-03 +Electron-triton_collision_time_at_point_233______________________________ (t_plasma_electron_triton_collision_profile233)_ 1.33119795122187286e-03 +Electron-triton_collision_time_at_point_234______________________________ (t_plasma_electron_triton_collision_profile234)_ 1.32683225682880910e-03 +Electron-triton_collision_time_at_point_235______________________________ (t_plasma_electron_triton_collision_profile235)_ 1.32245425428656645e-03 +Electron-triton_collision_time_at_point_236______________________________ (t_plasma_electron_triton_collision_profile236)_ 1.31806403779119279e-03 +Electron-triton_collision_time_at_point_237______________________________ (t_plasma_electron_triton_collision_profile237)_ 1.31366170223922514e-03 +Electron-triton_collision_time_at_point_238______________________________ (t_plasma_electron_triton_collision_profile238)_ 1.30924734323276983e-03 +Electron-triton_collision_time_at_point_239______________________________ (t_plasma_electron_triton_collision_profile239)_ 1.30482105708462789e-03 +Electron-triton_collision_time_at_point_240______________________________ (t_plasma_electron_triton_collision_profile240)_ 1.30038294082349560e-03 +Electron-triton_collision_time_at_point_241______________________________ (t_plasma_electron_triton_collision_profile241)_ 1.29593309219920528e-03 +Electron-triton_collision_time_at_point_242______________________________ (t_plasma_electron_triton_collision_profile242)_ 1.29147160968803442e-03 +Electron-triton_collision_time_at_point_243______________________________ (t_plasma_electron_triton_collision_profile243)_ 1.28699859249807374e-03 +Electron-triton_collision_time_at_point_244______________________________ (t_plasma_electron_triton_collision_profile244)_ 1.28251414057465219e-03 +Electron-triton_collision_time_at_point_245______________________________ (t_plasma_electron_triton_collision_profile245)_ 1.27801835460582464e-03 +Electron-triton_collision_time_at_point_246______________________________ (t_plasma_electron_triton_collision_profile246)_ 1.27351133602792354e-03 +Electron-triton_collision_time_at_point_247______________________________ (t_plasma_electron_triton_collision_profile247)_ 1.26899318703117066e-03 +Electron-triton_collision_time_at_point_248______________________________ (t_plasma_electron_triton_collision_profile248)_ 1.26446401056535141e-03 +Electron-triton_collision_time_at_point_249______________________________ (t_plasma_electron_triton_collision_profile249)_ 1.25992391034556285e-03 +Electron-triton_collision_time_at_point_250______________________________ (t_plasma_electron_triton_collision_profile250)_ 1.25537299085801547e-03 +Electron-triton_collision_time_at_point_251______________________________ (t_plasma_electron_triton_collision_profile251)_ 1.25081135736590889e-03 +Electron-triton_collision_time_at_point_252______________________________ (t_plasma_electron_triton_collision_profile252)_ 1.24623911591537377e-03 +Electron-triton_collision_time_at_point_253______________________________ (t_plasma_electron_triton_collision_profile253)_ 1.24165637334148148e-03 +Electron-triton_collision_time_at_point_254______________________________ (t_plasma_electron_triton_collision_profile254)_ 1.23706323727432394e-03 +Electron-triton_collision_time_at_point_255______________________________ (t_plasma_electron_triton_collision_profile255)_ 1.23245981614516901e-03 +Electron-triton_collision_time_at_point_256______________________________ (t_plasma_electron_triton_collision_profile256)_ 1.22784621919267692e-03 +Electron-triton_collision_time_at_point_257______________________________ (t_plasma_electron_triton_collision_profile257)_ 1.22322255646920008e-03 +Electron-triton_collision_time_at_point_258______________________________ (t_plasma_electron_triton_collision_profile258)_ 1.21858893884715220e-03 +Electron-triton_collision_time_at_point_259______________________________ (t_plasma_electron_triton_collision_profile259)_ 1.21394547802545442e-03 +Electron-triton_collision_time_at_point_260______________________________ (t_plasma_electron_triton_collision_profile260)_ 1.20929228653605795e-03 +Electron-triton_collision_time_at_point_261______________________________ (t_plasma_electron_triton_collision_profile261)_ 1.20462947775054098e-03 +Electron-triton_collision_time_at_point_262______________________________ (t_plasma_electron_triton_collision_profile262)_ 1.19995716588679018e-03 +Electron-triton_collision_time_at_point_263______________________________ (t_plasma_electron_triton_collision_profile263)_ 1.19527546601575787e-03 +Electron-triton_collision_time_at_point_264______________________________ (t_plasma_electron_triton_collision_profile264)_ 1.19058449406830619e-03 +Electron-triton_collision_time_at_point_265______________________________ (t_plasma_electron_triton_collision_profile265)_ 1.18588436684212580e-03 +Electron-triton_collision_time_at_point_266______________________________ (t_plasma_electron_triton_collision_profile266)_ 1.18117520200874699e-03 +Electron-triton_collision_time_at_point_267______________________________ (t_plasma_electron_triton_collision_profile267)_ 1.17645711812063383e-03 +Electron-triton_collision_time_at_point_268______________________________ (t_plasma_electron_triton_collision_profile268)_ 1.17173023461836570e-03 +Electron-triton_collision_time_at_point_269______________________________ (t_plasma_electron_triton_collision_profile269)_ 1.16699467183790082e-03 +Electron-triton_collision_time_at_point_270______________________________ (t_plasma_electron_triton_collision_profile270)_ 1.16225055101794664e-03 +Electron-triton_collision_time_at_point_271______________________________ (t_plasma_electron_triton_collision_profile271)_ 1.15749799430740243e-03 +Electron-triton_collision_time_at_point_272______________________________ (t_plasma_electron_triton_collision_profile272)_ 1.15273712477291057e-03 +Electron-triton_collision_time_at_point_273______________________________ (t_plasma_electron_triton_collision_profile273)_ 1.14796806640649280e-03 +Electron-triton_collision_time_at_point_274______________________________ (t_plasma_electron_triton_collision_profile274)_ 1.14319094413329399e-03 +Electron-triton_collision_time_at_point_275______________________________ (t_plasma_electron_triton_collision_profile275)_ 1.13840588381940752e-03 +Electron-triton_collision_time_at_point_276______________________________ (t_plasma_electron_triton_collision_profile276)_ 1.13361301227982267e-03 +Electron-triton_collision_time_at_point_277______________________________ (t_plasma_electron_triton_collision_profile277)_ 1.12881245728645553e-03 +Electron-triton_collision_time_at_point_278______________________________ (t_plasma_electron_triton_collision_profile278)_ 1.12400434757629593e-03 +Electron-triton_collision_time_at_point_279______________________________ (t_plasma_electron_triton_collision_profile279)_ 1.11918881285965341e-03 +Electron-triton_collision_time_at_point_280______________________________ (t_plasma_electron_triton_collision_profile280)_ 1.11436598382851754e-03 +Electron-triton_collision_time_at_point_281______________________________ (t_plasma_electron_triton_collision_profile281)_ 1.10953599216502097e-03 +Electron-triton_collision_time_at_point_282______________________________ (t_plasma_electron_triton_collision_profile282)_ 1.10469897055002261e-03 +Electron-triton_collision_time_at_point_283______________________________ (t_plasma_electron_triton_collision_profile283)_ 1.09985505267179949e-03 +Electron-triton_collision_time_at_point_284______________________________ (t_plasma_electron_triton_collision_profile284)_ 1.09500437323485872e-03 +Electron-triton_collision_time_at_point_285______________________________ (t_plasma_electron_triton_collision_profile285)_ 1.09014706796886846e-03 +Electron-triton_collision_time_at_point_286______________________________ (t_plasma_electron_triton_collision_profile286)_ 1.08528327363770737e-03 +Electron-triton_collision_time_at_point_287______________________________ (t_plasma_electron_triton_collision_profile287)_ 1.08041312804864429e-03 +Electron-triton_collision_time_at_point_288______________________________ (t_plasma_electron_triton_collision_profile288)_ 1.07553677006163467e-03 +Electron-triton_collision_time_at_point_289______________________________ (t_plasma_electron_triton_collision_profile289)_ 1.07065433959876110e-03 +Electron-triton_collision_time_at_point_290______________________________ (t_plasma_electron_triton_collision_profile290)_ 1.06576597765378777e-03 +Electron-triton_collision_time_at_point_291______________________________ (t_plasma_electron_triton_collision_profile291)_ 1.06087182630186625e-03 +Electron-triton_collision_time_at_point_292______________________________ (t_plasma_electron_triton_collision_profile292)_ 1.05597202870936872e-03 +Electron-triton_collision_time_at_point_293______________________________ (t_plasma_electron_triton_collision_profile293)_ 1.05106672914386618e-03 +Electron-triton_collision_time_at_point_294______________________________ (t_plasma_electron_triton_collision_profile294)_ 1.04615607298424854e-03 +Electron-triton_collision_time_at_point_295______________________________ (t_plasma_electron_triton_collision_profile295)_ 1.04124020673099530e-03 +Electron-triton_collision_time_at_point_296______________________________ (t_plasma_electron_triton_collision_profile296)_ 1.03631927801659039e-03 +Electron-triton_collision_time_at_point_297______________________________ (t_plasma_electron_triton_collision_profile297)_ 1.03139343561609942e-03 +Electron-triton_collision_time_at_point_298______________________________ (t_plasma_electron_triton_collision_profile298)_ 1.02646282945789420e-03 +Electron-triton_collision_time_at_point_299______________________________ (t_plasma_electron_triton_collision_profile299)_ 1.02152761063454894e-03 +Electron-triton_collision_time_at_point_300______________________________ (t_plasma_electron_triton_collision_profile300)_ 1.01658793141389133e-03 +Electron-triton_collision_time_at_point_301______________________________ (t_plasma_electron_triton_collision_profile301)_ 1.01164394525023117e-03 +Electron-triton_collision_time_at_point_302______________________________ (t_plasma_electron_triton_collision_profile302)_ 1.00669580679575406e-03 +Electron-triton_collision_time_at_point_303______________________________ (t_plasma_electron_triton_collision_profile303)_ 1.00174367191209934e-03 +Electron-triton_collision_time_at_point_304______________________________ (t_plasma_electron_triton_collision_profile304)_ 9.96787697682113101e-04 +Electron-triton_collision_time_at_point_305______________________________ (t_plasma_electron_triton_collision_profile305)_ 9.91828042421792145e-04 +Electron-triton_collision_time_at_point_306______________________________ (t_plasma_electron_triton_collision_profile306)_ 9.86864865692415596e-04 +Electron-triton_collision_time_at_point_307______________________________ (t_plasma_electron_triton_collision_profile307)_ 9.81898328312874645e-04 +Electron-triton_collision_time_at_point_308______________________________ (t_plasma_electron_triton_collision_profile308)_ 9.76928592372198340e-04 +Electron-triton_collision_time_at_point_309______________________________ (t_plasma_electron_triton_collision_profile309)_ 9.71955821242291009e-04 +Electron-triton_collision_time_at_point_310______________________________ (t_plasma_electron_triton_collision_profile310)_ 9.66980179590876880e-04 +Electron-triton_collision_time_at_point_311______________________________ (t_plasma_electron_triton_collision_profile311)_ 9.62001833394664674e-04 +Electron-triton_collision_time_at_point_312______________________________ (t_plasma_electron_triton_collision_profile312)_ 9.57020949952729376e-04 +Electron-triton_collision_time_at_point_313______________________________ (t_plasma_electron_triton_collision_profile313)_ 9.52037697900132845e-04 +Electron-triton_collision_time_at_point_314______________________________ (t_plasma_electron_triton_collision_profile314)_ 9.47052247221768324e-04 +Electron-triton_collision_time_at_point_315______________________________ (t_plasma_electron_triton_collision_profile315)_ 9.42064769266456143e-04 +Electron-triton_collision_time_at_point_316______________________________ (t_plasma_electron_triton_collision_profile316)_ 9.37075436761281976e-04 +Electron-triton_collision_time_at_point_317______________________________ (t_plasma_electron_triton_collision_profile317)_ 9.32084423826194100e-04 +Electron-triton_collision_time_at_point_318______________________________ (t_plasma_electron_triton_collision_profile318)_ 9.27091905988865206e-04 +Electron-triton_collision_time_at_point_319______________________________ (t_plasma_electron_triton_collision_profile319)_ 9.22098060199819623e-04 +Electron-triton_collision_time_at_point_320______________________________ (t_plasma_electron_triton_collision_profile320)_ 9.17103064847846552e-04 +Electron-triton_collision_time_at_point_321______________________________ (t_plasma_electron_triton_collision_profile321)_ 9.12107099775695952e-04 +Electron-triton_collision_time_at_point_322______________________________ (t_plasma_electron_triton_collision_profile322)_ 9.07110346296072473e-04 +Electron-triton_collision_time_at_point_323______________________________ (t_plasma_electron_triton_collision_profile323)_ 9.02112987207935786e-04 +Electron-triton_collision_time_at_point_324______________________________ (t_plasma_electron_triton_collision_profile324)_ 8.97115206813113163e-04 +Electron-triton_collision_time_at_point_325______________________________ (t_plasma_electron_triton_collision_profile325)_ 8.92117190933238834e-04 +Electron-triton_collision_time_at_point_326______________________________ (t_plasma_electron_triton_collision_profile326)_ 8.87119126927029232e-04 +Electron-triton_collision_time_at_point_327______________________________ (t_plasma_electron_triton_collision_profile327)_ 8.82121203707900625e-04 +Electron-triton_collision_time_at_point_328______________________________ (t_plasma_electron_triton_collision_profile328)_ 8.77123611761946925e-04 +Electron-triton_collision_time_at_point_329______________________________ (t_plasma_electron_triton_collision_profile329)_ 8.72126543166288075e-04 +Electron-triton_collision_time_at_point_330______________________________ (t_plasma_electron_triton_collision_profile330)_ 8.67130191607794003e-04 +Electron-triton_collision_time_at_point_331______________________________ (t_plasma_electron_triton_collision_profile331)_ 8.62134752402208865e-04 +Electron-triton_collision_time_at_point_332______________________________ (t_plasma_electron_triton_collision_profile332)_ 8.57140422513678608e-04 +Electron-triton_collision_time_at_point_333______________________________ (t_plasma_electron_triton_collision_profile333)_ 8.52147400574702787e-04 +Electron-triton_collision_time_at_point_334______________________________ (t_plasma_electron_triton_collision_profile334)_ 8.47155886906520925e-04 +Electron-triton_collision_time_at_point_335______________________________ (t_plasma_electron_triton_collision_profile335)_ 8.42166083539951744e-04 +Electron-triton_collision_time_at_point_336______________________________ (t_plasma_electron_triton_collision_profile336)_ 8.37178194236700671e-04 +Electron-triton_collision_time_at_point_337______________________________ (t_plasma_electron_triton_collision_profile337)_ 8.32192424511150343e-04 +Electron-triton_collision_time_at_point_338______________________________ (t_plasma_electron_triton_collision_profile338)_ 8.27208981652655063e-04 +Electron-triton_collision_time_at_point_339______________________________ (t_plasma_electron_triton_collision_profile339)_ 8.22228074748355660e-04 +Electron-triton_collision_time_at_point_340______________________________ (t_plasma_electron_triton_collision_profile340)_ 8.17249914706535160e-04 +Electron-triton_collision_time_at_point_341______________________________ (t_plasma_electron_triton_collision_profile341)_ 8.12274714280533465e-04 +Electron-triton_collision_time_at_point_342______________________________ (t_plasma_electron_triton_collision_profile342)_ 8.07302688093246962e-04 +Electron-triton_collision_time_at_point_343______________________________ (t_plasma_electron_triton_collision_profile343)_ 8.02334052662230729e-04 +Electron-triton_collision_time_at_point_344______________________________ (t_plasma_electron_triton_collision_profile344)_ 7.97369026425429799e-04 +Electron-triton_collision_time_at_point_345______________________________ (t_plasma_electron_triton_collision_profile345)_ 7.92407829767558772e-04 +Electron-triton_collision_time_at_point_346______________________________ (t_plasma_electron_triton_collision_profile346)_ 7.87450685047170226e-04 +Electron-triton_collision_time_at_point_347______________________________ (t_plasma_electron_triton_collision_profile347)_ 7.82497816624417013e-04 +Electron-triton_collision_time_at_point_348______________________________ (t_plasma_electron_triton_collision_profile348)_ 7.77549450889558538e-04 +Electron-triton_collision_time_at_point_349______________________________ (t_plasma_electron_triton_collision_profile349)_ 7.72605816292226948e-04 +Electron-triton_collision_time_at_point_350______________________________ (t_plasma_electron_triton_collision_profile350)_ 7.67667143371490441e-04 +Electron-triton_collision_time_at_point_351______________________________ (t_plasma_electron_triton_collision_profile351)_ 7.62733664786748467e-04 +Electron-triton_collision_time_at_point_352______________________________ (t_plasma_electron_triton_collision_profile352)_ 7.57805615349488554e-04 +Electron-triton_collision_time_at_point_353______________________________ (t_plasma_electron_triton_collision_profile353)_ 7.52883232055950717e-04 +Electron-triton_collision_time_at_point_354______________________________ (t_plasma_electron_triton_collision_profile354)_ 7.47966754120724933e-04 +Electron-triton_collision_time_at_point_355______________________________ (t_plasma_electron_triton_collision_profile355)_ 7.43056423011338924e-04 +Electron-triton_collision_time_at_point_356______________________________ (t_plasma_electron_triton_collision_profile356)_ 7.38152482483864550e-04 +Electron-triton_collision_time_at_point_357______________________________ (t_plasma_electron_triton_collision_profile357)_ 7.33255178619599836e-04 +Electron-triton_collision_time_at_point_358______________________________ (t_plasma_electron_triton_collision_profile358)_ 7.28364759862867948e-04 +Electron-triton_collision_time_at_point_359______________________________ (t_plasma_electron_triton_collision_profile359)_ 7.23481477059986669e-04 +Electron-triton_collision_time_at_point_360______________________________ (t_plasma_electron_triton_collision_profile360)_ 7.18605583499463464e-04 +Electron-triton_collision_time_at_point_361______________________________ (t_plasma_electron_triton_collision_profile361)_ 7.13737334953467076e-04 +Electron-triton_collision_time_at_point_362______________________________ (t_plasma_electron_triton_collision_profile362)_ 7.08876989720644084e-04 +Electron-triton_collision_time_at_point_363______________________________ (t_plasma_electron_triton_collision_profile363)_ 7.04024808670337000e-04 +Electron-triton_collision_time_at_point_364______________________________ (t_plasma_electron_triton_collision_profile364)_ 6.99181055288273091e-04 +Electron-triton_collision_time_at_point_365______________________________ (t_plasma_electron_triton_collision_profile365)_ 6.94345995723797977e-04 +Electron-triton_collision_time_at_point_366______________________________ (t_plasma_electron_triton_collision_profile366)_ 6.89519898838720775e-04 +Electron-triton_collision_time_at_point_367______________________________ (t_plasma_electron_triton_collision_profile367)_ 6.84703036257862537e-04 +Electron-triton_collision_time_at_point_368______________________________ (t_plasma_electron_triton_collision_profile368)_ 6.79895682421379735e-04 +Electron-triton_collision_time_at_point_369______________________________ (t_plasma_electron_triton_collision_profile369)_ 6.75098114638960603e-04 +Electron-triton_collision_time_at_point_370______________________________ (t_plasma_electron_triton_collision_profile370)_ 6.70310613145987024e-04 +Electron-triton_collision_time_at_point_371______________________________ (t_plasma_electron_triton_collision_profile371)_ 6.65533461161758573e-04 +Electron-triton_collision_time_at_point_372______________________________ (t_plasma_electron_triton_collision_profile372)_ 6.60766944949891036e-04 +Electron-triton_collision_time_at_point_373______________________________ (t_plasma_electron_triton_collision_profile373)_ 6.56011353880998579e-04 +Electron-triton_collision_time_at_point_374______________________________ (t_plasma_electron_triton_collision_profile374)_ 6.51266980497783613e-04 +Electron-triton_collision_time_at_point_375______________________________ (t_plasma_electron_triton_collision_profile375)_ 6.46534120582655013e-04 +Electron-triton_collision_time_at_point_376______________________________ (t_plasma_electron_triton_collision_profile376)_ 6.41813073228021170e-04 +Electron-triton_collision_time_at_point_377______________________________ (t_plasma_electron_triton_collision_profile377)_ 6.37104140909391351e-04 +Electron-triton_collision_time_at_point_378______________________________ (t_plasma_electron_triton_collision_profile378)_ 6.32407629561449174e-04 +Electron-triton_collision_time_at_point_379______________________________ (t_plasma_electron_triton_collision_profile379)_ 6.27723848657254233e-04 +Electron-triton_collision_time_at_point_380______________________________ (t_plasma_electron_triton_collision_profile380)_ 6.23053111290752912e-04 +Electron-triton_collision_time_at_point_381______________________________ (t_plasma_electron_triton_collision_profile381)_ 6.18395734262780017e-04 +Electron-triton_collision_time_at_point_382______________________________ (t_plasma_electron_triton_collision_profile382)_ 6.13752038170752327e-04 +Electron-triton_collision_time_at_point_383______________________________ (t_plasma_electron_triton_collision_profile383)_ 6.09122347502264187e-04 +Electron-triton_collision_time_at_point_384______________________________ (t_plasma_electron_triton_collision_profile384)_ 6.04506990732816630e-04 +Electron-triton_collision_time_at_point_385______________________________ (t_plasma_electron_triton_collision_profile385)_ 5.99906300427916362e-04 +Electron-triton_collision_time_at_point_386______________________________ (t_plasma_electron_triton_collision_profile386)_ 5.95320613349803766e-04 +Electron-triton_collision_time_at_point_387______________________________ (t_plasma_electron_triton_collision_profile387)_ 5.90750270569091783e-04 +Electron-triton_collision_time_at_point_388______________________________ (t_plasma_electron_triton_collision_profile388)_ 5.86195617581610384e-04 +Electron-triton_collision_time_at_point_389______________________________ (t_plasma_electron_triton_collision_profile389)_ 5.81657004430769300e-04 +Electron-triton_collision_time_at_point_390______________________________ (t_plasma_electron_triton_collision_profile390)_ 5.77134785835784338e-04 +Electron-triton_collision_time_at_point_391______________________________ (t_plasma_electron_triton_collision_profile391)_ 5.72629321326135685e-04 +Electron-triton_collision_time_at_point_392______________________________ (t_plasma_electron_triton_collision_profile392)_ 5.68140975382640614e-04 +Electron-triton_collision_time_at_point_393______________________________ (t_plasma_electron_triton_collision_profile393)_ 5.63670117585573496e-04 +Electron-triton_collision_time_at_point_394______________________________ (t_plasma_electron_triton_collision_profile394)_ 5.59217122770275157e-04 +Electron-triton_collision_time_at_point_395______________________________ (t_plasma_electron_triton_collision_profile395)_ 5.54782371190747710e-04 +Electron-triton_collision_time_at_point_396______________________________ (t_plasma_electron_triton_collision_profile396)_ 5.50366248691753438e-04 +Electron-triton_collision_time_at_point_397______________________________ (t_plasma_electron_triton_collision_profile397)_ 5.45969146889988227e-04 +Electron-triton_collision_time_at_point_398______________________________ (t_plasma_electron_triton_collision_profile398)_ 5.41591463364932482e-04 +Electron-triton_collision_time_at_point_399______________________________ (t_plasma_electron_triton_collision_profile399)_ 5.37233601860047610e-04 +Electron-triton_collision_time_at_point_400______________________________ (t_plasma_electron_triton_collision_profile400)_ 5.32895972495018460e-04 +Electron-triton_collision_time_at_point_401______________________________ (t_plasma_electron_triton_collision_profile401)_ 5.28578991989817255e-04 +Electron-triton_collision_time_at_point_402______________________________ (t_plasma_electron_triton_collision_profile402)_ 5.24283083901418210e-04 +Electron-triton_collision_time_at_point_403______________________________ (t_plasma_electron_triton_collision_profile403)_ 5.20008678874069020e-04 +Electron-triton_collision_time_at_point_404______________________________ (t_plasma_electron_triton_collision_profile404)_ 5.15756214904086957e-04 +Electron-triton_collision_time_at_point_405______________________________ (t_plasma_electron_triton_collision_profile405)_ 5.11526137620251344e-04 +Electron-triton_collision_time_at_point_406______________________________ (t_plasma_electron_triton_collision_profile406)_ 5.07318900580937932e-04 +Electron-triton_collision_time_at_point_407______________________________ (t_plasma_electron_triton_collision_profile407)_ 5.03134965589254845e-04 +Electron-triton_collision_time_at_point_408______________________________ (t_plasma_electron_triton_collision_profile408)_ 4.98974803027537380e-04 +Electron-triton_collision_time_at_point_409______________________________ (t_plasma_electron_triton_collision_profile409)_ 4.94838892212703832e-04 +Electron-triton_collision_time_at_point_410______________________________ (t_plasma_electron_triton_collision_profile410)_ 4.90727721774084449e-04 +Electron-triton_collision_time_at_point_411______________________________ (t_plasma_electron_triton_collision_profile411)_ 4.86641790055508867e-04 +Electron-triton_collision_time_at_point_412______________________________ (t_plasma_electron_triton_collision_profile412)_ 4.82581605543591662e-04 +Electron-triton_collision_time_at_point_413______________________________ (t_plasma_electron_triton_collision_profile413)_ 4.78547687324352663e-04 +Electron-triton_collision_time_at_point_414______________________________ (t_plasma_electron_triton_collision_profile414)_ 4.74540565570500121e-04 +Electron-triton_collision_time_at_point_415______________________________ (t_plasma_electron_triton_collision_profile415)_ 4.70560782061956015e-04 +Electron-triton_collision_time_at_point_416______________________________ (t_plasma_electron_triton_collision_profile416)_ 4.66608890742447387e-04 +Electron-triton_collision_time_at_point_417______________________________ (t_plasma_electron_triton_collision_profile417)_ 4.62685458315275548e-04 +Electron-triton_collision_time_at_point_418______________________________ (t_plasma_electron_triton_collision_profile418)_ 4.58791064881717084e-04 +Electron-triton_collision_time_at_point_419______________________________ (t_plasma_electron_triton_collision_profile419)_ 4.54926304625847525e-04 +Electron-triton_collision_time_at_point_420______________________________ (t_plasma_electron_triton_collision_profile420)_ 4.51091786550018891e-04 +Electron-triton_collision_time_at_point_421______________________________ (t_plasma_electron_triton_collision_profile421)_ 4.47288135265657240e-04 +Electron-triton_collision_time_at_point_422______________________________ (t_plasma_electron_triton_collision_profile422)_ 4.43515991844597188e-04 +Electron-triton_collision_time_at_point_423______________________________ (t_plasma_electron_triton_collision_profile423)_ 4.39776014736743956e-04 +Electron-triton_collision_time_at_point_424______________________________ (t_plasma_electron_triton_collision_profile424)_ 4.36068880760535752e-04 +Electron-triton_collision_time_at_point_425______________________________ (t_plasma_electron_triton_collision_profile425)_ 4.32395286173462663e-04 +Electron-triton_collision_time_at_point_426______________________________ (t_plasma_electron_triton_collision_profile426)_ 4.28755947830753185e-04 +Electron-triton_collision_time_at_point_427______________________________ (t_plasma_electron_triton_collision_profile427)_ 4.25151604441368616e-04 +Electron-triton_collision_time_at_point_428______________________________ (t_plasma_electron_triton_collision_profile428)_ 4.21583017931600166e-04 +Electron-triton_collision_time_at_point_429______________________________ (t_plasma_electron_triton_collision_profile429)_ 4.18050974927892916e-04 +Electron-triton_collision_time_at_point_430______________________________ (t_plasma_electron_triton_collision_profile430)_ 4.14556288372079206e-04 +Electron-triton_collision_time_at_point_431______________________________ (t_plasma_electron_triton_collision_profile431)_ 4.11099799283987468e-04 +Electron-triton_collision_time_at_point_432______________________________ (t_plasma_electron_triton_collision_profile432)_ 4.07682378688492976e-04 +Electron-triton_collision_time_at_point_433______________________________ (t_plasma_electron_triton_collision_profile433)_ 4.04304929726513411e-04 +Electron-triton_collision_time_at_point_434______________________________ (t_plasma_electron_triton_collision_profile434)_ 4.00968389972329142e-04 +Electron-triton_collision_time_at_point_435______________________________ (t_plasma_electron_triton_collision_profile435)_ 3.97673733982980919e-04 +Electron-triton_collision_time_at_point_436______________________________ (t_plasma_electron_triton_collision_profile436)_ 3.94421976109510762e-04 +Electron-triton_collision_time_at_point_437______________________________ (t_plasma_electron_triton_collision_profile437)_ 3.91214173604558652e-04 +Electron-triton_collision_time_at_point_438______________________________ (t_plasma_electron_triton_collision_profile438)_ 3.88051430066534240e-04 +Electron-triton_collision_time_at_point_439______________________________ (t_plasma_electron_triton_collision_profile439)_ 3.84934899267393811e-04 +Electron-triton_collision_time_at_point_440______________________________ (t_plasma_electron_triton_collision_profile440)_ 3.81865789419319414e-04 +Electron-triton_collision_time_at_point_441______________________________ (t_plasma_electron_triton_collision_profile441)_ 3.78845367945608602e-04 +Electron-triton_collision_time_at_point_442______________________________ (t_plasma_electron_triton_collision_profile442)_ 3.75874966833329651e-04 +Electron-triton_collision_time_at_point_443______________________________ (t_plasma_electron_triton_collision_profile443)_ 3.72955988660356337e-04 +Electron-triton_collision_time_at_point_444______________________________ (t_plasma_electron_triton_collision_profile444)_ 3.70089913408055342e-04 +Electron-triton_collision_time_at_point_445______________________________ (t_plasma_electron_triton_collision_profile445)_ 3.67278306194160863e-04 +Electron-triton_collision_time_at_point_446______________________________ (t_plasma_electron_triton_collision_profile446)_ 3.64522826089654789e-04 +Electron-triton_collision_time_at_point_447______________________________ (t_plasma_electron_triton_collision_profile447)_ 3.61825236220592972e-04 +Electron-triton_collision_time_at_point_448______________________________ (t_plasma_electron_triton_collision_profile448)_ 3.59187415403353061e-04 +Electron-triton_collision_time_at_point_449______________________________ (t_plasma_electron_triton_collision_profile449)_ 3.56611371623243522e-04 +Electron-triton_collision_time_at_point_450______________________________ (t_plasma_electron_triton_collision_profile450)_ 3.54099257746726711e-04 +Electron-triton_collision_time_at_point_451______________________________ (t_plasma_electron_triton_collision_profile451)_ 3.51653389963738332e-04 +Electron-triton_collision_time_at_point_452______________________________ (t_plasma_electron_triton_collision_profile452)_ 3.49276269598829516e-04 +Electron-triton_collision_time_at_point_453______________________________ (t_plasma_electron_triton_collision_profile453)_ 3.46970609123076624e-04 +Electron-triton_collision_time_at_point_454______________________________ (t_plasma_electron_triton_collision_profile454)_ 3.44739363465202753e-04 +Electron-triton_collision_time_at_point_455______________________________ (t_plasma_electron_triton_collision_profile455)_ 3.42585768094240948e-04 +Electron-triton_collision_time_at_point_456______________________________ (t_plasma_electron_triton_collision_profile456)_ 3.40513385880701820e-04 +Electron-triton_collision_time_at_point_457______________________________ (t_plasma_electron_triton_collision_profile457)_ 3.38526165524064416e-04 +Electron-triton_collision_time_at_point_458______________________________ (t_plasma_electron_triton_collision_profile458)_ 3.36628515502592277e-04 +Electron-triton_collision_time_at_point_459______________________________ (t_plasma_electron_triton_collision_profile459)_ 3.34825399297378277e-04 +Electron-triton_collision_time_at_point_460______________________________ (t_plasma_electron_triton_collision_profile460)_ 3.33122460491219632e-04 +Electron-triton_collision_time_at_point_461______________________________ (t_plasma_electron_triton_collision_profile461)_ 3.31526191028738519e-04 +Electron-triton_collision_time_at_point_462______________________________ (t_plasma_electron_triton_collision_profile462)_ 3.30044163968354397e-04 +Electron-triton_collision_time_at_point_463______________________________ (t_plasma_electron_triton_collision_profile463)_ 3.28685366589596408e-04 +Electron-triton_collision_time_at_point_464______________________________ (t_plasma_electron_triton_collision_profile464)_ 3.27460697660769988e-04 +Electron-triton_collision_time_at_point_465______________________________ (t_plasma_electron_triton_collision_profile465)_ 3.26383750738627482e-04 +Electron-triton_collision_time_at_point_466______________________________ (t_plasma_electron_triton_collision_profile466)_ 3.25472138805639336e-04 +Electron-triton_collision_time_at_point_467______________________________ (t_plasma_electron_triton_collision_profile467)_ 3.24749966949460216e-04 +Electron-triton_collision_time_at_point_468______________________________ (t_plasma_electron_triton_collision_profile468)_ 3.24253189114318593e-04 +Electron-triton_collision_time_at_point_469______________________________ (t_plasma_electron_triton_collision_profile469)_ 3.24044659198329064e-04 +Electron-triton_collision_time_at_point_470______________________________ (t_plasma_electron_triton_collision_profile470)_ 3.24306173867357043e-04 +Electron-triton_collision_time_at_point_471______________________________ (t_plasma_electron_triton_collision_profile471)_ 3.13289090559529075e-04 +Electron-triton_collision_time_at_point_472______________________________ (t_plasma_electron_triton_collision_profile472)_ 3.02204571559400810e-04 +Electron-triton_collision_time_at_point_473______________________________ (t_plasma_electron_triton_collision_profile473)_ 2.91054165947776959e-04 +Electron-triton_collision_time_at_point_474______________________________ (t_plasma_electron_triton_collision_profile474)_ 2.79839761412232135e-04 +Electron-triton_collision_time_at_point_475______________________________ (t_plasma_electron_triton_collision_profile475)_ 2.68563633215864979e-04 +Electron-triton_collision_time_at_point_476______________________________ (t_plasma_electron_triton_collision_profile476)_ 2.57228500932208933e-04 +Electron-triton_collision_time_at_point_477______________________________ (t_plasma_electron_triton_collision_profile477)_ 2.45837594403808181e-04 +Electron-triton_collision_time_at_point_478______________________________ (t_plasma_electron_triton_collision_profile478)_ 2.34394730712403826e-04 +Electron-triton_collision_time_at_point_479______________________________ (t_plasma_electron_triton_collision_profile479)_ 2.22904404369949315e-04 +Electron-triton_collision_time_at_point_480______________________________ (t_plasma_electron_triton_collision_profile480)_ 2.11371893481904205e-04 +Electron-triton_collision_time_at_point_481______________________________ (t_plasma_electron_triton_collision_profile481)_ 1.99803385339506883e-04 +Electron-triton_collision_time_at_point_482______________________________ (t_plasma_electron_triton_collision_profile482)_ 1.88206125825666543e-04 +Electron-triton_collision_time_at_point_483______________________________ (t_plasma_electron_triton_collision_profile483)_ 1.76588598255638670e-04 +Electron-triton_collision_time_at_point_484______________________________ (t_plasma_electron_triton_collision_profile484)_ 1.64960738944736827e-04 +Electron-triton_collision_time_at_point_485______________________________ (t_plasma_electron_triton_collision_profile485)_ 1.53334199089322101e-04 +Electron-triton_collision_time_at_point_486______________________________ (t_plasma_electron_triton_collision_profile486)_ 1.41722665751939792e-04 +Electron-triton_collision_time_at_point_487______________________________ (t_plasma_electron_triton_collision_profile487)_ 1.30142259307054753e-04 +Electron-triton_collision_time_at_point_488______________________________ (t_plasma_electron_triton_collision_profile488)_ 1.18612031354327550e-04 +Electron-triton_collision_time_at_point_489______________________________ (t_plasma_electron_triton_collision_profile489)_ 1.07154597041644365e-04 +Electron-triton_collision_time_at_point_490______________________________ (t_plasma_electron_triton_collision_profile490)_ 9.57969510185442181e-05 +Electron-triton_collision_time_at_point_491______________________________ (t_plasma_electron_triton_collision_profile491)_ 8.45715405363597591e-05 +Electron-triton_collision_time_at_point_492______________________________ (t_plasma_electron_triton_collision_profile492)_ 7.35177093904261562e-05 +Electron-triton_collision_time_at_point_493______________________________ (t_plasma_electron_triton_collision_profile493)_ 6.26836960065486014e-05 +Electron-triton_collision_time_at_point_494______________________________ (t_plasma_electron_triton_collision_profile494)_ 5.21294965096231853e-05 +Electron-triton_collision_time_at_point_495______________________________ (t_plasma_electron_triton_collision_profile495)_ 4.19311539732820365e-05 +Electron-triton_collision_time_at_point_496______________________________ (t_plasma_electron_triton_collision_profile496)_ 3.21875713763457007e-05 +Electron-triton_collision_time_at_point_497______________________________ (t_plasma_electron_triton_collision_profile497)_ 2.30322346483043159e-05 +Electron-triton_collision_time_at_point_498______________________________ (t_plasma_electron_triton_collision_profile498)_ 1.46558674013288923e-05 +Electron-triton_collision_time_at_point_499______________________________ (t_plasma_electron_triton_collision_profile499)_ 7.35914735678059235e-06 +Electron-triton_collision_time_at_point_500______________________________ (t_plasma_electron_triton_collision_profile500)_ 1.72997144488295024e-06 +Volume_averaged_electron-alpha_thermal_collision_time_(τₑαₜₕ)_(s)________ (t_plasma_electron_alpha_thermal_collision_vol_avg)_ 9.76943140247254213e-04 OP +Electron-alpha_thermal_collision_time_at_point_0_________________________ (t_plasma_electron_alpha_thermal_collision_profile0)_ 2.14754693777854597e-03 +Electron-alpha_thermal_collision_time_at_point_1_________________________ (t_plasma_electron_alpha_thermal_collision_profile1)_ 2.14753462145144455e-03 +Electron-alpha_thermal_collision_time_at_point_2_________________________ (t_plasma_electron_alpha_thermal_collision_profile2)_ 2.14749767263188807e-03 +Electron-alpha_thermal_collision_time_at_point_3_________________________ (t_plasma_electron_alpha_thermal_collision_profile3)_ 2.14743609180512683e-03 +Electron-alpha_thermal_collision_time_at_point_4_________________________ (t_plasma_electron_alpha_thermal_collision_profile4)_ 2.14734987977993142e-03 +Electron-alpha_thermal_collision_time_at_point_5_________________________ (t_plasma_electron_alpha_thermal_collision_profile5)_ 2.14723903768862046e-03 +Electron-alpha_thermal_collision_time_at_point_6_________________________ (t_plasma_electron_alpha_thermal_collision_profile6)_ 2.14710356698710270e-03 +Electron-alpha_thermal_collision_time_at_point_7_________________________ (t_plasma_electron_alpha_thermal_collision_profile7)_ 2.14694346945493338e-03 +Electron-alpha_thermal_collision_time_at_point_8_________________________ (t_plasma_electron_alpha_thermal_collision_profile8)_ 2.14675874719536929e-03 +Electron-alpha_thermal_collision_time_at_point_9_________________________ (t_plasma_electron_alpha_thermal_collision_profile9)_ 2.14654940263545859e-03 +Electron-alpha_thermal_collision_time_at_point_10________________________ (t_plasma_electron_alpha_thermal_collision_profile10)_ 2.14631543852611927e-03 +Electron-alpha_thermal_collision_time_at_point_11________________________ (t_plasma_electron_alpha_thermal_collision_profile11)_ 2.14605685794224017e-03 +Electron-alpha_thermal_collision_time_at_point_12________________________ (t_plasma_electron_alpha_thermal_collision_profile12)_ 2.14577366428279816e-03 +Electron-alpha_thermal_collision_time_at_point_13________________________ (t_plasma_electron_alpha_thermal_collision_profile13)_ 2.14546586127097819e-03 +Electron-alpha_thermal_collision_time_at_point_14________________________ (t_plasma_electron_alpha_thermal_collision_profile14)_ 2.14513345295430820e-03 +Electron-alpha_thermal_collision_time_at_point_15________________________ (t_plasma_electron_alpha_thermal_collision_profile15)_ 2.14477644370480698e-03 +Electron-alpha_thermal_collision_time_at_point_16________________________ (t_plasma_electron_alpha_thermal_collision_profile16)_ 2.14439483821914339e-03 +Electron-alpha_thermal_collision_time_at_point_17________________________ (t_plasma_electron_alpha_thermal_collision_profile17)_ 2.14398864151881018e-03 +Electron-alpha_thermal_collision_time_at_point_18________________________ (t_plasma_electron_alpha_thermal_collision_profile18)_ 2.14355785895030361e-03 +Electron-alpha_thermal_collision_time_at_point_19________________________ (t_plasma_electron_alpha_thermal_collision_profile19)_ 2.14310249618531855e-03 +Electron-alpha_thermal_collision_time_at_point_20________________________ (t_plasma_electron_alpha_thermal_collision_profile20)_ 2.14262255922095281e-03 +Electron-alpha_thermal_collision_time_at_point_21________________________ (t_plasma_electron_alpha_thermal_collision_profile21)_ 2.14211805437993646e-03 +Electron-alpha_thermal_collision_time_at_point_22________________________ (t_plasma_electron_alpha_thermal_collision_profile22)_ 2.14158898831084618e-03 +Electron-alpha_thermal_collision_time_at_point_23________________________ (t_plasma_electron_alpha_thermal_collision_profile23)_ 2.14103536798836060e-03 +Electron-alpha_thermal_collision_time_at_point_24________________________ (t_plasma_electron_alpha_thermal_collision_profile24)_ 2.14045720071351061e-03 +Electron-alpha_thermal_collision_time_at_point_25________________________ (t_plasma_electron_alpha_thermal_collision_profile25)_ 2.13985449411394297e-03 +Electron-alpha_thermal_collision_time_at_point_26________________________ (t_plasma_electron_alpha_thermal_collision_profile26)_ 2.13922725614420139e-03 +Electron-alpha_thermal_collision_time_at_point_27________________________ (t_plasma_electron_alpha_thermal_collision_profile27)_ 2.13857549508601839e-03 +Electron-alpha_thermal_collision_time_at_point_28________________________ (t_plasma_electron_alpha_thermal_collision_profile28)_ 2.13789921954861623e-03 +Electron-alpha_thermal_collision_time_at_point_29________________________ (t_plasma_electron_alpha_thermal_collision_profile29)_ 2.13719843846902052e-03 +Electron-alpha_thermal_collision_time_at_point_30________________________ (t_plasma_electron_alpha_thermal_collision_profile30)_ 2.13647316111238543e-03 +Electron-alpha_thermal_collision_time_at_point_31________________________ (t_plasma_electron_alpha_thermal_collision_profile31)_ 2.13572339707233895e-03 +Electron-alpha_thermal_collision_time_at_point_32________________________ (t_plasma_electron_alpha_thermal_collision_profile32)_ 2.13494915627132674e-03 +Electron-alpha_thermal_collision_time_at_point_33________________________ (t_plasma_electron_alpha_thermal_collision_profile33)_ 2.13415044896098170e-03 +Electron-alpha_thermal_collision_time_at_point_34________________________ (t_plasma_electron_alpha_thermal_collision_profile34)_ 2.13332728572249077e-03 +Electron-alpha_thermal_collision_time_at_point_35________________________ (t_plasma_electron_alpha_thermal_collision_profile35)_ 2.13247967746699359e-03 +Electron-alpha_thermal_collision_time_at_point_36________________________ (t_plasma_electron_alpha_thermal_collision_profile36)_ 2.13160763543596967e-03 +Electron-alpha_thermal_collision_time_at_point_37________________________ (t_plasma_electron_alpha_thermal_collision_profile37)_ 2.13071117120166220e-03 +Electron-alpha_thermal_collision_time_at_point_38________________________ (t_plasma_electron_alpha_thermal_collision_profile38)_ 2.12979029666749645e-03 +Electron-alpha_thermal_collision_time_at_point_39________________________ (t_plasma_electron_alpha_thermal_collision_profile39)_ 2.12884502406851701e-03 +Electron-alpha_thermal_collision_time_at_point_40________________________ (t_plasma_electron_alpha_thermal_collision_profile40)_ 2.12787536597183703e-03 +Electron-alpha_thermal_collision_time_at_point_41________________________ (t_plasma_electron_alpha_thermal_collision_profile41)_ 2.12688133527710183e-03 +Electron-alpha_thermal_collision_time_at_point_42________________________ (t_plasma_electron_alpha_thermal_collision_profile42)_ 2.12586294521696292e-03 +Electron-alpha_thermal_collision_time_at_point_43________________________ (t_plasma_electron_alpha_thermal_collision_profile43)_ 2.12482020935755725e-03 +Electron-alpha_thermal_collision_time_at_point_44________________________ (t_plasma_electron_alpha_thermal_collision_profile44)_ 2.12375314159902323e-03 +Electron-alpha_thermal_collision_time_at_point_45________________________ (t_plasma_electron_alpha_thermal_collision_profile45)_ 2.12266175617599126e-03 +Electron-alpha_thermal_collision_time_at_point_46________________________ (t_plasma_electron_alpha_thermal_collision_profile46)_ 2.12154606765812583e-03 +Electron-alpha_thermal_collision_time_at_point_47________________________ (t_plasma_electron_alpha_thermal_collision_profile47)_ 2.12040609095065112e-03 +Electron-alpha_thermal_collision_time_at_point_48________________________ (t_plasma_electron_alpha_thermal_collision_profile48)_ 2.11924184129490961e-03 +Electron-alpha_thermal_collision_time_at_point_49________________________ (t_plasma_electron_alpha_thermal_collision_profile49)_ 2.11805333426891632e-03 +Electron-alpha_thermal_collision_time_at_point_50________________________ (t_plasma_electron_alpha_thermal_collision_profile50)_ 2.11684058578794033e-03 +Electron-alpha_thermal_collision_time_at_point_51________________________ (t_plasma_electron_alpha_thermal_collision_profile51)_ 2.11560361210508859e-03 +Electron-alpha_thermal_collision_time_at_point_52________________________ (t_plasma_electron_alpha_thermal_collision_profile52)_ 2.11434242981190955e-03 +Electron-alpha_thermal_collision_time_at_point_53________________________ (t_plasma_electron_alpha_thermal_collision_profile53)_ 2.11305705583901028e-03 +Electron-alpha_thermal_collision_time_at_point_54________________________ (t_plasma_electron_alpha_thermal_collision_profile54)_ 2.11174750745667453e-03 +Electron-alpha_thermal_collision_time_at_point_55________________________ (t_plasma_electron_alpha_thermal_collision_profile55)_ 2.11041380227551057e-03 +Electron-alpha_thermal_collision_time_at_point_56________________________ (t_plasma_electron_alpha_thermal_collision_profile56)_ 2.10905595824710307e-03 +Electron-alpha_thermal_collision_time_at_point_57________________________ (t_plasma_electron_alpha_thermal_collision_profile57)_ 2.10767399366467443e-03 +Electron-alpha_thermal_collision_time_at_point_58________________________ (t_plasma_electron_alpha_thermal_collision_profile58)_ 2.10626792716377131e-03 +Electron-alpha_thermal_collision_time_at_point_59________________________ (t_plasma_electron_alpha_thermal_collision_profile59)_ 2.10483777772295291e-03 +Electron-alpha_thermal_collision_time_at_point_60________________________ (t_plasma_electron_alpha_thermal_collision_profile60)_ 2.10338356466449649e-03 +Electron-alpha_thermal_collision_time_at_point_61________________________ (t_plasma_electron_alpha_thermal_collision_profile61)_ 2.10190530765511996e-03 +Electron-alpha_thermal_collision_time_at_point_62________________________ (t_plasma_electron_alpha_thermal_collision_profile62)_ 2.10040302670671175e-03 +Electron-alpha_thermal_collision_time_at_point_63________________________ (t_plasma_electron_alpha_thermal_collision_profile63)_ 2.09887674217707799e-03 +Electron-alpha_thermal_collision_time_at_point_64________________________ (t_plasma_electron_alpha_thermal_collision_profile64)_ 2.09732647477070414e-03 +Electron-alpha_thermal_collision_time_at_point_65________________________ (t_plasma_electron_alpha_thermal_collision_profile65)_ 2.09575224553952468e-03 +Electron-alpha_thermal_collision_time_at_point_66________________________ (t_plasma_electron_alpha_thermal_collision_profile66)_ 2.09415407588371336e-03 +Electron-alpha_thermal_collision_time_at_point_67________________________ (t_plasma_electron_alpha_thermal_collision_profile67)_ 2.09253198755248240e-03 +Electron-alpha_thermal_collision_time_at_point_68________________________ (t_plasma_electron_alpha_thermal_collision_profile68)_ 2.09088600264489615e-03 +Electron-alpha_thermal_collision_time_at_point_69________________________ (t_plasma_electron_alpha_thermal_collision_profile69)_ 2.08921614361070197e-03 +Electron-alpha_thermal_collision_time_at_point_70________________________ (t_plasma_electron_alpha_thermal_collision_profile70)_ 2.08752243325117199e-03 +Electron-alpha_thermal_collision_time_at_point_71________________________ (t_plasma_electron_alpha_thermal_collision_profile71)_ 2.08580489471995624e-03 +Electron-alpha_thermal_collision_time_at_point_72________________________ (t_plasma_electron_alpha_thermal_collision_profile72)_ 2.08406355152395773e-03 +Electron-alpha_thermal_collision_time_at_point_73________________________ (t_plasma_electron_alpha_thermal_collision_profile73)_ 2.08229842752421374e-03 +Electron-alpha_thermal_collision_time_at_point_74________________________ (t_plasma_electron_alpha_thermal_collision_profile74)_ 2.08050954693679482e-03 +Electron-alpha_thermal_collision_time_at_point_75________________________ (t_plasma_electron_alpha_thermal_collision_profile75)_ 2.07869693433371857e-03 +Electron-alpha_thermal_collision_time_at_point_76________________________ (t_plasma_electron_alpha_thermal_collision_profile76)_ 2.07686061464387771e-03 +Electron-alpha_thermal_collision_time_at_point_77________________________ (t_plasma_electron_alpha_thermal_collision_profile77)_ 2.07500061315397857e-03 +Electron-alpha_thermal_collision_time_at_point_78________________________ (t_plasma_electron_alpha_thermal_collision_profile78)_ 2.07311695550950210e-03 +Electron-alpha_thermal_collision_time_at_point_79________________________ (t_plasma_electron_alpha_thermal_collision_profile79)_ 2.07120966771566929e-03 +Electron-alpha_thermal_collision_time_at_point_80________________________ (t_plasma_electron_alpha_thermal_collision_profile80)_ 2.06927877613843209e-03 +Electron-alpha_thermal_collision_time_at_point_81________________________ (t_plasma_electron_alpha_thermal_collision_profile81)_ 2.06732430750546743e-03 +Electron-alpha_thermal_collision_time_at_point_82________________________ (t_plasma_electron_alpha_thermal_collision_profile82)_ 2.06534628890719940e-03 +Electron-alpha_thermal_collision_time_at_point_83________________________ (t_plasma_electron_alpha_thermal_collision_profile83)_ 2.06334474779782144e-03 +Electron-alpha_thermal_collision_time_at_point_84________________________ (t_plasma_electron_alpha_thermal_collision_profile84)_ 2.06131971199634842e-03 +Electron-alpha_thermal_collision_time_at_point_85________________________ (t_plasma_electron_alpha_thermal_collision_profile85)_ 2.05927120968767358e-03 +Electron-alpha_thermal_collision_time_at_point_86________________________ (t_plasma_electron_alpha_thermal_collision_profile86)_ 2.05719926942363922e-03 +Electron-alpha_thermal_collision_time_at_point_87________________________ (t_plasma_electron_alpha_thermal_collision_profile87)_ 2.05510392012413397e-03 +Electron-alpha_thermal_collision_time_at_point_88________________________ (t_plasma_electron_alpha_thermal_collision_profile88)_ 2.05298519107819559e-03 +Electron-alpha_thermal_collision_time_at_point_89________________________ (t_plasma_electron_alpha_thermal_collision_profile89)_ 2.05084311194513383e-03 +Electron-alpha_thermal_collision_time_at_point_90________________________ (t_plasma_electron_alpha_thermal_collision_profile90)_ 2.04867771275566270e-03 +Electron-alpha_thermal_collision_time_at_point_91________________________ (t_plasma_electron_alpha_thermal_collision_profile91)_ 2.04648902391305716e-03 +Electron-alpha_thermal_collision_time_at_point_92________________________ (t_plasma_electron_alpha_thermal_collision_profile92)_ 2.04427707619431838e-03 +Electron-alpha_thermal_collision_time_at_point_93________________________ (t_plasma_electron_alpha_thermal_collision_profile93)_ 2.04204190075135770e-03 +Electron-alpha_thermal_collision_time_at_point_94________________________ (t_plasma_electron_alpha_thermal_collision_profile94)_ 2.03978352911220054e-03 +Electron-alpha_thermal_collision_time_at_point_95________________________ (t_plasma_electron_alpha_thermal_collision_profile95)_ 2.03750199318219636e-03 +Electron-alpha_thermal_collision_time_at_point_96________________________ (t_plasma_electron_alpha_thermal_collision_profile96)_ 2.03519732524525335e-03 +Electron-alpha_thermal_collision_time_at_point_97________________________ (t_plasma_electron_alpha_thermal_collision_profile97)_ 2.03286955796508481e-03 +Electron-alpha_thermal_collision_time_at_point_98________________________ (t_plasma_electron_alpha_thermal_collision_profile98)_ 2.03051872438647814e-03 +Electron-alpha_thermal_collision_time_at_point_99________________________ (t_plasma_electron_alpha_thermal_collision_profile99)_ 2.02814485793656853e-03 +Electron-alpha_thermal_collision_time_at_point_100_______________________ (t_plasma_electron_alpha_thermal_collision_profile100)_ 2.02574799242614175e-03 +Electron-alpha_thermal_collision_time_at_point_101_______________________ (t_plasma_electron_alpha_thermal_collision_profile101)_ 2.02332816205094690e-03 +Electron-alpha_thermal_collision_time_at_point_102_______________________ (t_plasma_electron_alpha_thermal_collision_profile102)_ 2.02088540139302216e-03 +Electron-alpha_thermal_collision_time_at_point_103_______________________ (t_plasma_electron_alpha_thermal_collision_profile103)_ 2.01841974542205354e-03 +Electron-alpha_thermal_collision_time_at_point_104_______________________ (t_plasma_electron_alpha_thermal_collision_profile104)_ 2.01593122949672750e-03 +Electron-alpha_thermal_collision_time_at_point_105_______________________ (t_plasma_electron_alpha_thermal_collision_profile105)_ 2.01341988936612004e-03 +Electron-alpha_thermal_collision_time_at_point_106_______________________ (t_plasma_electron_alpha_thermal_collision_profile106)_ 2.01088576117109102e-03 +Electron-alpha_thermal_collision_time_at_point_107_______________________ (t_plasma_electron_alpha_thermal_collision_profile107)_ 2.00832888144570438e-03 +Electron-alpha_thermal_collision_time_at_point_108_______________________ (t_plasma_electron_alpha_thermal_collision_profile108)_ 2.00574928711866069e-03 +Electron-alpha_thermal_collision_time_at_point_109_______________________ (t_plasma_electron_alpha_thermal_collision_profile109)_ 2.00314701551474470e-03 +Electron-alpha_thermal_collision_time_at_point_110_______________________ (t_plasma_electron_alpha_thermal_collision_profile110)_ 2.00052210435629988e-03 +Electron-alpha_thermal_collision_time_at_point_111_______________________ (t_plasma_electron_alpha_thermal_collision_profile111)_ 1.99787459176471076e-03 +Electron-alpha_thermal_collision_time_at_point_112_______________________ (t_plasma_electron_alpha_thermal_collision_profile112)_ 1.99520451626191081e-03 +Electron-alpha_thermal_collision_time_at_point_113_______________________ (t_plasma_electron_alpha_thermal_collision_profile113)_ 1.99251191677190425e-03 +Electron-alpha_thermal_collision_time_at_point_114_______________________ (t_plasma_electron_alpha_thermal_collision_profile114)_ 1.98979683262230297e-03 +Electron-alpha_thermal_collision_time_at_point_115_______________________ (t_plasma_electron_alpha_thermal_collision_profile115)_ 1.98705930354589567e-03 +Electron-alpha_thermal_collision_time_at_point_116_______________________ (t_plasma_electron_alpha_thermal_collision_profile116)_ 1.98429936968221293e-03 +Electron-alpha_thermal_collision_time_at_point_117_______________________ (t_plasma_electron_alpha_thermal_collision_profile117)_ 1.98151707157913576e-03 +Electron-alpha_thermal_collision_time_at_point_118_______________________ (t_plasma_electron_alpha_thermal_collision_profile118)_ 1.97871245019450286e-03 +Electron-alpha_thermal_collision_time_at_point_119_______________________ (t_plasma_electron_alpha_thermal_collision_profile119)_ 1.97588554689774641e-03 +Electron-alpha_thermal_collision_time_at_point_120_______________________ (t_plasma_electron_alpha_thermal_collision_profile120)_ 1.97303640347155093e-03 +Electron-alpha_thermal_collision_time_at_point_121_______________________ (t_plasma_electron_alpha_thermal_collision_profile121)_ 1.97016506211351514e-03 +Electron-alpha_thermal_collision_time_at_point_122_______________________ (t_plasma_electron_alpha_thermal_collision_profile122)_ 1.96727156543785326e-03 +Electron-alpha_thermal_collision_time_at_point_123_______________________ (t_plasma_electron_alpha_thermal_collision_profile123)_ 1.96435595647710204e-03 +Electron-alpha_thermal_collision_time_at_point_124_______________________ (t_plasma_electron_alpha_thermal_collision_profile124)_ 1.96141827868384980e-03 +Electron-alpha_thermal_collision_time_at_point_125_______________________ (t_plasma_electron_alpha_thermal_collision_profile125)_ 1.95845857593249370e-03 +Electron-alpha_thermal_collision_time_at_point_126_______________________ (t_plasma_electron_alpha_thermal_collision_profile126)_ 1.95547689252100008e-03 +Electron-alpha_thermal_collision_time_at_point_127_______________________ (t_plasma_electron_alpha_thermal_collision_profile127)_ 1.95247327317270704e-03 +Electron-alpha_thermal_collision_time_at_point_128_______________________ (t_plasma_electron_alpha_thermal_collision_profile128)_ 1.94944776303812572e-03 +Electron-alpha_thermal_collision_time_at_point_129_______________________ (t_plasma_electron_alpha_thermal_collision_profile129)_ 1.94640040769677634e-03 +Electron-alpha_thermal_collision_time_at_point_130_______________________ (t_plasma_electron_alpha_thermal_collision_profile130)_ 1.94333125315903949e-03 +Electron-alpha_thermal_collision_time_at_point_131_______________________ (t_plasma_electron_alpha_thermal_collision_profile131)_ 1.94024034586802864e-03 +Electron-alpha_thermal_collision_time_at_point_132_______________________ (t_plasma_electron_alpha_thermal_collision_profile132)_ 1.93712773270148398e-03 +Electron-alpha_thermal_collision_time_at_point_133_______________________ (t_plasma_electron_alpha_thermal_collision_profile133)_ 1.93399346097368604e-03 +Electron-alpha_thermal_collision_time_at_point_134_______________________ (t_plasma_electron_alpha_thermal_collision_profile134)_ 1.93083757843739360e-03 +Electron-alpha_thermal_collision_time_at_point_135_______________________ (t_plasma_electron_alpha_thermal_collision_profile135)_ 1.92766013328579959e-03 +Electron-alpha_thermal_collision_time_at_point_136_______________________ (t_plasma_electron_alpha_thermal_collision_profile136)_ 1.92446117415451170e-03 +Electron-alpha_thermal_collision_time_at_point_137_______________________ (t_plasma_electron_alpha_thermal_collision_profile137)_ 1.92124075012355187e-03 +Electron-alpha_thermal_collision_time_at_point_138_______________________ (t_plasma_electron_alpha_thermal_collision_profile138)_ 1.91799891071937835e-03 +Electron-alpha_thermal_collision_time_at_point_139_______________________ (t_plasma_electron_alpha_thermal_collision_profile139)_ 1.91473570591693481e-03 +Electron-alpha_thermal_collision_time_at_point_140_______________________ (t_plasma_electron_alpha_thermal_collision_profile140)_ 1.91145118614171336e-03 +Electron-alpha_thermal_collision_time_at_point_141_______________________ (t_plasma_electron_alpha_thermal_collision_profile141)_ 1.90814540227184515e-03 +Electron-alpha_thermal_collision_time_at_point_142_______________________ (t_plasma_electron_alpha_thermal_collision_profile142)_ 1.90481840564021582e-03 +Electron-alpha_thermal_collision_time_at_point_143_______________________ (t_plasma_electron_alpha_thermal_collision_profile143)_ 1.90147024803659923e-03 +Electron-alpha_thermal_collision_time_at_point_144_______________________ (t_plasma_electron_alpha_thermal_collision_profile144)_ 1.89810098170981501e-03 +Electron-alpha_thermal_collision_time_at_point_145_______________________ (t_plasma_electron_alpha_thermal_collision_profile145)_ 1.89471065936991237e-03 +Electron-alpha_thermal_collision_time_at_point_146_______________________ (t_plasma_electron_alpha_thermal_collision_profile146)_ 1.89129933419037756e-03 +Electron-alpha_thermal_collision_time_at_point_147_______________________ (t_plasma_electron_alpha_thermal_collision_profile147)_ 1.88786705981035794e-03 +Electron-alpha_thermal_collision_time_at_point_148_______________________ (t_plasma_electron_alpha_thermal_collision_profile148)_ 1.88441389033691784e-03 +Electron-alpha_thermal_collision_time_at_point_149_______________________ (t_plasma_electron_alpha_thermal_collision_profile149)_ 1.88093988034732096e-03 +Electron-alpha_thermal_collision_time_at_point_150_______________________ (t_plasma_electron_alpha_thermal_collision_profile150)_ 1.87744508489132373e-03 +Electron-alpha_thermal_collision_time_at_point_151_______________________ (t_plasma_electron_alpha_thermal_collision_profile151)_ 1.87392955949350760e-03 +Electron-alpha_thermal_collision_time_at_point_152_______________________ (t_plasma_electron_alpha_thermal_collision_profile152)_ 1.87039336015562660e-03 +Electron-alpha_thermal_collision_time_at_point_153_______________________ (t_plasma_electron_alpha_thermal_collision_profile153)_ 1.86683654335898907e-03 +Electron-alpha_thermal_collision_time_at_point_154_______________________ (t_plasma_electron_alpha_thermal_collision_profile154)_ 1.86325916606685268e-03 +Electron-alpha_thermal_collision_time_at_point_155_______________________ (t_plasma_electron_alpha_thermal_collision_profile155)_ 1.85966128572685480e-03 +Electron-alpha_thermal_collision_time_at_point_156_______________________ (t_plasma_electron_alpha_thermal_collision_profile156)_ 1.85604296027346732e-03 +Electron-alpha_thermal_collision_time_at_point_157_______________________ (t_plasma_electron_alpha_thermal_collision_profile157)_ 1.85240424813047232e-03 +Electron-alpha_thermal_collision_time_at_point_158_______________________ (t_plasma_electron_alpha_thermal_collision_profile158)_ 1.84874520821346486e-03 +Electron-alpha_thermal_collision_time_at_point_159_______________________ (t_plasma_electron_alpha_thermal_collision_profile159)_ 1.84506589993239066e-03 +Electron-alpha_thermal_collision_time_at_point_160_______________________ (t_plasma_electron_alpha_thermal_collision_profile160)_ 1.84136638319410263e-03 +Electron-alpha_thermal_collision_time_at_point_161_______________________ (t_plasma_electron_alpha_thermal_collision_profile161)_ 1.83764671840493782e-03 +Electron-alpha_thermal_collision_time_at_point_162_______________________ (t_plasma_electron_alpha_thermal_collision_profile162)_ 1.83390696647334271e-03 +Electron-alpha_thermal_collision_time_at_point_163_______________________ (t_plasma_electron_alpha_thermal_collision_profile163)_ 1.83014718881250194e-03 +Electron-alpha_thermal_collision_time_at_point_164_______________________ (t_plasma_electron_alpha_thermal_collision_profile164)_ 1.82636744734301264e-03 +Electron-alpha_thermal_collision_time_at_point_165_______________________ (t_plasma_electron_alpha_thermal_collision_profile165)_ 1.82256780449557496e-03 +Electron-alpha_thermal_collision_time_at_point_166_______________________ (t_plasma_electron_alpha_thermal_collision_profile166)_ 1.81874832321372100e-03 +Electron-alpha_thermal_collision_time_at_point_167_______________________ (t_plasma_electron_alpha_thermal_collision_profile167)_ 1.81490906695656049e-03 +Electron-alpha_thermal_collision_time_at_point_168_______________________ (t_plasma_electron_alpha_thermal_collision_profile168)_ 1.81105009970156734e-03 +Electron-alpha_thermal_collision_time_at_point_169_______________________ (t_plasma_electron_alpha_thermal_collision_profile169)_ 1.80717148594738627e-03 +Electron-alpha_thermal_collision_time_at_point_170_______________________ (t_plasma_electron_alpha_thermal_collision_profile170)_ 1.80327329071667359e-03 +Electron-alpha_thermal_collision_time_at_point_171_______________________ (t_plasma_electron_alpha_thermal_collision_profile171)_ 1.79935557955896515e-03 +Electron-alpha_thermal_collision_time_at_point_172_______________________ (t_plasma_electron_alpha_thermal_collision_profile172)_ 1.79541841855357831e-03 +Electron-alpha_thermal_collision_time_at_point_173_______________________ (t_plasma_electron_alpha_thermal_collision_profile173)_ 1.79146187431253475e-03 +Electron-alpha_thermal_collision_time_at_point_174_______________________ (t_plasma_electron_alpha_thermal_collision_profile174)_ 1.78748601398352530e-03 +Electron-alpha_thermal_collision_time_at_point_175_______________________ (t_plasma_electron_alpha_thermal_collision_profile175)_ 1.78349090525290171e-03 +Electron-alpha_thermal_collision_time_at_point_176_______________________ (t_plasma_electron_alpha_thermal_collision_profile176)_ 1.77947661634869202e-03 +Electron-alpha_thermal_collision_time_at_point_177_______________________ (t_plasma_electron_alpha_thermal_collision_profile177)_ 1.77544321604365847e-03 +Electron-alpha_thermal_collision_time_at_point_178_______________________ (t_plasma_electron_alpha_thermal_collision_profile178)_ 1.77139077365838049e-03 +Electron-alpha_thermal_collision_time_at_point_179_______________________ (t_plasma_electron_alpha_thermal_collision_profile179)_ 1.76731935906437290e-03 +Electron-alpha_thermal_collision_time_at_point_180_______________________ (t_plasma_electron_alpha_thermal_collision_profile180)_ 1.76322904268723206e-03 +Electron-alpha_thermal_collision_time_at_point_181_______________________ (t_plasma_electron_alpha_thermal_collision_profile181)_ 1.75911989550982099e-03 +Electron-alpha_thermal_collision_time_at_point_182_______________________ (t_plasma_electron_alpha_thermal_collision_profile182)_ 1.75499198907548407e-03 +Electron-alpha_thermal_collision_time_at_point_183_______________________ (t_plasma_electron_alpha_thermal_collision_profile183)_ 1.75084539549129337e-03 +Electron-alpha_thermal_collision_time_at_point_184_______________________ (t_plasma_electron_alpha_thermal_collision_profile184)_ 1.74668018743133219e-03 +Electron-alpha_thermal_collision_time_at_point_185_______________________ (t_plasma_electron_alpha_thermal_collision_profile185)_ 1.74249643814001153e-03 +Electron-alpha_thermal_collision_time_at_point_186_______________________ (t_plasma_electron_alpha_thermal_collision_profile186)_ 1.73829422143542125e-03 +Electron-alpha_thermal_collision_time_at_point_187_______________________ (t_plasma_electron_alpha_thermal_collision_profile187)_ 1.73407361171271307e-03 +Electron-alpha_thermal_collision_time_at_point_188_______________________ (t_plasma_electron_alpha_thermal_collision_profile188)_ 1.72983468394752511e-03 +Electron-alpha_thermal_collision_time_at_point_189_______________________ (t_plasma_electron_alpha_thermal_collision_profile189)_ 1.72557751369943396e-03 +Electron-alpha_thermal_collision_time_at_point_190_______________________ (t_plasma_electron_alpha_thermal_collision_profile190)_ 1.72130217711545215e-03 +Electron-alpha_thermal_collision_time_at_point_191_______________________ (t_plasma_electron_alpha_thermal_collision_profile191)_ 1.71700875093354919e-03 +Electron-alpha_thermal_collision_time_at_point_192_______________________ (t_plasma_electron_alpha_thermal_collision_profile192)_ 1.71269731248622462e-03 +Electron-alpha_thermal_collision_time_at_point_193_______________________ (t_plasma_electron_alpha_thermal_collision_profile193)_ 1.70836793970410589e-03 +Electron-alpha_thermal_collision_time_at_point_194_______________________ (t_plasma_electron_alpha_thermal_collision_profile194)_ 1.70402071111958758e-03 +Electron-alpha_thermal_collision_time_at_point_195_______________________ (t_plasma_electron_alpha_thermal_collision_profile195)_ 1.69965570587051200e-03 +Electron-alpha_thermal_collision_time_at_point_196_______________________ (t_plasma_electron_alpha_thermal_collision_profile196)_ 1.69527300370388373e-03 +Electron-alpha_thermal_collision_time_at_point_197_______________________ (t_plasma_electron_alpha_thermal_collision_profile197)_ 1.69087268497962267e-03 +Electron-alpha_thermal_collision_time_at_point_198_______________________ (t_plasma_electron_alpha_thermal_collision_profile198)_ 1.68645483067436089e-03 +Electron-alpha_thermal_collision_time_at_point_199_______________________ (t_plasma_electron_alpha_thermal_collision_profile199)_ 1.68201952238527228e-03 +Electron-alpha_thermal_collision_time_at_point_200_______________________ (t_plasma_electron_alpha_thermal_collision_profile200)_ 1.67756684233395250e-03 +Electron-alpha_thermal_collision_time_at_point_201_______________________ (t_plasma_electron_alpha_thermal_collision_profile201)_ 1.67309687337032333e-03 +Electron-alpha_thermal_collision_time_at_point_202_______________________ (t_plasma_electron_alpha_thermal_collision_profile202)_ 1.66860969897659767e-03 +Electron-alpha_thermal_collision_time_at_point_203_______________________ (t_plasma_electron_alpha_thermal_collision_profile203)_ 1.66410540327126591e-03 +Electron-alpha_thermal_collision_time_at_point_204_______________________ (t_plasma_electron_alpha_thermal_collision_profile204)_ 1.65958407101314282e-03 +Electron-alpha_thermal_collision_time_at_point_205_______________________ (t_plasma_electron_alpha_thermal_collision_profile205)_ 1.65504578760544089e-03 +Electron-alpha_thermal_collision_time_at_point_206_______________________ (t_plasma_electron_alpha_thermal_collision_profile206)_ 1.65049063909989855e-03 +Electron-alpha_thermal_collision_time_at_point_207_______________________ (t_plasma_electron_alpha_thermal_collision_profile207)_ 1.64591871220094287e-03 +Electron-alpha_thermal_collision_time_at_point_208_______________________ (t_plasma_electron_alpha_thermal_collision_profile208)_ 1.64133009426990252e-03 +Electron-alpha_thermal_collision_time_at_point_209_______________________ (t_plasma_electron_alpha_thermal_collision_profile209)_ 1.63672487332925895e-03 +Electron-alpha_thermal_collision_time_at_point_210_______________________ (t_plasma_electron_alpha_thermal_collision_profile210)_ 1.63210313806695195e-03 +Electron-alpha_thermal_collision_time_at_point_211_______________________ (t_plasma_electron_alpha_thermal_collision_profile211)_ 1.62746497784071304e-03 +Electron-alpha_thermal_collision_time_at_point_212_______________________ (t_plasma_electron_alpha_thermal_collision_profile212)_ 1.62281048268246944e-03 +Electron-alpha_thermal_collision_time_at_point_213_______________________ (t_plasma_electron_alpha_thermal_collision_profile213)_ 1.61813974330277002e-03 +Electron-alpha_thermal_collision_time_at_point_214_______________________ (t_plasma_electron_alpha_thermal_collision_profile214)_ 1.61345285109527588e-03 +Electron-alpha_thermal_collision_time_at_point_215_______________________ (t_plasma_electron_alpha_thermal_collision_profile215)_ 1.60874989814128663e-03 +Electron-alpha_thermal_collision_time_at_point_216_______________________ (t_plasma_electron_alpha_thermal_collision_profile216)_ 1.60403097721432400e-03 +Electron-alpha_thermal_collision_time_at_point_217_______________________ (t_plasma_electron_alpha_thermal_collision_profile217)_ 1.59929618178475635e-03 +Electron-alpha_thermal_collision_time_at_point_218_______________________ (t_plasma_electron_alpha_thermal_collision_profile218)_ 1.59454560602447859e-03 +Electron-alpha_thermal_collision_time_at_point_219_______________________ (t_plasma_electron_alpha_thermal_collision_profile219)_ 1.58977934481163621e-03 +Electron-alpha_thermal_collision_time_at_point_220_______________________ (t_plasma_electron_alpha_thermal_collision_profile220)_ 1.58499749373540574e-03 +Electron-alpha_thermal_collision_time_at_point_221_______________________ (t_plasma_electron_alpha_thermal_collision_profile221)_ 1.58020014910082232e-03 +Electron-alpha_thermal_collision_time_at_point_222_______________________ (t_plasma_electron_alpha_thermal_collision_profile222)_ 1.57538740793365748e-03 +Electron-alpha_thermal_collision_time_at_point_223_______________________ (t_plasma_electron_alpha_thermal_collision_profile223)_ 1.57055936798535618e-03 +Electron-alpha_thermal_collision_time_at_point_224_______________________ (t_plasma_electron_alpha_thermal_collision_profile224)_ 1.56571612773801676e-03 +Electron-alpha_thermal_collision_time_at_point_225_______________________ (t_plasma_electron_alpha_thermal_collision_profile225)_ 1.56085778640943596e-03 +Electron-alpha_thermal_collision_time_at_point_226_______________________ (t_plasma_electron_alpha_thermal_collision_profile226)_ 1.55598444395819665e-03 +Electron-alpha_thermal_collision_time_at_point_227_______________________ (t_plasma_electron_alpha_thermal_collision_profile227)_ 1.55109620108882036e-03 +Electron-alpha_thermal_collision_time_at_point_228_______________________ (t_plasma_electron_alpha_thermal_collision_profile228)_ 1.54619315925696955e-03 +Electron-alpha_thermal_collision_time_at_point_229_______________________ (t_plasma_electron_alpha_thermal_collision_profile229)_ 1.54127542067470790e-03 +Electron-alpha_thermal_collision_time_at_point_230_______________________ (t_plasma_electron_alpha_thermal_collision_profile230)_ 1.53634308831581963e-03 +Electron-alpha_thermal_collision_time_at_point_231_______________________ (t_plasma_electron_alpha_thermal_collision_profile231)_ 1.53139626592118240e-03 +Electron-alpha_thermal_collision_time_at_point_232_______________________ (t_plasma_electron_alpha_thermal_collision_profile232)_ 1.52643505800420542e-03 +Electron-alpha_thermal_collision_time_at_point_233_______________________ (t_plasma_electron_alpha_thermal_collision_profile233)_ 1.52145956985631704e-03 +Electron-alpha_thermal_collision_time_at_point_234_______________________ (t_plasma_electron_alpha_thermal_collision_profile234)_ 1.51646990755252564e-03 +Electron-alpha_thermal_collision_time_at_point_235_______________________ (t_plasma_electron_alpha_thermal_collision_profile235)_ 1.51146617795702796e-03 +Electron-alpha_thermal_collision_time_at_point_236_______________________ (t_plasma_electron_alpha_thermal_collision_profile236)_ 1.50644848872889120e-03 +Electron-alpha_thermal_collision_time_at_point_237_______________________ (t_plasma_electron_alpha_thermal_collision_profile237)_ 1.50141694832778652e-03 +Electron-alpha_thermal_collision_time_at_point_238_______________________ (t_plasma_electron_alpha_thermal_collision_profile238)_ 1.49637166601979837e-03 +Electron-alpha_thermal_collision_time_at_point_239_______________________ (t_plasma_electron_alpha_thermal_collision_profile239)_ 1.49131275188328313e-03 +Electron-alpha_thermal_collision_time_at_point_240_______________________ (t_plasma_electron_alpha_thermal_collision_profile240)_ 1.48624031681481136e-03 +Electron-alpha_thermal_collision_time_at_point_241_______________________ (t_plasma_electron_alpha_thermal_collision_profile241)_ 1.48115447253515677e-03 +Electron-alpha_thermal_collision_time_at_point_242_______________________ (t_plasma_electron_alpha_thermal_collision_profile242)_ 1.47605533159536769e-03 +Electron-alpha_thermal_collision_time_at_point_243_______________________ (t_plasma_electron_alpha_thermal_collision_profile243)_ 1.47094300738289806e-03 +Electron-alpha_thermal_collision_time_at_point_244_______________________ (t_plasma_electron_alpha_thermal_collision_profile244)_ 1.46581761412781166e-03 +Electron-alpha_thermal_collision_time_at_point_245_______________________ (t_plasma_electron_alpha_thermal_collision_profile245)_ 1.46067926690905073e-03 +Electron-alpha_thermal_collision_time_at_point_246_______________________ (t_plasma_electron_alpha_thermal_collision_profile246)_ 1.45552808166078467e-03 +Electron-alpha_thermal_collision_time_at_point_247_______________________ (t_plasma_electron_alpha_thermal_collision_profile247)_ 1.45036417517881828e-03 +Electron-alpha_thermal_collision_time_at_point_248_______________________ (t_plasma_electron_alpha_thermal_collision_profile248)_ 1.44518766512708569e-03 +Electron-alpha_thermal_collision_time_at_point_249_______________________ (t_plasma_electron_alpha_thermal_collision_profile249)_ 1.43999867004421158e-03 +Electron-alpha_thermal_collision_time_at_point_250_______________________ (t_plasma_electron_alpha_thermal_collision_profile250)_ 1.43479730935014513e-03 +Electron-alpha_thermal_collision_time_at_point_251_______________________ (t_plasma_electron_alpha_thermal_collision_profile251)_ 1.42958370335287801e-03 +Electron-alpha_thermal_collision_time_at_point_252_______________________ (t_plasma_electron_alpha_thermal_collision_profile252)_ 1.42435797325523141e-03 +Electron-alpha_thermal_collision_time_at_point_253_______________________ (t_plasma_electron_alpha_thermal_collision_profile253)_ 1.41912024116172910e-03 +Electron-alpha_thermal_collision_time_at_point_254_______________________ (t_plasma_electron_alpha_thermal_collision_profile254)_ 1.41387063008554061e-03 +Electron-alpha_thermal_collision_time_at_point_255_______________________ (t_plasma_electron_alpha_thermal_collision_profile255)_ 1.40860926395552184e-03 +Electron-alpha_thermal_collision_time_at_point_256_______________________ (t_plasma_electron_alpha_thermal_collision_profile256)_ 1.40333626762331677e-03 +Electron-alpha_thermal_collision_time_at_point_257_______________________ (t_plasma_electron_alpha_thermal_collision_profile257)_ 1.39805176687055792e-03 +Electron-alpha_thermal_collision_time_at_point_258_______________________ (t_plasma_electron_alpha_thermal_collision_profile258)_ 1.39275588841614823e-03 +Electron-alpha_thermal_collision_time_at_point_259_______________________ (t_plasma_electron_alpha_thermal_collision_profile259)_ 1.38744875992362522e-03 +Electron-alpha_thermal_collision_time_at_point_260_______________________ (t_plasma_electron_alpha_thermal_collision_profile260)_ 1.38213051000861723e-03 +Electron-alpha_thermal_collision_time_at_point_261_______________________ (t_plasma_electron_alpha_thermal_collision_profile261)_ 1.37680126824638429e-03 +Electron-alpha_thermal_collision_time_at_point_262_______________________ (t_plasma_electron_alpha_thermal_collision_profile262)_ 1.37146116517945218e-03 +Electron-alpha_thermal_collision_time_at_point_263_______________________ (t_plasma_electron_alpha_thermal_collision_profile263)_ 1.36611033232533785e-03 +Electron-alpha_thermal_collision_time_at_point_264_______________________ (t_plasma_electron_alpha_thermal_collision_profile264)_ 1.36074890218437121e-03 +Electron-alpha_thermal_collision_time_at_point_265_______________________ (t_plasma_electron_alpha_thermal_collision_profile265)_ 1.35537700824760036e-03 +Electron-alpha_thermal_collision_time_at_point_266_______________________ (t_plasma_electron_alpha_thermal_collision_profile266)_ 1.34999478500480810e-03 +Electron-alpha_thermal_collision_time_at_point_267_______________________ (t_plasma_electron_alpha_thermal_collision_profile267)_ 1.34460236795261724e-03 +Electron-alpha_thermal_collision_time_at_point_268_______________________ (t_plasma_electron_alpha_thermal_collision_profile268)_ 1.33919989360270107e-03 +Electron-alpha_thermal_collision_time_at_point_269_______________________ (t_plasma_electron_alpha_thermal_collision_profile269)_ 1.33378749949008332e-03 +Electron-alpha_thermal_collision_time_at_point_270_______________________ (t_plasma_electron_alpha_thermal_collision_profile270)_ 1.32836532418156199e-03 +Electron-alpha_thermal_collision_time_at_point_271_______________________ (t_plasma_electron_alpha_thermal_collision_profile271)_ 1.32293350728421560e-03 +Electron-alpha_thermal_collision_time_at_point_272_______________________ (t_plasma_electron_alpha_thermal_collision_profile272)_ 1.31749218945403554e-03 +Electron-alpha_thermal_collision_time_at_point_273_______________________ (t_plasma_electron_alpha_thermal_collision_profile273)_ 1.31204151240465138e-03 +Electron-alpha_thermal_collision_time_at_point_274_______________________ (t_plasma_electron_alpha_thermal_collision_profile274)_ 1.30658161891618286e-03 +Electron-alpha_thermal_collision_time_at_point_275_______________________ (t_plasma_electron_alpha_thermal_collision_profile275)_ 1.30111265284418333e-03 +Electron-alpha_thermal_collision_time_at_point_276_______________________ (t_plasma_electron_alpha_thermal_collision_profile276)_ 1.29563475912872271e-03 +Electron-alpha_thermal_collision_time_at_point_277_______________________ (t_plasma_electron_alpha_thermal_collision_profile277)_ 1.29014808380356616e-03 +Electron-alpha_thermal_collision_time_at_point_278_______________________ (t_plasma_electron_alpha_thermal_collision_profile278)_ 1.28465277400548628e-03 +Electron-alpha_thermal_collision_time_at_point_279_______________________ (t_plasma_electron_alpha_thermal_collision_profile279)_ 1.27914897798368766e-03 +Electron-alpha_thermal_collision_time_at_point_280_______________________ (t_plasma_electron_alpha_thermal_collision_profile280)_ 1.27363684510935953e-03 +Electron-alpha_thermal_collision_time_at_point_281_______________________ (t_plasma_electron_alpha_thermal_collision_profile281)_ 1.26811652588535253e-03 +Electron-alpha_thermal_collision_time_at_point_282_______________________ (t_plasma_electron_alpha_thermal_collision_profile282)_ 1.26258817195598486e-03 +Electron-alpha_thermal_collision_time_at_point_283_______________________ (t_plasma_electron_alpha_thermal_collision_profile283)_ 1.25705193611697942e-03 +Electron-alpha_thermal_collision_time_at_point_284_______________________ (t_plasma_electron_alpha_thermal_collision_profile284)_ 1.25150797232553151e-03 +Electron-alpha_thermal_collision_time_at_point_285_______________________ (t_plasma_electron_alpha_thermal_collision_profile285)_ 1.24595643571052224e-03 +Electron-alpha_thermal_collision_time_at_point_286_______________________ (t_plasma_electron_alpha_thermal_collision_profile286)_ 1.24039748258285439e-03 +Electron-alpha_thermal_collision_time_at_point_287_______________________ (t_plasma_electron_alpha_thermal_collision_profile287)_ 1.23483127044594844e-03 +Electron-alpha_thermal_collision_time_at_point_288_______________________ (t_plasma_electron_alpha_thermal_collision_profile288)_ 1.22925795800636812e-03 +Electron-alpha_thermal_collision_time_at_point_289_______________________ (t_plasma_electron_alpha_thermal_collision_profile289)_ 1.22367770518460629e-03 +Electron-alpha_thermal_collision_time_at_point_290_______________________ (t_plasma_electron_alpha_thermal_collision_profile290)_ 1.21809067312600829e-03 +Electron-alpha_thermal_collision_time_at_point_291_______________________ (t_plasma_electron_alpha_thermal_collision_profile291)_ 1.21249702421186612e-03 +Electron-alpha_thermal_collision_time_at_point_292_______________________ (t_plasma_electron_alpha_thermal_collision_profile292)_ 1.20689692207065166e-03 +Electron-alpha_thermal_collision_time_at_point_293_______________________ (t_plasma_electron_alpha_thermal_collision_profile293)_ 1.20129053158942681e-03 +Electron-alpha_thermal_collision_time_at_point_294_______________________ (t_plasma_electron_alpha_thermal_collision_profile294)_ 1.19567801892540696e-03 +Electron-alpha_thermal_collision_time_at_point_295_______________________ (t_plasma_electron_alpha_thermal_collision_profile295)_ 1.19005955151769917e-03 +Electron-alpha_thermal_collision_time_at_point_296_______________________ (t_plasma_electron_alpha_thermal_collision_profile296)_ 1.18443529809920782e-03 +Electron-alpha_thermal_collision_time_at_point_297_______________________ (t_plasma_electron_alpha_thermal_collision_profile297)_ 1.17880542870872260e-03 +Electron-alpha_thermal_collision_time_at_point_298_______________________ (t_plasma_electron_alpha_thermal_collision_profile298)_ 1.17317011470317411e-03 +Electron-alpha_thermal_collision_time_at_point_299_______________________ (t_plasma_electron_alpha_thermal_collision_profile299)_ 1.16752952877008961e-03 +Electron-alpha_thermal_collision_time_at_point_300_______________________ (t_plasma_electron_alpha_thermal_collision_profile300)_ 1.16188384494022353e-03 +Electron-alpha_thermal_collision_time_at_point_301_______________________ (t_plasma_electron_alpha_thermal_collision_profile301)_ 1.15623323860039010e-03 +Electron-alpha_thermal_collision_time_at_point_302_______________________ (t_plasma_electron_alpha_thermal_collision_profile302)_ 1.15057788650648417e-03 +Electron-alpha_thermal_collision_time_at_point_303_______________________ (t_plasma_electron_alpha_thermal_collision_profile303)_ 1.14491796679671654e-03 +Electron-alpha_thermal_collision_time_at_point_304_______________________ (t_plasma_electron_alpha_thermal_collision_profile304)_ 1.13925365900504651e-03 +Electron-alpha_thermal_collision_time_at_point_305_______________________ (t_plasma_electron_alpha_thermal_collision_profile305)_ 1.13358514407483030e-03 +Electron-alpha_thermal_collision_time_at_point_306_______________________ (t_plasma_electron_alpha_thermal_collision_profile306)_ 1.12791260437268906e-03 +Electron-alpha_thermal_collision_time_at_point_307_______________________ (t_plasma_electron_alpha_thermal_collision_profile307)_ 1.12223622370260069e-03 +Electron-alpha_thermal_collision_time_at_point_308_______________________ (t_plasma_electron_alpha_thermal_collision_profile308)_ 1.11655618732021413e-03 +Electron-alpha_thermal_collision_time_at_point_309_______________________ (t_plasma_electron_alpha_thermal_collision_profile309)_ 1.11087268194740929e-03 +Electron-alpha_thermal_collision_time_at_point_310_______________________ (t_plasma_electron_alpha_thermal_collision_profile310)_ 1.10518589578708954e-03 +Electron-alpha_thermal_collision_time_at_point_311_______________________ (t_plasma_electron_alpha_thermal_collision_profile311)_ 1.09949601853823165e-03 +Electron-alpha_thermal_collision_time_at_point_312_______________________ (t_plasma_electron_alpha_thermal_collision_profile312)_ 1.09380324141117552e-03 +Electron-alpha_thermal_collision_time_at_point_313_______________________ (t_plasma_electron_alpha_thermal_collision_profile313)_ 1.08810775714319520e-03 +Electron-alpha_thermal_collision_time_at_point_314_______________________ (t_plasma_electron_alpha_thermal_collision_profile314)_ 1.08240976001431808e-03 +Electron-alpha_thermal_collision_time_at_point_315_______________________ (t_plasma_electron_alpha_thermal_collision_profile315)_ 1.07670944586344178e-03 +Electron-alpha_thermal_collision_time_at_point_316_______________________ (t_plasma_electron_alpha_thermal_collision_profile316)_ 1.07100701210471449e-03 +Electron-alpha_thermal_collision_time_at_point_317_______________________ (t_plasma_electron_alpha_thermal_collision_profile317)_ 1.06530265774422276e-03 +Electron-alpha_thermal_collision_time_at_point_318_______________________ (t_plasma_electron_alpha_thermal_collision_profile318)_ 1.05959658339697558e-03 +Electron-alpha_thermal_collision_time_at_point_319_______________________ (t_plasma_electron_alpha_thermal_collision_profile319)_ 1.05388899130419650e-03 +Electron-alpha_thermal_collision_time_at_point_320_______________________ (t_plasma_electron_alpha_thermal_collision_profile320)_ 1.04818008535093542e-03 +Electron-alpha_thermal_collision_time_at_point_321_______________________ (t_plasma_electron_alpha_thermal_collision_profile321)_ 1.04247007108401193e-03 +Electron-alpha_thermal_collision_time_at_point_322_______________________ (t_plasma_electron_alpha_thermal_collision_profile322)_ 1.03675915573029210e-03 +Electron-alpha_thermal_collision_time_at_point_323_______________________ (t_plasma_electron_alpha_thermal_collision_profile323)_ 1.03104754821532058e-03 +Electron-alpha_thermal_collision_time_at_point_324_______________________ (t_plasma_electron_alpha_thermal_collision_profile324)_ 1.02533545918230681e-03 +Electron-alpha_thermal_collision_time_at_point_325_______________________ (t_plasma_electron_alpha_thermal_collision_profile325)_ 1.01962310101148530e-03 +Electron-alpha_thermal_collision_time_at_point_326_______________________ (t_plasma_electron_alpha_thermal_collision_profile326)_ 1.01391068783985910e-03 +Electron-alpha_thermal_collision_time_at_point_327_______________________ (t_plasma_electron_alpha_thermal_collision_profile327)_ 1.00819843558133779e-03 +Electron-alpha_thermal_collision_time_at_point_328_______________________ (t_plasma_electron_alpha_thermal_collision_profile328)_ 1.00248656194728268e-03 +Electron-alpha_thermal_collision_time_at_point_329_______________________ (t_plasma_electron_alpha_thermal_collision_profile329)_ 9.96775286467478086e-04 +Electron-alpha_thermal_collision_time_at_point_330_______________________ (t_plasma_electron_alpha_thermal_collision_profile330)_ 9.91064830511531776e-04 +Electron-alpha_thermal_collision_time_at_point_331_______________________ (t_plasma_electron_alpha_thermal_collision_profile331)_ 9.85355417310732453e-04 +Electron-alpha_thermal_collision_time_at_point_332_______________________ (t_plasma_electron_alpha_thermal_collision_profile332)_ 9.79647271980367855e-04 +Electron-alpha_thermal_collision_time_at_point_333_______________________ (t_plasma_electron_alpha_thermal_collision_profile333)_ 9.73940621542529320e-04 +Electron-alpha_thermal_collision_time_at_point_334_______________________ (t_plasma_electron_alpha_thermal_collision_profile334)_ 9.68235694949409558e-04 +Electron-alpha_thermal_collision_time_at_point_335_______________________ (t_plasma_electron_alpha_thermal_collision_profile335)_ 9.62532723107124518e-04 +Electron-alpha_thermal_collision_time_at_point_336_______________________ (t_plasma_electron_alpha_thermal_collision_profile336)_ 9.56831938900059914e-04 +Electron-alpha_thermal_collision_time_at_point_337_______________________ (t_plasma_electron_alpha_thermal_collision_profile337)_ 9.51133577215782823e-04 +Electron-alpha_thermal_collision_time_at_point_338_______________________ (t_plasma_electron_alpha_thermal_collision_profile338)_ 9.45437874970518274e-04 +Electron-alpha_thermal_collision_time_at_point_339_______________________ (t_plasma_electron_alpha_thermal_collision_profile339)_ 9.39745071135226042e-04 +Electron-alpha_thermal_collision_time_at_point_340_______________________ (t_plasma_electron_alpha_thermal_collision_profile340)_ 9.34055406762295112e-04 +Electron-alpha_thermal_collision_time_at_point_341_______________________ (t_plasma_electron_alpha_thermal_collision_profile341)_ 9.28369125012875229e-04 +Electron-alpha_thermal_collision_time_at_point_342_______________________ (t_plasma_electron_alpha_thermal_collision_profile342)_ 9.22686471184879344e-04 +Electron-alpha_thermal_collision_time_at_point_343_______________________ (t_plasma_electron_alpha_thermal_collision_profile343)_ 9.17007692741672576e-04 +Electron-alpha_thermal_collision_time_at_point_344_______________________ (t_plasma_electron_alpha_thermal_collision_profile344)_ 9.11333039341481418e-04 +Electron-alpha_thermal_collision_time_at_point_345_______________________ (t_plasma_electron_alpha_thermal_collision_profile345)_ 9.05662762867542686e-04 +Electron-alpha_thermal_collision_time_at_point_346_______________________ (t_plasma_electron_alpha_thermal_collision_profile346)_ 8.99997117459044481e-04 +Electron-alpha_thermal_collision_time_at_point_347_______________________ (t_plasma_electron_alpha_thermal_collision_profile347)_ 8.94336359542849835e-04 +Electron-alpha_thermal_collision_time_at_point_348_______________________ (t_plasma_electron_alpha_thermal_collision_profile348)_ 8.88680747866083930e-04 +Electron-alpha_thermal_collision_time_at_point_349_______________________ (t_plasma_electron_alpha_thermal_collision_profile349)_ 8.83030543529578476e-04 +Electron-alpha_thermal_collision_time_at_point_350_______________________ (t_plasma_electron_alpha_thermal_collision_profile350)_ 8.77386010022234743e-04 +Electron-alpha_thermal_collision_time_at_point_351_______________________ (t_plasma_electron_alpha_thermal_collision_profile351)_ 8.71747413256331689e-04 +Electron-alpha_thermal_collision_time_at_point_352_______________________ (t_plasma_electron_alpha_thermal_collision_profile352)_ 8.66115021603825158e-04 +Electron-alpha_thermal_collision_time_at_point_353_______________________ (t_plasma_electron_alpha_thermal_collision_profile353)_ 8.60489105933676850e-04 +Electron-alpha_thermal_collision_time_at_point_354_______________________ (t_plasma_electron_alpha_thermal_collision_profile354)_ 8.54869939650257523e-04 +Electron-alpha_thermal_collision_time_at_point_355_______________________ (t_plasma_electron_alpha_thermal_collision_profile355)_ 8.49257798732875159e-04 +Electron-alpha_thermal_collision_time_at_point_356_______________________ (t_plasma_electron_alpha_thermal_collision_profile356)_ 8.43652961776472231e-04 +Electron-alpha_thermal_collision_time_at_point_357_______________________ (t_plasma_electron_alpha_thermal_collision_profile357)_ 8.38055710033549844e-04 +Electron-alpha_thermal_collision_time_at_point_358_______________________ (t_plasma_electron_alpha_thermal_collision_profile358)_ 8.32466327457369293e-04 +Electron-alpha_thermal_collision_time_at_point_359_______________________ (t_plasma_electron_alpha_thermal_collision_profile359)_ 8.26885100746490328e-04 +Electron-alpha_thermal_collision_time_at_point_360_______________________ (t_plasma_electron_alpha_thermal_collision_profile360)_ 8.21312319390713136e-04 +Electron-alpha_thermal_collision_time_at_point_361_______________________ (t_plasma_electron_alpha_thermal_collision_profile361)_ 8.15748275718475432e-04 +Electron-alpha_thermal_collision_time_at_point_362_______________________ (t_plasma_electron_alpha_thermal_collision_profile362)_ 8.10193264945789225e-04 +Electron-alpha_thermal_collision_time_at_point_363_______________________ (t_plasma_electron_alpha_thermal_collision_profile363)_ 8.04647585226778844e-04 +Electron-alpha_thermal_collision_time_at_point_364_______________________ (t_plasma_electron_alpha_thermal_collision_profile364)_ 7.99111537705899906e-04 +Electron-alpha_thermal_collision_time_at_point_365_______________________ (t_plasma_electron_alpha_thermal_collision_profile365)_ 7.93585426571922397e-04 +Electron-alpha_thermal_collision_time_at_point_366_______________________ (t_plasma_electron_alpha_thermal_collision_profile366)_ 7.88069559113760030e-04 +Electron-alpha_thermal_collision_time_at_point_367_______________________ (t_plasma_electron_alpha_thermal_collision_profile367)_ 7.82564245778239907e-04 +Electron-alpha_thermal_collision_time_at_point_368_______________________ (t_plasma_electron_alpha_thermal_collision_profile368)_ 7.77069800229906777e-04 +Electron-alpha_thermal_collision_time_at_point_369_______________________ (t_plasma_electron_alpha_thermal_collision_profile369)_ 7.71586539412963943e-04 +Electron-alpha_thermal_collision_time_at_point_370_______________________ (t_plasma_electron_alpha_thermal_collision_profile370)_ 7.66114783615463456e-04 +Electron-alpha_thermal_collision_time_at_point_371_______________________ (t_plasma_electron_alpha_thermal_collision_profile371)_ 7.60654856535849231e-04 +Electron-alpha_thermal_collision_time_at_point_372_______________________ (t_plasma_electron_alpha_thermal_collision_profile372)_ 7.55207085351991894e-04 +Electron-alpha_thermal_collision_time_at_point_373_______________________ (t_plasma_electron_alpha_thermal_collision_profile373)_ 7.49771800792827002e-04 +Electron-alpha_thermal_collision_time_at_point_374_______________________ (t_plasma_electron_alpha_thermal_collision_profile374)_ 7.44349337212747361e-04 +Electron-alpha_thermal_collision_time_at_point_375_______________________ (t_plasma_electron_alpha_thermal_collision_profile375)_ 7.38940032668888316e-04 +Electron-alpha_thermal_collision_time_at_point_376_______________________ (t_plasma_electron_alpha_thermal_collision_profile376)_ 7.33544229001464529e-04 +Electron-alpha_thermal_collision_time_at_point_377_______________________ (t_plasma_electron_alpha_thermal_collision_profile377)_ 7.28162271917321422e-04 +Electron-alpha_thermal_collision_time_at_point_378_______________________ (t_plasma_electron_alpha_thermal_collision_profile378)_ 7.22794511076881138e-04 +Electron-alpha_thermal_collision_time_at_point_379_______________________ (t_plasma_electron_alpha_thermal_collision_profile379)_ 7.17441300184662911e-04 +Electron-alpha_thermal_collision_time_at_point_380_______________________ (t_plasma_electron_alpha_thermal_collision_profile380)_ 7.12102997083586533e-04 +Electron-alpha_thermal_collision_time_at_point_381_______________________ (t_plasma_electron_alpha_thermal_collision_profile381)_ 7.06779963853269052e-04 +Electron-alpha_thermal_collision_time_at_point_382_______________________ (t_plasma_electron_alpha_thermal_collision_profile382)_ 7.01472566912532836e-04 +Electron-alpha_thermal_collision_time_at_point_383_______________________ (t_plasma_electron_alpha_thermal_collision_profile383)_ 6.96181177126382607e-04 +Electron-alpha_thermal_collision_time_at_point_384_______________________ (t_plasma_electron_alpha_thermal_collision_profile384)_ 6.90906169917699839e-04 +Electron-alpha_thermal_collision_time_at_point_385_______________________ (t_plasma_electron_alpha_thermal_collision_profile385)_ 6.85647925383935878e-04 +Electron-alpha_thermal_collision_time_at_point_386_______________________ (t_plasma_electron_alpha_thermal_collision_profile386)_ 6.80406828419091508e-04 +Electron-alpha_thermal_collision_time_at_point_387_______________________ (t_plasma_electron_alpha_thermal_collision_profile387)_ 6.75183268841316494e-04 +Electron-alpha_thermal_collision_time_at_point_388_______________________ (t_plasma_electron_alpha_thermal_collision_profile388)_ 6.69977641526447944e-04 +Electron-alpha_thermal_collision_time_at_point_389_______________________ (t_plasma_electron_alpha_thermal_collision_profile389)_ 6.64790346547866531e-04 +Electron-alpha_thermal_collision_time_at_point_390_______________________ (t_plasma_electron_alpha_thermal_collision_profile390)_ 6.59621789323048212e-04 +Electron-alpha_thermal_collision_time_at_point_391_______________________ (t_plasma_electron_alpha_thermal_collision_profile391)_ 6.54472380767238829e-04 +Electron-alpha_thermal_collision_time_at_point_392_______________________ (t_plasma_electron_alpha_thermal_collision_profile392)_ 6.49342537454690905e-04 +Electron-alpha_thermal_collision_time_at_point_393_______________________ (t_plasma_electron_alpha_thermal_collision_profile393)_ 6.44232681787952925e-04 +Electron-alpha_thermal_collision_time_at_point_394_______________________ (t_plasma_electron_alpha_thermal_collision_profile394)_ 6.39143242175720127e-04 +Electron-alpha_thermal_collision_time_at_point_395_______________________ (t_plasma_electron_alpha_thermal_collision_profile395)_ 6.34074653219809719e-04 +Electron-alpha_thermal_collision_time_at_point_396_______________________ (t_plasma_electron_alpha_thermal_collision_profile396)_ 6.29027355911858247e-04 +Electron-alpha_thermal_collision_time_at_point_397_______________________ (t_plasma_electron_alpha_thermal_collision_profile397)_ 6.24001797840387402e-04 +Electron-alpha_thermal_collision_time_at_point_398_______________________ (t_plasma_electron_alpha_thermal_collision_profile398)_ 6.18998433408936830e-04 +Electron-alpha_thermal_collision_time_at_point_399_______________________ (t_plasma_electron_alpha_thermal_collision_profile399)_ 6.14017724066009962e-04 +Electron-alpha_thermal_collision_time_at_point_400_______________________ (t_plasma_electron_alpha_thermal_collision_profile400)_ 6.09060138547655797e-04 +Electron-alpha_thermal_collision_time_at_point_401_______________________ (t_plasma_electron_alpha_thermal_collision_profile401)_ 6.04126153133556585e-04 +Electron-alpha_thermal_collision_time_at_point_402_______________________ (t_plasma_electron_alpha_thermal_collision_profile402)_ 5.99216251917574112e-04 +Electron-alpha_thermal_collision_time_at_point_403_______________________ (t_plasma_electron_alpha_thermal_collision_profile403)_ 5.94330927093790311e-04 +Electron-alpha_thermal_collision_time_at_point_404_______________________ (t_plasma_electron_alpha_thermal_collision_profile404)_ 5.89470679259151888e-04 +Electron-alpha_thermal_collision_time_at_point_405_______________________ (t_plasma_electron_alpha_thermal_collision_profile405)_ 5.84636017733935771e-04 +Electron-alpha_thermal_collision_time_at_point_406_______________________ (t_plasma_electron_alpha_thermal_collision_profile406)_ 5.79827460901351905e-04 +Electron-alpha_thermal_collision_time_at_point_407_______________________ (t_plasma_electron_alpha_thermal_collision_profile407)_ 5.75045536567720642e-04 +Electron-alpha_thermal_collision_time_at_point_408_______________________ (t_plasma_electron_alpha_thermal_collision_profile408)_ 5.70290782344773698e-04 +Electron-alpha_thermal_collision_time_at_point_409_______________________ (t_plasma_electron_alpha_thermal_collision_profile409)_ 5.65563746055801819e-04 +Electron-alpha_thermal_collision_time_at_point_410_______________________ (t_plasma_electron_alpha_thermal_collision_profile410)_ 5.60864986167481662e-04 +Electron-alpha_thermal_collision_time_at_point_411_______________________ (t_plasma_electron_alpha_thermal_collision_profile411)_ 5.56195072249434188e-04 +Electron-alpha_thermal_collision_time_at_point_412_______________________ (t_plasma_electron_alpha_thermal_collision_profile412)_ 5.51554585463722097e-04 +Electron-alpha_thermal_collision_time_at_point_413_______________________ (t_plasma_electron_alpha_thermal_collision_profile413)_ 5.46944119086731741e-04 +Electron-alpha_thermal_collision_time_at_point_414_______________________ (t_plasma_electron_alpha_thermal_collision_profile414)_ 5.42364279066102732e-04 +Electron-alpha_thermal_collision_time_at_point_415_______________________ (t_plasma_electron_alpha_thermal_collision_profile415)_ 5.37815684615648541e-04 +Electron-alpha_thermal_collision_time_at_point_416_______________________ (t_plasma_electron_alpha_thermal_collision_profile416)_ 5.33298968851497268e-04 +Electron-alpha_thermal_collision_time_at_point_417_______________________ (t_plasma_electron_alpha_thermal_collision_profile417)_ 5.28814779473014951e-04 +Electron-alpha_thermal_collision_time_at_point_418_______________________ (t_plasma_electron_alpha_thermal_collision_profile418)_ 5.24363779492445438e-04 +Electron-alpha_thermal_collision_time_at_point_419_______________________ (t_plasma_electron_alpha_thermal_collision_profile419)_ 5.19946648017616318e-04 +Electron-alpha_thermal_collision_time_at_point_420_______________________ (t_plasma_electron_alpha_thermal_collision_profile420)_ 5.15564081092531926e-04 +Electron-alpha_thermal_collision_time_at_point_421_______________________ (t_plasma_electron_alpha_thermal_collision_profile421)_ 5.11216792601197341e-04 +Electron-alpha_thermal_collision_time_at_point_422_______________________ (t_plasma_electron_alpha_thermal_collision_profile422)_ 5.06905515240629119e-04 +Electron-alpha_thermal_collision_time_at_point_423_______________________ (t_plasma_electron_alpha_thermal_collision_profile423)_ 5.02631001569673664e-04 +Electron-alpha_thermal_collision_time_at_point_424_______________________ (t_plasma_electron_alpha_thermal_collision_profile424)_ 4.98394025141033229e-04 +Electron-alpha_thermal_collision_time_at_point_425_______________________ (t_plasma_electron_alpha_thermal_collision_profile425)_ 4.94195381724787529e-04 +Electron-alpha_thermal_collision_time_at_point_426_______________________ (t_plasma_electron_alpha_thermal_collision_profile426)_ 4.90035890632684566e-04 +Electron-alpha_thermal_collision_time_at_point_427_______________________ (t_plasma_electron_alpha_thermal_collision_profile427)_ 4.85916396153650385e-04 +Electron-alpha_thermal_collision_time_at_point_428_______________________ (t_plasma_electron_alpha_thermal_collision_profile428)_ 4.81837769112276458e-04 +Electron-alpha_thermal_collision_time_at_point_429_______________________ (t_plasma_electron_alpha_thermal_collision_profile429)_ 4.77800908563577413e-04 +Electron-alpha_thermal_collision_time_at_point_430_______________________ (t_plasma_electron_alpha_thermal_collision_profile430)_ 4.73806743639080825e-04 +Electron-alpha_thermal_collision_time_at_point_431_______________________ (t_plasma_electron_alpha_thermal_collision_profile431)_ 4.69856235561357579e-04 +Electron-alpha_thermal_collision_time_at_point_432_______________________ (t_plasma_electron_alpha_thermal_collision_profile432)_ 4.65950379846496131e-04 +Electron-alpha_thermal_collision_time_at_point_433_______________________ (t_plasma_electron_alpha_thermal_collision_profile433)_ 4.62090208716812404e-04 +Electron-alpha_thermal_collision_time_at_point_434_______________________ (t_plasma_electron_alpha_thermal_collision_profile434)_ 4.58276793749373115e-04 +Electron-alpha_thermal_collision_time_at_point_435_______________________ (t_plasma_electron_alpha_thermal_collision_profile435)_ 4.54511248789765752e-04 +Electron-alpha_thermal_collision_time_at_point_436_______________________ (t_plasma_electron_alpha_thermal_collision_profile436)_ 4.50794733165136479e-04 +Electron-alpha_thermal_collision_time_at_point_437_______________________ (t_plasma_electron_alpha_thermal_collision_profile437)_ 4.47128455235940069e-04 +Electron-alpha_thermal_collision_time_at_point_438_______________________ (t_plasma_electron_alpha_thermal_collision_profile438)_ 4.43513676332371002e-04 +Electron-alpha_thermal_collision_time_at_point_439_______________________ (t_plasma_electron_alpha_thermal_collision_profile439)_ 4.39951715129223420e-04 +Electron-alpha_thermal_collision_time_at_point_440_______________________ (t_plasma_electron_alpha_thermal_collision_profile440)_ 4.36443952522388393e-04 +Electron-alpha_thermal_collision_time_at_point_441_______________________ (t_plasma_electron_alpha_thermal_collision_profile441)_ 4.32991837081619924e-04 +Electron-alpha_thermal_collision_time_at_point_442_______________________ (t_plasma_electron_alpha_thermal_collision_profile442)_ 4.29596891168221653e-04 +Electron-alpha_thermal_collision_time_at_point_443_______________________ (t_plasma_electron_alpha_thermal_collision_profile443)_ 4.26260717823493979e-04 +Electron-alpha_thermal_collision_time_at_point_444_______________________ (t_plasma_electron_alpha_thermal_collision_profile444)_ 4.22985008555125971e-04 +Electron-alpha_thermal_collision_time_at_point_445_______________________ (t_plasma_electron_alpha_thermal_collision_profile445)_ 4.19771552175290995e-04 +Electron-alpha_thermal_collision_time_at_point_446_______________________ (t_plasma_electron_alpha_thermal_collision_profile446)_ 4.16622244877680209e-04 +Electron-alpha_thermal_collision_time_at_point_447_______________________ (t_plasma_electron_alpha_thermal_collision_profile447)_ 4.13539101783131442e-04 +Electron-alpha_thermal_collision_time_at_point_448_______________________ (t_plasma_electron_alpha_thermal_collision_profile448)_ 4.10524270237848106e-04 +Electron-alpha_thermal_collision_time_at_point_449_______________________ (t_plasma_electron_alpha_thermal_collision_profile449)_ 4.07580045218436252e-04 +Electron-alpha_thermal_collision_time_at_point_450_______________________ (t_plasma_electron_alpha_thermal_collision_profile450)_ 4.04708887289798752e-04 +Electron-alpha_thermal_collision_time_at_point_451_______________________ (t_plasma_electron_alpha_thermal_collision_profile451)_ 4.01913443683324996e-04 +Electron-alpha_thermal_collision_time_at_point_452_______________________ (t_plasma_electron_alpha_thermal_collision_profile452)_ 3.99196573225390323e-04 +Electron-alpha_thermal_collision_time_at_point_453_______________________ (t_plasma_electron_alpha_thermal_collision_profile453)_ 3.96561376067019512e-04 +Electron-alpha_thermal_collision_time_at_point_454_______________________ (t_plasma_electron_alpha_thermal_collision_profile454)_ 3.94011229470152399e-04 +Electron-alpha_thermal_collision_time_at_point_455_______________________ (t_plasma_electron_alpha_thermal_collision_profile455)_ 3.91549831333271958e-04 +Electron-alpha_thermal_collision_time_at_point_456_______________________ (t_plasma_electron_alpha_thermal_collision_profile456)_ 3.89181253750208833e-04 +Electron-alpha_thermal_collision_time_at_point_457_______________________ (t_plasma_electron_alpha_thermal_collision_profile457)_ 3.86910009788381606e-04 +Electron-alpha_thermal_collision_time_at_point_458_______________________ (t_plasma_electron_alpha_thermal_collision_profile458)_ 3.84741138007895877e-04 +Electron-alpha_thermal_collision_time_at_point_459_______________________ (t_plasma_electron_alpha_thermal_collision_profile459)_ 3.82680311295488886e-04 +Electron-alpha_thermal_collision_time_at_point_460_______________________ (t_plasma_electron_alpha_thermal_collision_profile460)_ 3.80733979843168478e-04 +Electron-alpha_thermal_collision_time_at_point_461_______________________ (t_plasma_electron_alpha_thermal_collision_profile461)_ 3.78909563456918033e-04 +Electron-alpha_thermal_collision_time_at_point_462_______________________ (t_plasma_electron_alpha_thermal_collision_profile462)_ 3.77215717574756857e-04 +Electron-alpha_thermal_collision_time_at_point_463_______________________ (t_plasma_electron_alpha_thermal_collision_profile463)_ 3.75662713983430940e-04 +Electron-alpha_thermal_collision_time_at_point_464_______________________ (t_plasma_electron_alpha_thermal_collision_profile464)_ 3.74263009158085102e-04 +Electron-alpha_thermal_collision_time_at_point_465_______________________ (t_plasma_electron_alpha_thermal_collision_profile465)_ 3.73032139515076929e-04 +Electron-alpha_thermal_collision_time_at_point_466_______________________ (t_plasma_electron_alpha_thermal_collision_profile466)_ 3.71990235373094761e-04 +Electron-alpha_thermal_collision_time_at_point_467_______________________ (t_plasma_electron_alpha_thermal_collision_profile467)_ 3.71164847040454323e-04 +Electron-alpha_thermal_collision_time_at_point_468_______________________ (t_plasma_electron_alpha_thermal_collision_profile468)_ 3.70597067180445901e-04 +Electron-alpha_thermal_collision_time_at_point_469_______________________ (t_plasma_electron_alpha_thermal_collision_profile469)_ 3.70358733087456564e-04 +Electron-alpha_thermal_collision_time_at_point_470_______________________ (t_plasma_electron_alpha_thermal_collision_profile470)_ 3.70657624724476291e-04 +Electron-alpha_thermal_collision_time_at_point_471_______________________ (t_plasma_electron_alpha_thermal_collision_profile471)_ 3.58065924134730730e-04 +Electron-alpha_thermal_collision_time_at_point_472_______________________ (t_plasma_electron_alpha_thermal_collision_profile472)_ 3.45397149645596641e-04 +Electron-alpha_thermal_collision_time_at_point_473_______________________ (t_plasma_electron_alpha_thermal_collision_profile473)_ 3.32653071741859010e-04 +Electron-alpha_thermal_collision_time_at_point_474_______________________ (t_plasma_electron_alpha_thermal_collision_profile474)_ 3.19835847910547035e-04 +Electron-alpha_thermal_collision_time_at_point_475_______________________ (t_plasma_electron_alpha_thermal_collision_profile475)_ 3.06948078608551989e-04 +Electron-alpha_thermal_collision_time_at_point_476_______________________ (t_plasma_electron_alpha_thermal_collision_profile476)_ 2.93992872106387188e-04 +Electron-alpha_thermal_collision_time_at_point_477_______________________ (t_plasma_electron_alpha_thermal_collision_profile477)_ 2.80973919873900530e-04 +Electron-alpha_thermal_collision_time_at_point_478_______________________ (t_plasma_electron_alpha_thermal_collision_profile478)_ 2.67895584551436155e-04 +Electron-alpha_thermal_collision_time_at_point_479_______________________ (t_plasma_electron_alpha_thermal_collision_profile479)_ 2.54763003031411358e-04 +Electron-alpha_thermal_collision_time_at_point_480_______________________ (t_plasma_electron_alpha_thermal_collision_profile480)_ 2.41582207795011238e-04 +Electron-alpha_thermal_collision_time_at_point_481_______________________ (t_plasma_electron_alpha_thermal_collision_profile481)_ 2.28360270454750842e-04 +Electron-alpha_thermal_collision_time_at_point_482_______________________ (t_plasma_electron_alpha_thermal_collision_profile482)_ 2.15105472514218313e-04 +Electron-alpha_thermal_collision_time_at_point_483_______________________ (t_plasma_electron_alpha_thermal_collision_profile483)_ 2.01827509769569429e-04 +Electron-alpha_thermal_collision_time_at_point_484_______________________ (t_plasma_electron_alpha_thermal_collision_profile484)_ 1.88537738687273717e-04 +Electron-alpha_thermal_collision_time_at_point_485_______________________ (t_plasma_electron_alpha_thermal_collision_profile485)_ 1.75249475714459458e-04 +Electron-alpha_thermal_collision_time_at_point_486_______________________ (t_plasma_electron_alpha_thermal_collision_profile486)_ 1.61978364140871495e-04 +Electron-alpha_thermal_collision_time_at_point_487_______________________ (t_plasma_electron_alpha_thermal_collision_profile487)_ 1.48742828349558508e-04 +Electron-alpha_thermal_collision_time_at_point_488_______________________ (t_plasma_electron_alpha_thermal_collision_profile488)_ 1.35564642894424130e-04 +Electron-alpha_thermal_collision_time_at_point_489_______________________ (t_plasma_electron_alpha_thermal_collision_profile489)_ 1.22469655198043006e-04 +Electron-alpha_thermal_collision_time_at_point_490_______________________ (t_plasma_electron_alpha_thermal_collision_profile490)_ 1.09488718125248035e-04 +Electron-alpha_thermal_collision_time_at_point_491_______________________ (t_plasma_electron_alpha_thermal_collision_profile491)_ 9.66589164561148492e-05 +Electron-alpha_thermal_collision_time_at_point_492_______________________ (t_plasma_electron_alpha_thermal_collision_profile492)_ 8.40252172036041789e-05 +Electron-alpha_thermal_collision_time_at_point_493_______________________ (t_plasma_electron_alpha_thermal_collision_profile493)_ 7.16427532765027139e-05 +Electron-alpha_thermal_collision_time_at_point_494_______________________ (t_plasma_electron_alpha_thermal_collision_profile494)_ 5.95800957520347958e-05 +Electron-alpha_thermal_collision_time_at_point_495_______________________ (t_plasma_electron_alpha_thermal_collision_profile495)_ 4.79241561663147403e-05 +Electron-alpha_thermal_collision_time_at_point_496_______________________ (t_plasma_electron_alpha_thermal_collision_profile496)_ 3.67879732121744691e-05 +Electron-alpha_thermal_collision_time_at_point_497_______________________ (t_plasma_electron_alpha_thermal_collision_profile497)_ 2.63241112999669208e-05 +Electron-alpha_thermal_collision_time_at_point_498_______________________ (t_plasma_electron_alpha_thermal_collision_profile498)_ 1.67505532148215755e-05 +Electron-alpha_thermal_collision_time_at_point_499_______________________ (t_plasma_electron_alpha_thermal_collision_profile499)_ 8.41095103153797810e-06 +Electron-alpha_thermal_collision_time_at_point_500_______________________ (t_plasma_electron_alpha_thermal_collision_profile500)_ 2.03661745176224198e-06 +Volume_averaged_electron-electron_collision_frequency_(Hz)_______________ (freq_plasma_electron_electron_collision_vol_avg)_ 1.44189844723732881e+03 +Electron-electron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_electron_collision_profile0)_ 6.56342653214196275e+02 +Electron-electron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_electron_collision_profile1)_ 6.56346414592525662e+02 +Electron-electron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_electron_collision_profile2)_ 6.56357698936875181e+02 +Electron-electron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_electron_collision_profile3)_ 6.56376506875353584e+02 +Electron-electron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_electron_collision_profile4)_ 6.56402839454894433e+02 +Electron-electron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_electron_collision_profile5)_ 6.56436698141385250e+02 +Electron-electron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_electron_collision_profile6)_ 6.56478084819847481e+02 +Electron-electron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_electron_collision_profile7)_ 6.56527001794667171e+02 +Electron-electron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_electron_collision_profile8)_ 6.56583451789880087e+02 +Electron-electron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_electron_collision_profile9)_ 6.56647437949504251e+02 +Electron-electron_collision_frequency_at_point_10________________________ (freq_plasma_electron_electron_collision_profile10)_ 6.56718963837928527e+02 +Electron-electron_collision_frequency_at_point_11________________________ (freq_plasma_electron_electron_collision_profile11)_ 6.56798033440349741e+02 +Electron-electron_collision_frequency_at_point_12________________________ (freq_plasma_electron_electron_collision_profile12)_ 6.56884651163263584e+02 +Electron-electron_collision_frequency_at_point_13________________________ (freq_plasma_electron_electron_collision_profile13)_ 6.56978821835005874e+02 +Electron-electron_collision_frequency_at_point_14________________________ (freq_plasma_electron_electron_collision_profile14)_ 6.57080550706348617e+02 +Electron-electron_collision_frequency_at_point_15________________________ (freq_plasma_electron_electron_collision_profile15)_ 6.57189843451144498e+02 +Electron-electron_collision_frequency_at_point_16________________________ (freq_plasma_electron_electron_collision_profile16)_ 6.57306706167026618e+02 +Electron-electron_collision_frequency_at_point_17________________________ (freq_plasma_electron_electron_collision_profile17)_ 6.57431145376160771e+02 +Electron-electron_collision_frequency_at_point_18________________________ (freq_plasma_electron_electron_collision_profile18)_ 6.57563168026047038e+02 +Electron-electron_collision_frequency_at_point_19________________________ (freq_plasma_electron_electron_collision_profile19)_ 6.57702781490378811e+02 +Electron-electron_collision_frequency_at_point_20________________________ (freq_plasma_electron_electron_collision_profile20)_ 6.57849993569952517e+02 +Electron-electron_collision_frequency_at_point_21________________________ (freq_plasma_electron_electron_collision_profile21)_ 6.58004812493628151e+02 +Electron-electron_collision_frequency_at_point_22________________________ (freq_plasma_electron_electron_collision_profile22)_ 6.58167246919349282e+02 +Electron-electron_collision_frequency_at_point_23________________________ (freq_plasma_electron_electron_collision_profile23)_ 6.58337305935210338e+02 +Electron-electron_collision_frequency_at_point_24________________________ (freq_plasma_electron_electron_collision_profile24)_ 6.58514999060580635e+02 +Electron-electron_collision_frequency_at_point_25________________________ (freq_plasma_electron_electron_collision_profile25)_ 6.58700336247283303e+02 +Electron-electron_collision_frequency_at_point_26________________________ (freq_plasma_electron_electron_collision_profile26)_ 6.58893327880827655e+02 +Electron-electron_collision_frequency_at_point_27________________________ (freq_plasma_electron_electron_collision_profile27)_ 6.59093984781693507e+02 +Electron-electron_collision_frequency_at_point_28________________________ (freq_plasma_electron_electron_collision_profile28)_ 6.59302318206676318e+02 +Electron-electron_collision_frequency_at_point_29________________________ (freq_plasma_electron_electron_collision_profile29)_ 6.59518339850279744e+02 +Electron-electron_collision_frequency_at_point_30________________________ (freq_plasma_electron_electron_collision_profile30)_ 6.59742061846171850e+02 +Electron-electron_collision_frequency_at_point_31________________________ (freq_plasma_electron_electron_collision_profile31)_ 6.59973496768689870e+02 +Electron-electron_collision_frequency_at_point_32________________________ (freq_plasma_electron_electron_collision_profile32)_ 6.60212657634404991e+02 +Electron-electron_collision_frequency_at_point_33________________________ (freq_plasma_electron_electron_collision_profile33)_ 6.60459557903742279e+02 +Electron-electron_collision_frequency_at_point_34________________________ (freq_plasma_electron_electron_collision_profile34)_ 6.60714211482658243e+02 +Electron-electron_collision_frequency_at_point_35________________________ (freq_plasma_electron_electron_collision_profile35)_ 6.60976632724373871e+02 +Electron-electron_collision_frequency_at_point_36________________________ (freq_plasma_electron_electron_collision_profile36)_ 6.61246836431166798e+02 +Electron-electron_collision_frequency_at_point_37________________________ (freq_plasma_electron_electron_collision_profile37)_ 6.61524837856218937e+02 +Electron-electron_collision_frequency_at_point_38________________________ (freq_plasma_electron_electron_collision_profile38)_ 6.61810652705525058e+02 +Electron-electron_collision_frequency_at_point_39________________________ (freq_plasma_electron_electron_collision_profile39)_ 6.62104297139858545e+02 +Electron-electron_collision_frequency_at_point_40________________________ (freq_plasma_electron_electron_collision_profile40)_ 6.62405787776795705e+02 +Electron-electron_collision_frequency_at_point_41________________________ (freq_plasma_electron_electron_collision_profile41)_ 6.62715141692800330e+02 +Electron-electron_collision_frequency_at_point_42________________________ (freq_plasma_electron_electron_collision_profile42)_ 6.63032376425367715e+02 +Electron-electron_collision_frequency_at_point_43________________________ (freq_plasma_electron_electron_collision_profile43)_ 6.63357509975229959e+02 +Electron-electron_collision_frequency_at_point_44________________________ (freq_plasma_electron_electron_collision_profile44)_ 6.63690560808619239e+02 +Electron-electron_collision_frequency_at_point_45________________________ (freq_plasma_electron_electron_collision_profile45)_ 6.64031547859597254e+02 +Electron-electron_collision_frequency_at_point_46________________________ (freq_plasma_electron_electron_collision_profile46)_ 6.64380490532441513e+02 +Electron-electron_collision_frequency_at_point_47________________________ (freq_plasma_electron_electron_collision_profile47)_ 6.64737408704096083e+02 +Electron-electron_collision_frequency_at_point_48________________________ (freq_plasma_electron_electron_collision_profile48)_ 6.65102322726685998e+02 +Electron-electron_collision_frequency_at_point_49________________________ (freq_plasma_electron_electron_collision_profile49)_ 6.65475253430093517e+02 +Electron-electron_collision_frequency_at_point_50________________________ (freq_plasma_electron_electron_collision_profile50)_ 6.65856222124598730e+02 +Electron-electron_collision_frequency_at_point_51________________________ (freq_plasma_electron_electron_collision_profile51)_ 6.66245250603585191e+02 +Electron-electron_collision_frequency_at_point_52________________________ (freq_plasma_electron_electron_collision_profile52)_ 6.66642361146309781e+02 +Electron-electron_collision_frequency_at_point_53________________________ (freq_plasma_electron_electron_collision_profile53)_ 6.67047576520738176e+02 +Electron-electron_collision_frequency_at_point_54________________________ (freq_plasma_electron_electron_collision_profile54)_ 6.67460919986447834e+02 +Electron-electron_collision_frequency_at_point_55________________________ (freq_plasma_electron_electron_collision_profile55)_ 6.67882415297596935e+02 +Electron-electron_collision_frequency_at_point_56________________________ (freq_plasma_electron_electron_collision_profile56)_ 6.68312086705960496e+02 +Electron-electron_collision_frequency_at_point_57________________________ (freq_plasma_electron_electron_collision_profile57)_ 6.68749958964035386e+02 +Electron-electron_collision_frequency_at_point_58________________________ (freq_plasma_electron_electron_collision_profile58)_ 6.69196057328212646e+02 +Electron-electron_collision_frequency_at_point_59________________________ (freq_plasma_electron_electron_collision_profile59)_ 6.69650407562023588e+02 +Electron-electron_collision_frequency_at_point_60________________________ (freq_plasma_electron_electron_collision_profile60)_ 6.70113035939450242e+02 +Electron-electron_collision_frequency_at_point_61________________________ (freq_plasma_electron_electron_collision_profile61)_ 6.70583969248311291e+02 +Electron-electron_collision_frequency_at_point_62________________________ (freq_plasma_electron_electron_collision_profile62)_ 6.71063234793718038e+02 +Electron-electron_collision_frequency_at_point_63________________________ (freq_plasma_electron_electron_collision_profile63)_ 6.71550860401601994e+02 +Electron-electron_collision_frequency_at_point_64________________________ (freq_plasma_electron_electron_collision_profile64)_ 6.72046874422318297e+02 +Electron-electron_collision_frequency_at_point_65________________________ (freq_plasma_electron_electron_collision_profile65)_ 6.72551305734319953e+02 +Electron-electron_collision_frequency_at_point_66________________________ (freq_plasma_electron_electron_collision_profile66)_ 6.73064183747909510e+02 +Electron-electron_collision_frequency_at_point_67________________________ (freq_plasma_electron_electron_collision_profile67)_ 6.73585538409065748e+02 +Electron-electron_collision_frequency_at_point_68________________________ (freq_plasma_electron_electron_collision_profile68)_ 6.74115400203345985e+02 +Electron-electron_collision_frequency_at_point_69________________________ (freq_plasma_electron_electron_collision_profile69)_ 6.74653800159865682e+02 +Electron-electron_collision_frequency_at_point_70________________________ (freq_plasma_electron_electron_collision_profile70)_ 6.75200769855358089e+02 +Electron-electron_collision_frequency_at_point_71________________________ (freq_plasma_electron_electron_collision_profile71)_ 6.75756341418311763e+02 +Electron-electron_collision_frequency_at_point_72________________________ (freq_plasma_electron_electron_collision_profile72)_ 6.76320547533188346e+02 +Electron-electron_collision_frequency_at_point_73________________________ (freq_plasma_electron_electron_collision_profile73)_ 6.76893421444720389e+02 +Electron-electron_collision_frequency_at_point_74________________________ (freq_plasma_electron_electron_collision_profile74)_ 6.77474996962293289e+02 +Electron-electron_collision_frequency_at_point_75________________________ (freq_plasma_electron_electron_collision_profile75)_ 6.78065308464409554e+02 +Electron-electron_collision_frequency_at_point_76________________________ (freq_plasma_electron_electron_collision_profile76)_ 6.78664390903234107e+02 +Electron-electron_collision_frequency_at_point_77________________________ (freq_plasma_electron_electron_collision_profile77)_ 6.79272279809229758e+02 +Electron-electron_collision_frequency_at_point_78________________________ (freq_plasma_electron_electron_collision_profile78)_ 6.79889011295874070e+02 +Electron-electron_collision_frequency_at_point_79________________________ (freq_plasma_electron_electron_collision_profile79)_ 6.80514622064465470e+02 +Electron-electron_collision_frequency_at_point_80________________________ (freq_plasma_electron_electron_collision_profile80)_ 6.81149149409018037e+02 +Electron-electron_collision_frequency_at_point_81________________________ (freq_plasma_electron_electron_collision_profile81)_ 6.81792631221244505e+02 +Electron-electron_collision_frequency_at_point_82________________________ (freq_plasma_electron_electron_collision_profile82)_ 6.82445105995629206e+02 +Electron-electron_collision_frequency_at_point_83________________________ (freq_plasma_electron_electron_collision_profile83)_ 6.83106612834594330e+02 +Electron-electron_collision_frequency_at_point_84________________________ (freq_plasma_electron_electron_collision_profile84)_ 6.83777191453756132e+02 +Electron-electron_collision_frequency_at_point_85________________________ (freq_plasma_electron_electron_collision_profile85)_ 6.84456882187279234e+02 +Electron-electron_collision_frequency_at_point_86________________________ (freq_plasma_electron_electron_collision_profile86)_ 6.85145725993322571e+02 +Electron-electron_collision_frequency_at_point_87________________________ (freq_plasma_electron_electron_collision_profile87)_ 6.85843764459582871e+02 +Electron-electron_collision_frequency_at_point_88________________________ (freq_plasma_electron_electron_collision_profile88)_ 6.86551039808936025e+02 +Electron-electron_collision_frequency_at_point_89________________________ (freq_plasma_electron_electron_collision_profile89)_ 6.87267594905176566e+02 +Electron-electron_collision_frequency_at_point_90________________________ (freq_plasma_electron_electron_collision_profile90)_ 6.87993473258859694e+02 +Electron-electron_collision_frequency_at_point_91________________________ (freq_plasma_electron_electron_collision_profile91)_ 6.88728719033242442e+02 +Electron-electron_collision_frequency_at_point_92________________________ (freq_plasma_electron_electron_collision_profile92)_ 6.89473377050329191e+02 +Electron-electron_collision_frequency_at_point_93________________________ (freq_plasma_electron_electron_collision_profile93)_ 6.90227492797021114e+02 +Electron-electron_collision_frequency_at_point_94________________________ (freq_plasma_electron_electron_collision_profile94)_ 6.90991112431372244e+02 +Electron-electron_collision_frequency_at_point_95________________________ (freq_plasma_electron_electron_collision_profile95)_ 6.91764282788951732e+02 +Electron-electron_collision_frequency_at_point_96________________________ (freq_plasma_electron_electron_collision_profile96)_ 6.92547051389316380e+02 +Electron-electron_collision_frequency_at_point_97________________________ (freq_plasma_electron_electron_collision_profile97)_ 6.93339466442592311e+02 +Electron-electron_collision_frequency_at_point_98________________________ (freq_plasma_electron_electron_collision_profile98)_ 6.94141576856169308e+02 +Electron-electron_collision_frequency_at_point_99________________________ (freq_plasma_electron_electron_collision_profile99)_ 6.94953432241506903e+02 +Electron-electron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_electron_collision_profile100)_ 6.95775082921059834e+02 +Electron-electron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_electron_collision_profile101)_ 6.96606579935314244e+02 +Electron-electron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_electron_collision_profile102)_ 6.97447975049948468e+02 +Electron-electron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_electron_collision_profile103)_ 6.98299320763107062e+02 +Electron-electron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_electron_collision_profile104)_ 6.99160670312804200e+02 +Electron-electron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_electron_collision_profile105)_ 7.00032077684444630e+02 +Electron-electron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_electron_collision_profile106)_ 7.00913597618473318e+02 +Electron-electron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_electron_collision_profile107)_ 7.01805285618151402e+02 +Electron-electron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_electron_collision_profile108)_ 7.02707197957459925e+02 +Electron-electron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_electron_collision_profile109)_ 7.03619391689138411e+02 +Electron-electron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_electron_collision_profile110)_ 7.04541924652851321e+02 +Electron-electron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_electron_collision_profile111)_ 7.05474855483494480e+02 +Electron-electron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_electron_collision_profile112)_ 7.06418243619632790e+02 +Electron-electron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_electron_collision_profile113)_ 7.07372149312084616e+02 +Electron-electron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_electron_collision_profile114)_ 7.08336633632639860e+02 +Electron-electron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_electron_collision_profile115)_ 7.09311758482924688e+02 +Electron-electron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_electron_collision_profile116)_ 7.10297586603413492e+02 +Electron-electron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_electron_collision_profile117)_ 7.11294181582583633e+02 +Electron-electron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_electron_collision_profile118)_ 7.12301607866225595e+02 +Electron-electron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_electron_collision_profile119)_ 7.13319930766902075e+02 +Electron-electron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_electron_collision_profile120)_ 7.14349216473560546e+02 +Electron-electron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_electron_collision_profile121)_ 7.15389532061307932e+02 +Electron-electron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_electron_collision_profile122)_ 7.16440945501338206e+02 +Electron-electron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_electron_collision_profile123)_ 7.17503525671028456e+02 +Electron-electron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_electron_collision_profile124)_ 7.18577342364192532e+02 +Electron-electron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_electron_collision_profile125)_ 7.19662466301508516e+02 +Electron-electron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_electron_collision_profile126)_ 7.20758969141110811e+02 +Electron-electron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_electron_collision_profile127)_ 7.21866923489357418e+02 +Electron-electron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_electron_collision_profile128)_ 7.22986402911770028e+02 +Electron-electron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_electron_collision_profile129)_ 7.24117481944154406e+02 +Electron-electron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_electron_collision_profile130)_ 7.25260236103900525e+02 +Electron-electron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_electron_collision_profile131)_ 7.26414741901464708e+02 +Electron-electron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_electron_collision_profile132)_ 7.27581076852040610e+02 +Electron-electron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_electron_collision_profile133)_ 7.28759319487419361e+02 +Electron-electron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_electron_collision_profile134)_ 7.29949549368040380e+02 +Electron-electron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_electron_collision_profile135)_ 7.31151847095239873e+02 +Electron-electron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_electron_collision_profile136)_ 7.32366294323697957e+02 +Electron-electron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_electron_collision_profile137)_ 7.33592973774086431e+02 +Electron-electron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_electron_collision_profile138)_ 7.34831969245924142e+02 +Electron-electron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_electron_collision_profile139)_ 7.36083365630639491e+02 +Electron-electron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_electron_collision_profile140)_ 7.37347248924845530e+02 +Electron-electron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_electron_collision_profile141)_ 7.38623706243830952e+02 +Electron-electron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_electron_collision_profile142)_ 7.39912825835269587e+02 +Electron-electron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_electron_collision_profile143)_ 7.41214697093153745e+02 +Electron-electron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_electron_collision_profile144)_ 7.42529410571953690e+02 +Electron-electron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_electron_collision_profile145)_ 7.43857058001008340e+02 +Electron-electron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_electron_collision_profile146)_ 7.45197732299144832e+02 +Electron-electron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_electron_collision_profile147)_ 7.46551527589546026e+02 +Electron-electron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_electron_collision_profile148)_ 7.47918539214850625e+02 +Electron-electron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_electron_collision_profile149)_ 7.49298863752503053e+02 +Electron-electron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_electron_collision_profile150)_ 7.50692599030354472e+02 +Electron-electron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_electron_collision_profile151)_ 7.52099844142516417e+02 +Electron-electron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_electron_collision_profile152)_ 7.53520699465474650e+02 +Electron-electron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_electron_collision_profile153)_ 7.54955266674462109e+02 +Electron-electron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_electron_collision_profile154)_ 7.56403648760106762e+02 +Electron-electron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_electron_collision_profile155)_ 7.57865950045342515e+02 +Electron-electron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_electron_collision_profile156)_ 7.59342276202604012e+02 +Electron-electron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_electron_collision_profile157)_ 7.60832734271298023e+02 +Electron-electron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_electron_collision_profile158)_ 7.62337432675564173e+02 +Electron-electron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_electron_collision_profile159)_ 7.63856481242323525e+02 +Electron-electron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_electron_collision_profile160)_ 7.65389991219626495e+02 +Electron-electron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_electron_collision_profile161)_ 7.66938075295299086e+02 +Electron-electron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_electron_collision_profile162)_ 7.68500847615895623e+02 +Electron-electron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_electron_collision_profile163)_ 7.70078423805965599e+02 +Electron-electron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_electron_collision_profile164)_ 7.71670920987633167e+02 +Electron-electron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_electron_collision_profile165)_ 7.73278457800502792e+02 +Electron-electron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_electron_collision_profile166)_ 7.74901154421888805e+02 +Electron-electron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_electron_collision_profile167)_ 7.76539132587384529e+02 +Electron-electron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_electron_collision_profile168)_ 7.78192515611762587e+02 +Electron-electron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_electron_collision_profile169)_ 7.79861428410227063e+02 +Electron-electron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_electron_collision_profile170)_ 7.81545997520015021e+02 +Electron-electron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_electron_collision_profile171)_ 7.83246351122352962e+02 +Electron-electron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_electron_collision_profile172)_ 7.84962619064780029e+02 +Electron-electron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_electron_collision_profile173)_ 7.86694932883839897e+02 +Electron-electron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_electron_collision_profile174)_ 7.88443425828148293e+02 +Electron-electron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_electron_collision_profile175)_ 7.90208232881843514e+02 +Electron-electron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_electron_collision_profile176)_ 7.91989490788428498e+02 +Electron-electron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_electron_collision_profile177)_ 7.93787338075007824e+02 +Electron-electron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_electron_collision_profile178)_ 7.95601915076928435e+02 +Electron-electron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_electron_collision_profile179)_ 7.97433363962829162e+02 +Electron-electron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_electron_collision_profile180)_ 7.99281828760113285e+02 +Electron-electron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_electron_collision_profile181)_ 8.01147455380840256e+02 +Electron-electron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_electron_collision_profile182)_ 8.03030391648053751e+02 +Electron-electron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_electron_collision_profile183)_ 8.04930787322548667e+02 +Electron-electron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_electron_collision_profile184)_ 8.06848794130086958e+02 +Electron-electron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_electron_collision_profile185)_ 8.08784565789069575e+02 +Electron-electron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_electron_collision_profile186)_ 8.10738258038671461e+02 +Electron-electron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_electron_collision_profile187)_ 8.12710028667449933e+02 +Electron-electron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_electron_collision_profile188)_ 8.14700037542434984e+02 +Electron-electron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_electron_collision_profile189)_ 8.16708446638705823e+02 +Electron-electron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_electron_collision_profile190)_ 8.18735420069467864e+02 +Electron-electron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_electron_collision_profile191)_ 8.20781124116637102e+02 +Electron-electron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_electron_collision_profile192)_ 8.22845727261938691e+02 +Electron-electron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_electron_collision_profile193)_ 8.24929400218530077e+02 +Electron-electron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_electron_collision_profile194)_ 8.27032315963163342e+02 +Electron-electron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_electron_collision_profile195)_ 8.29154649768884951e+02 +Electron-electron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_electron_collision_profile196)_ 8.31296579238295408e+02 +Electron-electron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_electron_collision_profile197)_ 8.33458284337366877e+02 +Electron-electron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_electron_collision_profile198)_ 8.35639947429841754e+02 +Electron-electron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_electron_collision_profile199)_ 8.37841753312207061e+02 +Electron-electron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_electron_collision_profile200)_ 8.40063889249270005e+02 +Electron-electron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_electron_collision_profile201)_ 8.42306545010335753e+02 +Electron-electron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_electron_collision_profile202)_ 8.44569912906000809e+02 +Electron-electron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_electron_collision_profile203)_ 8.46854187825575764e+02 +Electron-electron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_electron_collision_profile204)_ 8.49159567275143559e+02 +Electron-electron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_electron_collision_profile205)_ 8.51486251416268942e+02 +Electron-electron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_electron_collision_profile206)_ 8.53834443105369701e+02 +Electron-electron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_electron_collision_profile207)_ 8.56204347933760459e+02 +Electron-electron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_electron_collision_profile208)_ 8.58596174268380196e+02 +Electron-electron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_electron_collision_profile209)_ 8.61010133293221884e+02 +Electron-electron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_electron_collision_profile210)_ 8.63446439051465973e+02 +Electron-electron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_electron_collision_profile211)_ 8.65905308488343849e+02 +Electron-electron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_electron_collision_profile212)_ 8.68386961494728553e+02 +Electron-electron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_electron_collision_profile213)_ 8.70891620951481968e+02 +Electron-electron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_electron_collision_profile214)_ 8.73419512774560644e+02 +Electron-electron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_electron_collision_profile215)_ 8.75970865960897981e+02 +Electron-electron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_electron_collision_profile216)_ 8.78545912635075865e+02 +Electron-electron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_electron_collision_profile217)_ 8.81144888096801651e+02 +Electron-electron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_electron_collision_profile218)_ 8.83768030869202335e+02 +Electron-electron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_electron_collision_profile219)_ 8.86415582747950907e+02 +Electron-electron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_electron_collision_profile220)_ 8.89087788851241271e+02 +Electron-electron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_electron_collision_profile221)_ 8.91784897670626492e+02 +Electron-electron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_electron_collision_profile222)_ 8.94507161122733578e+02 +Electron-electron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_electron_collision_profile223)_ 8.97254834601873767e+02 +Electron-electron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_electron_collision_profile224)_ 9.00028177033560496e+02 +Electron-electron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_electron_collision_profile225)_ 9.02827450928953226e+02 +Electron-electron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_electron_collision_profile226)_ 9.05652922440246016e+02 +Electron-electron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_electron_collision_profile227)_ 9.08504861417010261e+02 +Electron-electron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_electron_collision_profile228)_ 9.11383541463516735e+02 +Electron-electron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_electron_collision_profile229)_ 9.14289239997047162e+02 +Electron-electron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_electron_collision_profile230)_ 9.17222238307220209e+02 +Electron-electron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_electron_collision_profile231)_ 9.20182821616339197e+02 +Electron-electron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_electron_collision_profile232)_ 9.23171279140791398e+02 +Electron-electron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_electron_collision_profile233)_ 9.26187904153507134e+02 +Electron-electron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_electron_collision_profile234)_ 9.29232994047503666e+02 +Electron-electron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_electron_collision_profile235)_ 9.32306850400529470e+02 +Electron-electron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_electron_collision_profile236)_ 9.35409779040827743e+02 +Electron-electron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_electron_collision_profile237)_ 9.38542090114043731e+02 +Electron-electron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_electron_collision_profile238)_ 9.41704098151281300e+02 +Electron-electron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_electron_collision_profile239)_ 9.44896122138354372e+02 +Electron-electron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_electron_collision_profile240)_ 9.48118485586218867e+02 +Electron-electron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_electron_collision_profile241)_ 9.51371516602639986e+02 +Electron-electron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_electron_collision_profile242)_ 9.54655547965090477e+02 +Electron-electron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_electron_collision_profile243)_ 9.57970917194911181e+02 +Electron-electron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_electron_collision_profile244)_ 9.61317966632755997e+02 +Electron-electron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_electron_collision_profile245)_ 9.64697043515340170e+02 +Electron-electron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_electron_collision_profile246)_ 9.68108500053511420e+02 +Electron-electron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_electron_collision_profile247)_ 9.71552693511669304e+02 +Electron-electron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_electron_collision_profile248)_ 9.75029986288554824e+02 +Electron-electron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_electron_collision_profile249)_ 9.78540745999429532e+02 +Electron-electron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_electron_collision_profile250)_ 9.82085345559671282e+02 +Electron-electron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_electron_collision_profile251)_ 9.85664163269802771e+02 +Electron-electron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_electron_collision_profile252)_ 9.89277582901985738e+02 +Electron-electron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_electron_collision_profile253)_ 9.92925993787993320e+02 +Electron-electron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_electron_collision_profile254)_ 9.96609790908692730e+02 +Electron-electron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_electron_collision_profile255)_ 1.00032937498505044e+03 +Electron-electron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_electron_collision_profile256)_ 1.00408515257070405e+03 +Electron-electron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_electron_collision_profile257)_ 1.00787753614609960e+03 +Electron-electron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_electron_collision_profile258)_ 1.01170694421423559e+03 +Electron-electron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_electron_collision_profile259)_ 1.01557380139803411e+03 +Electron-electron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_electron_collision_profile260)_ 1.01947853853935749e+03 +Electron-electron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_electron_collision_profile261)_ 1.02342159279970417e+03 +Electron-electron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_electron_collision_profile262)_ 1.02740340776259904e+03 +Electron-electron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_electron_collision_profile263)_ 1.03142443353770977e+03 +Electron-electron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_electron_collision_profile264)_ 1.03548512686670506e+03 +Electron-electron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_electron_collision_profile265)_ 1.03958595123089367e+03 +Electron-electron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_electron_collision_profile266)_ 1.04372737696064883e+03 +Electron-electron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_electron_collision_profile267)_ 1.04790988134666145e+03 +Electron-electron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_electron_collision_profile268)_ 1.05213394875303015e+03 +Electron-electron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_electron_collision_profile269)_ 1.05640007073222841e+03 +Electron-electron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_electron_collision_profile270)_ 1.06070874614195259e+03 +Electron-electron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_electron_collision_profile271)_ 1.06506048126389646e+03 +Electron-electron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_electron_collision_profile272)_ 1.06945578992445530e+03 +Electron-electron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_electron_collision_profile273)_ 1.07389519361739849e+03 +Electron-electron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_electron_collision_profile274)_ 1.07837922162852055e+03 +Electron-electron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_electron_collision_profile275)_ 1.08290841116230695e+03 +Electron-electron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_electron_collision_profile276)_ 1.08748330747061641e+03 +Electron-electron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_electron_collision_profile277)_ 1.09210446398342356e+03 +Electron-electron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_electron_collision_profile278)_ 1.09677244244162353e+03 +Electron-electron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_electron_collision_profile279)_ 1.10148781303193300e+03 +Electron-electron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_electron_collision_profile280)_ 1.10625115452389059e+03 +Electron-electron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_electron_collision_profile281)_ 1.11106305440899473e+03 +Electron-electron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_electron_collision_profile282)_ 1.11592410904197982e+03 +Electron-electron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_electron_collision_profile283)_ 1.12083492378425126e+03 +Electron-electron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_electron_collision_profile284)_ 1.12579611314950512e+03 +Electron-electron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_electron_collision_profile285)_ 1.13080830095152237e+03 +Electron-electron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_electron_collision_profile286)_ 1.13587212045418505e+03 +Electron-electron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_electron_collision_profile287)_ 1.14098821452368838e+03 +Electron-electron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_electron_collision_profile288)_ 1.14615723578299071e+03 +Electron-electron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_electron_collision_profile289)_ 1.15137984676848055e+03 +Electron-electron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_electron_collision_profile290)_ 1.15665672008889874e+03 +Electron-electron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_electron_collision_profile291)_ 1.16198853858648408e+03 +Electron-electron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_electron_collision_profile292)_ 1.16737599550037908e+03 +Electron-electron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_electron_collision_profile293)_ 1.17281979463226708e+03 +Electron-electron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_electron_collision_profile294)_ 1.17832065051425889e+03 +Electron-electron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_electron_collision_profile295)_ 1.18387928857901125e+03 +Electron-electron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_electron_collision_profile296)_ 1.18949644533207379e+03 +Electron-electron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_electron_collision_profile297)_ 1.19517286852644861e+03 +Electron-electron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_electron_collision_profile298)_ 1.20090931733936100e+03 +Electron-electron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_electron_collision_profile299)_ 1.20670656255119980e+03 +Electron-electron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_electron_collision_profile300)_ 1.21256538672663169e+03 +Electron-electron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_electron_collision_profile301)_ 1.21848658439784072e+03 +Electron-electron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_electron_collision_profile302)_ 1.22447096224988195e+03 +Electron-electron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_electron_collision_profile303)_ 1.23051933930809355e+03 +Electron-electron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_electron_collision_profile304)_ 1.23663254712755133e+03 +Electron-electron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_electron_collision_profile305)_ 1.24281142998449559e+03 +Electron-electron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_electron_collision_profile306)_ 1.24905684506969806e+03 +Electron-electron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_electron_collision_profile307)_ 1.25536966268370156e+03 +Electron-electron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_electron_collision_profile308)_ 1.26175076643387547e+03 +Electron-electron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_electron_collision_profile309)_ 1.26820105343320438e+03 +Electron-electron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_electron_collision_profile310)_ 1.27472143450075191e+03 +Electron-electron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_electron_collision_profile311)_ 1.28131283436368835e+03 +Electron-electron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_electron_collision_profile312)_ 1.28797619186081738e+03 +Electron-electron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_electron_collision_profile313)_ 1.29471246014746293e+03 +Electron-electron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_electron_collision_profile314)_ 1.30152260690164599e+03 +Electron-electron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_electron_collision_profile315)_ 1.30840761453138498e+03 +Electron-electron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_electron_collision_profile316)_ 1.31536848038302128e+03 +Electron-electron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_electron_collision_profile317)_ 1.32240621695040591e+03 +Electron-electron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_electron_collision_profile318)_ 1.32952185208478818e+03 +Electron-electron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_electron_collision_profile319)_ 1.33671642920525551e+03 +Electron-electron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_electron_collision_profile320)_ 1.34399100750951584e+03 +Electron-electron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_electron_collision_profile321)_ 1.35134666218484222e+03 +Electron-electron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_electron_collision_profile322)_ 1.35878448461895550e+03 +Electron-electron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_electron_collision_profile323)_ 1.36630558261062015e+03 +Electron-electron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_electron_collision_profile324)_ 1.37391108057969632e+03 +Electron-electron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_electron_collision_profile325)_ 1.38160211977639710e+03 +Electron-electron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_electron_collision_profile326)_ 1.38937985848944322e+03 +Electron-electron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_electron_collision_profile327)_ 1.39724547225282504e+03 +Electron-electron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_electron_collision_profile328)_ 1.40520015405083450e+03 +Electron-electron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_electron_collision_profile329)_ 1.41324511452100523e+03 +Electron-electron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_electron_collision_profile330)_ 1.42138158215460271e+03 +Electron-electron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_electron_collision_profile331)_ 1.42961080349423287e+03 +Electron-electron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_electron_collision_profile332)_ 1.43793404332815817e+03 +Electron-electron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_electron_collision_profile333)_ 1.44635258488083741e+03 +Electron-electron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_electron_collision_profile334)_ 1.45486772999920845e+03 +Electron-electron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_electron_collision_profile335)_ 1.46348079933417580e+03 +Electron-electron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_electron_collision_profile336)_ 1.47219313251673861e+03 +Electron-electron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_electron_collision_profile337)_ 1.48100608832815396e+03 +Electron-electron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_electron_collision_profile338)_ 1.48992104486349876e+03 +Electron-electron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_electron_collision_profile339)_ 1.49893939968793075e+03 +Electron-electron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_electron_collision_profile340)_ 1.50806256998492404e+03 +Electron-electron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_electron_collision_profile341)_ 1.51729199269570472e+03 +Electron-electron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_electron_collision_profile342)_ 1.52662912464903934e+03 +Electron-electron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_electron_collision_profile343)_ 1.53607544268050378e+03 +Electron-electron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_electron_collision_profile344)_ 1.54563244374028591e+03 +Electron-electron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_electron_collision_profile345)_ 1.55530164498852469e+03 +Electron-electron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_electron_collision_profile346)_ 1.56508458387709629e+03 +Electron-electron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_electron_collision_profile347)_ 1.57498281821674823e+03 +Electron-electron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_electron_collision_profile348)_ 1.58499792622833957e+03 +Electron-electron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_electron_collision_profile349)_ 1.59513150657692154e+03 +Electron-electron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_electron_collision_profile350)_ 1.60538517838729172e+03 +Electron-electron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_electron_collision_profile351)_ 1.61576058123956386e+03 +Electron-electron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_electron_collision_profile352)_ 1.62625937514321845e+03 +Electron-electron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_electron_collision_profile353)_ 1.63688324048799200e+03 +Electron-electron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_electron_collision_profile354)_ 1.64763387796987104e+03 +Electron-electron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_electron_collision_profile355)_ 1.65851300849032987e+03 +Electron-electron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_electron_collision_profile356)_ 1.66952237302687195e+03 +Electron-electron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_electron_collision_profile357)_ 1.68066373247276715e+03 +Electron-electron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_electron_collision_profile358)_ 1.69193886744378824e+03 +Electron-electron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_electron_collision_profile359)_ 1.70334957804960254e+03 +Electron-electron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_electron_collision_profile360)_ 1.71489768362730683e+03 +Electron-electron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_electron_collision_profile361)_ 1.72658502243449698e+03 +Electron-electron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_electron_collision_profile362)_ 1.73841345129903061e+03 +Electron-electron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_electron_collision_profile363)_ 1.75038484522253657e+03 +Electron-electron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_electron_collision_profile364)_ 1.76250109693450554e+03 +Electron-electron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_electron_collision_profile365)_ 1.77476411639360276e+03 +Electron-electron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_electron_collision_profile366)_ 1.78717583023269162e+03 +Electron-electron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_electron_collision_profile367)_ 1.79973818114375581e+03 +Electron-electron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_electron_collision_profile368)_ 1.81245312719877370e+03 +Electron-electron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_electron_collision_profile369)_ 1.82532264110229403e+03 +Electron-electron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_electron_collision_profile370)_ 1.83834870937123537e+03 +Electron-electron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_electron_collision_profile371)_ 1.85153333143715690e+03 +Electron-electron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_electron_collision_profile372)_ 1.86487851866597725e+03 +Electron-electron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_electron_collision_profile373)_ 1.87838629328978277e+03 +Electron-electron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_electron_collision_profile374)_ 1.89205868724509469e+03 +Electron-electron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_electron_collision_profile375)_ 1.90589774091159939e+03 +Electron-electron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_electron_collision_profile376)_ 1.91990550174498298e+03 +Electron-electron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_electron_collision_profile377)_ 1.93408402279717211e+03 +Electron-electron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_electron_collision_profile378)_ 1.94843536111683443e+03 +Electron-electron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_electron_collision_profile379)_ 1.96296157602262701e+03 +Electron-electron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_electron_collision_profile380)_ 1.97766472724117830e+03 +Electron-electron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_electron_collision_profile381)_ 1.99254687290136326e+03 +Electron-electron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_electron_collision_profile382)_ 2.00761006737591697e+03 +Electron-electron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_electron_collision_profile383)_ 2.02285635896089866e+03 +Electron-electron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_electron_collision_profile384)_ 2.03828778738296569e+03 +Electron-electron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_electron_collision_profile385)_ 2.05390638112383704e+03 +Electron-electron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_electron_collision_profile386)_ 2.06971415455070064e+03 +Electron-electron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_electron_collision_profile387)_ 2.08571310484064043e+03 +Electron-electron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_electron_collision_profile388)_ 2.10190520868648991e+03 +Electron-electron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_electron_collision_profile389)_ 2.11829241877077538e+03 +Electron-electron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_electron_collision_profile390)_ 2.13487665999363435e+03 +Electron-electron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_electron_collision_profile391)_ 2.15165982543974542e+03 +Electron-electron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_electron_collision_profile392)_ 2.16864377206850349e+03 +Electron-electron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_electron_collision_profile393)_ 2.18583031611065962e+03 +Electron-electron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_electron_collision_profile394)_ 2.20322122815378270e+03 +Electron-electron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_electron_collision_profile395)_ 2.22081822789777334e+03 +Electron-electron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_electron_collision_profile396)_ 2.23862297856063196e+03 +Electron-electron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_electron_collision_profile397)_ 2.25663708091351464e+03 +Electron-electron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_electron_collision_profile398)_ 2.27486206692291398e+03 +Electron-electron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_electron_collision_profile399)_ 2.29329939297646570e+03 +Electron-electron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_electron_collision_profile400)_ 2.31195043266759603e+03 +Electron-electron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_electron_collision_profile401)_ 2.33081646911270536e+03 +Electron-electron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_electron_collision_profile402)_ 2.34989868677313507e+03 +Electron-electron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_electron_collision_profile403)_ 2.36919816275246103e+03 +Electron-electron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_electron_collision_profile404)_ 2.38871585753803947e+03 +Electron-electron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_electron_collision_profile405)_ 2.40845260515383370e+03 +Electron-electron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_electron_collision_profile406)_ 2.42840910268968582e+03 +Electron-electron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_electron_collision_profile407)_ 2.44858589917007157e+03 +Electron-electron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_electron_collision_profile408)_ 2.46898338372333683e+03 +Electron-electron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_electron_collision_profile409)_ 2.48960177300991018e+03 +Electron-electron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_electron_collision_profile410)_ 2.51044109786571971e+03 +Electron-electron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_electron_collision_profile411)_ 2.53150118911426443e+03 +Electron-electron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_electron_collision_profile412)_ 2.55278166249807737e+03 +Electron-electron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_electron_collision_profile413)_ 2.57428190267723903e+03 +Electron-electron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_electron_collision_profile414)_ 2.59600104623948437e+03 +Electron-electron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_electron_collision_profile415)_ 2.61793796366287779e+03 +Electron-electron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_electron_collision_profile416)_ 2.64009124016840133e+03 +Electron-electron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_electron_collision_profile417)_ 2.66245915539575981e+03 +Electron-electron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_electron_collision_profile418)_ 2.68503966183134798e+03 +Electron-electron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_electron_collision_profile419)_ 2.70783036191265091e+03 +Electron-electron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_electron_collision_profile420)_ 2.73082848372819353e+03 +Electron-electron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_electron_collision_profile421)_ 2.75403085522655965e+03 +Electron-electron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_electron_collision_profile422)_ 2.77743387684184245e+03 +Electron-electron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_electron_collision_profile423)_ 2.80103349243609728e+03 +Electron-electron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_electron_collision_profile424)_ 2.82482515845190437e+03 +Electron-electron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_electron_collision_profile425)_ 2.84880381115970022e+03 +Electron-electron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_electron_collision_profile426)_ 2.87296383187532456e+03 +Electron-electron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_electron_collision_profile427)_ 2.89729901001260714e+03 +Electron-electron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_electron_collision_profile428)_ 2.92180250382401800e+03 +Electron-electron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_electron_collision_profile429)_ 2.94646679866892691e+03 +Electron-electron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_electron_collision_profile430)_ 2.97128366263348335e+03 +Electron-electron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_electron_collision_profile431)_ 2.99624409930854381e+03 +Electron-electron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_electron_collision_profile432)_ 3.02133829751135318e+03 +Electron-electron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_electron_collision_profile433)_ 3.04655557771292933e+03 +Electron-electron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_electron_collision_profile434)_ 3.07188433490493890e+03 +Electron-electron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_electron_collision_profile435)_ 3.09731197760697842e+03 +Electron-electron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_electron_collision_profile436)_ 3.12282486267580634e+03 +Electron-electron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_electron_collision_profile437)_ 3.14840822553154521e+03 +Electron-electron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_electron_collision_profile438)_ 3.17404610535948996e+03 +Electron-electron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_electron_collision_profile439)_ 3.19972126477848906e+03 +Electron-electron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_electron_collision_profile440)_ 3.22541510338420539e+03 +Electron-electron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_electron_collision_profile441)_ 3.25110756447461245e+03 +Electron-electron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_electron_collision_profile442)_ 3.27677703414048892e+03 +Electron-electron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_electron_collision_profile443)_ 3.30240023174928865e+03 +Electron-electron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_electron_collision_profile444)_ 3.32795209065760992e+03 +Electron-electron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_electron_collision_profile445)_ 3.35340562774460841e+03 +Electron-electron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_electron_collision_profile446)_ 3.37873180005025051e+03 +Electron-electron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_electron_collision_profile447)_ 3.40389934640795491e+03 +Electron-electron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_electron_collision_profile448)_ 3.42887461145208999e+03 +Electron-electron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_electron_collision_profile449)_ 3.45362134871745457e+03 +Electron-electron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_electron_collision_profile450)_ 3.47810049867476801e+03 +Electron-electron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_electron_collision_profile451)_ 3.50226993638369095e+03 +Electron-electron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_electron_collision_profile452)_ 3.52608418187849566e+03 +Electron-electron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_electron_collision_profile453)_ 3.54949406426183350e+03 +Electron-electron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_electron_collision_profile454)_ 3.57244632751572544e+03 +Electron-electron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_electron_collision_profile455)_ 3.59488316185793929e+03 +Electron-electron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_electron_collision_profile456)_ 3.61674163846866441e+03 +Electron-electron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_electron_collision_profile457)_ 3.63795301661149415e+03 +Electron-electron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_electron_collision_profile458)_ 3.65844187896209451e+03 +Electron-electron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_electron_collision_profile459)_ 3.67812503058717039e+03 +Electron-electron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_electron_collision_profile460)_ 3.69691006461461757e+03 +Electron-electron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_electron_collision_profile461)_ 3.71469344420365451e+03 +Electron-electron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_electron_collision_profile462)_ 3.73135785848052546e+03 +Electron-electron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_electron_collision_profile463)_ 3.74676844362965858e+03 +Electron-electron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_electron_collision_profile464)_ 3.76076713957621814e+03 +Electron-electron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_electron_collision_profile465)_ 3.77316378473838995e+03 +Electron-electron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_electron_collision_profile466)_ 3.78372101323229572e+03 +Electron-electron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_electron_collision_profile467)_ 3.79212595985197095e+03 +Electron-electron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_electron_collision_profile468)_ 3.79792870461858774e+03 +Electron-electron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_electron_collision_profile469)_ 3.80036850483676699e+03 +Electron-electron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_electron_collision_profile470)_ 3.79730429192547490e+03 +Electron-electron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_electron_collision_profile471)_ 3.93071515055168129e+03 +Electron-electron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_electron_collision_profile472)_ 4.07475446674762770e+03 +Electron-electron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_electron_collision_profile473)_ 4.23071371065987023e+03 +Electron-electron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_electron_collision_profile474)_ 4.40009770477797883e+03 +Electron-electron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_electron_collision_profile475)_ 4.58466981703467991e+03 +Electron-electron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_electron_collision_profile476)_ 4.78650899527289857e+03 +Electron-electron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_electron_collision_profile477)_ 5.00808238917791277e+03 +Electron-electron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_electron_collision_profile478)_ 5.25233871227319014e+03 +Electron-electron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_electron_collision_profile479)_ 5.52282952196591395e+03 +Electron-electron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_electron_collision_profile480)_ 5.82386855607047892e+03 +Electron-electron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_electron_collision_profile481)_ 6.16074366211928373e+03 +Electron-electron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_electron_collision_profile482)_ 6.54000250548986241e+03 +Electron-electron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_electron_collision_profile483)_ 6.96984349327499967e+03 +Electron-electron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_electron_collision_profile484)_ 7.46065949272359103e+03 +Electron-electron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_electron_collision_profile485)_ 8.02580794568519650e+03 +Electron-electron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_electron_collision_profile486)_ 8.68272404141473271e+03 +Electron-electron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_electron_collision_profile487)_ 9.45456697525118943e+03 +Electron-electron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_electron_collision_profile488)_ 1.03727184918056792e+04 +Electron-electron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_electron_collision_profile489)_ 1.14806889784040450e+04 +Electron-electron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_electron_collision_profile490)_ 1.28404366274566710e+04 +Electron-electron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_electron_collision_profile491)_ 1.45430075054079589e+04 +Electron-electron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_electron_collision_profile492)_ 1.67273206686595731e+04 +Electron-electron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_electron_collision_profile493)_ 1.96152835695928698e+04 +Electron-electron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_electron_collision_profile494)_ 2.35822177108243268e+04 +Electron-electron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_electron_collision_profile495)_ 2.93112411035241566e+04 +Electron-electron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_electron_collision_profile496)_ 3.81735450834004951e+04 +Electron-electron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_electron_collision_profile497)_ 5.33283914578066615e+04 +Electron-electron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_electron_collision_profile498)_ 8.37654138786716940e+04 +Electron-electron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_electron_collision_profile499)_ 1.66685601330564998e+05 +Electron-electron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_electron_collision_profile500)_ 7.07728261518890853e+05 +Volume_averaged_electron-deuteron_collision_frequency_(Hz)_______________ (freq_plasma_electron_deuteron_collision_vol_avg)_ 1.16989639757552300e+03 +Electron-deuteron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_deuteron_collision_profile0)_ 5.32199106433111069e+02 +Electron-deuteron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_deuteron_collision_profile1)_ 5.32202158647326087e+02 +Electron-deuteron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_deuteron_collision_profile2)_ 5.32211315459945808e+02 +Electron-deuteron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_deuteron_collision_profile3)_ 5.32226577380915955e+02 +Electron-deuteron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_deuteron_collision_profile4)_ 5.32247945260215374e+02 +Electron-deuteron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_deuteron_collision_profile5)_ 5.32275420287960515e+02 +Electron-deuteron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_deuteron_collision_profile6)_ 5.32309003994552199e+02 +Electron-deuteron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_deuteron_collision_profile7)_ 5.32348698250863094e+02 +Electron-deuteron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_deuteron_collision_profile8)_ 5.32394505268468947e+02 +Electron-deuteron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_deuteron_collision_profile9)_ 5.32446427599918820e+02 +Electron-deuteron_collision_frequency_at_point_10________________________ (freq_plasma_electron_deuteron_collision_profile10)_ 5.32504468139050459e+02 +Electron-deuteron_collision_frequency_at_point_11________________________ (freq_plasma_electron_deuteron_collision_profile11)_ 5.32568630121346246e+02 +Electron-deuteron_collision_frequency_at_point_12________________________ (freq_plasma_electron_deuteron_collision_profile12)_ 5.32638917124330305e+02 +Electron-deuteron_collision_frequency_at_point_13________________________ (freq_plasma_electron_deuteron_collision_profile13)_ 5.32715333068009500e+02 +Electron-deuteron_collision_frequency_at_point_14________________________ (freq_plasma_electron_deuteron_collision_profile14)_ 5.32797882215357163e+02 +Electron-deuteron_collision_frequency_at_point_15________________________ (freq_plasma_electron_deuteron_collision_profile15)_ 5.32886569172836175e+02 +Electron-deuteron_collision_frequency_at_point_16________________________ (freq_plasma_electron_deuteron_collision_profile16)_ 5.32981398890968308e+02 +Electron-deuteron_collision_frequency_at_point_17________________________ (freq_plasma_electron_deuteron_collision_profile17)_ 5.33082376664943695e+02 +Electron-deuteron_collision_frequency_at_point_18________________________ (freq_plasma_electron_deuteron_collision_profile18)_ 5.33189508135273400e+02 +Electron-deuteron_collision_frequency_at_point_19________________________ (freq_plasma_electron_deuteron_collision_profile19)_ 5.33302799288486653e+02 +Electron-deuteron_collision_frequency_at_point_20________________________ (freq_plasma_electron_deuteron_collision_profile20)_ 5.33422256457868912e+02 +Electron-deuteron_collision_frequency_at_point_21________________________ (freq_plasma_electron_deuteron_collision_profile21)_ 5.33547886324243564e+02 +Electron-deuteron_collision_frequency_at_point_22________________________ (freq_plasma_electron_deuteron_collision_profile22)_ 5.33679695916798778e+02 +Electron-deuteron_collision_frequency_at_point_23________________________ (freq_plasma_electron_deuteron_collision_profile23)_ 5.33817692613955160e+02 +Electron-deuteron_collision_frequency_at_point_24________________________ (freq_plasma_electron_deuteron_collision_profile24)_ 5.33961884144279907e+02 +Electron-deuteron_collision_frequency_at_point_25________________________ (freq_plasma_electron_deuteron_collision_profile25)_ 5.34112278587441892e+02 +Electron-deuteron_collision_frequency_at_point_26________________________ (freq_plasma_electron_deuteron_collision_profile26)_ 5.34268884375214611e+02 +Electron-deuteron_collision_frequency_at_point_27________________________ (freq_plasma_electron_deuteron_collision_profile27)_ 5.34431710292518574e+02 +Electron-deuteron_collision_frequency_at_point_28________________________ (freq_plasma_electron_deuteron_collision_profile28)_ 5.34600765478513040e+02 +Electron-deuteron_collision_frequency_at_point_29________________________ (freq_plasma_electron_deuteron_collision_profile29)_ 5.34776059427729479e+02 +Electron-deuteron_collision_frequency_at_point_30________________________ (freq_plasma_electron_deuteron_collision_profile30)_ 5.34957601991251749e+02 +Electron-deuteron_collision_frequency_at_point_31________________________ (freq_plasma_electron_deuteron_collision_profile31)_ 5.35145403377939601e+02 +Electron-deuteron_collision_frequency_at_point_32________________________ (freq_plasma_electron_deuteron_collision_profile32)_ 5.35339474155699691e+02 +Electron-deuteron_collision_frequency_at_point_33________________________ (freq_plasma_electron_deuteron_collision_profile33)_ 5.35539825252800824e+02 +Electron-deuteron_collision_frequency_at_point_34________________________ (freq_plasma_electron_deuteron_collision_profile34)_ 5.35746467959237521e+02 +Electron-deuteron_collision_frequency_at_point_35________________________ (freq_plasma_electron_deuteron_collision_profile35)_ 5.35959413928135518e+02 +Electron-deuteron_collision_frequency_at_point_36________________________ (freq_plasma_electron_deuteron_collision_profile36)_ 5.36178675177209925e+02 +Electron-deuteron_collision_frequency_at_point_37________________________ (freq_plasma_electron_deuteron_collision_profile37)_ 5.36404264090264519e+02 +Electron-deuteron_collision_frequency_at_point_38________________________ (freq_plasma_electron_deuteron_collision_profile38)_ 5.36636193418742096e+02 +Electron-deuteron_collision_frequency_at_point_39________________________ (freq_plasma_electron_deuteron_collision_profile39)_ 5.36874476283321201e+02 +Electron-deuteron_collision_frequency_at_point_40________________________ (freq_plasma_electron_deuteron_collision_profile40)_ 5.37119126175561405e+02 +Electron-deuteron_collision_frequency_at_point_41________________________ (freq_plasma_electron_deuteron_collision_profile41)_ 5.37370156959593487e+02 +Electron-deuteron_collision_frequency_at_point_42________________________ (freq_plasma_electron_deuteron_collision_profile42)_ 5.37627582873864981e+02 +Electron-deuteron_collision_frequency_at_point_43________________________ (freq_plasma_electron_deuteron_collision_profile43)_ 5.37891418532928355e+02 +Electron-deuteron_collision_frequency_at_point_44________________________ (freq_plasma_electron_deuteron_collision_profile44)_ 5.38161678929279788e+02 +Electron-deuteron_collision_frequency_at_point_45________________________ (freq_plasma_electron_deuteron_collision_profile45)_ 5.38438379435252841e+02 +Electron-deuteron_collision_frequency_at_point_46________________________ (freq_plasma_electron_deuteron_collision_profile46)_ 5.38721535804953987e+02 +Electron-deuteron_collision_frequency_at_point_47________________________ (freq_plasma_electron_deuteron_collision_profile47)_ 5.39011164176257239e+02 +Electron-deuteron_collision_frequency_at_point_48________________________ (freq_plasma_electron_deuteron_collision_profile48)_ 5.39307281072841420e+02 +Electron-deuteron_collision_frequency_at_point_49________________________ (freq_plasma_electron_deuteron_collision_profile49)_ 5.39609903406286890e+02 +Electron-deuteron_collision_frequency_at_point_50________________________ (freq_plasma_electron_deuteron_collision_profile50)_ 5.39919048478218315e+02 +Electron-deuteron_collision_frequency_at_point_51________________________ (freq_plasma_electron_deuteron_collision_profile51)_ 5.40234733982502917e+02 +Electron-deuteron_collision_frequency_at_point_52________________________ (freq_plasma_electron_deuteron_collision_profile52)_ 5.40556978007499993e+02 +Electron-deuteron_collision_frequency_at_point_53________________________ (freq_plasma_electron_deuteron_collision_profile53)_ 5.40885799038364098e+02 +Electron-deuteron_collision_frequency_at_point_54________________________ (freq_plasma_electron_deuteron_collision_profile54)_ 5.41221215959403025e+02 +Electron-deuteron_collision_frequency_at_point_55________________________ (freq_plasma_electron_deuteron_collision_profile55)_ 5.41563248056490238e+02 +Electron-deuteron_collision_frequency_at_point_56________________________ (freq_plasma_electron_deuteron_collision_profile56)_ 5.41911915019528692e+02 +Electron-deuteron_collision_frequency_at_point_57________________________ (freq_plasma_electron_deuteron_collision_profile57)_ 5.42267236944974911e+02 +Electron-deuteron_collision_frequency_at_point_58________________________ (freq_plasma_electron_deuteron_collision_profile58)_ 5.42629234338415813e+02 +Electron-deuteron_collision_frequency_at_point_59________________________ (freq_plasma_electron_deuteron_collision_profile59)_ 5.42997928117203287e+02 +Electron-deuteron_collision_frequency_at_point_60________________________ (freq_plasma_electron_deuteron_collision_profile60)_ 5.43373339613145504e+02 +Electron-deuteron_collision_frequency_at_point_61________________________ (freq_plasma_electron_deuteron_collision_profile61)_ 5.43755490575255862e+02 +Electron-deuteron_collision_frequency_at_point_62________________________ (freq_plasma_electron_deuteron_collision_profile62)_ 5.44144403172560146e+02 +Electron-deuteron_collision_frequency_at_point_63________________________ (freq_plasma_electron_deuteron_collision_profile63)_ 5.44540099996962567e+02 +Electron-deuteron_collision_frequency_at_point_64________________________ (freq_plasma_electron_deuteron_collision_profile64)_ 5.44942604066171498e+02 +Electron-deuteron_collision_frequency_at_point_65________________________ (freq_plasma_electron_deuteron_collision_profile65)_ 5.45351938826685910e+02 +Electron-deuteron_collision_frequency_at_point_66________________________ (freq_plasma_electron_deuteron_collision_profile66)_ 5.45768128156840248e+02 +Electron-deuteron_collision_frequency_at_point_67________________________ (freq_plasma_electron_deuteron_collision_profile67)_ 5.46191196369914223e+02 +Electron-deuteron_collision_frequency_at_point_68________________________ (freq_plasma_electron_deuteron_collision_profile68)_ 5.46621168217302625e+02 +Electron-deuteron_collision_frequency_at_point_69________________________ (freq_plasma_electron_deuteron_collision_profile69)_ 5.47058068891747098e+02 +Electron-deuteron_collision_frequency_at_point_70________________________ (freq_plasma_electron_deuteron_collision_profile70)_ 5.47501924030634314e+02 +Electron-deuteron_collision_frequency_at_point_71________________________ (freq_plasma_electron_deuteron_collision_profile71)_ 5.47952759719356095e+02 +Electron-deuteron_collision_frequency_at_point_72________________________ (freq_plasma_electron_deuteron_collision_profile72)_ 5.48410602494735826e+02 +Electron-deuteron_collision_frequency_at_point_73________________________ (freq_plasma_electron_deuteron_collision_profile73)_ 5.48875479348519320e+02 +Electron-deuteron_collision_frequency_at_point_74________________________ (freq_plasma_electron_deuteron_collision_profile74)_ 5.49347417730935717e+02 +Electron-deuteron_collision_frequency_at_point_75________________________ (freq_plasma_electron_deuteron_collision_profile75)_ 5.49826445554319093e+02 +Electron-deuteron_collision_frequency_at_point_76________________________ (freq_plasma_electron_deuteron_collision_profile76)_ 5.50312591196807034e+02 +Electron-deuteron_collision_frequency_at_point_77________________________ (freq_plasma_electron_deuteron_collision_profile77)_ 5.50805883506100031e+02 +Electron-deuteron_collision_frequency_at_point_78________________________ (freq_plasma_electron_deuteron_collision_profile78)_ 5.51306351803297048e+02 +Electron-deuteron_collision_frequency_at_point_79________________________ (freq_plasma_electron_deuteron_collision_profile79)_ 5.51814025886797481e+02 +Electron-deuteron_collision_frequency_at_point_80________________________ (freq_plasma_electron_deuteron_collision_profile80)_ 5.52328936036277128e+02 +Electron-deuteron_collision_frequency_at_point_81________________________ (freq_plasma_electron_deuteron_collision_profile81)_ 5.52851113016735894e+02 +Electron-deuteron_collision_frequency_at_point_82________________________ (freq_plasma_electron_deuteron_collision_profile82)_ 5.53380588082619738e+02 +Electron-deuteron_collision_frequency_at_point_83________________________ (freq_plasma_electron_deuteron_collision_profile83)_ 5.53917392982015258e+02 +Electron-deuteron_collision_frequency_at_point_84________________________ (freq_plasma_electron_deuteron_collision_profile84)_ 5.54461559960921136e+02 +Electron-deuteron_collision_frequency_at_point_85________________________ (freq_plasma_electron_deuteron_collision_profile85)_ 5.55013121767595976e+02 +Electron-deuteron_collision_frequency_at_point_86________________________ (freq_plasma_electron_deuteron_collision_profile86)_ 5.55572111656982770e+02 +Electron-deuteron_collision_frequency_at_point_87________________________ (freq_plasma_electron_deuteron_collision_profile87)_ 5.56138563395211236e+02 +Electron-deuteron_collision_frequency_at_point_88________________________ (freq_plasma_electron_deuteron_collision_profile88)_ 5.56712511264181217e+02 +Electron-deuteron_collision_frequency_at_point_89________________________ (freq_plasma_electron_deuteron_collision_profile89)_ 5.57293990066224183e+02 +Electron-deuteron_collision_frequency_at_point_90________________________ (freq_plasma_electron_deuteron_collision_profile90)_ 5.57883035128848405e+02 +Electron-deuteron_collision_frequency_at_point_91________________________ (freq_plasma_electron_deuteron_collision_profile91)_ 5.58479682309566783e+02 +Electron-deuteron_collision_frequency_at_point_92________________________ (freq_plasma_electron_deuteron_collision_profile92)_ 5.59083968000805385e+02 +Electron-deuteron_collision_frequency_at_point_93________________________ (freq_plasma_electron_deuteron_collision_profile93)_ 5.59695929134899757e+02 +Electron-deuteron_collision_frequency_at_point_94________________________ (freq_plasma_electron_deuteron_collision_profile94)_ 5.60315603189176841e+02 +Electron-deuteron_collision_frequency_at_point_95________________________ (freq_plasma_electron_deuteron_collision_profile95)_ 5.60943028191123176e+02 +Electron-deuteron_collision_frequency_at_point_96________________________ (freq_plasma_electron_deuteron_collision_profile96)_ 5.61578242723642916e+02 +Electron-deuteron_collision_frequency_at_point_97________________________ (freq_plasma_electron_deuteron_collision_profile97)_ 5.62221285930403042e+02 +Electron-deuteron_collision_frequency_at_point_98________________________ (freq_plasma_electron_deuteron_collision_profile98)_ 5.62872197521272142e+02 +Electron-deuteron_collision_frequency_at_point_99________________________ (freq_plasma_electron_deuteron_collision_profile99)_ 5.63531017777849684e+02 +Electron-deuteron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_deuteron_collision_profile100)_ 5.64197787559090898e+02 +Electron-deuteron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_deuteron_collision_profile101)_ 5.64872548307022385e+02 +Electron-deuteron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_deuteron_collision_profile102)_ 5.65555342052559695e+02 +Electron-deuteron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_deuteron_collision_profile103)_ 5.66246211421415865e+02 +Electron-deuteron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_deuteron_collision_profile104)_ 5.66945199640114879e+02 +Electron-deuteron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_deuteron_collision_profile105)_ 5.67652350542103250e+02 +Electron-deuteron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_deuteron_collision_profile106)_ 5.68367708573961067e+02 +Electron-deuteron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_deuteron_collision_profile107)_ 5.69091318801721172e+02 +Electron-deuteron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_deuteron_collision_profile108)_ 5.69823226917288252e+02 +Electron-deuteron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_deuteron_collision_profile109)_ 5.70563479244970381e+02 +Electron-deuteron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_deuteron_collision_profile110)_ 5.71312122748111051e+02 +Electron-deuteron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_deuteron_collision_profile111)_ 5.72069205035838650e+02 +Electron-deuteron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_deuteron_collision_profile112)_ 5.72834774369920297e+02 +Electron-deuteron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_deuteron_collision_profile113)_ 5.73608879671734599e+02 +Electron-deuteron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_deuteron_collision_profile114)_ 5.74391570529354908e+02 +Electron-deuteron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_deuteron_collision_profile115)_ 5.75182897204750020e+02 +Electron-deuteron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_deuteron_collision_profile116)_ 5.75982910641105491e+02 +Electron-deuteron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_deuteron_collision_profile117)_ 5.76791662470260690e+02 +Electron-deuteron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_deuteron_collision_profile118)_ 5.77609205020271474e+02 +Electron-deuteron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_deuteron_collision_profile119)_ 5.78435591323094627e+02 +Electron-deuteron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_deuteron_collision_profile120)_ 5.79270875122397570e+02 +Electron-deuteron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_deuteron_collision_profile121)_ 5.80115110881497458e+02 +Electron-deuteron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_deuteron_collision_profile122)_ 5.80968353791428854e+02 +Electron-deuteron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_deuteron_collision_profile123)_ 5.81830659779141911e+02 +Electron-deuteron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_deuteron_collision_profile124)_ 5.82702085515835506e+02 +Electron-deuteron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_deuteron_collision_profile125)_ 5.83582688425426227e+02 +Electron-deuteron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_deuteron_collision_profile126)_ 5.84472526693154236e+02 +Electron-deuteron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_deuteron_collision_profile127)_ 5.85371659274330227e+02 +Electron-deuteron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_deuteron_collision_profile128)_ 5.86280145903223229e+02 +Electron-deuteron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_deuteron_collision_profile129)_ 5.87198047102094847e+02 +Electron-deuteron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_deuteron_collision_profile130)_ 5.88125424190377885e+02 +Electron-deuteron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_deuteron_collision_profile131)_ 5.89062339294007302e+02 +Electron-deuteron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_deuteron_collision_profile132)_ 5.90008855354899652e+02 +Electron-deuteron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_deuteron_collision_profile133)_ 5.90965036140587927e+02 +Electron-deuteron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_deuteron_collision_profile134)_ 5.91930946254014430e+02 +Electron-deuteron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_deuteron_collision_profile135)_ 5.92906651143478257e+02 +Electron-deuteron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_deuteron_collision_profile136)_ 5.93892217112749336e+02 +Electron-deuteron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_deuteron_collision_profile137)_ 5.94887711331344462e+02 +Electron-deuteron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_deuteron_collision_profile138)_ 5.95893201844969326e+02 +Electron-deuteron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_deuteron_collision_profile139)_ 5.96908757586131287e+02 +Electron-deuteron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_deuteron_collision_profile140)_ 5.97934448384925645e+02 +Electron-deuteron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_deuteron_collision_profile141)_ 5.98970344979994707e+02 +Electron-deuteron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_deuteron_collision_profile142)_ 6.00016519029666142e+02 +Electron-deuteron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_deuteron_collision_profile143)_ 6.01073043123273692e+02 +Electron-deuteron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_deuteron_collision_profile144)_ 6.02139990792659773e+02 +Electron-deuteron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_deuteron_collision_profile145)_ 6.03217436523867377e+02 +Electron-deuteron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_deuteron_collision_profile146)_ 6.04305455769018295e+02 +Electron-deuteron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_deuteron_collision_profile147)_ 6.05404124958391321e+02 +Electron-deuteron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_deuteron_collision_profile148)_ 6.06513521512690204e+02 +Electron-deuteron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_deuteron_collision_profile149)_ 6.07633723855516109e+02 +Electron-deuteron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_deuteron_collision_profile150)_ 6.08764811426041319e+02 +Electron-deuteron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_deuteron_collision_profile151)_ 6.09906864691889950e+02 +Electron-deuteron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_deuteron_collision_profile152)_ 6.11059965162230128e+02 +Electron-deuteron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_deuteron_collision_profile153)_ 6.12224195401076486e+02 +Electron-deuteron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_deuteron_collision_profile154)_ 6.13399639040815714e+02 +Electron-deuteron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_deuteron_collision_profile155)_ 6.14586380795946525e+02 +Electron-deuteron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_deuteron_collision_profile156)_ 6.15784506477049263e+02 +Electron-deuteron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_deuteron_collision_profile157)_ 6.16994103004982321e+02 +Electron-deuteron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_deuteron_collision_profile158)_ 6.18215258425311276e+02 +Electron-deuteron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_deuteron_collision_profile159)_ 6.19448061922973693e+02 +Electron-deuteron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_deuteron_collision_profile160)_ 6.20692603837186084e+02 +Electron-deuteron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_deuteron_collision_profile161)_ 6.21948975676593818e+02 +Electron-deuteron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_deuteron_collision_profile162)_ 6.23217270134671594e+02 +Electron-deuteron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_deuteron_collision_profile163)_ 6.24497581105375616e+02 +Electron-deuteron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_deuteron_collision_profile164)_ 6.25790003699052704e+02 +Electron-deuteron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_deuteron_collision_profile165)_ 6.27094634258615088e+02 +Electron-deuteron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_deuteron_collision_profile166)_ 6.28411570375974748e+02 +Electron-deuteron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_deuteron_collision_profile167)_ 6.29740910908757769e+02 +Electron-deuteron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_deuteron_collision_profile168)_ 6.31082755997285858e+02 +Electron-deuteron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_deuteron_collision_profile169)_ 6.32437207081844349e+02 +Electron-deuteron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_deuteron_collision_profile170)_ 6.33804366920232155e+02 +Electron-deuteron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_deuteron_collision_profile171)_ 6.35184339605605714e+02 +Electron-deuteron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_deuteron_collision_profile172)_ 6.36577230584612607e+02 +Electron-deuteron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_deuteron_collision_profile173)_ 6.37983146675833950e+02 +Electron-deuteron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_deuteron_collision_profile174)_ 6.39402196088523624e+02 +Electron-deuteron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_deuteron_collision_profile175)_ 6.40834488441666394e+02 +Electron-deuteron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_deuteron_collision_profile176)_ 6.42280134783348558e+02 +Electron-deuteron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_deuteron_collision_profile177)_ 6.43739247610451571e+02 +Electron-deuteron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_deuteron_collision_profile178)_ 6.45211940888675372e+02 +Electron-deuteron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_deuteron_collision_profile179)_ 6.46698330072891395e+02 +Electron-deuteron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_deuteron_collision_profile180)_ 6.48198532127840622e+02 +Electron-deuteron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_deuteron_collision_profile181)_ 6.49712665549173607e+02 +Electron-deuteron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_deuteron_collision_profile182)_ 6.51240850384841110e+02 +Electron-deuteron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_deuteron_collision_profile183)_ 6.52783208256848070e+02 +Electron-deuteron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_deuteron_collision_profile184)_ 6.54339862383364789e+02 +Electron-deuteron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_deuteron_collision_profile185)_ 6.55910937601215210e+02 +Electron-deuteron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_deuteron_collision_profile186)_ 6.57496560388736953e+02 +Electron-deuteron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_deuteron_collision_profile187)_ 6.59096858889030955e+02 +Electron-deuteron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_deuteron_collision_profile188)_ 6.60711962933596965e+02 +Electron-deuteron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_deuteron_collision_profile189)_ 6.62342004066368986e+02 +Electron-deuteron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_deuteron_collision_profile190)_ 6.63987115568156582e+02 +Electron-deuteron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_deuteron_collision_profile191)_ 6.65647432481495912e+02 +Electron-deuteron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_deuteron_collision_profile192)_ 6.67323091635921855e+02 +Electron-deuteron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_deuteron_collision_profile193)_ 6.69014231673666472e+02 +Electron-deuteron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_deuteron_collision_profile194)_ 6.70720993075792194e+02 +Electron-deuteron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_deuteron_collision_profile195)_ 6.72443518188766802e+02 +Electron-deuteron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_deuteron_collision_profile196)_ 6.74181951251489295e+02 +Electron-deuteron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_deuteron_collision_profile197)_ 6.75936438422773449e+02 +Electron-deuteron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_deuteron_collision_profile198)_ 6.77707127809297845e+02 +Electron-deuteron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_deuteron_collision_profile199)_ 6.79494169494031667e+02 +Electron-deuteron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_deuteron_collision_profile200)_ 6.81297715565140493e+02 +Electron-deuteron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_deuteron_collision_profile201)_ 6.83117920145390485e+02 +Electron-deuteron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_deuteron_collision_profile202)_ 6.84954939422045413e+02 +Electron-deuteron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_deuteron_collision_profile203)_ 6.86808931677280611e+02 +Electron-deuteron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_deuteron_collision_profile204)_ 6.88680057319109665e+02 +Electron-deuteron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_deuteron_collision_profile205)_ 6.90568478912844625e+02 +Electron-deuteron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_deuteron_collision_profile206)_ 6.92474361213089651e+02 +Electron-deuteron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_deuteron_collision_profile207)_ 6.94397871196285450e+02 +Electron-deuteron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_deuteron_collision_profile208)_ 6.96339178093806595e+02 +Electron-deuteron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_deuteron_collision_profile209)_ 6.98298453425631806e+02 +Electron-deuteron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_deuteron_collision_profile210)_ 7.00275871034584611e+02 +Electron-deuteron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_deuteron_collision_profile211)_ 7.02271607121168131e+02 +Electron-deuteron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_deuteron_collision_profile212)_ 7.04285840278992964e+02 +Electron-deuteron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_deuteron_collision_profile213)_ 7.06318751530817167e+02 +Electron-deuteron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_deuteron_collision_profile214)_ 7.08370524365203664e+02 +Electron-deuteron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_deuteron_collision_profile215)_ 7.10441344773811124e+02 +Electron-deuteron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_deuteron_collision_profile216)_ 7.12531401289323412e+02 +Electron-deuteron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_deuteron_collision_profile217)_ 7.14640885024037061e+02 +Electron-deuteron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_deuteron_collision_profile218)_ 7.16769989709109041e+02 +Electron-deuteron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_deuteron_collision_profile219)_ 7.18918911734486187e+02 +Electron-deuteron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_deuteron_collision_profile220)_ 7.21087850189520168e+02 +Electron-deuteron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_deuteron_collision_profile221)_ 7.23277006904287646e+02 +Electron-deuteron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_deuteron_collision_profile222)_ 7.25486586491619732e+02 +Electron-deuteron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_deuteron_collision_profile223)_ 7.27716796389862452e+02 +Electron-deuteron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_deuteron_collision_profile224)_ 7.29967846906374916e+02 +Electron-deuteron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_deuteron_collision_profile225)_ 7.32239951261778288e+02 +Electron-deuteron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_deuteron_collision_profile226)_ 7.34533325634974858e+02 +Electron-deuteron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_deuteron_collision_profile227)_ 7.36848189208942358e+02 +Electron-deuteron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_deuteron_collision_profile228)_ 7.39184764217323846e+02 +Electron-deuteron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_deuteron_collision_profile229)_ 7.41543275991824203e+02 +Electron-deuteron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_deuteron_collision_profile230)_ 7.43923953010428932e+02 +Electron-deuteron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_deuteron_collision_profile231)_ 7.46327026946455248e+02 +Electron-deuteron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_deuteron_collision_profile232)_ 7.48752732718458333e+02 +Electron-deuteron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_deuteron_collision_profile233)_ 7.51201308540998639e+02 +Electron-deuteron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_deuteron_collision_profile234)_ 7.53672995976292214e+02 +Electron-deuteron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_deuteron_collision_profile235)_ 7.56168039986754025e+02 +Electron-deuteron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_deuteron_collision_profile236)_ 7.58686688988455671e+02 +Electron-deuteron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_deuteron_collision_profile237)_ 7.61229194905504983e+02 +Electron-deuteron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_deuteron_collision_profile238)_ 7.63795813225372171e+02 +Electron-deuteron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_deuteron_collision_profile239)_ 7.66386803055175392e+02 +Electron-deuteron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_deuteron_collision_profile240)_ 7.69002427178934795e+02 +Electron-deuteron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_deuteron_collision_profile241)_ 7.71642952115827597e+02 +Electron-deuteron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_deuteron_collision_profile242)_ 7.74308648179444504e+02 +Electron-deuteron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_deuteron_collision_profile243)_ 7.76999789538074310e+02 +Electron-deuteron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_deuteron_collision_profile244)_ 7.79716654276030681e+02 +Electron-deuteron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_deuteron_collision_profile245)_ 7.82459524456041663e+02 +Electron-deuteron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_deuteron_collision_profile246)_ 7.85228686182709680e+02 +Electron-deuteron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_deuteron_collision_profile247)_ 7.88024429667077925e+02 +Electron-deuteron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_deuteron_collision_profile248)_ 7.90847049292300653e+02 +Electron-deuteron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_deuteron_collision_profile249)_ 7.93696843680448751e+02 +Electron-deuteron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_deuteron_collision_profile250)_ 7.96574115760467294e+02 +Electron-deuteron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_deuteron_collision_profile251)_ 7.99479172837299416e+02 +Electron-deuteron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_deuteron_collision_profile252)_ 8.02412326662197870e+02 +Electron-deuteron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_deuteron_collision_profile253)_ 8.05373893504244961e+02 +Electron-deuteron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_deuteron_collision_profile254)_ 8.08364194223095637e+02 +Electron-deuteron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_deuteron_collision_profile255)_ 8.11383554342962384e+02 +Electron-deuteron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_deuteron_collision_profile256)_ 8.14432304127872271e+02 +Electron-deuteron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_deuteron_collision_profile257)_ 8.17510778658200479e+02 +Electron-deuteron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_deuteron_collision_profile258)_ 8.20619317908506673e+02 +Electron-deuteron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_deuteron_collision_profile259)_ 8.23758266826697650e+02 +Electron-deuteron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_deuteron_collision_profile260)_ 8.26927975414528191e+02 +Electron-deuteron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_deuteron_collision_profile261)_ 8.30128798809468321e+02 +Electron-deuteron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_deuteron_collision_profile262)_ 8.33361097367946854e+02 +Electron-deuteron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_deuteron_collision_profile263)_ 8.36625236750002273e+02 +Electron-deuteron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_deuteron_collision_profile264)_ 8.39921588005347417e+02 +Electron-deuteron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_deuteron_collision_profile265)_ 8.43250527660885496e+02 +Electron-deuteron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_deuteron_collision_profile266)_ 8.46612437809679363e+02 +Electron-deuteron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_deuteron_collision_profile267)_ 8.50007706201404062e+02 +Electron-deuteron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_deuteron_collision_profile268)_ 8.53436726334297646e+02 +Electron-deuteron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_deuteron_collision_profile269)_ 8.56899897548640524e+02 +Electron-deuteron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_deuteron_collision_profile270)_ 8.60397625121760825e+02 +Electron-deuteron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_deuteron_collision_profile271)_ 8.63930320364611021e+02 +Electron-deuteron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_deuteron_collision_profile272)_ 8.67498400719911842e+02 +Electron-deuteron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_deuteron_collision_profile273)_ 8.71102289861900545e+02 +Electron-deuteron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_deuteron_collision_profile274)_ 8.74742417797687153e+02 +Electron-deuteron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_deuteron_collision_profile275)_ 8.78419220970251558e+02 +Electron-deuteron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_deuteron_collision_profile276)_ 8.82133142363081333e+02 +Electron-deuteron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_deuteron_collision_profile277)_ 8.85884631606484618e+02 +Electron-deuteron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_deuteron_collision_profile278)_ 8.89674145085583973e+02 +Electron-deuteron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_deuteron_collision_profile279)_ 8.93502146050013380e+02 +Electron-deuteron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_deuteron_collision_profile280)_ 8.97369104725328157e+02 +Electron-deuteron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_deuteron_collision_profile281)_ 9.01275498426148602e+02 +Electron-deuteron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_deuteron_collision_profile282)_ 9.05221811671049409e+02 +Electron-deuteron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_deuteron_collision_profile283)_ 9.09208536299204866e+02 +Electron-deuteron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_deuteron_collision_profile284)_ 9.13236171588809270e+02 +Electron-deuteron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_deuteron_collision_profile285)_ 9.17305224377273930e+02 +Electron-deuteron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_deuteron_collision_profile286)_ 9.21416209183226215e+02 +Electron-deuteron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_deuteron_collision_profile287)_ 9.25569648330300538e+02 +Electron-deuteron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_deuteron_collision_profile288)_ 9.29766072072751172e+02 +Electron-deuteron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_deuteron_collision_profile289)_ 9.34006018722868475e+02 +Electron-deuteron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_deuteron_collision_profile290)_ 9.38290034780231053e+02 +Electron-deuteron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_deuteron_collision_profile291)_ 9.42618675062772240e+02 +Electron-deuteron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_deuteron_collision_profile292)_ 9.46992502839682743e+02 +Electron-deuteron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_deuteron_collision_profile293)_ 9.51412089966133863e+02 +Electron-deuteron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_deuteron_collision_profile294)_ 9.55878017019830850e+02 +Electron-deuteron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_deuteron_collision_profile295)_ 9.60390873439383427e+02 +Electron-deuteron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_deuteron_collision_profile296)_ 9.64951257664494847e+02 +Electron-deuteron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_deuteron_collision_profile297)_ 9.69559777277950957e+02 +Electron-deuteron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_deuteron_collision_profile298)_ 9.74217049149412105e+02 +Electron-deuteron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_deuteron_collision_profile299)_ 9.78923699580972766e+02 +Electron-deuteron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_deuteron_collision_profile300)_ 9.83680364454489791e+02 +Electron-deuteron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_deuteron_collision_profile301)_ 9.88487689380649044e+02 +Electron-deuteron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_deuteron_collision_profile302)_ 9.93346329849749281e+02 +Electron-deuteron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_deuteron_collision_profile303)_ 9.98256951384168019e+02 +Electron-deuteron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_deuteron_collision_profile304)_ 1.00322022969248985e+03 +Electron-deuteron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_deuteron_collision_profile305)_ 1.00823685082524742e+03 +Electron-deuteron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_deuteron_collision_profile306)_ 1.01330751133224078e+03 +Electron-deuteron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_deuteron_collision_profile307)_ 1.01843291842138547e+03 +Electron-deuteron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_deuteron_collision_profile308)_ 1.02361379011904603e+03 +Electron-deuteron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_deuteron_collision_profile309)_ 1.02885085543178047e+03 +Electron-deuteron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_deuteron_collision_profile310)_ 1.03414485450945313e+03 +Electron-deuteron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_deuteron_collision_profile311)_ 1.03949653880962819e+03 +Electron-deuteron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_deuteron_collision_profile312)_ 1.04490667126318613e+03 +Electron-deuteron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_deuteron_collision_profile313)_ 1.05037602644105345e+03 +Electron-deuteron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_deuteron_collision_profile314)_ 1.05590539072198726e+03 +Electron-deuteron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_deuteron_collision_profile315)_ 1.06149556246128191e+03 +Electron-deuteron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_deuteron_collision_profile316)_ 1.06714735216031727e+03 +Electron-deuteron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_deuteron_collision_profile317)_ 1.07286158263681227e+03 +Electron-deuteron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_deuteron_collision_profile318)_ 1.07863908919566211e+03 +Electron-deuteron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_deuteron_collision_profile319)_ 1.08448071980022564e+03 +Electron-deuteron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_deuteron_collision_profile320)_ 1.09038733524390523e+03 +Electron-deuteron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_deuteron_collision_profile321)_ 1.09635980932186703e+03 +Electron-deuteron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_deuteron_collision_profile322)_ 1.10239902900271841e+03 +Electron-deuteron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_deuteron_collision_profile323)_ 1.10850589459996172e+03 +Electron-deuteron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_deuteron_collision_profile324)_ 1.11468131994302098e+03 +Electron-deuteron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_deuteron_collision_profile325)_ 1.12092623254762452e+03 +Electron-deuteron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_deuteron_collision_profile326)_ 1.12724157378531140e+03 +Electron-deuteron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_deuteron_collision_profile327)_ 1.13362829905180979e+03 +Electron-deuteron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_deuteron_collision_profile328)_ 1.14008737793402565e+03 +Electron-deuteron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_deuteron_collision_profile329)_ 1.14661979437533864e+03 +Electron-deuteron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_deuteron_collision_profile330)_ 1.15322654683892188e+03 +Electron-deuteron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_deuteron_collision_profile331)_ 1.15990864846872955e+03 +Electron-deuteron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_deuteron_collision_profile332)_ 1.16666712724782474e+03 +Electron-deuteron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_deuteron_collision_profile333)_ 1.17350302615364603e+03 +Electron-deuteron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_deuteron_collision_profile334)_ 1.18041740330983544e+03 +Electron-deuteron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_deuteron_collision_profile335)_ 1.18741133213417197e+03 +Electron-deuteron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_deuteron_collision_profile336)_ 1.19448590148217181e+03 +Electron-deuteron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_deuteron_collision_profile337)_ 1.20164221578585466e+03 +Electron-deuteron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_deuteron_collision_profile338)_ 1.20888139518715411e+03 +Electron-deuteron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_deuteron_collision_profile339)_ 1.21620457566541404e+03 +Electron-deuteron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_deuteron_collision_profile340)_ 1.22361290915838026e+03 +Electron-deuteron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_deuteron_collision_profile341)_ 1.23110756367604790e+03 +Electron-deuteron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_deuteron_collision_profile342)_ 1.23868972340669347e+03 +Electron-deuteron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_deuteron_collision_profile343)_ 1.24636058881436588e+03 +Electron-deuteron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_deuteron_collision_profile344)_ 1.25412137672708445e+03 +Electron-deuteron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_deuteron_collision_profile345)_ 1.26197332041491677e+03 +Electron-deuteron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_deuteron_collision_profile346)_ 1.26991766965706370e+03 +Electron-deuteron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_deuteron_collision_profile347)_ 1.27795569079705592e+03 +Electron-deuteron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_deuteron_collision_profile348)_ 1.28608866678504342e+03 +Electron-deuteron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_deuteron_collision_profile349)_ 1.29431789720616985e+03 +Electron-deuteron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_deuteron_collision_profile350)_ 1.30264469829389941e+03 +Electron-deuteron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_deuteron_collision_profile351)_ 1.31107040292712736e+03 +Electron-deuteron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_deuteron_collision_profile352)_ 1.31959636060981620e+03 +Electron-deuteron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_deuteron_collision_profile353)_ 1.32822393743183420e+03 +Electron-deuteron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_deuteron_collision_profile354)_ 1.33695451600957540e+03 +Electron-deuteron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_deuteron_collision_profile355)_ 1.34578949540486087e+03 +Electron-deuteron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_deuteron_collision_profile356)_ 1.35473029102053420e+03 +Electron-deuteron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_deuteron_collision_profile357)_ 1.36377833447104308e+03 +Electron-deuteron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_deuteron_collision_profile358)_ 1.37293507342623070e+03 +Electron-deuteron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_deuteron_collision_profile359)_ 1.38220197142640563e+03 +Electron-deuteron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_deuteron_collision_profile360)_ 1.39158050766668794e+03 +Electron-deuteron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_deuteron_collision_profile361)_ 1.40107217674847243e+03 +Electron-deuteron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_deuteron_collision_profile362)_ 1.41067848839572866e+03 +Electron-deuteron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_deuteron_collision_profile363)_ 1.42040096713372759e+03 +Electron-deuteron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_deuteron_collision_profile364)_ 1.43024115192762474e+03 +Electron-deuteron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_deuteron_collision_profile365)_ 1.44020059577817801e+03 +Electron-deuteron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_deuteron_collision_profile366)_ 1.45028086527173309e+03 +Electron-deuteron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_deuteron_collision_profile367)_ 1.46048354008139177e+03 +Electron-deuteron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_deuteron_collision_profile368)_ 1.47081021241614280e+03 +Electron-deuteron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_deuteron_collision_profile369)_ 1.48126248641450843e+03 +Electron-deuteron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_deuteron_collision_profile370)_ 1.49184197747906569e+03 +Electron-deuteron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_deuteron_collision_profile371)_ 1.50255031154798166e+03 +Electron-deuteron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_deuteron_collision_profile372)_ 1.51338912429946777e+03 +Electron-deuteron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_deuteron_collision_profile373)_ 1.52436006028481620e+03 +Electron-deuteron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_deuteron_collision_profile374)_ 1.53546477198542539e+03 +Electron-deuteron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_deuteron_collision_profile375)_ 1.54670491878895245e+03 +Electron-deuteron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_deuteron_collision_profile376)_ 1.55808216587941024e+03 +Electron-deuteron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_deuteron_collision_profile377)_ 1.56959818303578004e+03 +Electron-deuteron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_deuteron_collision_profile378)_ 1.58125464333331774e+03 +Electron-deuteron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_deuteron_collision_profile379)_ 1.59305322174145272e+03 +Electron-deuteron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_deuteron_collision_profile380)_ 1.60499559361176171e+03 +Electron-deuteron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_deuteron_collision_profile381)_ 1.61708343304916139e+03 +Electron-deuteron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_deuteron_collision_profile382)_ 1.62931841115902989e+03 +Electron-deuteron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_deuteron_collision_profile383)_ 1.64170219416255327e+03 +Electron-deuteron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_deuteron_collision_profile384)_ 1.65423644137213114e+03 +Electron-deuteron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_deuteron_collision_profile385)_ 1.66692280301820028e+03 +Electron-deuteron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_deuteron_collision_profile386)_ 1.67976291791835092e+03 +Electron-deuteron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_deuteron_collision_profile387)_ 1.69275841097901298e+03 +Electron-deuteron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_deuteron_collision_profile388)_ 1.70591089051950735e+03 +Electron-deuteron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_deuteron_collision_profile389)_ 1.71922194540759187e+03 +Electron-deuteron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_deuteron_collision_profile390)_ 1.73269314199503515e+03 +Electron-deuteron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_deuteron_collision_profile391)_ 1.74632602084105952e+03 +Electron-deuteron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_deuteron_collision_profile392)_ 1.76012209321081764e+03 +Electron-deuteron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_deuteron_collision_profile393)_ 1.77408283733528424e+03 +Electron-deuteron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_deuteron_collision_profile394)_ 1.78820969441818056e+03 +Electron-deuteron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_deuteron_collision_profile395)_ 1.80250406437470770e+03 +Electron-deuteron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_deuteron_collision_profile396)_ 1.81696730128597210e+03 +Electron-deuteron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_deuteron_collision_profile397)_ 1.83160070855205322e+03 +Electron-deuteron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_deuteron_collision_profile398)_ 1.84640553372569912e+03 +Electron-deuteron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_deuteron_collision_profile399)_ 1.86138296300754109e+03 +Electron-deuteron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_deuteron_collision_profile400)_ 1.87653411538267574e+03 +Electron-deuteron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_deuteron_collision_profile401)_ 1.89186003637721637e+03 +Electron-deuteron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_deuteron_collision_profile402)_ 1.90736169141225400e+03 +Electron-deuteron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_deuteron_collision_profile403)_ 1.92303995873128019e+03 +Electron-deuteron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_deuteron_collision_profile404)_ 1.93889562187579122e+03 +Electron-deuteron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_deuteron_collision_profile405)_ 1.95492936168227516e+03 +Electron-deuteron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_deuteron_collision_profile406)_ 1.97114174777223684e+03 +Electron-deuteron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_deuteron_collision_profile407)_ 1.98753322950523693e+03 +Electron-deuteron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_deuteron_collision_profile408)_ 2.00410412636318733e+03 +Electron-deuteron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_deuteron_collision_profile409)_ 2.02085461773219117e+03 +Electron-deuteron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_deuteron_collision_profile410)_ 2.03778473204631655e+03 +Electron-deuteron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_deuteron_collision_profile411)_ 2.05489433525544018e+03 +Electron-deuteron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_deuteron_collision_profile412)_ 2.07218311857713115e+03 +Electron-deuteron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_deuteron_collision_profile413)_ 2.08965058548998422e+03 +Electron-deuteron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_deuteron_collision_profile414)_ 2.10729603792332819e+03 +Electron-deuteron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_deuteron_collision_profile415)_ 2.12511856159529634e+03 +Electron-deuteron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_deuteron_collision_profile416)_ 2.14311701044833035e+03 +Electron-deuteron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_deuteron_collision_profile417)_ 2.16128999012785880e+03 +Electron-deuteron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_deuteron_collision_profile418)_ 2.17963584044640311e+03 +Electron-deuteron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_deuteron_collision_profile419)_ 2.19815261677151057e+03 +Electron-deuteron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_deuteron_collision_profile420)_ 2.21683807027175135e+03 +Electron-deuteron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_deuteron_collision_profile421)_ 2.23568962695048322e+03 +Electron-deuteron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_deuteron_collision_profile422)_ 2.25470436539201864e+03 +Electron-deuteron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_deuteron_collision_profile423)_ 2.27387899313940534e+03 +Electron-deuteron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_deuteron_collision_profile424)_ 2.29320982161686561e+03 +Electron-deuteron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_deuteron_collision_profile425)_ 2.31269273950313845e+03 +Electron-deuteron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_deuteron_collision_profile426)_ 2.33232318445445890e+03 +Electron-deuteron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_deuteron_collision_profile427)_ 2.35209611306727720e+03 +Electron-deuteron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_deuteron_collision_profile428)_ 2.37200596896122943e+03 +Electron-deuteron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_deuteron_collision_profile429)_ 2.39204664885190414e+03 +Electron-deuteron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_deuteron_collision_profile430)_ 2.41221146647037313e+03 +Electron-deuteron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_deuteron_collision_profile431)_ 2.43249311417208810e+03 +Electron-deuteron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_deuteron_collision_profile432)_ 2.45288362206097281e+03 +Electron-deuteron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_deuteron_collision_profile433)_ 2.47337431443521518e+03 +Electron-deuteron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_deuteron_collision_profile434)_ 2.49395576333834833e+03 +Electron-deuteron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_deuteron_collision_profile435)_ 2.51461773897254898e+03 +Electron-deuteron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_deuteron_collision_profile436)_ 2.53534915669904103e+03 +Electron-deuteron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_deuteron_collision_profile437)_ 2.55613802031272235e+03 +Electron-deuteron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_deuteron_collision_profile438)_ 2.57697136123228711e+03 +Electron-deuteron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_deuteron_collision_profile439)_ 2.59783517319214025e+03 +Electron-deuteron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_deuteron_collision_profile440)_ 2.61871434195525217e+03 +Electron-deuteron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_deuteron_collision_profile441)_ 2.63959256948401116e+03 +Electron-deuteron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_deuteron_collision_profile442)_ 2.66045229190493001e+03 +Electron-deuteron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_deuteron_collision_profile443)_ 2.68127459047763250e+03 +Electron-deuteron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_deuteron_collision_profile444)_ 2.70203909462149250e+03 +Electron-deuteron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_deuteron_collision_profile445)_ 2.72272387585601746e+03 +Electron-deuteron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_deuteron_collision_profile446)_ 2.74330533126036516e+03 +Electron-deuteron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_deuteron_collision_profile447)_ 2.76375805473695118e+03 +Electron-deuteron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_deuteron_collision_profile448)_ 2.78405469395032742e+03 +Electron-deuteron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_deuteron_collision_profile449)_ 2.80416579027357056e+03 +Electron-deuteron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_deuteron_collision_profile450)_ 2.82405959836474403e+03 +Electron-deuteron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_deuteron_collision_profile451)_ 2.84370188105138232e+03 +Electron-deuteron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_deuteron_collision_profile452)_ 2.86305567392790726e+03 +Electron-deuteron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_deuteron_collision_profile453)_ 2.88208101233205889e+03 +Electron-deuteron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_deuteron_collision_profile454)_ 2.90073461095576522e+03 +Electron-deuteron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_deuteron_collision_profile455)_ 2.91896948294806134e+03 +Electron-deuteron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_deuteron_collision_profile456)_ 2.93673448048890896e+03 +Electron-deuteron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_deuteron_collision_profile457)_ 2.95397373166046236e+03 +Electron-deuteron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_deuteron_collision_profile458)_ 2.97062593770607646e+03 +Electron-deuteron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_deuteron_collision_profile459)_ 2.98662347821233288e+03 +Electron-deuteron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_deuteron_collision_profile460)_ 3.00189124541664751e+03 +Electron-deuteron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_deuteron_collision_profile461)_ 3.01634508541917603e+03 +Electron-deuteron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_deuteron_collision_profile462)_ 3.02988964935600143e+03 +Electron-deuteron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_deuteron_collision_profile463)_ 3.04241532229655968e+03 +Electron-deuteron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_deuteron_collision_profile464)_ 3.05379363695290476e+03 +Electron-deuteron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_deuteron_collision_profile465)_ 3.06387003644161996e+03 +Electron-deuteron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_deuteron_collision_profile466)_ 3.07245160033340608e+03 +Electron-deuteron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_deuteron_collision_profile467)_ 3.07928404943659325e+03 +Electron-deuteron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_deuteron_collision_profile468)_ 3.08400171992740297e+03 +Electron-deuteron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_deuteron_collision_profile469)_ 3.08598634259747496e+03 +Electron-deuteron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_deuteron_collision_profile470)_ 3.08349785853538606e+03 +Electron-deuteron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_deuteron_collision_profile471)_ 3.19193172492932763e+03 +Electron-deuteron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_deuteron_collision_profile472)_ 3.30900812153468360e+03 +Electron-deuteron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_deuteron_collision_profile473)_ 3.43577757298413462e+03 +Electron-deuteron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_deuteron_collision_profile474)_ 3.57346420274569346e+03 +Electron-deuteron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_deuteron_collision_profile475)_ 3.72350251497802446e+03 +Electron-deuteron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_deuteron_collision_profile476)_ 3.88758381610603556e+03 +Electron-deuteron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_deuteron_collision_profile477)_ 4.06771532636085203e+03 +Electron-deuteron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_deuteron_collision_profile478)_ 4.26629617699285063e+03 +Electron-deuteron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_deuteron_collision_profile479)_ 4.48621613845219781e+03 +Electron-deuteron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_deuteron_collision_profile480)_ 4.73098533612133269e+03 +Electron-deuteron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_deuteron_collision_profile481)_ 5.00490679249945879e+03 +Electron-deuteron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_deuteron_collision_profile482)_ 5.31330905166247703e+03 +Electron-deuteron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_deuteron_collision_profile483)_ 5.66286449288750009e+03 +Electron-deuteron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_deuteron_collision_profile484)_ 6.06203209158592836e+03 +Electron-deuteron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_deuteron_collision_profile485)_ 6.52168458871493840e+03 +Electron-deuteron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_deuteron_collision_profile486)_ 7.05601511853926058e+03 +Electron-deuteron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_deuteron_collision_profile487)_ 7.68387813251982880e+03 +Electron-deuteron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_deuteron_collision_profile488)_ 8.43082473360689801e+03 +Electron-deuteron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_deuteron_collision_profile489)_ 9.33228495401330656e+03 +Electron-deuteron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_deuteron_collision_profile490)_ 1.04387165539601574e+04 +Electron-deuteron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_deuteron_collision_profile491)_ 1.18242755787020560e+04 +Electron-deuteron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_deuteron_collision_profile492)_ 1.36021264891498595e+04 +Electron-deuteron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_deuteron_collision_profile493)_ 1.59530663357018966e+04 +Electron-deuteron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_deuteron_collision_profile494)_ 1.91829425231885543e+04 +Electron-deuteron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_deuteron_collision_profile495)_ 2.38485472147703767e+04 +Electron-deuteron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_deuteron_collision_profile496)_ 3.10678011952686938e+04 +Electron-deuteron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_deuteron_collision_profile497)_ 4.34172817527669467e+04 +Electron-deuteron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_deuteron_collision_profile498)_ 6.82318506382012856e+04 +Electron-deuteron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_deuteron_collision_profile499)_ 1.35884879394174146e+05 +Electron-deuteron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_deuteron_collision_profile500)_ 5.78042263029812369e+05 +Volume_averaged_electron-triton_collision_frequency_(Hz)_________________ (freq_plasma_electron_triton_collision_vol_avg)_ 1.16989926425120848e+03 +Electron-triton_collision_frequency_at_point_0___________________________ (freq_plasma_electron_triton_collision_profile0)_ 5.32200316813427548e+02 +Electron-triton_collision_frequency_at_point_1___________________________ (freq_plasma_electron_triton_collision_profile1)_ 5.32203369035387254e+02 +Electron-triton_collision_frequency_at_point_2___________________________ (freq_plasma_electron_triton_collision_profile2)_ 5.32212525871241951e+02 +Electron-triton_collision_frequency_at_point_3___________________________ (freq_plasma_electron_triton_collision_profile3)_ 5.32227787830938610e+02 +Electron-triton_collision_frequency_at_point_4___________________________ (freq_plasma_electron_triton_collision_profile4)_ 5.32249155764458010e+02 +Electron-triton_collision_frequency_at_point_5___________________________ (freq_plasma_electron_triton_collision_profile5)_ 5.32276630861920012e+02 +Electron-triton_collision_frequency_at_point_6___________________________ (freq_plasma_electron_triton_collision_profile6)_ 5.32310214653729076e+02 +Electron-triton_collision_frequency_at_point_7___________________________ (freq_plasma_electron_triton_collision_profile7)_ 5.32349909010763213e+02 +Electron-triton_collision_frequency_at_point_8___________________________ (freq_plasma_electron_triton_collision_profile8)_ 5.32395716144603739e+02 +Electron-triton_collision_frequency_at_point_9___________________________ (freq_plasma_electron_triton_collision_profile9)_ 5.32447638607806198e+02 +Electron-triton_collision_frequency_at_point_10__________________________ (freq_plasma_electron_triton_collision_profile10)_ 5.32505679294216293e+02 +Electron-triton_collision_frequency_at_point_11__________________________ (freq_plasma_electron_triton_collision_profile11)_ 5.32569841439324250e+02 +Electron-triton_collision_frequency_at_point_12__________________________ (freq_plasma_electron_triton_collision_profile12)_ 5.32640128620664086e+02 +Electron-triton_collision_frequency_at_point_13__________________________ (freq_plasma_electron_triton_collision_profile13)_ 5.32716544758252553e+02 +Electron-triton_collision_frequency_at_point_14__________________________ (freq_plasma_electron_triton_collision_profile14)_ 5.32799094115074013e+02 +Electron-triton_collision_frequency_at_point_15__________________________ (freq_plasma_electron_triton_collision_profile15)_ 5.32887781297603851e+02 +Electron-triton_collision_frequency_at_point_16__________________________ (freq_plasma_electron_triton_collision_profile16)_ 5.32982611256376117e+02 +Electron-triton_collision_frequency_at_point_17__________________________ (freq_plasma_electron_triton_collision_profile17)_ 5.33083589286595270e+02 +Electron-triton_collision_frequency_at_point_18__________________________ (freq_plasma_electron_triton_collision_profile18)_ 5.33190721028786811e+02 +Electron-triton_collision_frequency_at_point_19__________________________ (freq_plasma_electron_triton_collision_profile19)_ 5.33304012469495547e+02 +Electron-triton_collision_frequency_at_point_20__________________________ (freq_plasma_electron_triton_collision_profile20)_ 5.33423469942023644e+02 +Electron-triton_collision_frequency_at_point_21__________________________ (freq_plasma_electron_triton_collision_profile21)_ 5.33549100127211887e+02 +Electron-triton_collision_frequency_at_point_22__________________________ (freq_plasma_electron_triton_collision_profile22)_ 5.33680910054266519e+02 +Electron-triton_collision_frequency_at_point_23__________________________ (freq_plasma_electron_triton_collision_profile23)_ 5.33818907101627701e+02 +Electron-triton_collision_frequency_at_point_24__________________________ (freq_plasma_electron_triton_collision_profile24)_ 5.33963098997882753e+02 +Electron-triton_collision_frequency_at_point_25__________________________ (freq_plasma_electron_triton_collision_profile25)_ 5.34113493822721352e+02 +Electron-triton_collision_frequency_at_point_26__________________________ (freq_plasma_electron_triton_collision_profile26)_ 5.34270100007939163e+02 +Electron-triton_collision_frequency_at_point_27__________________________ (freq_plasma_electron_triton_collision_profile27)_ 5.34432926338479660e+02 +Electron-triton_collision_frequency_at_point_28__________________________ (freq_plasma_electron_triton_collision_profile28)_ 5.34601981953525865e+02 +Electron-triton_collision_frequency_at_point_29__________________________ (freq_plasma_electron_triton_collision_profile29)_ 5.34777276347634029e+02 +Electron-triton_collision_frequency_at_point_30__________________________ (freq_plasma_electron_triton_collision_profile30)_ 5.34958819371913705e+02 +Electron-triton_collision_frequency_at_point_31__________________________ (freq_plasma_electron_triton_collision_profile31)_ 5.35146621235251246e+02 +Electron-triton_collision_frequency_at_point_32__________________________ (freq_plasma_electron_triton_collision_profile32)_ 5.35340692505580932e+02 +Electron-triton_collision_frequency_at_point_33__________________________ (freq_plasma_electron_triton_collision_profile33)_ 5.35541044111199994e+02 +Electron-triton_collision_frequency_at_point_34__________________________ (freq_plasma_electron_triton_collision_profile34)_ 5.35747687342132508e+02 +Electron-triton_collision_frequency_at_point_35__________________________ (freq_plasma_electron_triton_collision_profile35)_ 5.35960633851534453e+02 +Electron-triton_collision_frequency_at_point_36__________________________ (freq_plasma_electron_triton_collision_profile36)_ 5.36179895657152315e+02 +Electron-triton_collision_frequency_at_point_37__________________________ (freq_plasma_electron_triton_collision_profile37)_ 5.36405485142822386e+02 +Electron-triton_collision_frequency_at_point_38__________________________ (freq_plasma_electron_triton_collision_profile38)_ 5.36637415060020658e+02 +Electron-triton_collision_frequency_at_point_39__________________________ (freq_plasma_electron_triton_collision_profile39)_ 5.36875698529459669e+02 +Electron-triton_collision_frequency_at_point_40__________________________ (freq_plasma_electron_triton_collision_profile40)_ 5.37120349042734347e+02 +Electron-triton_collision_frequency_at_point_41__________________________ (freq_plasma_electron_triton_collision_profile41)_ 5.37371380464011850e+02 +Electron-triton_collision_frequency_at_point_42__________________________ (freq_plasma_electron_triton_collision_profile42)_ 5.37628807031776432e+02 +Electron-triton_collision_frequency_at_point_43__________________________ (freq_plasma_electron_triton_collision_profile43)_ 5.37892643360618990e+02 +Electron-triton_collision_frequency_at_point_44__________________________ (freq_plasma_electron_triton_collision_profile44)_ 5.38162904443074808e+02 +Electron-triton_collision_frequency_at_point_45__________________________ (freq_plasma_electron_triton_collision_profile45)_ 5.38439605651517581e+02 +Electron-triton_collision_frequency_at_point_46__________________________ (freq_plasma_electron_triton_collision_profile46)_ 5.38722762740094936e+02 +Electron-triton_collision_frequency_at_point_47__________________________ (freq_plasma_electron_triton_collision_profile47)_ 5.39012391846722721e+02 +Electron-triton_collision_frequency_at_point_48__________________________ (freq_plasma_electron_triton_collision_profile48)_ 5.39308509495123076e+02 +Electron-triton_collision_frequency_at_point_49__________________________ (freq_plasma_electron_triton_collision_profile49)_ 5.39611132596920470e+02 +Electron-triton_collision_frequency_at_point_50__________________________ (freq_plasma_electron_triton_collision_profile50)_ 5.39920278453785045e+02 +Electron-triton_collision_frequency_at_point_51__________________________ (freq_plasma_electron_triton_collision_profile51)_ 5.40235964759629610e+02 +Electron-triton_collision_frequency_at_point_52__________________________ (freq_plasma_electron_triton_collision_profile52)_ 5.40558209602861098e+02 +Electron-triton_collision_frequency_at_point_53__________________________ (freq_plasma_electron_triton_collision_profile53)_ 5.40887031468682039e+02 +Electron-triton_collision_frequency_at_point_54__________________________ (freq_plasma_electron_triton_collision_profile54)_ 5.41222449241450249e+02 +Electron-triton_collision_frequency_at_point_55__________________________ (freq_plasma_electron_triton_collision_profile55)_ 5.41564482207088531e+02 +Electron-triton_collision_frequency_at_point_56__________________________ (freq_plasma_electron_triton_collision_profile56)_ 5.41913150055551569e+02 +Electron-triton_collision_frequency_at_point_57__________________________ (freq_plasma_electron_triton_collision_profile57)_ 5.42268472883348863e+02 +Electron-triton_collision_frequency_at_point_58__________________________ (freq_plasma_electron_triton_collision_profile58)_ 5.42630471196120311e+02 +Electron-triton_collision_frequency_at_point_59__________________________ (freq_plasma_electron_triton_collision_profile59)_ 5.42999165911272712e+02 +Electron-triton_collision_frequency_at_point_60__________________________ (freq_plasma_electron_triton_collision_profile60)_ 5.43374578360669943e+02 +Electron-triton_collision_frequency_at_point_61__________________________ (freq_plasma_electron_triton_collision_profile61)_ 5.43756730293382134e+02 +Electron-triton_collision_frequency_at_point_62__________________________ (freq_plasma_electron_triton_collision_profile62)_ 5.44145643878492592e+02 +Electron-triton_collision_frequency_at_point_63__________________________ (freq_plasma_electron_triton_collision_profile63)_ 5.44541341707965216e+02 +Electron-triton_collision_frequency_at_point_64__________________________ (freq_plasma_electron_triton_collision_profile64)_ 5.44943846799568291e+02 +Electron-triton_collision_frequency_at_point_65__________________________ (freq_plasma_electron_triton_collision_profile65)_ 5.45353182599861611e+02 +Electron-triton_collision_frequency_at_point_66__________________________ (freq_plasma_electron_triton_collision_profile66)_ 5.45769372987242605e+02 +Electron-triton_collision_frequency_at_point_67__________________________ (freq_plasma_electron_triton_collision_profile67)_ 5.46192442275054077e+02 +Electron-triton_collision_frequency_at_point_68__________________________ (freq_plasma_electron_triton_collision_profile68)_ 5.46622415214755847e+02 +Electron-triton_collision_frequency_at_point_69__________________________ (freq_plasma_electron_triton_collision_profile69)_ 5.47059316999154930e+02 +Electron-triton_collision_frequency_at_point_70__________________________ (freq_plasma_electron_triton_collision_profile70)_ 5.47503173265705300e+02 +Electron-triton_collision_frequency_at_point_71__________________________ (freq_plasma_electron_triton_collision_profile71)_ 5.47954010099866991e+02 +Electron-triton_collision_frequency_at_point_72__________________________ (freq_plasma_electron_triton_collision_profile72)_ 5.48411854038532624e+02 +Electron-triton_collision_frequency_at_point_73__________________________ (freq_plasma_electron_triton_collision_profile73)_ 5.48876732073518724e+02 +Electron-triton_collision_frequency_at_point_74__________________________ (freq_plasma_electron_triton_collision_profile74)_ 5.49348671655125600e+02 +Electron-triton_collision_frequency_at_point_75__________________________ (freq_plasma_electron_triton_collision_profile75)_ 5.49827700695761109e+02 +Electron-triton_collision_frequency_at_point_76__________________________ (freq_plasma_electron_triton_collision_profile76)_ 5.50313847573636281e+02 +Electron-triton_collision_frequency_at_point_77__________________________ (freq_plasma_electron_triton_collision_profile77)_ 5.50807141136527548e+02 +Electron-triton_collision_frequency_at_point_78__________________________ (freq_plasma_electron_triton_collision_profile78)_ 5.51307610705610500e+02 +Electron-triton_collision_frequency_at_point_79__________________________ (freq_plasma_electron_triton_collision_profile79)_ 5.51815286079362181e+02 +Electron-triton_collision_frequency_at_point_80__________________________ (freq_plasma_electron_triton_collision_profile80)_ 5.52330197537537401e+02 +Electron-triton_collision_frequency_at_point_81__________________________ (freq_plasma_electron_triton_collision_profile81)_ 5.52852375845217466e+02 +Electron-triton_collision_frequency_at_point_82__________________________ (freq_plasma_electron_triton_collision_profile82)_ 5.53381852256928823e+02 +Electron-triton_collision_frequency_at_point_83__________________________ (freq_plasma_electron_triton_collision_profile83)_ 5.53918658520841973e+02 +Electron-triton_collision_frequency_at_point_84__________________________ (freq_plasma_electron_triton_collision_profile84)_ 5.54462826883039838e+02 +Electron-triton_collision_frequency_at_point_85__________________________ (freq_plasma_electron_triton_collision_profile85)_ 5.55014390091866289e+02 +Electron-triton_collision_frequency_at_point_86__________________________ (freq_plasma_electron_triton_collision_profile86)_ 5.55573381402351629e+02 +Electron-triton_collision_frequency_at_point_87__________________________ (freq_plasma_electron_triton_collision_profile87)_ 5.56139834580713796e+02 +Electron-triton_collision_frequency_at_point_88__________________________ (freq_plasma_electron_triton_collision_profile88)_ 5.56713783908942446e+02 +Electron-triton_collision_frequency_at_point_89__________________________ (freq_plasma_electron_triton_collision_profile89)_ 5.57295264189460113e+02 +Electron-triton_collision_frequency_at_point_90__________________________ (freq_plasma_electron_triton_collision_profile90)_ 5.57884310749867495e+02 +Electron-triton_collision_frequency_at_point_91__________________________ (freq_plasma_electron_triton_collision_profile91)_ 5.58480959447771397e+02 +Electron-triton_collision_frequency_at_point_92__________________________ (freq_plasma_electron_triton_collision_profile92)_ 5.59085246675692702e+02 +Electron-triton_collision_frequency_at_point_93__________________________ (freq_plasma_electron_triton_collision_profile93)_ 5.59697209366064044e+02 +Electron-triton_collision_frequency_at_point_94__________________________ (freq_plasma_electron_triton_collision_profile94)_ 5.60316884996310591e+02 +Electron-triton_collision_frequency_at_point_95__________________________ (freq_plasma_electron_triton_collision_profile95)_ 5.60944311594018359e+02 +Electron-triton_collision_frequency_at_point_96__________________________ (freq_plasma_electron_triton_collision_profile96)_ 5.61579527742192454e+02 +Electron-triton_collision_frequency_at_point_97__________________________ (freq_plasma_electron_triton_collision_profile97)_ 5.62222572584602290e+02 +Electron-triton_collision_frequency_at_point_98__________________________ (freq_plasma_electron_triton_collision_profile98)_ 5.62873485831220364e+02 +Electron-triton_collision_frequency_at_point_99__________________________ (freq_plasma_electron_triton_collision_profile99)_ 5.63532307763752101e+02 +Electron-triton_collision_frequency_at_point_100_________________________ (freq_plasma_electron_triton_collision_profile100)_ 5.64199079241259142e+02 +Electron-triton_collision_frequency_at_point_101_________________________ (freq_plasma_electron_triton_collision_profile101)_ 5.64873841705877112e+02 +Electron-triton_collision_frequency_at_point_102_________________________ (freq_plasma_electron_triton_collision_profile102)_ 5.65556637188631498e+02 +Electron-triton_collision_frequency_at_point_103_________________________ (freq_plasma_electron_triton_collision_profile103)_ 5.66247508315346863e+02 +Electron-triton_collision_frequency_at_point_104_________________________ (freq_plasma_electron_triton_collision_profile104)_ 5.66946498312660992e+02 +Electron-triton_collision_frequency_at_point_105_________________________ (freq_plasma_electron_triton_collision_profile105)_ 5.67653651014134653e+02 +Electron-triton_collision_frequency_at_point_106_________________________ (freq_plasma_electron_triton_collision_profile106)_ 5.68369010866464805e+02 +Electron-triton_collision_frequency_at_point_107_________________________ (freq_plasma_electron_triton_collision_profile107)_ 5.69092622935802183e+02 +Electron-triton_collision_frequency_at_point_108_________________________ (freq_plasma_electron_triton_collision_profile108)_ 5.69824532914171414e+02 +Electron-triton_collision_frequency_at_point_109_________________________ (freq_plasma_electron_triton_collision_profile109)_ 5.70564787126001875e+02 +Electron-triton_collision_frequency_at_point_110_________________________ (freq_plasma_electron_triton_collision_profile110)_ 5.71313432534760295e+02 +Electron-triton_collision_frequency_at_point_111_________________________ (freq_plasma_electron_triton_collision_profile111)_ 5.72070516749700232e+02 +Electron-triton_collision_frequency_at_point_112_________________________ (freq_plasma_electron_triton_collision_profile112)_ 5.72836088032714542e+02 +Electron-triton_collision_frequency_at_point_113_________________________ (freq_plasma_electron_triton_collision_profile113)_ 5.73610195305310867e+02 +Electron-triton_collision_frequency_at_point_114_________________________ (freq_plasma_electron_triton_collision_profile114)_ 5.74392888155692276e+02 +Electron-triton_collision_frequency_at_point_115_________________________ (freq_plasma_electron_triton_collision_profile115)_ 5.75184216845959554e+02 +Electron-triton_collision_frequency_at_point_116_________________________ (freq_plasma_electron_triton_collision_profile116)_ 5.75984232319431953e+02 +Electron-triton_collision_frequency_at_point_117_________________________ (freq_plasma_electron_triton_collision_profile117)_ 5.76792986208084130e+02 +Electron-triton_collision_frequency_at_point_118_________________________ (freq_plasma_electron_triton_collision_profile118)_ 5.77610530840109504e+02 +Electron-triton_collision_frequency_at_point_119_________________________ (freq_plasma_electron_triton_collision_profile119)_ 5.78436919247603896e+02 +Electron-triton_collision_frequency_at_point_120_________________________ (freq_plasma_electron_triton_collision_profile120)_ 5.79272205174375699e+02 +Electron-triton_collision_frequency_at_point_121_________________________ (freq_plasma_electron_triton_collision_profile121)_ 5.80116443083885201e+02 +Electron-triton_collision_frequency_at_point_122_________________________ (freq_plasma_electron_triton_collision_profile122)_ 5.80969688167311915e+02 +Electron-triton_collision_frequency_at_point_123_________________________ (freq_plasma_electron_triton_collision_profile123)_ 5.81831996351752537e+02 +Electron-triton_collision_frequency_at_point_124_________________________ (freq_plasma_electron_triton_collision_profile124)_ 5.82703424308555100e+02 +Electron-triton_collision_frequency_at_point_125_________________________ (freq_plasma_electron_triton_collision_profile125)_ 5.83584029461786599e+02 +Electron-triton_collision_frequency_at_point_126_________________________ (freq_plasma_electron_triton_collision_profile126)_ 5.84473869996840676e+02 +Electron-triton_collision_frequency_at_point_127_________________________ (freq_plasma_electron_triton_collision_profile127)_ 5.85373004869182296e+02 +Electron-triton_collision_frequency_at_point_128_________________________ (freq_plasma_electron_triton_collision_profile128)_ 5.86281493813237716e+02 +Electron-triton_collision_frequency_at_point_129_________________________ (freq_plasma_electron_triton_collision_profile129)_ 5.87199397351427137e+02 +Electron-triton_collision_frequency_at_point_130_________________________ (freq_plasma_electron_triton_collision_profile130)_ 5.88126776803345138e+02 +Electron-triton_collision_frequency_at_point_131_________________________ (freq_plasma_electron_triton_collision_profile131)_ 5.89063694295089590e+02 +Electron-triton_collision_frequency_at_point_132_________________________ (freq_plasma_electron_triton_collision_profile132)_ 5.90010212768742349e+02 +Electron-triton_collision_frequency_at_point_133_________________________ (freq_plasma_electron_triton_collision_profile133)_ 5.90966395992004664e+02 +Electron-triton_collision_frequency_at_point_134_________________________ (freq_plasma_electron_triton_collision_profile134)_ 5.91932308567987775e+02 +Electron-triton_collision_frequency_at_point_135_________________________ (freq_plasma_electron_triton_collision_profile135)_ 5.92908015945163584e+02 +Electron-triton_collision_frequency_at_point_136_________________________ (freq_plasma_electron_triton_collision_profile136)_ 5.93893584427476185e+02 +Electron-triton_collision_frequency_at_point_137_________________________ (freq_plasma_electron_triton_collision_profile137)_ 5.94889081184618931e+02 +Electron-triton_collision_frequency_at_point_138_________________________ (freq_plasma_electron_triton_collision_profile138)_ 5.95894574262476567e+02 +Electron-triton_collision_frequency_at_point_139_________________________ (freq_plasma_electron_triton_collision_profile139)_ 5.96910132593738012e+02 +Electron-triton_collision_frequency_at_point_140_________________________ (freq_plasma_electron_triton_collision_profile140)_ 5.97935826008681829e+02 +Electron-triton_collision_frequency_at_point_141_________________________ (freq_plasma_electron_triton_collision_profile141)_ 5.98971725246136771e+02 +Electron-triton_collision_frequency_at_point_142_________________________ (freq_plasma_electron_triton_collision_profile142)_ 6.00017901964619114e+02 +Electron-triton_collision_frequency_at_point_143_________________________ (freq_plasma_electron_triton_collision_profile143)_ 6.01074428753653820e+02 +Electron-triton_collision_frequency_at_point_144_________________________ (freq_plasma_electron_triton_collision_profile144)_ 6.02141379145276574e+02 +Electron-triton_collision_frequency_at_point_145_________________________ (freq_plasma_electron_triton_collision_profile145)_ 6.03218827625726703e+02 +Electron-triton_collision_frequency_at_point_146_________________________ (freq_plasma_electron_triton_collision_profile146)_ 6.04306849647324384e+02 +Electron-triton_collision_frequency_at_point_147_________________________ (freq_plasma_electron_triton_collision_profile147)_ 6.05405521640549978e+02 +Electron-triton_collision_frequency_at_point_148_________________________ (freq_plasma_electron_triton_collision_profile148)_ 6.06514921026311413e+02 +Electron-triton_collision_frequency_at_point_149_________________________ (freq_plasma_electron_triton_collision_profile149)_ 6.07635126228415515e+02 +Electron-triton_collision_frequency_at_point_150_________________________ (freq_plasma_electron_triton_collision_profile150)_ 6.08766216686244775e+02 +Electron-triton_collision_frequency_at_point_151_________________________ (freq_plasma_electron_triton_collision_profile151)_ 6.09908272867635105e+02 +Electron-triton_collision_frequency_at_point_152_________________________ (freq_plasma_electron_triton_collision_profile152)_ 6.11061376281969274e+02 +Electron-triton_collision_frequency_at_point_153_________________________ (freq_plasma_electron_triton_collision_profile153)_ 6.12225609493479737e+02 +Electron-triton_collision_frequency_at_point_154_________________________ (freq_plasma_electron_triton_collision_profile154)_ 6.13401056134773626e+02 +Electron-triton_collision_frequency_at_point_155_________________________ (freq_plasma_electron_triton_collision_profile155)_ 6.14587800920572931e+02 +Electron-triton_collision_frequency_at_point_156_________________________ (freq_plasma_electron_triton_collision_profile156)_ 6.15785929661684236e+02 +Electron-triton_collision_frequency_at_point_157_________________________ (freq_plasma_electron_triton_collision_profile157)_ 6.16995529279195353e+02 +Electron-triton_collision_frequency_at_point_158_________________________ (freq_plasma_electron_triton_collision_profile158)_ 6.18216687818904006e+02 +Electron-triton_collision_frequency_at_point_159_________________________ (freq_plasma_electron_triton_collision_profile159)_ 6.19449494465983094e+02 +Electron-triton_collision_frequency_at_point_160_________________________ (freq_plasma_electron_triton_collision_profile160)_ 6.20694039559887301e+02 +Electron-triton_collision_frequency_at_point_161_________________________ (freq_plasma_electron_triton_collision_profile161)_ 6.21950414609503696e+02 +Electron-triton_collision_frequency_at_point_162_________________________ (freq_plasma_electron_triton_collision_profile162)_ 6.23218712308551858e+02 +Electron-triton_collision_frequency_at_point_163_________________________ (freq_plasma_electron_triton_collision_profile163)_ 6.24499026551235374e+02 +Electron-triton_collision_frequency_at_point_164_________________________ (freq_plasma_electron_triton_collision_profile164)_ 6.25791452448152540e+02 +Electron-triton_collision_frequency_at_point_165_________________________ (freq_plasma_electron_triton_collision_profile165)_ 6.27096086342469334e+02 +Electron-triton_collision_frequency_at_point_166_________________________ (freq_plasma_electron_triton_collision_profile166)_ 6.28413025826356602e+02 +Electron-triton_collision_frequency_at_point_167_________________________ (freq_plasma_electron_triton_collision_profile167)_ 6.29742369757700430e+02 +Electron-triton_collision_frequency_at_point_168_________________________ (freq_plasma_electron_triton_collision_profile168)_ 6.31084218277087871e+02 +Electron-triton_collision_frequency_at_point_169_________________________ (freq_plasma_electron_triton_collision_profile169)_ 6.32438672825071876e+02 +Electron-triton_collision_frequency_at_point_170_________________________ (freq_plasma_electron_triton_collision_profile170)_ 6.33805836159723412e+02 +Electron-triton_collision_frequency_at_point_171_________________________ (freq_plasma_electron_triton_collision_profile171)_ 6.35185812374473016e+02 +Electron-triton_collision_frequency_at_point_172_________________________ (freq_plasma_electron_triton_collision_profile172)_ 6.36578706916247825e+02 +Electron-triton_collision_frequency_at_point_173_________________________ (freq_plasma_electron_triton_collision_profile173)_ 6.37984626603911352e+02 +Electron-triton_collision_frequency_at_point_174_________________________ (freq_plasma_electron_triton_collision_profile174)_ 6.39403679647003742e+02 +Electron-triton_collision_frequency_at_point_175_________________________ (freq_plasma_electron_triton_collision_profile175)_ 6.40835975664799207e+02 +Electron-triton_collision_frequency_at_point_176_________________________ (freq_plasma_electron_triton_collision_profile176)_ 6.42281625705677925e+02 +Electron-triton_collision_frequency_at_point_177_________________________ (freq_plasma_electron_triton_collision_profile177)_ 6.43740742266819666e+02 +Electron-triton_collision_frequency_at_point_178_________________________ (freq_plasma_electron_triton_collision_profile178)_ 6.45213439314224502e+02 +Electron-triton_collision_frequency_at_point_179_________________________ (freq_plasma_electron_triton_collision_profile179)_ 6.46699832303071048e+02 +Electron-triton_collision_frequency_at_point_180_________________________ (freq_plasma_electron_triton_collision_profile180)_ 6.48200038198409061e+02 +Electron-triton_collision_frequency_at_point_181_________________________ (freq_plasma_electron_triton_collision_profile181)_ 6.49714175496202529e+02 +Electron-triton_collision_frequency_at_point_182_________________________ (freq_plasma_electron_triton_collision_profile182)_ 6.51242364244721102e+02 +Electron-triton_collision_frequency_at_point_183_________________________ (freq_plasma_electron_triton_collision_profile183)_ 6.52784726066290546e+02 +Electron-triton_collision_frequency_at_point_184_________________________ (freq_plasma_electron_triton_collision_profile184)_ 6.54341384179408806e+02 +Electron-triton_collision_frequency_at_point_185_________________________ (freq_plasma_electron_triton_collision_profile185)_ 6.55912463421229290e+02 +Electron-triton_collision_frequency_at_point_186_________________________ (freq_plasma_electron_triton_collision_profile186)_ 6.57498090270426019e+02 +Electron-triton_collision_frequency_at_point_187_________________________ (freq_plasma_electron_triton_collision_profile187)_ 6.59098392870438829e+02 +Electron-triton_collision_frequency_at_point_188_________________________ (freq_plasma_electron_triton_collision_profile188)_ 6.60713501053111941e+02 +Electron-triton_collision_frequency_at_point_189_________________________ (freq_plasma_electron_triton_collision_profile189)_ 6.62343546362727579e+02 +Electron-triton_collision_frequency_at_point_190_________________________ (freq_plasma_electron_triton_collision_profile190)_ 6.63988662080449330e+02 +Electron-triton_collision_frequency_at_point_191_________________________ (freq_plasma_electron_triton_collision_profile191)_ 6.65648983249171124e+02 +Electron-triton_collision_frequency_at_point_192_________________________ (freq_plasma_electron_triton_collision_profile192)_ 6.67324646698791071e+02 +Electron-triton_collision_frequency_at_point_193_________________________ (freq_plasma_electron_triton_collision_profile193)_ 6.69015791071908779e+02 +Electron-triton_collision_frequency_at_point_194_________________________ (freq_plasma_electron_triton_collision_profile194)_ 6.70722556849960029e+02 +Electron-triton_collision_frequency_at_point_195_________________________ (freq_plasma_electron_triton_collision_profile195)_ 6.72445086379790041e+02 +Electron-triton_collision_frequency_at_point_196_________________________ (freq_plasma_electron_triton_collision_profile196)_ 6.74183523900680598e+02 +Electron-triton_collision_frequency_at_point_197_________________________ (freq_plasma_electron_triton_collision_profile197)_ 6.75938015571833716e+02 +Electron-triton_collision_frequency_at_point_198_________________________ (freq_plasma_electron_triton_collision_profile198)_ 6.77708709500321106e+02 +Electron-triton_collision_frequency_at_point_199_________________________ (freq_plasma_electron_triton_collision_profile199)_ 6.79495755769510879e+02 +Electron-triton_collision_frequency_at_point_200_________________________ (freq_plasma_electron_triton_collision_profile200)_ 6.81299306467972315e+02 +Electron-triton_collision_frequency_at_point_201_________________________ (freq_plasma_electron_triton_collision_profile201)_ 6.83119515718881757e+02 +Electron-triton_collision_frequency_at_point_202_________________________ (freq_plasma_electron_triton_collision_profile202)_ 6.84956539709917251e+02 +Electron-triton_collision_frequency_at_point_203_________________________ (freq_plasma_electron_triton_collision_profile203)_ 6.86810536723675227e+02 +Electron-triton_collision_frequency_at_point_204_________________________ (freq_plasma_electron_triton_collision_profile204)_ 6.88681667168596164e+02 +Electron-triton_collision_frequency_at_point_205_________________________ (freq_plasma_electron_triton_collision_profile205)_ 6.90570093610423669e+02 +Electron-triton_collision_frequency_at_point_206_________________________ (freq_plasma_electron_triton_collision_profile206)_ 6.92475980804200731e+02 +Electron-triton_collision_frequency_at_point_207_________________________ (freq_plasma_electron_triton_collision_profile207)_ 6.94399495726812006e+02 +Electron-triton_collision_frequency_at_point_208_________________________ (freq_plasma_electron_triton_collision_profile208)_ 6.96340807610082379e+02 +Electron-triton_collision_frequency_at_point_209_________________________ (freq_plasma_electron_triton_collision_profile209)_ 6.98300087974446910e+02 +Electron-triton_collision_frequency_at_point_210_________________________ (freq_plasma_electron_triton_collision_profile210)_ 7.00277510663192061e+02 +Electron-triton_collision_frequency_at_point_211_________________________ (freq_plasma_electron_triton_collision_profile211)_ 7.02273251877290249e+02 +Electron-triton_collision_frequency_at_point_212_________________________ (freq_plasma_electron_triton_collision_profile212)_ 7.04287490210827173e+02 +Electron-triton_collision_frequency_at_point_213_________________________ (freq_plasma_electron_triton_collision_profile213)_ 7.06320406687043373e+02 +Electron-triton_collision_frequency_at_point_214_________________________ (freq_plasma_electron_triton_collision_profile214)_ 7.08372184794990858e+02 +Electron-triton_collision_frequency_at_point_215_________________________ (freq_plasma_electron_triton_collision_profile215)_ 7.10443010526823514e+02 +Electron-triton_collision_frequency_at_point_216_________________________ (freq_plasma_electron_triton_collision_profile216)_ 7.12533072415727588e+02 +Electron-triton_collision_frequency_at_point_217_________________________ (freq_plasma_electron_triton_collision_profile217)_ 7.14642561574509159e+02 +Electron-triton_collision_frequency_at_point_218_________________________ (freq_plasma_electron_triton_collision_profile218)_ 7.16771671734842016e+02 +Electron-triton_collision_frequency_at_point_219_________________________ (freq_plasma_electron_triton_collision_profile219)_ 7.18920599287196865e+02 +Electron-triton_collision_frequency_at_point_220_________________________ (freq_plasma_electron_triton_collision_profile220)_ 7.21089543321456176e+02 +Electron-triton_collision_frequency_at_point_221_________________________ (freq_plasma_electron_triton_collision_profile221)_ 7.23278705668234579e+02 +Electron-triton_collision_frequency_at_point_222_________________________ (freq_plasma_electron_triton_collision_profile222)_ 7.25488290940910133e+02 +Electron-triton_collision_frequency_at_point_223_________________________ (freq_plasma_electron_triton_collision_profile223)_ 7.27718506578382176e+02 +Electron-triton_collision_frequency_at_point_224_________________________ (freq_plasma_electron_triton_collision_profile224)_ 7.29969562888571204e+02 +Electron-triton_collision_frequency_at_point_225_________________________ (freq_plasma_electron_triton_collision_profile225)_ 7.32241673092667838e+02 +Electron-triton_collision_frequency_at_point_226_________________________ (freq_plasma_electron_triton_collision_profile226)_ 7.34535053370151672e+02 +Electron-triton_collision_frequency_at_point_227_________________________ (freq_plasma_electron_triton_collision_profile227)_ 7.36849922904586037e+02 +Electron-triton_collision_frequency_at_point_228_________________________ (freq_plasma_electron_triton_collision_profile228)_ 7.39186503930208119e+02 +Electron-triton_collision_frequency_at_point_229_________________________ (freq_plasma_electron_triton_collision_profile229)_ 7.41545021779324998e+02 +Electron-triton_collision_frequency_at_point_230_________________________ (freq_plasma_electron_triton_collision_profile230)_ 7.43925704930532561e+02 +Electron-triton_collision_frequency_at_point_231_________________________ (freq_plasma_electron_triton_collision_profile231)_ 7.46328785057767732e+02 +Electron-triton_collision_frequency_at_point_232_________________________ (freq_plasma_electron_triton_collision_profile232)_ 7.48754497080214151e+02 +Electron-triton_collision_frequency_at_point_233_________________________ (freq_plasma_electron_triton_collision_profile233)_ 7.51203079213069259e+02 +Electron-triton_collision_frequency_at_point_234_________________________ (freq_plasma_electron_triton_collision_profile234)_ 7.53674773019195754e+02 +Electron-triton_collision_frequency_at_point_235_________________________ (freq_plasma_electron_triton_collision_profile235)_ 7.56169823461664350e+02 +Electron-triton_collision_frequency_at_point_236_________________________ (freq_plasma_electron_triton_collision_profile236)_ 7.58688478957211032e+02 +Electron-triton_collision_frequency_at_point_237_________________________ (freq_plasma_electron_triton_collision_profile237)_ 7.61230991430619042e+02 +Electron-triton_collision_frequency_at_point_238_________________________ (freq_plasma_electron_triton_collision_profile238)_ 7.63797616370042078e+02 +Electron-triton_collision_frequency_at_point_239_________________________ (freq_plasma_electron_triton_collision_profile239)_ 7.66388612883292922e+02 +Electron-triton_collision_frequency_at_point_240_________________________ (freq_plasma_electron_triton_collision_profile240)_ 7.69004243755096013e+02 +Electron-triton_collision_frequency_at_point_241_________________________ (freq_plasma_electron_triton_collision_profile241)_ 7.71644775505342409e+02 +Electron-triton_collision_frequency_at_point_242_________________________ (freq_plasma_electron_triton_collision_profile242)_ 7.74310478448347908e+02 +Electron-triton_collision_frequency_at_point_243_________________________ (freq_plasma_electron_triton_collision_profile243)_ 7.77001626753136293e+02 +Electron-triton_collision_frequency_at_point_244_________________________ (freq_plasma_electron_triton_collision_profile244)_ 7.79718498504767354e+02 +Electron-triton_collision_frequency_at_point_245_________________________ (freq_plasma_electron_triton_collision_profile245)_ 7.82461375766725155e+02 +Electron-triton_collision_frequency_at_point_246_________________________ (freq_plasma_electron_triton_collision_profile246)_ 7.85230544644381212e+02 +Electron-triton_collision_frequency_at_point_247_________________________ (freq_plasma_electron_triton_collision_profile247)_ 7.88026295349556221e+02 +Electron-triton_collision_frequency_at_point_248_________________________ (freq_plasma_electron_triton_collision_profile248)_ 7.90848922266195927e+02 +Electron-triton_collision_frequency_at_point_249_________________________ (freq_plasma_electron_triton_collision_profile249)_ 7.93698724017172708e+02 +Electron-triton_collision_frequency_at_point_250_________________________ (freq_plasma_electron_triton_collision_profile250)_ 7.96576003532245409e+02 +Electron-triton_collision_frequency_at_point_251_________________________ (freq_plasma_electron_triton_collision_profile251)_ 7.99481068117182758e+02 +Electron-triton_collision_frequency_at_point_252_________________________ (freq_plasma_electron_triton_collision_profile252)_ 8.02414229524075722e+02 +Electron-triton_collision_frequency_at_point_253_________________________ (freq_plasma_electron_triton_collision_profile253)_ 8.05375804022856755e+02 +Electron-triton_collision_frequency_at_point_254_________________________ (freq_plasma_electron_triton_collision_profile254)_ 8.08366112474043121e+02 +Electron-triton_collision_frequency_at_point_255_________________________ (freq_plasma_electron_triton_collision_profile255)_ 8.11385480402723260e+02 +Electron-triton_collision_frequency_at_point_256_________________________ (freq_plasma_electron_triton_collision_profile256)_ 8.14434238073813162e+02 +Electron-triton_collision_frequency_at_point_257_________________________ (freq_plasma_electron_triton_collision_profile257)_ 8.17512720568588747e+02 +Electron-triton_collision_frequency_at_point_258_________________________ (freq_plasma_electron_triton_collision_profile258)_ 8.20621267862525883e+02 +Electron-triton_collision_frequency_at_point_259_________________________ (freq_plasma_electron_triton_collision_profile259)_ 8.23760224904459506e+02 +Electron-triton_collision_frequency_at_point_260_________________________ (freq_plasma_electron_triton_collision_profile260)_ 8.26929941697087429e+02 +Electron-triton_collision_frequency_at_point_261_________________________ (freq_plasma_electron_triton_collision_profile261)_ 8.30130773378836125e+02 +Electron-triton_collision_frequency_at_point_262_________________________ (freq_plasma_electron_triton_collision_profile262)_ 8.33363080307105633e+02 +Electron-triton_collision_frequency_at_point_263_________________________ (freq_plasma_electron_triton_collision_profile263)_ 8.36627228142919648e+02 +Electron-triton_collision_frequency_at_point_264_________________________ (freq_plasma_electron_triton_collision_profile264)_ 8.39923587936991908e+02 +Electron-triton_collision_frequency_at_point_265_________________________ (freq_plasma_electron_triton_collision_profile265)_ 8.43252536217241300e+02 +Electron-triton_collision_frequency_at_point_266_________________________ (freq_plasma_electron_triton_collision_profile266)_ 8.46614455077761363e+02 +Electron-triton_collision_frequency_at_point_267_________________________ (freq_plasma_electron_triton_collision_profile267)_ 8.50009732269272604e+02 +Electron-triton_collision_frequency_at_point_268_________________________ (freq_plasma_electron_triton_collision_profile268)_ 8.53438761291076048e+02 +Electron-triton_collision_frequency_at_point_269_________________________ (freq_plasma_electron_triton_collision_profile269)_ 8.56901941484530653e+02 +Electron-triton_collision_frequency_at_point_270_________________________ (freq_plasma_electron_triton_collision_profile270)_ 8.60399678128058554e+02 +Electron-triton_collision_frequency_at_point_271_________________________ (freq_plasma_electron_triton_collision_profile271)_ 8.63932382533723057e+02 +Electron-triton_collision_frequency_at_point_272_________________________ (freq_plasma_electron_triton_collision_profile272)_ 8.67500472145373237e+02 +Electron-triton_collision_frequency_at_point_273_________________________ (freq_plasma_electron_triton_collision_profile273)_ 8.71104370638392311e+02 +Electron-triton_collision_frequency_at_point_274_________________________ (freq_plasma_electron_triton_collision_profile274)_ 8.74744508021051843e+02 +Electron-triton_collision_frequency_at_point_275_________________________ (freq_plasma_electron_triton_collision_profile275)_ 8.78421320737513270e+02 +Electron-triton_collision_frequency_at_point_276_________________________ (freq_plasma_electron_triton_collision_profile276)_ 8.82135251772461629e+02 +Electron-triton_collision_frequency_at_point_277_________________________ (freq_plasma_electron_triton_collision_profile277)_ 8.85886750757422647e+02 +Electron-triton_collision_frequency_at_point_278_________________________ (freq_plasma_electron_triton_collision_profile278)_ 8.89676274078754204e+02 +Electron-triton_collision_frequency_at_point_279_________________________ (freq_plasma_electron_triton_collision_profile279)_ 8.93504284987344931e+02 +Electron-triton_collision_frequency_at_point_280_________________________ (freq_plasma_electron_triton_collision_profile280)_ 8.97371253710022984e+02 +Electron-triton_collision_frequency_at_point_281_________________________ (freq_plasma_electron_triton_collision_profile281)_ 9.01277657562703325e+02 +Electron-triton_collision_frequency_at_point_282_________________________ (freq_plasma_electron_triton_collision_profile282)_ 9.05223981065272824e+02 +Electron-triton_collision_frequency_at_point_283_________________________ (freq_plasma_electron_triton_collision_profile283)_ 9.09210716058239882e+02 +Electron-triton_collision_frequency_at_point_284_________________________ (freq_plasma_electron_triton_collision_profile284)_ 9.13238361821152353e+02 +Electron-triton_collision_frequency_at_point_285_________________________ (freq_plasma_electron_triton_collision_profile285)_ 9.17307425192797155e+02 +Electron-triton_collision_frequency_at_point_286_________________________ (freq_plasma_electron_triton_collision_profile286)_ 9.21418420693197845e+02 +Electron-triton_collision_frequency_at_point_287_________________________ (freq_plasma_electron_triton_collision_profile287)_ 9.25571870647406854e+02 +Electron-triton_collision_frequency_at_point_288_________________________ (freq_plasma_electron_triton_collision_profile288)_ 9.29768305311118297e+02 +Electron-triton_collision_frequency_at_point_289_________________________ (freq_plasma_electron_triton_collision_profile289)_ 9.34008262998084433e+02 +Electron-triton_collision_frequency_at_point_290_________________________ (freq_plasma_electron_triton_collision_profile290)_ 9.38292290209369298e+02 +Electron-triton_collision_frequency_at_point_291_________________________ (freq_plasma_electron_triton_collision_profile291)_ 9.42620941764414965e+02 +Electron-triton_collision_frequency_at_point_292_________________________ (freq_plasma_electron_triton_collision_profile292)_ 9.46994780933943048e+02 +Electron-triton_collision_frequency_at_point_293_________________________ (freq_plasma_electron_triton_collision_profile293)_ 9.51414379574680311e+02 +Electron-triton_collision_frequency_at_point_294_________________________ (freq_plasma_electron_triton_collision_profile294)_ 9.55880318265911797e+02 +Electron-triton_collision_frequency_at_point_295_________________________ (freq_plasma_electron_triton_collision_profile295)_ 9.60393186447851349e+02 +Electron-triton_collision_frequency_at_point_296_________________________ (freq_plasma_electron_triton_collision_profile296)_ 9.64953582561831922e+02 +Electron-triton_collision_frequency_at_point_297_________________________ (freq_plasma_electron_triton_collision_profile297)_ 9.69562114192294985e+02 +Electron-triton_collision_frequency_at_point_298_________________________ (freq_plasma_electron_triton_collision_profile298)_ 9.74219398210581062e+02 +Electron-triton_collision_frequency_at_point_299_________________________ (freq_plasma_electron_triton_collision_profile299)_ 9.78926060920490954e+02 +Electron-triton_collision_frequency_at_point_300_________________________ (freq_plasma_electron_triton_collision_profile300)_ 9.83682738205616374e+02 +Electron-triton_collision_frequency_at_point_301_________________________ (freq_plasma_electron_triton_collision_profile301)_ 9.88490075678403741e+02 +Electron-triton_collision_frequency_at_point_302_________________________ (freq_plasma_electron_triton_collision_profile302)_ 9.93348728830940104e+02 +Electron-triton_collision_frequency_at_point_303_________________________ (freq_plasma_electron_triton_collision_profile303)_ 9.98259363187419922e+02 +Electron-triton_collision_frequency_at_point_304_________________________ (freq_plasma_electron_triton_collision_profile304)_ 1.00322265445827293e+03 +Electron-triton_collision_frequency_at_point_305_________________________ (freq_plasma_electron_triton_collision_profile305)_ 1.00823928869590543e+03 +Electron-triton_collision_frequency_at_point_306_________________________ (freq_plasma_electron_triton_collision_profile306)_ 1.01330996245202061e+03 +Electron-triton_collision_frequency_at_point_307_________________________ (freq_plasma_electron_triton_collision_profile307)_ 1.01843538293646770e+03 +Electron-triton_collision_frequency_at_point_308_________________________ (freq_plasma_electron_triton_collision_profile308)_ 1.02361626817757394e+03 +Electron-triton_collision_frequency_at_point_309_________________________ (freq_plasma_electron_triton_collision_profile309)_ 1.02885334718389231e+03 +Electron-triton_collision_frequency_at_point_310_________________________ (freq_plasma_electron_triton_collision_profile310)_ 1.03414736010731212e+03 +Electron-triton_collision_frequency_at_point_311_________________________ (freq_plasma_electron_triton_collision_profile311)_ 1.03949905840745578e+03 +Electron-triton_collision_frequency_at_point_312_________________________ (freq_plasma_electron_triton_collision_profile312)_ 1.04490920501729192e+03 +Electron-triton_collision_frequency_at_point_313_________________________ (freq_plasma_electron_triton_collision_profile313)_ 1.05037857450987030e+03 +Electron-triton_collision_frequency_at_point_314_________________________ (freq_plasma_electron_triton_collision_profile314)_ 1.05590795326610214e+03 +Electron-triton_collision_frequency_at_point_315_________________________ (freq_plasma_electron_triton_collision_profile315)_ 1.06149813964347209e+03 +Electron-triton_collision_frequency_at_point_316_________________________ (freq_plasma_electron_triton_collision_profile316)_ 1.06714994414558305e+03 +Electron-triton_collision_frequency_at_point_317_________________________ (freq_plasma_electron_triton_collision_profile317)_ 1.07286418959241200e+03 +Electron-triton_collision_frequency_at_point_318_________________________ (freq_plasma_electron_triton_collision_profile318)_ 1.07864171129114629e+03 +Electron-triton_collision_frequency_at_point_319_________________________ (freq_plasma_electron_triton_collision_profile319)_ 1.08448335720747423e+03 +Electron-triton_collision_frequency_at_point_320_________________________ (freq_plasma_electron_triton_collision_profile320)_ 1.09038998813716375e+03 +Electron-triton_collision_frequency_at_point_321_________________________ (freq_plasma_electron_triton_collision_profile321)_ 1.09636247787778279e+03 +Electron-triton_collision_frequency_at_point_322_________________________ (freq_plasma_electron_triton_collision_profile322)_ 1.10240171340037750e+03 +Electron-triton_collision_frequency_at_point_323_________________________ (freq_plasma_electron_triton_collision_profile323)_ 1.10850859502092658e+03 +Electron-triton_collision_frequency_at_point_324_________________________ (freq_plasma_electron_triton_collision_profile324)_ 1.11468403657136946e+03 +Electron-triton_collision_frequency_at_point_325_________________________ (freq_plasma_electron_triton_collision_profile325)_ 1.12092896556998926e+03 +Electron-triton_collision_frequency_at_point_326_________________________ (freq_plasma_electron_triton_collision_profile326)_ 1.12724432339091686e+03 +Electron-triton_collision_frequency_at_point_327_________________________ (freq_plasma_electron_triton_collision_profile327)_ 1.13363106543251502e+03 +Electron-triton_collision_frequency_at_point_328_________________________ (freq_plasma_electron_triton_collision_profile328)_ 1.14009016128436178e+03 +Electron-triton_collision_frequency_at_point_329_________________________ (freq_plasma_electron_triton_collision_profile329)_ 1.14662259489255143e+03 +Electron-triton_collision_frequency_at_point_330_________________________ (freq_plasma_electron_triton_collision_profile330)_ 1.15322936472301217e+03 +Electron-triton_collision_frequency_at_point_331_________________________ (freq_plasma_electron_triton_collision_profile331)_ 1.15991148392249625e+03 +Electron-triton_collision_frequency_at_point_332_________________________ (freq_plasma_electron_triton_collision_profile332)_ 1.16666998047690549e+03 +Electron-triton_collision_frequency_at_point_333_________________________ (freq_plasma_electron_triton_collision_profile333)_ 1.17350589736656229e+03 +Electron-triton_collision_frequency_at_point_334_________________________ (freq_plasma_electron_triton_collision_profile334)_ 1.18042029271803267e+03 +Electron-triton_collision_frequency_at_point_335_________________________ (freq_plasma_electron_triton_collision_profile335)_ 1.18741423995206605e+03 +Electron-triton_collision_frequency_at_point_336_________________________ (freq_plasma_electron_triton_collision_profile336)_ 1.19448882792719246e+03 +Electron-triton_collision_frequency_at_point_337_________________________ (freq_plasma_electron_triton_collision_profile337)_ 1.20164516107848954e+03 +Electron-triton_collision_frequency_at_point_338_________________________ (freq_plasma_electron_triton_collision_profile338)_ 1.20888435955099408e+03 +Electron-triton_collision_frequency_at_point_339_________________________ (freq_plasma_electron_triton_collision_profile339)_ 1.21620755932719976e+03 +Electron-triton_collision_frequency_at_point_340_________________________ (freq_plasma_electron_triton_collision_profile340)_ 1.22361591234804632e+03 +Electron-triton_collision_frequency_at_point_341_________________________ (freq_plasma_electron_triton_collision_profile341)_ 1.23111058662677056e+03 +Electron-triton_collision_frequency_at_point_342_________________________ (freq_plasma_electron_triton_collision_profile342)_ 1.23869276635493588e+03 +Electron-triton_collision_frequency_at_point_343_________________________ (freq_plasma_electron_triton_collision_profile343)_ 1.24636365199992747e+03 +Electron-triton_collision_frequency_at_point_344_________________________ (freq_plasma_electron_triton_collision_profile344)_ 1.25412446039314568e+03 +Electron-triton_collision_frequency_at_point_345_________________________ (freq_plasma_electron_triton_collision_profile345)_ 1.26197642480808827e+03 +Electron-triton_collision_frequency_at_point_346_________________________ (freq_plasma_electron_triton_collision_profile346)_ 1.26992079502743400e+03 +Electron-triton_collision_frequency_at_point_347_________________________ (freq_plasma_electron_triton_collision_profile347)_ 1.27795883739823853e+03 +Electron-triton_collision_frequency_at_point_348_________________________ (freq_plasma_electron_triton_collision_profile348)_ 1.28609183487422706e+03 +Electron-triton_collision_frequency_at_point_349_________________________ (freq_plasma_electron_triton_collision_profile349)_ 1.29432108704416555e+03 +Electron-triton_collision_frequency_at_point_350_________________________ (freq_plasma_electron_triton_collision_profile350)_ 1.30264791014519005e+03 +Electron-triton_collision_frequency_at_point_351_________________________ (freq_plasma_electron_triton_collision_profile351)_ 1.31107363705991452e+03 +Electron-triton_collision_frequency_at_point_352_________________________ (freq_plasma_electron_triton_collision_profile352)_ 1.31959961729607267e+03 +Electron-triton_collision_frequency_at_point_353_________________________ (freq_plasma_electron_triton_collision_profile353)_ 1.32822721694734832e+03 +Electron-triton_collision_frequency_at_point_354_________________________ (freq_plasma_electron_triton_collision_profile354)_ 1.33695781863400293e+03 +Electron-triton_collision_frequency_at_point_355_________________________ (freq_plasma_electron_triton_collision_profile355)_ 1.34579282142177271e+03 +Electron-triton_collision_frequency_at_point_356_________________________ (freq_plasma_electron_triton_collision_profile356)_ 1.35473364071746414e+03 +Electron-triton_collision_frequency_at_point_357_________________________ (freq_plasma_electron_triton_collision_profile357)_ 1.36378170813953807e+03 +Electron-triton_collision_frequency_at_point_358_________________________ (freq_plasma_electron_triton_collision_profile358)_ 1.37293847136189538e+03 +Electron-triton_collision_frequency_at_point_359_________________________ (freq_plasma_electron_triton_collision_profile359)_ 1.38220539392895353e+03 +Electron-triton_collision_frequency_at_point_360_________________________ (freq_plasma_electron_triton_collision_profile360)_ 1.39158395503998554e+03 +Electron-triton_collision_frequency_at_point_361_________________________ (freq_plasma_electron_triton_collision_profile361)_ 1.40107564930058788e+03 +Electron-triton_collision_frequency_at_point_362_________________________ (freq_plasma_electron_triton_collision_profile362)_ 1.41068198643897631e+03 +Electron-triton_collision_frequency_at_point_363_________________________ (freq_plasma_electron_triton_collision_profile363)_ 1.42040449098471299e+03 +Electron-triton_collision_frequency_at_point_364_________________________ (freq_plasma_electron_triton_collision_profile364)_ 1.43024470190728925e+03 +Electron-triton_collision_frequency_at_point_365_________________________ (freq_plasma_electron_triton_collision_profile365)_ 1.44020417221184243e+03 +Electron-triton_collision_frequency_at_point_366_________________________ (freq_plasma_electron_triton_collision_profile366)_ 1.45028446848914041e+03 +Electron-triton_collision_frequency_at_point_367_________________________ (freq_plasma_electron_triton_collision_profile367)_ 1.46048717041674558e+03 +Electron-triton_collision_frequency_at_point_368_________________________ (freq_plasma_electron_triton_collision_profile368)_ 1.47081387020814896e+03 +Electron-triton_collision_frequency_at_point_369_________________________ (freq_plasma_electron_triton_collision_profile369)_ 1.48126617200641340e+03 +Electron-triton_collision_frequency_at_point_370_________________________ (freq_plasma_electron_triton_collision_profile370)_ 1.49184569121869163e+03 +Electron-triton_collision_frequency_at_point_371_________________________ (freq_plasma_electron_triton_collision_profile371)_ 1.50255405378776140e+03 +Electron-triton_collision_frequency_at_point_372_________________________ (freq_plasma_electron_triton_collision_profile372)_ 1.51339289539647689e+03 +Electron-triton_collision_frequency_at_point_373_________________________ (freq_plasma_electron_triton_collision_profile373)_ 1.52436386060080508e+03 +Electron-triton_collision_frequency_at_point_374_________________________ (freq_plasma_electron_triton_collision_profile374)_ 1.53546860188684650e+03 +Electron-triton_collision_frequency_at_point_375_________________________ (freq_plasma_electron_triton_collision_profile375)_ 1.54670877864698377e+03 +Electron-triton_collision_frequency_at_point_376_________________________ (freq_plasma_electron_triton_collision_profile376)_ 1.55808605606997889e+03 +Electron-triton_collision_frequency_at_point_377_________________________ (freq_plasma_electron_triton_collision_profile377)_ 1.56960210393958118e+03 +Electron-triton_collision_frequency_at_point_378_________________________ (freq_plasma_electron_triton_collision_profile378)_ 1.58125859533583161e+03 +Electron-triton_collision_frequency_at_point_379_________________________ (freq_plasma_electron_triton_collision_profile379)_ 1.59305720523295531e+03 +Electron-triton_collision_frequency_at_point_380_________________________ (freq_plasma_electron_triton_collision_profile380)_ 1.60499960898733343e+03 +Electron-triton_collision_frequency_at_point_381_________________________ (freq_plasma_electron_triton_collision_profile381)_ 1.61708748070869092e+03 +Electron-triton_collision_frequency_at_point_382_________________________ (freq_plasma_electron_triton_collision_profile382)_ 1.62932249150721259e+03 +Electron-triton_collision_frequency_at_point_383_________________________ (freq_plasma_electron_triton_collision_profile383)_ 1.64170630760888776e+03 +Electron-triton_collision_frequency_at_point_384_________________________ (freq_plasma_electron_triton_collision_profile384)_ 1.65424058833090589e+03 +Electron-triton_collision_frequency_at_point_385_________________________ (freq_plasma_electron_triton_collision_profile385)_ 1.66692698390847818e+03 +Electron-triton_collision_frequency_at_point_386_________________________ (freq_plasma_electron_triton_collision_profile386)_ 1.67976713316394284e+03 +Electron-triton_collision_frequency_at_point_387_________________________ (freq_plasma_electron_triton_collision_profile387)_ 1.69276266100845396e+03 +Electron-triton_collision_frequency_at_point_388_________________________ (freq_plasma_electron_triton_collision_profile388)_ 1.70591517576601404e+03 +Electron-triton_collision_frequency_at_point_389_________________________ (freq_plasma_electron_triton_collision_profile389)_ 1.71922626630901891e+03 +Electron-triton_collision_frequency_at_point_390_________________________ (freq_plasma_electron_triton_collision_profile390)_ 1.73269749899382441e+03 +Electron-triton_collision_frequency_at_point_391_________________________ (freq_plasma_electron_triton_collision_profile391)_ 1.74633041438417604e+03 +Electron-triton_collision_frequency_at_point_392_________________________ (freq_plasma_electron_triton_collision_profile392)_ 1.76012652374968047e+03 +Electron-triton_collision_frequency_at_point_393_________________________ (freq_plasma_electron_triton_collision_profile393)_ 1.77408730532568120e+03 +Electron-triton_collision_frequency_at_point_394_________________________ (freq_plasma_electron_triton_collision_profile394)_ 1.78821420032018091e+03 +Electron-triton_collision_frequency_at_point_395_________________________ (freq_plasma_electron_triton_collision_profile395)_ 1.80250860865255504e+03 +Electron-triton_collision_frequency_at_point_396_________________________ (freq_plasma_electron_triton_collision_profile396)_ 1.81697188440796867e+03 +Electron-triton_collision_frequency_at_point_397_________________________ (freq_plasma_electron_triton_collision_profile397)_ 1.83160533099043073e+03 +Electron-triton_collision_frequency_at_point_398_________________________ (freq_plasma_electron_triton_collision_profile398)_ 1.84641019595647685e+03 +Electron-triton_collision_frequency_at_point_399_________________________ (freq_plasma_electron_triton_collision_profile399)_ 1.86138766551036701e+03 +Electron-triton_collision_frequency_at_point_400_________________________ (freq_plasma_electron_triton_collision_profile400)_ 1.87653885864064773e+03 +Electron-triton_collision_frequency_at_point_401_________________________ (freq_plasma_electron_triton_collision_profile401)_ 1.89186482087669560e+03 +Electron-triton_collision_frequency_at_point_402_________________________ (freq_plasma_electron_triton_collision_profile402)_ 1.90736651764265503e+03 +Electron-triton_collision_frequency_at_point_403_________________________ (freq_plasma_electron_triton_collision_profile403)_ 1.92304482718483814e+03 +Electron-triton_collision_frequency_at_point_404_________________________ (freq_plasma_electron_triton_collision_profile404)_ 1.93890053304731555e+03 +Electron-triton_collision_frequency_at_point_405_________________________ (freq_plasma_electron_triton_collision_profile405)_ 1.95493431606887634e+03 +Electron-triton_collision_frequency_at_point_406_________________________ (freq_plasma_electron_triton_collision_profile406)_ 1.97114674587303193e+03 +Electron-triton_collision_frequency_at_point_407_________________________ (freq_plasma_electron_triton_collision_profile407)_ 1.98753827182102805e+03 +Electron-triton_collision_frequency_at_point_408_________________________ (freq_plasma_electron_triton_collision_profile408)_ 2.00410921339611627e+03 +Electron-triton_collision_frequency_at_point_409_________________________ (freq_plasma_electron_triton_collision_profile409)_ 2.02085974998536562e+03 +Electron-triton_collision_frequency_at_point_410_________________________ (freq_plasma_electron_triton_collision_profile410)_ 2.03778991002340081e+03 +Electron-triton_collision_frequency_at_point_411_________________________ (freq_plasma_electron_triton_collision_profile411)_ 2.05489955946022383e+03 +Electron-triton_collision_frequency_at_point_412_________________________ (freq_plasma_electron_triton_collision_profile412)_ 2.07218838951305588e+03 +Electron-triton_collision_frequency_at_point_413_________________________ (freq_plasma_electron_triton_collision_profile413)_ 2.08965590365963772e+03 +Electron-triton_collision_frequency_at_point_414_________________________ (freq_plasma_electron_triton_collision_profile414)_ 2.10730140382789887e+03 +Electron-triton_collision_frequency_at_point_415_________________________ (freq_plasma_electron_triton_collision_profile415)_ 2.12512397573399085e+03 +Electron-triton_collision_frequency_at_point_416_________________________ (freq_plasma_electron_triton_collision_profile416)_ 2.14312247331773779e+03 +Electron-triton_collision_frequency_at_point_417_________________________ (freq_plasma_electron_triton_collision_profile417)_ 2.16129550222128728e+03 +Electron-triton_collision_frequency_at_point_418_________________________ (freq_plasma_electron_triton_collision_profile418)_ 2.17964140225314623e+03 +Electron-triton_collision_frequency_at_point_419_________________________ (freq_plasma_electron_triton_collision_profile419)_ 2.19815822877607889e+03 +Electron-triton_collision_frequency_at_point_420_________________________ (freq_plasma_electron_triton_collision_profile420)_ 2.21684373295304067e+03 +Electron-triton_collision_frequency_at_point_421_________________________ (freq_plasma_electron_triton_collision_profile421)_ 2.23569534078088464e+03 +Electron-triton_collision_frequency_at_point_422_________________________ (freq_plasma_electron_triton_collision_profile422)_ 2.25471013083647358e+03 +Electron-triton_collision_frequency_at_point_423_________________________ (freq_plasma_electron_triton_collision_profile423)_ 2.27388481065438282e+03 +Electron-triton_collision_frequency_at_point_424_________________________ (freq_plasma_electron_triton_collision_profile424)_ 2.29321569164928133e+03 +Electron-triton_collision_frequency_at_point_425_________________________ (freq_plasma_electron_triton_collision_profile425)_ 2.31269866248919561e+03 +Electron-triton_collision_frequency_at_point_426_________________________ (freq_plasma_electron_triton_collision_profile426)_ 2.33232916081840403e+03 +Electron-triton_collision_frequency_at_point_427_________________________ (freq_plasma_electron_triton_collision_profile427)_ 2.35210214322008278e+03 +Electron-triton_collision_frequency_at_point_428_________________________ (freq_plasma_electron_triton_collision_profile428)_ 2.37201205329918002e+03 +Electron-triton_collision_frequency_at_point_429_________________________ (freq_plasma_electron_triton_collision_profile429)_ 2.39205278775509123e+03 +Electron-triton_collision_frequency_at_point_430_________________________ (freq_plasma_electron_triton_collision_profile430)_ 2.41221766030108802e+03 +Electron-triton_collision_frequency_at_point_431_________________________ (freq_plasma_electron_triton_collision_profile431)_ 2.43249936327310297e+03 +Electron-triton_collision_frequency_at_point_432_________________________ (freq_plasma_electron_triton_collision_profile432)_ 2.45288992675372037e+03 +Electron-triton_collision_frequency_at_point_433_________________________ (freq_plasma_electron_triton_collision_profile433)_ 2.47338067501782962e+03 +Electron-triton_collision_frequency_at_point_434_________________________ (freq_plasma_electron_triton_collision_profile434)_ 2.49396218008359710e+03 +Electron-triton_collision_frequency_at_point_435_________________________ (freq_plasma_electron_triton_collision_profile435)_ 2.51462421212560275e+03 +Electron-triton_collision_frequency_at_point_436_________________________ (freq_plasma_electron_triton_collision_profile436)_ 2.53535568647511491e+03 +Electron-triton_collision_frequency_at_point_437_________________________ (freq_plasma_electron_triton_collision_profile437)_ 2.55614460689454791e+03 +Electron-triton_collision_frequency_at_point_438_________________________ (freq_plasma_electron_triton_collision_profile438)_ 2.57697800476741622e+03 +Electron-triton_collision_frequency_at_point_439_________________________ (freq_plasma_electron_triton_collision_profile439)_ 2.59784187379007471e+03 +Electron-triton_collision_frequency_at_point_440_________________________ (freq_plasma_electron_triton_collision_profile440)_ 2.61872109968436962e+03 +Electron-triton_collision_frequency_at_point_441_________________________ (freq_plasma_electron_triton_collision_profile441)_ 2.63959938436827224e+03 +Electron-triton_collision_frequency_at_point_442_________________________ (freq_plasma_electron_triton_collision_profile442)_ 2.66045916392037816e+03 +Electron-triton_collision_frequency_at_point_443_________________________ (freq_plasma_electron_triton_collision_profile443)_ 2.68128151954862506e+03 +Electron-triton_collision_frequency_at_point_444_________________________ (freq_plasma_electron_triton_collision_profile444)_ 2.70204608061667341e+03 +Electron-triton_collision_frequency_at_point_445_________________________ (freq_plasma_electron_triton_collision_profile445)_ 2.72273091858399130e+03 +Electron-triton_collision_frequency_at_point_446_________________________ (freq_plasma_electron_triton_collision_profile446)_ 2.74331243046505097e+03 +Electron-triton_collision_frequency_at_point_447_________________________ (freq_plasma_electron_triton_collision_profile447)_ 2.76376521009256749e+03 +Electron-triton_collision_frequency_at_point_448_________________________ (freq_plasma_electron_triton_collision_profile448)_ 2.78406190505599989e+03 +Electron-triton_collision_frequency_at_point_449_________________________ (freq_plasma_electron_triton_collision_profile449)_ 2.80417305664747664e+03 +Electron-triton_collision_frequency_at_point_450_________________________ (freq_plasma_electron_triton_collision_profile450)_ 2.82406691943777150e+03 +Electron-triton_collision_frequency_at_point_451_________________________ (freq_plasma_electron_triton_collision_profile451)_ 2.84370925616021395e+03 +Electron-triton_collision_frequency_at_point_452_________________________ (freq_plasma_electron_triton_collision_profile452)_ 2.86306310230745521e+03 +Electron-triton_collision_frequency_at_point_453_________________________ (freq_plasma_electron_triton_collision_profile453)_ 2.88208849310715595e+03 +Electron-triton_collision_frequency_at_point_454_________________________ (freq_plasma_electron_triton_collision_profile454)_ 2.90074214313196035e+03 +Electron-triton_collision_frequency_at_point_455_________________________ (freq_plasma_electron_triton_collision_profile455)_ 2.91897706540136505e+03 +Electron-triton_collision_frequency_at_point_456_________________________ (freq_plasma_electron_triton_collision_profile456)_ 2.93674211195429461e+03 +Electron-triton_collision_frequency_at_point_457_________________________ (freq_plasma_electron_triton_collision_profile457)_ 2.95398141071879490e+03 +Electron-triton_collision_frequency_at_point_458_________________________ (freq_plasma_electron_triton_collision_profile458)_ 2.97063366276912848e+03 +Electron-triton_collision_frequency_at_point_459_________________________ (freq_plasma_electron_triton_collision_profile459)_ 2.98663124750533279e+03 +Electron-triton_collision_frequency_at_point_460_________________________ (freq_plasma_electron_triton_collision_profile460)_ 3.00189905695763719e+03 +Electron-triton_collision_frequency_at_point_461_________________________ (freq_plasma_electron_triton_collision_profile461)_ 3.01635293699409249e+03 +Electron-triton_collision_frequency_at_point_462_________________________ (freq_plasma_electron_triton_collision_profile462)_ 3.02989753848785813e+03 +Electron-triton_collision_frequency_at_point_463_________________________ (freq_plasma_electron_triton_collision_profile463)_ 3.04242324620621594e+03 +Electron-triton_collision_frequency_at_point_464_________________________ (freq_plasma_electron_triton_collision_profile464)_ 3.05380159250726683e+03 +Electron-triton_collision_frequency_at_point_465_________________________ (freq_plasma_electron_triton_collision_profile465)_ 3.06387802008199105e+03 +Electron-triton_collision_frequency_at_point_466_________________________ (freq_plasma_electron_triton_collision_profile466)_ 3.07245960797020871e+03 +Electron-triton_collision_frequency_at_point_467_________________________ (freq_plasma_electron_triton_collision_profile467)_ 3.07929207628103222e+03 +Electron-triton_collision_frequency_at_point_468_________________________ (freq_plasma_electron_triton_collision_profile468)_ 3.08400976018601432e+03 +Electron-triton_collision_frequency_at_point_469_________________________ (freq_plasma_electron_triton_collision_profile469)_ 3.08599438877947250e+03 +Electron-triton_collision_frequency_at_point_470_________________________ (freq_plasma_electron_triton_collision_profile470)_ 3.08350589837677671e+03 +Electron-triton_collision_frequency_at_point_471_________________________ (freq_plasma_electron_triton_collision_profile471)_ 3.19194006473068293e+03 +Electron-triton_collision_frequency_at_point_472_________________________ (freq_plasma_electron_triton_collision_profile472)_ 3.30901678568234956e+03 +Electron-triton_collision_frequency_at_point_473_________________________ (freq_plasma_electron_triton_collision_profile473)_ 3.43578658887647453e+03 +Electron-triton_collision_frequency_at_point_474_________________________ (freq_plasma_electron_triton_collision_profile474)_ 3.57347360129749177e+03 +Electron-triton_collision_frequency_at_point_475_________________________ (freq_plasma_electron_triton_collision_profile475)_ 3.72351233123296379e+03 +Electron-triton_collision_frequency_at_point_476_________________________ (freq_plasma_electron_triton_collision_profile476)_ 3.88759408998594654e+03 +Electron-triton_collision_frequency_at_point_477_________________________ (freq_plasma_electron_triton_collision_profile477)_ 4.06772610358942484e+03 +Electron-triton_collision_frequency_at_point_478_________________________ (freq_plasma_electron_triton_collision_profile478)_ 4.26630751024421988e+03 +Electron-triton_collision_frequency_at_point_479_________________________ (freq_plasma_electron_triton_collision_profile479)_ 4.48622808879237346e+03 +Electron-triton_collision_frequency_at_point_480_________________________ (freq_plasma_electron_triton_collision_profile480)_ 4.73099797483533985e+03 +Electron-triton_collision_frequency_at_point_481_________________________ (freq_plasma_electron_triton_collision_profile481)_ 5.00492020343296554e+03 +Electron-triton_collision_frequency_at_point_482_________________________ (freq_plasma_electron_triton_collision_profile482)_ 5.31332333425900288e+03 +Electron-triton_collision_frequency_at_point_483_________________________ (freq_plasma_electron_triton_collision_profile483)_ 5.66287976618031098e+03 +Electron-triton_collision_frequency_at_point_484_________________________ (freq_plasma_electron_triton_collision_profile484)_ 6.06204849952210770e+03 +Electron-triton_collision_frequency_at_point_485_________________________ (freq_plasma_electron_triton_collision_profile485)_ 6.52170230737285056e+03 +Electron-triton_collision_frequency_at_point_486_________________________ (freq_plasma_electron_triton_collision_profile486)_ 7.05603436609300934e+03 +Electron-triton_collision_frequency_at_point_487_________________________ (freq_plasma_electron_triton_collision_profile487)_ 7.68389918328236672e+03 +Electron-triton_collision_frequency_at_point_488_________________________ (freq_plasma_electron_triton_collision_profile488)_ 8.43084793828982038e+03 +Electron-triton_collision_frequency_at_point_489_________________________ (freq_plasma_electron_triton_collision_profile489)_ 9.33231076975038013e+03 +Electron-triton_collision_frequency_at_point_490_________________________ (freq_plasma_electron_triton_collision_profile490)_ 1.04387455902059100e+04 +Electron-triton_collision_frequency_at_point_491_________________________ (freq_plasma_electron_triton_collision_profile491)_ 1.18243086700078620e+04 +Electron-triton_collision_frequency_at_point_492_________________________ (freq_plasma_electron_triton_collision_profile492)_ 1.36021648156821520e+04 +Electron-triton_collision_frequency_at_point_493_________________________ (freq_plasma_electron_triton_collision_profile493)_ 1.59531116336140967e+04 +Electron-triton_collision_frequency_at_point_494_________________________ (freq_plasma_electron_triton_collision_profile494)_ 1.91829974765898332e+04 +Electron-triton_collision_frequency_at_point_495_________________________ (freq_plasma_electron_triton_collision_profile495)_ 2.38486162493211232e+04 +Electron-triton_collision_frequency_at_point_496_________________________ (freq_plasma_electron_triton_collision_profile496)_ 3.10678922714526161e+04 +Electron-triton_collision_frequency_at_point_497_________________________ (freq_plasma_electron_triton_collision_profile497)_ 4.34174110879693690e+04 +Electron-triton_collision_frequency_at_point_498_________________________ (freq_plasma_electron_triton_collision_profile498)_ 6.82320583706514008e+04 +Electron-triton_collision_frequency_at_point_499_________________________ (freq_plasma_electron_triton_collision_profile499)_ 1.35885307294277387e+05 +Electron-triton_collision_frequency_at_point_500_________________________ (freq_plasma_electron_triton_collision_profile500)_ 5.78044223191013443e+05 +Volume_averaged_electron-alpha_thermal_collision_frequency_(Hz)__________ (freq_plasma_electron_alpha_thermal_collision_vol_avg)_ 1.02360102528271022e+03 +Electron-alpha_thermal_collision_frequency_at_point_0____________________ (freq_plasma_electron_alpha_thermal_collision_profile0)_ 4.65647563929110049e+02 +Electron-alpha_thermal_collision_frequency_at_point_1____________________ (freq_plasma_electron_alpha_thermal_collision_profile1)_ 4.65650234464734524e+02 +Electron-alpha_thermal_collision_frequency_at_point_2____________________ (freq_plasma_electron_alpha_thermal_collision_profile2)_ 4.65658246220327499e+02 +Electron-alpha_thermal_collision_frequency_at_point_3____________________ (freq_plasma_electron_alpha_thermal_collision_profile3)_ 4.65671599642066042e+02 +Electron-alpha_thermal_collision_frequency_at_point_4____________________ (freq_plasma_electron_alpha_thermal_collision_profile4)_ 4.65690295473639253e+02 +Electron-alpha_thermal_collision_frequency_at_point_5____________________ (freq_plasma_electron_alpha_thermal_collision_profile5)_ 4.65714334756340236e+02 +Electron-alpha_thermal_collision_frequency_at_point_6____________________ (freq_plasma_electron_alpha_thermal_collision_profile6)_ 4.65743718829193710e+02 +Electron-alpha_thermal_collision_frequency_at_point_7____________________ (freq_plasma_electron_alpha_thermal_collision_profile7)_ 4.65778449329120122e+02 +Electron-alpha_thermal_collision_frequency_at_point_8____________________ (freq_plasma_electron_alpha_thermal_collision_profile8)_ 4.65818528191138853e+02 +Electron-alpha_thermal_collision_frequency_at_point_9____________________ (freq_plasma_electron_alpha_thermal_collision_profile9)_ 4.65863957648603275e+02 +Electron-alpha_thermal_collision_frequency_at_point_10___________________ (freq_plasma_electron_alpha_thermal_collision_profile10)_ 4.65914740233477858e+02 +Electron-alpha_thermal_collision_frequency_at_point_11___________________ (freq_plasma_electron_alpha_thermal_collision_profile11)_ 4.65970878776649101e+02 +Electron-alpha_thermal_collision_frequency_at_point_12___________________ (freq_plasma_electron_alpha_thermal_collision_profile12)_ 4.66032376408272910e+02 +Electron-alpha_thermal_collision_frequency_at_point_13___________________ (freq_plasma_electron_alpha_thermal_collision_profile13)_ 4.66099236558160840e+02 +Electron-alpha_thermal_collision_frequency_at_point_14___________________ (freq_plasma_electron_alpha_thermal_collision_profile14)_ 4.66171462956202504e+02 +Electron-alpha_thermal_collision_frequency_at_point_15___________________ (freq_plasma_electron_alpha_thermal_collision_profile15)_ 4.66249059632824583e+02 +Electron-alpha_thermal_collision_frequency_at_point_16___________________ (freq_plasma_electron_alpha_thermal_collision_profile16)_ 4.66332030919487977e+02 +Electron-alpha_thermal_collision_frequency_at_point_17___________________ (freq_plasma_electron_alpha_thermal_collision_profile17)_ 4.66420381449220713e+02 +Electron-alpha_thermal_collision_frequency_at_point_18___________________ (freq_plasma_electron_alpha_thermal_collision_profile18)_ 4.66514116157190244e+02 +Electron-alpha_thermal_collision_frequency_at_point_19___________________ (freq_plasma_electron_alpha_thermal_collision_profile19)_ 4.66613240281312187e+02 +Electron-alpha_thermal_collision_frequency_at_point_20___________________ (freq_plasma_electron_alpha_thermal_collision_profile20)_ 4.66717759362897368e+02 +Electron-alpha_thermal_collision_frequency_at_point_21___________________ (freq_plasma_electron_alpha_thermal_collision_profile21)_ 4.66827679247333947e+02 +Electron-alpha_thermal_collision_frequency_at_point_22___________________ (freq_plasma_electron_alpha_thermal_collision_profile22)_ 4.66943006084813021e+02 +Electron-alpha_thermal_collision_frequency_at_point_23___________________ (freq_plasma_electron_alpha_thermal_collision_profile23)_ 4.67063746331086463e+02 +Electron-alpha_thermal_collision_frequency_at_point_24___________________ (freq_plasma_electron_alpha_thermal_collision_profile24)_ 4.67189906748266253e+02 +Electron-alpha_thermal_collision_frequency_at_point_25___________________ (freq_plasma_electron_alpha_thermal_collision_profile25)_ 4.67321494405662122e+02 +Electron-alpha_thermal_collision_frequency_at_point_26___________________ (freq_plasma_electron_alpha_thermal_collision_profile26)_ 4.67458516680656885e+02 +Electron-alpha_thermal_collision_frequency_at_point_27___________________ (freq_plasma_electron_alpha_thermal_collision_profile27)_ 4.67600981259620085e+02 +Electron-alpha_thermal_collision_frequency_at_point_28___________________ (freq_plasma_electron_alpha_thermal_collision_profile28)_ 4.67748896138862108e+02 +Electron-alpha_thermal_collision_frequency_at_point_29___________________ (freq_plasma_electron_alpha_thermal_collision_profile29)_ 4.67902269625626730e+02 +Electron-alpha_thermal_collision_frequency_at_point_30___________________ (freq_plasma_electron_alpha_thermal_collision_profile30)_ 4.68061110339123388e+02 +Electron-alpha_thermal_collision_frequency_at_point_31___________________ (freq_plasma_electron_alpha_thermal_collision_profile31)_ 4.68225427211597435e+02 +Electron-alpha_thermal_collision_frequency_at_point_32___________________ (freq_plasma_electron_alpha_thermal_collision_profile32)_ 4.68395229489442613e+02 +Electron-alpha_thermal_collision_frequency_at_point_33___________________ (freq_plasma_electron_alpha_thermal_collision_profile33)_ 4.68570526734351517e+02 +Electron-alpha_thermal_collision_frequency_at_point_34___________________ (freq_plasma_electron_alpha_thermal_collision_profile34)_ 4.68751328824508732e+02 +Electron-alpha_thermal_collision_frequency_at_point_35___________________ (freq_plasma_electron_alpha_thermal_collision_profile35)_ 4.68937645955820813e+02 +Electron-alpha_thermal_collision_frequency_at_point_36___________________ (freq_plasma_electron_alpha_thermal_collision_profile36)_ 4.69129488643191962e+02 +Electron-alpha_thermal_collision_frequency_at_point_37___________________ (freq_plasma_electron_alpha_thermal_collision_profile37)_ 4.69326867721835640e+02 +Electron-alpha_thermal_collision_frequency_at_point_38___________________ (freq_plasma_electron_alpha_thermal_collision_profile38)_ 4.69529794348631299e+02 +Electron-alpha_thermal_collision_frequency_at_point_39___________________ (freq_plasma_electron_alpha_thermal_collision_profile39)_ 4.69738280003521254e+02 +Electron-alpha_thermal_collision_frequency_at_point_40___________________ (freq_plasma_electron_alpha_thermal_collision_profile40)_ 4.69952336490949961e+02 +Electron-alpha_thermal_collision_frequency_at_point_41___________________ (freq_plasma_electron_alpha_thermal_collision_profile41)_ 4.70171975941344385e+02 +Electron-alpha_thermal_collision_frequency_at_point_42___________________ (freq_plasma_electron_alpha_thermal_collision_profile42)_ 4.70397210812638377e+02 +Electron-alpha_thermal_collision_frequency_at_point_43___________________ (freq_plasma_electron_alpha_thermal_collision_profile43)_ 4.70628053891840352e+02 +Electron-alpha_thermal_collision_frequency_at_point_44___________________ (freq_plasma_electron_alpha_thermal_collision_profile44)_ 4.70864518296640028e+02 +Electron-alpha_thermal_collision_frequency_at_point_45___________________ (freq_plasma_electron_alpha_thermal_collision_profile45)_ 4.71106617477066095e+02 +Electron-alpha_thermal_collision_frequency_at_point_46___________________ (freq_plasma_electron_alpha_thermal_collision_profile46)_ 4.71354365217179861e+02 +Electron-alpha_thermal_collision_frequency_at_point_47___________________ (freq_plasma_electron_alpha_thermal_collision_profile47)_ 4.71607775636819440e+02 +Electron-alpha_thermal_collision_frequency_at_point_48___________________ (freq_plasma_electron_alpha_thermal_collision_profile48)_ 4.71866863193383836e+02 +Electron-alpha_thermal_collision_frequency_at_point_49___________________ (freq_plasma_electron_alpha_thermal_collision_profile49)_ 4.72131642683666314e+02 +Electron-alpha_thermal_collision_frequency_at_point_50___________________ (freq_plasma_electron_alpha_thermal_collision_profile50)_ 4.72402129245729327e+02 +Electron-alpha_thermal_collision_frequency_at_point_51___________________ (freq_plasma_electron_alpha_thermal_collision_profile51)_ 4.72678338360828491e+02 +Electron-alpha_thermal_collision_frequency_at_point_52___________________ (freq_plasma_electron_alpha_thermal_collision_profile52)_ 4.72960285855380278e+02 +Electron-alpha_thermal_collision_frequency_at_point_53___________________ (freq_plasma_electron_alpha_thermal_collision_profile53)_ 4.73247987902976945e+02 +Electron-alpha_thermal_collision_frequency_at_point_54___________________ (freq_plasma_electron_alpha_thermal_collision_profile54)_ 4.73541461026451032e+02 +Electron-alpha_thermal_collision_frequency_at_point_55___________________ (freq_plasma_electron_alpha_thermal_collision_profile55)_ 4.73840722099983623e+02 +Electron-alpha_thermal_collision_frequency_at_point_56___________________ (freq_plasma_electron_alpha_thermal_collision_profile56)_ 4.74145788351262468e+02 +Electron-alpha_thermal_collision_frequency_at_point_57___________________ (freq_plasma_electron_alpha_thermal_collision_profile57)_ 4.74456677363689778e+02 +Electron-alpha_thermal_collision_frequency_at_point_58___________________ (freq_plasma_electron_alpha_thermal_collision_profile58)_ 4.74773407078635955e+02 +Electron-alpha_thermal_collision_frequency_at_point_59___________________ (freq_plasma_electron_alpha_thermal_collision_profile59)_ 4.75095995797745502e+02 +Electron-alpha_thermal_collision_frequency_at_point_60___________________ (freq_plasma_electron_alpha_thermal_collision_profile60)_ 4.75424462185291702e+02 +Electron-alpha_thermal_collision_frequency_at_point_61___________________ (freq_plasma_electron_alpha_thermal_collision_profile61)_ 4.75758825270581440e+02 +Electron-alpha_thermal_collision_frequency_at_point_62___________________ (freq_plasma_electron_alpha_thermal_collision_profile62)_ 4.76099104450411858e+02 +Electron-alpha_thermal_collision_frequency_at_point_63___________________ (freq_plasma_electron_alpha_thermal_collision_profile63)_ 4.76445319491577834e+02 +Electron-alpha_thermal_collision_frequency_at_point_64___________________ (freq_plasma_electron_alpha_thermal_collision_profile64)_ 4.76797490533431471e+02 +Electron-alpha_thermal_collision_frequency_at_point_65___________________ (freq_plasma_electron_alpha_thermal_collision_profile65)_ 4.77155638090495188e+02 +Electron-alpha_thermal_collision_frequency_at_point_66___________________ (freq_plasma_electron_alpha_thermal_collision_profile66)_ 4.77519783055126652e+02 +Electron-alpha_thermal_collision_frequency_at_point_67___________________ (freq_plasma_electron_alpha_thermal_collision_profile67)_ 4.77889946700238511e+02 +Electron-alpha_thermal_collision_frequency_at_point_68___________________ (freq_plasma_electron_alpha_thermal_collision_profile68)_ 4.78266150682072407e+02 +Electron-alpha_thermal_collision_frequency_at_point_69___________________ (freq_plasma_electron_alpha_thermal_collision_profile69)_ 4.78648417043027052e+02 +Electron-alpha_thermal_collision_frequency_at_point_70___________________ (freq_plasma_electron_alpha_thermal_collision_profile70)_ 4.79036768214542747e+02 +Electron-alpha_thermal_collision_frequency_at_point_71___________________ (freq_plasma_electron_alpha_thermal_collision_profile71)_ 4.79431227020042911e+02 +Electron-alpha_thermal_collision_frequency_at_point_72___________________ (freq_plasma_electron_alpha_thermal_collision_profile72)_ 4.79831816677930306e+02 +Electron-alpha_thermal_collision_frequency_at_point_73___________________ (freq_plasma_electron_alpha_thermal_collision_profile73)_ 4.80238560804643157e+02 +Electron-alpha_thermal_collision_frequency_at_point_74___________________ (freq_plasma_electron_alpha_thermal_collision_profile74)_ 4.80651483417768532e+02 +Electron-alpha_thermal_collision_frequency_at_point_75___________________ (freq_plasma_electron_alpha_thermal_collision_profile75)_ 4.81070608939214310e+02 +Electron-alpha_thermal_collision_frequency_at_point_76___________________ (freq_plasma_electron_alpha_thermal_collision_profile76)_ 4.81495962198441248e+02 +Electron-alpha_thermal_collision_frequency_at_point_77___________________ (freq_plasma_electron_alpha_thermal_collision_profile77)_ 4.81927568435756143e+02 +Electron-alpha_thermal_collision_frequency_at_point_78___________________ (freq_plasma_electron_alpha_thermal_collision_profile78)_ 4.82365453305664460e+02 +Electron-alpha_thermal_collision_frequency_at_point_79___________________ (freq_plasma_electron_alpha_thermal_collision_profile79)_ 4.82809642880286901e+02 +Electron-alpha_thermal_collision_frequency_at_point_80___________________ (freq_plasma_electron_alpha_thermal_collision_profile80)_ 4.83260163652836525e+02 +Electron-alpha_thermal_collision_frequency_at_point_81___________________ (freq_plasma_electron_alpha_thermal_collision_profile81)_ 4.83717042541161788e+02 +Electron-alpha_thermal_collision_frequency_at_point_82___________________ (freq_plasma_electron_alpha_thermal_collision_profile82)_ 4.84180306891350654e+02 +Electron-alpha_thermal_collision_frequency_at_point_83___________________ (freq_plasma_electron_alpha_thermal_collision_profile83)_ 4.84649984481403692e+02 +Electron-alpha_thermal_collision_frequency_at_point_84___________________ (freq_plasma_electron_alpha_thermal_collision_profile84)_ 4.85126103524969096e+02 +Electron-alpha_thermal_collision_frequency_at_point_85___________________ (freq_plasma_electron_alpha_thermal_collision_profile85)_ 4.85608692675147154e+02 +Electron-alpha_thermal_collision_frequency_at_point_86___________________ (freq_plasma_electron_alpha_thermal_collision_profile86)_ 4.86097781028362760e+02 +Electron-alpha_thermal_collision_frequency_at_point_87___________________ (freq_plasma_electron_alpha_thermal_collision_profile87)_ 4.86593398128303534e+02 +Electron-alpha_thermal_collision_frequency_at_point_88___________________ (freq_plasma_electron_alpha_thermal_collision_profile88)_ 4.87095573969929944e+02 +Electron-alpha_thermal_collision_frequency_at_point_89___________________ (freq_plasma_electron_alpha_thermal_collision_profile89)_ 4.87604339003554628e+02 +Electron-alpha_thermal_collision_frequency_at_point_90___________________ (freq_plasma_electron_alpha_thermal_collision_profile90)_ 4.88119724138994343e+02 +Electron-alpha_thermal_collision_frequency_at_point_91___________________ (freq_plasma_electron_alpha_thermal_collision_profile91)_ 4.88641760749792297e+02 +Electron-alpha_thermal_collision_frequency_at_point_92___________________ (freq_plasma_electron_alpha_thermal_collision_profile92)_ 4.89170480677515172e+02 +Electron-alpha_thermal_collision_frequency_at_point_93___________________ (freq_plasma_electron_alpha_thermal_collision_profile93)_ 4.89705916236124096e+02 +Electron-alpha_thermal_collision_frequency_at_point_94___________________ (freq_plasma_electron_alpha_thermal_collision_profile94)_ 4.90248100216419516e+02 +Electron-alpha_thermal_collision_frequency_at_point_95___________________ (freq_plasma_electron_alpha_thermal_collision_profile95)_ 4.90797065890565023e+02 +Electron-alpha_thermal_collision_frequency_at_point_96___________________ (freq_plasma_electron_alpha_thermal_collision_profile96)_ 4.91352847016686269e+02 +Electron-alpha_thermal_collision_frequency_at_point_97___________________ (freq_plasma_electron_alpha_thermal_collision_profile97)_ 4.91915477843549525e+02 +Electron-alpha_thermal_collision_frequency_at_point_98___________________ (freq_plasma_electron_alpha_thermal_collision_profile98)_ 4.92484993115318503e+02 +Electron-alpha_thermal_collision_frequency_at_point_99___________________ (freq_plasma_electron_alpha_thermal_collision_profile99)_ 4.93061428076394122e+02 +Electron-alpha_thermal_collision_frequency_at_point_100__________________ (freq_plasma_electron_alpha_thermal_collision_profile100)_ 4.93644818476333626e+02 +Electron-alpha_thermal_collision_frequency_at_point_101__________________ (freq_plasma_electron_alpha_thermal_collision_profile101)_ 4.94235200574853764e+02 +Electron-alpha_thermal_collision_frequency_at_point_102__________________ (freq_plasma_electron_alpha_thermal_collision_profile102)_ 4.94832611146919646e+02 +Electron-alpha_thermal_collision_frequency_at_point_103__________________ (freq_plasma_electron_alpha_thermal_collision_profile103)_ 4.95437087487914482e+02 +Electron-alpha_thermal_collision_frequency_at_point_104__________________ (freq_plasma_electron_alpha_thermal_collision_profile104)_ 4.96048667418901800e+02 +Electron-alpha_thermal_collision_frequency_at_point_105__________________ (freq_plasma_electron_alpha_thermal_collision_profile105)_ 4.96667389291971062e+02 +Electron-alpha_thermal_collision_frequency_at_point_106__________________ (freq_plasma_electron_alpha_thermal_collision_profile106)_ 4.97293291995674736e+02 +Electron-alpha_thermal_collision_frequency_at_point_107__________________ (freq_plasma_electron_alpha_thermal_collision_profile107)_ 4.97926414960554496e+02 +Electron-alpha_thermal_collision_frequency_at_point_108__________________ (freq_plasma_electron_alpha_thermal_collision_profile108)_ 4.98566798164759746e+02 +Electron-alpha_thermal_collision_frequency_at_point_109__________________ (freq_plasma_electron_alpha_thermal_collision_profile109)_ 4.99214482139760491e+02 +Electron-alpha_thermal_collision_frequency_at_point_110__________________ (freq_plasma_electron_alpha_thermal_collision_profile110)_ 4.99869507976152079e+02 +Electron-alpha_thermal_collision_frequency_at_point_111__________________ (freq_plasma_electron_alpha_thermal_collision_profile111)_ 5.00531917329558667e+02 +Electron-alpha_thermal_collision_frequency_at_point_112__________________ (freq_plasma_electron_alpha_thermal_collision_profile112)_ 5.01201752426631856e+02 +Electron-alpha_thermal_collision_frequency_at_point_113__________________ (freq_plasma_electron_alpha_thermal_collision_profile113)_ 5.01879056071149478e+02 +Electron-alpha_thermal_collision_frequency_at_point_114__________________ (freq_plasma_electron_alpha_thermal_collision_profile114)_ 5.02563871650215276e+02 +Electron-alpha_thermal_collision_frequency_at_point_115__________________ (freq_plasma_electron_alpha_thermal_collision_profile115)_ 5.03256243140557444e+02 +Electron-alpha_thermal_collision_frequency_at_point_116__________________ (freq_plasma_electron_alpha_thermal_collision_profile116)_ 5.03956215114935389e+02 +Electron-alpha_thermal_collision_frequency_at_point_117__________________ (freq_plasma_electron_alpha_thermal_collision_profile117)_ 5.04663832748646087e+02 +Electron-alpha_thermal_collision_frequency_at_point_118__________________ (freq_plasma_electron_alpha_thermal_collision_profile118)_ 5.05379141826141677e+02 +Electron-alpha_thermal_collision_frequency_at_point_119__________________ (freq_plasma_electron_alpha_thermal_collision_profile119)_ 5.06102188747752791e+02 +Electron-alpha_thermal_collision_frequency_at_point_120__________________ (freq_plasma_electron_alpha_thermal_collision_profile120)_ 5.06833020536520962e+02 +Electron-alpha_thermal_collision_frequency_at_point_121__________________ (freq_plasma_electron_alpha_thermal_collision_profile121)_ 5.07571684845146706e+02 +Electron-alpha_thermal_collision_frequency_at_point_122__________________ (freq_plasma_electron_alpha_thermal_collision_profile122)_ 5.08318229963045894e+02 +Electron-alpha_thermal_collision_frequency_at_point_123__________________ (freq_plasma_electron_alpha_thermal_collision_profile123)_ 5.09072704823524532e+02 +Electron-alpha_thermal_collision_frequency_at_point_124__________________ (freq_plasma_electron_alpha_thermal_collision_profile124)_ 5.09835159011070118e+02 +Electron-alpha_thermal_collision_frequency_at_point_125__________________ (freq_plasma_electron_alpha_thermal_collision_profile125)_ 5.10605642768759310e+02 +Electron-alpha_thermal_collision_frequency_at_point_126__________________ (freq_plasma_electron_alpha_thermal_collision_profile126)_ 5.11384207005790984e+02 +Electron-alpha_thermal_collision_frequency_at_point_127__________________ (freq_plasma_electron_alpha_thermal_collision_profile127)_ 5.12170903305135539e+02 +Electron-alpha_thermal_collision_frequency_at_point_128__________________ (freq_plasma_electron_alpha_thermal_collision_profile128)_ 5.12965783931314718e+02 +Electron-alpha_thermal_collision_frequency_at_point_129__________________ (freq_plasma_electron_alpha_thermal_collision_profile129)_ 5.13768901838304032e+02 +Electron-alpha_thermal_collision_frequency_at_point_130__________________ (freq_plasma_electron_alpha_thermal_collision_profile130)_ 5.14580310677564853e+02 +Electron-alpha_thermal_collision_frequency_at_point_131__________________ (freq_plasma_electron_alpha_thermal_collision_profile131)_ 5.15400064806207297e+02 +Electron-alpha_thermal_collision_frequency_at_point_132__________________ (freq_plasma_electron_alpha_thermal_collision_profile132)_ 5.16228219295285044e+02 +Electron-alpha_thermal_collision_frequency_at_point_133__________________ (freq_plasma_electron_alpha_thermal_collision_profile133)_ 5.17064829938225898e+02 +Electron-alpha_thermal_collision_frequency_at_point_134__________________ (freq_plasma_electron_alpha_thermal_collision_profile134)_ 5.17909953259398094e+02 +Electron-alpha_thermal_collision_frequency_at_point_135__________________ (freq_plasma_electron_alpha_thermal_collision_profile135)_ 5.18763646522816543e+02 +Electron-alpha_thermal_collision_frequency_at_point_136__________________ (freq_plasma_electron_alpha_thermal_collision_profile136)_ 5.19625967740989950e+02 +Electron-alpha_thermal_collision_frequency_at_point_137__________________ (freq_plasma_electron_alpha_thermal_collision_profile137)_ 5.20496975683912410e+02 +Electron-alpha_thermal_collision_frequency_at_point_138__________________ (freq_plasma_electron_alpha_thermal_collision_profile138)_ 5.21376729888200430e+02 +Electron-alpha_thermal_collision_frequency_at_point_139__________________ (freq_plasma_electron_alpha_thermal_collision_profile139)_ 5.22265290666377723e+02 +Electron-alpha_thermal_collision_frequency_at_point_140__________________ (freq_plasma_electron_alpha_thermal_collision_profile140)_ 5.23162719116312701e+02 +Electron-alpha_thermal_collision_frequency_at_point_141__________________ (freq_plasma_electron_alpha_thermal_collision_profile141)_ 5.24069077130807841e+02 +Electron-alpha_thermal_collision_frequency_at_point_142__________________ (freq_plasma_electron_alpha_thermal_collision_profile142)_ 5.24984427407344697e+02 +Electron-alpha_thermal_collision_frequency_at_point_143__________________ (freq_plasma_electron_alpha_thermal_collision_profile143)_ 5.25908833457988521e+02 +Electron-alpha_thermal_collision_frequency_at_point_144__________________ (freq_plasma_electron_alpha_thermal_collision_profile144)_ 5.26842359619453418e+02 +Electron-alpha_thermal_collision_frequency_at_point_145__________________ (freq_plasma_electron_alpha_thermal_collision_profile145)_ 5.27785071063331088e+02 +Electron-alpha_thermal_collision_frequency_at_point_146__________________ (freq_plasma_electron_alpha_thermal_collision_profile146)_ 5.28737033806484874e+02 +Electron-alpha_thermal_collision_frequency_at_point_147__________________ (freq_plasma_electron_alpha_thermal_collision_profile147)_ 5.29698314721616612e+02 +Electron-alpha_thermal_collision_frequency_at_point_148__________________ (freq_plasma_electron_alpha_thermal_collision_profile148)_ 5.30668981548001739e+02 +Electron-alpha_thermal_collision_frequency_at_point_149__________________ (freq_plasma_electron_alpha_thermal_collision_profile149)_ 5.31649102902399591e+02 +Electron-alpha_thermal_collision_frequency_at_point_150__________________ (freq_plasma_electron_alpha_thermal_collision_profile150)_ 5.32638748290145145e+02 +Electron-alpha_thermal_collision_frequency_at_point_151__________________ (freq_plasma_electron_alpha_thermal_collision_profile151)_ 5.33637988116417546e+02 +Electron-alpha_thermal_collision_frequency_at_point_152__________________ (freq_plasma_electron_alpha_thermal_collision_profile152)_ 5.34646893697695077e+02 +Electron-alpha_thermal_collision_frequency_at_point_153__________________ (freq_plasma_electron_alpha_thermal_collision_profile153)_ 5.35665537273394762e+02 +Electron-alpha_thermal_collision_frequency_at_point_154__________________ (freq_plasma_electron_alpha_thermal_collision_profile154)_ 5.36693992017705455e+02 +Electron-alpha_thermal_collision_frequency_at_point_155__________________ (freq_plasma_electron_alpha_thermal_collision_profile155)_ 5.37732332051611593e+02 +Electron-alpha_thermal_collision_frequency_at_point_156__________________ (freq_plasma_electron_alpha_thermal_collision_profile156)_ 5.38780632455113619e+02 +Electron-alpha_thermal_collision_frequency_at_point_157__________________ (freq_plasma_electron_alpha_thermal_collision_profile157)_ 5.39838969279650428e+02 +Electron-alpha_thermal_collision_frequency_at_point_158__________________ (freq_plasma_electron_alpha_thermal_collision_profile158)_ 5.40907419560724747e+02 +Electron-alpha_thermal_collision_frequency_at_point_159__________________ (freq_plasma_electron_alpha_thermal_collision_profile159)_ 5.41986061330732582e+02 +Electron-alpha_thermal_collision_frequency_at_point_160__________________ (freq_plasma_electron_alpha_thermal_collision_profile160)_ 5.43074973632006277e+02 +Electron-alpha_thermal_collision_frequency_at_point_161__________________ (freq_plasma_electron_alpha_thermal_collision_profile161)_ 5.44174236530072449e+02 +Electron-alpha_thermal_collision_frequency_at_point_162__________________ (freq_plasma_electron_alpha_thermal_collision_profile162)_ 5.45283931127122287e+02 +Electron-alpha_thermal_collision_frequency_at_point_163__________________ (freq_plasma_electron_alpha_thermal_collision_profile163)_ 5.46404139575710246e+02 +Electron-alpha_thermal_collision_frequency_at_point_164__________________ (freq_plasma_electron_alpha_thermal_collision_profile164)_ 5.47534945092672046e+02 +Electron-alpha_thermal_collision_frequency_at_point_165__________________ (freq_plasma_electron_alpha_thermal_collision_profile165)_ 5.48676431973276408e+02 +Electron-alpha_thermal_collision_frequency_at_point_166__________________ (freq_plasma_electron_alpha_thermal_collision_profile166)_ 5.49828685605605983e+02 +Electron-alpha_thermal_collision_frequency_at_point_167__________________ (freq_plasma_electron_alpha_thermal_collision_profile167)_ 5.50991792485179531e+02 +Electron-alpha_thermal_collision_frequency_at_point_168__________________ (freq_plasma_electron_alpha_thermal_collision_profile168)_ 5.52165840229811579e+02 +Electron-alpha_thermal_collision_frequency_at_point_169__________________ (freq_plasma_electron_alpha_thermal_collision_profile169)_ 5.53350917594720045e+02 +Electron-alpha_thermal_collision_frequency_at_point_170__________________ (freq_plasma_electron_alpha_thermal_collision_profile170)_ 5.54547114487882595e+02 +Electron-alpha_thermal_collision_frequency_at_point_171__________________ (freq_plasma_electron_alpha_thermal_collision_profile171)_ 5.55754521985647330e+02 +Electron-alpha_thermal_collision_frequency_at_point_172__________________ (freq_plasma_electron_alpha_thermal_collision_profile172)_ 5.56973232348601073e+02 +Electron-alpha_thermal_collision_frequency_at_point_173__________________ (freq_plasma_electron_alpha_thermal_collision_profile173)_ 5.58203339037703699e+02 +Electron-alpha_thermal_collision_frequency_at_point_174__________________ (freq_plasma_electron_alpha_thermal_collision_profile174)_ 5.59444936730686322e+02 +Electron-alpha_thermal_collision_frequency_at_point_175__________________ (freq_plasma_electron_alpha_thermal_collision_profile175)_ 5.60698121338722785e+02 +Electron-alpha_thermal_collision_frequency_at_point_176__________________ (freq_plasma_electron_alpha_thermal_collision_profile176)_ 5.61962990023381167e+02 +Electron-alpha_thermal_collision_frequency_at_point_177__________________ (freq_plasma_electron_alpha_thermal_collision_profile177)_ 5.63239641213853247e+02 +Electron-alpha_thermal_collision_frequency_at_point_178__________________ (freq_plasma_electron_alpha_thermal_collision_profile178)_ 5.64528174624473763e+02 +Electron-alpha_thermal_collision_frequency_at_point_179__________________ (freq_plasma_electron_alpha_thermal_collision_profile179)_ 5.65828691272529682e+02 +Electron-alpha_thermal_collision_frequency_at_point_180__________________ (freq_plasma_electron_alpha_thermal_collision_profile180)_ 5.67141293496368348e+02 +Electron-alpha_thermal_collision_frequency_at_point_181__________________ (freq_plasma_electron_alpha_thermal_collision_profile181)_ 5.68466084973806801e+02 +Electron-alpha_thermal_collision_frequency_at_point_182__________________ (freq_plasma_electron_alpha_thermal_collision_profile182)_ 5.69803170740848827e+02 +Electron-alpha_thermal_collision_frequency_at_point_183__________________ (freq_plasma_electron_alpha_thermal_collision_profile183)_ 5.71152657210716484e+02 +Electron-alpha_thermal_collision_frequency_at_point_184__________________ (freq_plasma_electron_alpha_thermal_collision_profile184)_ 5.72514652193198572e+02 +Electron-alpha_thermal_collision_frequency_at_point_185__________________ (freq_plasma_electron_alpha_thermal_collision_profile185)_ 5.73889264914324485e+02 +Electron-alpha_thermal_collision_frequency_at_point_186__________________ (freq_plasma_electron_alpha_thermal_collision_profile186)_ 5.75276606036368094e+02 +Electron-alpha_thermal_collision_frequency_at_point_187__________________ (freq_plasma_electron_alpha_thermal_collision_profile187)_ 5.76676787678187452e+02 +Electron-alpha_thermal_collision_frequency_at_point_188__________________ (freq_plasma_electron_alpha_thermal_collision_profile188)_ 5.78089923435906371e+02 +Electron-alpha_thermal_collision_frequency_at_point_189__________________ (freq_plasma_electron_alpha_thermal_collision_profile189)_ 5.79516128403944208e+02 +Electron-alpha_thermal_collision_frequency_at_point_190__________________ (freq_plasma_electron_alpha_thermal_collision_profile190)_ 5.80955519196399337e+02 +Electron-alpha_thermal_collision_frequency_at_point_191__________________ (freq_plasma_electron_alpha_thermal_collision_profile191)_ 5.82408213968795053e+02 +Electron-alpha_thermal_collision_frequency_at_point_192__________________ (freq_plasma_electron_alpha_thermal_collision_profile192)_ 5.83874332440188937e+02 +Electron-alpha_thermal_collision_frequency_at_point_193__________________ (freq_plasma_electron_alpha_thermal_collision_profile193)_ 5.85353995915658970e+02 +Electron-alpha_thermal_collision_frequency_at_point_194__________________ (freq_plasma_electron_alpha_thermal_collision_profile194)_ 5.86847327309169259e+02 +Electron-alpha_thermal_collision_frequency_at_point_195__________________ (freq_plasma_electron_alpha_thermal_collision_profile195)_ 5.88354451166820468e+02 +Electron-alpha_thermal_collision_frequency_at_point_196__________________ (freq_plasma_electron_alpha_thermal_collision_profile196)_ 5.89875493690496910e+02 +Electron-alpha_thermal_collision_frequency_at_point_197__________________ (freq_plasma_electron_alpha_thermal_collision_profile197)_ 5.91410582761913474e+02 +Electron-alpha_thermal_collision_frequency_at_point_198__________________ (freq_plasma_electron_alpha_thermal_collision_profile198)_ 5.92959847967070118e+02 +Electron-alpha_thermal_collision_frequency_at_point_199__________________ (freq_plasma_electron_alpha_thermal_collision_profile199)_ 5.94523420621123250e+02 +Electron-alpha_thermal_collision_frequency_at_point_200__________________ (freq_plasma_electron_alpha_thermal_collision_profile200)_ 5.96101433793676733e+02 +Electron-alpha_thermal_collision_frequency_at_point_201__________________ (freq_plasma_electron_alpha_thermal_collision_profile201)_ 5.97694022334509441e+02 +Electron-alpha_thermal_collision_frequency_at_point_202__________________ (freq_plasma_electron_alpha_thermal_collision_profile202)_ 5.99301322899732895e+02 +Electron-alpha_thermal_collision_frequency_at_point_203__________________ (freq_plasma_electron_alpha_thermal_collision_profile203)_ 6.00923473978402740e+02 +Electron-alpha_thermal_collision_frequency_at_point_204__________________ (freq_plasma_electron_alpha_thermal_collision_profile204)_ 6.02560615919578026e+02 +Electron-alpha_thermal_collision_frequency_at_point_205__________________ (freq_plasma_electron_alpha_thermal_collision_profile205)_ 6.04212890959846732e+02 +Electron-alpha_thermal_collision_frequency_at_point_206__________________ (freq_plasma_electron_alpha_thermal_collision_profile206)_ 6.05880443251319434e+02 +Electron-alpha_thermal_collision_frequency_at_point_207__________________ (freq_plasma_electron_alpha_thermal_collision_profile207)_ 6.07563418890102753e+02 +Electron-alpha_thermal_collision_frequency_at_point_208__________________ (freq_plasma_electron_alpha_thermal_collision_profile208)_ 6.09261965945260158e+02 +Electron-alpha_thermal_collision_frequency_at_point_209__________________ (freq_plasma_electron_alpha_thermal_collision_profile209)_ 6.10976234488269142e+02 +Electron-alpha_thermal_collision_frequency_at_point_210__________________ (freq_plasma_electron_alpha_thermal_collision_profile210)_ 6.12706376622981566e+02 +Electron-alpha_thermal_collision_frequency_at_point_211__________________ (freq_plasma_electron_alpha_thermal_collision_profile211)_ 6.14452546516103439e+02 +Electron-alpha_thermal_collision_frequency_at_point_212__________________ (freq_plasma_electron_alpha_thermal_collision_profile212)_ 6.16214900428189480e+02 +Electron-alpha_thermal_collision_frequency_at_point_213__________________ (freq_plasma_electron_alpha_thermal_collision_profile213)_ 6.17993596745179275e+02 +Electron-alpha_thermal_collision_frequency_at_point_214__________________ (freq_plasma_electron_alpha_thermal_collision_profile214)_ 6.19788796010469241e+02 +Electron-alpha_thermal_collision_frequency_at_point_215__________________ (freq_plasma_electron_alpha_thermal_collision_profile215)_ 6.21600660957540640e+02 +Electron-alpha_thermal_collision_frequency_at_point_216__________________ (freq_plasma_electron_alpha_thermal_collision_profile216)_ 6.23429356543146241e+02 +Electron-alpha_thermal_collision_frequency_at_point_217__________________ (freq_plasma_electron_alpha_thermal_collision_profile217)_ 6.25275049981071334e+02 +Electron-alpha_thermal_collision_frequency_at_point_218__________________ (freq_plasma_electron_alpha_thermal_collision_profile218)_ 6.27137910776475223e+02 +Electron-alpha_thermal_collision_frequency_at_point_219__________________ (freq_plasma_electron_alpha_thermal_collision_profile219)_ 6.29018110760826517e+02 +Electron-alpha_thermal_collision_frequency_at_point_220__________________ (freq_plasma_electron_alpha_thermal_collision_profile220)_ 6.30915824127439691e+02 +Electron-alpha_thermal_collision_frequency_at_point_221__________________ (freq_plasma_electron_alpha_thermal_collision_profile221)_ 6.32831227467626604e+02 +Electron-alpha_thermal_collision_frequency_at_point_222__________________ (freq_plasma_electron_alpha_thermal_collision_profile222)_ 6.34764499807473271e+02 +Electron-alpha_thermal_collision_frequency_at_point_223__________________ (freq_plasma_electron_alpha_thermal_collision_profile223)_ 6.36715822645250000e+02 +Electron-alpha_thermal_collision_frequency_at_point_224__________________ (freq_plasma_electron_alpha_thermal_collision_profile224)_ 6.38685379989472040e+02 +Electron-alpha_thermal_collision_frequency_at_point_225__________________ (freq_plasma_electron_alpha_thermal_collision_profile225)_ 6.40673358397614606e+02 +Electron-alpha_thermal_collision_frequency_at_point_226__________________ (freq_plasma_electron_alpha_thermal_collision_profile226)_ 6.42679947015502535e+02 +Electron-alpha_thermal_collision_frequency_at_point_227__________________ (freq_plasma_electron_alpha_thermal_collision_profile227)_ 6.44705337617377722e+02 +Electron-alpha_thermal_collision_frequency_at_point_228__________________ (freq_plasma_electron_alpha_thermal_collision_profile228)_ 6.46749724646663594e+02 +Electron-alpha_thermal_collision_frequency_at_point_229__________________ (freq_plasma_electron_alpha_thermal_collision_profile229)_ 6.48813305257434536e+02 +Electron-alpha_thermal_collision_frequency_at_point_230__________________ (freq_plasma_electron_alpha_thermal_collision_profile230)_ 6.50896279356603031e+02 +Electron-alpha_thermal_collision_frequency_at_point_231__________________ (freq_plasma_electron_alpha_thermal_collision_profile231)_ 6.52998849646840995e+02 +Electron-alpha_thermal_collision_frequency_at_point_232__________________ (freq_plasma_electron_alpha_thermal_collision_profile232)_ 6.55121221670240857e+02 +Electron-alpha_thermal_collision_frequency_at_point_233__________________ (freq_plasma_electron_alpha_thermal_collision_profile233)_ 6.57263603852738356e+02 +Electron-alpha_thermal_collision_frequency_at_point_234__________________ (freq_plasma_electron_alpha_thermal_collision_profile234)_ 6.59426207549300329e+02 +Electron-alpha_thermal_collision_frequency_at_point_235__________________ (freq_plasma_electron_alpha_thermal_collision_profile235)_ 6.61609247089901260e+02 +Electron-alpha_thermal_collision_frequency_at_point_236__________________ (freq_plasma_electron_alpha_thermal_collision_profile236)_ 6.63812939826291995e+02 +Electron-alpha_thermal_collision_frequency_at_point_237__________________ (freq_plasma_electron_alpha_thermal_collision_profile237)_ 6.66037506179583829e+02 +Electron-alpha_thermal_collision_frequency_at_point_238__________________ (freq_plasma_electron_alpha_thermal_collision_profile238)_ 6.68283169688652151e+02 +Electron-alpha_thermal_collision_frequency_at_point_239__________________ (freq_plasma_electron_alpha_thermal_collision_profile239)_ 6.70550157059385583e+02 +Electron-alpha_thermal_collision_frequency_at_point_240__________________ (freq_plasma_electron_alpha_thermal_collision_profile240)_ 6.72838698214780038e+02 +Electron-alpha_thermal_collision_frequency_at_point_241__________________ (freq_plasma_electron_alpha_thermal_collision_profile241)_ 6.75149026345909306e+02 +Electron-alpha_thermal_collision_frequency_at_point_242__________________ (freq_plasma_electron_alpha_thermal_collision_profile242)_ 6.77481377963770569e+02 +Electron-alpha_thermal_collision_frequency_at_point_243__________________ (freq_plasma_electron_alpha_thermal_collision_profile243)_ 6.79835992952031575e+02 +Electron-alpha_thermal_collision_frequency_at_point_244__________________ (freq_plasma_electron_alpha_thermal_collision_profile244)_ 6.82213114620687861e+02 +Electron-alpha_thermal_collision_frequency_at_point_245__________________ (freq_plasma_electron_alpha_thermal_collision_profile245)_ 6.84612989760650180e+02 +Electron-alpha_thermal_collision_frequency_at_point_246__________________ (freq_plasma_electron_alpha_thermal_collision_profile246)_ 6.87035868699270509e+02 +Electron-alpha_thermal_collision_frequency_at_point_247__________________ (freq_plasma_electron_alpha_thermal_collision_profile247)_ 6.89482005356832587e+02 +Electron-alpha_thermal_collision_frequency_at_point_248__________________ (freq_plasma_electron_alpha_thermal_collision_profile248)_ 6.91951657304010268e+02 +Electron-alpha_thermal_collision_frequency_at_point_249__________________ (freq_plasma_electron_alpha_thermal_collision_profile249)_ 6.94445085820320628e+02 +Electron-alpha_thermal_collision_frequency_at_point_250__________________ (freq_plasma_electron_alpha_thermal_collision_profile250)_ 6.96962555953582410e+02 +Electron-alpha_thermal_collision_frequency_at_point_251__________________ (freq_plasma_electron_alpha_thermal_collision_profile251)_ 6.99504336580395602e+02 +Electron-alpha_thermal_collision_frequency_at_point_252__________________ (freq_plasma_electron_alpha_thermal_collision_profile252)_ 7.02070700467662164e+02 +Electron-alpha_thermal_collision_frequency_at_point_253__________________ (freq_plasma_electron_alpha_thermal_collision_profile253)_ 7.04661924335159711e+02 +Electron-alpha_thermal_collision_frequency_at_point_254__________________ (freq_plasma_electron_alpha_thermal_collision_profile254)_ 7.07278288919191255e+02 +Electron-alpha_thermal_collision_frequency_at_point_255__________________ (freq_plasma_electron_alpha_thermal_collision_profile255)_ 7.09920079037316327e+02 +Electron-alpha_thermal_collision_frequency_at_point_256__________________ (freq_plasma_electron_alpha_thermal_collision_profile256)_ 7.12587583654197829e+02 +Electron-alpha_thermal_collision_frequency_at_point_257__________________ (freq_plasma_electron_alpha_thermal_collision_profile257)_ 7.15281095948564712e+02 +Electron-alpha_thermal_collision_frequency_at_point_258__________________ (freq_plasma_electron_alpha_thermal_collision_profile258)_ 7.18000913381315513e+02 +Electron-alpha_thermal_collision_frequency_at_point_259__________________ (freq_plasma_electron_alpha_thermal_collision_profile259)_ 7.20747337764781264e+02 +Electron-alpha_thermal_collision_frequency_at_point_260__________________ (freq_plasma_electron_alpha_thermal_collision_profile260)_ 7.23520675333160284e+02 +Electron-alpha_thermal_collision_frequency_at_point_261__________________ (freq_plasma_electron_alpha_thermal_collision_profile261)_ 7.26321236814147028e+02 +Electron-alpha_thermal_collision_frequency_at_point_262__________________ (freq_plasma_electron_alpha_thermal_collision_profile262)_ 7.29149337501767718e+02 +Electron-alpha_thermal_collision_frequency_at_point_263__________________ (freq_plasma_electron_alpha_thermal_collision_profile263)_ 7.32005297330443568e+02 +Electron-alpha_thermal_collision_frequency_at_point_264__________________ (freq_plasma_electron_alpha_thermal_collision_profile264)_ 7.34889440950294897e+02 +Electron-alpha_thermal_collision_frequency_at_point_265__________________ (freq_plasma_electron_alpha_thermal_collision_profile265)_ 7.37802097803713082e+02 +Electron-alpha_thermal_collision_frequency_at_point_266__________________ (freq_plasma_electron_alpha_thermal_collision_profile266)_ 7.40743602203202954e+02 +Electron-alpha_thermal_collision_frequency_at_point_267__________________ (freq_plasma_electron_alpha_thermal_collision_profile267)_ 7.43714293410525443e+02 +Electron-alpha_thermal_collision_frequency_at_point_268__________________ (freq_plasma_electron_alpha_thermal_collision_profile268)_ 7.46714515717150221e+02 +Electron-alpha_thermal_collision_frequency_at_point_269__________________ (freq_plasma_electron_alpha_thermal_collision_profile269)_ 7.49744618526045087e+02 +Electron-alpha_thermal_collision_frequency_at_point_270__________________ (freq_plasma_electron_alpha_thermal_collision_profile270)_ 7.52804956434800147e+02 +Electron-alpha_thermal_collision_frequency_at_point_271__________________ (freq_plasma_electron_alpha_thermal_collision_profile271)_ 7.55895889320129413e+02 +Electron-alpha_thermal_collision_frequency_at_point_272__________________ (freq_plasma_electron_alpha_thermal_collision_profile272)_ 7.59017782423739959e+02 +Electron-alpha_thermal_collision_frequency_at_point_273__________________ (freq_plasma_electron_alpha_thermal_collision_profile273)_ 7.62171006439609073e+02 +Electron-alpha_thermal_collision_frequency_at_point_274__________________ (freq_plasma_electron_alpha_thermal_collision_profile274)_ 7.65355937602662607e+02 +Electron-alpha_thermal_collision_frequency_at_point_275__________________ (freq_plasma_electron_alpha_thermal_collision_profile275)_ 7.68572957778896125e+02 +Electron-alpha_thermal_collision_frequency_at_point_276__________________ (freq_plasma_electron_alpha_thermal_collision_profile276)_ 7.71822454556924185e+02 +Electron-alpha_thermal_collision_frequency_at_point_277__________________ (freq_plasma_electron_alpha_thermal_collision_profile277)_ 7.75104821341002548e+02 +Electron-alpha_thermal_collision_frequency_at_point_278__________________ (freq_plasma_electron_alpha_thermal_collision_profile278)_ 7.78420457445514671e+02 +Electron-alpha_thermal_collision_frequency_at_point_279__________________ (freq_plasma_electron_alpha_thermal_collision_profile279)_ 7.81769768190951481e+02 +Electron-alpha_thermal_collision_frequency_at_point_280__________________ (freq_plasma_electron_alpha_thermal_collision_profile280)_ 7.85153165001391017e+02 +Electron-alpha_thermal_collision_frequency_at_point_281__________________ (freq_plasma_electron_alpha_thermal_collision_profile281)_ 7.88571065503492719e+02 +Electron-alpha_thermal_collision_frequency_at_point_282__________________ (freq_plasma_electron_alpha_thermal_collision_profile282)_ 7.92023893627019561e+02 +Electron-alpha_thermal_collision_frequency_at_point_283__________________ (freq_plasma_electron_alpha_thermal_collision_profile283)_ 7.95512079706897225e+02 +Electron-alpha_thermal_collision_frequency_at_point_284__________________ (freq_plasma_electron_alpha_thermal_collision_profile284)_ 7.99036060586826693e+02 +Electron-alpha_thermal_collision_frequency_at_point_285__________________ (freq_plasma_electron_alpha_thermal_collision_profile285)_ 8.02596279724449232e+02 +Electron-alpha_thermal_collision_frequency_at_point_286__________________ (freq_plasma_electron_alpha_thermal_collision_profile286)_ 8.06193187298091289e+02 +Electron-alpha_thermal_collision_frequency_at_point_287__________________ (freq_plasma_electron_alpha_thermal_collision_profile287)_ 8.09827240315074619e+02 +Electron-alpha_thermal_collision_frequency_at_point_288__________________ (freq_plasma_electron_alpha_thermal_collision_profile288)_ 8.13498902721620198e+02 +Electron-alpha_thermal_collision_frequency_at_point_289__________________ (freq_plasma_electron_alpha_thermal_collision_profile289)_ 8.17208645514333512e+02 +Electron-alpha_thermal_collision_frequency_at_point_290__________________ (freq_plasma_electron_alpha_thermal_collision_profile290)_ 8.20956946853292720e+02 +Electron-alpha_thermal_collision_frequency_at_point_291__________________ (freq_plasma_electron_alpha_thermal_collision_profile291)_ 8.24744292176724230e+02 +Electron-alpha_thermal_collision_frequency_at_point_292__________________ (freq_plasma_electron_alpha_thermal_collision_profile292)_ 8.28571174317287728e+02 +Electron-alpha_thermal_collision_frequency_at_point_293__________________ (freq_plasma_electron_alpha_thermal_collision_profile293)_ 8.32438093619951019e+02 +Electron-alpha_thermal_collision_frequency_at_point_294__________________ (freq_plasma_electron_alpha_thermal_collision_profile294)_ 8.36345558061468068e+02 +Electron-alpha_thermal_collision_frequency_at_point_295__________________ (freq_plasma_electron_alpha_thermal_collision_profile295)_ 8.40294083371446732e+02 +Electron-alpha_thermal_collision_frequency_at_point_296__________________ (freq_plasma_electron_alpha_thermal_collision_profile296)_ 8.44284193155007074e+02 +Electron-alpha_thermal_collision_frequency_at_point_297__________________ (freq_plasma_electron_alpha_thermal_collision_profile297)_ 8.48316419017014368e+02 +Electron-alpha_thermal_collision_frequency_at_point_298__________________ (freq_plasma_electron_alpha_thermal_collision_profile298)_ 8.52391300687890293e+02 +Electron-alpha_thermal_collision_frequency_at_point_299__________________ (freq_plasma_electron_alpha_thermal_collision_profile299)_ 8.56509386150969362e+02 +Electron-alpha_thermal_collision_frequency_at_point_300__________________ (freq_plasma_electron_alpha_thermal_collision_profile300)_ 8.60671231771406497e+02 +Electron-alpha_thermal_collision_frequency_at_point_301__________________ (freq_plasma_electron_alpha_thermal_collision_profile301)_ 8.64877402426599474e+02 +Electron-alpha_thermal_collision_frequency_at_point_302__________________ (freq_plasma_electron_alpha_thermal_collision_profile302)_ 8.69128471638121027e+02 +Electron-alpha_thermal_collision_frequency_at_point_303__________________ (freq_plasma_electron_alpha_thermal_collision_profile303)_ 8.73425021705116478e+02 +Electron-alpha_thermal_collision_frequency_at_point_304__________________ (freq_plasma_electron_alpha_thermal_collision_profile304)_ 8.77767643839158723e+02 +Electron-alpha_thermal_collision_frequency_at_point_305__________________ (freq_plasma_electron_alpha_thermal_collision_profile305)_ 8.82156938300514526e+02 +Electron-alpha_thermal_collision_frequency_at_point_306__________________ (freq_plasma_electron_alpha_thermal_collision_profile306)_ 8.86593514535791428e+02 +Electron-alpha_thermal_collision_frequency_at_point_307__________________ (freq_plasma_electron_alpha_thermal_collision_profile307)_ 8.91077991316920816e+02 +Electron-alpha_thermal_collision_frequency_at_point_308__________________ (freq_plasma_electron_alpha_thermal_collision_profile308)_ 8.95610996881442816e+02 +Electron-alpha_thermal_collision_frequency_at_point_309__________________ (freq_plasma_electron_alpha_thermal_collision_profile309)_ 9.00193169074025150e+02 +Electron-alpha_thermal_collision_frequency_at_point_310__________________ (freq_plasma_electron_alpha_thermal_collision_profile310)_ 9.04825155489178201e+02 +Electron-alpha_thermal_collision_frequency_at_point_311__________________ (freq_plasma_electron_alpha_thermal_collision_profile311)_ 9.09507613615090122e+02 +Electron-alpha_thermal_collision_frequency_at_point_312__________________ (freq_plasma_electron_alpha_thermal_collision_profile312)_ 9.14241210978535037e+02 +Electron-alpha_thermal_collision_frequency_at_point_313__________________ (freq_plasma_electron_alpha_thermal_collision_profile313)_ 9.19026625290752122e+02 +Electron-alpha_thermal_collision_frequency_at_point_314__________________ (freq_plasma_electron_alpha_thermal_collision_profile314)_ 9.23864544594250560e+02 +Electron-alpha_thermal_collision_frequency_at_point_315__________________ (freq_plasma_electron_alpha_thermal_collision_profile315)_ 9.28755667410415981e+02 +Electron-alpha_thermal_collision_frequency_at_point_316__________________ (freq_plasma_electron_alpha_thermal_collision_profile316)_ 9.33700702887861212e+02 +Electron-alpha_thermal_collision_frequency_at_point_317__________________ (freq_plasma_electron_alpha_thermal_collision_profile317)_ 9.38700370951386617e+02 +Electron-alpha_thermal_collision_frequency_at_point_318__________________ (freq_plasma_electron_alpha_thermal_collision_profile318)_ 9.43755402451455552e+02 +Electron-alpha_thermal_collision_frequency_at_point_319__________________ (freq_plasma_electron_alpha_thermal_collision_profile319)_ 9.48866539314061470e+02 +Electron-alpha_thermal_collision_frequency_at_point_320__________________ (freq_plasma_electron_alpha_thermal_collision_profile320)_ 9.54034534690854684e+02 +Electron-alpha_thermal_collision_frequency_at_point_321__________________ (freq_plasma_electron_alpha_thermal_collision_profile321)_ 9.59260153109384305e+02 +Electron-alpha_thermal_collision_frequency_at_point_322__________________ (freq_plasma_electron_alpha_thermal_collision_profile322)_ 9.64544170623312198e+02 +Electron-alpha_thermal_collision_frequency_at_point_323__________________ (freq_plasma_electron_alpha_thermal_collision_profile323)_ 9.69887374962423451e+02 +Electron-alpha_thermal_collision_frequency_at_point_324__________________ (freq_plasma_electron_alpha_thermal_collision_profile324)_ 9.75290565682267925e+02 +Electron-alpha_thermal_collision_frequency_at_point_325__________________ (freq_plasma_electron_alpha_thermal_collision_profile325)_ 9.80754554313237122e+02 +Electron-alpha_thermal_collision_frequency_at_point_326__________________ (freq_plasma_electron_alpha_thermal_collision_profile326)_ 9.86280164508872190e+02 +Electron-alpha_thermal_collision_frequency_at_point_327__________________ (freq_plasma_electron_alpha_thermal_collision_profile327)_ 9.91868232193188760e+02 +Electron-alpha_thermal_collision_frequency_at_point_328__________________ (freq_plasma_electron_alpha_thermal_collision_profile328)_ 9.97519605706781135e+02 +Electron-alpha_thermal_collision_frequency_at_point_329__________________ (freq_plasma_electron_alpha_thermal_collision_profile329)_ 1.00323514595145127e+03 +Electron-alpha_thermal_collision_frequency_at_point_330__________________ (freq_plasma_electron_alpha_thermal_collision_profile330)_ 1.00901572653310313e+03 +Electron-alpha_thermal_collision_frequency_at_point_331__________________ (freq_plasma_electron_alpha_thermal_collision_profile331)_ 1.01486223390260147e+03 +Electron-alpha_thermal_collision_frequency_at_point_332__________________ (freq_plasma_electron_alpha_thermal_collision_profile332)_ 1.02077556749429709e+03 +Electron-alpha_thermal_collision_frequency_at_point_333__________________ (freq_plasma_electron_alpha_thermal_collision_profile333)_ 1.02675663986188169e+03 +Electron-alpha_thermal_collision_frequency_at_point_334__________________ (freq_plasma_electron_alpha_thermal_collision_profile334)_ 1.03280637681122676e+03 +Electron-alpha_thermal_collision_frequency_at_point_335__________________ (freq_plasma_electron_alpha_thermal_collision_profile335)_ 1.03892571752981917e+03 +Electron-alpha_thermal_collision_frequency_at_point_336__________________ (freq_plasma_electron_alpha_thermal_collision_profile336)_ 1.04511561471240657e+03 +Electron-alpha_thermal_collision_frequency_at_point_337__________________ (freq_plasma_electron_alpha_thermal_collision_profile337)_ 1.05137703468240716e+03 +Electron-alpha_thermal_collision_frequency_at_point_338__________________ (freq_plasma_electron_alpha_thermal_collision_profile338)_ 1.05771095750863924e+03 +Electron-alpha_thermal_collision_frequency_at_point_339__________________ (freq_plasma_electron_alpha_thermal_collision_profile339)_ 1.06411837711687599e+03 +Electron-alpha_thermal_collision_frequency_at_point_340__________________ (freq_plasma_electron_alpha_thermal_collision_profile340)_ 1.07060030139570404e+03 +Electron-alpha_thermal_collision_frequency_at_point_341__________________ (freq_plasma_electron_alpha_thermal_collision_profile341)_ 1.07715775229613701e+03 +Electron-alpha_thermal_collision_frequency_at_point_342__________________ (freq_plasma_electron_alpha_thermal_collision_profile342)_ 1.08379176592438557e+03 +Electron-alpha_thermal_collision_frequency_at_point_343__________________ (freq_plasma_electron_alpha_thermal_collision_profile343)_ 1.09050339262716193e+03 +Electron-alpha_thermal_collision_frequency_at_point_344__________________ (freq_plasma_electron_alpha_thermal_collision_profile344)_ 1.09729369706884358e+03 +Electron-alpha_thermal_collision_frequency_at_point_345__________________ (freq_plasma_electron_alpha_thermal_collision_profile345)_ 1.10416375829979279e+03 +Electron-alpha_thermal_collision_frequency_at_point_346__________________ (freq_plasma_electron_alpha_thermal_collision_profile346)_ 1.11111466981504668e+03 +Electron-alpha_thermal_collision_frequency_at_point_347__________________ (freq_plasma_electron_alpha_thermal_collision_profile347)_ 1.11814753960261805e+03 +Electron-alpha_thermal_collision_frequency_at_point_348__________________ (freq_plasma_electron_alpha_thermal_collision_profile348)_ 1.12526349018049268e+03 +Electron-alpha_thermal_collision_frequency_at_point_349__________________ (freq_plasma_electron_alpha_thermal_collision_profile349)_ 1.13246365862145672e+03 +Electron-alpha_thermal_collision_frequency_at_point_350__________________ (freq_plasma_electron_alpha_thermal_collision_profile350)_ 1.13974919656475709e+03 +Electron-alpha_thermal_collision_frequency_at_point_351__________________ (freq_plasma_electron_alpha_thermal_collision_profile351)_ 1.14712127021357333e+03 +Electron-alpha_thermal_collision_frequency_at_point_352__________________ (freq_plasma_electron_alpha_thermal_collision_profile352)_ 1.15458106031720104e+03 +Electron-alpha_thermal_collision_frequency_at_point_353__________________ (freq_plasma_electron_alpha_thermal_collision_profile353)_ 1.16212976213678644e+03 +Electron-alpha_thermal_collision_frequency_at_point_354__________________ (freq_plasma_electron_alpha_thermal_collision_profile354)_ 1.16976858539337309e+03 +Electron-alpha_thermal_collision_frequency_at_point_355__________________ (freq_plasma_electron_alpha_thermal_collision_profile355)_ 1.17749875419694467e+03 +Electron-alpha_thermal_collision_frequency_at_point_356__________________ (freq_plasma_electron_alpha_thermal_collision_profile356)_ 1.18532150695507448e+03 +Electron-alpha_thermal_collision_frequency_at_point_357__________________ (freq_plasma_electron_alpha_thermal_collision_profile357)_ 1.19323809625969511e+03 +Electron-alpha_thermal_collision_frequency_at_point_358__________________ (freq_plasma_electron_alpha_thermal_collision_profile358)_ 1.20124978875041666e+03 +Electron-alpha_thermal_collision_frequency_at_point_359__________________ (freq_plasma_electron_alpha_thermal_collision_profile359)_ 1.20935786495273169e+03 +Electron-alpha_thermal_collision_frequency_at_point_360__________________ (freq_plasma_electron_alpha_thermal_collision_profile360)_ 1.21756361908931967e+03 +Electron-alpha_thermal_collision_frequency_at_point_361__________________ (freq_plasma_electron_alpha_thermal_collision_profile361)_ 1.22586835886259610e+03 +Electron-alpha_thermal_collision_frequency_at_point_362__________________ (freq_plasma_electron_alpha_thermal_collision_profile362)_ 1.23427340520648613e+03 +Electron-alpha_thermal_collision_frequency_at_point_363__________________ (freq_plasma_electron_alpha_thermal_collision_profile363)_ 1.24278009200532642e+03 +Electron-alpha_thermal_collision_frequency_at_point_364__________________ (freq_plasma_electron_alpha_thermal_collision_profile364)_ 1.25138976577764515e+03 +Electron-alpha_thermal_collision_frequency_at_point_365__________________ (freq_plasma_electron_alpha_thermal_collision_profile365)_ 1.26010378532243658e+03 +Electron-alpha_thermal_collision_frequency_at_point_366__________________ (freq_plasma_electron_alpha_thermal_collision_profile366)_ 1.26892352132541532e+03 +Electron-alpha_thermal_collision_frequency_at_point_367__________________ (freq_plasma_electron_alpha_thermal_collision_profile367)_ 1.27785035592256827e+03 +Electron-alpha_thermal_collision_frequency_at_point_368__________________ (freq_plasma_electron_alpha_thermal_collision_profile368)_ 1.28688568221816922e+03 +Electron-alpha_thermal_collision_frequency_at_point_369__________________ (freq_plasma_electron_alpha_thermal_collision_profile369)_ 1.29603090375425268e+03 +Electron-alpha_thermal_collision_frequency_at_point_370__________________ (freq_plasma_electron_alpha_thermal_collision_profile370)_ 1.30528743392834826e+03 +Electron-alpha_thermal_collision_frequency_at_point_371__________________ (freq_plasma_electron_alpha_thermal_collision_profile371)_ 1.31465669535611596e+03 +Electron-alpha_thermal_collision_frequency_at_point_372__________________ (freq_plasma_electron_alpha_thermal_collision_profile372)_ 1.32414011917527682e+03 +Electron-alpha_thermal_collision_frequency_at_point_373__________________ (freq_plasma_electron_alpha_thermal_collision_profile373)_ 1.33373914428706917e+03 +Electron-alpha_thermal_collision_frequency_at_point_374__________________ (freq_plasma_electron_alpha_thermal_collision_profile374)_ 1.34345521653119090e+03 +Electron-alpha_thermal_collision_frequency_at_point_375__________________ (freq_plasma_electron_alpha_thermal_collision_profile375)_ 1.35328978778997907e+03 +Electron-alpha_thermal_collision_frequency_at_point_376__________________ (freq_plasma_electron_alpha_thermal_collision_profile376)_ 1.36324431501730692e+03 +Electron-alpha_thermal_collision_frequency_at_point_377__________________ (freq_plasma_electron_alpha_thermal_collision_profile377)_ 1.37332025918742488e+03 +Electron-alpha_thermal_collision_frequency_at_point_378__________________ (freq_plasma_electron_alpha_thermal_collision_profile378)_ 1.38351908415866956e+03 +Electron-alpha_thermal_collision_frequency_at_point_379__________________ (freq_plasma_electron_alpha_thermal_collision_profile379)_ 1.39384225544669516e+03 +Electron-alpha_thermal_collision_frequency_at_point_380__________________ (freq_plasma_electron_alpha_thermal_collision_profile380)_ 1.40429123890152664e+03 +Electron-alpha_thermal_collision_frequency_at_point_381__________________ (freq_plasma_electron_alpha_thermal_collision_profile381)_ 1.41486749928242853e+03 +Electron-alpha_thermal_collision_frequency_at_point_382__________________ (freq_plasma_electron_alpha_thermal_collision_profile382)_ 1.42557249872423131e+03 +Electron-alpha_thermal_collision_frequency_at_point_383__________________ (freq_plasma_electron_alpha_thermal_collision_profile383)_ 1.43640769508834774e+03 +Electron-alpha_thermal_collision_frequency_at_point_384__________________ (freq_plasma_electron_alpha_thermal_collision_profile384)_ 1.44737454019135362e+03 +Electron-alpha_thermal_collision_frequency_at_point_385__________________ (freq_plasma_electron_alpha_thermal_collision_profile385)_ 1.45847447790356728e+03 +Electron-alpha_thermal_collision_frequency_at_point_386__________________ (freq_plasma_electron_alpha_thermal_collision_profile386)_ 1.46970894210964252e+03 +Electron-alpha_thermal_collision_frequency_at_point_387__________________ (freq_plasma_electron_alpha_thermal_collision_profile387)_ 1.48107935452266497e+03 +Electron-alpha_thermal_collision_frequency_at_point_388__________________ (freq_plasma_electron_alpha_thermal_collision_profile388)_ 1.49258712234283439e+03 +Electron-alpha_thermal_collision_frequency_at_point_389__________________ (freq_plasma_electron_alpha_thermal_collision_profile389)_ 1.50423363575120379e+03 +Electron-alpha_thermal_collision_frequency_at_point_390__________________ (freq_plasma_electron_alpha_thermal_collision_profile390)_ 1.51602026522846154e+03 +Electron-alpha_thermal_collision_frequency_at_point_391__________________ (freq_plasma_electron_alpha_thermal_collision_profile391)_ 1.52794835868810651e+03 +Electron-alpha_thermal_collision_frequency_at_point_392__________________ (freq_plasma_electron_alpha_thermal_collision_profile392)_ 1.54001923841278744e+03 +Electron-alpha_thermal_collision_frequency_at_point_393__________________ (freq_plasma_electron_alpha_thermal_collision_profile393)_ 1.55223419778189191e+03 +Electron-alpha_thermal_collision_frequency_at_point_394__________________ (freq_plasma_electron_alpha_thermal_collision_profile394)_ 1.56459449777780674e+03 +Electron-alpha_thermal_collision_frequency_at_point_395__________________ (freq_plasma_electron_alpha_thermal_collision_profile395)_ 1.57710136325751819e+03 +Electron-alpha_thermal_collision_frequency_at_point_396__________________ (freq_plasma_electron_alpha_thermal_collision_profile396)_ 1.58975597897545799e+03 +Electron-alpha_thermal_collision_frequency_at_point_397__________________ (freq_plasma_electron_alpha_thermal_collision_profile397)_ 1.60255948534268282e+03 +Electron-alpha_thermal_collision_frequency_at_point_398__________________ (freq_plasma_electron_alpha_thermal_collision_profile398)_ 1.61551297390660307e+03 +Electron-alpha_thermal_collision_frequency_at_point_399__________________ (freq_plasma_electron_alpha_thermal_collision_profile399)_ 1.62861748253458404e+03 +Electron-alpha_thermal_collision_frequency_at_point_400__________________ (freq_plasma_electron_alpha_thermal_collision_profile400)_ 1.64187399028372829e+03 +Electron-alpha_thermal_collision_frequency_at_point_401__________________ (freq_plasma_electron_alpha_thermal_collision_profile401)_ 1.65528341193817846e+03 +Electron-alpha_thermal_collision_frequency_at_point_402__________________ (freq_plasma_electron_alpha_thermal_collision_profile402)_ 1.66884659219415857e+03 +Electron-alpha_thermal_collision_frequency_at_point_403__________________ (freq_plasma_electron_alpha_thermal_collision_profile403)_ 1.68256429947181891e+03 +Electron-alpha_thermal_collision_frequency_at_point_404__________________ (freq_plasma_electron_alpha_thermal_collision_profile404)_ 1.69643721933176107e+03 +Electron-alpha_thermal_collision_frequency_at_point_405__________________ (freq_plasma_electron_alpha_thermal_collision_profile405)_ 1.71046594747279801e+03 +Electron-alpha_thermal_collision_frequency_at_point_406__________________ (freq_plasma_electron_alpha_thermal_collision_profile406)_ 1.72465098228614852e+03 +Electron-alpha_thermal_collision_frequency_at_point_407__________________ (freq_plasma_electron_alpha_thermal_collision_profile407)_ 1.73899271693979017e+03 +Electron-alpha_thermal_collision_frequency_at_point_408__________________ (freq_plasma_electron_alpha_thermal_collision_profile408)_ 1.75349143096519879e+03 +Electron-alpha_thermal_collision_frequency_at_point_409__________________ (freq_plasma_electron_alpha_thermal_collision_profile409)_ 1.76814728131695733e+03 +Electron-alpha_thermal_collision_frequency_at_point_410__________________ (freq_plasma_electron_alpha_thermal_collision_profile410)_ 1.78296029287409806e+03 +Electron-alpha_thermal_collision_frequency_at_point_411__________________ (freq_plasma_electron_alpha_thermal_collision_profile411)_ 1.79793034835003846e+03 +Electron-alpha_thermal_collision_frequency_at_point_412__________________ (freq_plasma_electron_alpha_thermal_collision_profile412)_ 1.81305717757607863e+03 +Electron-alpha_thermal_collision_frequency_at_point_413__________________ (freq_plasma_electron_alpha_thermal_collision_profile413)_ 1.82834034612121832e+03 +Electron-alpha_thermal_collision_frequency_at_point_414__________________ (freq_plasma_electron_alpha_thermal_collision_profile414)_ 1.84377924320882698e+03 +Electron-alpha_thermal_collision_frequency_at_point_415__________________ (freq_plasma_electron_alpha_thermal_collision_profile415)_ 1.85937306888818762e+03 +Electron-alpha_thermal_collision_frequency_at_point_416__________________ (freq_plasma_electron_alpha_thermal_collision_profile416)_ 1.87512082041632561e+03 +Electron-alpha_thermal_collision_frequency_at_point_417__________________ (freq_plasma_electron_alpha_thermal_collision_profile417)_ 1.89102127780267392e+03 +Electron-alpha_thermal_collision_frequency_at_point_418__________________ (freq_plasma_electron_alpha_thermal_collision_profile418)_ 1.90707298846602953e+03 +Electron-alpha_thermal_collision_frequency_at_point_419__________________ (freq_plasma_electron_alpha_thermal_collision_profile419)_ 1.92327425094991486e+03 +Electron-alpha_thermal_collision_frequency_at_point_420__________________ (freq_plasma_electron_alpha_thermal_collision_profile420)_ 1.93962309763880330e+03 +Electron-alpha_thermal_collision_frequency_at_point_421__________________ (freq_plasma_electron_alpha_thermal_collision_profile421)_ 1.95611727641369703e+03 +Electron-alpha_thermal_collision_frequency_at_point_422__________________ (freq_plasma_electron_alpha_thermal_collision_profile422)_ 1.97275423118112622e+03 +Electron-alpha_thermal_collision_frequency_at_point_423__________________ (freq_plasma_electron_alpha_thermal_collision_profile423)_ 1.98953108120487082e+03 +Electron-alpha_thermal_collision_frequency_at_point_424__________________ (freq_plasma_electron_alpha_thermal_collision_profile424)_ 2.00644459916433516e+03 +Electron-alpha_thermal_collision_frequency_at_point_425__________________ (freq_plasma_electron_alpha_thermal_collision_profile425)_ 2.02349118785753853e+03 +Electron-alpha_thermal_collision_frequency_at_point_426__________________ (freq_plasma_electron_alpha_thermal_collision_profile426)_ 2.04066685546012059e+03 +Electron-alpha_thermal_collision_frequency_at_point_427__________________ (freq_plasma_electron_alpha_thermal_collision_profile427)_ 2.05796718924420202e+03 +Electron-alpha_thermal_collision_frequency_at_point_428__________________ (freq_plasma_electron_alpha_thermal_collision_profile428)_ 2.07538732765256282e+03 +Electron-alpha_thermal_collision_frequency_at_point_429__________________ (freq_plasma_electron_alpha_thermal_collision_profile429)_ 2.09292193061398802e+03 +Electron-alpha_thermal_collision_frequency_at_point_430__________________ (freq_plasma_electron_alpha_thermal_collision_profile430)_ 2.11056514797464206e+03 +Electron-alpha_thermal_collision_frequency_at_point_431__________________ (freq_plasma_electron_alpha_thermal_collision_profile431)_ 2.12831058590774410e+03 +Electron-alpha_thermal_collision_frequency_at_point_432__________________ (freq_plasma_electron_alpha_thermal_collision_profile432)_ 2.14615127114917777e+03 +Electron-alpha_thermal_collision_frequency_at_point_433__________________ (freq_plasma_electron_alpha_thermal_collision_profile433)_ 2.16407961288970000e+03 +Electron-alpha_thermal_collision_frequency_at_point_434__________________ (freq_plasma_electron_alpha_thermal_collision_profile434)_ 2.18208736213444354e+03 +Electron-alpha_thermal_collision_frequency_at_point_435__________________ (freq_plasma_electron_alpha_thermal_collision_profile435)_ 2.20016556831699063e+03 +Electron-alpha_thermal_collision_frequency_at_point_436__________________ (freq_plasma_electron_alpha_thermal_collision_profile436)_ 2.21830453292735547e+03 +Electron-alpha_thermal_collision_frequency_at_point_437__________________ (freq_plasma_electron_alpha_thermal_collision_profile437)_ 2.23649375988008069e+03 +Electron-alpha_thermal_collision_frequency_at_point_438__________________ (freq_plasma_electron_alpha_thermal_collision_profile438)_ 2.25472190230859042e+03 +Electron-alpha_thermal_collision_frequency_at_point_439__________________ (freq_plasma_electron_alpha_thermal_collision_profile439)_ 2.27297670542386277e+03 +Electron-alpha_thermal_collision_frequency_at_point_440__________________ (freq_plasma_electron_alpha_thermal_collision_profile440)_ 2.29124494501662912e+03 +Electron-alpha_thermal_collision_frequency_at_point_441__________________ (freq_plasma_electron_alpha_thermal_collision_profile441)_ 2.30951236111062690e+03 +Electron-alpha_thermal_collision_frequency_at_point_442__________________ (freq_plasma_electron_alpha_thermal_collision_profile442)_ 2.32776358618577569e+03 +Electron-alpha_thermal_collision_frequency_at_point_443__________________ (freq_plasma_electron_alpha_thermal_collision_profile443)_ 2.34598206728042896e+03 +Electron-alpha_thermal_collision_frequency_at_point_444__________________ (freq_plasma_electron_alpha_thermal_collision_profile444)_ 2.36414998114448281e+03 +Electron-alpha_thermal_collision_frequency_at_point_445__________________ (freq_plasma_electron_alpha_thermal_collision_profile445)_ 2.38224814144245147e+03 +Electron-alpha_thermal_collision_frequency_at_point_446__________________ (freq_plasma_electron_alpha_thermal_collision_profile446)_ 2.40025589678630513e+03 +Electron-alpha_thermal_collision_frequency_at_point_447__________________ (freq_plasma_electron_alpha_thermal_collision_profile447)_ 2.41815101809748785e+03 +Electron-alpha_thermal_collision_frequency_at_point_448__________________ (freq_plasma_electron_alpha_thermal_collision_profile448)_ 2.43590957343550872e+03 +Electron-alpha_thermal_collision_frequency_at_point_449__________________ (freq_plasma_electron_alpha_thermal_collision_profile449)_ 2.45350578795894035e+03 +Electron-alpha_thermal_collision_frequency_at_point_450__________________ (freq_plasma_electron_alpha_thermal_collision_profile450)_ 2.47091188606375454e+03 +Electron-alpha_thermal_collision_frequency_at_point_451__________________ (freq_plasma_electron_alpha_thermal_collision_profile451)_ 2.48809791191736895e+03 +Electron-alpha_thermal_collision_frequency_at_point_452__________________ (freq_plasma_electron_alpha_thermal_collision_profile452)_ 2.50503152349303900e+03 +Electron-alpha_thermal_collision_frequency_at_point_453__________________ (freq_plasma_electron_alpha_thermal_collision_profile453)_ 2.52167775368773800e+03 +Electron-alpha_thermal_collision_frequency_at_point_454__________________ (freq_plasma_electron_alpha_thermal_collision_profile454)_ 2.53799872999749914e+03 +Electron-alpha_thermal_collision_frequency_at_point_455__________________ (freq_plasma_electron_alpha_thermal_collision_profile455)_ 2.55395334125131831e+03 +Electron-alpha_thermal_collision_frequency_at_point_456__________________ (freq_plasma_electron_alpha_thermal_collision_profile456)_ 2.56949683563596727e+03 +Electron-alpha_thermal_collision_frequency_at_point_457__________________ (freq_plasma_electron_alpha_thermal_collision_profile457)_ 2.58458032798620206e+03 +Electron-alpha_thermal_collision_frequency_at_point_458__________________ (freq_plasma_electron_alpha_thermal_collision_profile458)_ 2.59915018492115951e+03 +Electron-alpha_thermal_collision_frequency_at_point_459__________________ (freq_plasma_electron_alpha_thermal_collision_profile459)_ 2.61314724192289077e+03 +Electron-alpha_thermal_collision_frequency_at_point_460__________________ (freq_plasma_electron_alpha_thermal_collision_profile460)_ 2.62650578341318214e+03 +Electron-alpha_thermal_collision_frequency_at_point_461__________________ (freq_plasma_electron_alpha_thermal_collision_profile461)_ 2.63915217889109817e+03 +Electron-alpha_thermal_collision_frequency_at_point_462__________________ (freq_plasma_electron_alpha_thermal_collision_profile462)_ 2.65100300281580758e+03 +Electron-alpha_thermal_collision_frequency_at_point_463__________________ (freq_plasma_electron_alpha_thermal_collision_profile463)_ 2.66196234754377610e+03 +Electron-alpha_thermal_collision_frequency_at_point_464__________________ (freq_plasma_electron_alpha_thermal_collision_profile464)_ 2.67191781055126830e+03 +Electron-alpha_thermal_collision_frequency_at_point_465__________________ (freq_plasma_electron_alpha_thermal_collision_profile465)_ 2.68073416220905210e+03 +Electron-alpha_thermal_collision_frequency_at_point_466__________________ (freq_plasma_electron_alpha_thermal_collision_profile466)_ 2.68824260668302441e+03 +Electron-alpha_thermal_collision_frequency_at_point_467__________________ (freq_plasma_electron_alpha_thermal_collision_profile467)_ 2.69422066225740173e+03 +Electron-alpha_thermal_collision_frequency_at_point_468__________________ (freq_plasma_electron_alpha_thermal_collision_profile468)_ 2.69834839117357114e+03 +Electron-alpha_thermal_collision_frequency_at_point_469__________________ (freq_plasma_electron_alpha_thermal_collision_profile469)_ 2.70008483845812225e+03 +Electron-alpha_thermal_collision_frequency_at_point_470__________________ (freq_plasma_electron_alpha_thermal_collision_profile470)_ 2.69790753864388307e+03 +Electron-alpha_thermal_collision_frequency_at_point_471__________________ (freq_plasma_electron_alpha_thermal_collision_profile471)_ 2.79278181082578112e+03 +Electron-alpha_thermal_collision_frequency_at_point_472__________________ (freq_plasma_electron_alpha_thermal_collision_profile472)_ 2.89521787028663948e+03 +Electron-alpha_thermal_collision_frequency_at_point_473__________________ (freq_plasma_electron_alpha_thermal_collision_profile473)_ 3.00613487428129520e+03 +Electron-alpha_thermal_collision_frequency_at_point_474__________________ (freq_plasma_electron_alpha_thermal_collision_profile474)_ 3.12660387049447945e+03 +Electron-alpha_thermal_collision_frequency_at_point_475__________________ (freq_plasma_electron_alpha_thermal_collision_profile475)_ 3.25787997935406747e+03 +Electron-alpha_thermal_collision_frequency_at_point_476__________________ (freq_plasma_electron_alpha_thermal_collision_profile476)_ 3.40144301062554359e+03 +Electron-alpha_thermal_collision_frequency_at_point_477__________________ (freq_plasma_electron_alpha_thermal_collision_profile477)_ 3.55904918310138601e+03 +Electron-alpha_thermal_collision_frequency_at_point_478__________________ (freq_plasma_electron_alpha_thermal_collision_profile478)_ 3.73279761842435028e+03 +Electron-alpha_thermal_collision_frequency_at_point_479__________________ (freq_plasma_electron_alpha_thermal_collision_profile479)_ 3.92521672339018414e+03 +Electron-alpha_thermal_collision_frequency_at_point_480__________________ (freq_plasma_electron_alpha_thermal_collision_profile480)_ 4.13937768483565651e+03 +Electron-alpha_thermal_collision_frequency_at_point_481__________________ (freq_plasma_electron_alpha_thermal_collision_profile481)_ 4.37904543556821591e+03 +Electron-alpha_thermal_collision_frequency_at_point_482__________________ (freq_plasma_electron_alpha_thermal_collision_profile482)_ 4.64888218933574899e+03 +Electron-alpha_thermal_collision_frequency_at_point_483__________________ (freq_plasma_electron_alpha_thermal_collision_profile483)_ 4.95472594960776314e+03 +Electron-alpha_thermal_collision_frequency_at_point_484__________________ (freq_plasma_electron_alpha_thermal_collision_profile484)_ 5.30397790364237517e+03 +Electron-alpha_thermal_collision_frequency_at_point_485__________________ (freq_plasma_electron_alpha_thermal_collision_profile485)_ 5.70615116492181369e+03 +Electron-alpha_thermal_collision_frequency_at_point_486__________________ (freq_plasma_electron_alpha_thermal_collision_profile486)_ 6.17366402793342604e+03 +Electron-alpha_thermal_collision_frequency_at_point_487__________________ (freq_plasma_electron_alpha_thermal_collision_profile487)_ 6.72301321076074692e+03 +Electron-alpha_thermal_collision_frequency_at_point_488__________________ (freq_plasma_electron_alpha_thermal_collision_profile488)_ 7.37655467273119393e+03 +Electron-alpha_thermal_collision_frequency_at_point_489__________________ (freq_plasma_electron_alpha_thermal_collision_profile489)_ 8.16528795139434169e+03 +Electron-alpha_thermal_collision_frequency_at_point_490__________________ (freq_plasma_electron_alpha_thermal_collision_profile490)_ 9.13336110900544554e+03 +Electron-alpha_thermal_collision_frequency_at_point_491__________________ (freq_plasma_electron_alpha_thermal_collision_profile491)_ 1.03456570450385789e+04 +Electron-alpha_thermal_collision_frequency_at_point_492__________________ (freq_plasma_electron_alpha_thermal_collision_profile492)_ 1.19011891106079274e+04 +Electron-alpha_thermal_collision_frequency_at_point_493__________________ (freq_plasma_electron_alpha_thermal_collision_profile493)_ 1.39581458593660518e+04 +Electron-alpha_thermal_collision_frequency_at_point_494__________________ (freq_plasma_electron_alpha_thermal_collision_profile494)_ 1.67841287829056200e+04 +Electron-alpha_thermal_collision_frequency_at_point_495__________________ (freq_plasma_electron_alpha_thermal_collision_profile495)_ 2.08663037598330593e+04 +Electron-alpha_thermal_collision_frequency_at_point_496__________________ (freq_plasma_electron_alpha_thermal_collision_profile496)_ 2.71827967861263933e+04 +Electron-alpha_thermal_collision_frequency_at_point_497__________________ (freq_plasma_electron_alpha_thermal_collision_profile497)_ 3.79879870816857001e+04 +Electron-alpha_thermal_collision_frequency_at_point_498__________________ (freq_plasma_electron_alpha_thermal_collision_profile498)_ 5.96995207964331057e+04 +Electron-alpha_thermal_collision_frequency_at_point_499__________________ (freq_plasma_electron_alpha_thermal_collision_profile499)_ 1.18892619425599696e+05 +Electron-alpha_thermal_collision_frequency_at_point_500__________________ (freq_plasma_electron_alpha_thermal_collision_profile500)_ 4.91010228324775060e+05 +Volume_averaged_electron-electron_mean_free_path_(λₑₑ)_(m)_______________ (len_plasma_electron_electron_mean_free_path_vol_avg)_ 4.54668437854823715e+04 +Electron-electron_mean_free_path_at_point_0______________________________ (len_plasma_electron_electron_mean_free_path_profile0)_ 1.41089403987858939e+05 +Electron-electron_mean_free_path_at_point_1______________________________ (len_plasma_electron_electron_mean_free_path_profile1)_ 1.41088255943525088e+05 +Electron-electron_mean_free_path_at_point_2______________________________ (len_plasma_electron_electron_mean_free_path_profile2)_ 1.41084811842167284e+05 +Electron-electron_mean_free_path_at_point_3______________________________ (len_plasma_electron_electron_mean_free_path_profile3)_ 1.41079071778716578e+05 +Electron-electron_mean_free_path_at_point_4______________________________ (len_plasma_electron_electron_mean_free_path_profile4)_ 1.41071035911392799e+05 +Electron-electron_mean_free_path_at_point_5______________________________ (len_plasma_electron_electron_mean_free_path_profile5)_ 1.41060704461702873e+05 +Electron-electron_mean_free_path_at_point_6______________________________ (len_plasma_electron_electron_mean_free_path_profile6)_ 1.41048077714441257e+05 +Electron-electron_mean_free_path_at_point_7______________________________ (len_plasma_electron_electron_mean_free_path_profile7)_ 1.41033156017692527e+05 +Electron-electron_mean_free_path_at_point_8______________________________ (len_plasma_electron_electron_mean_free_path_profile8)_ 1.41015939782828500e+05 +Electron-electron_mean_free_path_at_point_9______________________________ (len_plasma_electron_electron_mean_free_path_profile9)_ 1.40996429484511231e+05 +Electron-electron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_electron_mean_free_path_profile10)_ 1.40974625660691556e+05 +Electron-electron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_electron_mean_free_path_profile11)_ 1.40950528912611189e+05 +Electron-electron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_electron_mean_free_path_profile12)_ 1.40924139904802665e+05 +Electron-electron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_electron_mean_free_path_profile13)_ 1.40895459365089890e+05 +Electron-electron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_electron_mean_free_path_profile14)_ 1.40864488084589189e+05 +Electron-electron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_electron_mean_free_path_profile15)_ 1.40831226917709748e+05 +Electron-electron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_electron_mean_free_path_profile16)_ 1.40795676782154915e+05 +Electron-electron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_electron_mean_free_path_profile17)_ 1.40757838658922818e+05 +Electron-electron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_electron_mean_free_path_profile18)_ 1.40717713592307904e+05 +Electron-electron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_electron_mean_free_path_profile19)_ 1.40675302689900389e+05 +Electron-electron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_electron_mean_free_path_profile20)_ 1.40630607122589281e+05 +Electron-electron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_electron_mean_free_path_profile21)_ 1.40583628124562732e+05 +Electron-electron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_electron_mean_free_path_profile22)_ 1.40534366993308911e+05 +Electron-electron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_electron_mean_free_path_profile23)_ 1.40482825089617574e+05 +Electron-electron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_electron_mean_free_path_profile24)_ 1.40429003837580909e+05 +Electron-electron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_electron_mean_free_path_profile25)_ 1.40372904724596068e+05 +Electron-electron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_electron_mean_free_path_profile26)_ 1.40314529301365343e+05 +Electron-electron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_electron_mean_free_path_profile27)_ 1.40253879181897850e+05 +Electron-electron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_electron_mean_free_path_profile28)_ 1.40190956043511571e+05 +Electron-electron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_electron_mean_free_path_profile29)_ 1.40125761626834108e+05 +Electron-electron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_electron_mean_free_path_profile30)_ 1.40058297735804954e+05 +Electron-electron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_electron_mean_free_path_profile31)_ 1.39988566237676074e+05 +Electron-electron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_electron_mean_free_path_profile32)_ 1.39916569063015049e+05 +Electron-electron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_electron_mean_free_path_profile33)_ 1.39842308205705427e+05 +Electron-electron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_electron_mean_free_path_profile34)_ 1.39765785722948320e+05 +Electron-electron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_electron_mean_free_path_profile35)_ 1.39687003735265607e+05 +Electron-electron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_electron_mean_free_path_profile36)_ 1.39605964426499821e+05 +Electron-electron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_electron_mean_free_path_profile37)_ 1.39522670043817634e+05 +Electron-electron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_electron_mean_free_path_profile38)_ 1.39437122897710127e+05 +Electron-electron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_electron_mean_free_path_profile39)_ 1.39349325361995085e+05 +Electron-electron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_electron_mean_free_path_profile40)_ 1.39259279873819643e+05 +Electron-electron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_electron_mean_free_path_profile41)_ 1.39166988933661021e+05 +Electron-electron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_electron_mean_free_path_profile42)_ 1.39072455105328583e+05 +Electron-electron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_electron_mean_free_path_profile43)_ 1.38975681015966111e+05 +Electron-electron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_electron_mean_free_path_profile44)_ 1.38876669356053317e+05 +Electron-electron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_electron_mean_free_path_profile45)_ 1.38775422879407270e+05 +Electron-electron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_electron_mean_free_path_profile46)_ 1.38671944403185131e+05 +Electron-electron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_electron_mean_free_path_profile47)_ 1.38566236807885609e+05 +Electron-electron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_electron_mean_free_path_profile48)_ 1.38458303037350066e+05 +Electron-electron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_electron_mean_free_path_profile49)_ 1.38348146098765166e+05 +Electron-electron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_electron_mean_free_path_profile50)_ 1.38235769062664331e+05 +Electron-electron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_electron_mean_free_path_profile51)_ 1.38121175062929717e+05 +Electron-electron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_electron_mean_free_path_profile52)_ 1.38004367296793498e+05 +Electron-electron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_electron_mean_free_path_profile53)_ 1.37885349024839670e+05 +Electron-electron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_electron_mean_free_path_profile54)_ 1.37764123571005941e+05 +Electron-electron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_electron_mean_free_path_profile55)_ 1.37640694322585332e+05 +Electron-electron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_electron_mean_free_path_profile56)_ 1.37515064730227110e+05 +Electron-electron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_electron_mean_free_path_profile57)_ 1.37387238307939551e+05 +Electron-electron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_electron_mean_free_path_profile58)_ 1.37257218633090262e+05 +Electron-electron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_electron_mean_free_path_profile59)_ 1.37125009346407751e+05 +Electron-electron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_electron_mean_free_path_profile60)_ 1.36990614151983580e+05 +Electron-electron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_electron_mean_free_path_profile61)_ 1.36854036817272543e+05 +Electron-electron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_electron_mean_free_path_profile62)_ 1.36715281173094583e+05 +Electron-electron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_electron_mean_free_path_profile63)_ 1.36574351113636221e+05 +Electron-electron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_electron_mean_free_path_profile64)_ 1.36431250596450147e+05 +Electron-electron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_electron_mean_free_path_profile65)_ 1.36285983642458101e+05 +Electron-electron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_electron_mean_free_path_profile66)_ 1.36138554335950466e+05 +Electron-electron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_electron_mean_free_path_profile67)_ 1.35988966824587667e+05 +Electron-electron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_electron_mean_free_path_profile68)_ 1.35837225319400255e+05 +Electron-electron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_electron_mean_free_path_profile69)_ 1.35683334094789461e+05 +Electron-electron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_electron_mean_free_path_profile70)_ 1.35527297488529264e+05 +Electron-electron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_electron_mean_free_path_profile71)_ 1.35369119901764061e+05 +Electron-electron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_electron_mean_free_path_profile72)_ 1.35208805799010821e+05 +Electron-electron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_electron_mean_free_path_profile73)_ 1.35046359708158940e+05 +Electron-electron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_electron_mean_free_path_profile74)_ 1.34881786220469687e+05 +Electron-electron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_electron_mean_free_path_profile75)_ 1.34715089990575420e+05 +Electron-electron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_electron_mean_free_path_profile76)_ 1.34546275736481592e+05 +Electron-electron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_electron_mean_free_path_profile77)_ 1.34375348239563056e+05 +Electron-electron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_electron_mean_free_path_profile78)_ 1.34202312344565551e+05 +Electron-electron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_electron_mean_free_path_profile79)_ 1.34027172959604883e+05 +Electron-electron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_electron_mean_free_path_profile80)_ 1.33849935056164191e+05 +Electron-electron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_electron_mean_free_path_profile81)_ 1.33670603669095319e+05 +Electron-electron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_electron_mean_free_path_profile82)_ 1.33489183896614210e+05 +Electron-electron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_electron_mean_free_path_profile83)_ 1.33305680900302686e+05 +Electron-electron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_electron_mean_free_path_profile84)_ 1.33120099905104027e+05 +Electron-electron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_electron_mean_free_path_profile85)_ 1.32932446199323225e+05 +Electron-electron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_electron_mean_free_path_profile86)_ 1.32742725134622131e+05 +Electron-electron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_electron_mean_free_path_profile87)_ 1.32550942126019247e+05 +Electron-electron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_electron_mean_free_path_profile88)_ 1.32357102651886322e+05 +Electron-electron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_electron_mean_free_path_profile89)_ 1.32161212253945007e+05 +Electron-electron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_electron_mean_free_path_profile90)_ 1.31963276537264464e+05 +Electron-electron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_electron_mean_free_path_profile91)_ 1.31763301170257153e+05 +Electron-electron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_electron_mean_free_path_profile92)_ 1.31561291884675476e+05 +Electron-electron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_electron_mean_free_path_profile93)_ 1.31357254475608061e+05 +Electron-electron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_electron_mean_free_path_profile94)_ 1.31151194801475387e+05 +Electron-electron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_electron_mean_free_path_profile95)_ 1.30943118784024671e+05 +Electron-electron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_electron_mean_free_path_profile96)_ 1.30733032408325991e+05 +Electron-electron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_electron_mean_free_path_profile97)_ 1.30520941722766554e+05 +Electron-electron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_electron_mean_free_path_profile98)_ 1.30306852839045125e+05 +Electron-electron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_electron_mean_free_path_profile99)_ 1.30090771932166492e+05 +Electron-electron_mean_free_path_at_point_100____________________________ (len_plasma_electron_electron_mean_free_path_profile100)_ 1.29872705240435273e+05 +Electron-electron_mean_free_path_at_point_101____________________________ (len_plasma_electron_electron_mean_free_path_profile101)_ 1.29652659065449829e+05 +Electron-electron_mean_free_path_at_point_102____________________________ (len_plasma_electron_electron_mean_free_path_profile102)_ 1.29430639772094219e+05 +Electron-electron_mean_free_path_at_point_103____________________________ (len_plasma_electron_electron_mean_free_path_profile103)_ 1.29206653788532378e+05 +Electron-electron_mean_free_path_at_point_104____________________________ (len_plasma_electron_electron_mean_free_path_profile104)_ 1.28980707606200202e+05 +Electron-electron_mean_free_path_at_point_105____________________________ (len_plasma_electron_electron_mean_free_path_profile105)_ 1.28752807779796625e+05 +Electron-electron_mean_free_path_at_point_106____________________________ (len_plasma_electron_electron_mean_free_path_profile106)_ 1.28522960927276494e+05 +Electron-electron_mean_free_path_at_point_107____________________________ (len_plasma_electron_electron_mean_free_path_profile107)_ 1.28291173729841466e+05 +Electron-electron_mean_free_path_at_point_108____________________________ (len_plasma_electron_electron_mean_free_path_profile108)_ 1.28057452931929933e+05 +Electron-electron_mean_free_path_at_point_109____________________________ (len_plasma_electron_electron_mean_free_path_profile109)_ 1.27821805341209445e+05 +Electron-electron_mean_free_path_at_point_110____________________________ (len_plasma_electron_electron_mean_free_path_profile110)_ 1.27584237828563972e+05 +Electron-electron_mean_free_path_at_point_111____________________________ (len_plasma_electron_electron_mean_free_path_profile111)_ 1.27344757328085951e+05 +Electron-electron_mean_free_path_at_point_112____________________________ (len_plasma_electron_electron_mean_free_path_profile112)_ 1.27103370837063456e+05 +Electron-electron_mean_free_path_at_point_113____________________________ (len_plasma_electron_electron_mean_free_path_profile113)_ 1.26860085415969981e+05 +Electron-electron_mean_free_path_at_point_114____________________________ (len_plasma_electron_electron_mean_free_path_profile114)_ 1.26614908188451576e+05 +Electron-electron_mean_free_path_at_point_115____________________________ (len_plasma_electron_electron_mean_free_path_profile115)_ 1.26367846341316166e+05 +Electron-electron_mean_free_path_at_point_116____________________________ (len_plasma_electron_electron_mean_free_path_profile116)_ 1.26118907124517646e+05 +Electron-electron_mean_free_path_at_point_117____________________________ (len_plasma_electron_electron_mean_free_path_profile117)_ 1.25868097851145940e+05 +Electron-electron_mean_free_path_at_point_118____________________________ (len_plasma_electron_electron_mean_free_path_profile118)_ 1.25615425897410227e+05 +Electron-electron_mean_free_path_at_point_119____________________________ (len_plasma_electron_electron_mean_free_path_profile119)_ 1.25360898702626480e+05 +Electron-electron_mean_free_path_at_point_120____________________________ (len_plasma_electron_electron_mean_free_path_profile120)_ 1.25104523769200256e+05 +Electron-electron_mean_free_path_at_point_121____________________________ (len_plasma_electron_electron_mean_free_path_profile121)_ 1.24846308662613737e+05 +Electron-electron_mean_free_path_at_point_122____________________________ (len_plasma_electron_electron_mean_free_path_profile122)_ 1.24586261011407274e+05 +Electron-electron_mean_free_path_at_point_123____________________________ (len_plasma_electron_electron_mean_free_path_profile123)_ 1.24324388507163792e+05 +Electron-electron_mean_free_path_at_point_124____________________________ (len_plasma_electron_electron_mean_free_path_profile124)_ 1.24060698904490899e+05 +Electron-electron_mean_free_path_at_point_125____________________________ (len_plasma_electron_electron_mean_free_path_profile125)_ 1.23795200021002995e+05 +Electron-electron_mean_free_path_at_point_126____________________________ (len_plasma_electron_electron_mean_free_path_profile126)_ 1.23527899737302956e+05 +Electron-electron_mean_free_path_at_point_127____________________________ (len_plasma_electron_electron_mean_free_path_profile127)_ 1.23258805996962037e+05 +Electron-electron_mean_free_path_at_point_128____________________________ (len_plasma_electron_electron_mean_free_path_profile128)_ 1.22987926806500938e+05 +Electron-electron_mean_free_path_at_point_129____________________________ (len_plasma_electron_electron_mean_free_path_profile129)_ 1.22715270235368167e+05 +Electron-electron_mean_free_path_at_point_130____________________________ (len_plasma_electron_electron_mean_free_path_profile130)_ 1.22440844415919142e+05 +Electron-electron_mean_free_path_at_point_131____________________________ (len_plasma_electron_electron_mean_free_path_profile131)_ 1.22164657543394977e+05 +Electron-electron_mean_free_path_at_point_132____________________________ (len_plasma_electron_electron_mean_free_path_profile132)_ 1.21886717875897419e+05 +Electron-electron_mean_free_path_at_point_133____________________________ (len_plasma_electron_electron_mean_free_path_profile133)_ 1.21607033734368859e+05 +Electron-electron_mean_free_path_at_point_134____________________________ (len_plasma_electron_electron_mean_free_path_profile134)_ 1.21325613502564229e+05 +Electron-electron_mean_free_path_at_point_135____________________________ (len_plasma_electron_electron_mean_free_path_profile135)_ 1.21042465627029160e+05 +Electron-electron_mean_free_path_at_point_136____________________________ (len_plasma_electron_electron_mean_free_path_profile136)_ 1.20757598617072304e+05 +Electron-electron_mean_free_path_at_point_137____________________________ (len_plasma_electron_electron_mean_free_path_profile137)_ 1.20471021044739929e+05 +Electron-electron_mean_free_path_at_point_138____________________________ (len_plasma_electron_electron_mean_free_path_profile138)_ 1.20182741544786928e+05 +Electron-electron_mean_free_path_at_point_139____________________________ (len_plasma_electron_electron_mean_free_path_profile139)_ 1.19892768814650481e+05 +Electron-electron_mean_free_path_at_point_140____________________________ (len_plasma_electron_electron_mean_free_path_profile140)_ 1.19601111614420326e+05 +Electron-electron_mean_free_path_at_point_141____________________________ (len_plasma_electron_electron_mean_free_path_profile141)_ 1.19307778766808085e+05 +Electron-electron_mean_free_path_at_point_142____________________________ (len_plasma_electron_electron_mean_free_path_profile142)_ 1.19012779157116762e+05 +Electron-electron_mean_free_path_at_point_143____________________________ (len_plasma_electron_electron_mean_free_path_profile143)_ 1.18716121733210457e+05 +Electron-electron_mean_free_path_at_point_144____________________________ (len_plasma_electron_electron_mean_free_path_profile144)_ 1.18417815505479492e+05 +Electron-electron_mean_free_path_at_point_145____________________________ (len_plasma_electron_electron_mean_free_path_profile145)_ 1.18117869546808113e+05 +Electron-electron_mean_free_path_at_point_146____________________________ (len_plasma_electron_electron_mean_free_path_profile146)_ 1.17816292992540111e+05 +Electron-electron_mean_free_path_at_point_147____________________________ (len_plasma_electron_electron_mean_free_path_profile147)_ 1.17513095040443150e+05 +Electron-electron_mean_free_path_at_point_148____________________________ (len_plasma_electron_electron_mean_free_path_profile148)_ 1.17208284950671688e+05 +Electron-electron_mean_free_path_at_point_149____________________________ (len_plasma_electron_electron_mean_free_path_profile149)_ 1.16901872045730517e+05 +Electron-electron_mean_free_path_at_point_150____________________________ (len_plasma_electron_electron_mean_free_path_profile150)_ 1.16593865710435435e+05 +Electron-electron_mean_free_path_at_point_151____________________________ (len_plasma_electron_electron_mean_free_path_profile151)_ 1.16284275391874486e+05 +Electron-electron_mean_free_path_at_point_152____________________________ (len_plasma_electron_electron_mean_free_path_profile152)_ 1.15973110599366424e+05 +Electron-electron_mean_free_path_at_point_153____________________________ (len_plasma_electron_electron_mean_free_path_profile153)_ 1.15660380904420177e+05 +Electron-electron_mean_free_path_at_point_154____________________________ (len_plasma_electron_electron_mean_free_path_profile154)_ 1.15346095940691099e+05 +Electron-electron_mean_free_path_at_point_155____________________________ (len_plasma_electron_electron_mean_free_path_profile155)_ 1.15030265403937432e+05 +Electron-electron_mean_free_path_at_point_156____________________________ (len_plasma_electron_electron_mean_free_path_profile156)_ 1.14712899051975110e+05 +Electron-electron_mean_free_path_at_point_157____________________________ (len_plasma_electron_electron_mean_free_path_profile157)_ 1.14394006704632149e+05 +Electron-electron_mean_free_path_at_point_158____________________________ (len_plasma_electron_electron_mean_free_path_profile158)_ 1.14073598243700311e+05 +Electron-electron_mean_free_path_at_point_159____________________________ (len_plasma_electron_electron_mean_free_path_profile159)_ 1.13751683612887515e+05 +Electron-electron_mean_free_path_at_point_160____________________________ (len_plasma_electron_electron_mean_free_path_profile160)_ 1.13428272817767138e+05 +Electron-electron_mean_free_path_at_point_161____________________________ (len_plasma_electron_electron_mean_free_path_profile161)_ 1.13103375925727189e+05 +Electron-electron_mean_free_path_at_point_162____________________________ (len_plasma_electron_electron_mean_free_path_profile162)_ 1.12777003065918339e+05 +Electron-electron_mean_free_path_at_point_163____________________________ (len_plasma_electron_electron_mean_free_path_profile163)_ 1.12449164429199693e+05 +Electron-electron_mean_free_path_at_point_164____________________________ (len_plasma_electron_electron_mean_free_path_profile164)_ 1.12119870268084385e+05 +Electron-electron_mean_free_path_at_point_165____________________________ (len_plasma_electron_electron_mean_free_path_profile165)_ 1.11789130896682793e+05 +Electron-electron_mean_free_path_at_point_166____________________________ (len_plasma_electron_electron_mean_free_path_profile166)_ 1.11456956690645471e+05 +Electron-electron_mean_free_path_at_point_167____________________________ (len_plasma_electron_electron_mean_free_path_profile167)_ 1.11123358087103072e+05 +Electron-electron_mean_free_path_at_point_168____________________________ (len_plasma_electron_electron_mean_free_path_profile168)_ 1.10788345584606795e+05 +Electron-electron_mean_free_path_at_point_169____________________________ (len_plasma_electron_electron_mean_free_path_profile169)_ 1.10451929743066765e+05 +Electron-electron_mean_free_path_at_point_170____________________________ (len_plasma_electron_electron_mean_free_path_profile170)_ 1.10114121183686802e+05 +Electron-electron_mean_free_path_at_point_171____________________________ (len_plasma_electron_electron_mean_free_path_profile171)_ 1.09774930588902163e+05 +Electron-electron_mean_free_path_at_point_172____________________________ (len_plasma_electron_electron_mean_free_path_profile172)_ 1.09434368702310952e+05 +Electron-electron_mean_free_path_at_point_173____________________________ (len_plasma_electron_electron_mean_free_path_profile173)_ 1.09092446328607926e+05 +Electron-electron_mean_free_path_at_point_174____________________________ (len_plasma_electron_electron_mean_free_path_profile174)_ 1.08749174333513351e+05 +Electron-electron_mean_free_path_at_point_175____________________________ (len_plasma_electron_electron_mean_free_path_profile175)_ 1.08404563643703237e+05 +Electron-electron_mean_free_path_at_point_176____________________________ (len_plasma_electron_electron_mean_free_path_profile176)_ 1.08058625246736556e+05 +Electron-electron_mean_free_path_at_point_177____________________________ (len_plasma_electron_electron_mean_free_path_profile177)_ 1.07711370190980146e+05 +Electron-electron_mean_free_path_at_point_178____________________________ (len_plasma_electron_electron_mean_free_path_profile178)_ 1.07362809585533134e+05 +Electron-electron_mean_free_path_at_point_179____________________________ (len_plasma_electron_electron_mean_free_path_profile179)_ 1.07012954600149795e+05 +Electron-electron_mean_free_path_at_point_180____________________________ (len_plasma_electron_electron_mean_free_path_profile180)_ 1.06661816465159383e+05 +Electron-electron_mean_free_path_at_point_181____________________________ (len_plasma_electron_electron_mean_free_path_profile181)_ 1.06309406471385359e+05 +Electron-electron_mean_free_path_at_point_182____________________________ (len_plasma_electron_electron_mean_free_path_profile182)_ 1.05955735970061854e+05 +Electron-electron_mean_free_path_at_point_183____________________________ (len_plasma_electron_electron_mean_free_path_profile183)_ 1.05600816372750021e+05 +Electron-electron_mean_free_path_at_point_184____________________________ (len_plasma_electron_electron_mean_free_path_profile184)_ 1.05244659151250002e+05 +Electron-electron_mean_free_path_at_point_185____________________________ (len_plasma_electron_electron_mean_free_path_profile185)_ 1.04887275837513851e+05 +Electron-electron_mean_free_path_at_point_186____________________________ (len_plasma_electron_electron_mean_free_path_profile186)_ 1.04528678023554487e+05 +Electron-electron_mean_free_path_at_point_187____________________________ (len_plasma_electron_electron_mean_free_path_profile187)_ 1.04168877361352817e+05 +Electron-electron_mean_free_path_at_point_188____________________________ (len_plasma_electron_electron_mean_free_path_profile188)_ 1.03807885562764801e+05 +Electron-electron_mean_free_path_at_point_189____________________________ (len_plasma_electron_electron_mean_free_path_profile189)_ 1.03445714399423479e+05 +Electron-electron_mean_free_path_at_point_190____________________________ (len_plasma_electron_electron_mean_free_path_profile190)_ 1.03082375702642355e+05 +Electron-electron_mean_free_path_at_point_191____________________________ (len_plasma_electron_electron_mean_free_path_profile191)_ 1.02717881363314111e+05 +Electron-electron_mean_free_path_at_point_192____________________________ (len_plasma_electron_electron_mean_free_path_profile192)_ 1.02352243331807898e+05 +Electron-electron_mean_free_path_at_point_193____________________________ (len_plasma_electron_electron_mean_free_path_profile193)_ 1.01985473617865398e+05 +Electron-electron_mean_free_path_at_point_194____________________________ (len_plasma_electron_electron_mean_free_path_profile194)_ 1.01617584290493876e+05 +Electron-electron_mean_free_path_at_point_195____________________________ (len_plasma_electron_electron_mean_free_path_profile195)_ 1.01248587477856752e+05 +Electron-electron_mean_free_path_at_point_196____________________________ (len_plasma_electron_electron_mean_free_path_profile196)_ 1.00878495367163778e+05 +Electron-electron_mean_free_path_at_point_197____________________________ (len_plasma_electron_electron_mean_free_path_profile197)_ 1.00507320204555290e+05 +Electron-electron_mean_free_path_at_point_198____________________________ (len_plasma_electron_electron_mean_free_path_profile198)_ 1.00135074294989259e+05 +Electron-electron_mean_free_path_at_point_199____________________________ (len_plasma_electron_electron_mean_free_path_profile199)_ 9.97617700021207420e+04 +Electron-electron_mean_free_path_at_point_200____________________________ (len_plasma_electron_electron_mean_free_path_profile200)_ 9.93874197481828887e+04 +Electron-electron_mean_free_path_at_point_201____________________________ (len_plasma_electron_electron_mean_free_path_profile201)_ 9.90120360138641263e+04 +Electron-electron_mean_free_path_at_point_202____________________________ (len_plasma_electron_electron_mean_free_path_profile202)_ 9.86356313381818618e+04 +Electron-electron_mean_free_path_at_point_203____________________________ (len_plasma_electron_electron_mean_free_path_profile203)_ 9.82582183183553861e+04 +Electron-electron_mean_free_path_at_point_204____________________________ (len_plasma_electron_electron_mean_free_path_profile204)_ 9.78798096096759400e+04 +Electron-electron_mean_free_path_at_point_205____________________________ (len_plasma_electron_electron_mean_free_path_profile205)_ 9.75004179253730981e+04 +Electron-electron_mean_free_path_at_point_206____________________________ (len_plasma_electron_electron_mean_free_path_profile206)_ 9.71200560364798293e+04 +Electron-electron_mean_free_path_at_point_207____________________________ (len_plasma_electron_electron_mean_free_path_profile207)_ 9.67387367716940935e+04 +Electron-electron_mean_free_path_at_point_208____________________________ (len_plasma_electron_electron_mean_free_path_profile208)_ 9.63564730172382115e+04 +Electron-electron_mean_free_path_at_point_209____________________________ (len_plasma_electron_electron_mean_free_path_profile209)_ 9.59732777167160675e+04 +Electron-electron_mean_free_path_at_point_210____________________________ (len_plasma_electron_electron_mean_free_path_profile210)_ 9.55891638709654217e+04 +Electron-electron_mean_free_path_at_point_211____________________________ (len_plasma_electron_electron_mean_free_path_profile211)_ 9.52041445379103534e+04 +Electron-electron_mean_free_path_at_point_212____________________________ (len_plasma_electron_electron_mean_free_path_profile212)_ 9.48182328324085684e+04 +Electron-electron_mean_free_path_at_point_213____________________________ (len_plasma_electron_electron_mean_free_path_profile213)_ 9.44314419260966097e+04 +Electron-electron_mean_free_path_at_point_214____________________________ (len_plasma_electron_electron_mean_free_path_profile214)_ 9.40437850472329010e+04 +Electron-electron_mean_free_path_at_point_215____________________________ (len_plasma_electron_electron_mean_free_path_profile215)_ 9.36552754805367294e+04 +Electron-electron_mean_free_path_at_point_216____________________________ (len_plasma_electron_electron_mean_free_path_profile216)_ 9.32659265670241584e+04 +Electron-electron_mean_free_path_at_point_217____________________________ (len_plasma_electron_electron_mean_free_path_profile217)_ 9.28757517038420774e+04 +Electron-electron_mean_free_path_at_point_218____________________________ (len_plasma_electron_electron_mean_free_path_profile218)_ 9.24847643440976535e+04 +Electron-electron_mean_free_path_at_point_219____________________________ (len_plasma_electron_electron_mean_free_path_profile219)_ 9.20929779966866918e+04 +Electron-electron_mean_free_path_at_point_220____________________________ (len_plasma_electron_electron_mean_free_path_profile220)_ 9.17004062261158542e+04 +Electron-electron_mean_free_path_at_point_221____________________________ (len_plasma_electron_electron_mean_free_path_profile221)_ 9.13070626523243554e+04 +Electron-electron_mean_free_path_at_point_222____________________________ (len_plasma_electron_electron_mean_free_path_profile222)_ 9.09129609505011467e+04 +Electron-electron_mean_free_path_at_point_223____________________________ (len_plasma_electron_electron_mean_free_path_profile223)_ 9.05181148508990009e+04 +Electron-electron_mean_free_path_at_point_224____________________________ (len_plasma_electron_electron_mean_free_path_profile224)_ 9.01225381386451045e+04 +Electron-electron_mean_free_path_at_point_225____________________________ (len_plasma_electron_electron_mean_free_path_profile225)_ 8.97262446535478230e+04 +Electron-electron_mean_free_path_at_point_226____________________________ (len_plasma_electron_electron_mean_free_path_profile226)_ 8.93292482899013121e+04 +Electron-electron_mean_free_path_at_point_227____________________________ (len_plasma_electron_electron_mean_free_path_profile227)_ 8.89315629962855019e+04 +Electron-electron_mean_free_path_at_point_228____________________________ (len_plasma_electron_electron_mean_free_path_profile228)_ 8.85332027753619332e+04 +Electron-electron_mean_free_path_at_point_229____________________________ (len_plasma_electron_electron_mean_free_path_profile229)_ 8.81341816836685321e+04 +Electron-electron_mean_free_path_at_point_230____________________________ (len_plasma_electron_electron_mean_free_path_profile230)_ 8.77345138314073847e+04 +Electron-electron_mean_free_path_at_point_231____________________________ (len_plasma_electron_electron_mean_free_path_profile231)_ 8.73342133822308388e+04 +Electron-electron_mean_free_path_at_point_232____________________________ (len_plasma_electron_electron_mean_free_path_profile232)_ 8.69332945530245488e+04 +Electron-electron_mean_free_path_at_point_233____________________________ (len_plasma_electron_electron_mean_free_path_profile233)_ 8.65317716136828676e+04 +Electron-electron_mean_free_path_at_point_234____________________________ (len_plasma_electron_electron_mean_free_path_profile234)_ 8.61296588868865219e+04 +Electron-electron_mean_free_path_at_point_235____________________________ (len_plasma_electron_electron_mean_free_path_profile235)_ 8.57269707478700439e+04 +Electron-electron_mean_free_path_at_point_236____________________________ (len_plasma_electron_electron_mean_free_path_profile236)_ 8.53237216241895076e+04 +Electron-electron_mean_free_path_at_point_237____________________________ (len_plasma_electron_electron_mean_free_path_profile237)_ 8.49199259954840963e+04 +Electron-electron_mean_free_path_at_point_238____________________________ (len_plasma_electron_electron_mean_free_path_profile238)_ 8.45155983932348754e+04 +Electron-electron_mean_free_path_at_point_239____________________________ (len_plasma_electron_electron_mean_free_path_profile239)_ 8.41107534005177149e+04 +Electron-electron_mean_free_path_at_point_240____________________________ (len_plasma_electron_electron_mean_free_path_profile240)_ 8.37054056517548161e+04 +Electron-electron_mean_free_path_at_point_241____________________________ (len_plasma_electron_electron_mean_free_path_profile241)_ 8.32995698324585683e+04 +Electron-electron_mean_free_path_at_point_242____________________________ (len_plasma_electron_electron_mean_free_path_profile242)_ 8.28932606789735728e+04 +Electron-electron_mean_free_path_at_point_243____________________________ (len_plasma_electron_electron_mean_free_path_profile243)_ 8.24864929782135150e+04 +Electron-electron_mean_free_path_at_point_244____________________________ (len_plasma_electron_electron_mean_free_path_profile244)_ 8.20792815673932346e+04 +Electron-electron_mean_free_path_at_point_245____________________________ (len_plasma_electron_electron_mean_free_path_profile245)_ 8.16716413337569393e+04 +Electron-electron_mean_free_path_at_point_246____________________________ (len_plasma_electron_electron_mean_free_path_profile246)_ 8.12635872143016313e+04 +Electron-electron_mean_free_path_at_point_247____________________________ (len_plasma_electron_electron_mean_free_path_profile247)_ 8.08551341954958916e+04 +Electron-electron_mean_free_path_at_point_248____________________________ (len_plasma_electron_electron_mean_free_path_profile248)_ 8.04462973129939928e+04 +Electron-electron_mean_free_path_at_point_249____________________________ (len_plasma_electron_electron_mean_free_path_profile249)_ 8.00370916513449920e+04 +Electron-electron_mean_free_path_at_point_250____________________________ (len_plasma_electron_electron_mean_free_path_profile250)_ 7.96275323436974577e+04 +Electron-electron_mean_free_path_at_point_251____________________________ (len_plasma_electron_electron_mean_free_path_profile251)_ 7.92176345715000352e+04 +Electron-electron_mean_free_path_at_point_252____________________________ (len_plasma_electron_electron_mean_free_path_profile252)_ 7.88074135641955363e+04 +Electron-electron_mean_free_path_at_point_253____________________________ (len_plasma_electron_electron_mean_free_path_profile253)_ 7.83968845989105612e+04 +Electron-electron_mean_free_path_at_point_254____________________________ (len_plasma_electron_electron_mean_free_path_profile254)_ 7.79860630001418613e+04 +Electron-electron_mean_free_path_at_point_255____________________________ (len_plasma_electron_electron_mean_free_path_profile255)_ 7.75749641394341452e+04 +Electron-electron_mean_free_path_at_point_256____________________________ (len_plasma_electron_electron_mean_free_path_profile256)_ 7.71636034350569680e+04 +Electron-electron_mean_free_path_at_point_257____________________________ (len_plasma_electron_electron_mean_free_path_profile257)_ 7.67519963516717544e+04 +Electron-electron_mean_free_path_at_point_258____________________________ (len_plasma_electron_electron_mean_free_path_profile258)_ 7.63401583999988070e+04 +Electron-electron_mean_free_path_at_point_259____________________________ (len_plasma_electron_electron_mean_free_path_profile259)_ 7.59281051364735031e+04 +Electron-electron_mean_free_path_at_point_260____________________________ (len_plasma_electron_electron_mean_free_path_profile260)_ 7.55158521629013994e+04 +Electron-electron_mean_free_path_at_point_261____________________________ (len_plasma_electron_electron_mean_free_path_profile261)_ 7.51034151261056977e+04 +Electron-electron_mean_free_path_at_point_262____________________________ (len_plasma_electron_electron_mean_free_path_profile262)_ 7.46908097175703733e+04 +Electron-electron_mean_free_path_at_point_263____________________________ (len_plasma_electron_electron_mean_free_path_profile263)_ 7.42780516730760282e+04 +Electron-electron_mean_free_path_at_point_264____________________________ (len_plasma_electron_electron_mean_free_path_profile264)_ 7.38651567723317712e+04 +Electron-electron_mean_free_path_at_point_265____________________________ (len_plasma_electron_electron_mean_free_path_profile265)_ 7.34521408386007242e+04 +Electron-electron_mean_free_path_at_point_266____________________________ (len_plasma_electron_electron_mean_free_path_profile266)_ 7.30390197383199993e+04 +Electron-electron_mean_free_path_at_point_267____________________________ (len_plasma_electron_electron_mean_free_path_profile267)_ 7.26258093807142432e+04 +Electron-electron_mean_free_path_at_point_268____________________________ (len_plasma_electron_electron_mean_free_path_profile268)_ 7.22125257174044673e+04 +Electron-electron_mean_free_path_at_point_269____________________________ (len_plasma_electron_electron_mean_free_path_profile269)_ 7.17991847420086124e+04 +Electron-electron_mean_free_path_at_point_270____________________________ (len_plasma_electron_electron_mean_free_path_profile270)_ 7.13858024897396972e+04 +Electron-electron_mean_free_path_at_point_271____________________________ (len_plasma_electron_electron_mean_free_path_profile271)_ 7.09723950369941158e+04 +Electron-electron_mean_free_path_at_point_272____________________________ (len_plasma_electron_electron_mean_free_path_profile272)_ 7.05589785009359766e+04 +Electron-electron_mean_free_path_at_point_273____________________________ (len_plasma_electron_electron_mean_free_path_profile273)_ 7.01455690390754753e+04 +Electron-electron_mean_free_path_at_point_274____________________________ (len_plasma_electron_electron_mean_free_path_profile274)_ 6.97321828488387982e+04 +Electron-electron_mean_free_path_at_point_275____________________________ (len_plasma_electron_electron_mean_free_path_profile275)_ 6.93188361671346065e+04 +Electron-electron_mean_free_path_at_point_276____________________________ (len_plasma_electron_electron_mean_free_path_profile276)_ 6.89055452699120506e+04 +Electron-electron_mean_free_path_at_point_277____________________________ (len_plasma_electron_electron_mean_free_path_profile277)_ 6.84923264717124111e+04 +Electron-electron_mean_free_path_at_point_278____________________________ (len_plasma_electron_electron_mean_free_path_profile278)_ 6.80791961252159672e+04 +Electron-electron_mean_free_path_at_point_279____________________________ (len_plasma_electron_electron_mean_free_path_profile279)_ 6.76661706207800016e+04 +Electron-electron_mean_free_path_at_point_280____________________________ (len_plasma_electron_electron_mean_free_path_profile280)_ 6.72532663859715394e+04 +Electron-electron_mean_free_path_at_point_281____________________________ (len_plasma_electron_electron_mean_free_path_profile281)_ 6.68404998850937409e+04 +Electron-electron_mean_free_path_at_point_282____________________________ (len_plasma_electron_electron_mean_free_path_profile282)_ 6.64278876187046408e+04 +Electron-electron_mean_free_path_at_point_283____________________________ (len_plasma_electron_electron_mean_free_path_profile283)_ 6.60154461231284513e+04 +Electron-electron_mean_free_path_at_point_284____________________________ (len_plasma_electron_electron_mean_free_path_profile284)_ 6.56031919699625723e+04 +Electron-electron_mean_free_path_at_point_285____________________________ (len_plasma_electron_electron_mean_free_path_profile285)_ 6.51911417655746336e+04 +Electron-electron_mean_free_path_at_point_286____________________________ (len_plasma_electron_electron_mean_free_path_profile286)_ 6.47793121505954914e+04 +Electron-electron_mean_free_path_at_point_287____________________________ (len_plasma_electron_electron_mean_free_path_profile287)_ 6.43677197994020316e+04 +Electron-electron_mean_free_path_at_point_288____________________________ (len_plasma_electron_electron_mean_free_path_profile288)_ 6.39563814195961604e+04 +Electron-electron_mean_free_path_at_point_289____________________________ (len_plasma_electron_electron_mean_free_path_profile289)_ 6.35453137514743939e+04 +Electron-electron_mean_free_path_at_point_290____________________________ (len_plasma_electron_electron_mean_free_path_profile290)_ 6.31345335674915768e+04 +Electron-electron_mean_free_path_at_point_291____________________________ (len_plasma_electron_electron_mean_free_path_profile291)_ 6.27240576717163131e+04 +Electron-electron_mean_free_path_at_point_292____________________________ (len_plasma_electron_electron_mean_free_path_profile292)_ 6.23139028992805906e+04 +Electron-electron_mean_free_path_at_point_293____________________________ (len_plasma_electron_electron_mean_free_path_profile293)_ 6.19040861158206390e+04 +Electron-electron_mean_free_path_at_point_294____________________________ (len_plasma_electron_electron_mean_free_path_profile294)_ 6.14946242169120087e+04 +Electron-electron_mean_free_path_at_point_295____________________________ (len_plasma_electron_electron_mean_free_path_profile295)_ 6.10855341274954626e+04 +Electron-electron_mean_free_path_at_point_296____________________________ (len_plasma_electron_electron_mean_free_path_profile296)_ 6.06768328012977727e+04 +Electron-electron_mean_free_path_at_point_297____________________________ (len_plasma_electron_electron_mean_free_path_profile297)_ 6.02685372202429353e+04 +Electron-electron_mean_free_path_at_point_298____________________________ (len_plasma_electron_electron_mean_free_path_profile298)_ 5.98606643938577254e+04 +Electron-electron_mean_free_path_at_point_299____________________________ (len_plasma_electron_electron_mean_free_path_profile299)_ 5.94532313586687160e+04 +Electron-electron_mean_free_path_at_point_300____________________________ (len_plasma_electron_electron_mean_free_path_profile300)_ 5.90462551775922329e+04 +Electron-electron_mean_free_path_at_point_301____________________________ (len_plasma_electron_electron_mean_free_path_profile301)_ 5.86397529393167133e+04 +Electron-electron_mean_free_path_at_point_302____________________________ (len_plasma_electron_electron_mean_free_path_profile302)_ 5.82337417576785592e+04 +Electron-electron_mean_free_path_at_point_303____________________________ (len_plasma_electron_electron_mean_free_path_profile303)_ 5.78282387710283874e+04 +Electron-electron_mean_free_path_at_point_304____________________________ (len_plasma_electron_electron_mean_free_path_profile304)_ 5.74232611415922074e+04 +Electron-electron_mean_free_path_at_point_305____________________________ (len_plasma_electron_electron_mean_free_path_profile305)_ 5.70188260548241160e+04 +Electron-electron_mean_free_path_at_point_306____________________________ (len_plasma_electron_electron_mean_free_path_profile306)_ 5.66149507187505660e+04 +Electron-electron_mean_free_path_at_point_307____________________________ (len_plasma_electron_electron_mean_free_path_profile307)_ 5.62116523633090765e+04 +Electron-electron_mean_free_path_at_point_308____________________________ (len_plasma_electron_electron_mean_free_path_profile308)_ 5.58089482396783351e+04 +Electron-electron_mean_free_path_at_point_309____________________________ (len_plasma_electron_electron_mean_free_path_profile309)_ 5.54068556196013815e+04 +Electron-electron_mean_free_path_at_point_310____________________________ (len_plasma_electron_electron_mean_free_path_profile310)_ 5.50053917947009395e+04 +Electron-electron_mean_free_path_at_point_311____________________________ (len_plasma_electron_electron_mean_free_path_profile311)_ 5.46045740757884632e+04 +Electron-electron_mean_free_path_at_point_312____________________________ (len_plasma_electron_electron_mean_free_path_profile312)_ 5.42044197921653613e+04 +Electron-electron_mean_free_path_at_point_313____________________________ (len_plasma_electron_electron_mean_free_path_profile313)_ 5.38049462909160575e+04 +Electron-electron_mean_free_path_at_point_314____________________________ (len_plasma_electron_electron_mean_free_path_profile314)_ 5.34061709361964022e+04 +Electron-electron_mean_free_path_at_point_315____________________________ (len_plasma_electron_electron_mean_free_path_profile315)_ 5.30081111085128650e+04 +Electron-electron_mean_free_path_at_point_316____________________________ (len_plasma_electron_electron_mean_free_path_profile316)_ 5.26107842039954048e+04 +Electron-electron_mean_free_path_at_point_317____________________________ (len_plasma_electron_electron_mean_free_path_profile317)_ 5.22142076336648752e+04 +Electron-electron_mean_free_path_at_point_318____________________________ (len_plasma_electron_electron_mean_free_path_profile318)_ 5.18183988226908841e+04 +Electron-electron_mean_free_path_at_point_319____________________________ (len_plasma_electron_electron_mean_free_path_profile319)_ 5.14233752096461903e+04 +Electron-electron_mean_free_path_at_point_320____________________________ (len_plasma_electron_electron_mean_free_path_profile320)_ 5.10291542457528558e+04 +Electron-electron_mean_free_path_at_point_321____________________________ (len_plasma_electron_electron_mean_free_path_profile321)_ 5.06357533941220172e+04 +Electron-electron_mean_free_path_at_point_322____________________________ (len_plasma_electron_electron_mean_free_path_profile322)_ 5.02431901289891175e+04 +Electron-electron_mean_free_path_at_point_323____________________________ (len_plasma_electron_electron_mean_free_path_profile323)_ 4.98514819349406316e+04 +Electron-electron_mean_free_path_at_point_324____________________________ (len_plasma_electron_electron_mean_free_path_profile324)_ 4.94606463061378163e+04 +Electron-electron_mean_free_path_at_point_325____________________________ (len_plasma_electron_electron_mean_free_path_profile325)_ 4.90707007455335261e+04 +Electron-electron_mean_free_path_at_point_326____________________________ (len_plasma_electron_electron_mean_free_path_profile326)_ 4.86816627640825536e+04 +Electron-electron_mean_free_path_at_point_327____________________________ (len_plasma_electron_electron_mean_free_path_profile327)_ 4.82935498799499182e+04 +Electron-electron_mean_free_path_at_point_328____________________________ (len_plasma_electron_electron_mean_free_path_profile328)_ 4.79063796177116965e+04 +Electron-electron_mean_free_path_at_point_329____________________________ (len_plasma_electron_electron_mean_free_path_profile329)_ 4.75201695075524694e+04 +Electron-electron_mean_free_path_at_point_330____________________________ (len_plasma_electron_electron_mean_free_path_profile330)_ 4.71349370844585792e+04 +Electron-electron_mean_free_path_at_point_331____________________________ (len_plasma_electron_electron_mean_free_path_profile331)_ 4.67506998874073397e+04 +Electron-electron_mean_free_path_at_point_332____________________________ (len_plasma_electron_electron_mean_free_path_profile332)_ 4.63674754585529809e+04 +Electron-electron_mean_free_path_at_point_333____________________________ (len_plasma_electron_electron_mean_free_path_profile333)_ 4.59852813424092237e+04 +Electron-electron_mean_free_path_at_point_334____________________________ (len_plasma_electron_electron_mean_free_path_profile334)_ 4.56041350850291929e+04 +Electron-electron_mean_free_path_at_point_335____________________________ (len_plasma_electron_electron_mean_free_path_profile335)_ 4.52240542331834877e+04 +Electron-electron_mean_free_path_at_point_336____________________________ (len_plasma_electron_electron_mean_free_path_profile336)_ 4.48450563335360712e+04 +Electron-electron_mean_free_path_at_point_337____________________________ (len_plasma_electron_electron_mean_free_path_profile337)_ 4.44671589318193874e+04 +Electron-electron_mean_free_path_at_point_338____________________________ (len_plasma_electron_electron_mean_free_path_profile338)_ 4.40903795720078924e+04 +Electron-electron_mean_free_path_at_point_339____________________________ (len_plasma_electron_electron_mean_free_path_profile339)_ 4.37147357954926483e+04 +Electron-electron_mean_free_path_at_point_340____________________________ (len_plasma_electron_electron_mean_free_path_profile340)_ 4.33402451402551451e+04 +Electron-electron_mean_free_path_at_point_341____________________________ (len_plasma_electron_electron_mean_free_path_profile341)_ 4.29669251400440335e+04 +Electron-electron_mean_free_path_at_point_342____________________________ (len_plasma_electron_electron_mean_free_path_profile342)_ 4.25947933235513701e+04 +Electron-electron_mean_free_path_at_point_343____________________________ (len_plasma_electron_electron_mean_free_path_profile343)_ 4.22238672135938832e+04 +Electron-electron_mean_free_path_at_point_344____________________________ (len_plasma_electron_electron_mean_free_path_profile344)_ 4.18541643262961152e+04 +Electron-electron_mean_free_path_at_point_345____________________________ (len_plasma_electron_electron_mean_free_path_profile345)_ 4.14857021702785132e+04 +Electron-electron_mean_free_path_at_point_346____________________________ (len_plasma_electron_electron_mean_free_path_profile346)_ 4.11184982458502636e+04 +Electron-electron_mean_free_path_at_point_347____________________________ (len_plasma_electron_electron_mean_free_path_profile347)_ 4.07525700442093294e+04 +Electron-electron_mean_free_path_at_point_348____________________________ (len_plasma_electron_electron_mean_free_path_profile348)_ 4.03879350466480173e+04 +Electron-electron_mean_free_path_at_point_349____________________________ (len_plasma_electron_electron_mean_free_path_profile349)_ 4.00246107237689212e+04 +Electron-electron_mean_free_path_at_point_350____________________________ (len_plasma_electron_electron_mean_free_path_profile350)_ 3.96626145347093043e+04 +Electron-electron_mean_free_path_at_point_351____________________________ (len_plasma_electron_electron_mean_free_path_profile351)_ 3.93019639263745994e+04 +Electron-electron_mean_free_path_at_point_352____________________________ (len_plasma_electron_electron_mean_free_path_profile352)_ 3.89426763326883956e+04 +Electron-electron_mean_free_path_at_point_353____________________________ (len_plasma_electron_electron_mean_free_path_profile353)_ 3.85847691738509238e+04 +Electron-electron_mean_free_path_at_point_354____________________________ (len_plasma_electron_electron_mean_free_path_profile354)_ 3.82282598556163357e+04 +Electron-electron_mean_free_path_at_point_355____________________________ (len_plasma_electron_electron_mean_free_path_profile355)_ 3.78731657685842365e+04 +Electron-electron_mean_free_path_at_point_356____________________________ (len_plasma_electron_electron_mean_free_path_profile356)_ 3.75195042875110012e+04 +Electron-electron_mean_free_path_at_point_357____________________________ (len_plasma_electron_electron_mean_free_path_profile357)_ 3.71672927706403061e+04 +Electron-electron_mean_free_path_at_point_358____________________________ (len_plasma_electron_electron_mean_free_path_profile358)_ 3.68165485590566532e+04 +Electron-electron_mean_free_path_at_point_359____________________________ (len_plasma_electron_electron_mean_free_path_profile359)_ 3.64672889760619364e+04 +Electron-electron_mean_free_path_at_point_360____________________________ (len_plasma_electron_electron_mean_free_path_profile360)_ 3.61195313265792065e+04 +Electron-electron_mean_free_path_at_point_361____________________________ (len_plasma_electron_electron_mean_free_path_profile361)_ 3.57732928965845567e+04 +Electron-electron_mean_free_path_at_point_362____________________________ (len_plasma_electron_electron_mean_free_path_profile362)_ 3.54285909525705574e+04 +Electron-electron_mean_free_path_at_point_363____________________________ (len_plasma_electron_electron_mean_free_path_profile363)_ 3.50854427410426579e+04 +Electron-electron_mean_free_path_at_point_364____________________________ (len_plasma_electron_electron_mean_free_path_profile364)_ 3.47438654880535396e+04 +Electron-electron_mean_free_path_at_point_365____________________________ (len_plasma_electron_electron_mean_free_path_profile365)_ 3.44038763987748171e+04 +Electron-electron_mean_free_path_at_point_366____________________________ (len_plasma_electron_electron_mean_free_path_profile366)_ 3.40654926571144024e+04 +Electron-electron_mean_free_path_at_point_367____________________________ (len_plasma_electron_electron_mean_free_path_profile367)_ 3.37287314253761651e+04 +Electron-electron_mean_free_path_at_point_368____________________________ (len_plasma_electron_electron_mean_free_path_profile368)_ 3.33936098439731504e+04 +Electron-electron_mean_free_path_at_point_369____________________________ (len_plasma_electron_electron_mean_free_path_profile369)_ 3.30601450311913286e+04 +Electron-electron_mean_free_path_at_point_370____________________________ (len_plasma_electron_electron_mean_free_path_profile370)_ 3.27283540830125785e+04 +Electron-electron_mean_free_path_at_point_371____________________________ (len_plasma_electron_electron_mean_free_path_profile371)_ 3.23982540729988905e+04 +Electron-electron_mean_free_path_at_point_372____________________________ (len_plasma_electron_electron_mean_free_path_profile372)_ 3.20698620522428428e+04 +Electron-electron_mean_free_path_at_point_373____________________________ (len_plasma_electron_electron_mean_free_path_profile373)_ 3.17431950493905133e+04 +Electron-electron_mean_free_path_at_point_374____________________________ (len_plasma_electron_electron_mean_free_path_profile374)_ 3.14182700707398908e+04 +Electron-electron_mean_free_path_at_point_375____________________________ (len_plasma_electron_electron_mean_free_path_profile375)_ 3.10951041004228937e+04 +Electron-electron_mean_free_path_at_point_376____________________________ (len_plasma_electron_electron_mean_free_path_profile376)_ 3.07737141006749516e+04 +Electron-electron_mean_free_path_at_point_377____________________________ (len_plasma_electron_electron_mean_free_path_profile377)_ 3.04541170121985269e+04 +Electron-electron_mean_free_path_at_point_378____________________________ (len_plasma_electron_electron_mean_free_path_profile378)_ 3.01363297546302420e+04 +Electron-electron_mean_free_path_at_point_379____________________________ (len_plasma_electron_electron_mean_free_path_profile379)_ 2.98203692271152431e+04 +Electron-electron_mean_free_path_at_point_380____________________________ (len_plasma_electron_electron_mean_free_path_profile380)_ 2.95062523089978349e+04 +Electron-electron_mean_free_path_at_point_381____________________________ (len_plasma_electron_electron_mean_free_path_profile381)_ 2.91939958606384498e+04 +Electron-electron_mean_free_path_at_point_382____________________________ (len_plasma_electron_electron_mean_free_path_profile382)_ 2.88836167243633499e+04 +Electron-electron_mean_free_path_at_point_383____________________________ (len_plasma_electron_electron_mean_free_path_profile383)_ 2.85751317255582217e+04 +Electron-electron_mean_free_path_at_point_384____________________________ (len_plasma_electron_electron_mean_free_path_profile384)_ 2.82685576739142016e+04 +Electron-electron_mean_free_path_at_point_385____________________________ (len_plasma_electron_electron_mean_free_path_profile385)_ 2.79639113648398124e+04 +Electron-electron_mean_free_path_at_point_386____________________________ (len_plasma_electron_electron_mean_free_path_profile386)_ 2.76612095810472783e+04 +Electron-electron_mean_free_path_at_point_387____________________________ (len_plasma_electron_electron_mean_free_path_profile387)_ 2.73604690943295318e+04 +Electron-electron_mean_free_path_at_point_388____________________________ (len_plasma_electron_electron_mean_free_path_profile388)_ 2.70617066675361821e+04 +Electron-electron_mean_free_path_at_point_389____________________________ (len_plasma_electron_electron_mean_free_path_profile389)_ 2.67649390567687296e+04 +Electron-electron_mean_free_path_at_point_390____________________________ (len_plasma_electron_electron_mean_free_path_profile390)_ 2.64701830138060395e+04 +Electron-electron_mean_free_path_at_point_391____________________________ (len_plasma_electron_electron_mean_free_path_profile391)_ 2.61774552887784121e+04 +Electron-electron_mean_free_path_at_point_392____________________________ (len_plasma_electron_electron_mean_free_path_profile392)_ 2.58867726331078447e+04 +Electron-electron_mean_free_path_at_point_393____________________________ (len_plasma_electron_electron_mean_free_path_profile393)_ 2.55981518027339043e+04 +Electron-electron_mean_free_path_at_point_394____________________________ (len_plasma_electron_electron_mean_free_path_profile394)_ 2.53116095616456878e+04 +Electron-electron_mean_free_path_at_point_395____________________________ (len_plasma_electron_electron_mean_free_path_profile395)_ 2.50271626857412084e+04 +Electron-electron_mean_free_path_at_point_396____________________________ (len_plasma_electron_electron_mean_free_path_profile396)_ 2.47448279670408083e+04 +Electron-electron_mean_free_path_at_point_397____________________________ (len_plasma_electron_electron_mean_free_path_profile397)_ 2.44646222182761048e+04 +Electron-electron_mean_free_path_at_point_398____________________________ (len_plasma_electron_electron_mean_free_path_profile398)_ 2.41865622778869511e+04 +Electron-electron_mean_free_path_at_point_399____________________________ (len_plasma_electron_electron_mean_free_path_profile399)_ 2.39106650154533818e+04 +Electron-electron_mean_free_path_at_point_400____________________________ (len_plasma_electron_electron_mean_free_path_profile400)_ 2.36369473375965354e+04 +Electron-electron_mean_free_path_at_point_401____________________________ (len_plasma_electron_electron_mean_free_path_profile401)_ 2.33654261943834754e+04 +Electron-electron_mean_free_path_at_point_402____________________________ (len_plasma_electron_electron_mean_free_path_profile402)_ 2.30961185862735147e+04 +Electron-electron_mean_free_path_at_point_403____________________________ (len_plasma_electron_electron_mean_free_path_profile403)_ 2.28290415716484531e+04 +Electron-electron_mean_free_path_at_point_404____________________________ (len_plasma_electron_electron_mean_free_path_profile404)_ 2.25642122749708906e+04 +Electron-electron_mean_free_path_at_point_405____________________________ (len_plasma_electron_electron_mean_free_path_profile405)_ 2.23016478956187639e+04 +Electron-electron_mean_free_path_at_point_406____________________________ (len_plasma_electron_electron_mean_free_path_profile406)_ 2.20413657174516484e+04 +Electron-electron_mean_free_path_at_point_407____________________________ (len_plasma_electron_electron_mean_free_path_profile407)_ 2.17833831191625941e+04 +Electron-electron_mean_free_path_at_point_408____________________________ (len_plasma_electron_electron_mean_free_path_profile408)_ 2.15277175854820343e+04 +Electron-electron_mean_free_path_at_point_409____________________________ (len_plasma_electron_electron_mean_free_path_profile409)_ 2.12743867192994803e+04 +Electron-electron_mean_free_path_at_point_410____________________________ (len_plasma_electron_electron_mean_free_path_profile410)_ 2.10234082547801845e+04 +Electron-electron_mean_free_path_at_point_411____________________________ (len_plasma_electron_electron_mean_free_path_profile411)_ 2.07748000715572125e+04 +Electron-electron_mean_free_path_at_point_412____________________________ (len_plasma_electron_electron_mean_free_path_profile412)_ 2.05285802100886103e+04 +Electron-electron_mean_free_path_at_point_413____________________________ (len_plasma_electron_electron_mean_free_path_profile413)_ 2.02847668882778416e+04 +Electron-electron_mean_free_path_at_point_414____________________________ (len_plasma_electron_electron_mean_free_path_profile414)_ 2.00433785194673983e+04 +Electron-electron_mean_free_path_at_point_415____________________________ (len_plasma_electron_electron_mean_free_path_profile415)_ 1.98044337319212900e+04 +Electron-electron_mean_free_path_at_point_416____________________________ (len_plasma_electron_electron_mean_free_path_profile416)_ 1.95679513899277990e+04 +Electron-electron_mean_free_path_at_point_417____________________________ (len_plasma_electron_electron_mean_free_path_profile417)_ 1.93339506166688116e+04 +Electron-electron_mean_free_path_at_point_418____________________________ (len_plasma_electron_electron_mean_free_path_profile418)_ 1.91024508190119632e+04 +Electron-electron_mean_free_path_at_point_419____________________________ (len_plasma_electron_electron_mean_free_path_profile419)_ 1.88734717144025672e+04 +Electron-electron_mean_free_path_at_point_420____________________________ (len_plasma_electron_electron_mean_free_path_profile420)_ 1.86470333600517552e+04 +Electron-electron_mean_free_path_at_point_421____________________________ (len_plasma_electron_electron_mean_free_path_profile421)_ 1.84231561846359327e+04 +Electron-electron_mean_free_path_at_point_422____________________________ (len_plasma_electron_electron_mean_free_path_profile422)_ 1.82018610227489589e+04 +Electron-electron_mean_free_path_at_point_423____________________________ (len_plasma_electron_electron_mean_free_path_profile423)_ 1.79831691523774061e+04 +Electron-electron_mean_free_path_at_point_424____________________________ (len_plasma_electron_electron_mean_free_path_profile424)_ 1.77671023356969235e+04 +Electron-electron_mean_free_path_at_point_425____________________________ (len_plasma_electron_electron_mean_free_path_profile425)_ 1.75536828635275560e+04 +Electron-electron_mean_free_path_at_point_426____________________________ (len_plasma_electron_electron_mean_free_path_profile426)_ 1.73429336038255169e+04 +Electron-electron_mean_free_path_at_point_427____________________________ (len_plasma_electron_electron_mean_free_path_profile427)_ 1.71348780546337657e+04 +Electron-electron_mean_free_path_at_point_428____________________________ (len_plasma_electron_electron_mean_free_path_profile428)_ 1.69295404019735142e+04 +Electron-electron_mean_free_path_at_point_429____________________________ (len_plasma_electron_electron_mean_free_path_profile429)_ 1.67269455832145395e+04 +Electron-electron_mean_free_path_at_point_430____________________________ (len_plasma_electron_electron_mean_free_path_profile430)_ 1.65271193565394606e+04 +Electron-electron_mean_free_path_at_point_431____________________________ (len_plasma_electron_electron_mean_free_path_profile431)_ 1.63300883771993340e+04 +Electron-electron_mean_free_path_at_point_432____________________________ (len_plasma_electron_electron_mean_free_path_profile432)_ 1.61358802813558450e+04 +Electron-electron_mean_free_path_at_point_433____________________________ (len_plasma_electron_electron_mean_free_path_profile433)_ 1.59445237784204546e+04 +Electron-electron_mean_free_path_at_point_434____________________________ (len_plasma_electron_electron_mean_free_path_profile434)_ 1.57560487529348939e+04 +Electron-electron_mean_free_path_at_point_435____________________________ (len_plasma_electron_electron_mean_free_path_profile435)_ 1.55704863771958371e+04 +Electron-electron_mean_free_path_at_point_436____________________________ (len_plasma_electron_electron_mean_free_path_profile436)_ 1.53878692360167061e+04 +Electron-electron_mean_free_path_at_point_437____________________________ (len_plasma_electron_electron_mean_free_path_profile437)_ 1.52082314652393616e+04 +Electron-electron_mean_free_path_at_point_438____________________________ (len_plasma_electron_electron_mean_free_path_profile438)_ 1.50316089058802263e+04 +Electron-electron_mean_free_path_at_point_439____________________________ (len_plasma_electron_electron_mean_free_path_profile439)_ 1.48580392761121620e+04 +Electron-electron_mean_free_path_at_point_440____________________________ (len_plasma_electron_electron_mean_free_path_profile440)_ 1.46875623636764849e+04 +Electron-electron_mean_free_path_at_point_441____________________________ (len_plasma_electron_electron_mean_free_path_profile441)_ 1.45202202417868721e+04 +Electron-electron_mean_free_path_at_point_442____________________________ (len_plasma_electron_electron_mean_free_path_profile442)_ 1.43560575121671081e+04 +Electron-electron_mean_free_path_at_point_443____________________________ (len_plasma_electron_electron_mean_free_path_profile443)_ 1.41951215795717981e+04 +Electron-electron_mean_free_path_at_point_444____________________________ (len_plasma_electron_electron_mean_free_path_profile444)_ 1.40374629630206564e+04 +Electron-electron_mean_free_path_at_point_445____________________________ (len_plasma_electron_electron_mean_free_path_profile445)_ 1.38831356500741931e+04 +Electron-electron_mean_free_path_at_point_446____________________________ (len_plasma_electron_electron_mean_free_path_profile446)_ 1.37321975018597477e+04 +Electron-electron_mean_free_path_at_point_447____________________________ (len_plasma_electron_electron_mean_free_path_profile447)_ 1.35847107183097323e+04 +Electron-electron_mean_free_path_at_point_448____________________________ (len_plasma_electron_electron_mean_free_path_profile448)_ 1.34407423753215335e+04 +Electron-electron_mean_free_path_at_point_449____________________________ (len_plasma_electron_electron_mean_free_path_profile449)_ 1.33003650484466616e+04 +Electron-electron_mean_free_path_at_point_450____________________________ (len_plasma_electron_electron_mean_free_path_profile450)_ 1.31636575415224106e+04 +Electron-electron_mean_free_path_at_point_451____________________________ (len_plasma_electron_electron_mean_free_path_profile451)_ 1.30307057436723499e+04 +Electron-electron_mean_free_path_at_point_452____________________________ (len_plasma_electron_electron_mean_free_path_profile452)_ 1.29016036448376963e+04 +Electron-electron_mean_free_path_at_point_453____________________________ (len_plasma_electron_electron_mean_free_path_profile453)_ 1.27764545491413573e+04 +Electron-electron_mean_free_path_at_point_454____________________________ (len_plasma_electron_electron_mean_free_path_profile454)_ 1.26553725379976277e+04 +Electron-electron_mean_free_path_at_point_455____________________________ (len_plasma_electron_electron_mean_free_path_profile455)_ 1.25384842525868607e+04 +Electron-electron_mean_free_path_at_point_456____________________________ (len_plasma_electron_electron_mean_free_path_profile456)_ 1.24259310906285100e+04 +Electron-electron_mean_free_path_at_point_457____________________________ (len_plasma_electron_electron_mean_free_path_profile457)_ 1.23178719493778954e+04 +Electron-electron_mean_free_path_at_point_458____________________________ (len_plasma_electron_electron_mean_free_path_profile458)_ 1.22144867021203718e+04 +Electron-electron_mean_free_path_at_point_459____________________________ (len_plasma_electron_electron_mean_free_path_profile459)_ 1.21159806805514236e+04 +Electron-electron_mean_free_path_at_point_460____________________________ (len_plasma_electron_electron_mean_free_path_profile460)_ 1.20225905704675079e+04 +Electron-electron_mean_free_path_at_point_461____________________________ (len_plasma_electron_electron_mean_free_path_profile461)_ 1.19345923503660524e+04 +Electron-electron_mean_free_path_at_point_462____________________________ (len_plasma_electron_electron_mean_free_path_profile462)_ 1.18523122840359028e+04 +Electron-electron_mean_free_path_at_point_463____________________________ (len_plasma_electron_electron_mean_free_path_profile463)_ 1.17761426675533312e+04 +Electron-electron_mean_free_path_at_point_464____________________________ (len_plasma_electron_electron_mean_free_path_profile464)_ 1.17065653566828914e+04 +Electron-electron_mean_free_path_at_point_465____________________________ (len_plasma_electron_electron_mean_free_path_profile465)_ 1.16441888559309537e+04 +Electron-electron_mean_free_path_at_point_466____________________________ (len_plasma_electron_electron_mean_free_path_profile466)_ 1.15898110829436682e+04 +Electron-electron_mean_free_path_at_point_467____________________________ (len_plasma_electron_electron_mean_free_path_profile467)_ 1.15445366010898088e+04 +Electron-electron_mean_free_path_at_point_468____________________________ (len_plasma_electron_electron_mean_free_path_profile468)_ 1.15100307244291598e+04 +Electron-electron_mean_free_path_at_point_469____________________________ (len_plasma_electron_electron_mean_free_path_profile469)_ 1.14892338186707966e+04 +Electron-electron_mean_free_path_at_point_470____________________________ (len_plasma_electron_electron_mean_free_path_profile470)_ 1.14907314730781018e+04 +Electron-electron_mean_free_path_at_point_471____________________________ (len_plasma_electron_electron_mean_free_path_profile471)_ 1.09204191756514811e+04 +Electron-electron_mean_free_path_at_point_472____________________________ (len_plasma_electron_electron_mean_free_path_profile472)_ 1.03573478176743301e+04 +Electron-electron_mean_free_path_at_point_473____________________________ (len_plasma_electron_electron_mean_free_path_profile473)_ 9.80187303496435743e+03 +Electron-electron_mean_free_path_at_point_474____________________________ (len_plasma_electron_electron_mean_free_path_profile474)_ 9.25437243418441176e+03 +Electron-electron_mean_free_path_at_point_475____________________________ (len_plasma_electron_electron_mean_free_path_profile475)_ 8.71524732626743753e+03 +Electron-electron_mean_free_path_at_point_476____________________________ (len_plasma_electron_electron_mean_free_path_profile476)_ 8.18492463042529835e+03 +Electron-electron_mean_free_path_at_point_477____________________________ (len_plasma_electron_electron_mean_free_path_profile477)_ 7.66385896950705774e+03 +Electron-electron_mean_free_path_at_point_478____________________________ (len_plasma_electron_electron_mean_free_path_profile478)_ 7.15253498061479604e+03 +Electron-electron_mean_free_path_at_point_479____________________________ (len_plasma_electron_electron_mean_free_path_profile479)_ 6.65146986863881102e+03 +Electron-electron_mean_free_path_at_point_480____________________________ (len_plasma_electron_electron_mean_free_path_profile480)_ 6.16121623488048863e+03 +Electron-electron_mean_free_path_at_point_481____________________________ (len_plasma_electron_electron_mean_free_path_profile481)_ 5.68236521838778299e+03 +Electron-electron_mean_free_path_at_point_482____________________________ (len_plasma_electron_electron_mean_free_path_profile482)_ 5.21554999430565022e+03 +Electron-electron_mean_free_path_at_point_483____________________________ (len_plasma_electron_electron_mean_free_path_profile483)_ 4.76144968179601165e+03 +Electron-electron_mean_free_path_at_point_484____________________________ (len_plasma_electron_electron_mean_free_path_profile484)_ 4.32079372441606483e+03 +Electron-electron_mean_free_path_at_point_485____________________________ (len_plasma_electron_electron_mean_free_path_profile485)_ 3.89436681897223707e+03 +Electron-electron_mean_free_path_at_point_486____________________________ (len_plasma_electron_electron_mean_free_path_profile486)_ 3.48301448581867862e+03 +Electron-electron_mean_free_path_at_point_487____________________________ (len_plasma_electron_electron_mean_free_path_profile487)_ 3.08764939589069263e+03 +Electron-electron_mean_free_path_at_point_488____________________________ (len_plasma_electron_electron_mean_free_path_profile488)_ 2.70925859981214944e+03 +Electron-electron_mean_free_path_at_point_489____________________________ (len_plasma_electron_electron_mean_free_path_profile489)_ 2.34891184592573200e+03 +Electron-electron_mean_free_path_at_point_490____________________________ (len_plasma_electron_electron_mean_free_path_profile490)_ 2.00777123318960685e+03 +Electron-electron_mean_free_path_at_point_491____________________________ (len_plasma_electron_electron_mean_free_path_profile491)_ 1.68710253200269290e+03 +Electron-electron_mean_free_path_at_point_492____________________________ (len_plasma_electron_electron_mean_free_path_profile492)_ 1.38828863983269480e+03 +Electron-electron_mean_free_path_at_point_493____________________________ (len_plasma_electron_electron_mean_free_path_profile493)_ 1.11284585417292305e+03 +Electron-electron_mean_free_path_at_point_494____________________________ (len_plasma_electron_electron_mean_free_path_profile494)_ 8.62444013408778460e+02 +Electron-electron_mean_free_path_at_point_495____________________________ (len_plasma_electron_electron_mean_free_path_profile495)_ 6.38932229324136642e+02 +Electron-electron_mean_free_path_at_point_496____________________________ (len_plasma_electron_electron_mean_free_path_profile496)_ 4.44373276384954636e+02 +Electron-electron_mean_free_path_at_point_497____________________________ (len_plasma_electron_electron_mean_free_path_profile497)_ 2.81092687903769956e+02 +Electron-electron_mean_free_path_at_point_498____________________________ (len_plasma_electron_electron_mean_free_path_profile498)_ 1.51756329751311569e+02 +Electron-electron_mean_free_path_at_point_499____________________________ (len_plasma_electron_electron_mean_free_path_profile499)_ 5.95152422390208713e+01 +Electron-electron_mean_free_path_at_point_500____________________________ (len_plasma_electron_electron_mean_free_path_profile500)_ 8.37906237470694037e+00 +Volume_averaged_electron-deuteron_mean_free_path_(λₑD)_(m)_______________ (len_plasma_electron_deuteron_mean_free_path_vol_avg)_ 5.60379291627291896e+04 +Electron-deuteron_mean_free_path_at_point_0______________________________ (len_plasma_electron_deuteron_mean_free_path_profile0)_ 1.74000656210120214e+05 +Electron-deuteron_mean_free_path_at_point_1______________________________ (len_plasma_electron_deuteron_mean_free_path_profile1)_ 1.73999239621668414e+05 +Electron-deuteron_mean_free_path_at_point_2______________________________ (len_plasma_electron_deuteron_mean_free_path_profile2)_ 1.73994989895392646e+05 +Electron-deuteron_mean_free_path_at_point_3______________________________ (len_plasma_electron_deuteron_mean_free_path_profile3)_ 1.73987907148530998e+05 +Electron-deuteron_mean_free_path_at_point_4______________________________ (len_plasma_electron_deuteron_mean_free_path_profile4)_ 1.73977991576482018e+05 +Electron-deuteron_mean_free_path_at_point_5______________________________ (len_plasma_electron_deuteron_mean_free_path_profile5)_ 1.73965243452802853e+05 +Electron-deuteron_mean_free_path_at_point_6______________________________ (len_plasma_electron_deuteron_mean_free_path_profile6)_ 1.73949663129209541e+05 +Electron-deuteron_mean_free_path_at_point_7______________________________ (len_plasma_electron_deuteron_mean_free_path_profile7)_ 1.73931251035580208e+05 +Electron-deuteron_mean_free_path_at_point_8______________________________ (len_plasma_electron_deuteron_mean_free_path_profile8)_ 1.73910007679951494e+05 +Electron-deuteron_mean_free_path_at_point_9______________________________ (len_plasma_electron_deuteron_mean_free_path_profile9)_ 1.73885933648522361e+05 +Electron-deuteron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile10)_ 1.73859029605652118e+05 +Electron-deuteron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile11)_ 1.73829296293862892e+05 +Electron-deuteron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile12)_ 1.73796734533840005e+05 +Electron-deuteron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile13)_ 1.73761345224432036e+05 +Electron-deuteron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile14)_ 1.73723129342652333e+05 +Electron-deuteron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile15)_ 1.73682087943679653e+05 +Electron-deuteron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile16)_ 1.73638222160859354e+05 +Electron-deuteron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile17)_ 1.73591533205704531e+05 +Electron-deuteron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile18)_ 1.73542022367897589e+05 +Electron-deuteron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile19)_ 1.73489691015289427e+05 +Electron-deuteron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile20)_ 1.73434540593903512e+05 +Electron-deuteron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile21)_ 1.73376572627935791e+05 +Electron-deuteron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile22)_ 1.73315788719756150e+05 +Electron-deuteron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile23)_ 1.73252190549909923e+05 +Electron-deuteron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile24)_ 1.73185779877118737e+05 +Electron-deuteron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile25)_ 1.73116558538284298e+05 +Electron-deuteron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile26)_ 1.73044528448487516e+05 +Electron-deuteron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile27)_ 1.72969691600991297e+05 +Electron-deuteron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile28)_ 1.72892050067242846e+05 +Electron-deuteron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile29)_ 1.72811605996874016e+05 +Electron-deuteron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile30)_ 1.72728361617704533e+05 +Electron-deuteron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile31)_ 1.72642319235742529e+05 +Electron-deuteron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile32)_ 1.72553481235187966e+05 +Electron-deuteron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile33)_ 1.72461850078433636e+05 +Electron-deuteron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile34)_ 1.72367428306066053e+05 +Electron-deuteron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile35)_ 1.72270218536870438e+05 +Electron-deuteron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile36)_ 1.72170223467829521e+05 +Electron-deuteron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile37)_ 1.72067445874128258e+05 +Electron-deuteron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile38)_ 1.71961888609153830e+05 +Electron-deuteron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile39)_ 1.71853554604498408e+05 +Electron-deuteron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile40)_ 1.71742446869962005e+05 +Electron-deuteron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile41)_ 1.71628568493554165e+05 +Electron-deuteron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile42)_ 1.71511922641495010e+05 +Electron-deuteron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile43)_ 1.71392512558218936e+05 +Electron-deuteron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile44)_ 1.71270341566376155e+05 +Electron-deuteron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile45)_ 1.71145413066833862e+05 +Electron-deuteron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile46)_ 1.71017730538680218e+05 +Electron-deuteron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile47)_ 1.70887297539224790e+05 +Electron-deuteron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile48)_ 1.70754117704001343e+05 +Electron-deuteron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile49)_ 1.70618194746769528e+05 +Electron-deuteron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile50)_ 1.70479532459517359e+05 +Electron-deuteron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile51)_ 1.70338134712463128e+05 +Electron-deuteron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile52)_ 1.70194005454056925e+05 +Electron-deuteron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile53)_ 1.70047148710982758e+05 +Electron-deuteron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile54)_ 1.69897568588160502e+05 +Electron-deuteron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile55)_ 1.69745269268747681e+05 +Electron-deuteron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile56)_ 1.69590255014140886e+05 +Electron-deuteron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile57)_ 1.69432530163978459e+05 +Electron-deuteron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile58)_ 1.69272099136140809e+05 +Electron-deuteron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile59)_ 1.69108966426752391e+05 +Electron-deuteron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile60)_ 1.68943136610183981e+05 +Electron-deuteron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile61)_ 1.68774614339052612e+05 +Electron-deuteron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile62)_ 1.68603404344223905e+05 +Electron-deuteron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile63)_ 1.68429511434813496e+05 +Electron-deuteron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile64)_ 1.68252940498186508e+05 +Electron-deuteron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile65)_ 1.68073696499960410e+05 +Electron-deuteron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile66)_ 1.67891784484004776e+05 +Electron-deuteron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile67)_ 1.67707209572442836e+05 +Electron-deuteron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile68)_ 1.67519976965650654e+05 +Electron-deuteron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile69)_ 1.67330091942258383e+05 +Electron-deuteron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile70)_ 1.67137559859152127e+05 +Electron-deuteron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile71)_ 1.66942386151470826e+05 +Electron-deuteron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile72)_ 1.66744576332608965e+05 +Electron-deuteron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile73)_ 1.66544135994215700e+05 +Electron-deuteron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile74)_ 1.66341070806193980e+05 +Electron-deuteron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile75)_ 1.66135386516700208e+05 +Electron-deuteron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile76)_ 1.65927088952144724e+05 +Electron-deuteron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile77)_ 1.65716184017188847e+05 +Electron-deuteron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile78)_ 1.65502677694744954e+05 +Electron-deuteron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile79)_ 1.65286576045975875e+05 +Electron-deuteron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile80)_ 1.65067885210291366e+05 +Electron-deuteron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile81)_ 1.64846611405349162e+05 +Electron-deuteron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile82)_ 1.64622760927049065e+05 +Electron-deuteron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile83)_ 1.64396340149535012e+05 +Electron-deuteron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile84)_ 1.64167355525189021e+05 +Electron-deuteron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile85)_ 1.63935813584631542e+05 +Electron-deuteron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile86)_ 1.63701720936714788e+05 +Electron-deuteron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile87)_ 1.63465084268522682e+05 +Electron-deuteron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile88)_ 1.63225910345365701e+05 +Electron-deuteron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile89)_ 1.62984206010776892e+05 +Electron-deuteron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile90)_ 1.62739978186508524e+05 +Electron-deuteron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile91)_ 1.62493233872526151e+05 +Electron-deuteron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile92)_ 1.62243980147004710e+05 +Electron-deuteron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile93)_ 1.61992224166323256e+05 +Electron-deuteron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile94)_ 1.61737973165059258e+05 +Electron-deuteron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile95)_ 1.61481234455982107e+05 +Electron-deuteron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile96)_ 1.61222015430047497e+05 +Electron-deuteron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile97)_ 1.60960323556390562e+05 +Electron-deuteron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile98)_ 1.60696166382318479e+05 +Electron-deuteron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile99)_ 1.60429551533302933e+05 +Electron-deuteron_mean_free_path_at_point_100____________________________ (len_plasma_electron_deuteron_mean_free_path_profile100)_ 1.60160486712972430e+05 +Electron-deuteron_mean_free_path_at_point_101____________________________ (len_plasma_electron_deuteron_mean_free_path_profile101)_ 1.59888979703104327e+05 +Electron-deuteron_mean_free_path_at_point_102____________________________ (len_plasma_electron_deuteron_mean_free_path_profile102)_ 1.59615038363614498e+05 +Electron-deuteron_mean_free_path_at_point_103____________________________ (len_plasma_electron_deuteron_mean_free_path_profile103)_ 1.59338670632549736e+05 +Electron-deuteron_mean_free_path_at_point_104____________________________ (len_plasma_electron_deuteron_mean_free_path_profile104)_ 1.59059884526077687e+05 +Electron-deuteron_mean_free_path_at_point_105____________________________ (len_plasma_electron_deuteron_mean_free_path_profile105)_ 1.58778688138475089e+05 +Electron-deuteron_mean_free_path_at_point_106____________________________ (len_plasma_electron_deuteron_mean_free_path_profile106)_ 1.58495089642119186e+05 +Electron-deuteron_mean_free_path_at_point_107____________________________ (len_plasma_electron_deuteron_mean_free_path_profile107)_ 1.58209097287475539e+05 +Electron-deuteron_mean_free_path_at_point_108____________________________ (len_plasma_electron_deuteron_mean_free_path_profile108)_ 1.57920719403085503e+05 +Electron-deuteron_mean_free_path_at_point_109____________________________ (len_plasma_electron_deuteron_mean_free_path_profile109)_ 1.57629964395556017e+05 +Electron-deuteron_mean_free_path_at_point_110____________________________ (len_plasma_electron_deuteron_mean_free_path_profile110)_ 1.57336840749544179e+05 +Electron-deuteron_mean_free_path_at_point_111____________________________ (len_plasma_electron_deuteron_mean_free_path_profile111)_ 1.57041357027746242e+05 +Electron-deuteron_mean_free_path_at_point_112____________________________ (len_plasma_electron_deuteron_mean_free_path_profile112)_ 1.56743521870881756e+05 +Electron-deuteron_mean_free_path_at_point_113____________________________ (len_plasma_electron_deuteron_mean_free_path_profile113)_ 1.56443343997680553e+05 +Electron-deuteron_mean_free_path_at_point_114____________________________ (len_plasma_electron_deuteron_mean_free_path_profile114)_ 1.56140832204866194e+05 +Electron-deuteron_mean_free_path_at_point_115____________________________ (len_plasma_electron_deuteron_mean_free_path_profile115)_ 1.55835995367142459e+05 +Electron-deuteron_mean_free_path_at_point_116____________________________ (len_plasma_electron_deuteron_mean_free_path_profile116)_ 1.55528842437173240e+05 +Electron-deuteron_mean_free_path_at_point_117____________________________ (len_plasma_electron_deuteron_mean_free_path_profile117)_ 1.55219382445569820e+05 +Electron-deuteron_mean_free_path_at_point_118____________________________ (len_plasma_electron_deuteron_mean_free_path_profile118)_ 1.54907624500869599e+05 +Electron-deuteron_mean_free_path_at_point_119____________________________ (len_plasma_electron_deuteron_mean_free_path_profile119)_ 1.54593577789520554e+05 +Electron-deuteron_mean_free_path_at_point_120____________________________ (len_plasma_electron_deuteron_mean_free_path_profile120)_ 1.54277251575859031e+05 +Electron-deuteron_mean_free_path_at_point_121____________________________ (len_plasma_electron_deuteron_mean_free_path_profile121)_ 1.53958655202093738e+05 +Electron-deuteron_mean_free_path_at_point_122____________________________ (len_plasma_electron_deuteron_mean_free_path_profile122)_ 1.53637798088282027e+05 +Electron-deuteron_mean_free_path_at_point_123____________________________ (len_plasma_electron_deuteron_mean_free_path_profile123)_ 1.53314689732310595e+05 +Electron-deuteron_mean_free_path_at_point_124____________________________ (len_plasma_electron_deuteron_mean_free_path_profile124)_ 1.52989339709872555e+05 +Electron-deuteron_mean_free_path_at_point_125____________________________ (len_plasma_electron_deuteron_mean_free_path_profile125)_ 1.52661757674445020e+05 +Electron-deuteron_mean_free_path_at_point_126____________________________ (len_plasma_electron_deuteron_mean_free_path_profile126)_ 1.52331953357265971e+05 +Electron-deuteron_mean_free_path_at_point_127____________________________ (len_plasma_electron_deuteron_mean_free_path_profile127)_ 1.51999936567308905e+05 +Electron-deuteron_mean_free_path_at_point_128____________________________ (len_plasma_electron_deuteron_mean_free_path_profile128)_ 1.51665717191258707e+05 +Electron-deuteron_mean_free_path_at_point_129____________________________ (len_plasma_electron_deuteron_mean_free_path_profile129)_ 1.51329305193484906e+05 +Electron-deuteron_mean_free_path_at_point_130____________________________ (len_plasma_electron_deuteron_mean_free_path_profile130)_ 1.50990710616015072e+05 +Electron-deuteron_mean_free_path_at_point_131____________________________ (len_plasma_electron_deuteron_mean_free_path_profile131)_ 1.50649943578507897e+05 +Electron-deuteron_mean_free_path_at_point_132____________________________ (len_plasma_electron_deuteron_mean_free_path_profile132)_ 1.50307014278221992e+05 +Electron-deuteron_mean_free_path_at_point_133____________________________ (len_plasma_electron_deuteron_mean_free_path_profile133)_ 1.49961932989990717e+05 +Electron-deuteron_mean_free_path_at_point_134____________________________ (len_plasma_electron_deuteron_mean_free_path_profile134)_ 1.49614710066186497e+05 +Electron-deuteron_mean_free_path_at_point_135____________________________ (len_plasma_electron_deuteron_mean_free_path_profile135)_ 1.49265355936693872e+05 +Electron-deuteron_mean_free_path_at_point_136____________________________ (len_plasma_electron_deuteron_mean_free_path_profile136)_ 1.48913881108874339e+05 +Electron-deuteron_mean_free_path_at_point_137____________________________ (len_plasma_electron_deuteron_mean_free_path_profile137)_ 1.48560296167534543e+05 +Electron-deuteron_mean_free_path_at_point_138____________________________ (len_plasma_electron_deuteron_mean_free_path_profile138)_ 1.48204611774889781e+05 +Electron-deuteron_mean_free_path_at_point_139____________________________ (len_plasma_electron_deuteron_mean_free_path_profile139)_ 1.47846838670531404e+05 +Electron-deuteron_mean_free_path_at_point_140____________________________ (len_plasma_electron_deuteron_mean_free_path_profile140)_ 1.47486987671388837e+05 +Electron-deuteron_mean_free_path_at_point_141____________________________ (len_plasma_electron_deuteron_mean_free_path_profile141)_ 1.47125069671691512e+05 +Electron-deuteron_mean_free_path_at_point_142____________________________ (len_plasma_electron_deuteron_mean_free_path_profile142)_ 1.46761095642930624e+05 +Electron-deuteron_mean_free_path_at_point_143____________________________ (len_plasma_electron_deuteron_mean_free_path_profile143)_ 1.46395076633820863e+05 +Electron-deuteron_mean_free_path_at_point_144____________________________ (len_plasma_electron_deuteron_mean_free_path_profile144)_ 1.46027023770256987e+05 +Electron-deuteron_mean_free_path_at_point_145____________________________ (len_plasma_electron_deuteron_mean_free_path_profile145)_ 1.45656948255273339e+05 +Electron-deuteron_mean_free_path_at_point_146____________________________ (len_plasma_electron_deuteron_mean_free_path_profile146)_ 1.45284861369000544e+05 +Electron-deuteron_mean_free_path_at_point_147____________________________ (len_plasma_electron_deuteron_mean_free_path_profile147)_ 1.44910774468621094e+05 +Electron-deuteron_mean_free_path_at_point_148____________________________ (len_plasma_electron_deuteron_mean_free_path_profile148)_ 1.44534698988322780e+05 +Electron-deuteron_mean_free_path_at_point_149____________________________ (len_plasma_electron_deuteron_mean_free_path_profile149)_ 1.44156646439253091e+05 +Electron-deuteron_mean_free_path_at_point_150____________________________ (len_plasma_electron_deuteron_mean_free_path_profile150)_ 1.43776628409469791e+05 +Electron-deuteron_mean_free_path_at_point_151____________________________ (len_plasma_electron_deuteron_mean_free_path_profile151)_ 1.43394656563892902e+05 +Electron-deuteron_mean_free_path_at_point_152____________________________ (len_plasma_electron_deuteron_mean_free_path_profile152)_ 1.43010742644252226e+05 +Electron-deuteron_mean_free_path_at_point_153____________________________ (len_plasma_electron_deuteron_mean_free_path_profile153)_ 1.42624898469036969e+05 +Electron-deuteron_mean_free_path_at_point_154____________________________ (len_plasma_electron_deuteron_mean_free_path_profile154)_ 1.42237135933440906e+05 +Electron-deuteron_mean_free_path_at_point_155____________________________ (len_plasma_electron_deuteron_mean_free_path_profile155)_ 1.41847467009307846e+05 +Electron-deuteron_mean_free_path_at_point_156____________________________ (len_plasma_electron_deuteron_mean_free_path_profile156)_ 1.41455903745075513e+05 +Electron-deuteron_mean_free_path_at_point_157____________________________ (len_plasma_electron_deuteron_mean_free_path_profile157)_ 1.41062458265718044e+05 +Electron-deuteron_mean_free_path_at_point_158____________________________ (len_plasma_electron_deuteron_mean_free_path_profile158)_ 1.40667142772686027e+05 +Electron-deuteron_mean_free_path_at_point_159____________________________ (len_plasma_electron_deuteron_mean_free_path_profile159)_ 1.40269969543846644e+05 +Electron-deuteron_mean_free_path_at_point_160____________________________ (len_plasma_electron_deuteron_mean_free_path_profile160)_ 1.39870950933420710e+05 +Electron-deuteron_mean_free_path_at_point_161____________________________ (len_plasma_electron_deuteron_mean_free_path_profile161)_ 1.39470099371919176e+05 +Electron-deuteron_mean_free_path_at_point_162____________________________ (len_plasma_electron_deuteron_mean_free_path_profile162)_ 1.39067427366077784e+05 +Electron-deuteron_mean_free_path_at_point_163____________________________ (len_plasma_electron_deuteron_mean_free_path_profile163)_ 1.38662947498789872e+05 +Electron-deuteron_mean_free_path_at_point_164____________________________ (len_plasma_electron_deuteron_mean_free_path_profile164)_ 1.38256672429038357e+05 +Electron-deuteron_mean_free_path_at_point_165____________________________ (len_plasma_electron_deuteron_mean_free_path_profile165)_ 1.37848614891824545e+05 +Electron-deuteron_mean_free_path_at_point_166____________________________ (len_plasma_electron_deuteron_mean_free_path_profile166)_ 1.37438787698097469e+05 +Electron-deuteron_mean_free_path_at_point_167____________________________ (len_plasma_electron_deuteron_mean_free_path_profile167)_ 1.37027203734678478e+05 +Electron-deuteron_mean_free_path_at_point_168____________________________ (len_plasma_electron_deuteron_mean_free_path_profile168)_ 1.36613875964186940e+05 +Electron-deuteron_mean_free_path_at_point_169____________________________ (len_plasma_electron_deuteron_mean_free_path_profile169)_ 1.36198817424963723e+05 +Electron-deuteron_mean_free_path_at_point_170____________________________ (len_plasma_electron_deuteron_mean_free_path_profile170)_ 1.35782041230989766e+05 +Electron-deuteron_mean_free_path_at_point_171____________________________ (len_plasma_electron_deuteron_mean_free_path_profile171)_ 1.35363560571807873e+05 +Electron-deuteron_mean_free_path_at_point_172____________________________ (len_plasma_electron_deuteron_mean_free_path_profile172)_ 1.34943388712438231e+05 +Electron-deuteron_mean_free_path_at_point_173____________________________ (len_plasma_electron_deuteron_mean_free_path_profile173)_ 1.34521538993294816e+05 +Electron-deuteron_mean_free_path_at_point_174____________________________ (len_plasma_electron_deuteron_mean_free_path_profile174)_ 1.34098024830097624e+05 +Electron-deuteron_mean_free_path_at_point_175____________________________ (len_plasma_electron_deuteron_mean_free_path_profile175)_ 1.33672859713785030e+05 +Electron-deuteron_mean_free_path_at_point_176____________________________ (len_plasma_electron_deuteron_mean_free_path_profile176)_ 1.33246057210423402e+05 +Electron-deuteron_mean_free_path_at_point_177____________________________ (len_plasma_electron_deuteron_mean_free_path_profile177)_ 1.32817630961113580e+05 +Electron-deuteron_mean_free_path_at_point_178____________________________ (len_plasma_electron_deuteron_mean_free_path_profile178)_ 1.32387594681896589e+05 +Electron-deuteron_mean_free_path_at_point_179____________________________ (len_plasma_electron_deuteron_mean_free_path_profile179)_ 1.31955962163657532e+05 +Electron-deuteron_mean_free_path_at_point_180____________________________ (len_plasma_electron_deuteron_mean_free_path_profile180)_ 1.31522747272025910e+05 +Electron-deuteron_mean_free_path_at_point_181____________________________ (len_plasma_electron_deuteron_mean_free_path_profile181)_ 1.31087963947274693e+05 +Electron-deuteron_mean_free_path_at_point_182____________________________ (len_plasma_electron_deuteron_mean_free_path_profile182)_ 1.30651626204216809e+05 +Electron-deuteron_mean_free_path_at_point_183____________________________ (len_plasma_electron_deuteron_mean_free_path_profile183)_ 1.30213748132100256e+05 +Electron-deuteron_mean_free_path_at_point_184____________________________ (len_plasma_electron_deuteron_mean_free_path_profile184)_ 1.29774343894499238e+05 +Electron-deuteron_mean_free_path_at_point_185____________________________ (len_plasma_electron_deuteron_mean_free_path_profile185)_ 1.29333427729205228e+05 +Electron-deuteron_mean_free_path_at_point_186____________________________ (len_plasma_electron_deuteron_mean_free_path_profile186)_ 1.28891013948114065e+05 +Electron-deuteron_mean_free_path_at_point_187____________________________ (len_plasma_electron_deuteron_mean_free_path_profile187)_ 1.28447116937109822e+05 +Electron-deuteron_mean_free_path_at_point_188____________________________ (len_plasma_electron_deuteron_mean_free_path_profile188)_ 1.28001751155949620e+05 +Electron-deuteron_mean_free_path_at_point_189____________________________ (len_plasma_electron_deuteron_mean_free_path_profile189)_ 1.27554931138141517e+05 +Electron-deuteron_mean_free_path_at_point_190____________________________ (len_plasma_electron_deuteron_mean_free_path_profile190)_ 1.27106671490824199e+05 +Electron-deuteron_mean_free_path_at_point_191____________________________ (len_plasma_electron_deuteron_mean_free_path_profile191)_ 1.26656986894641086e+05 +Electron-deuteron_mean_free_path_at_point_192____________________________ (len_plasma_electron_deuteron_mean_free_path_profile192)_ 1.26205892103612656e+05 +Electron-deuteron_mean_free_path_at_point_193____________________________ (len_plasma_electron_deuteron_mean_free_path_profile193)_ 1.25753401945006714e+05 +Electron-deuteron_mean_free_path_at_point_194____________________________ (len_plasma_electron_deuteron_mean_free_path_profile194)_ 1.25299531319205911e+05 +Electron-deuteron_mean_free_path_at_point_195____________________________ (len_plasma_electron_deuteron_mean_free_path_profile195)_ 1.24844295199571206e+05 +Electron-deuteron_mean_free_path_at_point_196____________________________ (len_plasma_electron_deuteron_mean_free_path_profile196)_ 1.24387708632305556e+05 +Electron-deuteron_mean_free_path_at_point_197____________________________ (len_plasma_electron_deuteron_mean_free_path_profile197)_ 1.23929786736309659e+05 +Electron-deuteron_mean_free_path_at_point_198____________________________ (len_plasma_electron_deuteron_mean_free_path_profile198)_ 1.23470544703042018e+05 +Electron-deuteron_mean_free_path_at_point_199____________________________ (len_plasma_electron_deuteron_mean_free_path_profile199)_ 1.23009997796368363e+05 +Electron-deuteron_mean_free_path_at_point_200____________________________ (len_plasma_electron_deuteron_mean_free_path_profile200)_ 1.22548161352414463e+05 +Electron-deuteron_mean_free_path_at_point_201____________________________ (len_plasma_electron_deuteron_mean_free_path_profile201)_ 1.22085050779412762e+05 +Electron-deuteron_mean_free_path_at_point_202____________________________ (len_plasma_electron_deuteron_mean_free_path_profile202)_ 1.21620681557545802e+05 +Electron-deuteron_mean_free_path_at_point_203____________________________ (len_plasma_electron_deuteron_mean_free_path_profile203)_ 1.21155069238788041e+05 +Electron-deuteron_mean_free_path_at_point_204____________________________ (len_plasma_electron_deuteron_mean_free_path_profile204)_ 1.20688229446744488e+05 +Electron-deuteron_mean_free_path_at_point_205____________________________ (len_plasma_electron_deuteron_mean_free_path_profile205)_ 1.20220177876484522e+05 +Electron-deuteron_mean_free_path_at_point_206____________________________ (len_plasma_electron_deuteron_mean_free_path_profile206)_ 1.19750930294374280e+05 +Electron-deuteron_mean_free_path_at_point_207____________________________ (len_plasma_electron_deuteron_mean_free_path_profile207)_ 1.19280502537904540e+05 +Electron-deuteron_mean_free_path_at_point_208____________________________ (len_plasma_electron_deuteron_mean_free_path_profile208)_ 1.18808910515516167e+05 +Electron-deuteron_mean_free_path_at_point_209____________________________ (len_plasma_electron_deuteron_mean_free_path_profile209)_ 1.18336170206422423e+05 +Electron-deuteron_mean_free_path_at_point_210____________________________ (len_plasma_electron_deuteron_mean_free_path_profile210)_ 1.17862297660425756e+05 +Electron-deuteron_mean_free_path_at_point_211____________________________ (len_plasma_electron_deuteron_mean_free_path_profile211)_ 1.17387308997734464e+05 +Electron-deuteron_mean_free_path_at_point_212____________________________ (len_plasma_electron_deuteron_mean_free_path_profile212)_ 1.16911220408772642e+05 +Electron-deuteron_mean_free_path_at_point_213____________________________ (len_plasma_electron_deuteron_mean_free_path_profile213)_ 1.16434048153988202e+05 +Electron-deuteron_mean_free_path_at_point_214____________________________ (len_plasma_electron_deuteron_mean_free_path_profile214)_ 1.15955808563658109e+05 +Electron-deuteron_mean_free_path_at_point_215____________________________ (len_plasma_electron_deuteron_mean_free_path_profile215)_ 1.15476518037687856e+05 +Electron-deuteron_mean_free_path_at_point_216____________________________ (len_plasma_electron_deuteron_mean_free_path_profile216)_ 1.14996193045408130e+05 +Electron-deuteron_mean_free_path_at_point_217____________________________ (len_plasma_electron_deuteron_mean_free_path_profile217)_ 1.14514850125368452e+05 +Electron-deuteron_mean_free_path_at_point_218____________________________ (len_plasma_electron_deuteron_mean_free_path_profile218)_ 1.14032505885125604e+05 +Electron-deuteron_mean_free_path_at_point_219____________________________ (len_plasma_electron_deuteron_mean_free_path_profile219)_ 1.13549177001030301e+05 +Electron-deuteron_mean_free_path_at_point_220____________________________ (len_plasma_electron_deuteron_mean_free_path_profile220)_ 1.13064880218006525e+05 +Electron-deuteron_mean_free_path_at_point_221____________________________ (len_plasma_electron_deuteron_mean_free_path_profile221)_ 1.12579632349330059e+05 +Electron-deuteron_mean_free_path_at_point_222____________________________ (len_plasma_electron_deuteron_mean_free_path_profile222)_ 1.12093450276401607e+05 +Electron-deuteron_mean_free_path_at_point_223____________________________ (len_plasma_electron_deuteron_mean_free_path_profile223)_ 1.11606350948516061e+05 +Electron-deuteron_mean_free_path_at_point_224____________________________ (len_plasma_electron_deuteron_mean_free_path_profile224)_ 1.11118351382627079e+05 +Electron-deuteron_mean_free_path_at_point_225____________________________ (len_plasma_electron_deuteron_mean_free_path_profile225)_ 1.10629468663107415e+05 +Electron-deuteron_mean_free_path_at_point_226____________________________ (len_plasma_electron_deuteron_mean_free_path_profile226)_ 1.10139719941506424e+05 +Electron-deuteron_mean_free_path_at_point_227____________________________ (len_plasma_electron_deuteron_mean_free_path_profile227)_ 1.09649122436301652e+05 +Electron-deuteron_mean_free_path_at_point_228____________________________ (len_plasma_electron_deuteron_mean_free_path_profile228)_ 1.09157693432645538e+05 +Electron-deuteron_mean_free_path_at_point_229____________________________ (len_plasma_electron_deuteron_mean_free_path_profile229)_ 1.08665450282110571e+05 +Electron-deuteron_mean_free_path_at_point_230____________________________ (len_plasma_electron_deuteron_mean_free_path_profile230)_ 1.08172410402426074e+05 +Electron-deuteron_mean_free_path_at_point_231____________________________ (len_plasma_electron_deuteron_mean_free_path_profile231)_ 1.07678591277212647e+05 +Electron-deuteron_mean_free_path_at_point_232____________________________ (len_plasma_electron_deuteron_mean_free_path_profile232)_ 1.07184010455712923e+05 +Electron-deuteron_mean_free_path_at_point_233____________________________ (len_plasma_electron_deuteron_mean_free_path_profile233)_ 1.06688685552512965e+05 +Electron-deuteron_mean_free_path_at_point_234____________________________ (len_plasma_electron_deuteron_mean_free_path_profile234)_ 1.06192634247266222e+05 +Electron-deuteron_mean_free_path_at_point_235____________________________ (len_plasma_electron_deuteron_mean_free_path_profile235)_ 1.05695874284405203e+05 +Electron-deuteron_mean_free_path_at_point_236____________________________ (len_plasma_electron_deuteron_mean_free_path_profile236)_ 1.05198423472852883e+05 +Electron-deuteron_mean_free_path_at_point_237____________________________ (len_plasma_electron_deuteron_mean_free_path_profile237)_ 1.04700299685727645e+05 +Electron-deuteron_mean_free_path_at_point_238____________________________ (len_plasma_electron_deuteron_mean_free_path_profile238)_ 1.04201520860042991e+05 +Electron-deuteron_mean_free_path_at_point_239____________________________ (len_plasma_electron_deuteron_mean_free_path_profile239)_ 1.03702104996401904e+05 +Electron-deuteron_mean_free_path_at_point_240____________________________ (len_plasma_electron_deuteron_mean_free_path_profile240)_ 1.03202070158688148e+05 +Electron-deuteron_mean_free_path_at_point_241____________________________ (len_plasma_electron_deuteron_mean_free_path_profile241)_ 1.02701434473748654e+05 +Electron-deuteron_mean_free_path_at_point_242____________________________ (len_plasma_electron_deuteron_mean_free_path_profile242)_ 1.02200216131073539e+05 +Electron-deuteron_mean_free_path_at_point_243____________________________ (len_plasma_electron_deuteron_mean_free_path_profile243)_ 1.01698433382469666e+05 +Electron-deuteron_mean_free_path_at_point_244____________________________ (len_plasma_electron_deuteron_mean_free_path_profile244)_ 1.01196104541728419e+05 +Electron-deuteron_mean_free_path_at_point_245____________________________ (len_plasma_electron_deuteron_mean_free_path_profile245)_ 1.00693247984288406e+05 +Electron-deuteron_mean_free_path_at_point_246____________________________ (len_plasma_electron_deuteron_mean_free_path_profile246)_ 1.00189882146892953e+05 +Electron-deuteron_mean_free_path_at_point_247____________________________ (len_plasma_electron_deuteron_mean_free_path_profile247)_ 9.96860255272405484e+04 +Electron-deuteron_mean_free_path_at_point_248____________________________ (len_plasma_electron_deuteron_mean_free_path_profile248)_ 9.91816966836310166e+04 +Electron-deuteron_mean_free_path_at_point_249____________________________ (len_plasma_electron_deuteron_mean_free_path_profile249)_ 9.86769142346043809e+04 +Electron-deuteron_mean_free_path_at_point_250____________________________ (len_plasma_electron_deuteron_mean_free_path_profile250)_ 9.81716968585750001e+04 +Electron-deuteron_mean_free_path_at_point_251____________________________ (len_plasma_electron_deuteron_mean_free_path_profile251)_ 9.76660632934598252e+04 +Electron-deuteron_mean_free_path_at_point_252____________________________ (len_plasma_electron_deuteron_mean_free_path_profile252)_ 9.71600323362995696e+04 +Electron-deuteron_mean_free_path_at_point_253____________________________ (len_plasma_electron_deuteron_mean_free_path_profile253)_ 9.66536228428735340e+04 +Electron-deuteron_mean_free_path_at_point_254____________________________ (len_plasma_electron_deuteron_mean_free_path_profile254)_ 9.61468537273108959e+04 +Electron-deuteron_mean_free_path_at_point_255____________________________ (len_plasma_electron_deuteron_mean_free_path_profile255)_ 9.56397439616911870e+04 +Electron-deuteron_mean_free_path_at_point_256____________________________ (len_plasma_electron_deuteron_mean_free_path_profile256)_ 9.51323125756437366e+04 +Electron-deuteron_mean_free_path_at_point_257____________________________ (len_plasma_electron_deuteron_mean_free_path_profile257)_ 9.46245786559347616e+04 +Electron-deuteron_mean_free_path_at_point_258____________________________ (len_plasma_electron_deuteron_mean_free_path_profile258)_ 9.41165613460546592e+04 +Electron-deuteron_mean_free_path_at_point_259____________________________ (len_plasma_electron_deuteron_mean_free_path_profile259)_ 9.36082798457918543e+04 +Electron-deuteron_mean_free_path_at_point_260____________________________ (len_plasma_electron_deuteron_mean_free_path_profile260)_ 9.30997534108051332e+04 +Electron-deuteron_mean_free_path_at_point_261____________________________ (len_plasma_electron_deuteron_mean_free_path_profile261)_ 9.25910013521865621e+04 +Electron-deuteron_mean_free_path_at_point_262____________________________ (len_plasma_electron_deuteron_mean_free_path_profile262)_ 9.20820430360194441e+04 +Electron-deuteron_mean_free_path_at_point_263____________________________ (len_plasma_electron_deuteron_mean_free_path_profile263)_ 9.15728978829265252e+04 +Electron-deuteron_mean_free_path_at_point_264____________________________ (len_plasma_electron_deuteron_mean_free_path_profile264)_ 9.10635853676141851e+04 +Electron-deuteron_mean_free_path_at_point_265____________________________ (len_plasma_electron_deuteron_mean_free_path_profile265)_ 9.05541250184079545e+04 +Electron-deuteron_mean_free_path_at_point_266____________________________ (len_plasma_electron_deuteron_mean_free_path_profile266)_ 9.00445364167814550e+04 +Electron-deuteron_mean_free_path_at_point_267____________________________ (len_plasma_electron_deuteron_mean_free_path_profile267)_ 8.95348391968776414e+04 +Electron-deuteron_mean_free_path_at_point_268____________________________ (len_plasma_electron_deuteron_mean_free_path_profile268)_ 8.90250530450240331e+04 +Electron-deuteron_mean_free_path_at_point_269____________________________ (len_plasma_electron_deuteron_mean_free_path_profile269)_ 8.85151976992374548e+04 +Electron-deuteron_mean_free_path_at_point_270____________________________ (len_plasma_electron_deuteron_mean_free_path_profile270)_ 8.80052929487262154e+04 +Electron-deuteron_mean_free_path_at_point_271____________________________ (len_plasma_electron_deuteron_mean_free_path_profile271)_ 8.74953586333797721e+04 +Electron-deuteron_mean_free_path_at_point_272____________________________ (len_plasma_electron_deuteron_mean_free_path_profile272)_ 8.69854146432538691e+04 +Electron-deuteron_mean_free_path_at_point_273____________________________ (len_plasma_electron_deuteron_mean_free_path_profile273)_ 8.64754809180478333e+04 +Electron-deuteron_mean_free_path_at_point_274____________________________ (len_plasma_electron_deuteron_mean_free_path_profile274)_ 8.59655774465716822e+04 +Electron-deuteron_mean_free_path_at_point_275____________________________ (len_plasma_electron_deuteron_mean_free_path_profile275)_ 8.54557242662090721e+04 +Electron-deuteron_mean_free_path_at_point_276____________________________ (len_plasma_electron_deuteron_mean_free_path_profile276)_ 8.49459414623693592e+04 +Electron-deuteron_mean_free_path_at_point_277____________________________ (len_plasma_electron_deuteron_mean_free_path_profile277)_ 8.44362491679324012e+04 +Electron-deuteron_mean_free_path_at_point_278____________________________ (len_plasma_electron_deuteron_mean_free_path_profile278)_ 8.39266675626868382e+04 +Electron-deuteron_mean_free_path_at_point_279____________________________ (len_plasma_electron_deuteron_mean_free_path_profile279)_ 8.34172168727579410e+04 +Electron-deuteron_mean_free_path_at_point_280____________________________ (len_plasma_electron_deuteron_mean_free_path_profile280)_ 8.29079173700282845e+04 +Electron-deuteron_mean_free_path_at_point_281____________________________ (len_plasma_electron_deuteron_mean_free_path_profile281)_ 8.23987893715514947e+04 +Electron-deuteron_mean_free_path_at_point_282____________________________ (len_plasma_electron_deuteron_mean_free_path_profile282)_ 8.18898532389555912e+04 +Electron-deuteron_mean_free_path_at_point_283____________________________ (len_plasma_electron_deuteron_mean_free_path_profile283)_ 8.13811293778377003e+04 +Electron-deuteron_mean_free_path_at_point_284____________________________ (len_plasma_electron_deuteron_mean_free_path_profile284)_ 8.08726382371533691e+04 +Electron-deuteron_mean_free_path_at_point_285____________________________ (len_plasma_electron_deuteron_mean_free_path_profile285)_ 8.03644003085933509e+04 +Electron-deuteron_mean_free_path_at_point_286____________________________ (len_plasma_electron_deuteron_mean_free_path_profile286)_ 7.98564361259556026e+04 +Electron-deuteron_mean_free_path_at_point_287____________________________ (len_plasma_electron_deuteron_mean_free_path_profile287)_ 7.93487662645046657e+04 +Electron-deuteron_mean_free_path_at_point_288____________________________ (len_plasma_electron_deuteron_mean_free_path_profile288)_ 7.88414113403259835e+04 +Electron-deuteron_mean_free_path_at_point_289____________________________ (len_plasma_electron_deuteron_mean_free_path_profile289)_ 7.83343920096692018e+04 +Electron-deuteron_mean_free_path_at_point_290____________________________ (len_plasma_electron_deuteron_mean_free_path_profile290)_ 7.78277289682836708e+04 +Electron-deuteron_mean_free_path_at_point_291____________________________ (len_plasma_electron_deuteron_mean_free_path_profile291)_ 7.73214429507439345e+04 +Electron-deuteron_mean_free_path_at_point_292____________________________ (len_plasma_electron_deuteron_mean_free_path_profile292)_ 7.68155547297680023e+04 +Electron-deuteron_mean_free_path_at_point_293____________________________ (len_plasma_electron_deuteron_mean_free_path_profile293)_ 7.63100851155247074e+04 +Electron-deuteron_mean_free_path_at_point_294____________________________ (len_plasma_electron_deuteron_mean_free_path_profile294)_ 7.58050549549340358e+04 +Electron-deuteron_mean_free_path_at_point_295____________________________ (len_plasma_electron_deuteron_mean_free_path_profile295)_ 7.53004851309561054e+04 +Electron-deuteron_mean_free_path_at_point_296____________________________ (len_plasma_electron_deuteron_mean_free_path_profile296)_ 7.47963965618736547e+04 +Electron-deuteron_mean_free_path_at_point_297____________________________ (len_plasma_electron_deuteron_mean_free_path_profile297)_ 7.42928102005628461e+04 +Electron-deuteron_mean_free_path_at_point_298____________________________ (len_plasma_electron_deuteron_mean_free_path_profile298)_ 7.37897470337569393e+04 +Electron-deuteron_mean_free_path_at_point_299____________________________ (len_plasma_electron_deuteron_mean_free_path_profile299)_ 7.32872280812995596e+04 +Electron-deuteron_mean_free_path_at_point_300____________________________ (len_plasma_electron_deuteron_mean_free_path_profile300)_ 7.27852743953892204e+04 +Electron-deuteron_mean_free_path_at_point_301____________________________ (len_plasma_electron_deuteron_mean_free_path_profile301)_ 7.22839070598141407e+04 +Electron-deuteron_mean_free_path_at_point_302____________________________ (len_plasma_electron_deuteron_mean_free_path_profile302)_ 7.17831471891794936e+04 +Electron-deuteron_mean_free_path_at_point_303____________________________ (len_plasma_electron_deuteron_mean_free_path_profile303)_ 7.12830159281223750e+04 +Electron-deuteron_mean_free_path_at_point_304____________________________ (len_plasma_electron_deuteron_mean_free_path_profile304)_ 7.07835344505207759e+04 +Electron-deuteron_mean_free_path_at_point_305____________________________ (len_plasma_electron_deuteron_mean_free_path_profile305)_ 7.02847239586917422e+04 +Electron-deuteron_mean_free_path_at_point_306____________________________ (len_plasma_electron_deuteron_mean_free_path_profile306)_ 6.97866056825794803e+04 +Electron-deuteron_mean_free_path_at_point_307____________________________ (len_plasma_electron_deuteron_mean_free_path_profile307)_ 6.92892008789363754e+04 +Electron-deuteron_mean_free_path_at_point_308____________________________ (len_plasma_electron_deuteron_mean_free_path_profile308)_ 6.87925308304933424e+04 +Electron-deuteron_mean_free_path_at_point_309____________________________ (len_plasma_electron_deuteron_mean_free_path_profile309)_ 6.82966168451216217e+04 +Electron-deuteron_mean_free_path_at_point_310____________________________ (len_plasma_electron_deuteron_mean_free_path_profile310)_ 6.78014802549850574e+04 +Electron-deuteron_mean_free_path_at_point_311____________________________ (len_plasma_electron_deuteron_mean_free_path_profile311)_ 6.73071424156842550e+04 +Electron-deuteron_mean_free_path_at_point_312____________________________ (len_plasma_electron_deuteron_mean_free_path_profile312)_ 6.68136247053913685e+04 +Electron-deuteron_mean_free_path_at_point_313____________________________ (len_plasma_electron_deuteron_mean_free_path_profile313)_ 6.63209485239745554e+04 +Electron-deuteron_mean_free_path_at_point_314____________________________ (len_plasma_electron_deuteron_mean_free_path_profile314)_ 6.58291352921169164e+04 +Electron-deuteron_mean_free_path_at_point_315____________________________ (len_plasma_electron_deuteron_mean_free_path_profile315)_ 6.53382064504237642e+04 +Electron-deuteron_mean_free_path_at_point_316____________________________ (len_plasma_electron_deuteron_mean_free_path_profile316)_ 6.48481834585222387e+04 +Electron-deuteron_mean_free_path_at_point_317____________________________ (len_plasma_electron_deuteron_mean_free_path_profile317)_ 6.43590877941541403e+04 +Electron-deuteron_mean_free_path_at_point_318____________________________ (len_plasma_electron_deuteron_mean_free_path_profile318)_ 6.38709409522568021e+04 +Electron-deuteron_mean_free_path_at_point_319____________________________ (len_plasma_electron_deuteron_mean_free_path_profile319)_ 6.33837644440398799e+04 +Electron-deuteron_mean_free_path_at_point_320____________________________ (len_plasma_electron_deuteron_mean_free_path_profile320)_ 6.28975797960518539e+04 +Electron-deuteron_mean_free_path_at_point_321____________________________ (len_plasma_electron_deuteron_mean_free_path_profile321)_ 6.24124085492385057e+04 +Electron-deuteron_mean_free_path_at_point_322____________________________ (len_plasma_electron_deuteron_mean_free_path_profile322)_ 6.19282722579959009e+04 +Electron-deuteron_mean_free_path_at_point_323____________________________ (len_plasma_electron_deuteron_mean_free_path_profile323)_ 6.14451924892129609e+04 +Electron-deuteron_mean_free_path_at_point_324____________________________ (len_plasma_electron_deuteron_mean_free_path_profile324)_ 6.09631908213099014e+04 +Electron-deuteron_mean_free_path_at_point_325____________________________ (len_plasma_electron_deuteron_mean_free_path_profile325)_ 6.04822888432686450e+04 +Electron-deuteron_mean_free_path_at_point_326____________________________ (len_plasma_electron_deuteron_mean_free_path_profile326)_ 6.00025081536548023e+04 +Electron-deuteron_mean_free_path_at_point_327____________________________ (len_plasma_electron_deuteron_mean_free_path_profile327)_ 5.95238703596372216e+04 +Electron-deuteron_mean_free_path_at_point_328____________________________ (len_plasma_electron_deuteron_mean_free_path_profile328)_ 5.90463970759983058e+04 +Electron-deuteron_mean_free_path_at_point_329____________________________ (len_plasma_electron_deuteron_mean_free_path_profile329)_ 5.85701099241401607e+04 +Electron-deuteron_mean_free_path_at_point_330____________________________ (len_plasma_electron_deuteron_mean_free_path_profile330)_ 5.80950305310854310e+04 +Electron-deuteron_mean_free_path_at_point_331____________________________ (len_plasma_electron_deuteron_mean_free_path_profile331)_ 5.76211805284733055e+04 +Electron-deuteron_mean_free_path_at_point_332____________________________ (len_plasma_electron_deuteron_mean_free_path_profile332)_ 5.71485815515511713e+04 +Electron-deuteron_mean_free_path_at_point_333____________________________ (len_plasma_electron_deuteron_mean_free_path_profile333)_ 5.66772552381623682e+04 +Electron-deuteron_mean_free_path_at_point_334____________________________ (len_plasma_electron_deuteron_mean_free_path_profile334)_ 5.62072232277303119e+04 +Electron-deuteron_mean_free_path_at_point_335____________________________ (len_plasma_electron_deuteron_mean_free_path_profile335)_ 5.57385071602406970e+04 +Electron-deuteron_mean_free_path_at_point_336____________________________ (len_plasma_electron_deuteron_mean_free_path_profile336)_ 5.52711286752206724e+04 +Electron-deuteron_mean_free_path_at_point_337____________________________ (len_plasma_electron_deuteron_mean_free_path_profile337)_ 5.48051094107169993e+04 +Electron-deuteron_mean_free_path_at_point_338____________________________ (len_plasma_electron_deuteron_mean_free_path_profile338)_ 5.43404710022724903e+04 +Electron-deuteron_mean_free_path_at_point_339____________________________ (len_plasma_electron_deuteron_mean_free_path_profile339)_ 5.38772350819035346e+04 +Electron-deuteron_mean_free_path_at_point_340____________________________ (len_plasma_electron_deuteron_mean_free_path_profile340)_ 5.34154232770764647e+04 +Electron-deuteron_mean_free_path_at_point_341____________________________ (len_plasma_electron_deuteron_mean_free_path_profile341)_ 5.29550572096878823e+04 +Electron-deuteron_mean_free_path_at_point_342____________________________ (len_plasma_electron_deuteron_mean_free_path_profile342)_ 5.24961584950439865e+04 +Electron-deuteron_mean_free_path_at_point_343____________________________ (len_plasma_electron_deuteron_mean_free_path_profile343)_ 5.20387487408462985e+04 +Electron-deuteron_mean_free_path_at_point_344____________________________ (len_plasma_electron_deuteron_mean_free_path_profile344)_ 5.15828495461793937e+04 +Electron-deuteron_mean_free_path_at_point_345____________________________ (len_plasma_electron_deuteron_mean_free_path_profile345)_ 5.11284825005049279e+04 +Electron-deuteron_mean_free_path_at_point_346____________________________ (len_plasma_electron_deuteron_mean_free_path_profile346)_ 5.06756691826614187e+04 +Electron-deuteron_mean_free_path_at_point_347____________________________ (len_plasma_electron_deuteron_mean_free_path_profile347)_ 5.02244311598726563e+04 +Electron-deuteron_mean_free_path_at_point_348____________________________ (len_plasma_electron_deuteron_mean_free_path_profile348)_ 4.97747899867633241e+04 +Electron-deuteron_mean_free_path_at_point_349____________________________ (len_plasma_electron_deuteron_mean_free_path_profile349)_ 4.93267672043869097e+04 +Electron-deuteron_mean_free_path_at_point_350____________________________ (len_plasma_electron_deuteron_mean_free_path_profile350)_ 4.88803843392642084e+04 +Electron-deuteron_mean_free_path_at_point_351____________________________ (len_plasma_electron_deuteron_mean_free_path_profile351)_ 4.84356629024330396e+04 +Electron-deuteron_mean_free_path_at_point_352____________________________ (len_plasma_electron_deuteron_mean_free_path_profile352)_ 4.79926243885181320e+04 +Electron-deuteron_mean_free_path_at_point_353____________________________ (len_plasma_electron_deuteron_mean_free_path_profile353)_ 4.75512902748115521e+04 +Electron-deuteron_mean_free_path_at_point_354____________________________ (len_plasma_electron_deuteron_mean_free_path_profile354)_ 4.71116820203762109e+04 +Electron-deuteron_mean_free_path_at_point_355____________________________ (len_plasma_electron_deuteron_mean_free_path_profile355)_ 4.66738210651668196e+04 +Electron-deuteron_mean_free_path_at_point_356____________________________ (len_plasma_electron_deuteron_mean_free_path_profile356)_ 4.62377288291753503e+04 +Electron-deuteron_mean_free_path_at_point_357____________________________ (len_plasma_electron_deuteron_mean_free_path_profile357)_ 4.58034267116000701e+04 +Electron-deuteron_mean_free_path_at_point_358____________________________ (len_plasma_electron_deuteron_mean_free_path_profile358)_ 4.53709360900426618e+04 +Electron-deuteron_mean_free_path_at_point_359____________________________ (len_plasma_electron_deuteron_mean_free_path_profile359)_ 4.49402783197342433e+04 +Electron-deuteron_mean_free_path_at_point_360____________________________ (len_plasma_electron_deuteron_mean_free_path_profile360)_ 4.45114747327941441e+04 +Electron-deuteron_mean_free_path_at_point_361____________________________ (len_plasma_electron_deuteron_mean_free_path_profile361)_ 4.40845466375239921e+04 +Electron-deuteron_mean_free_path_at_point_362____________________________ (len_plasma_electron_deuteron_mean_free_path_profile362)_ 4.36595153177401153e+04 +Electron-deuteron_mean_free_path_at_point_363____________________________ (len_plasma_electron_deuteron_mean_free_path_profile363)_ 4.32364020321468997e+04 +Electron-deuteron_mean_free_path_at_point_364____________________________ (len_plasma_electron_deuteron_mean_free_path_profile364)_ 4.28152280137566922e+04 +Electron-deuteron_mean_free_path_at_point_365____________________________ (len_plasma_electron_deuteron_mean_free_path_profile365)_ 4.23960144693556867e+04 +Electron-deuteron_mean_free_path_at_point_366____________________________ (len_plasma_electron_deuteron_mean_free_path_profile366)_ 4.19787825790262068e+04 +Electron-deuteron_mean_free_path_at_point_367____________________________ (len_plasma_electron_deuteron_mean_free_path_profile367)_ 4.15635534957208802e+04 +Electron-deuteron_mean_free_path_at_point_368____________________________ (len_plasma_electron_deuteron_mean_free_path_profile368)_ 4.11503483449028863e+04 +Electron-deuteron_mean_free_path_at_point_369____________________________ (len_plasma_electron_deuteron_mean_free_path_profile369)_ 4.07391882242485299e+04 +Electron-deuteron_mean_free_path_at_point_370____________________________ (len_plasma_electron_deuteron_mean_free_path_profile370)_ 4.03300942034225955e+04 +Electron-deuteron_mean_free_path_at_point_371____________________________ (len_plasma_electron_deuteron_mean_free_path_profile371)_ 3.99230873239291832e+04 +Electron-deuteron_mean_free_path_at_point_372____________________________ (len_plasma_electron_deuteron_mean_free_path_profile372)_ 3.95181885990443043e+04 +Electron-deuteron_mean_free_path_at_point_373____________________________ (len_plasma_electron_deuteron_mean_free_path_profile373)_ 3.91154190138375343e+04 +Electron-deuteron_mean_free_path_at_point_374____________________________ (len_plasma_electron_deuteron_mean_free_path_profile374)_ 3.87147995252868059e+04 +Electron-deuteron_mean_free_path_at_point_375____________________________ (len_plasma_electron_deuteron_mean_free_path_profile375)_ 3.83163510624960909e+04 +Electron-deuteron_mean_free_path_at_point_376____________________________ (len_plasma_electron_deuteron_mean_free_path_profile376)_ 3.79200945270211014e+04 +Electron-deuteron_mean_free_path_at_point_377____________________________ (len_plasma_electron_deuteron_mean_free_path_profile377)_ 3.75260507933106128e+04 +Electron-deuteron_mean_free_path_at_point_378____________________________ (len_plasma_electron_deuteron_mean_free_path_profile378)_ 3.71342407092754875e+04 +Electron-deuteron_mean_free_path_at_point_379____________________________ (len_plasma_electron_deuteron_mean_free_path_profile379)_ 3.67446850969898223e+04 +Electron-deuteron_mean_free_path_at_point_380____________________________ (len_plasma_electron_deuteron_mean_free_path_profile380)_ 3.63574047535353748e+04 +Electron-deuteron_mean_free_path_at_point_381____________________________ (len_plasma_electron_deuteron_mean_free_path_profile381)_ 3.59724204520015192e+04 +Electron-deuteron_mean_free_path_at_point_382____________________________ (len_plasma_electron_deuteron_mean_free_path_profile382)_ 3.55897529426489928e+04 +Electron-deuteron_mean_free_path_at_point_383____________________________ (len_plasma_electron_deuteron_mean_free_path_profile383)_ 3.52094229542507164e+04 +Electron-deuteron_mean_free_path_at_point_384____________________________ (len_plasma_electron_deuteron_mean_free_path_profile384)_ 3.48314511956205097e+04 +Electron-deuteron_mean_free_path_at_point_385____________________________ (len_plasma_electron_deuteron_mean_free_path_profile385)_ 3.44558583573463620e+04 +Electron-deuteron_mean_free_path_at_point_386____________________________ (len_plasma_electron_deuteron_mean_free_path_profile386)_ 3.40826651137382869e+04 +Electron-deuteron_mean_free_path_at_point_387____________________________ (len_plasma_electron_deuteron_mean_free_path_profile387)_ 3.37118921250115382e+04 +Electron-deuteron_mean_free_path_at_point_388____________________________ (len_plasma_electron_deuteron_mean_free_path_profile388)_ 3.33435600397146118e+04 +Electron-deuteron_mean_free_path_at_point_389____________________________ (len_plasma_electron_deuteron_mean_free_path_profile389)_ 3.29776894974276220e+04 +Electron-deuteron_mean_free_path_at_point_390____________________________ (len_plasma_electron_deuteron_mean_free_path_profile390)_ 3.26143011317444179e+04 +Electron-deuteron_mean_free_path_at_point_391____________________________ (len_plasma_electron_deuteron_mean_free_path_profile391)_ 3.22534155735609202e+04 +Electron-deuteron_mean_free_path_at_point_392____________________________ (len_plasma_electron_deuteron_mean_free_path_profile392)_ 3.18950534546916060e+04 +Electron-deuteron_mean_free_path_at_point_393____________________________ (len_plasma_electron_deuteron_mean_free_path_profile393)_ 3.15392354118377043e+04 +Electron-deuteron_mean_free_path_at_point_394____________________________ (len_plasma_electron_deuteron_mean_free_path_profile394)_ 3.11859820909329355e+04 +Electron-deuteron_mean_free_path_at_point_395____________________________ (len_plasma_electron_deuteron_mean_free_path_profile395)_ 3.08353141518924422e+04 +Electron-deuteron_mean_free_path_at_point_396____________________________ (len_plasma_electron_deuteron_mean_free_path_profile396)_ 3.04872522737979707e+04 +Electron-deuteron_mean_free_path_at_point_397____________________________ (len_plasma_electron_deuteron_mean_free_path_profile397)_ 3.01418171605460084e+04 +Electron-deuteron_mean_free_path_at_point_398____________________________ (len_plasma_electron_deuteron_mean_free_path_profile398)_ 2.97990295469985285e+04 +Electron-deuteron_mean_free_path_at_point_399____________________________ (len_plasma_electron_deuteron_mean_free_path_profile399)_ 2.94589102056698575e+04 +Electron-deuteron_mean_free_path_at_point_400____________________________ (len_plasma_electron_deuteron_mean_free_path_profile400)_ 2.91214799539913511e+04 +Electron-deuteron_mean_free_path_at_point_401____________________________ (len_plasma_electron_deuteron_mean_free_path_profile401)_ 2.87867596621971061e+04 +Electron-deuteron_mean_free_path_at_point_402____________________________ (len_plasma_electron_deuteron_mean_free_path_profile402)_ 2.84547702618769545e+04 +Electron-deuteron_mean_free_path_at_point_403____________________________ (len_plasma_electron_deuteron_mean_free_path_profile403)_ 2.81255327552488816e+04 +Electron-deuteron_mean_free_path_at_point_404____________________________ (len_plasma_electron_deuteron_mean_free_path_profile404)_ 2.77990682252055412e+04 +Electron-deuteron_mean_free_path_at_point_405____________________________ (len_plasma_electron_deuteron_mean_free_path_profile405)_ 2.74753978461939623e+04 +Electron-deuteron_mean_free_path_at_point_406____________________________ (len_plasma_electron_deuteron_mean_free_path_profile406)_ 2.71545428959971323e+04 +Electron-deuteron_mean_free_path_at_point_407____________________________ (len_plasma_electron_deuteron_mean_free_path_profile407)_ 2.68365247684833012e+04 +Electron-deuteron_mean_free_path_at_point_408____________________________ (len_plasma_electron_deuteron_mean_free_path_profile408)_ 2.65213649874056428e+04 +Electron-deuteron_mean_free_path_at_point_409____________________________ (len_plasma_electron_deuteron_mean_free_path_profile409)_ 2.62090852213325779e+04 +Electron-deuteron_mean_free_path_at_point_410____________________________ (len_plasma_electron_deuteron_mean_free_path_profile410)_ 2.58997072998042386e+04 +Electron-deuteron_mean_free_path_at_point_411____________________________ (len_plasma_electron_deuteron_mean_free_path_profile411)_ 2.55932532308142472e+04 +Electron-deuteron_mean_free_path_at_point_412____________________________ (len_plasma_electron_deuteron_mean_free_path_profile412)_ 2.52897452197270723e+04 +Electron-deuteron_mean_free_path_at_point_413____________________________ (len_plasma_electron_deuteron_mean_free_path_profile413)_ 2.49892056897521070e+04 +Electron-deuteron_mean_free_path_at_point_414____________________________ (len_plasma_electron_deuteron_mean_free_path_profile414)_ 2.46916573041098891e+04 +Electron-deuteron_mean_free_path_at_point_415____________________________ (len_plasma_electron_deuteron_mean_free_path_profile415)_ 2.43971229900329818e+04 +Electron-deuteron_mean_free_path_at_point_416____________________________ (len_plasma_electron_deuteron_mean_free_path_profile416)_ 2.41056259647634397e+04 +Electron-deuteron_mean_free_path_at_point_417____________________________ (len_plasma_electron_deuteron_mean_free_path_profile417)_ 2.38171897637272377e+04 +Electron-deuteron_mean_free_path_at_point_418____________________________ (len_plasma_electron_deuteron_mean_free_path_profile418)_ 2.35318382710779588e+04 +Electron-deuteron_mean_free_path_at_point_419____________________________ (len_plasma_electron_deuteron_mean_free_path_profile419)_ 2.32495957528280996e+04 +Electron-deuteron_mean_free_path_at_point_420____________________________ (len_plasma_electron_deuteron_mean_free_path_profile420)_ 2.29704868928098658e+04 +Electron-deuteron_mean_free_path_at_point_421____________________________ (len_plasma_electron_deuteron_mean_free_path_profile421)_ 2.26945368317304201e+04 +Electron-deuteron_mean_free_path_at_point_422____________________________ (len_plasma_electron_deuteron_mean_free_path_profile422)_ 2.24217712096194518e+04 +Electron-deuteron_mean_free_path_at_point_423____________________________ (len_plasma_electron_deuteron_mean_free_path_profile423)_ 2.21522162120016728e+04 +Electron-deuteron_mean_free_path_at_point_424____________________________ (len_plasma_electron_deuteron_mean_free_path_profile424)_ 2.18858986201618900e+04 +Electron-deuteron_mean_free_path_at_point_425____________________________ (len_plasma_electron_deuteron_mean_free_path_profile425)_ 2.16228458659188727e+04 +Electron-deuteron_mean_free_path_at_point_426____________________________ (len_plasma_electron_deuteron_mean_free_path_profile426)_ 2.13630860913730248e+04 +Electron-deuteron_mean_free_path_at_point_427____________________________ (len_plasma_electron_deuteron_mean_free_path_profile427)_ 2.11066482141485321e+04 +Electron-deuteron_mean_free_path_at_point_428____________________________ (len_plasma_electron_deuteron_mean_free_path_profile428)_ 2.08535619987238679e+04 +Electron-deuteron_mean_free_path_at_point_429____________________________ (len_plasma_electron_deuteron_mean_free_path_profile429)_ 2.06038581345136845e+04 +Electron-deuteron_mean_free_path_at_point_430____________________________ (len_plasma_electron_deuteron_mean_free_path_profile430)_ 2.03575683214597811e+04 +Electron-deuteron_mean_free_path_at_point_431____________________________ (len_plasma_electron_deuteron_mean_free_path_profile431)_ 2.01147253639909104e+04 +Electron-deuteron_mean_free_path_at_point_432____________________________ (len_plasma_electron_deuteron_mean_free_path_profile432)_ 1.98753632743310081e+04 +Electron-deuteron_mean_free_path_at_point_433____________________________ (len_plasma_electron_deuteron_mean_free_path_profile433)_ 1.96395173862777701e+04 +Electron-deuteron_mean_free_path_at_point_434____________________________ (len_plasma_electron_deuteron_mean_free_path_profile434)_ 1.94072244807386342e+04 +Electron-deuteron_mean_free_path_at_point_435____________________________ (len_plasma_electron_deuteron_mean_free_path_profile435)_ 1.91785229245061892e+04 +Electron-deuteron_mean_free_path_at_point_436____________________________ (len_plasma_electron_deuteron_mean_free_path_profile436)_ 1.89534528239896172e+04 +Electron-deuteron_mean_free_path_at_point_437____________________________ (len_plasma_electron_deuteron_mean_free_path_profile437)_ 1.87320561958893486e+04 +Electron-deuteron_mean_free_path_at_point_438____________________________ (len_plasma_electron_deuteron_mean_free_path_profile438)_ 1.85143771571373363e+04 +Electron-deuteron_mean_free_path_at_point_439____________________________ (len_plasma_electron_deuteron_mean_free_path_profile439)_ 1.83004621368154112e+04 +Electron-deuteron_mean_free_path_at_point_440____________________________ (len_plasma_electron_deuteron_mean_free_path_profile440)_ 1.80903601132486765e+04 +Electron-deuteron_mean_free_path_at_point_441____________________________ (len_plasma_electron_deuteron_mean_free_path_profile441)_ 1.78841228800468598e+04 +Electron-deuteron_mean_free_path_at_point_442____________________________ (len_plasma_electron_deuteron_mean_free_path_profile442)_ 1.76818053455815316e+04 +Electron-deuteron_mean_free_path_at_point_443____________________________ (len_plasma_electron_deuteron_mean_free_path_profile443)_ 1.74834658712581004e+04 +Electron-deuteron_mean_free_path_at_point_444____________________________ (len_plasma_electron_deuteron_mean_free_path_profile444)_ 1.72891666550285190e+04 +Electron-deuteron_mean_free_path_at_point_445____________________________ (len_plasma_electron_deuteron_mean_free_path_profile445)_ 1.70989741679418694e+04 +Electron-deuteron_mean_free_path_at_point_446____________________________ (len_plasma_electron_deuteron_mean_free_path_profile446)_ 1.69129596532324904e+04 +Electron-deuteron_mean_free_path_at_point_447____________________________ (len_plasma_electron_deuteron_mean_free_path_profile447)_ 1.67311996996049529e+04 +Electron-deuteron_mean_free_path_at_point_448____________________________ (len_plasma_electron_deuteron_mean_free_path_profile448)_ 1.65537769031453281e+04 +Electron-deuteron_mean_free_path_at_point_449____________________________ (len_plasma_electron_deuteron_mean_free_path_profile449)_ 1.63807806358587495e+04 +Electron-deuteron_mean_free_path_at_point_450____________________________ (len_plasma_electron_deuteron_mean_free_path_profile450)_ 1.62123079435236559e+04 +Electron-deuteron_mean_free_path_at_point_451____________________________ (len_plasma_electron_deuteron_mean_free_path_profile451)_ 1.60484646017299401e+04 +Electron-deuteron_mean_free_path_at_point_452____________________________ (len_plasma_electron_deuteron_mean_free_path_profile452)_ 1.58893663672687817e+04 +Electron-deuteron_mean_free_path_at_point_453____________________________ (len_plasma_electron_deuteron_mean_free_path_profile453)_ 1.57351404733044164e+04 +Electron-deuteron_mean_free_path_at_point_454____________________________ (len_plasma_electron_deuteron_mean_free_path_profile454)_ 1.55859274322984347e+04 +Electron-deuteron_mean_free_path_at_point_455____________________________ (len_plasma_electron_deuteron_mean_free_path_profile455)_ 1.54418832324762170e+04 +Electron-deuteron_mean_free_path_at_point_456____________________________ (len_plasma_electron_deuteron_mean_free_path_profile456)_ 1.53031820448189155e+04 +Electron-deuteron_mean_free_path_at_point_457____________________________ (len_plasma_electron_deuteron_mean_free_path_profile457)_ 1.51700196031479863e+04 +Electron-deuteron_mean_free_path_at_point_458____________________________ (len_plasma_electron_deuteron_mean_free_path_profile458)_ 1.50426174880737035e+04 +Electron-deuteron_mean_free_path_at_point_459____________________________ (len_plasma_electron_deuteron_mean_free_path_profile459)_ 1.49212286504628155e+04 +Electron-deuteron_mean_free_path_at_point_460____________________________ (len_plasma_electron_deuteron_mean_free_path_profile460)_ 1.48061446764815046e+04 +Electron-deuteron_mean_free_path_at_point_461____________________________ (len_plasma_electron_deuteron_mean_free_path_profile461)_ 1.46977055700465171e+04 +Electron-deuteron_mean_free_path_at_point_462____________________________ (len_plasma_electron_deuteron_mean_free_path_profile462)_ 1.45963132986056571e+04 +Electron-deuteron_mean_free_path_at_point_463____________________________ (len_plasma_electron_deuteron_mean_free_path_profile463)_ 1.45024511976109370e+04 +Electron-deuteron_mean_free_path_at_point_464____________________________ (len_plasma_electron_deuteron_mean_free_path_profile464)_ 1.44167129625181406e+04 +Electron-deuteron_mean_free_path_at_point_465____________________________ (len_plasma_electron_deuteron_mean_free_path_profile465)_ 1.43398483523405739e+04 +Electron-deuteron_mean_free_path_at_point_466____________________________ (len_plasma_electron_deuteron_mean_free_path_profile466)_ 1.42728405320259080e+04 +Electron-deuteron_mean_free_path_at_point_467____________________________ (len_plasma_electron_deuteron_mean_free_path_profile467)_ 1.42170505340239342e+04 +Electron-deuteron_mean_free_path_at_point_468____________________________ (len_plasma_electron_deuteron_mean_free_path_profile468)_ 1.41745303826809850e+04 +Electron-deuteron_mean_free_path_at_point_469____________________________ (len_plasma_electron_deuteron_mean_free_path_profile469)_ 1.41489033008585920e+04 +Electron-deuteron_mean_free_path_at_point_470____________________________ (len_plasma_electron_deuteron_mean_free_path_profile470)_ 1.41507489033275979e+04 +Electron-deuteron_mean_free_path_at_point_471____________________________ (len_plasma_electron_deuteron_mean_free_path_profile471)_ 1.34479872388432050e+04 +Electron-deuteron_mean_free_path_at_point_472____________________________ (len_plasma_electron_deuteron_mean_free_path_profile472)_ 1.27541691448474448e+04 +Electron-deuteron_mean_free_path_at_point_473____________________________ (len_plasma_electron_deuteron_mean_free_path_profile473)_ 1.20697331996242319e+04 +Electron-deuteron_mean_free_path_at_point_474____________________________ (len_plasma_electron_deuteron_mean_free_path_profile474)_ 1.13951450459550870e+04 +Electron-deuteron_mean_free_path_at_point_475____________________________ (len_plasma_electron_deuteron_mean_free_path_profile475)_ 1.07308995237690451e+04 +Electron-deuteron_mean_free_path_at_point_476____________________________ (len_plasma_electron_deuteron_mean_free_path_profile476)_ 1.00775230123277215e+04 +Electron-deuteron_mean_free_path_at_point_477____________________________ (len_plasma_electron_deuteron_mean_free_path_profile477)_ 9.43557600739699228e+03 +Electron-deuteron_mean_free_path_at_point_478____________________________ (len_plasma_electron_deuteron_mean_free_path_profile478)_ 8.80565596269764319e+03 +Electron-deuteron_mean_free_path_at_point_479____________________________ (len_plasma_electron_deuteron_mean_free_path_profile479)_ 8.18840042951189480e+03 +Electron-deuteron_mean_free_path_at_point_480____________________________ (len_plasma_electron_deuteron_mean_free_path_profile480)_ 7.58449053382379225e+03 +Electron-deuteron_mean_free_path_at_point_481____________________________ (len_plasma_electron_deuteron_mean_free_path_profile481)_ 6.99465483702779329e+03 +Electron-deuteron_mean_free_path_at_point_482____________________________ (len_plasma_electron_deuteron_mean_free_path_profile482)_ 6.41967363437931908e+03 +Electron-deuteron_mean_free_path_at_point_483____________________________ (len_plasma_electron_deuteron_mean_free_path_profile483)_ 5.86038375541287041e+03 +Electron-deuteron_mean_free_path_at_point_484____________________________ (len_plasma_electron_deuteron_mean_free_path_profile484)_ 5.31768394312999499e+03 +Electron-deuteron_mean_free_path_at_point_485____________________________ (len_plasma_electron_deuteron_mean_free_path_profile485)_ 4.79254090472334155e+03 +Electron-deuteron_mean_free_path_at_point_486____________________________ (len_plasma_electron_deuteron_mean_free_path_profile486)_ 4.28599614719566307e+03 +Electron-deuteron_mean_free_path_at_point_487____________________________ (len_plasma_electron_deuteron_mean_free_path_profile487)_ 3.79917373832283329e+03 +Electron-deuteron_mean_free_path_at_point_488____________________________ (len_plasma_electron_deuteron_mean_free_path_profile488)_ 3.33328916984047100e+03 +Electron-deuteron_mean_free_path_at_point_489____________________________ (len_plasma_electron_deuteron_mean_free_path_profile489)_ 2.88965955000818531e+03 +Electron-deuteron_mean_free_path_at_point_490____________________________ (len_plasma_electron_deuteron_mean_free_path_profile490)_ 2.46971542420329570e+03 +Electron-deuteron_mean_free_path_at_point_491____________________________ (len_plasma_electron_deuteron_mean_free_path_profile491)_ 2.07501462749240045e+03 +Electron-deuteron_mean_free_path_at_point_492____________________________ (len_plasma_electron_deuteron_mean_free_path_profile492)_ 1.70725873470318902e+03 +Electron-deuteron_mean_free_path_at_point_493____________________________ (len_plasma_electron_deuteron_mean_free_path_profile493)_ 1.36831293367070862e+03 +Electron-deuteron_mean_free_path_at_point_494____________________________ (len_plasma_electron_deuteron_mean_free_path_profile494)_ 1.06023059095431768e+03 +Electron-deuteron_mean_free_path_at_point_495____________________________ (len_plasma_electron_deuteron_mean_free_path_profile495)_ 7.85284590037124190e+02 +Electron-deuteron_mean_free_path_at_point_496____________________________ (len_plasma_electron_deuteron_mean_free_path_profile496)_ 5.46009136382744373e+02 +Electron-deuteron_mean_free_path_at_point_497____________________________ (len_plasma_electron_deuteron_mean_free_path_profile497)_ 3.45259313602791508e+02 +Electron-deuteron_mean_free_path_at_point_498____________________________ (len_plasma_electron_deuteron_mean_free_path_profile498)_ 1.86304953645940031e+02 +Electron-deuteron_mean_free_path_at_point_499____________________________ (len_plasma_electron_deuteron_mean_free_path_profile499)_ 7.30054291925195287e+01 +Electron-deuteron_mean_free_path_at_point_500____________________________ (len_plasma_electron_deuteron_mean_free_path_profile500)_ 1.02589371519775003e+01 +Volume_averaged_electron-triton_mean_free_path_(λₑT)_(m)_________________ (len_plasma_electron_triton_mean_free_path_vol_avg)_ 5.60377918495656559e+04 +Electron-triton_mean_free_path_at_point_0________________________________ (len_plasma_electron_triton_mean_free_path_profile0)_ 1.74000260481364210e+05 +Electron-triton_mean_free_path_at_point_1________________________________ (len_plasma_electron_triton_mean_free_path_profile1)_ 1.73998843895871600e+05 +Electron-triton_mean_free_path_at_point_2________________________________ (len_plasma_electron_triton_mean_free_path_profile2)_ 1.73994594178473228e+05 +Electron-triton_mean_free_path_at_point_3________________________________ (len_plasma_electron_triton_mean_free_path_profile3)_ 1.73987511446406890e+05 +Electron-triton_mean_free_path_at_point_4________________________________ (len_plasma_electron_triton_mean_free_path_profile4)_ 1.73977595895071077e+05 +Electron-triton_mean_free_path_at_point_5________________________________ (len_plasma_electron_triton_mean_free_path_profile5)_ 1.73964847798022325e+05 +Electron-triton_mean_free_path_at_point_6________________________________ (len_plasma_electron_triton_mean_free_path_profile6)_ 1.73949267506976117e+05 +Electron-triton_mean_free_path_at_point_7________________________________ (len_plasma_electron_triton_mean_free_path_profile7)_ 1.73930855451809883e+05 +Electron-triton_mean_free_path_at_point_8________________________________ (len_plasma_electron_triton_mean_free_path_profile8)_ 1.73909612140559417e+05 +Electron-triton_mean_free_path_at_point_9________________________________ (len_plasma_electron_triton_mean_free_path_profile9)_ 1.73885538159422780e+05 +Electron-triton_mean_free_path_at_point_10_______________________________ (len_plasma_electron_triton_mean_free_path_profile10)_ 1.73858634172758146e+05 +Electron-triton_mean_free_path_at_point_11_______________________________ (len_plasma_electron_triton_mean_free_path_profile11)_ 1.73828900923086476e+05 +Electron-triton_mean_free_path_at_point_12_______________________________ (len_plasma_electron_triton_mean_free_path_profile12)_ 1.73796339231091726e+05 +Electron-triton_mean_free_path_at_point_13_______________________________ (len_plasma_electron_triton_mean_free_path_profile13)_ 1.73760949995620962e+05 +Electron-triton_mean_free_path_at_point_14_______________________________ (len_plasma_electron_triton_mean_free_path_profile14)_ 1.73722734193686076e+05 +Electron-triton_mean_free_path_at_point_15_______________________________ (len_plasma_electron_triton_mean_free_path_profile15)_ 1.73681692880463961e+05 +Electron-triton_mean_free_path_at_point_16_______________________________ (len_plasma_electron_triton_mean_free_path_profile16)_ 1.73637827189298230e+05 +Electron-triton_mean_free_path_at_point_17_______________________________ (len_plasma_electron_triton_mean_free_path_profile17)_ 1.73591138331699913e+05 +Electron-triton_mean_free_path_at_point_18_______________________________ (len_plasma_electron_triton_mean_free_path_profile18)_ 1.73541627597349376e+05 +Electron-triton_mean_free_path_at_point_19_______________________________ (len_plasma_electron_triton_mean_free_path_profile19)_ 1.73489296354095306e+05 +Electron-triton_mean_free_path_at_point_20_______________________________ (len_plasma_electron_triton_mean_free_path_profile20)_ 1.73434146047958755e+05 +Electron-triton_mean_free_path_at_point_21_______________________________ (len_plasma_electron_triton_mean_free_path_profile21)_ 1.73376178203133197e+05 +Electron-triton_mean_free_path_at_point_22_______________________________ (len_plasma_electron_triton_mean_free_path_profile22)_ 1.73315394421985955e+05 +Electron-triton_mean_free_path_at_point_23_______________________________ (len_plasma_electron_triton_mean_free_path_profile23)_ 1.73251796385059512e+05 +Electron-triton_mean_free_path_at_point_24_______________________________ (len_plasma_electron_triton_mean_free_path_profile24)_ 1.73185385851072700e+05 +Electron-triton_mean_free_path_at_point_25_______________________________ (len_plasma_electron_triton_mean_free_path_profile25)_ 1.73116164656924200e+05 +Electron-triton_mean_free_path_at_point_26_______________________________ (len_plasma_electron_triton_mean_free_path_profile26)_ 1.73044134717691806e+05 +Electron-triton_mean_free_path_at_point_27_______________________________ (len_plasma_electron_triton_mean_free_path_profile27)_ 1.72969298026635195e+05 +Electron-triton_mean_free_path_at_point_28_______________________________ (len_plasma_electron_triton_mean_free_path_profile28)_ 1.72891656655198167e+05 +Electron-triton_mean_free_path_at_point_29_______________________________ (len_plasma_electron_triton_mean_free_path_profile29)_ 1.72811212753008993e+05 +Electron-triton_mean_free_path_at_point_30_______________________________ (len_plasma_electron_triton_mean_free_path_profile30)_ 1.72727968547883822e+05 +Electron-triton_mean_free_path_at_point_31_______________________________ (len_plasma_electron_triton_mean_free_path_profile31)_ 1.72641926345827058e+05 +Electron-triton_mean_free_path_at_point_32_______________________________ (len_plasma_electron_triton_mean_free_path_profile32)_ 1.72553088531034708e+05 +Electron-triton_mean_free_path_at_point_33_______________________________ (len_plasma_electron_triton_mean_free_path_profile33)_ 1.72461457565895515e+05 +Electron-triton_mean_free_path_at_point_34_______________________________ (len_plasma_electron_triton_mean_free_path_profile34)_ 1.72367035990991804e+05 +Electron-triton_mean_free_path_at_point_35_______________________________ (len_plasma_electron_triton_mean_free_path_profile35)_ 1.72269826425104635e+05 +Electron-triton_mean_free_path_at_point_36_______________________________ (len_plasma_electron_triton_mean_free_path_profile36)_ 1.72169831565212313e+05 +Electron-triton_mean_free_path_at_point_37_______________________________ (len_plasma_electron_triton_mean_free_path_profile37)_ 1.72067054186495079e+05 +Electron-triton_mean_free_path_at_point_38_______________________________ (len_plasma_electron_triton_mean_free_path_profile38)_ 1.71961497142335516e+05 +Electron-triton_mean_free_path_at_point_39_______________________________ (len_plasma_electron_triton_mean_free_path_profile39)_ 1.71853163364321081e+05 +Electron-triton_mean_free_path_at_point_40_______________________________ (len_plasma_electron_triton_mean_free_path_profile40)_ 1.71742055862246780e+05 +Electron-triton_mean_free_path_at_point_41_______________________________ (len_plasma_electron_triton_mean_free_path_profile41)_ 1.71628177724117035e+05 +Electron-triton_mean_free_path_at_point_42_______________________________ (len_plasma_electron_triton_mean_free_path_profile42)_ 1.71511532116146933e+05 +Electron-triton_mean_free_path_at_point_43_______________________________ (len_plasma_electron_triton_mean_free_path_profile43)_ 1.71392122282765369e+05 +Electron-triton_mean_free_path_at_point_44_______________________________ (len_plasma_electron_triton_mean_free_path_profile44)_ 1.71269951546617202e+05 +Electron-triton_mean_free_path_at_point_45_______________________________ (len_plasma_electron_triton_mean_free_path_profile45)_ 1.71145023308563977e+05 +Electron-triton_mean_free_path_at_point_46_______________________________ (len_plasma_electron_triton_mean_free_path_profile46)_ 1.71017341047688155e+05 +Electron-triton_mean_free_path_at_point_47_______________________________ (len_plasma_electron_triton_mean_free_path_profile47)_ 1.70886908321293478e+05 +Electron-triton_mean_free_path_at_point_48_______________________________ (len_plasma_electron_triton_mean_free_path_profile48)_ 1.70753728764907690e+05 +Electron-triton_mean_free_path_at_point_49_______________________________ (len_plasma_electron_triton_mean_free_path_profile49)_ 1.70617806092284416e+05 +Electron-triton_mean_free_path_at_point_50_______________________________ (len_plasma_electron_triton_mean_free_path_profile50)_ 1.70479144095405238e+05 +Electron-triton_mean_free_path_at_point_51_______________________________ (len_plasma_electron_triton_mean_free_path_profile51)_ 1.70337746644482308e+05 +Electron-triton_mean_free_path_at_point_52_______________________________ (len_plasma_electron_triton_mean_free_path_profile52)_ 1.70193617687959049e+05 +Electron-triton_mean_free_path_at_point_53_______________________________ (len_plasma_electron_triton_mean_free_path_profile53)_ 1.70046761252512923e+05 +Electron-triton_mean_free_path_at_point_54_______________________________ (len_plasma_electron_triton_mean_free_path_profile54)_ 1.69897181443056877e+05 +Electron-triton_mean_free_path_at_point_55_______________________________ (len_plasma_electron_triton_mean_free_path_profile55)_ 1.69744882442741713e+05 +Electron-triton_mean_free_path_at_point_56_______________________________ (len_plasma_electron_triton_mean_free_path_profile56)_ 1.69589868512956979e+05 +Electron-triton_mean_free_path_at_point_57_______________________________ (len_plasma_electron_triton_mean_free_path_profile57)_ 1.69432143993333651e+05 +Electron-triton_mean_free_path_at_point_58_______________________________ (len_plasma_electron_triton_mean_free_path_profile58)_ 1.69271713301745069e+05 +Electron-triton_mean_free_path_at_point_59_______________________________ (len_plasma_electron_triton_mean_free_path_profile59)_ 1.69108580934308062e+05 +Electron-triton_mean_free_path_at_point_60_______________________________ (len_plasma_electron_triton_mean_free_path_profile60)_ 1.68942751465385925e+05 +Electron-triton_mean_free_path_at_point_61_______________________________ (len_plasma_electron_triton_mean_free_path_profile61)_ 1.68774229547588009e+05 +Electron-triton_mean_free_path_at_point_62_______________________________ (len_plasma_electron_triton_mean_free_path_profile62)_ 1.68603019911772135e+05 +Electron-triton_mean_free_path_at_point_63_______________________________ (len_plasma_electron_triton_mean_free_path_profile63)_ 1.68429127367045789e+05 +Electron-triton_mean_free_path_at_point_64_______________________________ (len_plasma_electron_triton_mean_free_path_profile64)_ 1.68252556800766150e+05 +Electron-triton_mean_free_path_at_point_65_______________________________ (len_plasma_electron_triton_mean_free_path_profile65)_ 1.68073313178542419e+05 +Electron-triton_mean_free_path_at_point_66_______________________________ (len_plasma_electron_triton_mean_free_path_profile66)_ 1.67891401544235763e+05 +Electron-triton_mean_free_path_at_point_67_______________________________ (len_plasma_electron_triton_mean_free_path_profile67)_ 1.67706827019960911e+05 +Electron-triton_mean_free_path_at_point_68_______________________________ (len_plasma_electron_triton_mean_free_path_profile68)_ 1.67519594806085224e+05 +Electron-triton_mean_free_path_at_point_69_______________________________ (len_plasma_electron_triton_mean_free_path_profile69)_ 1.67329710181230243e+05 +Electron-triton_mean_free_path_at_point_70_______________________________ (len_plasma_electron_triton_mean_free_path_profile70)_ 1.67137178502272989e+05 +Electron-triton_mean_free_path_at_point_71_______________________________ (len_plasma_electron_triton_mean_free_path_profile71)_ 1.66942005204343441e+05 +Electron-triton_mean_free_path_at_point_72_______________________________ (len_plasma_electron_triton_mean_free_path_profile72)_ 1.66744195800826797e+05 +Electron-triton_mean_free_path_at_point_73_______________________________ (len_plasma_electron_triton_mean_free_path_profile73)_ 1.66543755883363017e+05 +Electron-triton_mean_free_path_at_point_74_______________________________ (len_plasma_electron_triton_mean_free_path_profile74)_ 1.66340691121845535e+05 +Electron-triton_mean_free_path_at_point_75_______________________________ (len_plasma_electron_triton_mean_free_path_profile75)_ 1.66135007264421118e+05 +Electron-triton_mean_free_path_at_point_76_______________________________ (len_plasma_electron_triton_mean_free_path_profile76)_ 1.65926710137490445e+05 +Electron-triton_mean_free_path_at_point_77_______________________________ (len_plasma_electron_triton_mean_free_path_profile77)_ 1.65715805645704939e+05 +Electron-triton_mean_free_path_at_point_78_______________________________ (len_plasma_electron_triton_mean_free_path_profile78)_ 1.65502299771966849e+05 +Electron-triton_mean_free_path_at_point_79_______________________________ (len_plasma_electron_triton_mean_free_path_profile79)_ 1.65286198577428993e+05 +Electron-triton_mean_free_path_at_point_80_______________________________ (len_plasma_electron_triton_mean_free_path_profile80)_ 1.65067508201490913e+05 +Electron-triton_mean_free_path_at_point_81_______________________________ (len_plasma_electron_triton_mean_free_path_profile81)_ 1.64846234861799632e+05 +Electron-triton_mean_free_path_at_point_82_______________________________ (len_plasma_electron_triton_mean_free_path_profile82)_ 1.64622384854244679e+05 +Electron-triton_mean_free_path_at_point_83_______________________________ (len_plasma_electron_triton_mean_free_path_profile83)_ 1.64395964552959165e+05 +Electron-triton_mean_free_path_at_point_84_______________________________ (len_plasma_electron_triton_mean_free_path_profile84)_ 1.64166980410314252e+05 +Electron-triton_mean_free_path_at_point_85_______________________________ (len_plasma_electron_triton_mean_free_path_profile85)_ 1.63935438956919446e+05 +Electron-triton_mean_free_path_at_point_86_______________________________ (len_plasma_electron_triton_mean_free_path_profile86)_ 1.63701346801615844e+05 +Electron-triton_mean_free_path_at_point_87_______________________________ (len_plasma_electron_triton_mean_free_path_profile87)_ 1.63464710631476046e+05 +Electron-triton_mean_free_path_at_point_88_______________________________ (len_plasma_electron_triton_mean_free_path_profile88)_ 1.63225537211799237e+05 +Electron-triton_mean_free_path_at_point_89_______________________________ (len_plasma_electron_triton_mean_free_path_profile89)_ 1.62983833386106795e+05 +Electron-triton_mean_free_path_at_point_90_______________________________ (len_plasma_electron_triton_mean_free_path_profile90)_ 1.62739606076139346e+05 +Electron-triton_mean_free_path_at_point_91_______________________________ (len_plasma_electron_triton_mean_free_path_profile91)_ 1.62492862281850656e+05 +Electron-triton_mean_free_path_at_point_92_______________________________ (len_plasma_electron_triton_mean_free_path_profile92)_ 1.62243609081403731e+05 +Electron-triton_mean_free_path_at_point_93_______________________________ (len_plasma_electron_triton_mean_free_path_profile93)_ 1.61991853631165490e+05 +Electron-triton_mean_free_path_at_point_94_______________________________ (len_plasma_electron_triton_mean_free_path_profile94)_ 1.61737603165701148e+05 +Electron-triton_mean_free_path_at_point_95_______________________________ (len_plasma_electron_triton_mean_free_path_profile95)_ 1.61480864997767552e+05 +Electron-triton_mean_free_path_at_point_96_______________________________ (len_plasma_electron_triton_mean_free_path_profile96)_ 1.61221646518308000e+05 +Electron-triton_mean_free_path_at_point_97_______________________________ (len_plasma_electron_triton_mean_free_path_profile97)_ 1.60959955196445022e+05 +Electron-triton_mean_free_path_at_point_98_______________________________ (len_plasma_electron_triton_mean_free_path_profile98)_ 1.60695798579472903e+05 +Electron-triton_mean_free_path_at_point_99_______________________________ (len_plasma_electron_triton_mean_free_path_profile99)_ 1.60429184292850259e+05 +Electron-triton_mean_free_path_at_point_100______________________________ (len_plasma_electron_triton_mean_free_path_profile100)_ 1.60160120040192618e+05 +Electron-triton_mean_free_path_at_point_101______________________________ (len_plasma_electron_triton_mean_free_path_profile101)_ 1.59888613603264035e+05 +Electron-triton_mean_free_path_at_point_102______________________________ (len_plasma_electron_triton_mean_free_path_profile102)_ 1.59614672841966996e+05 +Electron-triton_mean_free_path_at_point_103______________________________ (len_plasma_electron_triton_mean_free_path_profile103)_ 1.59338305694334762e+05 +Electron-triton_mean_free_path_at_point_104______________________________ (len_plasma_electron_triton_mean_free_path_profile104)_ 1.59059520176521182e+05 +Electron-triton_mean_free_path_at_point_105______________________________ (len_plasma_electron_triton_mean_free_path_profile105)_ 1.58778324382789346e+05 +Electron-triton_mean_free_path_at_point_106______________________________ (len_plasma_electron_triton_mean_free_path_profile106)_ 1.58494726485502353e+05 +Electron-triton_mean_free_path_at_point_107______________________________ (len_plasma_electron_triton_mean_free_path_profile107)_ 1.58208734735111706e+05 +Electron-triton_mean_free_path_at_point_108______________________________ (len_plasma_electron_triton_mean_free_path_profile108)_ 1.57920357460144442e+05 +Electron-triton_mean_free_path_at_point_109______________________________ (len_plasma_electron_triton_mean_free_path_profile109)_ 1.57629603067193180e+05 +Electron-triton_mean_free_path_at_point_110______________________________ (len_plasma_electron_triton_mean_free_path_profile110)_ 1.57336480040900351e+05 +Electron-triton_mean_free_path_at_point_111______________________________ (len_plasma_electron_triton_mean_free_path_profile111)_ 1.57040996943947452e+05 +Electron-triton_mean_free_path_at_point_112______________________________ (len_plasma_electron_triton_mean_free_path_profile112)_ 1.56743162417039333e+05 +Electron-triton_mean_free_path_at_point_113______________________________ (len_plasma_electron_triton_mean_free_path_profile113)_ 1.56442985178890667e+05 +Electron-triton_mean_free_path_at_point_114______________________________ (len_plasma_electron_triton_mean_free_path_profile114)_ 1.56140474026209937e+05 +Electron-triton_mean_free_path_at_point_115______________________________ (len_plasma_electron_triton_mean_free_path_profile115)_ 1.55835637833685527e+05 +Electron-triton_mean_free_path_at_point_116______________________________ (len_plasma_electron_triton_mean_free_path_profile116)_ 1.55528485553965933e+05 +Electron-triton_mean_free_path_at_point_117______________________________ (len_plasma_electron_triton_mean_free_path_profile117)_ 1.55219026217646810e+05 +Electron-triton_mean_free_path_at_point_118______________________________ (len_plasma_electron_triton_mean_free_path_profile118)_ 1.54907268933249812e+05 +Electron-triton_mean_free_path_at_point_119______________________________ (len_plasma_electron_triton_mean_free_path_profile119)_ 1.54593222887206939e+05 +Electron-triton_mean_free_path_at_point_120______________________________ (len_plasma_electron_triton_mean_free_path_profile120)_ 1.54276897343838529e+05 +Electron-triton_mean_free_path_at_point_121______________________________ (len_plasma_electron_triton_mean_free_path_profile121)_ 1.53958301645337138e+05 +Electron-triton_mean_free_path_at_point_122______________________________ (len_plasma_electron_triton_mean_free_path_profile122)_ 1.53637445211743587e+05 +Electron-triton_mean_free_path_at_point_123______________________________ (len_plasma_electron_triton_mean_free_path_profile123)_ 1.53314337540928216e+05 +Electron-triton_mean_free_path_at_point_124______________________________ (len_plasma_electron_triton_mean_free_path_profile124)_ 1.52988988208567374e+05 +Electron-triton_mean_free_path_at_point_125______________________________ (len_plasma_electron_triton_mean_free_path_profile125)_ 1.52661406868121441e+05 +Electron-triton_mean_free_path_at_point_126______________________________ (len_plasma_electron_triton_mean_free_path_profile126)_ 1.52331603250811255e+05 +Electron-triton_mean_free_path_at_point_127______________________________ (len_plasma_electron_triton_mean_free_path_profile127)_ 1.51999587165593286e+05 +Electron-triton_mean_free_path_at_point_128______________________________ (len_plasma_electron_triton_mean_free_path_profile128)_ 1.51665368499135191e+05 +Electron-triton_mean_free_path_at_point_129______________________________ (len_plasma_electron_triton_mean_free_path_profile129)_ 1.51328957215789065e+05 +Electron-triton_mean_free_path_at_point_130______________________________ (len_plasma_electron_triton_mean_free_path_profile130)_ 1.50990363357564725e+05 +Electron-triton_mean_free_path_at_point_131______________________________ (len_plasma_electron_triton_mean_free_path_profile131)_ 1.50649597044103255e+05 +Electron-triton_mean_free_path_at_point_132______________________________ (len_plasma_electron_triton_mean_free_path_profile132)_ 1.50306668472645368e+05 +Electron-triton_mean_free_path_at_point_133______________________________ (len_plasma_electron_triton_mean_free_path_profile133)_ 1.49961587918006233e+05 +Electron-triton_mean_free_path_at_point_134______________________________ (len_plasma_electron_triton_mean_free_path_profile134)_ 1.49614365732540260e+05 +Electron-triton_mean_free_path_at_point_135______________________________ (len_plasma_electron_triton_mean_free_path_profile135)_ 1.49265012346113421e+05 +Electron-triton_mean_free_path_at_point_136______________________________ (len_plasma_electron_triton_mean_free_path_profile136)_ 1.48913538266068819e+05 +Electron-triton_mean_free_path_at_point_137______________________________ (len_plasma_electron_triton_mean_free_path_profile137)_ 1.48559954077194328e+05 +Electron-triton_mean_free_path_at_point_138______________________________ (len_plasma_electron_triton_mean_free_path_profile138)_ 1.48204270441686502e+05 +Electron-triton_mean_free_path_at_point_139______________________________ (len_plasma_electron_triton_mean_free_path_profile139)_ 1.47846498099117540e+05 +Electron-triton_mean_free_path_at_point_140______________________________ (len_plasma_electron_triton_mean_free_path_profile140)_ 1.47486647866397892e+05 +Electron-triton_mean_free_path_at_point_141______________________________ (len_plasma_electron_triton_mean_free_path_profile141)_ 1.47124730637737550e+05 +Electron-triton_mean_free_path_at_point_142______________________________ (len_plasma_electron_triton_mean_free_path_profile142)_ 1.46760757384608267e+05 +Electron-triton_mean_free_path_at_point_143______________________________ (len_plasma_electron_triton_mean_free_path_profile143)_ 1.46394739155705029e+05 +Electron-triton_mean_free_path_at_point_144______________________________ (len_plasma_electron_triton_mean_free_path_profile144)_ 1.46026687076902890e+05 +Electron-triton_mean_free_path_at_point_145______________________________ (len_plasma_electron_triton_mean_free_path_profile145)_ 1.45656612351216172e+05 +Electron-triton_mean_free_path_at_point_146______________________________ (len_plasma_electron_triton_mean_free_path_profile146)_ 1.45284526258755504e+05 +Electron-triton_mean_free_path_at_point_147______________________________ (len_plasma_electron_triton_mean_free_path_profile147)_ 1.44910440156682947e+05 +Electron-triton_mean_free_path_at_point_148______________________________ (len_plasma_electron_triton_mean_free_path_profile148)_ 1.44534365479165892e+05 +Electron-triton_mean_free_path_at_point_149______________________________ (len_plasma_electron_triton_mean_free_path_profile149)_ 1.44156313737331307e+05 +Electron-triton_mean_free_path_at_point_150______________________________ (len_plasma_electron_triton_mean_free_path_profile150)_ 1.43776296519216092e+05 +Electron-triton_mean_free_path_at_point_151______________________________ (len_plasma_electron_triton_mean_free_path_profile151)_ 1.43394325489719369e+05 +Electron-triton_mean_free_path_at_point_152______________________________ (len_plasma_electron_triton_mean_free_path_profile152)_ 1.43010412390549929e+05 +Electron-triton_mean_free_path_at_point_153______________________________ (len_plasma_electron_triton_mean_free_path_profile153)_ 1.42624569040175615e+05 +Electron-triton_mean_free_path_at_point_154______________________________ (len_plasma_electron_triton_mean_free_path_profile154)_ 1.42236807333768782e+05 +Electron-triton_mean_free_path_at_point_155______________________________ (len_plasma_electron_triton_mean_free_path_profile155)_ 1.41847139243151760e+05 +Electron-triton_mean_free_path_at_point_156______________________________ (len_plasma_electron_triton_mean_free_path_profile156)_ 1.41455576816740475e+05 +Electron-triton_mean_free_path_at_point_157______________________________ (len_plasma_electron_triton_mean_free_path_profile157)_ 1.41062132179487118e+05 +Electron-triton_mean_free_path_at_point_158______________________________ (len_plasma_electron_triton_mean_free_path_profile158)_ 1.40666817532820220e+05 +Electron-triton_mean_free_path_at_point_159______________________________ (len_plasma_electron_triton_mean_free_path_profile159)_ 1.40269645154584723e+05 +Electron-triton_mean_free_path_at_point_160______________________________ (len_plasma_electron_triton_mean_free_path_profile160)_ 1.39870627398979093e+05 +Electron-triton_mean_free_path_at_point_161______________________________ (len_plasma_electron_triton_mean_free_path_profile161)_ 1.39469776696491637e+05 +Electron-triton_mean_free_path_at_point_162______________________________ (len_plasma_electron_triton_mean_free_path_profile162)_ 1.39067105553835310e+05 +Electron-triton_mean_free_path_at_point_163______________________________ (len_plasma_electron_triton_mean_free_path_profile163)_ 1.38662626553880662e+05 +Electron-triton_mean_free_path_at_point_164______________________________ (len_plasma_electron_triton_mean_free_path_profile164)_ 1.38256352355587442e+05 +Electron-triton_mean_free_path_at_point_165______________________________ (len_plasma_electron_triton_mean_free_path_profile165)_ 1.37848295693933876e+05 +Electron-triton_mean_free_path_at_point_166______________________________ (len_plasma_electron_triton_mean_free_path_profile166)_ 1.37438469379845308e+05 +Electron-triton_mean_free_path_at_point_167______________________________ (len_plasma_electron_triton_mean_free_path_profile167)_ 1.37026886300119688e+05 +Electron-triton_mean_free_path_at_point_168______________________________ (len_plasma_electron_triton_mean_free_path_profile168)_ 1.36613559417352604e+05 +Electron-triton_mean_free_path_at_point_169______________________________ (len_plasma_electron_triton_mean_free_path_profile169)_ 1.36198501769861003e+05 +Electron-triton_mean_free_path_at_point_170______________________________ (len_plasma_electron_triton_mean_free_path_profile170)_ 1.35781726471601636e+05 +Electron-triton_mean_free_path_at_point_171______________________________ (len_plasma_electron_triton_mean_free_path_profile171)_ 1.35363246712093300e+05 +Electron-triton_mean_free_path_at_point_172______________________________ (len_plasma_electron_triton_mean_free_path_profile172)_ 1.34943075756331527e+05 +Electron-triton_mean_free_path_at_point_173______________________________ (len_plasma_electron_triton_mean_free_path_profile173)_ 1.34521226944705762e+05 +Electron-triton_mean_free_path_at_point_174______________________________ (len_plasma_electron_triton_mean_free_path_profile174)_ 1.34097713692911173e+05 +Electron-triton_mean_free_path_at_point_175______________________________ (len_plasma_electron_triton_mean_free_path_profile175)_ 1.33672549491861253e+05 +Electron-triton_mean_free_path_at_point_176______________________________ (len_plasma_electron_triton_mean_free_path_profile176)_ 1.33245747907597281e+05 +Electron-triton_mean_free_path_at_point_177______________________________ (len_plasma_electron_triton_mean_free_path_profile177)_ 1.32817322581194632e+05 +Electron-triton_mean_free_path_at_point_178______________________________ (len_plasma_electron_triton_mean_free_path_profile178)_ 1.32387287228669215e+05 +Electron-triton_mean_free_path_at_point_179______________________________ (len_plasma_electron_triton_mean_free_path_profile179)_ 1.31955655640880112e+05 +Electron-triton_mean_free_path_at_point_180______________________________ (len_plasma_electron_triton_mean_free_path_profile180)_ 1.31522441683431214e+05 +Electron-triton_mean_free_path_at_point_181______________________________ (len_plasma_electron_triton_mean_free_path_profile181)_ 1.31087659296569589e+05 +Electron-triton_mean_free_path_at_point_182______________________________ (len_plasma_electron_triton_mean_free_path_profile182)_ 1.30651322495081753e+05 +Electron-triton_mean_free_path_at_point_183______________________________ (len_plasma_electron_triton_mean_free_path_profile183)_ 1.30213445368189641e+05 +Electron-triton_mean_free_path_at_point_184______________________________ (len_plasma_electron_triton_mean_free_path_profile184)_ 1.29774042079440740e+05 +Electron-triton_mean_free_path_at_point_185______________________________ (len_plasma_electron_triton_mean_free_path_profile185)_ 1.29333126866600040e+05 +Electron-triton_mean_free_path_at_point_186______________________________ (len_plasma_electron_triton_mean_free_path_profile186)_ 1.28890714041536325e+05 +Electron-triton_mean_free_path_at_point_187______________________________ (len_plasma_electron_triton_mean_free_path_profile187)_ 1.28446817990106734e+05 +Electron-triton_mean_free_path_at_point_188______________________________ (len_plasma_electron_triton_mean_free_path_profile188)_ 1.28001453172041176e+05 +Electron-triton_mean_free_path_at_point_189______________________________ (len_plasma_electron_triton_mean_free_path_profile189)_ 1.27554634120820367e+05 +Electron-triton_mean_free_path_at_point_190______________________________ (len_plasma_electron_triton_mean_free_path_profile190)_ 1.27106375443555356e+05 +Electron-triton_mean_free_path_at_point_191______________________________ (len_plasma_electron_triton_mean_free_path_profile191)_ 1.26656691820861874e+05 +Electron-triton_mean_free_path_at_point_192______________________________ (len_plasma_electron_triton_mean_free_path_profile192)_ 1.26205598006732442e+05 +Electron-triton_mean_free_path_at_point_193______________________________ (len_plasma_electron_triton_mean_free_path_profile193)_ 1.25753108828406810e+05 +Electron-triton_mean_free_path_at_point_194______________________________ (len_plasma_electron_triton_mean_free_path_profile194)_ 1.25299239186239269e+05 +Electron-triton_mean_free_path_at_point_195______________________________ (len_plasma_electron_triton_mean_free_path_profile195)_ 1.24844004053562414e+05 +Electron-triton_mean_free_path_at_point_196______________________________ (len_plasma_electron_triton_mean_free_path_profile196)_ 1.24387418476550549e+05 +Electron-triton_mean_free_path_at_point_197______________________________ (len_plasma_electron_triton_mean_free_path_profile197)_ 1.23929497574075547e+05 +Electron-triton_mean_free_path_at_point_198______________________________ (len_plasma_electron_triton_mean_free_path_profile198)_ 1.23470256537567009e+05 +Electron-triton_mean_free_path_at_point_199______________________________ (len_plasma_electron_triton_mean_free_path_profile199)_ 1.23009710630861387e+05 +Electron-triton_mean_free_path_at_point_200______________________________ (len_plasma_electron_triton_mean_free_path_profile200)_ 1.22547875190055158e+05 +Electron-triton_mean_free_path_at_point_201______________________________ (len_plasma_electron_triton_mean_free_path_profile201)_ 1.22084765623351166e+05 +Electron-triton_mean_free_path_at_point_202______________________________ (len_plasma_electron_triton_mean_free_path_profile202)_ 1.21620397410902355e+05 +Electron-triton_mean_free_path_at_point_203______________________________ (len_plasma_electron_triton_mean_free_path_profile203)_ 1.21154786104653249e+05 +Electron-triton_mean_free_path_at_point_204______________________________ (len_plasma_electron_triton_mean_free_path_profile204)_ 1.20687947328178750e+05 +Electron-triton_mean_free_path_at_point_205______________________________ (len_plasma_electron_triton_mean_free_path_profile205)_ 1.20219896776518042e+05 +Electron-triton_mean_free_path_at_point_206______________________________ (len_plasma_electron_triton_mean_free_path_profile206)_ 1.19750650216006761e+05 +Electron-triton_mean_free_path_at_point_207______________________________ (len_plasma_electron_triton_mean_free_path_profile207)_ 1.19280223484105125e+05 +Electron-triton_mean_free_path_at_point_208______________________________ (len_plasma_electron_triton_mean_free_path_profile208)_ 1.18808632489223179e+05 +Electron-triton_mean_free_path_at_point_209______________________________ (len_plasma_electron_triton_mean_free_path_profile209)_ 1.18335893210543247e+05 +Electron-triton_mean_free_path_at_point_210______________________________ (len_plasma_electron_triton_mean_free_path_profile210)_ 1.17862021697836593e+05 +Electron-triton_mean_free_path_at_point_211______________________________ (len_plasma_electron_triton_mean_free_path_profile211)_ 1.17387034071280112e+05 +Electron-triton_mean_free_path_at_point_212______________________________ (len_plasma_electron_triton_mean_free_path_profile212)_ 1.16910946521266451e+05 +Electron-triton_mean_free_path_at_point_213______________________________ (len_plasma_electron_triton_mean_free_path_profile213)_ 1.16433775308211814e+05 +Electron-triton_mean_free_path_at_point_214______________________________ (len_plasma_electron_triton_mean_free_path_profile214)_ 1.15955536762361167e+05 +Electron-triton_mean_free_path_at_point_215______________________________ (len_plasma_electron_triton_mean_free_path_profile215)_ 1.15476247283588047e+05 +Electron-triton_mean_free_path_at_point_216______________________________ (len_plasma_electron_triton_mean_free_path_profile216)_ 1.14995923341190864e+05 +Electron-triton_mean_free_path_at_point_217______________________________ (len_plasma_electron_triton_mean_free_path_profile217)_ 1.14514581473686660e+05 +Electron-triton_mean_free_path_at_point_218______________________________ (len_plasma_electron_triton_mean_free_path_profile218)_ 1.14032238288599605e+05 +Electron-triton_mean_free_path_at_point_219______________________________ (len_plasma_electron_triton_mean_free_path_profile219)_ 1.13548910462247528e+05 +Electron-triton_mean_free_path_at_point_220______________________________ (len_plasma_electron_triton_mean_free_path_profile220)_ 1.13064614739521494e+05 +Electron-triton_mean_free_path_at_point_221______________________________ (len_plasma_electron_triton_mean_free_path_profile221)_ 1.12579367933664151e+05 +Electron-triton_mean_free_path_at_point_222______________________________ (len_plasma_electron_triton_mean_free_path_profile222)_ 1.12093186926042719e+05 +Electron-triton_mean_free_path_at_point_223______________________________ (len_plasma_electron_triton_mean_free_path_profile223)_ 1.11606088665918607e+05 +Electron-triton_mean_free_path_at_point_224______________________________ (len_plasma_electron_triton_mean_free_path_profile224)_ 1.11118090170211712e+05 +Electron-triton_mean_free_path_at_point_225______________________________ (len_plasma_electron_triton_mean_free_path_profile225)_ 1.10629208523260910e+05 +Electron-triton_mean_free_path_at_point_226______________________________ (len_plasma_electron_triton_mean_free_path_profile226)_ 1.10139460876581434e+05 +Electron-triton_mean_free_path_at_point_227______________________________ (len_plasma_electron_triton_mean_free_path_profile227)_ 1.09648864448616514e+05 +Electron-triton_mean_free_path_at_point_228______________________________ (len_plasma_electron_triton_mean_free_path_profile228)_ 1.09157436524484103e+05 +Electron-triton_mean_free_path_at_point_229______________________________ (len_plasma_electron_triton_mean_free_path_profile229)_ 1.08665194455722027e+05 +Electron-triton_mean_free_path_at_point_230______________________________ (len_plasma_electron_triton_mean_free_path_profile230)_ 1.08172155660024800e+05 +Electron-triton_mean_free_path_at_point_231______________________________ (len_plasma_electron_triton_mean_free_path_profile231)_ 1.07678337620977982e+05 +Electron-triton_mean_free_path_at_point_232______________________________ (len_plasma_electron_triton_mean_free_path_profile232)_ 1.07183757887788961e+05 +Electron-triton_mean_free_path_at_point_233______________________________ (len_plasma_electron_triton_mean_free_path_profile233)_ 1.06688434075008438e+05 +Electron-triton_mean_free_path_at_point_234______________________________ (len_plasma_electron_triton_mean_free_path_profile234)_ 1.06192383862254195e+05 +Electron-triton_mean_free_path_at_point_235______________________________ (len_plasma_electron_triton_mean_free_path_profile235)_ 1.05695624993923004e+05 +Electron-triton_mean_free_path_at_point_236______________________________ (len_plasma_electron_triton_mean_free_path_profile236)_ 1.05198175278901937e+05 +Electron-triton_mean_free_path_at_point_237______________________________ (len_plasma_electron_triton_mean_free_path_profile237)_ 1.04700052590273117e+05 +Electron-triton_mean_free_path_at_point_238______________________________ (len_plasma_electron_triton_mean_free_path_profile238)_ 1.04201274865013795e+05 +Electron-triton_mean_free_path_at_point_239______________________________ (len_plasma_electron_triton_mean_free_path_profile239)_ 1.03701860103690415e+05 +Electron-triton_mean_free_path_at_point_240______________________________ (len_plasma_electron_triton_mean_free_path_profile240)_ 1.03201826370149967e+05 +Electron-triton_mean_free_path_at_point_241______________________________ (len_plasma_electron_triton_mean_free_path_profile241)_ 1.02701191791202582e+05 +Electron-triton_mean_free_path_at_point_242______________________________ (len_plasma_electron_triton_mean_free_path_profile242)_ 1.02199974556301255e+05 +Electron-triton_mean_free_path_at_point_243______________________________ (len_plasma_electron_triton_mean_free_path_profile243)_ 1.01698192917215594e+05 +Electron-triton_mean_free_path_at_point_244______________________________ (len_plasma_electron_triton_mean_free_path_profile244)_ 1.01195865187699499e+05 +Electron-triton_mean_free_path_at_point_245______________________________ (len_plasma_electron_triton_mean_free_path_profile245)_ 1.00693009743154034e+05 +Electron-triton_mean_free_path_at_point_246______________________________ (len_plasma_electron_triton_mean_free_path_profile246)_ 1.00189645020284574e+05 +Electron-triton_mean_free_path_at_point_247______________________________ (len_plasma_electron_triton_mean_free_path_profile247)_ 9.96857895167517418e+04 +Electron-triton_mean_free_path_at_point_248______________________________ (len_plasma_electron_triton_mean_free_path_profile248)_ 9.91814617908170330e+04 +Electron-triton_mean_free_path_at_point_249______________________________ (len_plasma_electron_triton_mean_free_path_profile249)_ 9.86766804609821847e+04 +Electron-triton_mean_free_path_at_point_250______________________________ (len_plasma_electron_triton_mean_free_path_profile250)_ 9.81714642056229641e+04 +Electron-triton_mean_free_path_at_point_251______________________________ (len_plasma_electron_triton_mean_free_path_profile251)_ 9.76658317626175995e+04 +Electron-triton_mean_free_path_at_point_252______________________________ (len_plasma_electron_triton_mean_free_path_profile252)_ 9.71598019289678195e+04 +Electron-triton_mean_free_path_at_point_253______________________________ (len_plasma_electron_triton_mean_free_path_profile253)_ 9.66533935604138387e+04 +Electron-triton_mean_free_path_at_point_254______________________________ (len_plasma_electron_triton_mean_free_path_profile254)_ 9.61466255710455443e+04 +Electron-triton_mean_free_path_at_point_255______________________________ (len_plasma_electron_triton_mean_free_path_profile255)_ 9.56395169329029595e+04 +Electron-triton_mean_free_path_at_point_256______________________________ (len_plasma_electron_triton_mean_free_path_profile256)_ 9.51320866755757452e+04 +Electron-triton_mean_free_path_at_point_257______________________________ (len_plasma_electron_triton_mean_free_path_profile257)_ 9.46243538857903186e+04 +Electron-triton_mean_free_path_at_point_258______________________________ (len_plasma_electron_triton_mean_free_path_profile258)_ 9.41163377069969720e+04 +Electron-triton_mean_free_path_at_point_259______________________________ (len_plasma_electron_triton_mean_free_path_profile259)_ 9.36080573389439232e+04 +Electron-triton_mean_free_path_at_point_260______________________________ (len_plasma_electron_triton_mean_free_path_profile260)_ 9.30995320372495480e+04 +Electron-triton_mean_free_path_at_point_261______________________________ (len_plasma_electron_triton_mean_free_path_profile261)_ 9.25907811129653855e+04 +Electron-triton_mean_free_path_at_point_262______________________________ (len_plasma_electron_triton_mean_free_path_profile262)_ 9.20818239321338915e+04 +Electron-triton_mean_free_path_at_point_263______________________________ (len_plasma_electron_triton_mean_free_path_profile263)_ 9.15726799153369793e+04 +Electron-triton_mean_free_path_at_point_264______________________________ (len_plasma_electron_triton_mean_free_path_profile264)_ 9.10633685372397886e+04 +Electron-triton_mean_free_path_at_point_265______________________________ (len_plasma_electron_triton_mean_free_path_profile265)_ 9.05539093261265371e+04 +Electron-triton_mean_free_path_at_point_266______________________________ (len_plasma_electron_triton_mean_free_path_profile266)_ 9.00443218634293589e+04 +Electron-triton_mean_free_path_at_point_267______________________________ (len_plasma_electron_triton_mean_free_path_profile267)_ 8.95346257832496194e+04 +Electron-triton_mean_free_path_at_point_268______________________________ (len_plasma_electron_triton_mean_free_path_profile268)_ 8.90248407718729140e+04 +Electron-triton_mean_free_path_at_point_269______________________________ (len_plasma_electron_triton_mean_free_path_profile269)_ 8.85149865672739979e+04 +Electron-triton_mean_free_path_at_point_270______________________________ (len_plasma_electron_triton_mean_free_path_profile270)_ 8.80050829586190084e+04 +Electron-triton_mean_free_path_at_point_271______________________________ (len_plasma_electron_triton_mean_free_path_profile271)_ 8.74951497857550421e+04 +Electron-triton_mean_free_path_at_point_272______________________________ (len_plasma_electron_triton_mean_free_path_profile272)_ 8.69852069386952644e+04 +Electron-triton_mean_free_path_at_point_273______________________________ (len_plasma_electron_triton_mean_free_path_profile273)_ 8.64752743570961611e+04 +Electron-triton_mean_free_path_at_point_274______________________________ (len_plasma_electron_triton_mean_free_path_profile274)_ 8.59653720297249529e+04 +Electron-triton_mean_free_path_at_point_275______________________________ (len_plasma_electron_triton_mean_free_path_profile275)_ 8.54555199939220765e+04 +Electron-triton_mean_free_path_at_point_276______________________________ (len_plasma_electron_triton_mean_free_path_profile276)_ 8.49457383350536984e+04 +Electron-triton_mean_free_path_at_point_277______________________________ (len_plasma_electron_triton_mean_free_path_profile277)_ 8.44360471859561803e+04 +Electron-triton_mean_free_path_at_point_278______________________________ (len_plasma_electron_triton_mean_free_path_profile278)_ 8.39264667263745359e+04 +Electron-triton_mean_free_path_at_point_279______________________________ (len_plasma_electron_triton_mean_free_path_profile279)_ 8.34170171823901765e+04 +Electron-triton_mean_free_path_at_point_280______________________________ (len_plasma_electron_triton_mean_free_path_profile280)_ 8.29077188258418319e+04 +Electron-triton_mean_free_path_at_point_281______________________________ (len_plasma_electron_triton_mean_free_path_profile281)_ 8.23985919737388467e+04 +Electron-triton_mean_free_path_at_point_282______________________________ (len_plasma_electron_triton_mean_free_path_profile282)_ 8.18896569876649883e+04 +Electron-triton_mean_free_path_at_point_283______________________________ (len_plasma_electron_triton_mean_free_path_profile283)_ 8.13809342731728393e+04 +Electron-triton_mean_free_path_at_point_284______________________________ (len_plasma_electron_triton_mean_free_path_profile284)_ 8.08724442791733600e+04 +Electron-triton_mean_free_path_at_point_285______________________________ (len_plasma_electron_triton_mean_free_path_profile285)_ 8.03642074973123526e+04 +Electron-triton_mean_free_path_at_point_286______________________________ (len_plasma_electron_triton_mean_free_path_profile286)_ 7.98562444613428524e+04 +Electron-triton_mean_free_path_at_point_287______________________________ (len_plasma_electron_triton_mean_free_path_profile287)_ 7.93485757464841590e+04 +Electron-triton_mean_free_path_at_point_288______________________________ (len_plasma_electron_triton_mean_free_path_profile288)_ 7.88412219687764155e+04 +Electron-triton_mean_free_path_at_point_289______________________________ (len_plasma_electron_triton_mean_free_path_profile289)_ 7.83342037844237639e+04 +Electron-triton_mean_free_path_at_point_290______________________________ (len_plasma_electron_triton_mean_free_path_profile290)_ 7.78275418891298759e+04 +Electron-triton_mean_free_path_at_point_291______________________________ (len_plasma_electron_triton_mean_free_path_profile291)_ 7.73212570174233551e+04 +Electron-triton_mean_free_path_at_point_292______________________________ (len_plasma_electron_triton_mean_free_path_profile292)_ 7.68153699419762997e+04 +Electron-triton_mean_free_path_at_point_293______________________________ (len_plasma_electron_triton_mean_free_path_profile293)_ 7.63099014729113405e+04 +Electron-triton_mean_free_path_at_point_294______________________________ (len_plasma_electron_triton_mean_free_path_profile294)_ 7.58048724571021303e+04 +Electron-triton_mean_free_path_at_point_295______________________________ (len_plasma_electron_triton_mean_free_path_profile295)_ 7.53003037774623517e+04 +Electron-triton_mean_free_path_at_point_296______________________________ (len_plasma_electron_triton_mean_free_path_profile296)_ 7.47962163522280025e+04 +Electron-triton_mean_free_path_at_point_297______________________________ (len_plasma_electron_triton_mean_free_path_profile297)_ 7.42926311342283880e+04 +Electron-triton_mean_free_path_at_point_298______________________________ (len_plasma_electron_triton_mean_free_path_profile298)_ 7.37895691101498523e+04 +Electron-triton_mean_free_path_at_point_299______________________________ (len_plasma_electron_triton_mean_free_path_profile299)_ 7.32870512997889309e+04 +Electron-triton_mean_free_path_at_point_300______________________________ (len_plasma_electron_triton_mean_free_path_profile300)_ 7.27850987552967417e+04 +Electron-triton_mean_free_path_at_point_301______________________________ (len_plasma_electron_triton_mean_free_path_profile301)_ 7.22837325604141370e+04 +Electron-triton_mean_free_path_at_point_302______________________________ (len_plasma_electron_triton_mean_free_path_profile302)_ 7.17829738296986470e+04 +Electron-triton_mean_free_path_at_point_303______________________________ (len_plasma_electron_triton_mean_free_path_profile303)_ 7.12828437077396229e+04 +Electron-triton_mean_free_path_at_point_304______________________________ (len_plasma_electron_triton_mean_free_path_profile304)_ 7.07833633683670923e+04 +Electron-triton_mean_free_path_at_point_305______________________________ (len_plasma_electron_triton_mean_free_path_profile305)_ 7.02845540138501092e+04 +Electron-triton_mean_free_path_at_point_306______________________________ (len_plasma_electron_triton_mean_free_path_profile306)_ 6.97864368740846403e+04 +Electron-triton_mean_free_path_at_point_307______________________________ (len_plasma_electron_triton_mean_free_path_profile307)_ 6.92890332057747146e+04 +Electron-triton_mean_free_path_at_point_308______________________________ (len_plasma_electron_triton_mean_free_path_profile308)_ 6.87923642916027602e+04 +Electron-triton_mean_free_path_at_point_309______________________________ (len_plasma_electron_triton_mean_free_path_profile309)_ 6.82964514393913269e+04 +Electron-triton_mean_free_path_at_point_310______________________________ (len_plasma_electron_triton_mean_free_path_profile310)_ 6.78013159812554804e+04 +Electron-triton_mean_free_path_at_point_311______________________________ (len_plasma_electron_triton_mean_free_path_profile311)_ 6.73069792727468594e+04 +Electron-triton_mean_free_path_at_point_312______________________________ (len_plasma_electron_triton_mean_free_path_profile312)_ 6.68134626919885632e+04 +Electron-triton_mean_free_path_at_point_313______________________________ (len_plasma_electron_triton_mean_free_path_profile313)_ 6.63207876387995057e+04 +Electron-triton_mean_free_path_at_point_314______________________________ (len_plasma_electron_triton_mean_free_path_profile314)_ 6.58289755338134419e+04 +Electron-triton_mean_free_path_at_point_315______________________________ (len_plasma_electron_triton_mean_free_path_profile315)_ 6.53380478175861499e+04 +Electron-triton_mean_free_path_at_point_316______________________________ (len_plasma_electron_triton_mean_free_path_profile316)_ 6.48480259496951403e+04 +Electron-triton_mean_free_path_at_point_317______________________________ (len_plasma_electron_triton_mean_free_path_profile317)_ 6.43589314078324242e+04 +Electron-triton_mean_free_path_at_point_318______________________________ (len_plasma_electron_triton_mean_free_path_profile318)_ 6.38707856868854651e+04 +Electron-triton_mean_free_path_at_point_319______________________________ (len_plasma_electron_triton_mean_free_path_profile319)_ 6.33836102980138676e+04 +Electron-triton_mean_free_path_at_point_320______________________________ (len_plasma_electron_triton_mean_free_path_profile320)_ 6.28974267677159005e+04 +Electron-triton_mean_free_path_at_point_321______________________________ (len_plasma_electron_triton_mean_free_path_profile321)_ 6.24122566368870612e+04 +Electron-triton_mean_free_path_at_point_322______________________________ (len_plasma_electron_triton_mean_free_path_profile322)_ 6.19281214598729857e+04 +Electron-triton_mean_free_path_at_point_323______________________________ (len_plasma_electron_triton_mean_free_path_profile323)_ 6.14450428035120785e+04 +Electron-triton_mean_free_path_at_point_324______________________________ (len_plasma_electron_triton_mean_free_path_profile324)_ 6.09630422461738272e+04 +Electron-triton_mean_free_path_at_point_325______________________________ (len_plasma_electron_triton_mean_free_path_profile325)_ 6.04821413767893609e+04 +Electron-triton_mean_free_path_at_point_326______________________________ (len_plasma_electron_triton_mean_free_path_profile326)_ 6.00023617938733878e+04 +Electron-triton_mean_free_path_at_point_327______________________________ (len_plasma_electron_triton_mean_free_path_profile327)_ 5.95237251045436715e+04 +Electron-triton_mean_free_path_at_point_328______________________________ (len_plasma_electron_triton_mean_free_path_profile328)_ 5.90462529235314869e+04 +Electron-triton_mean_free_path_at_point_329______________________________ (len_plasma_electron_triton_mean_free_path_profile329)_ 5.85699668721876442e+04 +Electron-triton_mean_free_path_at_point_330______________________________ (len_plasma_electron_triton_mean_free_path_profile330)_ 5.80948885774834343e+04 +Electron-triton_mean_free_path_at_point_331______________________________ (len_plasma_electron_triton_mean_free_path_profile331)_ 5.76210396710064742e+04 +Electron-triton_mean_free_path_at_point_332______________________________ (len_plasma_electron_triton_mean_free_path_profile332)_ 5.71484417879526009e+04 +Electron-triton_mean_free_path_at_point_333______________________________ (len_plasma_electron_triton_mean_free_path_profile333)_ 5.66771165661133709e+04 +Electron-triton_mean_free_path_at_point_334______________________________ (len_plasma_electron_triton_mean_free_path_profile334)_ 5.62070856448604318e+04 +Electron-triton_mean_free_path_at_point_335______________________________ (len_plasma_electron_triton_mean_free_path_profile335)_ 5.57383706641274912e+04 +Electron-triton_mean_free_path_at_point_336______________________________ (len_plasma_electron_triton_mean_free_path_profile336)_ 5.52709932633896751e+04 +Electron-triton_mean_free_path_at_point_337______________________________ (len_plasma_electron_triton_mean_free_path_profile337)_ 5.48049750806415905e+04 +Electron-triton_mean_free_path_at_point_338______________________________ (len_plasma_electron_triton_mean_free_path_profile338)_ 5.43403377513738233e+04 +Electron-triton_mean_free_path_at_point_339______________________________ (len_plasma_electron_triton_mean_free_path_profile339)_ 5.38771029075503975e+04 +Electron-triton_mean_free_path_at_point_340______________________________ (len_plasma_electron_triton_mean_free_path_profile340)_ 5.34152921765852298e+04 +Electron-triton_mean_free_path_at_point_341______________________________ (len_plasma_electron_triton_mean_free_path_profile341)_ 5.29549271803223673e+04 +Electron-triton_mean_free_path_at_point_342______________________________ (len_plasma_electron_triton_mean_free_path_profile342)_ 5.24960295340154262e+04 +Electron-triton_mean_free_path_at_point_343______________________________ (len_plasma_electron_triton_mean_free_path_profile343)_ 5.20386208453131403e+04 +Electron-triton_mean_free_path_at_point_344______________________________ (len_plasma_electron_triton_mean_free_path_profile344)_ 5.15827227132473272e+04 +Electron-triton_mean_free_path_at_point_345______________________________ (len_plasma_electron_triton_mean_free_path_profile345)_ 5.11283567272267464e+04 +Electron-triton_mean_free_path_at_point_346______________________________ (len_plasma_electron_triton_mean_free_path_profile346)_ 5.06755444660369030e+04 +Electron-triton_mean_free_path_at_point_347______________________________ (len_plasma_electron_triton_mean_free_path_profile347)_ 5.02243074968485816e+04 +Electron-triton_mean_free_path_at_point_348______________________________ (len_plasma_electron_triton_mean_free_path_profile348)_ 4.97746673742332641e+04 +Electron-triton_mean_free_path_at_point_349______________________________ (len_plasma_electron_triton_mean_free_path_profile349)_ 4.93266456391912216e+04 +Electron-triton_mean_free_path_at_point_350______________________________ (len_plasma_electron_triton_mean_free_path_profile350)_ 4.88802638181899456e+04 +Electron-triton_mean_free_path_at_point_351______________________________ (len_plasma_electron_triton_mean_free_path_profile351)_ 4.84355434222139011e+04 +Electron-triton_mean_free_path_at_point_352______________________________ (len_plasma_electron_triton_mean_free_path_profile352)_ 4.79925059458342948e+04 +Electron-triton_mean_free_path_at_point_353______________________________ (len_plasma_electron_triton_mean_free_path_profile353)_ 4.75511728662897367e+04 +Electron-triton_mean_free_path_at_point_354______________________________ (len_plasma_electron_triton_mean_free_path_profile354)_ 4.71115656425894995e+04 +Electron-triton_mean_free_path_at_point_355______________________________ (len_plasma_electron_triton_mean_free_path_profile355)_ 4.66737057146346051e+04 +Electron-triton_mean_free_path_at_point_356______________________________ (len_plasma_electron_triton_mean_free_path_profile356)_ 4.62376145023633071e+04 +Electron-triton_mean_free_path_at_point_357______________________________ (len_plasma_electron_triton_mean_free_path_profile357)_ 4.58033134049200235e+04 +Electron-triton_mean_free_path_at_point_358______________________________ (len_plasma_electron_triton_mean_free_path_profile358)_ 4.53708237998526092e+04 +Electron-triton_mean_free_path_at_point_359______________________________ (len_plasma_electron_triton_mean_free_path_profile359)_ 4.49401670423381875e+04 +Electron-triton_mean_free_path_at_point_360______________________________ (len_plasma_electron_triton_mean_free_path_profile360)_ 4.45113644644421074e+04 +Electron-triton_mean_free_path_at_point_361______________________________ (len_plasma_electron_triton_mean_free_path_profile361)_ 4.40844373744119221e+04 +Electron-triton_mean_free_path_at_point_362______________________________ (len_plasma_electron_triton_mean_free_path_profile362)_ 4.36594070560098189e+04 +Electron-triton_mean_free_path_at_point_363______________________________ (len_plasma_electron_triton_mean_free_path_profile363)_ 4.32362947678860000e+04 +Electron-triton_mean_free_path_at_point_364______________________________ (len_plasma_electron_triton_mean_free_path_profile364)_ 4.28151217429985627e+04 +Electron-triton_mean_free_path_at_point_365______________________________ (len_plasma_electron_triton_mean_free_path_profile365)_ 4.23959091880793858e+04 +Electron-triton_mean_free_path_at_point_366______________________________ (len_plasma_electron_triton_mean_free_path_profile366)_ 4.19786782831563905e+04 +Electron-triton_mean_free_path_at_point_367______________________________ (len_plasma_electron_triton_mean_free_path_profile367)_ 4.15634501811278169e+04 +Electron-triton_mean_free_path_at_point_368______________________________ (len_plasma_electron_triton_mean_free_path_profile368)_ 4.11502460074023547e+04 +Electron-triton_mean_free_path_at_point_369______________________________ (len_plasma_electron_triton_mean_free_path_profile369)_ 4.07390868596017390e+04 +Electron-triton_mean_free_path_at_point_370______________________________ (len_plasma_electron_triton_mean_free_path_profile370)_ 4.03299938073361627e+04 +Electron-triton_mean_free_path_at_point_371______________________________ (len_plasma_electron_triton_mean_free_path_profile371)_ 3.99229878920550764e+04 +Electron-triton_mean_free_path_at_point_372______________________________ (len_plasma_electron_triton_mean_free_path_profile372)_ 3.95180901269797905e+04 +Electron-triton_mean_free_path_at_point_373______________________________ (len_plasma_electron_triton_mean_free_path_profile373)_ 3.91153214971250636e+04 +Electron-triton_mean_free_path_at_point_374______________________________ (len_plasma_electron_triton_mean_free_path_profile374)_ 3.87147029594139894e+04 +Electron-triton_mean_free_path_at_point_375______________________________ (len_plasma_electron_triton_mean_free_path_profile375)_ 3.83162554428956719e+04 +Electron-triton_mean_free_path_at_point_376______________________________ (len_plasma_electron_triton_mean_free_path_profile376)_ 3.79199998490708531e+04 +Electron-triton_mean_free_path_at_point_377______________________________ (len_plasma_electron_triton_mean_free_path_profile377)_ 3.75259570523333095e+04 +Electron-triton_mean_free_path_at_point_378______________________________ (len_plasma_electron_triton_mean_free_path_profile378)_ 3.71341479005387882e+04 +Electron-triton_mean_free_path_at_point_379______________________________ (len_plasma_electron_triton_mean_free_path_profile379)_ 3.67445932157062343e+04 +Electron-triton_mean_free_path_at_point_380______________________________ (len_plasma_electron_triton_mean_free_path_profile380)_ 3.63573137948621807e+04 +Electron-triton_mean_free_path_at_point_381______________________________ (len_plasma_electron_triton_mean_free_path_profile381)_ 3.59723304110407335e+04 +Electron-triton_mean_free_path_at_point_382______________________________ (len_plasma_electron_triton_mean_free_path_profile382)_ 3.55896638144472454e+04 +Electron-triton_mean_free_path_at_point_383______________________________ (len_plasma_electron_triton_mean_free_path_profile383)_ 3.52093347337991509e+04 +Electron-triton_mean_free_path_at_point_384______________________________ (len_plasma_electron_triton_mean_free_path_profile384)_ 3.48313638778547684e+04 +Electron-triton_mean_free_path_at_point_385______________________________ (len_plasma_electron_triton_mean_free_path_profile385)_ 3.44557719371464264e+04 +Electron-triton_mean_free_path_at_point_386______________________________ (len_plasma_electron_triton_mean_free_path_profile386)_ 3.40825795859284772e+04 +Electron-triton_mean_free_path_at_point_387______________________________ (len_plasma_electron_triton_mean_free_path_profile387)_ 3.37118074843602881e+04 +Electron-triton_mean_free_path_at_point_388______________________________ (len_plasma_electron_triton_mean_free_path_profile388)_ 3.33434762809344538e+04 +Electron-triton_mean_free_path_at_point_389______________________________ (len_plasma_electron_triton_mean_free_path_profile389)_ 3.29776066151750638e+04 +Electron-triton_mean_free_path_at_point_390______________________________ (len_plasma_electron_triton_mean_free_path_profile390)_ 3.26142191206197858e+04 +Electron-triton_mean_free_path_at_point_391______________________________ (len_plasma_electron_triton_mean_free_path_profile391)_ 3.22533344281082536e+04 +Electron-triton_mean_free_path_at_point_392______________________________ (len_plasma_electron_triton_mean_free_path_profile392)_ 3.18949731693985013e+04 +Electron-triton_mean_free_path_at_point_393______________________________ (len_plasma_electron_triton_mean_free_path_profile393)_ 3.15391559811352090e+04 +Electron-triton_mean_free_path_at_point_394______________________________ (len_plasma_electron_triton_mean_free_path_profile394)_ 3.11859035091953265e+04 +Electron-triton_mean_free_path_at_point_395______________________________ (len_plasma_electron_triton_mean_free_path_profile395)_ 3.08352364134370800e+04 +Electron-triton_mean_free_path_at_point_396______________________________ (len_plasma_electron_triton_mean_free_path_profile396)_ 3.04871753728851327e+04 +Electron-triton_mean_free_path_at_point_397______________________________ (len_plasma_electron_triton_mean_free_path_profile397)_ 3.01417410913786734e+04 +Electron-triton_mean_free_path_at_point_398______________________________ (len_plasma_electron_triton_mean_free_path_profile398)_ 2.97989543037221410e+04 +Electron-triton_mean_free_path_at_point_399______________________________ (len_plasma_electron_triton_mean_free_path_profile399)_ 2.94588357823720908e+04 +Electron-triton_mean_free_path_at_point_400______________________________ (len_plasma_electron_triton_mean_free_path_profile400)_ 2.91214063447019362e+04 +Electron-triton_mean_free_path_at_point_401______________________________ (len_plasma_electron_triton_mean_free_path_profile401)_ 2.87866868608874720e+04 +Electron-triton_mean_free_path_at_point_402______________________________ (len_plasma_electron_triton_mean_free_path_profile402)_ 2.84546982624599441e+04 +Electron-triton_mean_free_path_at_point_403______________________________ (len_plasma_electron_triton_mean_free_path_profile403)_ 2.81254615515784972e+04 +Electron-triton_mean_free_path_at_point_404______________________________ (len_plasma_electron_triton_mean_free_path_profile404)_ 2.77989978110765369e+04 +Electron-triton_mean_free_path_at_point_405______________________________ (len_plasma_electron_triton_mean_free_path_profile405)_ 2.74753282153414912e+04 +Electron-triton_mean_free_path_at_point_406______________________________ (len_plasma_electron_triton_mean_free_path_profile406)_ 2.71544740420963644e+04 +Electron-triton_mean_free_path_at_point_407______________________________ (len_plasma_electron_triton_mean_free_path_profile407)_ 2.68364566851489872e+04 +Electron-triton_mean_free_path_at_point_408______________________________ (len_plasma_electron_triton_mean_free_path_profile408)_ 2.65212976681916443e+04 +Electron-triton_mean_free_path_at_point_409______________________________ (len_plasma_electron_triton_mean_free_path_profile409)_ 2.62090186597313441e+04 +Electron-triton_mean_free_path_at_point_410______________________________ (len_plasma_electron_triton_mean_free_path_profile410)_ 2.58996414892463254e+04 +Electron-triton_mean_free_path_at_point_411______________________________ (len_plasma_electron_triton_mean_free_path_profile411)_ 2.55931881646676593e+04 +Electron-triton_mean_free_path_at_point_412______________________________ (len_plasma_electron_triton_mean_free_path_profile412)_ 2.52896808912966626e+04 +Electron-triton_mean_free_path_at_point_413______________________________ (len_plasma_electron_triton_mean_free_path_profile413)_ 2.49891420922788893e+04 +Electron-triton_mean_free_path_at_point_414______________________________ (len_plasma_electron_triton_mean_free_path_profile414)_ 2.46915944307702957e+04 +Electron-triton_mean_free_path_at_point_415______________________________ (len_plasma_electron_triton_mean_free_path_profile415)_ 2.43970608339380306e+04 +Electron-triton_mean_free_path_at_point_416______________________________ (len_plasma_electron_triton_mean_free_path_profile416)_ 2.41055645189579482e+04 +Electron-triton_mean_free_path_at_point_417______________________________ (len_plasma_electron_triton_mean_free_path_profile417)_ 2.38171290211887645e+04 +Electron-triton_mean_free_path_at_point_418______________________________ (len_plasma_electron_triton_mean_free_path_profile418)_ 2.35317782247159121e+04 +Electron-triton_mean_free_path_at_point_419______________________________ (len_plasma_electron_triton_mean_free_path_profile419)_ 2.32495363954825370e+04 +Electron-triton_mean_free_path_at_point_420______________________________ (len_plasma_electron_triton_mean_free_path_profile420)_ 2.29704282172503772e+04 +Electron-triton_mean_free_path_at_point_421______________________________ (len_plasma_electron_triton_mean_free_path_profile421)_ 2.26944788306548107e+04 +Electron-triton_mean_free_path_at_point_422______________________________ (len_plasma_electron_triton_mean_free_path_profile422)_ 2.24217138756523418e+04 +Electron-triton_mean_free_path_at_point_423______________________________ (len_plasma_electron_triton_mean_free_path_profile423)_ 2.21521595376930236e+04 +Electron-triton_mean_free_path_at_point_424______________________________ (len_plasma_electron_triton_mean_free_path_profile424)_ 2.18858425979853382e+04 +Electron-triton_mean_free_path_at_point_425______________________________ (len_plasma_electron_triton_mean_free_path_profile425)_ 2.16227904882699549e+04 +Electron-triton_mean_free_path_at_point_426______________________________ (len_plasma_electron_triton_mean_free_path_profile426)_ 2.13630313505673039e+04 +Electron-triton_mean_free_path_at_point_427______________________________ (len_plasma_electron_triton_mean_free_path_profile427)_ 2.11065941024194544e+04 +Electron-triton_mean_free_path_at_point_428______________________________ (len_plasma_electron_triton_mean_free_path_profile428)_ 2.08535085082205223e+04 +Electron-triton_mean_free_path_at_point_429______________________________ (len_plasma_electron_triton_mean_free_path_profile429)_ 2.06038052572983397e+04 +Electron-triton_mean_free_path_at_point_430______________________________ (len_plasma_electron_triton_mean_free_path_profile430)_ 2.03575160495052114e+04 +Electron-triton_mean_free_path_at_point_431______________________________ (len_plasma_electron_triton_mean_free_path_profile431)_ 2.01146736891775145e+04 +Electron-triton_mean_free_path_at_point_432______________________________ (len_plasma_electron_triton_mean_free_path_profile432)_ 1.98753121884435750e+04 +Electron-triton_mean_free_path_at_point_433______________________________ (len_plasma_electron_triton_mean_free_path_profile433)_ 1.96394668810020921e+04 +Electron-triton_mean_free_path_at_point_434______________________________ (len_plasma_electron_triton_mean_free_path_profile434)_ 1.94071745476576580e+04 +Electron-triton_mean_free_path_at_point_435______________________________ (len_plasma_electron_triton_mean_free_path_profile435)_ 1.91784735550959849e+04 +Electron-triton_mean_free_path_at_point_436______________________________ (len_plasma_electron_triton_mean_free_path_profile436)_ 1.89534040096148019e+04 +Electron-triton_mean_free_path_at_point_437______________________________ (len_plasma_electron_triton_mean_free_path_profile437)_ 1.87320079277981931e+04 +Electron-triton_mean_free_path_at_point_438______________________________ (len_plasma_electron_triton_mean_free_path_profile438)_ 1.85143294264563556e+04 +Electron-triton_mean_free_path_at_point_439______________________________ (len_plasma_electron_triton_mean_free_path_profile439)_ 1.83004149345433907e+04 +Electron-triton_mean_free_path_at_point_440______________________________ (len_plasma_electron_triton_mean_free_path_profile440)_ 1.80903134302501348e+04 +Electron-triton_mean_free_path_at_point_441______________________________ (len_plasma_electron_triton_mean_free_path_profile441)_ 1.78840767070449037e+04 +Electron-triton_mean_free_path_at_point_442______________________________ (len_plasma_electron_triton_mean_free_path_profile442)_ 1.76817596731498197e+04 +Electron-triton_mean_free_path_at_point_443______________________________ (len_plasma_electron_triton_mean_free_path_profile443)_ 1.74834206898120901e+04 +Electron-triton_mean_free_path_at_point_444______________________________ (len_plasma_electron_triton_mean_free_path_profile444)_ 1.72891219548156696e+04 +Electron-triton_mean_free_path_at_point_445______________________________ (len_plasma_electron_triton_mean_free_path_profile445)_ 1.70989299390307860e+04 +Electron-triton_mean_free_path_at_point_446______________________________ (len_plasma_electron_triton_mean_free_path_profile446)_ 1.69129158855007881e+04 +Electron-triton_mean_free_path_at_point_447______________________________ (len_plasma_electron_triton_mean_free_path_profile447)_ 1.67311563827257523e+04 +Electron-triton_mean_free_path_at_point_448______________________________ (len_plasma_electron_triton_mean_free_path_profile448)_ 1.65537340265719613e+04 +Electron-triton_mean_free_path_at_point_449______________________________ (len_plasma_electron_triton_mean_free_path_profile449)_ 1.63807381888076688e+04 +Electron-triton_mean_free_path_at_point_450______________________________ (len_plasma_electron_triton_mean_free_path_profile450)_ 1.62122659149550036e+04 +Electron-triton_mean_free_path_at_point_451______________________________ (len_plasma_electron_triton_mean_free_path_profile451)_ 1.60484229803255148e+04 +Electron-triton_mean_free_path_at_point_452______________________________ (len_plasma_electron_triton_mean_free_path_profile452)_ 1.58893251414068509e+04 +Electron-triton_mean_free_path_at_point_453______________________________ (len_plasma_electron_triton_mean_free_path_profile453)_ 1.57350996310307382e+04 +Electron-triton_mean_free_path_at_point_454______________________________ (len_plasma_electron_triton_mean_free_path_profile454)_ 1.55858869612928138e+04 +Electron-triton_mean_free_path_at_point_455______________________________ (len_plasma_electron_triton_mean_free_path_profile455)_ 1.54418431200135601e+04 +Electron-triton_mean_free_path_at_point_456______________________________ (len_plasma_electron_triton_mean_free_path_profile456)_ 1.53031422777234002e+04 +Electron-triton_mean_free_path_at_point_457______________________________ (len_plasma_electron_triton_mean_free_path_profile457)_ 1.51699801677388750e+04 +Electron-triton_mean_free_path_at_point_458______________________________ (len_plasma_electron_triton_mean_free_path_profile458)_ 1.50425783701003184e+04 +Electron-triton_mean_free_path_at_point_459______________________________ (len_plasma_electron_triton_mean_free_path_profile459)_ 1.49211898350257252e+04 +Electron-triton_mean_free_path_at_point_460______________________________ (len_plasma_electron_triton_mean_free_path_profile460)_ 1.48061061479354594e+04 +Electron-triton_mean_free_path_at_point_461______________________________ (len_plasma_electron_triton_mean_free_path_profile461)_ 1.46976673118788585e+04 +Electron-triton_mean_free_path_at_point_462______________________________ (len_plasma_electron_triton_mean_free_path_profile462)_ 1.45962752932807998e+04 +Electron-triton_mean_free_path_at_point_463______________________________ (len_plasma_electron_triton_mean_free_path_profile463)_ 1.45024134263661817e+04 +Electron-triton_mean_free_path_at_point_464______________________________ (len_plasma_electron_triton_mean_free_path_profile464)_ 1.44166754050867839e+04 +Electron-triton_mean_free_path_at_point_465______________________________ (len_plasma_electron_triton_mean_free_path_profile465)_ 1.43398109865605184e+04 +Electron-triton_mean_free_path_at_point_466______________________________ (len_plasma_electron_triton_mean_free_path_profile466)_ 1.42728033332543364e+04 +Electron-triton_mean_free_path_at_point_467______________________________ (len_plasma_electron_triton_mean_free_path_profile467)_ 1.42170134741899874e+04 +Electron-triton_mean_free_path_at_point_468______________________________ (len_plasma_electron_triton_mean_free_path_profile468)_ 1.41744934285534582e+04 +Electron-triton_mean_free_path_at_point_469______________________________ (len_plasma_electron_triton_mean_free_path_profile469)_ 1.41488664101074501e+04 +Electron-triton_mean_free_path_at_point_470______________________________ (len_plasma_electron_triton_mean_free_path_profile470)_ 1.41507120070866004e+04 +Electron-triton_mean_free_path_at_point_471______________________________ (len_plasma_electron_triton_mean_free_path_profile471)_ 1.34479521023619673e+04 +Electron-triton_mean_free_path_at_point_472______________________________ (len_plasma_electron_triton_mean_free_path_profile472)_ 1.27541357500320119e+04 +Electron-triton_mean_free_path_at_point_473______________________________ (len_plasma_electron_triton_mean_free_path_profile473)_ 1.20697015272801327e+04 +Electron-triton_mean_free_path_at_point_474______________________________ (len_plasma_electron_triton_mean_free_path_profile474)_ 1.13951150757152263e+04 +Electron-triton_mean_free_path_at_point_475______________________________ (len_plasma_electron_triton_mean_free_path_profile475)_ 1.07308712340156926e+04 +Electron-triton_mean_free_path_at_point_476______________________________ (len_plasma_electron_triton_mean_free_path_profile476)_ 1.00774963801076829e+04 +Electron-triton_mean_free_path_at_point_477______________________________ (len_plasma_electron_triton_mean_free_path_profile477)_ 9.43555100832951393e+03 +Electron-triton_mean_free_path_at_point_478______________________________ (len_plasma_electron_triton_mean_free_path_profile478)_ 8.80563257087409329e+03 +Electron-triton_mean_free_path_at_point_479______________________________ (len_plasma_electron_triton_mean_free_path_profile479)_ 8.18837861738627635e+03 +Electron-triton_mean_free_path_at_point_480______________________________ (len_plasma_electron_triton_mean_free_path_profile480)_ 7.58447027209312637e+03 +Electron-triton_mean_free_path_at_point_481______________________________ (len_plasma_electron_triton_mean_free_path_profile481)_ 6.99463609450101740e+03 +Electron-triton_mean_free_path_at_point_482______________________________ (len_plasma_electron_triton_mean_free_path_profile482)_ 6.41965637783335387e+03 +Electron-triton_mean_free_path_at_point_483______________________________ (len_plasma_electron_triton_mean_free_path_profile483)_ 5.86036794943414952e+03 +Electron-triton_mean_free_path_at_point_484______________________________ (len_plasma_electron_triton_mean_free_path_profile484)_ 5.31766954993951458e+03 +Electron-triton_mean_free_path_at_point_485______________________________ (len_plasma_electron_triton_mean_free_path_profile485)_ 4.79252788398292432e+03 +Electron-triton_mean_free_path_at_point_486______________________________ (len_plasma_electron_triton_mean_free_path_profile486)_ 4.28598445579268355e+03 +Electron-triton_mean_free_path_at_point_487______________________________ (len_plasma_electron_triton_mean_free_path_profile487)_ 3.79916333013002668e+03 +Electron-triton_mean_free_path_at_point_488______________________________ (len_plasma_electron_triton_mean_free_path_profile488)_ 3.33327999544676322e+03 +Electron-triton_mean_free_path_at_point_489______________________________ (len_plasma_electron_triton_mean_free_path_profile489)_ 2.88965155641549245e+03 +Electron-triton_mean_free_path_at_point_490______________________________ (len_plasma_electron_triton_mean_free_path_profile490)_ 2.46970855448285147e+03 +Electron-triton_mean_free_path_at_point_491______________________________ (len_plasma_electron_triton_mean_free_path_profile491)_ 2.07500882039234057e+03 +Electron-triton_mean_free_path_at_point_492______________________________ (len_plasma_electron_triton_mean_free_path_profile492)_ 1.70725392419633863e+03 +Electron-triton_mean_free_path_at_point_493______________________________ (len_plasma_electron_triton_mean_free_path_profile493)_ 1.36830904842746850e+03 +Electron-triton_mean_free_path_at_point_494______________________________ (len_plasma_electron_triton_mean_free_path_profile494)_ 1.06022755371901667e+03 +Electron-triton_mean_free_path_at_point_495______________________________ (len_plasma_electron_triton_mean_free_path_profile495)_ 7.85282316875095944e+02 +Electron-triton_mean_free_path_at_point_496______________________________ (len_plasma_electron_triton_mean_free_path_profile496)_ 5.46007535745401697e+02 +Electron-triton_mean_free_path_at_point_497______________________________ (len_plasma_electron_triton_mean_free_path_profile497)_ 3.45258285117165769e+02 +Electron-triton_mean_free_path_at_point_498______________________________ (len_plasma_electron_triton_mean_free_path_profile498)_ 1.86304386440649523e+02 +Electron-triton_mean_free_path_at_point_499______________________________ (len_plasma_electron_triton_mean_free_path_profile499)_ 7.30051992998893979e+01 +Electron-triton_mean_free_path_at_point_500______________________________ (len_plasma_electron_triton_mean_free_path_profile500)_ 1.02589023636866354e+01 +Volume_averaged_electron-alpha_thermal_mean_free_path_(λₑα)_(m)__________ (len_plasma_electron_alpha_thermal_mean_free_path_vol_avg)_ 6.40469966674393290e+04 +Electron-alpha_thermal_mean_free_path_at_point_0_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile0)_ 1.98869275665101042e+05 +Electron-alpha_thermal_mean_free_path_at_point_1_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile1)_ 1.98867656613750616e+05 +Electron-alpha_thermal_mean_free_path_at_point_2_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile2)_ 1.98862799504364346e+05 +Electron-alpha_thermal_mean_free_path_at_point_3_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile3)_ 1.98854704470936413e+05 +Electron-alpha_thermal_mean_free_path_at_point_4_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile4)_ 1.98843371736792556e+05 +Electron-alpha_thermal_mean_free_path_at_point_5_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile5)_ 1.98828801614587632e+05 +Electron-alpha_thermal_mean_free_path_at_point_6_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile6)_ 1.98810994506306131e+05 +Electron-alpha_thermal_mean_free_path_at_point_7_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile7)_ 1.98789950903266086e+05 +Electron-alpha_thermal_mean_free_path_at_point_8_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile8)_ 1.98765671386114496e+05 +Electron-alpha_thermal_mean_free_path_at_point_9_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile9)_ 1.98738156624832045e+05 +Electron-alpha_thermal_mean_free_path_at_point_10________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile10)_ 1.98707407378730772e+05 +Electron-alpha_thermal_mean_free_path_at_point_11________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile11)_ 1.98673424496456719e+05 +Electron-alpha_thermal_mean_free_path_at_point_12________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile12)_ 1.98636208915990574e+05 +Electron-alpha_thermal_mean_free_path_at_point_13________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile13)_ 1.98595761664647551e+05 +Electron-alpha_thermal_mean_free_path_at_point_14________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile14)_ 1.98552083859079634e+05 +Electron-alpha_thermal_mean_free_path_at_point_15________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile15)_ 1.98505176705275255e+05 +Electron-alpha_thermal_mean_free_path_at_point_16________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile16)_ 1.98455041498561710e+05 +Electron-alpha_thermal_mean_free_path_at_point_17________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile17)_ 1.98401679623606178e+05 +Electron-alpha_thermal_mean_free_path_at_point_18________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile18)_ 1.98345092554416973e+05 +Electron-alpha_thermal_mean_free_path_at_point_19________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile19)_ 1.98285281854343426e+05 +Electron-alpha_thermal_mean_free_path_at_point_20________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile20)_ 1.98222249176079757e+05 +Electron-alpha_thermal_mean_free_path_at_point_21________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile21)_ 1.98155996261665859e+05 +Electron-alpha_thermal_mean_free_path_at_point_22________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile22)_ 1.98086524942487915e+05 +Electron-alpha_thermal_mean_free_path_at_point_23________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile23)_ 1.98013837139281008e+05 +Electron-alpha_thermal_mean_free_path_at_point_24________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile24)_ 1.97937934862129885e+05 +Electron-alpha_thermal_mean_free_path_at_point_25________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile25)_ 1.97858820210472622e+05 +Electron-alpha_thermal_mean_free_path_at_point_26________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile26)_ 1.97776495373100828e+05 +Electron-alpha_thermal_mean_free_path_at_point_27________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile27)_ 1.97690962628161651e+05 +Electron-alpha_thermal_mean_free_path_at_point_28________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile28)_ 1.97602224343161186e+05 +Electron-alpha_thermal_mean_free_path_at_point_29________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile29)_ 1.97510282974964503e+05 +Electron-alpha_thermal_mean_free_path_at_point_30________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile30)_ 1.97415141069799400e+05 +Electron-alpha_thermal_mean_free_path_at_point_31________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile31)_ 1.97316801263257163e+05 +Electron-alpha_thermal_mean_free_path_at_point_32________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile32)_ 1.97215266280296288e+05 +Electron-alpha_thermal_mean_free_path_at_point_33________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile33)_ 1.97110538935243763e+05 +Electron-alpha_thermal_mean_free_path_at_point_34________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile34)_ 1.97002622131796059e+05 +Electron-alpha_thermal_mean_free_path_at_point_35________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile35)_ 1.96891518863024714e+05 +Electron-alpha_thermal_mean_free_path_at_point_36________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile36)_ 1.96777232211375056e+05 +Electron-alpha_thermal_mean_free_path_at_point_37________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile37)_ 1.96659765348671528e+05 +Electron-alpha_thermal_mean_free_path_at_point_38________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile38)_ 1.96539121536117833e+05 +Electron-alpha_thermal_mean_free_path_at_point_39________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile39)_ 1.96415304124300019e+05 +Electron-alpha_thermal_mean_free_path_at_point_40________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile40)_ 1.96288316553189827e+05 +Electron-alpha_thermal_mean_free_path_at_point_41________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile41)_ 1.96158162352146028e+05 +Electron-alpha_thermal_mean_free_path_at_point_42________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile42)_ 1.96024845139916899e+05 +Electron-alpha_thermal_mean_free_path_at_point_43________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile43)_ 1.95888368624642870e+05 +Electron-alpha_thermal_mean_free_path_at_point_44________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile44)_ 1.95748736603859608e+05 +Electron-alpha_thermal_mean_free_path_at_point_45________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile45)_ 1.95605952964498516e+05 +Electron-alpha_thermal_mean_free_path_at_point_46________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile46)_ 1.95460021682891645e+05 +Electron-alpha_thermal_mean_free_path_at_point_47________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile47)_ 1.95310946824772371e+05 +Electron-alpha_thermal_mean_free_path_at_point_48________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile48)_ 1.95158732545278006e+05 +Electron-alpha_thermal_mean_free_path_at_point_49________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile49)_ 1.95003383088952367e+05 +Electron-alpha_thermal_mean_free_path_at_point_50________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile50)_ 1.94844902789748099e+05 +Electron-alpha_thermal_mean_free_path_at_point_51________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile51)_ 1.94683296071029152e+05 +Electron-alpha_thermal_mean_free_path_at_point_52________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile52)_ 1.94518567445572407e+05 +Electron-alpha_thermal_mean_free_path_at_point_53________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile53)_ 1.94350721515570243e+05 +Electron-alpha_thermal_mean_free_path_at_point_54________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile54)_ 1.94179762972632423e+05 +Electron-alpha_thermal_mean_free_path_at_point_55________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile55)_ 1.94005696597788687e+05 +Electron-alpha_thermal_mean_free_path_at_point_56________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile56)_ 1.93828527261489915e+05 +Electron-alpha_thermal_mean_free_path_at_point_57________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile57)_ 1.93648259923611156e+05 +Electron-alpha_thermal_mean_free_path_at_point_58________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile58)_ 1.93464899633452296e+05 +Electron-alpha_thermal_mean_free_path_at_point_59________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile59)_ 1.93278451529740269e+05 +Electron-alpha_thermal_mean_free_path_at_point_60________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile60)_ 1.93088920840631385e+05 +Electron-alpha_thermal_mean_free_path_at_point_61________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile61)_ 1.92896312883711624e+05 +Electron-alpha_thermal_mean_free_path_at_point_62________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile62)_ 1.92700633065999020e+05 +Electron-alpha_thermal_mean_free_path_at_point_63________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile63)_ 1.92501886883945263e+05 +Electron-alpha_thermal_mean_free_path_at_point_64________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile64)_ 1.92300079923435551e+05 +Electron-alpha_thermal_mean_free_path_at_point_65________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile65)_ 1.92095217859791243e+05 +Electron-alpha_thermal_mean_free_path_at_point_66________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile66)_ 1.91887306457769999e+05 +Electron-alpha_thermal_mean_free_path_at_point_67________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile67)_ 1.91676351571567298e+05 +Electron-alpha_thermal_mean_free_path_at_point_68________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile68)_ 1.91462359144815884e+05 +Electron-alpha_thermal_mean_free_path_at_point_69________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile69)_ 1.91245335210586607e+05 +Electron-alpha_thermal_mean_free_path_at_point_70________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile70)_ 1.91025285891391133e+05 +Electron-alpha_thermal_mean_free_path_at_point_71________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile71)_ 1.90802217399177927e+05 +Electron-alpha_thermal_mean_free_path_at_point_72________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile72)_ 1.90576136035335774e+05 +Electron-alpha_thermal_mean_free_path_at_point_73________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile73)_ 1.90347048190692323e+05 +Electron-alpha_thermal_mean_free_path_at_point_74________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile74)_ 1.90114960345513682e+05 +Electron-alpha_thermal_mean_free_path_at_point_75________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile75)_ 1.89879879069503077e+05 +Electron-alpha_thermal_mean_free_path_at_point_76________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile76)_ 1.89641811021802714e+05 +Electron-alpha_thermal_mean_free_path_at_point_77________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile77)_ 1.89400762950988952e+05 +Electron-alpha_thermal_mean_free_path_at_point_78________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile78)_ 1.89156741695073782e+05 +Electron-alpha_thermal_mean_free_path_at_point_79________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile79)_ 1.88909754181503027e+05 +Electron-alpha_thermal_mean_free_path_at_point_80________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile80)_ 1.88659807427152904e+05 +Electron-alpha_thermal_mean_free_path_at_point_81________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile81)_ 1.88406908538331016e+05 +Electron-alpha_thermal_mean_free_path_at_point_82________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile82)_ 1.88151064710769831e+05 +Electron-alpha_thermal_mean_free_path_at_point_83________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile83)_ 1.87892283229628665e+05 +Electron-alpha_thermal_mean_free_path_at_point_84________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile84)_ 1.87630571469486982e+05 +Electron-alpha_thermal_mean_free_path_at_point_85________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile85)_ 1.87365936894345039e+05 +Electron-alpha_thermal_mean_free_path_at_point_86________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile86)_ 1.87098387057615706e+05 +Electron-alpha_thermal_mean_free_path_at_point_87________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile87)_ 1.86827929602124728e+05 +Electron-alpha_thermal_mean_free_path_at_point_88________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile88)_ 1.86554572260105051e+05 +Electron-alpha_thermal_mean_free_path_at_point_89________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile89)_ 1.86278322853191785e+05 +Electron-alpha_thermal_mean_free_path_at_point_90________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile90)_ 1.85999189292418596e+05 +Electron-alpha_thermal_mean_free_path_at_point_91________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile91)_ 1.85717179578211304e+05 +Electron-alpha_thermal_mean_free_path_at_point_92________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile92)_ 1.85432301800382702e+05 +Electron-alpha_thermal_mean_free_path_at_point_93________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile93)_ 1.85144564138126821e+05 +Electron-alpha_thermal_mean_free_path_at_point_94________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile94)_ 1.84853974860012851e+05 +Electron-alpha_thermal_mean_free_path_at_point_95________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile95)_ 1.84560542323976959e+05 +Electron-alpha_thermal_mean_free_path_at_point_96________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile96)_ 1.84264274977316731e+05 +Electron-alpha_thermal_mean_free_path_at_point_97________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile97)_ 1.83965181356682355e+05 +Electron-alpha_thermal_mean_free_path_at_point_98________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile98)_ 1.83663270088069083e+05 +Electron-alpha_thermal_mean_free_path_at_point_99________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile99)_ 1.83358549886807770e+05 +Electron-alpha_thermal_mean_free_path_at_point_100_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile100)_ 1.83051029557557020e+05 +Electron-alpha_thermal_mean_free_path_at_point_101_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile101)_ 1.82740717994293256e+05 +Electron-alpha_thermal_mean_free_path_at_point_102_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile102)_ 1.82427624180299288e+05 +Electron-alpha_thermal_mean_free_path_at_point_103_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile103)_ 1.82111757188155636e+05 +Electron-alpha_thermal_mean_free_path_at_point_104_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile104)_ 1.81793126179728773e+05 +Electron-alpha_thermal_mean_free_path_at_point_105_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile105)_ 1.81471740406158351e+05 +Electron-alpha_thermal_mean_free_path_at_point_106_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile106)_ 1.81147609207846224e+05 +Electron-alpha_thermal_mean_free_path_at_point_107_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile107)_ 1.80820742014443706e+05 +Electron-alpha_thermal_mean_free_path_at_point_108_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile108)_ 1.80491148344836489e+05 +Electron-alpha_thermal_mean_free_path_at_point_109_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile109)_ 1.80158837807133503e+05 +Electron-alpha_thermal_mean_free_path_at_point_110_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile110)_ 1.79823820098648634e+05 +Electron-alpha_thermal_mean_free_path_at_point_111_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile111)_ 1.79486105005888967e+05 +Electron-alpha_thermal_mean_free_path_at_point_112_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile112)_ 1.79145702404535812e+05 +Electron-alpha_thermal_mean_free_path_at_point_113_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile113)_ 1.78802622259430616e+05 +Electron-alpha_thermal_mean_free_path_at_point_114_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile114)_ 1.78456874624555290e+05 +Electron-alpha_thermal_mean_free_path_at_point_115_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile115)_ 1.78108469643017481e+05 +Electron-alpha_thermal_mean_free_path_at_point_116_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile116)_ 1.77757417547026998e+05 +Electron-alpha_thermal_mean_free_path_at_point_117_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile117)_ 1.77403728657881700e+05 +Electron-alpha_thermal_mean_free_path_at_point_118_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile118)_ 1.77047413385943015e+05 +Electron-alpha_thermal_mean_free_path_at_point_119_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile119)_ 1.76688482230617898e+05 +Electron-alpha_thermal_mean_free_path_at_point_120_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile120)_ 1.76326945780334208e+05 +Electron-alpha_thermal_mean_free_path_at_point_121_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile121)_ 1.75962814712521387e+05 +Electron-alpha_thermal_mean_free_path_at_point_122_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile122)_ 1.75596099793584290e+05 +Electron-alpha_thermal_mean_free_path_at_point_123_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile123)_ 1.75226811878880719e+05 +Electron-alpha_thermal_mean_free_path_at_point_124_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile124)_ 1.74854961912694795e+05 +Electron-alpha_thermal_mean_free_path_at_point_125_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile125)_ 1.74480560928212391e+05 +Electron-alpha_thermal_mean_free_path_at_point_126_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile126)_ 1.74103620047493430e+05 +Electron-alpha_thermal_mean_free_path_at_point_127_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile127)_ 1.73724150481444143e+05 +Electron-alpha_thermal_mean_free_path_at_point_128_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile128)_ 1.73342163529788610e+05 +Electron-alpha_thermal_mean_free_path_at_point_129_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile129)_ 1.72957670581038372e+05 +Electron-alpha_thermal_mean_free_path_at_point_130_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile130)_ 1.72570683112462313e+05 +Electron-alpha_thermal_mean_free_path_at_point_131_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile131)_ 1.72181212690055720e+05 +Electron-alpha_thermal_mean_free_path_at_point_132_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile132)_ 1.71789270968504541e+05 +Electron-alpha_thermal_mean_free_path_at_point_133_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile133)_ 1.71394869691156608e+05 +Electron-alpha_thermal_mean_free_path_at_point_134_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile134)_ 1.70998020689981262e+05 +Electron-alpha_thermal_mean_free_path_at_point_135_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile135)_ 1.70598735885537782e+05 +Electron-alpha_thermal_mean_free_path_at_point_136_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile136)_ 1.70197027286935918e+05 +Electron-alpha_thermal_mean_free_path_at_point_137_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile137)_ 1.69792906991799216e+05 +Electron-alpha_thermal_mean_free_path_at_point_138_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile138)_ 1.69386387186223379e+05 +Electron-alpha_thermal_mean_free_path_at_point_139_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile139)_ 1.68977480144738802e+05 +Electron-alpha_thermal_mean_free_path_at_point_140_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile140)_ 1.68566198230267648e+05 +Electron-alpha_thermal_mean_free_path_at_point_141_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile141)_ 1.68152553894079785e+05 +Electron-alpha_thermal_mean_free_path_at_point_142_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile142)_ 1.67736559675749275e+05 +Electron-alpha_thermal_mean_free_path_at_point_143_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile143)_ 1.67318228203110863e+05 +Electron-alpha_thermal_mean_free_path_at_point_144_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile144)_ 1.66897572192210093e+05 +Electron-alpha_thermal_mean_free_path_at_point_145_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile145)_ 1.66474604447257210e+05 +Electron-alpha_thermal_mean_free_path_at_point_146_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile146)_ 1.66049337860577332e+05 +Electron-alpha_thermal_mean_free_path_at_point_147_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile147)_ 1.65621785412560159e+05 +Electron-alpha_thermal_mean_free_path_at_point_148_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile148)_ 1.65191960171606188e+05 +Electron-alpha_thermal_mean_free_path_at_point_149_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile149)_ 1.64759875294075318e+05 +Electron-alpha_thermal_mean_free_path_at_point_150_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile150)_ 1.64325544024229777e+05 +Electron-alpha_thermal_mean_free_path_at_point_151_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile151)_ 1.63888979694179288e+05 +Electron-alpha_thermal_mean_free_path_at_point_152_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile152)_ 1.63450195723821496e+05 +Electron-alpha_thermal_mean_free_path_at_point_153_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile153)_ 1.63009205620783730e+05 +Electron-alpha_thermal_mean_free_path_at_point_154_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile154)_ 1.62566022980361187e+05 +Electron-alpha_thermal_mean_free_path_at_point_155_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile155)_ 1.62120661485453747e+05 +Electron-alpha_thermal_mean_free_path_at_point_156_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile156)_ 1.61673134906502499e+05 +Electron-alpha_thermal_mean_free_path_at_point_157_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile157)_ 1.61223457101423643e+05 +Electron-alpha_thermal_mean_free_path_at_point_158_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile158)_ 1.60771642015539837e+05 +Electron-alpha_thermal_mean_free_path_at_point_159_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile159)_ 1.60317703681512299e+05 +Electron-alpha_thermal_mean_free_path_at_point_160_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile160)_ 1.59861656219268683e+05 +Electron-alpha_thermal_mean_free_path_at_point_161_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile161)_ 1.59403513835929683e+05 +Electron-alpha_thermal_mean_free_path_at_point_162_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile162)_ 1.58943290825735836e+05 +Electron-alpha_thermal_mean_free_path_at_point_163_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile163)_ 1.58481001569969492e+05 +Electron-alpha_thermal_mean_free_path_at_point_164_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile164)_ 1.58016660536877520e+05 +Electron-alpha_thermal_mean_free_path_at_point_165_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile165)_ 1.57550282281590189e+05 +Electron-alpha_thermal_mean_free_path_at_point_166_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile166)_ 1.57081881446039712e+05 +Electron-alpha_thermal_mean_free_path_at_point_167_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile167)_ 1.56611472758874908e+05 +Electron-alpha_thermal_mean_free_path_at_point_168_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile168)_ 1.56139071035375702e+05 +Electron-alpha_thermal_mean_free_path_at_point_169_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile169)_ 1.55664691177365778e+05 +Electron-alpha_thermal_mean_free_path_at_point_170_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile170)_ 1.55188348173119564e+05 +Electron-alpha_thermal_mean_free_path_at_point_171_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile171)_ 1.54710057097273064e+05 +Electron-alpha_thermal_mean_free_path_at_point_172_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile172)_ 1.54229833110726788e+05 +Electron-alpha_thermal_mean_free_path_at_point_173_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile173)_ 1.53747691460550850e+05 +Electron-alpha_thermal_mean_free_path_at_point_174_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile174)_ 1.53263647479883803e+05 +Electron-alpha_thermal_mean_free_path_at_point_175_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile175)_ 1.52777716587833507e+05 +Electron-alpha_thermal_mean_free_path_at_point_176_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile176)_ 1.52289914289373060e+05 +Electron-alpha_thermal_mean_free_path_at_point_177_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile177)_ 1.51800256175234099e+05 +Electron-alpha_thermal_mean_free_path_at_point_178_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile178)_ 1.51308757921799348e+05 +Electron-alpha_thermal_mean_free_path_at_point_179_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile179)_ 1.50815435290992144e+05 +Electron-alpha_thermal_mean_free_path_at_point_180_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile180)_ 1.50320304130163073e+05 +Electron-alpha_thermal_mean_free_path_at_point_181_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile181)_ 1.49823380371974490e+05 +Electron-alpha_thermal_mean_free_path_at_point_182_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile182)_ 1.49324680034281890e+05 +Electron-alpha_thermal_mean_free_path_at_point_183_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile183)_ 1.48824219220014667e+05 +Electron-alpha_thermal_mean_free_path_at_point_184_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile184)_ 1.48322014117050916e+05 +Electron-alpha_thermal_mean_free_path_at_point_185_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile185)_ 1.47818080998093559e+05 +Electron-alpha_thermal_mean_free_path_at_point_186_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile186)_ 1.47312436220540927e+05 +Electron-alpha_thermal_mean_free_path_at_point_187_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile187)_ 1.46805096226354159e+05 +Electron-alpha_thermal_mean_free_path_at_point_188_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile188)_ 1.46296077541925770e+05 +Electron-alpha_thermal_mean_free_path_at_point_189_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile189)_ 1.45785396777939488e+05 +Electron-alpha_thermal_mean_free_path_at_point_190_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile190)_ 1.45273070629233611e+05 +Electron-alpha_thermal_mean_free_path_at_point_191_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile191)_ 1.44759115874656127e+05 +Electron-alpha_thermal_mean_free_path_at_point_192_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile192)_ 1.44243549376919633e+05 +Electron-alpha_thermal_mean_free_path_at_point_193_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile193)_ 1.43726388082452671e+05 +Electron-alpha_thermal_mean_free_path_at_point_194_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile194)_ 1.43207649021248275e+05 +Electron-alpha_thermal_mean_free_path_at_point_195_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile195)_ 1.42687349306708056e+05 +Electron-alpha_thermal_mean_free_path_at_point_196_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile196)_ 1.42165506135486532e+05 +Electron-alpha_thermal_mean_free_path_at_point_197_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile197)_ 1.41642136787325813e+05 +Electron-alpha_thermal_mean_free_path_at_point_198_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile198)_ 1.41117258624896145e+05 +Electron-alpha_thermal_mean_free_path_at_point_199_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile199)_ 1.40590889093623467e+05 +Electron-alpha_thermal_mean_free_path_at_point_200_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile200)_ 1.40063045721521397e+05 +Electron-alpha_thermal_mean_free_path_at_point_201_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile201)_ 1.39533746119015850e+05 +Electron-alpha_thermal_mean_free_path_at_point_202_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile202)_ 1.39003007978766138e+05 +Electron-alpha_thermal_mean_free_path_at_point_203_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile203)_ 1.38470849075484031e+05 +Electron-alpha_thermal_mean_free_path_at_point_204_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile204)_ 1.37937287265749619e+05 +Electron-alpha_thermal_mean_free_path_at_point_205_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile205)_ 1.37402340487820999e+05 +Electron-alpha_thermal_mean_free_path_at_point_206_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile206)_ 1.36866026761443063e+05 +Electron-alpha_thermal_mean_free_path_at_point_207_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile207)_ 1.36328364187650586e+05 +Electron-alpha_thermal_mean_free_path_at_point_208_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile208)_ 1.35789370948568656e+05 +Electron-alpha_thermal_mean_free_path_at_point_209_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile209)_ 1.35249065307209908e+05 +Electron-alpha_thermal_mean_free_path_at_point_210_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile210)_ 1.34707465607264836e+05 +Electron-alpha_thermal_mean_free_path_at_point_211_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile211)_ 1.34164590272892034e+05 +Electron-alpha_thermal_mean_free_path_at_point_212_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile212)_ 1.33620457808501727e+05 +Electron-alpha_thermal_mean_free_path_at_point_213_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile213)_ 1.33075086798535689e+05 +Electron-alpha_thermal_mean_free_path_at_point_214_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile214)_ 1.32528495907244826e+05 +Electron-alpha_thermal_mean_free_path_at_point_215_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile215)_ 1.31980703878460045e+05 +Electron-alpha_thermal_mean_free_path_at_point_216_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile216)_ 1.31431729535359831e+05 +Electron-alpha_thermal_mean_free_path_at_point_217_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile217)_ 1.30881591780234448e+05 +Electron-alpha_thermal_mean_free_path_at_point_218_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile218)_ 1.30330309594244027e+05 +Electron-alpha_thermal_mean_free_path_at_point_219_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile219)_ 1.29777902037174703e+05 +Electron-alpha_thermal_mean_free_path_at_point_220_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile220)_ 1.29224388247186551e+05 +Electron-alpha_thermal_mean_free_path_at_point_221_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile221)_ 1.28669787440560569e+05 +Electron-alpha_thermal_mean_free_path_at_point_222_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile222)_ 1.28114118911438956e+05 +Electron-alpha_thermal_mean_free_path_at_point_223_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile223)_ 1.27557402031561855e+05 +Electron-alpha_thermal_mean_free_path_at_point_224_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile224)_ 1.26999656249997977e+05 +Electron-alpha_thermal_mean_free_path_at_point_225_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile225)_ 1.26440901092870859e+05 +Electron-alpha_thermal_mean_free_path_at_point_226_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile226)_ 1.25881156163081585e+05 +Electron-alpha_thermal_mean_free_path_at_point_227_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile227)_ 1.25320441140024923e+05 +Electron-alpha_thermal_mean_free_path_at_point_228_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile228)_ 1.24758775779299816e+05 +Electron-alpha_thermal_mean_free_path_at_point_229_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile229)_ 1.24196179912418098e+05 +Electron-alpha_thermal_mean_free_path_at_point_230_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile230)_ 1.23632673446503846e+05 +Electron-alpha_thermal_mean_free_path_at_point_231_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile231)_ 1.23068276363989440e+05 +Electron-alpha_thermal_mean_free_path_at_point_232_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile232)_ 1.22503008722308427e+05 +Electron-alpha_thermal_mean_free_path_at_point_233_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile233)_ 1.21936890653576353e+05 +Electron-alpha_thermal_mean_free_path_at_point_234_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile234)_ 1.21369942364276081e+05 +Electron-alpha_thermal_mean_free_path_at_point_235_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile235)_ 1.20802184134927564e+05 +Electron-alpha_thermal_mean_free_path_at_point_236_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile236)_ 1.20233636319758603e+05 +Electron-alpha_thermal_mean_free_path_at_point_237_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile237)_ 1.19664319346366930e+05 +Electron-alpha_thermal_mean_free_path_at_point_238_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile238)_ 1.19094253715377665e+05 +Electron-alpha_thermal_mean_free_path_at_point_239_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile239)_ 1.18523460000093633e+05 +Electron-alpha_thermal_mean_free_path_at_point_240_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile240)_ 1.17951958846142603e+05 +Electron-alpha_thermal_mean_free_path_at_point_241_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile241)_ 1.17379770971114267e+05 +Electron-alpha_thermal_mean_free_path_at_point_242_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile242)_ 1.16806917164194674e+05 +Electron-alpha_thermal_mean_free_path_at_point_243_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile243)_ 1.16233418285792839e+05 +Electron-alpha_thermal_mean_free_path_at_point_244_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile244)_ 1.15659295267161331e+05 +Electron-alpha_thermal_mean_free_path_at_point_245_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile245)_ 1.15084569110010663e+05 +Electron-alpha_thermal_mean_free_path_at_point_246_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile246)_ 1.14509260886117685e+05 +Electron-alpha_thermal_mean_free_path_at_point_247_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile247)_ 1.13933391736926278e+05 +Electron-alpha_thermal_mean_free_path_at_point_248_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile248)_ 1.13356982873142915e+05 +Electron-alpha_thermal_mean_free_path_at_point_249_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile249)_ 1.12780055574323836e+05 +Electron-alpha_thermal_mean_free_path_at_point_250_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile250)_ 1.12202631188456842e+05 +Electron-alpha_thermal_mean_free_path_at_point_251_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile251)_ 1.11624731131536668e+05 +Electron-alpha_thermal_mean_free_path_at_point_252_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile252)_ 1.11046376887131628e+05 +Electron-alpha_thermal_mean_free_path_at_point_253_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile253)_ 1.10467590005943901e+05 +Electron-alpha_thermal_mean_free_path_at_point_254_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile254)_ 1.09888392105364706e+05 +Electron-alpha_thermal_mean_free_path_at_point_255_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile255)_ 1.09308804869018029e+05 +Electron-alpha_thermal_mean_free_path_at_point_256_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile256)_ 1.08728850046302730e+05 +Electron-alpha_thermal_mean_free_path_at_point_257_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile257)_ 1.08148549451920655e+05 +Electron-alpha_thermal_mean_free_path_at_point_258_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile258)_ 1.07567924965404862e+05 +Electron-alpha_thermal_mean_free_path_at_point_259_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile259)_ 1.06986998530632569e+05 +Electron-alpha_thermal_mean_free_path_at_point_260_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile260)_ 1.06405792155336429e+05 +Electron-alpha_thermal_mean_free_path_at_point_261_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile261)_ 1.05824327910605003e+05 +Electron-alpha_thermal_mean_free_path_at_point_262_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile262)_ 1.05242627930377319e+05 +Electron-alpha_thermal_mean_free_path_at_point_263_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile263)_ 1.04660714410926899e+05 +Electron-alpha_thermal_mean_free_path_at_point_264_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile264)_ 1.04078609610340383e+05 +Electron-alpha_thermal_mean_free_path_at_point_265_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile265)_ 1.03496335847986833e+05 +Electron-alpha_thermal_mean_free_path_at_point_266_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile266)_ 1.02913915503979457e+05 +Electron-alpha_thermal_mean_free_path_at_point_267_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile267)_ 1.02331371018628386e+05 +Electron-alpha_thermal_mean_free_path_at_point_268_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile268)_ 1.01748724891886406e+05 +Electron-alpha_thermal_mean_free_path_at_point_269_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile269)_ 1.01165999682783135e+05 +Electron-alpha_thermal_mean_free_path_at_point_270_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile270)_ 1.00583218008856042e+05 +Electron-alpha_thermal_mean_free_path_at_point_271_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile271)_ 1.00000402545567034e+05 +Electron-alpha_thermal_mean_free_path_at_point_272_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile272)_ 9.94175760257141519e+04 +Electron-alpha_thermal_mean_free_path_at_point_273_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile273)_ 9.88347612388339621e+04 +Electron-alpha_thermal_mean_free_path_at_point_274_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile274)_ 9.82519810305928841e+04 +Electron-alpha_thermal_mean_free_path_at_point_275_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile275)_ 9.76692583021728642e+04 +Electron-alpha_thermal_mean_free_path_at_point_276_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile276)_ 9.70866160096456006e+04 +Electron-alpha_thermal_mean_free_path_at_point_277_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile277)_ 9.65040771633376280e+04 +Electron-alpha_thermal_mean_free_path_at_point_278_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile278)_ 9.59216648271885351e+04 +Electron-alpha_thermal_mean_free_path_at_point_279_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile279)_ 9.53394021180970012e+04 +Electron-alpha_thermal_mean_free_path_at_point_280_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile280)_ 9.47573122052586550e+04 +Electron-alpha_thermal_mean_free_path_at_point_281_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile281)_ 9.41754183094958862e+04 +Electron-alpha_thermal_mean_free_path_at_point_282_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile282)_ 9.35937437025761901e+04 +Electron-alpha_thermal_mean_free_path_at_point_283_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile283)_ 9.30123117065201659e+04 +Electron-alpha_thermal_mean_free_path_at_point_284_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile284)_ 9.24311456929035630e+04 +Electron-alpha_thermal_mean_free_path_at_point_285_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile285)_ 9.18502690821451251e+04 +Electron-alpha_thermal_mean_free_path_at_point_286_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile286)_ 9.12697053427887004e+04 +Electron-alpha_thermal_mean_free_path_at_point_287_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile287)_ 9.06894779907710181e+04 +Electron-alpha_thermal_mean_free_path_at_point_288_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile288)_ 9.01096105886840378e+04 +Electron-alpha_thermal_mean_free_path_at_point_289_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile289)_ 8.95301267450239393e+04 +Electron-alpha_thermal_mean_free_path_at_point_290_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile290)_ 8.89510501134318911e+04 +Electron-alpha_thermal_mean_free_path_at_point_291_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile291)_ 8.83724043919232645e+04 +Electron-alpha_thermal_mean_free_path_at_point_292_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile292)_ 8.77942133221081604e+04 +Electron-alpha_thermal_mean_free_path_at_point_293_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile293)_ 8.72165006884001050e+04 +Electron-alpha_thermal_mean_free_path_at_point_294_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile294)_ 8.66392903172161023e+04 +Electron-alpha_thermal_mean_free_path_at_point_295_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile295)_ 8.60626060761641420e+04 +Electron-alpha_thermal_mean_free_path_at_point_296_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile296)_ 8.54864718732229958e+04 +Electron-alpha_thermal_mean_free_path_at_point_297_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile297)_ 8.49109116559090035e+04 +Electron-alpha_thermal_mean_free_path_at_point_298_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile298)_ 8.43359494104343757e+04 +Electron-alpha_thermal_mean_free_path_at_point_299_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile299)_ 8.37616091608538263e+04 +Electron-alpha_thermal_mean_free_path_at_point_300_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile300)_ 8.31879149682009156e+04 +Electron-alpha_thermal_mean_free_path_at_point_301_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile301)_ 8.26148909296138590e+04 +Electron-alpha_thermal_mean_free_path_at_point_302_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile302)_ 8.20425611774518766e+04 +Electron-alpha_thermal_mean_free_path_at_point_303_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile303)_ 8.14709498783983436e+04 +Electron-alpha_thermal_mean_free_path_at_point_304_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile304)_ 8.09000812325565639e+04 +Electron-alpha_thermal_mean_free_path_at_point_305_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile305)_ 8.03299794725333195e+04 +Electron-alpha_thermal_mean_free_path_at_point_306_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile306)_ 7.97606688625109236e+04 +Electron-alpha_thermal_mean_free_path_at_point_307_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile307)_ 7.91921736973112565e+04 +Electron-alpha_thermal_mean_free_path_at_point_308_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile308)_ 7.86245183014474751e+04 +Electron-alpha_thermal_mean_free_path_at_point_309_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile309)_ 7.80577270281659876e+04 +Electron-alpha_thermal_mean_free_path_at_point_310_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile310)_ 7.74918242584776017e+04 +Electron-alpha_thermal_mean_free_path_at_point_311_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile311)_ 7.69268344001795194e+04 +Electron-alpha_thermal_mean_free_path_at_point_312_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile312)_ 7.63627818868661707e+04 +Electron-alpha_thermal_mean_free_path_at_point_313_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile313)_ 7.57996911769287544e+04 +Electron-alpha_thermal_mean_free_path_at_point_314_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile314)_ 7.52375867525481008e+04 +Electron-alpha_thermal_mean_free_path_at_point_315_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile315)_ 7.46764931186745525e+04 +Electron-alpha_thermal_mean_free_path_at_point_316_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile316)_ 7.41164348019986646e+04 +Electron-alpha_thermal_mean_free_path_at_point_317_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile317)_ 7.35574363499145111e+04 +Electron-alpha_thermal_mean_free_path_at_point_318_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile318)_ 7.29995223294691677e+04 +Electron-alpha_thermal_mean_free_path_at_point_319_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile319)_ 7.24427173263076256e+04 +Electron-alpha_thermal_mean_free_path_at_point_320_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile320)_ 7.18870459436056117e+04 +Electron-alpha_thermal_mean_free_path_at_point_321_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile321)_ 7.13325328009938967e+04 +Electron-alpha_thermal_mean_free_path_at_point_322_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile322)_ 7.07792025334756036e+04 +Electron-alpha_thermal_mean_free_path_at_point_323_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile323)_ 7.02270797903321072e+04 +Electron-alpha_thermal_mean_free_path_at_point_324_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile324)_ 6.96761892340239574e+04 +Electron-alpha_thermal_mean_free_path_at_point_325_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile325)_ 6.91265555390827649e+04 +Electron-alpha_thermal_mean_free_path_at_point_326_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile326)_ 6.85782033909933380e+04 +Electron-alpha_thermal_mean_free_path_at_point_327_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile327)_ 6.80311574850732140e+04 +Electron-alpha_thermal_mean_free_path_at_point_328_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile328)_ 6.74854425253414374e+04 +Electron-alpha_thermal_mean_free_path_at_point_329_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile329)_ 6.69410832233826804e+04 +Electron-alpha_thermal_mean_free_path_at_point_330_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile330)_ 6.63981042972053256e+04 +Electron-alpha_thermal_mean_free_path_at_point_331_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile331)_ 6.58565304700938141e+04 +Electron-alpha_thermal_mean_free_path_at_point_332_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile332)_ 6.53163864694564472e+04 +Electron-alpha_thermal_mean_free_path_at_point_333_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile333)_ 6.47776970256682325e+04 +Electron-alpha_thermal_mean_free_path_at_point_334_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile334)_ 6.42404868709099392e+04 +Electron-alpha_thermal_mean_free_path_at_point_335_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile335)_ 6.37047807380048471e+04 +Electron-alpha_thermal_mean_free_path_at_point_336_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile336)_ 6.31706033592518143e+04 +Electron-alpha_thermal_mean_free_path_at_point_337_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile337)_ 6.26379794652577184e+04 +Electron-alpha_thermal_mean_free_path_at_point_338_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile338)_ 6.21069337837673884e+04 +Electron-alpha_thermal_mean_free_path_at_point_339_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile339)_ 6.15774910384949690e+04 +Electron-alpha_thermal_mean_free_path_at_point_340_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile340)_ 6.10496759479541652e+04 +Electron-alpha_thermal_mean_free_path_at_point_341_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile341)_ 6.05235132242926484e+04 +Electron-alpha_thermal_mean_free_path_at_point_342_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile342)_ 5.99990275721256767e+04 +Electron-alpha_thermal_mean_free_path_at_point_343_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile343)_ 5.94762436873766273e+04 +Electron-alpha_thermal_mean_free_path_at_point_344_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile344)_ 5.89551862561203379e+04 +Electron-alpha_thermal_mean_free_path_at_point_345_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile345)_ 5.84358799534330683e+04 +Electron-alpha_thermal_mean_free_path_at_point_346_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile346)_ 5.79183494422496078e+04 +Electron-alpha_thermal_mean_free_path_at_point_347_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile347)_ 5.74026193722297176e+04 +Electron-alpha_thermal_mean_free_path_at_point_348_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile348)_ 5.68887143786332090e+04 +Electron-alpha_thermal_mean_free_path_at_point_349_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile349)_ 5.63766590812088325e+04 +Electron-alpha_thermal_mean_free_path_at_point_350_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile350)_ 5.58664780830954696e+04 +Electron-alpha_thermal_mean_free_path_at_point_351_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile351)_ 5.53581959697359343e+04 +Electron-alpha_thermal_mean_free_path_at_point_352_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile352)_ 5.48518373078139412e+04 +Electron-alpha_thermal_mean_free_path_at_point_353_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile353)_ 5.43474266442031658e+04 +Electron-alpha_thermal_mean_free_path_at_point_354_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile354)_ 5.38449885049425575e+04 +Electron-alpha_thermal_mean_free_path_at_point_355_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile355)_ 5.33445473942316385e+04 +Electron-alpha_thermal_mean_free_path_at_point_356_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile356)_ 5.28461277934539321e+04 +Electron-alpha_thermal_mean_free_path_at_point_357_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile357)_ 5.23497541602271012e+04 +Electron-alpha_thermal_mean_free_path_at_point_358_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile358)_ 5.18554509274854936e+04 +Electron-alpha_thermal_mean_free_path_at_point_359_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile359)_ 5.13632425025952762e+04 +Electron-alpha_thermal_mean_free_path_at_point_360_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile360)_ 5.08731532665075792e+04 +Electron-alpha_thermal_mean_free_path_at_point_361_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile361)_ 5.03852075729514836e+04 +Electron-alpha_thermal_mean_free_path_at_point_362_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile362)_ 4.98994297476710635e+04 +Electron-alpha_thermal_mean_free_path_at_point_363_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile363)_ 4.94158440877092071e+04 +Electron-alpha_thermal_mean_free_path_at_point_364_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile364)_ 4.89344748607446163e+04 +Electron-alpha_thermal_mean_free_path_at_point_365_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile365)_ 4.84553463044812161e+04 +Electron-alpha_thermal_mean_free_path_at_point_366_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile366)_ 4.79784826261023700e+04 +Electron-alpha_thermal_mean_free_path_at_point_367_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile367)_ 4.75039080017840897e+04 +Electron-alpha_thermal_mean_free_path_at_point_368_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile368)_ 4.70316465762838707e+04 +Electron-alpha_thermal_mean_free_path_at_point_369_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile369)_ 4.65617224626006719e+04 +Electron-alpha_thermal_mean_free_path_at_point_370_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile370)_ 4.60941597417183948e+04 +Electron-alpha_thermal_mean_free_path_at_point_371_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile371)_ 4.56289824624350804e+04 +Electron-alpha_thermal_mean_free_path_at_point_372_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile372)_ 4.51662146412862203e+04 +Electron-alpha_thermal_mean_free_path_at_point_373_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile373)_ 4.47058802625692042e+04 +Electron-alpha_thermal_mean_free_path_at_point_374_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile374)_ 4.42480032784746145e+04 +Electron-alpha_thermal_mean_free_path_at_point_375_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile375)_ 4.37926076093351658e+04 +Electron-alpha_thermal_mean_free_path_at_point_376_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile376)_ 4.33397171439977174e+04 +Electron-alpha_thermal_mean_free_path_at_point_377_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile377)_ 4.28893557403278610e+04 +Electron-alpha_thermal_mean_free_path_at_point_378_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile378)_ 4.24415472258601585e+04 +Electron-alpha_thermal_mean_free_path_at_point_379_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile379)_ 4.19963153985995596e+04 +Electron-alpha_thermal_mean_free_path_at_point_380_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile380)_ 4.15536840279863900e+04 +Electron-alpha_thermal_mean_free_path_at_point_381_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile381)_ 4.11136768560395140e+04 +Electron-alpha_thermal_mean_free_path_at_point_382_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile382)_ 4.06763175986860297e+04 +Electron-alpha_thermal_mean_free_path_at_point_383_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile383)_ 4.02416299472939718e+04 +Electron-alpha_thermal_mean_free_path_at_point_384_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile384)_ 3.98096375704194797e+04 +Electron-alpha_thermal_mean_free_path_at_point_385_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile385)_ 3.93803641157877209e+04 +Electron-alpha_thermal_mean_free_path_at_point_386_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile386)_ 3.89538332125191737e+04 +Electron-alpha_thermal_mean_free_path_at_point_387_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile387)_ 3.85300684736248877e+04 +Electron-alpha_thermal_mean_free_path_at_point_388_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile388)_ 3.81090934987814398e+04 +Electron-alpha_thermal_mean_free_path_at_point_389_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile389)_ 3.76909318774150743e+04 +Electron-alpha_thermal_mean_free_path_at_point_390_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile390)_ 3.72756071921099428e+04 +Electron-alpha_thermal_mean_free_path_at_point_391_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile391)_ 3.68631430223664211e+04 +Electron-alpha_thermal_mean_free_path_at_point_392_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile392)_ 3.64535629487344995e+04 +Electron-alpha_thermal_mean_free_path_at_point_393_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile393)_ 3.60468905573491429e+04 +Electron-alpha_thermal_mean_free_path_at_point_394_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile394)_ 3.56431494448970698e+04 +Electron-alpha_thermal_mean_free_path_at_point_395_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile395)_ 3.52423632240444131e+04 +Electron-alpha_thermal_mean_free_path_at_point_396_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile396)_ 3.48445555293630823e+04 +Electron-alpha_thermal_mean_free_path_at_point_397_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile397)_ 3.44497500237859640e+04 +Electron-alpha_thermal_mean_free_path_at_point_398_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile398)_ 3.40579704056369883e+04 +Electron-alpha_thermal_mean_free_path_at_point_399_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile399)_ 3.36692404162734019e+04 +Electron-alpha_thermal_mean_free_path_at_point_400_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile400)_ 3.32835838483889966e+04 +Electron-alpha_thermal_mean_free_path_at_point_401_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile401)_ 3.29010245550267136e+04 +Electron-alpha_thermal_mean_free_path_at_point_402_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile402)_ 3.25215864593540682e+04 +Electron-alpha_thermal_mean_free_path_at_point_403_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile403)_ 3.21452935652608394e+04 +Electron-alpha_thermal_mean_free_path_at_point_404_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile404)_ 3.17721699688414374e+04 +Electron-alpha_thermal_mean_free_path_at_point_405_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile405)_ 3.14022398708295368e+04 +Electron-alpha_thermal_mean_free_path_at_point_406_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile406)_ 3.10355275900635461e+04 +Electron-alpha_thermal_mean_free_path_at_point_407_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile407)_ 3.06720575780580766e+04 +Electron-alpha_thermal_mean_free_path_at_point_408_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile408)_ 3.03118544347757925e+04 +Electron-alpha_thermal_mean_free_path_at_point_409_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile409)_ 2.99549429256917392e+04 +Electron-alpha_thermal_mean_free_path_at_point_410_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile410)_ 2.96013480002588440e+04 +Electron-alpha_thermal_mean_free_path_at_point_411_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile411)_ 2.92510948118882225e+04 +Electron-alpha_thermal_mean_free_path_at_point_412_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile412)_ 2.89042087395702911e+04 +Electron-alpha_thermal_mean_free_path_at_point_413_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile413)_ 2.85607154112749922e+04 +Electron-alpha_thermal_mean_free_path_at_point_414_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile414)_ 2.82206407292861259e+04 +Electron-alpha_thermal_mean_free_path_at_point_415_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile415)_ 2.78840108976324045e+04 +Electron-alpha_thermal_mean_free_path_at_point_416_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile416)_ 2.75508524518005979e+04 +Electron-alpha_thermal_mean_free_path_at_point_417_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile417)_ 2.72211922909366767e+04 +Electron-alpha_thermal_mean_free_path_at_point_418_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile418)_ 2.68950577127549113e+04 +Electron-alpha_thermal_mean_free_path_at_point_419_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile419)_ 2.65724764514043127e+04 +Electron-alpha_thermal_mean_free_path_at_point_420_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile420)_ 2.62534767185690871e+04 +Electron-alpha_thermal_mean_free_path_at_point_421_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile421)_ 2.59380872481057049e+04 +Electron-alpha_thermal_mean_free_path_at_point_422_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile422)_ 2.56263373445571669e+04 +Electron-alpha_thermal_mean_free_path_at_point_423_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile423)_ 2.53182569359245936e+04 +Electron-alpha_thermal_mean_free_path_at_point_424_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile424)_ 2.50138766311162908e+04 +Electron-alpha_thermal_mean_free_path_at_point_425_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile425)_ 2.47132277825500023e+04 +Electron-alpha_thermal_mean_free_path_at_point_426_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile426)_ 2.44163425544398488e+04 +Electron-alpha_thermal_mean_free_path_at_point_427_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile427)_ 2.41232539973630301e+04 +Electron-alpha_thermal_mean_free_path_at_point_428_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile428)_ 2.38339961297850314e+04 +Electron-alpha_thermal_mean_free_path_at_point_429_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile429)_ 2.35486040273011677e+04 +Electron-alpha_thermal_mean_free_path_at_point_430_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile430)_ 2.32671139204603751e+04 +Electron-alpha_thermal_mean_free_path_at_point_431_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile431)_ 2.29895633021539943e+04 +Electron-alpha_thermal_mean_free_path_at_point_432_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile432)_ 2.27159910456889520e+04 +Electron-alpha_thermal_mean_free_path_at_point_433_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile433)_ 2.24464375348279355e+04 +Electron-alpha_thermal_mean_free_path_at_point_434_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile434)_ 2.21809448072671221e+04 +Electron-alpha_thermal_mean_free_path_at_point_435_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile435)_ 2.19195567132458018e+04 +Electron-alpha_thermal_mean_free_path_at_point_436_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile436)_ 2.16623190912493083e+04 +Electron-alpha_thermal_mean_free_path_at_point_437_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile437)_ 2.14092799630769587e+04 +Electron-alpha_thermal_mean_free_path_at_point_438_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile438)_ 2.11604897509290422e+04 +Electron-alpha_thermal_mean_free_path_at_point_439_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile439)_ 2.09160015196128297e+04 +Electron-alpha_thermal_mean_free_path_at_point_440_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile440)_ 2.06758712475220455e+04 +Electron-alpha_thermal_mean_free_path_at_point_441_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile441)_ 2.04401581307013621e+04 +Electron-alpha_thermal_mean_free_path_at_point_442_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile442)_ 2.02089249251254951e+04 +Electron-alpha_thermal_mean_free_path_at_point_443_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile443)_ 1.99822383333178441e+04 +Electron-alpha_thermal_mean_free_path_at_point_444_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile444)_ 1.97601694426756221e+04 +Electron-alpha_thermal_mean_free_path_at_point_445_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile445)_ 1.95427942244131955e+04 +Electron-alpha_thermal_mean_free_path_at_point_446_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile446)_ 1.93301941039809462e+04 +Electron-alpha_thermal_mean_free_path_at_point_447_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile447)_ 1.91224566162854244e+04 +Electron-alpha_thermal_mean_free_path_at_point_448_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile448)_ 1.89196761622023405e+04 +Electron-alpha_thermal_mean_free_path_at_point_449_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile449)_ 1.87219548869552382e+04 +Electron-alpha_thermal_mean_free_path_at_point_450_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile450)_ 1.85294037062929237e+04 +Electron-alpha_thermal_mean_free_path_at_point_451_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile451)_ 1.83421435134589592e+04 +Electron-alpha_thermal_mean_free_path_at_point_452_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile452)_ 1.81603066094327987e+04 +Electron-alpha_thermal_mean_free_path_at_point_453_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile453)_ 1.79840384117946596e+04 +Electron-alpha_thermal_mean_free_path_at_point_454_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile454)_ 1.78134995153277850e+04 +Electron-alpha_thermal_mean_free_path_at_point_455_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile455)_ 1.76488682024085392e+04 +Electron-alpha_thermal_mean_free_path_at_point_456_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile456)_ 1.74903435368875216e+04 +Electron-alpha_thermal_mean_free_path_at_point_457_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile457)_ 1.73381492272631149e+04 +Electron-alpha_thermal_mean_free_path_at_point_458_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile458)_ 1.71925385229011845e+04 +Electron-alpha_thermal_mean_free_path_at_point_459_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile459)_ 1.70538005269286587e+04 +Electron-alpha_thermal_mean_free_path_at_point_460_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile460)_ 1.69222684996121898e+04 +Electron-alpha_thermal_mean_free_path_at_point_461_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile461)_ 1.67983310389382568e+04 +Electron-alpha_thermal_mean_free_path_at_point_462_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile462)_ 1.66824475623860380e+04 +Electron-alpha_thermal_mean_free_path_at_point_463_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile463)_ 1.65751704847297842e+04 +Electron-alpha_thermal_mean_free_path_at_point_464_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile464)_ 1.64771783536376897e+04 +Electron-alpha_thermal_mean_free_path_at_point_465_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile465)_ 1.63893280852765129e+04 +Electron-alpha_thermal_mean_free_path_at_point_466_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile466)_ 1.63127433606282575e+04 +Electron-alpha_thermal_mean_free_path_at_point_467_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile467)_ 1.62489797338178778e+04 +Electron-alpha_thermal_mean_free_path_at_point_468_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile468)_ 1.62003825089239454e+04 +Electron-alpha_thermal_mean_free_path_at_point_469_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile469)_ 1.61710927476322540e+04 +Electron-alpha_thermal_mean_free_path_at_point_470_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile470)_ 1.61732021261245154e+04 +Electron-alpha_thermal_mean_free_path_at_point_471_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile471)_ 1.53700002405186551e+04 +Electron-alpha_thermal_mean_free_path_at_point_472_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile472)_ 1.45770201672418243e+04 +Electron-alpha_thermal_mean_free_path_at_point_473_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile473)_ 1.37947631671334584e+04 +Electron-alpha_thermal_mean_free_path_at_point_474_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile474)_ 1.30237614336399620e+04 +Electron-alpha_thermal_mean_free_path_at_point_475_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile475)_ 1.22645805302663775e+04 +Electron-alpha_thermal_mean_free_path_at_point_476_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile476)_ 1.15178220675102530e+04 +Electron-alpha_thermal_mean_free_path_at_point_477_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile477)_ 1.07841266483667241e+04 +Electron-alpha_thermal_mean_free_path_at_point_478_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile478)_ 1.00641771158836309e+04 +Electron-alpha_thermal_mean_free_path_at_point_479_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile479)_ 9.35870214148518244e+03 +Electron-alpha_thermal_mean_free_path_at_point_480_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile480)_ 8.66848019907031812e+03 +Electron-alpha_thermal_mean_free_path_at_point_481_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile481)_ 7.99434397749907839e+03 +Electron-alpha_thermal_mean_free_path_at_point_482_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile482)_ 7.33718529338346707e+03 +Electron-alpha_thermal_mean_free_path_at_point_483_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile483)_ 6.69796057758743154e+03 +Electron-alpha_thermal_mean_free_path_at_point_484_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile484)_ 6.07769702321496879e+03 +Electron-alpha_thermal_mean_free_path_at_point_485_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile485)_ 5.47749950111047019e+03 +Electron-alpha_thermal_mean_free_path_at_point_486_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile486)_ 4.89855837243168662e+03 +Electron-alpha_thermal_mean_free_path_at_point_487_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile487)_ 4.34215835881707972e+03 +Electron-alpha_thermal_mean_free_path_at_point_488_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile488)_ 3.80968867230669412e+03 +Electron-alpha_thermal_mean_free_path_at_point_489_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile489)_ 3.30265466463521579e+03 +Electron-alpha_thermal_mean_free_path_at_point_490_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile490)_ 2.82269133723203868e+03 +Electron-alpha_thermal_mean_free_path_at_point_491_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile491)_ 2.37157917360834426e+03 +Electron-alpha_thermal_mean_free_path_at_point_492_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile492)_ 1.95126294047708780e+03 +Electron-alpha_thermal_mean_free_path_at_point_493_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile493)_ 1.56387440128377466e+03 +Electron-alpha_thermal_mean_free_path_at_point_494_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile494)_ 1.21176039284905892e+03 +Electron-alpha_thermal_mean_free_path_at_point_495_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile495)_ 8.97518642404819730e+02 +Electron-alpha_thermal_mean_free_path_at_point_496_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile496)_ 6.24045547388163413e+02 +Electron-alpha_thermal_mean_free_path_at_point_497_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile497)_ 3.94604243289485055e+02 +Electron-alpha_thermal_mean_free_path_at_point_498_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile498)_ 2.12931889582039986e+02 +Electron-alpha_thermal_mean_free_path_at_point_499_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile499)_ 8.34394429937962201e+01 +Electron-alpha_thermal_mean_free_path_at_point_500_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile500)_ 1.20773436183640399e+01 +Volume_averaged_electron-alpha_Spitzer_slowing_down_time_(s)_____________ (t_plasma_electron_alpha_spitzer_slow_vol_avg)_ 6.20026946645241606e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_0______________________ (t_plasma_electron_alpha_spitzer_slow_profile0)_ 1.36296260831635707e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_1______________________ (t_plasma_electron_alpha_spitzer_slow_profile1)_ 1.36295479163351030e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_2______________________ (t_plasma_electron_alpha_spitzer_slow_profile2)_ 1.36293134168762520e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_3______________________ (t_plasma_electron_alpha_spitzer_slow_profile3)_ 1.36289225878667053e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_4______________________ (t_plasma_electron_alpha_spitzer_slow_profile4)_ 1.36283754344394037e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_5______________________ (t_plasma_electron_alpha_spitzer_slow_profile5)_ 1.36276719637807364e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_6______________________ (t_plasma_electron_alpha_spitzer_slow_profile6)_ 1.36268121851307700e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_7______________________ (t_plasma_electron_alpha_spitzer_slow_profile7)_ 1.36257961097836233e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_8______________________ (t_plasma_electron_alpha_spitzer_slow_profile8)_ 1.36246237510878498e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_9______________________ (t_plasma_electron_alpha_spitzer_slow_profile9)_ 1.36232951244469458e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_10_____________________ (t_plasma_electron_alpha_spitzer_slow_profile10)_ 1.36218102473198877e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_11_____________________ (t_plasma_electron_alpha_spitzer_slow_profile11)_ 1.36201691392217916e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_12_____________________ (t_plasma_electron_alpha_spitzer_slow_profile12)_ 1.36183718217246019e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_13_____________________ (t_plasma_electron_alpha_spitzer_slow_profile13)_ 1.36164183184578857e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_14_____________________ (t_plasma_electron_alpha_spitzer_slow_profile14)_ 1.36143086551096948e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_15_____________________ (t_plasma_electron_alpha_spitzer_slow_profile15)_ 1.36120428594274956e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_16_____________________ (t_plasma_electron_alpha_spitzer_slow_profile16)_ 1.36096209612191865e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_17_____________________ (t_plasma_electron_alpha_spitzer_slow_profile17)_ 1.36070429923541658e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_18_____________________ (t_plasma_electron_alpha_spitzer_slow_profile18)_ 1.36043089867645284e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_19_____________________ (t_plasma_electron_alpha_spitzer_slow_profile19)_ 1.36014189804462649e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_20_____________________ (t_plasma_electron_alpha_spitzer_slow_profile20)_ 1.35983730114605761e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_21_____________________ (t_plasma_electron_alpha_spitzer_slow_profile21)_ 1.35951711199352965e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_22_____________________ (t_plasma_electron_alpha_spitzer_slow_profile22)_ 1.35918133480663195e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_23_____________________ (t_plasma_electron_alpha_spitzer_slow_profile23)_ 1.35882997401191385e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_24_____________________ (t_plasma_electron_alpha_spitzer_slow_profile24)_ 1.35846303424305015e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_25_____________________ (t_plasma_electron_alpha_spitzer_slow_profile25)_ 1.35808052034100446e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_26_____________________ (t_plasma_electron_alpha_spitzer_slow_profile26)_ 1.35768243735420935e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_27_____________________ (t_plasma_electron_alpha_spitzer_slow_profile27)_ 1.35726879053875038e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_28_____________________ (t_plasma_electron_alpha_spitzer_slow_profile28)_ 1.35683958535855931e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_29_____________________ (t_plasma_electron_alpha_spitzer_slow_profile29)_ 1.35639482748561035e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_30_____________________ (t_plasma_electron_alpha_spitzer_slow_profile30)_ 1.35593452280012805e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_31_____________________ (t_plasma_electron_alpha_spitzer_slow_profile31)_ 1.35545867739080705e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_32_____________________ (t_plasma_electron_alpha_spitzer_slow_profile32)_ 1.35496729755502865e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_33_____________________ (t_plasma_electron_alpha_spitzer_slow_profile33)_ 1.35446038979909611e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_34_____________________ (t_plasma_electron_alpha_spitzer_slow_profile34)_ 1.35393796083846807e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_35_____________________ (t_plasma_electron_alpha_spitzer_slow_profile35)_ 1.35340001759801010e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_36_____________________ (t_plasma_electron_alpha_spitzer_slow_profile36)_ 1.35284656721224361e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_37_____________________ (t_plasma_electron_alpha_spitzer_slow_profile37)_ 1.35227761702560967e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_38_____________________ (t_plasma_electron_alpha_spitzer_slow_profile38)_ 1.35169317459273919e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_39_____________________ (t_plasma_electron_alpha_spitzer_slow_profile39)_ 1.35109324767872874e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_40_____________________ (t_plasma_electron_alpha_spitzer_slow_profile40)_ 1.35047784425942385e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_41_____________________ (t_plasma_electron_alpha_spitzer_slow_profile41)_ 1.34984697252171770e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_42_____________________ (t_plasma_electron_alpha_spitzer_slow_profile42)_ 1.34920064086384595e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_43_____________________ (t_plasma_electron_alpha_spitzer_slow_profile43)_ 1.34853885789569805e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_44_____________________ (t_plasma_electron_alpha_spitzer_slow_profile44)_ 1.34786163243913770e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_45_____________________ (t_plasma_electron_alpha_spitzer_slow_profile45)_ 1.34716897352831877e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_46_____________________ (t_plasma_electron_alpha_spitzer_slow_profile46)_ 1.34646089041002792e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_47_____________________ (t_plasma_electron_alpha_spitzer_slow_profile47)_ 1.34573739254401770e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_48_____________________ (t_plasma_electron_alpha_spitzer_slow_profile48)_ 1.34499848960336177e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_49_____________________ (t_plasma_electron_alpha_spitzer_slow_profile49)_ 1.34424419147480734e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_50_____________________ (t_plasma_electron_alpha_spitzer_slow_profile50)_ 1.34347450825914083e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_51_____________________ (t_plasma_electron_alpha_spitzer_slow_profile51)_ 1.34268945027156472e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_52_____________________ (t_plasma_electron_alpha_spitzer_slow_profile52)_ 1.34188902804207366e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_53_____________________ (t_plasma_electron_alpha_spitzer_slow_profile53)_ 1.34107325231585017e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_54_____________________ (t_plasma_electron_alpha_spitzer_slow_profile54)_ 1.34024213405365722e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_55_____________________ (t_plasma_electron_alpha_spitzer_slow_profile55)_ 1.33939568443224677e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_56_____________________ (t_plasma_electron_alpha_spitzer_slow_profile56)_ 1.33853391484477502e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_57_____________________ (t_plasma_electron_alpha_spitzer_slow_profile57)_ 1.33765683690122317e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_58_____________________ (t_plasma_electron_alpha_spitzer_slow_profile58)_ 1.33676446242883151e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_59_____________________ (t_plasma_electron_alpha_spitzer_slow_profile59)_ 1.33585680347253533e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_60_____________________ (t_plasma_electron_alpha_spitzer_slow_profile60)_ 1.33493387229541693e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_61_____________________ (t_plasma_electron_alpha_spitzer_slow_profile61)_ 1.33399568137915869e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_62_____________________ (t_plasma_electron_alpha_spitzer_slow_profile62)_ 1.33304224342451039e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_63_____________________ (t_plasma_electron_alpha_spitzer_slow_profile63)_ 1.33207357135176241e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_64_____________________ (t_plasma_electron_alpha_spitzer_slow_profile64)_ 1.33108967830122649e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_65_____________________ (t_plasma_electron_alpha_spitzer_slow_profile65)_ 1.33009057763372951e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_66_____________________ (t_plasma_electron_alpha_spitzer_slow_profile66)_ 1.32907628293110958e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_67_____________________ (t_plasma_electron_alpha_spitzer_slow_profile67)_ 1.32804680799672625e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_68_____________________ (t_plasma_electron_alpha_spitzer_slow_profile68)_ 1.32700216685597705e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_69_____________________ (t_plasma_electron_alpha_spitzer_slow_profile69)_ 1.32594237375682367e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_70_____________________ (t_plasma_electron_alpha_spitzer_slow_profile70)_ 1.32486744317032623e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_71_____________________ (t_plasma_electron_alpha_spitzer_slow_profile71)_ 1.32377738979118487e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_72_____________________ (t_plasma_electron_alpha_spitzer_slow_profile72)_ 1.32267222853829680e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_73_____________________ (t_plasma_electron_alpha_spitzer_slow_profile73)_ 1.32155197455531193e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_74_____________________ (t_plasma_electron_alpha_spitzer_slow_profile74)_ 1.32041664321120789e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_75_____________________ (t_plasma_electron_alpha_spitzer_slow_profile75)_ 1.31926625010086584e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_76_____________________ (t_plasma_electron_alpha_spitzer_slow_profile76)_ 1.31810081104566312e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_77_____________________ (t_plasma_electron_alpha_spitzer_slow_profile77)_ 1.31692034209406650e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_78_____________________ (t_plasma_electron_alpha_spitzer_slow_profile78)_ 1.31572485952224061e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_79_____________________ (t_plasma_electron_alpha_spitzer_slow_profile79)_ 1.31451437983466701e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_80_____________________ (t_plasma_electron_alpha_spitzer_slow_profile80)_ 1.31328891976476547e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_81_____________________ (t_plasma_electron_alpha_spitzer_slow_profile81)_ 1.31204849627552944e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_82_____________________ (t_plasma_electron_alpha_spitzer_slow_profile82)_ 1.31079312656017266e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_83_____________________ (t_plasma_electron_alpha_spitzer_slow_profile83)_ 1.30952282804278020e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_84_____________________ (t_plasma_electron_alpha_spitzer_slow_profile84)_ 1.30823761837897501e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_85_____________________ (t_plasma_electron_alpha_spitzer_slow_profile85)_ 1.30693751545658565e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_86_____________________ (t_plasma_electron_alpha_spitzer_slow_profile86)_ 1.30562253739633172e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_87_____________________ (t_plasma_electron_alpha_spitzer_slow_profile87)_ 1.30429270255251617e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_88_____________________ (t_plasma_electron_alpha_spitzer_slow_profile88)_ 1.30294802951372568e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_89_____________________ (t_plasma_electron_alpha_spitzer_slow_profile89)_ 1.30158853710354472e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_90_____________________ (t_plasma_electron_alpha_spitzer_slow_profile90)_ 1.30021424438127209e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_91_____________________ (t_plasma_electron_alpha_spitzer_slow_profile91)_ 1.29882517064265701e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_92_____________________ (t_plasma_electron_alpha_spitzer_slow_profile92)_ 1.29742133542063853e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_93_____________________ (t_plasma_electron_alpha_spitzer_slow_profile93)_ 1.29600275848609492e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_94_____________________ (t_plasma_electron_alpha_spitzer_slow_profile94)_ 1.29456945984860994e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_95_____________________ (t_plasma_electron_alpha_spitzer_slow_profile95)_ 1.29312145975723958e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_96_____________________ (t_plasma_electron_alpha_spitzer_slow_profile96)_ 1.29165877870129542e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_97_____________________ (t_plasma_electron_alpha_spitzer_slow_profile97)_ 1.29018143741113822e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_98_____________________ (t_plasma_electron_alpha_spitzer_slow_profile98)_ 1.28868945685897840e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_99_____________________ (t_plasma_electron_alpha_spitzer_slow_profile99)_ 1.28718285825968981e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_100____________________ (t_plasma_electron_alpha_spitzer_slow_profile100)_ 1.28566166307163288e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_101____________________ (t_plasma_electron_alpha_spitzer_slow_profile101)_ 1.28412589299748947e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_102____________________ (t_plasma_electron_alpha_spitzer_slow_profile102)_ 1.28257556998510358e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_103____________________ (t_plasma_electron_alpha_spitzer_slow_profile103)_ 1.28101071622834306e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_104____________________ (t_plasma_electron_alpha_spitzer_slow_profile104)_ 1.27943135416796006e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_105____________________ (t_plasma_electron_alpha_spitzer_slow_profile105)_ 1.27783750649247052e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_106____________________ (t_plasma_electron_alpha_spitzer_slow_profile106)_ 1.27622919613904107e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_107____________________ (t_plasma_electron_alpha_spitzer_slow_profile107)_ 1.27460644629438846e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_108____________________ (t_plasma_electron_alpha_spitzer_slow_profile108)_ 1.27296928039568980e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_109____________________ (t_plasma_electron_alpha_spitzer_slow_profile109)_ 1.27131772213150129e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_110____________________ (t_plasma_electron_alpha_spitzer_slow_profile110)_ 1.26965179544269402e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_111____________________ (t_plasma_electron_alpha_spitzer_slow_profile111)_ 1.26797152452339312e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_112____________________ (t_plasma_electron_alpha_spitzer_slow_profile112)_ 1.26627693382193840e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_113____________________ (t_plasma_electron_alpha_spitzer_slow_profile113)_ 1.26456804804184575e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_114____________________ (t_plasma_electron_alpha_spitzer_slow_profile114)_ 1.26284489214278706e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_115____________________ (t_plasma_electron_alpha_spitzer_slow_profile115)_ 1.26110749134158162e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_116____________________ (t_plasma_electron_alpha_spitzer_slow_profile116)_ 1.25935587111319336e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_117____________________ (t_plasma_electron_alpha_spitzer_slow_profile117)_ 1.25759005719174977e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_118____________________ (t_plasma_electron_alpha_spitzer_slow_profile118)_ 1.25581007557156044e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_119____________________ (t_plasma_electron_alpha_spitzer_slow_profile119)_ 1.25401595250815978e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_120____________________ (t_plasma_electron_alpha_spitzer_slow_profile120)_ 1.25220771451935353e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_121____________________ (t_plasma_electron_alpha_spitzer_slow_profile121)_ 1.25038538838628033e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_122____________________ (t_plasma_electron_alpha_spitzer_slow_profile122)_ 1.24854900115448642e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_123____________________ (t_plasma_electron_alpha_spitzer_slow_profile123)_ 1.24669858013501056e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_124____________________ (t_plasma_electron_alpha_spitzer_slow_profile124)_ 1.24483415290548249e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_125____________________ (t_plasma_electron_alpha_spitzer_slow_profile125)_ 1.24295574731123648e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_126____________________ (t_plasma_electron_alpha_spitzer_slow_profile126)_ 1.24106339146642930e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_127____________________ (t_plasma_electron_alpha_spitzer_slow_profile127)_ 1.23915711375518445e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_128____________________ (t_plasma_electron_alpha_spitzer_slow_profile128)_ 1.23723694283273566e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_129____________________ (t_plasma_electron_alpha_spitzer_slow_profile129)_ 1.23530290762659090e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_130____________________ (t_plasma_electron_alpha_spitzer_slow_profile130)_ 1.23335503733770824e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_131____________________ (t_plasma_electron_alpha_spitzer_slow_profile131)_ 1.23139336144168410e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_132____________________ (t_plasma_electron_alpha_spitzer_slow_profile132)_ 1.22941790968995579e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_133____________________ (t_plasma_electron_alpha_spitzer_slow_profile133)_ 1.22742871211101456e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_134____________________ (t_plasma_electron_alpha_spitzer_slow_profile134)_ 1.22542579901163662e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_135____________________ (t_plasma_electron_alpha_spitzer_slow_profile135)_ 1.22340920097812500e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_136____________________ (t_plasma_electron_alpha_spitzer_slow_profile136)_ 1.22137894887756460e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_137____________________ (t_plasma_electron_alpha_spitzer_slow_profile137)_ 1.21933507385909223e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_138____________________ (t_plasma_electron_alpha_spitzer_slow_profile138)_ 1.21727760735518142e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_139____________________ (t_plasma_electron_alpha_spitzer_slow_profile139)_ 1.21520658108294155e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_140____________________ (t_plasma_electron_alpha_spitzer_slow_profile140)_ 1.21312202704542460e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_141____________________ (t_plasma_electron_alpha_spitzer_slow_profile141)_ 1.21102397753295765e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_142____________________ (t_plasma_electron_alpha_spitzer_slow_profile142)_ 1.20891246512448136e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_143____________________ (t_plasma_electron_alpha_spitzer_slow_profile143)_ 1.20678752268890399e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_144____________________ (t_plasma_electron_alpha_spitzer_slow_profile144)_ 1.20464918338647364e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_145____________________ (t_plasma_electron_alpha_spitzer_slow_profile145)_ 1.20249748067016116e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_146____________________ (t_plasma_electron_alpha_spitzer_slow_profile146)_ 1.20033244828706276e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_147____________________ (t_plasma_electron_alpha_spitzer_slow_profile147)_ 1.19815412027981161e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_148____________________ (t_plasma_electron_alpha_spitzer_slow_profile148)_ 1.19596253098800975e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_149____________________ (t_plasma_electron_alpha_spitzer_slow_profile149)_ 1.19375771504967365e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_150____________________ (t_plasma_electron_alpha_spitzer_slow_profile150)_ 1.19153970740269544e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_151____________________ (t_plasma_electron_alpha_spitzer_slow_profile151)_ 1.18930854328631708e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_152____________________ (t_plasma_electron_alpha_spitzer_slow_profile152)_ 1.18706425824262407e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_153____________________ (t_plasma_electron_alpha_spitzer_slow_profile153)_ 1.18480688811805601e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_154____________________ (t_plasma_electron_alpha_spitzer_slow_profile154)_ 1.18253646906492671e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_155____________________ (t_plasma_electron_alpha_spitzer_slow_profile155)_ 1.18025303754296629e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_156____________________ (t_plasma_electron_alpha_spitzer_slow_profile156)_ 1.17795663032087927e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_157____________________ (t_plasma_electron_alpha_spitzer_slow_profile157)_ 1.17564728447791489e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_158____________________ (t_plasma_electron_alpha_spitzer_slow_profile158)_ 1.17332503740545868e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_159____________________ (t_plasma_electron_alpha_spitzer_slow_profile159)_ 1.17098992680863967e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_160____________________ (t_plasma_electron_alpha_spitzer_slow_profile160)_ 1.16864199070795394e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_161____________________ (t_plasma_electron_alpha_spitzer_slow_profile161)_ 1.16628126744090088e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_162____________________ (t_plasma_electron_alpha_spitzer_slow_profile162)_ 1.16390779566364788e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_163____________________ (t_plasma_electron_alpha_spitzer_slow_profile163)_ 1.16152161435270096e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_164____________________ (t_plasma_electron_alpha_spitzer_slow_profile164)_ 1.15912276280659921e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_165____________________ (t_plasma_electron_alpha_spitzer_slow_profile165)_ 1.15671128064762385e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_166____________________ (t_plasma_electron_alpha_spitzer_slow_profile166)_ 1.15428720782353200e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_167____________________ (t_plasma_electron_alpha_spitzer_slow_profile167)_ 1.15185058460929524e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_168____________________ (t_plasma_electron_alpha_spitzer_slow_profile168)_ 1.14940145160887108e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_169____________________ (t_plasma_electron_alpha_spitzer_slow_profile169)_ 1.14693984975698426e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_170____________________ (t_plasma_electron_alpha_spitzer_slow_profile170)_ 1.14446582032092681e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_171____________________ (t_plasma_electron_alpha_spitzer_slow_profile171)_ 1.14197940490238259e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_172____________________ (t_plasma_electron_alpha_spitzer_slow_profile172)_ 1.13948064543926475e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_173____________________ (t_plasma_electron_alpha_spitzer_slow_profile173)_ 1.13696958420757377e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_174____________________ (t_plasma_electron_alpha_spitzer_slow_profile174)_ 1.13444626382327818e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_175____________________ (t_plasma_electron_alpha_spitzer_slow_profile175)_ 1.13191072724421260e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_176____________________ (t_plasma_electron_alpha_spitzer_slow_profile176)_ 1.12936301777199199e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_177____________________ (t_plasma_electron_alpha_spitzer_slow_profile177)_ 1.12680317905395255e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_178____________________ (t_plasma_electron_alpha_spitzer_slow_profile178)_ 1.12423125508510857e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_179____________________ (t_plasma_electron_alpha_spitzer_slow_profile179)_ 1.12164729021013043e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_180____________________ (t_plasma_electron_alpha_spitzer_slow_profile180)_ 1.11905132912534344e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_181____________________ (t_plasma_electron_alpha_spitzer_slow_profile181)_ 1.11644341688074622e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_182____________________ (t_plasma_electron_alpha_spitzer_slow_profile182)_ 1.11382359888205351e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_183____________________ (t_plasma_electron_alpha_spitzer_slow_profile183)_ 1.11119192089275520e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_184____________________ (t_plasma_electron_alpha_spitzer_slow_profile184)_ 1.10854842903620132e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_185____________________ (t_plasma_electron_alpha_spitzer_slow_profile185)_ 1.10589316979770547e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_186____________________ (t_plasma_electron_alpha_spitzer_slow_profile186)_ 1.10322619002667244e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_187____________________ (t_plasma_electron_alpha_spitzer_slow_profile187)_ 1.10054753693874630e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_188____________________ (t_plasma_electron_alpha_spitzer_slow_profile188)_ 1.09785725811798063e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_189____________________ (t_plasma_electron_alpha_spitzer_slow_profile189)_ 1.09515540151903390e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_190____________________ (t_plasma_electron_alpha_spitzer_slow_profile190)_ 1.09244201546938502e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_191____________________ (t_plasma_electron_alpha_spitzer_slow_profile191)_ 1.08971714867157066e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_192____________________ (t_plasma_electron_alpha_spitzer_slow_profile192)_ 1.08698085020545254e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_193____________________ (t_plasma_electron_alpha_spitzer_slow_profile193)_ 1.08423316953049831e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_194____________________ (t_plasma_electron_alpha_spitzer_slow_profile194)_ 1.08147415648809608e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_195____________________ (t_plasma_electron_alpha_spitzer_slow_profile195)_ 1.07870386130388529e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_196____________________ (t_plasma_electron_alpha_spitzer_slow_profile196)_ 1.07592233459011721e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_197____________________ (t_plasma_electron_alpha_spitzer_slow_profile197)_ 1.07312962734803663e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_198____________________ (t_plasma_electron_alpha_spitzer_slow_profile198)_ 1.07032579097029057e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_199____________________ (t_plasma_electron_alpha_spitzer_slow_profile199)_ 1.06751087724335858e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_200____________________ (t_plasma_electron_alpha_spitzer_slow_profile200)_ 1.06468493835001698e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_201____________________ (t_plasma_electron_alpha_spitzer_slow_profile201)_ 1.06184802687181512e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_202____________________ (t_plasma_electron_alpha_spitzer_slow_profile202)_ 1.05900019579159244e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_203____________________ (t_plasma_electron_alpha_spitzer_slow_profile203)_ 1.05614149849600869e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_204____________________ (t_plasma_electron_alpha_spitzer_slow_profile204)_ 1.05327198877811101e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_205____________________ (t_plasma_electron_alpha_spitzer_slow_profile205)_ 1.05039172083992183e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_206____________________ (t_plasma_electron_alpha_spitzer_slow_profile206)_ 1.04750074929505566e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_207____________________ (t_plasma_electron_alpha_spitzer_slow_profile207)_ 1.04459912917136299e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_208____________________ (t_plasma_electron_alpha_spitzer_slow_profile208)_ 1.04168691591360418e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_209____________________ (t_plasma_electron_alpha_spitzer_slow_profile209)_ 1.03876416538614658e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_210____________________ (t_plasma_electron_alpha_spitzer_slow_profile210)_ 1.03583093387569680e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_211____________________ (t_plasma_electron_alpha_spitzer_slow_profile211)_ 1.03288727809405279e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_212____________________ (t_plasma_electron_alpha_spitzer_slow_profile212)_ 1.02993325518089685e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_213____________________ (t_plasma_electron_alpha_spitzer_slow_profile213)_ 1.02696892270660611e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_214____________________ (t_plasma_electron_alpha_spitzer_slow_profile214)_ 1.02399433867510092e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_215____________________ (t_plasma_electron_alpha_spitzer_slow_profile215)_ 1.02100956152671918e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_216____________________ (t_plasma_electron_alpha_spitzer_slow_profile216)_ 1.01801465014112469e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_217____________________ (t_plasma_electron_alpha_spitzer_slow_profile217)_ 1.01500966384024172e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_218____________________ (t_plasma_electron_alpha_spitzer_slow_profile218)_ 1.01199466239122549e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_219____________________ (t_plasma_electron_alpha_spitzer_slow_profile219)_ 1.00896970600946045e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_220____________________ (t_plasma_electron_alpha_spitzer_slow_profile220)_ 1.00593485536159455e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_221____________________ (t_plasma_electron_alpha_spitzer_slow_profile221)_ 1.00289017156860250e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_222____________________ (t_plasma_electron_alpha_spitzer_slow_profile222)_ 9.99835716208881564e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_223____________________ (t_plasma_electron_alpha_spitzer_slow_profile223)_ 9.96771551321384730e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_224____________________ (t_plasma_electron_alpha_spitzer_slow_profile224)_ 9.93697739408782477e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_225____________________ (t_plasma_electron_alpha_spitzer_slow_profile225)_ 9.90614343440663125e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_226____________________ (t_plasma_electron_alpha_spitzer_slow_profile226)_ 9.87521426856762474e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_227____________________ (t_plasma_electron_alpha_spitzer_slow_profile227)_ 9.84419053570234293e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_228____________________ (t_plasma_electron_alpha_spitzer_slow_profile228)_ 9.81307287970952014e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_229____________________ (t_plasma_electron_alpha_spitzer_slow_profile229)_ 9.78186194928845842e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_230____________________ (t_plasma_electron_alpha_spitzer_slow_profile230)_ 9.75055839797279722e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_231____________________ (t_plasma_electron_alpha_spitzer_slow_profile231)_ 9.71916288416462715e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_232____________________ (t_plasma_electron_alpha_spitzer_slow_profile232)_ 9.68767607116896912e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_233____________________ (t_plasma_electron_alpha_spitzer_slow_profile233)_ 9.65609862722863976e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_234____________________ (t_plasma_electron_alpha_spitzer_slow_profile234)_ 9.62443122555951436e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_235____________________ (t_plasma_electron_alpha_spitzer_slow_profile235)_ 9.59267454438614053e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_236____________________ (t_plasma_electron_alpha_spitzer_slow_profile236)_ 9.56082926697778390e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_237____________________ (t_plasma_electron_alpha_spitzer_slow_profile237)_ 9.52889608168483448e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_238____________________ (t_plasma_electron_alpha_spitzer_slow_profile238)_ 9.49687568197565946e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_239____________________ (t_plasma_electron_alpha_spitzer_slow_profile239)_ 9.46476876647379894e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_240____________________ (t_plasma_electron_alpha_spitzer_slow_profile240)_ 9.43257603899567254e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_241____________________ (t_plasma_electron_alpha_spitzer_slow_profile241)_ 9.40029820858858001e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_242____________________ (t_plasma_electron_alpha_spitzer_slow_profile242)_ 9.36793598956925155e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_243____________________ (t_plasma_electron_alpha_spitzer_slow_profile243)_ 9.33549010156275338e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_244____________________ (t_plasma_electron_alpha_spitzer_slow_profile244)_ 9.30296126954185176e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_245____________________ (t_plasma_electron_alpha_spitzer_slow_profile245)_ 9.27035022386681673e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_246____________________ (t_plasma_electron_alpha_spitzer_slow_profile246)_ 9.23765770032570099e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_247____________________ (t_plasma_electron_alpha_spitzer_slow_profile247)_ 9.20488444017501517e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_248____________________ (t_plasma_electron_alpha_spitzer_slow_profile248)_ 9.17203119018094037e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_249____________________ (t_plasma_electron_alpha_spitzer_slow_profile249)_ 9.13909870266096269e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_250____________________ (t_plasma_electron_alpha_spitzer_slow_profile250)_ 9.10608773552600392e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_251____________________ (t_plasma_electron_alpha_spitzer_slow_profile251)_ 9.07299905232302417e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_252____________________ (t_plasma_electron_alpha_spitzer_slow_profile252)_ 9.03983342227810738e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_253____________________ (t_plasma_electron_alpha_spitzer_slow_profile253)_ 9.00659162034009197e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_254____________________ (t_plasma_electron_alpha_spitzer_slow_profile254)_ 8.97327442722463231e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_255____________________ (t_plasma_electron_alpha_spitzer_slow_profile255)_ 8.93988262945887291e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_256____________________ (t_plasma_electron_alpha_spitzer_slow_profile256)_ 8.90641701942653130e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_257____________________ (t_plasma_electron_alpha_spitzer_slow_profile257)_ 8.87287839541359036e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_258____________________ (t_plasma_electron_alpha_spitzer_slow_profile258)_ 8.83926756165451577e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_259____________________ (t_plasma_electron_alpha_spitzer_slow_profile259)_ 8.80558532837899088e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_260____________________ (t_plasma_electron_alpha_spitzer_slow_profile260)_ 8.77183251185924662e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_261____________________ (t_plasma_electron_alpha_spitzer_slow_profile261)_ 8.73800993445791208e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_262____________________ (t_plasma_electron_alpha_spitzer_slow_profile262)_ 8.70411842467646357e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_263____________________ (t_plasma_electron_alpha_spitzer_slow_profile263)_ 8.67015881720426540e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_264____________________ (t_plasma_electron_alpha_spitzer_slow_profile264)_ 8.63613195296819236e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_265____________________ (t_plasma_electron_alpha_spitzer_slow_profile265)_ 8.60203867918283183e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_266____________________ (t_plasma_electron_alpha_spitzer_slow_profile266)_ 8.56787984940132752e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_267____________________ (t_plasma_electron_alpha_spitzer_slow_profile267)_ 8.53365632356684167e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_268____________________ (t_plasma_electron_alpha_spitzer_slow_profile268)_ 8.49936896806465447e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_269____________________ (t_plasma_electron_alpha_spitzer_slow_profile269)_ 8.46501865577485857e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_270____________________ (t_plasma_electron_alpha_spitzer_slow_profile270)_ 8.43060626612578301e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_271____________________ (t_plasma_electron_alpha_spitzer_slow_profile271)_ 8.39613268514802891e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_272____________________ (t_plasma_electron_alpha_spitzer_slow_profile272)_ 8.36159880552920898e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_273____________________ (t_plasma_electron_alpha_spitzer_slow_profile273)_ 8.32700552666936322e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_274____________________ (t_plasma_electron_alpha_spitzer_slow_profile274)_ 8.29235375473710290e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_275____________________ (t_plasma_electron_alpha_spitzer_slow_profile275)_ 8.25764440272639844e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_276____________________ (t_plasma_electron_alpha_spitzer_slow_profile276)_ 8.22287839051421776e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_277____________________ (t_plasma_electron_alpha_spitzer_slow_profile277)_ 8.18805664491876861e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_278____________________ (t_plasma_electron_alpha_spitzer_slow_profile278)_ 8.15318009975862235e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_279____________________ (t_plasma_electron_alpha_spitzer_slow_profile279)_ 8.11824969591249501e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_280____________________ (t_plasma_electron_alpha_spitzer_slow_profile280)_ 8.08326638137990439e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_281____________________ (t_plasma_electron_alpha_spitzer_slow_profile281)_ 8.04823111134257529e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_282____________________ (t_plasma_electron_alpha_spitzer_slow_profile282)_ 8.01314484822666317e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_283____________________ (t_plasma_electron_alpha_spitzer_slow_profile283)_ 7.97800856176584028e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_284____________________ (t_plasma_electron_alpha_spitzer_slow_profile284)_ 7.94282322906517457e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_285____________________ (t_plasma_electron_alpha_spitzer_slow_profile285)_ 7.90758983466596455e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_286____________________ (t_plasma_electron_alpha_spitzer_slow_profile286)_ 7.87230937061132563e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_287____________________ (t_plasma_electron_alpha_spitzer_slow_profile287)_ 7.83698283651281025e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_288____________________ (t_plasma_electron_alpha_spitzer_slow_profile288)_ 7.80161123961784164e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_289____________________ (t_plasma_electron_alpha_spitzer_slow_profile289)_ 7.76619559487817246e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_290____________________ (t_plasma_electron_alpha_spitzer_slow_profile290)_ 7.73073692501919818e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_291____________________ (t_plasma_electron_alpha_spitzer_slow_profile291)_ 7.69523626061038413e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_292____________________ (t_plasma_electron_alpha_spitzer_slow_profile292)_ 7.65969464013654844e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_293____________________ (t_plasma_electron_alpha_spitzer_slow_profile293)_ 7.62411311007027193e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_294____________________ (t_plasma_electron_alpha_spitzer_slow_profile294)_ 7.58849272494530935e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_295____________________ (t_plasma_electron_alpha_spitzer_slow_profile295)_ 7.55283454743105542e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_296____________________ (t_plasma_electron_alpha_spitzer_slow_profile296)_ 7.51713964840813431e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_297____________________ (t_plasma_electron_alpha_spitzer_slow_profile297)_ 7.48140910704509499e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_298____________________ (t_plasma_electron_alpha_spitzer_slow_profile298)_ 7.44564401087621230e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_299____________________ (t_plasma_electron_alpha_spitzer_slow_profile299)_ 7.40984545588052157e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_300____________________ (t_plasma_electron_alpha_spitzer_slow_profile300)_ 7.37401454656198774e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_301____________________ (t_plasma_electron_alpha_spitzer_slow_profile301)_ 7.33815239603094804e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_302____________________ (t_plasma_electron_alpha_spitzer_slow_profile302)_ 7.30226012608675479e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_303____________________ (t_plasma_electron_alpha_spitzer_slow_profile303)_ 7.26633886730176481e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_304____________________ (t_plasma_electron_alpha_spitzer_slow_profile304)_ 7.23038975910659132e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_305____________________ (t_plasma_electron_alpha_spitzer_slow_profile305)_ 7.19441394987673677e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_306____________________ (t_plasma_electron_alpha_spitzer_slow_profile306)_ 7.15841259702060029e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_307____________________ (t_plasma_electron_alpha_spitzer_slow_profile307)_ 7.12238686706890389e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_308____________________ (t_plasma_electron_alpha_spitzer_slow_profile308)_ 7.08633793576555537e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_309____________________ (t_plasma_electron_alpha_spitzer_slow_profile309)_ 7.05026698816004549e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_310____________________ (t_plasma_electron_alpha_spitzer_slow_profile310)_ 7.01417521870133509e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_311____________________ (t_plasma_electron_alpha_spitzer_slow_profile311)_ 6.97806383133335761e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_312____________________ (t_plasma_electron_alpha_spitzer_slow_profile312)_ 6.94193403959207922e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_313____________________ (t_plasma_electron_alpha_spitzer_slow_profile313)_ 6.90578706670429865e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_314____________________ (t_plasma_electron_alpha_spitzer_slow_profile314)_ 6.86962414568806912e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_315____________________ (t_plasma_electron_alpha_spitzer_slow_profile315)_ 6.83344651945495762e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_316____________________ (t_plasma_electron_alpha_spitzer_slow_profile316)_ 6.79725544091403733e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_317____________________ (t_plasma_electron_alpha_spitzer_slow_profile317)_ 6.76105217307776285e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_318____________________ (t_plasma_electron_alpha_spitzer_slow_profile318)_ 6.72483798916979292e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_319____________________ (t_plasma_electron_alpha_spitzer_slow_profile319)_ 6.68861417273471703e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_320____________________ (t_plasma_electron_alpha_spitzer_slow_profile320)_ 6.65238201774983606e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_321____________________ (t_plasma_electron_alpha_spitzer_slow_profile321)_ 6.61614282873904669e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_322____________________ (t_plasma_electron_alpha_spitzer_slow_profile322)_ 6.57989792088883307e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_323____________________ (t_plasma_electron_alpha_spitzer_slow_profile323)_ 6.54364862016650561e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_324____________________ (t_plasma_electron_alpha_spitzer_slow_profile324)_ 6.50739626344071787e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_325____________________ (t_plasma_electron_alpha_spitzer_slow_profile325)_ 6.47114219860433493e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_326____________________ (t_plasma_electron_alpha_spitzer_slow_profile326)_ 6.43488778469972322e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_327____________________ (t_plasma_electron_alpha_spitzer_slow_profile327)_ 6.39863439204657602e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_328____________________ (t_plasma_electron_alpha_spitzer_slow_profile328)_ 6.36238340237229028e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_329____________________ (t_plasma_electron_alpha_spitzer_slow_profile329)_ 6.32613620894507567e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_330____________________ (t_plasma_electron_alpha_spitzer_slow_profile330)_ 6.28989421670977267e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_331____________________ (t_plasma_electron_alpha_spitzer_slow_profile331)_ 6.25365884242655823e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_332____________________ (t_plasma_electron_alpha_spitzer_slow_profile332)_ 6.21743151481261913e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_333____________________ (t_plasma_electron_alpha_spitzer_slow_profile333)_ 6.18121367468683958e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_334____________________ (t_plasma_electron_alpha_spitzer_slow_profile334)_ 6.14500677511772064e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_335____________________ (t_plasma_electron_alpha_spitzer_slow_profile335)_ 6.10881228157451606e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_336____________________ (t_plasma_electron_alpha_spitzer_slow_profile336)_ 6.07263167208177523e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_337____________________ (t_plasma_electron_alpha_spitzer_slow_profile337)_ 6.03646643737744681e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_338____________________ (t_plasma_electron_alpha_spitzer_slow_profile338)_ 6.00031808107456044e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_339____________________ (t_plasma_electron_alpha_spitzer_slow_profile339)_ 5.96418811982673214e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_340____________________ (t_plasma_electron_alpha_spitzer_slow_profile340)_ 5.92807808349757881e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_341____________________ (t_plasma_electron_alpha_spitzer_slow_profile341)_ 5.89198951533418502e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_342____________________ (t_plasma_electron_alpha_spitzer_slow_profile342)_ 5.85592397214481974e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_343____________________ (t_plasma_electron_alpha_spitzer_slow_profile343)_ 5.81988302448101624e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_344____________________ (t_plasma_electron_alpha_spitzer_slow_profile344)_ 5.78386825682421946e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_345____________________ (t_plasma_electron_alpha_spitzer_slow_profile345)_ 5.74788126777713182e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_346____________________ (t_plasma_electron_alpha_spitzer_slow_profile346)_ 5.71192367026007508e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_347____________________ (t_plasma_electron_alpha_spitzer_slow_profile347)_ 5.67599709171234479e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_348____________________ (t_plasma_electron_alpha_spitzer_slow_profile348)_ 5.64010317429900709e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_349____________________ (t_plasma_electron_alpha_spitzer_slow_profile349)_ 5.60424357512316562e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_350____________________ (t_plasma_electron_alpha_spitzer_slow_profile350)_ 5.56841996644406589e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_351____________________ (t_plasma_electron_alpha_spitzer_slow_profile351)_ 5.53263403590114944e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_352____________________ (t_plasma_electron_alpha_spitzer_slow_profile352)_ 5.49688748674445948e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_353____________________ (t_plasma_electron_alpha_spitzer_slow_profile353)_ 5.46118203807154368e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_354____________________ (t_plasma_electron_alpha_spitzer_slow_profile354)_ 5.42551942507117579e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_355____________________ (t_plasma_electron_alpha_spitzer_slow_profile355)_ 5.38990139927423173e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_356____________________ (t_plasma_electron_alpha_spitzer_slow_profile356)_ 5.35432972881198288e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_357____________________ (t_plasma_electron_alpha_spitzer_slow_profile357)_ 5.31880619868216775e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_358____________________ (t_plasma_electron_alpha_spitzer_slow_profile358)_ 5.28333261102317486e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_359____________________ (t_plasma_electron_alpha_spitzer_slow_profile359)_ 5.24791078539670663e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_360____________________ (t_plasma_electron_alpha_spitzer_slow_profile360)_ 5.21254255907936392e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_361____________________ (t_plasma_electron_alpha_spitzer_slow_profile361)_ 5.17722978736344541e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_362____________________ (t_plasma_electron_alpha_spitzer_slow_profile362)_ 5.14197434386754026e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_363____________________ (t_plasma_electron_alpha_spitzer_slow_profile363)_ 5.10677812085726046e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_364____________________ (t_plasma_electron_alpha_spitzer_slow_profile364)_ 5.07164302957666902e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_365____________________ (t_plasma_electron_alpha_spitzer_slow_profile365)_ 5.03657100059087592e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_366____________________ (t_plasma_electron_alpha_spitzer_slow_profile366)_ 5.00156398414037251e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_367____________________ (t_plasma_electron_alpha_spitzer_slow_profile367)_ 4.96662395050766758e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_368____________________ (t_plasma_electron_alpha_spitzer_slow_profile368)_ 4.93175289039684550e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_369____________________ (t_plasma_electron_alpha_spitzer_slow_profile369)_ 4.89695281532668336e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_370____________________ (t_plasma_electron_alpha_spitzer_slow_profile370)_ 4.86222575803802848e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_371____________________ (t_plasma_electron_alpha_spitzer_slow_profile371)_ 4.82757377291612833e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_372____________________ (t_plasma_electron_alpha_spitzer_slow_profile372)_ 4.79299893642877561e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_373____________________ (t_plasma_electron_alpha_spitzer_slow_profile373)_ 4.75850334758095295e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_374____________________ (t_plasma_electron_alpha_spitzer_slow_profile374)_ 4.72408912838697848e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_375____________________ (t_plasma_electron_alpha_spitzer_slow_profile375)_ 4.68975842436100687e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_376____________________ (t_plasma_electron_alpha_spitzer_slow_profile376)_ 4.65551340502689148e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_377____________________ (t_plasma_electron_alpha_spitzer_slow_profile377)_ 4.62135626444844905e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_378____________________ (t_plasma_electron_alpha_spitzer_slow_profile378)_ 4.58728922178128107e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_379____________________ (t_plasma_electron_alpha_spitzer_slow_profile379)_ 4.55331452184725927e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_380____________________ (t_plasma_electron_alpha_spitzer_slow_profile380)_ 4.51943443573304182e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_381____________________ (t_plasma_electron_alpha_spitzer_slow_profile381)_ 4.48565126141391268e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_382____________________ (t_plasma_electron_alpha_spitzer_slow_profile382)_ 4.45196732440437393e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_383____________________ (t_plasma_electron_alpha_spitzer_slow_profile383)_ 4.41838497843707212e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_384____________________ (t_plasma_electron_alpha_spitzer_slow_profile384)_ 4.38490660617168848e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_385____________________ (t_plasma_electron_alpha_spitzer_slow_profile385)_ 4.35153461993553259e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_386____________________ (t_plasma_electron_alpha_spitzer_slow_profile386)_ 4.31827146249771532e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_387____________________ (t_plasma_electron_alpha_spitzer_slow_profile387)_ 4.28511960787895219e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_388____________________ (t_plasma_electron_alpha_spitzer_slow_profile388)_ 4.25208156219909761e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_389____________________ (t_plasma_electron_alpha_spitzer_slow_profile389)_ 4.21915986456473990e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_390____________________ (t_plasma_electron_alpha_spitzer_slow_profile390)_ 4.18635708799931838e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_391____________________ (t_plasma_electron_alpha_spitzer_slow_profile391)_ 4.15367584041842652e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_392____________________ (t_plasma_electron_alpha_spitzer_slow_profile392)_ 4.12111876565312674e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_393____________________ (t_plasma_electron_alpha_spitzer_slow_profile393)_ 4.08868854452435593e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_394____________________ (t_plasma_electron_alpha_spitzer_slow_profile394)_ 4.05638789597167371e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_395____________________ (t_plasma_electron_alpha_spitzer_slow_profile395)_ 4.02421957823992149e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_396____________________ (t_plasma_electron_alpha_spitzer_slow_profile396)_ 3.99218639012758114e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_397____________________ (t_plasma_electron_alpha_spitzer_slow_profile397)_ 3.96029117230094818e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_398____________________ (t_plasma_electron_alpha_spitzer_slow_profile398)_ 3.92853680867850830e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_399____________________ (t_plasma_electron_alpha_spitzer_slow_profile399)_ 3.89692622789035048e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_400____________________ (t_plasma_electron_alpha_spitzer_slow_profile400)_ 3.86546240481770165e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_401____________________ (t_plasma_electron_alpha_spitzer_slow_profile401)_ 3.83414836221823319e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_402____________________ (t_plasma_electron_alpha_spitzer_slow_profile402)_ 3.80298717244310469e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_403____________________ (t_plasma_electron_alpha_spitzer_slow_profile403)_ 3.77198195925235347e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_404____________________ (t_plasma_electron_alpha_spitzer_slow_profile404)_ 3.74113589973565197e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_405____________________ (t_plasma_electron_alpha_spitzer_slow_profile405)_ 3.71045222634618199e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_406____________________ (t_plasma_electron_alpha_spitzer_slow_profile406)_ 3.67993422905595613e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_407____________________ (t_plasma_electron_alpha_spitzer_slow_profile407)_ 3.64958525764171593e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_408____________________ (t_plasma_electron_alpha_spitzer_slow_profile408)_ 3.61940872411125825e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_409____________________ (t_plasma_electron_alpha_spitzer_slow_profile409)_ 3.58940810528107057e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_410____________________ (t_plasma_electron_alpha_spitzer_slow_profile410)_ 3.55958694551698207e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_411____________________ (t_plasma_electron_alpha_spitzer_slow_profile411)_ 3.52994885965079497e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_412____________________ (t_plasma_electron_alpha_spitzer_slow_profile412)_ 3.50049753608692393e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_413____________________ (t_plasma_electron_alpha_spitzer_slow_profile413)_ 3.47123674011457606e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_414____________________ (t_plasma_electron_alpha_spitzer_slow_profile414)_ 3.44217031744236679e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_415____________________ (t_plasma_electron_alpha_spitzer_slow_profile415)_ 3.41330219797403300e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_416____________________ (t_plasma_electron_alpha_spitzer_slow_profile416)_ 3.38463639984577902e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_417____________________ (t_plasma_electron_alpha_spitzer_slow_profile417)_ 3.35617703374781196e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_418____________________ (t_plasma_electron_alpha_spitzer_slow_profile418)_ 3.32792830755508640e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_419____________________ (t_plasma_electron_alpha_spitzer_slow_profile419)_ 3.29989453129482579e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_420____________________ (t_plasma_electron_alpha_spitzer_slow_profile420)_ 3.27208012248142388e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_421____________________ (t_plasma_electron_alpha_spitzer_slow_profile421)_ 3.24448961185266782e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_422____________________ (t_plasma_electron_alpha_spitzer_slow_profile422)_ 3.21712764954504238e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_423____________________ (t_plasma_electron_alpha_spitzer_slow_profile423)_ 3.18999901175016476e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_424____________________ (t_plasma_electron_alpha_spitzer_slow_profile424)_ 3.16310860789930315e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_425____________________ (t_plasma_electron_alpha_spitzer_slow_profile425)_ 3.13646148842858186e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_426____________________ (t_plasma_electron_alpha_spitzer_slow_profile426)_ 3.11006285318373099e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_427____________________ (t_plasma_electron_alpha_spitzer_slow_profile427)_ 3.08391806053068929e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_428____________________ (t_plasma_electron_alpha_spitzer_slow_profile428)_ 3.05803263724671370e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_429____________________ (t_plasma_electron_alpha_spitzer_slow_profile429)_ 3.03241228927631779e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_430____________________ (t_plasma_electron_alpha_spitzer_slow_profile430)_ 3.00706291344768561e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_431____________________ (t_plasma_electron_alpha_spitzer_slow_profile431)_ 2.98199061025808398e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_432____________________ (t_plasma_electron_alpha_spitzer_slow_profile432)_ 2.95720169785209208e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_433____________________ (t_plasma_electron_alpha_spitzer_slow_profile433)_ 2.93270272733411330e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_434____________________ (t_plasma_electron_alpha_spitzer_slow_profile434)_ 2.90850049957749823e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_435____________________ (t_plasma_electron_alpha_spitzer_slow_profile435)_ 2.88460208371708438e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_436____________________ (t_plasma_electron_alpha_spitzer_slow_profile436)_ 2.86101483754106822e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_437____________________ (t_plasma_electron_alpha_spitzer_slow_profile437)_ 2.83774643003255056e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_438____________________ (t_plasma_electron_alpha_spitzer_slow_profile438)_ 2.81480486635249549e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_439____________________ (t_plasma_electron_alpha_spitzer_slow_profile439)_ 2.79219851560522925e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_440____________________ (t_plasma_electron_alpha_spitzer_slow_profile440)_ 2.76993614178763115e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_441____________________ (t_plasma_electron_alpha_spitzer_slow_profile441)_ 2.74802693839566181e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_442____________________ (t_plasma_electron_alpha_spitzer_slow_profile442)_ 2.72648056725089682e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_443____________________ (t_plasma_electron_alpha_spitzer_slow_profile443)_ 2.70530720221874965e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_444____________________ (t_plasma_electron_alpha_spitzer_slow_profile444)_ 2.68451757862561258e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_445____________________ (t_plasma_electron_alpha_spitzer_slow_profile445)_ 2.66412304935073008e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_446____________________ (t_plasma_electron_alpha_spitzer_slow_profile446)_ 2.64413564878112295e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_447____________________ (t_plasma_electron_alpha_spitzer_slow_profile447)_ 2.62456816608709842e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_448____________________ (t_plasma_electron_alpha_spitzer_slow_profile448)_ 2.60543422962075832e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_449____________________ (t_plasma_electron_alpha_spitzer_slow_profile449)_ 2.58674840468564093e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_450____________________ (t_plasma_electron_alpha_spitzer_slow_profile450)_ 2.56852630750832756e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_451____________________ (t_plasma_electron_alpha_spitzer_slow_profile451)_ 2.55078473901333647e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_452____________________ (t_plasma_electron_alpha_spitzer_slow_profile452)_ 2.53354184303437979e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_453____________________ (t_plasma_electron_alpha_spitzer_slow_profile453)_ 2.51681729499671991e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_454____________________ (t_plasma_electron_alpha_spitzer_slow_profile454)_ 2.50063252903835243e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_455____________________ (t_plasma_electron_alpha_spitzer_slow_profile455)_ 2.48501101424986687e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_456____________________ (t_plasma_electron_alpha_spitzer_slow_profile456)_ 2.46997859459085395e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_457____________________ (t_plasma_electron_alpha_spitzer_slow_profile457)_ 2.45556391270484675e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_458____________________ (t_plasma_electron_alpha_spitzer_slow_profile458)_ 2.44179894632840733e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_459____________________ (t_plasma_electron_alpha_spitzer_slow_profile459)_ 2.42871969901688856e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_460____________________ (t_plasma_electron_alpha_spitzer_slow_profile460)_ 2.41636710757296397e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_461____________________ (t_plasma_electron_alpha_spitzer_slow_profile461)_ 2.40478826255348749e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_462____________________ (t_plasma_electron_alpha_spitzer_slow_profile462)_ 2.39403809658028460e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_463____________________ (t_plasma_electron_alpha_spitzer_slow_profile463)_ 2.38418180059754015e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_464____________________ (t_plasma_electron_alpha_spitzer_slow_profile464)_ 2.37529843089759857e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_465____________________ (t_plasma_electron_alpha_spitzer_slow_profile465)_ 2.36748659093443004e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_466____________________ (t_plasma_electron_alpha_spitzer_slow_profile466)_ 2.36087403983256394e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_467____________________ (t_plasma_electron_alpha_spitzer_slow_profile467)_ 2.35563562843889629e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_468____________________ (t_plasma_electron_alpha_spitzer_slow_profile468)_ 2.35203215553996620e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_469____________________ (t_plasma_electron_alpha_spitzer_slow_profile469)_ 2.35051954386514383e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_470____________________ (t_plasma_electron_alpha_spitzer_slow_profile470)_ 2.35241649018110038e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_471____________________ (t_plasma_electron_alpha_spitzer_slow_profile471)_ 2.27250197573192619e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_472____________________ (t_plasma_electron_alpha_spitzer_slow_profile472)_ 2.19209830390464960e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_473____________________ (t_plasma_electron_alpha_spitzer_slow_profile473)_ 2.11121671126187155e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_474____________________ (t_plasma_electron_alpha_spitzer_slow_profile474)_ 2.02987089051548025e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_475____________________ (t_plasma_electron_alpha_spitzer_slow_profile475)_ 1.94807734573085839e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_476____________________ (t_plasma_electron_alpha_spitzer_slow_profile476)_ 1.86585580386443101e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_477____________________ (t_plasma_electron_alpha_spitzer_slow_profile477)_ 1.78322969320679342e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_478____________________ (t_plasma_electron_alpha_spitzer_slow_profile478)_ 1.70022670170067725e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_479____________________ (t_plasma_electron_alpha_spitzer_slow_profile479)_ 1.61687943115870952e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_480____________________ (t_plasma_electron_alpha_spitzer_slow_profile480)_ 1.53322616733914924e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_481____________________ (t_plasma_electron_alpha_spitzer_slow_profile481)_ 1.44931179095342089e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_482____________________ (t_plasma_electron_alpha_spitzer_slow_profile482)_ 1.36518886141027446e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_483____________________ (t_plasma_electron_alpha_spitzer_slow_profile483)_ 1.28091891407075664e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_484____________________ (t_plasma_electron_alpha_spitzer_slow_profile484)_ 1.19657402390975331e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_485____________________ (t_plasma_electron_alpha_spitzer_slow_profile485)_ 1.11223870511967679e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_486____________________ (t_plasma_electron_alpha_spitzer_slow_profile486)_ 1.02801223943737002e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_487____________________ (t_plasma_electron_alpha_spitzer_slow_profile487)_ 9.44011559092507307e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_488____________________ (t_plasma_electron_alpha_spitzer_slow_profile488)_ 8.60374858516424895e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_489____________________ (t_plasma_electron_alpha_spitzer_slow_profile489)_ 7.77266181017657459e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_490____________________ (t_plasma_electron_alpha_spitzer_slow_profile490)_ 6.94881337455502263e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_491____________________ (t_plasma_electron_alpha_spitzer_slow_profile491)_ 6.13455690176138643e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_492____________________ (t_plasma_electron_alpha_spitzer_slow_profile492)_ 5.33274626922181708e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_493____________________ (t_plasma_electron_alpha_spitzer_slow_profile493)_ 4.54688054332885658e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_494____________________ (t_plasma_electron_alpha_spitzer_slow_profile494)_ 3.78131165756645862e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_495____________________ (t_plasma_electron_alpha_spitzer_slow_profile495)_ 3.04155554138283608e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_496____________________ (t_plasma_electron_alpha_spitzer_slow_profile496)_ 2.33478631092477081e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_497____________________ (t_plasma_electron_alpha_spitzer_slow_profile497)_ 1.67068662239003435e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_498____________________ (t_plasma_electron_alpha_spitzer_slow_profile498)_ 1.06309097597797921e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_499____________________ (t_plasma_electron_alpha_spitzer_slow_profile499)_ 5.33809601769379225e-03 +Electron-alpha_Spitzer_slowing_down_time_at_point_500____________________ (t_plasma_electron_alpha_spitzer_slow_profile500)_ 1.29256007650656573e-03 +Volume_averaged_plasma_fuel_Spitzer_resistivity_(η)_(Ohm_m)______________ (res_plasma_fuel_spitzer_vol_avg)_ 1.28495123531948508e-09 +Plasma_Spitzer_resistivity_at_point_0____________________________________ (res_plasma_fuel_spitzer_profile0)_ 4.44402587666011616e-10 +Plasma_Spitzer_resistivity_at_point_1____________________________________ (res_plasma_fuel_spitzer_profile1)_ 4.44405948352730784e-10 +Plasma_Spitzer_resistivity_at_point_2____________________________________ (res_plasma_fuel_spitzer_profile2)_ 4.44416030628509353e-10 +Plasma_Spitzer_resistivity_at_point_3____________________________________ (res_plasma_fuel_spitzer_profile3)_ 4.44432835140240924e-10 +Plasma_Spitzer_resistivity_at_point_4____________________________________ (res_plasma_fuel_spitzer_profile4)_ 4.44456362966178430e-10 +Plasma_Spitzer_resistivity_at_point_5____________________________________ (res_plasma_fuel_spitzer_profile5)_ 4.44486615616081224e-10 +Plasma_Spitzer_resistivity_at_point_6____________________________________ (res_plasma_fuel_spitzer_profile6)_ 4.44523595031419804e-10 +Plasma_Spitzer_resistivity_at_point_7____________________________________ (res_plasma_fuel_spitzer_profile7)_ 4.44567303585638856e-10 +Plasma_Spitzer_resistivity_at_point_8____________________________________ (res_plasma_fuel_spitzer_profile8)_ 4.44617744084480785e-10 +Plasma_Spitzer_resistivity_at_point_9____________________________________ (res_plasma_fuel_spitzer_profile9)_ 4.44674919766365031e-10 +Plasma_Spitzer_resistivity_at_point_10___________________________________ (res_plasma_fuel_spitzer_profile10)_ 4.44738834302829678e-10 +Plasma_Spitzer_resistivity_at_point_11___________________________________ (res_plasma_fuel_spitzer_profile11)_ 4.44809491799029262e-10 +Plasma_Spitzer_resistivity_at_point_12___________________________________ (res_plasma_fuel_spitzer_profile12)_ 4.44886896794292654e-10 +Plasma_Spitzer_resistivity_at_point_13___________________________________ (res_plasma_fuel_spitzer_profile13)_ 4.44971054262740600e-10 +Plasma_Spitzer_resistivity_at_point_14___________________________________ (res_plasma_fuel_spitzer_profile14)_ 4.45061969613962355e-10 +Plasma_Spitzer_resistivity_at_point_15___________________________________ (res_plasma_fuel_spitzer_profile15)_ 4.45159648693750739e-10 +Plasma_Spitzer_resistivity_at_point_16___________________________________ (res_plasma_fuel_spitzer_profile16)_ 4.45264097784898450e-10 +Plasma_Spitzer_resistivity_at_point_17___________________________________ (res_plasma_fuel_spitzer_profile17)_ 4.45375323608053320e-10 +Plasma_Spitzer_resistivity_at_point_18___________________________________ (res_plasma_fuel_spitzer_profile18)_ 4.45493333322633122e-10 +Plasma_Spitzer_resistivity_at_point_19___________________________________ (res_plasma_fuel_spitzer_profile19)_ 4.45618134527802265e-10 +Plasma_Spitzer_resistivity_at_point_20___________________________________ (res_plasma_fuel_spitzer_profile20)_ 4.45749735263507271e-10 +Plasma_Spitzer_resistivity_at_point_21___________________________________ (res_plasma_fuel_spitzer_profile21)_ 4.45888144011573768e-10 +Plasma_Spitzer_resistivity_at_point_22___________________________________ (res_plasma_fuel_spitzer_profile22)_ 4.46033369696863926e-10 +Plasma_Spitzer_resistivity_at_point_23___________________________________ (res_plasma_fuel_spitzer_profile23)_ 4.46185421688495769e-10 +Plasma_Spitzer_resistivity_at_point_24___________________________________ (res_plasma_fuel_spitzer_profile24)_ 4.46344309801123757e-10 +Plasma_Spitzer_resistivity_at_point_25___________________________________ (res_plasma_fuel_spitzer_profile25)_ 4.46510044296279956e-10 +Plasma_Spitzer_resistivity_at_point_26___________________________________ (res_plasma_fuel_spitzer_profile26)_ 4.46682635883780502e-10 +Plasma_Spitzer_resistivity_at_point_27___________________________________ (res_plasma_fuel_spitzer_profile27)_ 4.46862095723189349e-10 +Plasma_Spitzer_resistivity_at_point_28___________________________________ (res_plasma_fuel_spitzer_profile28)_ 4.47048435425350260e-10 +Plasma_Spitzer_resistivity_at_point_29___________________________________ (res_plasma_fuel_spitzer_profile29)_ 4.47241667053977320e-10 +Plasma_Spitzer_resistivity_at_point_30___________________________________ (res_plasma_fuel_spitzer_profile30)_ 4.47441803127313121e-10 +Plasma_Spitzer_resistivity_at_point_31___________________________________ (res_plasma_fuel_spitzer_profile31)_ 4.47648856619845943e-10 +Plasma_Spitzer_resistivity_at_point_32___________________________________ (res_plasma_fuel_spitzer_profile32)_ 4.47862840964096093e-10 +Plasma_Spitzer_resistivity_at_point_33___________________________________ (res_plasma_fuel_spitzer_profile33)_ 4.48083770052462700e-10 +Plasma_Spitzer_resistivity_at_point_34___________________________________ (res_plasma_fuel_spitzer_profile34)_ 4.48311658239138938e-10 +Plasma_Spitzer_resistivity_at_point_35___________________________________ (res_plasma_fuel_spitzer_profile35)_ 4.48546520342089666e-10 +Plasma_Spitzer_resistivity_at_point_36___________________________________ (res_plasma_fuel_spitzer_profile36)_ 4.48788371645098338e-10 +Plasma_Spitzer_resistivity_at_point_37___________________________________ (res_plasma_fuel_spitzer_profile37)_ 4.49037227899876725e-10 +Plasma_Spitzer_resistivity_at_point_38___________________________________ (res_plasma_fuel_spitzer_profile38)_ 4.49293105328244741e-10 +Plasma_Spitzer_resistivity_at_point_39___________________________________ (res_plasma_fuel_spitzer_profile39)_ 4.49556020624375365e-10 +Plasma_Spitzer_resistivity_at_point_40___________________________________ (res_plasma_fuel_spitzer_profile40)_ 4.49825990957109760e-10 +Plasma_Spitzer_resistivity_at_point_41___________________________________ (res_plasma_fuel_spitzer_profile41)_ 4.50103033972337796e-10 +Plasma_Spitzer_resistivity_at_point_42___________________________________ (res_plasma_fuel_spitzer_profile42)_ 4.50387167795450696e-10 +Plasma_Spitzer_resistivity_at_point_43___________________________________ (res_plasma_fuel_spitzer_profile43)_ 4.50678411033861862e-10 +Plasma_Spitzer_resistivity_at_point_44___________________________________ (res_plasma_fuel_spitzer_profile44)_ 4.50976782779596111e-10 +Plasma_Spitzer_resistivity_at_point_45___________________________________ (res_plasma_fuel_spitzer_profile45)_ 4.51282302611955056e-10 +Plasma_Spitzer_resistivity_at_point_46___________________________________ (res_plasma_fuel_spitzer_profile46)_ 4.51594990600246390e-10 +Plasma_Spitzer_resistivity_at_point_47___________________________________ (res_plasma_fuel_spitzer_profile47)_ 4.51914867306592160e-10 +Plasma_Spitzer_resistivity_at_point_48___________________________________ (res_plasma_fuel_spitzer_profile48)_ 4.52241953788804877e-10 +Plasma_Spitzer_resistivity_at_point_49___________________________________ (res_plasma_fuel_spitzer_profile49)_ 4.52576271603340035e-10 +Plasma_Spitzer_resistivity_at_point_50___________________________________ (res_plasma_fuel_spitzer_profile50)_ 4.52917842808320332e-10 +Plasma_Spitzer_resistivity_at_point_51___________________________________ (res_plasma_fuel_spitzer_profile51)_ 4.53266689966637548e-10 +Plasma_Spitzer_resistivity_at_point_52___________________________________ (res_plasma_fuel_spitzer_profile52)_ 4.53622836149126023e-10 +Plasma_Spitzer_resistivity_at_point_53___________________________________ (res_plasma_fuel_spitzer_profile53)_ 4.53986304937816265e-10 +Plasma_Spitzer_resistivity_at_point_54___________________________________ (res_plasma_fuel_spitzer_profile54)_ 4.54357120429263014e-10 +Plasma_Spitzer_resistivity_at_point_55___________________________________ (res_plasma_fuel_spitzer_profile55)_ 4.54735307237952239e-10 +Plasma_Spitzer_resistivity_at_point_56___________________________________ (res_plasma_fuel_spitzer_profile56)_ 4.55120890499786311e-10 +Plasma_Spitzer_resistivity_at_point_57___________________________________ (res_plasma_fuel_spitzer_profile57)_ 4.55513895875649046e-10 +Plasma_Spitzer_resistivity_at_point_58___________________________________ (res_plasma_fuel_spitzer_profile58)_ 4.55914349555049800e-10 +Plasma_Spitzer_resistivity_at_point_59___________________________________ (res_plasma_fuel_spitzer_profile59)_ 4.56322278259850793e-10 +Plasma_Spitzer_resistivity_at_point_60___________________________________ (res_plasma_fuel_spitzer_profile60)_ 4.56737709248074988e-10 +Plasma_Spitzer_resistivity_at_point_61___________________________________ (res_plasma_fuel_spitzer_profile61)_ 4.57160670317795954e-10 +Plasma_Spitzer_resistivity_at_point_62___________________________________ (res_plasma_fuel_spitzer_profile62)_ 4.57591189811115319e-10 +Plasma_Spitzer_resistivity_at_point_63___________________________________ (res_plasma_fuel_spitzer_profile63)_ 4.58029296618219876e-10 +Plasma_Spitzer_resistivity_at_point_64___________________________________ (res_plasma_fuel_spitzer_profile64)_ 4.58475020181529487e-10 +Plasma_Spitzer_resistivity_at_point_65___________________________________ (res_plasma_fuel_spitzer_profile65)_ 4.58928390499927800e-10 +Plasma_Spitzer_resistivity_at_point_66___________________________________ (res_plasma_fuel_spitzer_profile66)_ 4.59389438133083591e-10 +Plasma_Spitzer_resistivity_at_point_67___________________________________ (res_plasma_fuel_spitzer_profile67)_ 4.59858194205859438e-10 +Plasma_Spitzer_resistivity_at_point_68___________________________________ (res_plasma_fuel_spitzer_profile68)_ 4.60334690412810903e-10 +Plasma_Spitzer_resistivity_at_point_69___________________________________ (res_plasma_fuel_spitzer_profile69)_ 4.60818959022776100e-10 +Plasma_Spitzer_resistivity_at_point_70___________________________________ (res_plasma_fuel_spitzer_profile70)_ 4.61311032883558615e-10 +Plasma_Spitzer_resistivity_at_point_71___________________________________ (res_plasma_fuel_spitzer_profile71)_ 4.61810945426702000e-10 +Plasma_Spitzer_resistivity_at_point_72___________________________________ (res_plasma_fuel_spitzer_profile72)_ 4.62318730672360878e-10 +Plasma_Spitzer_resistivity_at_point_73___________________________________ (res_plasma_fuel_spitzer_profile73)_ 4.62834423234265427e-10 +Plasma_Spitzer_resistivity_at_point_74___________________________________ (res_plasma_fuel_spitzer_profile74)_ 4.63358058324784344e-10 +Plasma_Spitzer_resistivity_at_point_75___________________________________ (res_plasma_fuel_spitzer_profile75)_ 4.63889671760085005e-10 +Plasma_Spitzer_resistivity_at_point_76___________________________________ (res_plasma_fuel_spitzer_profile76)_ 4.64429299965393402e-10 +Plasma_Spitzer_resistivity_at_point_77___________________________________ (res_plasma_fuel_spitzer_profile77)_ 4.64976979980354688e-10 +Plasma_Spitzer_resistivity_at_point_78___________________________________ (res_plasma_fuel_spitzer_profile78)_ 4.65532749464495257e-10 +Plasma_Spitzer_resistivity_at_point_79___________________________________ (res_plasma_fuel_spitzer_profile79)_ 4.66096646702789361e-10 +Plasma_Spitzer_resistivity_at_point_80___________________________________ (res_plasma_fuel_spitzer_profile80)_ 4.66668710611328498e-10 +Plasma_Spitzer_resistivity_at_point_81___________________________________ (res_plasma_fuel_spitzer_profile81)_ 4.67248980743099068e-10 +Plasma_Spitzer_resistivity_at_point_82___________________________________ (res_plasma_fuel_spitzer_profile82)_ 4.67837497293866362e-10 +Plasma_Spitzer_resistivity_at_point_83___________________________________ (res_plasma_fuel_spitzer_profile83)_ 4.68434301108167487e-10 +Plasma_Spitzer_resistivity_at_point_84___________________________________ (res_plasma_fuel_spitzer_profile84)_ 4.69039433685414824e-10 +Plasma_Spitzer_resistivity_at_point_85___________________________________ (res_plasma_fuel_spitzer_profile85)_ 4.69652937186113115e-10 +Plasma_Spitzer_resistivity_at_point_86___________________________________ (res_plasma_fuel_spitzer_profile86)_ 4.70274854438188427e-10 +Plasma_Spitzer_resistivity_at_point_87___________________________________ (res_plasma_fuel_spitzer_profile87)_ 4.70905228943432515e-10 +Plasma_Spitzer_resistivity_at_point_88___________________________________ (res_plasma_fuel_spitzer_profile88)_ 4.71544104884064839e-10 +Plasma_Spitzer_resistivity_at_point_89___________________________________ (res_plasma_fuel_spitzer_profile89)_ 4.72191527129412571e-10 +Plasma_Spitzer_resistivity_at_point_90___________________________________ (res_plasma_fuel_spitzer_profile90)_ 4.72847541242711668e-10 +Plasma_Spitzer_resistivity_at_point_91___________________________________ (res_plasma_fuel_spitzer_profile91)_ 4.73512193488028827e-10 +Plasma_Spitzer_resistivity_at_point_92___________________________________ (res_plasma_fuel_spitzer_profile92)_ 4.74185530837307097e-10 +Plasma_Spitzer_resistivity_at_point_93___________________________________ (res_plasma_fuel_spitzer_profile93)_ 4.74867600977538778e-10 +Plasma_Spitzer_resistivity_at_point_94___________________________________ (res_plasma_fuel_spitzer_profile94)_ 4.75558452318063116e-10 +Plasma_Spitzer_resistivity_at_point_95___________________________________ (res_plasma_fuel_spitzer_profile95)_ 4.76258133997996039e-10 +Plasma_Spitzer_resistivity_at_point_96___________________________________ (res_plasma_fuel_spitzer_profile96)_ 4.76966695893789351e-10 +Plasma_Spitzer_resistivity_at_point_97___________________________________ (res_plasma_fuel_spitzer_profile97)_ 4.77684188626922680e-10 +Plasma_Spitzer_resistivity_at_point_98___________________________________ (res_plasma_fuel_spitzer_profile98)_ 4.78410663571732124e-10 +Plasma_Spitzer_resistivity_at_point_99___________________________________ (res_plasma_fuel_spitzer_profile99)_ 4.79146172863374968e-10 +Plasma_Spitzer_resistivity_at_point_100__________________________________ (res_plasma_fuel_spitzer_profile100)_ 4.79890769405934292e-10 +Plasma_Spitzer_resistivity_at_point_101__________________________________ (res_plasma_fuel_spitzer_profile101)_ 4.80644506880664415e-10 +Plasma_Spitzer_resistivity_at_point_102__________________________________ (res_plasma_fuel_spitzer_profile102)_ 4.81407439754380779e-10 +Plasma_Spitzer_resistivity_at_point_103__________________________________ (res_plasma_fuel_spitzer_profile103)_ 4.82179623287993766e-10 +Plasma_Spitzer_resistivity_at_point_104__________________________________ (res_plasma_fuel_spitzer_profile104)_ 4.82961113545192540e-10 +Plasma_Spitzer_resistivity_at_point_105__________________________________ (res_plasma_fuel_spitzer_profile105)_ 4.83751967401278719e-10 +Plasma_Spitzer_resistivity_at_point_106__________________________________ (res_plasma_fuel_spitzer_profile106)_ 4.84552242552151626e-10 +Plasma_Spitzer_resistivity_at_point_107__________________________________ (res_plasma_fuel_spitzer_profile107)_ 4.85361997523450180e-10 +Plasma_Spitzer_resistivity_at_point_108__________________________________ (res_plasma_fuel_spitzer_profile108)_ 4.86181291679849584e-10 +Plasma_Spitzer_resistivity_at_point_109__________________________________ (res_plasma_fuel_spitzer_profile109)_ 4.87010185234523233e-10 +Plasma_Spitzer_resistivity_at_point_110__________________________________ (res_plasma_fuel_spitzer_profile110)_ 4.87848739258759728e-10 +Plasma_Spitzer_resistivity_at_point_111__________________________________ (res_plasma_fuel_spitzer_profile111)_ 4.88697015691752656e-10 +Plasma_Spitzer_resistivity_at_point_112__________________________________ (res_plasma_fuel_spitzer_profile112)_ 4.89555077350551268e-10 +Plasma_Spitzer_resistivity_at_point_113__________________________________ (res_plasma_fuel_spitzer_profile113)_ 4.90422987940187440e-10 +Plasma_Spitzer_resistivity_at_point_114__________________________________ (res_plasma_fuel_spitzer_profile114)_ 4.91300812063971799e-10 +Plasma_Spitzer_resistivity_at_point_115__________________________________ (res_plasma_fuel_spitzer_profile115)_ 4.92188615233967071e-10 +Plasma_Spitzer_resistivity_at_point_116__________________________________ (res_plasma_fuel_spitzer_profile116)_ 4.93086463881641131e-10 +Plasma_Spitzer_resistivity_at_point_117__________________________________ (res_plasma_fuel_spitzer_profile117)_ 4.93994425368700591e-10 +Plasma_Spitzer_resistivity_at_point_118__________________________________ (res_plasma_fuel_spitzer_profile118)_ 4.94912567998110393e-10 +Plasma_Spitzer_resistivity_at_point_119__________________________________ (res_plasma_fuel_spitzer_profile119)_ 4.95840961025299315e-10 +Plasma_Spitzer_resistivity_at_point_120__________________________________ (res_plasma_fuel_spitzer_profile120)_ 4.96779674669558214e-10 +Plasma_Spitzer_resistivity_at_point_121__________________________________ (res_plasma_fuel_spitzer_profile121)_ 4.97728780125631406e-10 +Plasma_Spitzer_resistivity_at_point_122__________________________________ (res_plasma_fuel_spitzer_profile122)_ 4.98688349575505440e-10 +Plasma_Spitzer_resistivity_at_point_123__________________________________ (res_plasma_fuel_spitzer_profile123)_ 4.99658456200398769e-10 +Plasma_Spitzer_resistivity_at_point_124__________________________________ (res_plasma_fuel_spitzer_profile124)_ 5.00639174192954189e-10 +Plasma_Spitzer_resistivity_at_point_125__________________________________ (res_plasma_fuel_spitzer_profile125)_ 5.01630578769639927e-10 +Plasma_Spitzer_resistivity_at_point_126__________________________________ (res_plasma_fuel_spitzer_profile126)_ 5.02632746183361045e-10 +Plasma_Spitzer_resistivity_at_point_127__________________________________ (res_plasma_fuel_spitzer_profile127)_ 5.03645753736284667e-10 +Plasma_Spitzer_resistivity_at_point_128__________________________________ (res_plasma_fuel_spitzer_profile128)_ 5.04669679792884104e-10 +Plasma_Spitzer_resistivity_at_point_129__________________________________ (res_plasma_fuel_spitzer_profile129)_ 5.05704603793203933e-10 +Plasma_Spitzer_resistivity_at_point_130__________________________________ (res_plasma_fuel_spitzer_profile130)_ 5.06750606266350589e-10 +Plasma_Spitzer_resistivity_at_point_131__________________________________ (res_plasma_fuel_spitzer_profile131)_ 5.07807768844213431e-10 +Plasma_Spitzer_resistivity_at_point_132__________________________________ (res_plasma_fuel_spitzer_profile132)_ 5.08876174275417003e-10 +Plasma_Spitzer_resistivity_at_point_133__________________________________ (res_plasma_fuel_spitzer_profile133)_ 5.09955906439511734e-10 +Plasma_Spitzer_resistivity_at_point_134__________________________________ (res_plasma_fuel_spitzer_profile134)_ 5.11047050361407306e-10 +Plasma_Spitzer_resistivity_at_point_135__________________________________ (res_plasma_fuel_spitzer_profile135)_ 5.12149692226048183e-10 +Plasma_Spitzer_resistivity_at_point_136__________________________________ (res_plasma_fuel_spitzer_profile136)_ 5.13263919393342050e-10 +Plasma_Spitzer_resistivity_at_point_137__________________________________ (res_plasma_fuel_spitzer_profile137)_ 5.14389820413341267e-10 +Plasma_Spitzer_resistivity_at_point_138__________________________________ (res_plasma_fuel_spitzer_profile138)_ 5.15527485041681985e-10 +Plasma_Spitzer_resistivity_at_point_139__________________________________ (res_plasma_fuel_spitzer_profile139)_ 5.16677004255287759e-10 +Plasma_Spitzer_resistivity_at_point_140__________________________________ (res_plasma_fuel_spitzer_profile140)_ 5.17838470268340235e-10 +Plasma_Spitzer_resistivity_at_point_141__________________________________ (res_plasma_fuel_spitzer_profile141)_ 5.19011976548521562e-10 +Plasma_Spitzer_resistivity_at_point_142__________________________________ (res_plasma_fuel_spitzer_profile142)_ 5.20197617833535051e-10 +Plasma_Spitzer_resistivity_at_point_143__________________________________ (res_plasma_fuel_spitzer_profile143)_ 5.21395490147906871e-10 +Plasma_Spitzer_resistivity_at_point_144__________________________________ (res_plasma_fuel_spitzer_profile144)_ 5.22605690820076733e-10 +Plasma_Spitzer_resistivity_at_point_145__________________________________ (res_plasma_fuel_spitzer_profile145)_ 5.23828318499777680e-10 +Plasma_Spitzer_resistivity_at_point_146__________________________________ (res_plasma_fuel_spitzer_profile146)_ 5.25063473175715938e-10 +Plasma_Spitzer_resistivity_at_point_147__________________________________ (res_plasma_fuel_spitzer_profile147)_ 5.26311256193552164e-10 +Plasma_Spitzer_resistivity_at_point_148__________________________________ (res_plasma_fuel_spitzer_profile148)_ 5.27571770274191136e-10 +Plasma_Spitzer_resistivity_at_point_149__________________________________ (res_plasma_fuel_spitzer_profile149)_ 5.28845119532384009e-10 +Plasma_Spitzer_resistivity_at_point_150__________________________________ (res_plasma_fuel_spitzer_profile150)_ 5.30131409495652454e-10 +Plasma_Spitzer_resistivity_at_point_151__________________________________ (res_plasma_fuel_spitzer_profile151)_ 5.31430747123534557e-10 +Plasma_Spitzer_resistivity_at_point_152__________________________________ (res_plasma_fuel_spitzer_profile152)_ 5.32743240827163781e-10 +Plasma_Spitzer_resistivity_at_point_153__________________________________ (res_plasma_fuel_spitzer_profile153)_ 5.34069000489183126e-10 +Plasma_Spitzer_resistivity_at_point_154__________________________________ (res_plasma_fuel_spitzer_profile154)_ 5.35408137484005057e-10 +Plasma_Spitzer_resistivity_at_point_155__________________________________ (res_plasma_fuel_spitzer_profile155)_ 5.36760764698416474e-10 +Plasma_Spitzer_resistivity_at_point_156__________________________________ (res_plasma_fuel_spitzer_profile156)_ 5.38126996552542566e-10 +Plasma_Spitzer_resistivity_at_point_157__________________________________ (res_plasma_fuel_spitzer_profile157)_ 5.39506949021171322e-10 +Plasma_Spitzer_resistivity_at_point_158__________________________________ (res_plasma_fuel_spitzer_profile158)_ 5.40900739655447482e-10 +Plasma_Spitzer_resistivity_at_point_159__________________________________ (res_plasma_fuel_spitzer_profile159)_ 5.42308487604940367e-10 +Plasma_Spitzer_resistivity_at_point_160__________________________________ (res_plasma_fuel_spitzer_profile160)_ 5.43730313640095014e-10 +Plasma_Spitzer_resistivity_at_point_161__________________________________ (res_plasma_fuel_spitzer_profile161)_ 5.45166340175074454e-10 +Plasma_Spitzer_resistivity_at_point_162__________________________________ (res_plasma_fuel_spitzer_profile162)_ 5.46616691290993975e-10 +Plasma_Spitzer_resistivity_at_point_163__________________________________ (res_plasma_fuel_spitzer_profile163)_ 5.48081492759564120e-10 +Plasma_Spitzer_resistivity_at_point_164__________________________________ (res_plasma_fuel_spitzer_profile164)_ 5.49560872067141578e-10 +Plasma_Spitzer_resistivity_at_point_165__________________________________ (res_plasma_fuel_spitzer_profile165)_ 5.51054958439201426e-10 +Plasma_Spitzer_resistivity_at_point_166__________________________________ (res_plasma_fuel_spitzer_profile166)_ 5.52563882865233203e-10 +Plasma_Spitzer_resistivity_at_point_167__________________________________ (res_plasma_fuel_spitzer_profile167)_ 5.54087778124076310e-10 +Plasma_Spitzer_resistivity_at_point_168__________________________________ (res_plasma_fuel_spitzer_profile168)_ 5.55626778809693096e-10 +Plasma_Spitzer_resistivity_at_point_169__________________________________ (res_plasma_fuel_spitzer_profile169)_ 5.57181021357396590e-10 +Plasma_Spitzer_resistivity_at_point_170__________________________________ (res_plasma_fuel_spitzer_profile170)_ 5.58750644070536269e-10 +Plasma_Spitzer_resistivity_at_point_171__________________________________ (res_plasma_fuel_spitzer_profile171)_ 5.60335787147653063e-10 +Plasma_Spitzer_resistivity_at_point_172__________________________________ (res_plasma_fuel_spitzer_profile172)_ 5.61936592710109971e-10 +Plasma_Spitzer_resistivity_at_point_173__________________________________ (res_plasma_fuel_spitzer_profile173)_ 5.63553204830210106e-10 +Plasma_Spitzer_resistivity_at_point_174__________________________________ (res_plasma_fuel_spitzer_profile174)_ 5.65185769559809391e-10 +Plasma_Spitzer_resistivity_at_point_175__________________________________ (res_plasma_fuel_spitzer_profile175)_ 5.66834434959431964e-10 +Plasma_Spitzer_resistivity_at_point_176__________________________________ (res_plasma_fuel_spitzer_profile176)_ 5.68499351127904658e-10 +Plasma_Spitzer_resistivity_at_point_177__________________________________ (res_plasma_fuel_spitzer_profile177)_ 5.70180670232509486e-10 +Plasma_Spitzer_resistivity_at_point_178__________________________________ (res_plasma_fuel_spitzer_profile178)_ 5.71878546539673590e-10 +Plasma_Spitzer_resistivity_at_point_179__________________________________ (res_plasma_fuel_spitzer_profile179)_ 5.73593136446202142e-10 +Plasma_Spitzer_resistivity_at_point_180__________________________________ (res_plasma_fuel_spitzer_profile180)_ 5.75324598511065646e-10 +Plasma_Spitzer_resistivity_at_point_181__________________________________ (res_plasma_fuel_spitzer_profile181)_ 5.77073093487752838e-10 +Plasma_Spitzer_resistivity_at_point_182__________________________________ (res_plasma_fuel_spitzer_profile182)_ 5.78838784357197330e-10 +Plasma_Spitzer_resistivity_at_point_183__________________________________ (res_plasma_fuel_spitzer_profile183)_ 5.80621836361294352e-10 +Plasma_Spitzer_resistivity_at_point_184__________________________________ (res_plasma_fuel_spitzer_profile184)_ 5.82422417037012955e-10 +Plasma_Spitzer_resistivity_at_point_185__________________________________ (res_plasma_fuel_spitzer_profile185)_ 5.84240696251118468e-10 +Plasma_Spitzer_resistivity_at_point_186__________________________________ (res_plasma_fuel_spitzer_profile186)_ 5.86076846235516785e-10 +Plasma_Spitzer_resistivity_at_point_187__________________________________ (res_plasma_fuel_spitzer_profile187)_ 5.87931041623232491e-10 +Plasma_Spitzer_resistivity_at_point_188__________________________________ (res_plasma_fuel_spitzer_profile188)_ 5.89803459485030414e-10 +Plasma_Spitzer_resistivity_at_point_189__________________________________ (res_plasma_fuel_spitzer_profile189)_ 5.91694279366697899e-10 +Plasma_Spitzer_resistivity_at_point_190__________________________________ (res_plasma_fuel_spitzer_profile190)_ 5.93603683326995337e-10 +Plasma_Spitzer_resistivity_at_point_191__________________________________ (res_plasma_fuel_spitzer_profile191)_ 5.95531855976293568e-10 +Plasma_Spitzer_resistivity_at_point_192__________________________________ (res_plasma_fuel_spitzer_profile192)_ 5.97478984515906108e-10 +Plasma_Spitzer_resistivity_at_point_193__________________________________ (res_plasma_fuel_spitzer_profile193)_ 5.99445258778131411e-10 +Plasma_Spitzer_resistivity_at_point_194__________________________________ (res_plasma_fuel_spitzer_profile194)_ 6.01430871267023262e-10 +Plasma_Spitzer_resistivity_at_point_195__________________________________ (res_plasma_fuel_spitzer_profile195)_ 6.03436017199895802e-10 +Plasma_Spitzer_resistivity_at_point_196__________________________________ (res_plasma_fuel_spitzer_profile196)_ 6.05460894549585217e-10 +Plasma_Spitzer_resistivity_at_point_197__________________________________ (res_plasma_fuel_spitzer_profile197)_ 6.07505704087475958e-10 +Plasma_Spitzer_resistivity_at_point_198__________________________________ (res_plasma_fuel_spitzer_profile198)_ 6.09570649427312872e-10 +Plasma_Spitzer_resistivity_at_point_199__________________________________ (res_plasma_fuel_spitzer_profile199)_ 6.11655937069810229e-10 +Plasma_Spitzer_resistivity_at_point_200__________________________________ (res_plasma_fuel_spitzer_profile200)_ 6.13761776448073243e-10 +Plasma_Spitzer_resistivity_at_point_201__________________________________ (res_plasma_fuel_spitzer_profile201)_ 6.15888379973854321e-10 +Plasma_Spitzer_resistivity_at_point_202__________________________________ (res_plasma_fuel_spitzer_profile202)_ 6.18035963084649420e-10 +Plasma_Spitzer_resistivity_at_point_203__________________________________ (res_plasma_fuel_spitzer_profile203)_ 6.20204744291663044e-10 +Plasma_Spitzer_resistivity_at_point_204__________________________________ (res_plasma_fuel_spitzer_profile204)_ 6.22394945228648710e-10 +Plasma_Spitzer_resistivity_at_point_205__________________________________ (res_plasma_fuel_spitzer_profile205)_ 6.24606790701650627e-10 +Plasma_Spitzer_resistivity_at_point_206__________________________________ (res_plasma_fuel_spitzer_profile206)_ 6.26840508739657963e-10 +Plasma_Spitzer_resistivity_at_point_207__________________________________ (res_plasma_fuel_spitzer_profile207)_ 6.29096330646193409e-10 +Plasma_Spitzer_resistivity_at_point_208__________________________________ (res_plasma_fuel_spitzer_profile208)_ 6.31374491051854248e-10 +Plasma_Spitzer_resistivity_at_point_209__________________________________ (res_plasma_fuel_spitzer_profile209)_ 6.33675227967822455e-10 +Plasma_Spitzer_resistivity_at_point_210__________________________________ (res_plasma_fuel_spitzer_profile210)_ 6.35998782840365570e-10 +Plasma_Spitzer_resistivity_at_point_211__________________________________ (res_plasma_fuel_spitzer_profile211)_ 6.38345400606349295e-10 +Plasma_Spitzer_resistivity_at_point_212__________________________________ (res_plasma_fuel_spitzer_profile212)_ 6.40715329749775193e-10 +Plasma_Spitzer_resistivity_at_point_213__________________________________ (res_plasma_fuel_spitzer_profile213)_ 6.43108822359373239e-10 +Plasma_Spitzer_resistivity_at_point_214__________________________________ (res_plasma_fuel_spitzer_profile214)_ 6.45526134187262262e-10 +Plasma_Spitzer_resistivity_at_point_215__________________________________ (res_plasma_fuel_spitzer_profile215)_ 6.47967524708705477e-10 +Plasma_Spitzer_resistivity_at_point_216__________________________________ (res_plasma_fuel_spitzer_profile216)_ 6.50433257182977944e-10 +Plasma_Spitzer_resistivity_at_point_217__________________________________ (res_plasma_fuel_spitzer_profile217)_ 6.52923598715372963e-10 +Plasma_Spitzer_resistivity_at_point_218__________________________________ (res_plasma_fuel_spitzer_profile218)_ 6.55438820320365065e-10 +Plasma_Spitzer_resistivity_at_point_219__________________________________ (res_plasma_fuel_spitzer_profile219)_ 6.57979196985958358e-10 +Plasma_Spitzer_resistivity_at_point_220__________________________________ (res_plasma_fuel_spitzer_profile220)_ 6.60545007739238727e-10 +Plasma_Spitzer_resistivity_at_point_221__________________________________ (res_plasma_fuel_spitzer_profile221)_ 6.63136535713157197e-10 +Plasma_Spitzer_resistivity_at_point_222__________________________________ (res_plasma_fuel_spitzer_profile222)_ 6.65754068214568736e-10 +Plasma_Spitzer_resistivity_at_point_223__________________________________ (res_plasma_fuel_spitzer_profile223)_ 6.68397896793549582e-10 +Plasma_Spitzer_resistivity_at_point_224__________________________________ (res_plasma_fuel_spitzer_profile224)_ 6.71068317314022130e-10 +Plasma_Spitzer_resistivity_at_point_225__________________________________ (res_plasma_fuel_spitzer_profile225)_ 6.73765630025709925e-10 +Plasma_Spitzer_resistivity_at_point_226__________________________________ (res_plasma_fuel_spitzer_profile226)_ 6.76490139637452953e-10 +Plasma_Spitzer_resistivity_at_point_227__________________________________ (res_plasma_fuel_spitzer_profile227)_ 6.79242155391906705e-10 +Plasma_Spitzer_resistivity_at_point_228__________________________________ (res_plasma_fuel_spitzer_profile228)_ 6.82021991141657581e-10 +Plasma_Spitzer_resistivity_at_point_229__________________________________ (res_plasma_fuel_spitzer_profile229)_ 6.84829965426776859e-10 +Plasma_Spitzer_resistivity_at_point_230__________________________________ (res_plasma_fuel_spitzer_profile230)_ 6.87666401553849945e-10 +Plasma_Spitzer_resistivity_at_point_231__________________________________ (res_plasma_fuel_spitzer_profile231)_ 6.90531627676501891e-10 +Plasma_Spitzer_resistivity_at_point_232__________________________________ (res_plasma_fuel_spitzer_profile232)_ 6.93425976877454847e-10 +Plasma_Spitzer_resistivity_at_point_233__________________________________ (res_plasma_fuel_spitzer_profile233)_ 6.96349787252150336e-10 +Plasma_Spitzer_resistivity_at_point_234__________________________________ (res_plasma_fuel_spitzer_profile234)_ 6.99303401993956816e-10 +Plasma_Spitzer_resistivity_at_point_235__________________________________ (res_plasma_fuel_spitzer_profile235)_ 7.02287169481009481e-10 +Plasma_Spitzer_resistivity_at_point_236__________________________________ (res_plasma_fuel_spitzer_profile236)_ 7.05301443364702558e-10 +Plasma_Spitzer_resistivity_at_point_237__________________________________ (res_plasma_fuel_spitzer_profile237)_ 7.08346582659873091e-10 +Plasma_Spitzer_resistivity_at_point_238__________________________________ (res_plasma_fuel_spitzer_profile238)_ 7.11422951836708145e-10 +Plasma_Spitzer_resistivity_at_point_239__________________________________ (res_plasma_fuel_spitzer_profile239)_ 7.14530920914414332e-10 +Plasma_Spitzer_resistivity_at_point_240__________________________________ (res_plasma_fuel_spitzer_profile240)_ 7.17670865556675172e-10 +Plasma_Spitzer_resistivity_at_point_241__________________________________ (res_plasma_fuel_spitzer_profile241)_ 7.20843167168944391e-10 +Plasma_Spitzer_resistivity_at_point_242__________________________________ (res_plasma_fuel_spitzer_profile242)_ 7.24048212997602539e-10 +Plasma_Spitzer_resistivity_at_point_243__________________________________ (res_plasma_fuel_spitzer_profile243)_ 7.27286396231015406e-10 +Plasma_Spitzer_resistivity_at_point_244__________________________________ (res_plasma_fuel_spitzer_profile244)_ 7.30558116102538168e-10 +Plasma_Spitzer_resistivity_at_point_245__________________________________ (res_plasma_fuel_spitzer_profile245)_ 7.33863777995498570e-10 +Plasma_Spitzer_resistivity_at_point_246__________________________________ (res_plasma_fuel_spitzer_profile246)_ 7.37203793550196971e-10 +Plasma_Spitzer_resistivity_at_point_247__________________________________ (res_plasma_fuel_spitzer_profile247)_ 7.40578580772970734e-10 +Plasma_Spitzer_resistivity_at_point_248__________________________________ (res_plasma_fuel_spitzer_profile248)_ 7.43988564147355201e-10 +Plasma_Spitzer_resistivity_at_point_249__________________________________ (res_plasma_fuel_spitzer_profile249)_ 7.47434174747390166e-10 +Plasma_Spitzer_resistivity_at_point_250__________________________________ (res_plasma_fuel_spitzer_profile250)_ 7.50915850353108565e-10 +Plasma_Spitzer_resistivity_at_point_251__________________________________ (res_plasma_fuel_spitzer_profile251)_ 7.54434035568256262e-10 +Plasma_Spitzer_resistivity_at_point_252__________________________________ (res_plasma_fuel_spitzer_profile252)_ 7.57989181940279670e-10 +Plasma_Spitzer_resistivity_at_point_253__________________________________ (res_plasma_fuel_spitzer_profile253)_ 7.61581748082634331e-10 +Plasma_Spitzer_resistivity_at_point_254__________________________________ (res_plasma_fuel_spitzer_profile254)_ 7.65212199799452506e-10 +Plasma_Spitzer_resistivity_at_point_255__________________________________ (res_plasma_fuel_spitzer_profile255)_ 7.68881010212617871e-10 +Plasma_Spitzer_resistivity_at_point_256__________________________________ (res_plasma_fuel_spitzer_profile256)_ 7.72588659891301068e-10 +Plasma_Spitzer_resistivity_at_point_257__________________________________ (res_plasma_fuel_spitzer_profile257)_ 7.76335636983992827e-10 +Plasma_Spitzer_resistivity_at_point_258__________________________________ (res_plasma_fuel_spitzer_profile258)_ 7.80122437353092146e-10 +Plasma_Spitzer_resistivity_at_point_259__________________________________ (res_plasma_fuel_spitzer_profile259)_ 7.83949564712094921e-10 +Plasma_Spitzer_resistivity_at_point_260__________________________________ (res_plasma_fuel_spitzer_profile260)_ 7.87817530765433269e-10 +Plasma_Spitzer_resistivity_at_point_261__________________________________ (res_plasma_fuel_spitzer_profile261)_ 7.91726855351021295e-10 +Plasma_Spitzer_resistivity_at_point_262__________________________________ (res_plasma_fuel_spitzer_profile262)_ 7.95678066585549156e-10 +Plasma_Spitzer_resistivity_at_point_263__________________________________ (res_plasma_fuel_spitzer_profile263)_ 7.99671701012592128e-10 +Plasma_Spitzer_resistivity_at_point_264__________________________________ (res_plasma_fuel_spitzer_profile264)_ 8.03708303753571069e-10 +Plasma_Spitzer_resistivity_at_point_265__________________________________ (res_plasma_fuel_spitzer_profile265)_ 8.07788428661638411e-10 +Plasma_Spitzer_resistivity_at_point_266__________________________________ (res_plasma_fuel_spitzer_profile266)_ 8.11912638478524943e-10 +Plasma_Spitzer_resistivity_at_point_267__________________________________ (res_plasma_fuel_spitzer_profile267)_ 8.16081504994418725e-10 +Plasma_Spitzer_resistivity_at_point_268__________________________________ (res_plasma_fuel_spitzer_profile268)_ 8.20295609210919985e-10 +Plasma_Spitzer_resistivity_at_point_269__________________________________ (res_plasma_fuel_spitzer_profile269)_ 8.24555541507144871e-10 +Plasma_Spitzer_resistivity_at_point_270__________________________________ (res_plasma_fuel_spitzer_profile270)_ 8.28861901809016657e-10 +Plasma_Spitzer_resistivity_at_point_271__________________________________ (res_plasma_fuel_spitzer_profile271)_ 8.33215299761822953e-10 +Plasma_Spitzer_resistivity_at_point_272__________________________________ (res_plasma_fuel_spitzer_profile272)_ 8.37616354906080512e-10 +Plasma_Spitzer_resistivity_at_point_273__________________________________ (res_plasma_fuel_spitzer_profile273)_ 8.42065696856781856e-10 +Plasma_Spitzer_resistivity_at_point_274__________________________________ (res_plasma_fuel_spitzer_profile274)_ 8.46563965486077181e-10 +Plasma_Spitzer_resistivity_at_point_275__________________________________ (res_plasma_fuel_spitzer_profile275)_ 8.51111811109456791e-10 +Plasma_Spitzer_resistivity_at_point_276__________________________________ (res_plasma_fuel_spitzer_profile276)_ 8.55709894675489273e-10 +Plasma_Spitzer_resistivity_at_point_277__________________________________ (res_plasma_fuel_spitzer_profile277)_ 8.60358887959187574e-10 +Plasma_Spitzer_resistivity_at_point_278__________________________________ (res_plasma_fuel_spitzer_profile278)_ 8.65059473759059765e-10 +Plasma_Spitzer_resistivity_at_point_279__________________________________ (res_plasma_fuel_spitzer_profile279)_ 8.69812346097910955e-10 +Plasma_Spitzer_resistivity_at_point_280__________________________________ (res_plasma_fuel_spitzer_profile280)_ 8.74618210427457279e-10 +Plasma_Spitzer_resistivity_at_point_281__________________________________ (res_plasma_fuel_spitzer_profile281)_ 8.79477783836821729e-10 +Plasma_Spitzer_resistivity_at_point_282__________________________________ (res_plasma_fuel_spitzer_profile282)_ 8.84391795264972230e-10 +Plasma_Spitzer_resistivity_at_point_283__________________________________ (res_plasma_fuel_spitzer_profile283)_ 8.89360985717166895e-10 +Plasma_Spitzer_resistivity_at_point_284__________________________________ (res_plasma_fuel_spitzer_profile284)_ 8.94386108485480162e-10 +Plasma_Spitzer_resistivity_at_point_285__________________________________ (res_plasma_fuel_spitzer_profile285)_ 8.99467929373456573e-10 +Plasma_Spitzer_resistivity_at_point_286__________________________________ (res_plasma_fuel_spitzer_profile286)_ 9.04607226924986893e-10 +Plasma_Spitzer_resistivity_at_point_287__________________________________ (res_plasma_fuel_spitzer_profile287)_ 9.09804792657438629e-10 +Plasma_Spitzer_resistivity_at_point_288__________________________________ (res_plasma_fuel_spitzer_profile288)_ 9.15061431299138957e-10 +Plasma_Spitzer_resistivity_at_point_289__________________________________ (res_plasma_fuel_spitzer_profile289)_ 9.20377961031244820e-10 +Plasma_Spitzer_resistivity_at_point_290__________________________________ (res_plasma_fuel_spitzer_profile290)_ 9.25755213734095096e-10 +Plasma_Spitzer_resistivity_at_point_291__________________________________ (res_plasma_fuel_spitzer_profile291)_ 9.31194035238082899e-10 +Plasma_Spitzer_resistivity_at_point_292__________________________________ (res_plasma_fuel_spitzer_profile292)_ 9.36695285579132792e-10 +Plasma_Spitzer_resistivity_at_point_293__________________________________ (res_plasma_fuel_spitzer_profile293)_ 9.42259839258832028e-10 +Plasma_Spitzer_resistivity_at_point_294__________________________________ (res_plasma_fuel_spitzer_profile294)_ 9.47888585509289856e-10 +Plasma_Spitzer_resistivity_at_point_295__________________________________ (res_plasma_fuel_spitzer_profile295)_ 9.53582428562775545e-10 +Plasma_Spitzer_resistivity_at_point_296__________________________________ (res_plasma_fuel_spitzer_profile296)_ 9.59342287926207523e-10 +Plasma_Spitzer_resistivity_at_point_297__________________________________ (res_plasma_fuel_spitzer_profile297)_ 9.65169098660540241e-10 +Plasma_Spitzer_resistivity_at_point_298__________________________________ (res_plasma_fuel_spitzer_profile298)_ 9.71063811665124881e-10 +Plasma_Spitzer_resistivity_at_point_299__________________________________ (res_plasma_fuel_spitzer_profile299)_ 9.77027393967075956e-10 +Plasma_Spitzer_resistivity_at_point_300__________________________________ (res_plasma_fuel_spitzer_profile300)_ 9.83060829015720305e-10 +Plasma_Spitzer_resistivity_at_point_301__________________________________ (res_plasma_fuel_spitzer_profile301)_ 9.89165116982168416e-10 +Plasma_Spitzer_resistivity_at_point_302__________________________________ (res_plasma_fuel_spitzer_profile302)_ 9.95341275064063475e-10 +Plasma_Spitzer_resistivity_at_point_303__________________________________ (res_plasma_fuel_spitzer_profile303)_ 1.00159033779554973e-09 +Plasma_Spitzer_resistivity_at_point_304__________________________________ (res_plasma_fuel_spitzer_profile304)_ 1.00791335736251183e-09 +Plasma_Spitzer_resistivity_at_point_305__________________________________ (res_plasma_fuel_spitzer_profile305)_ 1.01431140392312162e-09 +Plasma_Spitzer_resistivity_at_point_306__________________________________ (res_plasma_fuel_spitzer_profile306)_ 1.02078556593372948e-09 +Plasma_Spitzer_resistivity_at_point_307__________________________________ (res_plasma_fuel_spitzer_profile307)_ 1.02733695048013404e-09 +Plasma_Spitzer_resistivity_at_point_308__________________________________ (res_plasma_fuel_spitzer_profile308)_ 1.03396668361426787e-09 +Plasma_Spitzer_resistivity_at_point_309__________________________________ (res_plasma_fuel_spitzer_profile309)_ 1.04067591069630652e-09 +Plasma_Spitzer_resistivity_at_point_310__________________________________ (res_plasma_fuel_spitzer_profile310)_ 1.04746579674224016e-09 +Plasma_Spitzer_resistivity_at_point_311__________________________________ (res_plasma_fuel_spitzer_profile311)_ 1.05433752677690218e-09 +Plasma_Spitzer_resistivity_at_point_312__________________________________ (res_plasma_fuel_spitzer_profile312)_ 1.06129230619248528e-09 +Plasma_Spitzer_resistivity_at_point_313__________________________________ (res_plasma_fuel_spitzer_profile313)_ 1.06833136111251825e-09 +Plasma_Spitzer_resistivity_at_point_314__________________________________ (res_plasma_fuel_spitzer_profile314)_ 1.07545593876132954e-09 +Plasma_Spitzer_resistivity_at_point_315__________________________________ (res_plasma_fuel_spitzer_profile315)_ 1.08266730783894883e-09 +Plasma_Spitzer_resistivity_at_point_316__________________________________ (res_plasma_fuel_spitzer_profile316)_ 1.08996675890146005e-09 +Plasma_Spitzer_resistivity_at_point_317__________________________________ (res_plasma_fuel_spitzer_profile317)_ 1.09735560474674706e-09 +Plasma_Spitzer_resistivity_at_point_318__________________________________ (res_plasma_fuel_spitzer_profile318)_ 1.10483518080560187e-09 +Plasma_Spitzer_resistivity_at_point_319__________________________________ (res_plasma_fuel_spitzer_profile319)_ 1.11240684553814654e-09 +Plasma_Spitzer_resistivity_at_point_320__________________________________ (res_plasma_fuel_spitzer_profile320)_ 1.12007198083550119e-09 +Plasma_Spitzer_resistivity_at_point_321__________________________________ (res_plasma_fuel_spitzer_profile321)_ 1.12783199242662283e-09 +Plasma_Spitzer_resistivity_at_point_322__________________________________ (res_plasma_fuel_spitzer_profile322)_ 1.13568831029022764e-09 +Plasma_Spitzer_resistivity_at_point_323__________________________________ (res_plasma_fuel_spitzer_profile323)_ 1.14364238907169582e-09 +Plasma_Spitzer_resistivity_at_point_324__________________________________ (res_plasma_fuel_spitzer_profile324)_ 1.15169570850483297e-09 +Plasma_Spitzer_resistivity_at_point_325__________________________________ (res_plasma_fuel_spitzer_profile325)_ 1.15984977383836836e-09 +Plasma_Spitzer_resistivity_at_point_326__________________________________ (res_plasma_fuel_spitzer_profile326)_ 1.16810611626701981e-09 +Plasma_Spitzer_resistivity_at_point_327__________________________________ (res_plasma_fuel_spitzer_profile327)_ 1.17646629336696588e-09 +Plasma_Spitzer_resistivity_at_point_328__________________________________ (res_plasma_fuel_spitzer_profile328)_ 1.18493188953553675e-09 +Plasma_Spitzer_resistivity_at_point_329__________________________________ (res_plasma_fuel_spitzer_profile329)_ 1.19350451643489017e-09 +Plasma_Spitzer_resistivity_at_point_330__________________________________ (res_plasma_fuel_spitzer_profile330)_ 1.20218581343946880e-09 +Plasma_Spitzer_resistivity_at_point_331__________________________________ (res_plasma_fuel_spitzer_profile331)_ 1.21097744808693897e-09 +Plasma_Spitzer_resistivity_at_point_332__________________________________ (res_plasma_fuel_spitzer_profile332)_ 1.21988111653236080e-09 +Plasma_Spitzer_resistivity_at_point_333__________________________________ (res_plasma_fuel_spitzer_profile333)_ 1.22889854400523818e-09 +Plasma_Spitzer_resistivity_at_point_334__________________________________ (res_plasma_fuel_spitzer_profile334)_ 1.23803148526912902e-09 +Plasma_Spitzer_resistivity_at_point_335__________________________________ (res_plasma_fuel_spitzer_profile335)_ 1.24728172508341185e-09 +Plasma_Spitzer_resistivity_at_point_336__________________________________ (res_plasma_fuel_spitzer_profile336)_ 1.25665107866681197e-09 +Plasma_Spitzer_resistivity_at_point_337__________________________________ (res_plasma_fuel_spitzer_profile337)_ 1.26614139216222585e-09 +Plasma_Spitzer_resistivity_at_point_338__________________________________ (res_plasma_fuel_spitzer_profile338)_ 1.27575454310234670e-09 +Plasma_Spitzer_resistivity_at_point_339__________________________________ (res_plasma_fuel_spitzer_profile339)_ 1.28549244087556301e-09 +Plasma_Spitzer_resistivity_at_point_340__________________________________ (res_plasma_fuel_spitzer_profile340)_ 1.29535702719154601e-09 +Plasma_Spitzer_resistivity_at_point_341__________________________________ (res_plasma_fuel_spitzer_profile341)_ 1.30535027654589710e-09 +Plasma_Spitzer_resistivity_at_point_342__________________________________ (res_plasma_fuel_spitzer_profile342)_ 1.31547419668316632e-09 +Plasma_Spitzer_resistivity_at_point_343__________________________________ (res_plasma_fuel_spitzer_profile343)_ 1.32573082905751424e-09 +Plasma_Spitzer_resistivity_at_point_344__________________________________ (res_plasma_fuel_spitzer_profile344)_ 1.33612224929021496e-09 +Plasma_Spitzer_resistivity_at_point_345__________________________________ (res_plasma_fuel_spitzer_profile345)_ 1.34665056762314237e-09 +Plasma_Spitzer_resistivity_at_point_346__________________________________ (res_plasma_fuel_spitzer_profile346)_ 1.35731792936730310e-09 +Plasma_Spitzer_resistivity_at_point_347__________________________________ (res_plasma_fuel_spitzer_profile347)_ 1.36812651534543930e-09 +Plasma_Spitzer_resistivity_at_point_348__________________________________ (res_plasma_fuel_spitzer_profile348)_ 1.37907854232759470e-09 +Plasma_Spitzer_resistivity_at_point_349__________________________________ (res_plasma_fuel_spitzer_profile349)_ 1.39017626345851611e-09 +Plasma_Spitzer_resistivity_at_point_350__________________________________ (res_plasma_fuel_spitzer_profile350)_ 1.40142196867562386e-09 +Plasma_Spitzer_resistivity_at_point_351__________________________________ (res_plasma_fuel_spitzer_profile351)_ 1.41281798511623243e-09 +Plasma_Spitzer_resistivity_at_point_352__________________________________ (res_plasma_fuel_spitzer_profile352)_ 1.42436667751256451e-09 +Plasma_Spitzer_resistivity_at_point_353__________________________________ (res_plasma_fuel_spitzer_profile353)_ 1.43607044857304181e-09 +Plasma_Spitzer_resistivity_at_point_354__________________________________ (res_plasma_fuel_spitzer_profile354)_ 1.44793173934817659e-09 +Plasma_Spitzer_resistivity_at_point_355__________________________________ (res_plasma_fuel_spitzer_profile355)_ 1.45995302957931224e-09 +Plasma_Spitzer_resistivity_at_point_356__________________________________ (res_plasma_fuel_spitzer_profile356)_ 1.47213683802829820e-09 +Plasma_Spitzer_resistivity_at_point_357__________________________________ (res_plasma_fuel_spitzer_profile357)_ 1.48448572278607011e-09 +Plasma_Spitzer_resistivity_at_point_358__________________________________ (res_plasma_fuel_spitzer_profile358)_ 1.49700228155796503e-09 +Plasma_Spitzer_resistivity_at_point_359__________________________________ (res_plasma_fuel_spitzer_profile359)_ 1.50968915192342563e-09 +Plasma_Spitzer_resistivity_at_point_360__________________________________ (res_plasma_fuel_spitzer_profile360)_ 1.52254901156760509e-09 +Plasma_Spitzer_resistivity_at_point_361__________________________________ (res_plasma_fuel_spitzer_profile361)_ 1.53558457848221758e-09 +Plasma_Spitzer_resistivity_at_point_362__________________________________ (res_plasma_fuel_spitzer_profile362)_ 1.54879861113275362e-09 +Plasma_Spitzer_resistivity_at_point_363__________________________________ (res_plasma_fuel_spitzer_profile363)_ 1.56219390858904143e-09 +Plasma_Spitzer_resistivity_at_point_364__________________________________ (res_plasma_fuel_spitzer_profile364)_ 1.57577331061587328e-09 +Plasma_Spitzer_resistivity_at_point_365__________________________________ (res_plasma_fuel_spitzer_profile365)_ 1.58953969772022776e-09 +Plasma_Spitzer_resistivity_at_point_366__________________________________ (res_plasma_fuel_spitzer_profile366)_ 1.60349599115137505e-09 +Plasma_Spitzer_resistivity_at_point_367__________________________________ (res_plasma_fuel_spitzer_profile367)_ 1.61764515284987916e-09 +Plasma_Spitzer_resistivity_at_point_368__________________________________ (res_plasma_fuel_spitzer_profile368)_ 1.63199018534128331e-09 +Plasma_Spitzer_resistivity_at_point_369__________________________________ (res_plasma_fuel_spitzer_profile369)_ 1.64653413156994589e-09 +Plasma_Spitzer_resistivity_at_point_370__________________________________ (res_plasma_fuel_spitzer_profile370)_ 1.66128007466820038e-09 +Plasma_Spitzer_resistivity_at_point_371__________________________________ (res_plasma_fuel_spitzer_profile371)_ 1.67623113765571454e-09 +Plasma_Spitzer_resistivity_at_point_372__________________________________ (res_plasma_fuel_spitzer_profile372)_ 1.69139048306353904e-09 +Plasma_Spitzer_resistivity_at_point_373__________________________________ (res_plasma_fuel_spitzer_profile373)_ 1.70676131247701701e-09 +Plasma_Spitzer_resistivity_at_point_374__________________________________ (res_plasma_fuel_spitzer_profile374)_ 1.72234686599129981e-09 +Plasma_Spitzer_resistivity_at_point_375__________________________________ (res_plasma_fuel_spitzer_profile375)_ 1.73815042157285793e-09 +Plasma_Spitzer_resistivity_at_point_376__________________________________ (res_plasma_fuel_spitzer_profile376)_ 1.75417529431985350e-09 +Plasma_Spitzer_resistivity_at_point_377__________________________________ (res_plasma_fuel_spitzer_profile377)_ 1.77042483561388496e-09 +Plasma_Spitzer_resistivity_at_point_378__________________________________ (res_plasma_fuel_spitzer_profile378)_ 1.78690243215502260e-09 +Plasma_Spitzer_resistivity_at_point_379__________________________________ (res_plasma_fuel_spitzer_profile379)_ 1.80361150487160453e-09 +Plasma_Spitzer_resistivity_at_point_380__________________________________ (res_plasma_fuel_spitzer_profile380)_ 1.82055550769565868e-09 +Plasma_Spitzer_resistivity_at_point_381__________________________________ (res_plasma_fuel_spitzer_profile381)_ 1.83773792619424766e-09 +Plasma_Spitzer_resistivity_at_point_382__________________________________ (res_plasma_fuel_spitzer_profile382)_ 1.85516227604641174e-09 +Plasma_Spitzer_resistivity_at_point_383__________________________________ (res_plasma_fuel_spitzer_profile383)_ 1.87283210135469507e-09 +Plasma_Spitzer_resistivity_at_point_384__________________________________ (res_plasma_fuel_spitzer_profile384)_ 1.89075097277955174e-09 +Plasma_Spitzer_resistivity_at_point_385__________________________________ (res_plasma_fuel_spitzer_profile385)_ 1.90892248548416811e-09 +Plasma_Spitzer_resistivity_at_point_386__________________________________ (res_plasma_fuel_spitzer_profile386)_ 1.92735025687646249e-09 +Plasma_Spitzer_resistivity_at_point_387__________________________________ (res_plasma_fuel_spitzer_profile387)_ 1.94603792413410423e-09 +Plasma_Spitzer_resistivity_at_point_388__________________________________ (res_plasma_fuel_spitzer_profile388)_ 1.96498914149760486e-09 +Plasma_Spitzer_resistivity_at_point_389__________________________________ (res_plasma_fuel_spitzer_profile389)_ 1.98420757731546482e-09 +Plasma_Spitzer_resistivity_at_point_390__________________________________ (res_plasma_fuel_spitzer_profile390)_ 2.00369691082443531e-09 +Plasma_Spitzer_resistivity_at_point_391__________________________________ (res_plasma_fuel_spitzer_profile391)_ 2.02346082864678849e-09 +Plasma_Spitzer_resistivity_at_point_392__________________________________ (res_plasma_fuel_spitzer_profile392)_ 2.04350302098544470e-09 +Plasma_Spitzer_resistivity_at_point_393__________________________________ (res_plasma_fuel_spitzer_profile393)_ 2.06382717749647599e-09 +Plasma_Spitzer_resistivity_at_point_394__________________________________ (res_plasma_fuel_spitzer_profile394)_ 2.08443698281732059e-09 +Plasma_Spitzer_resistivity_at_point_395__________________________________ (res_plasma_fuel_spitzer_profile395)_ 2.10533611172758194e-09 +Plasma_Spitzer_resistivity_at_point_396__________________________________ (res_plasma_fuel_spitzer_profile396)_ 2.12652822391790047e-09 +Plasma_Spitzer_resistivity_at_point_397__________________________________ (res_plasma_fuel_spitzer_profile397)_ 2.14801695834076202e-09 +Plasma_Spitzer_resistivity_at_point_398__________________________________ (res_plasma_fuel_spitzer_profile398)_ 2.16980592711554783e-09 +Plasma_Spitzer_resistivity_at_point_399__________________________________ (res_plasma_fuel_spitzer_profile399)_ 2.19189870895830301e-09 +Plasma_Spitzer_resistivity_at_point_400__________________________________ (res_plasma_fuel_spitzer_profile400)_ 2.21429884210490903e-09 +Plasma_Spitzer_resistivity_at_point_401__________________________________ (res_plasma_fuel_spitzer_profile401)_ 2.23700981669430786e-09 +Plasma_Spitzer_resistivity_at_point_402__________________________________ (res_plasma_fuel_spitzer_profile402)_ 2.26003506657639968e-09 +Plasma_Spitzer_resistivity_at_point_403__________________________________ (res_plasma_fuel_spitzer_profile403)_ 2.28337796050692527e-09 +Plasma_Spitzer_resistivity_at_point_404__________________________________ (res_plasma_fuel_spitzer_profile404)_ 2.30704179268934847e-09 +Plasma_Spitzer_resistivity_at_point_405__________________________________ (res_plasma_fuel_spitzer_profile405)_ 2.33102977262115418e-09 +Plasma_Spitzer_resistivity_at_point_406__________________________________ (res_plasma_fuel_spitzer_profile406)_ 2.35534501419935034e-09 +Plasma_Spitzer_resistivity_at_point_407__________________________________ (res_plasma_fuel_spitzer_profile407)_ 2.37999052403704506e-09 +Plasma_Spitzer_resistivity_at_point_408__________________________________ (res_plasma_fuel_spitzer_profile408)_ 2.40496918893996859e-09 +Plasma_Spitzer_resistivity_at_point_409__________________________________ (res_plasma_fuel_spitzer_profile409)_ 2.43028376248846762e-09 +Plasma_Spitzer_resistivity_at_point_410__________________________________ (res_plasma_fuel_spitzer_profile410)_ 2.45593685066714756e-09 +Plasma_Spitzer_resistivity_at_point_411__________________________________ (res_plasma_fuel_spitzer_profile411)_ 2.48193089648046541e-09 +Plasma_Spitzer_resistivity_at_point_412__________________________________ (res_plasma_fuel_spitzer_profile412)_ 2.50826816348876466e-09 +Plasma_Spitzer_resistivity_at_point_413__________________________________ (res_plasma_fuel_spitzer_profile413)_ 2.53495071819479259e-09 +Plasma_Spitzer_resistivity_at_point_414__________________________________ (res_plasma_fuel_spitzer_profile414)_ 2.56198041120639851e-09 +Plasma_Spitzer_resistivity_at_point_415__________________________________ (res_plasma_fuel_spitzer_profile415)_ 2.58935885709596504e-09 +Plasma_Spitzer_resistivity_at_point_416__________________________________ (res_plasma_fuel_spitzer_profile416)_ 2.61708741287203307e-09 +Plasma_Spitzer_resistivity_at_point_417__________________________________ (res_plasma_fuel_spitzer_profile417)_ 2.64516715497277389e-09 +Plasma_Spitzer_resistivity_at_point_418__________________________________ (res_plasma_fuel_spitzer_profile418)_ 2.67359885468485610e-09 +Plasma_Spitzer_resistivity_at_point_419__________________________________ (res_plasma_fuel_spitzer_profile419)_ 2.70238295188453999e-09 +Plasma_Spitzer_resistivity_at_point_420__________________________________ (res_plasma_fuel_spitzer_profile420)_ 2.73151952699067544e-09 +Plasma_Spitzer_resistivity_at_point_421__________________________________ (res_plasma_fuel_spitzer_profile421)_ 2.76100827101128549e-09 +Plasma_Spitzer_resistivity_at_point_422__________________________________ (res_plasma_fuel_spitzer_profile422)_ 2.79084845355685725e-09 +Plasma_Spitzer_resistivity_at_point_423__________________________________ (res_plasma_fuel_spitzer_profile423)_ 2.82103888868400841e-09 +Plasma_Spitzer_resistivity_at_point_424__________________________________ (res_plasma_fuel_spitzer_profile424)_ 2.85157789842275801e-09 +Plasma_Spitzer_resistivity_at_point_425__________________________________ (res_plasma_fuel_spitzer_profile425)_ 2.88246327382909503e-09 +Plasma_Spitzer_resistivity_at_point_426__________________________________ (res_plasma_fuel_spitzer_profile426)_ 2.91369223339184697e-09 +Plasma_Spitzer_resistivity_at_point_427__________________________________ (res_plasma_fuel_spitzer_profile427)_ 2.94526137860847104e-09 +Plasma_Spitzer_resistivity_at_point_428__________________________________ (res_plasma_fuel_spitzer_profile428)_ 2.97716664652845504e-09 +Plasma_Spitzer_resistivity_at_point_429__________________________________ (res_plasma_fuel_spitzer_profile429)_ 3.00940325904502455e-09 +Plasma_Spitzer_resistivity_at_point_430__________________________________ (res_plasma_fuel_spitzer_profile430)_ 3.04196566869526769e-09 +Plasma_Spitzer_resistivity_at_point_431__________________________________ (res_plasma_fuel_spitzer_profile431)_ 3.07484750070569303e-09 +Plasma_Spitzer_resistivity_at_point_432__________________________________ (res_plasma_fuel_spitzer_profile432)_ 3.10804149099325798e-09 +Plasma_Spitzer_resistivity_at_point_433__________________________________ (res_plasma_fuel_spitzer_profile433)_ 3.14153941980134822e-09 +Plasma_Spitzer_resistivity_at_point_434__________________________________ (res_plasma_fuel_spitzer_profile434)_ 3.17533204061404845e-09 +Plasma_Spitzer_resistivity_at_point_435__________________________________ (res_plasma_fuel_spitzer_profile435)_ 3.20940900395051418e-09 +Plasma_Spitzer_resistivity_at_point_436__________________________________ (res_plasma_fuel_spitzer_profile436)_ 3.24375877559169801e-09 +Plasma_Spitzer_resistivity_at_point_437__________________________________ (res_plasma_fuel_spitzer_profile437)_ 3.27836854873370154e-09 +Plasma_Spitzer_resistivity_at_point_438__________________________________ (res_plasma_fuel_spitzer_profile438)_ 3.31322414949217722e-09 +Plasma_Spitzer_resistivity_at_point_439__________________________________ (res_plasma_fuel_spitzer_profile439)_ 3.34830993509909687e-09 +Plasma_Spitzer_resistivity_at_point_440__________________________________ (res_plasma_fuel_spitzer_profile440)_ 3.38360868403218576e-09 +Plasma_Spitzer_resistivity_at_point_441__________________________________ (res_plasma_fuel_spitzer_profile441)_ 3.41910147719475870e-09 +Plasma_Spitzer_resistivity_at_point_442__________________________________ (res_plasma_fuel_spitzer_profile442)_ 3.45476756911319102e-09 +Plasma_Spitzer_resistivity_at_point_443__________________________________ (res_plasma_fuel_spitzer_profile443)_ 3.49058424793377424e-09 +Plasma_Spitzer_resistivity_at_point_444__________________________________ (res_plasma_fuel_spitzer_profile444)_ 3.52652668276942253e-09 +Plasma_Spitzer_resistivity_at_point_445__________________________________ (res_plasma_fuel_spitzer_profile445)_ 3.56256775665725477e-09 +Plasma_Spitzer_resistivity_at_point_446__________________________________ (res_plasma_fuel_spitzer_profile446)_ 3.59867788302158644e-09 +Plasma_Spitzer_resistivity_at_point_447__________________________________ (res_plasma_fuel_spitzer_profile447)_ 3.63482480306985290e-09 +Plasma_Spitzer_resistivity_at_point_448__________________________________ (res_plasma_fuel_spitzer_profile448)_ 3.67097336094755841e-09 +Plasma_Spitzer_resistivity_at_point_449__________________________________ (res_plasma_fuel_spitzer_profile449)_ 3.70708525269691982e-09 +Plasma_Spitzer_resistivity_at_point_450__________________________________ (res_plasma_fuel_spitzer_profile450)_ 3.74311874403712691e-09 +Plasma_Spitzer_resistivity_at_point_451__________________________________ (res_plasma_fuel_spitzer_profile451)_ 3.77902835062012264e-09 +Plasma_Spitzer_resistivity_at_point_452__________________________________ (res_plasma_fuel_spitzer_profile452)_ 3.81476447258087095e-09 +Plasma_Spitzer_resistivity_at_point_453__________________________________ (res_plasma_fuel_spitzer_profile453)_ 3.85027297269884258e-09 +Plasma_Spitzer_resistivity_at_point_454__________________________________ (res_plasma_fuel_spitzer_profile454)_ 3.88549468402364778e-09 +Plasma_Spitzer_resistivity_at_point_455__________________________________ (res_plasma_fuel_spitzer_profile455)_ 3.92036482794273782e-09 +Plasma_Spitzer_resistivity_at_point_456__________________________________ (res_plasma_fuel_spitzer_profile456)_ 3.95481231667877628e-09 +Plasma_Spitzer_resistivity_at_point_457__________________________________ (res_plasma_fuel_spitzer_profile457)_ 3.98875890397039606e-09 +Plasma_Spitzer_resistivity_at_point_458__________________________________ (res_plasma_fuel_spitzer_profile458)_ 4.02211813234829411e-09 +Plasma_Spitzer_resistivity_at_point_459__________________________________ (res_plasma_fuel_spitzer_profile459)_ 4.05479400179319961e-09 +Plasma_Spitzer_resistivity_at_point_460__________________________________ (res_plasma_fuel_spitzer_profile460)_ 4.08667924703255569e-09 +Plasma_Spitzer_resistivity_at_point_461__________________________________ (res_plasma_fuel_spitzer_profile461)_ 4.11765304892636701e-09 +Plasma_Spitzer_resistivity_at_point_462__________________________________ (res_plasma_fuel_spitzer_profile462)_ 4.14757789918091874e-09 +Plasma_Spitzer_resistivity_at_point_463__________________________________ (res_plasma_fuel_spitzer_profile463)_ 4.17629514557650056e-09 +Plasma_Spitzer_resistivity_at_point_464__________________________________ (res_plasma_fuel_spitzer_profile464)_ 4.20361837536565468e-09 +Plasma_Spitzer_resistivity_at_point_465__________________________________ (res_plasma_fuel_spitzer_profile465)_ 4.22932302602821462e-09 +Plasma_Spitzer_resistivity_at_point_466__________________________________ (res_plasma_fuel_spitzer_profile466)_ 4.25312884550708146e-09 +Plasma_Spitzer_resistivity_at_point_467__________________________________ (res_plasma_fuel_spitzer_profile467)_ 4.27466716743884254e-09 +Plasma_Spitzer_resistivity_at_point_468__________________________________ (res_plasma_fuel_spitzer_profile468)_ 4.29340999118276997e-09 +Plasma_Spitzer_resistivity_at_point_469__________________________________ (res_plasma_fuel_spitzer_profile469)_ 4.30847051484449297e-09 +Plasma_Spitzer_resistivity_at_point_470__________________________________ (res_plasma_fuel_spitzer_profile470)_ 4.31738094742564491e-09 +Plasma_Spitzer_resistivity_at_point_471__________________________________ (res_plasma_fuel_spitzer_profile471)_ 4.53140107983372526e-09 +Plasma_Spitzer_resistivity_at_point_472__________________________________ (res_plasma_fuel_spitzer_profile472)_ 4.76390455941534265e-09 +Plasma_Spitzer_resistivity_at_point_473__________________________________ (res_plasma_fuel_spitzer_profile473)_ 5.01721921636568231e-09 +Plasma_Spitzer_resistivity_at_point_474__________________________________ (res_plasma_fuel_spitzer_profile474)_ 5.29406529313977785e-09 +Plasma_Spitzer_resistivity_at_point_475__________________________________ (res_plasma_fuel_spitzer_profile475)_ 5.59763965417447120e-09 +Plasma_Spitzer_resistivity_at_point_476__________________________________ (res_plasma_fuel_spitzer_profile476)_ 5.93172226129448431e-09 +Plasma_Spitzer_resistivity_at_point_477__________________________________ (res_plasma_fuel_spitzer_profile477)_ 6.30081200620610463e-09 +Plasma_Spitzer_resistivity_at_point_478__________________________________ (res_plasma_fuel_spitzer_profile478)_ 6.71030166785179631e-09 +Plasma_Spitzer_resistivity_at_point_479__________________________________ (res_plasma_fuel_spitzer_profile479)_ 7.16670562130654738e-09 +Plasma_Spitzer_resistivity_at_point_480__________________________________ (res_plasma_fuel_spitzer_profile480)_ 7.67795957250617380e-09 +Plasma_Spitzer_resistivity_at_point_481__________________________________ (res_plasma_fuel_spitzer_profile481)_ 8.25381999360676689e-09 +Plasma_Spitzer_resistivity_at_point_482__________________________________ (res_plasma_fuel_spitzer_profile482)_ 8.90640365186273226e-09 +Plasma_Spitzer_resistivity_at_point_483__________________________________ (res_plasma_fuel_spitzer_profile483)_ 9.65092725577260299e-09 +Plasma_Spitzer_resistivity_at_point_484__________________________________ (res_plasma_fuel_spitzer_profile484)_ 1.05067381946170116e-08 +Plasma_Spitzer_resistivity_at_point_485__________________________________ (res_plasma_fuel_spitzer_profile485)_ 1.14987773112677015e-08 +Plasma_Spitzer_resistivity_at_point_486__________________________________ (res_plasma_fuel_spitzer_profile486)_ 1.26596974340134948e-08 +Plasma_Spitzer_resistivity_at_point_487__________________________________ (res_plasma_fuel_spitzer_profile487)_ 1.40330026258635619e-08 +Plasma_Spitzer_resistivity_at_point_488__________________________________ (res_plasma_fuel_spitzer_profile488)_ 1.56778221033354050e-08 +Plasma_Spitzer_resistivity_at_point_489__________________________________ (res_plasma_fuel_spitzer_profile489)_ 1.76763884365125764e-08 +Plasma_Spitzer_resistivity_at_point_490__________________________________ (res_plasma_fuel_spitzer_profile490)_ 2.01461599052720458e-08 +Plasma_Spitzer_resistivity_at_point_491__________________________________ (res_plasma_fuel_spitzer_profile491)_ 2.32602733135419034e-08 +Plasma_Spitzer_resistivity_at_point_492__________________________________ (res_plasma_fuel_spitzer_profile492)_ 2.72837277170376530e-08 +Plasma_Spitzer_resistivity_at_point_493__________________________________ (res_plasma_fuel_spitzer_profile493)_ 3.26411641656423422e-08 +Plasma_Spitzer_resistivity_at_point_494__________________________________ (res_plasma_fuel_spitzer_profile494)_ 4.00530889485886073e-08 +Plasma_Spitzer_resistivity_at_point_495__________________________________ (res_plasma_fuel_spitzer_profile495)_ 5.08351391607781357e-08 +Plasma_Spitzer_resistivity_at_point_496__________________________________ (res_plasma_fuel_spitzer_profile496)_ 6.76368805218081358e-08 +Plasma_Spitzer_resistivity_at_point_497__________________________________ (res_plasma_fuel_spitzer_profile497)_ 9.65838455382331434e-08 +Plasma_Spitzer_resistivity_at_point_498__________________________________ (res_plasma_fuel_spitzer_profile498)_ 1.55168798830220600e-07 +Plasma_Spitzer_resistivity_at_point_499__________________________________ (res_plasma_fuel_spitzer_profile499)_ 3.16067363227589720e-07 +Plasma_Spitzer_resistivity_at_point_500__________________________________ (res_plasma_fuel_spitzer_profile500)_ 1.37589481332575697e-06 # Heating & Current Drive System # Ignited_plasma_switch_(0=not_ignited,_1=ignited)_________________________ (i_plasma_ignited)_____________ 0 -Fusion_gain_factor_(Qₚₗₐₛₘₐ)_____________________________________________ (big_q_plasma)_________________ 2.03590492581690050e+01 OP +Fusion_gain_factor_(Qₚₗₐₛₘₐ)_____________________________________________ (big_q_plasma)_________________ 1.93518132480738601e+01 OP Primary_current_drive_efficiency_model___________________________________ (i_hcd_primary)________________ 10 -Absolute_current_drive_efficiency_of_primary_system_(η)_[A/W]____________ (eta_cd_hcd_primary)___________ 4.69972569948132884e-02 OP -Normalised_current_drive_efficiency_of_primary_system_(γ)_[10²⁰_A_/_Wm²]_ (eta_cd_norm_hcd_primary)______ 2.99999999999999989e-01 OP -Dimensionless_current_drive_efficiency_of_primary_system_(ζ)_____________ (eta_cd_dimensionless_hcd_primary)_ 7.87532767503585807e-01 OP +Absolute_current_drive_efficiency_of_primary_system_(η)_[A/W]____________ (eta_cd_hcd_primary)___________ 4.61677020512471711e-02 OP +Normalised_current_drive_efficiency_of_primary_system_(γ)_[10²⁰_A_/_Wm²]_ (eta_cd_norm_hcd_primary)______ 3.00000000000000044e-01 OP +Dimensionless_current_drive_efficiency_of_primary_system_(ζ)_____________ (eta_cd_dimensionless_hcd_primary)_ 7.75012292544908221e-01 OP EBW_coupling_efficiency__________________________________________________ (xi_ebw)_______________________ 8.00000000000000044e-01 ECRH_plasma_heating_efficiency___________________________________________ (eta_cd_norm_ecrh)_____________ 2.99999999999999989e-01 -Power_injected_into_plasma_by_primary_system_for_current_drive_(MW)______ (p_hcd_primary_injected_mw)____ 4.19923599007495607e+00 OP +Power_injected_into_plasma_by_primary_system_for_current_drive_(MW)______ (p_hcd_primary_injected_mw)____ 9.60334531748235065e+00 OP Extra_power_injected_into_plasma_by_primary_system__(MW)_________________ (p_hcd_primary_extra_heat_mw)__ 7.50000000000000000e+01 OP -Current_driven_in_plasma_by_primary_system_(A)___________________________ (c_hcd_primary_driven)_________ 1.97352573007421917e+05 OP -Fraction_of_plasma_current_driven_by_primary_system______________________ (f_c_plasma_hcd_primary)_______ 1.19964686070990739e-02 OP +Current_driven_in_plasma_by_primary_system_(A)___________________________ (c_hcd_primary_driven)_________ 4.43364385312764847e+05 OP +Fraction_of_plasma_current_driven_by_primary_system______________________ (f_c_plasma_hcd_primary)_______ 2.64750543462917709e-02 OP Wall_plug_to_injector_efficiency_of_primary_system_______________________ (eta_hcd_primary_injector_wall_plug)_ 5.00000000000000000e-01 IP -Wall_plug_electric_power_of_primary_system_______________________________ (p_hcd_primary_electric_mw)____ 1.58398471980149907e+02 OP +Wall_plug_electric_power_of_primary_system_______________________________ (p_hcd_primary_electric_mw)____ 1.69206690634964701e+02 OP Secondary_current_drive_efficiency_model_________________________________ (i_hcd_secondary)______________ 0 Absolute_current_drive_efficiency_of_secondary_system_(η)_[A/W]__________ (eta_cd_hcd_secondary)_________ 0.00000000000000000e+00 OP Normalised_current_drive_efficiency_of_secondary_system_(γ)_[10²⁰_A_/_Wm²]_ (eta_cd_norm_hcd_secondary)____ 0.00000000000000000e+00 OP @@ -34813,109 +34815,109 @@ Current_driven_in_plasma_by_secondary_system_(A)_________________________ (c_hcd Fraction_of_plasma_current_driven_by_secondary_system____________________ (f_c_plasma_hcd_secondary)_____ 0.00000000000000000e+00 OP Wall_plug_to_injector_efficiency_of_secondary_system_____________________ (eta_hcd_secondary_injector_wall_plug)_ 2.99999999999999989e-01 IP Wall_plug_electric_power_of_secondary_system_____________________________ (p_hcd_secondary_electric_mw)__ 0.00000000000000000e+00 OP -Total_injected_heating_power_that_drove_plasma_current_(MW)______________ (p_hcd_injected_current_total_mw)_ 4.19923599007495607e+00 -Total_injected_heating_power_across_all_systems_(MW)_____________________ (p_hcd_injected_total_mw)______ 7.91992359900749534e+01 OP -Total_injected_heating_power_given_to_the_electrons_(MW)_________________ (p_hcd_injected_electrons_mw)__ 7.91992359900749534e+01 OP +Total_injected_heating_power_that_drove_plasma_current_(MW)______________ (p_hcd_injected_current_total_mw)_ 9.60334531748235065e+00 +Total_injected_heating_power_across_all_systems_(MW)_____________________ (p_hcd_injected_total_mw)______ 8.46033453174823507e+01 OP +Total_injected_heating_power_given_to_the_electrons_(MW)_________________ (p_hcd_injected_electrons_mw)__ 8.46033453174823507e+01 OP Total_injected_heating_power_given_to_the_ions_(MW)______________________ (p_hcd_injected_ions_mw)_______ 0.00000000000000000e+00 OP Upper_limit_on_total_plasma_injected_power_(MW)__________________________ (p_hcd_injected_max)___________ 2.00000000000000000e+02 OP Injected_power_into_plasma_from_lower_hybrid_systems_(MW)________________ (p_hcd_lowhyb_injected_total_mw)_ 0.00000000000000000e+00 OP Injected_power_into_plasma_from_ion_cyclotron_systems_(MW)_______________ (p_hcd_icrh_injected_total_mw)_ 0.00000000000000000e+00 OP -Injected_power_into_plasma_from_electron_cyclotron_systems_(MW)__________ (p_hcd_ecrh_injected_total_mw)_ 7.91992359900749534e+01 OP +Injected_power_into_plasma_from_electron_cyclotron_systems_(MW)__________ (p_hcd_ecrh_injected_total_mw)_ 8.46033453174823507e+01 OP Injected_power_into_plasma_from_neutral_beam_systems_(MW)________________ (p_hcd_beam_injected_total_mw)_ 0.00000000000000000e+00 OP Injected_power_into_plasma_from_lower_hybrid_systems_(MW)________________ (p_hcd_ebw_injected_total_mw)__ 0.00000000000000000e+00 OP -Bootstrap_fraction_______________________________________________________ (f_c_plasma_bootstrap)_________ 4.22833658317523231e-01 OP +Bootstrap_fraction_______________________________________________________ (f_c_plasma_bootstrap)_________ 4.21875565216539794e-01 OP Diamagnetic_fraction_____________________________________________________ (f_c_plasma_diamagnetic)_______ 0.00000000000000000e+00 OP Pfirsch-Schlueter_fraction_______________________________________________ (f_c_plasma_pfirsch_schluter)__ 0.00000000000000000e+00 OP -Auxiliary_current_drive_fraction_________________________________________ (f_c_plasma_auxiliary)_________ 1.19964686070990756e-02 OP -Inductive_fraction_______________________________________________________ (f_c_plasma_inductive)_________ 5.65169873075377693e-01 OP -Fraction_of_the_plasma_current_produced_by_non-inductive_means___________ (f_c_plasma_non_inductive)_____ 4.34830126924622307e-01 +Auxiliary_current_drive_fraction_________________________________________ (f_c_plasma_auxiliary)_________ 2.64750543462917709e-02 OP +Inductive_fraction_______________________________________________________ (f_c_plasma_inductive)_________ 5.51649380437168491e-01 OP +Fraction_of_the_plasma_current_produced_by_non-inductive_means___________ (f_c_plasma_non_inductive)_____ 4.48350619562831565e-01 Flux_expansion___________________________________________________________ (f_div_flux_expansion)_________ 2.00000000000000000e+00 Field_line_angle_wrt_to_target_divertor_plate_(degrees)__________________ (deg_div_field_plate)__________ 1.00000000000000000e+00 -Divertor_heat_load_(MW/m²)_______________________________________________ (pflux_div_heat_load_mw)_______ 6.82950721530761484e+00 +Divertor_heat_load_(MW/m²)_______________________________________________ (pflux_div_heat_load_mw)_______ 6.81392845156379501e+00 # Radial Build # TF_coil_radial_placement_switch__________________________________________ (i_tf_inside_cs)_______________ 0 -Inboard_build_thickness_(m)______________________________________________ (dr_inboard_build)_____________ 5.33333333344836369e+00 OP -Machine_dr_bore_radial_thickness_(m)_____________________________________ (dr_bore)______________________ 2.08652517234514123e+00 +Inboard_build_thickness_(m)______________________________________________ (dr_inboard_build)_____________ 5.33333333342925719e+00 OP +Machine_dr_bore_radial_thickness_(m)_____________________________________ (dr_bore)______________________ 2.03182507743337259e+00 Radial_build_component_1_________________________________________________ (radial_label(1))______________ "dr_bore" -Radial_build_cumulative_radius_1_________________________________________ (radial_cum(1))________________ 2.08652517234514123e+00 -Central_solenoid_radial_thickness_(m)____________________________________ (dr_cs)________________________ 5.38814675476462890e-01 +Radial_build_cumulative_radius_1_________________________________________ (radial_cum(1))________________ 2.03182507743337259e+00 +Central_solenoid_radial_thickness_(m)____________________________________ (dr_cs)________________________ 5.88190932603959715e-01 Radial_build_component_2_________________________________________________ (radial_label(2))______________ "dr_cs" -Radial_build_cumulative_radius_2_________________________________________ (radial_cum(2))________________ 2.62533984782160434e+00 -CS_precompression_radial_thickness_(m)___________________________________ (dr_cs_precomp)________________ 6.56784401879907942e-02 +Radial_build_cumulative_radius_2_________________________________________ (radial_cum(2))________________ 2.62001601003733242e+00 +CS_precompression_radial_thickness_(m)___________________________________ (dr_cs_precomp)________________ 6.65259064275497969e-02 Radial_build_component_3_________________________________________________ (radial_label(3))______________ "dr_cs_precomp" -Radial_build_cumulative_radius_3_________________________________________ (radial_cum(3))________________ 2.69101828800959497e+00 +Radial_build_cumulative_radius_3_________________________________________ (radial_cum(3))________________ 2.68654191646488227e+00 CS_precompresion_to_TF_coil_radial_gap_radial_thickness_(m)______________ (dr_cs_tf_gap)_________________ 8.00000000000000017e-02 Radial_build_component_4_________________________________________________ (radial_label(4))______________ "dr_cs_tf_gap" -Radial_build_cumulative_radius_4_________________________________________ (radial_cum(4))________________ 2.77101828800959504e+00 -TF_coil_inboard_leg_radial_thickness_(m)_________________________________ (dr_tf_inboard)________________ 8.54315045441632281e-01 +Radial_build_cumulative_radius_4_________________________________________ (radial_cum(4))________________ 2.76654191646488234e+00 +TF_coil_inboard_leg_radial_thickness_(m)_________________________________ (dr_tf_inboard)________________ 8.58791416977167321e-01 Radial_build_component_5_________________________________________________ (radial_label(5))______________ "dr_tf_inboard" -Radial_build_cumulative_radius_5_________________________________________ (radial_cum(5))________________ 3.62533333345122744e+00 +Radial_build_cumulative_radius_5_________________________________________ (radial_cum(5))________________ 3.62533333344204944e+00 TF_coil_inboard_leg_insulation_gap_radial_thickness_(m)__________________ (dr_tf_shld_gap)_______________ 5.00000000000000028e-02 Radial_build_component_6_________________________________________________ (radial_label(6))______________ "dr_tf_shld_gap" -Radial_build_cumulative_radius_6_________________________________________ (radial_cum(6))________________ 3.67533333345122726e+00 +Radial_build_cumulative_radius_6_________________________________________ (radial_cum(6))________________ 3.67533333344204927e+00 Thermal_shield,_inboard_radial_thickness_(m)_____________________________ (dr_shld_thermal_inboard)______ 5.00000000000000028e-02 Radial_build_component_7_________________________________________________ (radial_label(7))______________ "dr_shld_thermal_inboard" -Radial_build_cumulative_radius_7_________________________________________ (radial_cum(7))________________ 3.72533333345122708e+00 +Radial_build_cumulative_radius_7_________________________________________ (radial_cum(7))________________ 3.72533333344204909e+00 Thermal_shield_to_vessel_radial_gap_radial_thickness_(m)_________________ (dr_shld_vv_gap_inboard)_______ 2.00000000000000004e-02 Radial_build_component_8_________________________________________________ (radial_label(8))______________ "dr_shld_vv_gap_inboard" -Radial_build_cumulative_radius_8_________________________________________ (radial_cum(8))________________ 3.74533333345122710e+00 +Radial_build_cumulative_radius_8_________________________________________ (radial_cum(8))________________ 3.74533333344204911e+00 Inboard_vacuum_vessel_radial_thickness_(m)_______________________________ (dr_vv_inboard)________________ 2.99999999999999989e-01 Radial_build_component_9_________________________________________________ (radial_label(9))______________ "dr_vv_inboard" -Radial_build_cumulative_radius_9_________________________________________ (radial_cum(9))________________ 4.04533333345122692e+00 +Radial_build_cumulative_radius_9_________________________________________ (radial_cum(9))________________ 4.04533333344204937e+00 Inner_radiation_shield_radial_thickness_(m)______________________________ (dr_shld_inboard)______________ 2.99999999999999989e-01 Radial_build_component_10________________________________________________ (radial_label(10))_____________ "dr_shld_inboard" -Radial_build_cumulative_radius_10________________________________________ (radial_cum(10))_______________ 4.34533333345122674e+00 +Radial_build_cumulative_radius_10________________________________________ (radial_cum(10))_______________ 4.34533333344204920e+00 Gap_radial_thickness_(m)_________________________________________________ (dr_shld_blkt_gap)_____________ 2.00000000000000004e-02 Radial_build_component_11________________________________________________ (radial_label(11))_____________ "dr_shld_blkt_gap" -Radial_build_cumulative_radius_11________________________________________ (radial_cum(11))_______________ 4.36533333345122632e+00 +Radial_build_cumulative_radius_11________________________________________ (radial_cum(11))_______________ 4.36533333344204877e+00 Inboard_blanket_radial_thickness_(m)_____________________________________ (dr_blkt_inboard)______________ 6.99999999999999956e-01 Radial_build_component_12________________________________________________ (radial_label(12))_____________ "dr_blkt_inboard" -Radial_build_cumulative_radius_12________________________________________ (radial_cum(12))_______________ 5.06533333345122649e+00 +Radial_build_cumulative_radius_12________________________________________ (radial_cum(12))_______________ 5.06533333344204895e+00 Inboard_first_wall_radial_thickness_(m)__________________________________ (dr_fw_inboard)________________ 1.80000000000000021e-02 Radial_build_component_13________________________________________________ (radial_label(13))_____________ "dr_fw_inboard" -Radial_build_cumulative_radius_13________________________________________ (radial_cum(13))_______________ 5.08333333345122629e+00 +Radial_build_cumulative_radius_13________________________________________ (radial_cum(13))_______________ 5.08333333344204874e+00 Inboard_scrape-off_radial_thickness_(m)__________________________________ (dr_fw_plasma_gap_inboard)_____ 2.50000000000000000e-01 Radial_build_component_14________________________________________________ (radial_label(14))_____________ "dr_fw_plasma_gap_inboard" -Radial_build_cumulative_radius_14________________________________________ (radial_cum(14))_______________ 5.33333333345122629e+00 -Plasma_geometric_centre_radial_thickness_(m)_____________________________ (rminor)_______________________ 2.66666666672418229e+00 +Radial_build_cumulative_radius_14________________________________________ (radial_cum(14))_______________ 5.33333333344204874e+00 +Plasma_geometric_centre_radial_thickness_(m)_____________________________ (rminor)_______________________ 2.66666666671462815e+00 Radial_build_component_15________________________________________________ (radial_label(15))_____________ "rminor" -Radial_build_cumulative_radius_15________________________________________ (radial_cum(15))_______________ 8.00000000017540813e+00 -Plasma_outboard_edge_radial_thickness_(m)________________________________ (rminor)_______________________ 2.66666666672418229e+00 +Radial_build_cumulative_radius_15________________________________________ (radial_cum(15))_______________ 8.00000000015667645e+00 +Plasma_outboard_edge_radial_thickness_(m)________________________________ (rminor)_______________________ 2.66666666671462815e+00 Radial_build_component_16________________________________________________ (radial_label(16))_____________ "rminor" -Radial_build_cumulative_radius_16________________________________________ (radial_cum(16))_______________ 1.06666666668995909e+01 +Radial_build_cumulative_radius_16________________________________________ (radial_cum(16))_______________ 1.06666666668713042e+01 Outboard_scrape-off_radial_thickness_(m)_________________________________ (dr_fw_plasma_gap_outboard)____ 2.50000000000000000e-01 Radial_build_component_17________________________________________________ (radial_label(17))_____________ "dr_fw_plasma_gap_outboard" -Radial_build_cumulative_radius_17________________________________________ (radial_cum(17))_______________ 1.09166666668995909e+01 +Radial_build_cumulative_radius_17________________________________________ (radial_cum(17))_______________ 1.09166666668713042e+01 Outboard_first_wall_radial_thickness_(m)_________________________________ (dr_fw_outboard)_______________ 1.80000000000000021e-02 Radial_build_component_18________________________________________________ (radial_label(18))_____________ "dr_fw_outboard" -Radial_build_cumulative_radius_18________________________________________ (radial_cum(18))_______________ 1.09346666668995915e+01 +Radial_build_cumulative_radius_18________________________________________ (radial_cum(18))_______________ 1.09346666668713048e+01 Outboard_blanket_radial_thickness_(m)____________________________________ (dr_blkt_outboard)_____________ 1.00000000000000000e+00 Radial_build_component_19________________________________________________ (radial_label(19))_____________ "dr_blkt_outboard" -Radial_build_cumulative_radius_19________________________________________ (radial_cum(19))_______________ 1.19346666668995915e+01 +Radial_build_cumulative_radius_19________________________________________ (radial_cum(19))_______________ 1.19346666668713048e+01 Gap_radial_thickness_(m)_________________________________________________ (dr_shld_blkt_gap)_____________ 2.00000000000000004e-02 Radial_build_component_20________________________________________________ (radial_label(20))_____________ "dr_shld_blkt_gap" -Radial_build_cumulative_radius_20________________________________________ (radial_cum(20))_______________ 1.19546666668995911e+01 +Radial_build_cumulative_radius_20________________________________________ (radial_cum(20))_______________ 1.19546666668713044e+01 Outer_radiation_shield_radial_thickness_(m)______________________________ (dr_shld_outboard)_____________ 8.00000000000000044e-01 Radial_build_component_21________________________________________________ (radial_label(21))_____________ "dr_shld_outboard" -Radial_build_cumulative_radius_21________________________________________ (radial_cum(21))_______________ 1.27546666668995918e+01 +Radial_build_cumulative_radius_21________________________________________ (radial_cum(21))_______________ 1.27546666668713051e+01 Outboard_vacuum_vessel_radial_thickness_(m)______________________________ (dr_vv_outboard)_______________ 2.99999999999999989e-01 Radial_build_component_22________________________________________________ (radial_label(22))_____________ "dr_vv_outboard" -Radial_build_cumulative_radius_22________________________________________ (radial_cum(22))_______________ 1.30546666668995925e+01 -Vessel_to_TF_gap_radial_thickness_(m)____________________________________ (dr_shld_vv_gap_outboard)______ 1.40205853709435413e+00 +Radial_build_cumulative_radius_22________________________________________ (radial_cum(22))_______________ 1.30546666668713058e+01 +Vessel_to_TF_gap_radial_thickness_(m)____________________________________ (dr_shld_vv_gap_outboard)______ 1.39987179838529574e+00 Radial_build_component_23________________________________________________ (radial_label(23))_____________ "dr_shld_vv_gap_outboard" -Radial_build_cumulative_radius_23________________________________________ (radial_cum(23))_______________ 1.44567252039939476e+01 +Radial_build_cumulative_radius_23________________________________________ (radial_cum(23))_______________ 1.44545384652566007e+01 Ouboard_thermal_shield_radial_thickness_(m)______________________________ (dr_shld_thermal_outboard)_____ 5.00000000000000028e-02 Radial_build_component_24________________________________________________ (radial_label(24))_____________ "dr_shld_thermal_outboard" -Radial_build_cumulative_radius_24________________________________________ (radial_cum(24))_______________ 1.45067252039939483e+01 +Radial_build_cumulative_radius_24________________________________________ (radial_cum(24))_______________ 1.45045384652566014e+01 Gap_radial_thickness_(m)_________________________________________________ (dr_tf_shld_gap)_______________ 5.00000000000000028e-02 Radial_build_component_25________________________________________________ (radial_label(25))_____________ "dr_tf_shld_gap" -Radial_build_cumulative_radius_25________________________________________ (radial_cum(25))_______________ 1.45567252039939490e+01 -TF_coil_outboard_leg_radial_thickness_(m)________________________________ (dr_tf_outboard)_______________ 8.54315045441632281e-01 +Radial_build_cumulative_radius_25________________________________________ (radial_cum(25))_______________ 1.45545384652566021e+01 +TF_coil_outboard_leg_radial_thickness_(m)________________________________ (dr_tf_outboard)_______________ 8.58791416977167321e-01 Radial_build_component_26________________________________________________ (radial_label(26))_____________ "dr_tf_outboard" -Radial_build_cumulative_radius_26________________________________________ (radial_cum(26))_______________ 1.54110402494355814e+01 +Radial_build_cumulative_radius_26________________________________________ (radial_cum(26))_______________ 1.54133298822337697e+01 # Vertical Build # Divertor_null_switch_____________________________________________________ (i_single_null)________________ 1 -Cryostat_roof_structure*_________________________________________________ (dz_tf_cryostat)_______________ 5.60764377401562619e+00 +Cryostat_roof_structure*_________________________________________________ (dz_tf_cryostat)_______________ 5.61052943983274233e+00 Thermal_shield,_vertical_(m)_____________________________________________ (dz_shld_thermal)______________ 5.00000000000000028e-02 Vessel_-_TF_coil_vertical_gap_(m)________________________________________ (dz_shld_vv_gap)_______________ 1.63000000000000006e-01 Topside_vacuum_vessel_radial_thickness_(m)_______________________________ (dz_vv_upper)__________________ 2.99999999999999989e-01 @@ -34923,25 +34925,25 @@ Top_radiation_shield_thickness_(m)_______________________________________ (dz_sh Top_blanket_vertical_thickness_(m)_______________________________________ (dz_blkt_upper)________________ 8.49999999999999978e-01 Top_first_wall_vertical_thickness_(m)____________________________________ (dz_fw_upper)__________________ 1.80000000000000021e-02 Top_scrape-off_vertical_thickness_(m)____________________________________ (dz_fw_plasma_gap)_____________ 5.99999999999999978e-01 -Plasma_upper_X-point_height_(m)__________________________________________ (z_plasma_xpoint_upper)________ 4.93333333343973734e+00 -Plasma_lower_X-point_height_(m)__________________________________________ (z_plasma_xpoint_lower)________ 4.93333333343973734e+00 +Plasma_upper_X-point_height_(m)__________________________________________ (z_plasma_xpoint_upper)________ 4.93333333342206259e+00 +Plasma_lower_X-point_height_(m)__________________________________________ (z_plasma_xpoint_lower)________ 4.93333333342206259e+00 Bottom_scrape-off_vertical_thickness_(m)_________________________________ (dz_xpoint_divertor)___________ 2.00188383079415821e+00 Divertor_structure_vertical_thickness_(m)________________________________ (dz_divertor)__________________ 6.19999999999999996e-01 Bottom_radiation_shield_thickness_(m)____________________________________ (dz_shld_lower)________________ 6.99999999999999956e-01 Underside_vacuum_vessel_radial_thickness_(m)_____________________________ (dz_vv_lower)__________________ 2.99999999999999989e-01 Ratio_of_Central_Solenoid_height_to_TF_coil_internal_height______________ (f_z_cs_tf_internal)___________ 9.00000000000000022e-01 # Divertor build and plasma position # -Plasma_top_position,_radial_(m)__________________________________________ (ptop_radial)__________________ 6.66666666681045506e+00 OP -Plasma_top_position,_vertical_(m)________________________________________ (ptop_vertical)________________ 4.93333333343973734e+00 OP -Plasma_geometric_centre,_radial_(m)______________________________________ (rmajor.)______________________ 8.00000000017254642e+00 OP +Plasma_top_position,_radial_(m)__________________________________________ (ptop_radial)__________________ 6.66666666678657105e+00 OP +Plasma_top_position,_vertical_(m)________________________________________ (ptop_vertical)________________ 4.93333333342206259e+00 OP +Plasma_geometric_centre,_radial_(m)______________________________________ (rmajor.)______________________ 8.00000000014388490e+00 OP Plasma_geometric_centre,_vertical_(m)____________________________________ (0.0)__________________________ 0.00000000000000000e+00 OP Plasma_lower_triangularity_______________________________________________ (tril)_________________________ 5.00000000000000000e-01 OP Plasma_elongation________________________________________________________ (kappa.)_______________________ 1.85000000000000009e+00 OP TF_coil_vertical_offset_(m)______________________________________________ (dz_tf_plasma_centre_offset)___ -6.16941915397079654e-01 OP -Plasma_outer_arc_radius_of_curvature_(m)_________________________________ (rco)__________________________ 5.04222222233097472e+00 OP -Plasma_inner_arc_radius_of_curvature_(m)_________________________________ (rci)__________________________ 9.79333333354455959e+00 OP -Plasma_lower_X-pt,_radial_(m)____________________________________________ (rxpt)_________________________ 6.66666666681045506e+00 OP -Plasma_lower_X-pt,_vertical_(m)__________________________________________ (zxpt)_________________________ -4.93333333343973734e+00 OP +Plasma_outer_arc_radius_of_curvature_(m)_________________________________ (rco)__________________________ 5.04222222231291006e+00 OP +Plasma_inner_arc_radius_of_curvature_(m)_________________________________ (rci)__________________________ 9.79333333350947299e+00 OP +Plasma_lower_X-pt,_radial_(m)____________________________________________ (rxpt)_________________________ 6.66666666678657105e+00 OP +Plasma_lower_X-pt,_vertical_(m)__________________________________________ (zxpt)_________________________ -4.93333333342206259e+00 OP Poloidal_plane_angle_between_vertical_and_inner_leg_(rad)________________ (thetai)_______________________ 2.08199876219198804e-01 OP Poloidal_plane_angle_between_vertical_and_outer_leg_(rad)________________ (thetao)_______________________ 1.04286887954348750e+00 OP Poloidal_plane_angle_between_inner_leg_and_plate_(rad)___________________ (betai)________________________ 1.00000000000000000e+00 @@ -34950,253 +34952,267 @@ Inner_divertor_leg_poloidal_length_(m)___________________________________ (plsep Outer_divertor_leg_poloidal_length_(m)___________________________________ (plsepo)_______________________ 1.50000000000000000e+00 Inner_divertor_plate_length_(m)__________________________________________ (plleni)_______________________ 1.00000000000000000e+00 Outer_divertor_plate_length_(m)__________________________________________ (plleno)_______________________ 1.00000000000000000e+00 -Inner_strike_point,_radial_(m)___________________________________________ (rspi)_________________________ 5.68826208329348759e+00 OP -Inner_strike_point,_vertical_(m)_________________________________________ (zspi)_________________________ -5.14003231977733144e+00 OP -Inner_plate_top,_radial_(m)______________________________________________ (rplti)________________________ 5.86561360977043034e+00 OP -Inner_plate_top,_vertical_(m)____________________________________________ (zplti)________________________ -4.67254281609163513e+00 OP -Inner_plate_bottom,_radial_(m)___________________________________________ (rplbi)________________________ 5.51091055681654485e+00 OP -Inner_plate_bottom,_vertical_(m)_________________________________________ (zplbi)________________________ -5.60752182346302774e+00 OP -Outer_strike_point,_radial_(m)___________________________________________ (rspo)_________________________ 7.42228273216103318e+00 OP -Outer_strike_point,_vertical_(m)_________________________________________ (zspo)_________________________ -6.22911277523687801e+00 OP -Outer_plate_top,_radial_(m)______________________________________________ (rplto)________________________ 7.64964929900201263e+00 OP -Outer_plate_top,_vertical_(m)____________________________________________ (zplto)________________________ -5.78379890358796267e+00 OP -Outer_plate_bottom,_radial_(m)___________________________________________ (rplbo)________________________ 7.19491616532005374e+00 OP -Outer_plate_bottom,_vertical_(m)_________________________________________ (zplbo)________________________ -6.67442664688579335e+00 OP +Inner_strike_point,_radial_(m)___________________________________________ (rspi)_________________________ 5.68826208326960359e+00 OP +Inner_strike_point,_vertical_(m)_________________________________________ (zspi)_________________________ -5.14003231975965669e+00 OP +Inner_plate_top,_radial_(m)______________________________________________ (rplti)________________________ 5.86561360974654633e+00 OP +Inner_plate_top,_vertical_(m)____________________________________________ (zplti)________________________ -4.67254281607396038e+00 OP +Inner_plate_bottom,_radial_(m)___________________________________________ (rplbi)________________________ 5.51091055679266084e+00 OP +Inner_plate_bottom,_vertical_(m)_________________________________________ (zplbi)________________________ -5.60752182344535299e+00 OP +Outer_strike_point,_radial_(m)___________________________________________ (rspo)_________________________ 7.42228273213715006e+00 OP +Outer_strike_point,_vertical_(m)_________________________________________ (zspo)_________________________ -6.22911277521920326e+00 OP +Outer_plate_top,_radial_(m)______________________________________________ (rplto)________________________ 7.64964929897812951e+00 OP +Outer_plate_top,_vertical_(m)____________________________________________ (zplto)________________________ -5.78379890357028792e+00 OP +Outer_plate_bottom,_radial_(m)___________________________________________ (rplbo)________________________ 7.19491616529617062e+00 OP +Outer_plate_bottom,_vertical_(m)_________________________________________ (zplbo)________________________ -6.67442664686811860e+00 OP Calculated_maximum_divertor_height_(m)___________________________________ (divht)________________________ 2.00188383079415821e+00 OP # Cryostat build # Cryostat_thickness_(m)___________________________________________________ (dr_cryostat)__________________ 1.49999999999999994e-01 OP -Cryostat_internal_radius_(m)_____________________________________________ (r_cryostat_inboard)___________ 1.77514870496527379e+01 OP -Cryostat_internal_half_height_(m)________________________________________ (z_cryostat_half_inside)_______ 1.52801759836911568e+01 OP -Vertical_clearance_from_highest_PF_coil_to_cryostat_(m)__________________ (dz_pf_cryostat)_______________ 5.32794280787045516e+00 OP -Cryostat_structure_volume_(m³)___________________________________________ (vol_cryostat)_________________ 8.15476045254206838e+02 OP -Cryostat_internal_volume_(m³)____________________________________________ (vol_cryostat_internal)________ 3.02536448483079184e+04 OP -# General TF Coil Parameters # -TF_conductor_technology__________________________________________________ (i_tf_sup)_____________________ 1 -TF_coil_shape_model_used_________________________________________________ (i_tf_shape)___________________ 1 -TF_coil_arc_point_0_R_(m)________________________________________________ (r_tf_arc(1))__________________ 3.62533333345122744e+00 -TF_coil_arc_point_0_Z_(m)________________________________________________ (z_tf_arc(1))__________________ 4.55060000006384247e+00 -TF_coil_arc_point_1_R_(m)________________________________________________ (r_tf_arc(2))__________________ 7.46666666682770952e+00 -TF_coil_arc_point_1_Z_(m)________________________________________________ (z_tf_arc(2))__________________ 7.58433333343973715e+00 -TF_coil_arc_point_2_R_(m)________________________________________________ (r_tf_arc(3))__________________ 1.45567252039910855e+01 -TF_coil_arc_point_2_Z_(m)________________________________________________ (z_tf_arc(3))__________________ 0.00000000000000000e+00 -TF_coil_arc_point_3_R_(m)________________________________________________ (r_tf_arc(4))__________________ 7.46666666682770952e+00 -TF_coil_arc_point_3_Z_(m)________________________________________________ (z_tf_arc(4))__________________ -8.81821716423389823e+00 -TF_coil_arc_point_4_R_(m)________________________________________________ (r_tf_arc(5))__________________ 3.62533333345122744e+00 -TF_coil_arc_point_4_Z_(m)________________________________________________ (z_tf_arc(5))__________________ -5.29093029854033858e+00 -TF_plasma-facing_case_geometry_type_switch_______________________________ (i_tf_case_geom)_______________ 0 +Cryostat_internal_radius_(m)_____________________________________________ (r_cryostat_inboard)___________ 1.77579156180240787e+01 OP +Cryostat_internal_half_height_(m)________________________________________ (z_cryostat_half_inside)_______ 1.52875380210261334e+01 OP +Vertical_clearance_from_highest_PF_coil_to_cryostat_(m)__________________ (dz_pf_cryostat)_______________ 5.32987228254055978e+00 OP +Cryostat_structure_volume_(m^3)__________________________________________ (vol_cryostat)_________________ 8.16125634585092484e+02 OP +Cryostat_internal_volume_(m^3)___________________________________________ (vol_cryostat_internal)________ 3.02901479402734185e+04 OP +Conductor_technology_____________________________________________________ (i_tf_sup)_____________________ 1 +Superconducting_TF_coil_turn_type________________________________________ (i_tf_turn_type)_______________ 1 +Superconductor_material__________________________________________________ (i_tf_sc_mat)__________________ 1 Presence_of_TF_demountable_joints________________________________________ (itart)________________________ 0 -TF_inboard_leg_support_strategy_model_switch_____________________________ (i_tf_bucking)_________________ 1 +TF_inboard_leg_support_strategy__________________________________________ (i_tf_bucking)_________________ 1 Number_of_TF_coils_______________________________________________________ (n_tf_coils)___________________ 16 -Inboard_TF_coil_toroidal_half_angle_[rad]________________________________ (rad_tf_coil_inboard_toroidal_half)_ 1.96349540849362070e-01 OP -Inboard_leg_inner_radius_(m)_____________________________________________ (r_tf_inboard_in)______________ 2.77101828800959504e+00 OP -Inboard_leg_centre_radius_(m)____________________________________________ (r_tf_inboard_mid)_____________ 3.19817581073041124e+00 OP -Inboard_leg_outer_radius_(m)_____________________________________________ (r_tf_inboard_out)_____________ 3.62533333345122744e+00 OP -Radial_position_of_inner_edge_and_centre_of_winding_pack_(m)_____________ (r_tf_wp_inboard_inner)________ 2.97477007880261279e+00 OP -Radial_position_of_centre_of_winding_pack_(m)____________________________ (r_tf_wp_inboard_centre)_______ 3.26261210426744075e+00 OP -Radial_position_of_outer_edge_and_of_winding_pack_(m)____________________ (r_tf_wp_inboard_outer)________ 3.55045412973226915e+00 OP -Outboard_leg_inner_radius_(m)____________________________________________ (r_tf_outboard_in)_____________ 1.45567252039910855e+01 OP -Outboard_leg_centre_radius_(m)___________________________________________ (r_tf_outboard_mid)____________ 1.49838827267119008e+01 OP -Total_inboard_leg_radial_thickness_(m)___________________________________ (dr_tf_inboard)________________ 8.54315045441632281e-01 -Total_outboard_leg_radial_thickness_(m)__________________________________ (dr_tf_outboard)_______________ 8.54315045441632281e-01 -Inboard_leg_nose_case_radial_thickness_(m)_______________________________ (dr_tf_nose_case)______________ 2.03751790793017529e-01 -Inboard_leg_plasma_side_case_thickness_(m)_______________________________ (dr_tf_plasma_case)____________ 7.48792037189585230e-02 -Full_external_coil_radial_width_at_mid-plane_(m)_________________________ (dr_tf_full_midplane)__________ 1.26400219614231215e+01 OP -Full_internal_coil_radial_width_at_mid-plane_(m)_________________________ (dr_tf_internal_midplane)______ 1.09313918705398585e+01 OP -Inboard_leg_case_sidewall_thickness_at_its_narrowest_point_(m)___________ (dx_tf_side_case_min)__________ 5.00000000000000028e-02 -Inboard_leg_toroidal_thickness_at_outer_edge_(m)_________________________ (dx_tf_inboard_out_toroidal)___ 1.41453489487760731e+00 OP -Maximum_inboard_edge_height_(m)__________________________________________ (z_tf_inside_half)_____________ 8.81821716423389823e+00 OP -Height_to_top_of_TF_coil_(m)_____________________________________________ (z_tf_top)_____________________ 8.43864837888136954e+00 OP +Inboard_TF_half_angle_[rad]______________________________________________ (rad_tf_coil_inboard_toroidal_half)_ 1.96349540849362070e-01 OP +Inboard_leg_centre_radius_(m)____________________________________________ (r_tf_inboard_mid)_____________ 3.19593762495346612e+00 OP +Inboard_leg_inner_radius_(m)_____________________________________________ (r_tf_inboard_in)______________ 2.76654191646488234e+00 OP +Inboard_leg_outer_radius_(m)_____________________________________________ (r_tf_inboard_out)_____________ 3.62533333344204944e+00 OP +WP_shape_selection_switch________________________________________________ (i_tf_wp_geom)_________________ 1 +Radial_position_of_inner_edge_and_centre_of_winding_pack_(m)_____________ (r_tf_wp_inboard_inner)________ 2.97315225628187241e+00 OP +Radial_position_of_outer_edge_and_of_winding_pack_(m)____________________ (r_tf_wp_inboard_outer)________ 3.54943431449535751e+00 OP +Radial_position_of_centre_of_winding_pack_(m)____________________________ (r_tf_wp_inboard_centre)_______ 3.26129328538861518e+00 OP +Minimum_toroidal_thickness_of_winding_pack_(m)___________________________ (dx_tf_wp_toroidal_min)________ 1.08279350775439775e+00 OP +Outboard_leg_inner_radius_(m)____________________________________________ (r_tf_outboard_in)_____________ 1.45545384652438106e+01 OP +Outboard_leg_centre_radius_(m)___________________________________________ (r_tf_outboard_mid)____________ 1.49839341737323934e+01 OP +Outboard_leg_nose_case_type______________________________________________ (i_tf_case_geom)_______________ 0 +Total_inboard_leg_radial_thickness_(m)___________________________________ (dr_tf_inboard)________________ 8.58791416977167321e-01 +Total_outboard_leg_radial_thickness_(m)__________________________________ (dr_tf_outboard)_______________ 8.58791416977167321e-01 +Full_external_coil_width_at_mid-plane_(m)________________________________ (dr_tf_full_midplane)__________ 1.26467879657560935e+01 OP +Full_internal_coil_width_at_mid-plane_(m)________________________________ (dr_tf_internal_midplane)______ 1.09292051318017620e+01 OP +Outboard_leg_toroidal_thickness_(m)______________________________________ (dx_tf_inboard_out_toroidal)___ 1.41453489487402617e+00 OP +Maximum_inboard_edge_height_(m)__________________________________________ (z_tf_inside_half)_____________ 8.81821716421622348e+00 OP +Height_to_top_of_TF_coil_(m)_____________________________________________ (z_tf_top)_____________________ 8.44312475039922994e+00 OP Height_difference_in_upper_and_lower_TF_from_midplane_(m)________________ (dz_tf_upper_lower_midplane)___ -1.23388383079416109e+00 OP -Mean_coil_circumference_(including_inboard_leg_length)_(m)_______________ (len_tf_coil)__________________ 4.77890069647637716e+01 OP -Total_inboard_area_of_all_TF_coils_(m²)__________________________________ (a_tf_inboard_total)___________ 1.71672312527352133e+01 -Outboard_leg_area_of_single_TF_coil_(m²)_________________________________ (a_tf_leg_outboard)____________ 1.20845844299613758e+00 -Radius_of_maximum_field_position_on_inboard_TF_coil_(m)__________________ (r_b_tf_inboard_peak)__________ 3.53245412973226891e+00 OP -Nominal_peak_field_on_inboard_TF_coil_assuming_toroidal_symmetry_(T)_____ (b_tf_inboard_peak_symmetric)__ 1.12577844250709305e+01 OP -Actual_peak_field_at_discrete_conductor_(T)______________________________ (b_tf_inboard_peak_with_ripple)_ 1.16811400667691139e+01 OP -Ratio_of_peak_field_with_ripple_to_nominal_axisymmetric_peak_field_______ (f_b_tf_inboard_peak_ripple_symmetric)_ 1.03760559144793851e+00 OP -Current_in_a_single_TF_coil_(A)__________________________________________ (c_tf_coil)____________________ 1.24273772081645094e+07 OP -Total_current_in_all_TF_coils_(A)________________________________________ (c_tf_total)___________________ 1.98838035330632150e+08 -Inboard_leg_mid-plane_full_coil_area_current_density_(A/m²)______________ (j_tf_coil_full_area)__________ 1.15824172461678572e+07 -Self_inductance_of_a_TF_coil_(H)_________________________________________ (ind_tf_coil)__________________ 5.37035039650441270e-06 OP -Total_stored_magnetic_energy_in_a_TF_coil_(J)____________________________ (e_tf_coil_magnetic_stored)____ 6.63516261667148972e+09 OP -Total_stored_magnetic_energy_in_all_TF_coils_(J)_________________________ (e_tf_magnetic_stored_total)___ 1.06162601866743835e+11 OP -Total_stored_magnetic_energy_in_all_TF_coils_(GJ)________________________ (e_tf_magnetic_stored_total_gj)_ 1.06162601866743842e+02 OP -Max_allowed_toroidal_field_ripple_at_plasma_outboard_midplane_(%)________ (ripple_b_tf_plasma_edge_max)__ 5.99999999999999978e-01 -Toroidal_field_ripple_at_plasma_outboard_midplane_(%)____________________ (ripple_b_tf_plasma_edge)______ 6.00000000000000533e-01 OP -Inboard_vertical_tension_per_coil_(N)____________________________________ (vforce)_______________________ 1.83794251186738998e+08 OP -Outboard_vertical_tension_per_coil_(N)___________________________________ (vforce_outboard)______________ 1.83794251186738998e+08 OP -Total_inboard_vertical_tension_(N)_______________________________________ (vforce_inboard_total)_________ 2.94070801898782396e+09 OP -Inboard_vertical_tension_fraction_(-)____________________________________ (f_vforce_inboard)_____________ 5.00000000000000000e-01 OP -Centring_force_per_coil_(N/m)____________________________________________ (cforce)_______________________ 6.99523667892779410e+07 OP -# General Superconducting TF Coil Parameters # -Superconducting_TF_coil_turn_type________________________________________ (i_tf_turn_type)_______________ 1 -Total_steel_cross-section_(m²)___________________________________________ (a_tf_coil_inboard_steel*n_tf_coils)_ 1.09017284310748259e+01 -Total_steel_TF_fraction__________________________________________________ (f_a_tf_coil_inboard_steel)____ 6.35031256384915310e-01 -Total_Insulation_cross-section_(total)_(m²)______________________________ (a_tf_coil_inboard_insulation*n_tf_coils)_ 9.03102576111896926e-01 -Total_Insulation_fraction________________________________________________ (f_a_tf_coil_inboard_insulation)_ 5.26061869160181425e-02 -Casing_cross_section_area_(per_leg)_(m²)_________________________________ (a_tf_coil_inboard_case)_______ 4.16273499196232355e-01 -Inboard_leg_plasma_case_area_(m²)________________________________________ (a_tf_plasma_case)_____________ 7.31957103308791268e-02 -Inboard_leg_case_inboard_"nose"_area_(m²)________________________________ (a_tf_coil_nose_case)__________ 2.52548398442685951e-01 -Inboard_leg_case_sidewall_average_thickness_(m)__________________________ (dx_tf_side_case_average)______ 7.86276693582823871e-02 -Inboard_leg_case_sidewall_peak_thickness_(m)_____________________________ (dx_tf_side_case_peak)_________ 1.07255338716564771e-01 -External_case_mass_per_coil_(kg)_________________________________________ (m_tf_coil_case)_______________ 4.17958392894204881e+05 OP -Winding_pack_shape_selection_switch______________________________________ (i_tf_wp_geom)_________________ 1 -WP_cross_section_area_with_insulation_and_insertion_(per_coil)_(m²)______ (a_tf_wp_with_insulation)______ 6.56678454099718478e-01 -WP_cross_section_area_with_no_insulation_and_insertion_(per_coil)_(m²)___ (a_tf_wp_no_insulation)________ 5.96184899839948934e-01 -Total_steel_area_in_WP_(per_coil)_(m²)___________________________________ (a_tf_wp_steel)________________ 2.65084527745944210e-01 -Ground_wall_insulation_area_(m²)_________________________________________ (a_tf_wp_ground_insulation)____ 2.65660241154530574e-02 -Winding_pack_radial_thickness_(m)________________________________________ (dr_tf_wp_with_insulation)_____ 5.75684050929656244e-01 OP -Minimum_toroidal_thickness_of_winding_pack_(m)___________________________ (dx_tf_wp_toroidal_min)________ 1.08343711756959893e+00 OP -Winding_pack_toroidal_width_1_(m)________________________________________ (dx_tf_wp_primary_toroidal)____ 1.19794779500272841e+00 OP -Winding_pack_toroidal_width_2_(m)________________________________________ (dx_tf_wp_secondary_toroidal)__ 1.08343711756959893e+00 OP +Mean_coil_circumference_(including_inboard_leg_length)_(m)_______________ (len_tf_coil)__________________ 4.77997349325980636e+01 OP +Vertical_TF_shape________________________________________________________ (i_tf_shape)___________________ 1 +TF_coil_arc_point_0_R_(m)________________________________________________ (r_tf_arc(1))__________________ 3.62533333344204944e+00 +TF_coil_arc_point_0_Z_(m)________________________________________________ (z_tf_arc(1))__________________ 4.55060000005323761e+00 +TF_coil_arc_point_1_R_(m)________________________________________________ (r_tf_arc(2))__________________ 7.46666666680095936e+00 +TF_coil_arc_point_1_Z_(m)________________________________________________ (z_tf_arc(2))__________________ 7.58433333342206240e+00 +TF_coil_arc_point_2_R_(m)________________________________________________ (r_tf_arc(3))__________________ 1.45545384652438106e+01 +TF_coil_arc_point_2_Z_(m)________________________________________________ (z_tf_arc(3))__________________ 0.00000000000000000e+00 +TF_coil_arc_point_3_R_(m)________________________________________________ (r_tf_arc(4))__________________ 7.46666666680095936e+00 +TF_coil_arc_point_3_Z_(m)________________________________________________ (z_tf_arc(4))__________________ -8.81821716421622348e+00 +TF_coil_arc_point_4_R_(m)________________________________________________ (r_tf_arc(5))__________________ 3.62533333344204944e+00 +TF_coil_arc_point_4_Z_(m)________________________________________________ (z_tf_arc(5))__________________ -5.29093029852973373e+00 +TF_cross-section_(total)_(m2)____________________________________________ (a_tf_inboard_total)___________ 1.72451056070541533e+01 +Total_steel_cross-section_(m2)___________________________________________ (a_tf_coil_inboard_steel*n_tf_coils)_ 1.09612008405920811e+01 +Total_steel_TF_fraction__________________________________________________ (f_a_tf_coil_inboard_steel)____ 6.35612276918059216e-01 +Total_Insulation_cross-section_(total)_(m2)______________________________ (a_tf_coil_inboard_insulation*n_tf_coils)_ 9.05474576752652749e-01 +Total_Insulation_fraction________________________________________________ (f_a_tf_coil_inboard_insulation)_ 5.25061775430511815e-02 +Casing_cross_section_area_(per_leg)_(m2)_________________________________ (a_tf_coil_inboard_case)_______ 4.20795130056302424e-01 +Inboard_leg_case_plasma_side_wall_thickness_(m)__________________________ (dr_tf_plasma_case)____________ 7.58990189466916682e-02 +Inboard_leg_plasma_case_area_(m^2)_______________________________________ (a_tf_plasma_case)_____________ 7.46359501160478445e-02 +Inboard_leg_case_inboard_"nose"_thickness_(m)____________________________ (dr_tf_nose_case)______________ 2.06610339816990257e-01 +Inboard_leg_case_inboard_"nose"_area_(m^2)_______________________________ (a_tf_coil_nose_case)__________ 2.55501475003228506e-01 +Inboard_leg_case_sidewall_thickness_at_its_narrowest_point_(m)___________ (dx_tf_side_case_min)__________ 5.00000000000000028e-02 +Inboard_leg_case_sidewall_average_thickness_(m)__________________________ (dx_tf_side_case_average)______ 7.86574071194165725e-02 +Inboard_leg_case_sidewall_peak_thickness_(m)_____________________________ (dx_tf_side_case_peak)_________ 1.07314814238833128e-01 +External_case_mass_per_coil_(kg)_________________________________________ (m_tf_coil_case)_______________ 4.22578523275437299e+05 OP +WP_cross_section_area_with_insulation_and_insertion_(per_coil)_(m2)______ (a_tf_wp_with_insulation)______ 6.57023970384582157e-01 +WP_cross_section_area_with_no_insulation_and_insertion_(per_coil)_(m2)___ (a_tf_wp_no_insulation)________ 5.96529916697140283e-01 +Total_steel_area_in_WP_(per_coil)_(m2)___________________________________ (a_tf_wp_steel)________________ 2.64279922480702645e-01 +Winding_pack_radial_thickness_(m)________________________________________ (dr_tf_wp_with_insulation)_____ 5.76282058213485326e-01 OP +Winding_pack_toroidal_width_1_(m)________________________________________ (dx_tf_wp_primary_toroidal)____ 1.19742313623206398e+00 OP +Winding_pack_toroidal_width_2_(m)________________________________________ (dx_tf_wp_secondary_toroidal)__ 1.08279350775439775e+00 OP Ground_wall_insulation_thickness_(m)_____________________________________ (dx_tf_wp_insulation)__________ 8.00000000000000017e-03 +Ground_wall_insulation_area_(m^2)________________________________________ (a_tf_wp_ground_insulation)____ 2.65662460833074876e-02 Winding_pack_insertion_gap_(m)___________________________________________ (dx_tf_wp_insertion_gap)_______ 1.00000000000000002e-02 -Steel_WP_cross-section_(total)_(m²)______________________________________ (a_tf_wp_steel*n_tf_coils)_____ 4.24135244393510735e+00 -Steel_WP_fraction________________________________________________________ (a_tf_wp_steel/a_tf_wp_with_insulation)_ 4.03674775822156606e-01 -Insulation_WP_fraction___________________________________________________ (a_tf_coil_wp_turn_insulation/a_tf_wp_with_insulation)_ 4.54985034228082980e-02 -Cable_WP_fraction________________________________________________________ ((a_tf_wp_with_insulation-a_tf_wp_steel-a_tf_coil_wp_turn_insulation)/a_tf_wp_with_insulation)_ 5.50826720755035026e-01 +Steel_WP_cross-section_(total)_(m2)______________________________________ (a_tf_wp_steel*n_tf_coils)_____ 4.22847875969124232e+00 +Steel_WP_fraction________________________________________________________ (a_tf_wp_steel/a_tf_wp_with_insulation)_ 4.02237870143473064e-01 +Insulation_WP_fraction___________________________________________________ (a_tf_coil_wp_turn_insulation/a_tf_wp_with_insulation)_ 4.56998775039485286e-02 +Cable_WP_fraction________________________________________________________ ((a_tf_wp_with_insulation-a_tf_wp_steel-a_tf_coil_wp_turn_insulation)/a_tf_wp_with_insulation)_ 5.52062252352578442e-01 Turn_parameterisation____________________________________________________ (i_tf_turns_integer)___________ 0 -Number_of_turns_per_TF_coil______________________________________________ (n_tf_coil_turns)______________ 1.50007023888258516e+02 OP -Width_of_turn_including_inter-turn_insulation_(m)________________________ (dx_tf_turn_general)___________ 6.30426831197017923e-02 OP -Width_of_conductor_(square)_(m)__________________________________________ (t_conductor)__________________ 6.14426831197017950e-02 OP -Width_of_space_inside_conductor_(m)______________________________________ (dx_tf_turn_cable_space_average)_ 4.51667320267202035e-02 OP -Radius_of_turn_cable_space_rounded_corners_(m)___________________________ (radius_tf_turn_cable_space_corners)_ 6.10348165986809681e-03 -Steel_conduit_thickness_(m)______________________________________________ (dx_tf_turn_steel)_____________ 8.13797554649079574e-03 +Number_of_turns_per_TF_coil______________________________________________ (n_tf_coil_turns)______________ 1.51426729546786191e+02 OP +Width_of_turn_including_inter-turn_insulation_(m)________________________ (dx_tf_turn_general)___________ 6.27646112297998576e-02 OP +Width_of_conductor_(square)_(m)__________________________________________ (t_conductor)__________________ 6.11646112297998604e-02 OP +Width_of_space_inside_conductor_(m)______________________________________ (dx_tf_turn_cable_space_average)_ 4.50253976149217194e-02 OP +Radius_of_turn_cable_space_rounded_corners_(m)___________________________ (radius_tf_turn_cable_space_corners)_ 6.05220510557930198e-03 +Steel_conduit_thickness_(m)______________________________________________ (dx_tf_turn_steel)_____________ 8.06960680743906873e-03 Inter-turn_insulation_thickness_(m)______________________________________ (dx_tf_turn_insulation)________ 8.00000000000000038e-04 -TF_coil_turn_area_(m²)___________________________________________________ (a_tf_turn)____________________ 3.97437989493113365e-03 -Superconductor_mass_per_coil_(kg)________________________________________ (m_tf_coil_superconductor)_____ 3.08173337256678542e+03 OP -Copper_mass_per_coil_(kg)________________________________________________ (m_tf_coil_copper)_____________ 7.51486424735534820e+04 OP -Steel_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_wp_steel_conduit)________ 9.88113854730759340e+04 OP -Conduit_insulation_mass_per_coil_(kg)____________________________________ (m_tf_coil_wp_turn_insulation)_ 2.57010218055405585e+03 OP -Total_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_coil_conductor)__________ 1.79611863499750267e+05 OP -Mass_of_each_TF_coil_(kg)________________________________________________ (m_tf_coils_total/n_tf_coils)__ 6.02773924788473290e+05 OP -Total_TF_coil_mass_(kg)__________________________________________________ (m_tf_coils_total)_____________ 9.64438279661557265e+06 OP -# TF CICC Cable Space Information # -Diameter_of_central_helium_channel_in_turn_______________________________ (dia_tf_turn_coolant_channel)__ 1.00000000000000002e-02 +Diameter_of_central_helium_channel_in_cable______________________________ (dia_tf_turn_coolant_channel)__ 1.00000000000000002e-02 Diameter_of_superconducting_cable________________________________________ (dia_tf_turn_superconducting_cable)_ 7.29999999999999963e-04 -Number_of_superconducting_cables_per_turn________________________________ (n_tf_turn_superconducting_cables)_ 3170 -Length_of_superconductor_in_TF_coil_(m)__________________________________ (len_tf_coil_superconductor)___ 2.27247368686695248e+07 -Total_length_of_superconductor_in_all_TF_coils_(m)_______________________ (len_tf_superconductor_total)__ 3.63595789898712397e+08 -internal_area_of_the_cable_space_________________________________________ (a_tf_turn_cable_space_no_void)_ 2.00805587228266962e-03 -True_area_of_turn_cable_space_with_gaps_and_channels_removed_____________ (a_tf_turn_cable_space_effective)_ 1.32709929425812393e-03 +Number_of_superconducting_cables_per_turn________________________________ (n_tf_turn_superconducting_cables)_ 3150 +Length_of_superconductor_in_TF_coil_(m)__________________________________ (len_tf_coil_superconductor)___ 2.28001962322467752e+07 +Total_length_of_superconductor_in_all_TF_coils_(m)_______________________ (len_tf_superconductor_total)__ 3.64803139715948403e+08 +internal_area_of_the_cable_space_________________________________________ (a_tf_turn_cable_space_no_void)_ 1.99584366747699183e-03 +True_area_of_turn_cable_space_with_gaps_and_channels_removed_____________ (a_tf_turn_cable_space_effective)_ 1.31855075089414952e-03 Coolant_fraction_in_conductor_excluding_central_channel__________________ (f_a_tf_turn_cable_space_extra_void)_ 2.99999999999999989e-01 -Area_of_steel_in_turn____________________________________________________ (a_tf_turn_steel)______________ 1.76714743666541840e-03 -Area_of_all_turn_insulation_in_WP________________________________________ (a_tf_coil_wp_turn_insulation)_ 2.98778868915405039e-02 -Total_insulation_area_in_TF_coil_(turn_and_WP)___________________________ (a_tf_coil_inboard_insulation)_ 5.64439110069935579e-02 -Total_steel_area_in_inboard_TF_coil_(turn_and_case)______________________ (a_tf_coil_inboard_steel)______ 6.81358026942176620e-01 -Total_conductor_area_in_WP_______________________________________________ (a_tf_wp_conductor)____________ 1.99074215535869403e-01 -Total_additional_void_area_in_WP_________________________________________ (a_tf_wp_extra_void)___________ 9.03667455607392589e-02 -Area_of_all_coolant_channels_in_WP_______________________________________ (a_tf_wp_coolant_channels)_____ 1.17815241058555394e-02 -Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.93824025763589325e-01 -Superconductor_fraction_of_conductor_____________________________________ (1-f_a_tf_turn_cable_copper)___ 1.06175974236410675e-01 +Area_of_steel_in_turn____________________________________________________ (a_tf_turn_steel)______________ 1.74526599941556742e-03 +Area_of_all_turn_insulation_in_WP________________________________________ (a_tf_coil_wp_turn_insulation)_ 3.00259149637333092e-02 +Total_insulation_area_in_TF_coil_(turn_and_WP)___________________________ (a_tf_coil_inboard_insulation)_ 5.65921610470407968e-02 +Total_steel_area_in_inboard_TF_coil_(turn_and_case)______________________ (a_tf_coil_inboard_steel)______ 6.85075052537005069e-01 +Total_conductor_area_in_WP_______________________________________________ (a_tf_wp_conductor)____________ 1.99663827949360217e-01 +Total_additional_void_area_in_WP_________________________________________ (a_tf_wp_extra_void)___________ 9.06672237758112953e-02 +Area_of_all_coolant_channels_in_WP_______________________________________ (a_tf_wp_coolant_channels)_____ 1.18930275275327992e-02 +Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.98638218006112544e-01 +Superconductor_fraction_of_conductor_____________________________________ (1-f_a_tf_turn_cable_copper)___ 1.01361781993887456e-01 Check_total_area_fractions_in_winding_pack_=_1___________________________ _______________________________ 1.00000000000000000e+00 ITV minimum_TF_conductor_temperature_margin__(K)_____________________________ (temp_tf_superconductor_margin_min)_ 1.50000000000000000e+00 -TF_conductor_temperature_margin_(K)______________________________________ (temp_tf_superconductor_margin)_ 1.72143554521994702e+00 +TF_conductor_temperature_margin_(K)______________________________________ (temp_tf_superconductor_margin)_ 1.50077341353807725e+00 Elastic_properties_behavior______________________________________________ (i_tf_cond_eyoung_axial)_______ 0 Conductor_axial_Youngs_modulus___________________________________________ (eyoung_cond_axial)____________ 0 Conductor_transverse_Youngs_modulus______________________________________ (eyoung_cond_trans)____________ 0 +Superconductor_mass_per_coil_(kg)________________________________________ (m_tf_coil_superconductor)_____ 2.77566245499418847e+03 OP +Copper_mass_per_coil_(kg)________________________________________________ (m_tf_coil_copper)_____________ 7.58179524175118131e+04 OP +Steel_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_wp_steel_conduit)________ 9.85335798921641690e+04 OP +Conduit_insulation_mass_per_coil_(kg)____________________________________ (m_tf_coil_wp_turn_insulation)_ 2.58341539747532761e+03 OP +Total_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_coil_conductor)__________ 1.79710610162145487e+05 OP +Mass_of_each_TF_coil_(kg)________________________________________________ (m_tf_coils_total/n_tf_coils)__ 6.07494012953847297e+05 OP +Total_TF_coil_mass_(kg)__________________________________________________ (m_tf_coils_total)_____________ 9.71990420726155676e+06 OP +Nominal_peak_field_assuming_toroidal_symmetry_(T)________________________ (b_tf_inboard_peak_symmetric)__ 1.12975519374504714e+01 OP +Radius_of_maximum_field_position_on_inboard_TF_coil_(m)__________________ (r_b_tf_inboard_peak)__________ 3.53143431449535816e+00 OP +Total_current_in_all_TF_coils_(MA)_______________________________________ (c_tf_total/1.D6)______________ 1.99482812818986162e+02 OP +TF_coil_current_(summed_over_all_coils)_(A)______________________________ (c_tf_total)___________________ 1.99482812818986177e+08 +Actual_peak_field_at_discrete_conductor_(T)______________________________ (b_tf_inboard_peak_with_ripple)_ 1.17225220342146379e+01 OP +Ratio_of_peak_field_with_ripple_to_nominal_axisymmetric_peak_field_______ (f_b_tf_inboard_peak_ripple_symmetric)_ 1.03761612242342749e+00 OP +Winding_pack_current_density_(A/m2)______________________________________ (j_tf_wp)______________________ 2.09003361813226640e+07 OP +Inboard_leg_mid-plane_conductor_current_density_(A/m2)___________________ (oacdcp)_______________________ 1.15675031144713461e+07 +Self_inductance_of_a_TF_coil_(H)_________________________________________ (ind_tf_coil)__________________ 5.37482696649337082e-06 OP +Total_stored_energy_in_TF_coils_(GJ)_____________________________________ (e_tf_magnetic_stored_total_gj)_ 1.06941299844712447e+02 OP +Total_magnetic_energy_in_a_TF_coil_(J)___________________________________ (e_tf_coil_magnetic_stored)____ 6.68383124029452705e+09 OP +Inboard_vertical_tension_per_coil_(N)____________________________________ (vforce)_______________________ 1.85025548080386847e+08 OP +Outboard_vertical_tension_per_coil_(N)___________________________________ (vforce_outboard)______________ 1.85025548080386847e+08 OP +inboard_vertical_tension_fraction_(-)____________________________________ (f_vforce_inboard)_____________ 5.00000000000000000e-01 OP +Centring_force_per_coil_(N/m)____________________________________________ (cforce)_______________________ 7.04271074516002238e+07 OP +Max_allowed_tfcoil_variables.ripple_amplitude_at_plasma_outboard_midplane_(%)_ (ripple_b_tf_plasma_edge_max)__ 5.99999999999999978e-01 +Ripple_amplitude_at_plasma_outboard_midplane_(%)_________________________ (ripple_b_tf_plasma_edge)______ 5.99999999999999756e-01 OP +Actual_quench_time_(or_time_constant)_(s)________________________________ (t_tf_superconductor_quench)___ 1.92880295027100637e+01 +Vacuum_Vessel_stress_on_quench_(Pa)______________________________________ (vv_stress_quench)_____________ 4.71310501041747555e+07 OP +Maximum_allowed_voltage_during_quench_due_to_insulation_(kV)_____________ (v_tf_coil_dump_quench_max_kv)_ 1.00000000000000000e+01 +Actual_quench_voltage_(kV)_______________________________________________ (v_tf_coil_dump_quench_kv)_____ 8.41752959308131032e+00 OP +Maximum_allowed_temp_during_a_quench_(K)_________________________________ (temp_tf_conductor_quench_max)_ 1.50000000000000000e+02 # TF Coils Superconductor Information # TF_superconductor_switch_________________________________________________ (i_tf_sc_mat)__________________ 1 Critical_field_at_zero_temperature_and_strain_(T)________________________ (b_tf_superconductor_critical_zero_temp_strain)_ 3.29699999999999989e+01 Critical_temperature_at_zero_field_and_strain_(K)________________________ (temp_tf_superconductor_critical_zero_field_strain)_ 1.60599999999999987e+01 -TF_coil_temperature_at_peak_field_(K)____________________________________ (tftmp)________________________ 4.75000000000000000e+00 -Total_cooling_area_fraction_inside_cable_space___________________________ (f_a_tf_turn_cable_space_cooling)_ 3.39112366057058079e-01 OP -Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.93824025763589325e-01 +Helium_temperature_at_peak_field_(=_superconductor_temperature)_(K)______ (tftmp)________________________ 4.75000000000000000e+00 +Total_cooling_area_fraction_inside_cable_space___________________________ (f_a_tf_turn_cable_space_cooling)_ 3.39351687519208078e-01 OP +Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.98638218006112544e-01 Residual_manufacturing_strain_on_superconductor__________________________ (str_tf_con_res)_______________ -5.00000000000000010e-03 -Self-consistent_strain_on_superconductor_________________________________ (str_wp)_______________________ 2.12504421887535965e-03 -Critical_current_density_in_superconductor_(A/m²)________________________ (j_tf_superconductor_critical)_ 8.40021427068695188e+08 OP -Current_density_in_superconductor_(A/m²)_________________________________ (j_tf_superconductor)__________ 5.87947046422903180e+08 OP -Critical_current_density_in_winding_pack_(A/m²)__________________________ (j_tf_wp_critical)_____________ 2.97817805879345126e+07 OP -Winding_pack_current_density_(A/m²)______________________________________ (j_tf_wp)______________________ 2.08448372501563653e+07 OP -Current_density_in_TF_coil_turn_(A/m²)___________________________________ (j_tf_coil_turn)_______________ 2.08448372501563653e+07 OP -Critical_current_(A)_____________________________________________________ (c_turn_cables_critical)_______ 1.18364110003937240e+05 OP -Actual_current_(A)_______________________________________________________ (c_tf_turn)____________________ 8.28453020801330422e+04 OP -Actual_current_/_critical_current________________________________________ (f_c_tf_turn_operating_critical)_ 6.99919106200158958e-01 OP +Self-consistent_strain_on_superconductor_________________________________ (str_wp)_______________________ 2.12815998633275995e-03 +Critical_current_density_in_superconductor_(A/m2)________________________ (j_tf_superconductor_critical)_ 8.33853728798431516e+08 OP +Critical_current_density_in_winding_pack_(A/m2)__________________________ (j_tf_wp_critical)_____________ 2.82898911488908753e+07 OP +Actual_current_density_in_winding_pack_(A/m2)____________________________ (j_tf_coil_turn)_______________ 2.09003361813226603e+07 OP Minimum_allowed_temperature_margin_in_superconductor_(K)_________________ (temp_tf_superconductor_margin_min)_ 1.50000000000000000e+00 -Actual_temperature_margin_in_superconductor_(K)__________________________ (temp_tf_superconductor_margin)_ 1.72143554521994702e+00 OP -Maximum_allowed_temp_during_a_quench_(K)_________________________________ (temp_tf_conductor_quench_max)_ 1.50000000000000000e+02 -Actual_quench_time_(or_time_constant)_(s)________________________________ (t_tf_superconductor_quench)___ 1.91417901163518778e+01 +Actual_temperature_margin_in_superconductor_(K)__________________________ (temp_tf_superconductor_margin)_ 1.50077341353807725e+00 OP +Critical_current_(A)_____________________________________________________ (c_turn_cables_critical)_______ 1.11445095994131945e+05 OP +Actual_current_(A)_______________________________________________________ (c_tf_turn)____________________ 8.23347095886034367e+04 OP +Actual_current_/_critical_current________________________________________ (f_c_tf_turn_operating_critical)_ 7.38791679024967674e-01 OP +TF_Superconductor_quench_dump_time_(s)___________________________________ (t_tf_superconductor_quench)___ 1.92880295027100637e+01 OP TF_Superconductor_quench_detection_time_(s)______________________________ (t_tf_quench_detection)________ 3.00000000000000000e+00 OP -Vacuum_Vessel_stress_on_quench_(Pa)______________________________________ (vv_stress_quench)_____________ 4.71851145721091032e+07 OP -Maximum_allowed_voltage_during_quench_due_to_insulation_(kV)_____________ (v_tf_coil_dump_quench_max_kv)_ 1.00000000000000000e+01 -Actual_quench_voltage_(kV)_______________________________________________ (v_tf_coil_dump_quench_kv)_____ 8.36818226644945184e+00 OP -Maximum_winding_pack_current_density_for_protection_(A/m²)_______________ (j_tf_wp_quench_heat_max)______ 2.08453953790650927e+07 OP -Max_allowed_fast_neutron_fluence_on_TF_coil_(n/m²)_______________________ (nflutfmax)____________________ 1.00000000000000000e+22 OP -Residual_resistivity_ratio_of_TF_coil_copper_____________________________ (rrr_tf_cu)____________________ 1.00000000000000000e+02 OP +Maximum_winding_pack_current_density_for_protection_(A/m2)_______________ (j_tf_wp_quench_heat_max)______ 2.09012679095639810e+07 OP # TF coils # Allowable_maximum_shear_stress_in_TF_coil_case_(Tresca_criterion)_(Pa)___ (sig_tf_case_max)______________ 7.50000000000000000e+08 Allowable_maximum_shear_stress_in_TF_coil_conduit_(Tresca_criterion)_(Pa)_ (sig_tf_wp_max)________________ 7.50000000000000000e+08 -WP_transverse_modulus_(GPa)______________________________________________ (eyoung_wp_trans*1.0d-9)_______ 4.21314927829138881e+01 OP -WP_vertical_modulus_(GPa)________________________________________________ (eyoung_wp_axial*1.0d-9)_______ 1.16175385368933561e+02 OP -WP_transverse_Poissons_ratio_____________________________________________ (poisson_wp_trans)_____________ 3.03579218938118345e-01 OP -WP_vertical-transverse_Pois._rat.________________________________________ (poisson_wp_axial)_____________ 3.16986429520323132e-01 OP -Radial____stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_r_max(1))______________ 0.00000000000000000e+00 -toroidal__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_t_max(1))______________ -4.80247459142198741e+08 -Vertical__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_z_max(1))______________ 2.69746952291114151e+08 -Von-Mises_stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_vmises_max(1))_________ 6.57986571847816586e+08 -Maximum_shear_stress_for_the_Tresca_yield_criterion_1_(Pa)_______________ (s_shear_tf_peak(1))___________ 7.49994411433312893e+08 -Radial____stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_r_max(2))______________ -1.19387410654447943e+08 -toroidal__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_t_max(2))______________ -3.79397441184721291e+08 -Vertical__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_z_max(2))______________ 2.69746952291114151e+08 -Von-Mises_stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_vmises_max(2))_________ 5.64842579941070318e+08 -Maximum_shear_stress_for_the_Tresca_yield_criterion_2_(Pa)_______________ (s_shear_tf_peak(2))___________ 6.49144393475835443e+08 -Radial____stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_r_max(3))______________ 7.41464383239286579e+06 -toroidal__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_t_max(3))______________ -3.57603689039221227e+08 -Vertical__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_z_max(3))______________ 3.91307569499765694e+08 -Von-Mises_stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_vmises_max(3))_________ 6.48795069929143071e+08 -Maximum_shear_stress_for_the_Tresca_yield_criterion_3_(Pa)_______________ (s_shear_tf_peak(3))___________ 7.48911258538986921e+08 -Maximum_radial_deflection_at_midplane_(m)________________________________ (deflect)______________________ -6.36031646318091764e-03 OP -Vertical_strain_on_casing________________________________________________ (casestr)______________________ 1.31583879166397152e-03 OP -Radial_strain_on_insulator_______________________________________________ (insstrain)____________________ -5.95874660166268322e-03 OP +WP_transverse_modulus_(GPa)______________________________________________ (eyoung_wp_trans*1.0d-9)_______ 4.19393812951652052e+01 OP +WP_vertical_modulus_(GPa)________________________________________________ (eyoung_wp_axial*1.0d-9)_______ 1.16132774015869245e+02 OP +WP_transverse_Poissons_ratio_____________________________________________ (poisson_wp_trans)_____________ 3.03579431150730994e-01 OP +WP_vertical-transverse_Pois._rat.________________________________________ (poisson_wp_axial)_____________ 3.17099777596759447e-01 OP +Radial____stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_r_max(1))______________ -4.88486693097864648e-08 +toroidal__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_t_max(1))______________ -4.79902948623405159e+08 +Vertical__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_z_max(1))______________ 2.70080697574945629e+08 +Von-Mises_stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_vmises_max(1))_________ 6.57923207093723416e+08 +Maximum_shear_stress_for_the_Tresca_yield_criterion_1_(Pa)_______________ (s_shear_tf_peak(1))___________ 7.49983646198350787e+08 +Radial____stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_r_max(2))______________ -1.21273466372500449e+08 +toroidal__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_t_max(2))______________ -3.79038820354919553e+08 +Vertical__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_z_max(2))______________ 2.70080697574945629e+08 +Von-Mises_stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_vmises_max(2))_________ 5.64787641107752442e+08 +Maximum_shear_stress_for_the_Tresca_yield_criterion_2_(Pa)_______________ (s_shear_tf_peak(2))___________ 6.49119517929865122e+08 +Radial____stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_r_max(3))______________ 7.50347787839317694e+06 +toroidal__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_t_max(3))______________ -3.56975592067409277e+08 +Vertical__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_z_max(3))______________ 3.89408681164490938e+08 +Von-Mises_stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_vmises_max(3))_________ 6.46591129550219536e+08 +Maximum_shear_stress_for_the_Tresca_yield_criterion_3_(Pa)_______________ (s_shear_tf_peak(3))___________ 7.46384273231900215e+08 +Maximum_radial_deflection_at_midplane_(m)________________________________ (deflect)______________________ -6.34394009669564038e-03 OP +Vertical_strain_on_casing________________________________________________ (casestr)______________________ 1.31746681743875925e-03 OP +Radial_strain_on_insulator_______________________________________________ (insstrain)____________________ -6.05289909727182909e-03 OP # Central Solenoid Structure # -Poloidal_area_of_a_CS_turn_[m^2]_________________________________________ (a_cs_turn)____________________ 2.16216216216216220e-03 OP -Radial_width_a_CS_turn_[m^2]_____________________________________________ (dz_cs_turn)___________________ 2.60679243426990073e-02 OP -Length_of_a_CS_turn_[m]__________________________________________________ (dr_cs_turn)___________________ 8.29433956358604785e-02 OP +Inner_radius_of_the_CS_coil_[m]__________________________________________ (r_cs_inner)___________________ 2.03182507743337215e+00 OP +Middle_radius_of_the_CS_coil_[m]_________________________________________ (r_cs_middle)__________________ 2.32592054373535229e+00 OP +Outer_radius_of_the_CS_coil_[m]__________________________________________ (r_cs_outer)___________________ 2.62001601003733198e+00 OP +Full_radial_extent_of_the_CS_coil_[m]____________________________________ (dr_cs_full)___________________ 5.24003202007466395e+00 OP +Radial_thickness_of_the_CS_coil_[m]______________________________________ (dr_cs)________________________ 5.88190932603959715e-01 OP +Radial_thickness_of_the_CS_bore_[m]______________________________________ (dr_bore)______________________ 2.03182507743337259e+00 OP +Vertical_top_of_the_CS_coil_[m]__________________________________________ (z_cs_upper)___________________ 7.93639544779460149e+00 OP +Vertical_middle_of_the_CS_coil_[m]_______________________________________ (z_cs_middle)__________________ 0.00000000000000000e+00 OP +Vertical_bottom_of_the_CS_coil_[m]_______________________________________ (z_cs_lower)___________________ -7.93639544779460149e+00 OP +Full_vertical_extent_of_the_CS_coil_[m]__________________________________ (dz_cs_full)___________________ 1.58727908955892030e+01 OP +Central_solenoid_to_TF_coil_internal_edge_height_[m]_____________________ (f_z_cs_tf_internal)___________ 9.00000000000000022e-01 OP +CS_poloidal_cross-sectional_area_[m²]____________________________________ (a_cs_poloidal)________________ 9.33623167990425351e+00 OP +CS_total_top-down_toroidal_cross-sectional_area_[m²]_____________________ (a_cs_toroidal)________________ 8.59593391951690577e+00 OP +Poloidal_area_of_a_CS_turn_[m²]__________________________________________ (a_cs_turn)____________________ 2.28505516774733493e-03 OP +Radial_width_a_CS_turn_[m²]______________________________________________ (dz_cs_turn)___________________ 2.67985110701645865e-02 OP +Length_of_a_CS_turn_[m]__________________________________________________ (dr_cs_turn)___________________ 8.52679897687055044e-02 OP Length_to_diameter_ratio_of_a_CS_turn____________________________________ (f_dr_dz_cs_turn)______________ 3.18181818181818166e+00 OP -Radius_of_CS_turn_cable_space_[m]________________________________________ (radius_cs_turn_cable_space)___ 4.74456966068495870e-03 OP -Radial_thickness_of_steel_conduit_to_cable_space_[m]_____________________ (dr_cs_turn_conduit)___________ 8.28939251066454497e-03 OP -Vertical_thickness_of_steel_conduit_to_cable_space_[m]___________________ (dz_cs_turn_conduit)___________ 8.28939251066454497e-03 OP +Radius_of_CS_turn_cable_space_[m]________________________________________ (radius_cs_turn_cable_space)___ 5.21683703476241017e-03 OP +Radial_thickness_of_steel_conduit_to_cable_space_[m]_____________________ (dr_cs_turn_conduit)___________ 8.18241850031988308e-03 OP +Vertical_thickness_of_steel_conduit_to_cable_space_[m]___________________ (dz_cs_turn_conduit)___________ 8.18241850031988308e-03 OP Corner_radius_of_CS_turn_[m]_____________________________________________ (radius_cs_turn_corners)_______ 3.00000000000000006e-03 OP +CS_conductor+void_cross-sectional_area_[m²]______________________________ (a_cs_cable_space)_____________ 2.87343402986536400e+00 OP +CS_conductor_cross-sectional_area_[m²]___________________________________ (a_cs_cable_space*(1-f_a_cs_void))_ 2.01140382090575454e+00 OP +CS_void_cross-sectional_area_[m²]________________________________________ (a_cs_cable_space*f_a_cs_void)_ 8.62030208959609134e-01 OP +CS_steel_cross-sectional_area_[m²]_______________________________________ (a_cs_steel_poloidal)__________ 6.46279765003888951e+00 OP +CS_steel_area_fraction___________________________________________________ (f_a_cs_turn_steel)____________ 6.92227642973955004e-01 +Copper_fraction_in_strand________________________________________________ (fcuohsu)______________________ 6.99999999999999956e-01 # Central Solenoid and PF Coils # Existence_of_central_solenoid____________________________________________ (iohcl)________________________ 1 Central_solenoid_superconductor_material_________________________________ (i_cs_superconductor)__________ 1 -Maximum_field_at_Beginning_Of_Pulse_(T)__________________________________ (b_cs_peak_pulse_start)________ 1.26983042165941864e+01 OP -Critical_superconductor_current_density_at_BOP_(A/m2)____________________ (j_cs_conductor_critical_pulse_start)_ 4.84963811461851120e+08 OP -Critical_cable_current_density_at_BOP_(A/m2)_____________________________ (jcableoh_bop)_________________ 1.01842400406988740e+08 OP -Allowable_overall_current_density_at_BOP_(A/m2)__________________________ (j_cs_critical_pulse_start)____ 2.91159407269711383e+07 OP -Actual_overall_current_density_at_BOP_(A/m2)_____________________________ (j_cs_pulse_start)_____________ 1.85000000000000000e+07 OP -Maximum_field_at_End_Of_Flattop_(T)______________________________________ (b_cs_peak_flat_top_end)_______ 1.17080973809103970e+01 OP -Critical_superconductor_current_density_at_EOF_(A/m2)____________________ (j_cs_conductor_critical_flat_top_end)_ 6.04451097677709460e+08 OP -Critical_cable_current_density_at_EOF_(A/m2)_____________________________ (jcableoh_eof)_________________ 1.26934730512318999e+08 OP -Allowable_overall_current_density_at_EOF_(A/m2)__________________________ (j_cs_critical_flat_top_end)___ 3.62896404152029008e+07 OP -Actual_overall_current_density_at_EOF_(A/m2)_____________________________ (j_cs_flat_top_end)____________ 1.85000000000000000e+07 -Radial_position_of_CS_filament_0_________________________________________ r_pf_cs_current_filaments0_____ 5.56666666678673039e+00 -Radial_position_of_CS_filament_1_________________________________________ r_pf_cs_current_filaments1_____ 5.56666666678673039e+00 -Radial_position_of_CS_filament_2_________________________________________ r_pf_cs_current_filaments2_____ 1.66994661952565266e+01 -Radial_position_of_CS_filament_3_________________________________________ r_pf_cs_current_filaments3_____ 1.66994661952565266e+01 -Radial_position_of_CS_filament_4_________________________________________ r_pf_cs_current_filaments4_____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_5_________________________________________ r_pf_cs_current_filaments5_____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_6_________________________________________ r_pf_cs_current_filaments6_____ 8.00000000017254642e+00 -Radial_position_of_CS_filament_7_________________________________________ r_pf_cs_current_filaments7_____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_8_________________________________________ r_pf_cs_current_filaments8_____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_9_________________________________________ r_pf_cs_current_filaments9_____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_10________________________________________ r_pf_cs_current_filaments10____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_11________________________________________ r_pf_cs_current_filaments11____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_12________________________________________ r_pf_cs_current_filaments12____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_13________________________________________ r_pf_cs_current_filaments13____ 2.35593251008337257e+00 -Radial_position_of_CS_filament_14________________________________________ r_pf_cs_current_filaments14____ 5.56666666678673039e+00 -Radial_position_of_CS_filament_15________________________________________ r_pf_cs_current_filaments15____ 5.56666666678673039e+00 -Radial_position_of_CS_filament_16________________________________________ r_pf_cs_current_filaments16____ 1.66994661952565266e+01 -Radial_position_of_CS_filament_17________________________________________ r_pf_cs_current_filaments17____ 1.66994661952565266e+01 -Radial_position_of_CS_filament_18________________________________________ r_pf_cs_current_filaments18____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_19________________________________________ r_pf_cs_current_filaments19____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_20________________________________________ r_pf_cs_current_filaments20____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_21________________________________________ r_pf_cs_current_filaments21____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_22________________________________________ r_pf_cs_current_filaments22____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_23________________________________________ r_pf_cs_current_filaments23____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_24________________________________________ r_pf_cs_current_filaments24____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_25________________________________________ r_pf_cs_current_filaments25____ 1.51734034153322810e+01 -Radial_position_of_CS_filament_26________________________________________ r_pf_cs_current_filaments26____ 8.00000000017254642e+00 +CS_superconductor_operating_temperature_(K)______________________________ (temp_cs_superconductor_operating)_ 4.75000000000000000e+00 +CS_temperature_margin_(K)________________________________________________ (temp_cs_superconductor_margin)_ 1.50018677167698833e+00 OP +Minimum_permitted_temperature_margin_(K)_________________________________ (temp_cs_superconductor_margin_min)_ 1.50000000000000000e+00 +Maximum_field_at_Beginning_Of_Pulse_(T)__________________________________ (b_cs_peak_pulse_start)________ 1.31292885651719349e+01 OP +Critical_superconductor_current_density_at_BOP_[A/m²]____________________ (j_cs_conductor_critical_pulse_start)_ 4.38444945216117263e+08 OP +Critical_cable_current_density_at_BOP_[A/m²]_____________________________ (jcableoh_bop)_________________ 9.20734384953846335e+07 OP +Allowable_overall_current_density_at_BOP_[A/m²]__________________________ (j_cs_critical_pulse_start)____ 2.83376591852171198e+07 OP +Actual_overall_current_density_at_BOP_[A/m²]_____________________________ (j_cs_pulse_start)_____________ 1.75050478275467679e+07 OP +Maximum_field_at_End_Of_Flattop_[T]______________________________________ (b_cs_peak_flat_top_end)_______ 1.21211197783461699e+01 OP +Critical_superconductor_current_density_at_EOF_[A/m²]____________________ (j_cs_conductor_critical_flat_top_end)_ 5.52381988632393003e+08 OP +Critical_cable_current_density_at_EOF_[A/m²]_____________________________ (jcableoh_eof)_________________ 1.16000217612802535e+08 OP +Allowable_overall_current_density_at_EOF_[A/m²]__________________________ (j_cs_critical_flat_top_end)___ 3.57016603902263790e+07 OP +Actual_overall_current_density_at_EOF_[A/m²]_____________________________ (j_cs_flat_top_end)____________ 1.75050478275467679e+07 +Radial_position_of_CS_filament_0_________________________________________ r_pf_cs_current_filaments0_____ 5.56666666676678723e+00 +Radial_position_of_CS_filament_1_________________________________________ r_pf_cs_current_filaments1_____ 5.56666666676678723e+00 +Radial_position_of_CS_filament_2_________________________________________ r_pf_cs_current_filaments2_____ 1.67017848325699063e+01 +Radial_position_of_CS_filament_3_________________________________________ r_pf_cs_current_filaments3_____ 1.67017848325699063e+01 +Radial_position_of_CS_filament_4_________________________________________ r_pf_cs_current_filaments4_____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_5_________________________________________ r_pf_cs_current_filaments5_____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_6_________________________________________ r_pf_cs_current_filaments6_____ 8.00000000014388490e+00 +Radial_position_of_CS_filament_7_________________________________________ r_pf_cs_current_filaments7_____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_8_________________________________________ r_pf_cs_current_filaments8_____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_9_________________________________________ r_pf_cs_current_filaments9_____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_10________________________________________ r_pf_cs_current_filaments10____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_11________________________________________ r_pf_cs_current_filaments11____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_12________________________________________ r_pf_cs_current_filaments12____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_13________________________________________ r_pf_cs_current_filaments13____ 2.32592054373535229e+00 +Radial_position_of_CS_filament_14________________________________________ r_pf_cs_current_filaments14____ 5.56666666676678723e+00 +Radial_position_of_CS_filament_15________________________________________ r_pf_cs_current_filaments15____ 5.56666666676678723e+00 +Radial_position_of_CS_filament_16________________________________________ r_pf_cs_current_filaments16____ 1.67017848325699063e+01 +Radial_position_of_CS_filament_17________________________________________ r_pf_cs_current_filaments17____ 1.67017848325699063e+01 +Radial_position_of_CS_filament_18________________________________________ r_pf_cs_current_filaments18____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_19________________________________________ r_pf_cs_current_filaments19____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_20________________________________________ r_pf_cs_current_filaments20____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_21________________________________________ r_pf_cs_current_filaments21____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_22________________________________________ r_pf_cs_current_filaments22____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_23________________________________________ r_pf_cs_current_filaments23____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_24________________________________________ r_pf_cs_current_filaments24____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_25________________________________________ r_pf_cs_current_filaments25____ 1.51759552118379872e+01 +Radial_position_of_CS_filament_26________________________________________ r_pf_cs_current_filaments26____ 8.00000000014388490e+00 Radial_position_of_CS_filament_27________________________________________ r_pf_cs_current_filaments27____ 0.00000000000000000e+00 Radial_position_of_CS_filament_28________________________________________ r_pf_cs_current_filaments28____ 0.00000000000000000e+00 Radial_position_of_CS_filament_29________________________________________ r_pf_cs_current_filaments29____ 0.00000000000000000e+00 @@ -35234,32 +35250,32 @@ Radial_position_of_CS_filament_60________________________________________ r_pf_c Radial_position_of_CS_filament_61________________________________________ r_pf_cs_current_filaments61____ 0.00000000000000000e+00 Radial_position_of_CS_filament_62________________________________________ r_pf_cs_current_filaments62____ 0.00000000000000000e+00 Radial_position_of_CS_filament_63________________________________________ r_pf_cs_current_filaments63____ 0.00000000000000000e+00 -Vertical_position_of_CS_filament_0_______________________________________ z_pf_cs_current_filaments0_____ 9.29864837888136897e+00 -Vertical_position_of_CS_filament_1_______________________________________ z_pf_cs_current_filaments1_____ -1.05325322096755301e+01 -Vertical_position_of_CS_filament_2_______________________________________ z_pf_cs_current_filaments2_____ 2.66666666672418229e+00 -Vertical_position_of_CS_filament_3_______________________________________ z_pf_cs_current_filaments3_____ -2.66666666672418229e+00 -Vertical_position_of_CS_filament_4_______________________________________ z_pf_cs_current_filaments4_____ 7.46666666682770952e+00 -Vertical_position_of_CS_filament_5_______________________________________ z_pf_cs_current_filaments5_____ -7.46666666682770952e+00 +Vertical_position_of_CS_filament_0_______________________________________ z_pf_cs_current_filaments0_____ 9.30312475039922937e+00 +Vertical_position_of_CS_filament_1_______________________________________ z_pf_cs_current_filaments1_____ -1.05370085811933905e+01 +Vertical_position_of_CS_filament_2_______________________________________ z_pf_cs_current_filaments2_____ 2.66666666671462815e+00 +Vertical_position_of_CS_filament_3_______________________________________ z_pf_cs_current_filaments3_____ -2.66666666671462815e+00 +Vertical_position_of_CS_filament_4_______________________________________ z_pf_cs_current_filaments4_____ 7.46666666680095847e+00 +Vertical_position_of_CS_filament_5_______________________________________ z_pf_cs_current_filaments5_____ -7.46666666680095847e+00 Vertical_position_of_CS_filament_6_______________________________________ z_pf_cs_current_filaments6_____ 0.00000000000000000e+00 -Vertical_position_of_CS_filament_7_______________________________________ z_pf_cs_current_filaments7_____ -5.66885389129322070e-01 -Vertical_position_of_CS_filament_8_______________________________________ z_pf_cs_current_filaments8_____ -1.70065616738796610e+00 -Vertical_position_of_CS_filament_9_______________________________________ z_pf_cs_current_filaments9_____ -2.83442694564661046e+00 -Vertical_position_of_CS_filament_10______________________________________ z_pf_cs_current_filaments10____ -3.96819772390525438e+00 -Vertical_position_of_CS_filament_11______________________________________ z_pf_cs_current_filaments11____ -5.10196850216389830e+00 -Vertical_position_of_CS_filament_12______________________________________ z_pf_cs_current_filaments12____ -6.23573928042254266e+00 -Vertical_position_of_CS_filament_13______________________________________ z_pf_cs_current_filaments13____ -7.36951005868118703e+00 -Vertical_position_of_CS_filament_14______________________________________ z_pf_cs_current_filaments14____ 9.29864837888136897e+00 -Vertical_position_of_CS_filament_15______________________________________ z_pf_cs_current_filaments15____ -1.05325322096755301e+01 -Vertical_position_of_CS_filament_16______________________________________ z_pf_cs_current_filaments16____ 2.66666666672418229e+00 -Vertical_position_of_CS_filament_17______________________________________ z_pf_cs_current_filaments17____ -2.66666666672418229e+00 -Vertical_position_of_CS_filament_18______________________________________ z_pf_cs_current_filaments18____ 7.56585560429756487e+00 -Vertical_position_of_CS_filament_19______________________________________ z_pf_cs_current_filaments19____ 7.76423347923727558e+00 -Vertical_position_of_CS_filament_20______________________________________ z_pf_cs_current_filaments20____ 7.36747772935785417e+00 -Vertical_position_of_CS_filament_21______________________________________ z_pf_cs_current_filaments21____ 7.16909985441814346e+00 -Vertical_position_of_CS_filament_22______________________________________ z_pf_cs_current_filaments22____ -7.56585560429756487e+00 -Vertical_position_of_CS_filament_23______________________________________ z_pf_cs_current_filaments23____ -7.76423347923727558e+00 -Vertical_position_of_CS_filament_24______________________________________ z_pf_cs_current_filaments24____ -7.36747772935785417e+00 -Vertical_position_of_CS_filament_25______________________________________ z_pf_cs_current_filaments25____ -7.16909985441814346e+00 +Vertical_position_of_CS_filament_7_______________________________________ z_pf_cs_current_filaments7_____ -5.66885389128185868e-01 +Vertical_position_of_CS_filament_8_______________________________________ z_pf_cs_current_filaments8_____ -1.70065616738455772e+00 +Vertical_position_of_CS_filament_9_______________________________________ z_pf_cs_current_filaments9_____ -2.83442694564092923e+00 +Vertical_position_of_CS_filament_10______________________________________ z_pf_cs_current_filaments10____ -3.96819772389730119e+00 +Vertical_position_of_CS_filament_11______________________________________ z_pf_cs_current_filaments11____ -5.10196850215367270e+00 +Vertical_position_of_CS_filament_12______________________________________ z_pf_cs_current_filaments12____ -6.23573928041004422e+00 +Vertical_position_of_CS_filament_13______________________________________ z_pf_cs_current_filaments13____ -7.36951005866641662e+00 +Vertical_position_of_CS_filament_14______________________________________ z_pf_cs_current_filaments14____ 9.30312475039922937e+00 +Vertical_position_of_CS_filament_15______________________________________ z_pf_cs_current_filaments15____ -1.05370085811933905e+01 +Vertical_position_of_CS_filament_16______________________________________ z_pf_cs_current_filaments16____ 2.66666666671462815e+00 +Vertical_position_of_CS_filament_17______________________________________ z_pf_cs_current_filaments17____ -2.66666666671462815e+00 +Vertical_position_of_CS_filament_18______________________________________ z_pf_cs_current_filaments18____ 7.56643477248583629e+00 +Vertical_position_of_CS_filament_19______________________________________ z_pf_cs_current_filaments19____ 7.76597098385559015e+00 +Vertical_position_of_CS_filament_20______________________________________ z_pf_cs_current_filaments20____ 7.36689856111608066e+00 +Vertical_position_of_CS_filament_21______________________________________ z_pf_cs_current_filaments21____ 7.16736234974632680e+00 +Vertical_position_of_CS_filament_22______________________________________ z_pf_cs_current_filaments22____ -7.56643477248583629e+00 +Vertical_position_of_CS_filament_23______________________________________ z_pf_cs_current_filaments23____ -7.76597098385559015e+00 +Vertical_position_of_CS_filament_24______________________________________ z_pf_cs_current_filaments24____ -7.36689856111608066e+00 +Vertical_position_of_CS_filament_25______________________________________ z_pf_cs_current_filaments25____ -7.16736234974632680e+00 Vertical_position_of_CS_filament_26______________________________________ z_pf_cs_current_filaments26____ 0.00000000000000000e+00 Vertical_position_of_CS_filament_27______________________________________ z_pf_cs_current_filaments27____ 0.00000000000000000e+00 Vertical_position_of_CS_filament_28______________________________________ z_pf_cs_current_filaments28____ 0.00000000000000000e+00 @@ -35298,157 +35314,136 @@ Vertical_position_of_CS_filament_60______________________________________ z_pf_c Vertical_position_of_CS_filament_61______________________________________ z_pf_cs_current_filaments61____ 0.00000000000000000e+00 Vertical_position_of_CS_filament_62______________________________________ z_pf_cs_current_filaments62____ 0.00000000000000000e+00 Vertical_position_of_CS_filament_63______________________________________ z_pf_cs_current_filaments63____ 0.00000000000000000e+00 -CS_inside_radius_(m)_____________________________________________________ (dr_bore)______________________ 2.08652517234514123e+00 -CS_thickness_(m)_________________________________________________________ (dr_cs)________________________ 5.38814675476462890e-01 -Gap_between_central_solenoid_and_TF_coil_(m)_____________________________ (dr_cs_tf_gap)_________________ 8.00000000000000017e-02 -CS_overall_cross-sectional_area_(m2)_____________________________________ (a_cs_poloidal)________________ 8.55249267532979296e+00 OP -CS_radial_middle_(m)_____________________________________________________ (r_cs_middle)__________________ 2.35593251008337257e+00 OP -CS_conductor+void_cross-sectional_area_(m2)______________________________ (awpoh)________________________ 2.44509034358609778e+00 OP -___CS_conductor_cross-sectional_area_(m2)________________________________ (awpoh*(1-f_a_cs_void))________ 1.71156324051026831e+00 OP -___CS_void_cross-sectional_area_(m2)_____________________________________ (awpoh*f_a_cs_void)____________ 7.33527103075829356e-01 OP -CS_steel_cross-sectional_area_(m2)_______________________________________ (a_cs_poloidal-awpoh)__________ 6.10740233174369518e+00 OP -CS_steel_area_fraction___________________________________________________ (f_a_cs_turn_steel)____________ 7.14107870487967089e-01 Switch_for_CS_stress_calculation_________________________________________ (i_cs_stress)__________________ 1 Allowable_stress_in_CS_steel_(Pa)________________________________________ (alstroh)______________________ 7.50000000000000000e+08 -Hoop_stress_in_CS_steel_(Pa)_____________________________________________ (sig_hoop)_____________________ 4.38665551258243442e+08 OP -Axial_stress_in_CS_steel_(Pa)____________________________________________ (stress_z_cs_self_peak_midplane)_ -3.11329621661900461e+08 OP -Maximum_shear_stress_in_CS_steel_for_the_Tresca_criterion_(Pa)___________ (s_shear_cs_peak)______________ 7.49995172920143843e+08 OP -Axial_force_in_CS_(N)____________________________________________________ (forc_z_cs_self_peak_midplane)_ -1.24157390926233411e+09 OP +Hoop_stress_in_CS_steel_(Pa)_____________________________________________ (stress_hoop_cs_inner)_________ 4.42927698215112865e+08 OP +Axial_stress_in_CS_steel_(Pa)____________________________________________ (stress_z_cs_self_peak_midplane)_ -3.07058647601545453e+08 OP +Maximum_shear_stress_in_CS_steel_for_the_Tresca_criterion_(Pa)___________ (s_shear_cs_peak)______________ 7.49986345816658258e+08 OP +Axial_force_in_CS_(N)____________________________________________________ (forc_z_cs_self_peak_midplane)_ -1.31972792209955645e+09 OP Residual_manufacturing_strain_in_CS_superconductor_material______________ (str_cs_con_res)_______________ -5.00000000000000010e-03 -Copper_fraction_in_strand________________________________________________ (fcuohsu)______________________ 6.99999999999999956e-01 -Void_(coolant)_fraction_in_conductor_____________________________________ (f_a_cs_void)__________________ 2.99999999999999989e-01 -Helium_coolant_temperature_(K)___________________________________________ (tftmp)________________________ 4.75000000000000000e+00 -CS_temperature_margin_(K)________________________________________________ (temp_cs_superconductor_margin)_ 1.50009062197419230e+00 OP -Minimum_permitted_temperature_margin_(K)_________________________________ (temp_cs_superconductor_margin_min)_ 1.50000000000000000e+00 Residual_hoop_stress_in_CS_Steel_(Pa)____________________________________ (residual_sig_hoop)____________ 2.40000000000000000e+08 Minimum_burn_time_(s)____________________________________________________ (t_burn_min)___________________ 7.20000000000000000e+03 Initial_vertical_crack_size_(m)__________________________________________ (t_crack_vertical)_____________ 8.89999999999999949e-04 Initial_radial_crack_size_(m)____________________________________________ (t_crack_radial)_______________ 2.66999999999999963e-03 -CS_turn_area_(m)_________________________________________________________ (a_cs_turn)____________________ 2.16216216216216220e-03 -CS_turn_length_(m)_______________________________________________________ (dr_cs_turn)___________________ 8.29433956358604785e-02 -CS_turn_internal_cable_space_radius_(m)__________________________________ (radius_cs_turn_cable_space)___ 4.74456966068495870e-03 -CS_turn_width_(m)________________________________________________________ (dz_cs_turn)___________________ 2.60679243426990073e-02 -CS_structural_vertical_thickness_(m)_____________________________________ (dz_cs_turn_conduit)___________ 8.28939251066454497e-03 -CS_structural_radial_thickness_(m)_______________________________________ (dr_cs_turn_conduit)___________ 8.28939251066454497e-03 -Allowable_number_of_cycles_till_CS_fracture______________________________ (n_cycle)______________________ 5.70862138266636248e+03 OP +Allowable_number_of_cycles_till_CS_fracture______________________________ (n_cycle)______________________ 5.52784302850028507e+03 OP Minimum_number_of_cycles_required_till_CS_fracture_______________________ (n_cycle_min)__________________ 2.00000000000000000e+04 OP PF_coil_superconductor_material__________________________________________ (i_pf_superconductor)__________ 3 Copper_fraction_in_conductor_____________________________________________ (fcupfsu)______________________ 6.89999999999999947e-01 Maximum_permissible_tensile_stress_(MPa)_________________________________ (sigpfcalw)____________________ 5.00000000000000000e+02 JxB_hoop_force_fraction_supported_by_case________________________________ (sigpfcf)______________________ 1.00000000000000000e+00 -PF_coil_0_radius_(m)_____________________________________________________ (r_pf_coil_middle[0])__________ 5.56666666678673039e+00 -PF_coil_0_vertical_position_(m)__________________________________________ (z_pf_coil_middle[0])__________ 9.29864837888136897e+00 -PF_coil_0_radial_thickness_(m)___________________________________________ (pfdr(0))______________________ 1.30716959387866716e+00 -PF_coil_0_vertical_thickness_(m)_________________________________________ (pfdz(0))______________________ 1.30716959387866538e+00 -PF_coil_0_turns__________________________________________________________ (n_pf_coil_turns[0])___________ 4.69890395469252667e+02 -PF_coil_0_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[0])_____ 1.87956158187701057e+01 -PF_coil_0_field_(T)______________________________________________________ (b_pf_coil_peak[0])____________ 6.83192241463730277e+00 -PF_coil_1_radius_(m)_____________________________________________________ (r_pf_coil_middle[1])__________ 5.56666666678673039e+00 -PF_coil_1_vertical_position_(m)__________________________________________ (z_pf_coil_middle[1])__________ -1.05325322096755301e+01 -PF_coil_1_radial_thickness_(m)___________________________________________ (pfdr(1))______________________ 1.41014121992641961e+00 -PF_coil_1_vertical_thickness_(m)_________________________________________ (pfdz(1))______________________ -1.41014121992641961e+00 -PF_coil_1_turns__________________________________________________________ (n_pf_coil_turns[1])___________ 5.46837021537282226e+02 -PF_coil_1_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[1])_____ 2.18734808614912879e+01 -PF_coil_1_field_(T)______________________________________________________ (b_pf_coil_peak[1])____________ 7.34704812024148524e+00 -PF_coil_2_radius_(m)_____________________________________________________ (r_pf_coil_middle[2])__________ 1.66994661952565266e+01 -PF_coil_2_vertical_position_(m)__________________________________________ (z_pf_coil_middle[2])__________ 2.66666666672418229e+00 -PF_coil_2_radial_thickness_(m)___________________________________________ (pfdr(2))______________________ 1.10404170879242258e+00 -PF_coil_2_vertical_thickness_(m)_________________________________________ (pfdz(2))______________________ 1.10404170879242614e+00 -PF_coil_2_turns__________________________________________________________ (n_pf_coil_turns[2])___________ 1.82836214212994946e+02 -PF_coil_2_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[2])_____ -7.31344856851979852e+00 -PF_coil_2_field_(T)______________________________________________________ (b_pf_coil_peak[2])____________ 2.56582896364076385e+00 -PF_coil_3_radius_(m)_____________________________________________________ (r_pf_coil_middle[3])__________ 1.66994661952565266e+01 -PF_coil_3_vertical_position_(m)__________________________________________ (z_pf_coil_middle[3])__________ -2.66666666672418229e+00 -PF_coil_3_radial_thickness_(m)___________________________________________ (pfdr(3))______________________ 1.10404170879242258e+00 -PF_coil_3_vertical_thickness_(m)_________________________________________ (pfdz(3))______________________ -1.10404170879242614e+00 -PF_coil_3_turns__________________________________________________________ (n_pf_coil_turns[3])___________ 1.82836214212994946e+02 -PF_coil_3_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[3])_____ -7.31344856851979852e+00 -PF_coil_3_field_(T)______________________________________________________ (b_pf_coil_peak[3])____________ 2.56582896364076385e+00 -PF_coil_4_radius_(m)_____________________________________________________ (r_pf_coil_middle[4])__________ 1.51734034153322810e+01 -PF_coil_4_vertical_position_(m)__________________________________________ (z_pf_coil_middle[4])__________ 7.46666666682770952e+00 -PF_coil_4_radial_thickness_(m)___________________________________________ (pfdr(4))______________________ 7.93511499758842831e-01 -PF_coil_4_vertical_thickness_(m)_________________________________________ (pfdz(4))______________________ 7.93511499758842831e-01 -PF_coil_4_turns__________________________________________________________ (n_pf_coil_turns[4])___________ 1.25932100049905827e+02 -PF_coil_4_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[4])_____ -5.03728400199623305e+00 -PF_coil_4_field_(T)______________________________________________________ (b_pf_coil_peak[4])____________ 2.52087510284903216e+00 -PF_coil_5_radius_(m)_____________________________________________________ (r_pf_coil_middle[5])__________ 1.51734034153322810e+01 -PF_coil_5_vertical_position_(m)__________________________________________ (z_pf_coil_middle[5])__________ -7.46666666682770952e+00 -PF_coil_5_radial_thickness_(m)___________________________________________ (pfdr(5))______________________ 7.93511499758842831e-01 -PF_coil_5_vertical_thickness_(m)_________________________________________ (pfdz(5))______________________ -7.93511499758842831e-01 -PF_coil_5_turns__________________________________________________________ (n_pf_coil_turns[5])___________ 1.25932100049905827e+02 -PF_coil_5_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[5])_____ -5.03728400199623305e+00 -PF_coil_5_field_(T)______________________________________________________ (b_pf_coil_peak[5])____________ 2.52087510284903216e+00 +PF_coil_0_radius_(m)_____________________________________________________ (r_pf_coil_middle[0])__________ 5.56666666676678723e+00 +PF_coil_0_vertical_position_(m)__________________________________________ (z_pf_coil_middle[0])__________ 9.30312475039922937e+00 +PF_coil_0_radial_thickness_(m)___________________________________________ (pfdr(0))______________________ 1.30908197617268662e+00 +PF_coil_0_vertical_thickness_(m)_________________________________________ (pfdz(0))______________________ 1.30908197617268840e+00 +PF_coil_0_turns__________________________________________________________ (n_pf_coil_turns[0])___________ 4.71266295593551661e+02 +PF_coil_0_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[0])_____ 1.88506518237420657e+01 +PF_coil_0_field_(T)______________________________________________________ (b_pf_coil_peak[0])____________ 6.78085264464318094e+00 +PF_coil_1_radius_(m)_____________________________________________________ (r_pf_coil_middle[1])__________ 5.56666666676678723e+00 +PF_coil_1_vertical_position_(m)__________________________________________ (z_pf_coil_middle[1])__________ -1.05370085811933905e+01 +PF_coil_1_radial_thickness_(m)___________________________________________ (pfdr(1))______________________ 1.41073638902052423e+00 +PF_coil_1_vertical_thickness_(m)_________________________________________ (pfdz(1))______________________ -1.41073638902052423e+00 +PF_coil_1_turns__________________________________________________________ (n_pf_coil_turns[1])___________ 5.47298718809334105e+02 +PF_coil_1_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[1])_____ 2.18919487523733629e+01 +PF_coil_1_field_(T)______________________________________________________ (b_pf_coil_peak[1])____________ 7.29108673095108184e+00 +PF_coil_2_radius_(m)_____________________________________________________ (r_pf_coil_middle[2])__________ 1.67017848325699063e+01 +PF_coil_2_vertical_position_(m)__________________________________________ (z_pf_coil_middle[2])__________ 2.66666666671462815e+00 +PF_coil_2_radial_thickness_(m)___________________________________________ (pfdr(2))______________________ 1.11226157090834477e+00 +PF_coil_2_vertical_thickness_(m)_________________________________________ (pfdz(2))______________________ 1.11226157090834565e+00 +PF_coil_2_turns__________________________________________________________ (n_pf_coil_turns[2])___________ 1.85568870317925160e+02 +PF_coil_2_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[2])_____ -7.42275481271700688e+00 +PF_coil_2_field_(T)______________________________________________________ (b_pf_coil_peak[2])____________ 2.58890500480423391e+00 +PF_coil_3_radius_(m)_____________________________________________________ (r_pf_coil_middle[3])__________ 1.67017848325699063e+01 +PF_coil_3_vertical_position_(m)__________________________________________ (z_pf_coil_middle[3])__________ -2.66666666671462815e+00 +PF_coil_3_radial_thickness_(m)___________________________________________ (pfdr(3))______________________ 1.11226157090834477e+00 +PF_coil_3_vertical_thickness_(m)_________________________________________ (pfdz(3))______________________ -1.11226157090834565e+00 +PF_coil_3_turns__________________________________________________________ (n_pf_coil_turns[3])___________ 1.85568870317925160e+02 +PF_coil_3_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[3])_____ -7.42275481271700688e+00 +PF_coil_3_field_(T)______________________________________________________ (b_pf_coil_peak[3])____________ 2.58890500480423391e+00 +PF_coil_4_radius_(m)_____________________________________________________ (r_pf_coil_middle[4])__________ 1.51759552118379872e+01 +PF_coil_4_vertical_position_(m)__________________________________________ (z_pf_coil_middle[4])__________ 7.46666666680095847e+00 +PF_coil_4_radial_thickness_(m)___________________________________________ (pfdr(4))______________________ 7.98144845479018983e-01 +PF_coil_4_vertical_thickness_(m)_________________________________________ (pfdz(4))______________________ 7.98144845479018983e-01 +PF_coil_4_turns__________________________________________________________ (n_pf_coil_turns[4])___________ 1.27407038872945350e+02 +PF_coil_4_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[4])_____ -5.09628155491781420e+00 +PF_coil_4_field_(T)______________________________________________________ (b_pf_coil_peak[4])____________ 2.53958011141786466e+00 +PF_coil_5_radius_(m)_____________________________________________________ (r_pf_coil_middle[5])__________ 1.51759552118379872e+01 +PF_coil_5_vertical_position_(m)__________________________________________ (z_pf_coil_middle[5])__________ -7.46666666680095847e+00 +PF_coil_5_radial_thickness_(m)___________________________________________ (pfdr(5))______________________ 7.98144845479018983e-01 +PF_coil_5_vertical_thickness_(m)_________________________________________ (pfdz(5))______________________ -7.98144845479018983e-01 +PF_coil_5_turns__________________________________________________________ (n_pf_coil_turns[5])___________ 1.27407038872945350e+02 +PF_coil_5_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[5])_____ -5.09628155491781420e+00 +PF_coil_5_field_(T)______________________________________________________ (b_pf_coil_peak[5])____________ 2.53958011141786466e+00 CS_coil_midplane_axial_stress_at_time_point_0_(MPa)______________________ (stress_z_cs_self_midplane_profile[0])_ -0.00000000000000000e+00 -CS_coil_midplane_axial_stress_at_time_point_1_(MPa)______________________ (stress_z_cs_self_midplane_profile[1])_ -3.11329621661900461e+08 -CS_coil_midplane_axial_stress_at_time_point_2_(MPa)______________________ (stress_z_cs_self_midplane_profile[2])_ -1.98167972427740283e+07 -CS_coil_midplane_axial_stress_at_time_point_3_(MPa)______________________ (stress_z_cs_self_midplane_profile[3])_ -1.98167972427740283e+07 -CS_coil_midplane_axial_stress_at_time_point_4_(MPa)______________________ (stress_z_cs_self_midplane_profile[4])_ -3.11329621661900461e+08 +CS_coil_midplane_axial_stress_at_time_point_1_(MPa)______________________ (stress_z_cs_self_midplane_profile[1])_ -3.07058647601545453e+08 +CS_coil_midplane_axial_stress_at_time_point_2_(MPa)______________________ (stress_z_cs_self_midplane_profile[2])_ -1.66232815231775530e+07 +CS_coil_midplane_axial_stress_at_time_point_3_(MPa)______________________ (stress_z_cs_self_midplane_profile[3])_ -1.66232815231775530e+07 +CS_coil_midplane_axial_stress_at_time_point_4_(MPa)______________________ (stress_z_cs_self_midplane_profile[4])_ -3.07058647601545453e+08 CS_coil_midplane_axial_stress_at_time_point_5_(MPa)______________________ (stress_z_cs_self_midplane_profile[5])_ -0.00000000000000000e+00 -Central_solenoid_radius_(m)______________________________________________ (r_pf_coil_middle[n_cs_pf_coils-1])_ 2.35593251008337257e+00 +Central_solenoid_radius_(m)______________________________________________ (r_pf_coil_middle[n_cs_pf_coils-1])_ 2.32592054373535229e+00 Central_solenoid_vertical_position_(m)___________________________________ (z_pf_coil_middle[n_cs_pf_coils-1])_ 0.00000000000000000e+00 -Central_solenoid_radial_thickness_(m)____________________________________ (ohdr)_________________________ 5.38814675476463112e-01 -Central_solenoid_vertical_thickness_(m)__________________________________ (dz_cs_full)___________________ 1.58727908956210175e+01 -Central_solenoid_full_radial_width_(m)___________________________________ (dr_cs_full)___________________ 5.25067969564320780e+00 -Central_solenoid_turns___________________________________________________ (n_pf_coil_turns[n_cs_pf_coils-1])_ 3.95552786234002951e+03 -Central_solenoid_current_(MA)____________________________________________ (c_pf_cs_coils_peak_ma[n_cs_pf_coils-1])_ -1.58221114493601164e+02 -Central_solenoid_field_(T)_______________________________________________ (b_pf_coil_peak[n_cs_pf_coils-1])_ 1.26983042165941864e+01 -Sum_of_squares_of_residuals______________________________________________ (ssq0)_________________________ 3.30828244644212574e-04 OP +Central_solenoid_radial_thickness_(m)____________________________________ (ohdr)_________________________ 5.88190932603959826e-01 +Central_solenoid_vertical_thickness_(m)__________________________________ (dz_cs_full)___________________ 1.58727908955892030e+01 +Central_solenoid_full_radial_width_(m)___________________________________ (dr_cs_full)___________________ 5.24003202007466395e+00 +Central_solenoid_turns___________________________________________________ (n_pf_coil_turns[n_cs_pf_coils-1])_ 4.08577955214453186e+03 +Central_solenoid_current_(MA)____________________________________________ (c_pf_cs_coils_peak_ma[n_cs_pf_coils-1])_ -1.63431182085781273e+02 +Central_solenoid_field_(T)_______________________________________________ (b_pf_coil_peak[n_cs_pf_coils-1])_ 1.31292885651719349e+01 +Sum_of_squares_of_residuals______________________________________________ (ssq0)_________________________ 3.36417623726021232e-04 OP Smoothing_parameter______________________________________________________ (alfapf)_______________________ 5.00000000000000031e-10 # Volt Second Consumption # -Total_volt-second_consumption_by_coils_(Wb)______________________________ (vs_cs_pf_total_pulse)_________ -5.44015875131376220e+02 OP -Total_volt-second_available_for_burn_phase_(Wb)__________________________ (vs_cs_pf_total_burn)__________ -2.71904623177712779e+02 OP +Total_volt-second_consumption_by_coils_(Wb)______________________________ (vs_cs_pf_total_pulse)_________ -5.48700613329681460e+02 OP +Total_volt-second_available_for_burn_phase_(Wb)__________________________ (vs_cs_pf_total_burn)__________ -2.69631858705948275e+02 OP # Waveforms # Ratio_of_central_solenoid_current_at_beginning_of_Pulse_/_end_of_flat-top_ (f_j_cs_start_pulse_end_flat_top)_ 1.00000000000000000e+00 -Ratio_of_central_solenoid_current_at_beginning_of_Flat-top_/_end_of_flat-top_ (f_j_cs_start_end_flat_top)____ -2.52293761037589437e-01 OP +Ratio_of_central_solenoid_current_at_beginning_of_Flat-top_/_end_of_flat-top_ (f_j_cs_start_end_flat_top)____ -2.32673923661649240e-01 OP # PF Circuit Waveform Data # Number_of_PF_circuits_including_CS_and_plasma____________________________ (n_pf_cs_plasma_circuits)______ 8 PF_Circuit_0_Time_point_0_(A)____________________________________________ (pfc0t0)_______________________ 0.00000000000000000e+00 -PF_Circuit_0_Time_point_1_(A)____________________________________________ (pfc0t1)_______________________ 1.32767758823670745e+07 -PF_Circuit_0_Time_point_2_(A)____________________________________________ (pfc0t2)_______________________ 1.87956158187701069e+07 -PF_Circuit_0_Time_point_3_(A)____________________________________________ (pfc0t3)_______________________ 1.87956158187701069e+07 -PF_Circuit_0_Time_point_4_(A)____________________________________________ (pfc0t4)_______________________ 2.16919221458748356e+06 +PF_Circuit_0_Time_point_1_(A)____________________________________________ (pfc0t1)_______________________ 1.34032393479258586e+07 +PF_Circuit_0_Time_point_2_(A)____________________________________________ (pfc0t2)_______________________ 1.88506518237420656e+07 +PF_Circuit_0_Time_point_3_(A)____________________________________________ (pfc0t3)_______________________ 1.88506518237420656e+07 +PF_Circuit_0_Time_point_4_(A)____________________________________________ (pfc0t4)_______________________ 2.32882818695809133e+06 PF_Circuit_0_Time_point_5_(A)____________________________________________ (pfc0t5)_______________________ 0.00000000000000000e+00 PF_Circuit_1_Time_point_0_(A)____________________________________________ (pfc1t0)_______________________ 0.00000000000000000e+00 -PF_Circuit_1_Time_point_1_(A)____________________________________________ (pfc1t1)_______________________ 1.73708952053551488e+07 -PF_Circuit_1_Time_point_2_(A)____________________________________________ (pfc1t2)_______________________ 2.18734808614912890e+07 -PF_Circuit_1_Time_point_3_(A)____________________________________________ (pfc1t3)_______________________ 2.18734808614912890e+07 -PF_Circuit_1_Time_point_4_(A)____________________________________________ (pfc1t4)_______________________ 1.20017172187261283e+05 +PF_Circuit_1_Time_point_1_(A)____________________________________________ (pfc1t1)_______________________ 1.75355997901687287e+07 +PF_Circuit_1_Time_point_2_(A)____________________________________________ (pfc1t2)_______________________ 2.18919487523733638e+07 +PF_Circuit_1_Time_point_3_(A)____________________________________________ (pfc1t3)_______________________ 2.18919487523733638e+07 +PF_Circuit_1_Time_point_4_(A)____________________________________________ (pfc1t4)_______________________ 2.76272155265685171e+05 PF_Circuit_1_Time_point_5_(A)____________________________________________ (pfc1t5)_______________________ 0.00000000000000000e+00 PF_Circuit_2_Time_point_0_(A)____________________________________________ (pfc2t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_2_Time_point_1_(A)____________________________________________ (pfc2t1)_______________________ 4.56076731315416691e+05 -PF_Circuit_2_Time_point_2_(A)____________________________________________ (pfc2t2)_______________________ -6.74230652333908435e+06 -PF_Circuit_2_Time_point_3_(A)____________________________________________ (pfc2t3)_______________________ -6.74230652333908435e+06 -PF_Circuit_2_Time_point_4_(A)____________________________________________ (pfc2t4)_______________________ -7.31344856851979811e+06 +PF_Circuit_2_Time_point_1_(A)____________________________________________ (pfc2t1)_______________________ 4.64076113626131264e+05 +PF_Circuit_2_Time_point_2_(A)____________________________________________ (pfc2t2)_______________________ -6.85070028885583207e+06 +PF_Circuit_2_Time_point_3_(A)____________________________________________ (pfc2t3)_______________________ -6.85070028885583207e+06 +PF_Circuit_2_Time_point_4_(A)____________________________________________ (pfc2t4)_______________________ -7.42275481271700654e+06 PF_Circuit_2_Time_point_5_(A)____________________________________________ (pfc2t5)_______________________ -0.00000000000000000e+00 PF_Circuit_3_Time_point_0_(A)____________________________________________ (pfc3t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_3_Time_point_1_(A)____________________________________________ (pfc3t1)_______________________ 4.56076731315416691e+05 -PF_Circuit_3_Time_point_2_(A)____________________________________________ (pfc3t2)_______________________ -6.74230652333908435e+06 -PF_Circuit_3_Time_point_3_(A)____________________________________________ (pfc3t3)_______________________ -6.74230652333908435e+06 -PF_Circuit_3_Time_point_4_(A)____________________________________________ (pfc3t4)_______________________ -7.31344856851979811e+06 +PF_Circuit_3_Time_point_1_(A)____________________________________________ (pfc3t1)_______________________ 4.64076113626131264e+05 +PF_Circuit_3_Time_point_2_(A)____________________________________________ (pfc3t2)_______________________ -6.85070028885583207e+06 +PF_Circuit_3_Time_point_3_(A)____________________________________________ (pfc3t3)_______________________ -6.85070028885583207e+06 +PF_Circuit_3_Time_point_4_(A)____________________________________________ (pfc3t4)_______________________ -7.42275481271700654e+06 PF_Circuit_3_Time_point_5_(A)____________________________________________ (pfc3t5)_______________________ -0.00000000000000000e+00 PF_Circuit_4_Time_point_0_(A)____________________________________________ (pfc4t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_4_Time_point_1_(A)____________________________________________ (pfc4t1)_______________________ 3.94059484815048054e+05 -PF_Circuit_4_Time_point_2_(A)____________________________________________ (pfc4t2)_______________________ -4.54380576768466085e+06 -PF_Circuit_4_Time_point_3_(A)____________________________________________ (pfc4t3)_______________________ -4.54380576768466085e+06 -PF_Circuit_4_Time_point_4_(A)____________________________________________ (pfc4t4)_______________________ -5.03728400199623313e+06 +PF_Circuit_4_Time_point_1_(A)____________________________________________ (pfc4t1)_______________________ 3.83629097068916075e+05 +PF_Circuit_4_Time_point_2_(A)____________________________________________ (pfc4t2)_______________________ -4.62339197060309816e+06 +PF_Circuit_4_Time_point_3_(A)____________________________________________ (pfc4t3)_______________________ -4.62339197060309816e+06 +PF_Circuit_4_Time_point_4_(A)____________________________________________ (pfc4t4)_______________________ -5.09628155491781421e+06 PF_Circuit_4_Time_point_5_(A)____________________________________________ (pfc4t5)_______________________ -0.00000000000000000e+00 PF_Circuit_5_Time_point_0_(A)____________________________________________ (pfc5t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_5_Time_point_1_(A)____________________________________________ (pfc5t1)_______________________ 3.94059484815048054e+05 -PF_Circuit_5_Time_point_2_(A)____________________________________________ (pfc5t2)_______________________ -4.54380576768466085e+06 -PF_Circuit_5_Time_point_3_(A)____________________________________________ (pfc5t3)_______________________ -4.54380576768466085e+06 -PF_Circuit_5_Time_point_4_(A)____________________________________________ (pfc5t4)_______________________ -5.03728400199623313e+06 +PF_Circuit_5_Time_point_1_(A)____________________________________________ (pfc5t1)_______________________ 3.83629097068916075e+05 +PF_Circuit_5_Time_point_2_(A)____________________________________________ (pfc5t2)_______________________ -4.62339197060309816e+06 +PF_Circuit_5_Time_point_3_(A)____________________________________________ (pfc5t3)_______________________ -4.62339197060309816e+06 +PF_Circuit_5_Time_point_4_(A)____________________________________________ (pfc5t4)_______________________ -5.09628155491781421e+06 PF_Circuit_5_Time_point_5_(A)____________________________________________ (pfc5t5)_______________________ -0.00000000000000000e+00 CS_Circuit_Time_point_0_(A)______________________________________________ (cs_t0)________________________ -0.00000000000000000e+00 -CS_Circuit_Time_point_1_(A)______________________________________________ (cs_t1)________________________ 1.58221114493601173e+08 -CS_Circuit_Time_point_2_(A)______________________________________________ (cs_t2)________________________ 3.99182000511496961e+07 -CS_Circuit_Time_point_3_(A)______________________________________________ (cs_t3)________________________ 3.99182000511496961e+07 -CS_Circuit_Time_point_4_(A)______________________________________________ (cs_t4)________________________ -1.58221114493601173e+08 +CS_Circuit_Time_point_1_(A)______________________________________________ (cs_t1)________________________ 1.63431182085781276e+08 +CS_Circuit_Time_point_2_(A)______________________________________________ (cs_t2)________________________ 3.80261743845601752e+07 +CS_Circuit_Time_point_3_(A)______________________________________________ (cs_t3)________________________ 3.80261743845601752e+07 +CS_Circuit_Time_point_4_(A)______________________________________________ (cs_t4)________________________ -1.63431182085781276e+08 CS_Circuit_Time_point_5_(A)______________________________________________ (cs_t5)________________________ -0.00000000000000000e+00 Plasma_Time_point_0_(A)__________________________________________________ (plasmat0)_____________________ 0.00000000000000000e+00 Plasma_Time_point_1_(A)__________________________________________________ (plasmat1)_____________________ 0.00000000000000000e+00 -Plasma_Time_point_2_(A)__________________________________________________ (plasmat2)_____________________ 1.64508889633267447e+07 -Plasma_Time_point_3_(A)__________________________________________________ (plasmat3)_____________________ 1.64508889633267447e+07 -Plasma_Time_point_4_(A)__________________________________________________ (plasmat4)_____________________ 1.64508889633267447e+07 +Plasma_Time_point_2_(A)__________________________________________________ (plasmat2)_____________________ 1.67464957583690360e+07 +Plasma_Time_point_3_(A)__________________________________________________ (plasmat3)_____________________ 1.67464957583690360e+07 +Plasma_Time_point_4_(A)__________________________________________________ (plasmat4)_____________________ 1.67464957583690360e+07 Plasma_Time_point_5_(A)__________________________________________________ (plasmat5)_____________________ 0.00000000000000000e+00 # PF Coil Inductances # Mutual_inductance_between_PF/CS/plasma_circuits_0_and_0_(H)______________ (ind_pf_cs_plasma_mutual[0,_0])_ 3.63080211570002565e+00 @@ -35516,24 +35511,24 @@ Mutual_inductance_between_PF/CS/plasma_circuits_7_and_5_(H)______________ (ind_p Mutual_inductance_between_PF/CS/plasma_circuits_7_and_6_(H)______________ (ind_pf_cs_plasma_mutual[7,_6])_ 3.89497924784251975e-03 Mutual_inductance_between_PF/CS/plasma_circuits_7_and_7_(H)______________ (ind_pf_cs_plasma_mutual[7,_7])_ 1.25351485782182824e-05 # Support Structure # -Outer_PF_coil_fence_mass_(kg)____________________________________________ (fncmass)______________________ 2.24299592489930830e+05 OP -Intercoil_support_structure_mass_(kg)____________________________________ (aintmass)_____________________ 3.90773908931415994e+06 OP -Mass_of_cooled_components_(kg)___________________________________________ (coldmass)_____________________ 3.29003761395126097e+07 OP -Gravity_support_structure_mass_(kg)______________________________________ (clgsmass)_____________________ 1.22143894002838223e+06 OP -Torus_leg_support_mass_(kg)______________________________________________ (gsm1)_________________________ 8.81134213656326756e+04 OP -Ring_beam_mass_(kg)______________________________________________________ (gsm2)_________________________ 3.90397328246738703e+05 OP -Ring_legs_mass_(kg)______________________________________________________ (gsm3)_________________________ 6.47592217039258103e+05 OP +Outer_PF_coil_fence_mass_(kg)____________________________________________ (fncmass)______________________ 2.32432915617748629e+05 OP +Intercoil_support_structure_mass_(kg)____________________________________ (aintmass)_____________________ 3.99750934652176872e+06 OP +Mass_of_cooled_components_(kg)___________________________________________ (coldmass)_____________________ 3.31757146818646193e+07 OP +Gravity_support_structure_mass_(kg)______________________________________ (clgsmass)_____________________ 1.23166098781738384e+06 OP +Torus_leg_support_mass_(kg)______________________________________________ (gsm1)_________________________ 8.58195372433559241e+04 OP +Ring_beam_mass_(kg)______________________________________________________ (gsm2)_________________________ 3.91392254833061539e+05 OP +Ring_legs_mass_(kg)______________________________________________________ (gsm3)_________________________ 6.50897197246617754e+05 OP # Shield Areas and Volumes # -Area_of_inboard_shield_surface_(m^2)_____________________________________ (a_shld_inboard_surface)_______ 6.98528448095247313e+02 OP -Area_of_outboard_shield_surface_(m^2)____________________________________ (a_shld_outboard_surface)______ 8.61215688226735097e+02 OP -Total_area_of_shield_surface_(m^2)_______________________________________ (a_shld_total_surface)_________ 1.55974413632198230e+03 OP -Volume_of_inboard_shield_(m^3)___________________________________________ (vol_shld_inboard)_____________ 1.78066519139738830e+02 OP -Volume_of_outboard_shield_(m^3)__________________________________________ (vol_shld_outboard)____________ 6.07131825070329114e+02 OP -Total_volume_of_shield_(m^3)_____________________________________________ (vol_shld_total)_______________ 7.85198344210067944e+02 OP +Area_of_inboard_shield_surface_(m^2)_____________________________________ (a_shld_inboard_surface)_______ 6.98528448090633788e+02 OP +Area_of_outboard_shield_surface_(m^2)____________________________________ (a_shld_outboard_surface)______ 8.61215688221660571e+02 OP +Total_area_of_shield_surface_(m^2)_______________________________________ (a_shld_total_surface)_________ 1.55974413631229436e+03 OP +Volume_of_inboard_shield_(m^3)___________________________________________ (vol_shld_inboard)_____________ 1.78066519138605486e+02 OP +Volume_of_outboard_shield_(m^3)__________________________________________ (vol_shld_outboard)____________ 6.07131825066874171e+02 OP +Total_volume_of_shield_(m^3)_____________________________________________ (vol_shld_total)_______________ 7.85198344205479657e+02 OP # Vacuum Vessel Areas and Volumes # -Volume_of_inboard_vacuum_vessel_(m^3)____________________________________ (vol_vv_inboard)_______________ 1.42916644002839803e+02 OP -Volume_of_outboard_vacuum_vessel_(m^3)___________________________________ (vol_vv_outboard)______________ 4.42024143589710548e+02 OP -Total_volume_of_vacuum_vessel_(m^3)______________________________________ (vol_vv)_______________________ 1.01779697041103759e+03 OP +Volume_of_inboard_vacuum_vessel_(m^3)____________________________________ (vol_vv_inboard)_______________ 1.42916644001907571e+02 OP +Volume_of_outboard_vacuum_vessel_(m^3)___________________________________ (vol_vv_outboard)______________ 4.42024143587321305e+02 OP +Total_volume_of_vacuum_vessel_(m^3)______________________________________ (vol_vv)_______________________ 1.01779697040525821e+03 OP # First wall build # Radius_of_first_wall_cooling_channels_(m)________________________________ (radius_fw_channel)____________ 6.00000000000000012e-03 OP Radius_of_90_degree_coolant_channel_bend_(m)_____________________________ (radius_fw_channel_90_bend)____ 1.80000000000000021e-02 @@ -35546,12 +35541,12 @@ Radial_thickness_off_outboard_first_wall_(m)_____________________________ (dr_fw Number_of_inboard_first_wall_cooling_channels____________________________ (n_fw_inboard_channels)________ 7912 OP Number_of_outboard_first_wall_cooling_channels___________________________ (n_fw_outboard_channels)_______ 13105 OP # First wall surface loads # -Nominal_mean_radiation_load_on_vessel_first-wall_(MW/m^2)________________ (pflux_fw_rad_mw)______________ 1.77649680318215264e-01 OP +Nominal_mean_radiation_load_on_vessel_first-wall_(MW/m^2)________________ (pflux_fw_rad_mw)______________ 1.87827106920019610e-01 OP Peaking_factor_for_radiation_first-wall_load_____________________________ (f_fw_rad_max)_________________ 3.33000000000000007e+00 IP Maximum_permitted_radiation_first-wall_load_(MW/m^2)_____________________ (pflux_fw_rad_max)_____________ 1.00000000000000000e+00 IP -Peak_radiation_wall_load_(MW/m^2)________________________________________ (pflux_fw_rad_max_mw)__________ 5.91573435459656793e-01 OP -Fast_alpha_particle_power_incident_on_the_first-wall_(MW)________________ (p_fw_alpha_mw)________________ 1.63384428835724727e+01 OP -Nominal_mean_neutron_load_on_vessel_first-wall_(MW/m^2)__________________ (pflux_fw_neutron_mw)__________ 1.01656659994562149e+00 OP +Peak_radiation_wall_load_(MW/m^2)________________________________________ (pflux_fw_rad_max_mw)__________ 6.25464266043665340e-01 OP +Fast_alpha_particle_power_incident_on_the_first-wall_(MW)________________ (p_fw_alpha_mw)________________ 1.65825462593530268e+01 OP +Nominal_mean_neutron_load_on_vessel_first-wall_(MW/m^2)__________________ (pflux_fw_neutron_mw)__________ 1.03176029298796701e+00 OP # First wall pumping # First_wall_coolant_type__________________________________________________ (i_fw_coolant_type)____________ Helium Outlet_temperature_of_first_wall_coolant_[K]_____________________________ (temp_fw_coolant_out)__________ 8.23000000000000000e+02 OP @@ -35561,264 +35556,260 @@ Peak_temperature_of_first_wall_[K]_______________________________________ (temp_ # Nuclear Heating Magnets Before Renormalisation # Shield_line_density_(tonne/m2)___________________________________________ (x_shield)_____________________ 4.05600000000000005e+00 Blanket_line_density_(tonne/m2)__________________________________________ (x_blanket)____________________ 2.29112070985279770e+00 -Unit_nuclear_heating_in_TF_coil_(W/GW)___________________________________ (tfc_nuc_heating)______________ 1.25497553152805340e+04 -Total_nuclear_heating_in_TF_coil_(MW)____________________________________ (p_tf_nuclear_heat_mw.)________ 2.03940023725631067e-02 -p_fusion_total_mw________________________________________________________ (p_fusion_total_mw.)___________ 1.62505179266176174e+03 -total_mass_of_the_TF_coils_(kg)__________________________________________ (m_tf_coils_total)_____________ 9.64438279661557265e+06 +Unit_nuclear_heating_in_TF_coil_(W/GW)___________________________________ (tfc_nuc_heating)______________ 1.26480275681202402e+04 +Total_nuclear_heating_in_TF_coil_(MW)____________________________________ (p_tf_nuclear_heat_mw.)________ 2.08609919463092937e-02 +p_fusion_total_mw________________________________________________________ (p_fusion_total_mw.)___________ 1.64934744441023304e+03 +total_mass_of_the_TF_coils_(kg)__________________________________________ (m_tf_coils_total)_____________ 9.71990420726155676e+06 # Pumping for primary coolant (helium) # Pressure_drop_in_FW_and_blanket_coolant_incl._hx_and_pipes_(Pa)__________ (dp_he)________________________ 5.50000000000000000e+05 Fraction_of_FW_and_blanket_thermal_power_required_for_pumping____________ (fpump)________________________ 8.94632617126516622e-02 OP -Total_power_absorbed_by_FW_&_blanket_(MW)________________________________ (p_plasma)_____________________ 1.75169496182713465e+03 OP +Total_power_absorbed_by_FW_&_blanket_(MW)________________________________ (p_plasma)_____________________ 1.70566280748988356e+03 OP Inlet_temperature_of_FW_&_blanket_coolant_pump_(K)_______________________ (t_in_compressor)______________ 5.57026612891722721e+02 OP Coolant_pump_outlet/Inlet_temperature_of_FW_&_blanket_(K)________________ (t_in_bb)______________________ 5.73129999999999995e+02 Outlet_temperature_of_FW_&_blanket_(K)___________________________________ (t_out_bb)_____________________ 7.73129999999999995e+02 -Mechanical_pumping_power_for_FW_and_blanket_cooling_loop_including_heat_exchanger_(MW)_ (p_fw_blkt_coolant_pump_mw)____ 1.72109853695127697e+02 OP +Mechanical_pumping_power_for_FW_and_blanket_cooling_loop_including_heat_exchanger_(MW)_ (p_fw_blkt_coolant_pump_mw)____ 1.67587041492715457e+02 OP Pumping_power_for_FW_and_Blanket_multiplier_factor_______________________ (f_p_fw_blkt_pump)_____________ 1.00000000000000000e+00 IP -Mechanical_pumping_power_for_divertor_(MW)_______________________________ (p_div_coolant_pump_mw)________ 1.37644538816656148e+00 OP -Mechanical_pumping_power_for_shield_and_vacuum_vessel_(MW)_______________ (p_shld_coolant_pump_mw)_______ 7.37744228213783187e-03 OP +Mechanical_pumping_power_for_divertor_(MW)_______________________________ (p_div_coolant_pump_mw)________ 1.70426917664260658e+00 OP +Mechanical_pumping_power_for_shield_and_vacuum_vessel_(MW)_______________ (p_shld_coolant_pump_mw)_______ 7.18432631569945572e-03 OP Radius_of_blanket_cooling_channels_(m)___________________________________ (radius_blkt_channel)__________ 6.00000000000000012e-03 Radius_of_90_degree_coolant_channel_bend_(m)_____________________________ (radius_blkt_channel_90_bend)__ 1.80000000000000021e-02 Radius_of_180_degree_coolant_channel_bend_(m)____________________________ (radius_blkt_channel_180_bend)_ 9.00000000000000105e-03 # First wall and blanket : CCFE HCPB model # # Blanket Volumes and Surface Areas # -Inboard_Blanket_Volume_with_gaps_and_holes_(m3)__________________________ (vol_blkt_inboard)_____________ 3.15923926218399856e+02 -Outboard_Blanket_Volume_with_gaps_and_holes_(m3)_________________________ (vol_blkt_outboard)____________ 9.25872764878122553e+02 -Total_Blanket_Volume_with_gaps_and_holes_(m3)____________________________ (vol_blkt_total)_______________ 1.24179669109652241e+03 -Inboard_Blanket_Volume_if_toridally_continuous_(m3)______________________ (vol_blkt_inboard_full_coverage)_ 3.15923926218399856e+02 -Outboard_Blanket_Volume_if_toridally_continuous_(m3)_____________________ (vol_blkt_outboard_full_coverage)_ 1.02294625723030185e+03 -Total_Blanket_Volume_if_toridally_continuous_(m3)________________________ (vol_blkt_total_full_coverage)_ 1.33887018344870171e+03 -Inboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)____________________ (a_blkt_inboard_surface)_______ 6.63622172187553588e+02 -Outboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)___________________ (a_blkt_outboard_surface)______ 9.74646792103303142e+02 -Total_Blanket_Surface_Area_with_gaps_and_holes_(m2)______________________ (a_blkt_total_surface)_________ 1.63826896429085673e+03 -Inboard_blanket_surface_area_if_toridally_continuous_(m2)________________ (a_blkt_inboard_surface_full_coverage)_ 6.63622172187553588e+02 -Outboard_blanket_surface_area_if_toridally_continuous_(m2)_______________ (a_blkt_outboard_surface_full_coverage)_ 1.10271323882210800e+03 -Total_blanket_surface_area_if_toridally_continuous_(m2)__________________ (a_blkt_total_surface_full_coverage)_ 1.76633541100966158e+03 -Outboard_blanket_poloidal_angle_subtended_by_plasma_(degrees)____________ (deg_blkt_outboard_poloidal_plasma)_ 2.06101453060048271e+02 -Angle_fraction_of_outboard_blanket_poloidal_angle_subtended_by_plasma____ (f_deg_blkt_outboard_poloidal_plasma)_ 5.72504036277911910e-01 -Inboard_blanket_poloidal_angle_subtended_by_plasma_(degrees)_____________ (deg_blkt_inboard_poloidal_plasma)_ 1.27797093879903457e+02 -Angle_fraction_of_inboard_blanket_poloidal_angle_subtended_by_plasma_____ (f_deg_blkt_inboard_poloidal_plasma)_ 3.54991927444176292e-01 +Inboard_Blanket_Volume_with_gaps_and_holes_(m3)__________________________ (vol_blkt_inboard)_____________ 3.15923926216322457e+02 +Outboard_Blanket_Volume_with_gaps_and_holes_(m3)_________________________ (vol_blkt_outboard)____________ 8.68976186128291488e+02 +Total_Blanket_Volume_with_gaps_and_holes_(m3)____________________________ (vol_blkt_total)_______________ 1.18490011234461394e+03 +Inboard_Blanket_Volume_if_toridally_continuous_(m3)______________________ (vol_blkt_inboard_full_coverage)_ 3.15923926216322457e+02 +Outboard_Blanket_Volume_if_toridally_continuous_(m3)_____________________ (vol_blkt_outboard_full_coverage)_ 1.02294625722391947e+03 +Total_Blanket_Volume_if_toridally_continuous_(m3)________________________ (vol_blkt_total_full_coverage)_ 1.33887018344024182e+03 +Inboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)____________________ (a_blkt_inboard_surface)_______ 6.63622172183134126e+02 +Outboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)___________________ (a_blkt_outboard_surface)______ 8.99584666550174916e+02 +Total_Blanket_Surface_Area_with_gaps_and_holes_(m2)______________________ (a_blkt_total_surface)_________ 1.56320683873330904e+03 +Inboard_blanket_surface_area_if_toridally_continuous_(m2)________________ (a_blkt_inboard_surface_full_coverage)_ 6.63622172183134126e+02 +Outboard_blanket_surface_area_if_toridally_continuous_(m2)_______________ (a_blkt_outboard_surface_full_coverage)_ 1.10271323881495505e+03 +Total_blanket_surface_area_if_toridally_continuous_(m2)__________________ (a_blkt_total_surface_full_coverage)_ 1.76633541099808917e+03 Titanium_beryllide_fraction______________________________________________ (f_vol_blkt_tibe12)____________ 3.75000000000000000e-01 OP Lithium_orthosilicate_fraction___________________________________________ (f_vol_blkt_li4sio4)___________ 3.75000000000000000e-01 OP Steel_fraction___________________________________________________________ (f_vol_blkt_steel)_____________ 9.70499999999999974e-02 OP Coolant_fraction_________________________________________________________ (vfcblkt)______________________ 5.29499999999999971e-02 Purge_gas_fraction_______________________________________________________ (vfpblkt)______________________ 1.00000000000000006e-01 -First_Wall_Armour_Volume_(m3)____________________________________________ (fw_armour_vol)________________ 5.86921388587597459e+00 OP -First_Wall_Volume_(m3)___________________________________________________ (vol_fw_total)_________________ 2.07580138184142697e+01 OP -Blanket_Volume_(m3)______________________________________________________ (vol_blkt_total)_______________ 1.24179669109652241e+03 OP -Shield_Volume_(m3)_______________________________________________________ (vol_shld_total)_______________ 7.85198344210067944e+02 OP -Vacuum_vessel_volume_(m3)________________________________________________ (vol_vv)_______________________ 1.01779697041103759e+03 OP -First_Wall_Armour_Mass_(kg)______________________________________________ (fw_armour_mass)_______________ 1.12982367303112507e+05 OP -First_Wall_Mass,_excluding_armour_(kg)___________________________________ (m_fw_total)___________________ 1.61912507783631299e+05 OP -Blanket_Mass_-_Total(kg)_________________________________________________ (m_blkt_total)_________________ 3.11006739488432929e+06 OP -____Blanket_Mass_-_TiBe12_(kg)___________________________________________ (m_blkt_tibe12)________________ 1.05242269570430275e+06 OP -____Blanket_Mass_-_Li4SiO4_(kg)__________________________________________ (m_blkt_li4sio4)_______________ 1.11761702198687010e+06 OP -____Blanket_Mass_-_Steel_(kg)____________________________________________ (m_blkt_steel_total)___________ 9.40027677193156560e+05 OP -Total_mass_of_armour,_first_wall_and_blanket_(kg)________________________ (armour_fw_bl_mass)____________ 3.38496226997107314e+06 OP -Shield_Mass_(kg)_________________________________________________________ (whtshld)______________________ 2.44981883393541211e+06 OP -Vacuum_vessel_mass_(kg)__________________________________________________ (m_vv)_________________________ 7.93881636920609325e+06 OP -Total_nuclear_heating_in_TF+PF_coils_(CS_is_negligible)_(MW)_____________ (p_tf_nuclear_heat_mw)_________ 2.21309490634443128e-02 OP -Total_nuclear_heating_in_FW_(MW)_________________________________________ (p_fw_nuclear_heat_total_mw)___ 1.78453552104871079e+02 OP -Total_nuclear_heating_in_the_blanket_(including_f_p_blkt_multiplication)_(MW)_ (p_blkt_nuclear_heat_total_mw)_ 1.34667109201281642e+03 OP -Total_nuclear_heating_in_the_shield_(MW)_________________________________ (p_shld_nuclear_heat_mw)_______ 1.47548845642756632e+00 OP -Total_nuclear_heating_in_the_divertor_(MW)_______________________________ (p_div_nuclear_heat_total_mw)__ 9.40416251196836583e+01 OP -Blanket_exponential_factor_______________________________________________ (exp_blanket)__________________ 9.99547411335210967e-01 OP +First_Wall_Armour_Volume_(m3)____________________________________________ (fw_armour_vol)________________ 5.86921388583391845e+00 OP +First_Wall_Volume_(m3)___________________________________________________ (vol_fw_total)_________________ 1.98069241783592851e+01 OP +Blanket_Volume_(m3)______________________________________________________ (vol_blkt_total)_______________ 1.18490011234461394e+03 OP +Shield_Volume_(m3)_______________________________________________________ (vol_shld_total)_______________ 7.85198344205479657e+02 OP +Vacuum_vessel_volume_(m3)________________________________________________ (vol_vv)_______________________ 1.01779697040525821e+03 OP +First_Wall_Armour_Mass_(kg)______________________________________________ (fw_armour_mass)_______________ 1.12982367302302926e+05 OP +First_Wall_Mass,_excluding_armour_(kg)___________________________________ (m_fw_total)___________________ 1.54494008591202437e+05 OP +Blanket_Mass_-_Total(kg)_________________________________________________ (m_blkt_total)_________________ 2.96757048236596212e+06 OP +____Blanket_Mass_-_TiBe12_(kg)___________________________________________ (m_blkt_tibe12)________________ 1.00420284521206026e+06 OP +____Blanket_Mass_-_Li4SiO4_(kg)__________________________________________ (m_blkt_li4sio4)_______________ 1.06641010111015243e+06 OP +____Blanket_Mass_-_Steel_(kg)____________________________________________ (m_blkt_steel_total)___________ 8.96957536043749307e+05 OP +Total_mass_of_armour,_first_wall_and_blanket_(kg)________________________ (armour_fw_bl_mass)____________ 3.23504685825946741e+06 OP +Shield_Mass_(kg)_________________________________________________________ (whtshld)______________________ 2.44981883392109675e+06 OP +Vacuum_vessel_mass_(kg)__________________________________________________ (m_vv)_________________________ 7.93881636916101445e+06 OP +Total_nuclear_heating_in_TF+PF_coils_(CS_is_negligible)_(MW)_____________ (p_tf_nuclear_heat_mw)_________ 2.17203997188253929e-02 OP +Total_nuclear_heating_in_FW_(MW)_________________________________________ (p_fw_nuclear_heat_total_mw)___ 1.65819907624501838e+02 OP +Total_nuclear_heating_in_the_blanket_(including_f_p_blkt_multiplication)_(MW)_ (p_blkt_nuclear_heat_total_mw)_ 1.31116866758367496e+03 OP +Total_nuclear_heating_in_the_shield_(MW)_________________________________ (p_shld_nuclear_heat_mw)_______ 1.43686526313989105e+00 OP +Total_nuclear_heating_in_the_divertor_(MW)_______________________________ (p_div_nuclear_heat_total_mw)__ 1.51390545961426199e+02 OP +Blanket_exponential_factor_______________________________________________ (exp_blanket)__________________ 9.99355930883807364e-01 OP Shield:_first_exponential________________________________________________ (exp_shield1)__________________ 1.95234963072531500e-03 OP -Shield:_second_exponential_______________________________________________ (exp_shield2)__________________ 2.54267605910139416e-01 OP -Solid_angle_fraction_taken_by_on_divertor________________________________ (f_ster_div_single)____________ 7.25040362779118680e-02 +Shield:_second_exponential_______________________________________________ (exp_shield2)__________________ 2.54267605910139305e-01 OP +Solid_angle_fraction_taken_by_on_divertor________________________________ (f_ster_div_single)____________ 1.15000000000000005e-01 Fraction_of_outboard_first_wall_area_covered_by_HCD_and_diagnostics______ (f_a_fw_outboard_hcd)__________ 0.00000000000000000e+00 Switch_for_plant_secondary_cycle_________________________________________ (i_thermal_electric_conversion)_ 2 First_wall_coolant_pressure_(Pa)_________________________________________ (pres_fw_coolant)______________ 1.55000000000000000e+07 Blanket_coolant_pressure_(Pa)____________________________________________ (pres_blkt_coolant)____________ 1.55000000000000000e+07 Allowable_nominal_neutron_fluence_at_first_wall_(MW.year/m2)_____________ (abktflnc)_____________________ 5.00000000000000000e+00 -Blanket_half_height_(m)__________________________________________________ (dz_blkt_half)_________________ 5.95327524883681658e+00 +Blanket_half_height_(m)__________________________________________________ (dz_blkt_half)_________________ 5.95327524881914183e+00 No_of_inboard_blanket_modules_poloidally_________________________________ (n_blkt_inboard_modules_poloidal)_ 7 No_of_inboard_blanket_modules_toroidally_________________________________ (n_blkt_inboard_modules_toroidal)_ 32 No_of_outboard_blanket_modules_poloidally________________________________ (n_blkt_outboard_modules_poloidal)_ 8 No_of_outboard_blanket_modules_toroidally________________________________ (n_blkt_outboard_modules_toroidal)_ 48 Isentropic_efficiency_of_first_wall_/_blanket_coolant_pumps______________ (etaiso)_______________________ 9.00000000000000022e-01 -First_wall_area_(m^2)____________________________________________________ (a_fw_total)___________________ 1.68147345537228557e+03 -First_wall_area,_no_holes_(m^2)__________________________________________ (a_fw_total_full_coverage)_____ 1.81291727526710497e+03 -Divertor_area_(m2)_______________________________________________________ (a_div_surface_total)__________ 1.48785828080430747e+02 -Divertor_mass_(kg)_______________________________________________________ (m_div_plate)__________________ 3.64525278797055289e+04 +First_wall_area_(m^2)____________________________________________________ (a_fw_total)___________________ 1.60443178860099897e+03 +First_wall_area,_no_holes_(m^2)__________________________________________ (a_fw_total_full_coverage)_____ 1.81291727525536589e+03 +Divertor_area_(m2)_______________________________________________________ (a_div_surface_total)__________ 1.48785828079364620e+02 +Divertor_mass_(kg)_______________________________________________________ (m_div_plate)__________________ 3.64525278794443293e+04 # Superconducting TF Coil Power Conversion # -TF_coil_current_(kA)_____________________________________________________ (itfka)________________________ 8.28453020801330382e+01 OP +TF_coil_current_(kA)_____________________________________________________ (itfka)________________________ 8.23347095886034452e+01 OP Number_of_TF_coils_______________________________________________________ (ntfc)_________________________ 1.60000000000000000e+01 -Voltage_across_a_TF_coil_during_quench_(kV)______________________________ (v_tf_coil_dump_quench_kv)_____ 8.36818226644945184e+00 OP +Voltage_across_a_TF_coil_during_quench_(kV)______________________________ (v_tf_coil_dump_quench_kv)_____ 8.41752959308131032e+00 OP TF_coil_charge_time_(hours)______________________________________________ (tchghr)_______________________ 4.00000000000000000e+00 -Total_inductance_of_TF_coils_(H)_________________________________________ (ltfth)________________________ 3.09361153046076929e+01 OP +Total_inductance_of_TF_coils_(H)_________________________________________ (ltfth)________________________ 3.15507391606828129e+01 OP Total_resistance_of_TF_coils_(ohm)_______________________________________ (rcoils)_______________________ 0.00000000000000000e+00 OP -TF_coil_charging_voltage_(V)_____________________________________________ (tfcv)_________________________ 2.52218677202519928e+02 +TF_coil_charging_voltage_(V)_____________________________________________ (tfcv)_________________________ 2.54635977792960745e+02 Number_of_DC_circuit_breakers____________________________________________ (ntfbkr)_______________________ 1.60000000000000000e+01 Number_of_dump_resistors_________________________________________________ (ndumpr)_______________________ 6.40000000000000000e+01 -Resistance_per_dump_resistor_(ohm)_______________________________________ (r1dump)_______________________ 1.01009738106274685e-01 OP -Dump_resistor_peak_power_(MW)____________________________________________ (r1ppmw)_______________________ 1.73316146931404290e+02 OP -Energy_supplied_per_dump_resistor_(MJ)___________________________________ (r1emj)________________________ 1.65878806231152521e+03 OP -TF_coil_L/R_time_constant_(s)____________________________________________ (ttfsec)_______________________ 1.91417901163518813e+01 OP -Power_supply_voltage_(V)_________________________________________________ (tfpsv)________________________ 2.64829611062645938e+02 OP -Power_supply_current_(kA)________________________________________________ (tfpska)_______________________ 8.69875671841396922e+01 OP -DC_power_supply_rating_(kW)______________________________________________ (tfckw)________________________ 2.30368835846615002e+04 OP -AC_power_for_charging_(kW)_______________________________________________ (tfackw)_______________________ 2.55965373162905562e+04 OP -TF_coil_resistive_power_(MW)_____________________________________________ (rpower)_______________________ 6.15032668826879370e+00 OP -TF_coil_inductive_power_(MVA)____________________________________________ (xpower)_______________________ 1.47448058148255328e+01 OP +Resistance_per_dump_resistor_(ohm)_______________________________________ (r1dump)_______________________ 1.02235492602580857e-01 OP +Dump_resistor_peak_power_(MW)____________________________________________ (r1ppmw)_______________________ 1.73263713624956267e+02 OP +Energy_supplied_per_dump_resistor_(MJ)___________________________________ (r1emj)________________________ 1.67095519920613310e+03 OP +TF_coil_L/R_time_constant_(s)____________________________________________ (ttfsec)_______________________ 1.92880295027100601e+01 OP +Power_supply_voltage_(V)_________________________________________________ (tfpsv)________________________ 2.67367776682608792e+02 OP +Power_supply_current_(kA)________________________________________________ (tfpska)_______________________ 8.64514450680336211e+01 OP +DC_power_supply_rating_(kW)______________________________________________ (tfckw)________________________ 2.31143306588388332e+04 OP +AC_power_for_charging_(kW)_______________________________________________ (tfackw)_______________________ 2.56825896209320344e+04 OP +TF_coil_resistive_power_(MW)_____________________________________________ (rpower)_______________________ 6.11242097062788314e+00 OP +TF_coil_inductive_power_(MVA)____________________________________________ (xpower)_______________________ 1.48529583117656152e+01 OP Aluminium_bus_current_density_(kA/cm2)___________________________________ (djmka)________________________ 1.25000000000000000e-01 -Aluminium_bus_cross-sectional_area_(cm2)_________________________________ (albusa)_______________________ 6.62762416641064306e+02 OP -Total_length_of_TF_coil_bussing_(m)______________________________________ (len_tf_bus)___________________ 3.19306192986928272e+03 OP -Aluminium_bus_weight_(tonnes)____________________________________________ (albuswt)______________________ 5.71385189103681455e+02 OP -Total_TF_coil_bus_resistance_(ohm)_______________________________________ (rtfbus)_______________________ 8.96112247833348694e-04 OP -TF_coil_bus_voltage_drop_(V)_____________________________________________ (vtfbus)_______________________ 7.42386898694608135e+01 OP -Dump_resistor_floor_area_(m2)____________________________________________ (drarea)_______________________ 4.49702277447506822e+03 OP -TF_coil_power_conversion_floor_space_(m2)________________________________ (tfcfsp)_______________________ 1.59016019006273837e+03 OP -TF_coil_power_conv._building_volume_(m3)_________________________________ (tfcbv)________________________ 9.54096114037643019e+03 OP -TF_coil_AC_inductive_power_demand_(MW)___________________________________ (xpwrmw)_______________________ 1.63831175720283682e+01 OP -Total_steady_state_AC_power_demand_(MW)__________________________________ (p_tf_electric_supplies_mw)____ 6.83369632029865937e+00 OP +Aluminium_bus_cross-sectional_area_(cm2)_________________________________ (albusa)_______________________ 6.58677676708827562e+02 OP +Total_length_of_TF_coil_bussing_(m)______________________________________ (len_tf_bus)___________________ 3.19306192986271571e+03 OP +Aluminium_bus_weight_(tonnes)____________________________________________ (albuswt)______________________ 5.67863625658332353e+02 OP +Total_TF_coil_bus_resistance_(ohm)_______________________________________ (rtfbus)_______________________ 9.01669420348378409e-04 OP +TF_coil_bus_voltage_drop_(V)_____________________________________________ (vtfbus)_______________________ 7.42386898693081463e+01 OP +Dump_resistor_floor_area_(m2)____________________________________________ (drarea)_______________________ 4.51898407246440911e+03 OP +TF_coil_power_conversion_floor_space_(m2)________________________________ (tfcfsp)_______________________ 1.59046345045626185e+03 OP +TF_coil_power_conv._building_volume_(m3)_________________________________ (tfcbv)________________________ 9.54278070273757112e+03 OP +TF_coil_AC_inductive_power_demand_(MW)___________________________________ (xpwrmw)_______________________ 1.65032870130729066e+01 OP +Total_steady_state_AC_power_demand_(MW)__________________________________ (p_tf_electric_supplies_mw)____ 6.79157885625320290e+00 OP # PF Coils and Central Solenoid: Power and Energy # Number_of_PF_coil_circuits_______________________________________________ (pfckts)_______________________ 1.20000000000000000e+01 -Sum_of_PF_power_supply_ratings_(MVA)_____________________________________ (spsmva)_______________________ 2.34231585473357541e+02 OP -Total_PF_coil_circuit_bus_length_(m)_____________________________________ (spfbusl)______________________ 2.44800000001656463e+03 OP -Total_PF_coil_bus_resistive_power_(kW)___________________________________ (pfbuspwr)_____________________ 9.66345009557085177e+02 OP -Total_PF_coil_resistive_power_(kW)_______________________________________ (srcktpm)______________________ 9.66345009557085177e+02 OP +Sum_of_PF_power_supply_ratings_(MVA)_____________________________________ (spsmva)_______________________ 2.41203632444709370e+02 OP +Total_PF_coil_circuit_bus_length_(m)_____________________________________ (spfbusl)______________________ 2.44800000001381295e+03 OP +Total_PF_coil_bus_resistive_power_(kW)___________________________________ (pfbuspwr)_____________________ 9.67009533516270835e+02 OP +Total_PF_coil_resistive_power_(kW)_______________________________________ (srcktpm)______________________ 9.67009533516270835e+02 OP Maximum_PF_coil_voltage_(kV)_____________________________________________ (vpfskv)_______________________ 2.00000000000000000e+01 Efficiency_of_transfer_of_PF_stored_energy_into_or_out_of_storage________ (etapsu)_______________________ 9.00000000000000022e-01 -Maximum_stored_energy_in_poloidal_field_(MJ)_____________________________ (ensxpfm)______________________ 2.36041549616187658e+04 OP -Peak_absolute_rate_of_change_of_stored_energy_in_poloidal_field_(MW)_____ (peakpoloidalpower)____________ 1.43482549874590461e+02 OP +Maximum_stored_energy_in_poloidal_field_(MJ)_____________________________ (ensxpfm)______________________ 2.42764409778734953e+04 OP +Peak_absolute_rate_of_change_of_stored_energy_in_poloidal_field_(MW)_____ (peakpoloidalpower)____________ 1.44964303745405402e+02 OP # Electric Power Requirements # Divertor_coil_power_supplies_(MW)________________________________________ (bdvmw)________________________ 0.00000000000000000e+00 -Cryoplant_electric_power_(MW)____________________________________________ (crymw)________________________ 4.23723590012693521e+01 OP -Primary_coolant_pumps_(MW)_______________________________________________ (p_coolant_pump_elec_total_mw..)_ 1.99418018994915400e+02 OP -PF_coil_power_supplies_(MW)______________________________________________ (ppfmw)________________________ 7.47379419858577450e+01 OP -TF_coil_power_supplies_(MW)______________________________________________ (ptfmw)________________________ 6.83369632029865937e+00 OP -Plasma_heating_supplies_(MW)_____________________________________________ (pheatingmw)___________________ 1.58398471980149907e+02 OP +Cryoplant_electric_power_(MW)____________________________________________ (crymw)________________________ 4.24403778307762991e+01 OP +Primary_coolant_pumps_(MW)_______________________________________________ (p_coolant_pump_elec_total_mw..)_ 1.94595971259395128e+02 OP +PF_coil_power_supplies_(MW)______________________________________________ (ppfmw)________________________ 7.65293487291959593e+01 OP +TF_coil_power_supplies_(MW)______________________________________________ (ptfmw)________________________ 6.79157885625320290e+00 OP +Plasma_heating_supplies_(MW)_____________________________________________ (pheatingmw)___________________ 1.69206690634964701e+02 OP Tritium_processing_(MW)__________________________________________________ (p_tritium_plant_electric_mw..)_ 1.50000000000000000e+01 Vacuum_pumps__(MW)_______________________________________________________ (vachtmw..)____________________ 5.00000000000000000e-01 -Total_pulsed_power_(MW)__________________________________________________ (pacpmw)_______________________ 4.97260488282491053e+02 OP -Total_base_power_required_at_all_times_(MW)______________________________ (p_plant_electric_base_total_mw)_ 5.52103165691735711e+01 OP +Total_pulsed_power_(MW)__________________________________________________ (pacpmw)_______________________ 5.05063967310585326e+02 OP +Total_base_power_required_at_all_times_(MW)______________________________ (p_plant_electric_base_total_mw)_ 5.52368619287732798e+01 OP # Cryogenics # -Conduction_and_radiation_heat_loads_on_cryogenic_components_(MW)_________ (qss/1.0d6)____________________ 2.50661128601937441e-02 OP +Conduction_and_radiation_heat_loads_on_cryogenic_components_(MW)_________ (qss/1.0d6)____________________ 2.51856460795814273e-02 OP Nuclear_heating_of_cryogenic_components_(MW)_____________________________ (qnuc/1.0d6)___________________ 1.29999999999999994e-02 OP -AC_losses_in_cryogenic_components_(MW)___________________________________ (qac/1.0d6)____________________ 3.13091425480742933e-03 OP -Resistive_losses_in_current_leads_(MW)___________________________________ (qcl/1.0d6)____________________ 1.80271377326369463e-02 OP -45%_allowance_for_heat_loads_in_transfer_lines,_storage_tanks_etc_(MW)___ (qmisc/1.0d6)__________________ 2.66508741814371584e-02 OP -Sum_=_Total_heat_removal_at_cryogenic_temperatures_(temp_tf_cryo_&_temp_cp_coolant_inlet)_(MW)_ (helpow_+_helpow_cryal/1.0d6)__ 8.58750390290752702e-02 OP +AC_losses_in_cryogenic_components_(MW)___________________________________ (qac/1.0d6)____________________ 3.21755639113049724e-03 OP +Resistive_losses_in_current_leads_(MW)___________________________________ (qcl/1.0d6)____________________ 1.79160328064801068e-02 OP +45%_allowance_for_heat_loads_in_transfer_lines,_storage_tanks_etc_(MW)___ (qmisc/1.0d6)__________________ 2.66936558747364154e-02 OP +Sum_=_Total_heat_removal_at_cryogenic_temperatures_(temp_tf_cryo_&_temp_cp_coolant_inlet)_(MW)_ (helpow_+_helpow_cryal/1.0d6)__ 8.60128911519284223e-02 OP Temperature_of_cryogenic_superconducting_components_(K)__________________ (temp_tf_cryo)_________________ 4.50000000000000000e+00 Temperature_of_cryogenic_aluminium_components_(K)________________________ (temp_cp_coolant_inlet)________ 3.13149999999999977e+02 -Electric_power_for_cryogenic_plant_(MW)__________________________________ (p_cryo_plant_electric_mw)_____ 4.23723590012693521e+01 OP +Electric_power_for_cryogenic_plant_(MW)__________________________________ (p_cryo_plant_electric_mw)_____ 4.24403778307762991e+01 OP # Plant Heat Transport Balance # -Neutronic_nuclear_heat_deposited_in_FW_[MW]______________________________ (p_fw_nuclear_heat_total_mw)___ 1.78453552104871079e+02 -Radiation_heat_deposited_in_FW_[MW]______________________________________ (p_fw_rad_total_mw)____________ 2.10231874825874684e+02 -Lost_alpha-particle_heat_deposited_in_FW_[MW]____________________________ (p_fw_alpha_mw)________________ 1.63384428835724727e+01 +Neutronic_nuclear_heat_deposited_in_FW_[MW]______________________________ (p_fw_nuclear_heat_total_mw)___ 1.65819907624501838e+02 +Radiation_heat_deposited_in_FW_[MW]______________________________________ (p_fw_rad_total_mw)____________ 2.12091686022353741e+02 +Lost_alpha-particle_heat_deposited_in_FW_[MW]____________________________ (p_fw_alpha_mw)________________ 1.65825462593530268e+01 Neutral_beam_shine-through_heat_deposited_in_FW_[MW]_____________________ (p_beam_shine_through_mw)______ 0.00000000000000000e+00 Neutral_beam_orbit_loss_heat_deposited_in_FW_[MW]________________________ (p_beam_orbit_loss_mw)_________ 0.00000000000000000e+00 Mechancial_pumping_power_deposited_in_FW_coolant_[MW]____________________ (p_fw_coolant_pump_mw)_________ 0.00000000000000000e+00 -Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 4.05023869814318232e+02 -Total_neutronic_nuclear_heat_deposited_and_created_in_Blanket(s)_[MW]____ (p_blkt_nuclear_heat_total_mw)_ 1.34667109201281642e+03 -Total_multiplication_neutronic_nuclear_heat_created_in_Blanket(s)_[MW]___ (p_blkt_multiplication_mw)_____ 3.23610235530129955e+02 +Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 3.94494139906208602e+02 +Total_neutronic_nuclear_heat_deposited_and_created_in_Blanket(s)_[MW]____ (p_blkt_nuclear_heat_total_mw)_ 1.31116866758367496e+03 +Total_multiplication_neutronic_nuclear_heat_created_in_Blanket(s)_[MW]___ (p_blkt_multiplication_mw)_____ 3.13398176733103639e+02 Neutron_nuclear_heat_multiplication_factor_in_Blanket(s)_________________ (f_p_blkt_multiplication)______ 1.26899999999999991e+00 Mechancial_pumping_power_deposited_in_Blanket(s)_coolant_[MW]____________ (p_blkt_coolant_pump_mw)_______ 0.00000000000000000e+00 -Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.34667109201281642e+03 -Mechancial_pumping_power_deposited_in_Blanket(s)_and_FW_coolant_[MW]_____ (p_fw_blkt_coolant_pump_mw)____ 1.72109853695127697e+02 -Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.92380481552226229e+03 -Neutronic_nuclear_heat_deposited_in_VV_shield_[MW]_______________________ (p_shld_nuclear_heat_mw)_______ 1.47548845642756632e+00 +Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.31116866758367496e+03 +Mechancial_pumping_power_deposited_in_Blanket(s)_and_FW_coolant_[MW]_____ (p_fw_blkt_coolant_pump_mw)____ 1.67587041492715457e+02 +Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.87324984898259891e+03 +Neutronic_nuclear_heat_deposited_in_VV_shield_[MW]_______________________ (p_shld_nuclear_heat_mw)_______ 1.43686526313989105e+00 Neutronic_nuclear_heat_deposited_in_ST_centrepost_shield_[MW]____________ (p_cp_shield_nuclear_heat_mw)__ 0.00000000000000000e+00 -Mechancial_pumping_power_deposited_in_shield_coolant(s)_[MW]_____________ (p_shld_coolant_pump_mw)_______ 7.37744228213783187e-03 -Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.48286589870970409e+00 -Plasma_separatrix_power_deposited_in_divertor_[MW]_______________________ (p_plasma_separatrix_mw)_______ 1.64813246786221384e+02 -Neutronic_nuclear_heat_deposited_in_divertor_[MW]________________________ (p_div_nuclear_heat_total_mw)__ 9.40416251196836583e+01 -Radiation_heat_deposited_in_divertor_[MW]________________________________ (p_div_rad_total_mw)___________ 1.64342057274072459e+01 -Mechancial_pumping_power_deposited_in_divertor_coolant_[MW]______________ (p_div_coolant_pump_mw)________ 1.37644538816656148e+00 -Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 2.76665523021478862e+02 -Mechanical_pumping_power_of_all_coolant_pumps_[MW]_______________________ (p_coolant_pump_total_mw)______ 1.73493676525576404e+02 -Electric_power_for_core_plant_systems_[MW]_______________________________ (p_plant_core_systems_elec_mw)_ 1.22959845541011447e+02 -Wall_plug_losses_in_H&CD_systems_[MW]____________________________________ (p_hcd_electric_loss_mw)_______ 7.91992359900749534e+01 -Total_wall_plug_losses_in_coolant_pump_systems_[MW]______________________ (p_coolant_pump_loss_total_mw)_ 2.59243424693389954e+01 +Mechancial_pumping_power_deposited_in_shield_coolant(s)_[MW]_____________ (p_shld_coolant_pump_mw)_______ 7.18432631569945572e-03 +Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.44404958945559048e+00 +Plasma_separatrix_power_deposited_in_divertor_[MW]_______________________ (p_plasma_separatrix_mw)_______ 1.61903352765320307e+02 +Neutronic_nuclear_heat_deposited_in_divertor_[MW]________________________ (p_div_nuclear_heat_total_mw)__ 1.51390545961426199e+02 +Radiation_heat_deposited_in_divertor_[MW]________________________________ (p_div_rad_total_mw)___________ 2.75599366017747798e+01 +Mechancial_pumping_power_deposited_in_divertor_coolant_[MW]______________ (p_div_coolant_pump_mw)________ 1.70426917664260658e+00 +Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 3.42558104505163897e+02 +Mechanical_pumping_power_of_all_coolant_pumps_[MW]_______________________ (p_coolant_pump_total_mw)______ 1.69298494995673764e+02 +Electric_power_for_core_plant_systems_[MW]_______________________________ (p_plant_core_systems_elec_mw)_ 1.23090828438826264e+02 +Wall_plug_losses_in_H&CD_systems_[MW]____________________________________ (p_hcd_electric_loss_mw)_______ 8.46033453174823507e+01 +Total_wall_plug_losses_in_coolant_pump_systems_[MW]______________________ (p_coolant_pump_loss_total_mw)_ 2.52974762637213644e+01 Divertor_thermal_power_not_used_for_electricity_production_[MW]__________ (p_div_secondary_heat_mw)______ 0.00000000000000000e+00 Shield_thermal_power_not_used_for_electricity_production_[MW]____________ (p_shld_secondary_heat_mw)_____ 0.00000000000000000e+00 -Neutronic_nuclear_heating_in_TF_coils_[MW]_______________________________ (p_tf_nuclear_heat_mw)_________ 2.21309490634443128e-02 +Neutronic_nuclear_heating_in_TF_coils_[MW]_______________________________ (p_tf_nuclear_heat_mw)_________ 2.17203997188253929e-02 Neutronic_nuclear_heating_in_H&CD_systems_and_diagnostics_[MW]___________ (p_fw_hcd_nuclear_heat_mw)_____ 0.00000000000000000e+00 Radiation_heat_deposited_in_H&CD_systems_and_diagnostics_[MW]____________ (p_fw_hcd_rad_total_mw)________ 0.00000000000000000e+00 Total_heat_deposited_in_in_H&CD_systems_and_diagnostics_[MW]_____________ (p_hcd_secondary_heat_mw)______ 0.00000000000000000e+00 -Total_secondary_heat_not_used_for_electricity_production_[MW]____________ (p_plant_secondary_heat_mw)____ 2.28105554949488834e+02 -Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 4.05023869814318232e+02 -Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.34667109201281642e+03 -Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.92380481552226229e+03 -Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.48286589870970409e+00 -Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 2.76665523021478862e+02 -Fraction_of_total_primary_heat_originating_from_divertor_________________ (f_p_div_primary_heat)_________ 1.25645505301068550e-01 -Total_primary_thermal_power_used_for_electricity_production_[MW]_________ (p_plant_primary_heat_mw)______ 2.20195320444245090e+03 +Total_secondary_heat_not_used_for_electricity_production_[MW]____________ (p_plant_secondary_heat_mw)____ 2.33013370419748782e+02 +Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 3.94494139906208602e+02 +Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.31116866758367496e+03 +Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.87324984898259891e+03 +Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.44404958945559048e+00 +Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 3.42558104505163897e+02 +Fraction_of_total_primary_heat_originating_from_divertor_________________ (f_p_div_primary_heat)_________ 1.54496694119452299e-01 +Total_primary_thermal_power_used_for_electricity_production_[MW]_________ (p_plant_primary_heat_mw)______ 2.21725200307721843e+03 # Plant Electricity Production # -Total_high_grade_thermal_power_used_for_electricity_production_[MWth]____ (p_plant_primary_heat_mw)______ 2.20195320444245090e+03 +Total_high_grade_thermal_power_used_for_electricity_production_[MWth]____ (p_plant_primary_heat_mw)______ 2.21725200307721843e+03 Thermal_to_electric_conversion_efficiency_of_the_turbine_________________ (eta_turbine)__________________ 4.00000000000000022e-01 -Total_thermal_power_lost_in_power_conversion_[MWth]______________________ (p_turbine_loss_mw)____________ 1.32117192266547045e+03 -Total_electric_power_produced_[MWe]______________________________________ (p_plant_electric_gross_mw)____ 8.80781281776980450e+02 +Total_thermal_power_lost_in_power_conversion_[MWth]______________________ (p_turbine_loss_mw)____________ 1.33035120184633092e+03 +Total_electric_power_produced_[MWe]______________________________________ (p_plant_electric_gross_mw)____ 8.86900801230887396e+02 Base_plant_electric_load_[We]____________________________________________ (p_plant_electric_base)________ 5.00000000000000000e+06 Electric_power_per_unit_area_of_plant_floor_space_[We/m^2]_______________ (pflux_plant_floor_electric)___ 1.50000000000000000e+02 -Effective_area_of_plant_buildings_floor_[m^2]____________________________ (a_plant_floor_effective)______ 3.34735443794490478e+05 -Total_base_plant_electric_load_[MWe]_____________________________________ (p_plant_electric_base_total_mw)_ 5.52103165691735711e+01 -Electric_power_demand_for_cryo_plant_[MWe]_______________________________ (p_cryo_plant_electric_mw)_____ 4.23723590012693521e+01 +Effective_area_of_plant_buildings_floor_[m^2]____________________________ (a_plant_floor_effective)______ 3.34912412858488562e+05 +Total_base_plant_electric_load_[MWe]_____________________________________ (p_plant_electric_base_total_mw)_ 5.52368619287732798e+01 +Electric_power_demand_for_cryo_plant_[MWe]_______________________________ (p_cryo_plant_electric_mw)_____ 4.24403778307762991e+01 Electric_power_demand_for_tritium_plant_[MWe]____________________________ (p_tritium_plant_electric_mw)__ 1.50000000000000000e+01 Electric_power_demand_for_vacuum_pumps_[MWe]_____________________________ (vachtmw)______________________ 5.00000000000000000e-01 -Electric_power_demand_for_TF_coil_system_[MWe]___________________________ (p_tf_electric_supplies_mw)____ 6.83369632029865937e+00 -Electric_power_demand_for_PF_coil_system_[MWe]___________________________ (p_pf_electric_supplies_mw)____ 3.04347365026987005e+00 +Electric_power_demand_for_TF_coil_system_[MWe]___________________________ (p_tf_electric_supplies_mw)____ 6.79157885625320290e+00 +Electric_power_demand_for_PF_coil_system_[MWe]___________________________ (p_pf_electric_supplies_mw)____ 3.12200982302349539e+00 Electric_power_demand_for_CP_coolant_pumps_[MWe]_________________________ (p_cp_coolant_pump_elec_mw)____ 0.00000000000000000e+00 -Electric_power_demand_of_core_plant_systems_needed_at_all_times_[MWe]____ (p_plant_core_systems_elec_mw)_ 1.22959845541011447e+02 -Electric_power_demand_of_FW_and_Blanket_coolant_pumps_[MWe]______________ (p_fw_blkt_coolant_pump_elec_mw)_ 1.97827418040376671e+02 +Electric_power_demand_of_core_plant_systems_needed_at_all_times_[MWe]____ (p_plant_core_systems_elec_mw)_ 1.23090828438826264e+02 +Electric_power_demand_of_FW_and_Blanket_coolant_pumps_[MWe]______________ (p_fw_blkt_coolant_pump_elec_mw)_ 1.92628783324960295e+02 Electric_power_demand_of_Blanket_secondary_breeder_coolant_pumps_[MWe]___ (p_blkt_breeder_pump_elec_mw)__ 0.00000000000000000e+00 -Electric_power_demand_of_VV_and_Shield_coolant_pumps_[MWe]_______________ (p_shld_coolant_pump_elec_mw)__ 8.47981871510095596e-03 -Electric_power_demand_of_Divertor_colant_pumps_[MWe]_____________________ (p_div_coolant_pump_elec_mw)___ 1.58212113582363378e+00 +Electric_power_demand_of_VV_and_Shield_coolant_pumps_[MWe]_______________ (p_shld_coolant_pump_elec_mw)__ 8.25784633988443234e-03 +Electric_power_demand_of_Divertor_colant_pumps_[MWe]_____________________ (p_div_coolant_pump_elec_mw)___ 1.95893008809495006e+00 Electric_wall_plug_efficiency_of_coolant_pumps___________________________ (eta_coolant_pump_electric)____ 8.69999999999999996e-01 -Total_electric_demand_of_all_coolant_pumps_[MWe]_________________________ (p_coolant_pump_elec_total_mw)_ 1.99418018994915400e+02 -Total_electric_demand_of_all_H&CD_systems_[MWe]__________________________ (p_hcd_electric_total_mw)______ 1.58398471980149907e+02 -Total_re-circulated_electric_power_of_the_plant_[MWe]____________________ (p_plant_electric_recirc_mw)___ 4.80776336516076753e+02 -Fraction_of_gross_electricity_re-circulated______________________________ (f_p_plant_electric_recirc)____ 5.45852127495384809e-01 -Total_net-electric_power_of_the_plant_[MWe]______________________________ (p_plant_electric_net_mw)______ 4.00004945260903696e+02 -Total_electric_energy_output_per_pulse_(MJ)______________________________ (e_plant_net_electric_pulse_mj)_ 2.65331132104078773e+06 -Total_electric_energy_output_per_pulse_(kWh)_____________________________ (e_plant_net_electric_pulse_kwh)_ 7.37030922511329874e+05 -Plant_total_electric_base_load_at_time_point_0___________________________ (p_plant_electric_base_total_profile_mw0)_ -5.52103165691735711e+01 -Plant_total_electric_base_load_at_time_point_1___________________________ (p_plant_electric_base_total_profile_mw1)_ -5.52103165691735711e+01 -Plant_total_electric_base_load_at_time_point_2___________________________ (p_plant_electric_base_total_profile_mw2)_ -5.52103165691735711e+01 -Plant_total_electric_base_load_at_time_point_3___________________________ (p_plant_electric_base_total_profile_mw3)_ -5.52103165691735711e+01 -Plant_total_electric_base_load_at_time_point_4___________________________ (p_plant_electric_base_total_profile_mw4)_ -5.52103165691735711e+01 -Plant_total_electric_base_load_at_time_point_5___________________________ (p_plant_electric_base_total_profile_mw5)_ -5.52103165691735711e+01 -Plant_total_electric_base_load_at_time_point_6___________________________ (p_plant_electric_base_total_profile_mw6)_ -5.52103165691735711e+01 +Total_electric_demand_of_all_coolant_pumps_[MWe]_________________________ (p_coolant_pump_elec_total_mw)_ 1.94595971259395128e+02 +Total_electric_demand_of_all_H&CD_systems_[MWe]__________________________ (p_hcd_electric_total_mw)______ 1.69206690634964701e+02 +Total_re-circulated_electric_power_of_the_plant_[MWe]____________________ (p_plant_electric_recirc_mw)___ 4.86893490333186094e+02 +Fraction_of_gross_electricity_re-circulated______________________________ (f_p_plant_electric_recirc)____ 5.48983031312464509e-01 +Total_net-electric_power_of_the_plant_[MWe]______________________________ (p_plant_electric_net_mw)______ 4.00007310897701302e+02 +Total_electric_energy_output_per_pulse_(MJ)______________________________ (e_plant_net_electric_pulse_mj)_ 2.65400444715608004e+06 +Total_electric_energy_output_per_pulse_(kWh)_____________________________ (e_plant_net_electric_pulse_kwh)_ 7.37223457543355529e+05 +Plant_total_electric_base_load_at_time_point_0___________________________ (p_plant_electric_base_total_profile_mw0)_ -5.52368619287732798e+01 +Plant_total_electric_base_load_at_time_point_1___________________________ (p_plant_electric_base_total_profile_mw1)_ -5.52368619287732798e+01 +Plant_total_electric_base_load_at_time_point_2___________________________ (p_plant_electric_base_total_profile_mw2)_ -5.52368619287732798e+01 +Plant_total_electric_base_load_at_time_point_3___________________________ (p_plant_electric_base_total_profile_mw3)_ -5.52368619287732798e+01 +Plant_total_electric_base_load_at_time_point_4___________________________ (p_plant_electric_base_total_profile_mw4)_ -5.52368619287732798e+01 +Plant_total_electric_base_load_at_time_point_5___________________________ (p_plant_electric_base_total_profile_mw5)_ -5.52368619287732798e+01 +Plant_total_electric_base_load_at_time_point_6___________________________ (p_plant_electric_base_total_profile_mw6)_ -5.52368619287732798e+01 Plant_total_electric_gross_at_time_point_0_______________________________ (p_plant_electric_gross_profile_mw0)_ 0.00000000000000000e+00 Plant_total_electric_gross_at_time_point_1_______________________________ (p_plant_electric_gross_profile_mw1)_ 0.00000000000000000e+00 -Plant_total_electric_gross_at_time_point_2_______________________________ (p_plant_electric_gross_profile_mw2)_ 8.80781281776980450e+02 -Plant_total_electric_gross_at_time_point_3_______________________________ (p_plant_electric_gross_profile_mw3)_ 8.80781281776980450e+02 -Plant_total_electric_gross_at_time_point_4_______________________________ (p_plant_electric_gross_profile_mw4)_ 8.80781281776980450e+02 +Plant_total_electric_gross_at_time_point_2_______________________________ (p_plant_electric_gross_profile_mw2)_ 8.86900801230887396e+02 +Plant_total_electric_gross_at_time_point_3_______________________________ (p_plant_electric_gross_profile_mw3)_ 8.86900801230887396e+02 +Plant_total_electric_gross_at_time_point_4_______________________________ (p_plant_electric_gross_profile_mw4)_ 8.86900801230887396e+02 Plant_total_electric_gross_at_time_point_5_______________________________ (p_plant_electric_gross_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_gross_at_time_point_6_______________________________ (p_plant_electric_gross_profile_mw6)_ 0.00000000000000000e+00 -Plant_total_electric_net_at_time_point_0_________________________________ (p_plant_electric_net_profile_mw0)_ -1.19916371890741573e+02 -Plant_total_electric_net_at_time_point_1_________________________________ (p_plant_electric_net_profile_mw1)_ -1.22959845541011447e+02 -Plant_total_electric_net_at_time_point_2_________________________________ (p_plant_electric_net_profile_mw2)_ 4.00004945260903582e+02 -Plant_total_electric_net_at_time_point_3_________________________________ (p_plant_electric_net_profile_mw3)_ 4.00004945260903582e+02 -Plant_total_electric_net_at_time_point_4_________________________________ (p_plant_electric_net_profile_mw4)_ 4.00004945260903582e+02 -Plant_total_electric_net_at_time_point_5_________________________________ (p_plant_electric_net_profile_mw5)_ -1.19916371890741573e+02 -Plant_total_electric_net_at_time_point_6_________________________________ (p_plant_electric_net_profile_mw6)_ -1.19916371890741573e+02 +Plant_total_electric_net_at_time_point_0_________________________________ (p_plant_electric_net_profile_mw0)_ -1.19968818615802775e+02 +Plant_total_electric_net_at_time_point_1_________________________________ (p_plant_electric_net_profile_mw1)_ -1.23090828438826264e+02 +Plant_total_electric_net_at_time_point_2_________________________________ (p_plant_electric_net_profile_mw2)_ 4.00007310897701359e+02 +Plant_total_electric_net_at_time_point_3_________________________________ (p_plant_electric_net_profile_mw3)_ 4.00007310897701359e+02 +Plant_total_electric_net_at_time_point_4_________________________________ (p_plant_electric_net_profile_mw4)_ 4.00007310897701359e+02 +Plant_total_electric_net_at_time_point_5_________________________________ (p_plant_electric_net_profile_mw5)_ -1.19968818615802775e+02 +Plant_total_electric_net_at_time_point_6_________________________________ (p_plant_electric_net_profile_mw6)_ -1.19968818615802775e+02 Plant_total_electric_HCD_at_time_point_0_________________________________ (p_hcd_electric_total_profile_mw0)_ 0.00000000000000000e+00 Plant_total_electric_HCD_at_time_point_1_________________________________ (p_hcd_electric_total_profile_mw1)_ 0.00000000000000000e+00 -Plant_total_electric_HCD_at_time_point_2_________________________________ (p_hcd_electric_total_profile_mw2)_ -1.58398471980149907e+02 -Plant_total_electric_HCD_at_time_point_3_________________________________ (p_hcd_electric_total_profile_mw3)_ -1.58398471980149907e+02 -Plant_total_electric_HCD_at_time_point_4_________________________________ (p_hcd_electric_total_profile_mw4)_ -1.58398471980149907e+02 +Plant_total_electric_HCD_at_time_point_2_________________________________ (p_hcd_electric_total_profile_mw2)_ -1.69206690634964701e+02 +Plant_total_electric_HCD_at_time_point_3_________________________________ (p_hcd_electric_total_profile_mw3)_ -1.69206690634964701e+02 +Plant_total_electric_HCD_at_time_point_4_________________________________ (p_hcd_electric_total_profile_mw4)_ -1.69206690634964701e+02 Plant_total_electric_HCD_at_time_point_5_________________________________ (p_hcd_electric_total_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_HCD_at_time_point_6_________________________________ (p_hcd_electric_total_profile_mw6)_ 0.00000000000000000e+00 Plant_total_electric_coolant_pump_at_time_point_0________________________ (p_coolant_pump_elec_total_profile_mw0)_ 0.00000000000000000e+00 Plant_total_electric_coolant_pump_at_time_point_1________________________ (p_coolant_pump_elec_total_profile_mw1)_ 0.00000000000000000e+00 -Plant_total_electric_coolant_pump_at_time_point_2________________________ (p_coolant_pump_elec_total_profile_mw2)_ -1.99418018994915400e+02 -Plant_total_electric_coolant_pump_at_time_point_3________________________ (p_coolant_pump_elec_total_profile_mw3)_ -1.99418018994915400e+02 -Plant_total_electric_coolant_pump_at_time_point_4________________________ (p_coolant_pump_elec_total_profile_mw4)_ -1.99418018994915400e+02 +Plant_total_electric_coolant_pump_at_time_point_2________________________ (p_coolant_pump_elec_total_profile_mw2)_ -1.94595971259395128e+02 +Plant_total_electric_coolant_pump_at_time_point_3________________________ (p_coolant_pump_elec_total_profile_mw3)_ -1.94595971259395128e+02 +Plant_total_electric_coolant_pump_at_time_point_4________________________ (p_coolant_pump_elec_total_profile_mw4)_ -1.94595971259395128e+02 Plant_total_electric_coolant_pump_at_time_point_5________________________ (p_coolant_pump_elec_total_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_coolant_pump_at_time_point_6________________________ (p_coolant_pump_elec_total_profile_mw6)_ 0.00000000000000000e+00 -Plant_total_electric_TF_supplies_at_time_point_0_________________________ (p_tf_electric_supplies_profile_mw0)_ -6.83369632029865937e+00 -Plant_total_electric_TF_supplies_at_time_point_1_________________________ (p_tf_electric_supplies_profile_mw1)_ -6.83369632029865937e+00 -Plant_total_electric_TF_supplies_at_time_point_2_________________________ (p_tf_electric_supplies_profile_mw2)_ -6.83369632029865937e+00 -Plant_total_electric_TF_supplies_at_time_point_3_________________________ (p_tf_electric_supplies_profile_mw3)_ -6.83369632029865937e+00 -Plant_total_electric_TF_supplies_at_time_point_4_________________________ (p_tf_electric_supplies_profile_mw4)_ -6.83369632029865937e+00 -Plant_total_electric_TF_supplies_at_time_point_5_________________________ (p_tf_electric_supplies_profile_mw5)_ -6.83369632029865937e+00 -Plant_total_electric_TF_supplies_at_time_point_6_________________________ (p_tf_electric_supplies_profile_mw6)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_0_________________________ (p_tf_electric_supplies_profile_mw0)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_1_________________________ (p_tf_electric_supplies_profile_mw1)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_2_________________________ (p_tf_electric_supplies_profile_mw2)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_3_________________________ (p_tf_electric_supplies_profile_mw3)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_4_________________________ (p_tf_electric_supplies_profile_mw4)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_5_________________________ (p_tf_electric_supplies_profile_mw5)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_6_________________________ (p_tf_electric_supplies_profile_mw6)_ -6.79157885625320290e+00 Plant_total_electric_PF_supplies_at_time_point_0_________________________ (p_pf_electric_supplies_profile_mw0)_ 0.00000000000000000e+00 -Plant_total_electric_PF_supplies_at_time_point_1_________________________ (p_pf_electric_supplies_profile_mw1)_ -3.04347365026987005e+00 -Plant_total_electric_PF_supplies_at_time_point_2_________________________ (p_pf_electric_supplies_profile_mw2)_ -3.04347365026987005e+00 -Plant_total_electric_PF_supplies_at_time_point_3_________________________ (p_pf_electric_supplies_profile_mw3)_ -3.04347365026987005e+00 -Plant_total_electric_PF_supplies_at_time_point_4_________________________ (p_pf_electric_supplies_profile_mw4)_ -3.04347365026987005e+00 +Plant_total_electric_PF_supplies_at_time_point_1_________________________ (p_pf_electric_supplies_profile_mw1)_ -3.12200982302349539e+00 +Plant_total_electric_PF_supplies_at_time_point_2_________________________ (p_pf_electric_supplies_profile_mw2)_ -3.12200982302349539e+00 +Plant_total_electric_PF_supplies_at_time_point_3_________________________ (p_pf_electric_supplies_profile_mw3)_ -3.12200982302349539e+00 +Plant_total_electric_PF_supplies_at_time_point_4_________________________ (p_pf_electric_supplies_profile_mw4)_ -3.12200982302349539e+00 Plant_total_electric_PF_supplies_at_time_point_5_________________________ (p_pf_electric_supplies_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_PF_supplies_at_time_point_6_________________________ (p_pf_electric_supplies_profile_mw6)_ 0.00000000000000000e+00 Plant_total_electric_vacuum_pump_power_at_time_point_0___________________ (vachtmw_profile_mw0)__________ -5.00000000000000000e-01 @@ -35835,67 +35826,67 @@ Plant_total_electric_tritium_plant_power_at_time_point_3_________________ (p_tri Plant_total_electric_tritium_plant_power_at_time_point_4_________________ (p_tritium_plant_electric_profile_mw4)_ -1.50000000000000000e+01 Plant_total_electric_tritium_plant_power_at_time_point_5_________________ (p_tritium_plant_electric_profile_mw5)_ -1.50000000000000000e+01 Plant_total_electric_tritium_plant_power_at_time_point_6_________________ (p_tritium_plant_electric_profile_mw6)_ -1.50000000000000000e+01 -Plant_total_electric_cryo_plant_power_at_time_point_0____________________ (p_cryo_plant_electric_profile_mw0)_ -4.23723590012693521e+01 -Plant_total_electric_cryo_plant_power_at_time_point_1____________________ (p_cryo_plant_electric_profile_mw1)_ -4.23723590012693521e+01 -Plant_total_electric_cryo_plant_power_at_time_point_2____________________ (p_cryo_plant_electric_profile_mw2)_ -4.23723590012693521e+01 -Plant_total_electric_cryo_plant_power_at_time_point_3____________________ (p_cryo_plant_electric_profile_mw3)_ -4.23723590012693521e+01 -Plant_total_electric_cryo_plant_power_at_time_point_4____________________ (p_cryo_plant_electric_profile_mw4)_ -4.23723590012693521e+01 -Plant_total_electric_cryo_plant_power_at_time_point_5____________________ (p_cryo_plant_electric_profile_mw5)_ -4.23723590012693521e+01 -Plant_total_electric_cryo_plant_power_at_time_point_6____________________ (p_cryo_plant_electric_profile_mw6)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_0____________________ (p_cryo_plant_electric_profile_mw0)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_1____________________ (p_cryo_plant_electric_profile_mw1)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_2____________________ (p_cryo_plant_electric_profile_mw2)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_3____________________ (p_cryo_plant_electric_profile_mw3)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_4____________________ (p_cryo_plant_electric_profile_mw4)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_5____________________ (p_cryo_plant_electric_profile_mw5)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_6____________________ (p_cryo_plant_electric_profile_mw6)_ -4.24403778307762991e+01 Plant_total_electric_fusion_plant_power_at_time_point_0__________________ (p_fusion_total_profile_mw0)___ 0.00000000000000000e+00 Plant_total_electric_fusion_plant_power_at_time_point_1__________________ (p_fusion_total_profile_mw1)___ 0.00000000000000000e+00 -Plant_total_electric_fusion_plant_power_at_time_point_2__________________ (p_fusion_total_profile_mw2)___ 1.62505179266176174e+03 -Plant_total_electric_fusion_plant_power_at_time_point_3__________________ (p_fusion_total_profile_mw3)___ 1.62505179266176174e+03 -Plant_total_electric_fusion_plant_power_at_time_point_4__________________ (p_fusion_total_profile_mw4)___ 1.62505179266176174e+03 +Plant_total_electric_fusion_plant_power_at_time_point_2__________________ (p_fusion_total_profile_mw2)___ 1.64934744441023304e+03 +Plant_total_electric_fusion_plant_power_at_time_point_3__________________ (p_fusion_total_profile_mw3)___ 1.64934744441023304e+03 +Plant_total_electric_fusion_plant_power_at_time_point_4__________________ (p_fusion_total_profile_mw4)___ 1.64934744441023304e+03 Plant_total_electric_fusion_plant_power_at_time_point_5__________________ (p_fusion_total_profile_mw5)___ 0.00000000000000000e+00 Plant_total_electric_fusion_plant_power_at_time_point_6__________________ (p_fusion_total_profile_mw6)___ 0.00000000000000000e+00 # Vacuum System # First_wall_outgassing_rate_(Pa_m/s)______________________________________ (outgrat_fw)___________________ 1.30000000000000006e-08 -Total_outgassing_load_(Pa_m3/s)__________________________________________ (ogas)_________________________ 1.66905769879289458e-04 OP +Total_outgassing_load_(Pa_m3/s)__________________________________________ (ogas)_________________________ 1.66905769878144758e-04 OP Base_pressure_required_(Pa)______________________________________________ (pres_vv_chamber_base)_________ 5.00000000000000010e-04 -Required_N2_pump_speed_(m3/s)____________________________________________ (s(1))_________________________ 3.33811539758578912e-01 OP -N2_pump_speed_provided_(m3/s)____________________________________________ (snet(1))______________________ 2.60658745894312602e+01 OP -Plasma_chamber_volume_(m3)_______________________________________________ (volume)_______________________ 2.25879849979082837e+03 OP -Chamber_pressure_after_burn_(Pa)_________________________________________ (pend)_________________________ 1.65169214039220663e-01 OP -Chamber_pressure_before_burn_(Pa)________________________________________ (pstart)_______________________ 1.65169214039220672e-03 +Required_N2_pump_speed_(m3/s)____________________________________________ (s(1))_________________________ 3.33811539756289521e-01 OP +N2_pump_speed_provided_(m3/s)____________________________________________ (snet(1))______________________ 2.28802029784915995e+01 OP +Plasma_chamber_volume_(m3)_______________________________________________ (volume)_______________________ 2.25879849976793503e+03 OP +Chamber_pressure_after_burn_(Pa)_________________________________________ (pend)_________________________ 1.68137023394489965e-01 OP +Chamber_pressure_before_burn_(Pa)________________________________________ (pstart)_______________________ 1.68137023394489965e-03 Allowable_pumping_time_switch____________________________________________ (i_vac_pump_dwell)_____________ 0 Dwell_time_between_burns_(s)_____________________________________________ (t_plant_pulse_dwell.)_________ 1.80000000000000000e+03 CS_ramp-up_time_burns_(s)________________________________________________ (t_plant_pulse_coil_precharge.)_ 5.00000000000000000e+02 Allowable_pumping_time_between_burns_(s)_________________________________ (tpump)________________________ 1.80000000000000000e+03 -Required_D-T_pump_speed_(m3/s)___________________________________________ (s(2))_________________________ 5.77897305966186181e+00 OP -D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(2))______________________ 6.32565348038745086e+01 OP +Required_D-T_pump_speed_(m3/s)___________________________________________ (s(2))_________________________ 5.77897305960329177e+00 OP +D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(2))______________________ 5.54013605615235534e+01 OP Divertor_chamber_gas_pressure_(Pa)_______________________________________ (pres_div_chamber_burn)________ 3.59999999999999987e-01 -Helium_gas_fraction_in_divertor_chamber__________________________________ (fhe)__________________________ 1.59054574749783934e-01 OP -Required_helium_pump_speed_(m3/s)________________________________________ (s(3))_________________________ 4.17191908111267580e+01 OP -Helium_pump_speed_provided_(m3/s)________________________________________ (snet(3))______________________ 4.17191908111267580e+01 OP -D-T_fuelling_rate_(kg/s)_________________________________________________ (frate)________________________ 3.01282019899812090e-05 OP -Required_D-T_pump_speed_(m3/s)___________________________________________ (s(4))_________________________ 4.17191908111267580e+01 OP -D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(4))______________________ 6.32565348038745086e+01 OP +Helium_gas_fraction_in_divertor_chamber__________________________________ (fhe)__________________________ 1.77771586794302855e-01 OP +Required_helium_pump_speed_(m3/s)________________________________________ (s(3))_________________________ 3.78847684236583930e+01 OP +Helium_pump_speed_provided_(m3/s)________________________________________ (snet(3))______________________ 3.78847684236584001e+01 OP +D-T_fuelling_rate_(kg/s)_________________________________________________ (frate)________________________ 2.73591105968245148e-05 OP +Required_D-T_pump_speed_(m3/s)___________________________________________ (s(4))_________________________ 3.78847684236583930e+01 OP +D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(4))______________________ 5.54013605615235534e+01 OP Number_of_large_pump_ducts_______________________________________________ (nduct)________________________ 16 -Passage_diameter,_divertor_to_ducts_(m)__________________________________ (d(imax))______________________ 4.98861958186642029e-01 OP -Passage_length_(m)_______________________________________________________ (l1)___________________________ 1.65431504544163221e+00 OP -Diameter_of_ducts_(m)____________________________________________________ (dout)_________________________ 5.98634349823970457e-01 OP +Passage_diameter,_divertor_to_ducts_(m)__________________________________ (d(imax))______________________ 4.72590061057756250e-01 OP +Passage_length_(m)_______________________________________________________ (l1)___________________________ 1.65879141697716737e+00 OP +Diameter_of_ducts_(m)____________________________________________________ (dout)_________________________ 5.67108073269307456e-01 OP Duct_length,_divertor_to_elbow_(m)_______________________________________ (l2)___________________________ 4.79999999999999982e+00 OP Duct_length,_elbow_to_pumps_(m)__________________________________________ (l3)___________________________ 2.00000000000000000e+00 -Number_of_pumps__________________________________________________________ (pumpn)________________________ 3.33753526489014050e+01 OP +Number_of_pumps__________________________________________________________ (pumpn)________________________ 3.20000000000000000e+01 OP # Plant Buildings System # -Internal_volume_of_reactor_building_(m3)_________________________________ (vrci)_________________________ 9.87036076435851981e+05 -Dist_from_centre_of_torus_to_bldg_wall_(m)_______________________________ (wrbi)_________________________ 3.93915090110758612e+01 -Effective_floor_area_(m2)________________________________________________ (a_plant_floor_effective)______ 3.34735443794490478e+05 -Reactor_building_volume_(m3)_____________________________________________ (rbv)__________________________ 1.12003303118133382e+06 -Reactor_maintenance_building_volume_(m3)_________________________________ (rmbv)_________________________ 3.96414102964424936e+05 -Warmshop_volume_(m3)_____________________________________________________ (wsv)__________________________ 1.25307123729922372e+05 +Internal_volume_of_reactor_building_(m3)_________________________________ (vrci)_________________________ 9.87998501786945038e+05 +Dist_from_centre_of_torus_to_bldg_wall_(m)_______________________________ (wrbi)_________________________ 3.94047035837801758e+01 +Effective_floor_area_(m2)________________________________________________ (a_plant_floor_effective)______ 3.34912412858488562e+05 +Reactor_building_volume_(m3)_____________________________________________ (rbv)__________________________ 1.12108009481444792e+06 +Reactor_maintenance_building_volume_(m3)_________________________________ (rmbv)_________________________ 3.96414102963144076e+05 +Warmshop_volume_(m3)_____________________________________________________ (wsv)__________________________ 1.25307123729684259e+05 Tritium_building_volume_(m3)_____________________________________________ (triv)_________________________ 4.00000000000000000e+04 -Electrical_building_volume_(m3)__________________________________________ (elev)_________________________ 5.05409611403764284e+04 +Electrical_building_volume_(m3)__________________________________________ (elev)_________________________ 5.05427807027375675e+04 Control_building_volume_(m3)_____________________________________________ (conv)_________________________ 6.00000000000000000e+04 -Cryogenics_building_volume_(m3)__________________________________________ (cryv)_________________________ 1.61174437508853334e+04 +Cryogenics_building_volume_(m3)__________________________________________ (cryv)_________________________ 1.61303749409176326e+04 Administration_building_volume_(m3)______________________________________ (admv)_________________________ 1.00000000000000000e+05 Shops_volume_(m3)________________________________________________________ (shov)_________________________ 1.00000000000000000e+05 -Total_volume_of_nuclear_buildings_(m3)___________________________________ (volnucb)______________________ 1.56487474688108452e+06 +Total_volume_of_nuclear_buildings_(m3)___________________________________ (volnucb)______________________ 1.56585010342069087e+06 # Water usage during plant operation (secondary cooling) # -Volume_used_in_cooling_tower_(m3/day)____________________________________ (waterusetower)________________ 5.61692335373349924e+04 OP -Volume_used_in_recirculating_water_system_(m3/day)_______________________ (wateruserecirc)_______________ 1.88459809400024096e+04 OP -Volume_used_in_once-through_water_system_(m3/day)________________________ (wateruseonethru)______________ 1.84690613212023606e+06 OP +Volume_used_in_cooling_tower_(m3/day)____________________________________ (waterusetower)________________ 5.65594878768110648e+04 OP +Volume_used_in_recirculating_water_system_(m3/day)_______________________ (wateruserecirc)_______________ 1.89769196297502494e+04 OP +Volume_used_in_once-through_water_system_(m3/day)________________________ (wateruseonethru)______________ 1.85973812371552456e+06 OP Error_status_____________________________________________________________ (error_status)_________________ 2 OP # End of PROCESS Output # # End of PROCESS Output # @@ -35919,8 +35910,13 @@ minmax = 1 * Error tolerance for VMCON epsvmc = 1e-7 +* Number of equality constraints +* (the first neqns icc=... statements are equality constraints) neqns = 3 +* Maximum number of solver iterations +maxcal = 100 + * Constraint Equations - Consistency Equations * ************************************************ @@ -35976,18 +35972,20 @@ b_tf_inboard_max = 14.0 * Central solenoid EOF current density upper limit * *--------------------------------------------------* icc = 26 -fjohc = 0.7 +ixc = 37 * j_cs_flat_top_end [A/m2] +j_cs_flat_top_end = 1.5E7 +fjohc = 1.0 * Central solenoid BOP current density upper limit * *--------------------------------------------------* icc = 27 f_j_cs_start_pulse_end_flat_top = 1.0 -fjohc = 0.7 +fjohc0 = 1.0 * I_op/I_Crit TF coil limit * *---------------------------* icc = 33 -fiooic = 0.70 * margin for TF coil operating current / critical current ratio +fiooic = 1.0 * margin for TF coil operating current / critical current ratio * Dump voltage upper limit * *--------------------------* From 691e1847b84372e29d941467090dba1dddc02638 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Mon, 1 Jun 2026 15:12:28 +0100 Subject: [PATCH 33/48] Post rebase fixes --- process/core/io/plot/summary.py | 20 +++++++++++++++---- process/models/pfcoil.py | 4 ++-- .../integration/data/large_tokamak_MFILE.DAT | 7 +++++-- 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index 134e139fe4..86c649a986 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -15601,11 +15601,23 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_cs_stress_time_profile(axis=figs[30].add_subplot(431), mfile=m_file, scan=scan) + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + + plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) + + plot_cs_stress_time_profile(axis=figs[31].add_subplot(431), mfile=m_file, scan=scan) cs_coil = CSCoil(cs_fatigue=CsFatigue()) cs_coil.plot_cs_radial_hoop_stress_profile( - axis=figs[30].add_subplot(432), + axis=figs[31].add_subplot(432), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), @@ -15613,7 +15625,7 @@ def main_plot( ) cs_coil.plot_cs_radial_stress_profile( - axis=figs[30].add_subplot(433), + axis=figs[31].add_subplot(433), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), @@ -15626,7 +15638,7 @@ def main_plot( plot_cs_turn_structure( figs[32].add_subplot(326, aspect="equal"), figs[32], m_file, scan ) - figs[30].subplots_adjust(wspace=0.3) + figs[31].subplots_adjust(wspace=0.3) plot_first_wall_top_down_cross_section( figs[33].add_subplot(221, aspect="equal"), m_file, scan diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 503e9a2cfb..c4a4968400 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3922,13 +3922,13 @@ def output_cs_structure(self) -> None: self.outfile, "CS current/copper area (A/m²)", "(copperaoh_m2)", - rcv.copperaoh_m2, + self.data.rebco.copperaoh_m2, ) op.ovarre( self.outfile, "Max CS current/copper area (A/m²)", "(copperaoh_m2_max)", - rcv.copperaoh_m2_max, + self.data.rebco.copperaoh_m2_max, ) op.ovarre( diff --git a/tests/integration/data/large_tokamak_MFILE.DAT b/tests/integration/data/large_tokamak_MFILE.DAT index 20781c5160..9cb084b6ec 100644 --- a/tests/integration/data/large_tokamak_MFILE.DAT +++ b/tests/integration/data/large_tokamak_MFILE.DAT @@ -35044,7 +35044,8 @@ Width_of_conductor_(square)_(m)__________________________________________ (t_con Width_of_space_inside_conductor_(m)______________________________________ (dx_tf_turn_cable_space_average)_ 4.50253976149217194e-02 OP Radius_of_turn_cable_space_rounded_corners_(m)___________________________ (radius_tf_turn_cable_space_corners)_ 6.05220510557930198e-03 Steel_conduit_thickness_(m)______________________________________________ (dx_tf_turn_steel)_____________ 8.06960680743906873e-03 -Inter-turn_insulation_thickness_(m)______________________________________ (dx_tf_turn_insulation)________ 8.00000000000000038e-04 +Inter-turn_insulation_thickness_(m)______________________________________ (dx_tf_turn_insulation)________ 8.00000000000000038e-04 +TF_coil_turn_area_(m²)___________________________________________________ (a_tf_turn)____________________ 3.93939642205350278e-03 Diameter_of_central_helium_channel_in_cable______________________________ (dia_tf_turn_coolant_channel)__ 1.00000000000000002e-02 Diameter_of_superconducting_cable________________________________________ (dia_tf_turn_superconducting_cable)_ 7.29999999999999963e-04 Number_of_superconducting_cables_per_turn________________________________ (n_tf_turn_superconducting_cables)_ 3150 @@ -35116,7 +35117,9 @@ Actual_current_(A)_______________________________________________________ (c_tf_ Actual_current_/_critical_current________________________________________ (f_c_tf_turn_operating_critical)_ 7.38791679024967674e-01 OP TF_Superconductor_quench_dump_time_(s)___________________________________ (t_tf_superconductor_quench)___ 1.92880295027100637e+01 OP TF_Superconductor_quench_detection_time_(s)______________________________ (t_tf_quench_detection)________ 3.00000000000000000e+00 OP -Maximum_winding_pack_current_density_for_protection_(A/m2)_______________ (j_tf_wp_quench_heat_max)______ 2.09012679095639810e+07 OP +Maximum_winding_pack_current_density_for_protection_(A/m2)_______________ (j_tf_wp_quench_heat_max)______ 2.09012679095639810e+07 OP +Max_allowed_fast_neutron_fluence_on_TF_coil_(n/m²)_______________________ (nflutfmax)____________________ 1.00000000000000000e+22 OP +Residual_resistivity_ratio_of_TF_coil_copper_____________________________ (rrr_tf_cu)____________________ 1.00000000000000000e+02 OP # TF coils # Allowable_maximum_shear_stress_in_TF_coil_case_(Tresca_criterion)_(Pa)___ (sig_tf_case_max)______________ 7.50000000000000000e+08 Allowable_maximum_shear_stress_in_TF_coil_conduit_(Tresca_criterion)_(Pa)_ (sig_tf_wp_max)________________ 7.50000000000000000e+08 From df474549af6cb164fb110d1e0f139f7dcf8000ab Mon Sep 17 00:00:00 2001 From: Christopher Ashe <91618944+chris-ashe@users.noreply.github.com> Date: Mon, 1 Jun 2026 15:31:04 +0100 Subject: [PATCH 34/48] Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../source/eng-models/central-solenoid.md | 13 +++++++++---- process/models/pfcoil.py | 18 +++++++++--------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 43095c9b8b..d859844dbf 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -76,7 +76,7 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per 7. The full poloidal cross-sectional area is given by: $$ - \overbrace{A_{\text{CS,poloidal}}}^{\texttt{a_cs_poloidal}} = 2 \times dr_{\text{CS}} \times dz_{\text{CS}} + \overbrace{A_{\text{CS,poloidal}}}^{\texttt{a_cs_poloidal}} = dr_{\text{CS}} \times dz_{\text{CS}} $$ 8. The full top-down toroidal cross-sectional area is given by: @@ -89,7 +89,7 @@ This method calculates the CS geometry parameters. The CS is assumed to be a per ### EU-DEMO Turn Geometry | `calculate_cs_turn_geometry_eu_demo()` -This turn superconducting turn strucutre for the CS assumes a rectangular turn shape with a "stadium" shaped cable area[^eu_demo_turn]. +This superconducting turn structure for the CS assumes a rectangular turn shape with a "stadium"-shaped cable area[^eu_demo_turn]. ![CS turn layout](../eng-models/images/cs_eu_demo_turn.PNG "CS EU-DEMO like turn") @@ -99,7 +99,7 @@ The turn geometry is calculated as follows: 1. The vertical height of the turn is given by: $$ - dz_{\text{CS,turn}} = \left(\frac{A_{\text{CS,turn}}}{\texttt{f_dr_dz_cs_turn}}\right)^2 + dz_{\text{CS,turn}} = \sqrt{\frac{A_{\text{CS,turn}}}{\texttt{f_dr_dz_cs_turn}}} $$ $\texttt{f_dr_dz_cs_turn}$ is the intended length to height ratio of the turn @@ -160,7 +160,12 @@ This is Equation 3.13 from "Case Studies in Superconducting Magnets"[^2]. ### Self peak on coil magnetic field | `calculate_cs_self_peak_magnetic_field()` -The peak field at the bore of the central solenoid will not be the same as that felt by the conductors inside the structures.So wecannot use the bore value directly calculated by [`calculate_cs_bore_magnetic_field()`](#self-peak-bore-magnetic-field--calculate_cs_bore_magnetic_field). We require to know the peak field on the conductor if we are to design a superconducting central solenoid that has enough margin. Fits to data[^1] for different ranges of $\beta$ have been calculated as follows to scale the bore field value by: +The peak field at the bore of the central solenoid will not be the same as that felt by the +conductors inside the structures. So we cannot use the bore value directly calculated by +[`calculate_cs_bore_magnetic_field()`](#self-peak-bore-magnetic-field--calculate_cs_bore_magnetic_field). +We require to know the peak field on the conductor if we are to design a superconducting +central solenoid that has enough margin. Fits to data[^1] for different ranges of $\beta$ +have been calculated as follows to scale the bore field value by: - $\beta > 3.0$ diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index c4a4968400..d49b5b1dbd 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3829,7 +3829,7 @@ def output_cs_structure(self) -> None: ) op.ovarre( self.outfile, - "Radial width a CS turn [m²]", + "Vertical thickness of a CS turn [m]", "(dz_cs_turn)", self.data.pf_coil.dz_cs_turn, "OP ", @@ -3931,12 +3931,12 @@ def output_cs_structure(self) -> None: self.data.rebco.copperaoh_m2_max, ) - op.ovarre( - self.outfile, - "Void (coolant) fraction in conductor", - "(f_a_cs_void)", - self.data.pf_coil.f_a_cs_void, - ) + op.ovarre( + self.outfile, + "Void (coolant) fraction in conductor", + "(f_a_cs_void)", + self.data.pf_coil.f_a_cs_void, + ) @staticmethod def calculate_cs_self_peak_midplane_axial_stress( @@ -4048,7 +4048,7 @@ def calculate_cs_hoop_stress( b_cs_inner: float, f_poisson_cs_structure: float, f_a_cs_turn_steel: float, - ) -> float: + ) -> float | np.ndarray: """Calculation of hoop stress of central solenoid. This routine calculates the hoop stress of the central solenoid @@ -4075,7 +4075,7 @@ def calculate_cs_hoop_stress( Returns ------- float - hoop stress at the specified radial location (MPa) + hoop stress at the specified radial location (Pa) References ---------- From 3cd0b37a059294e6e992d8f80727d08c30b5835e Mon Sep 17 00:00:00 2001 From: mn3981 Date: Mon, 1 Jun 2026 15:34:33 +0100 Subject: [PATCH 35/48] Update type hint for central solenoid radial stress calculation to support multiple return types --- process/models/pfcoil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index d49b5b1dbd..90dea763cd 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -4138,7 +4138,7 @@ def calculate_cs_radial_stress( j_cs: float, b_cs_inner: float, f_poisson_cs_structure: float, - ) -> float: + ) -> float | np.ndarray: """Calculation of radial stress of central solenoid. This routine calculates the radial stress of the central solenoid @@ -4153,7 +4153,7 @@ def calculate_cs_radial_stress( r_cs_outer : float Outer radius of the central solenoid (m) j_cs : float - Current density in the central solenoid (A/m^2) + Current density in the central solenoid (A/m²) b_cs_inner : float Magnetic field at the inner radius of the central solenoid (T) f_poisson_cs_structure : float From 098de75cf88b0f2e1ee02b49b7b5fdc474489537 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 3 Jun 2026 10:03:33 +0100 Subject: [PATCH 36/48] Post rebase fixes --- process/models/pfcoil.py | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 90dea763cd..223c052753 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -2069,7 +2069,7 @@ def outpf(self): self.outfile, "Minimum permitted temperature margin (K)", "(temp_cs_superconductor_margin_min)", - tfv.temp_cs_superconductor_margin_min, + self.data.tfcoil.temp_cs_superconductor_margin_min, ) op.oblnkl(self.outfile) @@ -3362,7 +3362,7 @@ def ohcalc(self): ], j_cs=self.data.pf_coil.j_cs_pulse_start, b_cs_inner=self.data.pf_coil.b_cs_peak_pulse_start, - f_poisson_cs_structure=tfv.poisson_steel, + f_poisson_cs_structure=self.data.tfcoil.poisson_steel, f_a_cs_turn_steel=self.data.pf_coil.f_a_cs_turn_steel, ) @@ -3508,11 +3508,16 @@ def ohcalc(self): ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, - tfv.fhts, - tfv.str_cs_con_res, + self.data.tfcoil.fhts, + self.data.tfcoil.str_cs_con_res, self.data.pf_coil.temp_cs_superconductor_operating, - tfv.bcritsc, - tfv.tcritsc, + self.data.tfcoil.bcritsc, + self.data.tfcoil.tcritsc, + self.data.tfcoil.b_crit_upper_nbti, + self.data.tfcoil.t_crit_nbti, + self.data.superconducting_tfcoil.dr_tf_hts_tape, + self.data.superconducting_tfcoil.dx_tf_hts_tape_rebco, + self.data.superconducting_tfcoil.dx_tf_hts_tape_total, ) # Strand critical current calculation for costing in $/kAm # = superconducting filaments jc * (1 - strand copper fraction) @@ -3553,11 +3558,16 @@ def ohcalc(self): ) * 1.0e6, self.data.pf_coil.i_cs_superconductor, - tfv.fhts, - tfv.str_cs_con_res, + self.data.tfcoil.fhts, + self.data.tfcoil.str_cs_con_res, self.data.pf_coil.temp_cs_superconductor_operating, - tfv.bcritsc, - tfv.tcritsc, + self.data.tfcoil.bcritsc, + self.data.tfcoil.tcritsc, + self.data.tfcoil.b_crit_upper_nbti, + self.data.tfcoil.t_crit_nbti, + self.data.superconducting_tfcoil.dr_tf_hts_tape, + self.data.superconducting_tfcoil.dx_tf_hts_tape_rebco, + self.data.superconducting_tfcoil.dx_tf_hts_tape_total, ) self.data.pf_coil.j_pf_wp_critical[self.data.pf_coil.n_cs_pf_coils - 1] = ( @@ -4217,7 +4227,7 @@ def plot_cs_radial_hoop_stress_profile( r_cs_outer=r_cs_outer, j_cs=j_cs, b_cs_inner=b_cs_inner, - f_poisson_cs_structure=tfv.poisson_steel, + f_poisson_cs_structure=self.data.tfcoil.poisson_steel, f_a_cs_turn_steel=mfile.get("f_a_cs_turn_steel", scan=scan), ) for radius in radii @@ -4255,7 +4265,7 @@ def plot_cs_radial_stress_profile( r_cs_outer=r_cs_outer, j_cs=j_cs, b_cs_inner=b_cs_inner, - f_poisson_cs_structure=tfv.poisson_steel, + f_poisson_cs_structure=self.data.tfcoil.poisson_steel, ) for radius in radii ]) From 5e2e418f2e81a694cc928153ba4e3502f5367170 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Thu, 4 Jun 2026 10:58:30 +0100 Subject: [PATCH 37/48] Set Poisson's ratio for steel structure to a constant value of 0.3 in CSCoil calculations --- process/models/pfcoil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 223c052753..a600a21275 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -4227,7 +4227,7 @@ def plot_cs_radial_hoop_stress_profile( r_cs_outer=r_cs_outer, j_cs=j_cs, b_cs_inner=b_cs_inner, - f_poisson_cs_structure=self.data.tfcoil.poisson_steel, + f_poisson_cs_structure=0.3, # Assume Poisson's ratio of 0.3 for steel structure f_a_cs_turn_steel=mfile.get("f_a_cs_turn_steel", scan=scan), ) for radius in radii @@ -4265,7 +4265,7 @@ def plot_cs_radial_stress_profile( r_cs_outer=r_cs_outer, j_cs=j_cs, b_cs_inner=b_cs_inner, - f_poisson_cs_structure=self.data.tfcoil.poisson_steel, + f_poisson_cs_structure=0.3, # Assume Poisson's ratio of 0.3 for steel structure ) for radius in radii ]) From 905b38f1a89afc962ce367c5f9b23f1283801da0 Mon Sep 17 00:00:00 2001 From: Timothy Nunn Date: Thu, 4 Jun 2026 14:54:23 +0100 Subject: [PATCH 38/48] Test each field of CSGeometry in unit tests --- tests/unit/models/test_pfcoil.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index e394b2b446..9ef46eb897 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -9,6 +9,7 @@ to the testing of the subroutine have been chosen. """ +from dataclasses import fields from typing import NamedTuple import numpy as np @@ -2102,7 +2103,10 @@ def test_calculate_cs_geometry( dr_cs=dr_cs, dr_bore=dr_bore, ) - assert pytest.approx(result) == expected + for field in fields(result): + assert pytest.approx(getattr(result, field.name)) == getattr( + expected, field.name + ) @pytest.mark.parametrize( From 27b0aac3582f3c3e2d8a4a681d33232d56db748f Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 5 Jun 2026 11:20:58 +0100 Subject: [PATCH 39/48] Post rebase fixes --- process/core/io/plot/summary.py | 7 ------- process/models/pfcoil.py | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index 86c649a986..39cdaefd33 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -15592,25 +15592,18 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) plot_cs_stress_time_profile(axis=figs[31].add_subplot(431), mfile=m_file, scan=scan) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index a600a21275..d6777a1453 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -1,7 +1,7 @@ import logging import math -from enum import IntEnum from dataclasses import dataclass +from enum import IntEnum import matplotlib.pyplot as plt import numba From b9af917076cec518943410b0c3204d2c566090a9 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 5 Jun 2026 11:33:25 +0100 Subject: [PATCH 40/48] Add functions to plot CS radial hoop and radial stress profiles --- process/core/io/plot/summary.py | 106 +++++++++++++++++++++++++------- process/models/pfcoil.py | 77 ----------------------- 2 files changed, 83 insertions(+), 100 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index 39cdaefd33..0248f03491 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -24,7 +24,6 @@ from process.data_structure.numerics import FiguresOfMerit, PROCESSRunMode from process.data_structure.pfcoil_variables import NFIXMX from process.models.build import Build -from process.models.cs_fatigue import CsFatigue from process.models.geometry.blanket import ( blanket_geometry_double_null, blanket_geometry_single_null, @@ -48,7 +47,6 @@ vacuum_vessel_geometry_double_null, vacuum_vessel_geometry_single_null, ) -from process.models.pfcoil import CSCoil from process.models.physics.bootstrap_current import BootstrapCurrentFractionModel from process.models.physics.confinement_time import ( ConfinementTimeModel, @@ -15225,6 +15223,83 @@ def plot_pf_cs_plasma_mutual_inductance( axis.get_figure().colorbar(im, ax=axis, label="Mutual Inductance (H)") +def plot_cs_radial_hoop_stress_profile( + self, + axis: plt.Axes, + mfile: MFile, + scan: int, + j_cs: float, + b_cs_inner: float, +): + r_cs_inner = mfile.get("r_cs_inner", scan=scan) + r_cs_outer = mfile.get("r_cs_outer", scan=scan) + + radii = np.linspace(r_cs_inner, r_cs_outer, num=10) + stress_values = np.array([ + self.calculate_cs_hoop_stress( + r_stress_point=radius, + r_cs_inner=r_cs_inner, + r_cs_outer=r_cs_outer, + j_cs=j_cs, + b_cs_inner=b_cs_inner, + f_poisson_cs_structure=0.3, # Assume Poisson's ratio of 0.3 for steel structure + f_a_cs_turn_steel=mfile.get("f_a_cs_turn_steel", scan=scan), + ) + for radius in radii + ]) + + axis.plot( + radii, + stress_values / 1e6, + linewidth=2, + label="$\\sigma_{\\theta}$,Hoop Stress", + ) + axis.set_xlabel("Radial Position (m)") + axis.set_ylabel("Hoop Stress (MPa)") + axis.minorticks_on() + axis.legend(loc="best") + axis.set_title("CS Hoop Stress at BOP") + axis.grid(True, alpha=0.3) + + +def plot_cs_radial_stress_profile( + self, + axis: plt.Axes, + mfile: MFile, + scan: int, + j_cs: float, + b_cs_inner: float, +): + r_cs_inner = mfile.get("r_cs_inner", scan=scan) + r_cs_outer = mfile.get("r_cs_outer", scan=scan) + + radii = np.linspace(r_cs_inner, r_cs_outer, num=10) + stress_values = np.array([ + self.calculate_cs_radial_stress( + r_stress_point=radius, + r_cs_inner=r_cs_inner, + r_cs_outer=r_cs_outer, + j_cs=j_cs, + b_cs_inner=b_cs_inner, + f_poisson_cs_structure=0.3, # Assume Poisson's ratio of 0.3 for steel structure + ) + for radius in radii + ]) + + axis.plot( + radii, + stress_values / 1e6, + linewidth=2, + label="$\\sigma_{r}$,Radial Stress", + ) + axis.set_xlabel("Radial Position (m)") + axis.set_ylabel("Radial Stress (MPa)") + axis.minorticks_on() + axis.grid(True, alpha=0.3) + axis.set_title("CS Radial Stress at BOP") + axis.legend(loc="best") + + def main_plot( figs: list[Axes], m_file: MFile, @@ -15592,33 +15667,18 @@ def main_plot( plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_pf_cs_plasma_mutual_inductance(figs[31].add_subplot(111), m_file, scan) - - plot_cs_stress_time_profile(axis=figs[31].add_subplot(431), mfile=m_file, scan=scan) + plot_cs_stress_time_profile(axis=figs[32].add_subplot(431), mfile=m_file, scan=scan) - cs_coil = CSCoil(cs_fatigue=CsFatigue()) - cs_coil.plot_cs_radial_hoop_stress_profile( - axis=figs[31].add_subplot(432), + plot_cs_radial_hoop_stress_profile( + axis=figs[32].add_subplot(432), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), b_cs_inner=m_file.get("b_cs_peak_pulse_start", scan=scan), ) - cs_coil.plot_cs_radial_stress_profile( - axis=figs[31].add_subplot(433), + plot_cs_radial_stress_profile( + axis=figs[32].add_subplot(433), mfile=m_file, scan=scan, j_cs=m_file.get("j_cs_pulse_start", scan=scan), @@ -15631,7 +15691,7 @@ def main_plot( plot_cs_turn_structure( figs[32].add_subplot(326, aspect="equal"), figs[32], m_file, scan ) - figs[31].subplots_adjust(wspace=0.3) + figs[32].subplots_adjust(wspace=0.3) plot_first_wall_top_down_cross_section( figs[33].add_subplot(221, aspect="equal"), m_file, scan diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index d6777a1453..726e779bbb 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -3,7 +3,6 @@ from dataclasses import dataclass from enum import IntEnum -import matplotlib.pyplot as plt import numba import numpy as np from scipy import optimize @@ -13,7 +12,6 @@ from process.core import constants from process.core import process_output as op from process.core.exceptions import ProcessValueError -from process.core.io.mfile import MFile from process.core.model import DataStructure, Model from process.data_structure.pfcoil_variables import ( N_PF_COILS_IN_GROUP_MAX, @@ -4208,81 +4206,6 @@ def calculate_cs_radial_stress( return hp_term_1 * hp_term_2 - hp_term_3 * hp_term_4 - def plot_cs_radial_hoop_stress_profile( - self, - axis: plt.Axes, - mfile: MFile, - scan: int, - j_cs: float, - b_cs_inner: float, - ): - r_cs_inner = mfile.get("r_cs_inner", scan=scan) - r_cs_outer = mfile.get("r_cs_outer", scan=scan) - - radii = np.linspace(r_cs_inner, r_cs_outer, num=10) - stress_values = np.array([ - self.calculate_cs_hoop_stress( - r_stress_point=radius, - r_cs_inner=r_cs_inner, - r_cs_outer=r_cs_outer, - j_cs=j_cs, - b_cs_inner=b_cs_inner, - f_poisson_cs_structure=0.3, # Assume Poisson's ratio of 0.3 for steel structure - f_a_cs_turn_steel=mfile.get("f_a_cs_turn_steel", scan=scan), - ) - for radius in radii - ]) - - axis.plot( - radii, - stress_values / 1e6, - linewidth=2, - label="$\\sigma_{\\theta}$,Hoop Stress", - ) - axis.set_xlabel("Radial Position (m)") - axis.set_ylabel("Hoop Stress (MPa)") - axis.minorticks_on() - axis.legend(loc="best") - axis.set_title("CS Hoop Stress at BOP") - axis.grid(True, alpha=0.3) - - def plot_cs_radial_stress_profile( - self, - axis: plt.Axes, - mfile: MFile, - scan: int, - j_cs: float, - b_cs_inner: float, - ): - r_cs_inner = mfile.get("r_cs_inner", scan=scan) - r_cs_outer = mfile.get("r_cs_outer", scan=scan) - - radii = np.linspace(r_cs_inner, r_cs_outer, num=10) - stress_values = np.array([ - self.calculate_cs_radial_stress( - r_stress_point=radius, - r_cs_inner=r_cs_inner, - r_cs_outer=r_cs_outer, - j_cs=j_cs, - b_cs_inner=b_cs_inner, - f_poisson_cs_structure=0.3, # Assume Poisson's ratio of 0.3 for steel structure - ) - for radius in radii - ]) - - axis.plot( - radii, - stress_values / 1e6, - linewidth=2, - label="$\\sigma_{r}$,Radial Stress", - ) - axis.set_xlabel("Radial Position (m)") - axis.set_ylabel("Radial Stress (MPa)") - axis.minorticks_on() - axis.grid(True, alpha=0.3) - axis.set_title("CS Radial Stress at BOP") - axis.legend(loc="best") - def peak_b_field_at_pf_coil( n_coil: int, n_coil_group: int, t_b_field_peak: int, data: DataStructure From eb6a14eb96e547ccf3670d9502eda58e31b87187 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Fri, 5 Jun 2026 11:42:23 +0100 Subject: [PATCH 41/48] Refactor CSCoil methods to static and update stress profile plotting functions --- process/core/io/plot/summary.py | 7 +++---- process/models/pfcoil.py | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index 0248f03491..6671876400 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -47,6 +47,7 @@ vacuum_vessel_geometry_double_null, vacuum_vessel_geometry_single_null, ) +from process.models.pfcoil import CSCoil from process.models.physics.bootstrap_current import BootstrapCurrentFractionModel from process.models.physics.confinement_time import ( ConfinementTimeModel, @@ -15224,7 +15225,6 @@ def plot_pf_cs_plasma_mutual_inductance( def plot_cs_radial_hoop_stress_profile( - self, axis: plt.Axes, mfile: MFile, scan: int, @@ -15236,7 +15236,7 @@ def plot_cs_radial_hoop_stress_profile( radii = np.linspace(r_cs_inner, r_cs_outer, num=10) stress_values = np.array([ - self.calculate_cs_hoop_stress( + CSCoil.calculate_cs_hoop_stress( r_stress_point=radius, r_cs_inner=r_cs_inner, r_cs_outer=r_cs_outer, @@ -15263,7 +15263,6 @@ def plot_cs_radial_hoop_stress_profile( def plot_cs_radial_stress_profile( - self, axis: plt.Axes, mfile: MFile, scan: int, @@ -15275,7 +15274,7 @@ def plot_cs_radial_stress_profile( radii = np.linspace(r_cs_inner, r_cs_outer, num=10) stress_values = np.array([ - self.calculate_cs_radial_stress( + CSCoil.calculate_cs_radial_stress( r_stress_point=radius, r_cs_inner=r_cs_inner, r_cs_outer=r_cs_outer, diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 726e779bbb..47de149918 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -4047,8 +4047,8 @@ def calculate_cs_self_midplane_axial_stress_time_profile( ) self.data.pf_coil.stress_z_cs_self_midplane_profile[time] = stress_value + @staticmethod def calculate_cs_hoop_stress( - self, r_stress_point: float | np.ndarray, r_cs_inner: float, r_cs_outer: float, @@ -4138,8 +4138,8 @@ def calculate_cs_hoop_stress( return s_hoop_nom / f_a_cs_turn_steel + @staticmethod def calculate_cs_radial_stress( - self, r_stress_point: float | np.ndarray, r_cs_inner: float, r_cs_outer: float, From d128a387af82823a211e6ae3a37ba6052f1a73ca Mon Sep 17 00:00:00 2001 From: mn3981 Date: Mon, 8 Jun 2026 11:49:24 +0100 Subject: [PATCH 42/48] Add radiation power variables for inboard and outboard first wall in FWBSData --- process/data_structure/fwbs_variables.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/process/data_structure/fwbs_variables.py b/process/data_structure/fwbs_variables.py index 860161499e..e9757b89e4 100644 --- a/process/data_structure/fwbs_variables.py +++ b/process/data_structure/fwbs_variables.py @@ -379,6 +379,12 @@ class FWBSData: p_fw_rad_total_mw: float = 0.0 """Radiation power incident on the first wall (MW)""" + p_fw_inboard_rad_mw: float = 0.0 + """Radiation power incident on the inboard first wall [MW]""" + + p_fw_outboard_rad_mw: float = 0.0 + """Radiation power incident on the outboard first wall [MW]""" + p_fw_hcd_rad_total_mw: float = 0.0 """Radiation power incident on the heating and current drive systems on the first wall (MW)""" From 5ef3d4236b67f870ff3a4be910abd05258644cf9 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Mon, 8 Jun 2026 12:01:18 +0100 Subject: [PATCH 43/48] Revert "Add radiation power variables for inboard and outboard first wall in FWBSData" This reverts commit 0586a8ee1f752b8c77ea8fa4806decd5fe66a61f. --- process/data_structure/fwbs_variables.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/process/data_structure/fwbs_variables.py b/process/data_structure/fwbs_variables.py index e9757b89e4..860161499e 100644 --- a/process/data_structure/fwbs_variables.py +++ b/process/data_structure/fwbs_variables.py @@ -379,12 +379,6 @@ class FWBSData: p_fw_rad_total_mw: float = 0.0 """Radiation power incident on the first wall (MW)""" - p_fw_inboard_rad_mw: float = 0.0 - """Radiation power incident on the inboard first wall [MW]""" - - p_fw_outboard_rad_mw: float = 0.0 - """Radiation power incident on the outboard first wall [MW]""" - p_fw_hcd_rad_total_mw: float = 0.0 """Radiation power incident on the heating and current drive systems on the first wall (MW)""" From 7c9ef8f4da8f4989c5c62528eb7e4da2c4d96f63 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 10 Jun 2026 08:41:11 +0100 Subject: [PATCH 44/48] Update beta range conditions in conductor peak field calculations --- documentation/source/eng-models/central-solenoid.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index d859844dbf..043cd6bede 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -174,7 +174,7 @@ have been calculated as follows to scale the bore field value by: +\left(1.0- \left(\frac{3}{\beta}\right)^2\right) \times (J_{\text{CS}}dr_{\text{CS}}) $$ -- $\beta > 2.0$ +- $2.0 \le \beta \le 3.0$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.025-(\beta-2.0)\times 0.018\right) + (\alpha -1.0) \\ @@ -182,7 +182,7 @@ have been calculated as follows to scale the bore field value by: $$ -- $\beta > 1.0$ +- $1.0 \le \beta \le 2.0$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.117-(\beta-1.0)\times 0.092\right) + (\alpha -1.0) \\ @@ -190,14 +190,14 @@ have been calculated as follows to scale the bore field value by: $$ -- $\beta > 0.75$ +- $0.75 \le \beta \le 1.0$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.3-0.732(\beta-0.75)\right) + (\alpha -1.0) \\ \times 0.2((\beta-0.75)-0.05) $$ -- $\beta \le 0.75$ +- $\beta < 0.75$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.65-1.4(\beta-0.5)\right) + (\alpha -1.0) \\ From 6536bde18050d683bd1b3c63e1df907da1bfa284 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Thu, 11 Jun 2026 14:32:17 +0100 Subject: [PATCH 45/48] Post rebase commit --- .../integration/data/large_tokamak_MFILE.DAT | 60321 ++++++++-------- 1 file changed, 30161 insertions(+), 30160 deletions(-) diff --git a/tests/integration/data/large_tokamak_MFILE.DAT b/tests/integration/data/large_tokamak_MFILE.DAT index 9cb084b6ec..c6d18ec1ea 100644 --- a/tests/integration/data/large_tokamak_MFILE.DAT +++ b/tests/integration/data/large_tokamak_MFILE.DAT @@ -2,2466 +2,2461 @@ # Power Reactor Optimisation Code # # PROCESS # # Power Reactor Optimisation Code # -PROCESS_version__________________________________________________________ (procver)______________________ "3.3.1.dev167+g842593def.d20260527" -Date_of_run______________________________________________________________ (date)_________________________ "27/05/2026 UTC" -Time_of_run______________________________________________________________ (time)_________________________ "09:17" +PROCESS_version__________________________________________________________ (procver)______________________ "3.4.2.dev42+g371890ba2" +Date_of_run______________________________________________________________ (date)_________________________ "11/06/2026 UTC" +Time_of_run______________________________________________________________ (time)_________________________ "13:28" User_____________________________________________________________________ (username)_____________________ "mn3981" PROCESS_run_title________________________________________________________ (runtitle)_____________________ "Generic large tokamak" -PROCESS_git_tag__________________________________________________________ (tagno)________________________ "v3.3.0-181-g035b64905" +PROCESS_git_tag__________________________________________________________ (tagno)________________________ "v3.4.1-57-g7c9ef8f4d" PROCESS_git_branch_______________________________________________________ (branch_name)__________________ "refactor_cs" -Input_filename___________________________________________________________ (fileprefix)___________________ "/home/mn3981/PROCESS/large_tokamak_nof.IN.DAT" +Input_filename___________________________________________________________ (fileprefix)___________________ "/home/mn3981/PROCESS/tests/integration/data/large_tokamak_IN.DAT" Optimisation_switch______________________________________________________ (ioptimz)______________________ 1 Figure_of_merit_switch___________________________________________________ (minmax)_______________________ 1 # Numerics # # PROCESS found a feasible solution # Error_flag_______________________________________________________________ (ifail)________________________ 1 -Number_of_iteration_variables____________________________________________ (nvar)_________________________ 20 +Number_of_iteration_variables____________________________________________ (nvar)_________________________ 19 Number_of_constraints_(total)____________________________________________ (neqns+nineqns)________________ 26 Optimisation_switch______________________________________________________ (ioptimz)______________________ 1 Figure_of_merit_switch___________________________________________________ (minmax)_______________________ 1 -Objective_function_name__________________________________________________ (objf_name)____________________ "major radius " -Normalised_objective_function____________________________________________ (norm_objf)____________________ 1.60000000002877707e+00 OP -Square_root_of_the_sum_of_squares_of_the_constraint_residuals____________ (sqsumsq)______________________ 3.71089181765482182e-09 OP -VMCON_convergence_parameter______________________________________________ (convergence_parameter)________ 1.50247700000533101e-09 OP +Objective_function_name__________________________________________________ (objf_name)____________________ "Plasma major radius (R₀)" +Normalised_objective_function____________________________________________ (norm_objf)____________________ 1.60000000003450937e+00 OP +Square_root_of_the_sum_of_squares_of_the_constraint_residuals____________ (sqsumsq)______________________ 1.09745036021651941e-09 OP +VMCON_convergence_parameter______________________________________________ (convergence_parameter)________ 2.61508802119597886e-09 OP Number_of_optimising_solver_iterations___________________________________ (nviter)_______________________ 8 OP -b_plasma_toroidal_on_axis________________________________________________ (itvar001)_____________________ 4.98707032262356886e+00 -b_plasma_toroidal_on_axis_(final_value/initial_value)____________________ (xcm001)_______________________ 8.74924618004134902e-01 -b_plasma_toroidal_on_axis_(range_normalised)_____________________________ (nitvar001)____________________ 1.65957663308555159e-01 +b_plasma_toroidal_on_axis________________________________________________ (itvar001)_____________________ 4.97095088538996333e+00 +b_plasma_toroidal_on_axis_(final_value/initial_value)____________________ (xcm001)_______________________ 8.72096646559642696e-01 +b_plasma_toroidal_on_axis_(range_normalised)_____________________________ (nitvar001)____________________ 1.65420169569521963e-01 b_plasma_toroidal_on_axis_(upper_bound)__________________________________ (boundu001)____________________ 2.99999999999999964e+01 b_plasma_toroidal_on_axis_(lower_bound)__________________________________ (boundl001)____________________ 1.00000000000000002e-02 -rmajor___________________________________________________________________ (itvar002)_____________________ 8.00000000014388490e+00 -rmajor_(final_value/initial_value)_______________________________________ (xcm002)_______________________ 1.00000000001798561e+00 -rmajor_(range_normalised)________________________________________________ (nitvar002)____________________ 1.43884903991420288e-10 +rmajor___________________________________________________________________ (itvar002)_____________________ 8.00000000017254642e+00 +rmajor_(final_value/initial_value)_______________________________________ (xcm002)_______________________ 1.00000000002156830e+00 +rmajor_(range_normalised)________________________________________________ (nitvar002)____________________ 1.72546421595143329e-10 rmajor_(upper_bound)_____________________________________________________ (boundu002)____________________ 9.00000000000000000e+00 rmajor_(lower_bound)_____________________________________________________ (boundl002)____________________ 8.00000000000000000e+00 -temp_plasma_electron_vol_avg_kev_________________________________________ (itvar003)_____________________ 1.26746504744851638e+01 -temp_plasma_electron_vol_avg_kev_(final_value/initial_value)_____________ (xcm003)_______________________ 1.05622087287376365e+00 -temp_plasma_electron_vol_avg_kev_(range_normalised)______________________ (nitvar003)____________________ 7.58684418086255363e-02 +temp_plasma_electron_vol_avg_kev_________________________________________ (itvar003)_____________________ 1.24731443906445811e+01 +temp_plasma_electron_vol_avg_kev_(final_value/initial_value)_____________ (xcm003)_______________________ 1.03942869922038184e+00 +temp_plasma_electron_vol_avg_kev_(range_normalised)______________________ (nitvar003)____________________ 7.37359781854455415e-02 temp_plasma_electron_vol_avg_kev_(upper_bound)___________________________ (boundu003)____________________ 9.99999999999999858e+01 temp_plasma_electron_vol_avg_kev_(lower_bound)___________________________ (boundl003)____________________ 5.50549999999999962e+00 -beta_total_vol_avg_______________________________________________________ (itvar004)_____________________ 3.85026848015826151e-02 -beta_total_vol_avg_(final_value/initial_value)___________________________ (xcm004)_______________________ 1.28342282671942054e+00 -beta_total_vol_avg_(range_normalised)____________________________________ (nitvar004)____________________ 3.75402250266092183e-02 +beta_total_vol_avg_______________________________________________________ (itvar004)_____________________ 3.78126882594035235e-02 +beta_total_vol_avg_(final_value/initial_value)___________________________ (xcm004)_______________________ 1.26042294198011740e+00 +beta_total_vol_avg_(range_normalised)____________________________________ (nitvar004)____________________ 3.68495377972007168e-02 beta_total_vol_avg_(upper_bound)_________________________________________ (boundu004)____________________ 1.00000000000000000e+00 beta_total_vol_avg_(lower_bound)_________________________________________ (boundl004)____________________ 1.00000000000000024e-03 -nd_plasma_electrons_vol_avg______________________________________________ (itvar005)_____________________ 8.12256151664202711e+19 -nd_plasma_electrons_vol_avg_(final_value/initial_value)__________________ (xcm005)_______________________ 1.08300820221893690e+00 -nd_plasma_electrons_vol_avg_(range_normalised)___________________________ (nitvar005)____________________ 6.24751175167553782e-02 +nd_plasma_electrons_vol_avg______________________________________________ (itvar005)_____________________ 7.97918908402032148e+19 +nd_plasma_electrons_vol_avg_(final_value/initial_value)__________________ (xcm005)_______________________ 1.06389187786937622e+00 +nd_plasma_electrons_vol_avg_(range_normalised)___________________________ (nitvar005)____________________ 6.10121335104114523e-02 nd_plasma_electrons_vol_avg_(upper_bound)________________________________ (boundu005)____________________ 1.00000000000000000e+21 nd_plasma_electrons_vol_avg_(lower_bound)________________________________ (boundl005)____________________ 2.00000000000000000e+19 -hfact____________________________________________________________________ (itvar006)_____________________ 1.19999574841169188e+00 -hfact_(final_value/initial_value)________________________________________ (xcm006)_______________________ 1.09090522582881078e+00 -hfact_(range_normalised)_________________________________________________ (nitvar006)____________________ 9.99996134919719948e-01 +hfact____________________________________________________________________ (itvar006)_____________________ 1.19999713327972790e+00 +hfact_(final_value/initial_value)________________________________________ (xcm006)_______________________ 1.09090648479975250e+00 +hfact_(range_normalised)_________________________________________________ (nitvar006)____________________ 9.99997393890661668e-01 hfact_(upper_bound)______________________________________________________ (boundu006)____________________ 1.19999999999999996e+00 hfact_(lower_bound)______________________________________________________ (boundl006)____________________ 1.00000000000000006e-01 -dr_cs____________________________________________________________________ (itvar007)_____________________ 5.88190932603959715e-01 -dr_cs_(final_value/initial_value)________________________________________ (xcm007)_______________________ 1.17638186520791943e+00 -dr_cs_(range_normalised)_________________________________________________ (nitvar007)____________________ 2.97104054230886323e-02 +dr_cs____________________________________________________________________ (itvar007)_____________________ 5.38814675476462890e-01 +dr_cs_(final_value/initial_value)________________________________________ (xcm007)_______________________ 1.07762935095292578e+00 +dr_cs_(range_normalised)_________________________________________________ (nitvar007)____________________ 2.46200696367487558e-02 dr_cs_(upper_bound)______________________________________________________ (boundu007)____________________ 1.00000000000000000e+01 dr_cs_(lower_bound)______________________________________________________ (boundl007)____________________ 2.99999999999999989e-01 -q95______________________________________________________________________ (itvar008)_____________________ 3.36431078549756624e+00 -q95_(final_value/initial_value)__________________________________________ (xcm008)_______________________ 9.61231652999304687e-01 -q95_(range_normalised)___________________________________________________ (nitvar008)____________________ 7.75129330845886373e-03 +q95______________________________________________________________________ (itvar008)_____________________ 3.41369456381062886e+00 +q95_(final_value/initial_value)__________________________________________ (xcm008)_______________________ 9.75341303945894023e-01 +q95_(range_normalised)___________________________________________________ (nitvar008)____________________ 8.80201199597083553e-03 q95_(upper_bound)________________________________________________________ (boundu008)____________________ 5.00000000000000000e+01 q95_(lower_bound)________________________________________________________ (boundl008)____________________ 3.00000000000000000e+00 -dr_bore__________________________________________________________________ (itvar009)_____________________ 2.03182507743337259e+00 -dr_bore_(final_value/initial_value)______________________________________ (xcm009)_______________________ 1.01591253871668630e+00 -dr_bore_(range_normalised)_______________________________________________ (nitvar009)____________________ 1.95133846205391148e-01 +dr_bore__________________________________________________________________ (itvar009)_____________________ 2.08652517234514123e+00 +dr_bore_(final_value/initial_value)______________________________________ (xcm009)_______________________ 1.04326258617257062e+00 +dr_bore_(range_normalised)_______________________________________________ (nitvar009)____________________ 2.00659108317691015e-01 dr_bore_(upper_bound)____________________________________________________ (boundu009)____________________ 1.00000000000000000e+01 dr_bore_(lower_bound)____________________________________________________ (boundl009)____________________ 1.00000000000000006e-01 -j_cs_flat_top_end________________________________________________________ (itvar010)_____________________ 1.75050478275467679e+07 -j_cs_flat_top_end_(final_value/initial_value)____________________________ (xcm010)_______________________ 1.16700318850311779e+00 -j_cs_flat_top_end_(range_normalised)_____________________________________ (nitvar010)____________________ 1.74224702978446111e-01 -j_cs_flat_top_end_(upper_bound)__________________________________________ (boundu010)____________________ 1.00000000000000000e+08 -j_cs_flat_top_end_(lower_bound)__________________________________________ (boundl010)____________________ 1.00000000000000000e+05 -f_c_plasma_non_inductive_________________________________________________ (itvar011)_____________________ 4.48350619562831565e-01 -f_c_plasma_non_inductive_(final_value/initial_value)_____________________ (xcm011)_______________________ 1.12087654890707888e+00 -f_c_plasma_non_inductive_(range_normalised)______________________________ (nitvar011)____________________ 4.47798417980812380e-01 -f_c_plasma_non_inductive_(upper_bound)___________________________________ (boundu011)____________________ 1.00000000000000000e+00 -f_c_plasma_non_inductive_(lower_bound)___________________________________ (boundl011)____________________ 1.00000000000000002e-03 -t_tf_superconductor_quench_______________________________________________ (itvar012)_____________________ 1.92880295027100637e+01 -t_tf_superconductor_quench_(final_value/initial_value)___________________ (xcm012)_______________________ 7.71521180108402538e-01 -t_tf_superconductor_quench_(range_normalised)____________________________ (nitvar012)____________________ 1.92072367394495125e-01 -t_tf_superconductor_quench_(upper_bound)_________________________________ (boundu012)____________________ 1.00000000000000000e+02 -t_tf_superconductor_quench_(lower_bound)_________________________________ (boundl012)____________________ 1.00000000000000006e-01 -dr_tf_nose_case__________________________________________________________ (itvar013)_____________________ 2.06610339816990257e-01 -dr_tf_nose_case_(final_value/initial_value)______________________________ (xcm013)_______________________ 4.13220679633980514e-01 -dr_tf_nose_case_(range_normalised)_______________________________________ (nitvar013)____________________ 1.64852989281042361e-01 -dr_tf_nose_case_(upper_bound)____________________________________________ (boundu013)____________________ 1.00000000000000000e+00 -dr_tf_nose_case_(lower_bound)____________________________________________ (boundl013)____________________ 5.00000000000000028e-02 -dx_tf_turn_steel_________________________________________________________ (itvar014)_____________________ 8.06960680743906873e-03 -dx_tf_turn_steel_(final_value/initial_value)_____________________________ (xcm014)_______________________ 1.00870085092988360e+00 -dx_tf_turn_steel_(range_normalised)______________________________________ (nitvar014)____________________ 7.56595733033356226e-04 -dx_tf_turn_steel_(upper_bound)___________________________________________ (boundu014)____________________ 1.00000000000000006e-01 -dx_tf_turn_steel_(lower_bound)___________________________________________ (boundl014)____________________ 8.00000000000000017e-03 -f_a_tf_turn_cable_copper_________________________________________________ (itvar015)_____________________ 8.98638218006112655e-01 -f_a_tf_turn_cable_copper_(final_value/initial_value)_____________________ (xcm015)_______________________ 1.12329777250764073e+00 -f_a_tf_turn_cable_copper_(range_normalised)______________________________ (nitvar015)____________________ 9.05995950013892548e-01 -f_a_tf_turn_cable_copper_(upper_bound)___________________________________ (boundu015)____________________ 9.39999999999999947e-01 -f_a_tf_turn_cable_copper_(lower_bound)___________________________________ (boundl015)____________________ 5.00000000000000000e-01 -c_tf_turn________________________________________________________________ (itvar016)_____________________ 8.23347095886034367e+04 -c_tf_turn_(final_value/initial_value)____________________________________ (xcm016)_______________________ 1.26668783982466815e+00 -c_tf_turn_(range_normalised)_____________________________________________ (nitvar016)____________________ 6.93388383544137232e-01 -c_tf_turn_(upper_bound)__________________________________________________ (boundu016)____________________ 9.00000000000000000e+04 -c_tf_turn_(lower_bound)__________________________________________________ (boundl016)____________________ 6.50000000000000000e+04 -f_nd_alpha_electron______________________________________________________ (itvar017)_____________________ 8.70076989100456166e-02 -f_nd_alpha_electron_(final_value/initial_value)__________________________ (xcm017)_______________________ 8.70076989100456055e-01 -f_nd_alpha_electron_(range_normalised)___________________________________ (nitvar017)____________________ 7.40153978200912110e-01 -f_nd_alpha_electron_(upper_bound)________________________________________ (boundu017)____________________ 1.00000000000000006e-01 -f_nd_alpha_electron_(lower_bound)________________________________________ (boundl017)____________________ 5.00000000000000028e-02 -f_a_cs_turn_steel________________________________________________________ (itvar018)_____________________ 6.92227642973955004e-01 -f_a_cs_turn_steel_(final_value/initial_value)____________________________ (xcm018)_______________________ 8.65284553717443727e-01 -f_a_cs_turn_steel_(range_normalised)_____________________________________ (nitvar018)____________________ 7.28374755504694438e-01 -f_a_cs_turn_steel_(upper_bound)__________________________________________ (boundu018)____________________ 9.50000000000000067e-01 -f_a_cs_turn_steel_(lower_bound)__________________________________________ (boundl018)____________________ 1.00000000000000002e-03 -f_nd_impurity_electrons(13)______________________________________________ (itvar019)_____________________ 6.12023394218243070e-04 -f_nd_impurity_electrons(13)_(final_value/initial_value)__________________ (xcm019)_______________________ 1.61058787952169213e+00 -f_nd_impurity_electrons(13)_(range_normalised)___________________________ (nitvar019)____________________ 6.12014006232249261e-02 -f_nd_impurity_electrons(13)_(upper_bound)________________________________ (boundu019)____________________ 1.00000000000000002e-02 -f_nd_impurity_electrons(13)_(lower_bound)________________________________ (boundl019)____________________ 1.00000000000000002e-08 -dr_tf_wp_with_insulation_________________________________________________ (itvar020)_____________________ 5.76282058213485326e-01 -dr_tf_wp_with_insulation_(final_value/initial_value)_____________________ (xcm020)_______________________ 1.15256411642697065e+00 -dr_tf_wp_with_insulation_(range_normalised)______________________________ (nitvar020)____________________ 1.10176286383428315e-01 -dr_tf_wp_with_insulation_(upper_bound)___________________________________ (boundu020)____________________ 2.00000000000000000e+00 -dr_tf_wp_with_insulation_(lower_bound)___________________________________ (boundl020)____________________ 4.00000000000000022e-01 -⟨β⟩_consistency____________________normalised_residue____________________ (eq_con001)____________________ 3.70961794615709550e-09 -⟨β⟩_consistency____________________residual______________________________ (res_eq_con001)________________ 1.42830247629177620e-10 -⟨β⟩_consistency____________________constraint_value______________________ (val_eq_con001)________________ 3.85026849444128627e-02 +f_c_plasma_non_inductive_________________________________________________ (itvar010)_____________________ 4.34830126924622307e-01 +f_c_plasma_non_inductive_(final_value/initial_value)_____________________ (xcm010)_______________________ 1.08707531731155571e+00 +f_c_plasma_non_inductive_(range_normalised)______________________________ (nitvar010)____________________ 4.34264391315938247e-01 +f_c_plasma_non_inductive_(upper_bound)___________________________________ (boundu010)____________________ 1.00000000000000000e+00 +f_c_plasma_non_inductive_(lower_bound)___________________________________ (boundl010)____________________ 1.00000000000000002e-03 +t_tf_superconductor_quench_______________________________________________ (itvar011)_____________________ 1.91417901163518778e+01 +t_tf_superconductor_quench_(final_value/initial_value)___________________ (xcm011)_______________________ 7.65671604654075133e-01 +t_tf_superconductor_quench_(range_normalised)____________________________ (nitvar011)____________________ 1.90608509673191984e-01 +t_tf_superconductor_quench_(upper_bound)_________________________________ (boundu011)____________________ 1.00000000000000000e+02 +t_tf_superconductor_quench_(lower_bound)_________________________________ (boundl011)____________________ 1.00000000000000006e-01 +dr_tf_nose_case__________________________________________________________ (itvar012)_____________________ 2.03751790793017529e-01 +dr_tf_nose_case_(final_value/initial_value)______________________________ (xcm012)_______________________ 4.07503581586035057e-01 +dr_tf_nose_case_(range_normalised)_______________________________________ (nitvar012)____________________ 1.61843990308439517e-01 +dr_tf_nose_case_(upper_bound)____________________________________________ (boundu012)____________________ 1.00000000000000000e+00 +dr_tf_nose_case_(lower_bound)____________________________________________ (boundl012)____________________ 5.00000000000000028e-02 +dx_tf_turn_steel_________________________________________________________ (itvar013)_____________________ 8.13797554649079748e-03 +dx_tf_turn_steel_(final_value/initial_value)_____________________________ (xcm013)_______________________ 1.01724694331134957e+00 +dx_tf_turn_steel_(range_normalised)______________________________________ (nitvar013)____________________ 1.49973420098691934e-03 +dx_tf_turn_steel_(upper_bound)___________________________________________ (boundu013)____________________ 1.00000000000000006e-01 +dx_tf_turn_steel_(lower_bound)___________________________________________ (boundl013)____________________ 8.00000000000000017e-03 +f_a_tf_turn_cable_copper_________________________________________________ (itvar014)_____________________ 8.93824025763589436e-01 +f_a_tf_turn_cable_copper_(final_value/initial_value)_____________________ (xcm014)_______________________ 1.11728003220448668e+00 +f_a_tf_turn_cable_copper_(range_normalised)______________________________ (nitvar014)____________________ 8.95054604008157950e-01 +f_a_tf_turn_cable_copper_(upper_bound)___________________________________ (boundu014)____________________ 9.39999999999999947e-01 +f_a_tf_turn_cable_copper_(lower_bound)___________________________________ (boundl014)____________________ 5.00000000000000000e-01 +c_tf_turn________________________________________________________________ (itvar015)_____________________ 8.28453020801330276e+04 +c_tf_turn_(final_value/initial_value)____________________________________ (xcm015)_______________________ 1.27454310892512357e+00 +c_tf_turn_(range_normalised)_____________________________________________ (nitvar015)____________________ 7.13812083205321302e-01 +c_tf_turn_(upper_bound)__________________________________________________ (boundu015)____________________ 9.00000000000000000e+04 +c_tf_turn_(lower_bound)__________________________________________________ (boundl015)____________________ 6.50000000000000000e+04 +f_nd_alpha_electron______________________________________________________ (itvar016)_____________________ 7.79113320586695690e-02 +f_nd_alpha_electron_(final_value/initial_value)__________________________ (xcm016)_______________________ 7.79113320586695579e-01 +f_nd_alpha_electron_(range_normalised)___________________________________ (nitvar016)____________________ 5.58226641173391158e-01 +f_nd_alpha_electron_(upper_bound)________________________________________ (boundu016)____________________ 1.00000000000000006e-01 +f_nd_alpha_electron_(lower_bound)________________________________________ (boundl016)____________________ 5.00000000000000028e-02 +f_a_cs_turn_steel________________________________________________________ (itvar017)_____________________ 7.14107870487967089e-01 +f_a_cs_turn_steel_(final_value/initial_value)____________________________ (xcm017)_______________________ 8.92634838109958806e-01 +f_a_cs_turn_steel_(range_normalised)_____________________________________ (nitvar017)____________________ 7.51430843506814550e-01 +f_a_cs_turn_steel_(upper_bound)__________________________________________ (boundu017)____________________ 9.50000000000000067e-01 +f_a_cs_turn_steel_(lower_bound)__________________________________________ (boundl017)____________________ 1.00000000000000002e-03 +f_nd_impurity_electrons(13)______________________________________________ (itvar018)_____________________ 5.96634627889471502e-04 +f_nd_impurity_electrons(13)_(final_value/initial_value)__________________ (xcm018)_______________________ 1.57009112602492484e+00 +f_nd_impurity_electrons(13)_(range_normalised)___________________________ (nitvar018)____________________ 5.96625224514695934e-02 +f_nd_impurity_electrons(13)_(upper_bound)________________________________ (boundu018)____________________ 1.00000000000000002e-02 +f_nd_impurity_electrons(13)_(lower_bound)________________________________ (boundl018)____________________ 1.00000000000000002e-08 +dr_tf_wp_with_insulation_________________________________________________ (itvar019)_____________________ 5.75684050929656244e-01 +dr_tf_wp_with_insulation_(final_value/initial_value)_____________________ (xcm019)_______________________ 1.15136810185931249e+00 +dr_tf_wp_with_insulation_(range_normalised)______________________________ (nitvar019)____________________ 1.09802531831035138e-01 +dr_tf_wp_with_insulation_(upper_bound)___________________________________ (boundu019)____________________ 2.00000000000000000e+00 +dr_tf_wp_with_insulation_(lower_bound)___________________________________ (boundl019)____________________ 4.00000000000000022e-01 +⟨β⟩_consistency____________________normalised_residue____________________ (eq_con001)____________________ 1.09744879850381949e-09 +⟨β⟩_consistency____________________residual______________________________ (res_eq_con001)________________ 4.14974929419109628e-11 +⟨β⟩_consistency____________________constraint_value______________________ (val_eq_con001)________________ 3.78126883009010095e-02 ⟨β⟩_consistency____________________units_________________________________ (eq_units_con001)______________ '' -Global_power_balance_consistency__normalised_residue_____________________ (eq_con002)____________________ 9.72122382592033318e-11 -Global_power_balance_consistency__residual_______________________________ (res_eq_con002)________________ 2.06739902974817369e-11 -Global_power_balance_consistency__constraint_value_______________________ (val_eq_con002)________________ 2.12668737448437478e-01 +Global_power_balance_consistency__normalised_residue_____________________ (eq_con002)____________________ 1.81654691289168113e-12 +Global_power_balance_consistency__residual_______________________________ (res_eq_con002)________________ 3.76643161104084356e-13 +Global_power_balance_consistency__constraint_value_______________________ (val_eq_con002)________________ 2.07332543178859158e-01 Global_power_balance_consistency__units__________________________________ (eq_units_con002)______________ 'MW/m³' -Radial_build_consistency__________normalised_residue_____________________ (eq_con011)____________________ 1.59894320006515045e-12 -Radial_build_consistency__________residual_______________________________ (res_eq_con011)________________ 1.27915456005212036e-11 -Radial_build_consistency__________constraint_value_______________________ (val_eq_con011)________________ 8.00000000015667645e+00 +Radial_build_consistency__________normalised_residue_____________________ (eq_con011)____________________ 3.57713858534225437e-13 +Radial_build_consistency__________residual_______________________________ (res_eq_con011)________________ 2.86171086827380350e-12 +Radial_build_consistency__________constraint_value_______________________ (val_eq_con011)________________ 8.00000000017540813e+00 Radial_build_consistency__________units__________________________________ (eq_units_con011)______________ 'm' -Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______normalised_residue________ (ineq_con030)__________________ 5.76983273412588260e-01 -Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______physical_value____________ (ineq_value_con030)____________ 8.46033453174823507e+01 +Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______normalised_residue________ (ineq_con030)__________________ 6.04003820049625162e-01 +Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______physical_value____________ (ineq_value_con030)____________ 7.91992359900749534e+01 Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______symbol____________________ (ineq_symbol_con030)___________ '<=' Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______units_____________________ (ineq_units_con030)____________ 'MW' Plasma_injected_power_(Pₐᵤₓ)_upper_limit_______physical_bound____________ (ineq_bound_con030)____________ 2.00000000000000000e+02 -Pₛₑₚ_>_Pₗₕ_consistency_____normalised_residue____________________________ (ineq_con015)__________________ 7.51327215608437848e-01 -Pₛₑₚ_>_Pₗₕ_consistency_____physical_value________________________________ (ineq_value_con015)____________ 1.61903352765320307e+02 +Pₛₑₚ_>_Pₗₕ_consistency_____normalised_residue____________________________ (ineq_con015)__________________ 7.97294869800719175e-01 +Pₛₑₚ_>_Pₗₕ_consistency_____physical_value________________________________ (ineq_value_con015)____________ 1.64813246786221384e+02 Pₛₑₚ_>_Pₗₕ_consistency_____symbol________________________________________ (ineq_symbol_con015)___________ '>=' Pₛₑₚ_>_Pₗₕ_consistency_____units_________________________________________ (ineq_units_con015)____________ 'MW' -Pₛₑₚ_>_Pₗₕ_consistency_____physical_bound________________________________ (ineq_bound_con015)____________ 9.24460896412625033e+01 -Net_electric_power_lower_limit____normalised_residue_____________________ (ineq_con016)__________________ 1.82772442531842216e-05 -Net_electric_power_lower_limit____physical_value_________________________ (ineq_value_con016)____________ 4.00007310897701302e+02 +Pₛₑₚ_>_Pₗₕ_consistency_____physical_bound________________________________ (ineq_bound_con015)____________ 9.17007273294534997e+01 +Net_electric_power_lower_limit____normalised_residue_____________________ (ineq_con016)__________________ 1.23631522592759779e-05 +Net_electric_power_lower_limit____physical_value_________________________ (ineq_value_con016)____________ 4.00004945260903696e+02 Net_electric_power_lower_limit____symbol_________________________________ (ineq_symbol_con016)___________ '>=' Net_electric_power_lower_limit____units__________________________________ (ineq_units_con016)____________ 'MW' Net_electric_power_lower_limit____physical_bound_________________________ (ineq_bound_con016)____________ 4.00000000000000000e+02 -⟨β⟩_upper_limit__________________normalised_residue______________________ (ineq_con024)__________________ 2.56737000917308555e-01 -⟨β⟩_upper_limit__________________physical_value__________________________ (ineq_value_con024)____________ 3.36941677290619260e-02 +⟨β⟩_upper_limit__________________normalised_residue______________________ (ineq_con024)__________________ 2.62288741863006325e-01 +⟨β⟩_upper_limit__________________physical_value__________________________ (ineq_value_con024)____________ 3.29587003977848333e-02 ⟨β⟩_upper_limit__________________symbol__________________________________ (ineq_symbol_con024)___________ '<=' ⟨β⟩_upper_limit__________________units___________________________________ (ineq_units_con024)____________ '' -⟨β⟩_upper_limit__________________physical_bound__________________________ (ineq_bound_con024)____________ 4.53327661549761812e-02 -TF_peak_symmetric_toroidal_field_upper_limit___normalised_residue________ (ineq_con025)__________________ 1.93032004467823426e-01 -TF_peak_symmetric_toroidal_field_upper_limit___physical_value____________ (ineq_value_con025)____________ 1.12975519374504714e+01 +⟨β⟩_upper_limit__________________physical_bound__________________________ (ineq_bound_con024)____________ 4.46769654580279826e-02 +TF_peak_symmetric_toroidal_field_upper_limit___normalised_residue________ (ineq_con025)__________________ 1.95872541066362094e-01 +TF_peak_symmetric_toroidal_field_upper_limit___physical_value____________ (ineq_value_con025)____________ 1.12577844250709305e+01 TF_peak_symmetric_toroidal_field_upper_limit___symbol____________________ (ineq_symbol_con025)___________ '<=' TF_peak_symmetric_toroidal_field_upper_limit___units_____________________ (ineq_units_con025)____________ 'T' TF_peak_symmetric_toroidal_field_upper_limit___physical_bound____________ (ineq_bound_con025)____________ 1.40000000000000000e+01 -CS_coil_EOF_current_density_limit_normalised_residue_____________________ (ineq_con026)__________________ 5.09685330143947124e-01 -CS_coil_EOF_current_density_limit_physical_value_________________________ (ineq_value_con026)____________ 4.90314669856052876e-01 +CS_coil_EOF_current_density_limit_normalised_residue_____________________ (ineq_con026)__________________ 2.71732342172791297e-01 +CS_coil_EOF_current_density_limit_physical_value_________________________ (ineq_value_con026)____________ 5.09787360479046048e-01 CS_coil_EOF_current_density_limit_symbol_________________________________ (ineq_symbol_con026)___________ '<=' CS_coil_EOF_current_density_limit_units__________________________________ (ineq_units_con026)____________ 'A/m²' -CS_coil_EOF_current_density_limit_physical_bound_________________________ (ineq_bound_con026)____________ 1.00000000000000000e+00 -CS_coil_BOP_current_density_limit_normalised_residue_____________________ (ineq_con027)__________________ 3.82269095935820591e-01 -CS_coil_BOP_current_density_limit_physical_value_________________________ (ineq_value_con027)____________ 6.17730904064179409e-01 +CS_coil_EOF_current_density_limit_physical_bound_________________________ (ineq_bound_con026)____________ 6.99999999999999956e-01 +CS_coil_BOP_current_density_limit_normalised_residue_____________________ (ineq_con027)__________________ 9.22988998912991354e-02 +CS_coil_BOP_current_density_limit_physical_value_________________________ (ineq_value_con027)____________ 6.35390770076090572e-01 CS_coil_BOP_current_density_limit_symbol_________________________________ (ineq_symbol_con027)___________ '<=' CS_coil_BOP_current_density_limit_units__________________________________ (ineq_units_con027)____________ 'A/m²' -CS_coil_BOP_current_density_limit_physical_bound_________________________ (ineq_bound_con027)____________ 1.00000000000000000e+00 -TF_coil_superconductor_critical_current_density_upper_limit___normalised_residue_ (ineq_con033)__________________ 2.61208320975032215e-01 -TF_coil_superconductor_critical_current_density_upper_limit___physical_value_ (ineq_value_con033)____________ 2.09003361813226640e+07 +CS_coil_BOP_current_density_limit_physical_bound_________________________ (ineq_bound_con027)____________ 6.99999999999999956e-01 +TF_coil_superconductor_critical_current_density_upper_limit___normalised_residue_ (ineq_con033)__________________ 1.15562571201599518e-04 +TF_coil_superconductor_critical_current_density_upper_limit___physical_value_ (ineq_value_con033)____________ 2.08448372501563653e+07 TF_coil_superconductor_critical_current_density_upper_limit___symbol_____ (ineq_symbol_con033)___________ '<=' TF_coil_superconductor_critical_current_density_upper_limit___units______ (ineq_units_con033)____________ 'A/m²' -TF_coil_superconductor_critical_current_density_upper_limit___physical_bound_ (ineq_bound_con033)____________ 2.82898911488908753e+07 -TF_quench_dump_voltage_upper_limit__________normalised_residue___________ (ineq_con034)__________________ 1.58247040691869012e-01 -TF_quench_dump_voltage_upper_limit__________physical_value_______________ (ineq_value_con034)____________ 8.41752959308131032e+00 +TF_coil_superconductor_critical_current_density_upper_limit___physical_bound_ (ineq_bound_con033)____________ 2.08472464115541577e+07 +TF_quench_dump_voltage_upper_limit__________normalised_residue___________ (ineq_con034)__________________ 1.63181773355054793e-01 +TF_quench_dump_voltage_upper_limit__________physical_value_______________ (ineq_value_con034)____________ 8.36818226644945184e+00 TF_quench_dump_voltage_upper_limit__________symbol_______________________ (ineq_symbol_con034)___________ '<=' TF_quench_dump_voltage_upper_limit__________units________________________ (ineq_units_con034)____________ 'V' TF_quench_dump_voltage_upper_limit__________physical_bound_______________ (ineq_bound_con034)____________ 1.00000000000000000e+01 -TF_quench_hotspot_current_density_upper_limit__________normalised_residue_ (ineq_con035)__________________ 4.45775943042070466e-05 -TF_quench_hotspot_current_density_upper_limit__________physical_value____ (ineq_value_con035)____________ 2.09003361813226640e+07 +TF_quench_hotspot_current_density_upper_limit__________normalised_residue_ (ineq_con035)__________________ 2.67746856597028682e-05 +TF_quench_hotspot_current_density_upper_limit__________physical_value____ (ineq_value_con035)____________ 2.08448372501563653e+07 TF_quench_hotspot_current_density_upper_limit__________symbol____________ (ineq_symbol_con035)___________ '<=' TF_quench_hotspot_current_density_upper_limit__________units_____________ (ineq_units_con035)____________ 'A/m²' -TF_quench_hotspot_current_density_upper_limit__________physical_bound____ (ineq_bound_con035)____________ 2.09012679095639810e+07 -TF_coil_superconductor_temperature_margin_lower_limit__normalised_residue_ (ineq_con036)__________________ 5.15609025384833330e-04 -TF_coil_superconductor_temperature_margin_lower_limit__physical_value____ (ineq_value_con036)____________ 1.50077341353807725e+00 +TF_quench_hotspot_current_density_upper_limit__________physical_bound____ (ineq_bound_con035)____________ 2.08453953790650927e+07 +TF_coil_superconductor_temperature_margin_lower_limit__normalised_residue_ (ineq_con036)__________________ 1.47623696813298011e-01 +TF_coil_superconductor_temperature_margin_lower_limit__physical_value____ (ineq_value_con036)____________ 1.72143554521994702e+00 TF_coil_superconductor_temperature_margin_lower_limit__symbol____________ (ineq_symbol_con036)___________ '>=' TF_coil_superconductor_temperature_margin_lower_limit__units_____________ (ineq_units_con036)____________ 'K' TF_coil_superconductor_temperature_margin_lower_limit__physical_bound____ (ineq_bound_con036)____________ 1.50000000000000000e+00 -CS_superconductor_temperature_margin_lower_limit_normalised_residue______ (ineq_con060)__________________ 1.24514451325552500e-04 -CS_superconductor_temperature_margin_lower_limit_physical_value__________ (ineq_value_con060)____________ 1.50018677167698833e+00 +CS_superconductor_temperature_margin_lower_limit_normalised_residue______ (ineq_con060)__________________ 6.04146494616042418e-05 +CS_superconductor_temperature_margin_lower_limit_physical_value__________ (ineq_value_con060)____________ 1.50009062197419230e+00 CS_superconductor_temperature_margin_lower_limit_symbol__________________ (ineq_symbol_con060)___________ '>=' CS_superconductor_temperature_margin_lower_limit_units___________________ (ineq_units_con060)____________ 'K' CS_superconductor_temperature_margin_lower_limit_physical_bound__________ (ineq_bound_con060)____________ 1.50000000000000000e+00 -Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________normalised_residue_ (ineq_con062)__________________ 4.37786509770546672e-01 -Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________physical_value_ (ineq_value_con062)____________ 7.18893254885273336e+00 +Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________normalised_residue_ (ineq_con062)__________________ 3.00573739710028098e-01 +Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________physical_value_ (ineq_value_con062)____________ 6.50286869855014071e+00 Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________symbol_____ (ineq_symbol_con062)___________ '>=' Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________units______ (ineq_units_con062)____________ '' Alpha_to_energy_confinement_ratio_(τ_α/τₑ)_lower_limit________physical_bound_ (ineq_bound_con062)____________ 5.00000000000000000e+00 -VV_stress_during_TF_quench_upper_limit______normalised_residue___________ (ineq_con065)__________________ 6.70412237033742975e-01 -VV_stress_during_TF_quench_upper_limit______physical_value_______________ (ineq_value_con065)____________ 4.71310501041747555e+07 +VV_stress_during_TF_quench_upper_limit______normalised_residue___________ (ineq_con065)__________________ 6.70034163831404905e-01 +VV_stress_during_TF_quench_upper_limit______physical_value_______________ (ineq_value_con065)____________ 4.71851145721091032e+07 VV_stress_during_TF_quench_upper_limit______symbol_______________________ (ineq_symbol_con065)___________ '<=' VV_stress_during_TF_quench_upper_limit______units________________________ (ineq_units_con065)____________ 'Pa' VV_stress_during_TF_quench_upper_limit______physical_bound_______________ (ineq_bound_con065)____________ 1.43000000000000000e+08 -CS_Tresca_yield_criterion_upper_limit______normalised_residue____________ (ineq_con072)__________________ 1.82055777889766901e-05 -CS_Tresca_yield_criterion_upper_limit______physical_value________________ (ineq_value_con072)____________ 7.49986345816658258e+08 +CS_Tresca_yield_criterion_upper_limit______normalised_residue____________ (ineq_con072)__________________ 6.43610647488301879e-06 +CS_Tresca_yield_criterion_upper_limit______physical_value________________ (ineq_value_con072)____________ 7.49995172920143843e+08 CS_Tresca_yield_criterion_upper_limit______symbol________________________ (ineq_symbol_con072)___________ '<=' CS_Tresca_yield_criterion_upper_limit______units_________________________ (ineq_units_con072)____________ 'Pa' CS_Tresca_yield_criterion_upper_limit______physical_bound________________ (ineq_bound_con072)____________ 7.50000000000000000e+08 -nₑ₀_>_nₑ_pedestal_constraint______normalised_residue_____________________ (ineq_con081)__________________ 6.76773035746281559e-01 -nₑ₀_>_nₑ_pedestal_constraint______physical_value_________________________ (ineq_value_con081)____________ 1.06838999822266597e+20 +nₑ₀_>_nₑ_pedestal_constraint______normalised_residue_____________________ (ineq_con081)__________________ 6.76775163679876224e-01 +nₑ₀_>_nₑ_pedestal_constraint______physical_value_________________________ (ineq_value_con081)____________ 1.04953225969192829e+20 nₑ₀_>_nₑ_pedestal_constraint______symbol_________________________________ (ineq_symbol_con081)___________ '>=' nₑ₀_>_nₑ_pedestal_constraint______units__________________________________ (ineq_units_con081)____________ '/m³' -nₑ₀_>_nₑ_pedestal_constraint______physical_bound_________________________ (ineq_bound_con081)____________ 6.37170311930235372e+19 -(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______normalised_residue___________________ (ineq_con068)__________________ 1.38498212903792606e-05 -(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______physical_value_______________________ (ineq_value_con068)____________ 9.99986150178709643e+00 +nₑ₀_>_nₑ_pedestal_constraint______physical_bound_________________________ (ineq_bound_con081)____________ 6.25923070919424164e+19 +(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______normalised_residue___________________ (ineq_con068)__________________ 9.93583358099847658e-06 +(PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______physical_value_______________________ (ineq_value_con068)____________ 9.99990064166419046e+00 (PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______symbol_______________________________ (ineq_symbol_con068)___________ '<=' (PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______units________________________________ (ineq_units_con068)____________ 'MWT/m' (PₛₑₚBₜ_/_q₉₅AR₀)_upper_limit_______physical_bound_______________________ (ineq_bound_con068)____________ 1.00000000000000000e+01 -TF_coil_case_stress_upper_limit___normalised_residue_____________________ (ineq_con031)__________________ 2.18050688656212799e-05 -TF_coil_case_stress_upper_limit___physical_value_________________________ (ineq_value_con031)____________ 7.49983646198350787e+08 +TF_coil_case_stress_upper_limit___normalised_residue_____________________ (ineq_con031)__________________ 7.45142224944927989e-06 +TF_coil_case_stress_upper_limit___physical_value_________________________ (ineq_value_con031)____________ 7.49994411433312893e+08 TF_coil_case_stress_upper_limit___symbol_________________________________ (ineq_symbol_con031)___________ '<=' TF_coil_case_stress_upper_limit___units__________________________________ (ineq_units_con031)____________ 'Pa' TF_coil_case_stress_upper_limit___physical_bound_________________________ (ineq_bound_con031)____________ 7.50000000000000000e+08 -TF_coil_conduit_stress_upper_limit__normalised_residue___________________ (ineq_con032)__________________ 1.34507309426846522e-01 -TF_coil_conduit_stress_upper_limit__physical_value_______________________ (ineq_value_con032)____________ 6.49119517929865122e+08 +TF_coil_conduit_stress_upper_limit__normalised_residue___________________ (ineq_con032)__________________ 1.34474142032219413e-01 +TF_coil_conduit_stress_upper_limit__physical_value_______________________ (ineq_value_con032)____________ 6.49144393475835443e+08 TF_coil_conduit_stress_upper_limit__symbol_______________________________ (ineq_symbol_con032)___________ '<=' TF_coil_conduit_stress_upper_limit__units________________________________ (ineq_units_con032)____________ 'Pa' TF_coil_conduit_stress_upper_limit__physical_bound_______________________ (ineq_bound_con032)____________ 7.50000000000000000e+08 -Electron_density_upper_limit_(nₑ<)__normalised_residue___________________ (ineq_con005)__________________ 4.63579928944302111e-06 -Electron_density_upper_limit_(nₑ<)__physical_value_______________________ (ineq_value_con005)____________ 8.99530387957490975e+19 +Electron_density_upper_limit_(nₑ<)__normalised_residue___________________ (ineq_con005)__________________ 3.69123321053432818e-06 +Electron_density_upper_limit_(nₑ<)__physical_value_______________________ (ineq_value_con005)____________ 8.83652838340796580e+19 Electron_density_upper_limit_(nₑ<)__symbol_______________________________ (ineq_symbol_con005)___________ '<=' Electron_density_upper_limit_(nₑ<)__units________________________________ (ineq_units_con005)____________ '/m³' -Electron_density_upper_limit_(nₑ<)__physical_bound_______________________ (ineq_bound_con005)____________ 8.99534558019155886e+19 -Neutron_wall_load_upper_limit_____normalised_residue_____________________ (ineq_con008)__________________ 4.84119853506016495e-01 -Neutron_wall_load_upper_limit_____physical_value_________________________ (ineq_value_con008)____________ 1.03176029298796701e+00 +Electron_density_upper_limit_(nₑ<)__physical_bound_______________________ (ineq_bound_con005)____________ 8.83656100121540035e+19 +Neutron_wall_load_upper_limit_____normalised_residue_____________________ (ineq_con008)__________________ 4.91716700027189257e-01 +Neutron_wall_load_upper_limit_____physical_value_________________________ (ineq_value_con008)____________ 1.01656659994562149e+00 Neutron_wall_load_upper_limit_____symbol_________________________________ (ineq_symbol_con008)___________ '<=' Neutron_wall_load_upper_limit_____units__________________________________ (ineq_units_con008)____________ 'MW/m²' Neutron_wall_load_upper_limit_____physical_bound_________________________ (ineq_bound_con008)____________ 2.00000000000000000e+00 -Fusion_power_upper_limit__________normalised_residue_____________________ (ineq_con009)__________________ 4.50217518529922311e-01 -Fusion_power_upper_limit__________physical_value_________________________ (ineq_value_con009)____________ 1.64934744441023304e+03 +Fusion_power_upper_limit__________normalised_residue_____________________ (ineq_con009)__________________ 4.58316069112746138e-01 +Fusion_power_upper_limit__________physical_value_________________________ (ineq_value_con009)____________ 1.62505179266176174e+03 Fusion_power_upper_limit__________symbol_________________________________ (ineq_symbol_con009)___________ '<=' Fusion_power_upper_limit__________units__________________________________ (ineq_units_con009)____________ 'MW' Fusion_power_upper_limit__________physical_bound_________________________ (ineq_bound_con009)____________ 3.00000000000000000e+03 -Burn_time_lower_limit_____________normalised_residue_____________________ (ineq_con013)__________________ 8.78464682307900091e-06 -Burn_time_lower_limit_____________physical_value_________________________ (ineq_value_con013)____________ 7.20006324945712640e+03 +Burn_time_lower_limit_____________normalised_residue_____________________ (ineq_con013)__________________ 6.06537719027855360e-06 +Burn_time_lower_limit_____________physical_value_________________________ (ineq_value_con013)____________ 7.20004367071577053e+03 Burn_time_lower_limit_____________symbol_________________________________ (ineq_symbol_con013)___________ '>=' Burn_time_lower_limit_____________units__________________________________ (ineq_units_con013)____________ 'sec' Burn_time_lower_limit_____________physical_bound_________________________ (ineq_bound_con013)____________ 7.20000000000000000e+03 -Runtime_of_PROCESS_in_seconds____________________________________________ (process_runtime)______________ 1.71616399288177490e+01 +Runtime_of_PROCESS_in_seconds____________________________________________ (process_runtime)______________ 2.52657616138458252e+01 # Final Feasible Point # # Power Reactor Costs (1990 US$) # -First_wall_/_blanket_life_(years)________________________________________ (life_blkt)____________________ 4.84608686143566558e+00 -Divertor_life_(years)____________________________________________________ (life_div)_____________________ 1.02730752894734345e+00 -Cost_of_electricity_(m$/kWh)_____________________________________________ (coe)__________________________ 5.05763964823031870e+02 +First_wall_/_blanket_life_(years)________________________________________ (life_blkt)____________________ 4.91851689822138738e+00 +Divertor_life_(years)____________________________________________________ (life_div)_____________________ 1.02496414152843185e+00 +Cost_of_electricity_(m$/kWh)_____________________________________________ (coe)__________________________ 5.06978129038085058e+02 # Detailed Costings (1990 US$) # Acc.22_multiplier_for_Nth_of_a_kind______________________________________ (fkind)________________________ 1.00000000000000000e+00 Level_of_Safety_Assurance________________________________________________ (lsa)__________________________ 4 # Structures and Site Facilities # Site_improvements,_facilities,_land_(M$)_________________________________ (c211)_________________________ 3.52000000000000028e+01 -Reactor_building_cost_(M$)_______________________________________________ (c212)_________________________ 4.48432037925779127e+02 +Reactor_building_cost_(M$)_______________________________________________ (c212)_________________________ 4.48013212472533496e+02 Turbine_building_cost_(M$)_______________________________________________ (c213)_________________________ 3.80000000000000000e+01 -Reactor_maintenance_building_cost_(M$)___________________________________ (c2141)________________________ 1.03067666770417446e+02 -Warm_shop_cost_(M$)______________________________________________________ (c2142)________________________ 5.76412769156547569e+01 +Reactor_maintenance_building_cost_(M$)___________________________________ (c2141)________________________ 1.03067666770750478e+02 +Warm_shop_cost_(M$)______________________________________________________ (c2142)________________________ 5.76412769157642870e+01 Tritium_building_cost_(M$)_______________________________________________ (c215)_________________________ 1.47999999999999989e+01 -Electrical_equipment_building_cost_(M$)__________________________________ (c216)_________________________ 1.92062566670402752e+01 +Electrical_equipment_building_cost_(M$)__________________________________ (c216)_________________________ 1.92055652333430409e+01 Additional_buildings_cost_(M$)___________________________________________ (c2171)________________________ 1.80000000000000000e+01 Control_room_buildings_cost_(M$)_________________________________________ (c2172)________________________ 2.10000000000000000e+01 Shop_and_warehouses_cost_(M$)____________________________________________ (c2173)________________________ 1.14999999999999982e+01 -Cryogenic_building_cost_(M$)_____________________________________________ (c2174)________________________ 7.41997247282210992e+00 -Total_account_21_cost_(M$)_______________________________________________ (c21)__________________________ 7.74267210751713606e+02 +Cryogenic_building_cost_(M$)_____________________________________________ (c2174)________________________ 7.41402412540725297e+00 +Total_account_21_cost_(M$)_______________________________________________ (c21)__________________________ 7.73841745517798472e+02 # Reactor Systems # -First_wall_cost_(M$)_____________________________________________________ (c2211)________________________ 1.91300792111912870e+02 -Blanket_beryllium_cost_(M$)______________________________________________ (c22121)_______________________ 2.61092739755135653e+02 -Blanket_breeder_material_cost_(M$)_______________________________________ (c22122)_______________________ 6.39846060666091375e+02 -Blanket_stainless_steel_cost_(M$)________________________________________ (c22123)_______________________ 8.07261782439374400e+01 +First_wall_cost_(M$)_____________________________________________________ (c2211)________________________ 2.00006500457068256e+02 +Blanket_beryllium_cost_(M$)______________________________________________ (c22121)_______________________ 2.73629900883118751e+02 +Blanket_breeder_material_cost_(M$)_______________________________________ (c22122)_______________________ 6.70570213192121969e+02 +Blanket_stainless_steel_cost_(M$)________________________________________ (c22123)_______________________ 8.46024909473840836e+01 Blanket_vanadium_cost_(M$)_______________________________________________ (c22124)_______________________ 0.00000000000000000e+00 -Blanket_total_cost_(M$)__________________________________________________ (c2212)________________________ 9.81664978665164426e+02 -Bulk_shield_cost_(M$)____________________________________________________ (c22131)_______________________ 7.83942026854750935e+01 -Penetration_shielding_cost_(M$)__________________________________________ (c22132)_______________________ 7.83942026854750935e+01 -Total_shield_cost_(M$)___________________________________________________ (c2213)________________________ 1.56788405370950187e+02 -Total_support_structure_cost_(M$)________________________________________ (c2214)________________________ 3.94838146263062413e+01 -Divertor_cost_(M$)_______________________________________________________ (c2215)________________________ 4.16600318622220911e+01 -Total_account_221_cost_(M$)______________________________________________ (c221)_________________________ 1.41089802263655565e+03 +Blanket_total_cost_(M$)__________________________________________________ (c2212)________________________ 1.02880260502262468e+03 +Bulk_shield_cost_(M$)____________________________________________________ (c22131)_______________________ 7.83942026859331804e+01 +Penetration_shielding_cost_(M$)__________________________________________ (c22132)_______________________ 7.83942026859331804e+01 +Total_shield_cost_(M$)___________________________________________________ (c2213)________________________ 1.56788405371866361e+02 +Total_support_structure_cost_(M$)________________________________________ (c2214)________________________ 3.94136038328070271e+01 +Divertor_cost_(M$)_______________________________________________________ (c2215)________________________ 4.16600318625206114e+01 +Total_account_221_cost_(M$)______________________________________________ (c221)_________________________ 1.46667114654688703e+03 # Magnets # -TF_coil_conductor_cost_(M$)______________________________________________ (c22211)_______________________ 1.35578533153393948e+02 -TF_coil_winding_cost_(M$)________________________________________________ (c22212)_______________________ 5.55890498614778465e+01 -TF_coil_case_cost_(M$)___________________________________________________ (c22213)_______________________ 3.38062818620349788e+02 -TF_intercoil_structure_cost_(M$)_________________________________________ (c22214)_______________________ 1.39912827128261910e+02 -TF_coil_gravity_support_structure_(M$)___________________________________ (c22215)_______________________ 4.31081345736084387e+01 -TF_magnet_assemblies_cost_(M$)___________________________________________ (c2221)________________________ 7.12251363337092016e+02 -PF_coil_conductor_cost_(M$)______________________________________________ (c22221)_______________________ 4.36138016019219549e+02 -PF_coil_winding_cost_(M$)________________________________________________ (c22222)_______________________ 7.37400779316394193e+01 -PF_coil_case_cost_(M$)___________________________________________________ (c22223)_______________________ 1.40254339691590445e+02 -PF_coil_support_structure_cost_(M$)______________________________________ (c22224)_______________________ 8.13515204662120084e+00 -PF_magnet_assemblies_cost_(M$)___________________________________________ (c2222)________________________ 6.58267585689070643e+02 -Vacuum_vessel_assembly_cost_(M$)_________________________________________ (c2223)________________________ 2.54042123813152443e+02 -Total_account_222_cost_(M$)______________________________________________ (c222)_________________________ 1.62456107283931533e+03 +TF_coil_conductor_cost_(M$)______________________________________________ (c22211)_______________________ 1.37541354384116801e+02 +TF_coil_winding_cost_(M$)________________________________________________ (c22212)_______________________ 5.50555139278807388e+01 +TF_coil_case_cost_(M$)___________________________________________________ (c22213)_______________________ 3.34366714315363879e+02 +TF_intercoil_structure_cost_(M$)_________________________________________ (c22214)_______________________ 1.36770868125995605e+02 +TF_coil_gravity_support_structure_(M$)___________________________________ (c22215)_______________________ 4.27503629009933803e+01 +TF_magnet_assemblies_cost_(M$)___________________________________________ (c2221)________________________ 7.06484813654350319e+02 +PF_coil_conductor_cost_(M$)______________________________________________ (c22221)_______________________ 4.25525611406216115e+02 +PF_coil_winding_cost_(M$)________________________________________________ (c22222)_______________________ 7.27700521688755373e+01 +PF_coil_case_cost_(M$)___________________________________________________ (c22223)_______________________ 1.37411916734087072e+02 +PF_coil_support_structure_cost_(M$)______________________________________ (c22224)_______________________ 7.85048573714757847e+00 +PF_magnet_assemblies_cost_(M$)___________________________________________ (c2222)________________________ 6.43558066046326303e+02 +Vacuum_vessel_assembly_cost_(M$)_________________________________________ (c2223)________________________ 2.54042123814594959e+02 +Total_account_222_cost_(M$)______________________________________________ (c222)_________________________ 1.60408500351527164e+03 # Power Injection # -ECH_system_cost_(M$)_____________________________________________________ (c2231)________________________ 2.53810035952447066e+02 +ECH_system_cost_(M$)_____________________________________________________ (c2231)________________________ 2.37597707970224860e+02 Lower_hybrid_system_cost_(M$)____________________________________________ (c2232)________________________ 0.00000000000000000e+00 Neutral_beam_system_cost_(M$)____________________________________________ (c2233)________________________ 0.00000000000000000e+00 -Total_account_223_cost_(M$)______________________________________________ (c223)_________________________ 2.53810035952447066e+02 +Total_account_223_cost_(M$)______________________________________________ (c223)_________________________ 2.37597707970224860e+02 # Vacuum Systems # -High_vacuum_pumps_cost_(M$)______________________________________________ (c2241)________________________ 1.24799999999999986e+01 +High_vacuum_pumps_cost_(M$)______________________________________________ (c2241)________________________ 1.28699999999999992e+01 Backing_pumps_cost_(M$)__________________________________________________ (c2242)________________________ 4.67999999999999972e+00 -Vacuum_duct_cost_(M$)____________________________________________________ (c2243)________________________ 2.47038379752873638e+00 -Valves_cost_(M$)_________________________________________________________ (c2244)________________________ 5.64087852224764763e+00 +Vacuum_duct_cost_(M$)____________________________________________________ (c2243)________________________ 2.66361978925133602e+00 +Valves_cost_(M$)_________________________________________________________ (c2244)________________________ 6.08472383397996630e+00 Duct_shielding_cost_(M$)_________________________________________________ (c2245)________________________ 0.00000000000000000e+00 Instrumentation_cost_(M$)________________________________________________ (c2246)________________________ 1.30000000000000004e+00 -Total_account_224_cost_(M$)______________________________________________ (c224)_________________________ 2.65712623197763804e+01 +Total_account_224_cost_(M$)______________________________________________ (c224)_________________________ 2.75983436232312975e+01 # Power Conditioning # -TF_coil_power_supplies_cost_(M$)_________________________________________ (c22511)_______________________ 3.42711096832259088e+00 -TF_coil_breakers_cost_(M$)_______________________________________________ (c22512)_______________________ 3.02135841144862027e+01 -TF_coil_dump_resistors_cost_(M$)_________________________________________ (c22513)_______________________ 1.87547274728246762e+01 +TF_coil_power_supplies_cost_(M$)_________________________________________ (c22511)_______________________ 3.41906888745534676e+00 +TF_coil_breakers_cost_(M$)_______________________________________________ (c22512)_______________________ 3.02204772697540562e+01 +TF_coil_dump_resistors_cost_(M$)_________________________________________ (c22513)_______________________ 1.86184553266801700e+01 TF_coil_instrumentation_and_control_(M$)_________________________________ (c22514)_______________________ 4.79999999999999982e+00 -TF_coil_bussing_cost_(M$)________________________________________________ (c22515)_______________________ 3.23366786833217006e+01 -Total,_TF_coil_power_costs_(M$)__________________________________________ (c2251)________________________ 8.95321012389551640e+01 -PF_coil_power_supplies_cost_(M$)_________________________________________ (c22521)_______________________ 2.64468187184878856e+00 +TF_coil_bussing_cost_(M$)________________________________________________ (c22515)_______________________ 3.25372121572929771e+01 +Total,_TF_coil_power_costs_(M$)__________________________________________ (c2251)________________________ 8.95952136411825393e+01 +PF_coil_power_supplies_cost_(M$)_________________________________________ (c22521)_______________________ 2.58200589417052262e+00 PF_coil_instrumentation_and_control_(M$)_________________________________ (c22522)_______________________ 3.59999999999999964e+00 -PF_coil_bussing_cost_(M$)________________________________________________ (c22523)_______________________ 1.19952000000676815e+01 -PF_coil_burn_power_supplies_cost_(M$)____________________________________ (c22524)_______________________ 1.26984871211426009e+00 +PF_coil_bussing_cost_(M$)________________________________________________ (c22523)_______________________ 1.19952000000811658e+01 +PF_coil_burn_power_supplies_cost_(M$)____________________________________ (c22524)_______________________ 1.26923780569472977e+00 PF_coil_breakers_cost_(M$)_______________________________________________ (c22525)_______________________ 1.47093702844054572e+01 -PF_coil_dump_resistors_cost_(M$)_________________________________________ (c22526)_______________________ 3.64146614668102409e+00 +PF_coil_dump_resistors_cost_(M$)_________________________________________ (c22526)_______________________ 3.54062324424281449e+00 PF_coil_ac_breakers_cost_(M$)____________________________________________ (c22527)_______________________ 8.99999999999999911e-01 -Total,_PF_coil_power_costs_(M$)__________________________________________ (c2252)________________________ 3.87605670151172106e+01 -Total,_energy_storage_cost_(M$)__________________________________________ (c2253)________________________ 1.68643082274470899e+01 -Total_account_225_cost_(M$)______________________________________________ (c225)_________________________ 1.45156976481519450e+02 +Total,_PF_coil_power_costs_(M$)__________________________________________ (c2252)________________________ 3.85964372285946880e+01 +Total,_energy_storage_cost_(M$)__________________________________________ (c2253)________________________ 1.68642084921997011e+01 +Total_account_225_cost_(M$)______________________________________________ (c225)_________________________ 1.45055859361976928e+02 # Heat Transport System # -Pumps_and_piping_system_cost_(M$)________________________________________ (cpp)__________________________ 3.72147376199039641e+01 -Primary_heat_exchanger_cost_(M$)_________________________________________ (chx)__________________________ 7.26604652931616215e+01 -Total,_reactor_cooling_system_cost_(M$)__________________________________ (c2261)________________________ 1.09875202913065579e+02 -Pumps,_piping_cost_(M$)__________________________________________________ (cppa)_________________________ 2.94702597677910134e+01 -Total,_auxiliary_cooling_system_cost_(M$)________________________________ (c2262)________________________ 2.94702597677910134e+01 -Total,_cryogenic_system_cost_(M$)________________________________________ (c2263)________________________ 1.88209059407341726e+02 -Total_account_226_cost_(M$)______________________________________________ (c226)_________________________ 3.27554522088198325e+02 +Pumps_and_piping_system_cost_(M$)________________________________________ (cpp)__________________________ 3.79172257964038693e+01 +Primary_heat_exchanger_cost_(M$)_________________________________________ (chx)__________________________ 7.23091564432788658e+01 +Total,_reactor_cooling_system_cost_(M$)__________________________________ (c2261)________________________ 1.10226382239682735e+02 +Pumps,_piping_cost_(M$)__________________________________________________ (cppa)_________________________ 2.89642089311734665e+01 +Total,_auxiliary_cooling_system_cost_(M$)________________________________ (c2262)________________________ 2.89642089311734665e+01 +Total,_cryogenic_system_cost_(M$)________________________________________ (c2263)________________________ 1.88006906425095707e+02 +Total_account_226_cost_(M$)______________________________________________ (c226)_________________________ 3.27197497595951916e+02 # Fuel Handling System # Fuelling_system_cost_(M$)________________________________________________ (c2271)________________________ 2.23000000000000007e+01 -Fuel_processing_and_purification_cost_(M$)_______________________________ (c2272)________________________ 1.03577763733288236e+02 -Atmospheric_recovery_systems_cost_(M$)___________________________________ (c2273)________________________ 5.76179438296431599e+01 -Nuclear_building_ventilation_cost_(M$)___________________________________ (c2274)________________________ 6.87529793762508774e+01 -Total_account_227_cost_(M$)______________________________________________ (c227)_________________________ 2.52248686939182278e+02 +Fuel_processing_and_purification_cost_(M$)_______________________________ (c2272)________________________ 1.02768515156729009e+02 +Atmospheric_recovery_systems_cost_(M$)___________________________________ (c2273)________________________ 5.75681345333144492e+01 +Nuclear_building_ventilation_cost_(M$)___________________________________ (c2274)________________________ 6.87054270556942441e+01 +Total_account_227_cost_(M$)______________________________________________ (c227)_________________________ 2.51342076745737700e+02 # Instrumentation and Control # Instrumentation_and_control_cost_(M$)____________________________________ (c228)_________________________ 1.50000000000000000e+02 # Maintenance Equipment # Maintenance_equipment_cost_(M$)__________________________________________ (c229)_________________________ 1.25000000000000000e+02 # Total Account 22 Cost # -Total_account_22_cost_(M$)_______________________________________________ (c22)__________________________ 4.31580057925699475e+03 +Total_account_22_cost_(M$)_______________________________________________ (c22)__________________________ 4.33454763535928214e+03 # Turbine Plant Equipment # -Turbine_plant_equipment_cost_(M$)________________________________________ (c23)__________________________ 1.78954939811341518e+02 +Turbine_plant_equipment_cost_(M$)________________________________________ (c23)__________________________ 1.77929478267197993e+02 # Electric Plant Equipment # Switchyard_equipment_cost_(M$)___________________________________________ (c241)_________________________ 1.83999999999999986e+01 -Transformers_cost_(M$)___________________________________________________ (c242)_________________________ 7.45910755582987051e+00 -Low_voltage_equipment_cost_(M$)__________________________________________ (c243)_________________________ 6.49635392936309053e+00 +Transformers_cost_(M$)___________________________________________________ (c242)_________________________ 7.36792132226266716e+00 +Low_voltage_equipment_cost_(M$)__________________________________________ (c243)_________________________ 6.57366972115304904e+00 Diesel_backup_equipment_cost_(M$)________________________________________ (c244)_________________________ 6.79999999999999982e+00 Auxiliary_facilities_cost_(M$)___________________________________________ (c245)_________________________ 1.50000000000000000e+00 -Total_account_24_cost_(M$)_______________________________________________ (c24)__________________________ 4.06554614851929585e+01 +Total_account_24_cost_(M$)_______________________________________________ (c24)__________________________ 4.06415910434157155e+01 # Miscellaneous Plant Equipment # Miscellaneous_plant_equipment_cost_(M$)__________________________________ (c25)__________________________ 2.50000000000000000e+01 # Heat Rejection System # -Heat_rejection_system_cost_(M$)__________________________________________ (c26)__________________________ 5.08425524531706543e+01 +Heat_rejection_system_cost_(M$)__________________________________________ (c26)__________________________ 5.04917443488238433e+01 # Plant Direct Cost # -Plant_direct_cost_(M$)___________________________________________________ (cdirt)________________________ 5.38552074375841312e+03 +Plant_direct_cost_(M$)___________________________________________________ (cdirt)________________________ 5.40245219453651862e+03 # Reactor Core Cost # -Reactor_core_cost_(M$)___________________________________________________ (crctcore)_____________________ 3.28926913142831791e+03 +Reactor_core_cost_(M$)___________________________________________________ (crctcore)_____________________ 3.30835385803238341e+03 # Indirect Cost # -Indirect_cost_(M$)_______________________________________________________ (c9)___________________________ 1.79607116804343059e+03 +Indirect_cost_(M$)_______________________________________________________ (c9)___________________________ 1.80171780687792875e+03 # Total Contingency # -Total_contingency_(M$)___________________________________________________ (ccont)________________________ 1.40041042280135957e+03 +Total_contingency_(M$)___________________________________________________ (ccont)________________________ 1.40481315027581718e+03 # Constructed Cost # -Constructed_cost_(M$)____________________________________________________ (concost)______________________ 8.58200233460320305e+03 +Constructed_cost_(M$)____________________________________________________ (concost)______________________ 8.60898315169026500e+03 # Interest during Construction # -Interest_during_construction_(M$)________________________________________ (moneyint)_____________________ 1.41603038520952873e+03 +Interest_during_construction_(M$)________________________________________ (moneyint)_____________________ 1.42048222002889406e+03 # Total Capital Investment # -Total_capital_investment_(M$)____________________________________________ (capcost)______________________ 9.99803271981273247e+03 +Total_capital_investment_(M$)____________________________________________ (capcost)______________________ 1.00294653717191595e+04 # Plant Availability # Allowable_blanket_neutron_fluence_(MW-yr/m2)_____________________________ (abktflnc)_____________________ 5.00000000000000000e+00 Allowable_divertor_heat_fluence_(MW-yr/m2)_______________________________ (adivflnc)_____________________ 7.00000000000000000e+00 -First_wall_/_blanket_lifetime_(years)____________________________________ (life_blkt_fpy)________________ 6.05760857679458198e+00 OP -Divertor_lifetime_(years)________________________________________________ (life_div_fpy)_________________ 1.28413441118417926e+00 OP -Heating/CD_system_lifetime_(years)_______________________________________ (life_hcd_fpy)_________________ 6.05760857679458198e+00 OP +First_wall_/_blanket_lifetime_(years)____________________________________ (life_blkt_fpy)________________ 6.14814612277673422e+00 OP +Divertor_lifetime_(years)________________________________________________ (life_div_fpy)_________________ 1.28120517691053970e+00 OP +Heating/CD_system_lifetime_(years)_______________________________________ (life_hcd_fpy)_________________ 6.14814612277673422e+00 OP Total_plant_lifetime_(years)_____________________________________________ (life_plant)___________________ 3.00000000000000000e+01 Total_plant_availability_fraction________________________________________ (f_t_plant_available)__________ 8.00000000000000044e-01 -Number_of_fusion_cycles_to_reach_allowable_fw/blanket_DPA________________ (bktcycles)____________________ 1.55348727189735982e+04 +Number_of_fusion_cycles_to_reach_allowable_fw/blanket_DPA________________ (bktcycles)____________________ 1.57765482732136406e+04 # Plasma Geometry # Tokamak_aspect_ratio_=_Conventional,_itart_=_0___________________________ (itart)________________________ 0 Plasma_shaping_model_____________________________________________________ (i_plasma_shape)_______________ 0 -Major_radius_(R₀)_(m)____________________________________________________ (rmajor)_______________________ 8.00000000014388490e+00 -Minor_radius_(a)_(m)_____________________________________________________ (rminor)_______________________ 2.66666666671462815e+00 OP +Major_radius_(R₀)_(m)____________________________________________________ (rmajor)_______________________ 8.00000000017254642e+00 +Minor_radius_(a)_(m)_____________________________________________________ (rminor)_______________________ 2.66666666672418229e+00 OP Aspect_ratio_(A)_________________________________________________________ (aspect)_______________________ 3.00000000000000000e+00 Plasma_squareness_(ζ)____________________________________________________ (plasma_square)________________ 0.00000000000000000e+00 IP Plasma_geometry_model____________________________________________________ (i_plasma_geometry)____________ 0 -ITER_Physics_Basis_definition_of_elongation_(κₐ)_________________________ (kappa_ipb)____________________ 1.68145080681585979e+00 OP +ITER_Physics_Basis_definition_of_elongation_(κₐ)_________________________ (kappa_ipb)____________________ 1.68145080681586134e+00 OP Elongation,_X-point_(κₐ)_________________________________________________ (kappa)________________________ 1.85000000000000009e+00 IP Elongation,_95%_surface_(κ₉₅)____________________________________________ (kappa95)______________________ 1.65178571428571419e+00 OP Triangularity,_X-point_(δ)_______________________________________________ (triang)_______________________ 5.00000000000000000e-01 IP Triangularity,_95%_surface_(δ₉₅)_________________________________________ (triang95)_____________________ 3.33333333333333315e-01 OP -Plasma_poloidal_perimeter_(m)____________________________________________ (len_plasma_poloidal)__________ 2.40813671399585303e+01 OP -Plasma_cross-sectional_area_(m²)_________________________________________ (a_plasma_poloidal)____________ 3.83982222377527336e+01 OP -Plasma_surface_area_(m²)_________________________________________________ (a_plasma_surface)_____________ 1.17384277716678366e+03 OP -Plasma_volume_(m³)_______________________________________________________ (vol_plasma)___________________ 1.88817115409754888e+03 OP +Plasma_poloidal_perimeter_(m)____________________________________________ (len_plasma_poloidal)__________ 2.40813671400448115e+01 OP +Plasma_cross-sectional_area_(m²)_________________________________________ (a_plasma_poloidal)____________ 3.83982222380278841e+01 OP +Plasma_surface_area_(m²)_________________________________________________ (a_plasma_surface)_____________ 1.17384277717519490e+03 OP +Plasma_volume_(m³)_______________________________________________________ (vol_plasma)___________________ 1.88817115411784516e+03 OP # Plasma Current and Safety Factor # Plasma_current_scaling_law_used__________________________________________ (i_plasma_current)_____________ 4 -Plasma_current_(Iₚ)_(MA)_________________________________________________ (plasma_current_MA)____________ 1.67464957583690364e+01 OP -Plasma_current_(Iₚ)_(A)__________________________________________________ (plasma_current)_______________ 1.67464957583690360e+07 OP -Peng_analytic_fit________________________________________________________ (c_plasma_peng_analytic)_______ 1.71092903658850752e+07 OP -Peng_divertor_scaling____________________________________________________ (c_plasma_peng_double_null)____ 1.71789895803654902e+07 OP -Simple_ITER_scaling_(cylindrical_case)___________________________________ (c_plasma_cyclindrical)________ 6.58820138598143402e+06 OP -IPDG89_scaling___________________________________________________________ (c_plasma_ipdg89)______________ 1.67464957583690360e+07 OP -Todd_empirical_scaling_I_________________________________________________ (c_plasma_todd_empirical_i)____ 1.86369518429234512e+07 OP -Todd_empirical_scaling_II________________________________________________ (c_plasma_todd_empirical_ii)___ 2.03555421796807125e+07 OP -Connor-Hastie_model______________________________________________________ (c_plasma_connor_hastie)_______ 1.73461743880732618e+07 OP -Sauter_scaling___________________________________________________________ (c_plasma_sauter)______________ 2.02801814925035127e+07 OP -FIESTA_ST_scaling________________________________________________________ (c_plasma_fiesta_st)___________ 1.43382006215301566e+07 OP +Plasma_current_(Iₚ)_(MA)_________________________________________________ (plasma_current_MA)____________ 1.64508889633267437e+01 OP +Plasma_current_(Iₚ)_(A)__________________________________________________ (plasma_current)_______________ 1.64508889633267447e+07 OP +Peng_analytic_fit________________________________________________________ (c_plasma_peng_analytic)_______ 1.68072795712996088e+07 OP +Peng_divertor_scaling____________________________________________________ (c_plasma_peng_double_null)____ 1.68757484650187753e+07 OP +Simple_ITER_scaling_(cylindrical_case)___________________________________ (c_plasma_cyclindrical)________ 6.47190737887072936e+06 OP +IPDG89_scaling___________________________________________________________ (c_plasma_ipdg89)______________ 1.64508889633267447e+07 OP +Todd_empirical_scaling_I_________________________________________________ (c_plasma_todd_empirical_i)____ 1.83079749821440317e+07 OP +Todd_empirical_scaling_II________________________________________________ (c_plasma_todd_empirical_ii)___ 1.99962290032463819e+07 OP +Connor-Hastie_model______________________________________________________ (c_plasma_connor_hastie)_______ 1.69943130632901900e+07 OP +Sauter_scaling___________________________________________________________ (c_plasma_sauter)______________ 1.99221985723526515e+07 OP +FIESTA_ST_scaling________________________________________________________ (c_plasma_fiesta_st)___________ 1.40851047145679034e+07 OP Current_density_profile_factor_(αⱼ)______________________________________ (alphaj)_______________________ 1.00000000000000000e+00 -J._Wesson_plasma_current_profile_index___________________________________ (alphaj_wesson)________________ 1.78834356736395028e+00 OP -On-axis_plasma_current_density_(j₀)_(A/m²)_______________________________ (j_plasma_on_axis)_____________ 6.54190276883602259e+05 OP +J._Wesson_plasma_current_profile_index___________________________________ (alphaj_wesson)________________ 1.82927288375913344e+00 OP +On-axis_plasma_current_density_(j₀)_(A/m²)_______________________________ (j_plasma_on_axis)_____________ 6.42642601837742841e+05 OP Safety_factor_on_axis_(q₀)_______________________________________________ (q0)___________________________ 1.00000000000000000e+00 -Safety_factor_at_95%_flux_surface_(q₉₅)__________________________________ (q95)__________________________ 3.36431078549756668e+00 -Cylindrical_safety_factor_(qcyl)_________________________________________ (qstar)________________________ 2.78834356736395028e+00 OP +Safety_factor_at_95%_flux_surface_(q₉₅)__________________________________ (q95)__________________________ 3.41369456381062930e+00 +Cylindrical_safety_factor_(qcyl)_________________________________________ (qstar)________________________ 2.82927288375913344e+00 OP # Plasma magnetic fields # -Vertical_field_at_plasma_(Bᵥ)_(T)________________________________________ (b_plasma_vertical_required)___ -7.16016571731281193e-01 OP -Vacuum_toroidal_field_at_R₀_(Bᴛ(R₀))_(T)_________________________________ (b_plasma_toroidal_on_axis)____ 4.98707032262356886e+00 -Toroidal_field_at_plasma_inboard_(Bᴛ(R₀-a))_(T)__________________________ (b_plasma_inboard_toroidal)____ 7.48060548393535196e+00 -Toroidal_field_at_plasma_outboard_(Bᴛ(R₀+a))_(T)_________________________ (b_plasma_outboard_toroidal)___ 3.74030274196767687e+00 -Toroidal_field_in_plasma_at_point_0______________________________________ b_plasma_toroidal_profile0_____ 7.48060548393535196e+00 -Toroidal_field_in_plasma_at_point_1______________________________________ b_plasma_toroidal_profile1_____ 7.47313980979968839e+00 -Toroidal_field_in_plasma_at_point_2______________________________________ b_plasma_toroidal_profile2_____ 7.46568902235223142e+00 -Toroidal_field_in_plasma_at_point_3______________________________________ b_plasma_toroidal_profile3_____ 7.45825307711084484e+00 -Toroidal_field_in_plasma_at_point_4______________________________________ b_plasma_toroidal_profile4_____ 7.45083192977043574e+00 -Toroidal_field_in_plasma_at_point_5______________________________________ b_plasma_toroidal_profile5_____ 7.44342553620207603e+00 -Toroidal_field_in_plasma_at_point_6______________________________________ b_plasma_toroidal_profile6_____ 7.43603385245212234e+00 -Toroidal_field_in_plasma_at_point_7______________________________________ b_plasma_toroidal_profile7_____ 7.42865683474135619e+00 -Toroidal_field_in_plasma_at_point_8______________________________________ b_plasma_toroidal_profile8_____ 7.42129443946411005e+00 -Toroidal_field_in_plasma_at_point_9______________________________________ b_plasma_toroidal_profile9_____ 7.41394662318741293e+00 -Toroidal_field_in_plasma_at_point_10_____________________________________ b_plasma_toroidal_profile10____ 7.40661334265013593e+00 -Toroidal_field_in_plasma_at_point_11_____________________________________ b_plasma_toroidal_profile11____ 7.39929455476214226e+00 -Toroidal_field_in_plasma_at_point_12_____________________________________ b_plasma_toroidal_profile12____ 7.39199021660344258e+00 -Toroidal_field_in_plasma_at_point_13_____________________________________ b_plasma_toroidal_profile13____ 7.38470028542336099e+00 -Toroidal_field_in_plasma_at_point_14_____________________________________ b_plasma_toroidal_profile14____ 7.37742471863969218e+00 -Toroidal_field_in_plasma_at_point_15_____________________________________ b_plasma_toroidal_profile15____ 7.37016347383788162e+00 -Toroidal_field_in_plasma_at_point_16_____________________________________ b_plasma_toroidal_profile16____ 7.36291650877019332e+00 -Toroidal_field_in_plasma_at_point_17_____________________________________ b_plasma_toroidal_profile17____ 7.35568378135489898e+00 -Toroidal_field_in_plasma_at_point_18_____________________________________ b_plasma_toroidal_profile18____ 7.34846524967545367e+00 -Toroidal_field_in_plasma_at_point_19_____________________________________ b_plasma_toroidal_profile19____ 7.34126087197969390e+00 -Toroidal_field_in_plasma_at_point_20_____________________________________ b_plasma_toroidal_profile20____ 7.33407060667902755e+00 -Toroidal_field_in_plasma_at_point_21_____________________________________ b_plasma_toroidal_profile21____ 7.32689441234763983e+00 -Toroidal_field_in_plasma_at_point_22_____________________________________ b_plasma_toroidal_profile22____ 7.31973224772168862e+00 -Toroidal_field_in_plasma_at_point_23_____________________________________ b_plasma_toroidal_profile23____ 7.31258407169852287e+00 -Toroidal_field_in_plasma_at_point_24_____________________________________ b_plasma_toroidal_profile24____ 7.30544984333589031e+00 -Toroidal_field_in_plasma_at_point_25_____________________________________ b_plasma_toroidal_profile25____ 7.29832952185115769e+00 -Toroidal_field_in_plasma_at_point_26_____________________________________ b_plasma_toroidal_profile26____ 7.29122306662053354e+00 -Toroidal_field_in_plasma_at_point_27_____________________________________ b_plasma_toroidal_profile27____ 7.28413043717829467e+00 -Toroidal_field_in_plasma_at_point_28_____________________________________ b_plasma_toroidal_profile28____ 7.27705159321602224e+00 -Toroidal_field_in_plasma_at_point_29_____________________________________ b_plasma_toroidal_profile29____ 7.26998649458183266e+00 -Toroidal_field_in_plasma_at_point_30_____________________________________ b_plasma_toroidal_profile30____ 7.26293510127961905e+00 -Toroidal_field_in_plasma_at_point_31_____________________________________ b_plasma_toroidal_profile31____ 7.25589737346830166e+00 -Toroidal_field_in_plasma_at_point_32_____________________________________ b_plasma_toroidal_profile32____ 7.24887327146107197e+00 -Toroidal_field_in_plasma_at_point_33_____________________________________ b_plasma_toroidal_profile33____ 7.24186275572464933e+00 -Toroidal_field_in_plasma_at_point_34_____________________________________ b_plasma_toroidal_profile34____ 7.23486578687853932e+00 -Toroidal_field_in_plasma_at_point_35_____________________________________ b_plasma_toroidal_profile35____ 7.22788232569429301e+00 -Toroidal_field_in_plasma_at_point_36_____________________________________ b_plasma_toroidal_profile36____ 7.22091233309478131e+00 -Toroidal_field_in_plasma_at_point_37_____________________________________ b_plasma_toroidal_profile37____ 7.21395577015345690e+00 -Toroidal_field_in_plasma_at_point_38_____________________________________ b_plasma_toroidal_profile38____ 7.20701259809363570e+00 -Toroidal_field_in_plasma_at_point_39_____________________________________ b_plasma_toroidal_profile39____ 7.20008277828777654e+00 -Toroidal_field_in_plasma_at_point_40_____________________________________ b_plasma_toroidal_profile40____ 7.19316627225675997e+00 -Toroidal_field_in_plasma_at_point_41_____________________________________ b_plasma_toroidal_profile41____ 7.18626304166918217e+00 -Toroidal_field_in_plasma_at_point_42_____________________________________ b_plasma_toroidal_profile42____ 7.17937304834063994e+00 -Toroidal_field_in_plasma_at_point_43_____________________________________ b_plasma_toroidal_profile43____ 7.17249625423303439e+00 -Toroidal_field_in_plasma_at_point_44_____________________________________ b_plasma_toroidal_profile44____ 7.16563262145386393e+00 -Toroidal_field_in_plasma_at_point_45_____________________________________ b_plasma_toroidal_profile45____ 7.15878211225553329e+00 -Toroidal_field_in_plasma_at_point_46_____________________________________ b_plasma_toroidal_profile46____ 7.15194468903465896e+00 -Toroidal_field_in_plasma_at_point_47_____________________________________ b_plasma_toroidal_profile47____ 7.14512031433138173e+00 -Toroidal_field_in_plasma_at_point_48_____________________________________ b_plasma_toroidal_profile48____ 7.13830895082868278e+00 -Toroidal_field_in_plasma_at_point_49_____________________________________ b_plasma_toroidal_profile49____ 7.13151056135170247e+00 -Toroidal_field_in_plasma_at_point_50_____________________________________ b_plasma_toroidal_profile50____ 7.12472510886706711e+00 -Toroidal_field_in_plasma_at_point_51_____________________________________ b_plasma_toroidal_profile51____ 7.11795255648221215e+00 -Toroidal_field_in_plasma_at_point_52_____________________________________ b_plasma_toroidal_profile52____ 7.11119286744471779e+00 -Toroidal_field_in_plasma_at_point_53_____________________________________ b_plasma_toroidal_profile53____ 7.10444600514163938e+00 -Toroidal_field_in_plasma_at_point_54_____________________________________ b_plasma_toroidal_profile54____ 7.09771193309885096e+00 -Toroidal_field_in_plasma_at_point_55_____________________________________ b_plasma_toroidal_profile55____ 7.09099061498038630e+00 -Toroidal_field_in_plasma_at_point_56_____________________________________ b_plasma_toroidal_profile56____ 7.08428201458778428e+00 -Toroidal_field_in_plasma_at_point_57_____________________________________ b_plasma_toroidal_profile57____ 7.07758609585944054e+00 -Toroidal_field_in_plasma_at_point_58_____________________________________ b_plasma_toroidal_profile58____ 7.07090282286996086e+00 -Toroidal_field_in_plasma_at_point_59_____________________________________ b_plasma_toroidal_profile59____ 7.06423215982951636e+00 -Toroidal_field_in_plasma_at_point_60_____________________________________ b_plasma_toroidal_profile60____ 7.05757407108321111e+00 -Toroidal_field_in_plasma_at_point_61_____________________________________ b_plasma_toroidal_profile61____ 7.05092852111043999e+00 -Toroidal_field_in_plasma_at_point_62_____________________________________ b_plasma_toroidal_profile62____ 7.04429547452425897e+00 -Toroidal_field_in_plasma_at_point_63_____________________________________ b_plasma_toroidal_profile63____ 7.03767489607075891e+00 -Toroidal_field_in_plasma_at_point_64_____________________________________ b_plasma_toroidal_profile64____ 7.03106675062843944e+00 -Toroidal_field_in_plasma_at_point_65_____________________________________ b_plasma_toroidal_profile65____ 7.02447100320758722e+00 -Toroidal_field_in_plasma_at_point_66_____________________________________ b_plasma_toroidal_profile66____ 7.01788761894966040e+00 -Toroidal_field_in_plasma_at_point_67_____________________________________ b_plasma_toroidal_profile67____ 7.01131656312667406e+00 -Toroidal_field_in_plasma_at_point_68_____________________________________ b_plasma_toroidal_profile68____ 7.00475780114058733e+00 -Toroidal_field_in_plasma_at_point_69_____________________________________ b_plasma_toroidal_profile69____ 6.99821129852269941e+00 -Toroidal_field_in_plasma_at_point_70_____________________________________ b_plasma_toroidal_profile70____ 6.99167702093304122e+00 -Toroidal_field_in_plasma_at_point_71_____________________________________ b_plasma_toroidal_profile71____ 6.98515493415978295e+00 -Toroidal_field_in_plasma_at_point_72_____________________________________ b_plasma_toroidal_profile72____ 6.97864500411862743e+00 -Toroidal_field_in_plasma_at_point_73_____________________________________ b_plasma_toroidal_profile73____ 6.97214719685222306e+00 -Toroidal_field_in_plasma_at_point_74_____________________________________ b_plasma_toroidal_profile74____ 6.96566147852956963e+00 -Toroidal_field_in_plasma_at_point_75_____________________________________ b_plasma_toroidal_profile75____ 6.95918781544543474e+00 -Toroidal_field_in_plasma_at_point_76_____________________________________ b_plasma_toroidal_profile76____ 6.95272617401976589e+00 -Toroidal_field_in_plasma_at_point_77_____________________________________ b_plasma_toroidal_profile77____ 6.94627652079711311e+00 -Toroidal_field_in_plasma_at_point_78_____________________________________ b_plasma_toroidal_profile78____ 6.93983882244604988e+00 -Toroidal_field_in_plasma_at_point_79_____________________________________ b_plasma_toroidal_profile79____ 6.93341304575860029e+00 -Toroidal_field_in_plasma_at_point_80_____________________________________ b_plasma_toroidal_profile80____ 6.92699915764966434e+00 -Toroidal_field_in_plasma_at_point_81_____________________________________ b_plasma_toroidal_profile81____ 6.92059712515645753e+00 -Toroidal_field_in_plasma_at_point_82_____________________________________ b_plasma_toroidal_profile82____ 6.91420691543793886e+00 -Toroidal_field_in_plasma_at_point_83_____________________________________ b_plasma_toroidal_profile83____ 6.90782849577425040e+00 -Toroidal_field_in_plasma_at_point_84_____________________________________ b_plasma_toroidal_profile84____ 6.90146183356616394e+00 -Toroidal_field_in_plasma_at_point_85_____________________________________ b_plasma_toroidal_profile85____ 6.89510689633451879e+00 -Toroidal_field_in_plasma_at_point_86_____________________________________ b_plasma_toroidal_profile86____ 6.88876365171967642e+00 -Toroidal_field_in_plasma_at_point_87_____________________________________ b_plasma_toroidal_profile87____ 6.88243206748096359e+00 -Toroidal_field_in_plasma_at_point_88_____________________________________ b_plasma_toroidal_profile88____ 6.87611211149613233e+00 -Toroidal_field_in_plasma_at_point_89_____________________________________ b_plasma_toroidal_profile89____ 6.86980375176081459e+00 -Toroidal_field_in_plasma_at_point_90_____________________________________ b_plasma_toroidal_profile90____ 6.86350695638798225e+00 -Toroidal_field_in_plasma_at_point_91_____________________________________ b_plasma_toroidal_profile91____ 6.85722169360740708e+00 -Toroidal_field_in_plasma_at_point_92_____________________________________ b_plasma_toroidal_profile92____ 6.85094793176513051e+00 -Toroidal_field_in_plasma_at_point_93_____________________________________ b_plasma_toroidal_profile93____ 6.84468563932293161e+00 -Toroidal_field_in_plasma_at_point_94_____________________________________ b_plasma_toroidal_profile94____ 6.83843478485779688e+00 -Toroidal_field_in_plasma_at_point_95_____________________________________ b_plasma_toroidal_profile95____ 6.83219533706139348e+00 -Toroidal_field_in_plasma_at_point_96_____________________________________ b_plasma_toroidal_profile96____ 6.82596726473955151e+00 -Toroidal_field_in_plasma_at_point_97_____________________________________ b_plasma_toroidal_profile97____ 6.81975053681173726e+00 -Toroidal_field_in_plasma_at_point_98_____________________________________ b_plasma_toroidal_profile98____ 6.81354512231054432e+00 -Toroidal_field_in_plasma_at_point_99_____________________________________ b_plasma_toroidal_profile99____ 6.80735099038117131e+00 -Toroidal_field_in_plasma_at_point_100____________________________________ b_plasma_toroidal_profile100___ 6.80116811028091561e+00 -Toroidal_field_in_plasma_at_point_101____________________________________ b_plasma_toroidal_profile101___ 6.79499645137866359e+00 -Toroidal_field_in_plasma_at_point_102____________________________________ b_plasma_toroidal_profile102___ 6.78883598315438519e+00 -Toroidal_field_in_plasma_at_point_103____________________________________ b_plasma_toroidal_profile103___ 6.78268667519863033e+00 -Toroidal_field_in_plasma_at_point_104____________________________________ b_plasma_toroidal_profile104___ 6.77654849721202535e+00 -Toroidal_field_in_plasma_at_point_105____________________________________ b_plasma_toroidal_profile105___ 6.77042141900478089e+00 -Toroidal_field_in_plasma_at_point_106____________________________________ b_plasma_toroidal_profile106___ 6.76430541049619460e+00 -Toroidal_field_in_plasma_at_point_107____________________________________ b_plasma_toroidal_profile107___ 6.75820044171415901e+00 -Toroidal_field_in_plasma_at_point_108____________________________________ b_plasma_toroidal_profile108___ 6.75210648279466863e+00 -Toroidal_field_in_plasma_at_point_109____________________________________ b_plasma_toroidal_profile109___ 6.74602350398134032e+00 -Toroidal_field_in_plasma_at_point_110____________________________________ b_plasma_toroidal_profile110___ 6.73995147562492214e+00 -Toroidal_field_in_plasma_at_point_111____________________________________ b_plasma_toroidal_profile111___ 6.73389036818281284e+00 -Toroidal_field_in_plasma_at_point_112____________________________________ b_plasma_toroidal_profile112___ 6.72784015221858755e+00 -Toroidal_field_in_plasma_at_point_113____________________________________ b_plasma_toroidal_profile113___ 6.72180079840151468e+00 -Toroidal_field_in_plasma_at_point_114____________________________________ b_plasma_toroidal_profile114___ 6.71577227750608774e+00 -Toroidal_field_in_plasma_at_point_115____________________________________ b_plasma_toroidal_profile115___ 6.70975456041154761e+00 -Toroidal_field_in_plasma_at_point_116____________________________________ b_plasma_toroidal_profile116___ 6.70374761810142150e+00 -Toroidal_field_in_plasma_at_point_117____________________________________ b_plasma_toroidal_profile117___ 6.69775142166304782e+00 -Toroidal_field_in_plasma_at_point_118____________________________________ b_plasma_toroidal_profile118___ 6.69176594228712052e+00 -Toroidal_field_in_plasma_at_point_119____________________________________ b_plasma_toroidal_profile119___ 6.68579115126722190e+00 -Toroidal_field_in_plasma_at_point_120____________________________________ b_plasma_toroidal_profile120___ 6.67982701999936523e+00 -Toroidal_field_in_plasma_at_point_121____________________________________ b_plasma_toroidal_profile121___ 6.67387351998153999e+00 -Toroidal_field_in_plasma_at_point_122____________________________________ b_plasma_toroidal_profile122___ 6.66793062281325710e+00 -Toroidal_field_in_plasma_at_point_123____________________________________ b_plasma_toroidal_profile123___ 6.66199830019509509e+00 -Toroidal_field_in_plasma_at_point_124____________________________________ b_plasma_toroidal_profile124___ 6.65607652392825511e+00 -Toroidal_field_in_plasma_at_point_125____________________________________ b_plasma_toroidal_profile125___ 6.65016526591410972e+00 -Toroidal_field_in_plasma_at_point_126____________________________________ b_plasma_toroidal_profile126___ 6.64426449815375975e+00 -Toroidal_field_in_plasma_at_point_127____________________________________ b_plasma_toroidal_profile127___ 6.63837419274759544e+00 -Toroidal_field_in_plasma_at_point_128____________________________________ b_plasma_toroidal_profile128___ 6.63249432189485155e+00 -Toroidal_field_in_plasma_at_point_129____________________________________ b_plasma_toroidal_profile129___ 6.62662485789317479e+00 -Toroidal_field_in_plasma_at_point_130____________________________________ b_plasma_toroidal_profile130___ 6.62076577313818593e+00 -Toroidal_field_in_plasma_at_point_131____________________________________ b_plasma_toroidal_profile131___ 6.61491704012304638e+00 -Toroidal_field_in_plasma_at_point_132____________________________________ b_plasma_toroidal_profile132___ 6.60907863143803009e+00 -Toroidal_field_in_plasma_at_point_133____________________________________ b_plasma_toroidal_profile133___ 6.60325051977009547e+00 -Toroidal_field_in_plasma_at_point_134____________________________________ b_plasma_toroidal_profile134___ 6.59743267790245724e+00 -Toroidal_field_in_plasma_at_point_135____________________________________ b_plasma_toroidal_profile135___ 6.59162507871416192e+00 -Toroidal_field_in_plasma_at_point_136____________________________________ b_plasma_toroidal_profile136___ 6.58582769517967215e+00 -Toroidal_field_in_plasma_at_point_137____________________________________ b_plasma_toroidal_profile137___ 6.58004050036844301e+00 -Toroidal_field_in_plasma_at_point_138____________________________________ b_plasma_toroidal_profile138___ 6.57426346744450196e+00 -Toroidal_field_in_plasma_at_point_139____________________________________ b_plasma_toroidal_profile139___ 6.56849656966604201e+00 -Toroidal_field_in_plasma_at_point_140____________________________________ b_plasma_toroidal_profile140___ 6.56273978038500250e+00 -Toroidal_field_in_plasma_at_point_141____________________________________ b_plasma_toroidal_profile141___ 6.55699307304666235e+00 -Toroidal_field_in_plasma_at_point_142____________________________________ b_plasma_toroidal_profile142___ 6.55125642118922880e+00 -Toroidal_field_in_plasma_at_point_143____________________________________ b_plasma_toroidal_profile143___ 6.54552979844343419e+00 -Toroidal_field_in_plasma_at_point_144____________________________________ b_plasma_toroidal_profile144___ 6.53981317853212829e+00 -Toroidal_field_in_plasma_at_point_145____________________________________ b_plasma_toroidal_profile145___ 6.53410653526988394e+00 -Toroidal_field_in_plasma_at_point_146____________________________________ b_plasma_toroidal_profile146___ 6.52840984256258761e+00 -Toroidal_field_in_plasma_at_point_147____________________________________ b_plasma_toroidal_profile147___ 6.52272307440704502e+00 -Toroidal_field_in_plasma_at_point_148____________________________________ b_plasma_toroidal_profile148___ 6.51704620489058950e+00 -Toroidal_field_in_plasma_at_point_149____________________________________ b_plasma_toroidal_profile149___ 6.51137920819068494e+00 -Toroidal_field_in_plasma_at_point_150____________________________________ b_plasma_toroidal_profile150___ 6.50572205857453323e+00 -Toroidal_field_in_plasma_at_point_151____________________________________ b_plasma_toroidal_profile151___ 6.50007473039868788e+00 -Toroidal_field_in_plasma_at_point_152____________________________________ b_plasma_toroidal_profile152___ 6.49443719810866238e+00 -Toroidal_field_in_plasma_at_point_153____________________________________ b_plasma_toroidal_profile153___ 6.48880943623855178e+00 -Toroidal_field_in_plasma_at_point_154____________________________________ b_plasma_toroidal_profile154___ 6.48319141941063926e+00 -Toroidal_field_in_plasma_at_point_155____________________________________ b_plasma_toroidal_profile155___ 6.47758312233502487e+00 -Toroidal_field_in_plasma_at_point_156____________________________________ b_plasma_toroidal_profile156___ 6.47198451980923739e+00 -Toroidal_field_in_plasma_at_point_157____________________________________ b_plasma_toroidal_profile157___ 6.46639558671786485e+00 -Toroidal_field_in_plasma_at_point_158____________________________________ b_plasma_toroidal_profile158___ 6.46081629803217261e+00 -Toroidal_field_in_plasma_at_point_159____________________________________ b_plasma_toroidal_profile159___ 6.45524662880973121e+00 -Toroidal_field_in_plasma_at_point_160____________________________________ b_plasma_toroidal_profile160___ 6.44968655419404691e+00 -Toroidal_field_in_plasma_at_point_161____________________________________ b_plasma_toroidal_profile161___ 6.44413604941418949e+00 -Toroidal_field_in_plasma_at_point_162____________________________________ b_plasma_toroidal_profile162___ 6.43859508978442641e+00 -Toroidal_field_in_plasma_at_point_163____________________________________ b_plasma_toroidal_profile163___ 6.43306365070385588e+00 -Toroidal_field_in_plasma_at_point_164____________________________________ b_plasma_toroidal_profile164___ 6.42754170765604194e+00 -Toroidal_field_in_plasma_at_point_165____________________________________ b_plasma_toroidal_profile165___ 6.42202923620865107e+00 -Toroidal_field_in_plasma_at_point_166____________________________________ b_plasma_toroidal_profile166___ 6.41652621201309969e+00 -Toroidal_field_in_plasma_at_point_167____________________________________ b_plasma_toroidal_profile167___ 6.41103261080418463e+00 -Toroidal_field_in_plasma_at_point_168____________________________________ b_plasma_toroidal_profile168___ 6.40554840839973316e+00 -Toroidal_field_in_plasma_at_point_169____________________________________ b_plasma_toroidal_profile169___ 6.40007358070024601e+00 -Toroidal_field_in_plasma_at_point_170____________________________________ b_plasma_toroidal_profile170___ 6.39460810368854649e+00 -Toroidal_field_in_plasma_at_point_171____________________________________ b_plasma_toroidal_profile171___ 6.38915195342942699e+00 -Toroidal_field_in_plasma_at_point_172____________________________________ b_plasma_toroidal_profile172___ 6.38370510606929908e+00 -Toroidal_field_in_plasma_at_point_173____________________________________ b_plasma_toroidal_profile173___ 6.37826753783585065e+00 -Toroidal_field_in_plasma_at_point_174____________________________________ b_plasma_toroidal_profile174___ 6.37283922503769240e+00 -Toroidal_field_in_plasma_at_point_175____________________________________ b_plasma_toroidal_profile175___ 6.36742014406402035e+00 -Toroidal_field_in_plasma_at_point_176____________________________________ b_plasma_toroidal_profile176___ 6.36201027138427211e+00 -Toroidal_field_in_plasma_at_point_177____________________________________ b_plasma_toroidal_profile177___ 6.35660958354778227e+00 -Toroidal_field_in_plasma_at_point_178____________________________________ b_plasma_toroidal_profile178___ 6.35121805718345023e+00 -Toroidal_field_in_plasma_at_point_179____________________________________ b_plasma_toroidal_profile179___ 6.34583566899939644e+00 -Toroidal_field_in_plasma_at_point_180____________________________________ b_plasma_toroidal_profile180___ 6.34046239578263116e+00 -Toroidal_field_in_plasma_at_point_181____________________________________ b_plasma_toroidal_profile181___ 6.33509821439872045e+00 -Toroidal_field_in_plasma_at_point_182____________________________________ b_plasma_toroidal_profile182___ 6.32974310179145228e+00 -Toroidal_field_in_plasma_at_point_183____________________________________ b_plasma_toroidal_profile183___ 6.32439703498250694e+00 -Toroidal_field_in_plasma_at_point_184____________________________________ b_plasma_toroidal_profile184___ 6.31905999107112937e+00 -Toroidal_field_in_plasma_at_point_185____________________________________ b_plasma_toroidal_profile185___ 6.31373194723380138e+00 -Toroidal_field_in_plasma_at_point_186____________________________________ b_plasma_toroidal_profile186___ 6.30841288072391482e+00 -Toroidal_field_in_plasma_at_point_187____________________________________ b_plasma_toroidal_profile187___ 6.30310276887145449e+00 -Toroidal_field_in_plasma_at_point_188____________________________________ b_plasma_toroidal_profile188___ 6.29780158908266419e+00 -Toroidal_field_in_plasma_at_point_189____________________________________ b_plasma_toroidal_profile189___ 6.29250931883973763e+00 -Toroidal_field_in_plasma_at_point_190____________________________________ b_plasma_toroidal_profile190___ 6.28722593570049337e+00 -Toroidal_field_in_plasma_at_point_191____________________________________ b_plasma_toroidal_profile191___ 6.28195141729806039e+00 -Toroidal_field_in_plasma_at_point_192____________________________________ b_plasma_toroidal_profile192___ 6.27668574134056012e+00 -Toroidal_field_in_plasma_at_point_193____________________________________ b_plasma_toroidal_profile193___ 6.27142888561079381e+00 -Toroidal_field_in_plasma_at_point_194____________________________________ b_plasma_toroidal_profile194___ 6.26618082796593168e+00 -Toroidal_field_in_plasma_at_point_195____________________________________ b_plasma_toroidal_profile195___ 6.26094154633719757e+00 -Toroidal_field_in_plasma_at_point_196____________________________________ b_plasma_toroidal_profile196___ 6.25571101872956437e+00 -Toroidal_field_in_plasma_at_point_197____________________________________ b_plasma_toroidal_profile197___ 6.25048922322144307e+00 -Toroidal_field_in_plasma_at_point_198____________________________________ b_plasma_toroidal_profile198___ 6.24527613796437731e+00 -Toroidal_field_in_plasma_at_point_199____________________________________ b_plasma_toroidal_profile199___ 6.24007174118273955e+00 -Toroidal_field_in_plasma_at_point_200____________________________________ b_plasma_toroidal_profile200___ 6.23487601117342827e+00 -Toroidal_field_in_plasma_at_point_201____________________________________ b_plasma_toroidal_profile201___ 6.22968892630556415e+00 -Toroidal_field_in_plasma_at_point_202____________________________________ b_plasma_toroidal_profile202___ 6.22451046502018990e+00 -Toroidal_field_in_plasma_at_point_203____________________________________ b_plasma_toroidal_profile203___ 6.21934060582997361e+00 -Toroidal_field_in_plasma_at_point_204____________________________________ b_plasma_toroidal_profile204___ 6.21417932731891121e+00 -Toroidal_field_in_plasma_at_point_205____________________________________ b_plasma_toroidal_profile205___ 6.20902660814202978e+00 -Toroidal_field_in_plasma_at_point_206____________________________________ b_plasma_toroidal_profile206___ 6.20388242702509363e+00 -Toroidal_field_in_plasma_at_point_207____________________________________ b_plasma_toroidal_profile207___ 6.19874676276431114e+00 -Toroidal_field_in_plasma_at_point_208____________________________________ b_plasma_toroidal_profile208___ 6.19361959422604436e+00 -Toroidal_field_in_plasma_at_point_209____________________________________ b_plasma_toroidal_profile209___ 6.18850090034651856e+00 -Toroidal_field_in_plasma_at_point_210____________________________________ b_plasma_toroidal_profile210___ 6.18339066013153449e+00 -Toroidal_field_in_plasma_at_point_211____________________________________ b_plasma_toroidal_profile211___ 6.17828885265617789e+00 -Toroidal_field_in_plasma_at_point_212____________________________________ b_plasma_toroidal_profile212___ 6.17319545706454065e+00 -Toroidal_field_in_plasma_at_point_213____________________________________ b_plasma_toroidal_profile213___ 6.16811045256943036e+00 -Toroidal_field_in_plasma_at_point_214____________________________________ b_plasma_toroidal_profile214___ 6.16303381845208875e+00 -Toroidal_field_in_plasma_at_point_215____________________________________ b_plasma_toroidal_profile215___ 6.15796553406191460e+00 -Toroidal_field_in_plasma_at_point_216____________________________________ b_plasma_toroidal_profile216___ 6.15290557881617772e+00 -Toroidal_field_in_plasma_at_point_217____________________________________ b_plasma_toroidal_profile217___ 6.14785393219974452e+00 -Toroidal_field_in_plasma_at_point_218____________________________________ b_plasma_toroidal_profile218___ 6.14281057376479822e+00 -Toroidal_field_in_plasma_at_point_219____________________________________ b_plasma_toroidal_profile219___ 6.13777548313056442e+00 -Toroidal_field_in_plasma_at_point_220____________________________________ b_plasma_toroidal_profile220___ 6.13274863998303754e+00 -Toroidal_field_in_plasma_at_point_221____________________________________ b_plasma_toroidal_profile221___ 6.12773002407470369e+00 -Toroidal_field_in_plasma_at_point_222____________________________________ b_plasma_toroidal_profile222___ 6.12271961522427421e+00 -Toroidal_field_in_plasma_at_point_223____________________________________ b_plasma_toroidal_profile223___ 6.11771739331641218e+00 -Toroidal_field_in_plasma_at_point_224____________________________________ b_plasma_toroidal_profile224___ 6.11272333830145964e+00 -Toroidal_field_in_plasma_at_point_225____________________________________ b_plasma_toroidal_profile225___ 6.10773743019517834e+00 -Toroidal_field_in_plasma_at_point_226____________________________________ b_plasma_toroidal_profile226___ 6.10275964907847435e+00 -Toroidal_field_in_plasma_at_point_227____________________________________ b_plasma_toroidal_profile227___ 6.09778997509714049e+00 -Toroidal_field_in_plasma_at_point_228____________________________________ b_plasma_toroidal_profile228___ 6.09282838846158459e+00 -Toroidal_field_in_plasma_at_point_229____________________________________ b_plasma_toroidal_profile229___ 6.08787486944657541e+00 -Toroidal_field_in_plasma_at_point_230____________________________________ b_plasma_toroidal_profile230___ 6.08292939839097269e+00 -Toroidal_field_in_plasma_at_point_231____________________________________ b_plasma_toroidal_profile231___ 6.07799195569747397e+00 -Toroidal_field_in_plasma_at_point_232____________________________________ b_plasma_toroidal_profile232___ 6.07306252183234996e+00 -Toroidal_field_in_plasma_at_point_233____________________________________ b_plasma_toroidal_profile233___ 6.06814107732519314e+00 -Toroidal_field_in_plasma_at_point_234____________________________________ b_plasma_toroidal_profile234___ 6.06322760276865402e+00 -Toroidal_field_in_plasma_at_point_235____________________________________ b_plasma_toroidal_profile235___ 6.05832207881819418e+00 -Toroidal_field_in_plasma_at_point_236____________________________________ b_plasma_toroidal_profile236___ 6.05342448619182516e+00 -Toroidal_field_in_plasma_at_point_237____________________________________ b_plasma_toroidal_profile237___ 6.04853480566986157e+00 -Toroidal_field_in_plasma_at_point_238____________________________________ b_plasma_toroidal_profile238___ 6.04365301809466349e+00 -Toroidal_field_in_plasma_at_point_239____________________________________ b_plasma_toroidal_profile239___ 6.03877910437039400e+00 -Toroidal_field_in_plasma_at_point_240____________________________________ b_plasma_toroidal_profile240___ 6.03391304546276253e+00 -Toroidal_field_in_plasma_at_point_241____________________________________ b_plasma_toroidal_profile241___ 6.02905482239878321e+00 -Toroidal_field_in_plasma_at_point_242____________________________________ b_plasma_toroidal_profile242___ 6.02420441626652270e+00 -Toroidal_field_in_plasma_at_point_243____________________________________ b_plasma_toroidal_profile243___ 6.01936180821486122e+00 -Toroidal_field_in_plasma_at_point_244____________________________________ b_plasma_toroidal_profile244___ 6.01452697945324299e+00 -Toroidal_field_in_plasma_at_point_245____________________________________ b_plasma_toroidal_profile245___ 6.00969991125143466e+00 -Toroidal_field_in_plasma_at_point_246____________________________________ b_plasma_toroidal_profile246___ 6.00488058493928456e+00 -Toroidal_field_in_plasma_at_point_247____________________________________ b_plasma_toroidal_profile247___ 6.00006898190648119e+00 -Toroidal_field_in_plasma_at_point_248____________________________________ b_plasma_toroidal_profile248___ 5.99526508360231247e+00 -Toroidal_field_in_plasma_at_point_249____________________________________ b_plasma_toroidal_profile249___ 5.99046887153543040e+00 -Toroidal_field_in_plasma_at_point_250____________________________________ b_plasma_toroidal_profile250___ 5.98568032727361121e+00 -Toroidal_field_in_plasma_at_point_251____________________________________ b_plasma_toroidal_profile251___ 5.98089943244352007e+00 -Toroidal_field_in_plasma_at_point_252____________________________________ b_plasma_toroidal_profile252___ 5.97612616873047742e+00 -Toroidal_field_in_plasma_at_point_253____________________________________ b_plasma_toroidal_profile253___ 5.97136051787822009e+00 -Toroidal_field_in_plasma_at_point_254____________________________________ b_plasma_toroidal_profile254___ 5.96660246168867570e+00 -Toroidal_field_in_plasma_at_point_255____________________________________ b_plasma_toroidal_profile255___ 5.96185198202172639e+00 -Toroidal_field_in_plasma_at_point_256____________________________________ b_plasma_toroidal_profile256___ 5.95710906079497882e+00 -Toroidal_field_in_plasma_at_point_257____________________________________ b_plasma_toroidal_profile257___ 5.95237367998353584e+00 -Toroidal_field_in_plasma_at_point_258____________________________________ b_plasma_toroidal_profile258___ 5.94764582161976829e+00 -Toroidal_field_in_plasma_at_point_259____________________________________ b_plasma_toroidal_profile259___ 5.94292546779308584e+00 -Toroidal_field_in_plasma_at_point_260____________________________________ b_plasma_toroidal_profile260___ 5.93821260064971312e+00 -Toroidal_field_in_plasma_at_point_261____________________________________ b_plasma_toroidal_profile261___ 5.93350720239246332e+00 -Toroidal_field_in_plasma_at_point_262____________________________________ b_plasma_toroidal_profile262___ 5.92880925528051339e+00 -Toroidal_field_in_plasma_at_point_263____________________________________ b_plasma_toroidal_profile263___ 5.92411874162918295e+00 -Toroidal_field_in_plasma_at_point_264____________________________________ b_plasma_toroidal_profile264___ 5.91943564380971399e+00 -Toroidal_field_in_plasma_at_point_265____________________________________ b_plasma_toroidal_profile265___ 5.91475994424904261e+00 -Toroidal_field_in_plasma_at_point_266____________________________________ b_plasma_toroidal_profile266___ 5.91009162542958766e+00 -Toroidal_field_in_plasma_at_point_267____________________________________ b_plasma_toroidal_profile267___ 5.90543066988902865e+00 -Toroidal_field_in_plasma_at_point_268____________________________________ b_plasma_toroidal_profile268___ 5.90077706022008552e+00 -Toroidal_field_in_plasma_at_point_269____________________________________ b_plasma_toroidal_profile269___ 5.89613077907030547e+00 -Toroidal_field_in_plasma_at_point_270____________________________________ b_plasma_toroidal_profile270___ 5.89149180914184800e+00 -Toroidal_field_in_plasma_at_point_271____________________________________ b_plasma_toroidal_profile271___ 5.88686013319126378e+00 -Toroidal_field_in_plasma_at_point_272____________________________________ b_plasma_toroidal_profile272___ 5.88223573402929123e+00 -Toroidal_field_in_plasma_at_point_273____________________________________ b_plasma_toroidal_profile273___ 5.87761859452063362e+00 -Toroidal_field_in_plasma_at_point_274____________________________________ b_plasma_toroidal_profile274___ 5.87300869758375477e+00 -Toroidal_field_in_plasma_at_point_275____________________________________ b_plasma_toroidal_profile275___ 5.86840602619066498e+00 -Toroidal_field_in_plasma_at_point_276____________________________________ b_plasma_toroidal_profile276___ 5.86381056336670969e+00 -Toroidal_field_in_plasma_at_point_277____________________________________ b_plasma_toroidal_profile277___ 5.85922229219036605e+00 -Toroidal_field_in_plasma_at_point_278____________________________________ b_plasma_toroidal_profile278___ 5.85464119579303244e+00 -Toroidal_field_in_plasma_at_point_279____________________________________ b_plasma_toroidal_profile279___ 5.85006725735881883e+00 -Toroidal_field_in_plasma_at_point_280____________________________________ b_plasma_toroidal_profile280___ 5.84550046012434699e+00 -Toroidal_field_in_plasma_at_point_281____________________________________ b_plasma_toroidal_profile281___ 5.84094078737853994e+00 -Toroidal_field_in_plasma_at_point_282____________________________________ b_plasma_toroidal_profile282___ 5.83638822246242306e+00 -Toroidal_field_in_plasma_at_point_283____________________________________ b_plasma_toroidal_profile283___ 5.83184274876891617e+00 -Toroidal_field_in_plasma_at_point_284____________________________________ b_plasma_toroidal_profile284___ 5.82730434974263733e+00 -Toroidal_field_in_plasma_at_point_285____________________________________ b_plasma_toroidal_profile285___ 5.82277300887969496e+00 -Toroidal_field_in_plasma_at_point_286____________________________________ b_plasma_toroidal_profile286___ 5.81824870972749686e+00 -Toroidal_field_in_plasma_at_point_287____________________________________ b_plasma_toroidal_profile287___ 5.81373143588454067e+00 -Toroidal_field_in_plasma_at_point_288____________________________________ b_plasma_toroidal_profile288___ 5.80922117100022373e+00 -Toroidal_field_in_plasma_at_point_289____________________________________ b_plasma_toroidal_profile289___ 5.80471789877464239e+00 -Toroidal_field_in_plasma_at_point_290____________________________________ b_plasma_toroidal_profile290___ 5.80022160295839573e+00 -Toroidal_field_in_plasma_at_point_291____________________________________ b_plasma_toroidal_profile291___ 5.79573226735239011e+00 -Toroidal_field_in_plasma_at_point_292____________________________________ b_plasma_toroidal_profile292___ 5.79124987580764738e+00 -Toroidal_field_in_plasma_at_point_293____________________________________ b_plasma_toroidal_profile293___ 5.78677441222510680e+00 -Toroidal_field_in_plasma_at_point_294____________________________________ b_plasma_toroidal_profile294___ 5.78230586055543494e+00 -Toroidal_field_in_plasma_at_point_295____________________________________ b_plasma_toroidal_profile295___ 5.77784420479883298e+00 -Toroidal_field_in_plasma_at_point_296____________________________________ b_plasma_toroidal_profile296___ 5.77338942900484842e+00 -Toroidal_field_in_plasma_at_point_297____________________________________ b_plasma_toroidal_profile297___ 5.76894151727217874e+00 -Toroidal_field_in_plasma_at_point_298____________________________________ b_plasma_toroidal_profile298___ 5.76450045374848941e+00 -Toroidal_field_in_plasma_at_point_299____________________________________ b_plasma_toroidal_profile299___ 5.76006622263022194e+00 -Toroidal_field_in_plasma_at_point_300____________________________________ b_plasma_toroidal_profile300___ 5.75563880816240481e+00 -Toroidal_field_in_plasma_at_point_301____________________________________ b_plasma_toroidal_profile301___ 5.75121819463847039e+00 -Toroidal_field_in_plasma_at_point_302____________________________________ b_plasma_toroidal_profile302___ 5.74680436640006764e+00 -Toroidal_field_in_plasma_at_point_303____________________________________ b_plasma_toroidal_profile303___ 5.74239730783687818e+00 -Toroidal_field_in_plasma_at_point_304____________________________________ b_plasma_toroidal_profile304___ 5.73799700338642804e+00 -Toroidal_field_in_plasma_at_point_305____________________________________ b_plasma_toroidal_profile305___ 5.73360343753391177e+00 -Toroidal_field_in_plasma_at_point_306____________________________________ b_plasma_toroidal_profile306___ 5.72921659481200329e+00 -Toroidal_field_in_plasma_at_point_307____________________________________ b_plasma_toroidal_profile307___ 5.72483645980067912e+00 -Toroidal_field_in_plasma_at_point_308____________________________________ b_plasma_toroidal_profile308___ 5.72046301712703453e+00 -Toroidal_field_in_plasma_at_point_309____________________________________ b_plasma_toroidal_profile309___ 5.71609625146510592e+00 -Toroidal_field_in_plasma_at_point_310____________________________________ b_plasma_toroidal_profile310___ 5.71173614753568870e+00 -Toroidal_field_in_plasma_at_point_311____________________________________ b_plasma_toroidal_profile311___ 5.70738269010616506e+00 -Toroidal_field_in_plasma_at_point_312____________________________________ b_plasma_toroidal_profile312___ 5.70303586399031914e+00 -Toroidal_field_in_plasma_at_point_313____________________________________ b_plasma_toroidal_profile313___ 5.69869565404816480e+00 -Toroidal_field_in_plasma_at_point_314____________________________________ b_plasma_toroidal_profile314___ 5.69436204518576972e+00 -Toroidal_field_in_plasma_at_point_315____________________________________ b_plasma_toroidal_profile315___ 5.69003502235508218e+00 -Toroidal_field_in_plasma_at_point_316____________________________________ b_plasma_toroidal_profile316___ 5.68571457055374907e+00 -Toroidal_field_in_plasma_at_point_317____________________________________ b_plasma_toroidal_profile317___ 5.68140067482495326e+00 -Toroidal_field_in_plasma_at_point_318____________________________________ b_plasma_toroidal_profile318___ 5.67709332025723157e+00 -Toroidal_field_in_plasma_at_point_319____________________________________ b_plasma_toroidal_profile319___ 5.67279249198430957e+00 -Toroidal_field_in_plasma_at_point_320____________________________________ b_plasma_toroidal_profile320___ 5.66849817518492660e+00 -Toroidal_field_in_plasma_at_point_321____________________________________ b_plasma_toroidal_profile321___ 5.66421035508266879e+00 -Toroidal_field_in_plasma_at_point_322____________________________________ b_plasma_toroidal_profile322___ 5.65992901694579587e+00 -Toroidal_field_in_plasma_at_point_323____________________________________ b_plasma_toroidal_profile323___ 5.65565414608707595e+00 -Toroidal_field_in_plasma_at_point_324____________________________________ b_plasma_toroidal_profile324___ 5.65138572786361415e+00 -Toroidal_field_in_plasma_at_point_325____________________________________ b_plasma_toroidal_profile325___ 5.64712374767668823e+00 -Toroidal_field_in_plasma_at_point_326____________________________________ b_plasma_toroidal_profile326___ 5.64286819097158165e+00 -Toroidal_field_in_plasma_at_point_327____________________________________ b_plasma_toroidal_profile327___ 5.63861904323741570e+00 -Toroidal_field_in_plasma_at_point_328____________________________________ b_plasma_toroidal_profile328___ 5.63437629000698870e+00 -Toroidal_field_in_plasma_at_point_329____________________________________ b_plasma_toroidal_profile329___ 5.63013991685660731e+00 -Toroidal_field_in_plasma_at_point_330____________________________________ b_plasma_toroidal_profile330___ 5.62590990940592661e+00 -Toroidal_field_in_plasma_at_point_331____________________________________ b_plasma_toroidal_profile331___ 5.62168625331778404e+00 -Toroidal_field_in_plasma_at_point_332____________________________________ b_plasma_toroidal_profile332___ 5.61746893429804039e+00 -Toroidal_field_in_plasma_at_point_333____________________________________ b_plasma_toroidal_profile333___ 5.61325793809541906e+00 -Toroidal_field_in_plasma_at_point_334____________________________________ b_plasma_toroidal_profile334___ 5.60905325050133996e+00 -Toroidal_field_in_plasma_at_point_335____________________________________ b_plasma_toroidal_profile335___ 5.60485485734976585e+00 -Toroidal_field_in_plasma_at_point_336____________________________________ b_plasma_toroidal_profile336___ 5.60066274451704427e+00 -Toroidal_field_in_plasma_at_point_337____________________________________ b_plasma_toroidal_profile337___ 5.59647689792173963e+00 -Toroidal_field_in_plasma_at_point_338____________________________________ b_plasma_toroidal_profile338___ 5.59229730352448673e+00 -Toroidal_field_in_plasma_at_point_339____________________________________ b_plasma_toroidal_profile339___ 5.58812394732782725e+00 -Toroidal_field_in_plasma_at_point_340____________________________________ b_plasma_toroidal_profile340___ 5.58395681537605348e+00 -Toroidal_field_in_plasma_at_point_341____________________________________ b_plasma_toroidal_profile341___ 5.57979589375505824e+00 -Toroidal_field_in_plasma_at_point_342____________________________________ b_plasma_toroidal_profile342___ 5.57564116859217318e+00 -Toroidal_field_in_plasma_at_point_343____________________________________ b_plasma_toroidal_profile343___ 5.57149262605601781e+00 -Toroidal_field_in_plasma_at_point_344____________________________________ b_plasma_toroidal_profile344___ 5.56735025235634851e+00 -Toroidal_field_in_plasma_at_point_345____________________________________ b_plasma_toroidal_profile345___ 5.56321403374389956e+00 -Toroidal_field_in_plasma_at_point_346____________________________________ b_plasma_toroidal_profile346___ 5.55908395651023657e+00 -Toroidal_field_in_plasma_at_point_347____________________________________ b_plasma_toroidal_profile347___ 5.55496000698760284e+00 -Toroidal_field_in_plasma_at_point_348____________________________________ b_plasma_toroidal_profile348___ 5.55084217154876836e+00 -Toroidal_field_in_plasma_at_point_349____________________________________ b_plasma_toroidal_profile349___ 5.54673043660687970e+00 -Toroidal_field_in_plasma_at_point_350____________________________________ b_plasma_toroidal_profile350___ 5.54262478861531349e+00 -Toroidal_field_in_plasma_at_point_351____________________________________ b_plasma_toroidal_profile351___ 5.53852521406752096e+00 -Toroidal_field_in_plasma_at_point_352____________________________________ b_plasma_toroidal_profile352___ 5.53443169949688674e+00 -Toroidal_field_in_plasma_at_point_353____________________________________ b_plasma_toroidal_profile353___ 5.53034423147657961e+00 -Toroidal_field_in_plasma_at_point_354____________________________________ b_plasma_toroidal_profile354___ 5.52626279661940067e+00 -Toroidal_field_in_plasma_at_point_355____________________________________ b_plasma_toroidal_profile355___ 5.52218738157764655e+00 -Toroidal_field_in_plasma_at_point_356____________________________________ b_plasma_toroidal_profile356___ 5.51811797304295304e+00 -Toroidal_field_in_plasma_at_point_357____________________________________ b_plasma_toroidal_profile357___ 5.51405455774616193e+00 -Toroidal_field_in_plasma_at_point_358____________________________________ b_plasma_toroidal_profile358___ 5.50999712245716555e+00 -Toroidal_field_in_plasma_at_point_359____________________________________ b_plasma_toroidal_profile359___ 5.50594565398477087e+00 -Toroidal_field_in_plasma_at_point_360____________________________________ b_plasma_toroidal_profile360___ 5.50190013917655296e+00 -Toroidal_field_in_plasma_at_point_361____________________________________ b_plasma_toroidal_profile361___ 5.49786056491871378e+00 -Toroidal_field_in_plasma_at_point_362____________________________________ b_plasma_toroidal_profile362___ 5.49382691813594182e+00 -Toroidal_field_in_plasma_at_point_363____________________________________ b_plasma_toroidal_profile363___ 5.48979918579126736e+00 -Toroidal_field_in_plasma_at_point_364____________________________________ b_plasma_toroidal_profile364___ 5.48577735488592566e+00 -Toroidal_field_in_plasma_at_point_365____________________________________ b_plasma_toroidal_profile365___ 5.48176141245921578e+00 -Toroidal_field_in_plasma_at_point_366____________________________________ b_plasma_toroidal_profile366___ 5.47775134558836019e+00 -Toroidal_field_in_plasma_at_point_367____________________________________ b_plasma_toroidal_profile367___ 5.47374714138836893e+00 -Toroidal_field_in_plasma_at_point_368____________________________________ b_plasma_toroidal_profile368___ 5.46974878701189837e+00 -Toroidal_field_in_plasma_at_point_369____________________________________ b_plasma_toroidal_profile369___ 5.46575626964911621e+00 -Toroidal_field_in_plasma_at_point_370____________________________________ b_plasma_toroidal_profile370___ 5.46176957652756201e+00 -Toroidal_field_in_plasma_at_point_371____________________________________ b_plasma_toroidal_profile371___ 5.45778869491201757e+00 -Toroidal_field_in_plasma_at_point_372____________________________________ b_plasma_toroidal_profile372___ 5.45381361210436122e+00 -Toroidal_field_in_plasma_at_point_373____________________________________ b_plasma_toroidal_profile373___ 5.44984431544344083e+00 -Toroidal_field_in_plasma_at_point_374____________________________________ b_plasma_toroidal_profile374___ 5.44588079230493705e+00 -Toroidal_field_in_plasma_at_point_375____________________________________ b_plasma_toroidal_profile375___ 5.44192303010122735e+00 -Toroidal_field_in_plasma_at_point_376____________________________________ b_plasma_toroidal_profile376___ 5.43797101628125557e+00 -Toroidal_field_in_plasma_at_point_377____________________________________ b_plasma_toroidal_profile377___ 5.43402473833039767e+00 -Toroidal_field_in_plasma_at_point_378____________________________________ b_plasma_toroidal_profile378___ 5.43008418377033220e+00 -Toroidal_field_in_plasma_at_point_379____________________________________ b_plasma_toroidal_profile379___ 5.42614934015890427e+00 -Toroidal_field_in_plasma_at_point_380____________________________________ b_plasma_toroidal_profile380___ 5.42222019508999864e+00 -Toroidal_field_in_plasma_at_point_381____________________________________ b_plasma_toroidal_profile381___ 5.41829673619340646e+00 -Toroidal_field_in_plasma_at_point_382____________________________________ b_plasma_toroidal_profile382___ 5.41437895113469825e+00 -Toroidal_field_in_plasma_at_point_383____________________________________ b_plasma_toroidal_profile383___ 5.41046682761509246e+00 -Toroidal_field_in_plasma_at_point_384____________________________________ b_plasma_toroidal_profile384___ 5.40656035337132757e+00 -Toroidal_field_in_plasma_at_point_385____________________________________ b_plasma_toroidal_profile385___ 5.40265951617553242e+00 -Toroidal_field_in_plasma_at_point_386____________________________________ b_plasma_toroidal_profile386___ 5.39876430383510364e+00 -Toroidal_field_in_plasma_at_point_387____________________________________ b_plasma_toroidal_profile387___ 5.39487470419257065e+00 -Toroidal_field_in_plasma_at_point_388____________________________________ b_plasma_toroidal_profile388___ 5.39099070512547751e+00 -Toroidal_field_in_plasma_at_point_389____________________________________ b_plasma_toroidal_profile389___ 5.38711229454625062e+00 -Toroidal_field_in_plasma_at_point_390____________________________________ b_plasma_toroidal_profile390___ 5.38323946040207701e+00 -Toroidal_field_in_plasma_at_point_391____________________________________ b_plasma_toroidal_profile391___ 5.37937219067477645e+00 -Toroidal_field_in_plasma_at_point_392____________________________________ b_plasma_toroidal_profile392___ 5.37551047338068066e+00 -Toroidal_field_in_plasma_at_point_393____________________________________ b_plasma_toroidal_profile393___ 5.37165429657050808e+00 -Toroidal_field_in_plasma_at_point_394____________________________________ b_plasma_toroidal_profile394___ 5.36780364832923862e+00 -Toroidal_field_in_plasma_at_point_395____________________________________ b_plasma_toroidal_profile395___ 5.36395851677599467e+00 -Toroidal_field_in_plasma_at_point_396____________________________________ b_plasma_toroidal_profile396___ 5.36011889006391407e+00 -Toroidal_field_in_plasma_at_point_397____________________________________ b_plasma_toroidal_profile397___ 5.35628475638003465e+00 -Toroidal_field_in_plasma_at_point_398____________________________________ b_plasma_toroidal_profile398___ 5.35245610394516635e+00 -Toroidal_field_in_plasma_at_point_399____________________________________ b_plasma_toroidal_profile399___ 5.34863292101377663e+00 -Toroidal_field_in_plasma_at_point_400____________________________________ b_plasma_toroidal_profile400___ 5.34481519587386700e+00 -Toroidal_field_in_plasma_at_point_401____________________________________ b_plasma_toroidal_profile401___ 5.34100291684685313e+00 -Toroidal_field_in_plasma_at_point_402____________________________________ b_plasma_toroidal_profile402___ 5.33719607228744675e+00 -Toroidal_field_in_plasma_at_point_403____________________________________ b_plasma_toroidal_profile403___ 5.33339465058353834e+00 -Toroidal_field_in_plasma_at_point_404____________________________________ b_plasma_toroidal_profile404___ 5.32959864015607732e+00 -Toroidal_field_in_plasma_at_point_405____________________________________ b_plasma_toroidal_profile405___ 5.32580802945895293e+00 -Toroidal_field_in_plasma_at_point_406____________________________________ b_plasma_toroidal_profile406___ 5.32202280697888330e+00 -Toroidal_field_in_plasma_at_point_407____________________________________ b_plasma_toroidal_profile407___ 5.31824296123529017e+00 -Toroidal_field_in_plasma_at_point_408____________________________________ b_plasma_toroidal_profile408___ 5.31446848078019052e+00 -Toroidal_field_in_plasma_at_point_409____________________________________ b_plasma_toroidal_profile409___ 5.31069935419807670e+00 -Toroidal_field_in_plasma_at_point_410____________________________________ b_plasma_toroidal_profile410___ 5.30693557010580363e+00 -Toroidal_field_in_plasma_at_point_411____________________________________ b_plasma_toroidal_profile411___ 5.30317711715247064e+00 -Toroidal_field_in_plasma_at_point_412____________________________________ b_plasma_toroidal_profile412___ 5.29942398401931314e+00 -Toroidal_field_in_plasma_at_point_413____________________________________ b_plasma_toroidal_profile413___ 5.29567615941958181e+00 -Toroidal_field_in_plasma_at_point_414____________________________________ b_plasma_toroidal_profile414___ 5.29193363209843692e+00 -Toroidal_field_in_plasma_at_point_415____________________________________ b_plasma_toroidal_profile415___ 5.28819639083283111e+00 -Toroidal_field_in_plasma_at_point_416____________________________________ b_plasma_toroidal_profile416___ 5.28446442443139652e+00 -Toroidal_field_in_plasma_at_point_417____________________________________ b_plasma_toroidal_profile417___ 5.28073772173433564e+00 -Toroidal_field_in_plasma_at_point_418____________________________________ b_plasma_toroidal_profile418___ 5.27701627161331110e+00 -Toroidal_field_in_plasma_at_point_419____________________________________ b_plasma_toroidal_profile419___ 5.27330006297132936e+00 -Toroidal_field_in_plasma_at_point_420____________________________________ b_plasma_toroidal_profile420___ 5.26958908474263765e+00 -Toroidal_field_in_plasma_at_point_421____________________________________ b_plasma_toroidal_profile421___ 5.26588332589260766e+00 -Toroidal_field_in_plasma_at_point_422____________________________________ b_plasma_toroidal_profile422___ 5.26218277541763069e+00 -Toroidal_field_in_plasma_at_point_423____________________________________ b_plasma_toroidal_profile423___ 5.25848742234500577e+00 -Toroidal_field_in_plasma_at_point_424____________________________________ b_plasma_toroidal_profile424___ 5.25479725573283396e+00 -Toroidal_field_in_plasma_at_point_425____________________________________ b_plasma_toroidal_profile425___ 5.25111226466990733e+00 -Toroidal_field_in_plasma_at_point_426____________________________________ b_plasma_toroidal_profile426___ 5.24743243827560502e+00 -Toroidal_field_in_plasma_at_point_427____________________________________ b_plasma_toroidal_profile427___ 5.24375776569978225e+00 -Toroidal_field_in_plasma_at_point_428____________________________________ b_plasma_toroidal_profile428___ 5.24008823612266550e+00 -Toroidal_field_in_plasma_at_point_429____________________________________ b_plasma_toroidal_profile429___ 5.23642383875474682e+00 -Toroidal_field_in_plasma_at_point_430____________________________________ b_plasma_toroidal_profile430___ 5.23276456283667990e+00 -Toroidal_field_in_plasma_at_point_431____________________________________ b_plasma_toroidal_profile431___ 5.22911039763916818e+00 -Toroidal_field_in_plasma_at_point_432____________________________________ b_plasma_toroidal_profile432___ 5.22546133246286715e+00 -Toroidal_field_in_plasma_at_point_433____________________________________ b_plasma_toroidal_profile433___ 5.22181735663827684e+00 -Toroidal_field_in_plasma_at_point_434____________________________________ b_plasma_toroidal_profile434___ 5.21817845952563708e+00 -Toroidal_field_in_plasma_at_point_435____________________________________ b_plasma_toroidal_profile435___ 5.21454463051482442e+00 -Toroidal_field_in_plasma_at_point_436____________________________________ b_plasma_toroidal_profile436___ 5.21091585902525267e+00 -Toroidal_field_in_plasma_at_point_437____________________________________ b_plasma_toroidal_profile437___ 5.20729213450576367e+00 -Toroidal_field_in_plasma_at_point_438____________________________________ b_plasma_toroidal_profile438___ 5.20367344643452956e+00 -Toroidal_field_in_plasma_at_point_439____________________________________ b_plasma_toroidal_profile439___ 5.20005978431895066e+00 -Toroidal_field_in_plasma_at_point_440____________________________________ b_plasma_toroidal_profile440___ 5.19645113769555067e+00 -Toroidal_field_in_plasma_at_point_441____________________________________ b_plasma_toroidal_profile441___ 5.19284749612988072e+00 -Toroidal_field_in_plasma_at_point_442____________________________________ b_plasma_toroidal_profile442___ 5.18924884921641549e+00 -Toroidal_field_in_plasma_at_point_443____________________________________ b_plasma_toroidal_profile443___ 5.18565518657845459e+00 -Toroidal_field_in_plasma_at_point_444____________________________________ b_plasma_toroidal_profile444___ 5.18206649786801954e+00 -Toroidal_field_in_plasma_at_point_445____________________________________ b_plasma_toroidal_profile445___ 5.17848277276575963e+00 -Toroidal_field_in_plasma_at_point_446____________________________________ b_plasma_toroidal_profile446___ 5.17490400098084891e+00 -Toroidal_field_in_plasma_at_point_447____________________________________ b_plasma_toroidal_profile447___ 5.17133017225088931e+00 -Toroidal_field_in_plasma_at_point_448____________________________________ b_plasma_toroidal_profile448___ 5.16776127634181393e+00 -Toroidal_field_in_plasma_at_point_449____________________________________ b_plasma_toroidal_profile449___ 5.16419730304778479e+00 -Toroidal_field_in_plasma_at_point_450____________________________________ b_plasma_toroidal_profile450___ 5.16063824219110145e+00 -Toroidal_field_in_plasma_at_point_451____________________________________ b_plasma_toroidal_profile451___ 5.15708408362209969e+00 -Toroidal_field_in_plasma_at_point_452____________________________________ b_plasma_toroidal_profile452___ 5.15353481721905649e+00 -Toroidal_field_in_plasma_at_point_453____________________________________ b_plasma_toroidal_profile453___ 5.14999043288809411e+00 -Toroidal_field_in_plasma_at_point_454____________________________________ b_plasma_toroidal_profile454___ 5.14645092056308506e+00 -Toroidal_field_in_plasma_at_point_455____________________________________ b_plasma_toroidal_profile455___ 5.14291627020555531e+00 -Toroidal_field_in_plasma_at_point_456____________________________________ b_plasma_toroidal_profile456___ 5.13938647180459007e+00 -Toroidal_field_in_plasma_at_point_457____________________________________ b_plasma_toroidal_profile457___ 5.13586151537674063e+00 -Toroidal_field_in_plasma_at_point_458____________________________________ b_plasma_toroidal_profile458___ 5.13234139096592745e+00 -Toroidal_field_in_plasma_at_point_459____________________________________ b_plasma_toroidal_profile459___ 5.12882608864334788e+00 -Toroidal_field_in_plasma_at_point_460____________________________________ b_plasma_toroidal_profile460___ 5.12531559850738461e+00 -Toroidal_field_in_plasma_at_point_461____________________________________ b_plasma_toroidal_profile461___ 5.12180991068350799e+00 -Toroidal_field_in_plasma_at_point_462____________________________________ b_plasma_toroidal_profile462___ 5.11830901532418814e+00 -Toroidal_field_in_plasma_at_point_463____________________________________ b_plasma_toroidal_profile463___ 5.11481290260880339e+00 -Toroidal_field_in_plasma_at_point_464____________________________________ b_plasma_toroidal_profile464___ 5.11132156274354088e+00 -Toroidal_field_in_plasma_at_point_465____________________________________ b_plasma_toroidal_profile465___ 5.10783498596131480e+00 -Toroidal_field_in_plasma_at_point_466____________________________________ b_plasma_toroidal_profile466___ 5.10435316252166871e+00 -Toroidal_field_in_plasma_at_point_467____________________________________ b_plasma_toroidal_profile467___ 5.10087608271068671e+00 -Toroidal_field_in_plasma_at_point_468____________________________________ b_plasma_toroidal_profile468___ 5.09740373684090464e+00 -Toroidal_field_in_plasma_at_point_469____________________________________ b_plasma_toroidal_profile469___ 5.09393611525121681e+00 -Toroidal_field_in_plasma_at_point_470____________________________________ b_plasma_toroidal_profile470___ 5.09047320830678984e+00 -Toroidal_field_in_plasma_at_point_471____________________________________ b_plasma_toroidal_profile471___ 5.08701500639897297e+00 -Toroidal_field_in_plasma_at_point_472____________________________________ b_plasma_toroidal_profile472___ 5.08356149994520656e+00 -Toroidal_field_in_plasma_at_point_473____________________________________ b_plasma_toroidal_profile473___ 5.08011267938893418e+00 -Toroidal_field_in_plasma_at_point_474____________________________________ b_plasma_toroidal_profile474___ 5.07666853519951822e+00 -Toroidal_field_in_plasma_at_point_475____________________________________ b_plasma_toroidal_profile475___ 5.07322905787214662e+00 -Toroidal_field_in_plasma_at_point_476____________________________________ b_plasma_toroidal_profile476___ 5.06979423792775119e+00 -Toroidal_field_in_plasma_at_point_477____________________________________ b_plasma_toroidal_profile477___ 5.06636406591291522e+00 -Toroidal_field_in_plasma_at_point_478____________________________________ b_plasma_toroidal_profile478___ 5.06293853239978908e+00 -Toroidal_field_in_plasma_at_point_479____________________________________ b_plasma_toroidal_profile479___ 5.05951762798600591e+00 -Toroidal_field_in_plasma_at_point_480____________________________________ b_plasma_toroidal_profile480___ 5.05610134329459004e+00 -Toroidal_field_in_plasma_at_point_481____________________________________ b_plasma_toroidal_profile481___ 5.05268966897387894e+00 -Toroidal_field_in_plasma_at_point_482____________________________________ b_plasma_toroidal_profile482___ 5.04928259569742988e+00 -Toroidal_field_in_plasma_at_point_483____________________________________ b_plasma_toroidal_profile483___ 5.04588011416394089e+00 -Toroidal_field_in_plasma_at_point_484____________________________________ b_plasma_toroidal_profile484___ 5.04248221509716377e+00 -Toroidal_field_in_plasma_at_point_485____________________________________ b_plasma_toroidal_profile485___ 5.03908888924581966e+00 -Toroidal_field_in_plasma_at_point_486____________________________________ b_plasma_toroidal_profile486___ 5.03570012738351558e+00 -Toroidal_field_in_plasma_at_point_487____________________________________ b_plasma_toroidal_profile487___ 5.03231592030866182e+00 -Toroidal_field_in_plasma_at_point_488____________________________________ b_plasma_toroidal_profile488___ 5.02893625884438400e+00 -Toroidal_field_in_plasma_at_point_489____________________________________ b_plasma_toroidal_profile489___ 5.02556113383844849e+00 -Toroidal_field_in_plasma_at_point_490____________________________________ b_plasma_toroidal_profile490___ 5.02219053616317090e+00 -Toroidal_field_in_plasma_at_point_491____________________________________ b_plasma_toroidal_profile491___ 5.01882445671534061e+00 -Toroidal_field_in_plasma_at_point_492____________________________________ b_plasma_toroidal_profile492___ 5.01546288641613458e+00 -Toroidal_field_in_plasma_at_point_493____________________________________ b_plasma_toroidal_profile493___ 5.01210581621103657e+00 -Toroidal_field_in_plasma_at_point_494____________________________________ b_plasma_toroidal_profile494___ 5.00875323706975806e+00 -Toroidal_field_in_plasma_at_point_495____________________________________ b_plasma_toroidal_profile495___ 5.00540513998615566e+00 -Toroidal_field_in_plasma_at_point_496____________________________________ b_plasma_toroidal_profile496___ 5.00206151597814852e+00 -Toroidal_field_in_plasma_at_point_497____________________________________ b_plasma_toroidal_profile497___ 4.99872235608764282e+00 -Toroidal_field_in_plasma_at_point_498____________________________________ b_plasma_toroidal_profile498___ 4.99538765138044649e+00 -Toroidal_field_in_plasma_at_point_499____________________________________ b_plasma_toroidal_profile499___ 4.99205739294619200e+00 -Toroidal_field_in_plasma_at_point_500____________________________________ b_plasma_toroidal_profile500___ 4.98873157189825989e+00 -Toroidal_field_in_plasma_at_point_501____________________________________ b_plasma_toroidal_profile501___ 4.98541017937369357e+00 -Toroidal_field_in_plasma_at_point_502____________________________________ b_plasma_toroidal_profile502___ 4.98209320653312648e+00 -Toroidal_field_in_plasma_at_point_503____________________________________ b_plasma_toroidal_profile503___ 4.97878064456069680e+00 -Toroidal_field_in_plasma_at_point_504____________________________________ b_plasma_toroidal_profile504___ 4.97547248466397996e+00 -Toroidal_field_in_plasma_at_point_505____________________________________ b_plasma_toroidal_profile505___ 4.97216871807389627e+00 -Toroidal_field_in_plasma_at_point_506____________________________________ b_plasma_toroidal_profile506___ 4.96886933604465053e+00 -Toroidal_field_in_plasma_at_point_507____________________________________ b_plasma_toroidal_profile507___ 4.96557432985363967e+00 -Toroidal_field_in_plasma_at_point_508____________________________________ b_plasma_toroidal_profile508___ 4.96228369080138343e+00 -Toroidal_field_in_plasma_at_point_509____________________________________ b_plasma_toroidal_profile509___ 4.95899741021144891e+00 -Toroidal_field_in_plasma_at_point_510____________________________________ b_plasma_toroidal_profile510___ 4.95571547943036972e+00 -Toroidal_field_in_plasma_at_point_511____________________________________ b_plasma_toroidal_profile511___ 4.95243788982757138e+00 -Toroidal_field_in_plasma_at_point_512____________________________________ b_plasma_toroidal_profile512___ 4.94916463279529939e+00 -Toroidal_field_in_plasma_at_point_513____________________________________ b_plasma_toroidal_profile513___ 4.94589569974853926e+00 -Toroidal_field_in_plasma_at_point_514____________________________________ b_plasma_toroidal_profile514___ 4.94263108212494284e+00 -Toroidal_field_in_plasma_at_point_515____________________________________ b_plasma_toroidal_profile515___ 4.93937077138475544e+00 -Toroidal_field_in_plasma_at_point_516____________________________________ b_plasma_toroidal_profile516___ 4.93611475901073771e+00 -Toroidal_field_in_plasma_at_point_517____________________________________ b_plasma_toroidal_profile517___ 4.93286303650809543e+00 -Toroidal_field_in_plasma_at_point_518____________________________________ b_plasma_toroidal_profile518___ 4.92961559540440319e+00 -Toroidal_field_in_plasma_at_point_519____________________________________ b_plasma_toroidal_profile519___ 4.92637242724953239e+00 -Toroidal_field_in_plasma_at_point_520____________________________________ b_plasma_toroidal_profile520___ 4.92313352361557399e+00 -Toroidal_field_in_plasma_at_point_521____________________________________ b_plasma_toroidal_profile521___ 4.91989887609677368e+00 -Toroidal_field_in_plasma_at_point_522____________________________________ b_plasma_toroidal_profile522___ 4.91666847630944659e+00 -Toroidal_field_in_plasma_at_point_523____________________________________ b_plasma_toroidal_profile523___ 4.91344231589192226e+00 -Toroidal_field_in_plasma_at_point_524____________________________________ b_plasma_toroidal_profile524___ 4.91022038650445136e+00 -Toroidal_field_in_plasma_at_point_525____________________________________ b_plasma_toroidal_profile525___ 4.90700267982915417e+00 -Toroidal_field_in_plasma_at_point_526____________________________________ b_plasma_toroidal_profile526___ 4.90378918756993354e+00 -Toroidal_field_in_plasma_at_point_527____________________________________ b_plasma_toroidal_profile527___ 4.90057990145241362e+00 -Toroidal_field_in_plasma_at_point_528____________________________________ b_plasma_toroidal_profile528___ 4.89737481322386436e+00 -Toroidal_field_in_plasma_at_point_529____________________________________ b_plasma_toroidal_profile529___ 4.89417391465312956e+00 -Toroidal_field_in_plasma_at_point_530____________________________________ b_plasma_toroidal_profile530___ 4.89097719753056026e+00 -Toroidal_field_in_plasma_at_point_531____________________________________ b_plasma_toroidal_profile531___ 4.88778465366794279e+00 -Toroidal_field_in_plasma_at_point_532____________________________________ b_plasma_toroidal_profile532___ 4.88459627489842685e+00 -Toroidal_field_in_plasma_at_point_533____________________________________ b_plasma_toroidal_profile533___ 4.88141205307645887e+00 -Toroidal_field_in_plasma_at_point_534____________________________________ b_plasma_toroidal_profile534___ 4.87823198007771275e+00 -Toroidal_field_in_plasma_at_point_535____________________________________ b_plasma_toroidal_profile535___ 4.87505604779901613e+00 -Toroidal_field_in_plasma_at_point_536____________________________________ b_plasma_toroidal_profile536___ 4.87188424815828824e+00 -Toroidal_field_in_plasma_at_point_537____________________________________ b_plasma_toroidal_profile537___ 4.86871657309446615e+00 -Toroidal_field_in_plasma_at_point_538____________________________________ b_plasma_toroidal_profile538___ 4.86555301456743905e+00 -Toroidal_field_in_plasma_at_point_539____________________________________ b_plasma_toroidal_profile539___ 4.86239356455797989e+00 -Toroidal_field_in_plasma_at_point_540____________________________________ b_plasma_toroidal_profile540___ 4.85923821506767606e+00 -Toroidal_field_in_plasma_at_point_541____________________________________ b_plasma_toroidal_profile541___ 4.85608695811886459e+00 -Toroidal_field_in_plasma_at_point_542____________________________________ b_plasma_toroidal_profile542___ 4.85293978575456197e+00 -Toroidal_field_in_plasma_at_point_543____________________________________ b_plasma_toroidal_profile543___ 4.84979669003839842e+00 -Toroidal_field_in_plasma_at_point_544____________________________________ b_plasma_toroidal_profile544___ 4.84665766305455659e+00 -Toroidal_field_in_plasma_at_point_545____________________________________ b_plasma_toroidal_profile545___ 4.84352269690768900e+00 -Toroidal_field_in_plasma_at_point_546____________________________________ b_plasma_toroidal_profile546___ 4.84039178372287626e+00 -Toroidal_field_in_plasma_at_point_547____________________________________ b_plasma_toroidal_profile547___ 4.83726491564553474e+00 -Toroidal_field_in_plasma_at_point_548____________________________________ b_plasma_toroidal_profile548___ 4.83414208484137387e+00 -Toroidal_field_in_plasma_at_point_549____________________________________ b_plasma_toroidal_profile549___ 4.83102328349631449e+00 -Toroidal_field_in_plasma_at_point_550____________________________________ b_plasma_toroidal_profile550___ 4.82790850381643377e+00 -Toroidal_field_in_plasma_at_point_551____________________________________ b_plasma_toroidal_profile551___ 4.82479773802789236e+00 -Toroidal_field_in_plasma_at_point_552____________________________________ b_plasma_toroidal_profile552___ 4.82169097837687577e+00 -Toroidal_field_in_plasma_at_point_553____________________________________ b_plasma_toroidal_profile553___ 4.81858821712952956e+00 -Toroidal_field_in_plasma_at_point_554____________________________________ b_plasma_toroidal_profile554___ 4.81548944657189004e+00 -Toroidal_field_in_plasma_at_point_555____________________________________ b_plasma_toroidal_profile555___ 4.81239465900982566e+00 -Toroidal_field_in_plasma_at_point_556____________________________________ b_plasma_toroidal_profile556___ 4.80930384676897127e+00 -Toroidal_field_in_plasma_at_point_557____________________________________ b_plasma_toroidal_profile557___ 4.80621700219466508e+00 -Toroidal_field_in_plasma_at_point_558____________________________________ b_plasma_toroidal_profile558___ 4.80313411765188469e+00 -Toroidal_field_in_plasma_at_point_559____________________________________ b_plasma_toroidal_profile559___ 4.80005518552518495e+00 -Toroidal_field_in_plasma_at_point_560____________________________________ b_plasma_toroidal_profile560___ 4.79698019821863486e+00 -Toroidal_field_in_plasma_at_point_561____________________________________ b_plasma_toroidal_profile561___ 4.79390914815575453e+00 -Toroidal_field_in_plasma_at_point_562____________________________________ b_plasma_toroidal_profile562___ 4.79084202777945567e+00 -Toroidal_field_in_plasma_at_point_563____________________________________ b_plasma_toroidal_profile563___ 4.78777882955197498e+00 -Toroidal_field_in_plasma_at_point_564____________________________________ b_plasma_toroidal_profile564___ 4.78471954595481641e+00 -Toroidal_field_in_plasma_at_point_565____________________________________ b_plasma_toroidal_profile565___ 4.78166416948869077e+00 -Toroidal_field_in_plasma_at_point_566____________________________________ b_plasma_toroidal_profile566___ 4.77861269267344468e+00 -Toroidal_field_in_plasma_at_point_567____________________________________ b_plasma_toroidal_profile567___ 4.77556510804801615e+00 -Toroidal_field_in_plasma_at_point_568____________________________________ b_plasma_toroidal_profile568___ 4.77252140817035553e+00 -Toroidal_field_in_plasma_at_point_569____________________________________ b_plasma_toroidal_profile569___ 4.76948158561738111e+00 -Toroidal_field_in_plasma_at_point_570____________________________________ b_plasma_toroidal_profile570___ 4.76644563298490631e+00 -Toroidal_field_in_plasma_at_point_571____________________________________ b_plasma_toroidal_profile571___ 4.76341354288758811e+00 -Toroidal_field_in_plasma_at_point_572____________________________________ b_plasma_toroidal_profile572___ 4.76038530795886050e+00 -Toroidal_field_in_plasma_at_point_573____________________________________ b_plasma_toroidal_profile573___ 4.75736092085088202e+00 -Toroidal_field_in_plasma_at_point_574____________________________________ b_plasma_toroidal_profile574___ 4.75434037423446920e+00 -Toroidal_field_in_plasma_at_point_575____________________________________ b_plasma_toroidal_profile575___ 4.75132366079904056e+00 -Toroidal_field_in_plasma_at_point_576____________________________________ b_plasma_toroidal_profile576___ 4.74831077325256068e+00 -Toroidal_field_in_plasma_at_point_577____________________________________ b_plasma_toroidal_profile577___ 4.74530170432147536e+00 -Toroidal_field_in_plasma_at_point_578____________________________________ b_plasma_toroidal_profile578___ 4.74229644675065742e+00 -Toroidal_field_in_plasma_at_point_579____________________________________ b_plasma_toroidal_profile579___ 4.73929499330334725e+00 -Toroidal_field_in_plasma_at_point_580____________________________________ b_plasma_toroidal_profile580___ 4.73629733676109321e+00 -Toroidal_field_in_plasma_at_point_581____________________________________ b_plasma_toroidal_profile581___ 4.73330346992369755e+00 -Toroidal_field_in_plasma_at_point_582____________________________________ b_plasma_toroidal_profile582___ 4.73031338560915326e+00 -Toroidal_field_in_plasma_at_point_583____________________________________ b_plasma_toroidal_profile583___ 4.72732707665359175e+00 -Toroidal_field_in_plasma_at_point_584____________________________________ b_plasma_toroidal_profile584___ 4.72434453591122328e+00 -Toroidal_field_in_plasma_at_point_585____________________________________ b_plasma_toroidal_profile585___ 4.72136575625428012e+00 -Toroidal_field_in_plasma_at_point_586____________________________________ b_plasma_toroidal_profile586___ 4.71839073057296154e+00 -Toroidal_field_in_plasma_at_point_587____________________________________ b_plasma_toroidal_profile587___ 4.71541945177536981e+00 -Toroidal_field_in_plasma_at_point_588____________________________________ b_plasma_toroidal_profile588___ 4.71245191278746933e+00 -Toroidal_field_in_plasma_at_point_589____________________________________ b_plasma_toroidal_profile589___ 4.70948810655301120e+00 -Toroidal_field_in_plasma_at_point_590____________________________________ b_plasma_toroidal_profile590___ 4.70652802603349318e+00 -Toroidal_field_in_plasma_at_point_591____________________________________ b_plasma_toroidal_profile591___ 4.70357166420809580e+00 -Toroidal_field_in_plasma_at_point_592____________________________________ b_plasma_toroidal_profile592___ 4.70061901407362726e+00 -Toroidal_field_in_plasma_at_point_593____________________________________ b_plasma_toroidal_profile593___ 4.69767006864447190e+00 -Toroidal_field_in_plasma_at_point_594____________________________________ b_plasma_toroidal_profile594___ 4.69472482095253163e+00 -Toroidal_field_in_plasma_at_point_595____________________________________ b_plasma_toroidal_profile595___ 4.69178326404717350e+00 -Toroidal_field_in_plasma_at_point_596____________________________________ b_plasma_toroidal_profile596___ 4.68884539099517106e+00 -Toroidal_field_in_plasma_at_point_597____________________________________ b_plasma_toroidal_profile597___ 4.68591119488065644e+00 -Toroidal_field_in_plasma_at_point_598____________________________________ b_plasma_toroidal_profile598___ 4.68298066880505814e+00 -Toroidal_field_in_plasma_at_point_599____________________________________ b_plasma_toroidal_profile599___ 4.68005380588705577e+00 -Toroidal_field_in_plasma_at_point_600____________________________________ b_plasma_toroidal_profile600___ 4.67713059926251606e+00 -Toroidal_field_in_plasma_at_point_601____________________________________ b_plasma_toroidal_profile601___ 4.67421104208445026e+00 -Toroidal_field_in_plasma_at_point_602____________________________________ b_plasma_toroidal_profile602___ 4.67129512752295017e+00 -Toroidal_field_in_plasma_at_point_603____________________________________ b_plasma_toroidal_profile603___ 4.66838284876514287e+00 -Toroidal_field_in_plasma_at_point_604____________________________________ b_plasma_toroidal_profile604___ 4.66547419901513383e+00 -Toroidal_field_in_plasma_at_point_605____________________________________ b_plasma_toroidal_profile605___ 4.66256917149395367e+00 -Toroidal_field_in_plasma_at_point_606____________________________________ b_plasma_toroidal_profile606___ 4.65966775943950662e+00 -Toroidal_field_in_plasma_at_point_607____________________________________ b_plasma_toroidal_profile607___ 4.65676995610652344e+00 -Toroidal_field_in_plasma_at_point_608____________________________________ b_plasma_toroidal_profile608___ 4.65387575476649307e+00 -Toroidal_field_in_plasma_at_point_609____________________________________ b_plasma_toroidal_profile609___ 4.65098514870763324e+00 -Toroidal_field_in_plasma_at_point_610____________________________________ b_plasma_toroidal_profile610___ 4.64809813123481597e+00 -Toroidal_field_in_plasma_at_point_611____________________________________ b_plasma_toroidal_profile611___ 4.64521469566953371e+00 -Toroidal_field_in_plasma_at_point_612____________________________________ b_plasma_toroidal_profile612___ 4.64233483534983726e+00 -Toroidal_field_in_plasma_at_point_613____________________________________ b_plasma_toroidal_profile613___ 4.63945854363029042e+00 -Toroidal_field_in_plasma_at_point_614____________________________________ b_plasma_toroidal_profile614___ 4.63658581388191227e+00 -Toroidal_field_in_plasma_at_point_615____________________________________ b_plasma_toroidal_profile615___ 4.63371663949213364e+00 -Toroidal_field_in_plasma_at_point_616____________________________________ b_plasma_toroidal_profile616___ 4.63085101386474207e+00 -Toroidal_field_in_plasma_at_point_617____________________________________ b_plasma_toroidal_profile617___ 4.62798893041983206e+00 -Toroidal_field_in_plasma_at_point_618____________________________________ b_plasma_toroidal_profile618___ 4.62513038259375442e+00 -Toroidal_field_in_plasma_at_point_619____________________________________ b_plasma_toroidal_profile619___ 4.62227536383906745e+00 -Toroidal_field_in_plasma_at_point_620____________________________________ b_plasma_toroidal_profile620___ 4.61942386762448365e+00 -Toroidal_field_in_plasma_at_point_621____________________________________ b_plasma_toroidal_profile621___ 4.61657588743482705e+00 -Toroidal_field_in_plasma_at_point_622____________________________________ b_plasma_toroidal_profile622___ 4.61373141677097287e+00 -Toroidal_field_in_plasma_at_point_623____________________________________ b_plasma_toroidal_profile623___ 4.61089044914980839e+00 -Toroidal_field_in_plasma_at_point_624____________________________________ b_plasma_toroidal_profile624___ 4.60805297810417791e+00 -Toroidal_field_in_plasma_at_point_625____________________________________ b_plasma_toroidal_profile625___ 4.60521899718283478e+00 -Toroidal_field_in_plasma_at_point_626____________________________________ b_plasma_toroidal_profile626___ 4.60238849995039256e+00 -Toroidal_field_in_plasma_at_point_627____________________________________ b_plasma_toroidal_profile627___ 4.59956147998727705e+00 -Toroidal_field_in_plasma_at_point_628____________________________________ b_plasma_toroidal_profile628___ 4.59673793088968008e+00 -Toroidal_field_in_plasma_at_point_629____________________________________ b_plasma_toroidal_profile629___ 4.59391784626950184e+00 -Toroidal_field_in_plasma_at_point_630____________________________________ b_plasma_toroidal_profile630___ 4.59110121975431618e+00 -Toroidal_field_in_plasma_at_point_631____________________________________ b_plasma_toroidal_profile631___ 4.58828804498730847e+00 -Toroidal_field_in_plasma_at_point_632____________________________________ b_plasma_toroidal_profile632___ 4.58547831562724451e+00 -Toroidal_field_in_plasma_at_point_633____________________________________ b_plasma_toroidal_profile633___ 4.58267202534840123e+00 -Toroidal_field_in_plasma_at_point_634____________________________________ b_plasma_toroidal_profile634___ 4.57986916784054365e+00 -Toroidal_field_in_plasma_at_point_635____________________________________ b_plasma_toroidal_profile635___ 4.57706973680885554e+00 -Toroidal_field_in_plasma_at_point_636____________________________________ b_plasma_toroidal_profile636___ 4.57427372597390836e+00 -Toroidal_field_in_plasma_at_point_637____________________________________ b_plasma_toroidal_profile637___ 4.57148112907160442e+00 -Toroidal_field_in_plasma_at_point_638____________________________________ b_plasma_toroidal_profile638___ 4.56869193985313515e+00 -Toroidal_field_in_plasma_at_point_639____________________________________ b_plasma_toroidal_profile639___ 4.56590615208493222e+00 -Toroidal_field_in_plasma_at_point_640____________________________________ b_plasma_toroidal_profile640___ 4.56312375954862226e+00 -Toroidal_field_in_plasma_at_point_641____________________________________ b_plasma_toroidal_profile641___ 4.56034475604097977e+00 -Toroidal_field_in_plasma_at_point_642____________________________________ b_plasma_toroidal_profile642___ 4.55756913537388275e+00 -Toroidal_field_in_plasma_at_point_643____________________________________ b_plasma_toroidal_profile643___ 4.55479689137426291e+00 -Toroidal_field_in_plasma_at_point_644____________________________________ b_plasma_toroidal_profile644___ 4.55202801788406664e+00 -Toroidal_field_in_plasma_at_point_645____________________________________ b_plasma_toroidal_profile645___ 4.54926250876019989e+00 -Toroidal_field_in_plasma_at_point_646____________________________________ b_plasma_toroidal_profile646___ 4.54650035787449269e+00 -Toroidal_field_in_plasma_at_point_647____________________________________ b_plasma_toroidal_profile647___ 4.54374155911364674e+00 -Toroidal_field_in_plasma_at_point_648____________________________________ b_plasma_toroidal_profile648___ 4.54098610637919187e+00 -Toroidal_field_in_plasma_at_point_649____________________________________ b_plasma_toroidal_profile649___ 4.53823399358744783e+00 -Toroidal_field_in_plasma_at_point_650____________________________________ b_plasma_toroidal_profile650___ 4.53548521466946575e+00 -Toroidal_field_in_plasma_at_point_651____________________________________ b_plasma_toroidal_profile651___ 4.53273976357099873e+00 -Toroidal_field_in_plasma_at_point_652____________________________________ b_plasma_toroidal_profile652___ 4.52999763425244240e+00 -Toroidal_field_in_plasma_at_point_653____________________________________ b_plasma_toroidal_profile653___ 4.52725882068880825e+00 -Toroidal_field_in_plasma_at_point_654____________________________________ b_plasma_toroidal_profile654___ 4.52452331686966058e+00 -Toroidal_field_in_plasma_at_point_655____________________________________ b_plasma_toroidal_profile655___ 4.52179111679908718e+00 -Toroidal_field_in_plasma_at_point_656____________________________________ b_plasma_toroidal_profile656___ 4.51906221449564782e+00 -Toroidal_field_in_plasma_at_point_657____________________________________ b_plasma_toroidal_profile657___ 4.51633660399233339e+00 -Toroidal_field_in_plasma_at_point_658____________________________________ b_plasma_toroidal_profile658___ 4.51361427933652148e+00 -Toroidal_field_in_plasma_at_point_659____________________________________ b_plasma_toroidal_profile659___ 4.51089523458993291e+00 -Toroidal_field_in_plasma_at_point_660____________________________________ b_plasma_toroidal_profile660___ 4.50817946382858992e+00 -Toroidal_field_in_plasma_at_point_661____________________________________ b_plasma_toroidal_profile661___ 4.50546696114277267e+00 -Toroidal_field_in_plasma_at_point_662____________________________________ b_plasma_toroidal_profile662___ 4.50275772063697488e+00 -Toroidal_field_in_plasma_at_point_663____________________________________ b_plasma_toroidal_profile663___ 4.50005173642986112e+00 -Toroidal_field_in_plasma_at_point_664____________________________________ b_plasma_toroidal_profile664___ 4.49734900265422777e+00 -Toroidal_field_in_plasma_at_point_665____________________________________ b_plasma_toroidal_profile665___ 4.49464951345695596e+00 -Toroidal_field_in_plasma_at_point_666____________________________________ b_plasma_toroidal_profile666___ 4.49195326299897335e+00 -Toroidal_field_in_plasma_at_point_667____________________________________ b_plasma_toroidal_profile667___ 4.48926024545520885e+00 -Toroidal_field_in_plasma_at_point_668____________________________________ b_plasma_toroidal_profile668___ 4.48657045501455354e+00 -Toroidal_field_in_plasma_at_point_669____________________________________ b_plasma_toroidal_profile669___ 4.48388388587981357e+00 -Toroidal_field_in_plasma_at_point_670____________________________________ b_plasma_toroidal_profile670___ 4.48120053226767734e+00 -Toroidal_field_in_plasma_at_point_671____________________________________ b_plasma_toroidal_profile671___ 4.47852038840866484e+00 -Toroidal_field_in_plasma_at_point_672____________________________________ b_plasma_toroidal_profile672___ 4.47584344854709482e+00 -Toroidal_field_in_plasma_at_point_673____________________________________ b_plasma_toroidal_profile673___ 4.47316970694103233e+00 -Toroidal_field_in_plasma_at_point_674____________________________________ b_plasma_toroidal_profile674___ 4.47049915786226215e+00 -Toroidal_field_in_plasma_at_point_675____________________________________ b_plasma_toroidal_profile675___ 4.46783179559623367e+00 -Toroidal_field_in_plasma_at_point_676____________________________________ b_plasma_toroidal_profile676___ 4.46516761444203247e+00 -Toroidal_field_in_plasma_at_point_677____________________________________ b_plasma_toroidal_profile677___ 4.46250660871232885e+00 -Toroidal_field_in_plasma_at_point_678____________________________________ b_plasma_toroidal_profile678___ 4.45984877273334668e+00 -Toroidal_field_in_plasma_at_point_679____________________________________ b_plasma_toroidal_profile679___ 4.45719410084481460e+00 -Toroidal_field_in_plasma_at_point_680____________________________________ b_plasma_toroidal_profile680___ 4.45454258739993403e+00 -Toroidal_field_in_plasma_at_point_681____________________________________ b_plasma_toroidal_profile681___ 4.45189422676533209e+00 -Toroidal_field_in_plasma_at_point_682____________________________________ b_plasma_toroidal_profile682___ 4.44924901332102696e+00 -Toroidal_field_in_plasma_at_point_683____________________________________ b_plasma_toroidal_profile683___ 4.44660694146038526e+00 -Toroidal_field_in_plasma_at_point_684____________________________________ b_plasma_toroidal_profile684___ 4.44396800559008209e+00 -Toroidal_field_in_plasma_at_point_685____________________________________ b_plasma_toroidal_profile685___ 4.44133220013006458e+00 -Toroidal_field_in_plasma_at_point_686____________________________________ b_plasma_toroidal_profile686___ 4.43869951951350838e+00 -Toroidal_field_in_plasma_at_point_687____________________________________ b_plasma_toroidal_profile687___ 4.43606995818678218e+00 -Toroidal_field_in_plasma_at_point_688____________________________________ b_plasma_toroidal_profile688___ 4.43344351060940767e+00 -Toroidal_field_in_plasma_at_point_689____________________________________ b_plasma_toroidal_profile689___ 4.43082017125401695e+00 -Toroidal_field_in_plasma_at_point_690____________________________________ b_plasma_toroidal_profile690___ 4.42819993460632144e+00 -Toroidal_field_in_plasma_at_point_691____________________________________ b_plasma_toroidal_profile691___ 4.42558279516506481e+00 -Toroidal_field_in_plasma_at_point_692____________________________________ b_plasma_toroidal_profile692___ 4.42296874744198920e+00 -Toroidal_field_in_plasma_at_point_693____________________________________ b_plasma_toroidal_profile693___ 4.42035778596179973e+00 -Toroidal_field_in_plasma_at_point_694____________________________________ b_plasma_toroidal_profile694___ 4.41774990526211653e+00 -Toroidal_field_in_plasma_at_point_695____________________________________ b_plasma_toroidal_profile695___ 4.41514509989344894e+00 -Toroidal_field_in_plasma_at_point_696____________________________________ b_plasma_toroidal_profile696___ 4.41254336441914408e+00 -Toroidal_field_in_plasma_at_point_697____________________________________ b_plasma_toroidal_profile697___ 4.40994469341536366e+00 -Toroidal_field_in_plasma_at_point_698____________________________________ b_plasma_toroidal_profile698___ 4.40734908147103521e+00 -Toroidal_field_in_plasma_at_point_699____________________________________ b_plasma_toroidal_profile699___ 4.40475652318781652e+00 -Toroidal_field_in_plasma_at_point_700____________________________________ b_plasma_toroidal_profile700___ 4.40216701318006365e+00 -Toroidal_field_in_plasma_at_point_701____________________________________ b_plasma_toroidal_profile701___ 4.39958054607478743e+00 -Toroidal_field_in_plasma_at_point_702____________________________________ b_plasma_toroidal_profile702___ 4.39699711651161973e+00 -Toroidal_field_in_plasma_at_point_703____________________________________ b_plasma_toroidal_profile703___ 4.39441671914277521e+00 -Toroidal_field_in_plasma_at_point_704____________________________________ b_plasma_toroidal_profile704___ 4.39183934863301406e+00 -Toroidal_field_in_plasma_at_point_705____________________________________ b_plasma_toroidal_profile705___ 4.38926499965960648e+00 -Toroidal_field_in_plasma_at_point_706____________________________________ b_plasma_toroidal_profile706___ 4.38669366691229534e+00 -Toroidal_field_in_plasma_at_point_707____________________________________ b_plasma_toroidal_profile707___ 4.38412534509326068e+00 -Toroidal_field_in_plasma_at_point_708____________________________________ b_plasma_toroidal_profile708___ 4.38156002891707974e+00 -Toroidal_field_in_plasma_at_point_709____________________________________ b_plasma_toroidal_profile709___ 4.37899771311069497e+00 -Toroidal_field_in_plasma_at_point_710____________________________________ b_plasma_toroidal_profile710___ 4.37643839241337762e+00 -Toroidal_field_in_plasma_at_point_711____________________________________ b_plasma_toroidal_profile711___ 4.37388206157668780e+00 -Toroidal_field_in_plasma_at_point_712____________________________________ b_plasma_toroidal_profile712___ 4.37132871536444245e+00 -Toroidal_field_in_plasma_at_point_713____________________________________ b_plasma_toroidal_profile713___ 4.36877834855267633e+00 -Toroidal_field_in_plasma_at_point_714____________________________________ b_plasma_toroidal_profile714___ 4.36623095592961441e+00 -Toroidal_field_in_plasma_at_point_715____________________________________ b_plasma_toroidal_profile715___ 4.36368653229562220e+00 -Toroidal_field_in_plasma_at_point_716____________________________________ b_plasma_toroidal_profile716___ 4.36114507246318528e+00 -Toroidal_field_in_plasma_at_point_717____________________________________ b_plasma_toroidal_profile717___ 4.35860657125686135e+00 -Toroidal_field_in_plasma_at_point_718____________________________________ b_plasma_toroidal_profile718___ 4.35607102351325626e+00 -Toroidal_field_in_plasma_at_point_719____________________________________ b_plasma_toroidal_profile719___ 4.35353842408098135e+00 -Toroidal_field_in_plasma_at_point_720____________________________________ b_plasma_toroidal_profile720___ 4.35100876782062063e+00 -Toroidal_field_in_plasma_at_point_721____________________________________ b_plasma_toroidal_profile721___ 4.34848204960469698e+00 -Toroidal_field_in_plasma_at_point_722____________________________________ b_plasma_toroidal_profile722___ 4.34595826431763665e+00 -Toroidal_field_in_plasma_at_point_723____________________________________ b_plasma_toroidal_profile723___ 4.34343740685573554e+00 -Toroidal_field_in_plasma_at_point_724____________________________________ b_plasma_toroidal_profile724___ 4.34091947212712359e+00 -Toroidal_field_in_plasma_at_point_725____________________________________ b_plasma_toroidal_profile725___ 4.33840445505173200e+00 -Toroidal_field_in_plasma_at_point_726____________________________________ b_plasma_toroidal_profile726___ 4.33589235056125588e+00 -Toroidal_field_in_plasma_at_point_727____________________________________ b_plasma_toroidal_profile727___ 4.33338315359912585e+00 -Toroidal_field_in_plasma_at_point_728____________________________________ b_plasma_toroidal_profile728___ 4.33087685912046805e+00 -Toroidal_field_in_plasma_at_point_729____________________________________ b_plasma_toroidal_profile729___ 4.32837346209207485e+00 -Toroidal_field_in_plasma_at_point_730____________________________________ b_plasma_toroidal_profile730___ 4.32587295749236844e+00 -Toroidal_field_in_plasma_at_point_731____________________________________ b_plasma_toroidal_profile731___ 4.32337534031136794e+00 -Toroidal_field_in_plasma_at_point_732____________________________________ b_plasma_toroidal_profile732___ 4.32088060555065745e+00 -Toroidal_field_in_plasma_at_point_733____________________________________ b_plasma_toroidal_profile733___ 4.31838874822335050e+00 -Toroidal_field_in_plasma_at_point_734____________________________________ b_plasma_toroidal_profile734___ 4.31589976335405634e+00 -Toroidal_field_in_plasma_at_point_735____________________________________ b_plasma_toroidal_profile735___ 4.31341364597885324e+00 -Toroidal_field_in_plasma_at_point_736____________________________________ b_plasma_toroidal_profile736___ 4.31093039114524323e+00 -Toroidal_field_in_plasma_at_point_737____________________________________ b_plasma_toroidal_profile737___ 4.30844999391213435e+00 -Toroidal_field_in_plasma_at_point_738____________________________________ b_plasma_toroidal_profile738___ 4.30597244934979173e+00 -Toroidal_field_in_plasma_at_point_739____________________________________ b_plasma_toroidal_profile739___ 4.30349775253982081e+00 -Toroidal_field_in_plasma_at_point_740____________________________________ b_plasma_toroidal_profile740___ 4.30102589857512285e+00 -Toroidal_field_in_plasma_at_point_741____________________________________ b_plasma_toroidal_profile741___ 4.29855688255986745e+00 -Toroidal_field_in_plasma_at_point_742____________________________________ b_plasma_toroidal_profile742___ 4.29609069960945966e+00 -Toroidal_field_in_plasma_at_point_743____________________________________ b_plasma_toroidal_profile743___ 4.29362734485050979e+00 -Toroidal_field_in_plasma_at_point_744____________________________________ b_plasma_toroidal_profile744___ 4.29116681342079609e+00 -Toroidal_field_in_plasma_at_point_745____________________________________ b_plasma_toroidal_profile745___ 4.28870910046923726e+00 -Toroidal_field_in_plasma_at_point_746____________________________________ b_plasma_toroidal_profile746___ 4.28625420115586042e+00 -Toroidal_field_in_plasma_at_point_747____________________________________ b_plasma_toroidal_profile747___ 4.28380211065176741e+00 -Toroidal_field_in_plasma_at_point_748____________________________________ b_plasma_toroidal_profile748___ 4.28135282413910190e+00 -Toroidal_field_in_plasma_at_point_749____________________________________ b_plasma_toroidal_profile749___ 4.27890633681102184e+00 -Toroidal_field_in_plasma_at_point_750____________________________________ b_plasma_toroidal_profile750___ 4.27646264387166664e+00 -Toroidal_field_in_plasma_at_point_751____________________________________ b_plasma_toroidal_profile751___ 4.27402174053612427e+00 -Toroidal_field_in_plasma_at_point_752____________________________________ b_plasma_toroidal_profile752___ 4.27158362203039843e+00 -Toroidal_field_in_plasma_at_point_753____________________________________ b_plasma_toroidal_profile753___ 4.26914828359138454e+00 -Toroidal_field_in_plasma_at_point_754____________________________________ b_plasma_toroidal_profile754___ 4.26671572046683156e+00 -Toroidal_field_in_plasma_at_point_755____________________________________ b_plasma_toroidal_profile755___ 4.26428592791531180e+00 -Toroidal_field_in_plasma_at_point_756____________________________________ b_plasma_toroidal_profile756___ 4.26185890120619781e+00 -Toroidal_field_in_plasma_at_point_757____________________________________ b_plasma_toroidal_profile757___ 4.25943463561961799e+00 -Toroidal_field_in_plasma_at_point_758____________________________________ b_plasma_toroidal_profile758___ 4.25701312644644059e+00 -Toroidal_field_in_plasma_at_point_759____________________________________ b_plasma_toroidal_profile759___ 4.25459436898823196e+00 -Toroidal_field_in_plasma_at_point_760____________________________________ b_plasma_toroidal_profile760___ 4.25217835855723436e+00 -Toroidal_field_in_plasma_at_point_761____________________________________ b_plasma_toroidal_profile761___ 4.24976509047632689e+00 -Toroidal_field_in_plasma_at_point_762____________________________________ b_plasma_toroidal_profile762___ 4.24735456007900680e+00 -Toroidal_field_in_plasma_at_point_763____________________________________ b_plasma_toroidal_profile763___ 4.24494676270934690e+00 -Toroidal_field_in_plasma_at_point_764____________________________________ b_plasma_toroidal_profile764___ 4.24254169372197687e+00 -Toroidal_field_in_plasma_at_point_765____________________________________ b_plasma_toroidal_profile765___ 4.24013934848204332e+00 -Toroidal_field_in_plasma_at_point_766____________________________________ b_plasma_toroidal_profile766___ 4.23773972236518848e+00 -Toroidal_field_in_plasma_at_point_767____________________________________ b_plasma_toroidal_profile767___ 4.23534281075751640e+00 -Toroidal_field_in_plasma_at_point_768____________________________________ b_plasma_toroidal_profile768___ 4.23294860905556192e+00 -Toroidal_field_in_plasma_at_point_769____________________________________ b_plasma_toroidal_profile769___ 4.23055711266626489e+00 -Toroidal_field_in_plasma_at_point_770____________________________________ b_plasma_toroidal_profile770___ 4.22816831700693907e+00 -Toroidal_field_in_plasma_at_point_771____________________________________ b_plasma_toroidal_profile771___ 4.22578221750524197e+00 -Toroidal_field_in_plasma_at_point_772____________________________________ b_plasma_toroidal_profile772___ 4.22339880959914815e+00 -Toroidal_field_in_plasma_at_point_773____________________________________ b_plasma_toroidal_profile773___ 4.22101808873691642e+00 -Toroidal_field_in_plasma_at_point_774____________________________________ b_plasma_toroidal_profile774___ 4.21864005037706313e+00 -Toroidal_field_in_plasma_at_point_775____________________________________ b_plasma_toroidal_profile775___ 4.21626468998833825e+00 -Toroidal_field_in_plasma_at_point_776____________________________________ b_plasma_toroidal_profile776___ 4.21389200304968359e+00 -Toroidal_field_in_plasma_at_point_777____________________________________ b_plasma_toroidal_profile777___ 4.21152198505021857e+00 -Toroidal_field_in_plasma_at_point_778____________________________________ b_plasma_toroidal_profile778___ 4.20915463148920033e+00 -Toroidal_field_in_plasma_at_point_779____________________________________ b_plasma_toroidal_profile779___ 4.20678993787600497e+00 -Toroidal_field_in_plasma_at_point_780____________________________________ b_plasma_toroidal_profile780___ 4.20442789973008857e+00 -Toroidal_field_in_plasma_at_point_781____________________________________ b_plasma_toroidal_profile781___ 4.20206851258097025e+00 -Toroidal_field_in_plasma_at_point_782____________________________________ b_plasma_toroidal_profile782___ 4.19971177196819312e+00 -Toroidal_field_in_plasma_at_point_783____________________________________ b_plasma_toroidal_profile783___ 4.19735767344130561e+00 -Toroidal_field_in_plasma_at_point_784____________________________________ b_plasma_toroidal_profile784___ 4.19500621255982509e+00 -Toroidal_field_in_plasma_at_point_785____________________________________ b_plasma_toroidal_profile785___ 4.19265738489321826e+00 -Toroidal_field_in_plasma_at_point_786____________________________________ b_plasma_toroidal_profile786___ 4.19031118602086661e+00 -Toroidal_field_in_plasma_at_point_787____________________________________ b_plasma_toroidal_profile787___ 4.18796761153204056e+00 -Toroidal_field_in_plasma_at_point_788____________________________________ b_plasma_toroidal_profile788___ 4.18562665702587378e+00 -Toroidal_field_in_plasma_at_point_789____________________________________ b_plasma_toroidal_profile789___ 4.18328831811133472e+00 -Toroidal_field_in_plasma_at_point_790____________________________________ b_plasma_toroidal_profile790___ 4.18095259040719647e+00 -Toroidal_field_in_plasma_at_point_791____________________________________ b_plasma_toroidal_profile791___ 4.17861946954201358e+00 -Toroidal_field_in_plasma_at_point_792____________________________________ b_plasma_toroidal_profile792___ 4.17628895115409282e+00 -Toroidal_field_in_plasma_at_point_793____________________________________ b_plasma_toroidal_profile793___ 4.17396103089146564e+00 -Toroidal_field_in_plasma_at_point_794____________________________________ b_plasma_toroidal_profile794___ 4.17163570441186060e+00 -Toroidal_field_in_plasma_at_point_795____________________________________ b_plasma_toroidal_profile795___ 4.16931296738267676e+00 -Toroidal_field_in_plasma_at_point_796____________________________________ b_plasma_toroidal_profile796___ 4.16699281548096234e+00 -Toroidal_field_in_plasma_at_point_797____________________________________ b_plasma_toroidal_profile797___ 4.16467524439337478e+00 -Toroidal_field_in_plasma_at_point_798____________________________________ b_plasma_toroidal_profile798___ 4.16236024981617003e+00 -Toroidal_field_in_plasma_at_point_799____________________________________ b_plasma_toroidal_profile799___ 4.16004782745516000e+00 -Toroidal_field_in_plasma_at_point_800____________________________________ b_plasma_toroidal_profile800___ 4.15773797302570181e+00 -Toroidal_field_in_plasma_at_point_801____________________________________ b_plasma_toroidal_profile801___ 4.15543068225265699e+00 -Toroidal_field_in_plasma_at_point_802____________________________________ b_plasma_toroidal_profile802___ 4.15312595087037728e+00 -Toroidal_field_in_plasma_at_point_803____________________________________ b_plasma_toroidal_profile803___ 4.15082377462266550e+00 -Toroidal_field_in_plasma_at_point_804____________________________________ b_plasma_toroidal_profile804___ 4.14852414926276403e+00 -Toroidal_field_in_plasma_at_point_805____________________________________ b_plasma_toroidal_profile805___ 4.14622707055331574e+00 -Toroidal_field_in_plasma_at_point_806____________________________________ b_plasma_toroidal_profile806___ 4.14393253426634711e+00 -Toroidal_field_in_plasma_at_point_807____________________________________ b_plasma_toroidal_profile807___ 4.14164053618323447e+00 -Toroidal_field_in_plasma_at_point_808____________________________________ b_plasma_toroidal_profile808___ 4.13935107209468711e+00 -Toroidal_field_in_plasma_at_point_809____________________________________ b_plasma_toroidal_profile809___ 4.13706413780071180e+00 -Toroidal_field_in_plasma_at_point_810____________________________________ b_plasma_toroidal_profile810___ 4.13477972911059588e+00 -Toroidal_field_in_plasma_at_point_811____________________________________ b_plasma_toroidal_profile811___ 4.13249784184287439e+00 -Toroidal_field_in_plasma_at_point_812____________________________________ b_plasma_toroidal_profile812___ 4.13021847182531143e+00 -Toroidal_field_in_plasma_at_point_813____________________________________ b_plasma_toroidal_profile813___ 4.12794161489486733e+00 -Toroidal_field_in_plasma_at_point_814____________________________________ b_plasma_toroidal_profile814___ 4.12566726689767993e+00 -Toroidal_field_in_plasma_at_point_815____________________________________ b_plasma_toroidal_profile815___ 4.12339542368903622e+00 -Toroidal_field_in_plasma_at_point_816____________________________________ b_plasma_toroidal_profile816___ 4.12112608113334566e+00 -Toroidal_field_in_plasma_at_point_817____________________________________ b_plasma_toroidal_profile817___ 4.11885923510411978e+00 -Toroidal_field_in_plasma_at_point_818____________________________________ b_plasma_toroidal_profile818___ 4.11659488148394015e+00 -Toroidal_field_in_plasma_at_point_819____________________________________ b_plasma_toroidal_profile819___ 4.11433301616444425e+00 -Toroidal_field_in_plasma_at_point_820____________________________________ b_plasma_toroidal_profile820___ 4.11207363504628631e+00 -Toroidal_field_in_plasma_at_point_821____________________________________ b_plasma_toroidal_profile821___ 4.10981673403912673e+00 -Toroidal_field_in_plasma_at_point_822____________________________________ b_plasma_toroidal_profile822___ 4.10756230906159558e+00 -Toroidal_field_in_plasma_at_point_823____________________________________ b_plasma_toroidal_profile823___ 4.10531035604127759e+00 -Toroidal_field_in_plasma_at_point_824____________________________________ b_plasma_toroidal_profile824___ 4.10306087091467830e+00 -Toroidal_field_in_plasma_at_point_825____________________________________ b_plasma_toroidal_profile825___ 4.10081384962721263e+00 -Toroidal_field_in_plasma_at_point_826____________________________________ b_plasma_toroidal_profile826___ 4.09856928813316301e+00 -Toroidal_field_in_plasma_at_point_827____________________________________ b_plasma_toroidal_profile827___ 4.09632718239567239e+00 -Toroidal_field_in_plasma_at_point_828____________________________________ b_plasma_toroidal_profile828___ 4.09408752838670775e+00 -Toroidal_field_in_plasma_at_point_829____________________________________ b_plasma_toroidal_profile829___ 4.09185032208704325e+00 -Toroidal_field_in_plasma_at_point_830____________________________________ b_plasma_toroidal_profile830___ 4.08961555948623090e+00 -Toroidal_field_in_plasma_at_point_831____________________________________ b_plasma_toroidal_profile831___ 4.08738323658258107e+00 -Toroidal_field_in_plasma_at_point_832____________________________________ b_plasma_toroidal_profile832___ 4.08515334938313668e+00 -Toroidal_field_in_plasma_at_point_833____________________________________ b_plasma_toroidal_profile833___ 4.08292589390364746e+00 -Toroidal_field_in_plasma_at_point_834____________________________________ b_plasma_toroidal_profile834___ 4.08070086616854955e+00 -Toroidal_field_in_plasma_at_point_835____________________________________ b_plasma_toroidal_profile835___ 4.07847826221094145e+00 -Toroidal_field_in_plasma_at_point_836____________________________________ b_plasma_toroidal_profile836___ 4.07625807807255836e+00 -Toroidal_field_in_plasma_at_point_837____________________________________ b_plasma_toroidal_profile837___ 4.07404030980374809e+00 -Toroidal_field_in_plasma_at_point_838____________________________________ b_plasma_toroidal_profile838___ 4.07182495346345252e+00 -Toroidal_field_in_plasma_at_point_839____________________________________ b_plasma_toroidal_profile839___ 4.06961200511917820e+00 -Toroidal_field_in_plasma_at_point_840____________________________________ b_plasma_toroidal_profile840___ 4.06740146084697951e+00 -Toroidal_field_in_plasma_at_point_841____________________________________ b_plasma_toroidal_profile841___ 4.06519331673142670e+00 -Toroidal_field_in_plasma_at_point_842____________________________________ b_plasma_toroidal_profile842___ 4.06298756886559342e+00 -Toroidal_field_in_plasma_at_point_843____________________________________ b_plasma_toroidal_profile843___ 4.06078421335102391e+00 -Toroidal_field_in_plasma_at_point_844____________________________________ b_plasma_toroidal_profile844___ 4.05858324629771783e+00 -Toroidal_field_in_plasma_at_point_845____________________________________ b_plasma_toroidal_profile845___ 4.05638466382410012e+00 -Toroidal_field_in_plasma_at_point_846____________________________________ b_plasma_toroidal_profile846___ 4.05418846205700589e+00 -Toroidal_field_in_plasma_at_point_847____________________________________ b_plasma_toroidal_profile847___ 4.05199463713164931e+00 -Toroidal_field_in_plasma_at_point_848____________________________________ b_plasma_toroidal_profile848___ 4.04980318519161120e+00 -Toroidal_field_in_plasma_at_point_849____________________________________ b_plasma_toroidal_profile849___ 4.04761410238880437e+00 -Toroidal_field_in_plasma_at_point_850____________________________________ b_plasma_toroidal_profile850___ 4.04542738488346210e+00 -Toroidal_field_in_plasma_at_point_851____________________________________ b_plasma_toroidal_profile851___ 4.04324302884410791e+00 -Toroidal_field_in_plasma_at_point_852____________________________________ b_plasma_toroidal_profile852___ 4.04106103044753873e+00 -Toroidal_field_in_plasma_at_point_853____________________________________ b_plasma_toroidal_profile853___ 4.03888138587879642e+00 -Toroidal_field_in_plasma_at_point_854____________________________________ b_plasma_toroidal_profile854___ 4.03670409133115271e+00 -Toroidal_field_in_plasma_at_point_855____________________________________ b_plasma_toroidal_profile855___ 4.03452914300608256e+00 -Toroidal_field_in_plasma_at_point_856____________________________________ b_plasma_toroidal_profile856___ 4.03235653711324105e+00 -Toroidal_field_in_plasma_at_point_857____________________________________ b_plasma_toroidal_profile857___ 4.03018626987044648e+00 -Toroidal_field_in_plasma_at_point_858____________________________________ b_plasma_toroidal_profile858___ 4.02801833750365201e+00 -Toroidal_field_in_plasma_at_point_859____________________________________ b_plasma_toroidal_profile859___ 4.02585273624692963e+00 -Toroidal_field_in_plasma_at_point_860____________________________________ b_plasma_toroidal_profile860___ 4.02368946234244351e+00 -Toroidal_field_in_plasma_at_point_861____________________________________ b_plasma_toroidal_profile861___ 4.02152851204043493e+00 -Toroidal_field_in_plasma_at_point_862____________________________________ b_plasma_toroidal_profile862___ 4.01936988159918851e+00 -Toroidal_field_in_plasma_at_point_863____________________________________ b_plasma_toroidal_profile863___ 4.01721356728502688e+00 -Toroidal_field_in_plasma_at_point_864____________________________________ b_plasma_toroidal_profile864___ 4.01505956537227249e+00 -Toroidal_field_in_plasma_at_point_865____________________________________ b_plasma_toroidal_profile865___ 4.01290787214324229e+00 -Toroidal_field_in_plasma_at_point_866____________________________________ b_plasma_toroidal_profile866___ 4.01075848388821043e+00 -Toroidal_field_in_plasma_at_point_867____________________________________ b_plasma_toroidal_profile867___ 4.00861139690540114e+00 -Toroidal_field_in_plasma_at_point_868____________________________________ b_plasma_toroidal_profile868___ 4.00646660750095673e+00 -Toroidal_field_in_plasma_at_point_869____________________________________ b_plasma_toroidal_profile869___ 4.00432411198892524e+00 -Toroidal_field_in_plasma_at_point_870____________________________________ b_plasma_toroidal_profile870___ 4.00218390669122837e+00 -Toroidal_field_in_plasma_at_point_871____________________________________ b_plasma_toroidal_profile871___ 4.00004598793765442e+00 -Toroidal_field_in_plasma_at_point_872____________________________________ b_plasma_toroidal_profile872___ 3.99791035206582412e+00 -Toroidal_field_in_plasma_at_point_873____________________________________ b_plasma_toroidal_profile873___ 3.99577699542117859e+00 -Toroidal_field_in_plasma_at_point_874____________________________________ b_plasma_toroidal_profile874___ 3.99364591435695404e+00 -Toroidal_field_in_plasma_at_point_875____________________________________ b_plasma_toroidal_profile875___ 3.99151710523416270e+00 -Toroidal_field_in_plasma_at_point_876____________________________________ b_plasma_toroidal_profile876___ 3.98939056442157103e+00 -Toroidal_field_in_plasma_at_point_877____________________________________ b_plasma_toroidal_profile877___ 3.98726628829568108e+00 -Toroidal_field_in_plasma_at_point_878____________________________________ b_plasma_toroidal_profile878___ 3.98514427324070741e+00 -Toroidal_field_in_plasma_at_point_879____________________________________ b_plasma_toroidal_profile879___ 3.98302451564855797e+00 -Toroidal_field_in_plasma_at_point_880____________________________________ b_plasma_toroidal_profile880___ 3.98090701191881413e+00 -Toroidal_field_in_plasma_at_point_881____________________________________ b_plasma_toroidal_profile881___ 3.97879175845870758e+00 -Toroidal_field_in_plasma_at_point_882____________________________________ b_plasma_toroidal_profile882___ 3.97667875168310658e+00 -Toroidal_field_in_plasma_at_point_883____________________________________ b_plasma_toroidal_profile883___ 3.97456798801448397e+00 -Toroidal_field_in_plasma_at_point_884____________________________________ b_plasma_toroidal_profile884___ 3.97245946388291227e+00 -Toroidal_field_in_plasma_at_point_885____________________________________ b_plasma_toroidal_profile885___ 3.97035317572602775e+00 -Toroidal_field_in_plasma_at_point_886____________________________________ b_plasma_toroidal_profile886___ 3.96824911998902463e+00 -Toroidal_field_in_plasma_at_point_887____________________________________ b_plasma_toroidal_profile887___ 3.96614729312462311e+00 -Toroidal_field_in_plasma_at_point_888____________________________________ b_plasma_toroidal_profile888___ 3.96404769159305959e+00 -Toroidal_field_in_plasma_at_point_889____________________________________ b_plasma_toroidal_profile889___ 3.96195031186205737e+00 -Toroidal_field_in_plasma_at_point_890____________________________________ b_plasma_toroidal_profile890___ 3.95985515040681646e+00 -Toroidal_field_in_plasma_at_point_891____________________________________ b_plasma_toroidal_profile891___ 3.95776220370998333e+00 -Toroidal_field_in_plasma_at_point_892____________________________________ b_plasma_toroidal_profile892___ 3.95567146826164207e+00 -Toroidal_field_in_plasma_at_point_893____________________________________ b_plasma_toroidal_profile893___ 3.95358294055928638e+00 -Toroidal_field_in_plasma_at_point_894____________________________________ b_plasma_toroidal_profile894___ 3.95149661710780409e+00 -Toroidal_field_in_plasma_at_point_895____________________________________ b_plasma_toroidal_profile895___ 3.94941249441945619e+00 -Toroidal_field_in_plasma_at_point_896____________________________________ b_plasma_toroidal_profile896___ 3.94733056901385826e+00 -Toroidal_field_in_plasma_at_point_897____________________________________ b_plasma_toroidal_profile897___ 3.94525083741796045e+00 -Toroidal_field_in_plasma_at_point_898____________________________________ b_plasma_toroidal_profile898___ 3.94317329616602885e+00 -Toroidal_field_in_plasma_at_point_899____________________________________ b_plasma_toroidal_profile899___ 3.94109794179962591e+00 -Toroidal_field_in_plasma_at_point_900____________________________________ b_plasma_toroidal_profile900___ 3.93902477086759006e+00 -Toroidal_field_in_plasma_at_point_901____________________________________ b_plasma_toroidal_profile901___ 3.93695377992601969e+00 -Toroidal_field_in_plasma_at_point_902____________________________________ b_plasma_toroidal_profile902___ 3.93488496553824918e+00 -Toroidal_field_in_plasma_at_point_903____________________________________ b_plasma_toroidal_profile903___ 3.93281832427483691e+00 -Toroidal_field_in_plasma_at_point_904____________________________________ b_plasma_toroidal_profile904___ 3.93075385271353683e+00 -Toroidal_field_in_plasma_at_point_905____________________________________ b_plasma_toroidal_profile905___ 3.92869154743929139e+00 -Toroidal_field_in_plasma_at_point_906____________________________________ b_plasma_toroidal_profile906___ 3.92663140504419950e+00 -Toroidal_field_in_plasma_at_point_907____________________________________ b_plasma_toroidal_profile907___ 3.92457342212751037e+00 -Toroidal_field_in_plasma_at_point_908____________________________________ b_plasma_toroidal_profile908___ 3.92251759529559374e+00 -Toroidal_field_in_plasma_at_point_909____________________________________ b_plasma_toroidal_profile909___ 3.92046392116193188e+00 -Toroidal_field_in_plasma_at_point_910____________________________________ b_plasma_toroidal_profile910___ 3.91841239634708982e+00 -Toroidal_field_in_plasma_at_point_911____________________________________ b_plasma_toroidal_profile911___ 3.91636301747870785e+00 -Toroidal_field_in_plasma_at_point_912____________________________________ b_plasma_toroidal_profile912___ 3.91431578119147350e+00 -Toroidal_field_in_plasma_at_point_913____________________________________ b_plasma_toroidal_profile913___ 3.91227068412710999e+00 -Toroidal_field_in_plasma_at_point_914____________________________________ b_plasma_toroidal_profile914___ 3.91022772293435450e+00 -Toroidal_field_in_plasma_at_point_915____________________________________ b_plasma_toroidal_profile915___ 3.90818689426893995e+00 -Toroidal_field_in_plasma_at_point_916____________________________________ b_plasma_toroidal_profile916___ 3.90614819479357767e+00 -Toroidal_field_in_plasma_at_point_917____________________________________ b_plasma_toroidal_profile917___ 3.90411162117794008e+00 -Toroidal_field_in_plasma_at_point_918____________________________________ b_plasma_toroidal_profile918___ 3.90207717009863941e+00 -Toroidal_field_in_plasma_at_point_919____________________________________ b_plasma_toroidal_profile919___ 3.90004483823921300e+00 -Toroidal_field_in_plasma_at_point_920____________________________________ b_plasma_toroidal_profile920___ 3.89801462229010376e+00 -Toroidal_field_in_plasma_at_point_921____________________________________ b_plasma_toroidal_profile921___ 3.89598651894864156e+00 -Toroidal_field_in_plasma_at_point_922____________________________________ b_plasma_toroidal_profile922___ 3.89396052491902722e+00 -Toroidal_field_in_plasma_at_point_923____________________________________ b_plasma_toroidal_profile923___ 3.89193663691231162e+00 -Toroidal_field_in_plasma_at_point_924____________________________________ b_plasma_toroidal_profile924___ 3.88991485164638418e+00 -Toroidal_field_in_plasma_at_point_925____________________________________ b_plasma_toroidal_profile925___ 3.88789516584594397e+00 -Toroidal_field_in_plasma_at_point_926____________________________________ b_plasma_toroidal_profile926___ 3.88587757624249575e+00 -Toroidal_field_in_plasma_at_point_927____________________________________ b_plasma_toroidal_profile927___ 3.88386207957431973e+00 -Toroidal_field_in_plasma_at_point_928____________________________________ b_plasma_toroidal_profile928___ 3.88184867258646404e+00 -Toroidal_field_in_plasma_at_point_929____________________________________ b_plasma_toroidal_profile929___ 3.87983735203071944e+00 -Toroidal_field_in_plasma_at_point_930____________________________________ b_plasma_toroidal_profile930___ 3.87782811466560817e+00 -Toroidal_field_in_plasma_at_point_931____________________________________ b_plasma_toroidal_profile931___ 3.87582095725636044e+00 -Toroidal_field_in_plasma_at_point_932____________________________________ b_plasma_toroidal_profile932___ 3.87381587657490423e+00 -Toroidal_field_in_plasma_at_point_933____________________________________ b_plasma_toroidal_profile933___ 3.87181286939983904e+00 -Toroidal_field_in_plasma_at_point_934____________________________________ b_plasma_toroidal_profile934___ 3.86981193251642841e+00 -Toroidal_field_in_plasma_at_point_935____________________________________ b_plasma_toroidal_profile935___ 3.86781306271657455e+00 -Toroidal_field_in_plasma_at_point_936____________________________________ b_plasma_toroidal_profile936___ 3.86581625679880680e+00 -Toroidal_field_in_plasma_at_point_937____________________________________ b_plasma_toroidal_profile937___ 3.86382151156826037e+00 -Toroidal_field_in_plasma_at_point_938____________________________________ b_plasma_toroidal_profile938___ 3.86182882383666248e+00 -Toroidal_field_in_plasma_at_point_939____________________________________ b_plasma_toroidal_profile939___ 3.85983819042231380e+00 -Toroidal_field_in_plasma_at_point_940____________________________________ b_plasma_toroidal_profile940___ 3.85784960815007150e+00 -Toroidal_field_in_plasma_at_point_941____________________________________ b_plasma_toroidal_profile941___ 3.85586307385133331e+00 -Toroidal_field_in_plasma_at_point_942____________________________________ b_plasma_toroidal_profile942___ 3.85387858436401887e+00 -Toroidal_field_in_plasma_at_point_943____________________________________ b_plasma_toroidal_profile943___ 3.85189613653255636e+00 -Toroidal_field_in_plasma_at_point_944____________________________________ b_plasma_toroidal_profile944___ 3.84991572720786079e+00 -Toroidal_field_in_plasma_at_point_945____________________________________ b_plasma_toroidal_profile945___ 3.84793735324732245e+00 -Toroidal_field_in_plasma_at_point_946____________________________________ b_plasma_toroidal_profile946___ 3.84596101151478598e+00 -Toroidal_field_in_plasma_at_point_947____________________________________ b_plasma_toroidal_profile947___ 3.84398669888053890e+00 -Toroidal_field_in_plasma_at_point_948____________________________________ b_plasma_toroidal_profile948___ 3.84201441222128670e+00 -Toroidal_field_in_plasma_at_point_949____________________________________ b_plasma_toroidal_profile949___ 3.84004414842014841e+00 -Toroidal_field_in_plasma_at_point_950____________________________________ b_plasma_toroidal_profile950___ 3.83807590436662638e+00 -Toroidal_field_in_plasma_at_point_951____________________________________ b_plasma_toroidal_profile951___ 3.83610967695660321e+00 -Toroidal_field_in_plasma_at_point_952____________________________________ b_plasma_toroidal_profile952___ 3.83414546309231374e+00 -Toroidal_field_in_plasma_at_point_953____________________________________ b_plasma_toroidal_profile953___ 3.83218325968233886e+00 -Toroidal_field_in_plasma_at_point_954____________________________________ b_plasma_toroidal_profile954___ 3.83022306364157972e+00 -Toroidal_field_in_plasma_at_point_955____________________________________ b_plasma_toroidal_profile955___ 3.82826487189125197e+00 -Toroidal_field_in_plasma_at_point_956____________________________________ b_plasma_toroidal_profile956___ 3.82630868135885960e+00 -Toroidal_field_in_plasma_at_point_957____________________________________ b_plasma_toroidal_profile957___ 3.82435448897818642e+00 -Toroidal_field_in_plasma_at_point_958____________________________________ b_plasma_toroidal_profile958___ 3.82240229168927437e+00 -Toroidal_field_in_plasma_at_point_959____________________________________ b_plasma_toroidal_profile959___ 3.82045208643841283e+00 -Toroidal_field_in_plasma_at_point_960____________________________________ b_plasma_toroidal_profile960___ 3.81850387017811777e+00 -Toroidal_field_in_plasma_at_point_961____________________________________ b_plasma_toroidal_profile961___ 3.81655763986711971e+00 -Toroidal_field_in_plasma_at_point_962____________________________________ b_plasma_toroidal_profile962___ 3.81461339247034603e+00 -Toroidal_field_in_plasma_at_point_963____________________________________ b_plasma_toroidal_profile963___ 3.81267112495890492e+00 -Toroidal_field_in_plasma_at_point_964____________________________________ b_plasma_toroidal_profile964___ 3.81073083431007076e+00 -Toroidal_field_in_plasma_at_point_965____________________________________ b_plasma_toroidal_profile965___ 3.80879251750726810e+00 -Toroidal_field_in_plasma_at_point_966____________________________________ b_plasma_toroidal_profile966___ 3.80685617154005573e+00 -Toroidal_field_in_plasma_at_point_967____________________________________ b_plasma_toroidal_profile967___ 3.80492179340410974e+00 -Toroidal_field_in_plasma_at_point_968____________________________________ b_plasma_toroidal_profile968___ 3.80298938010121335e+00 -Toroidal_field_in_plasma_at_point_969____________________________________ b_plasma_toroidal_profile969___ 3.80105892863923245e+00 -Toroidal_field_in_plasma_at_point_970____________________________________ b_plasma_toroidal_profile970___ 3.79913043603211031e+00 -Toroidal_field_in_plasma_at_point_971____________________________________ b_plasma_toroidal_profile971___ 3.79720389929984181e+00 -Toroidal_field_in_plasma_at_point_972____________________________________ b_plasma_toroidal_profile972___ 3.79527931546846897e+00 -Toroidal_field_in_plasma_at_point_973____________________________________ b_plasma_toroidal_profile973___ 3.79335668157005479e+00 -Toroidal_field_in_plasma_at_point_974____________________________________ b_plasma_toroidal_profile974___ 3.79143599464267833e+00 -Toroidal_field_in_plasma_at_point_975____________________________________ b_plasma_toroidal_profile975___ 3.78951725173040899e+00 -Toroidal_field_in_plasma_at_point_976____________________________________ b_plasma_toroidal_profile976___ 3.78760044988330247e+00 -Toroidal_field_in_plasma_at_point_977____________________________________ b_plasma_toroidal_profile977___ 3.78568558615737549e+00 -Toroidal_field_in_plasma_at_point_978____________________________________ b_plasma_toroidal_profile978___ 3.78377265761459780e+00 -Toroidal_field_in_plasma_at_point_979____________________________________ b_plasma_toroidal_profile979___ 3.78186166132287305e+00 -Toroidal_field_in_plasma_at_point_980____________________________________ b_plasma_toroidal_profile980___ 3.77995259435602682e+00 -Toroidal_field_in_plasma_at_point_981____________________________________ b_plasma_toroidal_profile981___ 3.77804545379378842e+00 -Toroidal_field_in_plasma_at_point_982____________________________________ b_plasma_toroidal_profile982___ 3.77614023672177979e+00 -Toroidal_field_in_plasma_at_point_983____________________________________ b_plasma_toroidal_profile983___ 3.77423694023149636e+00 -Toroidal_field_in_plasma_at_point_984____________________________________ b_plasma_toroidal_profile984___ 3.77233556142029691e+00 -Toroidal_field_in_plasma_at_point_985____________________________________ b_plasma_toroidal_profile985___ 3.77043609739138441e+00 -Toroidal_field_in_plasma_at_point_986____________________________________ b_plasma_toroidal_profile986___ 3.76853854525379406e+00 -Toroidal_field_in_plasma_at_point_987____________________________________ b_plasma_toroidal_profile987___ 3.76664290212237907e+00 -Toroidal_field_in_plasma_at_point_988____________________________________ b_plasma_toroidal_profile988___ 3.76474916511779201e+00 -Toroidal_field_in_plasma_at_point_989____________________________________ b_plasma_toroidal_profile989___ 3.76285733136647726e+00 -Toroidal_field_in_plasma_at_point_990____________________________________ b_plasma_toroidal_profile990___ 3.76096739800064706e+00 -Toroidal_field_in_plasma_at_point_991____________________________________ b_plasma_toroidal_profile991___ 3.75907936215827787e+00 -Toroidal_field_in_plasma_at_point_992____________________________________ b_plasma_toroidal_profile992___ 3.75719322098308472e+00 -Toroidal_field_in_plasma_at_point_993____________________________________ b_plasma_toroidal_profile993___ 3.75530897162451849e+00 -Toroidal_field_in_plasma_at_point_994____________________________________ b_plasma_toroidal_profile994___ 3.75342661123773835e+00 -Toroidal_field_in_plasma_at_point_995____________________________________ b_plasma_toroidal_profile995___ 3.75154613698361228e+00 -Toroidal_field_in_plasma_at_point_996____________________________________ b_plasma_toroidal_profile996___ 3.74966754602868724e+00 -Toroidal_field_in_plasma_at_point_997____________________________________ b_plasma_toroidal_profile997___ 3.74779083554519010e+00 -Toroidal_field_in_plasma_at_point_998____________________________________ b_plasma_toroidal_profile998___ 3.74591600271099967e+00 -Toroidal_field_in_plasma_at_point_999____________________________________ b_plasma_toroidal_profile999___ 3.74404304470964444e+00 -Toroidal_field_in_plasma_at_point_1000___________________________________ b_plasma_toroidal_profile1000__ 3.74217195873027908e+00 -Toroidal_field_in_plasma_at_point_1001___________________________________ b_plasma_toroidal_profile1001__ 3.74030274196767687e+00 -Plasma_surface_averaged_poloidal_field_(⟨Bₚₒₗ(a)⟩)_(T)___________________ (b_plasma_surface_poloidal_average)_ 8.73881748751435872e-01 OP -Total_field_(Bₜₒₜ)_(T)___________________________________________________ (b_plasma_total)_______________ 5.06305636089443656e+00 OP +Vertical_field_at_plasma_(Bᵥ)_(T)________________________________________ (b_plasma_vertical_required)___ -7.06103577360314261e-01 OP +Vacuum_toroidal_field_at_R₀_(Bᴛ(R₀))_(T)_________________________________ (b_plasma_toroidal_on_axis)____ 4.97095088538996333e+00 +Toroidal_field_at_plasma_inboard_(Bᴛ(R₀-a))_(T)__________________________ (b_plasma_inboard_toroidal)____ 7.45642632808494543e+00 +Toroidal_field_at_plasma_outboard_(Bᴛ(R₀+a))_(T)_________________________ (b_plasma_outboard_toroidal)___ 3.72821316404247227e+00 +Toroidal_field_in_plasma_at_point_0______________________________________ b_plasma_toroidal_profile0_____ 7.45642632808494543e+00 +Toroidal_field_in_plasma_at_point_1______________________________________ b_plasma_toroidal_profile1_____ 7.44898478484334348e+00 +Toroidal_field_in_plasma_at_point_2______________________________________ b_plasma_toroidal_profile2_____ 7.44155808017251275e+00 +Toroidal_field_in_plasma_at_point_3______________________________________ b_plasma_toroidal_profile3_____ 7.43414616973409359e+00 +Toroidal_field_in_plasma_at_point_4______________________________________ b_plasma_toroidal_profile4_____ 7.42674900936619942e+00 +Toroidal_field_in_plasma_at_point_5______________________________________ b_plasma_toroidal_profile5_____ 7.41936655508253473e+00 +Toroidal_field_in_plasma_at_point_6______________________________________ b_plasma_toroidal_profile6_____ 7.41199876307152916e+00 +Toroidal_field_in_plasma_at_point_7______________________________________ b_plasma_toroidal_profile7_____ 7.40464558969546705e+00 +Toroidal_field_in_plasma_at_point_8______________________________________ b_plasma_toroidal_profile8_____ 7.39730699148962323e+00 +Toroidal_field_in_plasma_at_point_9______________________________________ b_plasma_toroidal_profile9_____ 7.38998292516141664e+00 +Toroidal_field_in_plasma_at_point_10_____________________________________ b_plasma_toroidal_profile10____ 7.38267334758954519e+00 +Toroidal_field_in_plasma_at_point_11_____________________________________ b_plasma_toroidal_profile11____ 7.37537821582315267e+00 +Toroidal_field_in_plasma_at_point_12_____________________________________ b_plasma_toroidal_profile12____ 7.36809748708097789e+00 +Toroidal_field_in_plasma_at_point_13_____________________________________ b_plasma_toroidal_profile13____ 7.36083111875052243e+00 +Toroidal_field_in_plasma_at_point_14_____________________________________ b_plasma_toroidal_profile14____ 7.35357906838722197e+00 +Toroidal_field_in_plasma_at_point_15_____________________________________ b_plasma_toroidal_profile15____ 7.34634129371361233e+00 +Toroidal_field_in_plasma_at_point_16_____________________________________ b_plasma_toroidal_profile16____ 7.33911775261851584e+00 +Toroidal_field_in_plasma_at_point_17_____________________________________ b_plasma_toroidal_profile17____ 7.33190840315621806e+00 +Toroidal_field_in_plasma_at_point_18_____________________________________ b_plasma_toroidal_profile18____ 7.32471320354566213e+00 +Toroidal_field_in_plasma_at_point_19_____________________________________ b_plasma_toroidal_profile19____ 7.31753211216963795e+00 +Toroidal_field_in_plasma_at_point_20_____________________________________ b_plasma_toroidal_profile20____ 7.31036508757397652e+00 +Toroidal_field_in_plasma_at_point_21_____________________________________ b_plasma_toroidal_profile21____ 7.30321208846676218e+00 +Toroidal_field_in_plasma_at_point_22_____________________________________ b_plasma_toroidal_profile22____ 7.29607307371752700e+00 +Toroidal_field_in_plasma_at_point_23_____________________________________ b_plasma_toroidal_profile23____ 7.28894800235647455e+00 +Toroidal_field_in_plasma_at_point_24_____________________________________ b_plasma_toroidal_profile24____ 7.28183683357368849e+00 +Toroidal_field_in_plasma_at_point_25_____________________________________ b_plasma_toroidal_profile25____ 7.27473952671835278e+00 +Toroidal_field_in_plasma_at_point_26_____________________________________ b_plasma_toroidal_profile26____ 7.26765604129798515e+00 +Toroidal_field_in_plasma_at_point_27_____________________________________ b_plasma_toroidal_profile27____ 7.26058633697765554e+00 +Toroidal_field_in_plasma_at_point_28_____________________________________ b_plasma_toroidal_profile28____ 7.25353037357923291e+00 +Toroidal_field_in_plasma_at_point_29_____________________________________ b_plasma_toroidal_profile29____ 7.24648811108061164e+00 +Toroidal_field_in_plasma_at_point_30_____________________________________ b_plasma_toroidal_profile30____ 7.23945950961496631e+00 +Toroidal_field_in_plasma_at_point_31_____________________________________ b_plasma_toroidal_profile31____ 7.23244452946999061e+00 +Toroidal_field_in_plasma_at_point_32_____________________________________ b_plasma_toroidal_profile32____ 7.22544313108715386e+00 +Toroidal_field_in_plasma_at_point_33_____________________________________ b_plasma_toroidal_profile33____ 7.21845527506095852e+00 +Toroidal_field_in_plasma_at_point_34_____________________________________ b_plasma_toroidal_profile34____ 7.21148092213819325e+00 +Toroidal_field_in_plasma_at_point_35_____________________________________ b_plasma_toroidal_profile35____ 7.20452003321720991e+00 +Toroidal_field_in_plasma_at_point_36_____________________________________ b_plasma_toroidal_profile36____ 7.19757256934718459e+00 +Toroidal_field_in_plasma_at_point_37_____________________________________ b_plasma_toroidal_profile37____ 7.19063849172738934e+00 +Toroidal_field_in_plasma_at_point_38_____________________________________ b_plasma_toroidal_profile38____ 7.18371776170647802e+00 +Toroidal_field_in_plasma_at_point_39_____________________________________ b_plasma_toroidal_profile39____ 7.17681034078175983e+00 +Toroidal_field_in_plasma_at_point_40_____________________________________ b_plasma_toroidal_profile40____ 7.16991619059849139e+00 +Toroidal_field_in_plasma_at_point_41_____________________________________ b_plasma_toroidal_profile41____ 7.16303527294916531e+00 +Toroidal_field_in_plasma_at_point_42_____________________________________ b_plasma_toroidal_profile42____ 7.15616754977279967e+00 +Toroidal_field_in_plasma_at_point_43_____________________________________ b_plasma_toroidal_profile43____ 7.14931298315424346e+00 +Toroidal_field_in_plasma_at_point_44_____________________________________ b_plasma_toroidal_profile44____ 7.14247153532347401e+00 +Toroidal_field_in_plasma_at_point_45_____________________________________ b_plasma_toroidal_profile45____ 7.13564316865490422e+00 +Toroidal_field_in_plasma_at_point_46_____________________________________ b_plasma_toroidal_profile46____ 7.12882784566669603e+00 +Toroidal_field_in_plasma_at_point_47_____________________________________ b_plasma_toroidal_profile47____ 7.12202552902006669e+00 +Toroidal_field_in_plasma_at_point_48_____________________________________ b_plasma_toroidal_profile48____ 7.11523618151861825e+00 +Toroidal_field_in_plasma_at_point_49_____________________________________ b_plasma_toroidal_profile49____ 7.10845976610764740e+00 +Toroidal_field_in_plasma_at_point_50_____________________________________ b_plasma_toroidal_profile50____ 7.10169624587348292e+00 +Toroidal_field_in_plasma_at_point_51_____________________________________ b_plasma_toroidal_profile51____ 7.09494558404280440e+00 +Toroidal_field_in_plasma_at_point_52_____________________________________ b_plasma_toroidal_profile52____ 7.08820774398198417e+00 +Toroidal_field_in_plasma_at_point_53_____________________________________ b_plasma_toroidal_profile53____ 7.08148268919642376e+00 +Toroidal_field_in_plasma_at_point_54_____________________________________ b_plasma_toroidal_profile54____ 7.07477038332988606e+00 +Toroidal_field_in_plasma_at_point_55_____________________________________ b_plasma_toroidal_profile55____ 7.06807079016385487e+00 +Toroidal_field_in_plasma_at_point_56_____________________________________ b_plasma_toroidal_profile56____ 7.06138387361686881e+00 +Toroidal_field_in_plasma_at_point_57_____________________________________ b_plasma_toroidal_profile57____ 7.05470959774388451e+00 +Toroidal_field_in_plasma_at_point_58_____________________________________ b_plasma_toroidal_profile58____ 7.04804792673562819e+00 +Toroidal_field_in_plasma_at_point_59_____________________________________ b_plasma_toroidal_profile59____ 7.04139882491795266e+00 +Toroidal_field_in_plasma_at_point_60_____________________________________ b_plasma_toroidal_profile60____ 7.03476225675120670e+00 +Toroidal_field_in_plasma_at_point_61_____________________________________ b_plasma_toroidal_profile61____ 7.02813818682959557e+00 +Toroidal_field_in_plasma_at_point_62_____________________________________ b_plasma_toroidal_profile62____ 7.02152657988055573e+00 +Toroidal_field_in_plasma_at_point_63_____________________________________ b_plasma_toroidal_profile63____ 7.01492740076412602e+00 +Toroidal_field_in_plasma_at_point_64_____________________________________ b_plasma_toroidal_profile64____ 7.00834061447232859e+00 +Toroidal_field_in_plasma_at_point_65_____________________________________ b_plasma_toroidal_profile65____ 7.00176618612854629e+00 +Toroidal_field_in_plasma_at_point_66_____________________________________ b_plasma_toroidal_profile66____ 6.99520408098690716e+00 +Toroidal_field_in_plasma_at_point_67_____________________________________ b_plasma_toroidal_profile67____ 6.98865426443167692e+00 +Toroidal_field_in_plasma_at_point_68_____________________________________ b_plasma_toroidal_profile68____ 6.98211670197664169e+00 +Toroidal_field_in_plasma_at_point_69_____________________________________ b_plasma_toroidal_profile69____ 6.97559135926451379e+00 +Toroidal_field_in_plasma_at_point_70_____________________________________ b_plasma_toroidal_profile70____ 6.96907820206632156e+00 +Toroidal_field_in_plasma_at_point_71_____________________________________ b_plasma_toroidal_profile71____ 6.96257719628081162e+00 +Toroidal_field_in_plasma_at_point_72_____________________________________ b_plasma_toroidal_profile72____ 6.95608830793385913e+00 +Toroidal_field_in_plasma_at_point_73_____________________________________ b_plasma_toroidal_profile73____ 6.94961150317786824e+00 +Toroidal_field_in_plasma_at_point_74_____________________________________ b_plasma_toroidal_profile74____ 6.94314674829119038e+00 +Toroidal_field_in_plasma_at_point_75_____________________________________ b_plasma_toroidal_profile75____ 6.93669400967753713e+00 +Toroidal_field_in_plasma_at_point_76_____________________________________ b_plasma_toroidal_profile76____ 6.93025325386539404e+00 +Toroidal_field_in_plasma_at_point_77_____________________________________ b_plasma_toroidal_profile77____ 6.92382444750744952e+00 +Toroidal_field_in_plasma_at_point_78_____________________________________ b_plasma_toroidal_profile78____ 6.91740755738000956e+00 +Toroidal_field_in_plasma_at_point_79_____________________________________ b_plasma_toroidal_profile79____ 6.91100255038243461e+00 +Toroidal_field_in_plasma_at_point_80_____________________________________ b_plasma_toroidal_profile80____ 6.90460939353656844e+00 +Toroidal_field_in_plasma_at_point_81_____________________________________ b_plasma_toroidal_profile81____ 6.89822805398616445e+00 +Toroidal_field_in_plasma_at_point_82_____________________________________ b_plasma_toroidal_profile82____ 6.89185849899633496e+00 +Toroidal_field_in_plasma_at_point_83_____________________________________ b_plasma_toroidal_profile83____ 6.88550069595298009e+00 +Toroidal_field_in_plasma_at_point_84_____________________________________ b_plasma_toroidal_profile84____ 6.87915461236223980e+00 +Toroidal_field_in_plasma_at_point_85_____________________________________ b_plasma_toroidal_profile85____ 6.87282021584993608e+00 +Toroidal_field_in_plasma_at_point_86_____________________________________ b_plasma_toroidal_profile86____ 6.86649747416102052e+00 +Toroidal_field_in_plasma_at_point_87_____________________________________ b_plasma_toroidal_profile87____ 6.86018635515903519e+00 +Toroidal_field_in_plasma_at_point_88_____________________________________ b_plasma_toroidal_profile88____ 6.85388682682555572e+00 +Toroidal_field_in_plasma_at_point_89_____________________________________ b_plasma_toroidal_profile89____ 6.84759885725966111e+00 +Toroidal_field_in_plasma_at_point_90_____________________________________ b_plasma_toroidal_profile90____ 6.84132241467738744e+00 +Toroidal_field_in_plasma_at_point_91_____________________________________ b_plasma_toroidal_profile91____ 6.83505746741119946e+00 +Toroidal_field_in_plasma_at_point_92_____________________________________ b_plasma_toroidal_profile92____ 6.82880398390945142e+00 +Toroidal_field_in_plasma_at_point_93_____________________________________ b_plasma_toroidal_profile93____ 6.82256193273585865e+00 +Toroidal_field_in_plasma_at_point_94_____________________________________ b_plasma_toroidal_profile94____ 6.81633128256897791e+00 +Toroidal_field_in_plasma_at_point_95_____________________________________ b_plasma_toroidal_profile95____ 6.81011200220167012e+00 +Toroidal_field_in_plasma_at_point_96_____________________________________ b_plasma_toroidal_profile96____ 6.80390406054059316e+00 +Toroidal_field_in_plasma_at_point_97_____________________________________ b_plasma_toroidal_profile97____ 6.79770742660567429e+00 +Toroidal_field_in_plasma_at_point_98_____________________________________ b_plasma_toroidal_profile98____ 6.79152206952959947e+00 +Toroidal_field_in_plasma_at_point_99_____________________________________ b_plasma_toroidal_profile99____ 6.78534795855730000e+00 +Toroidal_field_in_plasma_at_point_100____________________________________ b_plasma_toroidal_profile100___ 6.77918506304544000e+00 +Toroidal_field_in_plasma_at_point_101____________________________________ b_plasma_toroidal_profile101___ 6.77303335246191551e+00 +Toroidal_field_in_plasma_at_point_102____________________________________ b_plasma_toroidal_profile102___ 6.76689279638534025e+00 +Toroidal_field_in_plasma_at_point_103____________________________________ b_plasma_toroidal_profile103___ 6.76076336450455617e+00 +Toroidal_field_in_plasma_at_point_104____________________________________ b_plasma_toroidal_profile104___ 6.75464502661812727e+00 +Toroidal_field_in_plasma_at_point_105____________________________________ b_plasma_toroidal_profile105___ 6.74853775263384215e+00 +Toroidal_field_in_plasma_at_point_106____________________________________ b_plasma_toroidal_profile106___ 6.74244151256822999e+00 +Toroidal_field_in_plasma_at_point_107____________________________________ b_plasma_toroidal_profile107___ 6.73635627654605607e+00 +Toroidal_field_in_plasma_at_point_108____________________________________ b_plasma_toroidal_profile108___ 6.73028201479984656e+00 +Toroidal_field_in_plasma_at_point_109____________________________________ b_plasma_toroidal_profile109___ 6.72421869766939651e+00 +Toroidal_field_in_plasma_at_point_110____________________________________ b_plasma_toroidal_profile110___ 6.71816629560128664e+00 +Toroidal_field_in_plasma_at_point_111____________________________________ b_plasma_toroidal_profile111___ 6.71212477914840822e+00 +Toroidal_field_in_plasma_at_point_112____________________________________ b_plasma_toroidal_profile112___ 6.70609411896947893e+00 +Toroidal_field_in_plasma_at_point_113____________________________________ b_plasma_toroidal_profile113___ 6.70007428582857223e+00 +Toroidal_field_in_plasma_at_point_114____________________________________ b_plasma_toroidal_profile114___ 6.69406525059464563e+00 +Toroidal_field_in_plasma_at_point_115____________________________________ b_plasma_toroidal_profile115___ 6.68806698424106560e+00 +Toroidal_field_in_plasma_at_point_116____________________________________ b_plasma_toroidal_profile116___ 6.68207945784514834e+00 +Toroidal_field_in_plasma_at_point_117____________________________________ b_plasma_toroidal_profile117___ 6.67610264258768282e+00 +Toroidal_field_in_plasma_at_point_118____________________________________ b_plasma_toroidal_profile118___ 6.67013650975248407e+00 +Toroidal_field_in_plasma_at_point_119____________________________________ b_plasma_toroidal_profile119___ 6.66418103072591972e+00 +Toroidal_field_in_plasma_at_point_120____________________________________ b_plasma_toroidal_profile120___ 6.65823617699645798e+00 +Toroidal_field_in_plasma_at_point_121____________________________________ b_plasma_toroidal_profile121___ 6.65230192015421551e+00 +Toroidal_field_in_plasma_at_point_122____________________________________ b_plasma_toroidal_profile122___ 6.64637823189049826e+00 +Toroidal_field_in_plasma_at_point_123____________________________________ b_plasma_toroidal_profile123___ 6.64046508399735824e+00 +Toroidal_field_in_plasma_at_point_124____________________________________ b_plasma_toroidal_profile124___ 6.63456244836713793e+00 +Toroidal_field_in_plasma_at_point_125____________________________________ b_plasma_toroidal_profile125___ 6.62867029699203325e+00 +Toroidal_field_in_plasma_at_point_126____________________________________ b_plasma_toroidal_profile126___ 6.62278860196364683e+00 +Toroidal_field_in_plasma_at_point_127____________________________________ b_plasma_toroidal_profile127___ 6.61691733547254390e+00 +Toroidal_field_in_plasma_at_point_128____________________________________ b_plasma_toroidal_profile128___ 6.61105646980782158e+00 +Toroidal_field_in_plasma_at_point_129____________________________________ b_plasma_toroidal_profile129___ 6.60520597735666382e+00 +Toroidal_field_in_plasma_at_point_130____________________________________ b_plasma_toroidal_profile130___ 6.59936583060391779e+00 +Toroidal_field_in_plasma_at_point_131____________________________________ b_plasma_toroidal_profile131___ 6.59353600213165247e+00 +Toroidal_field_in_plasma_at_point_132____________________________________ b_plasma_toroidal_profile132___ 6.58771646461873761e+00 +Toroidal_field_in_plasma_at_point_133____________________________________ b_plasma_toroidal_profile133___ 6.58190719084041476e+00 +Toroidal_field_in_plasma_at_point_134____________________________________ b_plasma_toroidal_profile134___ 6.57610815366786738e+00 +Toroidal_field_in_plasma_at_point_135____________________________________ b_plasma_toroidal_profile135___ 6.57031932606780877e+00 +Toroidal_field_in_plasma_at_point_136____________________________________ b_plasma_toroidal_profile136___ 6.56454068110204947e+00 +Toroidal_field_in_plasma_at_point_137____________________________________ b_plasma_toroidal_profile137___ 6.55877219192709138e+00 +Toroidal_field_in_plasma_at_point_138____________________________________ b_plasma_toroidal_profile138___ 6.55301383179370500e+00 +Toroidal_field_in_plasma_at_point_139____________________________________ b_plasma_toroidal_profile139___ 6.54726557404651732e+00 +Toroidal_field_in_plasma_at_point_140____________________________________ b_plasma_toroidal_profile140___ 6.54152739212360235e+00 +Toroidal_field_in_plasma_at_point_141____________________________________ b_plasma_toroidal_profile141___ 6.53579925955606811e+00 +Toroidal_field_in_plasma_at_point_142____________________________________ b_plasma_toroidal_profile142___ 6.53008114996765521e+00 +Toroidal_field_in_plasma_at_point_143____________________________________ b_plasma_toroidal_profile143___ 6.52437303707432736e+00 +Toroidal_field_in_plasma_at_point_144____________________________________ b_plasma_toroidal_profile144___ 6.51867489468386907e+00 +Toroidal_field_in_plasma_at_point_145____________________________________ b_plasma_toroidal_profile145___ 6.51298669669548858e+00 +Toroidal_field_in_plasma_at_point_146____________________________________ b_plasma_toroidal_profile146___ 6.50730841709941554e+00 +Toroidal_field_in_plasma_at_point_147____________________________________ b_plasma_toroidal_profile147___ 6.50164002997650670e+00 +Toroidal_field_in_plasma_at_point_148____________________________________ b_plasma_toroidal_profile148___ 6.49598150949785058e+00 +Toroidal_field_in_plasma_at_point_149____________________________________ b_plasma_toroidal_profile149___ 6.49033282992437321e+00 +Toroidal_field_in_plasma_at_point_150____________________________________ b_plasma_toroidal_profile150___ 6.48469396560645528e+00 +Toroidal_field_in_plasma_at_point_151____________________________________ b_plasma_toroidal_profile151___ 6.47906489098353244e+00 +Toroidal_field_in_plasma_at_point_152____________________________________ b_plasma_toroidal_profile152___ 6.47344558058372055e+00 +Toroidal_field_in_plasma_at_point_153____________________________________ b_plasma_toroidal_profile153___ 6.46783600902342304e+00 +Toroidal_field_in_plasma_at_point_154____________________________________ b_plasma_toroidal_profile154___ 6.46223615100695170e+00 +Toroidal_field_in_plasma_at_point_155____________________________________ b_plasma_toroidal_profile155___ 6.45664598132615097e+00 +Toroidal_field_in_plasma_at_point_156____________________________________ b_plasma_toroidal_profile156___ 6.45106547486000803e+00 +Toroidal_field_in_plasma_at_point_157____________________________________ b_plasma_toroidal_profile157___ 6.44549460657429130e+00 +Toroidal_field_in_plasma_at_point_158____________________________________ b_plasma_toroidal_profile158___ 6.43993335152116497e+00 +Toroidal_field_in_plasma_at_point_159____________________________________ b_plasma_toroidal_profile159___ 6.43438168483881867e+00 +Toroidal_field_in_plasma_at_point_160____________________________________ b_plasma_toroidal_profile160___ 6.42883958175110237e+00 +Toroidal_field_in_plasma_at_point_161____________________________________ b_plasma_toroidal_profile161___ 6.42330701756715161e+00 +Toroidal_field_in_plasma_at_point_162____________________________________ b_plasma_toroidal_profile162___ 6.41778396768102333e+00 +Toroidal_field_in_plasma_at_point_163____________________________________ b_plasma_toroidal_profile163___ 6.41227040757133171e+00 +Toroidal_field_in_plasma_at_point_164____________________________________ b_plasma_toroidal_profile164___ 6.40676631280088404e+00 +Toroidal_field_in_plasma_at_point_165____________________________________ b_plasma_toroidal_profile165___ 6.40127165901632100e+00 +Toroidal_field_in_plasma_at_point_166____________________________________ b_plasma_toroidal_profile166___ 6.39578642194775426e+00 +Toroidal_field_in_plasma_at_point_167____________________________________ b_plasma_toroidal_profile167___ 6.39031057740841657e+00 +Toroidal_field_in_plasma_at_point_168____________________________________ b_plasma_toroidal_profile168___ 6.38484410129429403e+00 +Toroidal_field_in_plasma_at_point_169____________________________________ b_plasma_toroidal_profile169___ 6.37938696958378682e+00 +Toroidal_field_in_plasma_at_point_170____________________________________ b_plasma_toroidal_profile170___ 6.37393915833734415e+00 +Toroidal_field_in_plasma_at_point_171____________________________________ b_plasma_toroidal_profile171___ 6.36850064369712410e+00 +Toroidal_field_in_plasma_at_point_172____________________________________ b_plasma_toroidal_profile172___ 6.36307140188664100e+00 +Toroidal_field_in_plasma_at_point_173____________________________________ b_plasma_toroidal_profile173___ 6.35765140921041727e+00 +Toroidal_field_in_plasma_at_point_174____________________________________ b_plasma_toroidal_profile174___ 6.35224064205364325e+00 +Toroidal_field_in_plasma_at_point_175____________________________________ b_plasma_toroidal_profile175___ 6.34683907688182813e+00 +Toroidal_field_in_plasma_at_point_176____________________________________ b_plasma_toroidal_profile176___ 6.34144669024046692e+00 +Toroidal_field_in_plasma_at_point_177____________________________________ b_plasma_toroidal_profile177___ 6.33606345875469490e+00 +Toroidal_field_in_plasma_at_point_178____________________________________ b_plasma_toroidal_profile178___ 6.33068935912894837e+00 +Toroidal_field_in_plasma_at_point_179____________________________________ b_plasma_toroidal_profile179___ 6.32532436814663601e+00 +Toroidal_field_in_plasma_at_point_180____________________________________ b_plasma_toroidal_profile180___ 6.31996846266979695e+00 +Toroidal_field_in_plasma_at_point_181____________________________________ b_plasma_toroidal_profile181___ 6.31462161963877300e+00 +Toroidal_field_in_plasma_at_point_182____________________________________ b_plasma_toroidal_profile182___ 6.30928381607187649e+00 +Toroidal_field_in_plasma_at_point_183____________________________________ b_plasma_toroidal_profile183___ 6.30395502906505900e+00 +Toroidal_field_in_plasma_at_point_184____________________________________ b_plasma_toroidal_profile184___ 6.29863523579158624e+00 +Toroidal_field_in_plasma_at_point_185____________________________________ b_plasma_toroidal_profile185___ 6.29332441350171123e+00 +Toroidal_field_in_plasma_at_point_186____________________________________ b_plasma_toroidal_profile186___ 6.28802253952235013e+00 +Toroidal_field_in_plasma_at_point_187____________________________________ b_plasma_toroidal_profile187___ 6.28272959125675889e+00 +Toroidal_field_in_plasma_at_point_188____________________________________ b_plasma_toroidal_profile188___ 6.27744554618421358e+00 +Toroidal_field_in_plasma_at_point_189____________________________________ b_plasma_toroidal_profile189___ 6.27217038185968878e+00 +Toroidal_field_in_plasma_at_point_190____________________________________ b_plasma_toroidal_profile190___ 6.26690407591354326e+00 +Toroidal_field_in_plasma_at_point_191____________________________________ b_plasma_toroidal_profile191___ 6.26164660605119927e+00 +Toroidal_field_in_plasma_at_point_192____________________________________ b_plasma_toroidal_profile192___ 6.25639795005283350e+00 +Toroidal_field_in_plasma_at_point_193____________________________________ b_plasma_toroidal_profile193___ 6.25115808577305643e+00 +Toroidal_field_in_plasma_at_point_194____________________________________ b_plasma_toroidal_profile194___ 6.24592699114061123e+00 +Toroidal_field_in_plasma_at_point_195____________________________________ b_plasma_toroidal_profile195___ 6.24070464415805137e+00 +Toroidal_field_in_plasma_at_point_196____________________________________ b_plasma_toroidal_profile196___ 6.23549102290144486e+00 +Toroidal_field_in_plasma_at_point_197____________________________________ b_plasma_toroidal_profile197___ 6.23028610552005802e+00 +Toroidal_field_in_plasma_at_point_198____________________________________ b_plasma_toroidal_profile198___ 6.22508987023605531e+00 +Toroidal_field_in_plasma_at_point_199____________________________________ b_plasma_toroidal_profile199___ 6.21990229534419203e+00 +Toroidal_field_in_plasma_at_point_200____________________________________ b_plasma_toroidal_profile200___ 6.21472335921151497e+00 +Toroidal_field_in_plasma_at_point_201____________________________________ b_plasma_toroidal_profile201___ 6.20955304027706312e+00 +Toroidal_field_in_plasma_at_point_202____________________________________ b_plasma_toroidal_profile202___ 6.20439131705156299e+00 +Toroidal_field_in_plasma_at_point_203____________________________________ b_plasma_toroidal_profile203___ 6.19923816811713468e+00 +Toroidal_field_in_plasma_at_point_204____________________________________ b_plasma_toroidal_profile204___ 6.19409357212699607e+00 +Toroidal_field_in_plasma_at_point_205____________________________________ b_plasma_toroidal_profile205___ 6.18895750780516529e+00 +Toroidal_field_in_plasma_at_point_206____________________________________ b_plasma_toroidal_profile206___ 6.18382995394617208e+00 +Toroidal_field_in_plasma_at_point_207____________________________________ b_plasma_toroidal_profile207___ 6.17871088941475932e+00 +Toroidal_field_in_plasma_at_point_208____________________________________ b_plasma_toroidal_profile208___ 6.17360029314559977e+00 +Toroidal_field_in_plasma_at_point_209____________________________________ b_plasma_toroidal_profile209___ 6.16849814414300024e+00 +Toroidal_field_in_plasma_at_point_210____________________________________ b_plasma_toroidal_profile210___ 6.16340442148061918e+00 +Toroidal_field_in_plasma_at_point_211____________________________________ b_plasma_toroidal_profile211___ 6.15831910430117979e+00 +Toroidal_field_in_plasma_at_point_212____________________________________ b_plasma_toroidal_profile212___ 6.15324217181618227e+00 +Toroidal_field_in_plasma_at_point_213____________________________________ b_plasma_toroidal_profile213___ 6.14817360330562579e+00 +Toroidal_field_in_plasma_at_point_214____________________________________ b_plasma_toroidal_profile214___ 6.14311337811771985e+00 +Toroidal_field_in_plasma_at_point_215____________________________________ b_plasma_toroidal_profile215___ 6.13806147566860982e+00 +Toroidal_field_in_plasma_at_point_216____________________________________ b_plasma_toroidal_profile216___ 6.13301787544209542e+00 +Toroidal_field_in_plasma_at_point_217____________________________________ b_plasma_toroidal_profile217___ 6.12798255698935090e+00 +Toroidal_field_in_plasma_at_point_218____________________________________ b_plasma_toroidal_profile218___ 6.12295549992865507e+00 +Toroidal_field_in_plasma_at_point_219____________________________________ b_plasma_toroidal_profile219___ 6.11793668394510615e+00 +Toroidal_field_in_plasma_at_point_220____________________________________ b_plasma_toroidal_profile220___ 6.11292608879035981e+00 +Toroidal_field_in_plasma_at_point_221____________________________________ b_plasma_toroidal_profile221___ 6.10792369428234849e+00 +Toroidal_field_in_plasma_at_point_222____________________________________ b_plasma_toroidal_profile222___ 6.10292948030501226e+00 +Toroidal_field_in_plasma_at_point_223____________________________________ b_plasma_toroidal_profile223___ 6.09794342680803148e+00 +Toroidal_field_in_plasma_at_point_224____________________________________ b_plasma_toroidal_profile224___ 6.09296551380655504e+00 +Toroidal_field_in_plasma_at_point_225____________________________________ b_plasma_toroidal_profile225___ 6.08799572138093747e+00 +Toroidal_field_in_plasma_at_point_226____________________________________ b_plasma_toroidal_profile226___ 6.08303402967647067e+00 +Toroidal_field_in_plasma_at_point_227____________________________________ b_plasma_toroidal_profile227___ 6.07808041890311834e+00 +Toroidal_field_in_plasma_at_point_228____________________________________ b_plasma_toroidal_profile228___ 6.07313486933525670e+00 +Toroidal_field_in_plasma_at_point_229____________________________________ b_plasma_toroidal_profile229___ 6.06819736131140619e+00 +Toroidal_field_in_plasma_at_point_230____________________________________ b_plasma_toroidal_profile230___ 6.06326787523398014e+00 +Toroidal_field_in_plasma_at_point_231____________________________________ b_plasma_toroidal_profile231___ 6.05834639156901744e+00 +Toroidal_field_in_plasma_at_point_232____________________________________ b_plasma_toroidal_profile232___ 6.05343289084592850e+00 +Toroidal_field_in_plasma_at_point_233____________________________________ b_plasma_toroidal_profile233___ 6.04852735365723682e+00 +Toroidal_field_in_plasma_at_point_234____________________________________ b_plasma_toroidal_profile234___ 6.04362976065832314e+00 +Toroidal_field_in_plasma_at_point_235____________________________________ b_plasma_toroidal_profile235___ 6.03874009256717592e+00 +Toroidal_field_in_plasma_at_point_236____________________________________ b_plasma_toroidal_profile236___ 6.03385833016413109e+00 +Toroidal_field_in_plasma_at_point_237____________________________________ b_plasma_toroidal_profile237___ 6.02898445429162422e+00 +Toroidal_field_in_plasma_at_point_238____________________________________ b_plasma_toroidal_profile238___ 6.02411844585393830e+00 +Toroidal_field_in_plasma_at_point_239____________________________________ b_plasma_toroidal_profile239___ 6.01926028581695949e+00 +Toroidal_field_in_plasma_at_point_240____________________________________ b_plasma_toroidal_profile240___ 6.01440995520792132e+00 +Toroidal_field_in_plasma_at_point_241____________________________________ b_plasma_toroidal_profile241___ 6.00956743511516045e+00 +Toroidal_field_in_plasma_at_point_242____________________________________ b_plasma_toroidal_profile242___ 6.00473270668787595e+00 +Toroidal_field_in_plasma_at_point_243____________________________________ b_plasma_toroidal_profile243___ 5.99990575113587621e+00 +Toroidal_field_in_plasma_at_point_244____________________________________ b_plasma_toroidal_profile244___ 5.99508654972934085e+00 +Toroidal_field_in_plasma_at_point_245____________________________________ b_plasma_toroidal_profile245___ 5.99027508379857920e+00 +Toroidal_field_in_plasma_at_point_246____________________________________ b_plasma_toroidal_profile246___ 5.98547133473378512e+00 +Toroidal_field_in_plasma_at_point_247____________________________________ b_plasma_toroidal_profile247___ 5.98067528398479986e+00 +Toroidal_field_in_plasma_at_point_248____________________________________ b_plasma_toroidal_profile248___ 5.97588691306087227e+00 +Toroidal_field_in_plasma_at_point_249____________________________________ b_plasma_toroidal_profile249___ 5.97110620353042343e+00 +Toroidal_field_in_plasma_at_point_250____________________________________ b_plasma_toroidal_profile250___ 5.96633313702080770e+00 +Toroidal_field_in_plasma_at_point_251____________________________________ b_plasma_toroidal_profile251___ 5.96156769521807473e+00 +Toroidal_field_in_plasma_at_point_252____________________________________ b_plasma_toroidal_profile252___ 5.95680985986674383e+00 +Toroidal_field_in_plasma_at_point_253____________________________________ b_plasma_toroidal_profile253___ 5.95205961276956153e+00 +Toroidal_field_in_plasma_at_point_254____________________________________ b_plasma_toroidal_profile254___ 5.94731693578727416e+00 +Toroidal_field_in_plasma_at_point_255____________________________________ b_plasma_toroidal_profile255___ 5.94258181083839965e+00 +Toroidal_field_in_plasma_at_point_256____________________________________ b_plasma_toroidal_profile256___ 5.93785421989898943e+00 +Toroidal_field_in_plasma_at_point_257____________________________________ b_plasma_toroidal_profile257___ 5.93313414500240821e+00 +Toroidal_field_in_plasma_at_point_258____________________________________ b_plasma_toroidal_profile258___ 5.92842156823910216e+00 +Toroidal_field_in_plasma_at_point_259____________________________________ b_plasma_toroidal_profile259___ 5.92371647175637239e+00 +Toroidal_field_in_plasma_at_point_260____________________________________ b_plasma_toroidal_profile260___ 5.91901883775815207e+00 +Toroidal_field_in_plasma_at_point_261____________________________________ b_plasma_toroidal_profile261___ 5.91432864850477724e+00 +Toroidal_field_in_plasma_at_point_262____________________________________ b_plasma_toroidal_profile262___ 5.90964588631277099e+00 +Toroidal_field_in_plasma_at_point_263____________________________________ b_plasma_toroidal_profile263___ 5.90497053355461166e+00 +Toroidal_field_in_plasma_at_point_264____________________________________ b_plasma_toroidal_profile264___ 5.90030257265852143e+00 +Toroidal_field_in_plasma_at_point_265____________________________________ b_plasma_toroidal_profile265___ 5.89564198610823809e+00 +Toroidal_field_in_plasma_at_point_266____________________________________ b_plasma_toroidal_profile266___ 5.89098875644280096e+00 +Toroidal_field_in_plasma_at_point_267____________________________________ b_plasma_toroidal_profile267___ 5.88634286625633241e+00 +Toroidal_field_in_plasma_at_point_268____________________________________ b_plasma_toroidal_profile268___ 5.88170429819781670e+00 +Toroidal_field_in_plasma_at_point_269____________________________________ b_plasma_toroidal_profile269___ 5.87707303497088862e+00 +Toroidal_field_in_plasma_at_point_270____________________________________ b_plasma_toroidal_profile270___ 5.87244905933361938e+00 +Toroidal_field_in_plasma_at_point_271____________________________________ b_plasma_toroidal_profile271___ 5.86783235409829462e+00 +Toroidal_field_in_plasma_at_point_272____________________________________ b_plasma_toroidal_profile272___ 5.86322290213120922e+00 +Toroidal_field_in_plasma_at_point_273____________________________________ b_plasma_toroidal_profile273___ 5.85862068635245681e+00 +Toroidal_field_in_plasma_at_point_274____________________________________ b_plasma_toroidal_profile274___ 5.85402568973570947e+00 +Toroidal_field_in_plasma_at_point_275____________________________________ b_plasma_toroidal_profile275___ 5.84943789530801705e+00 +Toroidal_field_in_plasma_at_point_276____________________________________ b_plasma_toroidal_profile276___ 5.84485728614959310e+00 +Toroidal_field_in_plasma_at_point_277____________________________________ b_plasma_toroidal_profile277___ 5.84028384539360701e+00 +Toroidal_field_in_plasma_at_point_278____________________________________ b_plasma_toroidal_profile278___ 5.83571755622598065e+00 +Toroidal_field_in_plasma_at_point_279____________________________________ b_plasma_toroidal_profile279___ 5.83115840188517964e+00 +Toroidal_field_in_plasma_at_point_280____________________________________ b_plasma_toroidal_profile280___ 5.82660636566200552e+00 +Toroidal_field_in_plasma_at_point_281____________________________________ b_plasma_toroidal_profile281___ 5.82206143089939943e+00 +Toroidal_field_in_plasma_at_point_282____________________________________ b_plasma_toroidal_profile282___ 5.81752358099222899e+00 +Toroidal_field_in_plasma_at_point_283____________________________________ b_plasma_toroidal_profile283___ 5.81299279938709468e+00 +Toroidal_field_in_plasma_at_point_284____________________________________ b_plasma_toroidal_profile284___ 5.80846906958212461e+00 +Toroidal_field_in_plasma_at_point_285____________________________________ b_plasma_toroidal_profile285___ 5.80395237512677298e+00 +Toroidal_field_in_plasma_at_point_286____________________________________ b_plasma_toroidal_profile286___ 5.79944269962162373e+00 +Toroidal_field_in_plasma_at_point_287____________________________________ b_plasma_toroidal_profile287___ 5.79494002671819075e+00 +Toroidal_field_in_plasma_at_point_288____________________________________ b_plasma_toroidal_profile288___ 5.79044434011871978e+00 +Toroidal_field_in_plasma_at_point_289____________________________________ b_plasma_toroidal_profile289___ 5.78595562357599213e+00 +Toroidal_field_in_plasma_at_point_290____________________________________ b_plasma_toroidal_profile290___ 5.78147386089312931e+00 +Toroidal_field_in_plasma_at_point_291____________________________________ b_plasma_toroidal_profile291___ 5.77699903592339759e+00 +Toroidal_field_in_plasma_at_point_292____________________________________ b_plasma_toroidal_profile292___ 5.77253113257001527e+00 +Toroidal_field_in_plasma_at_point_293____________________________________ b_plasma_toroidal_profile293___ 5.76807013478595731e+00 +Toroidal_field_in_plasma_at_point_294____________________________________ b_plasma_toroidal_profile294___ 5.76361602657376793e+00 +Toroidal_field_in_plasma_at_point_295____________________________________ b_plasma_toroidal_profile295___ 5.75916879198536247e+00 +Toroidal_field_in_plasma_at_point_296____________________________________ b_plasma_toroidal_profile296___ 5.75472841512184274e+00 +Toroidal_field_in_plasma_at_point_297____________________________________ b_plasma_toroidal_profile297___ 5.75029488013330514e+00 +Toroidal_field_in_plasma_at_point_298____________________________________ b_plasma_toroidal_profile298___ 5.74586817121865234e+00 +Toroidal_field_in_plasma_at_point_299____________________________________ b_plasma_toroidal_profile299___ 5.74144827262540769e+00 +Toroidal_field_in_plasma_at_point_300____________________________________ b_plasma_toroidal_profile300___ 5.73703516864952334e+00 +Toroidal_field_in_plasma_at_point_301____________________________________ b_plasma_toroidal_profile301___ 5.73262884363519998e+00 +Toroidal_field_in_plasma_at_point_302____________________________________ b_plasma_toroidal_profile302___ 5.72822928197469672e+00 +Toroidal_field_in_plasma_at_point_303____________________________________ b_plasma_toroidal_profile303___ 5.72383646810815083e+00 +Toroidal_field_in_plasma_at_point_304____________________________________ b_plasma_toroidal_profile304___ 5.71945038652339477e+00 +Toroidal_field_in_plasma_at_point_305____________________________________ b_plasma_toroidal_profile305___ 5.71507102175576609e+00 +Toroidal_field_in_plasma_at_point_306____________________________________ b_plasma_toroidal_profile306___ 5.71069835838793427e+00 +Toroidal_field_in_plasma_at_point_307____________________________________ b_plasma_toroidal_profile307___ 5.70633238104971685e+00 +Toroidal_field_in_plasma_at_point_308____________________________________ b_plasma_toroidal_profile308___ 5.70197307441789913e+00 +Toroidal_field_in_plasma_at_point_309____________________________________ b_plasma_toroidal_profile309___ 5.69762042321605300e+00 +Toroidal_field_in_plasma_at_point_310____________________________________ b_plasma_toroidal_profile310___ 5.69327441221436281e+00 +Toroidal_field_in_plasma_at_point_311____________________________________ b_plasma_toroidal_profile311___ 5.68893502622944336e+00 +Toroidal_field_in_plasma_at_point_312____________________________________ b_plasma_toroidal_profile312___ 5.68460225012416576e+00 +Toroidal_field_in_plasma_at_point_313____________________________________ b_plasma_toroidal_profile313___ 5.68027606880748070e+00 +Toroidal_field_in_plasma_at_point_314____________________________________ b_plasma_toroidal_profile314___ 5.67595646723424263e+00 +Toroidal_field_in_plasma_at_point_315____________________________________ b_plasma_toroidal_profile315___ 5.67164343040503827e+00 +Toroidal_field_in_plasma_at_point_316____________________________________ b_plasma_toroidal_profile316___ 5.66733694336600546e+00 +Toroidal_field_in_plasma_at_point_317____________________________________ b_plasma_toroidal_profile317___ 5.66303699120867154e+00 +Toroidal_field_in_plasma_at_point_318____________________________________ b_plasma_toroidal_profile318___ 5.65874355906977211e+00 +Toroidal_field_in_plasma_at_point_319____________________________________ b_plasma_toroidal_profile319___ 5.65445663213108318e+00 +Toroidal_field_in_plasma_at_point_320____________________________________ b_plasma_toroidal_profile320___ 5.65017619561925066e+00 +Toroidal_field_in_plasma_at_point_321____________________________________ b_plasma_toroidal_profile321___ 5.64590223480561981e+00 +Toroidal_field_in_plasma_at_point_322____________________________________ b_plasma_toroidal_profile322___ 5.64163473500606916e+00 +Toroidal_field_in_plasma_at_point_323____________________________________ b_plasma_toroidal_profile323___ 5.63737368158083818e+00 +Toroidal_field_in_plasma_at_point_324____________________________________ b_plasma_toroidal_profile324___ 5.63311905993436213e+00 +Toroidal_field_in_plasma_at_point_325____________________________________ b_plasma_toroidal_profile325___ 5.62887085551510591e+00 +Toroidal_field_in_plasma_at_point_326____________________________________ b_plasma_toroidal_profile326___ 5.62462905381539535e+00 +Toroidal_field_in_plasma_at_point_327____________________________________ b_plasma_toroidal_profile327___ 5.62039364037125733e+00 +Toroidal_field_in_plasma_at_point_328____________________________________ b_plasma_toroidal_profile328___ 5.61616460076224921e+00 +Toroidal_field_in_plasma_at_point_329____________________________________ b_plasma_toroidal_profile329___ 5.61194192061129993e+00 +Toroidal_field_in_plasma_at_point_330____________________________________ b_plasma_toroidal_profile330___ 5.60772558558454559e+00 +Toroidal_field_in_plasma_at_point_331____________________________________ b_plasma_toroidal_profile331___ 5.60351558139116346e+00 +Toroidal_field_in_plasma_at_point_332____________________________________ b_plasma_toroidal_profile332___ 5.59931189378321736e+00 +Toroidal_field_in_plasma_at_point_333____________________________________ b_plasma_toroidal_profile333___ 5.59511450855549430e+00 +Toroidal_field_in_plasma_at_point_334____________________________________ b_plasma_toroidal_profile334___ 5.59092341154534012e+00 +Toroidal_field_in_plasma_at_point_335____________________________________ b_plasma_toroidal_profile335___ 5.58673858863250761e+00 +Toroidal_field_in_plasma_at_point_336____________________________________ b_plasma_toroidal_profile336___ 5.58256002573898957e+00 +Toroidal_field_in_plasma_at_point_337____________________________________ b_plasma_toroidal_profile337___ 5.57838770882887047e+00 +Toroidal_field_in_plasma_at_point_338____________________________________ b_plasma_toroidal_profile338___ 5.57422162390816212e+00 +Toroidal_field_in_plasma_at_point_339____________________________________ b_plasma_toroidal_profile339___ 5.57006175702464823e+00 +Toroidal_field_in_plasma_at_point_340____________________________________ b_plasma_toroidal_profile340___ 5.56590809426773259e+00 +Toroidal_field_in_plasma_at_point_341____________________________________ b_plasma_toroidal_profile341___ 5.56176062176827823e+00 +Toroidal_field_in_plasma_at_point_342____________________________________ b_plasma_toroidal_profile342___ 5.55761932569845829e+00 +Toroidal_field_in_plasma_at_point_343____________________________________ b_plasma_toroidal_profile343___ 5.55348419227159962e+00 +Toroidal_field_in_plasma_at_point_344____________________________________ b_plasma_toroidal_profile344___ 5.54935520774203006e+00 +Toroidal_field_in_plasma_at_point_345____________________________________ b_plasma_toroidal_profile345___ 5.54523235840492568e+00 +Toroidal_field_in_plasma_at_point_346____________________________________ b_plasma_toroidal_profile346___ 5.54111563059616152e+00 +Toroidal_field_in_plasma_at_point_347____________________________________ b_plasma_toroidal_profile347___ 5.53700501069215889e+00 +Toroidal_field_in_plasma_at_point_348____________________________________ b_plasma_toroidal_profile348___ 5.53290048510973254e+00 +Toroidal_field_in_plasma_at_point_349____________________________________ b_plasma_toroidal_profile349___ 5.52880204030594857e+00 +Toroidal_field_in_plasma_at_point_350____________________________________ b_plasma_toroidal_profile350___ 5.52470966277796460e+00 +Toroidal_field_in_plasma_at_point_351____________________________________ b_plasma_toroidal_profile351___ 5.52062333906289116e+00 +Toroidal_field_in_plasma_at_point_352____________________________________ b_plasma_toroidal_profile352___ 5.51654305573764248e+00 +Toroidal_field_in_plasma_at_point_353____________________________________ b_plasma_toroidal_profile353___ 5.51246879941878110e+00 +Toroidal_field_in_plasma_at_point_354____________________________________ b_plasma_toroidal_profile354___ 5.50840055676238372e+00 +Toroidal_field_in_plasma_at_point_355____________________________________ b_plasma_toroidal_profile355___ 5.50433831446388577e+00 +Toroidal_field_in_plasma_at_point_356____________________________________ b_plasma_toroidal_profile356___ 5.50028205925794378e+00 +Toroidal_field_in_plasma_at_point_357____________________________________ b_plasma_toroidal_profile357___ 5.49623177791828432e+00 +Toroidal_field_in_plasma_at_point_358____________________________________ b_plasma_toroidal_profile358___ 5.49218745725756374e+00 +Toroidal_field_in_plasma_at_point_359____________________________________ b_plasma_toroidal_profile359___ 5.48814908412722779e+00 +Toroidal_field_in_plasma_at_point_360____________________________________ b_plasma_toroidal_profile360___ 5.48411664541736155e+00 +Toroidal_field_in_plasma_at_point_361____________________________________ b_plasma_toroidal_profile361___ 5.48009012805655615e+00 +Toroidal_field_in_plasma_at_point_362____________________________________ b_plasma_toroidal_profile362___ 5.47606951901176053e+00 +Toroidal_field_in_plasma_at_point_363____________________________________ b_plasma_toroidal_profile363___ 5.47205480528814459e+00 +Toroidal_field_in_plasma_at_point_364____________________________________ b_plasma_toroidal_profile364___ 5.46804597392895975e+00 +Toroidal_field_in_plasma_at_point_365____________________________________ b_plasma_toroidal_profile365___ 5.46404301201539511e+00 +Toroidal_field_in_plasma_at_point_366____________________________________ b_plasma_toroidal_profile366___ 5.46004590666644418e+00 +Toroidal_field_in_plasma_at_point_367____________________________________ b_plasma_toroidal_profile367___ 5.45605464503876458e+00 +Toroidal_field_in_plasma_at_point_368____________________________________ b_plasma_toroidal_profile368___ 5.45206921432653679e+00 +Toroidal_field_in_plasma_at_point_369____________________________________ b_plasma_toroidal_profile369___ 5.44808960176133539e+00 +Toroidal_field_in_plasma_at_point_370____________________________________ b_plasma_toroidal_profile370___ 5.44411579461198336e+00 +Toroidal_field_in_plasma_at_point_371____________________________________ b_plasma_toroidal_profile371___ 5.44014778018442335e+00 +Toroidal_field_in_plasma_at_point_372____________________________________ b_plasma_toroidal_profile372___ 5.43618554582157998e+00 +Toroidal_field_in_plasma_at_point_373____________________________________ b_plasma_toroidal_profile373___ 5.43222907890322393e+00 +Toroidal_field_in_plasma_at_point_374____________________________________ b_plasma_toroidal_profile374___ 5.42827836684583964e+00 +Toroidal_field_in_plasma_at_point_375____________________________________ b_plasma_toroidal_profile375___ 5.42433339710249207e+00 +Toroidal_field_in_plasma_at_point_376____________________________________ b_plasma_toroidal_profile376___ 5.42039415716269346e+00 +Toroidal_field_in_plasma_at_point_377____________________________________ b_plasma_toroidal_profile377___ 5.41646063455227100e+00 +Toroidal_field_in_plasma_at_point_378____________________________________ b_plasma_toroidal_profile378___ 5.41253281683323451e+00 +Toroidal_field_in_plasma_at_point_379____________________________________ b_plasma_toroidal_profile379___ 5.40861069160364494e+00 +Toroidal_field_in_plasma_at_point_380____________________________________ b_plasma_toroidal_profile380___ 5.40469424649748653e+00 +Toroidal_field_in_plasma_at_point_381____________________________________ b_plasma_toroidal_profile381___ 5.40078346918453622e+00 +Toroidal_field_in_plasma_at_point_382____________________________________ b_plasma_toroidal_profile382___ 5.39687834737023131e+00 +Toroidal_field_in_plasma_at_point_383____________________________________ b_plasma_toroidal_profile383___ 5.39297886879554156e+00 +Toroidal_field_in_plasma_at_point_384____________________________________ b_plasma_toroidal_profile384___ 5.38908502123684485e+00 +Toroidal_field_in_plasma_at_point_385____________________________________ b_plasma_toroidal_profile385___ 5.38519679250579308e+00 +Toroidal_field_in_plasma_at_point_386____________________________________ b_plasma_toroidal_profile386___ 5.38131417044919136e+00 +Toroidal_field_in_plasma_at_point_387____________________________________ b_plasma_toroidal_profile387___ 5.37743714294886832e+00 +Toroidal_field_in_plasma_at_point_388____________________________________ b_plasma_toroidal_profile388___ 5.37356569792154737e+00 +Toroidal_field_in_plasma_at_point_389____________________________________ b_plasma_toroidal_profile389___ 5.36969982331872586e+00 +Toroidal_field_in_plasma_at_point_390____________________________________ b_plasma_toroidal_profile390___ 5.36583950712654900e+00 +Toroidal_field_in_plasma_at_point_391____________________________________ b_plasma_toroidal_profile391___ 5.36198473736568193e+00 +Toroidal_field_in_plasma_at_point_392____________________________________ b_plasma_toroidal_profile392___ 5.35813550209119160e+00 +Toroidal_field_in_plasma_at_point_393____________________________________ b_plasma_toroidal_profile393___ 5.35429178939241712e+00 +Toroidal_field_in_plasma_at_point_394____________________________________ b_plasma_toroidal_profile394___ 5.35045358739285248e+00 +Toroidal_field_in_plasma_at_point_395____________________________________ b_plasma_toroidal_profile395___ 5.34662088425002047e+00 +Toroidal_field_in_plasma_at_point_396____________________________________ b_plasma_toroidal_profile396___ 5.34279366815535450e+00 +Toroidal_field_in_plasma_at_point_397____________________________________ b_plasma_toroidal_profile397___ 5.33897192733406989e+00 +Toroidal_field_in_plasma_at_point_398____________________________________ b_plasma_toroidal_profile398___ 5.33515565004505365e+00 +Toroidal_field_in_plasma_at_point_399____________________________________ b_plasma_toroidal_profile399___ 5.33134482458073489e+00 +Toroidal_field_in_plasma_at_point_400____________________________________ b_plasma_toroidal_profile400___ 5.32753943926697282e+00 +Toroidal_field_in_plasma_at_point_401____________________________________ b_plasma_toroidal_profile401___ 5.32373948246293160e+00 +Toroidal_field_in_plasma_at_point_402____________________________________ b_plasma_toroidal_profile402___ 5.31994494256096218e+00 +Toroidal_field_in_plasma_at_point_403____________________________________ b_plasma_toroidal_profile403___ 5.31615580798648857e+00 +Toroidal_field_in_plasma_at_point_404____________________________________ b_plasma_toroidal_profile404___ 5.31237206719788535e+00 +Toroidal_field_in_plasma_at_point_405____________________________________ b_plasma_toroidal_profile405___ 5.30859370868636482e+00 +Toroidal_field_in_plasma_at_point_406____________________________________ b_plasma_toroidal_profile406___ 5.30482072097585622e+00 +Toroidal_field_in_plasma_at_point_407____________________________________ b_plasma_toroidal_profile407___ 5.30105309262289026e+00 +Toroidal_field_in_plasma_at_point_408____________________________________ b_plasma_toroidal_profile408___ 5.29729081221648634e+00 +Toroidal_field_in_plasma_at_point_409____________________________________ b_plasma_toroidal_profile409___ 5.29353386837803530e+00 +Toroidal_field_in_plasma_at_point_410____________________________________ b_plasma_toroidal_profile410___ 5.28978224976118305e+00 +Toroidal_field_in_plasma_at_point_411____________________________________ b_plasma_toroidal_profile411___ 5.28603594505172047e+00 +Toroidal_field_in_plasma_at_point_412____________________________________ b_plasma_toroidal_profile412___ 5.28229494296746616e+00 +Toroidal_field_in_plasma_at_point_413____________________________________ b_plasma_toroidal_profile413___ 5.27855923225815360e+00 +Toroidal_field_in_plasma_at_point_414____________________________________ b_plasma_toroidal_profile414___ 5.27482880170532109e+00 +Toroidal_field_in_plasma_at_point_415____________________________________ b_plasma_toroidal_profile415___ 5.27110364012219534e+00 +Toroidal_field_in_plasma_at_point_416____________________________________ b_plasma_toroidal_profile416___ 5.26738373635358492e+00 +Toroidal_field_in_plasma_at_point_417____________________________________ b_plasma_toroidal_profile417___ 5.26366907927576122e+00 +Toroidal_field_in_plasma_at_point_418____________________________________ b_plasma_toroidal_profile418___ 5.25995965779635632e+00 +Toroidal_field_in_plasma_at_point_419____________________________________ b_plasma_toroidal_profile419___ 5.25625546085424578e+00 +Toroidal_field_in_plasma_at_point_420____________________________________ b_plasma_toroidal_profile420___ 5.25255647741944287e+00 +Toroidal_field_in_plasma_at_point_421____________________________________ b_plasma_toroidal_profile421___ 5.24886269649298853e+00 +Toroidal_field_in_plasma_at_point_422____________________________________ b_plasma_toroidal_profile422___ 5.24517410710683762e+00 +Toroidal_field_in_plasma_at_point_423____________________________________ b_plasma_toroidal_profile423___ 5.24149069832375680e+00 +Toroidal_field_in_plasma_at_point_424____________________________________ b_plasma_toroidal_profile424___ 5.23781245923721350e+00 +Toroidal_field_in_plasma_at_point_425____________________________________ b_plasma_toroidal_profile425___ 5.23413937897126846e+00 +Toroidal_field_in_plasma_at_point_426____________________________________ b_plasma_toroidal_profile426___ 5.23047144668046915e+00 +Toroidal_field_in_plasma_at_point_427____________________________________ b_plasma_toroidal_profile427___ 5.22680865154974050e+00 +Toroidal_field_in_plasma_at_point_428____________________________________ b_plasma_toroidal_profile428___ 5.22315098279428192e+00 +Toroidal_field_in_plasma_at_point_429____________________________________ b_plasma_toroidal_profile429___ 5.21949842965946065e+00 +Toroidal_field_in_plasma_at_point_430____________________________________ b_plasma_toroidal_profile430___ 5.21585098142070525e+00 +Toroidal_field_in_plasma_at_point_431____________________________________ b_plasma_toroidal_profile431___ 5.21220862738340074e+00 +Toroidal_field_in_plasma_at_point_432____________________________________ b_plasma_toroidal_profile432___ 5.20857135688278383e+00 +Toroidal_field_in_plasma_at_point_433____________________________________ b_plasma_toroidal_profile433___ 5.20493915928384165e+00 +Toroidal_field_in_plasma_at_point_434____________________________________ b_plasma_toroidal_profile434___ 5.20131202398120518e+00 +Toroidal_field_in_plasma_at_point_435____________________________________ b_plasma_toroidal_profile435___ 5.19768994039904531e+00 +Toroidal_field_in_plasma_at_point_436____________________________________ b_plasma_toroidal_profile436___ 5.19407289799097427e+00 +Toroidal_field_in_plasma_at_point_437____________________________________ b_plasma_toroidal_profile437___ 5.19046088623993729e+00 +Toroidal_field_in_plasma_at_point_438____________________________________ b_plasma_toroidal_profile438___ 5.18685389465811664e+00 +Toroidal_field_in_plasma_at_point_439____________________________________ b_plasma_toroidal_profile439___ 5.18325191278682595e+00 +Toroidal_field_in_plasma_at_point_440____________________________________ b_plasma_toroidal_profile440___ 5.17965493019641166e+00 +Toroidal_field_in_plasma_at_point_441____________________________________ b_plasma_toroidal_profile441___ 5.17606293648615079e+00 +Toroidal_field_in_plasma_at_point_442____________________________________ b_plasma_toroidal_profile442___ 5.17247592128415068e+00 +Toroidal_field_in_plasma_at_point_443____________________________________ b_plasma_toroidal_profile443___ 5.16889387424725033e+00 +Toroidal_field_in_plasma_at_point_444____________________________________ b_plasma_toroidal_profile444___ 5.16531678506092007e+00 +Toroidal_field_in_plasma_at_point_445____________________________________ b_plasma_toroidal_profile445___ 5.16174464343916295e+00 +Toroidal_field_in_plasma_at_point_446____________________________________ b_plasma_toroidal_profile446___ 5.15817743912441617e+00 +Toroidal_field_in_plasma_at_point_447____________________________________ b_plasma_toroidal_profile447___ 5.15461516188745161e+00 +Toroidal_field_in_plasma_at_point_448____________________________________ b_plasma_toroidal_profile448___ 5.15105780152728077e+00 +Toroidal_field_in_plasma_at_point_449____________________________________ b_plasma_toroidal_profile449___ 5.14750534787105440e+00 +Toroidal_field_in_plasma_at_point_450____________________________________ b_plasma_toroidal_profile450___ 5.14395779077396931e+00 +Toroidal_field_in_plasma_at_point_451____________________________________ b_plasma_toroidal_profile451___ 5.14041512011916701e+00 +Toroidal_field_in_plasma_at_point_452____________________________________ b_plasma_toroidal_profile452___ 5.13687732581763878e+00 +Toroidal_field_in_plasma_at_point_453____________________________________ b_plasma_toroidal_profile453___ 5.13334439780813589e+00 +Toroidal_field_in_plasma_at_point_454____________________________________ b_plasma_toroidal_profile454___ 5.12981632605706483e+00 +Toroidal_field_in_plasma_at_point_455____________________________________ b_plasma_toroidal_profile455___ 5.12629310055839937e+00 +Toroidal_field_in_plasma_at_point_456____________________________________ b_plasma_toroidal_profile456___ 5.12277471133358286e+00 +Toroidal_field_in_plasma_at_point_457____________________________________ b_plasma_toroidal_profile457___ 5.11926114843143321e+00 +Toroidal_field_in_plasma_at_point_458____________________________________ b_plasma_toroidal_profile458___ 5.11575240192805314e+00 +Toroidal_field_in_plasma_at_point_459____________________________________ b_plasma_toroidal_profile459___ 5.11224846192673166e+00 +Toroidal_field_in_plasma_at_point_460____________________________________ b_plasma_toroidal_profile460___ 5.10874931855785697e+00 +Toroidal_field_in_plasma_at_point_461____________________________________ b_plasma_toroidal_profile461___ 5.10525496197881612e+00 +Toroidal_field_in_plasma_at_point_462____________________________________ b_plasma_toroidal_profile462___ 5.10176538237390975e+00 +Toroidal_field_in_plasma_at_point_463____________________________________ b_plasma_toroidal_profile463___ 5.09828056995425438e+00 +Toroidal_field_in_plasma_at_point_464____________________________________ b_plasma_toroidal_profile464___ 5.09480051495769892e+00 +Toroidal_field_in_plasma_at_point_465____________________________________ b_plasma_toroidal_profile465___ 5.09132520764872432e+00 +Toroidal_field_in_plasma_at_point_466____________________________________ b_plasma_toroidal_profile466___ 5.08785463831835738e+00 +Toroidal_field_in_plasma_at_point_467____________________________________ b_plasma_toroidal_profile467___ 5.08438879728408022e+00 +Toroidal_field_in_plasma_at_point_468____________________________________ b_plasma_toroidal_profile468___ 5.08092767488974051e+00 +Toroidal_field_in_plasma_at_point_469____________________________________ b_plasma_toroidal_profile469___ 5.07747126150546269e+00 +Toroidal_field_in_plasma_at_point_470____________________________________ b_plasma_toroidal_profile470___ 5.07401954752755202e+00 +Toroidal_field_in_plasma_at_point_471____________________________________ b_plasma_toroidal_profile471___ 5.07057252337841646e+00 +Toroidal_field_in_plasma_at_point_472____________________________________ b_plasma_toroidal_profile472___ 5.06713017950646893e+00 +Toroidal_field_in_plasma_at_point_473____________________________________ b_plasma_toroidal_profile473___ 5.06369250638604385e+00 +Toroidal_field_in_plasma_at_point_474____________________________________ b_plasma_toroidal_profile474___ 5.06025949451730828e+00 +Toroidal_field_in_plasma_at_point_475____________________________________ b_plasma_toroidal_profile475___ 5.05683113442617227e+00 +Toroidal_field_in_plasma_at_point_476____________________________________ b_plasma_toroidal_profile476___ 5.05340741666420445e+00 +Toroidal_field_in_plasma_at_point_477____________________________________ b_plasma_toroidal_profile477___ 5.04998833180854501e+00 +Toroidal_field_in_plasma_at_point_478____________________________________ b_plasma_toroidal_profile478___ 5.04657387046181771e+00 +Toroidal_field_in_plasma_at_point_479____________________________________ b_plasma_toroidal_profile479___ 5.04316402325204649e+00 +Toroidal_field_in_plasma_at_point_480____________________________________ b_plasma_toroidal_profile480___ 5.03975878083256568e+00 +Toroidal_field_in_plasma_at_point_481____________________________________ b_plasma_toroidal_profile481___ 5.03635813388193654e+00 +Toroidal_field_in_plasma_at_point_482____________________________________ b_plasma_toroidal_profile482___ 5.03296207310386290e+00 +Toroidal_field_in_plasma_at_point_483____________________________________ b_plasma_toroidal_profile483___ 5.02957058922710853e+00 +Toroidal_field_in_plasma_at_point_484____________________________________ b_plasma_toroidal_profile484___ 5.02618367300540658e+00 +Toroidal_field_in_plasma_at_point_485____________________________________ b_plasma_toroidal_profile485___ 5.02280131521738227e+00 +Toroidal_field_in_plasma_at_point_486____________________________________ b_plasma_toroidal_profile486___ 5.01942350666646231e+00 +Toroidal_field_in_plasma_at_point_487____________________________________ b_plasma_toroidal_profile487___ 5.01605023818079943e+00 +Toroidal_field_in_plasma_at_point_488____________________________________ b_plasma_toroidal_profile488___ 5.01268150061318263e+00 +Toroidal_field_in_plasma_at_point_489____________________________________ b_plasma_toroidal_profile489___ 5.00931728484095906e+00 +Toroidal_field_in_plasma_at_point_490____________________________________ b_plasma_toroidal_profile490___ 5.00595758176594874e+00 +Toroidal_field_in_plasma_at_point_491____________________________________ b_plasma_toroidal_profile491___ 5.00260238231436283e+00 +Toroidal_field_in_plasma_at_point_492____________________________________ b_plasma_toroidal_profile492___ 4.99925167743672372e+00 +Toroidal_field_in_plasma_at_point_493____________________________________ b_plasma_toroidal_profile493___ 4.99590545810778330e+00 +Toroidal_field_in_plasma_at_point_494____________________________________ b_plasma_toroidal_profile494___ 4.99256371532644128e+00 +Toroidal_field_in_plasma_at_point_495____________________________________ b_plasma_toroidal_profile495___ 4.98922644011566163e+00 +Toroidal_field_in_plasma_at_point_496____________________________________ b_plasma_toroidal_profile496___ 4.98589362352239807e+00 +Toroidal_field_in_plasma_at_point_497____________________________________ b_plasma_toroidal_profile497___ 4.98256525661750960e+00 +Toroidal_field_in_plasma_at_point_498____________________________________ b_plasma_toroidal_profile498___ 4.97924133049568329e+00 +Toroidal_field_in_plasma_at_point_499____________________________________ b_plasma_toroidal_profile499___ 4.97592183627535256e+00 +Toroidal_field_in_plasma_at_point_500____________________________________ b_plasma_toroidal_profile500___ 4.97260676509862076e+00 +Toroidal_field_in_plasma_at_point_501____________________________________ b_plasma_toroidal_profile501___ 4.96929610813117772e+00 +Toroidal_field_in_plasma_at_point_502____________________________________ b_plasma_toroidal_profile502___ 4.96598985656222780e+00 +Toroidal_field_in_plasma_at_point_503____________________________________ b_plasma_toroidal_profile503___ 4.96268800160440726e+00 +Toroidal_field_in_plasma_at_point_504____________________________________ b_plasma_toroidal_profile504___ 4.95939053449370615e+00 +Toroidal_field_in_plasma_at_point_505____________________________________ b_plasma_toroidal_profile505___ 4.95609744648939543e+00 +Toroidal_field_in_plasma_at_point_506____________________________________ b_plasma_toroidal_profile506___ 4.95280872887394086e+00 +Toroidal_field_in_plasma_at_point_507____________________________________ b_plasma_toroidal_profile507___ 4.94952437295293723e+00 +Toroidal_field_in_plasma_at_point_508____________________________________ b_plasma_toroidal_profile508___ 4.94624437005502315e+00 +Toroidal_field_in_plasma_at_point_509____________________________________ b_plasma_toroidal_profile509___ 4.94296871153180817e+00 +Toroidal_field_in_plasma_at_point_510____________________________________ b_plasma_toroidal_profile510___ 4.93969738875779552e+00 +Toroidal_field_in_plasma_at_point_511____________________________________ b_plasma_toroidal_profile511___ 4.93643039313031018e+00 +Toroidal_field_in_plasma_at_point_512____________________________________ b_plasma_toroidal_profile512___ 4.93316771606941806e+00 +Toroidal_field_in_plasma_at_point_513____________________________________ b_plasma_toroidal_profile513___ 4.92990934901785227e+00 +Toroidal_field_in_plasma_at_point_514____________________________________ b_plasma_toroidal_profile514___ 4.92665528344094383e+00 +Toroidal_field_in_plasma_at_point_515____________________________________ b_plasma_toroidal_profile515___ 4.92340551082653644e+00 +Toroidal_field_in_plasma_at_point_516____________________________________ b_plasma_toroidal_profile516___ 4.92016002268492336e+00 +Toroidal_field_in_plasma_at_point_517____________________________________ b_plasma_toroidal_profile517___ 4.91691881054876756e+00 +Toroidal_field_in_plasma_at_point_518____________________________________ b_plasma_toroidal_profile518___ 4.91368186597302881e+00 +Toroidal_field_in_plasma_at_point_519____________________________________ b_plasma_toroidal_profile519___ 4.91044918053488821e+00 +Toroidal_field_in_plasma_at_point_520____________________________________ b_plasma_toroidal_profile520___ 4.90722074583368162e+00 +Toroidal_field_in_plasma_at_point_521____________________________________ b_plasma_toroidal_profile521___ 4.90399655349082053e+00 +Toroidal_field_in_plasma_at_point_522____________________________________ b_plasma_toroidal_profile522___ 4.90077659514972375e+00 +Toroidal_field_in_plasma_at_point_523____________________________________ b_plasma_toroidal_profile523___ 4.89756086247574007e+00 +Toroidal_field_in_plasma_at_point_524____________________________________ b_plasma_toroidal_profile524___ 4.89434934715608527e+00 +Toroidal_field_in_plasma_at_point_525____________________________________ b_plasma_toroidal_profile525___ 4.89114204089975679e+00 +Toroidal_field_in_plasma_at_point_526____________________________________ b_plasma_toroidal_profile526___ 4.88793893543747782e+00 +Toroidal_field_in_plasma_at_point_527____________________________________ b_plasma_toroidal_profile527___ 4.88474002252161554e+00 +Toroidal_field_in_plasma_at_point_528____________________________________ b_plasma_toroidal_profile528___ 4.88154529392611547e+00 +Toroidal_field_in_plasma_at_point_529____________________________________ b_plasma_toroidal_profile529___ 4.87835474144642500e+00 +Toroidal_field_in_plasma_at_point_530____________________________________ b_plasma_toroidal_profile530___ 4.87516835689943129e+00 +Toroidal_field_in_plasma_at_point_531____________________________________ b_plasma_toroidal_profile531___ 4.87198613212338749e+00 +Toroidal_field_in_plasma_at_point_532____________________________________ b_plasma_toroidal_profile532___ 4.86880805897783997e+00 +Toroidal_field_in_plasma_at_point_533____________________________________ b_plasma_toroidal_profile533___ 4.86563412934356432e+00 +Toroidal_field_in_plasma_at_point_534____________________________________ b_plasma_toroidal_profile534___ 4.86246433512249521e+00 +Toroidal_field_in_plasma_at_point_535____________________________________ b_plasma_toroidal_profile535___ 4.85929866823764911e+00 +Toroidal_field_in_plasma_at_point_536____________________________________ b_plasma_toroidal_profile536___ 4.85613712063307013e+00 +Toroidal_field_in_plasma_at_point_537____________________________________ b_plasma_toroidal_profile537___ 4.85297968427375181e+00 +Toroidal_field_in_plasma_at_point_538____________________________________ b_plasma_toroidal_profile538___ 4.84982635114556881e+00 +Toroidal_field_in_plasma_at_point_539____________________________________ b_plasma_toroidal_profile539___ 4.84667711325521378e+00 +Toroidal_field_in_plasma_at_point_540____________________________________ b_plasma_toroidal_profile540___ 4.84353196263012897e+00 +Toroidal_field_in_plasma_at_point_541____________________________________ b_plasma_toroidal_profile541___ 4.84039089131843614e+00 +Toroidal_field_in_plasma_at_point_542____________________________________ b_plasma_toroidal_profile542___ 4.83725389138887163e+00 +Toroidal_field_in_plasma_at_point_543____________________________________ b_plasma_toroidal_profile543___ 4.83412095493071803e+00 +Toroidal_field_in_plasma_at_point_544____________________________________ b_plasma_toroidal_profile544___ 4.83099207405374109e+00 +Toroidal_field_in_plasma_at_point_545____________________________________ b_plasma_toroidal_profile545___ 4.82786724088811692e+00 +Toroidal_field_in_plasma_at_point_546____________________________________ b_plasma_toroidal_profile546___ 4.82474644758437510e+00 +Toroidal_field_in_plasma_at_point_547____________________________________ b_plasma_toroidal_profile547___ 4.82162968631332678e+00 +Toroidal_field_in_plasma_at_point_548____________________________________ b_plasma_toroidal_profile548___ 4.81851694926599716e+00 +Toroidal_field_in_plasma_at_point_549____________________________________ b_plasma_toroidal_profile549___ 4.81540822865356777e+00 +Toroidal_field_in_plasma_at_point_550____________________________________ b_plasma_toroidal_profile550___ 4.81230351670730450e+00 +Toroidal_field_in_plasma_at_point_551____________________________________ b_plasma_toroidal_profile551___ 4.80920280567849812e+00 +Toroidal_field_in_plasma_at_point_552____________________________________ b_plasma_toroidal_profile552___ 4.80610608783839588e+00 +Toroidal_field_in_plasma_at_point_553____________________________________ b_plasma_toroidal_profile553___ 4.80301335547814023e+00 +Toroidal_field_in_plasma_at_point_554____________________________________ b_plasma_toroidal_profile554___ 4.79992460090870043e+00 +Toroidal_field_in_plasma_at_point_555____________________________________ b_plasma_toroidal_profile555___ 4.79683981646081570e+00 +Toroidal_field_in_plasma_at_point_556____________________________________ b_plasma_toroidal_profile556___ 4.79375899448492504e+00 +Toroidal_field_in_plasma_at_point_557____________________________________ b_plasma_toroidal_profile557___ 4.79068212735111043e+00 +Toroidal_field_in_plasma_at_point_558____________________________________ b_plasma_toroidal_profile558___ 4.78760920744902485e+00 +Toroidal_field_in_plasma_at_point_559____________________________________ b_plasma_toroidal_profile559___ 4.78454022718783900e+00 +Toroidal_field_in_plasma_at_point_560____________________________________ b_plasma_toroidal_profile560___ 4.78147517899617469e+00 +Toroidal_field_in_plasma_at_point_561____________________________________ b_plasma_toroidal_profile561___ 4.77841405532204178e+00 +Toroidal_field_in_plasma_at_point_562____________________________________ b_plasma_toroidal_profile562___ 4.77535684863277599e+00 +Toroidal_field_in_plasma_at_point_563____________________________________ b_plasma_toroidal_profile563___ 4.77230355141498030e+00 +Toroidal_field_in_plasma_at_point_564____________________________________ b_plasma_toroidal_profile564___ 4.76925415617445925e+00 +Toroidal_field_in_plasma_at_point_565____________________________________ b_plasma_toroidal_profile565___ 4.76620865543616112e+00 +Toroidal_field_in_plasma_at_point_566____________________________________ b_plasma_toroidal_profile566___ 4.76316704174411498e+00 +Toroidal_field_in_plasma_at_point_567____________________________________ b_plasma_toroidal_profile567___ 4.76012930766137110e+00 +Toroidal_field_in_plasma_at_point_568____________________________________ b_plasma_toroidal_profile568___ 4.75709544576993615e+00 +Toroidal_field_in_plasma_at_point_569____________________________________ b_plasma_toroidal_profile569___ 4.75406544867071901e+00 +Toroidal_field_in_plasma_at_point_570____________________________________ b_plasma_toroidal_profile570___ 4.75103930898346860e+00 +Toroidal_field_in_plasma_at_point_571____________________________________ b_plasma_toroidal_profile571___ 4.74801701934670994e+00 +Toroidal_field_in_plasma_at_point_572____________________________________ b_plasma_toroidal_profile572___ 4.74499857241769085e+00 +Toroidal_field_in_plasma_at_point_573____________________________________ b_plasma_toroidal_profile573___ 4.74198396087231888e+00 +Toroidal_field_in_plasma_at_point_574____________________________________ b_plasma_toroidal_profile574___ 4.73897317740509827e+00 +Toroidal_field_in_plasma_at_point_575____________________________________ b_plasma_toroidal_profile575___ 4.73596621472907930e+00 +Toroidal_field_in_plasma_at_point_576____________________________________ b_plasma_toroidal_profile576___ 4.73296306557579616e+00 +Toroidal_field_in_plasma_at_point_577____________________________________ b_plasma_toroidal_profile577___ 4.72996372269520293e+00 +Toroidal_field_in_plasma_at_point_578____________________________________ b_plasma_toroidal_profile578___ 4.72696817885562393e+00 +Toroidal_field_in_plasma_at_point_579____________________________________ b_plasma_toroidal_profile579___ 4.72397642684368968e+00 +Toroidal_field_in_plasma_at_point_580____________________________________ b_plasma_toroidal_profile580___ 4.72098845946428103e+00 +Toroidal_field_in_plasma_at_point_581____________________________________ b_plasma_toroidal_profile581___ 4.71800426954047314e+00 +Toroidal_field_in_plasma_at_point_582____________________________________ b_plasma_toroidal_profile582___ 4.71502384991347423e+00 +Toroidal_field_in_plasma_at_point_583____________________________________ b_plasma_toroidal_profile583___ 4.71204719344256873e+00 +Toroidal_field_in_plasma_at_point_584____________________________________ b_plasma_toroidal_profile584___ 4.70907429300506575e+00 +Toroidal_field_in_plasma_at_point_585____________________________________ b_plasma_toroidal_profile585___ 4.70610514149623516e+00 +Toroidal_field_in_plasma_at_point_586____________________________________ b_plasma_toroidal_profile586___ 4.70313973182925604e+00 +Toroidal_field_in_plasma_at_point_587____________________________________ b_plasma_toroidal_profile587___ 4.70017805693515722e+00 +Toroidal_field_in_plasma_at_point_588____________________________________ b_plasma_toroidal_profile588___ 4.69722010976276216e+00 +Toroidal_field_in_plasma_at_point_589____________________________________ b_plasma_toroidal_profile589___ 4.69426588327863481e+00 +Toroidal_field_in_plasma_at_point_590____________________________________ b_plasma_toroidal_profile590___ 4.69131537046702007e+00 +Toroidal_field_in_plasma_at_point_591____________________________________ b_plasma_toroidal_profile591___ 4.68836856432979143e+00 +Toroidal_field_in_plasma_at_point_592____________________________________ b_plasma_toroidal_profile592___ 4.68542545788639675e+00 +Toroidal_field_in_plasma_at_point_593____________________________________ b_plasma_toroidal_profile593___ 4.68248604417379521e+00 +Toroidal_field_in_plasma_at_point_594____________________________________ b_plasma_toroidal_profile594___ 4.67955031624641293e+00 +Toroidal_field_in_plasma_at_point_595____________________________________ b_plasma_toroidal_profile595___ 4.67661826717608342e+00 +Toroidal_field_in_plasma_at_point_596____________________________________ b_plasma_toroidal_profile596___ 4.67368989005199076e+00 +Toroidal_field_in_plasma_at_point_597____________________________________ b_plasma_toroidal_profile597___ 4.67076517798061897e+00 +Toroidal_field_in_plasma_at_point_598____________________________________ b_plasma_toroidal_profile598___ 4.66784412408569693e+00 +Toroidal_field_in_plasma_at_point_599____________________________________ b_plasma_toroidal_profile599___ 4.66492672150814336e+00 +Toroidal_field_in_plasma_at_point_600____________________________________ b_plasma_toroidal_profile600___ 4.66201296340601434e+00 +Toroidal_field_in_plasma_at_point_601____________________________________ b_plasma_toroidal_profile601___ 4.65910284295444921e+00 +Toroidal_field_in_plasma_at_point_602____________________________________ b_plasma_toroidal_profile602___ 4.65619635334562076e+00 +Toroidal_field_in_plasma_at_point_603____________________________________ b_plasma_toroidal_profile603___ 4.65329348778867136e+00 +Toroidal_field_in_plasma_at_point_604____________________________________ b_plasma_toroidal_profile604___ 4.65039423950967556e+00 +Toroidal_field_in_plasma_at_point_605____________________________________ b_plasma_toroidal_profile605___ 4.64749860175157448e+00 +Toroidal_field_in_plasma_at_point_606____________________________________ b_plasma_toroidal_profile606___ 4.64460656777413217e+00 +Toroidal_field_in_plasma_at_point_607____________________________________ b_plasma_toroidal_profile607___ 4.64171813085387441e+00 +Toroidal_field_in_plasma_at_point_608____________________________________ b_plasma_toroidal_profile608___ 4.63883328428404518e+00 +Toroidal_field_in_plasma_at_point_609____________________________________ b_plasma_toroidal_profile609___ 4.63595202137455242e+00 +Toroidal_field_in_plasma_at_point_610____________________________________ b_plasma_toroidal_profile610___ 4.63307433545191127e+00 +Toroidal_field_in_plasma_at_point_611____________________________________ b_plasma_toroidal_profile611___ 4.63020021985919872e+00 +Toroidal_field_in_plasma_at_point_612____________________________________ b_plasma_toroidal_profile612___ 4.62732966795600120e+00 +Toroidal_field_in_plasma_at_point_613____________________________________ b_plasma_toroidal_profile613___ 4.62446267311835779e+00 +Toroidal_field_in_plasma_at_point_614____________________________________ b_plasma_toroidal_profile614___ 4.62159922873871754e+00 +Toroidal_field_in_plasma_at_point_615____________________________________ b_plasma_toroidal_profile615___ 4.61873932822588529e+00 +Toroidal_field_in_plasma_at_point_616____________________________________ b_plasma_toroidal_profile616___ 4.61588296500496575e+00 +Toroidal_field_in_plasma_at_point_617____________________________________ b_plasma_toroidal_profile617___ 4.61303013251732352e+00 +Toroidal_field_in_plasma_at_point_618____________________________________ b_plasma_toroidal_profile618___ 4.61018082422052444e+00 +Toroidal_field_in_plasma_at_point_619____________________________________ b_plasma_toroidal_profile619___ 4.60733503358828944e+00 +Toroidal_field_in_plasma_at_point_620____________________________________ b_plasma_toroidal_profile620___ 4.60449275411044301e+00 +Toroidal_field_in_plasma_at_point_621____________________________________ b_plasma_toroidal_profile621___ 4.60165397929286701e+00 +Toroidal_field_in_plasma_at_point_622____________________________________ b_plasma_toroidal_profile622___ 4.59881870265744297e+00 +Toroidal_field_in_plasma_at_point_623____________________________________ b_plasma_toroidal_profile623___ 4.59598691774201296e+00 +Toroidal_field_in_plasma_at_point_624____________________________________ b_plasma_toroidal_profile624___ 4.59315861810032544e+00 +Toroidal_field_in_plasma_at_point_625____________________________________ b_plasma_toroidal_profile625___ 4.59033379730198643e+00 +Toroidal_field_in_plasma_at_point_626____________________________________ b_plasma_toroidal_profile626___ 4.58751244893240884e+00 +Toroidal_field_in_plasma_at_point_627____________________________________ b_plasma_toroidal_profile627___ 4.58469456659276986e+00 +Toroidal_field_in_plasma_at_point_628____________________________________ b_plasma_toroidal_profile628___ 4.58188014389995679e+00 +Toroidal_field_in_plasma_at_point_629____________________________________ b_plasma_toroidal_profile629___ 4.57906917448652084e+00 +Toroidal_field_in_plasma_at_point_630____________________________________ b_plasma_toroidal_profile630___ 4.57626165200063095e+00 +Toroidal_field_in_plasma_at_point_631____________________________________ b_plasma_toroidal_profile631___ 4.57345757010602316e+00 +Toroidal_field_in_plasma_at_point_632____________________________________ b_plasma_toroidal_profile632___ 4.57065692248195266e+00 +Toroidal_field_in_plasma_at_point_633____________________________________ b_plasma_toroidal_profile633___ 4.56785970282315112e+00 +Toroidal_field_in_plasma_at_point_634____________________________________ b_plasma_toroidal_profile634___ 4.56506590483977259e+00 +Toroidal_field_in_plasma_at_point_635____________________________________ b_plasma_toroidal_profile635___ 4.56227552225735344e+00 +Toroidal_field_in_plasma_at_point_636____________________________________ b_plasma_toroidal_profile636___ 4.55948854881675558e+00 +Toroidal_field_in_plasma_at_point_637____________________________________ b_plasma_toroidal_profile637___ 4.55670497827413268e+00 +Toroidal_field_in_plasma_at_point_638____________________________________ b_plasma_toroidal_profile638___ 4.55392480440087155e+00 +Toroidal_field_in_plasma_at_point_639____________________________________ b_plasma_toroidal_profile639___ 4.55114802098355398e+00 +Toroidal_field_in_plasma_at_point_640____________________________________ b_plasma_toroidal_profile640___ 4.54837462182390517e+00 +Toroidal_field_in_plasma_at_point_641____________________________________ b_plasma_toroidal_profile641___ 4.54560460073875117e+00 +Toroidal_field_in_plasma_at_point_642____________________________________ b_plasma_toroidal_profile642___ 4.54283795155996906e+00 +Toroidal_field_in_plasma_at_point_643____________________________________ b_plasma_toroidal_profile643___ 4.54007466813444616e+00 +Toroidal_field_in_plasma_at_point_644____________________________________ b_plasma_toroidal_profile644___ 4.53731474432403026e+00 +Toroidal_field_in_plasma_at_point_645____________________________________ b_plasma_toroidal_profile645___ 4.53455817400548611e+00 +Toroidal_field_in_plasma_at_point_646____________________________________ b_plasma_toroidal_profile646___ 4.53180495107044923e+00 +Toroidal_field_in_plasma_at_point_647____________________________________ b_plasma_toroidal_profile647___ 4.52905506942538150e+00 +Toroidal_field_in_plasma_at_point_648____________________________________ b_plasma_toroidal_profile648___ 4.52630852299152764e+00 +Toroidal_field_in_plasma_at_point_649____________________________________ b_plasma_toroidal_profile649___ 4.52356530570486548e+00 +Toroidal_field_in_plasma_at_point_650____________________________________ b_plasma_toroidal_profile650___ 4.52082541151606776e+00 +Toroidal_field_in_plasma_at_point_651____________________________________ b_plasma_toroidal_profile651___ 4.51808883439045328e+00 +Toroidal_field_in_plasma_at_point_652____________________________________ b_plasma_toroidal_profile652___ 4.51535556830794249e+00 +Toroidal_field_in_plasma_at_point_653____________________________________ b_plasma_toroidal_profile653___ 4.51262560726301576e+00 +Toroidal_field_in_plasma_at_point_654____________________________________ b_plasma_toroidal_profile654___ 4.50989894526467072e+00 +Toroidal_field_in_plasma_at_point_655____________________________________ b_plasma_toroidal_profile655___ 4.50717557633637078e+00 +Toroidal_field_in_plasma_at_point_656____________________________________ b_plasma_toroidal_profile656___ 4.50445549451601046e+00 +Toroidal_field_in_plasma_at_point_657____________________________________ b_plasma_toroidal_profile657___ 4.50173869385586833e+00 +Toroidal_field_in_plasma_at_point_658____________________________________ b_plasma_toroidal_profile658___ 4.49902516842256084e+00 +Toroidal_field_in_plasma_at_point_659____________________________________ b_plasma_toroidal_profile659___ 4.49631491229700497e+00 +Toroidal_field_in_plasma_at_point_660____________________________________ b_plasma_toroidal_profile660___ 4.49360791957437034e+00 +Toroidal_field_in_plasma_at_point_661____________________________________ b_plasma_toroidal_profile661___ 4.49090418436403649e+00 +Toroidal_field_in_plasma_at_point_662____________________________________ b_plasma_toroidal_profile662___ 4.48820370078955477e+00 +Toroidal_field_in_plasma_at_point_663____________________________________ b_plasma_toroidal_profile663___ 4.48550646298859856e+00 +Toroidal_field_in_plasma_at_point_664____________________________________ b_plasma_toroidal_profile664___ 4.48281246511293041e+00 +Toroidal_field_in_plasma_at_point_665____________________________________ b_plasma_toroidal_profile665___ 4.48012170132834875e+00 +Toroidal_field_in_plasma_at_point_666____________________________________ b_plasma_toroidal_profile666___ 4.47743416581465503e+00 +Toroidal_field_in_plasma_at_point_667____________________________________ b_plasma_toroidal_profile667___ 4.47474985276560489e+00 +Toroidal_field_in_plasma_at_point_668____________________________________ b_plasma_toroidal_profile668___ 4.47206875638887258e+00 +Toroidal_field_in_plasma_at_point_669____________________________________ b_plasma_toroidal_profile669___ 4.46939087090600484e+00 +Toroidal_field_in_plasma_at_point_670____________________________________ b_plasma_toroidal_profile670___ 4.46671619055238178e+00 +Toroidal_field_in_plasma_at_point_671____________________________________ b_plasma_toroidal_profile671___ 4.46404470957717070e+00 +Toroidal_field_in_plasma_at_point_672____________________________________ b_plasma_toroidal_profile672___ 4.46137642224329323e+00 +Toroidal_field_in_plasma_at_point_673____________________________________ b_plasma_toroidal_profile673___ 4.45871132282737648e+00 +Toroidal_field_in_plasma_at_point_674____________________________________ b_plasma_toroidal_profile674___ 4.45604940561971929e+00 +Toroidal_field_in_plasma_at_point_675____________________________________ b_plasma_toroidal_profile675___ 4.45339066492424163e+00 +Toroidal_field_in_plasma_at_point_676____________________________________ b_plasma_toroidal_profile676___ 4.45073509505845522e+00 +Toroidal_field_in_plasma_at_point_677____________________________________ b_plasma_toroidal_profile677___ 4.44808269035341386e+00 +Toroidal_field_in_plasma_at_point_678____________________________________ b_plasma_toroidal_profile678___ 4.44543344515367966e+00 +Toroidal_field_in_plasma_at_point_679____________________________________ b_plasma_toroidal_profile679___ 4.44278735381727863e+00 +Toroidal_field_in_plasma_at_point_680____________________________________ b_plasma_toroidal_profile680___ 4.44014441071566335e+00 +Toroidal_field_in_plasma_at_point_681____________________________________ b_plasma_toroidal_profile681___ 4.43750461023366771e+00 +Toroidal_field_in_plasma_at_point_682____________________________________ b_plasma_toroidal_profile682___ 4.43486794676947671e+00 +Toroidal_field_in_plasma_at_point_683____________________________________ b_plasma_toroidal_profile683___ 4.43223441473457846e+00 +Toroidal_field_in_plasma_at_point_684____________________________________ b_plasma_toroidal_profile684___ 4.42960400855372693e+00 +Toroidal_field_in_plasma_at_point_685____________________________________ b_plasma_toroidal_profile685___ 4.42697672266490461e+00 +Toroidal_field_in_plasma_at_point_686____________________________________ b_plasma_toroidal_profile686___ 4.42435255151928253e+00 +Toroidal_field_in_plasma_at_point_687____________________________________ b_plasma_toroidal_profile687___ 4.42173148958117856e+00 +Toroidal_field_in_plasma_at_point_688____________________________________ b_plasma_toroidal_profile688___ 4.41911353132802187e+00 +Toroidal_field_in_plasma_at_point_689____________________________________ b_plasma_toroidal_profile689___ 4.41649867125031381e+00 +Toroidal_field_in_plasma_at_point_690____________________________________ b_plasma_toroidal_profile690___ 4.41388690385158444e+00 +Toroidal_field_in_plasma_at_point_691____________________________________ b_plasma_toroidal_profile691___ 4.41127822364836231e+00 +Toroidal_field_in_plasma_at_point_692____________________________________ b_plasma_toroidal_profile692___ 4.40867262517012914e+00 +Toroidal_field_in_plasma_at_point_693____________________________________ b_plasma_toroidal_profile693___ 4.40607010295928525e+00 +Toroidal_field_in_plasma_at_point_694____________________________________ b_plasma_toroidal_profile694___ 4.40347065157110862e+00 +Toroidal_field_in_plasma_at_point_695____________________________________ b_plasma_toroidal_profile695___ 4.40087426557372030e+00 +Toroidal_field_in_plasma_at_point_696____________________________________ b_plasma_toroidal_profile696___ 4.39828093954804267e+00 +Toroidal_field_in_plasma_at_point_697____________________________________ b_plasma_toroidal_profile697___ 4.39569066808776743e+00 +Toroidal_field_in_plasma_at_point_698____________________________________ b_plasma_toroidal_profile698___ 4.39310344579931034e+00 +Toroidal_field_in_plasma_at_point_699____________________________________ b_plasma_toroidal_profile699___ 4.39051926730178188e+00 +Toroidal_field_in_plasma_at_point_700____________________________________ b_plasma_toroidal_profile700___ 4.38793812722694287e+00 +Toroidal_field_in_plasma_at_point_701____________________________________ b_plasma_toroidal_profile701___ 4.38536002021917071e+00 +Toroidal_field_in_plasma_at_point_702____________________________________ b_plasma_toroidal_profile702___ 4.38278494093542470e+00 +Toroidal_field_in_plasma_at_point_703____________________________________ b_plasma_toroidal_profile703___ 4.38021288404520526e+00 +Toroidal_field_in_plasma_at_point_704____________________________________ b_plasma_toroidal_profile704___ 4.37764384423051567e+00 +Toroidal_field_in_plasma_at_point_705____________________________________ b_plasma_toroidal_profile705___ 4.37507781618583191e+00 +Toroidal_field_in_plasma_at_point_706____________________________________ b_plasma_toroidal_profile706___ 4.37251479461806003e+00 +Toroidal_field_in_plasma_at_point_707____________________________________ b_plasma_toroidal_profile707___ 4.36995477424650414e+00 +Toroidal_field_in_plasma_at_point_708____________________________________ b_plasma_toroidal_profile708___ 4.36739774980282558e+00 +Toroidal_field_in_plasma_at_point_709____________________________________ b_plasma_toroidal_profile709___ 4.36484371603101096e+00 +Toroidal_field_in_plasma_at_point_710____________________________________ b_plasma_toroidal_profile710___ 4.36229266768733481e+00 +Toroidal_field_in_plasma_at_point_711____________________________________ b_plasma_toroidal_profile711___ 4.35974459954032056e+00 +Toroidal_field_in_plasma_at_point_712____________________________________ b_plasma_toroidal_profile712___ 4.35719950637071118e+00 +Toroidal_field_in_plasma_at_point_713____________________________________ b_plasma_toroidal_profile713___ 4.35465738297142924e+00 +Toroidal_field_in_plasma_at_point_714____________________________________ b_plasma_toroidal_profile714___ 4.35211822414753868e+00 +Toroidal_field_in_plasma_at_point_715____________________________________ b_plasma_toroidal_profile715___ 4.34958202471621735e+00 +Toroidal_field_in_plasma_at_point_716____________________________________ b_plasma_toroidal_profile716___ 4.34704877950671431e+00 +Toroidal_field_in_plasma_at_point_717____________________________________ b_plasma_toroidal_profile717___ 4.34451848336031965e+00 +Toroidal_field_in_plasma_at_point_718____________________________________ b_plasma_toroidal_profile718___ 4.34199113113032453e+00 +Toroidal_field_in_plasma_at_point_719____________________________________ b_plasma_toroidal_profile719___ 4.33946671768199366e+00 +Toroidal_field_in_plasma_at_point_720____________________________________ b_plasma_toroidal_profile720___ 4.33694523789252084e+00 +Toroidal_field_in_plasma_at_point_721____________________________________ b_plasma_toroidal_profile721___ 4.33442668665100417e+00 +Toroidal_field_in_plasma_at_point_722____________________________________ b_plasma_toroidal_profile722___ 4.33191105885840422e+00 +Toroidal_field_in_plasma_at_point_723____________________________________ b_plasma_toroidal_profile723___ 4.32939834942751123e+00 +Toroidal_field_in_plasma_at_point_724____________________________________ b_plasma_toroidal_profile724___ 4.32688855328291577e+00 +Toroidal_field_in_plasma_at_point_725____________________________________ b_plasma_toroidal_profile725___ 4.32438166536096702e+00 +Toroidal_field_in_plasma_at_point_726____________________________________ b_plasma_toroidal_profile726___ 4.32187768060974431e+00 +Toroidal_field_in_plasma_at_point_727____________________________________ b_plasma_toroidal_profile727___ 4.31937659398902074e+00 +Toroidal_field_in_plasma_at_point_728____________________________________ b_plasma_toroidal_profile728___ 4.31687840047023119e+00 +Toroidal_field_in_plasma_at_point_729____________________________________ b_plasma_toroidal_profile729___ 4.31438309503643325e+00 +Toroidal_field_in_plasma_at_point_730____________________________________ b_plasma_toroidal_profile730___ 4.31189067268228143e+00 +Toroidal_field_in_plasma_at_point_731____________________________________ b_plasma_toroidal_profile731___ 4.30940112841398903e+00 +Toroidal_field_in_plasma_at_point_732____________________________________ b_plasma_toroidal_profile732___ 4.30691445724929611e+00 +Toroidal_field_in_plasma_at_point_733____________________________________ b_plasma_toroidal_profile733___ 4.30443065421743309e+00 +Toroidal_field_in_plasma_at_point_734____________________________________ b_plasma_toroidal_profile734___ 4.30194971435909501e+00 +Toroidal_field_in_plasma_at_point_735____________________________________ b_plasma_toroidal_profile735___ 4.29947163272639887e+00 +Toroidal_field_in_plasma_at_point_736____________________________________ b_plasma_toroidal_profile736___ 4.29699640438286057e+00 +Toroidal_field_in_plasma_at_point_737____________________________________ b_plasma_toroidal_profile737___ 4.29452402440335312e+00 +Toroidal_field_in_plasma_at_point_738____________________________________ b_plasma_toroidal_profile738___ 4.29205448787408272e+00 +Toroidal_field_in_plasma_at_point_739____________________________________ b_plasma_toroidal_profile739___ 4.28958778989254519e+00 +Toroidal_field_in_plasma_at_point_740____________________________________ b_plasma_toroidal_profile740___ 4.28712392556750643e+00 +Toroidal_field_in_plasma_at_point_741____________________________________ b_plasma_toroidal_profile741___ 4.28466289001895984e+00 +Toroidal_field_in_plasma_at_point_742____________________________________ b_plasma_toroidal_profile742___ 4.28220467837810048e+00 +Toroidal_field_in_plasma_at_point_743____________________________________ b_plasma_toroidal_profile743___ 4.27974928578728786e+00 +Toroidal_field_in_plasma_at_point_744____________________________________ b_plasma_toroidal_profile744___ 4.27729670740001655e+00 +Toroidal_field_in_plasma_at_point_745____________________________________ b_plasma_toroidal_profile745___ 4.27484693838088692e+00 +Toroidal_field_in_plasma_at_point_746____________________________________ b_plasma_toroidal_profile746___ 4.27239997390556869e+00 +Toroidal_field_in_plasma_at_point_747____________________________________ b_plasma_toroidal_profile747___ 4.26995580916077166e+00 +Toroidal_field_in_plasma_at_point_748____________________________________ b_plasma_toroidal_profile748___ 4.26751443934421371e+00 +Toroidal_field_in_plasma_at_point_749____________________________________ b_plasma_toroidal_profile749___ 4.26507585966458791e+00 +Toroidal_field_in_plasma_at_point_750____________________________________ b_plasma_toroidal_profile750___ 4.26264006534153594e+00 +Toroidal_field_in_plasma_at_point_751____________________________________ b_plasma_toroidal_profile751___ 4.26020705160561075e+00 +Toroidal_field_in_plasma_at_point_752____________________________________ b_plasma_toroidal_profile752___ 4.25777681369824812e+00 +Toroidal_field_in_plasma_at_point_753____________________________________ b_plasma_toroidal_profile753___ 4.25534934687173827e+00 +Toroidal_field_in_plasma_at_point_754____________________________________ b_plasma_toroidal_profile754___ 4.25292464638919032e+00 +Toroidal_field_in_plasma_at_point_755____________________________________ b_plasma_toroidal_profile755___ 4.25050270752450388e+00 +Toroidal_field_in_plasma_at_point_756____________________________________ b_plasma_toroidal_profile756___ 4.24808352556233793e+00 +Toroidal_field_in_plasma_at_point_757____________________________________ b_plasma_toroidal_profile757___ 4.24566709579808155e+00 +Toroidal_field_in_plasma_at_point_758____________________________________ b_plasma_toroidal_profile758___ 4.24325341353782193e+00 +Toroidal_field_in_plasma_at_point_759____________________________________ b_plasma_toroidal_profile759___ 4.24084247409831150e+00 +Toroidal_field_in_plasma_at_point_760____________________________________ b_plasma_toroidal_profile760___ 4.23843427280694396e+00 +Toroidal_field_in_plasma_at_point_761____________________________________ b_plasma_toroidal_profile761___ 4.23602880500171963e+00 +Toroidal_field_in_plasma_at_point_762____________________________________ b_plasma_toroidal_profile762___ 4.23362606603121350e+00 +Toroidal_field_in_plasma_at_point_763____________________________________ b_plasma_toroidal_profile763___ 4.23122605125455209e+00 +Toroidal_field_in_plasma_at_point_764____________________________________ b_plasma_toroidal_profile764___ 4.22882875604137620e+00 +Toroidal_field_in_plasma_at_point_765____________________________________ b_plasma_toroidal_profile765___ 4.22643417577181690e+00 +Toroidal_field_in_plasma_at_point_766____________________________________ b_plasma_toroidal_profile766___ 4.22404230583646179e+00 +Toroidal_field_in_plasma_at_point_767____________________________________ b_plasma_toroidal_profile767___ 4.22165314163632832e+00 +Toroidal_field_in_plasma_at_point_768____________________________________ b_plasma_toroidal_profile768___ 4.21926667858283189e+00 +Toroidal_field_in_plasma_at_point_769____________________________________ b_plasma_toroidal_profile769___ 4.21688291209775645e+00 +Toroidal_field_in_plasma_at_point_770____________________________________ b_plasma_toroidal_profile770___ 4.21450183761322972e+00 +Toroidal_field_in_plasma_at_point_771____________________________________ b_plasma_toroidal_profile771___ 4.21212345057168758e+00 +Toroidal_field_in_plasma_at_point_772____________________________________ b_plasma_toroidal_profile772___ 4.20974774642584837e+00 +Toroidal_field_in_plasma_at_point_773____________________________________ b_plasma_toroidal_profile773___ 4.20737472063868623e+00 +Toroidal_field_in_plasma_at_point_774____________________________________ b_plasma_toroidal_profile774___ 4.20500436868339644e+00 +Toroidal_field_in_plasma_at_point_775____________________________________ b_plasma_toroidal_profile775___ 4.20263668604337237e+00 +Toroidal_field_in_plasma_at_point_776____________________________________ b_plasma_toroidal_profile776___ 4.20027166821217079e+00 +Toroidal_field_in_plasma_at_point_777____________________________________ b_plasma_toroidal_profile777___ 4.19790931069349149e+00 +Toroidal_field_in_plasma_at_point_778____________________________________ b_plasma_toroidal_profile778___ 4.19554960900114082e+00 +Toroidal_field_in_plasma_at_point_779____________________________________ b_plasma_toroidal_profile779___ 4.19319255865900509e+00 +Toroidal_field_in_plasma_at_point_780____________________________________ b_plasma_toroidal_profile780___ 4.19083815520102743e+00 +Toroidal_field_in_plasma_at_point_781____________________________________ b_plasma_toroidal_profile781___ 4.18848639417117230e+00 +Toroidal_field_in_plasma_at_point_782____________________________________ b_plasma_toroidal_profile782___ 4.18613727112340417e+00 +Toroidal_field_in_plasma_at_point_783____________________________________ b_plasma_toroidal_profile783___ 4.18379078162165285e+00 +Toroidal_field_in_plasma_at_point_784____________________________________ b_plasma_toroidal_profile784___ 4.18144692123979222e+00 +Toroidal_field_in_plasma_at_point_785____________________________________ b_plasma_toroidal_profile785___ 4.17910568556160644e+00 +Toroidal_field_in_plasma_at_point_786____________________________________ b_plasma_toroidal_profile786___ 4.17676707018076598e+00 +Toroidal_field_in_plasma_at_point_787____________________________________ b_plasma_toroidal_profile787___ 4.17443107070079922e+00 +Toroidal_field_in_plasma_at_point_788____________________________________ b_plasma_toroidal_profile788___ 4.17209768273506398e+00 +Toroidal_field_in_plasma_at_point_789____________________________________ b_plasma_toroidal_profile789___ 4.16976690190672006e+00 +Toroidal_field_in_plasma_at_point_790____________________________________ b_plasma_toroidal_profile790___ 4.16743872384870429e+00 +Toroidal_field_in_plasma_at_point_791____________________________________ b_plasma_toroidal_profile791___ 4.16511314420369949e+00 +Toroidal_field_in_plasma_at_point_792____________________________________ b_plasma_toroidal_profile792___ 4.16279015862410962e+00 +Toroidal_field_in_plasma_at_point_793____________________________________ b_plasma_toroidal_profile793___ 4.16046976277203395e+00 +Toroidal_field_in_plasma_at_point_794____________________________________ b_plasma_toroidal_profile794___ 4.15815195231923607e+00 +Toroidal_field_in_plasma_at_point_795____________________________________ b_plasma_toroidal_profile795___ 4.15583672294712070e+00 +Toroidal_field_in_plasma_at_point_796____________________________________ b_plasma_toroidal_profile796___ 4.15352407034670446e+00 +Toroidal_field_in_plasma_at_point_797____________________________________ b_plasma_toroidal_profile797___ 4.15121399021859272e+00 +Toroidal_field_in_plasma_at_point_798____________________________________ b_plasma_toroidal_profile798___ 4.14890647827294590e+00 +Toroidal_field_in_plasma_at_point_799____________________________________ b_plasma_toroidal_profile799___ 4.14660153022946076e+00 +Toroidal_field_in_plasma_at_point_800____________________________________ b_plasma_toroidal_profile800___ 4.14429914181734027e+00 +Toroidal_field_in_plasma_at_point_801____________________________________ b_plasma_toroidal_profile801___ 4.14199930877526601e+00 +Toroidal_field_in_plasma_at_point_802____________________________________ b_plasma_toroidal_profile802___ 4.13970202685137512e+00 +Toroidal_field_in_plasma_at_point_803____________________________________ b_plasma_toroidal_profile803___ 4.13740729180323097e+00 +Toroidal_field_in_plasma_at_point_804____________________________________ b_plasma_toroidal_profile804___ 4.13511509939780009e+00 +Toroidal_field_in_plasma_at_point_805____________________________________ b_plasma_toroidal_profile805___ 4.13282544541142194e+00 +Toroidal_field_in_plasma_at_point_806____________________________________ b_plasma_toroidal_profile806___ 4.13053832562978851e+00 +Toroidal_field_in_plasma_at_point_807____________________________________ b_plasma_toroidal_profile807___ 4.12825373584791411e+00 +Toroidal_field_in_plasma_at_point_808____________________________________ b_plasma_toroidal_profile808___ 4.12597167187010960e+00 +Toroidal_field_in_plasma_at_point_809____________________________________ b_plasma_toroidal_profile809___ 4.12369212950996111e+00 +Toroidal_field_in_plasma_at_point_810____________________________________ b_plasma_toroidal_profile810___ 4.12141510459029803e+00 +Toroidal_field_in_plasma_at_point_811____________________________________ b_plasma_toroidal_profile811___ 4.11914059294317259e+00 +Toroidal_field_in_plasma_at_point_812____________________________________ b_plasma_toroidal_profile812___ 4.11686859040983411e+00 +Toroidal_field_in_plasma_at_point_813____________________________________ b_plasma_toroidal_profile813___ 4.11459909284069969e+00 +Toroidal_field_in_plasma_at_point_814____________________________________ b_plasma_toroidal_profile814___ 4.11233209609533290e+00 +Toroidal_field_in_plasma_at_point_815____________________________________ b_plasma_toroidal_profile815___ 4.11006759604241623e+00 +Toroidal_field_in_plasma_at_point_816____________________________________ b_plasma_toroidal_profile816___ 4.10780558855972888e+00 +Toroidal_field_in_plasma_at_point_817____________________________________ b_plasma_toroidal_profile817___ 4.10554606953411927e+00 +Toroidal_field_in_plasma_at_point_818____________________________________ b_plasma_toroidal_profile818___ 4.10328903486147833e+00 +Toroidal_field_in_plasma_at_point_819____________________________________ b_plasma_toroidal_profile819___ 4.10103448044672003e+00 +Toroidal_field_in_plasma_at_point_820____________________________________ b_plasma_toroidal_profile820___ 4.09878240220375023e+00 +Toroidal_field_in_plasma_at_point_821____________________________________ b_plasma_toroidal_profile821___ 4.09653279605544984e+00 +Toroidal_field_in_plasma_at_point_822____________________________________ b_plasma_toroidal_profile822___ 4.09428565793364196e+00 +Toroidal_field_in_plasma_at_point_823____________________________________ b_plasma_toroidal_profile823___ 4.09204098377907233e+00 +Toroidal_field_in_plasma_at_point_824____________________________________ b_plasma_toroidal_profile824___ 4.08979876954138533e+00 +Toroidal_field_in_plasma_at_point_825____________________________________ b_plasma_toroidal_profile825___ 4.08755901117909559e+00 +Toroidal_field_in_plasma_at_point_826____________________________________ b_plasma_toroidal_profile826___ 4.08532170465956757e+00 +Toroidal_field_in_plasma_at_point_827____________________________________ b_plasma_toroidal_profile827___ 4.08308684595898708e+00 +Toroidal_field_in_plasma_at_point_828____________________________________ b_plasma_toroidal_profile828___ 4.08085443106234447e+00 +Toroidal_field_in_plasma_at_point_829____________________________________ b_plasma_toroidal_profile829___ 4.07862445596340439e+00 +Toroidal_field_in_plasma_at_point_830____________________________________ b_plasma_toroidal_profile830___ 4.07639691666468007e+00 +Toroidal_field_in_plasma_at_point_831____________________________________ b_plasma_toroidal_profile831___ 4.07417180917741728e+00 +Toroidal_field_in_plasma_at_point_832____________________________________ b_plasma_toroidal_profile832___ 4.07194912952156507e+00 +Toroidal_field_in_plasma_at_point_833____________________________________ b_plasma_toroidal_profile833___ 4.06972887372575176e+00 +Toroidal_field_in_plasma_at_point_834____________________________________ b_plasma_toroidal_profile834___ 4.06751103782726364e+00 +Toroidal_field_in_plasma_at_point_835____________________________________ b_plasma_toroidal_profile835___ 4.06529561787201921e+00 +Toroidal_field_in_plasma_at_point_836____________________________________ b_plasma_toroidal_profile836___ 4.06308260991455050e+00 +Toroidal_field_in_plasma_at_point_837____________________________________ b_plasma_toroidal_profile837___ 4.06087201001797027e+00 +Toroidal_field_in_plasma_at_point_838____________________________________ b_plasma_toroidal_profile838___ 4.05866381425395861e+00 +Toroidal_field_in_plasma_at_point_839____________________________________ b_plasma_toroidal_profile839___ 4.05645801870273370e+00 +Toroidal_field_in_plasma_at_point_840____________________________________ b_plasma_toroidal_profile840___ 4.05425461945303045e+00 +Toroidal_field_in_plasma_at_point_841____________________________________ b_plasma_toroidal_profile841___ 4.05205361260207919e+00 +Toroidal_field_in_plasma_at_point_842____________________________________ b_plasma_toroidal_profile842___ 4.04985499425557727e+00 +Toroidal_field_in_plasma_at_point_843____________________________________ b_plasma_toroidal_profile843___ 4.04765876052767304e+00 +Toroidal_field_in_plasma_at_point_844____________________________________ b_plasma_toroidal_profile844___ 4.04546490754093657e+00 +Toroidal_field_in_plasma_at_point_845____________________________________ b_plasma_toroidal_profile845___ 4.04327343142634277e+00 +Toroidal_field_in_plasma_at_point_846____________________________________ b_plasma_toroidal_profile846___ 4.04108432832324294e+00 +Toroidal_field_in_plasma_at_point_847____________________________________ b_plasma_toroidal_profile847___ 4.03889759437934437e+00 +Toroidal_field_in_plasma_at_point_848____________________________________ b_plasma_toroidal_profile848___ 4.03671322575069258e+00 +Toroidal_field_in_plasma_at_point_849____________________________________ b_plasma_toroidal_profile849___ 4.03453121860163755e+00 +Toroidal_field_in_plasma_at_point_850____________________________________ b_plasma_toroidal_profile850___ 4.03235156910482395e+00 +Toroidal_field_in_plasma_at_point_851____________________________________ b_plasma_toroidal_profile851___ 4.03017427344116008e+00 +Toroidal_field_in_plasma_at_point_852____________________________________ b_plasma_toroidal_profile852___ 4.02799932779980008e+00 +Toroidal_field_in_plasma_at_point_853____________________________________ b_plasma_toroidal_profile853___ 4.02582672837811639e+00 +Toroidal_field_in_plasma_at_point_854____________________________________ b_plasma_toroidal_profile854___ 4.02365647138168647e+00 +Toroidal_field_in_plasma_at_point_855____________________________________ b_plasma_toroidal_profile855___ 4.02148855302426167e+00 +Toroidal_field_in_plasma_at_point_856____________________________________ b_plasma_toroidal_profile856___ 4.01932296952774859e+00 +Toroidal_field_in_plasma_at_point_857____________________________________ b_plasma_toroidal_profile857___ 4.01715971712218956e+00 +Toroidal_field_in_plasma_at_point_858____________________________________ b_plasma_toroidal_profile858___ 4.01499879204573951e+00 +Toroidal_field_in_plasma_at_point_859____________________________________ b_plasma_toroidal_profile859___ 4.01284019054463936e+00 +Toroidal_field_in_plasma_at_point_860____________________________________ b_plasma_toroidal_profile860___ 4.01068390887320181e+00 +Toroidal_field_in_plasma_at_point_861____________________________________ b_plasma_toroidal_profile861___ 4.00852994329378554e+00 +Toroidal_field_in_plasma_at_point_862____________________________________ b_plasma_toroidal_profile862___ 4.00637829007677304e+00 +Toroidal_field_in_plasma_at_point_863____________________________________ b_plasma_toroidal_profile863___ 4.00422894550055197e+00 +Toroidal_field_in_plasma_at_point_864____________________________________ b_plasma_toroidal_profile864___ 4.00208190585148937e+00 +Toroidal_field_in_plasma_at_point_865____________________________________ b_plasma_toroidal_profile865___ 3.99993716742391703e+00 +Toroidal_field_in_plasma_at_point_866____________________________________ b_plasma_toroidal_profile866___ 3.99779472652010126e+00 +Toroidal_field_in_plasma_at_point_867____________________________________ b_plasma_toroidal_profile867___ 3.99565457945022962e+00 +Toroidal_field_in_plasma_at_point_868____________________________________ b_plasma_toroidal_profile868___ 3.99351672253238599e+00 +Toroidal_field_in_plasma_at_point_869____________________________________ b_plasma_toroidal_profile869___ 3.99138115209252931e+00 +Toroidal_field_in_plasma_at_point_870____________________________________ b_plasma_toroidal_profile870___ 3.98924786446447310e+00 +Toroidal_field_in_plasma_at_point_871____________________________________ b_plasma_toroidal_profile871___ 3.98711685598986598e+00 +Toroidal_field_in_plasma_at_point_872____________________________________ b_plasma_toroidal_profile872___ 3.98498812301816807e+00 +Toroidal_field_in_plasma_at_point_873____________________________________ b_plasma_toroidal_profile873___ 3.98286166190663193e+00 +Toroidal_field_in_plasma_at_point_874____________________________________ b_plasma_toroidal_profile874___ 3.98073746902028169e+00 +Toroidal_field_in_plasma_at_point_875____________________________________ b_plasma_toroidal_profile875___ 3.97861554073189172e+00 +Toroidal_field_in_plasma_at_point_876____________________________________ b_plasma_toroidal_profile876___ 3.97649587342196531e+00 +Toroidal_field_in_plasma_at_point_877____________________________________ b_plasma_toroidal_profile877___ 3.97437846347871648e+00 +Toroidal_field_in_plasma_at_point_878____________________________________ b_plasma_toroidal_profile878___ 3.97226330729804644e+00 +Toroidal_field_in_plasma_at_point_879____________________________________ b_plasma_toroidal_profile879___ 3.97015040128352625e+00 +Toroidal_field_in_plasma_at_point_880____________________________________ b_plasma_toroidal_profile880___ 3.96803974184637376e+00 +Toroidal_field_in_plasma_at_point_881____________________________________ b_plasma_toroidal_profile881___ 3.96593132540543492e+00 +Toroidal_field_in_plasma_at_point_882____________________________________ b_plasma_toroidal_profile882___ 3.96382514838716338e+00 +Toroidal_field_in_plasma_at_point_883____________________________________ b_plasma_toroidal_profile883___ 3.96172120722559873e+00 +Toroidal_field_in_plasma_at_point_884____________________________________ b_plasma_toroidal_profile884___ 3.95961949836234917e+00 +Toroidal_field_in_plasma_at_point_885____________________________________ b_plasma_toroidal_profile885___ 3.95752001824656885e+00 +Toroidal_field_in_plasma_at_point_886____________________________________ b_plasma_toroidal_profile886___ 3.95542276333493836e+00 +Toroidal_field_in_plasma_at_point_887____________________________________ b_plasma_toroidal_profile887___ 3.95332773009164695e+00 +Toroidal_field_in_plasma_at_point_888____________________________________ b_plasma_toroidal_profile888___ 3.95123491498836943e+00 +Toroidal_field_in_plasma_at_point_889____________________________________ b_plasma_toroidal_profile889___ 3.94914431450424841e+00 +Toroidal_field_in_plasma_at_point_890____________________________________ b_plasma_toroidal_profile890___ 3.94705592512587478e+00 +Toroidal_field_in_plasma_at_point_891____________________________________ b_plasma_toroidal_profile891___ 3.94496974334726680e+00 +Toroidal_field_in_plasma_at_point_892____________________________________ b_plasma_toroidal_profile892___ 3.94288576566985105e+00 +Toroidal_field_in_plasma_at_point_893____________________________________ b_plasma_toroidal_profile893___ 3.94080398860244374e+00 +Toroidal_field_in_plasma_at_point_894____________________________________ b_plasma_toroidal_profile894___ 3.93872440866122897e+00 +Toroidal_field_in_plasma_at_point_895____________________________________ b_plasma_toroidal_profile895___ 3.93664702236974096e+00 +Toroidal_field_in_plasma_at_point_896____________________________________ b_plasma_toroidal_profile896___ 3.93457182625884494e+00 +Toroidal_field_in_plasma_at_point_897____________________________________ b_plasma_toroidal_profile897___ 3.93249881686671721e+00 +Toroidal_field_in_plasma_at_point_898____________________________________ b_plasma_toroidal_profile898___ 3.93042799073882554e+00 +Toroidal_field_in_plasma_at_point_899____________________________________ b_plasma_toroidal_profile899___ 3.92835934442791013e+00 +Toroidal_field_in_plasma_at_point_900____________________________________ b_plasma_toroidal_profile900___ 3.92629287449396580e+00 +Toroidal_field_in_plasma_at_point_901____________________________________ b_plasma_toroidal_profile901___ 3.92422857750422116e+00 +Toroidal_field_in_plasma_at_point_902____________________________________ b_plasma_toroidal_profile902___ 3.92216645003312037e+00 +Toroidal_field_in_plasma_at_point_903____________________________________ b_plasma_toroidal_profile903___ 3.92010648866230449e+00 +Toroidal_field_in_plasma_at_point_904____________________________________ b_plasma_toroidal_profile904___ 3.91804868998059286e+00 +Toroidal_field_in_plasma_at_point_905____________________________________ b_plasma_toroidal_profile905___ 3.91599305058396041e+00 +Toroidal_field_in_plasma_at_point_906____________________________________ b_plasma_toroidal_profile906___ 3.91393956707552615e+00 +Toroidal_field_in_plasma_at_point_907____________________________________ b_plasma_toroidal_profile907___ 3.91188823606552916e+00 +Toroidal_field_in_plasma_at_point_908____________________________________ b_plasma_toroidal_profile908___ 3.90983905417130906e+00 +Toroidal_field_in_plasma_at_point_909____________________________________ b_plasma_toroidal_profile909___ 3.90779201801729270e+00 +Toroidal_field_in_plasma_at_point_910____________________________________ b_plasma_toroidal_profile910___ 3.90574712423497061e+00 +Toroidal_field_in_plasma_at_point_911____________________________________ b_plasma_toroidal_profile911___ 3.90370436946288102e+00 +Toroidal_field_in_plasma_at_point_912____________________________________ b_plasma_toroidal_profile912___ 3.90166375034659074e+00 +Toroidal_field_in_plasma_at_point_913____________________________________ b_plasma_toroidal_profile913___ 3.89962526353867700e+00 +Toroidal_field_in_plasma_at_point_914____________________________________ b_plasma_toroidal_profile914___ 3.89758890569870964e+00 +Toroidal_field_in_plasma_at_point_915____________________________________ b_plasma_toroidal_profile915___ 3.89555467349322981e+00 +Toroidal_field_in_plasma_at_point_916____________________________________ b_plasma_toroidal_profile916___ 3.89352256359573801e+00 +Toroidal_field_in_plasma_at_point_917____________________________________ b_plasma_toroidal_profile917___ 3.89149257268666826e+00 +Toroidal_field_in_plasma_at_point_918____________________________________ b_plasma_toroidal_profile918___ 3.88946469745337620e+00 +Toroidal_field_in_plasma_at_point_919____________________________________ b_plasma_toroidal_profile919___ 3.88743893459011947e+00 +Toroidal_field_in_plasma_at_point_920____________________________________ b_plasma_toroidal_profile920___ 3.88541528079803689e+00 +Toroidal_field_in_plasma_at_point_921____________________________________ b_plasma_toroidal_profile921___ 3.88339373278513467e+00 +Toroidal_field_in_plasma_at_point_922____________________________________ b_plasma_toroidal_profile922___ 3.88137428726626510e+00 +Toroidal_field_in_plasma_at_point_923____________________________________ b_plasma_toroidal_profile923___ 3.87935694096311234e+00 +Toroidal_field_in_plasma_at_point_924____________________________________ b_plasma_toroidal_profile924___ 3.87734169060417067e+00 +Toroidal_field_in_plasma_at_point_925____________________________________ b_plasma_toroidal_profile925___ 3.87532853292472934e+00 +Toroidal_field_in_plasma_at_point_926____________________________________ b_plasma_toroidal_profile926___ 3.87331746466685489e+00 +Toroidal_field_in_plasma_at_point_927____________________________________ b_plasma_toroidal_profile927___ 3.87130848257937199e+00 +Toroidal_field_in_plasma_at_point_928____________________________________ b_plasma_toroidal_profile928___ 3.86930158341784836e+00 +Toroidal_field_in_plasma_at_point_929____________________________________ b_plasma_toroidal_profile929___ 3.86729676394457433e+00 +Toroidal_field_in_plasma_at_point_930____________________________________ b_plasma_toroidal_profile930___ 3.86529402092854912e+00 +Toroidal_field_in_plasma_at_point_931____________________________________ b_plasma_toroidal_profile931___ 3.86329335114545991e+00 +Toroidal_field_in_plasma_at_point_932____________________________________ b_plasma_toroidal_profile932___ 3.86129475137766587e+00 +Toroidal_field_in_plasma_at_point_933____________________________________ b_plasma_toroidal_profile933___ 3.85929821841418264e+00 +Toroidal_field_in_plasma_at_point_934____________________________________ b_plasma_toroidal_profile934___ 3.85730374905066098e+00 +Toroidal_field_in_plasma_at_point_935____________________________________ b_plasma_toroidal_profile935___ 3.85531134008937437e+00 +Toroidal_field_in_plasma_at_point_936____________________________________ b_plasma_toroidal_profile936___ 3.85332098833919945e+00 +Toroidal_field_in_plasma_at_point_937____________________________________ b_plasma_toroidal_profile937___ 3.85133269061559824e+00 +Toroidal_field_in_plasma_at_point_938____________________________________ b_plasma_toroidal_profile938___ 3.84934644374060309e+00 +Toroidal_field_in_plasma_at_point_939____________________________________ b_plasma_toroidal_profile939___ 3.84736224454279840e+00 +Toroidal_field_in_plasma_at_point_940____________________________________ b_plasma_toroidal_profile940___ 3.84538008985730473e+00 +Toroidal_field_in_plasma_at_point_941____________________________________ b_plasma_toroidal_profile941___ 3.84339997652576137e+00 +Toroidal_field_in_plasma_at_point_942____________________________________ b_plasma_toroidal_profile942___ 3.84142190139630868e+00 +Toroidal_field_in_plasma_at_point_943____________________________________ b_plasma_toroidal_profile943___ 3.83944586132357468e+00 +Toroidal_field_in_plasma_at_point_944____________________________________ b_plasma_toroidal_profile944___ 3.83747185316865247e+00 +Toroidal_field_in_plasma_at_point_945____________________________________ b_plasma_toroidal_profile945___ 3.83549987379909041e+00 +Toroidal_field_in_plasma_at_point_946____________________________________ b_plasma_toroidal_profile946___ 3.83352992008886995e+00 +Toroidal_field_in_plasma_at_point_947____________________________________ b_plasma_toroidal_profile947___ 3.83156198891839272e+00 +Toroidal_field_in_plasma_at_point_948____________________________________ b_plasma_toroidal_profile948___ 3.82959607717446326e+00 +Toroidal_field_in_plasma_at_point_949____________________________________ b_plasma_toroidal_profile949___ 3.82763218175027120e+00 +Toroidal_field_in_plasma_at_point_950____________________________________ b_plasma_toroidal_profile950___ 3.82567029954537574e+00 +Toroidal_field_in_plasma_at_point_951____________________________________ b_plasma_toroidal_profile951___ 3.82371042746569056e+00 +Toroidal_field_in_plasma_at_point_952____________________________________ b_plasma_toroidal_profile952___ 3.82175256242346562e+00 +Toroidal_field_in_plasma_at_point_953____________________________________ b_plasma_toroidal_profile953___ 3.81979670133727156e+00 +Toroidal_field_in_plasma_at_point_954____________________________________ b_plasma_toroidal_profile954___ 3.81784284113198380e+00 +Toroidal_field_in_plasma_at_point_955____________________________________ b_plasma_toroidal_profile955___ 3.81589097873876781e+00 +Toroidal_field_in_plasma_at_point_956____________________________________ b_plasma_toroidal_profile956___ 3.81394111109505829e+00 +Toroidal_field_in_plasma_at_point_957____________________________________ b_plasma_toroidal_profile957___ 3.81199323514455024e+00 +Toroidal_field_in_plasma_at_point_958____________________________________ b_plasma_toroidal_profile958___ 3.81004734783717636e+00 +Toroidal_field_in_plasma_at_point_959____________________________________ b_plasma_toroidal_profile959___ 3.80810344612909635e+00 +Toroidal_field_in_plasma_at_point_960____________________________________ b_plasma_toroidal_profile960___ 3.80616152698267651e+00 +Toroidal_field_in_plasma_at_point_961____________________________________ b_plasma_toroidal_profile961___ 3.80422158736647731e+00 +Toroidal_field_in_plasma_at_point_962____________________________________ b_plasma_toroidal_profile962___ 3.80228362425523647e+00 +Toroidal_field_in_plasma_at_point_963____________________________________ b_plasma_toroidal_profile963___ 3.80034763462985170e+00 +Toroidal_field_in_plasma_at_point_964____________________________________ b_plasma_toroidal_profile964___ 3.79841361547736822e+00 +Toroidal_field_in_plasma_at_point_965____________________________________ b_plasma_toroidal_profile965___ 3.79648156379096102e+00 +Toroidal_field_in_plasma_at_point_966____________________________________ b_plasma_toroidal_profile966___ 3.79455147656991842e+00 +Toroidal_field_in_plasma_at_point_967____________________________________ b_plasma_toroidal_profile967___ 3.79262335081962876e+00 +Toroidal_field_in_plasma_at_point_968____________________________________ b_plasma_toroidal_profile968___ 3.79069718355156349e+00 +Toroidal_field_in_plasma_at_point_969____________________________________ b_plasma_toroidal_profile969___ 3.78877297178326344e+00 +Toroidal_field_in_plasma_at_point_970____________________________________ b_plasma_toroidal_profile970___ 3.78685071253831973e+00 +Toroidal_field_in_plasma_at_point_971____________________________________ b_plasma_toroidal_profile971___ 3.78493040284636306e+00 +Toroidal_field_in_plasma_at_point_972____________________________________ b_plasma_toroidal_profile972___ 3.78301203974304556e+00 +Toroidal_field_in_plasma_at_point_973____________________________________ b_plasma_toroidal_profile973___ 3.78109562027002477e+00 +Toroidal_field_in_plasma_at_point_974____________________________________ b_plasma_toroidal_profile974___ 3.77918114147495121e+00 +Toroidal_field_in_plasma_at_point_975____________________________________ b_plasma_toroidal_profile975___ 3.77726860041145240e+00 +Toroidal_field_in_plasma_at_point_976____________________________________ b_plasma_toroidal_profile976___ 3.77535799413911466e+00 +Toroidal_field_in_plasma_at_point_977____________________________________ b_plasma_toroidal_profile977___ 3.77344931972347286e+00 +Toroidal_field_in_plasma_at_point_978____________________________________ b_plasma_toroidal_profile978___ 3.77154257423599226e+00 +Toroidal_field_in_plasma_at_point_979____________________________________ b_plasma_toroidal_profile979___ 3.76963775475405471e+00 +Toroidal_field_in_plasma_at_point_980____________________________________ b_plasma_toroidal_profile980___ 3.76773485836094313e+00 +Toroidal_field_in_plasma_at_point_981____________________________________ b_plasma_toroidal_profile981___ 3.76583388214582637e+00 +Toroidal_field_in_plasma_at_point_982____________________________________ b_plasma_toroidal_profile982___ 3.76393482320374639e+00 +Toroidal_field_in_plasma_at_point_983____________________________________ b_plasma_toroidal_profile983___ 3.76203767863559912e+00 +Toroidal_field_in_plasma_at_point_984____________________________________ b_plasma_toroidal_profile984___ 3.76014244554812560e+00 +Toroidal_field_in_plasma_at_point_985____________________________________ b_plasma_toroidal_profile985___ 3.75824912105389197e+00 +Toroidal_field_in_plasma_at_point_986____________________________________ b_plasma_toroidal_profile986___ 3.75635770227127797e+00 +Toroidal_field_in_plasma_at_point_987____________________________________ b_plasma_toroidal_profile987___ 3.75446818632446133e+00 +Toroidal_field_in_plasma_at_point_988____________________________________ b_plasma_toroidal_profile988___ 3.75258057034340320e+00 +Toroidal_field_in_plasma_at_point_989____________________________________ b_plasma_toroidal_profile989___ 3.75069485146383341e+00 +Toroidal_field_in_plasma_at_point_990____________________________________ b_plasma_toroidal_profile990___ 3.74881102682723677e+00 +Toroidal_field_in_plasma_at_point_991____________________________________ b_plasma_toroidal_profile991___ 3.74692909358083748e+00 +Toroidal_field_in_plasma_at_point_992____________________________________ b_plasma_toroidal_profile992___ 3.74504904887758583e+00 +Toroidal_field_in_plasma_at_point_993____________________________________ b_plasma_toroidal_profile993___ 3.74317088987614266e+00 +Toroidal_field_in_plasma_at_point_994____________________________________ b_plasma_toroidal_profile994___ 3.74129461374086691e+00 +Toroidal_field_in_plasma_at_point_995____________________________________ b_plasma_toroidal_profile995___ 3.73942021764179833e+00 +Toroidal_field_in_plasma_at_point_996____________________________________ b_plasma_toroidal_profile996___ 3.73754769875464632e+00 +Toroidal_field_in_plasma_at_point_997____________________________________ b_plasma_toroidal_profile997___ 3.73567705426077534e+00 +Toroidal_field_in_plasma_at_point_998____________________________________ b_plasma_toroidal_profile998___ 3.73380828134718801e+00 +Toroidal_field_in_plasma_at_point_999____________________________________ b_plasma_toroidal_profile999___ 3.73194137720651398e+00 +Toroidal_field_in_plasma_at_point_1000___________________________________ b_plasma_toroidal_profile1000__ 3.73007633903699576e+00 +Toroidal_field_in_plasma_at_point_1001___________________________________ b_plasma_toroidal_profile1001__ 3.72821316404247227e+00 +Plasma_surface_averaged_poloidal_field_(⟨Bₚₒₗ(a)⟩)_(T)___________________ (b_plasma_surface_poloidal_average)_ 8.58456110649400528e-01 OP +Total_field_(Bₜₒₜ)_(T)___________________________________________________ (b_plasma_total)_______________ 5.04453165307450035e+00 OP # Plasma Beta: # Beta_component_for_limits________________________________________________ (i_beta_component)_____________ 1 -Upper_limit_on_volume_averaged_thermal_beta_(⟨βₜₕ⟩<)_____________________ (beta_vol_avg_max)_____________ 4.53327661549761812e-02 OP -Volume_averaged_total_plasma_beta_(⟨β⟩)__________________________________ (beta_total_vol_avg)___________ 3.85026848015826151e-02 +Upper_limit_on_volume_averaged_thermal_beta_(⟨βₜₕ⟩<)_____________________ (beta_vol_avg_max)_____________ 4.46769654580279826e-02 OP +Volume_averaged_total_plasma_beta_(⟨β⟩)__________________________________ (beta_total_vol_avg)___________ 3.78126882594035166e-02 Lower_limit_on_volume_averaged_thermal_beta_(⟨βₜₕ⟩>)_____________________ (beta_vol_avg_min)_____________ 0.00000000000000000e+00 IP Upper_limit_on_volume_averaged_poloidal_beta_(⟨βₚ⟩<)_____________________ (beta_poloidal_max)____________ 1.90000000000000002e-01 IP -Volume_averaged_poloidal_beta_(⟨βₚ⟩)_____________________________________ (beta_poloidal_vol_avg)________ 1.29244240755343642e+00 OP -Volume_averaged_toroidal_beta_(⟨βₜ⟩)_____________________________________ (beta_toroidal_vol_avg)________ 3.96849240352809204e-02 OP -Beta_toroidal_profile_at_point_0_________________________________________ beta_thermal_toroidal_profile0_ 5.07957076431073508e-05 -Beta_toroidal_profile_at_point_1_________________________________________ beta_thermal_toroidal_profile1_ 1.45837582022161294e-04 -Beta_toroidal_profile_at_point_2_________________________________________ beta_thermal_toroidal_profile2_ 2.45542657024306232e-04 -Beta_toroidal_profile_at_point_3_________________________________________ beta_thermal_toroidal_profile3_ 3.49937139355763183e-04 -Beta_toroidal_profile_at_point_4_________________________________________ beta_thermal_toroidal_profile4_ 4.59047286822576240e-04 -Beta_toroidal_profile_at_point_5_________________________________________ beta_thermal_toroidal_profile5_ 5.72899408330611380e-04 -Beta_toroidal_profile_at_point_6_________________________________________ beta_thermal_toroidal_profile6_ 6.91519863885557955e-04 -Beta_toroidal_profile_at_point_7_________________________________________ beta_thermal_toroidal_profile7_ 8.14935064592926849e-04 -Beta_toroidal_profile_at_point_8_________________________________________ beta_thermal_toroidal_profile8_ 9.43171472658051939e-04 -Beta_toroidal_profile_at_point_9_________________________________________ beta_thermal_toroidal_profile9_ 1.07625560138609059e-03 -Beta_toroidal_profile_at_point_10________________________________________ beta_thermal_toroidal_profile10_ 1.21421401518202136e-03 -Beta_toroidal_profile_at_point_11________________________________________ beta_thermal_toroidal_profile11_ 1.35707332955064533e-03 -Beta_toroidal_profile_at_point_12________________________________________ beta_thermal_toroidal_profile12_ 1.50486021109658857e-03 -Beta_toroidal_profile_at_point_13________________________________________ beta_thermal_toroidal_profile13_ 1.65760137752429598e-03 -Beta_toroidal_profile_at_point_14________________________________________ beta_thermal_toroidal_profile14_ 1.81532359763803800e-03 -Beta_toroidal_profile_at_point_15________________________________________ beta_thermal_toroidal_profile15_ 1.97805369134190605e-03 -Beta_toroidal_profile_at_point_16________________________________________ beta_thermal_toroidal_profile16_ 2.14581852963981580e-03 -Beta_toroidal_profile_at_point_17________________________________________ beta_thermal_toroidal_profile17_ 2.31864503463550219e-03 -Beta_toroidal_profile_at_point_18________________________________________ beta_thermal_toroidal_profile18_ 2.49656017953252610e-03 -Beta_toroidal_profile_at_point_19________________________________________ beta_thermal_toroidal_profile19_ 2.67959098863426769e-03 -Beta_toroidal_profile_at_point_20________________________________________ beta_thermal_toroidal_profile20_ 2.86776453734393592e-03 -Beta_toroidal_profile_at_point_21________________________________________ beta_thermal_toroidal_profile21_ 3.06110795216455421e-03 -Beta_toroidal_profile_at_point_22________________________________________ beta_thermal_toroidal_profile22_ 3.25964841069897480e-03 -Beta_toroidal_profile_at_point_23________________________________________ beta_thermal_toroidal_profile23_ 3.46341314164986787e-03 -Beta_toroidal_profile_at_point_24________________________________________ beta_thermal_toroidal_profile24_ 3.67242942481972937e-03 -Beta_toroidal_profile_at_point_25________________________________________ beta_thermal_toroidal_profile25_ 3.88672459111087751e-03 -Beta_toroidal_profile_at_point_26________________________________________ beta_thermal_toroidal_profile26_ 4.10632602252545328e-03 -Beta_toroidal_profile_at_point_27________________________________________ beta_thermal_toroidal_profile27_ 4.33126115216541600e-03 -Beta_toroidal_profile_at_point_28________________________________________ beta_thermal_toroidal_profile28_ 4.56155746423255338e-03 -Beta_toroidal_profile_at_point_29________________________________________ beta_thermal_toroidal_profile29_ 4.79724249402847195e-03 -Beta_toroidal_profile_at_point_30________________________________________ beta_thermal_toroidal_profile30_ 5.03834382795460226e-03 -Beta_toroidal_profile_at_point_31________________________________________ beta_thermal_toroidal_profile31_ 5.06960810183743667e-03 -Beta_toroidal_profile_at_point_32________________________________________ beta_thermal_toroidal_profile32_ 5.10606680148317348e-03 -Beta_toroidal_profile_at_point_33________________________________________ beta_thermal_toroidal_profile33_ 5.14582223889404385e-03 -Beta_toroidal_profile_at_point_34________________________________________ beta_thermal_toroidal_profile34_ 5.18823852530327437e-03 -Beta_toroidal_profile_at_point_35________________________________________ beta_thermal_toroidal_profile35_ 5.23296058901020090e-03 -Beta_toroidal_profile_at_point_36________________________________________ beta_thermal_toroidal_profile36_ 5.27975549880229777e-03 -Beta_toroidal_profile_at_point_37________________________________________ beta_thermal_toroidal_profile37_ 5.32845645331960632e-03 -Beta_toroidal_profile_at_point_38________________________________________ beta_thermal_toroidal_profile38_ 5.37893712745172049e-03 -Beta_toroidal_profile_at_point_39________________________________________ beta_thermal_toroidal_profile39_ 5.43109803372664960e-03 -Beta_toroidal_profile_at_point_40________________________________________ beta_thermal_toroidal_profile40_ 5.48485851766138816e-03 -Beta_toroidal_profile_at_point_41________________________________________ beta_thermal_toroidal_profile41_ 5.54015171366797725e-03 -Beta_toroidal_profile_at_point_42________________________________________ beta_thermal_toroidal_profile42_ 5.59692119084256173e-03 -Beta_toroidal_profile_at_point_43________________________________________ beta_thermal_toroidal_profile43_ 5.65511862622001052e-03 -Beta_toroidal_profile_at_point_44________________________________________ beta_thermal_toroidal_profile44_ 5.71470213473959134e-03 -Beta_toroidal_profile_at_point_45________________________________________ beta_thermal_toroidal_profile45_ 5.77563503633820967e-03 -Beta_toroidal_profile_at_point_46________________________________________ beta_thermal_toroidal_profile46_ 5.83788492397386422e-03 -Beta_toroidal_profile_at_point_47________________________________________ beta_thermal_toroidal_profile47_ 5.90142294478733249e-03 -Beta_toroidal_profile_at_point_48________________________________________ beta_thermal_toroidal_profile48_ 5.96622323593685392e-03 -Beta_toroidal_profile_at_point_49________________________________________ beta_thermal_toroidal_profile49_ 6.03226247506484341e-03 -Beta_toroidal_profile_at_point_50________________________________________ beta_thermal_toroidal_profile50_ 6.09951951729940586e-03 -Beta_toroidal_profile_at_point_51________________________________________ beta_thermal_toroidal_profile51_ 6.16797509864920341e-03 -Beta_toroidal_profile_at_point_52________________________________________ beta_thermal_toroidal_profile52_ 6.23761159107866399e-03 -Beta_toroidal_profile_at_point_53________________________________________ beta_thermal_toroidal_profile53_ 6.30841279833376564e-03 -Beta_toroidal_profile_at_point_54________________________________________ beta_thermal_toroidal_profile54_ 6.38036378427578234e-03 -Beta_toroidal_profile_at_point_55________________________________________ beta_thermal_toroidal_profile55_ 6.45345072742185746e-03 -Beta_toroidal_profile_at_point_56________________________________________ beta_thermal_toroidal_profile56_ 6.52766079681579067e-03 -Beta_toroidal_profile_at_point_57________________________________________ beta_thermal_toroidal_profile57_ 6.60298204541209799e-03 -Beta_toroidal_profile_at_point_58________________________________________ beta_thermal_toroidal_profile58_ 6.67940331795532135e-03 -Beta_toroidal_profile_at_point_59________________________________________ beta_thermal_toroidal_profile59_ 6.75691417094529453e-03 -Beta_toroidal_profile_at_point_60________________________________________ beta_thermal_toroidal_profile60_ 6.83550480274851182e-03 -Beta_toroidal_profile_at_point_61________________________________________ beta_thermal_toroidal_profile61_ 6.91516599228090677e-03 -Beta_toroidal_profile_at_point_62________________________________________ beta_thermal_toroidal_profile62_ 6.99588904497448934e-03 -Beta_toroidal_profile_at_point_63________________________________________ beta_thermal_toroidal_profile63_ 7.07766574496731561e-03 -Beta_toroidal_profile_at_point_64________________________________________ beta_thermal_toroidal_profile64_ 7.16048831263814151e-03 -Beta_toroidal_profile_at_point_65________________________________________ beta_thermal_toroidal_profile65_ 7.24434936675288996e-03 -Beta_toroidal_profile_at_point_66________________________________________ beta_thermal_toroidal_profile66_ 7.32924189060852813e-03 -Beta_toroidal_profile_at_point_67________________________________________ beta_thermal_toroidal_profile67_ 7.41515920165629946e-03 -Beta_toroidal_profile_at_point_68________________________________________ beta_thermal_toroidal_profile68_ 7.50209492416559556e-03 -Beta_toroidal_profile_at_point_69________________________________________ beta_thermal_toroidal_profile69_ 7.59004296455469997e-03 -Beta_toroidal_profile_at_point_70________________________________________ beta_thermal_toroidal_profile70_ 7.67899748906923380e-03 -Beta_toroidal_profile_at_point_71________________________________________ beta_thermal_toroidal_profile71_ 7.76895290353384841e-03 -Beta_toroidal_profile_at_point_72________________________________________ beta_thermal_toroidal_profile72_ 7.85990383494098582e-03 -Beta_toroidal_profile_at_point_73________________________________________ beta_thermal_toroidal_profile73_ 7.95184511467193593e-03 -Beta_toroidal_profile_at_point_74________________________________________ beta_thermal_toroidal_profile74_ 8.04477176317276547e-03 -Beta_toroidal_profile_at_point_75________________________________________ beta_thermal_toroidal_profile75_ 8.13867897593017857e-03 -Beta_toroidal_profile_at_point_76________________________________________ beta_thermal_toroidal_profile76_ 8.23356211061218070e-03 -Beta_toroidal_profile_at_point_77________________________________________ beta_thermal_toroidal_profile77_ 8.32941667525469685e-03 -Beta_toroidal_profile_at_point_78________________________________________ beta_thermal_toroidal_profile78_ 8.42623831739002134e-03 -Beta_toroidal_profile_at_point_79________________________________________ beta_thermal_toroidal_profile79_ 8.52402281402497505e-03 -Beta_toroidal_profile_at_point_80________________________________________ beta_thermal_toroidal_profile80_ 8.62276606238734054e-03 -Beta_toroidal_profile_at_point_81________________________________________ beta_thermal_toroidal_profile81_ 8.72246407136858561e-03 -Beta_toroidal_profile_at_point_82________________________________________ beta_thermal_toroidal_profile82_ 8.82311295359862642e-03 -Beta_toroidal_profile_at_point_83________________________________________ beta_thermal_toroidal_profile83_ 8.92470891809556480e-03 -Beta_toroidal_profile_at_point_84________________________________________ beta_thermal_toroidal_profile84_ 9.02724826343936047e-03 -Beta_toroidal_profile_at_point_85________________________________________ beta_thermal_toroidal_profile85_ 9.13072737142386903e-03 -Beta_toroidal_profile_at_point_86________________________________________ beta_thermal_toroidal_profile86_ 9.23514270114618799e-03 -Beta_toroidal_profile_at_point_87________________________________________ beta_thermal_toroidal_profile87_ 9.34049078349669451e-03 -Beta_toroidal_profile_at_point_88________________________________________ beta_thermal_toroidal_profile88_ 9.44676821601650972e-03 -Beta_toroidal_profile_at_point_89________________________________________ beta_thermal_toroidal_profile89_ 9.55397165809264946e-03 -Beta_toroidal_profile_at_point_90________________________________________ beta_thermal_toroidal_profile90_ 9.66209782646377906e-03 -Beta_toroidal_profile_at_point_91________________________________________ beta_thermal_toroidal_profile91_ 9.77114349101227894e-03 -Beta_toroidal_profile_at_point_92________________________________________ beta_thermal_toroidal_profile92_ 9.88110547082023984e-03 -Beta_toroidal_profile_at_point_93________________________________________ beta_thermal_toroidal_profile93_ 9.99198063046958726e-03 -Beta_toroidal_profile_at_point_94________________________________________ beta_thermal_toroidal_profile94_ 1.01037658765677357e-02 -Beta_toroidal_profile_at_point_95________________________________________ beta_thermal_toroidal_profile95_ 1.02164581544823708e-02 -Beta_toroidal_profile_at_point_96________________________________________ beta_thermal_toroidal_profile96_ 1.03300544452699025e-02 -Beta_toroidal_profile_at_point_97________________________________________ beta_thermal_toroidal_profile97_ 1.04445517627839383e-02 -Beta_toroidal_profile_at_point_98________________________________________ beta_thermal_toroidal_profile98_ 1.05599471509508682e-02 -Beta_toroidal_profile_at_point_99________________________________________ beta_thermal_toroidal_profile99_ 1.06762376812011024e-02 -Beta_toroidal_profile_at_point_100_______________________________________ beta_thermal_toroidal_profile100_ 1.07934204500450808e-02 -Beta_toroidal_profile_at_point_101_______________________________________ beta_thermal_toroidal_profile101_ 1.09114925767844588e-02 -Beta_toroidal_profile_at_point_102_______________________________________ beta_thermal_toroidal_profile102_ 1.10304512013492499e-02 -Beta_toroidal_profile_at_point_103_______________________________________ beta_thermal_toroidal_profile103_ 1.11502934822528266e-02 -Beta_toroidal_profile_at_point_104_______________________________________ beta_thermal_toroidal_profile104_ 1.12710165946569383e-02 -Beta_toroidal_profile_at_point_105_______________________________________ beta_thermal_toroidal_profile105_ 1.13926177285398056e-02 -Beta_toroidal_profile_at_point_106_______________________________________ beta_thermal_toroidal_profile106_ 1.15150940869607390e-02 -Beta_toroidal_profile_at_point_107_______________________________________ beta_thermal_toroidal_profile107_ 1.16384428844152291e-02 -Beta_toroidal_profile_at_point_108_______________________________________ beta_thermal_toroidal_profile108_ 1.17626613452749707e-02 -Beta_toroidal_profile_at_point_109_______________________________________ beta_thermal_toroidal_profile109_ 1.18877467023076056e-02 -Beta_toroidal_profile_at_point_110_______________________________________ beta_thermal_toroidal_profile110_ 1.20136961952713832e-02 -Beta_toroidal_profile_at_point_111_______________________________________ beta_thermal_toroidal_profile111_ 1.21405070695804109e-02 -Beta_toroidal_profile_at_point_112_______________________________________ beta_thermal_toroidal_profile112_ 1.22681765750360799e-02 -Beta_toroidal_profile_at_point_113_______________________________________ beta_thermal_toroidal_profile113_ 1.23967019646211967e-02 -Beta_toroidal_profile_at_point_114_______________________________________ beta_thermal_toroidal_profile114_ 1.25260804933528536e-02 -Beta_toroidal_profile_at_point_115_______________________________________ beta_thermal_toroidal_profile115_ 1.26563094171910431e-02 -Beta_toroidal_profile_at_point_116_______________________________________ beta_thermal_toroidal_profile116_ 1.27873859919996145e-02 -Beta_toroidal_profile_at_point_117_______________________________________ beta_thermal_toroidal_profile117_ 1.29193074725569290e-02 -Beta_toroidal_profile_at_point_118_______________________________________ beta_thermal_toroidal_profile118_ 1.30520711116132310e-02 -Beta_toroidal_profile_at_point_119_______________________________________ beta_thermal_toroidal_profile119_ 1.31856741589925046e-02 -Beta_toroidal_profile_at_point_120_______________________________________ beta_thermal_toroidal_profile120_ 1.33201138607361748e-02 -Beta_toroidal_profile_at_point_121_______________________________________ beta_thermal_toroidal_profile121_ 1.34553874582866058e-02 -Beta_toroidal_profile_at_point_122_______________________________________ beta_thermal_toroidal_profile122_ 1.35914921877082241e-02 -Beta_toroidal_profile_at_point_123_______________________________________ beta_thermal_toroidal_profile123_ 1.37284252789444186e-02 -Beta_toroidal_profile_at_point_124_______________________________________ beta_thermal_toroidal_profile124_ 1.38661839551082432e-02 -Beta_toroidal_profile_at_point_125_______________________________________ beta_thermal_toroidal_profile125_ 1.40047654318053855e-02 -Beta_toroidal_profile_at_point_126_______________________________________ beta_thermal_toroidal_profile126_ 1.41441669164876598e-02 -Beta_toroidal_profile_at_point_127_______________________________________ beta_thermal_toroidal_profile127_ 1.42843856078355078e-02 -Beta_toroidal_profile_at_point_128_______________________________________ beta_thermal_toroidal_profile128_ 1.44254186951682257e-02 -Beta_toroidal_profile_at_point_129_______________________________________ beta_thermal_toroidal_profile129_ 1.45672633578803664e-02 -Beta_toroidal_profile_at_point_130_______________________________________ beta_thermal_toroidal_profile130_ 1.47099167649033125e-02 -Beta_toroidal_profile_at_point_131_______________________________________ beta_thermal_toroidal_profile131_ 1.48533760741905389e-02 -Beta_toroidal_profile_at_point_132_______________________________________ beta_thermal_toroidal_profile132_ 1.49976384322256951e-02 -Beta_toroidal_profile_at_point_133_______________________________________ beta_thermal_toroidal_profile133_ 1.51427009735523015e-02 -Beta_toroidal_profile_at_point_134_______________________________________ beta_thermal_toroidal_profile134_ 1.52885608203241711e-02 -Beta_toroidal_profile_at_point_135_______________________________________ beta_thermal_toroidal_profile135_ 1.54352150818754773e-02 -Beta_toroidal_profile_at_point_136_______________________________________ beta_thermal_toroidal_profile136_ 1.55826608543097392e-02 -Beta_toroidal_profile_at_point_137_______________________________________ beta_thermal_toroidal_profile137_ 1.57308952201067227e-02 -Beta_toroidal_profile_at_point_138_______________________________________ beta_thermal_toroidal_profile138_ 1.58799152477466475e-02 -Beta_toroidal_profile_at_point_139_______________________________________ beta_thermal_toroidal_profile139_ 1.60297179913506949e-02 -Beta_toroidal_profile_at_point_140_______________________________________ beta_thermal_toroidal_profile140_ 1.61803004903374355e-02 -Beta_toroidal_profile_at_point_141_______________________________________ beta_thermal_toroidal_profile141_ 1.63316597690941236e-02 -Beta_toroidal_profile_at_point_142_______________________________________ beta_thermal_toroidal_profile142_ 1.64837928366626078e-02 -Beta_toroidal_profile_at_point_143_______________________________________ beta_thermal_toroidal_profile143_ 1.66366966864388566e-02 -Beta_toroidal_profile_at_point_144_______________________________________ beta_thermal_toroidal_profile144_ 1.67903682958859407e-02 -Beta_toroidal_profile_at_point_145_______________________________________ beta_thermal_toroidal_profile145_ 1.69448046262595207e-02 -Beta_toroidal_profile_at_point_146_______________________________________ beta_thermal_toroidal_profile146_ 1.71000026223456364e-02 -Beta_toroidal_profile_at_point_147_______________________________________ beta_thermal_toroidal_profile147_ 1.72559592122101500e-02 -Beta_toroidal_profile_at_point_148_______________________________________ beta_thermal_toroidal_profile148_ 1.74126713069593653e-02 -Beta_toroidal_profile_at_point_149_______________________________________ beta_thermal_toroidal_profile149_ 1.75701358005114876e-02 -Beta_toroidal_profile_at_point_150_______________________________________ beta_thermal_toroidal_profile150_ 1.77283495693784134e-02 -Beta_toroidal_profile_at_point_151_______________________________________ beta_thermal_toroidal_profile151_ 1.78873094724574314e-02 -Beta_toroidal_profile_at_point_152_______________________________________ beta_thermal_toroidal_profile152_ 1.80470123508326037e-02 -Beta_toroidal_profile_at_point_153_______________________________________ beta_thermal_toroidal_profile153_ 1.82074550275851746e-02 -Beta_toroidal_profile_at_point_154_______________________________________ beta_thermal_toroidal_profile154_ 1.83686343076130201e-02 -Beta_toroidal_profile_at_point_155_______________________________________ beta_thermal_toroidal_profile155_ 1.85305469774585084e-02 -Beta_toroidal_profile_at_point_156_______________________________________ beta_thermal_toroidal_profile156_ 1.86931898051446617e-02 -Beta_toroidal_profile_at_point_157_______________________________________ beta_thermal_toroidal_profile157_ 1.88565595400190522e-02 -Beta_toroidal_profile_at_point_158_______________________________________ beta_thermal_toroidal_profile158_ 1.90206529126056394e-02 -Beta_toroidal_profile_at_point_159_______________________________________ beta_thermal_toroidal_profile159_ 1.91854666344635945e-02 -Beta_toroidal_profile_at_point_160_______________________________________ beta_thermal_toroidal_profile160_ 1.93509973980535051e-02 -Beta_toroidal_profile_at_point_161_______________________________________ beta_thermal_toroidal_profile161_ 1.95172418766102786e-02 -Beta_toroidal_profile_at_point_162_______________________________________ beta_thermal_toroidal_profile162_ 1.96841967240226727e-02 -Beta_toroidal_profile_at_point_163_______________________________________ beta_thermal_toroidal_profile163_ 1.98518585747192305e-02 -Beta_toroidal_profile_at_point_164_______________________________________ beta_thermal_toroidal_profile164_ 2.00202240435603598e-02 -Beta_toroidal_profile_at_point_165_______________________________________ beta_thermal_toroidal_profile165_ 2.01892897257363590e-02 -Beta_toroidal_profile_at_point_166_______________________________________ beta_thermal_toroidal_profile166_ 2.03590521966711784e-02 -Beta_toroidal_profile_at_point_167_______________________________________ beta_thermal_toroidal_profile167_ 2.05295080119318220e-02 -Beta_toroidal_profile_at_point_168_______________________________________ beta_thermal_toroidal_profile168_ 2.07006537071430276e-02 -Beta_toroidal_profile_at_point_169_______________________________________ beta_thermal_toroidal_profile169_ 2.08724857979072642e-02 -Beta_toroidal_profile_at_point_170_______________________________________ beta_thermal_toroidal_profile170_ 2.10450007797295911e-02 -Beta_toroidal_profile_at_point_171_______________________________________ beta_thermal_toroidal_profile171_ 2.12181951279476790e-02 -Beta_toroidal_profile_at_point_172_______________________________________ beta_thermal_toroidal_profile172_ 2.13920652976662164e-02 -Beta_toroidal_profile_at_point_173_______________________________________ beta_thermal_toroidal_profile173_ 2.15666077236962191e-02 -Beta_toroidal_profile_at_point_174_______________________________________ beta_thermal_toroidal_profile174_ 2.17418188204985575e-02 -Beta_toroidal_profile_at_point_175_______________________________________ beta_thermal_toroidal_profile175_ 2.19176949821318842e-02 -Beta_toroidal_profile_at_point_176_______________________________________ beta_thermal_toroidal_profile176_ 2.20942325822046925e-02 -Beta_toroidal_profile_at_point_177_______________________________________ beta_thermal_toroidal_profile177_ 2.22714279738314980e-02 -Beta_toroidal_profile_at_point_178_______________________________________ beta_thermal_toroidal_profile178_ 2.24492774895928525e-02 -Beta_toroidal_profile_at_point_179_______________________________________ beta_thermal_toroidal_profile179_ 2.26277774414992555e-02 -Beta_toroidal_profile_at_point_180_______________________________________ beta_thermal_toroidal_profile180_ 2.28069241209587249e-02 -Beta_toroidal_profile_at_point_181_______________________________________ beta_thermal_toroidal_profile181_ 2.29867137987479798e-02 -Beta_toroidal_profile_at_point_182_______________________________________ beta_thermal_toroidal_profile182_ 2.31671427249871553e-02 -Beta_toroidal_profile_at_point_183_______________________________________ beta_thermal_toroidal_profile183_ 2.33482071291178858e-02 -Beta_toroidal_profile_at_point_184_______________________________________ beta_thermal_toroidal_profile184_ 2.35299032198846396e-02 -Beta_toroidal_profile_at_point_185_______________________________________ beta_thermal_toroidal_profile185_ 2.37122271853194427e-02 -Beta_toroidal_profile_at_point_186_______________________________________ beta_thermal_toroidal_profile186_ 2.38951751927295349e-02 -Beta_toroidal_profile_at_point_187_______________________________________ beta_thermal_toroidal_profile187_ 2.40787433886881855e-02 -Beta_toroidal_profile_at_point_188_______________________________________ beta_thermal_toroidal_profile188_ 2.42629278990284906e-02 -Beta_toroidal_profile_at_point_189_______________________________________ beta_thermal_toroidal_profile189_ 2.44477248288399937e-02 -Beta_toroidal_profile_at_point_190_______________________________________ beta_thermal_toroidal_profile190_ 2.46331302624681094e-02 -Beta_toroidal_profile_at_point_191_______________________________________ beta_thermal_toroidal_profile191_ 2.48191402635164621e-02 -Beta_toroidal_profile_at_point_192_______________________________________ beta_thermal_toroidal_profile192_ 2.50057508748515872e-02 -Beta_toroidal_profile_at_point_193_______________________________________ beta_thermal_toroidal_profile193_ 2.51929581186105950e-02 -Beta_toroidal_profile_at_point_194_______________________________________ beta_thermal_toroidal_profile194_ 2.53807579962110723e-02 -Beta_toroidal_profile_at_point_195_______________________________________ beta_thermal_toroidal_profile195_ 2.55691464883637289e-02 -Beta_toroidal_profile_at_point_196_______________________________________ beta_thermal_toroidal_profile196_ 2.57581195550872083e-02 -Beta_toroidal_profile_at_point_197_______________________________________ beta_thermal_toroidal_profile197_ 2.59476731357254908e-02 -Beta_toroidal_profile_at_point_198_______________________________________ beta_thermal_toroidal_profile198_ 2.61378031489674471e-02 -Beta_toroidal_profile_at_point_199_______________________________________ beta_thermal_toroidal_profile199_ 2.63285054928687513e-02 -Beta_toroidal_profile_at_point_200_______________________________________ beta_thermal_toroidal_profile200_ 2.65197760448759381e-02 -Beta_toroidal_profile_at_point_201_______________________________________ beta_thermal_toroidal_profile201_ 2.67116106618526146e-02 -Beta_toroidal_profile_at_point_202_______________________________________ beta_thermal_toroidal_profile202_ 2.69040051801078470e-02 -Beta_toroidal_profile_at_point_203_______________________________________ beta_thermal_toroidal_profile203_ 2.70969554154265151e-02 -Beta_toroidal_profile_at_point_204_______________________________________ beta_thermal_toroidal_profile204_ 2.72904571631017064e-02 -Beta_toroidal_profile_at_point_205_______________________________________ beta_thermal_toroidal_profile205_ 2.74845061979692024e-02 -Beta_toroidal_profile_at_point_206_______________________________________ beta_thermal_toroidal_profile206_ 2.76790982744436510e-02 -Beta_toroidal_profile_at_point_207_______________________________________ beta_thermal_toroidal_profile207_ 2.78742291265568660e-02 -Beta_toroidal_profile_at_point_208_______________________________________ beta_thermal_toroidal_profile208_ 2.80698944679978607e-02 -Beta_toroidal_profile_at_point_209_______________________________________ beta_thermal_toroidal_profile209_ 2.82660899921547380e-02 -Beta_toroidal_profile_at_point_210_______________________________________ beta_thermal_toroidal_profile210_ 2.84628113721582046e-02 -Beta_toroidal_profile_at_point_211_______________________________________ beta_thermal_toroidal_profile211_ 2.86600542609272355e-02 -Beta_toroidal_profile_at_point_212_______________________________________ beta_thermal_toroidal_profile212_ 2.88578142912157970e-02 -Beta_toroidal_profile_at_point_213_______________________________________ beta_thermal_toroidal_profile213_ 2.90560870756619294e-02 -Beta_toroidal_profile_at_point_214_______________________________________ beta_thermal_toroidal_profile214_ 2.92548682068379598e-02 -Beta_toroidal_profile_at_point_215_______________________________________ beta_thermal_toroidal_profile215_ 2.94541532573026378e-02 -Beta_toroidal_profile_at_point_216_______________________________________ beta_thermal_toroidal_profile216_ 2.96539377796546169e-02 -Beta_toroidal_profile_at_point_217_______________________________________ beta_thermal_toroidal_profile217_ 2.98542173065877228e-02 -Beta_toroidal_profile_at_point_218_______________________________________ beta_thermal_toroidal_profile218_ 3.00549873509474950e-02 -Beta_toroidal_profile_at_point_219_______________________________________ beta_thermal_toroidal_profile219_ 3.02562434057895221e-02 -Beta_toroidal_profile_at_point_220_______________________________________ beta_thermal_toroidal_profile220_ 3.04579809444388977e-02 -Beta_toroidal_profile_at_point_221_______________________________________ beta_thermal_toroidal_profile221_ 3.06601954205514352e-02 -Beta_toroidal_profile_at_point_222_______________________________________ beta_thermal_toroidal_profile222_ 3.08628822681761041e-02 -Beta_toroidal_profile_at_point_223_______________________________________ beta_thermal_toroidal_profile223_ 3.10660369018188956e-02 -Beta_toroidal_profile_at_point_224_______________________________________ beta_thermal_toroidal_profile224_ 3.12696547165082356e-02 -Beta_toroidal_profile_at_point_225_______________________________________ beta_thermal_toroidal_profile225_ 3.14737310878613757e-02 -Beta_toroidal_profile_at_point_226_______________________________________ beta_thermal_toroidal_profile226_ 3.16782613721525719e-02 -Beta_toroidal_profile_at_point_227_______________________________________ beta_thermal_toroidal_profile227_ 3.18832409063821223e-02 -Beta_toroidal_profile_at_point_228_______________________________________ beta_thermal_toroidal_profile228_ 3.20886650083471031e-02 -Beta_toroidal_profile_at_point_229_______________________________________ beta_thermal_toroidal_profile229_ 3.22945289767129634e-02 -Beta_toroidal_profile_at_point_230_______________________________________ beta_thermal_toroidal_profile230_ 3.25008280910867101e-02 -Beta_toroidal_profile_at_point_231_______________________________________ beta_thermal_toroidal_profile231_ 3.27075576120911260e-02 -Beta_toroidal_profile_at_point_232_______________________________________ beta_thermal_toroidal_profile232_ 3.29147127814403279e-02 -Beta_toroidal_profile_at_point_233_______________________________________ beta_thermal_toroidal_profile233_ 3.31222888220162465e-02 -Beta_toroidal_profile_at_point_234_______________________________________ beta_thermal_toroidal_profile234_ 3.33302809379467380e-02 -Beta_toroidal_profile_at_point_235_______________________________________ beta_thermal_toroidal_profile235_ 3.35386843146842917e-02 -Beta_toroidal_profile_at_point_236_______________________________________ beta_thermal_toroidal_profile236_ 3.37474941190864311e-02 -Beta_toroidal_profile_at_point_237_______________________________________ beta_thermal_toroidal_profile237_ 3.39567054994967671e-02 -Beta_toroidal_profile_at_point_238_______________________________________ beta_thermal_toroidal_profile238_ 3.41663135858275846e-02 -Beta_toroidal_profile_at_point_239_______________________________________ beta_thermal_toroidal_profile239_ 3.43763134896430470e-02 -Beta_toroidal_profile_at_point_240_______________________________________ beta_thermal_toroidal_profile240_ 3.45867003042439961e-02 -Beta_toroidal_profile_at_point_241_______________________________________ beta_thermal_toroidal_profile241_ 3.47974691047533424e-02 -Beta_toroidal_profile_at_point_242_______________________________________ beta_thermal_toroidal_profile242_ 3.50086149482029402e-02 -Beta_toroidal_profile_at_point_243_______________________________________ beta_thermal_toroidal_profile243_ 3.52201328736210587e-02 -Beta_toroidal_profile_at_point_244_______________________________________ beta_thermal_toroidal_profile244_ 3.54320179021212836e-02 -Beta_toroidal_profile_at_point_245_______________________________________ beta_thermal_toroidal_profile245_ 3.56442650369921468e-02 -Beta_toroidal_profile_at_point_246_______________________________________ beta_thermal_toroidal_profile246_ 3.58568692637879355e-02 -Beta_toroidal_profile_at_point_247_______________________________________ beta_thermal_toroidal_profile247_ 3.60698255504202925e-02 -Beta_toroidal_profile_at_point_248_______________________________________ beta_thermal_toroidal_profile248_ 3.62831288472510380e-02 -Beta_toroidal_profile_at_point_249_______________________________________ beta_thermal_toroidal_profile249_ 3.64967740871857335e-02 -Beta_toroidal_profile_at_point_250_______________________________________ beta_thermal_toroidal_profile250_ 3.67107561857683909e-02 -Beta_toroidal_profile_at_point_251_______________________________________ beta_thermal_toroidal_profile251_ 3.69250700412768473e-02 -Beta_toroidal_profile_at_point_252_______________________________________ beta_thermal_toroidal_profile252_ 3.71397105348194381e-02 -Beta_toroidal_profile_at_point_253_______________________________________ beta_thermal_toroidal_profile253_ 3.73546725304322869e-02 -Beta_toroidal_profile_at_point_254_______________________________________ beta_thermal_toroidal_profile254_ 3.75699508751776642e-02 -Beta_toroidal_profile_at_point_255_______________________________________ beta_thermal_toroidal_profile255_ 3.77855403992431171e-02 -Beta_toroidal_profile_at_point_256_______________________________________ beta_thermal_toroidal_profile256_ 3.80014359160417287e-02 -Beta_toroidal_profile_at_point_257_______________________________________ beta_thermal_toroidal_profile257_ 3.82176322223129333e-02 -Beta_toroidal_profile_at_point_258_______________________________________ beta_thermal_toroidal_profile258_ 3.84341240982244495e-02 -Beta_toroidal_profile_at_point_259_______________________________________ beta_thermal_toroidal_profile259_ 3.86509063074750511e-02 -Beta_toroidal_profile_at_point_260_______________________________________ beta_thermal_toroidal_profile260_ 3.88679735973979715e-02 -Beta_toroidal_profile_at_point_261_______________________________________ beta_thermal_toroidal_profile261_ 3.90853206990655552e-02 -Beta_toroidal_profile_at_point_262_______________________________________ beta_thermal_toroidal_profile262_ 3.93029423273943412e-02 -Beta_toroidal_profile_at_point_263_______________________________________ beta_thermal_toroidal_profile263_ 3.95208331812511512e-02 -Beta_toroidal_profile_at_point_264_______________________________________ beta_thermal_toroidal_profile264_ 3.97389879435601362e-02 -Beta_toroidal_profile_at_point_265_______________________________________ beta_thermal_toroidal_profile265_ 3.99574012814103360e-02 -Beta_toroidal_profile_at_point_266_______________________________________ beta_thermal_toroidal_profile266_ 4.01760678461643012e-02 -Beta_toroidal_profile_at_point_267_______________________________________ beta_thermal_toroidal_profile267_ 4.03949822735673592e-02 -Beta_toroidal_profile_at_point_268_______________________________________ beta_thermal_toroidal_profile268_ 4.06141391838578600e-02 -Beta_toroidal_profile_at_point_269_______________________________________ beta_thermal_toroidal_profile269_ 4.08335331818778305e-02 -Beta_toroidal_profile_at_point_270_______________________________________ beta_thermal_toroidal_profile270_ 4.10531588571849196e-02 -Beta_toroidal_profile_at_point_271_______________________________________ beta_thermal_toroidal_profile271_ 4.12730107841646904e-02 -Beta_toroidal_profile_at_point_272_______________________________________ beta_thermal_toroidal_profile272_ 4.14930835221438213e-02 -Beta_toroidal_profile_at_point_273_______________________________________ beta_thermal_toroidal_profile273_ 4.17133716155042092e-02 -Beta_toroidal_profile_at_point_274_______________________________________ beta_thermal_toroidal_profile274_ 4.19338695937974959e-02 -Beta_toroidal_profile_at_point_275_______________________________________ beta_thermal_toroidal_profile275_ 4.21545719718606979e-02 -Beta_toroidal_profile_at_point_276_______________________________________ beta_thermal_toroidal_profile276_ 4.23754732499323564e-02 -Beta_toroidal_profile_at_point_277_______________________________________ beta_thermal_toroidal_profile277_ 4.25965679137693953e-02 -Beta_toroidal_profile_at_point_278_______________________________________ beta_thermal_toroidal_profile278_ 4.28178504347648814e-02 -Beta_toroidal_profile_at_point_279_______________________________________ beta_thermal_toroidal_profile279_ 4.30393152700663736e-02 -Beta_toroidal_profile_at_point_280_______________________________________ beta_thermal_toroidal_profile280_ 4.32609568626949673e-02 -Beta_toroidal_profile_at_point_281_______________________________________ beta_thermal_toroidal_profile281_ 4.34827696416651976e-02 -Beta_toroidal_profile_at_point_282_______________________________________ beta_thermal_toroidal_profile282_ 4.37047480221054163e-02 -Beta_toroidal_profile_at_point_283_______________________________________ beta_thermal_toroidal_profile283_ 4.39268864053791452e-02 -Beta_toroidal_profile_at_point_284_______________________________________ beta_thermal_toroidal_profile284_ 4.41491791792068614e-02 -Beta_toroidal_profile_at_point_285_______________________________________ beta_thermal_toroidal_profile285_ 4.43716207177886277e-02 -Beta_toroidal_profile_at_point_286_______________________________________ beta_thermal_toroidal_profile286_ 4.45942053819273349e-02 -Beta_toroidal_profile_at_point_287_______________________________________ beta_thermal_toroidal_profile287_ 4.48169275191527411e-02 -Beta_toroidal_profile_at_point_288_______________________________________ beta_thermal_toroidal_profile288_ 4.50397814638459557e-02 -Beta_toroidal_profile_at_point_289_______________________________________ beta_thermal_toroidal_profile289_ 4.52627615373648040e-02 -Beta_toroidal_profile_at_point_290_______________________________________ beta_thermal_toroidal_profile290_ 4.54858620481698450e-02 -Beta_toroidal_profile_at_point_291_______________________________________ beta_thermal_toroidal_profile291_ 4.57090772919508254e-02 -Beta_toroidal_profile_at_point_292_______________________________________ beta_thermal_toroidal_profile292_ 4.59324015517540429e-02 -Beta_toroidal_profile_at_point_293_______________________________________ beta_thermal_toroidal_profile293_ 4.61558290981103139e-02 -Beta_toroidal_profile_at_point_294_______________________________________ beta_thermal_toroidal_profile294_ 4.63793541891633840e-02 -Beta_toroidal_profile_at_point_295_______________________________________ beta_thermal_toroidal_profile295_ 4.66029710707992623e-02 -Beta_toroidal_profile_at_point_296_______________________________________ beta_thermal_toroidal_profile296_ 4.68266739767759996e-02 -Beta_toroidal_profile_at_point_297_______________________________________ beta_thermal_toroidal_profile297_ 4.70504571288541673e-02 -Beta_toroidal_profile_at_point_298_______________________________________ beta_thermal_toroidal_profile298_ 4.72743147369280164e-02 -Beta_toroidal_profile_at_point_299_______________________________________ beta_thermal_toroidal_profile299_ 4.74982409991569973e-02 -Beta_toroidal_profile_at_point_300_______________________________________ beta_thermal_toroidal_profile300_ 4.77222301020984174e-02 -Beta_toroidal_profile_at_point_301_______________________________________ beta_thermal_toroidal_profile301_ 4.79462762208401408e-02 -Beta_toroidal_profile_at_point_302_______________________________________ beta_thermal_toroidal_profile302_ 4.81703735191342935e-02 -Beta_toroidal_profile_at_point_303_______________________________________ beta_thermal_toroidal_profile303_ 4.83945161495313303e-02 -Beta_toroidal_profile_at_point_304_______________________________________ beta_thermal_toroidal_profile304_ 4.86186982535149817e-02 -Beta_toroidal_profile_at_point_305_______________________________________ beta_thermal_toroidal_profile305_ 4.88429139616374797e-02 -Beta_toroidal_profile_at_point_306_______________________________________ beta_thermal_toroidal_profile306_ 4.90671573936557054e-02 -Beta_toroidal_profile_at_point_307_______________________________________ beta_thermal_toroidal_profile307_ 4.92914226586675455e-02 -Beta_toroidal_profile_at_point_308_______________________________________ beta_thermal_toroidal_profile308_ 4.95157038552492684e-02 -Beta_toroidal_profile_at_point_309_______________________________________ beta_thermal_toroidal_profile309_ 4.97399950715931849e-02 -Beta_toroidal_profile_at_point_310_______________________________________ beta_thermal_toroidal_profile310_ 4.99642903856460027e-02 -Beta_toroidal_profile_at_point_311_______________________________________ beta_thermal_toroidal_profile311_ 5.01885838652476671e-02 -Beta_toroidal_profile_at_point_312_______________________________________ beta_thermal_toroidal_profile312_ 5.04128695682710057e-02 -Beta_toroidal_profile_at_point_313_______________________________________ beta_thermal_toroidal_profile313_ 5.06371415427617211e-02 -Beta_toroidal_profile_at_point_314_______________________________________ beta_thermal_toroidal_profile314_ 5.08613938270788823e-02 -Beta_toroidal_profile_at_point_315_______________________________________ beta_thermal_toroidal_profile315_ 5.10856204500363190e-02 -Beta_toroidal_profile_at_point_316_______________________________________ beta_thermal_toroidal_profile316_ 5.13098154310443894e-02 -Beta_toroidal_profile_at_point_317_______________________________________ beta_thermal_toroidal_profile317_ 5.15339727802521311e-02 -Beta_toroidal_profile_at_point_318_______________________________________ beta_thermal_toroidal_profile318_ 5.17580864986902783e-02 -Beta_toroidal_profile_at_point_319_______________________________________ beta_thermal_toroidal_profile319_ 5.19821505784146543e-02 -Beta_toroidal_profile_at_point_320_______________________________________ beta_thermal_toroidal_profile320_ 5.22061590026501321e-02 -Beta_toroidal_profile_at_point_321_______________________________________ beta_thermal_toroidal_profile321_ 5.24301057459351932e-02 -Beta_toroidal_profile_at_point_322_______________________________________ beta_thermal_toroidal_profile322_ 5.26539847742670125e-02 -Beta_toroidal_profile_at_point_323_______________________________________ beta_thermal_toroidal_profile323_ 5.28777900452470154e-02 -Beta_toroidal_profile_at_point_324_______________________________________ beta_thermal_toroidal_profile324_ 5.31015155082270526e-02 -Beta_toroidal_profile_at_point_325_______________________________________ beta_thermal_toroidal_profile325_ 5.33251551044561303e-02 -Beta_toroidal_profile_at_point_326_______________________________________ beta_thermal_toroidal_profile326_ 5.35487027672275628e-02 -Beta_toroidal_profile_at_point_327_______________________________________ beta_thermal_toroidal_profile327_ 5.37721524220268199e-02 -Beta_toroidal_profile_at_point_328_______________________________________ beta_thermal_toroidal_profile328_ 5.39954979866795887e-02 -Beta_toroidal_profile_at_point_329_______________________________________ beta_thermal_toroidal_profile329_ 5.42187333715008352e-02 -Beta_toroidal_profile_at_point_330_______________________________________ beta_thermal_toroidal_profile330_ 5.44418524794439279e-02 -Beta_toroidal_profile_at_point_331_______________________________________ beta_thermal_toroidal_profile331_ 5.46648492062505875e-02 -Beta_toroidal_profile_at_point_332_______________________________________ beta_thermal_toroidal_profile332_ 5.48877174406011900e-02 -Beta_toroidal_profile_at_point_333_______________________________________ beta_thermal_toroidal_profile333_ 5.51104510642655143e-02 -Beta_toroidal_profile_at_point_334_______________________________________ beta_thermal_toroidal_profile334_ 5.53330439522543849e-02 -Beta_toroidal_profile_at_point_335_______________________________________ beta_thermal_toroidal_profile335_ 5.55554899729713073e-02 -Beta_toroidal_profile_at_point_336_______________________________________ beta_thermal_toroidal_profile336_ 5.57777829883648740e-02 -Beta_toroidal_profile_at_point_337_______________________________________ beta_thermal_toroidal_profile337_ 5.59999168540818368e-02 -Beta_toroidal_profile_at_point_338_______________________________________ beta_thermal_toroidal_profile338_ 5.62218854196201989e-02 -Beta_toroidal_profile_at_point_339_______________________________________ beta_thermal_toroidal_profile339_ 5.64436825284833354e-02 -Beta_toroidal_profile_at_point_340_______________________________________ beta_thermal_toroidal_profile340_ 5.66653020183342862e-02 -Beta_toroidal_profile_at_point_341_______________________________________ beta_thermal_toroidal_profile341_ 5.68867377211504724e-02 -Beta_toroidal_profile_at_point_342_______________________________________ beta_thermal_toroidal_profile342_ 5.71079834633793429e-02 -Beta_toroidal_profile_at_point_343_______________________________________ beta_thermal_toroidal_profile343_ 5.73290330660938749e-02 -Beta_toroidal_profile_at_point_344_______________________________________ beta_thermal_toroidal_profile344_ 5.75498803451491153e-02 -Beta_toroidal_profile_at_point_345_______________________________________ beta_thermal_toroidal_profile345_ 5.77705191113389235e-02 -Beta_toroidal_profile_at_point_346_______________________________________ beta_thermal_toroidal_profile346_ 5.79909431705531650e-02 -Beta_toroidal_profile_at_point_347_______________________________________ beta_thermal_toroidal_profile347_ 5.82111463239356058e-02 -Beta_toroidal_profile_at_point_348_______________________________________ beta_thermal_toroidal_profile348_ 5.84311223680419045e-02 -Beta_toroidal_profile_at_point_349_______________________________________ beta_thermal_toroidal_profile349_ 5.86508650949986235e-02 -Beta_toroidal_profile_at_point_350_______________________________________ beta_thermal_toroidal_profile350_ 5.88703682926620259e-02 -Beta_toroidal_profile_at_point_351_______________________________________ beta_thermal_toroidal_profile351_ 5.90896257447779821e-02 -Beta_toroidal_profile_at_point_352_______________________________________ beta_thermal_toroidal_profile352_ 5.93086312311419603e-02 -Beta_toroidal_profile_at_point_353_______________________________________ beta_thermal_toroidal_profile353_ 5.95273785277594947e-02 -Beta_toroidal_profile_at_point_354_______________________________________ beta_thermal_toroidal_profile354_ 5.97458614070072863e-02 -Beta_toroidal_profile_at_point_355_______________________________________ beta_thermal_toroidal_profile355_ 5.99640736377946015e-02 -Beta_toroidal_profile_at_point_356_______________________________________ beta_thermal_toroidal_profile356_ 6.01820089857252605e-02 -Beta_toroidal_profile_at_point_357_______________________________________ beta_thermal_toroidal_profile357_ 6.03996612132598476e-02 -Beta_toroidal_profile_at_point_358_______________________________________ beta_thermal_toroidal_profile358_ 6.06170240798787271e-02 -Beta_toroidal_profile_at_point_359_______________________________________ beta_thermal_toroidal_profile359_ 6.08340913422451071e-02 -Beta_toroidal_profile_at_point_360_______________________________________ beta_thermal_toroidal_profile360_ 6.10508567543687763e-02 -Beta_toroidal_profile_at_point_361_______________________________________ beta_thermal_toroidal_profile361_ 6.12673140677703898e-02 -Beta_toroidal_profile_at_point_362_______________________________________ beta_thermal_toroidal_profile362_ 6.14834570316458162e-02 -Beta_toroidal_profile_at_point_363_______________________________________ beta_thermal_toroidal_profile363_ 6.16992793930313116e-02 -Beta_toroidal_profile_at_point_364_______________________________________ beta_thermal_toroidal_profile364_ 6.19147748969688938e-02 -Beta_toroidal_profile_at_point_365_______________________________________ beta_thermal_toroidal_profile365_ 6.21299372866722308e-02 -Beta_toroidal_profile_at_point_366_______________________________________ beta_thermal_toroidal_profile366_ 6.23447603036929865e-02 -Beta_toroidal_profile_at_point_367_______________________________________ beta_thermal_toroidal_profile367_ 6.25592376880874240e-02 -Beta_toroidal_profile_at_point_368_______________________________________ beta_thermal_toroidal_profile368_ 6.27733631785836743e-02 -Beta_toroidal_profile_at_point_369_______________________________________ beta_thermal_toroidal_profile369_ 6.29871305127493314e-02 -Beta_toroidal_profile_at_point_370_______________________________________ beta_thermal_toroidal_profile370_ 6.32005334271593666e-02 -Beta_toroidal_profile_at_point_371_______________________________________ beta_thermal_toroidal_profile371_ 6.34135656575644663e-02 -Beta_toroidal_profile_at_point_372_______________________________________ beta_thermal_toroidal_profile372_ 6.36262209390601186e-02 -Beta_toroidal_profile_at_point_373_______________________________________ beta_thermal_toroidal_profile373_ 6.38384930062555617e-02 -Beta_toroidal_profile_at_point_374_______________________________________ beta_thermal_toroidal_profile374_ 6.40503755934436064e-02 -Beta_toroidal_profile_at_point_375_______________________________________ beta_thermal_toroidal_profile375_ 6.42618624347706530e-02 -Beta_toroidal_profile_at_point_376_______________________________________ beta_thermal_toroidal_profile376_ 6.44729472644070961e-02 -Beta_toroidal_profile_at_point_377_______________________________________ beta_thermal_toroidal_profile377_ 6.46836238167182304e-02 -Beta_toroidal_profile_at_point_378_______________________________________ beta_thermal_toroidal_profile378_ 6.48938858264355017e-02 -Beta_toroidal_profile_at_point_379_______________________________________ beta_thermal_toroidal_profile379_ 6.51037270288282316e-02 -Beta_toroidal_profile_at_point_380_______________________________________ beta_thermal_toroidal_profile380_ 6.53131411598754791e-02 -Beta_toroidal_profile_at_point_381_______________________________________ beta_thermal_toroidal_profile381_ 6.55221219564388474e-02 -Beta_toroidal_profile_at_point_382_______________________________________ beta_thermal_toroidal_profile382_ 6.57306631564348876e-02 -Beta_toroidal_profile_at_point_383_______________________________________ beta_thermal_toroidal_profile383_ 6.59387584990085845e-02 -Beta_toroidal_profile_at_point_384_______________________________________ beta_thermal_toroidal_profile384_ 6.61464017247070102e-02 -Beta_toroidal_profile_at_point_385_______________________________________ beta_thermal_toroidal_profile385_ 6.63535865756532950e-02 -Beta_toroidal_profile_at_point_386_______________________________________ beta_thermal_toroidal_profile386_ 6.65603067957206834e-02 -Beta_toroidal_profile_at_point_387_______________________________________ beta_thermal_toroidal_profile387_ 6.67665561307078659e-02 -Beta_toroidal_profile_at_point_388_______________________________________ beta_thermal_toroidal_profile388_ 6.69723283285136584e-02 -Beta_toroidal_profile_at_point_389_______________________________________ beta_thermal_toroidal_profile389_ 6.71776171393127508e-02 -Beta_toroidal_profile_at_point_390_______________________________________ beta_thermal_toroidal_profile390_ 6.73824163157314554e-02 -Beta_toroidal_profile_at_point_391_______________________________________ beta_thermal_toroidal_profile391_ 6.75867196130240933e-02 -Beta_toroidal_profile_at_point_392_______________________________________ beta_thermal_toroidal_profile392_ 6.77905207892494643e-02 -Beta_toroidal_profile_at_point_393_______________________________________ beta_thermal_toroidal_profile393_ 6.79938136054479836e-02 -Beta_toroidal_profile_at_point_394_______________________________________ beta_thermal_toroidal_profile394_ 6.81965918258190390e-02 -Beta_toroidal_profile_at_point_395_______________________________________ beta_thermal_toroidal_profile395_ 6.83988492178984331e-02 -Beta_toroidal_profile_at_point_396_______________________________________ beta_thermal_toroidal_profile396_ 6.86005795527368789e-02 -Beta_toroidal_profile_at_point_397_______________________________________ beta_thermal_toroidal_profile397_ 6.88017766050780799e-02 -Beta_toroidal_profile_at_point_398_______________________________________ beta_thermal_toroidal_profile398_ 6.90024341535377533e-02 -Beta_toroidal_profile_at_point_399_______________________________________ beta_thermal_toroidal_profile399_ 6.92025459807825011e-02 -Beta_toroidal_profile_at_point_400_______________________________________ beta_thermal_toroidal_profile400_ 6.94021058737095131e-02 -Beta_toroidal_profile_at_point_401_______________________________________ beta_thermal_toroidal_profile401_ 6.96011076236264098e-02 -Beta_toroidal_profile_at_point_402_______________________________________ beta_thermal_toroidal_profile402_ 6.97995450264312506e-02 -Beta_toroidal_profile_at_point_403_______________________________________ beta_thermal_toroidal_profile403_ 6.99974118827930980e-02 -Beta_toroidal_profile_at_point_404_______________________________________ beta_thermal_toroidal_profile404_ 7.01947019983330672e-02 -Beta_toroidal_profile_at_point_405_______________________________________ beta_thermal_toroidal_profile405_ 7.03914091838052369e-02 -Beta_toroidal_profile_at_point_406_______________________________________ beta_thermal_toroidal_profile406_ 7.05875272552782540e-02 -Beta_toroidal_profile_at_point_407_______________________________________ beta_thermal_toroidal_profile407_ 7.07830500343174657e-02 -Beta_toroidal_profile_at_point_408_______________________________________ beta_thermal_toroidal_profile408_ 7.09779713481666907e-02 -Beta_toroidal_profile_at_point_409_______________________________________ beta_thermal_toroidal_profile409_ 7.11722850299310594e-02 -Beta_toroidal_profile_at_point_410_______________________________________ beta_thermal_toroidal_profile410_ 7.13659849187596868e-02 -Beta_toroidal_profile_at_point_411_______________________________________ beta_thermal_toroidal_profile411_ 7.15590648600289703e-02 -Beta_toroidal_profile_at_point_412_______________________________________ beta_thermal_toroidal_profile412_ 7.17515187055259157e-02 -Beta_toroidal_profile_at_point_413_______________________________________ beta_thermal_toroidal_profile413_ 7.19433403136322397e-02 -Beta_toroidal_profile_at_point_414_______________________________________ beta_thermal_toroidal_profile414_ 7.21345235495080839e-02 -Beta_toroidal_profile_at_point_415_______________________________________ beta_thermal_toroidal_profile415_ 7.23250622852767699e-02 -Beta_toroidal_profile_at_point_416_______________________________________ beta_thermal_toroidal_profile416_ 7.25149504002094852e-02 -Beta_toroidal_profile_at_point_417_______________________________________ beta_thermal_toroidal_profile417_ 7.27041817809103014e-02 -Beta_toroidal_profile_at_point_418_______________________________________ beta_thermal_toroidal_profile418_ 7.28927503215015260e-02 -Beta_toroidal_profile_at_point_419_______________________________________ beta_thermal_toroidal_profile419_ 7.30806499238094709e-02 -Beta_toroidal_profile_at_point_420_______________________________________ beta_thermal_toroidal_profile420_ 7.32678744975502755e-02 -Beta_toroidal_profile_at_point_421_______________________________________ beta_thermal_toroidal_profile421_ 7.34544179605163411e-02 -Beta_toroidal_profile_at_point_422_______________________________________ beta_thermal_toroidal_profile422_ 7.36402742387627790e-02 -Beta_toroidal_profile_at_point_423_______________________________________ beta_thermal_toroidal_profile423_ 7.38254372667943859e-02 -Beta_toroidal_profile_at_point_424_______________________________________ beta_thermal_toroidal_profile424_ 7.40099009877527164e-02 -Beta_toroidal_profile_at_point_425_______________________________________ beta_thermal_toroidal_profile425_ 7.41936593536035166e-02 -Beta_toroidal_profile_at_point_426_______________________________________ beta_thermal_toroidal_profile426_ 7.43767063253245736e-02 -Beta_toroidal_profile_at_point_427_______________________________________ beta_thermal_toroidal_profile427_ 7.45590358730935654e-02 -Beta_toroidal_profile_at_point_428_______________________________________ beta_thermal_toroidal_profile428_ 7.47406419764765906e-02 -Beta_toroidal_profile_at_point_429_______________________________________ beta_thermal_toroidal_profile429_ 7.49215186246165454e-02 -Beta_toroidal_profile_at_point_430_______________________________________ beta_thermal_toroidal_profile430_ 7.51016598164220284e-02 -Beta_toroidal_profile_at_point_431_______________________________________ beta_thermal_toroidal_profile431_ 7.52810595607566052e-02 -Beta_toroidal_profile_at_point_432_______________________________________ beta_thermal_toroidal_profile432_ 7.54597118766280744e-02 -Beta_toroidal_profile_at_point_433_______________________________________ beta_thermal_toroidal_profile433_ 7.56376107933781350e-02 -Beta_toroidal_profile_at_point_434_______________________________________ beta_thermal_toroidal_profile434_ 7.58147503508725257e-02 -Beta_toroidal_profile_at_point_435_______________________________________ beta_thermal_toroidal_profile435_ 7.59911245996910539e-02 -Beta_toroidal_profile_at_point_436_______________________________________ beta_thermal_toroidal_profile436_ 7.61667276013180267e-02 -Beta_toroidal_profile_at_point_437_______________________________________ beta_thermal_toroidal_profile437_ 7.63415534283332087e-02 -Beta_toroidal_profile_at_point_438_______________________________________ beta_thermal_toroidal_profile438_ 7.65155961646026561e-02 -Beta_toroidal_profile_at_point_439_______________________________________ beta_thermal_toroidal_profile439_ 7.66888499054699663e-02 -Beta_toroidal_profile_at_point_440_______________________________________ beta_thermal_toroidal_profile440_ 7.68613087579478466e-02 -Beta_toroidal_profile_at_point_441_______________________________________ beta_thermal_toroidal_profile441_ 7.70329668409098500e-02 -Beta_toroidal_profile_at_point_442_______________________________________ beta_thermal_toroidal_profile442_ 7.72038182852822913e-02 -Beta_toroidal_profile_at_point_443_______________________________________ beta_thermal_toroidal_profile443_ 7.73738572342365927e-02 -Beta_toroidal_profile_at_point_444_______________________________________ beta_thermal_toroidal_profile444_ 7.75430778433817969e-02 -Beta_toroidal_profile_at_point_445_______________________________________ beta_thermal_toroidal_profile445_ 7.77114742809571213e-02 -Beta_toroidal_profile_at_point_446_______________________________________ beta_thermal_toroidal_profile446_ 7.78790407280251645e-02 -Beta_toroidal_profile_at_point_447_______________________________________ beta_thermal_toroidal_profile447_ 7.80457713786648494e-02 -Beta_toroidal_profile_at_point_448_______________________________________ beta_thermal_toroidal_profile448_ 7.82116604401650595e-02 -Beta_toroidal_profile_at_point_449_______________________________________ beta_thermal_toroidal_profile449_ 7.83767021332182345e-02 -Beta_toroidal_profile_at_point_450_______________________________________ beta_thermal_toroidal_profile450_ 7.85408906921142985e-02 -Beta_toroidal_profile_at_point_451_______________________________________ beta_thermal_toroidal_profile451_ 7.87042203649345740e-02 -Beta_toroidal_profile_at_point_452_______________________________________ beta_thermal_toroidal_profile452_ 7.88666854137464596e-02 -Beta_toroidal_profile_at_point_453_______________________________________ beta_thermal_toroidal_profile453_ 7.90282801147977054e-02 -Beta_toroidal_profile_at_point_454_______________________________________ beta_thermal_toroidal_profile454_ 7.91889987587112987e-02 -Beta_toroidal_profile_at_point_455_______________________________________ beta_thermal_toroidal_profile455_ 7.93488356506804465e-02 -Beta_toroidal_profile_at_point_456_______________________________________ beta_thermal_toroidal_profile456_ 7.95077851106638089e-02 -Beta_toroidal_profile_at_point_457_______________________________________ beta_thermal_toroidal_profile457_ 7.96658414735807174e-02 -Beta_toroidal_profile_at_point_458_______________________________________ beta_thermal_toroidal_profile458_ 7.98229990895071573e-02 -Beta_toroidal_profile_at_point_459_______________________________________ beta_thermal_toroidal_profile459_ 7.99792523238711667e-02 -Beta_toroidal_profile_at_point_460_______________________________________ beta_thermal_toroidal_profile460_ 8.01345955576492214e-02 -Beta_toroidal_profile_at_point_461_______________________________________ beta_thermal_toroidal_profile461_ 8.02890231875622168e-02 -Beta_toroidal_profile_at_point_462_______________________________________ beta_thermal_toroidal_profile462_ 8.04425296262719219e-02 -Beta_toroidal_profile_at_point_463_______________________________________ beta_thermal_toroidal_profile463_ 8.05951093025776694e-02 -Beta_toroidal_profile_at_point_464_______________________________________ beta_thermal_toroidal_profile464_ 8.07467566616131005e-02 -Beta_toroidal_profile_at_point_465_______________________________________ beta_thermal_toroidal_profile465_ 8.08974661650431331e-02 -Beta_toroidal_profile_at_point_466_______________________________________ beta_thermal_toroidal_profile466_ 8.10472322912611509e-02 -Beta_toroidal_profile_at_point_467_______________________________________ beta_thermal_toroidal_profile467_ 8.11960495355864148e-02 -Beta_toroidal_profile_at_point_468_______________________________________ beta_thermal_toroidal_profile468_ 8.13439124104614331e-02 -Beta_toroidal_profile_at_point_469_______________________________________ beta_thermal_toroidal_profile469_ 8.14908154456499279e-02 -Beta_toroidal_profile_at_point_470_______________________________________ beta_thermal_toroidal_profile470_ 8.16367531884344549e-02 -Beta_toroidal_profile_at_point_471_______________________________________ beta_thermal_toroidal_profile471_ 8.17817202038145508e-02 -Beta_toroidal_profile_at_point_472_______________________________________ beta_thermal_toroidal_profile472_ 8.19257110747050460e-02 -Beta_toroidal_profile_at_point_473_______________________________________ beta_thermal_toroidal_profile473_ 8.20687204021344069e-02 -Beta_toroidal_profile_at_point_474_______________________________________ beta_thermal_toroidal_profile474_ 8.22107428054431738e-02 -Beta_toroidal_profile_at_point_475_______________________________________ beta_thermal_toroidal_profile475_ 8.23517729224828993e-02 -Beta_toroidal_profile_at_point_476_______________________________________ beta_thermal_toroidal_profile476_ 8.24918054098146836e-02 -Beta_toroidal_profile_at_point_477_______________________________________ beta_thermal_toroidal_profile477_ 8.26308349429085709e-02 -Beta_toroidal_profile_at_point_478_______________________________________ beta_thermal_toroidal_profile478_ 8.27688562163425567e-02 -Beta_toroidal_profile_at_point_479_______________________________________ beta_thermal_toroidal_profile479_ 8.29058639440017620e-02 -Beta_toroidal_profile_at_point_480_______________________________________ beta_thermal_toroidal_profile480_ 8.30418528592782590e-02 -Beta_toroidal_profile_at_point_481_______________________________________ beta_thermal_toroidal_profile481_ 8.31768177152703431e-02 -Beta_toroidal_profile_at_point_482_______________________________________ beta_thermal_toroidal_profile482_ 8.33107532849824556e-02 -Beta_toroidal_profile_at_point_483_______________________________________ beta_thermal_toroidal_profile483_ 8.34436543615250936e-02 -Beta_toroidal_profile_at_point_484_______________________________________ beta_thermal_toroidal_profile484_ 8.35755157583148167e-02 -Beta_toroidal_profile_at_point_485_______________________________________ beta_thermal_toroidal_profile485_ 8.37063323092743089e-02 -Beta_toroidal_profile_at_point_486_______________________________________ beta_thermal_toroidal_profile486_ 8.38360988690328574e-02 -Beta_toroidal_profile_at_point_487_______________________________________ beta_thermal_toroidal_profile487_ 8.39648103131265117e-02 -Beta_toroidal_profile_at_point_488_______________________________________ beta_thermal_toroidal_profile488_ 8.40924615381990065e-02 -Beta_toroidal_profile_at_point_489_______________________________________ beta_thermal_toroidal_profile489_ 8.42190474622019764e-02 -Beta_toroidal_profile_at_point_490_______________________________________ beta_thermal_toroidal_profile490_ 8.43445630245960865e-02 -Beta_toroidal_profile_at_point_491_______________________________________ beta_thermal_toroidal_profile491_ 8.44690031865517332e-02 -Beta_toroidal_profile_at_point_492_______________________________________ beta_thermal_toroidal_profile492_ 8.45923629311500919e-02 -Beta_toroidal_profile_at_point_493_______________________________________ beta_thermal_toroidal_profile493_ 8.47146372635843581e-02 -Beta_toroidal_profile_at_point_494_______________________________________ beta_thermal_toroidal_profile494_ 8.48358212113606985e-02 -Beta_toroidal_profile_at_point_495_______________________________________ beta_thermal_toroidal_profile495_ 8.49559098244998534e-02 -Beta_toroidal_profile_at_point_496_______________________________________ beta_thermal_toroidal_profile496_ 8.50748981757383504e-02 -Beta_toroidal_profile_at_point_497_______________________________________ beta_thermal_toroidal_profile497_ 8.51927813607302326e-02 -Beta_toroidal_profile_at_point_498_______________________________________ beta_thermal_toroidal_profile498_ 8.53095544982484660e-02 -Beta_toroidal_profile_at_point_499_______________________________________ beta_thermal_toroidal_profile499_ 8.54252127303867376e-02 -Beta_toroidal_profile_at_point_500_______________________________________ beta_thermal_toroidal_profile500_ 8.55397512227612788e-02 -Beta_toroidal_profile_at_point_501_______________________________________ beta_thermal_toroidal_profile501_ 8.56537662067413108e-02 -Beta_toroidal_profile_at_point_502_______________________________________ beta_thermal_toroidal_profile502_ 8.57672552821591855e-02 -Beta_toroidal_profile_at_point_503_______________________________________ beta_thermal_toroidal_profile503_ 8.58796134171324610e-02 -Beta_toroidal_profile_at_point_504_______________________________________ beta_thermal_toroidal_profile504_ 8.59908358459200439e-02 -Beta_toroidal_profile_at_point_505_______________________________________ beta_thermal_toroidal_profile505_ 8.61009178271523873e-02 -Beta_toroidal_profile_at_point_506_______________________________________ beta_thermal_toroidal_profile506_ 8.62098546440331903e-02 -Beta_toroidal_profile_at_point_507_______________________________________ beta_thermal_toroidal_profile507_ 8.63176416045421113e-02 -Beta_toroidal_profile_at_point_508_______________________________________ beta_thermal_toroidal_profile508_ 8.64242740416373001e-02 -Beta_toroidal_profile_at_point_509_______________________________________ beta_thermal_toroidal_profile509_ 8.65297473134576112e-02 -Beta_toroidal_profile_at_point_510_______________________________________ beta_thermal_toroidal_profile510_ 8.66340568035254832e-02 -Beta_toroidal_profile_at_point_511_______________________________________ beta_thermal_toroidal_profile511_ 8.67371979209494437e-02 -Beta_toroidal_profile_at_point_512_______________________________________ beta_thermal_toroidal_profile512_ 8.68391661006267523e-02 -Beta_toroidal_profile_at_point_513_______________________________________ beta_thermal_toroidal_profile513_ 8.69399568034462666e-02 -Beta_toroidal_profile_at_point_514_______________________________________ beta_thermal_toroidal_profile514_ 8.70395655164911686e-02 -Beta_toroidal_profile_at_point_515_______________________________________ beta_thermal_toroidal_profile515_ 8.71379877532417885e-02 -Beta_toroidal_profile_at_point_516_______________________________________ beta_thermal_toroidal_profile516_ 8.72352190537785260e-02 -Beta_toroidal_profile_at_point_517_______________________________________ beta_thermal_toroidal_profile517_ 8.73312549849847436e-02 -Beta_toroidal_profile_at_point_518_______________________________________ beta_thermal_toroidal_profile518_ 8.74260911407497149e-02 -Beta_toroidal_profile_at_point_519_______________________________________ beta_thermal_toroidal_profile519_ 8.75197231421715877e-02 -Beta_toroidal_profile_at_point_520_______________________________________ beta_thermal_toroidal_profile520_ 8.76121466377605407e-02 -Beta_toroidal_profile_at_point_521_______________________________________ beta_thermal_toroidal_profile521_ 8.77033573036414271e-02 -Beta_toroidal_profile_at_point_522_______________________________________ beta_thermal_toroidal_profile522_ 8.77933508437575560e-02 -Beta_toroidal_profile_at_point_523_______________________________________ beta_thermal_toroidal_profile523_ 8.78821229900728640e-02 -Beta_toroidal_profile_at_point_524_______________________________________ beta_thermal_toroidal_profile524_ 8.79696695027758352e-02 -Beta_toroidal_profile_at_point_525_______________________________________ beta_thermal_toroidal_profile525_ 8.80559861704820618e-02 -Beta_toroidal_profile_at_point_526_______________________________________ beta_thermal_toroidal_profile526_ 8.81410688104377060e-02 -Beta_toroidal_profile_at_point_527_______________________________________ beta_thermal_toroidal_profile527_ 8.82249132687222826e-02 -Beta_toroidal_profile_at_point_528_______________________________________ beta_thermal_toroidal_profile528_ 8.83075154204521623e-02 -Beta_toroidal_profile_at_point_529_______________________________________ beta_thermal_toroidal_profile529_ 8.83888711699834656e-02 -Beta_toroidal_profile_at_point_530_______________________________________ beta_thermal_toroidal_profile530_ 8.84689764511152887e-02 -Beta_toroidal_profile_at_point_531_______________________________________ beta_thermal_toroidal_profile531_ 8.85478272272926525e-02 -Beta_toroidal_profile_at_point_532_______________________________________ beta_thermal_toroidal_profile532_ 8.86254194918098953e-02 -Beta_toroidal_profile_at_point_533_______________________________________ beta_thermal_toroidal_profile533_ 8.87017492680135800e-02 -Beta_toroidal_profile_at_point_534_______________________________________ beta_thermal_toroidal_profile534_ 8.87768126095055260e-02 -Beta_toroidal_profile_at_point_535_______________________________________ beta_thermal_toroidal_profile535_ 8.88506056003461053e-02 -Beta_toroidal_profile_at_point_536_______________________________________ beta_thermal_toroidal_profile536_ 8.89231243552569828e-02 -Beta_toroidal_profile_at_point_537_______________________________________ beta_thermal_toroidal_profile537_ 8.89943650198244118e-02 -Beta_toroidal_profile_at_point_538_______________________________________ beta_thermal_toroidal_profile538_ 8.90643237707020169e-02 -Beta_toroidal_profile_at_point_539_______________________________________ beta_thermal_toroidal_profile539_ 8.91329968158137281e-02 -Beta_toroidal_profile_at_point_540_______________________________________ beta_thermal_toroidal_profile540_ 8.92003803945569662e-02 -Beta_toroidal_profile_at_point_541_______________________________________ beta_thermal_toroidal_profile541_ 8.92664707780050914e-02 -Beta_toroidal_profile_at_point_542_______________________________________ beta_thermal_toroidal_profile542_ 8.93312642691106579e-02 -Beta_toroidal_profile_at_point_543_______________________________________ beta_thermal_toroidal_profile543_ 8.93947572029079873e-02 -Beta_toroidal_profile_at_point_544_______________________________________ beta_thermal_toroidal_profile544_ 8.94569459467155909e-02 -Beta_toroidal_profile_at_point_545_______________________________________ beta_thermal_toroidal_profile545_ 8.95178269003397559e-02 -Beta_toroidal_profile_at_point_546_______________________________________ beta_thermal_toroidal_profile546_ 8.95773964962759545e-02 -Beta_toroidal_profile_at_point_547_______________________________________ beta_thermal_toroidal_profile547_ 8.96356511999125971e-02 -Beta_toroidal_profile_at_point_548_______________________________________ beta_thermal_toroidal_profile548_ 8.96925875097325659e-02 -Beta_toroidal_profile_at_point_549_______________________________________ beta_thermal_toroidal_profile549_ 8.97482019575162604e-02 -Beta_toroidal_profile_at_point_550_______________________________________ beta_thermal_toroidal_profile550_ 8.98024911085436445e-02 -Beta_toroidal_profile_at_point_551_______________________________________ beta_thermal_toroidal_profile551_ 8.98554515617967509e-02 -Beta_toroidal_profile_at_point_552_______________________________________ beta_thermal_toroidal_profile552_ 8.99070799501616863e-02 -Beta_toroidal_profile_at_point_553_______________________________________ beta_thermal_toroidal_profile553_ 8.99573729406309280e-02 -Beta_toroidal_profile_at_point_554_______________________________________ beta_thermal_toroidal_profile554_ 9.00063272345052040e-02 -Beta_toroidal_profile_at_point_555_______________________________________ beta_thermal_toroidal_profile555_ 9.00539395675956506e-02 -Beta_toroidal_profile_at_point_556_______________________________________ beta_thermal_toroidal_profile556_ 9.01002067104254845e-02 -Beta_toroidal_profile_at_point_557_______________________________________ beta_thermal_toroidal_profile557_ 9.01451254684319525e-02 -Beta_toroidal_profile_at_point_558_______________________________________ beta_thermal_toroidal_profile558_ 9.01886926821677953e-02 -Beta_toroidal_profile_at_point_559_______________________________________ beta_thermal_toroidal_profile559_ 9.02309052275030166e-02 -Beta_toroidal_profile_at_point_560_______________________________________ beta_thermal_toroidal_profile560_ 9.02717600158263050e-02 -Beta_toroidal_profile_at_point_561_______________________________________ beta_thermal_toroidal_profile561_ 9.03112539942462766e-02 -Beta_toroidal_profile_at_point_562_______________________________________ beta_thermal_toroidal_profile562_ 9.03493841457928409e-02 -Beta_toroidal_profile_at_point_563_______________________________________ beta_thermal_toroidal_profile563_ 9.03861474896182765e-02 -Beta_toroidal_profile_at_point_564_______________________________________ beta_thermal_toroidal_profile564_ 9.04215410811983200e-02 -Beta_toroidal_profile_at_point_565_______________________________________ beta_thermal_toroidal_profile565_ 9.04555620125327697e-02 -Beta_toroidal_profile_at_point_566_______________________________________ beta_thermal_toroidal_profile566_ 9.04882074123468522e-02 -Beta_toroidal_profile_at_point_567_______________________________________ beta_thermal_toroidal_profile567_ 9.05194744462910067e-02 -Beta_toroidal_profile_at_point_568_______________________________________ beta_thermal_toroidal_profile568_ 9.05493603171422801e-02 -Beta_toroidal_profile_at_point_569_______________________________________ beta_thermal_toroidal_profile569_ 9.05778622650038751e-02 -Beta_toroidal_profile_at_point_570_______________________________________ beta_thermal_toroidal_profile570_ 9.06049775675059621e-02 -Beta_toroidal_profile_at_point_571_______________________________________ beta_thermal_toroidal_profile571_ 9.06307035400054362e-02 -Beta_toroidal_profile_at_point_572_______________________________________ beta_thermal_toroidal_profile572_ 9.06550375357860205e-02 -Beta_toroidal_profile_at_point_573_______________________________________ beta_thermal_toroidal_profile573_ 9.06779769462578433e-02 -Beta_toroidal_profile_at_point_574_______________________________________ beta_thermal_toroidal_profile574_ 9.06995192011572915e-02 -Beta_toroidal_profile_at_point_575_______________________________________ beta_thermal_toroidal_profile575_ 9.07196617687462958e-02 -Beta_toroidal_profile_at_point_576_______________________________________ beta_thermal_toroidal_profile576_ 9.07384021560115883e-02 -Beta_toroidal_profile_at_point_577_______________________________________ beta_thermal_toroidal_profile577_ 9.07557379088641536e-02 -Beta_toroidal_profile_at_point_578_______________________________________ beta_thermal_toroidal_profile578_ 9.07716666123376953e-02 -Beta_toroidal_profile_at_point_579_______________________________________ beta_thermal_toroidal_profile579_ 9.07861858907879626e-02 -Beta_toroidal_profile_at_point_580_______________________________________ beta_thermal_toroidal_profile580_ 9.07992934080909531e-02 -Beta_toroidal_profile_at_point_581_______________________________________ beta_thermal_toroidal_profile581_ 9.08109868678414062e-02 -Beta_toroidal_profile_at_point_582_______________________________________ beta_thermal_toroidal_profile582_ 9.08212640135513394e-02 -Beta_toroidal_profile_at_point_583_______________________________________ beta_thermal_toroidal_profile583_ 9.08301226288477509e-02 -Beta_toroidal_profile_at_point_584_______________________________________ beta_thermal_toroidal_profile584_ 9.08375605376706835e-02 -Beta_toroidal_profile_at_point_585_______________________________________ beta_thermal_toroidal_profile585_ 9.08435756044708581e-02 -Beta_toroidal_profile_at_point_586_______________________________________ beta_thermal_toroidal_profile586_ 9.08481657344070020e-02 -Beta_toroidal_profile_at_point_587_______________________________________ beta_thermal_toroidal_profile587_ 9.08513288735435659e-02 -Beta_toroidal_profile_at_point_588_______________________________________ beta_thermal_toroidal_profile588_ 9.08530630090470387e-02 -Beta_toroidal_profile_at_point_589_______________________________________ beta_thermal_toroidal_profile589_ 9.08533661693836508e-02 -Beta_toroidal_profile_at_point_590_______________________________________ beta_thermal_toroidal_profile590_ 9.08522364245153979e-02 -Beta_toroidal_profile_at_point_591_______________________________________ beta_thermal_toroidal_profile591_ 9.08496718860966057e-02 -Beta_toroidal_profile_at_point_592_______________________________________ beta_thermal_toroidal_profile592_ 9.08456707076703979e-02 -Beta_toroidal_profile_at_point_593_______________________________________ beta_thermal_toroidal_profile593_ 9.08402310848642897e-02 -Beta_toroidal_profile_at_point_594_______________________________________ beta_thermal_toroidal_profile594_ 9.08333512555862255e-02 -Beta_toroidal_profile_at_point_595_______________________________________ beta_thermal_toroidal_profile595_ 9.08250295002199087e-02 -Beta_toroidal_profile_at_point_596_______________________________________ beta_thermal_toroidal_profile596_ 9.08152641418203121e-02 -Beta_toroidal_profile_at_point_597_______________________________________ beta_thermal_toroidal_profile597_ 9.08040535463083415e-02 -Beta_toroidal_profile_at_point_598_______________________________________ beta_thermal_toroidal_profile598_ 9.07913961226660543e-02 -Beta_toroidal_profile_at_point_599_______________________________________ beta_thermal_toroidal_profile599_ 9.07772903231309769e-02 -Beta_toroidal_profile_at_point_600_______________________________________ beta_thermal_toroidal_profile600_ 9.07617346433904348e-02 -Beta_toroidal_profile_at_point_601_______________________________________ beta_thermal_toroidal_profile601_ 9.07447276227755784e-02 -Beta_toroidal_profile_at_point_602_______________________________________ beta_thermal_toroidal_profile602_ 9.07262678444553244e-02 -Beta_toroidal_profile_at_point_603_______________________________________ beta_thermal_toroidal_profile603_ 9.07063539356296744e-02 -Beta_toroidal_profile_at_point_604_______________________________________ beta_thermal_toroidal_profile604_ 9.06849845677230593e-02 -Beta_toroidal_profile_at_point_605_______________________________________ beta_thermal_toroidal_profile605_ 9.06621584565775185e-02 -Beta_toroidal_profile_at_point_606_______________________________________ beta_thermal_toroidal_profile606_ 9.06378743626451433e-02 -Beta_toroidal_profile_at_point_607_______________________________________ beta_thermal_toroidal_profile607_ 9.06121310911804645e-02 -Beta_toroidal_profile_at_point_608_______________________________________ beta_thermal_toroidal_profile608_ 9.05849274924331455e-02 -Beta_toroidal_profile_at_point_609_______________________________________ beta_thermal_toroidal_profile609_ 9.05562624618392320e-02 -Beta_toroidal_profile_at_point_610_______________________________________ beta_thermal_toroidal_profile610_ 9.05261349402132071e-02 -Beta_toroidal_profile_at_point_611_______________________________________ beta_thermal_toroidal_profile611_ 9.04945439139389490e-02 -Beta_toroidal_profile_at_point_612_______________________________________ beta_thermal_toroidal_profile612_ 9.04614884151610371e-02 -Beta_toroidal_profile_at_point_613_______________________________________ beta_thermal_toroidal_profile613_ 9.04269675219752239e-02 -Beta_toroidal_profile_at_point_614_______________________________________ beta_thermal_toroidal_profile614_ 9.03909803586191163e-02 -Beta_toroidal_profile_at_point_615_______________________________________ beta_thermal_toroidal_profile615_ 9.03535260956619957e-02 -Beta_toroidal_profile_at_point_616_______________________________________ beta_thermal_toroidal_profile616_ 9.03146039501947495e-02 -Beta_toroidal_profile_at_point_617_______________________________________ beta_thermal_toroidal_profile617_ 9.02742131860193309e-02 -Beta_toroidal_profile_at_point_618_______________________________________ beta_thermal_toroidal_profile618_ 9.02323531138380791e-02 -Beta_toroidal_profile_at_point_619_______________________________________ beta_thermal_toroidal_profile619_ 9.01890230914422636e-02 -Beta_toroidal_profile_at_point_620_______________________________________ beta_thermal_toroidal_profile620_ 9.01442225239009048e-02 -Beta_toroidal_profile_at_point_621_______________________________________ beta_thermal_toroidal_profile621_ 9.00979508637486798e-02 -Beta_toroidal_profile_at_point_622_______________________________________ beta_thermal_toroidal_profile622_ 9.00502076111742433e-02 -Beta_toroidal_profile_at_point_623_______________________________________ beta_thermal_toroidal_profile623_ 9.00009923142071067e-02 -Beta_toroidal_profile_at_point_624_______________________________________ beta_thermal_toroidal_profile624_ 8.99503045689054870e-02 -Beta_toroidal_profile_at_point_625_______________________________________ beta_thermal_toroidal_profile625_ 8.98981440195427417e-02 -Beta_toroidal_profile_at_point_626_______________________________________ beta_thermal_toroidal_profile626_ 8.98445103587940386e-02 -Beta_toroidal_profile_at_point_627_______________________________________ beta_thermal_toroidal_profile627_ 8.97894033279225123e-02 -Beta_toroidal_profile_at_point_628_______________________________________ beta_thermal_toroidal_profile628_ 8.97328227169649772e-02 -Beta_toroidal_profile_at_point_629_______________________________________ beta_thermal_toroidal_profile629_ 8.96747683649176397e-02 -Beta_toroidal_profile_at_point_630_______________________________________ beta_thermal_toroidal_profile630_ 8.96152401599207560e-02 -Beta_toroidal_profile_at_point_631_______________________________________ beta_thermal_toroidal_profile631_ 8.95542380394439702e-02 -Beta_toroidal_profile_at_point_632_______________________________________ beta_thermal_toroidal_profile632_ 8.94917619904698897e-02 -Beta_toroidal_profile_at_point_633_______________________________________ beta_thermal_toroidal_profile633_ 8.94278120496790896e-02 -Beta_toroidal_profile_at_point_634_______________________________________ beta_thermal_toroidal_profile634_ 8.93623883036326894e-02 -Beta_toroidal_profile_at_point_635_______________________________________ beta_thermal_toroidal_profile635_ 8.92954908889564275e-02 -Beta_toroidal_profile_at_point_636_______________________________________ beta_thermal_toroidal_profile636_ 8.92271199925230712e-02 -Beta_toroidal_profile_at_point_637_______________________________________ beta_thermal_toroidal_profile637_ 8.91572758516352287e-02 -Beta_toroidal_profile_at_point_638_______________________________________ beta_thermal_toroidal_profile638_ 8.90859587542070924e-02 -Beta_toroidal_profile_at_point_639_______________________________________ beta_thermal_toroidal_profile639_ 8.90131690389464880e-02 -Beta_toroidal_profile_at_point_640_______________________________________ beta_thermal_toroidal_profile640_ 8.89389070955360350e-02 -Beta_toroidal_profile_at_point_641_______________________________________ beta_thermal_toroidal_profile641_ 8.88631733648141547e-02 -Beta_toroidal_profile_at_point_642_______________________________________ beta_thermal_toroidal_profile642_ 8.87859683389555371e-02 -Beta_toroidal_profile_at_point_643_______________________________________ beta_thermal_toroidal_profile643_ 8.87072925616512881e-02 -Beta_toroidal_profile_at_point_644_______________________________________ beta_thermal_toroidal_profile644_ 8.86271466282887027e-02 -Beta_toroidal_profile_at_point_645_______________________________________ beta_thermal_toroidal_profile645_ 8.85455311861306632e-02 -Beta_toroidal_profile_at_point_646_______________________________________ beta_thermal_toroidal_profile646_ 8.84624469344943154e-02 -Beta_toroidal_profile_at_point_647_______________________________________ beta_thermal_toroidal_profile647_ 8.83778946249297453e-02 -Beta_toroidal_profile_at_point_648_______________________________________ beta_thermal_toroidal_profile648_ 8.82918750613981562e-02 -Beta_toroidal_profile_at_point_649_______________________________________ beta_thermal_toroidal_profile649_ 8.82043891004490460e-02 -Beta_toroidal_profile_at_point_650_______________________________________ beta_thermal_toroidal_profile650_ 8.81154376513983151e-02 -Beta_toroidal_profile_at_point_651_______________________________________ beta_thermal_toroidal_profile651_ 8.80250216765041532e-02 -Beta_toroidal_profile_at_point_652_______________________________________ beta_thermal_toroidal_profile652_ 8.79331421911440925e-02 -Beta_toroidal_profile_at_point_653_______________________________________ beta_thermal_toroidal_profile653_ 8.78398002639904779e-02 -Beta_toroidal_profile_at_point_654_______________________________________ beta_thermal_toroidal_profile654_ 8.77449970171865490e-02 -Beta_toroidal_profile_at_point_655_______________________________________ beta_thermal_toroidal_profile655_ 8.76487336265208694e-02 -Beta_toroidal_profile_at_point_656_______________________________________ beta_thermal_toroidal_profile656_ 8.75510113216026176e-02 -Beta_toroidal_profile_at_point_657_______________________________________ beta_thermal_toroidal_profile657_ 8.74518313860352808e-02 -Beta_toroidal_profile_at_point_658_______________________________________ beta_thermal_toroidal_profile658_ 8.73511951575907525e-02 -Beta_toroidal_profile_at_point_659_______________________________________ beta_thermal_toroidal_profile659_ 8.72491040283825264e-02 -Beta_toroidal_profile_at_point_660_______________________________________ beta_thermal_toroidal_profile660_ 8.71455594450384480e-02 -Beta_toroidal_profile_at_point_661_______________________________________ beta_thermal_toroidal_profile661_ 8.70405629088733951e-02 -Beta_toroidal_profile_at_point_662_______________________________________ beta_thermal_toroidal_profile662_ 8.69341159760609883e-02 -Beta_toroidal_profile_at_point_663_______________________________________ beta_thermal_toroidal_profile663_ 8.68262202578053421e-02 -Beta_toroidal_profile_at_point_664_______________________________________ beta_thermal_toroidal_profile664_ 8.67168774205119286e-02 -Beta_toroidal_profile_at_point_665_______________________________________ beta_thermal_toroidal_profile665_ 8.66060891859581627e-02 -Beta_toroidal_profile_at_point_666_______________________________________ beta_thermal_toroidal_profile666_ 8.64938573314636971e-02 -Beta_toroidal_profile_at_point_667_______________________________________ beta_thermal_toroidal_profile667_ 8.63801836900599113e-02 -Beta_toroidal_profile_at_point_668_______________________________________ beta_thermal_toroidal_profile668_ 8.62650701506591927e-02 -Beta_toroidal_profile_at_point_669_______________________________________ beta_thermal_toroidal_profile669_ 8.61485186582237883e-02 -Beta_toroidal_profile_at_point_670_______________________________________ beta_thermal_toroidal_profile670_ 8.60305312139337114e-02 -Beta_toroidal_profile_at_point_671_______________________________________ beta_thermal_toroidal_profile671_ 8.59111098753550101e-02 -Beta_toroidal_profile_at_point_672_______________________________________ beta_thermal_toroidal_profile672_ 8.57902567566065921e-02 -Beta_toroidal_profile_at_point_673_______________________________________ beta_thermal_toroidal_profile673_ 8.56679740285275493e-02 -Beta_toroidal_profile_at_point_674_______________________________________ beta_thermal_toroidal_profile674_ 8.55442639188430803e-02 -Beta_toroidal_profile_at_point_675_______________________________________ beta_thermal_toroidal_profile675_ 8.54191287123307469e-02 -Beta_toroidal_profile_at_point_676_______________________________________ beta_thermal_toroidal_profile676_ 8.52925707509856329e-02 -Beta_toroidal_profile_at_point_677_______________________________________ beta_thermal_toroidal_profile677_ 8.51645924341854488e-02 -Beta_toroidal_profile_at_point_678_______________________________________ beta_thermal_toroidal_profile678_ 8.50351962188547611e-02 -Beta_toroidal_profile_at_point_679_______________________________________ beta_thermal_toroidal_profile679_ 8.49043846196293334e-02 -Beta_toroidal_profile_at_point_680_______________________________________ beta_thermal_toroidal_profile680_ 8.47721602090192039e-02 -Beta_toroidal_profile_at_point_681_______________________________________ beta_thermal_toroidal_profile681_ 8.46385256175720413e-02 -Beta_toroidal_profile_at_point_682_______________________________________ beta_thermal_toroidal_profile682_ 8.45034835340353202e-02 -Beta_toroidal_profile_at_point_683_______________________________________ beta_thermal_toroidal_profile683_ 8.43670367055186499e-02 -Beta_toroidal_profile_at_point_684_______________________________________ beta_thermal_toroidal_profile684_ 8.42291879376552005e-02 -Beta_toroidal_profile_at_point_685_______________________________________ beta_thermal_toroidal_profile685_ 8.40899400947627829e-02 -Beta_toroidal_profile_at_point_686_______________________________________ beta_thermal_toroidal_profile686_ 8.39492961000044974e-02 -Beta_toroidal_profile_at_point_687_______________________________________ beta_thermal_toroidal_profile687_ 8.38072589355486897e-02 -Beta_toroidal_profile_at_point_688_______________________________________ beta_thermal_toroidal_profile688_ 8.36638316427286560e-02 -Beta_toroidal_profile_at_point_689_______________________________________ beta_thermal_toroidal_profile689_ 8.35190173222017662e-02 -Beta_toroidal_profile_at_point_690_______________________________________ beta_thermal_toroidal_profile690_ 8.33728191341081282e-02 -Beta_toroidal_profile_at_point_691_______________________________________ beta_thermal_toroidal_profile691_ 8.32252402982287254e-02 -Beta_toroidal_profile_at_point_692_______________________________________ beta_thermal_toroidal_profile692_ 8.30762840941430686e-02 -Beta_toroidal_profile_at_point_693_______________________________________ beta_thermal_toroidal_profile693_ 8.29259538613863062e-02 -Beta_toroidal_profile_at_point_694_______________________________________ beta_thermal_toroidal_profile694_ 8.27742529996062376e-02 -Beta_toroidal_profile_at_point_695_______________________________________ beta_thermal_toroidal_profile695_ 8.26211849687191469e-02 -Beta_toroidal_profile_at_point_696_______________________________________ beta_thermal_toroidal_profile696_ 8.24667532890659694e-02 -Beta_toroidal_profile_at_point_697_______________________________________ beta_thermal_toroidal_profile697_ 8.23109615415671819e-02 -Beta_toroidal_profile_at_point_698_______________________________________ beta_thermal_toroidal_profile698_ 8.21538133678777899e-02 -Beta_toroidal_profile_at_point_699_______________________________________ beta_thermal_toroidal_profile699_ 8.19953124705418146e-02 -Beta_toroidal_profile_at_point_700_______________________________________ beta_thermal_toroidal_profile700_ 8.18354626131457263e-02 -Beta_toroidal_profile_at_point_701_______________________________________ beta_thermal_toroidal_profile701_ 8.16742676204723489e-02 -Beta_toroidal_profile_at_point_702_______________________________________ beta_thermal_toroidal_profile702_ 8.15117313786533348e-02 -Beta_toroidal_profile_at_point_703_______________________________________ beta_thermal_toroidal_profile703_ 8.13478578353218490e-02 -Beta_toroidal_profile_at_point_704_______________________________________ beta_thermal_toroidal_profile704_ 8.11826509997645024e-02 -Beta_toroidal_profile_at_point_705_______________________________________ beta_thermal_toroidal_profile705_ 8.10161149430730920e-02 -Beta_toroidal_profile_at_point_706_______________________________________ beta_thermal_toroidal_profile706_ 8.08482537982951610e-02 -Beta_toroidal_profile_at_point_707_______________________________________ beta_thermal_toroidal_profile707_ 8.06790717605852387e-02 -Beta_toroidal_profile_at_point_708_______________________________________ beta_thermal_toroidal_profile708_ 8.05085730873547067e-02 -Beta_toroidal_profile_at_point_709_______________________________________ beta_thermal_toroidal_profile709_ 8.03367620984215547e-02 -Beta_toroidal_profile_at_point_710_______________________________________ beta_thermal_toroidal_profile710_ 8.01636431761597462e-02 -Beta_toroidal_profile_at_point_711_______________________________________ beta_thermal_toroidal_profile711_ 7.99892207656480586e-02 -Beta_toroidal_profile_at_point_712_______________________________________ beta_thermal_toroidal_profile712_ 7.98134993748185750e-02 -Beta_toroidal_profile_at_point_713_______________________________________ beta_thermal_toroidal_profile713_ 7.96364835746047328e-02 -Beta_toroidal_profile_at_point_714_______________________________________ beta_thermal_toroidal_profile714_ 7.94581779990885806e-02 -Beta_toroidal_profile_at_point_715_______________________________________ beta_thermal_toroidal_profile715_ 7.92785873456486184e-02 -Beta_toroidal_profile_at_point_716_______________________________________ beta_thermal_toroidal_profile716_ 7.90977163751059448e-02 -Beta_toroidal_profile_at_point_717_______________________________________ beta_thermal_toroidal_profile717_ 7.89155699118711251e-02 -Beta_toroidal_profile_at_point_718_______________________________________ beta_thermal_toroidal_profile718_ 7.87321528440897145e-02 -Beta_toroidal_profile_at_point_719_______________________________________ beta_thermal_toroidal_profile719_ 7.85474701237883904e-02 -Beta_toroidal_profile_at_point_720_______________________________________ beta_thermal_toroidal_profile720_ 7.83615267670196985e-02 -Beta_toroidal_profile_at_point_721_______________________________________ beta_thermal_toroidal_profile721_ 7.81743278540072556e-02 -Beta_toroidal_profile_at_point_722_______________________________________ beta_thermal_toroidal_profile722_ 7.79858785292900925e-02 -Beta_toroidal_profile_at_point_723_______________________________________ beta_thermal_toroidal_profile723_ 7.77961840018667888e-02 -Beta_toroidal_profile_at_point_724_______________________________________ beta_thermal_toroidal_profile724_ 7.76052495453393582e-02 -Beta_toroidal_profile_at_point_725_______________________________________ beta_thermal_toroidal_profile725_ 7.74130804980566606e-02 -Beta_toroidal_profile_at_point_726_______________________________________ beta_thermal_toroidal_profile726_ 7.72196822632575941e-02 -Beta_toroidal_profile_at_point_727_______________________________________ beta_thermal_toroidal_profile727_ 7.70250603092138414e-02 -Beta_toroidal_profile_at_point_728_______________________________________ beta_thermal_toroidal_profile728_ 7.68292201693725058e-02 -Beta_toroidal_profile_at_point_729_______________________________________ beta_thermal_toroidal_profile729_ 7.66321674424982058e-02 -Beta_toroidal_profile_at_point_730_______________________________________ beta_thermal_toroidal_profile730_ 7.64339077928152671e-02 -Beta_toroidal_profile_at_point_731_______________________________________ beta_thermal_toroidal_profile731_ 7.62344469501491512e-02 -Beta_toroidal_profile_at_point_732_______________________________________ beta_thermal_toroidal_profile732_ 7.60337907100679666e-02 -Beta_toroidal_profile_at_point_733_______________________________________ beta_thermal_toroidal_profile733_ 7.58319449340239121e-02 -Beta_toroidal_profile_at_point_734_______________________________________ beta_thermal_toroidal_profile734_ 7.56289155494938026e-02 -Beta_toroidal_profile_at_point_735_______________________________________ beta_thermal_toroidal_profile735_ 7.54247085501202064e-02 -Beta_toroidal_profile_at_point_736_______________________________________ beta_thermal_toroidal_profile736_ 7.52193299958518746e-02 -Beta_toroidal_profile_at_point_737_______________________________________ beta_thermal_toroidal_profile737_ 7.50127860130839347e-02 -Beta_toroidal_profile_at_point_738_______________________________________ beta_thermal_toroidal_profile738_ 7.48050827947985275e-02 -Beta_toroidal_profile_at_point_739_______________________________________ beta_thermal_toroidal_profile739_ 7.45962266007044600e-02 -Beta_toroidal_profile_at_point_740_______________________________________ beta_thermal_toroidal_profile740_ 7.43862237573772317e-02 -Beta_toroidal_profile_at_point_741_______________________________________ beta_thermal_toroidal_profile741_ 7.41750806583991867e-02 -Beta_toroidal_profile_at_point_742_______________________________________ beta_thermal_toroidal_profile742_ 7.39628037644987774e-02 -Beta_toroidal_profile_at_point_743_______________________________________ beta_thermal_toroidal_profile743_ 7.37493996036903965e-02 -Beta_toroidal_profile_at_point_744_______________________________________ beta_thermal_toroidal_profile744_ 7.35348747714142381e-02 -Beta_toroidal_profile_at_point_745_______________________________________ beta_thermal_toroidal_profile745_ 7.33192359306754915e-02 -Beta_toroidal_profile_at_point_746_______________________________________ beta_thermal_toroidal_profile746_ 7.31024898121840766e-02 -Beta_toroidal_profile_at_point_747_______________________________________ beta_thermal_toroidal_profile747_ 7.28846432144942408e-02 -Beta_toroidal_profile_at_point_748_______________________________________ beta_thermal_toroidal_profile748_ 7.26657030041442248e-02 -Beta_toroidal_profile_at_point_749_______________________________________ beta_thermal_toroidal_profile749_ 7.24456761157958595e-02 -Beta_toroidal_profile_at_point_750_______________________________________ beta_thermal_toroidal_profile750_ 7.22245695523742320e-02 -Beta_toroidal_profile_at_point_751_______________________________________ beta_thermal_toroidal_profile751_ 7.20023903852079067e-02 -Beta_toroidal_profile_at_point_752_______________________________________ beta_thermal_toroidal_profile752_ 7.17791457541686745e-02 -Beta_toroidal_profile_at_point_753_______________________________________ beta_thermal_toroidal_profile753_ 7.15548428678118714e-02 -Beta_toroidal_profile_at_point_754_______________________________________ beta_thermal_toroidal_profile754_ 7.13294890035166551e-02 -Beta_toroidal_profile_at_point_755_______________________________________ beta_thermal_toroidal_profile755_ 7.11030915076270170e-02 -Beta_toroidal_profile_at_point_756_______________________________________ beta_thermal_toroidal_profile756_ 7.08756577955921424e-02 -Beta_toroidal_profile_at_point_757_______________________________________ beta_thermal_toroidal_profile757_ 7.06471953521082274e-02 -Beta_toroidal_profile_at_point_758_______________________________________ beta_thermal_toroidal_profile758_ 7.04177117312594220e-02 -Beta_toroidal_profile_at_point_759_______________________________________ beta_thermal_toroidal_profile759_ 7.01872145566602712e-02 -Beta_toroidal_profile_at_point_760_______________________________________ beta_thermal_toroidal_profile760_ 6.99557115215976577e-02 -Beta_toroidal_profile_at_point_761_______________________________________ beta_thermal_toroidal_profile761_ 6.97232103891738814e-02 -Beta_toroidal_profile_at_point_762_______________________________________ beta_thermal_toroidal_profile762_ 6.94897189924494896e-02 -Beta_toroidal_profile_at_point_763_______________________________________ beta_thermal_toroidal_profile763_ 6.92552452345876063e-02 -Beta_toroidal_profile_at_point_764_______________________________________ beta_thermal_toroidal_profile764_ 6.90197970889977058e-02 -Beta_toroidal_profile_at_point_765_______________________________________ beta_thermal_toroidal_profile765_ 6.87833825994811632e-02 -Beta_toroidal_profile_at_point_766_______________________________________ beta_thermal_toroidal_profile766_ 6.85460098803762768e-02 -Beta_toroidal_profile_at_point_767_______________________________________ beta_thermal_toroidal_profile767_ 6.83076871167049987e-02 -Beta_toroidal_profile_at_point_768_______________________________________ beta_thermal_toroidal_profile768_ 6.80684225643199414e-02 -Beta_toroidal_profile_at_point_769_______________________________________ beta_thermal_toroidal_profile769_ 6.78282245500522463e-02 -Beta_toroidal_profile_at_point_770_______________________________________ beta_thermal_toroidal_profile770_ 6.75871014718601587e-02 -Beta_toroidal_profile_at_point_771_______________________________________ beta_thermal_toroidal_profile771_ 6.73450617989791028e-02 -Beta_toroidal_profile_at_point_772_______________________________________ beta_thermal_toroidal_profile772_ 6.71021140720718251e-02 -Beta_toroidal_profile_at_point_773_______________________________________ beta_thermal_toroidal_profile773_ 6.68582669033804811e-02 -Beta_toroidal_profile_at_point_774_______________________________________ beta_thermal_toroidal_profile774_ 6.66135289768792077e-02 -Beta_toroidal_profile_at_point_775_______________________________________ beta_thermal_toroidal_profile775_ 6.63679090484279588e-02 -Beta_toroidal_profile_at_point_776_______________________________________ beta_thermal_toroidal_profile776_ 6.61214159459278389e-02 -Beta_toroidal_profile_at_point_777_______________________________________ beta_thermal_toroidal_profile777_ 6.58740585694773811e-02 -Beta_toroidal_profile_at_point_778_______________________________________ beta_thermal_toroidal_profile778_ 6.56258458915303933e-02 -Beta_toroidal_profile_at_point_779_______________________________________ beta_thermal_toroidal_profile779_ 6.53767869570551358e-02 -Beta_toroidal_profile_at_point_780_______________________________________ beta_thermal_toroidal_profile780_ 6.51268908836950960e-02 -Beta_toroidal_profile_at_point_781_______________________________________ beta_thermal_toroidal_profile781_ 6.48761668619312060e-02 -Beta_toroidal_profile_at_point_782_______________________________________ beta_thermal_toroidal_profile782_ 6.46246241552459050e-02 -Beta_toroidal_profile_at_point_783_______________________________________ beta_thermal_toroidal_profile783_ 6.43722721002887160e-02 -Beta_toroidal_profile_at_point_784_______________________________________ beta_thermal_toroidal_profile784_ 6.41191201070440975e-02 -Beta_toroidal_profile_at_point_785_______________________________________ beta_thermal_toroidal_profile785_ 6.38651776590003634e-02 -Beta_toroidal_profile_at_point_786_______________________________________ beta_thermal_toroidal_profile786_ 6.36104543133218653e-02 -Beta_toroidal_profile_at_point_787_______________________________________ beta_thermal_toroidal_profile787_ 6.33549597010221038e-02 -Beta_toroidal_profile_at_point_788_______________________________________ beta_thermal_toroidal_profile788_ 6.30987035271398655e-02 -Beta_toroidal_profile_at_point_789_______________________________________ beta_thermal_toroidal_profile789_ 6.28416955709169417e-02 -Beta_toroidal_profile_at_point_790_______________________________________ beta_thermal_toroidal_profile790_ 6.25839456859793863e-02 -Beta_toroidal_profile_at_point_791_______________________________________ beta_thermal_toroidal_profile791_ 6.23254638005198980e-02 -Beta_toroidal_profile_at_point_792_______________________________________ beta_thermal_toroidal_profile792_ 6.20662599174842192e-02 -Beta_toroidal_profile_at_point_793_______________________________________ beta_thermal_toroidal_profile793_ 6.18063441147590556e-02 -Beta_toroidal_profile_at_point_794_______________________________________ beta_thermal_toroidal_profile794_ 6.15457265453641864e-02 -Beta_toroidal_profile_at_point_795_______________________________________ beta_thermal_toroidal_profile795_ 6.12844174376464823e-02 -Beta_toroidal_profile_at_point_796_______________________________________ beta_thermal_toroidal_profile796_ 6.10224270954774842e-02 -Beta_toroidal_profile_at_point_797_______________________________________ beta_thermal_toroidal_profile797_ 6.07597658984548178e-02 -Beta_toroidal_profile_at_point_798_______________________________________ beta_thermal_toroidal_profile798_ 6.04964443021060450e-02 -Beta_toroidal_profile_at_point_799_______________________________________ beta_thermal_toroidal_profile799_ 6.02324728380969343e-02 -Beta_toroidal_profile_at_point_800_______________________________________ beta_thermal_toroidal_profile800_ 5.99678621144430560e-02 -Beta_toroidal_profile_at_point_801_______________________________________ beta_thermal_toroidal_profile801_ 5.97026228157255187e-02 -Beta_toroidal_profile_at_point_802_______________________________________ beta_thermal_toroidal_profile802_ 5.94367657033104957e-02 -Beta_toroidal_profile_at_point_803_______________________________________ beta_thermal_toroidal_profile803_ 5.91703016155734687e-02 -Beta_toroidal_profile_at_point_804_______________________________________ beta_thermal_toroidal_profile804_ 5.89032414681272057e-02 -Beta_toroidal_profile_at_point_805_______________________________________ beta_thermal_toroidal_profile805_ 5.86355962540551015e-02 -Beta_toroidal_profile_at_point_806_______________________________________ beta_thermal_toroidal_profile806_ 5.83673770441488077e-02 -Beta_toroidal_profile_at_point_807_______________________________________ beta_thermal_toroidal_profile807_ 5.80985949871511420e-02 -Beta_toroidal_profile_at_point_808_______________________________________ beta_thermal_toroidal_profile808_ 5.78292613100040223e-02 -Beta_toroidal_profile_at_point_809_______________________________________ beta_thermal_toroidal_profile809_ 5.75593873181019580e-02 -Beta_toroidal_profile_at_point_810_______________________________________ beta_thermal_toroidal_profile810_ 5.72889843955511902e-02 -Beta_toroidal_profile_at_point_811_______________________________________ beta_thermal_toroidal_profile811_ 5.70180640054347501e-02 -Beta_toroidal_profile_at_point_812_______________________________________ beta_thermal_toroidal_profile812_ 5.67466376900835623e-02 -Beta_toroidal_profile_at_point_813_______________________________________ beta_thermal_toroidal_profile813_ 5.64747170713539026e-02 -Beta_toroidal_profile_at_point_814_______________________________________ beta_thermal_toroidal_profile814_ 5.62023138509118378e-02 -Beta_toroidal_profile_at_point_815_______________________________________ beta_thermal_toroidal_profile815_ 5.59294398105239995e-02 -Beta_toroidal_profile_at_point_816_______________________________________ beta_thermal_toroidal_profile816_ 5.56561068123562694e-02 -Beta_toroidal_profile_at_point_817_______________________________________ beta_thermal_toroidal_profile817_ 5.53823267992792981e-02 -Beta_toroidal_profile_at_point_818_______________________________________ beta_thermal_toroidal_profile818_ 5.51081117951824143e-02 -Beta_toroidal_profile_at_point_819_______________________________________ beta_thermal_toroidal_profile819_ 5.48334739052950271e-02 -Beta_toroidal_profile_at_point_820_______________________________________ beta_thermal_toroidal_profile820_ 5.45584253165173963e-02 -Beta_toroidal_profile_at_point_821_______________________________________ beta_thermal_toroidal_profile821_ 5.42829782977590561e-02 -Beta_toroidal_profile_at_point_822_______________________________________ beta_thermal_toroidal_profile822_ 5.40071452002874597e-02 -Beta_toroidal_profile_at_point_823_______________________________________ beta_thermal_toroidal_profile823_ 5.37309384580854990e-02 -Beta_toroidal_profile_at_point_824_______________________________________ beta_thermal_toroidal_profile824_ 5.34543705882193076e-02 -Beta_toroidal_profile_at_point_825_______________________________________ beta_thermal_toroidal_profile825_ 5.31774541912160142e-02 -Beta_toroidal_profile_at_point_826_______________________________________ beta_thermal_toroidal_profile826_ 5.29002019514528757e-02 -Beta_toroidal_profile_at_point_827_______________________________________ beta_thermal_toroidal_profile827_ 5.26226266375567839e-02 -Beta_toroidal_profile_at_point_828_______________________________________ beta_thermal_toroidal_profile828_ 5.23447411028163251e-02 -Beta_toroidal_profile_at_point_829_______________________________________ beta_thermal_toroidal_profile829_ 5.20665582856051148e-02 -Beta_toroidal_profile_at_point_830_______________________________________ beta_thermal_toroidal_profile830_ 5.17880912098185459e-02 -Beta_toroidal_profile_at_point_831_______________________________________ beta_thermal_toroidal_profile831_ 5.15093529853229079e-02 -Beta_toroidal_profile_at_point_832_______________________________________ beta_thermal_toroidal_profile832_ 5.12303568084190308e-02 -Beta_toroidal_profile_at_point_833_______________________________________ beta_thermal_toroidal_profile833_ 5.09511159623193960e-02 -Beta_toroidal_profile_at_point_834_______________________________________ beta_thermal_toroidal_profile834_ 5.06716438176407352e-02 -Beta_toroidal_profile_at_point_835_______________________________________ beta_thermal_toroidal_profile835_ 5.03919538329115416e-02 -Beta_toroidal_profile_at_point_836_______________________________________ beta_thermal_toroidal_profile836_ 5.01120595550961986e-02 -Beta_toroidal_profile_at_point_837_______________________________________ beta_thermal_toroidal_profile837_ 4.98319746201355829e-02 -Beta_toroidal_profile_at_point_838_______________________________________ beta_thermal_toroidal_profile838_ 4.95517127535050825e-02 -Beta_toroidal_profile_at_point_839_______________________________________ beta_thermal_toroidal_profile839_ 4.92712877707911084e-02 -Beta_toroidal_profile_at_point_840_______________________________________ beta_thermal_toroidal_profile840_ 4.89907135782862574e-02 -Beta_toroidal_profile_at_point_841_______________________________________ beta_thermal_toroidal_profile841_ 4.87100041736045486e-02 -Beta_toroidal_profile_at_point_842_______________________________________ beta_thermal_toroidal_profile842_ 4.84291736463169850e-02 -Beta_toroidal_profile_at_point_843_______________________________________ beta_thermal_toroidal_profile843_ 4.81482361786088053e-02 -Beta_toroidal_profile_at_point_844_______________________________________ beta_thermal_toroidal_profile844_ 4.78672060459589682e-02 -Beta_toroidal_profile_at_point_845_______________________________________ beta_thermal_toroidal_profile845_ 4.75860976178433051e-02 -Beta_toroidal_profile_at_point_846_______________________________________ beta_thermal_toroidal_profile846_ 4.73049253584613000e-02 -Beta_toroidal_profile_at_point_847_______________________________________ beta_thermal_toroidal_profile847_ 4.70237038274893340e-02 -Beta_toroidal_profile_at_point_848_______________________________________ beta_thermal_toroidal_profile848_ 4.67424476808592920e-02 -Beta_toroidal_profile_at_point_849_______________________________________ beta_thermal_toroidal_profile849_ 4.64611716715657708e-02 -Beta_toroidal_profile_at_point_850_______________________________________ beta_thermal_toroidal_profile850_ 4.61798906505014803e-02 -Beta_toroidal_profile_at_point_851_______________________________________ beta_thermal_toroidal_profile851_ 4.58986195673231623e-02 -Beta_toroidal_profile_at_point_852_______________________________________ beta_thermal_toroidal_profile852_ 4.56173734713485254e-02 -Beta_toroidal_profile_at_point_853_______________________________________ beta_thermal_toroidal_profile853_ 4.53361675124866054e-02 -Beta_toroidal_profile_at_point_854_______________________________________ beta_thermal_toroidal_profile854_ 4.50550169422017296e-02 -Beta_toroidal_profile_at_point_855_______________________________________ beta_thermal_toroidal_profile855_ 4.47739371145138079e-02 -Beta_toroidal_profile_at_point_856_______________________________________ beta_thermal_toroidal_profile856_ 4.44929434870358631e-02 -Beta_toroidal_profile_at_point_857_______________________________________ beta_thermal_toroidal_profile857_ 4.42120516220504897e-02 -Beta_toroidal_profile_at_point_858_______________________________________ beta_thermal_toroidal_profile858_ 4.39312771876275987e-02 -Beta_toroidal_profile_at_point_859_______________________________________ beta_thermal_toroidal_profile859_ 4.36506359587844200e-02 -Beta_toroidal_profile_at_point_860_______________________________________ beta_thermal_toroidal_profile860_ 4.33701438186906360e-02 -Beta_toroidal_profile_at_point_861_______________________________________ beta_thermal_toroidal_profile861_ 4.30898167599200257e-02 -Beta_toroidal_profile_at_point_862_______________________________________ beta_thermal_toroidal_profile862_ 4.28096708857511887e-02 -Beta_toroidal_profile_at_point_863_______________________________________ beta_thermal_toroidal_profile863_ 4.25297224115193523e-02 -Beta_toroidal_profile_at_point_864_______________________________________ beta_thermal_toroidal_profile864_ 4.22499876660219278e-02 -Beta_toroidal_profile_at_point_865_______________________________________ beta_thermal_toroidal_profile865_ 4.19704830929801681e-02 -Beta_toroidal_profile_at_point_866_______________________________________ beta_thermal_toroidal_profile866_ 4.16912252525598187e-02 -Beta_toroidal_profile_at_point_867_______________________________________ beta_thermal_toroidal_profile867_ 4.14122308229531791e-02 -Beta_toroidal_profile_at_point_868_______________________________________ beta_thermal_toroidal_profile868_ 4.11335166020259865e-02 -Beta_toroidal_profile_at_point_869_______________________________________ beta_thermal_toroidal_profile869_ 4.08550995090321695e-02 -Beta_toroidal_profile_at_point_870_______________________________________ beta_thermal_toroidal_profile870_ 4.05769965863995510e-02 -Beta_toroidal_profile_at_point_871_______________________________________ beta_thermal_toroidal_profile871_ 4.02992250015900416e-02 -Beta_toroidal_profile_at_point_872_______________________________________ beta_thermal_toroidal_profile872_ 4.00218020490386781e-02 -Beta_toroidal_profile_at_point_873_______________________________________ beta_thermal_toroidal_profile873_ 3.97447451521742851e-02 -Beta_toroidal_profile_at_point_874_______________________________________ beta_thermal_toroidal_profile874_ 3.94680718655269908e-02 -Beta_toroidal_profile_at_point_875_______________________________________ beta_thermal_toroidal_profile875_ 3.91917998769263989e-02 -Beta_toroidal_profile_at_point_876_______________________________________ beta_thermal_toroidal_profile876_ 3.89159470097951640e-02 -Beta_toroidal_profile_at_point_877_______________________________________ beta_thermal_toroidal_profile877_ 3.86405312255430761e-02 -Beta_toroidal_profile_at_point_878_______________________________________ beta_thermal_toroidal_profile878_ 3.83655706260666446e-02 -Beta_toroidal_profile_at_point_879_______________________________________ beta_thermal_toroidal_profile879_ 3.80910834563600864e-02 -Beta_toroidal_profile_at_point_880_______________________________________ beta_thermal_toroidal_profile880_ 3.78170881072432269e-02 -Beta_toroidal_profile_at_point_881_______________________________________ beta_thermal_toroidal_profile881_ 3.75436031182128579e-02 -Beta_toroidal_profile_at_point_882_______________________________________ beta_thermal_toroidal_profile882_ 3.72706471804240755e-02 -Beta_toroidal_profile_at_point_883_______________________________________ beta_thermal_toroidal_profile883_ 3.69982391398089028e-02 -Beta_toroidal_profile_at_point_884_______________________________________ beta_thermal_toroidal_profile884_ 3.67263980003392707e-02 -Beta_toroidal_profile_at_point_885_______________________________________ beta_thermal_toroidal_profile885_ 3.64551429274431807e-02 -Beta_toroidal_profile_at_point_886_______________________________________ beta_thermal_toroidal_profile886_ 3.61844932515816772e-02 -Beta_toroidal_profile_at_point_887_______________________________________ beta_thermal_toroidal_profile887_ 3.59144684719965857e-02 -Beta_toroidal_profile_at_point_888_______________________________________ beta_thermal_toroidal_profile888_ 3.56450882606382663e-02 -Beta_toroidal_profile_at_point_889_______________________________________ beta_thermal_toroidal_profile889_ 3.53763724662841741e-02 -Beta_toroidal_profile_at_point_890_______________________________________ beta_thermal_toroidal_profile890_ 3.51083411188588893e-02 -Beta_toroidal_profile_at_point_891_______________________________________ beta_thermal_toroidal_profile891_ 3.48410144339681010e-02 -Beta_toroidal_profile_at_point_892_______________________________________ beta_thermal_toroidal_profile892_ 3.45744128176588561e-02 -Beta_toroidal_profile_at_point_893_______________________________________ beta_thermal_toroidal_profile893_ 3.43085568714199124e-02 -Beta_toroidal_profile_at_point_894_______________________________________ beta_thermal_toroidal_profile894_ 3.40434673974370772e-02 -Beta_toroidal_profile_at_point_895_______________________________________ beta_thermal_toroidal_profile895_ 3.37791654041186828e-02 -Beta_toroidal_profile_at_point_896_______________________________________ beta_thermal_toroidal_profile896_ 3.35156721119088119e-02 -Beta_toroidal_profile_at_point_897_______________________________________ beta_thermal_toroidal_profile897_ 3.32530089594058470e-02 -Beta_toroidal_profile_at_point_898_______________________________________ beta_thermal_toroidal_profile898_ 3.29911976098062540e-02 -Beta_toroidal_profile_at_point_899_______________________________________ beta_thermal_toroidal_profile899_ 3.27302599576945116e-02 -Beta_toroidal_profile_at_point_900_______________________________________ beta_thermal_toroidal_profile900_ 3.24702181362019893e-02 -Beta_toroidal_profile_at_point_901_______________________________________ beta_thermal_toroidal_profile901_ 3.22110945245589406e-02 -Beta_toroidal_profile_at_point_902_______________________________________ beta_thermal_toroidal_profile902_ 3.19529117560667791e-02 -Beta_toroidal_profile_at_point_903_______________________________________ beta_thermal_toroidal_profile903_ 3.16956927265182667e-02 -Beta_toroidal_profile_at_point_904_______________________________________ beta_thermal_toroidal_profile904_ 3.14394606030976784e-02 -Beta_toroidal_profile_at_point_905_______________________________________ beta_thermal_toroidal_profile905_ 3.11842388337934297e-02 -Beta_toroidal_profile_at_point_906_______________________________________ beta_thermal_toroidal_profile906_ 3.09300511573606662e-02 -Beta_toroidal_profile_at_point_907_______________________________________ beta_thermal_toroidal_profile907_ 3.06769216138723204e-02 -Beta_toroidal_profile_at_point_908_______________________________________ beta_thermal_toroidal_profile908_ 3.04248745559026652e-02 -Beta_toroidal_profile_at_point_909_______________________________________ beta_thermal_toroidal_profile909_ 3.01739346603891977e-02 -Beta_toroidal_profile_at_point_910_______________________________________ beta_thermal_toroidal_profile910_ 2.99241269412251036e-02 -Beta_toroidal_profile_at_point_911_______________________________________ beta_thermal_toroidal_profile911_ 2.96754767626367169e-02 -Beta_toroidal_profile_at_point_912_______________________________________ beta_thermal_toroidal_profile912_ 2.94280098534083420e-02 -Beta_toroidal_profile_at_point_913_______________________________________ beta_thermal_toroidal_profile913_ 2.91817523220197703e-02 -Beta_toroidal_profile_at_point_914_______________________________________ beta_thermal_toroidal_profile914_ 2.89367306727710272e-02 -Beta_toroidal_profile_at_point_915_______________________________________ beta_thermal_toroidal_profile915_ 2.86929718229734509e-02 -Beta_toroidal_profile_at_point_916_______________________________________ beta_thermal_toroidal_profile916_ 2.84505031212963951e-02 -Beta_toroidal_profile_at_point_917_______________________________________ beta_thermal_toroidal_profile917_ 2.82093523673662104e-02 -Beta_toroidal_profile_at_point_918_______________________________________ beta_thermal_toroidal_profile918_ 2.79695478327253375e-02 -Beta_toroidal_profile_at_point_919_______________________________________ beta_thermal_toroidal_profile919_ 2.77311182832697400e-02 -Beta_toroidal_profile_at_point_920_______________________________________ beta_thermal_toroidal_profile920_ 2.74940930032964714e-02 -Beta_toroidal_profile_at_point_921_______________________________________ beta_thermal_toroidal_profile921_ 2.72585018213067701e-02 -Beta_toroidal_profile_at_point_922_______________________________________ beta_thermal_toroidal_profile922_ 2.70243751377268124e-02 -Beta_toroidal_profile_at_point_923_______________________________________ beta_thermal_toroidal_profile923_ 2.67917439547265303e-02 -Beta_toroidal_profile_at_point_924_______________________________________ beta_thermal_toroidal_profile924_ 2.65606399083376660e-02 -Beta_toroidal_profile_at_point_925_______________________________________ beta_thermal_toroidal_profile925_ 2.63310953030963350e-02 -Beta_toroidal_profile_at_point_926_______________________________________ beta_thermal_toroidal_profile926_ 2.61031431494622677e-02 -Beta_toroidal_profile_at_point_927_______________________________________ beta_thermal_toroidal_profile927_ 2.58768172042986126e-02 -Beta_toroidal_profile_at_point_928_______________________________________ beta_thermal_toroidal_profile928_ 2.56521520147310923e-02 -Beta_toroidal_profile_at_point_929_______________________________________ beta_thermal_toroidal_profile929_ 2.54291829657479936e-02 -Beta_toroidal_profile_at_point_930_______________________________________ beta_thermal_toroidal_profile930_ 2.52079463319483700e-02 -Beta_toroidal_profile_at_point_931_______________________________________ beta_thermal_toroidal_profile931_ 2.49884793339031040e-02 -Beta_toroidal_profile_at_point_932_______________________________________ beta_thermal_toroidal_profile932_ 2.47708201996558776e-02 -Beta_toroidal_profile_at_point_933_______________________________________ beta_thermal_toroidal_profile933_ 2.45550082319682984e-02 -Beta_toroidal_profile_at_point_934_______________________________________ beta_thermal_toroidal_profile934_ 2.43410838819992856e-02 -Beta_toroidal_profile_at_point_935_______________________________________ beta_thermal_toroidal_profile935_ 2.41290888302146574e-02 -Beta_toroidal_profile_at_point_936_______________________________________ beta_thermal_toroidal_profile936_ 2.39190660754433175e-02 -Beta_toroidal_profile_at_point_937_______________________________________ beta_thermal_toroidal_profile937_ 2.37110600331434072e-02 -Beta_toroidal_profile_at_point_938_______________________________________ beta_thermal_toroidal_profile938_ 2.35051166441134426e-02 -Beta_toroidal_profile_at_point_939_______________________________________ beta_thermal_toroidal_profile939_ 2.33012834950923203e-02 -Beta_toroidal_profile_at_point_940_______________________________________ beta_thermal_toroidal_profile940_ 2.30996099529407022e-02 -Beta_toroidal_profile_at_point_941_______________________________________ beta_thermal_toroidal_profile941_ 2.29001473143992350e-02 -Beta_toroidal_profile_at_point_942_______________________________________ beta_thermal_toroidal_profile942_ 2.27029489737869718e-02 -Beta_toroidal_profile_at_point_943_______________________________________ beta_thermal_toroidal_profile943_ 2.25080706114543123e-02 -Beta_toroidal_profile_at_point_944_______________________________________ beta_thermal_toroidal_profile944_ 2.23155704063603029e-02 -Beta_toroidal_profile_at_point_945_______________________________________ beta_thermal_toroidal_profile945_ 2.21255092768348448e-02 -Beta_toroidal_profile_at_point_946_______________________________________ beta_thermal_toroidal_profile946_ 2.19379511544487184e-02 -Beta_toroidal_profile_at_point_947_______________________________________ beta_thermal_toroidal_profile947_ 2.17529632970027073e-02 -Beta_toroidal_profile_at_point_948_______________________________________ beta_thermal_toroidal_profile948_ 2.15706166480304912e-02 -Beta_toroidal_profile_at_point_949_______________________________________ beta_thermal_toroidal_profile949_ 2.13909862519844340e-02 -Beta_toroidal_profile_at_point_950_______________________________________ beta_thermal_toroidal_profile950_ 2.12141517365740280e-02 -Beta_toroidal_profile_at_point_951_______________________________________ beta_thermal_toroidal_profile951_ 2.10401978767391883e-02 -Beta_toroidal_profile_at_point_952_______________________________________ beta_thermal_toroidal_profile952_ 2.08692152587343256e-02 -Beta_toroidal_profile_at_point_953_______________________________________ beta_thermal_toroidal_profile953_ 2.07013010681581233e-02 -Beta_toroidal_profile_at_point_954_______________________________________ beta_thermal_toroidal_profile954_ 2.05365600330607925e-02 -Beta_toroidal_profile_at_point_955_______________________________________ beta_thermal_toroidal_profile955_ 2.03751055633450071e-02 -Beta_toroidal_profile_at_point_956_______________________________________ beta_thermal_toroidal_profile956_ 2.02170611418577666e-02 -Beta_toroidal_profile_at_point_957_______________________________________ beta_thermal_toroidal_profile957_ 2.00625620428907629e-02 -Beta_toroidal_profile_at_point_958_______________________________________ beta_thermal_toroidal_profile958_ 1.99117574835500737e-02 -Beta_toroidal_profile_at_point_959_______________________________________ beta_thermal_toroidal_profile959_ 1.97648133580494885e-02 -Beta_toroidal_profile_at_point_960_______________________________________ beta_thermal_toroidal_profile960_ 1.96219157736821151e-02 -Beta_toroidal_profile_at_point_961_______________________________________ beta_thermal_toroidal_profile961_ 1.94832757164336325e-02 -Beta_toroidal_profile_at_point_962_______________________________________ beta_thermal_toroidal_profile962_ 1.93491353542189493e-02 -Beta_toroidal_profile_at_point_963_______________________________________ beta_thermal_toroidal_profile963_ 1.92197767954222290e-02 -Beta_toroidal_profile_at_point_964_______________________________________ beta_thermal_toroidal_profile964_ 1.90955346811240226e-02 -Beta_toroidal_profile_at_point_965_______________________________________ beta_thermal_toroidal_profile965_ 1.89768150697376334e-02 -Beta_toroidal_profile_at_point_966_______________________________________ beta_thermal_toroidal_profile966_ 1.88641253227188783e-02 -Beta_toroidal_profile_at_point_967_______________________________________ beta_thermal_toroidal_profile967_ 1.87581248815367370e-02 -Beta_toroidal_profile_at_point_968_______________________________________ beta_thermal_toroidal_profile968_ 1.86597205020828417e-02 -Beta_toroidal_profile_at_point_969_______________________________________ beta_thermal_toroidal_profile969_ 1.85702735665685265e-02 -Beta_toroidal_profile_at_point_970_______________________________________ beta_thermal_toroidal_profile970_ 1.84921855356782912e-02 -Beta_toroidal_profile_at_point_971_______________________________________ beta_thermal_toroidal_profile971_ 1.84325020999346230e-02 -Beta_toroidal_profile_at_point_972_______________________________________ beta_thermal_toroidal_profile972_ 1.76023800325543905e-02 -Beta_toroidal_profile_at_point_973_______________________________________ beta_thermal_toroidal_profile973_ 1.67871394227233767e-02 -Beta_toroidal_profile_at_point_974_______________________________________ beta_thermal_toroidal_profile974_ 1.59868294104237134e-02 -Beta_toroidal_profile_at_point_975_______________________________________ beta_thermal_toroidal_profile975_ 1.52014991867373897e-02 -Beta_toroidal_profile_at_point_976_______________________________________ beta_thermal_toroidal_profile976_ 1.44311979938461614e-02 -Beta_toroidal_profile_at_point_977_______________________________________ beta_thermal_toroidal_profile977_ 1.36759751250316620e-02 -Beta_toroidal_profile_at_point_978_______________________________________ beta_thermal_toroidal_profile978_ 1.29358799246753163e-02 -Beta_toroidal_profile_at_point_979_______________________________________ beta_thermal_toroidal_profile979_ 1.22109617882583815e-02 -Beta_toroidal_profile_at_point_980_______________________________________ beta_thermal_toroidal_profile980_ 1.15012701623619304e-02 -Beta_toroidal_profile_at_point_981_______________________________________ beta_thermal_toroidal_profile981_ 1.08068545446668683e-02 -Beta_toroidal_profile_at_point_982_______________________________________ beta_thermal_toroidal_profile982_ 1.01277644839539143e-02 -Beta_toroidal_profile_at_point_983_______________________________________ beta_thermal_toroidal_profile983_ 9.46404958010362181e-03 -Beta_toroidal_profile_at_point_984_______________________________________ beta_thermal_toroidal_profile984_ 8.81575948409634921e-03 -Beta_toroidal_profile_at_point_985_______________________________________ beta_thermal_toroidal_profile985_ 8.18294389801229281e-03 -Beta_toroidal_profile_at_point_986_______________________________________ beta_thermal_toroidal_profile986_ 7.56565257503146425e-03 -Beta_toroidal_profile_at_point_987_______________________________________ beta_thermal_toroidal_profile987_ 6.96393531943369833e-03 -Beta_toroidal_profile_at_point_988_______________________________________ beta_thermal_toroidal_profile988_ 6.37784198659865822e-03 -Beta_toroidal_profile_at_point_989_______________________________________ beta_thermal_toroidal_profile989_ 5.80742248300581722e-03 -Beta_toroidal_profile_at_point_990_______________________________________ beta_thermal_toroidal_profile990_ 5.25272676623448568e-03 -Beta_toroidal_profile_at_point_991_______________________________________ beta_thermal_toroidal_profile991_ 4.71380484496378583e-03 -Beta_toroidal_profile_at_point_992_______________________________________ beta_thermal_toroidal_profile992_ 4.19070677897266826e-03 -Beta_toroidal_profile_at_point_993_______________________________________ beta_thermal_toroidal_profile993_ 3.68348267913989891e-03 -Beta_toroidal_profile_at_point_994_______________________________________ beta_thermal_toroidal_profile994_ 3.19218270744408119e-03 -Beta_toroidal_profile_at_point_995_______________________________________ beta_thermal_toroidal_profile995_ 2.71685707696362085e-03 -Beta_toroidal_profile_at_point_996_______________________________________ beta_thermal_toroidal_profile996_ 2.25755605187676458e-03 -Beta_toroidal_profile_at_point_997_______________________________________ beta_thermal_toroidal_profile997_ 1.81432994746156856e-03 -Beta_toroidal_profile_at_point_998_______________________________________ beta_thermal_toroidal_profile998_ 1.38722913009591995e-03 -Beta_toroidal_profile_at_point_999_______________________________________ beta_thermal_toroidal_profile999_ 9.76304017257524290e-04 -Beta_toroidal_profile_at_point_1000______________________________________ beta_thermal_toroidal_profile1000_ 5.81605077523910047e-04 -Beta_toroidal_profile_at_point_1001______________________________________ beta_thermal_toroidal_profile1001_ 2.03182830572429295e-04 -Fast_alpha_beta_(β_alpha)________________________________________________ (beta_fast_alpha)______________ 4.80851707252069171e-03 OP +Volume_averaged_poloidal_beta_(⟨βₚ⟩)_____________________________________ (beta_poloidal_vol_avg)________ 1.30569897875376273e+00 OP +Volume_averaged_toroidal_beta_(⟨βₜ⟩)_____________________________________ (beta_toroidal_vol_avg)________ 3.89403914328839487e-02 OP +Beta_toroidal_profile_at_point_0_________________________________________ beta_thermal_toroidal_profile0_ 5.04870987699894064e-05 +Beta_toroidal_profile_at_point_1_________________________________________ beta_thermal_toroidal_profile1_ 1.44951547080738230e-04 +Beta_toroidal_profile_at_point_2_________________________________________ beta_thermal_toroidal_profile2_ 2.44050864780381469e-04 +Beta_toroidal_profile_at_point_3_________________________________________ beta_thermal_toroidal_profile3_ 3.47811099356528275e-04 +Beta_toroidal_profile_at_point_4_________________________________________ beta_thermal_toroidal_profile4_ 4.56258349086153397e-04 +Beta_toroidal_profile_at_point_5_________________________________________ beta_thermal_toroidal_profile5_ 5.69418763035598277e-04 +Beta_toroidal_profile_at_point_6_________________________________________ beta_thermal_toroidal_profile6_ 6.87318541060570175e-04 +Beta_toroidal_profile_at_point_7_________________________________________ beta_thermal_toroidal_profile7_ 8.09983933806141475e-04 +Beta_toroidal_profile_at_point_8_________________________________________ beta_thermal_toroidal_profile8_ 9.37441242706752494e-04 +Beta_toroidal_profile_at_point_9_________________________________________ beta_thermal_toroidal_profile9_ 1.06971681998620748e-03 +Beta_toroidal_profile_at_point_10________________________________________ beta_thermal_toroidal_profile10_ 1.20683706865767882e-03 +Beta_toroidal_profile_at_point_11________________________________________ beta_thermal_toroidal_profile11_ 1.34882844252370284e-03 +Beta_toroidal_profile_at_point_12________________________________________ beta_thermal_toroidal_profile12_ 1.49571744617618338e-03 +Beta_toroidal_profile_at_point_13________________________________________ beta_thermal_toroidal_profile13_ 1.64753063499639045e-03 +Beta_toroidal_profile_at_point_14________________________________________ beta_thermal_toroidal_profile14_ 1.80429461515495791e-03 +Beta_toroidal_profile_at_point_15________________________________________ beta_thermal_toroidal_profile15_ 1.96603604361188884e-03 +Beta_toroidal_profile_at_point_16________________________________________ beta_thermal_toroidal_profile16_ 2.13278162811654992e-03 +Beta_toroidal_profile_at_point_17________________________________________ beta_thermal_toroidal_profile17_ 2.30455812720767534e-03 +Beta_toroidal_profile_at_point_18________________________________________ beta_thermal_toroidal_profile18_ 2.48139235021336505e-03 +Beta_toroidal_profile_at_point_19________________________________________ beta_thermal_toroidal_profile19_ 2.66331115725108132e-03 +Beta_toroidal_profile_at_point_20________________________________________ beta_thermal_toroidal_profile20_ 2.85034145922766127e-03 +Beta_toroidal_profile_at_point_21________________________________________ beta_thermal_toroidal_profile21_ 3.04251021783929826e-03 +Beta_toroidal_profile_at_point_22________________________________________ beta_thermal_toroidal_profile22_ 3.23984444557155922e-03 +Beta_toroidal_profile_at_point_23________________________________________ beta_thermal_toroidal_profile23_ 3.44237120569937079e-03 +Beta_toroidal_profile_at_point_24________________________________________ beta_thermal_toroidal_profile24_ 3.65011761228703144e-03 +Beta_toroidal_profile_at_point_25________________________________________ beta_thermal_toroidal_profile25_ 3.86311083018820193e-03 +Beta_toroidal_profile_at_point_26________________________________________ beta_thermal_toroidal_profile26_ 4.08137807504591055e-03 +Beta_toroidal_profile_at_point_27________________________________________ beta_thermal_toroidal_profile27_ 4.30494661329255002e-03 +Beta_toroidal_profile_at_point_28________________________________________ beta_thermal_toroidal_profile28_ 4.53384376214988061e-03 +Beta_toroidal_profile_at_point_29________________________________________ beta_thermal_toroidal_profile29_ 4.76809688962903221e-03 +Beta_toroidal_profile_at_point_30________________________________________ beta_thermal_toroidal_profile30_ 5.00773341453049185e-03 +Beta_toroidal_profile_at_point_31________________________________________ beta_thermal_toroidal_profile31_ 5.03862164447268709e-03 +Beta_toroidal_profile_at_point_32________________________________________ beta_thermal_toroidal_profile32_ 5.07453481399251175e-03 +Beta_toroidal_profile_at_point_33________________________________________ beta_thermal_toroidal_profile33_ 5.11363749121633744e-03 +Beta_toroidal_profile_at_point_34________________________________________ beta_thermal_toroidal_profile34_ 5.15531464681086293e-03 +Beta_toroidal_profile_at_point_35________________________________________ beta_thermal_toroidal_profile35_ 5.19922285554292891e-03 +Beta_toroidal_profile_at_point_36________________________________________ beta_thermal_toroidal_profile36_ 5.24513682551009438e-03 +Beta_toroidal_profile_at_point_37________________________________________ beta_thermal_toroidal_profile37_ 5.29289522508397548e-03 +Beta_toroidal_profile_at_point_38________________________________________ beta_thermal_toroidal_profile38_ 5.34237587094258618e-03 +Beta_toroidal_profile_at_point_39________________________________________ beta_thermal_toroidal_profile39_ 5.39348253691066242e-03 +Beta_toroidal_profile_at_point_40________________________________________ beta_thermal_toroidal_profile40_ 5.44613721192438362e-03 +Beta_toroidal_profile_at_point_41________________________________________ beta_thermal_toroidal_profile41_ 5.50027522142265083e-03 +Beta_toroidal_profile_at_point_42________________________________________ beta_thermal_toroidal_profile42_ 5.55584198318016288e-03 +Beta_toroidal_profile_at_point_43________________________________________ beta_thermal_toroidal_profile43_ 5.61279075689728301e-03 +Beta_toroidal_profile_at_point_44________________________________________ beta_thermal_toroidal_profile44_ 5.67108102895576976e-03 +Beta_toroidal_profile_at_point_45________________________________________ beta_thermal_toroidal_profile45_ 5.73067731996092494e-03 +Beta_toroidal_profile_at_point_46________________________________________ beta_thermal_toroidal_profile46_ 5.79154828334109157e-03 +Beta_toroidal_profile_at_point_47________________________________________ beta_thermal_toroidal_profile47_ 5.85366601009284972e-03 +Beta_toroidal_profile_at_point_48________________________________________ beta_thermal_toroidal_profile48_ 5.91700548312468644e-03 +Beta_toroidal_profile_at_point_49________________________________________ beta_thermal_toroidal_profile49_ 5.98154414247192151e-03 +Beta_toroidal_profile_at_point_50________________________________________ beta_thermal_toroidal_profile50_ 6.04726153420739876e-03 +Beta_toroidal_profile_at_point_51________________________________________ beta_thermal_toroidal_profile51_ 6.11413902356731497e-03 +Beta_toroidal_profile_at_point_52________________________________________ beta_thermal_toroidal_profile52_ 6.18215955806188360e-03 +Beta_toroidal_profile_at_point_53________________________________________ beta_thermal_toroidal_profile53_ 6.25130746999961150e-03 +Beta_toroidal_profile_at_point_54________________________________________ beta_thermal_toroidal_profile54_ 6.32156831045308301e-03 +Beta_toroidal_profile_at_point_55________________________________________ beta_thermal_toroidal_profile55_ 6.39292870857170129e-03 +Beta_toroidal_profile_at_point_56________________________________________ beta_thermal_toroidal_profile56_ 6.46537625152491992e-03 +Beta_toroidal_profile_at_point_57________________________________________ beta_thermal_toroidal_profile57_ 6.53889938138412473e-03 +Beta_toroidal_profile_at_point_58________________________________________ beta_thermal_toroidal_profile58_ 6.61348730602424710e-03 +Beta_toroidal_profile_at_point_59________________________________________ beta_thermal_toroidal_profile59_ 6.68912992171478375e-03 +Beta_toroidal_profile_at_point_60________________________________________ beta_thermal_toroidal_profile60_ 6.76581774552406992e-03 +Beta_toroidal_profile_at_point_61________________________________________ beta_thermal_toroidal_profile61_ 6.84354185601376147e-03 +Beta_toroidal_profile_at_point_62________________________________________ beta_thermal_toroidal_profile62_ 6.92229384097816508e-03 +Beta_toroidal_profile_at_point_63________________________________________ beta_thermal_toroidal_profile63_ 7.00206575120278316e-03 +Beta_toroidal_profile_at_point_64________________________________________ beta_thermal_toroidal_profile64_ 7.08285005939216471e-03 +Beta_toroidal_profile_at_point_65________________________________________ beta_thermal_toroidal_profile65_ 7.16463962355824800e-03 +Beta_toroidal_profile_at_point_66________________________________________ beta_thermal_toroidal_profile66_ 7.24742765427501510e-03 +Beta_toroidal_profile_at_point_67________________________________________ beta_thermal_toroidal_profile67_ 7.33120768529831046e-03 +Beta_toroidal_profile_at_point_68________________________________________ beta_thermal_toroidal_profile68_ 7.41597354712655865e-03 +Beta_toroidal_profile_at_point_69________________________________________ beta_thermal_toroidal_profile69_ 7.50171934314085471e-03 +Beta_toroidal_profile_at_point_70________________________________________ beta_thermal_toroidal_profile70_ 7.58843942801573287e-03 +Beta_toroidal_profile_at_point_71________________________________________ beta_thermal_toroidal_profile71_ 7.67612838813519233e-03 +Beta_toroidal_profile_at_point_72________________________________________ beta_thermal_toroidal_profile72_ 7.76478102378544074e-03 +Beta_toroidal_profile_at_point_73________________________________________ beta_thermal_toroidal_profile73_ 7.85439233292649711e-03 +Beta_toroidal_profile_at_point_74________________________________________ beta_thermal_toroidal_profile74_ 7.94495749637082367e-03 +Beta_toroidal_profile_at_point_75________________________________________ beta_thermal_toroidal_profile75_ 8.03647186421932794e-03 +Beta_toroidal_profile_at_point_76________________________________________ beta_thermal_toroidal_profile76_ 8.12893094342388191e-03 +Beta_toroidal_profile_at_point_77________________________________________ beta_thermal_toroidal_profile77_ 8.22233038636155031e-03 +Beta_toroidal_profile_at_point_78________________________________________ beta_thermal_toroidal_profile78_ 8.31666598031969434e-03 +Beta_toroidal_profile_at_point_79________________________________________ beta_thermal_toroidal_profile79_ 8.41193363780292844e-03 +Beta_toroidal_profile_at_point_80________________________________________ beta_thermal_toroidal_profile80_ 8.50812938758314583e-03 +Beta_toroidal_profile_at_point_81________________________________________ beta_thermal_toroidal_profile81_ 8.60524936642301057e-03 +Beta_toroidal_profile_at_point_82________________________________________ beta_thermal_toroidal_profile82_ 8.70328981141069852e-03 +Beta_toroidal_profile_at_point_83________________________________________ beta_thermal_toroidal_profile83_ 8.80224705285081489e-03 +Beta_toroidal_profile_at_point_84________________________________________ beta_thermal_toroidal_profile84_ 8.90211750766200550e-03 +Beta_toroidal_profile_at_point_85________________________________________ beta_thermal_toroidal_profile85_ 9.00289767323726210e-03 +Beta_toroidal_profile_at_point_86________________________________________ beta_thermal_toroidal_profile86_ 9.10458412172721575e-03 +Beta_toroidal_profile_at_point_87________________________________________ beta_thermal_toroidal_profile87_ 9.20717349471088069e-03 +Beta_toroidal_profile_at_point_88________________________________________ beta_thermal_toroidal_profile88_ 9.31066249822191591e-03 +Beta_toroidal_profile_at_point_89________________________________________ beta_thermal_toroidal_profile89_ 9.41504789810136168e-03 +Beta_toroidal_profile_at_point_90________________________________________ beta_thermal_toroidal_profile90_ 9.52032651565087179e-03 +Beta_toroidal_profile_at_point_91________________________________________ beta_thermal_toroidal_profile91_ 9.62649522356277820e-03 +Beta_toroidal_profile_at_point_92________________________________________ beta_thermal_toroidal_profile92_ 9.73355094210556250e-03 +Beta_toroidal_profile_at_point_93________________________________________ beta_thermal_toroidal_profile93_ 9.84149063554532778e-03 +Beta_toroidal_profile_at_point_94________________________________________ beta_thermal_toroidal_profile94_ 9.95031130878541378e-03 +Beta_toroidal_profile_at_point_95________________________________________ beta_thermal_toroidal_profile95_ 1.00600100042083657e-02 +Beta_toroidal_profile_at_point_96________________________________________ beta_thermal_toroidal_profile96_ 1.01705837987050973e-02 +Beta_toroidal_profile_at_point_97________________________________________ beta_thermal_toroidal_profile97_ 1.02820298008782732e-02 +Beta_toroidal_profile_at_point_98________________________________________ beta_thermal_toroidal_profile98_ 1.03943451484072649e-02 +Beta_toroidal_profile_at_point_99________________________________________ beta_thermal_toroidal_profile99_ 1.05075270055636598e-02 +Beta_toroidal_profile_at_point_100_______________________________________ beta_thermal_toroidal_profile100_ 1.06215725608668037e-02 +Beta_toroidal_profile_at_point_101_______________________________________ beta_thermal_toroidal_profile101_ 1.07364790248700697e-02 +Beta_toroidal_profile_at_point_102_______________________________________ beta_thermal_toroidal_profile102_ 1.08522436280689902e-02 +Beta_toroidal_profile_at_point_103_______________________________________ beta_thermal_toroidal_profile103_ 1.09688636189233177e-02 +Beta_toroidal_profile_at_point_104_______________________________________ beta_thermal_toroidal_profile104_ 1.10863362619855171e-02 +Beta_toroidal_profile_at_point_105_______________________________________ beta_thermal_toroidal_profile105_ 1.12046588361290281e-02 +Beta_toroidal_profile_at_point_106_______________________________________ beta_thermal_toroidal_profile106_ 1.13238286328697195e-02 +Beta_toroidal_profile_at_point_107_______________________________________ beta_thermal_toroidal_profile107_ 1.14438429547750655e-02 +Beta_toroidal_profile_at_point_108_______________________________________ beta_thermal_toroidal_profile108_ 1.15646991139552267e-02 +Beta_toroidal_profile_at_point_109_______________________________________ beta_thermal_toroidal_profile109_ 1.16863944306314430e-02 +Beta_toroidal_profile_at_point_110_______________________________________ beta_thermal_toroidal_profile110_ 1.18089262317767930e-02 +Beta_toroidal_profile_at_point_111_______________________________________ beta_thermal_toroidal_profile111_ 1.19322918498251801e-02 +Beta_toroidal_profile_at_point_112_______________________________________ beta_thermal_toroidal_profile112_ 1.20564886214444503e-02 +Beta_toroidal_profile_at_point_113_______________________________________ beta_thermal_toroidal_profile113_ 1.21815138863700344e-02 +Beta_toroidal_profile_at_point_114_______________________________________ beta_thermal_toroidal_profile114_ 1.23073649862954857e-02 +Beta_toroidal_profile_at_point_115_______________________________________ beta_thermal_toroidal_profile115_ 1.24340392638168703e-02 +Beta_toroidal_profile_at_point_116_______________________________________ beta_thermal_toroidal_profile116_ 1.25615340614278533e-02 +Beta_toroidal_profile_at_point_117_______________________________________ beta_thermal_toroidal_profile117_ 1.26898467205627790e-02 +Beta_toroidal_profile_at_point_118_______________________________________ beta_thermal_toroidal_profile118_ 1.28189745806849796e-02 +Beta_toroidal_profile_at_point_119_______________________________________ beta_thermal_toroidal_profile119_ 1.29489149784181093e-02 +Beta_toroidal_profile_at_point_120_______________________________________ beta_thermal_toroidal_profile120_ 1.30796652467179246e-02 +Beta_toroidal_profile_at_point_121_______________________________________ beta_thermal_toroidal_profile121_ 1.32112227140825812e-02 +Beta_toroidal_profile_at_point_122_______________________________________ beta_thermal_toroidal_profile122_ 1.33435847037992900e-02 +Beta_toroidal_profile_at_point_123_______________________________________ beta_thermal_toroidal_profile123_ 1.34767485332256305e-02 +Beta_toroidal_profile_at_point_124_______________________________________ beta_thermal_toroidal_profile124_ 1.36107115131035242e-02 +Beta_toroidal_profile_at_point_125_______________________________________ beta_thermal_toroidal_profile125_ 1.37454709469043770e-02 +Beta_toroidal_profile_at_point_126_______________________________________ beta_thermal_toroidal_profile126_ 1.38810241302037944e-02 +Beta_toroidal_profile_at_point_127_______________________________________ beta_thermal_toroidal_profile127_ 1.40173683500843856e-02 +Beta_toroidal_profile_at_point_128_______________________________________ beta_thermal_toroidal_profile128_ 1.41545008845652878e-02 +Beta_toroidal_profile_at_point_129_______________________________________ beta_thermal_toroidal_profile129_ 1.42924190020571034e-02 +Beta_toroidal_profile_at_point_130_______________________________________ beta_thermal_toroidal_profile130_ 1.44311199608410864e-02 +Beta_toroidal_profile_at_point_131_______________________________________ beta_thermal_toroidal_profile131_ 1.45706010085713371e-02 +Beta_toroidal_profile_at_point_132_______________________________________ beta_thermal_toroidal_profile132_ 1.47108593817990106e-02 +Beta_toroidal_profile_at_point_133_______________________________________ beta_thermal_toroidal_profile133_ 1.48518923055174362e-02 +Beta_toroidal_profile_at_point_134_______________________________________ beta_thermal_toroidal_profile134_ 1.49936969927273057e-02 +Beta_toroidal_profile_at_point_135_______________________________________ beta_thermal_toroidal_profile135_ 1.51362706440208161e-02 +Beta_toroidal_profile_at_point_136_______________________________________ beta_thermal_toroidal_profile136_ 1.52796104471841811e-02 +Beta_toroidal_profile_at_point_137_______________________________________ beta_thermal_toroidal_profile137_ 1.54237135768174067e-02 +Beta_toroidal_profile_at_point_138_______________________________________ beta_thermal_toroidal_profile138_ 1.55685771939708048e-02 +Beta_toroidal_profile_at_point_139_______________________________________ beta_thermal_toroidal_profile139_ 1.57141984457973630e-02 +Beta_toroidal_profile_at_point_140_______________________________________ beta_thermal_toroidal_profile140_ 1.58605744652203506e-02 +Beta_toroidal_profile_at_point_141_______________________________________ beta_thermal_toroidal_profile141_ 1.60077023706155057e-02 +Beta_toroidal_profile_at_point_142_______________________________________ beta_thermal_toroidal_profile142_ 1.61555792655071334e-02 +Beta_toroidal_profile_at_point_143_______________________________________ beta_thermal_toroidal_profile143_ 1.63042022382776097e-02 +Beta_toroidal_profile_at_point_144_______________________________________ beta_thermal_toroidal_profile144_ 1.64535683618896797e-02 +Beta_toroidal_profile_at_point_145_______________________________________ beta_thermal_toroidal_profile145_ 1.66036746936210206e-02 +Beta_toroidal_profile_at_point_146_______________________________________ beta_thermal_toroidal_profile146_ 1.67545182748106078e-02 +Beta_toroidal_profile_at_point_147_______________________________________ beta_thermal_toroidal_profile147_ 1.69060961306163500e-02 +Beta_toroidal_profile_at_point_148_______________________________________ beta_thermal_toroidal_profile148_ 1.70584052697836143e-02 +Beta_toroidal_profile_at_point_149_______________________________________ beta_thermal_toroidal_profile149_ 1.72114426844241636e-02 +Beta_toroidal_profile_at_point_150_______________________________________ beta_thermal_toroidal_profile150_ 1.73652053498051066e-02 +Beta_toroidal_profile_at_point_151_______________________________________ beta_thermal_toroidal_profile151_ 1.75196902241474065e-02 +Beta_toroidal_profile_at_point_152_______________________________________ beta_thermal_toroidal_profile152_ 1.76748942484338187e-02 +Beta_toroidal_profile_at_point_153_______________________________________ beta_thermal_toroidal_profile153_ 1.78308143462255070e-02 +Beta_toroidal_profile_at_point_154_______________________________________ beta_thermal_toroidal_profile154_ 1.79874474234874293e-02 +Beta_toroidal_profile_at_point_155_______________________________________ beta_thermal_toroidal_profile155_ 1.81447903684218009e-02 +Beta_toroidal_profile_at_point_156_______________________________________ beta_thermal_toroidal_profile156_ 1.83028400513096552e-02 +Beta_toroidal_profile_at_point_157_______________________________________ beta_thermal_toroidal_profile157_ 1.84615933243599227e-02 +Beta_toroidal_profile_at_point_158_______________________________________ beta_thermal_toroidal_profile158_ 1.86210470215660215e-02 +Beta_toroidal_profile_at_point_159_______________________________________ beta_thermal_toroidal_profile159_ 1.87811979585694004e-02 +Beta_toroidal_profile_at_point_160_______________________________________ beta_thermal_toroidal_profile160_ 1.89420429325300801e-02 +Beta_toroidal_profile_at_point_161_______________________________________ beta_thermal_toroidal_profile161_ 1.91035787220037410e-02 +Beta_toroidal_profile_at_point_162_______________________________________ beta_thermal_toroidal_profile162_ 1.92658020868252573e-02 +Beta_toroidal_profile_at_point_163_______________________________________ beta_thermal_toroidal_profile163_ 1.94287097679982888e-02 +Beta_toroidal_profile_at_point_164_______________________________________ beta_thermal_toroidal_profile164_ 1.95922984875909548e-02 +Beta_toroidal_profile_at_point_165_______________________________________ beta_thermal_toroidal_profile165_ 1.97565649486371904e-02 +Beta_toroidal_profile_at_point_166_______________________________________ beta_thermal_toroidal_profile166_ 1.99215058350436930e-02 +Beta_toroidal_profile_at_point_167_______________________________________ beta_thermal_toroidal_profile167_ 2.00871178115022281e-02 +Beta_toroidal_profile_at_point_168_______________________________________ beta_thermal_toroidal_profile168_ 2.02533975234072405e-02 +Beta_toroidal_profile_at_point_169_______________________________________ beta_thermal_toroidal_profile169_ 2.04203415967782569e-02 +Beta_toroidal_profile_at_point_170_______________________________________ beta_thermal_toroidal_profile170_ 2.05879466381874744e-02 +Beta_toroidal_profile_at_point_171_______________________________________ beta_thermal_toroidal_profile171_ 2.07562092346918609e-02 +Beta_toroidal_profile_at_point_172_______________________________________ beta_thermal_toroidal_profile172_ 2.09251259537698540e-02 +Beta_toroidal_profile_at_point_173_______________________________________ beta_thermal_toroidal_profile173_ 2.10946933432625931e-02 +Beta_toroidal_profile_at_point_174_______________________________________ beta_thermal_toroidal_profile174_ 2.12649079313192747e-02 +Beta_toroidal_profile_at_point_175_______________________________________ beta_thermal_toroidal_profile175_ 2.14357662263469084e-02 +Beta_toroidal_profile_at_point_176_______________________________________ beta_thermal_toroidal_profile176_ 2.16072647169638123e-02 +Beta_toroidal_profile_at_point_177_______________________________________ beta_thermal_toroidal_profile177_ 2.17793998719573029e-02 +Beta_toroidal_profile_at_point_178_______________________________________ beta_thermal_toroidal_profile178_ 2.19521681402450181e-02 +Beta_toroidal_profile_at_point_179_______________________________________ beta_thermal_toroidal_profile179_ 2.21255659508399899e-02 +Beta_toroidal_profile_at_point_180_______________________________________ beta_thermal_toroidal_profile180_ 2.22995897128193052e-02 +Beta_toroidal_profile_at_point_181_______________________________________ beta_thermal_toroidal_profile181_ 2.24742358152962320e-02 +Beta_toroidal_profile_at_point_182_______________________________________ beta_thermal_toroidal_profile182_ 2.26495006273957147e-02 +Beta_toroidal_profile_at_point_183_______________________________________ beta_thermal_toroidal_profile183_ 2.28253804982332595e-02 +Beta_toroidal_profile_at_point_184_______________________________________ beta_thermal_toroidal_profile184_ 2.30018717568968266e-02 +Beta_toroidal_profile_at_point_185_______________________________________ beta_thermal_toroidal_profile185_ 2.31789707124320545e-02 +Beta_toroidal_profile_at_point_186_______________________________________ beta_thermal_toroidal_profile186_ 2.33566736538303316e-02 +Beta_toroidal_profile_at_point_187_______________________________________ beta_thermal_toroidal_profile187_ 2.35349768500199598e-02 +Beta_toroidal_profile_at_point_188_______________________________________ beta_thermal_toroidal_profile188_ 2.37138765498600551e-02 +Beta_toroidal_profile_at_point_189_______________________________________ beta_thermal_toroidal_profile189_ 2.38933689821373869e-02 +Beta_toroidal_profile_at_point_190_______________________________________ beta_thermal_toroidal_profile190_ 2.40734503555657363e-02 +Beta_toroidal_profile_at_point_191_______________________________________ beta_thermal_toroidal_profile191_ 2.42541168587882099e-02 +Beta_toroidal_profile_at_point_192_______________________________________ beta_thermal_toroidal_profile192_ 2.44353646603817642e-02 +Beta_toroidal_profile_at_point_193_______________________________________ beta_thermal_toroidal_profile193_ 2.46171899088646409e-02 +Beta_toroidal_profile_at_point_194_______________________________________ beta_thermal_toroidal_profile194_ 2.47995887327058934e-02 +Beta_toroidal_profile_at_point_195_______________________________________ beta_thermal_toroidal_profile195_ 2.49825572403376966e-02 +Beta_toroidal_profile_at_point_196_______________________________________ beta_thermal_toroidal_profile196_ 2.51660915201695964e-02 +Beta_toroidal_profile_at_point_197_______________________________________ beta_thermal_toroidal_profile197_ 2.53501876406053914e-02 +Beta_toroidal_profile_at_point_198_______________________________________ beta_thermal_toroidal_profile198_ 2.55348416500619999e-02 +Beta_toroidal_profile_at_point_199_______________________________________ beta_thermal_toroidal_profile199_ 2.57200495769907278e-02 +Beta_toroidal_profile_at_point_200_______________________________________ beta_thermal_toroidal_profile200_ 2.59058074299004792e-02 +Beta_toroidal_profile_at_point_201_______________________________________ beta_thermal_toroidal_profile201_ 2.60921111973831145e-02 +Beta_toroidal_profile_at_point_202_______________________________________ beta_thermal_toroidal_profile202_ 2.62789568481408727e-02 +Beta_toroidal_profile_at_point_203_______________________________________ beta_thermal_toroidal_profile203_ 2.64663403310158446e-02 +Beta_toroidal_profile_at_point_204_______________________________________ beta_thermal_toroidal_profile204_ 2.66542575750212014e-02 +Beta_toroidal_profile_at_point_205_______________________________________ beta_thermal_toroidal_profile205_ 2.68427044893745602e-02 +Beta_toroidal_profile_at_point_206_______________________________________ beta_thermal_toroidal_profile206_ 2.70316769635329975e-02 +Beta_toroidal_profile_at_point_207_______________________________________ beta_thermal_toroidal_profile207_ 2.72211708672301100e-02 +Beta_toroidal_profile_at_point_208_______________________________________ beta_thermal_toroidal_profile208_ 2.74111820505146785e-02 +Beta_toroidal_profile_at_point_209_______________________________________ beta_thermal_toroidal_profile209_ 2.76017063437912109e-02 +Beta_toroidal_profile_at_point_210_______________________________________ beta_thermal_toroidal_profile210_ 2.77927395578621179e-02 +Beta_toroidal_profile_at_point_211_______________________________________ beta_thermal_toroidal_profile211_ 2.79842774839716285e-02 +Beta_toroidal_profile_at_point_212_______________________________________ beta_thermal_toroidal_profile212_ 2.81763158938513267e-02 +Beta_toroidal_profile_at_point_213_______________________________________ beta_thermal_toroidal_profile213_ 2.83688505397673117e-02 +Beta_toroidal_profile_at_point_214_______________________________________ beta_thermal_toroidal_profile214_ 2.85618771545689820e-02 +Beta_toroidal_profile_at_point_215_______________________________________ beta_thermal_toroidal_profile215_ 2.87553914517393178e-02 +Beta_toroidal_profile_at_point_216_______________________________________ beta_thermal_toroidal_profile216_ 2.89493891254467006e-02 +Beta_toroidal_profile_at_point_217_______________________________________ beta_thermal_toroidal_profile217_ 2.91438658505983224e-02 +Beta_toroidal_profile_at_point_218_______________________________________ beta_thermal_toroidal_profile218_ 2.93388172828949190e-02 +Beta_toroidal_profile_at_point_219_______________________________________ beta_thermal_toroidal_profile219_ 2.95342390588870587e-02 +Beta_toroidal_profile_at_point_220_______________________________________ beta_thermal_toroidal_profile220_ 2.97301267960328672e-02 +Beta_toroidal_profile_at_point_221_______________________________________ beta_thermal_toroidal_profile221_ 2.99264760927570213e-02 +Beta_toroidal_profile_at_point_222_______________________________________ beta_thermal_toroidal_profile222_ 3.01232825285112985e-02 +Beta_toroidal_profile_at_point_223_______________________________________ beta_thermal_toroidal_profile223_ 3.03205416638362424e-02 +Beta_toroidal_profile_at_point_224_______________________________________ beta_thermal_toroidal_profile224_ 3.05182490404244389e-02 +Beta_toroidal_profile_at_point_225_______________________________________ beta_thermal_toroidal_profile225_ 3.07164001811848567e-02 +Beta_toroidal_profile_at_point_226_______________________________________ beta_thermal_toroidal_profile226_ 3.09149905903085519e-02 +Beta_toroidal_profile_at_point_227_______________________________________ beta_thermal_toroidal_profile227_ 3.11140157533356838e-02 +Beta_toroidal_profile_at_point_228_______________________________________ beta_thermal_toroidal_profile228_ 3.13134711372237626e-02 +Beta_toroidal_profile_at_point_229_______________________________________ beta_thermal_toroidal_profile229_ 3.15133521904170308e-02 +Beta_toroidal_profile_at_point_230_______________________________________ beta_thermal_toroidal_profile230_ 3.17136543429171261e-02 +Beta_toroidal_profile_at_point_231_______________________________________ beta_thermal_toroidal_profile231_ 3.19143730063548917e-02 +Beta_toroidal_profile_at_point_232_______________________________________ beta_thermal_toroidal_profile232_ 3.21155035740635295e-02 +Beta_toroidal_profile_at_point_233_______________________________________ beta_thermal_toroidal_profile233_ 3.23170414211524995e-02 +Beta_toroidal_profile_at_point_234_______________________________________ beta_thermal_toroidal_profile234_ 3.25189819045830775e-02 +Beta_toroidal_profile_at_point_235_______________________________________ beta_thermal_toroidal_profile235_ 3.27213203632445021e-02 +Beta_toroidal_profile_at_point_236_______________________________________ beta_thermal_toroidal_profile236_ 3.29240521180317255e-02 +Beta_toroidal_profile_at_point_237_______________________________________ beta_thermal_toroidal_profile237_ 3.31271724719238575e-02 +Beta_toroidal_profile_at_point_238_______________________________________ beta_thermal_toroidal_profile238_ 3.33306767100639278e-02 +Beta_toroidal_profile_at_point_239_______________________________________ beta_thermal_toroidal_profile239_ 3.35345600998394819e-02 +Beta_toroidal_profile_at_point_240_______________________________________ beta_thermal_toroidal_profile240_ 3.37388178909644870e-02 +Beta_toroidal_profile_at_point_241_______________________________________ beta_thermal_toroidal_profile241_ 3.39434453155620652e-02 +Beta_toroidal_profile_at_point_242_______________________________________ beta_thermal_toroidal_profile242_ 3.41484375882483565e-02 +Beta_toroidal_profile_at_point_243_______________________________________ beta_thermal_toroidal_profile243_ 3.43537899062172775e-02 +Beta_toroidal_profile_at_point_244_______________________________________ beta_thermal_toroidal_profile244_ 3.45594974493263693e-02 +Beta_toroidal_profile_at_point_245_______________________________________ beta_thermal_toroidal_profile245_ 3.47655553801835548e-02 +Beta_toroidal_profile_at_point_246_______________________________________ beta_thermal_toroidal_profile246_ 3.49719588442349918e-02 +Beta_toroidal_profile_at_point_247_______________________________________ beta_thermal_toroidal_profile247_ 3.51787029698535925e-02 +Beta_toroidal_profile_at_point_248_______________________________________ beta_thermal_toroidal_profile248_ 3.53857828684289236e-02 +Beta_toroidal_profile_at_point_249_______________________________________ beta_thermal_toroidal_profile249_ 3.55931936344575164e-02 +Beta_toroidal_profile_at_point_250_______________________________________ beta_thermal_toroidal_profile250_ 3.58009303456346406e-02 +Beta_toroidal_profile_at_point_251_______________________________________ beta_thermal_toroidal_profile251_ 3.60089880629464870e-02 +Beta_toroidal_profile_at_point_252_______________________________________ beta_thermal_toroidal_profile252_ 3.62173618307636766e-02 +Beta_toroidal_profile_at_point_253_______________________________________ beta_thermal_toroidal_profile253_ 3.64260466769352892e-02 +Beta_toroidal_profile_at_point_254_______________________________________ beta_thermal_toroidal_profile254_ 3.66350376128841068e-02 +Beta_toroidal_profile_at_point_255_______________________________________ beta_thermal_toroidal_profile255_ 3.68443296337024606e-02 +Beta_toroidal_profile_at_point_256_______________________________________ beta_thermal_toroidal_profile256_ 3.70539177182491464e-02 +Beta_toroidal_profile_at_point_257_______________________________________ beta_thermal_toroidal_profile257_ 3.72637968292469021e-02 +Beta_toroidal_profile_at_point_258_______________________________________ beta_thermal_toroidal_profile258_ 3.74739619133812457e-02 +Beta_toroidal_profile_at_point_259_______________________________________ beta_thermal_toroidal_profile259_ 3.76844079013994998e-02 +Beta_toroidal_profile_at_point_260_______________________________________ beta_thermal_toroidal_profile260_ 3.78951297082111352e-02 +Beta_toroidal_profile_at_point_261_______________________________________ beta_thermal_toroidal_profile261_ 3.81061222329887733e-02 +Beta_toroidal_profile_at_point_262_______________________________________ beta_thermal_toroidal_profile262_ 3.83173803592698897e-02 +Beta_toroidal_profile_at_point_263_______________________________________ beta_thermal_toroidal_profile263_ 3.85288989550595373e-02 +Beta_toroidal_profile_at_point_264_______________________________________ beta_thermal_toroidal_profile264_ 3.87406728729336527e-02 +Beta_toroidal_profile_at_point_265_______________________________________ beta_thermal_toroidal_profile265_ 3.89526969501432646e-02 +Beta_toroidal_profile_at_point_266_______________________________________ beta_thermal_toroidal_profile266_ 3.91649660087195067e-02 +Beta_toroidal_profile_at_point_267_______________________________________ beta_thermal_toroidal_profile267_ 3.93774748555792975e-02 +Beta_toroidal_profile_at_point_268_______________________________________ beta_thermal_toroidal_profile268_ 3.95902182826318796e-02 +Beta_toroidal_profile_at_point_269_______________________________________ beta_thermal_toroidal_profile269_ 3.98031910668861094e-02 +Beta_toroidal_profile_at_point_270_______________________________________ beta_thermal_toroidal_profile270_ 4.00163879705583425e-02 +Beta_toroidal_profile_at_point_271_______________________________________ beta_thermal_toroidal_profile271_ 4.02298037411813539e-02 +Beta_toroidal_profile_at_point_272_______________________________________ beta_thermal_toroidal_profile272_ 4.04434331117137710e-02 +Beta_toroidal_profile_at_point_273_______________________________________ beta_thermal_toroidal_profile273_ 4.06572708006502567e-02 +Beta_toroidal_profile_at_point_274_______________________________________ beta_thermal_toroidal_profile274_ 4.08713115121325035e-02 +Beta_toroidal_profile_at_point_275_______________________________________ beta_thermal_toroidal_profile275_ 4.10855499360609153e-02 +Beta_toroidal_profile_at_point_276_______________________________________ beta_thermal_toroidal_profile276_ 4.12999807482070311e-02 +Beta_toroidal_profile_at_point_277_______________________________________ beta_thermal_toroidal_profile277_ 4.15145986103265113e-02 +Beta_toroidal_profile_at_point_278_______________________________________ beta_thermal_toroidal_profile278_ 4.17293981702730882e-02 +Beta_toroidal_profile_at_point_279_______________________________________ beta_thermal_toroidal_profile279_ 4.19443740621128838e-02 +Beta_toroidal_profile_at_point_280_______________________________________ beta_thermal_toroidal_profile280_ 4.21595209062397697e-02 +Beta_toroidal_profile_at_point_281_______________________________________ beta_thermal_toroidal_profile281_ 4.23748333094911417e-02 +Beta_toroidal_profile_at_point_282_______________________________________ beta_thermal_toroidal_profile282_ 4.25903058652645355e-02 +Beta_toroidal_profile_at_point_283_______________________________________ beta_thermal_toroidal_profile283_ 4.28059331536347343e-02 +Beta_toroidal_profile_at_point_284_______________________________________ beta_thermal_toroidal_profile284_ 4.30217097414718475e-02 +Beta_toroidal_profile_at_point_285_______________________________________ beta_thermal_toroidal_profile285_ 4.32376301825597373e-02 +Beta_toroidal_profile_at_point_286_______________________________________ beta_thermal_toroidal_profile286_ 4.34536890177153190e-02 +Beta_toroidal_profile_at_point_287_______________________________________ beta_thermal_toroidal_profile287_ 4.36698807749083470e-02 +Beta_toroidal_profile_at_point_288_______________________________________ beta_thermal_toroidal_profile288_ 4.38861999693820823e-02 +Beta_toroidal_profile_at_point_289_______________________________________ beta_thermal_toroidal_profile289_ 4.41026411037744107e-02 +Beta_toroidal_profile_at_point_290_______________________________________ beta_thermal_toroidal_profile290_ 4.43191986682396066e-02 +Beta_toroidal_profile_at_point_291_______________________________________ beta_thermal_toroidal_profile291_ 4.45358671405709020e-02 +Beta_toroidal_profile_at_point_292_______________________________________ beta_thermal_toroidal_profile292_ 4.47526409863234567e-02 +Beta_toroidal_profile_at_point_293_______________________________________ beta_thermal_toroidal_profile293_ 4.49695146589381770e-02 +Beta_toroidal_profile_at_point_294_______________________________________ beta_thermal_toroidal_profile294_ 4.51864825998659764e-02 +Beta_toroidal_profile_at_point_295_______________________________________ beta_thermal_toroidal_profile295_ 4.54035392386928360e-02 +Beta_toroidal_profile_at_point_296_______________________________________ beta_thermal_toroidal_profile296_ 4.56206789932653151e-02 +Beta_toroidal_profile_at_point_297_______________________________________ beta_thermal_toroidal_profile297_ 4.58378962698167206e-02 +Beta_toroidal_profile_at_point_298_______________________________________ beta_thermal_toroidal_profile298_ 4.60551854630939991e-02 +Beta_toroidal_profile_at_point_299_______________________________________ beta_thermal_toroidal_profile299_ 4.62725409564849893e-02 +Beta_toroidal_profile_at_point_300_______________________________________ beta_thermal_toroidal_profile300_ 4.64899571221466107e-02 +Beta_toroidal_profile_at_point_301_______________________________________ beta_thermal_toroidal_profile301_ 4.67074283211333097e-02 +Beta_toroidal_profile_at_point_302_______________________________________ beta_thermal_toroidal_profile302_ 4.69249489035263381e-02 +Beta_toroidal_profile_at_point_303_______________________________________ beta_thermal_toroidal_profile303_ 4.71425132085634760e-02 +Beta_toroidal_profile_at_point_304_______________________________________ beta_thermal_toroidal_profile304_ 4.73601155647693922e-02 +Beta_toroidal_profile_at_point_305_______________________________________ beta_thermal_toroidal_profile305_ 4.75777502900866719e-02 +Beta_toroidal_profile_at_point_306_______________________________________ beta_thermal_toroidal_profile306_ 4.77954116920072530e-02 +Beta_toroidal_profile_at_point_307_______________________________________ beta_thermal_toroidal_profile307_ 4.80130940677045495e-02 +Beta_toroidal_profile_at_point_308_______________________________________ beta_thermal_toroidal_profile308_ 4.82307917041661302e-02 +Beta_toroidal_profile_at_point_309_______________________________________ beta_thermal_toroidal_profile309_ 4.84484988783269316e-02 +Beta_toroidal_profile_at_point_310_______________________________________ beta_thermal_toroidal_profile310_ 4.86662098572030813e-02 +Beta_toroidal_profile_at_point_311_______________________________________ beta_thermal_toroidal_profile311_ 4.88839188980262351e-02 +Beta_toroidal_profile_at_point_312_______________________________________ beta_thermal_toroidal_profile312_ 4.91016202483785108e-02 +Beta_toroidal_profile_at_point_313_______________________________________ beta_thermal_toroidal_profile313_ 4.93193081463279281e-02 +Beta_toroidal_profile_at_point_314_______________________________________ beta_thermal_toroidal_profile314_ 4.95369768205644809e-02 +Beta_toroidal_profile_at_point_315_______________________________________ beta_thermal_toroidal_profile315_ 4.97546204905365899e-02 +Beta_toroidal_profile_at_point_316_______________________________________ beta_thermal_toroidal_profile316_ 4.99722333665884380e-02 +Beta_toroidal_profile_at_point_317_______________________________________ beta_thermal_toroidal_profile317_ 5.01898096500973667e-02 +Beta_toroidal_profile_at_point_318_______________________________________ beta_thermal_toroidal_profile318_ 5.04073435336122172e-02 +Beta_toroidal_profile_at_point_319_______________________________________ beta_thermal_toroidal_profile319_ 5.06248292009920109e-02 +Beta_toroidal_profile_at_point_320_______________________________________ beta_thermal_toroidal_profile320_ 5.08422608275452617e-02 +Beta_toroidal_profile_at_point_321_______________________________________ beta_thermal_toroidal_profile321_ 5.10596325801697046e-02 +Beta_toroidal_profile_at_point_322_______________________________________ beta_thermal_toroidal_profile322_ 5.12769386174925651e-02 +Beta_toroidal_profile_at_point_323_______________________________________ beta_thermal_toroidal_profile323_ 5.14941730900115441e-02 +Beta_toroidal_profile_at_point_324_______________________________________ beta_thermal_toroidal_profile324_ 5.17113301402360032e-02 +Beta_toroidal_profile_at_point_325_______________________________________ beta_thermal_toroidal_profile325_ 5.19284039028290040e-02 +Beta_toroidal_profile_at_point_326_______________________________________ beta_thermal_toroidal_profile326_ 5.21453885047495624e-02 +Beta_toroidal_profile_at_point_327_______________________________________ beta_thermal_toroidal_profile327_ 5.23622780653956038e-02 +Beta_toroidal_profile_at_point_328_______________________________________ beta_thermal_toroidal_profile328_ 5.25790666967473896e-02 +Beta_toroidal_profile_at_point_329_______________________________________ beta_thermal_toroidal_profile329_ 5.27957485035113749e-02 +Beta_toroidal_profile_at_point_330_______________________________________ beta_thermal_toroidal_profile330_ 5.30123175832646620e-02 +Beta_toroidal_profile_at_point_331_______________________________________ beta_thermal_toroidal_profile331_ 5.32287680266000096e-02 +Beta_toroidal_profile_at_point_332_______________________________________ beta_thermal_toroidal_profile332_ 5.34450939172710360e-02 +Beta_toroidal_profile_at_point_333_______________________________________ beta_thermal_toroidal_profile333_ 5.36612893323383383e-02 +Beta_toroidal_profile_at_point_334_______________________________________ beta_thermal_toroidal_profile334_ 5.38773483423157715e-02 +Beta_toroidal_profile_at_point_335_______________________________________ beta_thermal_toroidal_profile335_ 5.40932650113173999e-02 +Beta_toroidal_profile_at_point_336_______________________________________ beta_thermal_toroidal_profile336_ 5.43090333972048867e-02 +Beta_toroidal_profile_at_point_337_______________________________________ beta_thermal_toroidal_profile337_ 5.45246475517352641e-02 +Beta_toroidal_profile_at_point_338_______________________________________ beta_thermal_toroidal_profile338_ 5.47401015207094402e-02 +Beta_toroidal_profile_at_point_339_______________________________________ beta_thermal_toroidal_profile339_ 5.49553893441208988e-02 +Beta_toroidal_profile_at_point_340_______________________________________ beta_thermal_toroidal_profile340_ 5.51705050563050317e-02 +Beta_toroidal_profile_at_point_341_______________________________________ beta_thermal_toroidal_profile341_ 5.53854426860889704e-02 +Beta_toroidal_profile_at_point_342_______________________________________ beta_thermal_toroidal_profile342_ 5.56001962569417571e-02 +Beta_toroidal_profile_at_point_343_______________________________________ beta_thermal_toroidal_profile343_ 5.58147597871251483e-02 +Beta_toroidal_profile_at_point_344_______________________________________ beta_thermal_toroidal_profile344_ 5.60291272898447087e-02 +Beta_toroidal_profile_at_point_345_______________________________________ beta_thermal_toroidal_profile345_ 5.62432927734015861e-02 +Beta_toroidal_profile_at_point_346_______________________________________ beta_thermal_toroidal_profile346_ 5.64572502413444657e-02 +Beta_toroidal_profile_at_point_347_______________________________________ beta_thermal_toroidal_profile347_ 5.66709936926222610e-02 +Beta_toroidal_profile_at_point_348_______________________________________ beta_thermal_toroidal_profile348_ 5.68845171217371506e-02 +Beta_toroidal_profile_at_point_349_______________________________________ beta_thermal_toroidal_profile349_ 5.70978145188979491e-02 +Beta_toroidal_profile_at_point_350_______________________________________ beta_thermal_toroidal_profile350_ 5.73108798701741640e-02 +Beta_toroidal_profile_at_point_351_______________________________________ beta_thermal_toroidal_profile351_ 5.75237071576503514e-02 +Beta_toroidal_profile_at_point_352_______________________________________ beta_thermal_toroidal_profile352_ 5.77362903595808469e-02 +Beta_toroidal_profile_at_point_353_______________________________________ beta_thermal_toroidal_profile353_ 5.79486234505452377e-02 +Beta_toroidal_profile_at_point_354_______________________________________ beta_thermal_toroidal_profile354_ 5.81607004016038501e-02 +Beta_toroidal_profile_at_point_355_______________________________________ beta_thermal_toroidal_profile355_ 5.83725151804541237e-02 +Beta_toroidal_profile_at_point_356_______________________________________ beta_thermal_toroidal_profile356_ 5.85840617515870909e-02 +Beta_toroidal_profile_at_point_357_______________________________________ beta_thermal_toroidal_profile357_ 5.87953340764444110e-02 +Beta_toroidal_profile_at_point_358_______________________________________ beta_thermal_toroidal_profile358_ 5.90063261135759035e-02 +Beta_toroidal_profile_at_point_359_______________________________________ beta_thermal_toroidal_profile359_ 5.92170318187973665e-02 +Beta_toroidal_profile_at_point_360_______________________________________ beta_thermal_toroidal_profile360_ 5.94274451453489713e-02 +Beta_toroidal_profile_at_point_361_______________________________________ beta_thermal_toroidal_profile361_ 5.96375600440539333e-02 +Beta_toroidal_profile_at_point_362_______________________________________ beta_thermal_toroidal_profile362_ 5.98473704634777948e-02 +Beta_toroidal_profile_at_point_363_______________________________________ beta_thermal_toroidal_profile363_ 6.00568703500879431e-02 +Beta_toroidal_profile_at_point_364_______________________________________ beta_thermal_toroidal_profile364_ 6.02660536484136214e-02 +Beta_toroidal_profile_at_point_365_______________________________________ beta_thermal_toroidal_profile365_ 6.04749143012063908e-02 +Beta_toroidal_profile_at_point_366_______________________________________ beta_thermal_toroidal_profile366_ 6.06834462496010571e-02 +Beta_toroidal_profile_at_point_367_______________________________________ beta_thermal_toroidal_profile367_ 6.08916434332766945e-02 +Beta_toroidal_profile_at_point_368_______________________________________ beta_thermal_toroidal_profile368_ 6.10994997906186207e-02 +Beta_toroidal_profile_at_point_369_______________________________________ beta_thermal_toroidal_profile369_ 6.13070092588801491e-02 +Beta_toroidal_profile_at_point_370_______________________________________ beta_thermal_toroidal_profile370_ 6.15141657743454653e-02 +Beta_toroidal_profile_at_point_371_______________________________________ beta_thermal_toroidal_profile371_ 6.17209632724920604e-02 +Beta_toroidal_profile_at_point_372_______________________________________ beta_thermal_toroidal_profile372_ 6.19273956881543977e-02 +Beta_toroidal_profile_at_point_373_______________________________________ beta_thermal_toroidal_profile373_ 6.21334569556873870e-02 +Beta_toroidal_profile_at_point_374_______________________________________ beta_thermal_toroidal_profile374_ 6.23391410091305442e-02 +Beta_toroidal_profile_at_point_375_______________________________________ beta_thermal_toroidal_profile375_ 6.25444417823724230e-02 +Beta_toroidal_profile_at_point_376_______________________________________ beta_thermal_toroidal_profile376_ 6.27493532093155448e-02 +Beta_toroidal_profile_at_point_377_______________________________________ beta_thermal_toroidal_profile377_ 6.29538692240415726e-02 +Beta_toroidal_profile_at_point_378_______________________________________ beta_thermal_toroidal_profile378_ 6.31579837609769906e-02 +Beta_toroidal_profile_at_point_379_______________________________________ beta_thermal_toroidal_profile379_ 6.33616907550592079e-02 +Beta_toroidal_profile_at_point_380_______________________________________ beta_thermal_toroidal_profile380_ 6.35649841419028694e-02 +Beta_toroidal_profile_at_point_381_______________________________________ beta_thermal_toroidal_profile381_ 6.37678578579666394e-02 +Beta_toroidal_profile_at_point_382_______________________________________ beta_thermal_toroidal_profile382_ 6.39703058407204150e-02 +Beta_toroidal_profile_at_point_383_______________________________________ beta_thermal_toroidal_profile383_ 6.41723220288129698e-02 +Beta_toroidal_profile_at_point_384_______________________________________ beta_thermal_toroidal_profile384_ 6.43739003622396805e-02 +Beta_toroidal_profile_at_point_385_______________________________________ beta_thermal_toroidal_profile385_ 6.45750347825109344e-02 +Beta_toroidal_profile_at_point_386_______________________________________ beta_thermal_toroidal_profile386_ 6.47757192328207859e-02 +Beta_toroidal_profile_at_point_387_______________________________________ beta_thermal_toroidal_profile387_ 6.49759476582159184e-02 +Beta_toroidal_profile_at_point_388_______________________________________ beta_thermal_toroidal_profile388_ 6.51757140057651341e-02 +Beta_toroidal_profile_at_point_389_______________________________________ beta_thermal_toroidal_profile389_ 6.53750122247290510e-02 +Beta_toroidal_profile_at_point_390_______________________________________ beta_thermal_toroidal_profile390_ 6.55738362667302593e-02 +Beta_toroidal_profile_at_point_391_______________________________________ beta_thermal_toroidal_profile391_ 6.57721800859236982e-02 +Beta_toroidal_profile_at_point_392_______________________________________ beta_thermal_toroidal_profile392_ 6.59700376391675752e-02 +Beta_toroidal_profile_at_point_393_______________________________________ beta_thermal_toroidal_profile393_ 6.61674028861945762e-02 +Beta_toroidal_profile_at_point_394_______________________________________ beta_thermal_toroidal_profile394_ 6.63642697897832562e-02 +Beta_toroidal_profile_at_point_395_______________________________________ beta_thermal_toroidal_profile395_ 6.65606323159301516e-02 +Beta_toroidal_profile_at_point_396_______________________________________ beta_thermal_toroidal_profile396_ 6.67564844340216568e-02 +Beta_toroidal_profile_at_point_397_______________________________________ beta_thermal_toroidal_profile397_ 6.69518201170071076e-02 +Beta_toroidal_profile_at_point_398_______________________________________ beta_thermal_toroidal_profile398_ 6.71466333415711575e-02 +Beta_toroidal_profile_at_point_399_______________________________________ beta_thermal_toroidal_profile399_ 6.73409180883074721e-02 +Beta_toroidal_profile_at_point_400_______________________________________ beta_thermal_toroidal_profile400_ 6.75346683418919513e-02 +Beta_toroidal_profile_at_point_401_______________________________________ beta_thermal_toroidal_profile401_ 6.77278780912569656e-02 +Beta_toroidal_profile_at_point_402_______________________________________ beta_thermal_toroidal_profile402_ 6.79205413297655353e-02 +Beta_toroidal_profile_at_point_403_______________________________________ beta_thermal_toroidal_profile403_ 6.81126520553858167e-02 +Beta_toroidal_profile_at_point_404_______________________________________ beta_thermal_toroidal_profile404_ 6.83042042708661423e-02 +Beta_toroidal_profile_at_point_405_______________________________________ beta_thermal_toroidal_profile405_ 6.84951919839101586e-02 +Beta_toroidal_profile_at_point_406_______________________________________ beta_thermal_toroidal_profile406_ 6.86856092073525742e-02 +Beta_toroidal_profile_at_point_407_______________________________________ beta_thermal_toroidal_profile407_ 6.88754499593348946e-02 +Beta_toroidal_profile_at_point_408_______________________________________ beta_thermal_toroidal_profile408_ 6.90647082634816972e-02 +Beta_toroidal_profile_at_point_409_______________________________________ beta_thermal_toroidal_profile409_ 6.92533781490772271e-02 +Beta_toroidal_profile_at_point_410_______________________________________ beta_thermal_toroidal_profile410_ 6.94414536512420882e-02 +Beta_toroidal_profile_at_point_411_______________________________________ beta_thermal_toroidal_profile411_ 6.96289288111105881e-02 +Beta_toroidal_profile_at_point_412_______________________________________ beta_thermal_toroidal_profile412_ 6.98157976760080540e-02 +Beta_toroidal_profile_at_point_413_______________________________________ beta_thermal_toroidal_profile413_ 7.00020542996287465e-02 +Beta_toroidal_profile_at_point_414_______________________________________ beta_thermal_toroidal_profile414_ 7.01876927422138835e-02 +Beta_toroidal_profile_at_point_415_______________________________________ beta_thermal_toroidal_profile415_ 7.03727070707299424e-02 +Beta_toroidal_profile_at_point_416_______________________________________ beta_thermal_toroidal_profile416_ 7.05570913590474885e-02 +Beta_toroidal_profile_at_point_417_______________________________________ beta_thermal_toroidal_profile417_ 7.07408396881201856e-02 +Beta_toroidal_profile_at_point_418_______________________________________ beta_thermal_toroidal_profile418_ 7.09239461461639159e-02 +Beta_toroidal_profile_at_point_419_______________________________________ beta_thermal_toroidal_profile419_ 7.11064048288365252e-02 +Beta_toroidal_profile_at_point_420_______________________________________ beta_thermal_toroidal_profile420_ 7.12882098394175268e-02 +Beta_toroidal_profile_at_point_421_______________________________________ beta_thermal_toroidal_profile421_ 7.14693552889884703e-02 +Beta_toroidal_profile_at_point_422_______________________________________ beta_thermal_toroidal_profile422_ 7.16498352966133123e-02 +Beta_toroidal_profile_at_point_423_______________________________________ beta_thermal_toroidal_profile423_ 7.18296439895190486e-02 +Beta_toroidal_profile_at_point_424_______________________________________ beta_thermal_toroidal_profile424_ 7.20087755032767923e-02 +Beta_toroidal_profile_at_point_425_______________________________________ beta_thermal_toroidal_profile425_ 7.21872239819831979e-02 +Beta_toroidal_profile_at_point_426_______________________________________ beta_thermal_toroidal_profile426_ 7.23649835784418577e-02 +Beta_toroidal_profile_at_point_427_______________________________________ beta_thermal_toroidal_profile427_ 7.25420484543452537e-02 +Beta_toroidal_profile_at_point_428_______________________________________ beta_thermal_toroidal_profile428_ 7.27184127804568342e-02 +Beta_toroidal_profile_at_point_429_______________________________________ beta_thermal_toroidal_profile429_ 7.28940707367935342e-02 +Beta_toroidal_profile_at_point_430_______________________________________ beta_thermal_toroidal_profile430_ 7.30690165128081992e-02 +Beta_toroidal_profile_at_point_431_______________________________________ beta_thermal_toroidal_profile431_ 7.32432443075727857e-02 +Beta_toroidal_profile_at_point_432_______________________________________ beta_thermal_toroidal_profile432_ 7.34167483299613677e-02 +Beta_toroidal_profile_at_point_433_______________________________________ beta_thermal_toroidal_profile433_ 7.35895227988336703e-02 +Beta_toroidal_profile_at_point_434_______________________________________ beta_thermal_toroidal_profile434_ 7.37615619432187702e-02 +Beta_toroidal_profile_at_point_435_______________________________________ beta_thermal_toroidal_profile435_ 7.39328600024991428e-02 +Beta_toroidal_profile_at_point_436_______________________________________ beta_thermal_toroidal_profile436_ 7.41034112265946676e-02 +Beta_toroidal_profile_at_point_437_______________________________________ beta_thermal_toroidal_profile437_ 7.42732098761474530e-02 +Beta_toroidal_profile_at_point_438_______________________________________ beta_thermal_toroidal_profile438_ 7.44422502227061467e-02 +Beta_toroidal_profile_at_point_439_______________________________________ beta_thermal_toroidal_profile439_ 7.46105265489113434e-02 +Beta_toroidal_profile_at_point_440_______________________________________ beta_thermal_toroidal_profile440_ 7.47780331486804506e-02 +Beta_toroidal_profile_at_point_441_______________________________________ beta_thermal_toroidal_profile441_ 7.49447643273933456e-02 +Beta_toroidal_profile_at_point_442_______________________________________ beta_thermal_toroidal_profile442_ 7.51107144020780326e-02 +Beta_toroidal_profile_at_point_443_______________________________________ beta_thermal_toroidal_profile443_ 7.52758777015965774e-02 +Beta_toroidal_profile_at_point_444_______________________________________ beta_thermal_toroidal_profile444_ 7.54402485668312778e-02 +Beta_toroidal_profile_at_point_445_______________________________________ beta_thermal_toroidal_profile445_ 7.56038213508709728e-02 +Beta_toroidal_profile_at_point_446_______________________________________ beta_thermal_toroidal_profile446_ 7.57665904191979350e-02 +Beta_toroidal_profile_at_point_447_______________________________________ beta_thermal_toroidal_profile447_ 7.59285501498744436e-02 +Beta_toroidal_profile_at_point_448_______________________________________ beta_thermal_toroidal_profile448_ 7.60896949337300926e-02 +Beta_toroidal_profile_at_point_449_______________________________________ beta_thermal_toroidal_profile449_ 7.62500191745488776e-02 +Beta_toroidal_profile_at_point_450_______________________________________ beta_thermal_toroidal_profile450_ 7.64095172892569757e-02 +Beta_toroidal_profile_at_point_451_______________________________________ beta_thermal_toroidal_profile451_ 7.65681837081103045e-02 +Beta_toroidal_profile_at_point_452_______________________________________ beta_thermal_toroidal_profile452_ 7.67260128748826764e-02 +Beta_toroidal_profile_at_point_453_______________________________________ beta_thermal_toroidal_profile453_ 7.68829992470536350e-02 +Beta_toroidal_profile_at_point_454_______________________________________ beta_thermal_toroidal_profile454_ 7.70391372959972481e-02 +Beta_toroidal_profile_at_point_455_______________________________________ beta_thermal_toroidal_profile455_ 7.71944215071703466e-02 +Beta_toroidal_profile_at_point_456_______________________________________ beta_thermal_toroidal_profile456_ 7.73488463803016085e-02 +Beta_toroidal_profile_at_point_457_______________________________________ beta_thermal_toroidal_profile457_ 7.75024064295803811e-02 +Beta_toroidal_profile_at_point_458_______________________________________ beta_thermal_toroidal_profile458_ 7.76550961838458759e-02 +Beta_toroidal_profile_at_point_459_______________________________________ beta_thermal_toroidal_profile459_ 7.78069101867766844e-02 +Beta_toroidal_profile_at_point_460_______________________________________ beta_thermal_toroidal_profile460_ 7.79578429970802372e-02 +Beta_toroidal_profile_at_point_461_______________________________________ beta_thermal_toroidal_profile461_ 7.81078891886826387e-02 +Beta_toroidal_profile_at_point_462_______________________________________ beta_thermal_toroidal_profile462_ 7.82570433509186952e-02 +Beta_toroidal_profile_at_point_463_______________________________________ beta_thermal_toroidal_profile463_ 7.84053000887220686e-02 +Beta_toroidal_profile_at_point_464_______________________________________ beta_thermal_toroidal_profile464_ 7.85526540228153464e-02 +Beta_toroidal_profile_at_point_465_______________________________________ beta_thermal_toroidal_profile465_ 7.86990997899010419e-02 +Beta_toroidal_profile_at_point_466_______________________________________ beta_thermal_toroidal_profile466_ 7.88446320428519004e-02 +Beta_toroidal_profile_at_point_467_______________________________________ beta_thermal_toroidal_profile467_ 7.89892454509020236e-02 +Beta_toroidal_profile_at_point_468_______________________________________ beta_thermal_toroidal_profile468_ 7.91329346998376620e-02 +Beta_toroidal_profile_at_point_469_______________________________________ beta_thermal_toroidal_profile469_ 7.92756944921886725e-02 +Beta_toroidal_profile_at_point_470_______________________________________ beta_thermal_toroidal_profile470_ 7.94175195474199763e-02 +Beta_toroidal_profile_at_point_471_______________________________________ beta_thermal_toroidal_profile471_ 7.95584046021227120e-02 +Beta_toroidal_profile_at_point_472_______________________________________ beta_thermal_toroidal_profile472_ 7.96983444102063870e-02 +Beta_toroidal_profile_at_point_473_______________________________________ beta_thermal_toroidal_profile473_ 7.98373337430905716e-02 +Beta_toroidal_profile_at_point_474_______________________________________ beta_thermal_toroidal_profile474_ 7.99753673898968703e-02 +Beta_toroidal_profile_at_point_475_______________________________________ beta_thermal_toroidal_profile475_ 8.01124401576413514e-02 +Beta_toroidal_profile_at_point_476_______________________________________ beta_thermal_toroidal_profile476_ 8.02485468714265321e-02 +Beta_toroidal_profile_at_point_477_______________________________________ beta_thermal_toroidal_profile477_ 8.03836823746343493e-02 +Beta_toroidal_profile_at_point_478_______________________________________ beta_thermal_toroidal_profile478_ 8.05178415291183114e-02 +Beta_toroidal_profile_at_point_479_______________________________________ beta_thermal_toroidal_profile479_ 8.06510192153965383e-02 +Beta_toroidal_profile_at_point_480_______________________________________ beta_thermal_toroidal_profile480_ 8.07832103328447876e-02 +Beta_toroidal_profile_at_point_481_______________________________________ beta_thermal_toroidal_profile481_ 8.09144097998893419e-02 +Beta_toroidal_profile_at_point_482_______________________________________ beta_thermal_toroidal_profile482_ 8.10446125542002710e-02 +Beta_toroidal_profile_at_point_483_______________________________________ beta_thermal_toroidal_profile483_ 8.11738135528846522e-02 +Beta_toroidal_profile_at_point_484_______________________________________ beta_thermal_toroidal_profile484_ 8.13020077726803320e-02 +Beta_toroidal_profile_at_point_485_______________________________________ beta_thermal_toroidal_profile485_ 8.14291902101492021e-02 +Beta_toroidal_profile_at_point_486_______________________________________ beta_thermal_toroidal_profile486_ 8.15553558818712249e-02 +Beta_toroidal_profile_at_point_487_______________________________________ beta_thermal_toroidal_profile487_ 8.16804998246378894e-02 +Beta_toroidal_profile_at_point_488_______________________________________ beta_thermal_toroidal_profile488_ 8.18046170956465979e-02 +Beta_toroidal_profile_at_point_489_______________________________________ beta_thermal_toroidal_profile489_ 8.19277027726943441e-02 +Beta_toroidal_profile_at_point_490_______________________________________ beta_thermal_toroidal_profile490_ 8.20497519543723075e-02 +Beta_toroidal_profile_at_point_491_______________________________________ beta_thermal_toroidal_profile491_ 8.21707597602597956e-02 +Beta_toroidal_profile_at_point_492_______________________________________ beta_thermal_toroidal_profile492_ 8.22907213311189351e-02 +Beta_toroidal_profile_at_point_493_______________________________________ beta_thermal_toroidal_profile493_ 8.24096318290888502e-02 +Beta_toroidal_profile_at_point_494_______________________________________ beta_thermal_toroidal_profile494_ 8.25274864378807010e-02 +Beta_toroidal_profile_at_point_495_______________________________________ beta_thermal_toroidal_profile495_ 8.26442803629722084e-02 +Beta_toroidal_profile_at_point_496_______________________________________ beta_thermal_toroidal_profile496_ 8.27600088318022897e-02 +Beta_toroidal_profile_at_point_497_______________________________________ beta_thermal_toroidal_profile497_ 8.28746670939663199e-02 +Beta_toroidal_profile_at_point_498_______________________________________ beta_thermal_toroidal_profile498_ 8.29882504214107669e-02 +Beta_toroidal_profile_at_point_499_______________________________________ beta_thermal_toroidal_profile499_ 8.31007541086285634e-02 +Beta_toroidal_profile_at_point_500_______________________________________ beta_thermal_toroidal_profile500_ 8.32121734728541729e-02 +Beta_toroidal_profile_at_point_501_______________________________________ beta_thermal_toroidal_profile501_ 8.33230860543128782e-02 +Beta_toroidal_profile_at_point_502_______________________________________ beta_thermal_toroidal_profile502_ 8.34334895280795102e-02 +Beta_toroidal_profile_at_point_503_______________________________________ beta_thermal_toroidal_profile503_ 8.35427978293013379e-02 +Beta_toroidal_profile_at_point_504_______________________________________ beta_thermal_toroidal_profile504_ 8.36510063415712019e-02 +Beta_toroidal_profile_at_point_505_______________________________________ beta_thermal_toroidal_profile505_ 8.37581104720443309e-02 +Beta_toroidal_profile_at_point_506_______________________________________ beta_thermal_toroidal_profile506_ 8.38641056516341715e-02 +Beta_toroidal_profile_at_point_507_______________________________________ beta_thermal_toroidal_profile507_ 8.39689873352077731e-02 +Beta_toroidal_profile_at_point_508_______________________________________ beta_thermal_toroidal_profile508_ 8.40727510017819507e-02 +Beta_toroidal_profile_at_point_509_______________________________________ beta_thermal_toroidal_profile509_ 8.41753921547189615e-02 +Beta_toroidal_profile_at_point_510_______________________________________ beta_thermal_toroidal_profile510_ 8.42769063219225151e-02 +Beta_toroidal_profile_at_point_511_______________________________________ beta_thermal_toroidal_profile511_ 8.43772890560337413e-02 +Beta_toroidal_profile_at_point_512_______________________________________ beta_thermal_toroidal_profile512_ 8.44765359346272421e-02 +Beta_toroidal_profile_at_point_513_______________________________________ beta_thermal_toroidal_profile513_ 8.45746425604072954e-02 +Beta_toroidal_profile_at_point_514_______________________________________ beta_thermal_toroidal_profile514_ 8.46716045614036295e-02 +Beta_toroidal_profile_at_point_515_______________________________________ beta_thermal_toroidal_profile515_ 8.47674175911682232e-02 +Beta_toroidal_profile_at_point_516_______________________________________ beta_thermal_toroidal_profile516_ 8.48620773289708585e-02 +Beta_toroidal_profile_at_point_517_______________________________________ beta_thermal_toroidal_profile517_ 8.49555794799958380e-02 +Beta_toroidal_profile_at_point_518_______________________________________ beta_thermal_toroidal_profile518_ 8.50479197755380917e-02 +Beta_toroidal_profile_at_point_519_______________________________________ beta_thermal_toroidal_profile519_ 8.51390939731996171e-02 +Beta_toroidal_profile_at_point_520_______________________________________ beta_thermal_toroidal_profile520_ 8.52290978570856700e-02 +Beta_toroidal_profile_at_point_521_______________________________________ beta_thermal_toroidal_profile521_ 8.53179272380012454e-02 +Beta_toroidal_profile_at_point_522_______________________________________ beta_thermal_toroidal_profile522_ 8.54055779536475046e-02 +Beta_toroidal_profile_at_point_523_______________________________________ beta_thermal_toroidal_profile523_ 8.54920458688181867e-02 +Beta_toroidal_profile_at_point_524_______________________________________ beta_thermal_toroidal_profile524_ 8.55773268755957717e-02 +Beta_toroidal_profile_at_point_525_______________________________________ beta_thermal_toroidal_profile525_ 8.56614168935485726e-02 +Beta_toroidal_profile_at_point_526_______________________________________ beta_thermal_toroidal_profile526_ 8.57443118699264956e-02 +Beta_toroidal_profile_at_point_527_______________________________________ beta_thermal_toroidal_profile527_ 8.58260077798577714e-02 +Beta_toroidal_profile_at_point_528_______________________________________ beta_thermal_toroidal_profile528_ 8.59065006265455622e-02 +Beta_toroidal_profile_at_point_529_______________________________________ beta_thermal_toroidal_profile529_ 8.59857864414643736e-02 +Beta_toroidal_profile_at_point_530_______________________________________ beta_thermal_toroidal_profile530_ 8.60638612845563561e-02 +Beta_toroidal_profile_at_point_531_______________________________________ beta_thermal_toroidal_profile531_ 8.61407212444277592e-02 +Beta_toroidal_profile_at_point_532_______________________________________ beta_thermal_toroidal_profile532_ 8.62163624385456351e-02 +Beta_toroidal_profile_at_point_533_______________________________________ beta_thermal_toroidal_profile533_ 8.62907810134340980e-02 +Beta_toroidal_profile_at_point_534_______________________________________ beta_thermal_toroidal_profile534_ 8.63639731448705844e-02 +Beta_toroidal_profile_at_point_535_______________________________________ beta_thermal_toroidal_profile535_ 8.64359350380827091e-02 +Beta_toroidal_profile_at_point_536_______________________________________ beta_thermal_toroidal_profile536_ 8.65066629279441640e-02 +Beta_toroidal_profile_at_point_537_______________________________________ beta_thermal_toroidal_profile537_ 8.65761530791712558e-02 +Beta_toroidal_profile_at_point_538_______________________________________ beta_thermal_toroidal_profile538_ 8.66444017865194427e-02 +Beta_toroidal_profile_at_point_539_______________________________________ beta_thermal_toroidal_profile539_ 8.67114053749791780e-02 +Beta_toroidal_profile_at_point_540_______________________________________ beta_thermal_toroidal_profile540_ 8.67771601999725445e-02 +Beta_toroidal_profile_at_point_541_______________________________________ beta_thermal_toroidal_profile541_ 8.68416626475492642e-02 +Beta_toroidal_profile_at_point_542_______________________________________ beta_thermal_toroidal_profile542_ 8.69049091345829583e-02 +Beta_toroidal_profile_at_point_543_______________________________________ beta_thermal_toroidal_profile543_ 8.69668961089674064e-02 +Beta_toroidal_profile_at_point_544_______________________________________ beta_thermal_toroidal_profile544_ 8.70276200498122376e-02 +Beta_toroidal_profile_at_point_545_______________________________________ beta_thermal_toroidal_profile545_ 8.70870774676394954e-02 +Beta_toroidal_profile_at_point_546_______________________________________ beta_thermal_toroidal_profile546_ 8.71452649045790367e-02 +Beta_toroidal_profile_at_point_547_______________________________________ beta_thermal_toroidal_profile547_ 8.72021789345649445e-02 +Beta_toroidal_profile_at_point_548_______________________________________ beta_thermal_toroidal_profile548_ 8.72578161635311211e-02 +Beta_toroidal_profile_at_point_549_______________________________________ beta_thermal_toroidal_profile549_ 8.73121732296071179e-02 +Beta_toroidal_profile_at_point_550_______________________________________ beta_thermal_toroidal_profile550_ 8.73652468033138951e-02 +Beta_toroidal_profile_at_point_551_______________________________________ beta_thermal_toroidal_profile551_ 8.74170335877594989e-02 +Beta_toroidal_profile_at_point_552_______________________________________ beta_thermal_toroidal_profile552_ 8.74675303188345160e-02 +Beta_toroidal_profile_at_point_553_______________________________________ beta_thermal_toroidal_profile553_ 8.75167337654076810e-02 +Beta_toroidal_profile_at_point_554_______________________________________ beta_thermal_toroidal_profile554_ 8.75646407295212759e-02 +Beta_toroidal_profile_at_point_555_______________________________________ beta_thermal_toroidal_profile555_ 8.76112480465865151e-02 +Beta_toroidal_profile_at_point_556_______________________________________ beta_thermal_toroidal_profile556_ 8.76565525855786121e-02 +Beta_toroidal_profile_at_point_557_______________________________________ beta_thermal_toroidal_profile557_ 8.77005512492320671e-02 +Beta_toroidal_profile_at_point_558_______________________________________ beta_thermal_toroidal_profile558_ 8.77432409742358033e-02 +Beta_toroidal_profile_at_point_559_______________________________________ beta_thermal_toroidal_profile559_ 8.77846187314279547e-02 +Beta_toroidal_profile_at_point_560_______________________________________ beta_thermal_toroidal_profile560_ 8.78246815259907804e-02 +Beta_toroidal_profile_at_point_561_______________________________________ beta_thermal_toroidal_profile561_ 8.78634263976453972e-02 +Beta_toroidal_profile_at_point_562_______________________________________ beta_thermal_toroidal_profile562_ 8.79008504208465408e-02 +Beta_toroidal_profile_at_point_563_______________________________________ beta_thermal_toroidal_profile563_ 8.79369507049769655e-02 +Beta_toroidal_profile_at_point_564_______________________________________ beta_thermal_toroidal_profile564_ 8.79717243945419836e-02 +Beta_toroidal_profile_at_point_565_______________________________________ beta_thermal_toroidal_profile565_ 8.80051686693635038e-02 +Beta_toroidal_profile_at_point_566_______________________________________ beta_thermal_toroidal_profile566_ 8.80372807447745709e-02 +Beta_toroidal_profile_at_point_567_______________________________________ beta_thermal_toroidal_profile567_ 8.80680578718130852e-02 +Beta_toroidal_profile_at_point_568_______________________________________ beta_thermal_toroidal_profile568_ 8.80974973374160641e-02 +Beta_toroidal_profile_at_point_569_______________________________________ beta_thermal_toroidal_profile569_ 8.81255964646130568e-02 +Beta_toroidal_profile_at_point_570_______________________________________ beta_thermal_toroidal_profile570_ 8.81523526127199614e-02 +Beta_toroidal_profile_at_point_571_______________________________________ beta_thermal_toroidal_profile571_ 8.81777631775326476e-02 +Beta_toroidal_profile_at_point_572_______________________________________ beta_thermal_toroidal_profile572_ 8.82018255915201915e-02 +Beta_toroidal_profile_at_point_573_______________________________________ beta_thermal_toroidal_profile573_ 8.82245373240179848e-02 +Beta_toroidal_profile_at_point_574_______________________________________ beta_thermal_toroidal_profile574_ 8.82458958814212741e-02 +Beta_toroidal_profile_at_point_575_______________________________________ beta_thermal_toroidal_profile575_ 8.82658988073773965e-02 +Beta_toroidal_profile_at_point_576_______________________________________ beta_thermal_toroidal_profile576_ 8.82845436829789998e-02 +Beta_toroidal_profile_at_point_577_______________________________________ beta_thermal_toroidal_profile577_ 8.83018281269566940e-02 +Beta_toroidal_profile_at_point_578_______________________________________ beta_thermal_toroidal_profile578_ 8.83177497958711477e-02 +Beta_toroidal_profile_at_point_579_______________________________________ beta_thermal_toroidal_profile579_ 8.83323063843055589e-02 +Beta_toroidal_profile_at_point_580_______________________________________ beta_thermal_toroidal_profile580_ 8.83454956250578072e-02 +Beta_toroidal_profile_at_point_581_______________________________________ beta_thermal_toroidal_profile581_ 8.83573152893321612e-02 +Beta_toroidal_profile_at_point_582_______________________________________ beta_thermal_toroidal_profile582_ 8.83677631869313196e-02 +Beta_toroidal_profile_at_point_583_______________________________________ beta_thermal_toroidal_profile583_ 8.83768371664476471e-02 +Beta_toroidal_profile_at_point_584_______________________________________ beta_thermal_toroidal_profile584_ 8.83845351154547987e-02 +Beta_toroidal_profile_at_point_585_______________________________________ beta_thermal_toroidal_profile585_ 8.83908549606988447e-02 +Beta_toroidal_profile_at_point_586_______________________________________ beta_thermal_toroidal_profile586_ 8.83957946682891738e-02 +Beta_toroidal_profile_at_point_587_______________________________________ beta_thermal_toroidal_profile587_ 8.83993522438893675e-02 +Beta_toroidal_profile_at_point_588_______________________________________ beta_thermal_toroidal_profile588_ 8.84015257329078125e-02 +Beta_toroidal_profile_at_point_589_______________________________________ beta_thermal_toroidal_profile589_ 8.84023132206880752e-02 +Beta_toroidal_profile_at_point_590_______________________________________ beta_thermal_toroidal_profile590_ 8.84017128326990975e-02 +Beta_toroidal_profile_at_point_591_______________________________________ beta_thermal_toroidal_profile591_ 8.83997227347251280e-02 +Beta_toroidal_profile_at_point_592_______________________________________ beta_thermal_toroidal_profile592_ 8.83963411330555143e-02 +Beta_toroidal_profile_at_point_593_______________________________________ beta_thermal_toroidal_profile593_ 8.83915662746743575e-02 +Beta_toroidal_profile_at_point_594_______________________________________ beta_thermal_toroidal_profile594_ 8.83853964474497489e-02 +Beta_toroidal_profile_at_point_595_______________________________________ beta_thermal_toroidal_profile595_ 8.83778299803226891e-02 +Beta_toroidal_profile_at_point_596_______________________________________ beta_thermal_toroidal_profile596_ 8.83688652434963251e-02 +Beta_toroidal_profile_at_point_597_______________________________________ beta_thermal_toroidal_profile597_ 8.83585006486244384e-02 +Beta_toroidal_profile_at_point_598_______________________________________ beta_thermal_toroidal_profile598_ 8.83467346489996835e-02 +Beta_toroidal_profile_at_point_599_______________________________________ beta_thermal_toroidal_profile599_ 8.83335657397419927e-02 +Beta_toroidal_profile_at_point_600_______________________________________ beta_thermal_toroidal_profile600_ 8.83189924579864533e-02 +Beta_toroidal_profile_at_point_601_______________________________________ beta_thermal_toroidal_profile601_ 8.83030133830708941e-02 +Beta_toroidal_profile_at_point_602_______________________________________ beta_thermal_toroidal_profile602_ 8.82856271367232770e-02 +Beta_toroidal_profile_at_point_603_______________________________________ beta_thermal_toroidal_profile603_ 8.82668323832492413e-02 +Beta_toroidal_profile_at_point_604_______________________________________ beta_thermal_toroidal_profile604_ 8.82466278297185380e-02 +Beta_toroidal_profile_at_point_605_______________________________________ beta_thermal_toroidal_profile605_ 8.82250122261520470e-02 +Beta_toroidal_profile_at_point_606_______________________________________ beta_thermal_toroidal_profile606_ 8.82019843657079056e-02 +Beta_toroidal_profile_at_point_607_______________________________________ beta_thermal_toroidal_profile607_ 8.81775430848679292e-02 +Beta_toroidal_profile_at_point_608_______________________________________ beta_thermal_toroidal_profile608_ 8.81516872636233240e-02 +Beta_toroidal_profile_at_point_609_______________________________________ beta_thermal_toroidal_profile609_ 8.81244158256600935e-02 +Beta_toroidal_profile_at_point_610_______________________________________ beta_thermal_toroidal_profile610_ 8.80957277385447657e-02 +Beta_toroidal_profile_at_point_611_______________________________________ beta_thermal_toroidal_profile611_ 8.80656220139090506e-02 +Beta_toroidal_profile_at_point_612_______________________________________ beta_thermal_toroidal_profile612_ 8.80340977076347203e-02 +Beta_toroidal_profile_at_point_613_______________________________________ beta_thermal_toroidal_profile613_ 8.80011539200382664e-02 +Beta_toroidal_profile_at_point_614_______________________________________ beta_thermal_toroidal_profile614_ 8.79667897960546008e-02 +Beta_toroidal_profile_at_point_615_______________________________________ beta_thermal_toroidal_profile615_ 8.79310045254212691e-02 +Beta_toroidal_profile_at_point_616_______________________________________ beta_thermal_toroidal_profile616_ 8.78937973428621094e-02 +Beta_toroidal_profile_at_point_617_______________________________________ beta_thermal_toroidal_profile617_ 8.78551675282701200e-02 +Beta_toroidal_profile_at_point_618_______________________________________ beta_thermal_toroidal_profile618_ 8.78151144068908124e-02 +Beta_toroidal_profile_at_point_619_______________________________________ beta_thermal_toroidal_profile619_ 8.77736373495046629e-02 +Beta_toroidal_profile_at_point_620_______________________________________ beta_thermal_toroidal_profile620_ 8.77307357726094528e-02 +Beta_toroidal_profile_at_point_621_______________________________________ beta_thermal_toroidal_profile621_ 8.76864091386023309e-02 +Beta_toroidal_profile_at_point_622_______________________________________ beta_thermal_toroidal_profile622_ 8.76406569559616544e-02 +Beta_toroidal_profile_at_point_623_______________________________________ beta_thermal_toroidal_profile623_ 8.75934787794281494e-02 +Beta_toroidal_profile_at_point_624_______________________________________ beta_thermal_toroidal_profile624_ 8.75448742101859884e-02 +Beta_toroidal_profile_at_point_625_______________________________________ beta_thermal_toroidal_profile625_ 8.74948428960436175e-02 +Beta_toroidal_profile_at_point_626_______________________________________ beta_thermal_toroidal_profile626_ 8.74433845316142794e-02 +Beta_toroidal_profile_at_point_627_______________________________________ beta_thermal_toroidal_profile627_ 8.73904988584957160e-02 +Beta_toroidal_profile_at_point_628_______________________________________ beta_thermal_toroidal_profile628_ 8.73361856654500807e-02 +Beta_toroidal_profile_at_point_629_______________________________________ beta_thermal_toroidal_profile629_ 8.72804447885834056e-02 +Beta_toroidal_profile_at_point_630_______________________________________ beta_thermal_toroidal_profile630_ 8.72232761115243893e-02 +Beta_toroidal_profile_at_point_631_______________________________________ beta_thermal_toroidal_profile631_ 8.71646795656033646e-02 +Beta_toroidal_profile_at_point_632_______________________________________ beta_thermal_toroidal_profile632_ 8.71046551300303090e-02 +Beta_toroidal_profile_at_point_633_______________________________________ beta_thermal_toroidal_profile633_ 8.70432028320730772e-02 +Beta_toroidal_profile_at_point_634_______________________________________ beta_thermal_toroidal_profile634_ 8.69803227472348145e-02 +Beta_toroidal_profile_at_point_635_______________________________________ beta_thermal_toroidal_profile635_ 8.69160149994312459e-02 +Beta_toroidal_profile_at_point_636_______________________________________ beta_thermal_toroidal_profile636_ 8.68502797611677840e-02 +Beta_toroidal_profile_at_point_637_______________________________________ beta_thermal_toroidal_profile637_ 8.67831172537156248e-02 +Beta_toroidal_profile_at_point_638_______________________________________ beta_thermal_toroidal_profile638_ 8.67145277472881615e-02 +Beta_toroidal_profile_at_point_639_______________________________________ beta_thermal_toroidal_profile639_ 8.66445115612166639e-02 +Beta_toroidal_profile_at_point_640_______________________________________ beta_thermal_toroidal_profile640_ 8.65730690641257211e-02 +Beta_toroidal_profile_at_point_641_______________________________________ beta_thermal_toroidal_profile641_ 8.65002006741081436e-02 +Beta_toroidal_profile_at_point_642_______________________________________ beta_thermal_toroidal_profile642_ 8.64259068588996426e-02 +Beta_toroidal_profile_at_point_643_______________________________________ beta_thermal_toroidal_profile643_ 8.63501881360529688e-02 +Beta_toroidal_profile_at_point_644_______________________________________ beta_thermal_toroidal_profile644_ 8.62730450731119952e-02 +Beta_toroidal_profile_at_point_645_______________________________________ beta_thermal_toroidal_profile645_ 8.61944782877847315e-02 +Beta_toroidal_profile_at_point_646_______________________________________ beta_thermal_toroidal_profile646_ 8.61144884481167827e-02 +Beta_toroidal_profile_at_point_647_______________________________________ beta_thermal_toroidal_profile647_ 8.60330762726637943e-02 +Beta_toroidal_profile_at_point_648_______________________________________ beta_thermal_toroidal_profile648_ 8.59502425306635925e-02 +Beta_toroidal_profile_at_point_649_______________________________________ beta_thermal_toroidal_profile649_ 8.58659880422083382e-02 +Beta_toroidal_profile_at_point_650_______________________________________ beta_thermal_toroidal_profile650_ 8.57803136784155706e-02 +Beta_toroidal_profile_at_point_651_______________________________________ beta_thermal_toroidal_profile651_ 8.56932203615995425e-02 +Beta_toroidal_profile_at_point_652_______________________________________ beta_thermal_toroidal_profile652_ 8.56047090654416948e-02 +Beta_toroidal_profile_at_point_653_______________________________________ beta_thermal_toroidal_profile653_ 8.55147808151607292e-02 +Beta_toroidal_profile_at_point_654_______________________________________ beta_thermal_toroidal_profile654_ 8.54234366876825413e-02 +Beta_toroidal_profile_at_point_655_______________________________________ beta_thermal_toroidal_profile655_ 8.53306778118095854e-02 +Beta_toroidal_profile_at_point_656_______________________________________ beta_thermal_toroidal_profile656_ 8.52365053683895868e-02 +Beta_toroidal_profile_at_point_657_______________________________________ beta_thermal_toroidal_profile657_ 8.51409205904842120e-02 +Beta_toroidal_profile_at_point_658_______________________________________ beta_thermal_toroidal_profile658_ 8.50439247635371570e-02 +Beta_toroidal_profile_at_point_659_______________________________________ beta_thermal_toroidal_profile659_ 8.49455192255415409e-02 +Beta_toroidal_profile_at_point_660_______________________________________ beta_thermal_toroidal_profile660_ 8.48457053672073691e-02 +Beta_toroidal_profile_at_point_661_______________________________________ beta_thermal_toroidal_profile661_ 8.47444846321282613e-02 +Beta_toroidal_profile_at_point_662_______________________________________ beta_thermal_toroidal_profile662_ 8.46418585169475823e-02 +Beta_toroidal_profile_at_point_663_______________________________________ beta_thermal_toroidal_profile663_ 8.45378285715245315e-02 +Beta_toroidal_profile_at_point_664_______________________________________ beta_thermal_toroidal_profile664_ 8.44323963990993853e-02 +Beta_toroidal_profile_at_point_665_______________________________________ beta_thermal_toroidal_profile665_ 8.43255636564588101e-02 +Beta_toroidal_profile_at_point_666_______________________________________ beta_thermal_toroidal_profile666_ 8.42173320540999526e-02 +Beta_toroidal_profile_at_point_667_______________________________________ beta_thermal_toroidal_profile667_ 8.41077033563950582e-02 +Beta_toroidal_profile_at_point_668_______________________________________ beta_thermal_toroidal_profile668_ 8.39966793817546326e-02 +Beta_toroidal_profile_at_point_669_______________________________________ beta_thermal_toroidal_profile669_ 8.38842620027909630e-02 +Beta_toroidal_profile_at_point_670_______________________________________ beta_thermal_toroidal_profile670_ 8.37704531464807250e-02 +Beta_toroidal_profile_at_point_671_______________________________________ beta_thermal_toroidal_profile671_ 8.36552547943273661e-02 +Beta_toroidal_profile_at_point_672_______________________________________ beta_thermal_toroidal_profile672_ 8.35386689825227818e-02 +Beta_toroidal_profile_at_point_673_______________________________________ beta_thermal_toroidal_profile673_ 8.34206978021088397e-02 +Beta_toroidal_profile_at_point_674_______________________________________ beta_thermal_toroidal_profile674_ 8.33013433991380836e-02 +Beta_toroidal_profile_at_point_675_______________________________________ beta_thermal_toroidal_profile675_ 8.31806079748345500e-02 +Beta_toroidal_profile_at_point_676_______________________________________ beta_thermal_toroidal_profile676_ 8.30584937857533345e-02 +Beta_toroidal_profile_at_point_677_______________________________________ beta_thermal_toroidal_profile677_ 8.29350031439403806e-02 +Beta_toroidal_profile_at_point_678_______________________________________ beta_thermal_toroidal_profile678_ 8.28101384170914501e-02 +Beta_toroidal_profile_at_point_679_______________________________________ beta_thermal_toroidal_profile679_ 8.26839020287106485e-02 +Beta_toroidal_profile_at_point_680_______________________________________ beta_thermal_toroidal_profile680_ 8.25562964582687159e-02 +Beta_toroidal_profile_at_point_681_______________________________________ beta_thermal_toroidal_profile681_ 8.24273242413606361e-02 +Beta_toroidal_profile_at_point_682_______________________________________ beta_thermal_toroidal_profile682_ 8.22969879698626644e-02 +Beta_toroidal_profile_at_point_683_______________________________________ beta_thermal_toroidal_profile683_ 8.21652902920891881e-02 +Beta_toroidal_profile_at_point_684_______________________________________ beta_thermal_toroidal_profile684_ 8.20322339129490319e-02 +Beta_toroidal_profile_at_point_685_______________________________________ beta_thermal_toroidal_profile685_ 8.18978215941011112e-02 +Beta_toroidal_profile_at_point_686_______________________________________ beta_thermal_toroidal_profile686_ 8.17620561541097940e-02 +Beta_toroidal_profile_at_point_687_______________________________________ beta_thermal_toroidal_profile687_ 8.16249404685997909e-02 +Beta_toroidal_profile_at_point_688_______________________________________ beta_thermal_toroidal_profile688_ 8.14864774704104344e-02 +Beta_toroidal_profile_at_point_689_______________________________________ beta_thermal_toroidal_profile689_ 8.13466701497496947e-02 +Beta_toroidal_profile_at_point_690_______________________________________ beta_thermal_toroidal_profile690_ 8.12055215543476400e-02 +Beta_toroidal_profile_at_point_691_______________________________________ beta_thermal_toroidal_profile691_ 8.10630347896091757e-02 +Beta_toroidal_profile_at_point_692_______________________________________ beta_thermal_toroidal_profile692_ 8.09192130187668113e-02 +Beta_toroidal_profile_at_point_693_______________________________________ beta_thermal_toroidal_profile693_ 8.07740594630325659e-02 +Beta_toroidal_profile_at_point_694_______________________________________ beta_thermal_toroidal_profile694_ 8.06275774017495839e-02 +Beta_toroidal_profile_at_point_695_______________________________________ beta_thermal_toroidal_profile695_ 8.04797701725431941e-02 +Beta_toroidal_profile_at_point_696_______________________________________ beta_thermal_toroidal_profile696_ 8.03306411714716784e-02 +Beta_toroidal_profile_at_point_697_______________________________________ beta_thermal_toroidal_profile697_ 8.01801938531762071e-02 +Beta_toroidal_profile_at_point_698_______________________________________ beta_thermal_toroidal_profile698_ 8.00284317310308579e-02 +Beta_toroidal_profile_at_point_699_______________________________________ beta_thermal_toroidal_profile699_ 7.98753583772916359e-02 +Beta_toroidal_profile_at_point_700_______________________________________ beta_thermal_toroidal_profile700_ 7.97209774232454926e-02 +Beta_toroidal_profile_at_point_701_______________________________________ beta_thermal_toroidal_profile701_ 7.95652925593585553e-02 +Beta_toroidal_profile_at_point_702_______________________________________ beta_thermal_toroidal_profile702_ 7.94083075354239387e-02 +Beta_toroidal_profile_at_point_703_______________________________________ beta_thermal_toroidal_profile703_ 7.92500261607093637e-02 +Beta_toroidal_profile_at_point_704_______________________________________ beta_thermal_toroidal_profile704_ 7.90904523041042057e-02 +Beta_toroidal_profile_at_point_705_______________________________________ beta_thermal_toroidal_profile705_ 7.89295898942659058e-02 +Beta_toroidal_profile_at_point_706_______________________________________ beta_thermal_toroidal_profile706_ 7.87674429197661452e-02 +Beta_toroidal_profile_at_point_707_______________________________________ beta_thermal_toroidal_profile707_ 7.86040154292365623e-02 +Beta_toroidal_profile_at_point_708_______________________________________ beta_thermal_toroidal_profile708_ 7.84393115315140249e-02 +Beta_toroidal_profile_at_point_709_______________________________________ beta_thermal_toroidal_profile709_ 7.82733353957854178e-02 +Beta_toroidal_profile_at_point_710_______________________________________ beta_thermal_toroidal_profile710_ 7.81060912517320682e-02 +Beta_toroidal_profile_at_point_711_______________________________________ beta_thermal_toroidal_profile711_ 7.79375833896737980e-02 +Beta_toroidal_profile_at_point_712_______________________________________ beta_thermal_toroidal_profile712_ 7.77678161607123775e-02 +Beta_toroidal_profile_at_point_713_______________________________________ beta_thermal_toroidal_profile713_ 7.75967939768746895e-02 +Beta_toroidal_profile_at_point_714_______________________________________ beta_thermal_toroidal_profile714_ 7.74245213112557396e-02 +Beta_toroidal_profile_at_point_715_______________________________________ beta_thermal_toroidal_profile715_ 7.72510026981605841e-02 +Beta_toroidal_profile_at_point_716_______________________________________ beta_thermal_toroidal_profile716_ 7.70762427332466610e-02 +Beta_toroidal_profile_at_point_717_______________________________________ beta_thermal_toroidal_profile717_ 7.69002460736653015e-02 +Beta_toroidal_profile_at_point_718_______________________________________ beta_thermal_toroidal_profile718_ 7.67230174382028118e-02 +Beta_toroidal_profile_at_point_719_______________________________________ beta_thermal_toroidal_profile719_ 7.65445616074213742e-02 +Beta_toroidal_profile_at_point_720_______________________________________ beta_thermal_toroidal_profile720_ 7.63648834237994761e-02 +Beta_toroidal_profile_at_point_721_______________________________________ beta_thermal_toroidal_profile721_ 7.61839877918721459e-02 +Beta_toroidal_profile_at_point_722_______________________________________ beta_thermal_toroidal_profile722_ 7.60018796783705486e-02 +Beta_toroidal_profile_at_point_723_______________________________________ beta_thermal_toroidal_profile723_ 7.58185641123615278e-02 +Beta_toroidal_profile_at_point_724_______________________________________ beta_thermal_toroidal_profile724_ 7.56340461853865220e-02 +Beta_toroidal_profile_at_point_725_______________________________________ beta_thermal_toroidal_profile725_ 7.54483310516006200e-02 +Beta_toroidal_profile_at_point_726_______________________________________ beta_thermal_toroidal_profile726_ 7.52614239279106728e-02 +Beta_toroidal_profile_at_point_727_______________________________________ beta_thermal_toroidal_profile727_ 7.50733300941136689e-02 +Beta_toroidal_profile_at_point_728_______________________________________ beta_thermal_toroidal_profile728_ 7.48840548930344019e-02 +Beta_toroidal_profile_at_point_729_______________________________________ beta_thermal_toroidal_profile729_ 7.46936037306633466e-02 +Beta_toroidal_profile_at_point_730_______________________________________ beta_thermal_toroidal_profile730_ 7.45019820762936741e-02 +Beta_toroidal_profile_at_point_731_______________________________________ beta_thermal_toroidal_profile731_ 7.43091954626583368e-02 +Beta_toroidal_profile_at_point_732_______________________________________ beta_thermal_toroidal_profile732_ 7.41152494860668754e-02 +Beta_toroidal_profile_at_point_733_______________________________________ beta_thermal_toroidal_profile733_ 7.39201498065422125e-02 +Beta_toroidal_profile_at_point_734_______________________________________ beta_thermal_toroidal_profile734_ 7.37239021479565992e-02 +Beta_toroidal_profile_at_point_735_______________________________________ beta_thermal_toroidal_profile735_ 7.35265122981680758e-02 +Beta_toroidal_profile_at_point_736_______________________________________ beta_thermal_toroidal_profile736_ 7.33279861091562651e-02 +Beta_toroidal_profile_at_point_737_______________________________________ beta_thermal_toroidal_profile737_ 7.31283294971581260e-02 +Beta_toroidal_profile_at_point_738_______________________________________ beta_thermal_toroidal_profile738_ 7.29275484428036219e-02 +Beta_toroidal_profile_at_point_739_______________________________________ beta_thermal_toroidal_profile739_ 7.27256489912514320e-02 +Beta_toroidal_profile_at_point_740_______________________________________ beta_thermal_toroidal_profile740_ 7.25226372523237045e-02 +Beta_toroidal_profile_at_point_741_______________________________________ beta_thermal_toroidal_profile741_ 7.23185194006418786e-02 +Beta_toroidal_profile_at_point_742_______________________________________ beta_thermal_toroidal_profile742_ 7.21133016757614376e-02 +Beta_toroidal_profile_at_point_743_______________________________________ beta_thermal_toroidal_profile743_ 7.19069903823072315e-02 +Beta_toroidal_profile_at_point_744_______________________________________ beta_thermal_toroidal_profile744_ 7.16995918901084384e-02 +Beta_toroidal_profile_at_point_745_______________________________________ beta_thermal_toroidal_profile745_ 7.14911126343335118e-02 +Beta_toroidal_profile_at_point_746_______________________________________ beta_thermal_toroidal_profile746_ 7.12815591156250317e-02 +Beta_toroidal_profile_at_point_747_______________________________________ beta_thermal_toroidal_profile747_ 7.10709379002351371e-02 +Beta_toroidal_profile_at_point_748_______________________________________ beta_thermal_toroidal_profile748_ 7.08592556201601415e-02 +Beta_toroidal_profile_at_point_749_______________________________________ beta_thermal_toroidal_profile749_ 7.06465189732758264e-02 +Beta_toroidal_profile_at_point_750_______________________________________ beta_thermal_toroidal_profile750_ 7.04327347234724732e-02 +Beta_toroidal_profile_at_point_751_______________________________________ beta_thermal_toroidal_profile751_ 7.02179097007905595e-02 +Beta_toroidal_profile_at_point_752_______________________________________ beta_thermal_toroidal_profile752_ 7.00020508015556098e-02 +Beta_toroidal_profile_at_point_753_______________________________________ beta_thermal_toroidal_profile753_ 6.97851649885144198e-02 +Beta_toroidal_profile_at_point_754_______________________________________ beta_thermal_toroidal_profile754_ 6.95672592909702681e-02 +Beta_toroidal_profile_at_point_755_______________________________________ beta_thermal_toroidal_profile755_ 6.93483408049194588e-02 +Beta_toroidal_profile_at_point_756_______________________________________ beta_thermal_toroidal_profile756_ 6.91284166931872696e-02 +Beta_toroidal_profile_at_point_757_______________________________________ beta_thermal_toroidal_profile757_ 6.89074941855647161e-02 +Beta_toroidal_profile_at_point_758_______________________________________ beta_thermal_toroidal_profile758_ 6.86855805789453044e-02 +Beta_toroidal_profile_at_point_759_______________________________________ beta_thermal_toroidal_profile759_ 6.84626832374624766e-02 +Beta_toroidal_profile_at_point_760_______________________________________ beta_thermal_toroidal_profile760_ 6.82388095926270699e-02 +Beta_toroidal_profile_at_point_761_______________________________________ beta_thermal_toroidal_profile761_ 6.80139671434655396e-02 +Beta_toroidal_profile_at_point_762_______________________________________ beta_thermal_toroidal_profile762_ 6.77881634566584179e-02 +Beta_toroidal_profile_at_point_763_______________________________________ beta_thermal_toroidal_profile763_ 6.75614061666794247e-02 +Beta_toroidal_profile_at_point_764_______________________________________ beta_thermal_toroidal_profile764_ 6.73337029759350919e-02 +Beta_toroidal_profile_at_point_765_______________________________________ beta_thermal_toroidal_profile765_ 6.71050616549049156e-02 +Beta_toroidal_profile_at_point_766_______________________________________ beta_thermal_toroidal_profile766_ 6.68754900422822013e-02 +Beta_toroidal_profile_at_point_767_______________________________________ beta_thermal_toroidal_profile767_ 6.66449960451156453e-02 +Beta_toroidal_profile_at_point_768_______________________________________ beta_thermal_toroidal_profile768_ 6.64135876389514990e-02 +Beta_toroidal_profile_at_point_769_______________________________________ beta_thermal_toroidal_profile769_ 6.61812728679768564e-02 +Beta_toroidal_profile_at_point_770_______________________________________ beta_thermal_toroidal_profile770_ 6.59480598451630401e-02 +Beta_toroidal_profile_at_point_771_______________________________________ beta_thermal_toroidal_profile771_ 6.57139567524109847e-02 +Beta_toroidal_profile_at_point_772_______________________________________ beta_thermal_toroidal_profile772_ 6.54789718406963289e-02 +Beta_toroidal_profile_at_point_773_______________________________________ beta_thermal_toroidal_profile773_ 6.52431134302165067e-02 +Beta_toroidal_profile_at_point_774_______________________________________ beta_thermal_toroidal_profile774_ 6.50063899105383508e-02 +Beta_toroidal_profile_at_point_775_______________________________________ beta_thermal_toroidal_profile775_ 6.47688097407469882e-02 +Beta_toroidal_profile_at_point_776_______________________________________ beta_thermal_toroidal_profile776_ 6.45303814495958444e-02 +Beta_toroidal_profile_at_point_777_______________________________________ beta_thermal_toroidal_profile777_ 6.42911136356579399e-02 +Beta_toroidal_profile_at_point_778_______________________________________ beta_thermal_toroidal_profile778_ 6.40510149674785728e-02 +Beta_toroidal_profile_at_point_779_______________________________________ beta_thermal_toroidal_profile779_ 6.38100941837292934e-02 +Beta_toroidal_profile_at_point_780_______________________________________ beta_thermal_toroidal_profile780_ 6.35683600933631271e-02 +Beta_toroidal_profile_at_point_781_______________________________________ beta_thermal_toroidal_profile781_ 6.33258215757719761e-02 +Beta_toroidal_profile_at_point_782_______________________________________ beta_thermal_toroidal_profile782_ 6.30824875809447849e-02 +Beta_toroidal_profile_at_point_783_______________________________________ beta_thermal_toroidal_profile783_ 6.28383671296280644e-02 +Beta_toroidal_profile_at_point_784_______________________________________ beta_thermal_toroidal_profile784_ 6.25934693134877762e-02 +Beta_toroidal_profile_at_point_785_______________________________________ beta_thermal_toroidal_profile785_ 6.23478032952735628e-02 +Beta_toroidal_profile_at_point_786_______________________________________ beta_thermal_toroidal_profile786_ 6.21013783089841981e-02 +Beta_toroidal_profile_at_point_787_______________________________________ beta_thermal_toroidal_profile787_ 6.18542036600358211e-02 +Beta_toroidal_profile_at_point_788_______________________________________ beta_thermal_toroidal_profile788_ 6.16062887254318972e-02 +Beta_toroidal_profile_at_point_789_______________________________________ beta_thermal_toroidal_profile789_ 6.13576429539354415e-02 +Beta_toroidal_profile_at_point_790_______________________________________ beta_thermal_toroidal_profile790_ 6.11082758662437955e-02 +Beta_toroidal_profile_at_point_791_______________________________________ beta_thermal_toroidal_profile791_ 6.08581970551656179e-02 +Beta_toroidal_profile_at_point_792_______________________________________ beta_thermal_toroidal_profile792_ 6.06074161858007401e-02 +Beta_toroidal_profile_at_point_793_______________________________________ beta_thermal_toroidal_profile793_ 6.03559429957222504e-02 +Beta_toroidal_profile_at_point_794_______________________________________ beta_thermal_toroidal_profile794_ 6.01037872951618798e-02 +Beta_toroidal_profile_at_point_795_______________________________________ beta_thermal_toroidal_profile795_ 5.98509589671980119e-02 +Beta_toroidal_profile_at_point_796_______________________________________ beta_thermal_toroidal_profile796_ 5.95974679679468697e-02 +Beta_toroidal_profile_at_point_797_______________________________________ beta_thermal_toroidal_profile797_ 5.93433243267566801e-02 +Beta_toroidal_profile_at_point_798_______________________________________ beta_thermal_toroidal_profile798_ 5.90885381464056822e-02 +Beta_toroidal_profile_at_point_799_______________________________________ beta_thermal_toroidal_profile799_ 5.88331196033029455e-02 +Beta_toroidal_profile_at_point_800_______________________________________ beta_thermal_toroidal_profile800_ 5.85770789476932965e-02 +Beta_toroidal_profile_at_point_801_______________________________________ beta_thermal_toroidal_profile801_ 5.83204265038658118e-02 +Beta_toroidal_profile_at_point_802_______________________________________ beta_thermal_toroidal_profile802_ 5.80631726703664391e-02 +Beta_toroidal_profile_at_point_803_______________________________________ beta_thermal_toroidal_profile803_ 5.78053279202144499e-02 +Beta_toroidal_profile_at_point_804_______________________________________ beta_thermal_toroidal_profile804_ 5.75469028011233175e-02 +Beta_toroidal_profile_at_point_805_______________________________________ beta_thermal_toroidal_profile805_ 5.72879079357261969e-02 +Beta_toroidal_profile_at_point_806_______________________________________ beta_thermal_toroidal_profile806_ 5.70283540218058591e-02 +Beta_toroidal_profile_at_point_807_______________________________________ beta_thermal_toroidal_profile807_ 5.67682518325295163e-02 +Beta_toroidal_profile_at_point_808_______________________________________ beta_thermal_toroidal_profile808_ 5.65076122166887559e-02 +Beta_toroidal_profile_at_point_809_______________________________________ beta_thermal_toroidal_profile809_ 5.62464460989445386e-02 +Beta_toroidal_profile_at_point_810_______________________________________ beta_thermal_toroidal_profile810_ 5.59847644800781155e-02 +Beta_toroidal_profile_at_point_811_______________________________________ beta_thermal_toroidal_profile811_ 5.57225784372470667e-02 +Beta_toroidal_profile_at_point_812_______________________________________ beta_thermal_toroidal_profile812_ 5.54598991242476885e-02 +Beta_toroidal_profile_at_point_813_______________________________________ beta_thermal_toroidal_profile813_ 5.51967377717833413e-02 +Beta_toroidal_profile_at_point_814_______________________________________ beta_thermal_toroidal_profile814_ 5.49331056877394863e-02 +Beta_toroidal_profile_at_point_815_______________________________________ beta_thermal_toroidal_profile815_ 5.46690142574650720e-02 +Beta_toroidal_profile_at_point_816_______________________________________ beta_thermal_toroidal_profile816_ 5.44044749440611430e-02 +Beta_toroidal_profile_at_point_817_______________________________________ beta_thermal_toroidal_profile817_ 5.41394992886765833e-02 +Beta_toroidal_profile_at_point_818_______________________________________ beta_thermal_toroidal_profile818_ 5.38740989108116644e-02 +Beta_toroidal_profile_at_point_819_______________________________________ beta_thermal_toroidal_profile819_ 5.36082855086289015e-02 +Beta_toroidal_profile_at_point_820_______________________________________ beta_thermal_toroidal_profile820_ 5.33420708592728596e-02 +Beta_toroidal_profile_at_point_821_______________________________________ beta_thermal_toroidal_profile821_ 5.30754668191976003e-02 +Beta_toroidal_profile_at_point_822_______________________________________ beta_thermal_toroidal_profile822_ 5.28084853245038288e-02 +Beta_toroidal_profile_at_point_823_______________________________________ beta_thermal_toroidal_profile823_ 5.25411383912847488e-02 +Beta_toroidal_profile_at_point_824_______________________________________ beta_thermal_toroidal_profile824_ 5.22734381159816255e-02 +Beta_toroidal_profile_at_point_825_______________________________________ beta_thermal_toroidal_profile825_ 5.20053966757494102e-02 +Beta_toroidal_profile_at_point_826_______________________________________ beta_thermal_toroidal_profile826_ 5.17370263288328344e-02 +Beta_toroidal_profile_at_point_827_______________________________________ beta_thermal_toroidal_profile827_ 5.14683394149531084e-02 +Beta_toroidal_profile_at_point_828_______________________________________ beta_thermal_toroidal_profile828_ 5.11993483557060605e-02 +Beta_toroidal_profile_at_point_829_______________________________________ beta_thermal_toroidal_profile829_ 5.09300656549719205e-02 +Beta_toroidal_profile_at_point_830_______________________________________ beta_thermal_toroidal_profile830_ 5.06605038993376278e-02 +Beta_toroidal_profile_at_point_831_______________________________________ beta_thermal_toroidal_profile831_ 5.03906757585312476e-02 +Beta_toroidal_profile_at_point_832_______________________________________ beta_thermal_toroidal_profile832_ 5.01205939858702099e-02 +Beta_toroidal_profile_at_point_833_______________________________________ beta_thermal_toroidal_profile833_ 4.98502714187230370e-02 +Beta_toroidal_profile_at_point_834_______________________________________ beta_thermal_toroidal_profile834_ 4.95797209789855878e-02 +Beta_toroidal_profile_at_point_835_______________________________________ beta_thermal_toroidal_profile835_ 4.93089556735721371e-02 +Beta_toroidal_profile_at_point_836_______________________________________ beta_thermal_toroidal_profile836_ 4.90379885949219219e-02 +Beta_toroidal_profile_at_point_837_______________________________________ beta_thermal_toroidal_profile837_ 4.87668329215223892e-02 +Beta_toroidal_profile_at_point_838_______________________________________ beta_thermal_toroidal_profile838_ 4.84955019184487648e-02 +Beta_toroidal_profile_at_point_839_______________________________________ beta_thermal_toroidal_profile839_ 4.82240089379215309e-02 +Beta_toroidal_profile_at_point_840_______________________________________ beta_thermal_toroidal_profile840_ 4.79523674198823191e-02 +Beta_toroidal_profile_at_point_841_______________________________________ beta_thermal_toroidal_profile841_ 4.76805908925886507e-02 +Beta_toroidal_profile_at_point_842_______________________________________ beta_thermal_toroidal_profile842_ 4.74086929732288886e-02 +Beta_toroidal_profile_at_point_843_______________________________________ beta_thermal_toroidal_profile843_ 4.71366873685578405e-02 +Beta_toroidal_profile_at_point_844_______________________________________ beta_thermal_toroidal_profile844_ 4.68645878755539480e-02 +Beta_toroidal_profile_at_point_845_______________________________________ beta_thermal_toroidal_profile845_ 4.65924083820992221e-02 +Beta_toroidal_profile_at_point_846_______________________________________ beta_thermal_toroidal_profile846_ 4.63201628676825766e-02 +Beta_toroidal_profile_at_point_847_______________________________________ beta_thermal_toroidal_profile847_ 4.60478654041278357e-02 +Beta_toroidal_profile_at_point_848_______________________________________ beta_thermal_toroidal_profile848_ 4.57755301563472286e-02 +Beta_toroidal_profile_at_point_849_______________________________________ beta_thermal_toroidal_profile849_ 4.55031713831219389e-02 +Beta_toroidal_profile_at_point_850_______________________________________ beta_thermal_toroidal_profile850_ 4.52308034379099652e-02 +Beta_toroidal_profile_at_point_851_______________________________________ beta_thermal_toroidal_profile851_ 4.49584407696838675e-02 +Beta_toroidal_profile_at_point_852_______________________________________ beta_thermal_toroidal_profile852_ 4.46860979237980807e-02 +Beta_toroidal_profile_at_point_853_______________________________________ beta_thermal_toroidal_profile853_ 4.44137895428889790e-02 +Beta_toroidal_profile_at_point_854_______________________________________ beta_thermal_toroidal_profile854_ 4.41415303678068735e-02 +Beta_toroidal_profile_at_point_855_______________________________________ beta_thermal_toroidal_profile855_ 4.38693352385838078e-02 +Beta_toroidal_profile_at_point_856_______________________________________ beta_thermal_toroidal_profile856_ 4.35972190954368455e-02 +Beta_toroidal_profile_at_point_857_______________________________________ beta_thermal_toroidal_profile857_ 4.33251969798093550e-02 +Beta_toroidal_profile_at_point_858_______________________________________ beta_thermal_toroidal_profile858_ 4.30532840354518193e-02 +Beta_toroidal_profile_at_point_859_______________________________________ beta_thermal_toroidal_profile859_ 4.27814955095441804e-02 +Beta_toroidal_profile_at_point_860_______________________________________ beta_thermal_toroidal_profile860_ 4.25098467538610747e-02 +Beta_toroidal_profile_at_point_861_______________________________________ beta_thermal_toroidal_profile861_ 4.22383532259826000e-02 +Beta_toroidal_profile_at_point_862_______________________________________ beta_thermal_toroidal_profile862_ 4.19670304905522401e-02 +Beta_toroidal_profile_at_point_863_______________________________________ beta_thermal_toroidal_profile863_ 4.16958942205844230e-02 +Beta_toroidal_profile_at_point_864_______________________________________ beta_thermal_toroidal_profile864_ 4.14249601988239402e-02 +Beta_toroidal_profile_at_point_865_______________________________________ beta_thermal_toroidal_profile865_ 4.11542443191596150e-02 +Beta_toroidal_profile_at_point_866_______________________________________ beta_thermal_toroidal_profile866_ 4.08837625880950420e-02 +Beta_toroidal_profile_at_point_867_______________________________________ beta_thermal_toroidal_profile867_ 4.06135311262787874e-02 +Beta_toroidal_profile_at_point_868_______________________________________ beta_thermal_toroidal_profile868_ 4.03435661700972739e-02 +Beta_toroidal_profile_at_point_869_______________________________________ beta_thermal_toroidal_profile869_ 4.00738840733331492e-02 +Beta_toroidal_profile_at_point_870_______________________________________ beta_thermal_toroidal_profile870_ 3.98045013088924454e-02 +Beta_toroidal_profile_at_point_871_______________________________________ beta_thermal_toroidal_profile871_ 3.95354344706038974e-02 +Beta_toroidal_profile_at_point_872_______________________________________ beta_thermal_toroidal_profile872_ 3.92667002750940602e-02 +Beta_toroidal_profile_at_point_873_______________________________________ beta_thermal_toroidal_profile873_ 3.89983155637419754e-02 +Beta_toroidal_profile_at_point_874_______________________________________ beta_thermal_toroidal_profile874_ 3.87302973047173177e-02 +Beta_toroidal_profile_at_point_875_______________________________________ beta_thermal_toroidal_profile875_ 3.84626625951065768e-02 +Beta_toroidal_profile_at_point_876_______________________________________ beta_thermal_toroidal_profile876_ 3.81954286631313172e-02 +Beta_toroidal_profile_at_point_877_______________________________________ beta_thermal_toroidal_profile877_ 3.79286128704637016e-02 +Beta_toroidal_profile_at_point_878_______________________________________ beta_thermal_toroidal_profile878_ 3.76622327146441671e-02 +Beta_toroidal_profile_at_point_879_______________________________________ beta_thermal_toroidal_profile879_ 3.73963058316066146e-02 +Beta_toroidal_profile_at_point_880_______________________________________ beta_thermal_toroidal_profile880_ 3.71308499983168741e-02 +Beta_toroidal_profile_at_point_881_______________________________________ beta_thermal_toroidal_profile881_ 3.68658831355304778e-02 +Beta_toroidal_profile_at_point_882_______________________________________ beta_thermal_toroidal_profile882_ 3.66014233106762982e-02 +Beta_toroidal_profile_at_point_883_______________________________________ beta_thermal_toroidal_profile883_ 3.63374887408726213e-02 +Beta_toroidal_profile_at_point_884_______________________________________ beta_thermal_toroidal_profile884_ 3.60740977960833584e-02 +Beta_toroidal_profile_at_point_885_______________________________________ beta_thermal_toroidal_profile885_ 3.58112690024217917e-02 +Beta_toroidal_profile_at_point_886_______________________________________ beta_thermal_toroidal_profile886_ 3.55490210456105571e-02 +Beta_toroidal_profile_at_point_887_______________________________________ beta_thermal_toroidal_profile887_ 3.52873727746060850e-02 +Beta_toroidal_profile_at_point_888_______________________________________ beta_thermal_toroidal_profile888_ 3.50263432053977627e-02 +Beta_toroidal_profile_at_point_889_______________________________________ beta_thermal_toroidal_profile889_ 3.47659515249911233e-02 +Beta_toroidal_profile_at_point_890_______________________________________ beta_thermal_toroidal_profile890_ 3.45062170955863501e-02 +Beta_toroidal_profile_at_point_891_______________________________________ beta_thermal_toroidal_profile891_ 3.42471594589633110e-02 +Beta_toroidal_profile_at_point_892_______________________________________ beta_thermal_toroidal_profile892_ 3.39887983410858130e-02 +Beta_toroidal_profile_at_point_893_______________________________________ beta_thermal_toroidal_profile893_ 3.37311536569377887e-02 +Beta_toroidal_profile_at_point_894_______________________________________ beta_thermal_toroidal_profile894_ 3.34742455156061824e-02 +Beta_toroidal_profile_at_point_895_______________________________________ beta_thermal_toroidal_profile895_ 3.32180942256252304e-02 +Beta_toroidal_profile_at_point_896_______________________________________ beta_thermal_toroidal_profile896_ 3.29627203005989425e-02 +Beta_toroidal_profile_at_point_897_______________________________________ beta_thermal_toroidal_profile897_ 3.27081444651188061e-02 +Beta_toroidal_profile_at_point_898_______________________________________ beta_thermal_toroidal_profile898_ 3.24543876609963214e-02 +Beta_toroidal_profile_at_point_899_______________________________________ beta_thermal_toroidal_profile899_ 3.22014710538300053e-02 +Beta_toroidal_profile_at_point_900_______________________________________ beta_thermal_toroidal_profile900_ 3.19494160399294638e-02 +Beta_toroidal_profile_at_point_901_______________________________________ beta_thermal_toroidal_profile901_ 3.16982442536196535e-02 +Beta_toroidal_profile_at_point_902_______________________________________ beta_thermal_toroidal_profile902_ 3.14479775749514912e-02 +Beta_toroidal_profile_at_point_903_______________________________________ beta_thermal_toroidal_profile903_ 3.11986381378458952e-02 +Beta_toroidal_profile_at_point_904_______________________________________ beta_thermal_toroidal_profile904_ 3.09502483387018336e-02 +Beta_toroidal_profile_at_point_905_______________________________________ beta_thermal_toroidal_profile905_ 3.07028308455002848e-02 +Beta_toroidal_profile_at_point_906_______________________________________ beta_thermal_toroidal_profile906_ 3.04564086074397694e-02 +Beta_toroidal_profile_at_point_907_______________________________________ beta_thermal_toroidal_profile907_ 3.02110048651414199e-02 +Beta_toroidal_profile_at_point_908_______________________________________ beta_thermal_toroidal_profile908_ 2.99666431614655365e-02 +Beta_toroidal_profile_at_point_909_______________________________________ beta_thermal_toroidal_profile909_ 2.97233473529842813e-02 +Beta_toroidal_profile_at_point_910_______________________________________ beta_thermal_toroidal_profile910_ 2.94811416221610126e-02 +Beta_toroidal_profile_at_point_911_______________________________________ beta_thermal_toroidal_profile911_ 2.92400504902889206e-02 +Beta_toroidal_profile_at_point_912_______________________________________ beta_thermal_toroidal_profile912_ 2.90000988312489917e-02 +Beta_toroidal_profile_at_point_913_______________________________________ beta_thermal_toroidal_profile913_ 2.87613118861510982e-02 +Beta_toroidal_profile_at_point_914_______________________________________ beta_thermal_toroidal_profile914_ 2.85237152789294957e-02 +Beta_toroidal_profile_at_point_915_______________________________________ beta_thermal_toroidal_profile915_ 2.82873350329700887e-02 +Beta_toroidal_profile_at_point_916_______________________________________ beta_thermal_toroidal_profile916_ 2.80521975888549900e-02 +Beta_toroidal_profile_at_point_917_______________________________________ beta_thermal_toroidal_profile917_ 2.78183298233187423e-02 +Beta_toroidal_profile_at_point_918_______________________________________ beta_thermal_toroidal_profile918_ 2.75857590695195477e-02 +Beta_toroidal_profile_at_point_919_______________________________________ beta_thermal_toroidal_profile919_ 2.73545131387406791e-02 +Beta_toroidal_profile_at_point_920_______________________________________ beta_thermal_toroidal_profile920_ 2.71246203436490800e-02 +Beta_toroidal_profile_at_point_921_______________________________________ beta_thermal_toroidal_profile921_ 2.68961095232518564e-02 +Beta_toroidal_profile_at_point_922_______________________________________ beta_thermal_toroidal_profile922_ 2.66690100697076146e-02 +Beta_toroidal_profile_at_point_923_______________________________________ beta_thermal_toroidal_profile923_ 2.64433519571668912e-02 +Beta_toroidal_profile_at_point_924_______________________________________ beta_thermal_toroidal_profile924_ 2.62191657728365925e-02 +Beta_toroidal_profile_at_point_925_______________________________________ beta_thermal_toroidal_profile925_ 2.59964827504858033e-02 +Beta_toroidal_profile_at_point_926_______________________________________ beta_thermal_toroidal_profile926_ 2.57753348066376356e-02 +Beta_toroidal_profile_at_point_927_______________________________________ beta_thermal_toroidal_profile927_ 2.55557545797206603e-02 +Beta_toroidal_profile_at_point_928_______________________________________ beta_thermal_toroidal_profile928_ 2.53377754724893739e-02 +Beta_toroidal_profile_at_point_929_______________________________________ beta_thermal_toroidal_profile929_ 2.51214316980623333e-02 +Beta_toroidal_profile_at_point_930_______________________________________ beta_thermal_toroidal_profile930_ 2.49067583299727273e-02 +Beta_toroidal_profile_at_point_931_______________________________________ beta_thermal_toroidal_profile931_ 2.46937913566801989e-02 +Beta_toroidal_profile_at_point_932_______________________________________ beta_thermal_toroidal_profile932_ 2.44825677410542772e-02 +Beta_toroidal_profile_at_point_933_______________________________________ beta_thermal_toroidal_profile933_ 2.42731254854130565e-02 +Beta_toroidal_profile_at_point_934_______________________________________ beta_thermal_toroidal_profile934_ 2.40655037027855644e-02 +Beta_toroidal_profile_at_point_935_______________________________________ beta_thermal_toroidal_profile935_ 2.38597426951666428e-02 +Beta_toroidal_profile_at_point_936_______________________________________ beta_thermal_toroidal_profile936_ 2.36558840396515063e-02 +Beta_toroidal_profile_at_point_937_______________________________________ beta_thermal_toroidal_profile937_ 2.34539706834778899e-02 +Beta_toroidal_profile_at_point_938_______________________________________ beta_thermal_toroidal_profile938_ 2.32540470491706397e-02 +Beta_toroidal_profile_at_point_939_______________________________________ beta_thermal_toroidal_profile939_ 2.30561591511850607e-02 +Beta_toroidal_profile_at_point_940_______________________________________ beta_thermal_toroidal_profile940_ 2.28603547256859968e-02 +Beta_toroidal_profile_at_point_941_______________________________________ beta_thermal_toroidal_profile941_ 2.26666833753928799e-02 +Beta_toroidal_profile_at_point_942_______________________________________ beta_thermal_toroidal_profile942_ 2.24751967317762813e-02 +Beta_toroidal_profile_at_point_943_______________________________________ beta_thermal_toroidal_profile943_ 2.22859486373280131e-02 +Beta_toroidal_profile_at_point_944_______________________________________ beta_thermal_toroidal_profile944_ 2.20989953511643057e-02 +Beta_toroidal_profile_at_point_945_______________________________________ beta_thermal_toroidal_profile945_ 2.19143957818890393e-02 +Beta_toroidal_profile_at_point_946_______________________________________ beta_thermal_toroidal_profile946_ 2.17322117524786119e-02 +Beta_toroidal_profile_at_point_947_______________________________________ beta_thermal_toroidal_profile947_ 2.15525083030026834e-02 +Beta_toroidal_profile_at_point_948_______________________________________ beta_thermal_toroidal_profile948_ 2.13753540383323365e-02 +Beta_toroidal_profile_at_point_949_______________________________________ beta_thermal_toroidal_profile949_ 2.12008215297046776e-02 +Beta_toroidal_profile_at_point_950_______________________________________ beta_thermal_toroidal_profile950_ 2.10289877812365952e-02 +Beta_toroidal_profile_at_point_951_______________________________________ beta_thermal_toroidal_profile951_ 2.08599347753954632e-02 +Beta_toroidal_profile_at_point_952_______________________________________ beta_thermal_toroidal_profile952_ 2.06937501152958669e-02 +Beta_toroidal_profile_at_point_953_______________________________________ beta_thermal_toroidal_profile953_ 2.05305277868759739e-02 +Beta_toroidal_profile_at_point_954_______________________________________ beta_thermal_toroidal_profile954_ 2.03703690710633246e-02 +Beta_toroidal_profile_at_point_955_______________________________________ beta_thermal_toroidal_profile955_ 2.02133836457946310e-02 +Beta_toroidal_profile_at_point_956_______________________________________ beta_thermal_toroidal_profile956_ 2.00596909314689036e-02 +Beta_toroidal_profile_at_point_957_______________________________________ beta_thermal_toroidal_profile957_ 1.99094217530675528e-02 +Beta_toroidal_profile_at_point_958_______________________________________ beta_thermal_toroidal_profile958_ 1.97627204209424520e-02 +Beta_toroidal_profile_at_point_959_______________________________________ beta_thermal_toroidal_profile959_ 1.96197473754031321e-02 +Beta_toroidal_profile_at_point_960_______________________________________ beta_thermal_toroidal_profile960_ 1.94806826066810691e-02 +Beta_toroidal_profile_at_point_961_______________________________________ beta_thermal_toroidal_profile961_ 1.93457301674746091e-02 +Beta_toroidal_profile_at_point_962_______________________________________ beta_thermal_toroidal_profile962_ 1.92151242693906314e-02 +Beta_toroidal_profile_at_point_963_______________________________________ beta_thermal_toroidal_profile963_ 1.90891377541366619e-02 +Beta_toroidal_profile_at_point_964_______________________________________ beta_thermal_toroidal_profile964_ 1.89680942726256560e-02 +Beta_toroidal_profile_at_point_965_______________________________________ beta_thermal_toroidal_profile965_ 1.88523865500505421e-02 +Beta_toroidal_profile_at_point_966_______________________________________ beta_thermal_toroidal_profile966_ 1.87425052911123630e-02 +Beta_toroidal_profile_at_point_967_______________________________________ beta_thermal_toroidal_profile967_ 1.86390882911153070e-02 +Beta_toroidal_profile_at_point_968_______________________________________ beta_thermal_toroidal_profile968_ 1.85430125459554972e-02 +Beta_toroidal_profile_at_point_969_______________________________________ beta_thermal_toroidal_profile969_ 1.84555947625957562e-02 +Beta_toroidal_profile_at_point_970_______________________________________ beta_thermal_toroidal_profile970_ 1.83791576038990004e-02 +Beta_toroidal_profile_at_point_971_______________________________________ beta_thermal_toroidal_profile971_ 1.83205155962368853e-02 +Beta_toroidal_profile_at_point_972_______________________________________ beta_thermal_toroidal_profile972_ 1.74954369281447239e-02 +Beta_toroidal_profile_at_point_973_______________________________________ beta_thermal_toroidal_profile973_ 1.66851493054378866e-02 +Beta_toroidal_profile_at_point_974_______________________________________ beta_thermal_toroidal_profile974_ 1.58897015695489870e-02 +Beta_toroidal_profile_at_point_975_______________________________________ beta_thermal_toroidal_profile975_ 1.51091426127000061e-02 +Beta_toroidal_profile_at_point_976_______________________________________ beta_thermal_toroidal_profile976_ 1.43435213779022821e-02 +Beta_toroidal_profile_at_point_977_______________________________________ beta_thermal_toroidal_profile977_ 1.35928868589565433e-02 +Beta_toroidal_profile_at_point_978_______________________________________ beta_thermal_toroidal_profile978_ 1.28572881004528575e-02 +Beta_toroidal_profile_at_point_979_______________________________________ beta_thermal_toroidal_profile979_ 1.21367741977706743e-02 +Beta_toroidal_profile_at_point_980_______________________________________ beta_thermal_toroidal_profile980_ 1.14313942970788000e-02 +Beta_toroidal_profile_at_point_981_______________________________________ beta_thermal_toroidal_profile981_ 1.07411975953354208e-02 +Beta_toroidal_profile_at_point_982_______________________________________ beta_thermal_toroidal_profile982_ 1.00662333402880642e-02 +Beta_toroidal_profile_at_point_983_______________________________________ beta_thermal_toroidal_profile983_ 9.40655083047366170e-03 +Beta_toroidal_profile_at_point_984_______________________________________ beta_thermal_toroidal_profile984_ 8.76219941521846901e-03 +Beta_toroidal_profile_at_point_985_______________________________________ beta_thermal_toroidal_profile985_ 8.13322849463814050e-03 +Beta_toroidal_profile_at_point_986_______________________________________ beta_thermal_toroidal_profile986_ 7.51968751963767636e-03 +Beta_toroidal_profile_at_point_987_______________________________________ beta_thermal_toroidal_profile987_ 6.92162599191145471e-03 +Beta_toroidal_profile_at_point_988_______________________________________ beta_thermal_toroidal_profile988_ 6.33909346394321421e-03 +Beta_toroidal_profile_at_point_989_______________________________________ beta_thermal_toroidal_profile989_ 5.77213953900605758e-03 +Beta_toroidal_profile_at_point_990_______________________________________ beta_thermal_toroidal_profile990_ 5.22081387116245851e-03 +Beta_toroidal_profile_at_point_991_______________________________________ beta_thermal_toroidal_profile991_ 4.68516616526425556e-03 +Beta_toroidal_profile_at_point_992_______________________________________ beta_thermal_toroidal_profile992_ 4.16524617695264963e-03 +Beta_toroidal_profile_at_point_993_______________________________________ beta_thermal_toroidal_profile993_ 3.66110371265821345e-03 +Beta_toroidal_profile_at_point_994_______________________________________ beta_thermal_toroidal_profile994_ 3.17278862960088028e-03 +Beta_toroidal_profile_at_point_995_______________________________________ beta_thermal_toroidal_profile995_ 2.70035083578995571e-03 +Beta_toroidal_profile_at_point_996_______________________________________ beta_thermal_toroidal_profile996_ 2.24384029002410411e-03 +Beta_toroidal_profile_at_point_997_______________________________________ beta_thermal_toroidal_profile997_ 1.80330700189136064e-03 +Beta_toroidal_profile_at_point_998_______________________________________ beta_thermal_toroidal_profile998_ 1.37880103176912534e-03 +Beta_toroidal_profile_at_point_999_______________________________________ beta_thermal_toroidal_profile999_ 9.70372490824164134e-04 +Beta_toroidal_profile_at_point_1000______________________________________ beta_thermal_toroidal_profile1000_ 5.78071541012608724e-04 +Beta_toroidal_profile_at_point_1001______________________________________ beta_thermal_toroidal_profile1001_ 2.01948395079957680e-04 +Fast_alpha_beta_(β_alpha)________________________________________________ (beta_fast_alpha)______________ 4.85398786161868497e-03 OP Neutral_Beam_ion_beta_(β_beam)___________________________________________ (beta_beam)____________________ 0.00000000000000000e+00 OP -Ratio_of_fast_alpha_and_beam_beta_to_thermal_beta________________________ (f_beta_alpha_beam_thermal)____ 1.42710664681984262e-01 OP -Volume_averaged_thermal_beta_(⟨βₜₕ⟩)_____________________________________ (beta_thermal_vol_avg)_________ 3.36941677290619260e-02 OP -Thermal_poloidal_beta_(⟨βₚₜₕ⟩)___________________________________________ (beta_thermal_poloidal_vol_avg)_ 1.13103206918360444e+00 OP -Thermal_toroidal_beta_(⟨βₜₕ⟩)____________________________________________ (beta_thermal_toroidal_vol_avg)_ 3.47287596605438328e-02 OP -Poloidal_beta_and_inverse_aspect_ratio_(βₚε)_____________________________ (beta_poloidal_eps)____________ 4.30814135851145474e-01 OP +Ratio_of_fast_alpha_and_beam_beta_to_thermal_beta________________________ (f_beta_alpha_beam_thermal)____ 1.47274856199879872e-01 OP +Volume_averaged_thermal_beta_(⟨βₜₕ⟩)_____________________________________ (beta_thermal_vol_avg)_________ 3.29587003977848333e-02 OP +Thermal_poloidal_beta_(⟨βₚₜₕ⟩)___________________________________________ (beta_thermal_poloidal_vol_avg)_ 1.13808733077148694e+00 OP +Thermal_toroidal_beta_(⟨βₜₕ⟩)____________________________________________ (beta_thermal_toroidal_vol_avg)_ 3.39416411180371025e-02 OP +Poloidal_beta_and_inverse_aspect_ratio_(βₚε)_____________________________ (beta_poloidal_eps)____________ 4.35232992917920891e-01 OP Poloidal_beta_and_inverse_aspect_ratio_upper_limit_(βₚε_max)_____________ (beta_poloidal_eps_max)________ 1.37999999999999989e+00 Maximum_normalised_beta_model____________________________________________ (i_beta_norm_max)______________ 1 Beta_g_coefficient_(βₙ<)_________________________________________________ (beta_norm_max)________________ 3.60000000000000009e+00 OP -Normalised_total_beta_(βₙ)_______________________________________________ (beta_norm_total)______________ 3.05760440057510685e+00 OP -Normalised_thermal_beta_(βₙₜₕ)___________________________________________ (beta_norm_thermal)____________ 2.67574679669768933e+00 OP -Normalised_toroidal_beta_(βₙₜ)___________________________________________ (beta_norm_toroidal)___________ 3.15148927904830645e+00 OP -Normalised_poloidal_beta_(βₙₚ)___________________________________________ (beta_norm_poloidal)___________ 1.02636416478230601e+02 OP +Normalised_total_beta_(βₙ)_______________________________________________ (beta_norm_total)______________ 3.04688727934614656e+00 OP +Normalised_thermal_beta_(βₙₜₕ)___________________________________________ (beta_norm_thermal)____________ 2.65576052929317763e+00 OP +Normalised_toroidal_beta_(βₙₜ)___________________________________________ (beta_norm_toroidal)___________ 3.13775583729114604e+00 OP +Normalised_poloidal_beta_(βₙₚ)___________________________________________ (beta_norm_poloidal)___________ 1.05211181541178547e+02 OP J._Wesson_normalised_beta_upper_limit_(βₙ<)______________________________ (beta_norm_max_wesson)_________ 3.60000000000000009e+00 OP Original_normalised_beta_upper_limit_(βₙ<)_______________________________ (beta_norm_max_original_scaling)__ 2.98867513459481327e+00 OP J._Menard_normalised_beta_upper_limit_(βₙ<)______________________________ (beta_norm_max_menard)_________ 3.66070689956729822e+00 OP -E._tholerus_normalised_beta_upper_limit_(βₙ<)____________________________ (beta_norm_max_tholerus)_______ 4.48578261755050089e+00 OP -R._Stambaugh_normalised_beta_upper_limit_(βₙ<)___________________________ (beta_norm_max_stambaugh)______ 2.04811712616866259e+00 OP -Plasma_thermal_energy_derived_from_thermal_beta_(J)______________________ (e_plasma_beta_thermal)________ 9.73358924008823037e+08 OP -Plasma_thermal_energy_derived_from_the_total_beta_(J)____________________ (e_plasma_beta)________________ 1.11226762302826309e+09 OP +E._tholerus_normalised_beta_upper_limit_(βₙ<)____________________________ (beta_norm_max_tholerus)_______ 4.49763203156667313e+00 OP +R._Stambaugh_normalised_beta_upper_limit_(βₙ<)___________________________ (beta_norm_max_stambaugh)______ 2.05276846663580015e+00 OP +Plasma_thermal_energy_derived_from_thermal_beta_(J)______________________ (e_plasma_beta_thermal)________ 9.45158271198573232e+08 OP +Plasma_thermal_energy_derived_from_the_total_beta_(J)____________________ (e_plasma_beta)________________ 1.08435631967547011e+09 OP # Plasma Density and Temperature Profiles # Number_of_radial_points_in_plasma_profiles_______________________________ (n_plasma_profile_elements)____ 501 Plasma_profile_model_selected____________________________________________ (i_plasma_pedestal)____________ 1 @@ -2470,2542 +2465,2544 @@ Temperature_profile_index_beta_(βₜ)______________________________________ (tb Temperature_pedestal_r/a_location_(ρₜ,pedestal)__________________________ (radius_plasma_pedestal_temp_norm)_ 9.39999999999999947e-01 Electron_temperature_pedestal_height_(Tₑ,pedestal)_(keV)_________________ (temp_plasma_pedestal_kev)_____ 5.50000000000000000e+00 Electron_temperature_at_separatrix_(Tₑ,ₛₑₚ)_(keV)________________________ (temp_plasma_separatrix_kev)___ 1.00000000000000006e-01 -Volume_averaged_electron_temperature_(⟨Tₑ⟩)_(keV)________________________ (temp_plasma_electron_vol_avg_kev)_ 1.26746504744851638e+01 -Electron_temperature_on_axis_(Tₑ₀)_(keV)_________________________________ (temp_plasma_electron_on_axis_kev)_ 2.62738995727576388e+01 OP -Volume_averaged_density_weighted_electron_temperature_(⟨Tₑ⟩ₙ)_(keV)______ (temp_plasma_electron_density_weighted_kev)_ 1.40214634174861210e+01 OP -Ratio_of_electron_density_weighted_to_volume_averaged_temperature________ (f_temp_plasma_electron_density_vol_avg)_ 1.10626036163381181e+00 OP +Volume_averaged_electron_temperature_(⟨Tₑ⟩)_(keV)________________________ (temp_plasma_electron_vol_avg_kev)_ 1.24731443906445829e+01 +Electron_temperature_on_axis_(Tₑ₀)_(keV)_________________________________ (temp_plasma_electron_on_axis_kev)_ 2.57151740120860381e+01 OP +Line_averaged_electron_temperature_(keV)_________________________________ (temp_plasma_electron_line_avg_kev)_ 1.66562218585722661e+01 +Volume_averaged_density_weighted_electron_temperature_(⟨Tₑ⟩ₙ)_(keV)______ (temp_plasma_electron_density_weighted_kev)_ 1.37874257364820547e+01 OP +Ratio_of_electron_density_weighted_to_volume_averaged_temperature________ (f_temp_plasma_electron_density_vol_avg)_ 1.10536888732108651e+00 OP Ratio_of_ion_to_electron_volume-averaged_temperature_____________________ (f_temp_plasma_ion_electron)___ 1.00000000000000000e+00 IP -Volume_averaged_ion_temperature_(⟨Tᵢ⟩)_(keV)_____________________________ (temp_plasma_ion_vol_avg_kev)__ 1.26746504744851638e+01 -Ion_temperature_on_axis_(Tᵢ₀)_(keV)______________________________________ (temp_plasma_ion_on_axis_kev)__ 2.62738995727576388e+01 OP +Volume_averaged_ion_temperature_(⟨Tᵢ⟩)_(keV)_____________________________ (temp_plasma_ion_vol_avg_kev)__ 1.24731443906445829e+01 +Ion_temperature_on_axis_(Tᵢ₀)_(keV)______________________________________ (temp_plasma_ion_on_axis_kev)__ 2.57151740120860381e+01 OP Density_profile_factor_(αₙ)______________________________________________ (alphan)_______________________ 1.00000000000000000e+00 +Pedestal_and_separatrix_density_model_selected___________________________ (i_nd_plasma_pedestal_separatrix)_ 1 Density_pedestal_r/a_location_(ρₙ,pedestal)______________________________ (radius_plasma_pedestal_density_norm)_ 9.39999999999999947e-01 -Electron_density_pedestal_height_(nₑ_pedestal)_(/m³)_____________________ (nd_plasma_pedestal_electron)__ 6.37170311930235372e+19 OP -Pedestal_Greenwald_fraction______________________________________________ (fgwped_out)___________________ 8.49999999999999978e-01 -Electron_density_at_separatrix_(nₑ,ₛₑₚ)_(/m³)____________________________ (nd_plasma_separatrix_electron)_ 3.74806065841314939e+19 -Separatrix_Greenwald_fraction____________________________________________ (fgwsep_out)___________________ 5.00000000000000000e-01 -Volume_averaged_electron_number_density_(⟨nₑ⟩)_(/m³)_____________________ (nd_plasma_electrons_vol_avg)__ 8.12256151664202711e+19 -Electron_number_density_on_axis_(nₑ₀)_(/m³)______________________________ (nd_plasma_electron_on_axis)___ 1.06838999822266597e+20 OP -Line-averaged_electron_number_density_(ñₑ)_(/m³)_________________________ (nd_plasma_electron_line)______ 8.99530387957490975e+19 OP -Greenwald_fraction_(f_GW)________________________________________________ (dnla_gw)______________________ 1.19999443704085262e+00 OP -Total_ion_volume_averaged_number_density_(⟨nᵢ⟩)_(/m³)____________________ (nd_plasma_ions_total_vol_avg)_ 7.17550913186298102e+19 OP -Fuel_ion_volume_averaged_number_density_(⟨n_fuel⟩)_(/m³)_________________ (nd_plasma_fuel_ions_vol_avg)__ 6.46188108796804465e+19 OP -Total_impurity_volume_averaged_number_density_with_Z_>_2_(⟨nᵢₘₚ⟩)_(/m³)__ (nd_plasma_impurities_vol_avg)_ 5.01181047674494400e+16 OP -Thermalised_alpha_volume_averaged_number_density_(⟨n_alpha⟩)_(/m³)_______ (nd_plasma_alphas_vol_avg)_____ 7.06725386818312909e+18 OP -Thermalised_alpha_to_electron_number_density_ratio_(⟨n_alpha⟩/⟨nₑ⟩)______ (f_nd_alpha_electron)__________ 8.70076989100456027e-02 -Proton_volume_averaged_number_density_(⟨nₚ⟩)_(/m³)_______________________ (nd_plasma_protons_vol_avg)____ 1.89084659987942080e+16 OP +Electron_density_pedestal_height_(nₑ_pedestal)_(/m³)_____________________ (nd_plasma_pedestal_electron)__ 6.25923070919424164e+19 OP +Electron_separatrix_density_(nₑ,ₛₑₚ)_(/m³)_______________________________ (nd_plasma_separatrix_electron)_ 3.68190041717308334e+19 OP +Pedestal_Greenwald_fraction______________________________________________ (f_nd_plasma_pedestal_greenwald)_ 8.49999999999999978e-01 +Separatrix_Greenwald_fraction____________________________________________ (f_nd_plasma_separatrix_greenwald)_ 5.00000000000000000e-01 +Volume_averaged_electron_number_density_(⟨nₑ⟩)_(/m³)_____________________ (nd_plasma_electrons_vol_avg)__ 7.97918908402032148e+19 +Electron_number_density_on_axis_(nₑ₀)_(/m³)______________________________ (nd_plasma_electron_on_axis)___ 1.04953225969192829e+20 OP +Line-averaged_electron_number_density_(ñₑ)_(/m³)_________________________ (nd_plasma_electron_line)______ 8.83652838340796580e+19 OP +Greenwald_fraction_(f_GW)________________________________________________ (f_nd_plasma_greenwald)________ 1.19999557052014749e+00 OP +Total_ion_volume_averaged_number_density_(⟨nᵢ⟩)_(/m³)____________________ (nd_plasma_ions_total_vol_avg)_ 7.12781484778209362e+19 OP +Fuel_ion_volume_averaged_number_density_(⟨n_fuel⟩)_(/m³)_________________ (nd_plasma_fuel_ions_vol_avg)__ 6.49969309799525253e+19 OP +Total_impurity_volume_averaged_number_density_with_Z_>_2_(⟨nᵢₘₚ⟩)_(/m³)__ (nd_plasma_impurities_vol_avg)_ 4.80055645542429920e+16 OP +Thermalised_alpha_volume_averaged_number_density_(⟨n_alpha⟩)_(/m³)_______ (nd_plasma_alphas_vol_avg)_____ 6.21669250284018586e+18 OP +Thermalised_alpha_to_electron_number_density_ratio_(⟨n_alpha⟩/⟨nₑ⟩)______ (f_nd_alpha_electron)__________ 7.79113320586695551e-02 +Proton_volume_averaged_number_density_(⟨nₚ⟩)_(/m³)_______________________ (nd_plasma_protons_vol_avg)____ 1.65194304739852640e+16 OP Proton_to_electron_volume_averaged_number_density_ratio_(⟨nₚ⟩/⟨nₑ⟩)______ (f_nd_protium_electrons)_______ 0.00000000000000000e+00 OP Hot_beam_ion_volume_averaged_number_density_(⟨n_beam⟩)_(/m³)_____________ (nd_beam_ions)_________________ 0.00000000000000000e+00 OP Hot_beam_ion_to_electron_number_density_ratio_(⟨n_beam⟩/⟨nₑ⟩)____________ (f_nd_beam_electron)___________ 0.00000000000000000e+00 OP Pressure_profile_index_(αₚ)______________________________________________ (alphap)_______________________ 2.45000000000000018e+00 -Plasma_thermal_pressure_on_axis_(p₀)_(Pa)________________________________ (pres_plasma_thermal_on_axis)__ 8.47048730775634060e+05 OP -Volume_averaged_plasma_thermal_pressure_(⟨p⟩)_(Pa)_______________________ (pres_plasma_thermal_vol_avg)__ 3.43669031635050604e+05 OP -Total_plasma_pressure_at_point_0_________________________________________ (pres_plasma_thermal_total_profile0)_ 8.47048730775634060e+05 -Total_plasma_pressure_at_point_1_________________________________________ (pres_plasma_thermal_total_profile1)_ 8.47042786940236459e+05 -Total_plasma_pressure_at_point_2_________________________________________ (pres_plasma_thermal_total_profile2)_ 8.47024955584166339e+05 -Total_plasma_pressure_at_point_3_________________________________________ (pres_plasma_thermal_total_profile3)_ 8.46995237157787778e+05 -Total_plasma_pressure_at_point_4_________________________________________ (pres_plasma_thermal_total_profile4)_ 8.46953632411703467e+05 -Total_plasma_pressure_at_point_5_________________________________________ (pres_plasma_thermal_total_profile5)_ 8.46900142396746087e+05 -Total_plasma_pressure_at_point_6_________________________________________ (pres_plasma_thermal_total_profile6)_ 8.46834768463965156e+05 -Total_plasma_pressure_at_point_7_________________________________________ (pres_plasma_thermal_total_profile7)_ 8.46757512264616322e+05 -Total_plasma_pressure_at_point_8_________________________________________ (pres_plasma_thermal_total_profile8)_ 8.46668375750139821e+05 -Total_plasma_pressure_at_point_9_________________________________________ (pres_plasma_thermal_total_profile9)_ 8.46567361172142206e+05 -Total_plasma_pressure_at_point_10________________________________________ (pres_plasma_thermal_total_profile10)_ 8.46454471082371194e+05 -Total_plasma_pressure_at_point_11________________________________________ (pres_plasma_thermal_total_profile11)_ 8.46329708332688548e+05 -Total_plasma_pressure_at_point_12________________________________________ (pres_plasma_thermal_total_profile12)_ 8.46193076075038989e+05 -Total_plasma_pressure_at_point_13________________________________________ (pres_plasma_thermal_total_profile13)_ 8.46044577761417720e+05 -Total_plasma_pressure_at_point_14________________________________________ (pres_plasma_thermal_total_profile14)_ 8.45884217143831891e+05 -Total_plasma_pressure_at_point_15________________________________________ (pres_plasma_thermal_total_profile15)_ 8.45711998274261365e+05 -Total_plasma_pressure_at_point_16________________________________________ (pres_plasma_thermal_total_profile16)_ 8.45527925504615298e+05 -Total_plasma_pressure_at_point_17________________________________________ (pres_plasma_thermal_total_profile17)_ 8.45332003486684989e+05 -Total_plasma_pressure_at_point_18________________________________________ (pres_plasma_thermal_total_profile18)_ 8.45124237172095105e+05 -Total_plasma_pressure_at_point_19________________________________________ (pres_plasma_thermal_total_profile19)_ 8.44904631812249310e+05 -Total_plasma_pressure_at_point_20________________________________________ (pres_plasma_thermal_total_profile20)_ 8.44673192958273925e+05 -Total_plasma_pressure_at_point_21________________________________________ (pres_plasma_thermal_total_profile21)_ 8.44429926460960764e+05 -Total_plasma_pressure_at_point_22________________________________________ (pres_plasma_thermal_total_profile22)_ 8.44174838470701477e+05 -Total_plasma_pressure_at_point_23________________________________________ (pres_plasma_thermal_total_profile23)_ 8.43907935437422944e+05 -Total_plasma_pressure_at_point_24________________________________________ (pres_plasma_thermal_total_profile24)_ 8.43629224110518815e+05 -Total_plasma_pressure_at_point_25________________________________________ (pres_plasma_thermal_total_profile25)_ 8.43338711538776057e+05 -Total_plasma_pressure_at_point_26________________________________________ (pres_plasma_thermal_total_profile26)_ 8.43036405070299283e+05 -Total_plasma_pressure_at_point_27________________________________________ (pres_plasma_thermal_total_profile27)_ 8.42722312352433451e+05 -Total_plasma_pressure_at_point_28________________________________________ (pres_plasma_thermal_total_profile28)_ 8.42396441331679933e+05 -Total_plasma_pressure_at_point_29________________________________________ (pres_plasma_thermal_total_profile29)_ 8.42058800253612804e+05 -Total_plasma_pressure_at_point_30________________________________________ (pres_plasma_thermal_total_profile30)_ 8.41709397662789328e+05 -Total_plasma_pressure_at_point_31________________________________________ (pres_plasma_thermal_total_profile31)_ 8.41348242402658914e+05 -Total_plasma_pressure_at_point_32________________________________________ (pres_plasma_thermal_total_profile32)_ 8.40975343615468126e+05 -Total_plasma_pressure_at_point_33________________________________________ (pres_plasma_thermal_total_profile33)_ 8.40590710742162541e+05 -Total_plasma_pressure_at_point_34________________________________________ (pres_plasma_thermal_total_profile34)_ 8.40194353522284888e+05 -Total_plasma_pressure_at_point_35________________________________________ (pres_plasma_thermal_total_profile35)_ 8.39786281993871904e+05 -Total_plasma_pressure_at_point_36________________________________________ (pres_plasma_thermal_total_profile36)_ 8.39366506493344903e+05 -Total_plasma_pressure_at_point_37________________________________________ (pres_plasma_thermal_total_profile37)_ 8.38935037655400112e+05 -Total_plasma_pressure_at_point_38________________________________________ (pres_plasma_thermal_total_profile38)_ 8.38491886412893189e+05 -Total_plasma_pressure_at_point_39________________________________________ (pres_plasma_thermal_total_profile39)_ 8.38037063996723504e+05 -Total_plasma_pressure_at_point_40________________________________________ (pres_plasma_thermal_total_profile40)_ 8.37570581935711438e+05 -Total_plasma_pressure_at_point_41________________________________________ (pres_plasma_thermal_total_profile41)_ 8.37092452056476148e+05 -Total_plasma_pressure_at_point_42________________________________________ (pres_plasma_thermal_total_profile42)_ 8.36602686483308324e+05 -Total_plasma_pressure_at_point_43________________________________________ (pres_plasma_thermal_total_profile43)_ 8.36101297638037940e+05 -Total_plasma_pressure_at_point_44________________________________________ (pres_plasma_thermal_total_profile44)_ 8.35588298239904107e+05 -Total_plasma_pressure_at_point_45________________________________________ (pres_plasma_thermal_total_profile45)_ 8.35063701305414783e+05 -Total_plasma_pressure_at_point_46________________________________________ (pres_plasma_thermal_total_profile46)_ 8.34527520148209529e+05 -Total_plasma_pressure_at_point_47________________________________________ (pres_plasma_thermal_total_profile47)_ 8.33979768378914800e+05 -Total_plasma_pressure_at_point_48________________________________________ (pres_plasma_thermal_total_profile48)_ 8.33420459904997610e+05 -Total_plasma_pressure_at_point_49________________________________________ (pres_plasma_thermal_total_profile49)_ 8.32849608930616640e+05 -Total_plasma_pressure_at_point_50________________________________________ (pres_plasma_thermal_total_profile50)_ 8.32267229956468800e+05 -Total_plasma_pressure_at_point_51________________________________________ (pres_plasma_thermal_total_profile51)_ 8.31673337779632420e+05 -Total_plasma_pressure_at_point_52________________________________________ (pres_plasma_thermal_total_profile52)_ 8.31067947493410204e+05 -Total_plasma_pressure_at_point_53________________________________________ (pres_plasma_thermal_total_profile53)_ 8.30451074487163569e+05 -Total_plasma_pressure_at_point_54________________________________________ (pres_plasma_thermal_total_profile54)_ 8.29822734446149552e+05 -Total_plasma_pressure_at_point_55________________________________________ (pres_plasma_thermal_total_profile55)_ 8.29182943351350026e+05 -Total_plasma_pressure_at_point_56________________________________________ (pres_plasma_thermal_total_profile56)_ 8.28531717479300685e+05 -Total_plasma_pressure_at_point_57________________________________________ (pres_plasma_thermal_total_profile57)_ 8.27869073401914793e+05 -Total_plasma_pressure_at_point_58________________________________________ (pres_plasma_thermal_total_profile58)_ 8.27195027986304369e+05 -Total_plasma_pressure_at_point_59________________________________________ (pres_plasma_thermal_total_profile59)_ 8.26509598394599278e+05 -Total_plasma_pressure_at_point_60________________________________________ (pres_plasma_thermal_total_profile60)_ 8.25812802083760849e+05 -Total_plasma_pressure_at_point_61________________________________________ (pres_plasma_thermal_total_profile61)_ 8.25104656805394683e+05 -Total_plasma_pressure_at_point_62________________________________________ (pres_plasma_thermal_total_profile62)_ 8.24385180605557514e+05 -Total_plasma_pressure_at_point_63________________________________________ (pres_plasma_thermal_total_profile63)_ 8.23654391824564547e+05 -Total_plasma_pressure_at_point_64________________________________________ (pres_plasma_thermal_total_profile64)_ 8.22912309096789220e+05 -Total_plasma_pressure_at_point_65________________________________________ (pres_plasma_thermal_total_profile65)_ 8.22158951350463438e+05 -Total_plasma_pressure_at_point_66________________________________________ (pres_plasma_thermal_total_profile66)_ 8.21394337807471864e+05 -Total_plasma_pressure_at_point_67________________________________________ (pres_plasma_thermal_total_profile67)_ 8.20618487983145751e+05 -Total_plasma_pressure_at_point_68________________________________________ (pres_plasma_thermal_total_profile68)_ 8.19831421686050016e+05 -Total_plasma_pressure_at_point_69________________________________________ (pres_plasma_thermal_total_profile69)_ 8.19033159017770551e+05 -Total_plasma_pressure_at_point_70________________________________________ (pres_plasma_thermal_total_profile70)_ 8.18223720372696524e+05 -Total_plasma_pressure_at_point_71________________________________________ (pres_plasma_thermal_total_profile71)_ 8.17403126437798725e+05 -Total_plasma_pressure_at_point_72________________________________________ (pres_plasma_thermal_total_profile72)_ 8.16571398192407563e+05 -Total_plasma_pressure_at_point_73________________________________________ (pres_plasma_thermal_total_profile73)_ 8.15728556907983730e+05 -Total_plasma_pressure_at_point_74________________________________________ (pres_plasma_thermal_total_profile74)_ 8.14874624147889437e+05 -Total_plasma_pressure_at_point_75________________________________________ (pres_plasma_thermal_total_profile75)_ 8.14009621767153963e+05 -Total_plasma_pressure_at_point_76________________________________________ (pres_plasma_thermal_total_profile76)_ 8.13133571912238374e+05 -Total_plasma_pressure_at_point_77________________________________________ (pres_plasma_thermal_total_profile77)_ 8.12246497020792565e+05 -Total_plasma_pressure_at_point_78________________________________________ (pres_plasma_thermal_total_profile78)_ 8.11348419821415329e+05 -Total_plasma_pressure_at_point_79________________________________________ (pres_plasma_thermal_total_profile79)_ 8.10439363333405694e+05 -Total_plasma_pressure_at_point_80________________________________________ (pres_plasma_thermal_total_profile80)_ 8.09519350866513327e+05 -Total_plasma_pressure_at_point_81________________________________________ (pres_plasma_thermal_total_profile81)_ 8.08588406020686962e+05 -Total_plasma_pressure_at_point_82________________________________________ (pres_plasma_thermal_total_profile82)_ 8.07646552685816656e+05 -Total_plasma_pressure_at_point_83________________________________________ (pres_plasma_thermal_total_profile83)_ 8.06693815041475696e+05 -Total_plasma_pressure_at_point_84________________________________________ (pres_plasma_thermal_total_profile84)_ 8.05730217556656571e+05 -Total_plasma_pressure_at_point_85________________________________________ (pres_plasma_thermal_total_profile85)_ 8.04755784989506472e+05 -Total_plasma_pressure_at_point_86________________________________________ (pres_plasma_thermal_total_profile86)_ 8.03770542387057096e+05 -Total_plasma_pressure_at_point_87________________________________________ (pres_plasma_thermal_total_profile87)_ 8.02774515084953280e+05 -Total_plasma_pressure_at_point_88________________________________________ (pres_plasma_thermal_total_profile88)_ 8.01767728707176633e+05 -Total_plasma_pressure_at_point_89________________________________________ (pres_plasma_thermal_total_profile89)_ 8.00750209165767650e+05 -Total_plasma_pressure_at_point_90________________________________________ (pres_plasma_thermal_total_profile90)_ 7.99721982660542475e+05 -Total_plasma_pressure_at_point_91________________________________________ (pres_plasma_thermal_total_profile91)_ 7.98683075678808847e+05 -Total_plasma_pressure_at_point_92________________________________________ (pres_plasma_thermal_total_profile92)_ 7.97633514995077159e+05 -Total_plasma_pressure_at_point_93________________________________________ (pres_plasma_thermal_total_profile93)_ 7.96573327670768951e+05 -Total_plasma_pressure_at_point_94________________________________________ (pres_plasma_thermal_total_profile94)_ 7.95502541053921916e+05 -Total_plasma_pressure_at_point_95________________________________________ (pres_plasma_thermal_total_profile95)_ 7.94421182778891758e+05 -Total_plasma_pressure_at_point_96________________________________________ (pres_plasma_thermal_total_profile96)_ 7.93329280766050681e+05 -Total_plasma_pressure_at_point_97________________________________________ (pres_plasma_thermal_total_profile97)_ 7.92226863221483072e+05 -Total_plasma_pressure_at_point_98________________________________________ (pres_plasma_thermal_total_profile98)_ 7.91113958636678755e+05 -Total_plasma_pressure_at_point_99________________________________________ (pres_plasma_thermal_total_profile99)_ 7.89990595788219478e+05 -Total_plasma_pressure_at_point_100_______________________________________ (pres_plasma_thermal_total_profile100)_ 7.88856803737466922e+05 -Total_plasma_pressure_at_point_101_______________________________________ (pres_plasma_thermal_total_profile101)_ 7.87712611830245005e+05 -Total_plasma_pressure_at_point_102_______________________________________ (pres_plasma_thermal_total_profile102)_ 7.86558049696517759e+05 -Total_plasma_pressure_at_point_103_______________________________________ (pres_plasma_thermal_total_profile103)_ 7.85393147250067443e+05 -Total_plasma_pressure_at_point_104_______________________________________ (pres_plasma_thermal_total_profile104)_ 7.84217934688166599e+05 -Total_plasma_pressure_at_point_105_______________________________________ (pres_plasma_thermal_total_profile105)_ 7.83032442491247319e+05 -Total_plasma_pressure_at_point_106_______________________________________ (pres_plasma_thermal_total_profile106)_ 7.81836701422568294e+05 -Total_plasma_pressure_at_point_107_______________________________________ (pres_plasma_thermal_total_profile107)_ 7.80630742527877912e+05 -Total_plasma_pressure_at_point_108_______________________________________ (pres_plasma_thermal_total_profile108)_ 7.79414597135075834e+05 -Total_plasma_pressure_at_point_109_______________________________________ (pres_plasma_thermal_total_profile109)_ 7.78188296853866894e+05 -Total_plasma_pressure_at_point_110_______________________________________ (pres_plasma_thermal_total_profile110)_ 7.76951873575417208e+05 -Total_plasma_pressure_at_point_111_______________________________________ (pres_plasma_thermal_total_profile111)_ 7.75705359472004231e+05 -Total_plasma_pressure_at_point_112_______________________________________ (pres_plasma_thermal_total_profile112)_ 7.74448786996663897e+05 -Total_plasma_pressure_at_point_113_______________________________________ (pres_plasma_thermal_total_profile113)_ 7.73182188882834511e+05 -Total_plasma_pressure_at_point_114_______________________________________ (pres_plasma_thermal_total_profile114)_ 7.71905598143997835e+05 -Total_plasma_pressure_at_point_115_______________________________________ (pres_plasma_thermal_total_profile115)_ 7.70619048073316924e+05 -Total_plasma_pressure_at_point_116_______________________________________ (pres_plasma_thermal_total_profile116)_ 7.69322572243270231e+05 -Total_plasma_pressure_at_point_117_______________________________________ (pres_plasma_thermal_total_profile117)_ 7.68016204505284666e+05 -Total_plasma_pressure_at_point_118_______________________________________ (pres_plasma_thermal_total_profile118)_ 7.66699978989361320e+05 -Total_plasma_pressure_at_point_119_______________________________________ (pres_plasma_thermal_total_profile119)_ 7.65373930103701539e+05 -Total_plasma_pressure_at_point_120_______________________________________ (pres_plasma_thermal_total_profile120)_ 7.64038092534329742e+05 -Total_plasma_pressure_at_point_121_______________________________________ (pres_plasma_thermal_total_profile121)_ 7.62692501244711224e+05 -Total_plasma_pressure_at_point_122_______________________________________ (pres_plasma_thermal_total_profile122)_ 7.61337191475366475e+05 -Total_plasma_pressure_at_point_123_______________________________________ (pres_plasma_thermal_total_profile123)_ 7.59972198743486195e+05 -Total_plasma_pressure_at_point_124_______________________________________ (pres_plasma_thermal_total_profile124)_ 7.58597558842538157e+05 -Total_plasma_pressure_at_point_125_______________________________________ (pres_plasma_thermal_total_profile125)_ 7.57213307841873728e+05 -Total_plasma_pressure_at_point_126_______________________________________ (pres_plasma_thermal_total_profile126)_ 7.55819482086331816e+05 -Total_plasma_pressure_at_point_127_______________________________________ (pres_plasma_thermal_total_profile127)_ 7.54416118195837829e+05 -Total_plasma_pressure_at_point_128_______________________________________ (pres_plasma_thermal_total_profile128)_ 7.53003253064999590e+05 -Total_plasma_pressure_at_point_129_______________________________________ (pres_plasma_thermal_total_profile129)_ 7.51580923862701515e+05 -Total_plasma_pressure_at_point_130_______________________________________ (pres_plasma_thermal_total_profile130)_ 7.50149168031695299e+05 -Total_plasma_pressure_at_point_131_______________________________________ (pres_plasma_thermal_total_profile131)_ 7.48708023288185941e+05 -Total_plasma_pressure_at_point_132_______________________________________ (pres_plasma_thermal_total_profile132)_ 7.47257527621416608e+05 -Total_plasma_pressure_at_point_133_______________________________________ (pres_plasma_thermal_total_profile133)_ 7.45797719293249771e+05 -Total_plasma_pressure_at_point_134_______________________________________ (pres_plasma_thermal_total_profile134)_ 7.44328636837743688e+05 -Total_plasma_pressure_at_point_135_______________________________________ (pres_plasma_thermal_total_profile135)_ 7.42850319060728536e+05 -Total_plasma_pressure_at_point_136_______________________________________ (pres_plasma_thermal_total_profile136)_ 7.41362805039377767e+05 -Total_plasma_pressure_at_point_137_______________________________________ (pres_plasma_thermal_total_profile137)_ 7.39866134121775394e+05 -Total_plasma_pressure_at_point_138_______________________________________ (pres_plasma_thermal_total_profile138)_ 7.38360345926482580e+05 -Total_plasma_pressure_at_point_139_______________________________________ (pres_plasma_thermal_total_profile139)_ 7.36845480342099676e+05 -Total_plasma_pressure_at_point_140_______________________________________ (pres_plasma_thermal_total_profile140)_ 7.35321577526825247e+05 -Total_plasma_pressure_at_point_141_______________________________________ (pres_plasma_thermal_total_profile141)_ 7.33788677908012527e+05 -Total_plasma_pressure_at_point_142_______________________________________ (pres_plasma_thermal_total_profile142)_ 7.32246822181721684e+05 -Total_plasma_pressure_at_point_143_______________________________________ (pres_plasma_thermal_total_profile143)_ 7.30696051312271273e+05 -Total_plasma_pressure_at_point_144_______________________________________ (pres_plasma_thermal_total_profile144)_ 7.29136406531784218e+05 -Total_plasma_pressure_at_point_145_______________________________________ (pres_plasma_thermal_total_profile145)_ 7.27567929339731345e+05 -Total_plasma_pressure_at_point_146_______________________________________ (pres_plasma_thermal_total_profile146)_ 7.25990661502473406e+05 -Total_plasma_pressure_at_point_147_______________________________________ (pres_plasma_thermal_total_profile147)_ 7.24404645052798325e+05 -Total_plasma_pressure_at_point_148_______________________________________ (pres_plasma_thermal_total_profile148)_ 7.22809922289455775e+05 -Total_plasma_pressure_at_point_149_______________________________________ (pres_plasma_thermal_total_profile149)_ 7.21206535776690347e+05 -Total_plasma_pressure_at_point_150_______________________________________ (pres_plasma_thermal_total_profile150)_ 7.19594528343768558e+05 -Total_plasma_pressure_at_point_151_______________________________________ (pres_plasma_thermal_total_profile151)_ 7.17973943084505619e+05 -Total_plasma_pressure_at_point_152_______________________________________ (pres_plasma_thermal_total_profile152)_ 7.16344823356788605e+05 -Total_plasma_pressure_at_point_153_______________________________________ (pres_plasma_thermal_total_profile153)_ 7.14707212782096583e+05 -Total_plasma_pressure_at_point_154_______________________________________ (pres_plasma_thermal_total_profile154)_ 7.13061155245015398e+05 -Total_plasma_pressure_at_point_155_______________________________________ (pres_plasma_thermal_total_profile155)_ 7.11406694892755360e+05 -Total_plasma_pressure_at_point_156_______________________________________ (pres_plasma_thermal_total_profile156)_ 7.09743876134658698e+05 -Total_plasma_pressure_at_point_157_______________________________________ (pres_plasma_thermal_total_profile157)_ 7.08072743641710142e+05 -Total_plasma_pressure_at_point_158_______________________________________ (pres_plasma_thermal_total_profile158)_ 7.06393342346040998e+05 -Total_plasma_pressure_at_point_159_______________________________________ (pres_plasma_thermal_total_profile159)_ 7.04705717440431239e+05 -Total_plasma_pressure_at_point_160_______________________________________ (pres_plasma_thermal_total_profile160)_ 7.03009914377810899e+05 -Total_plasma_pressure_at_point_161_______________________________________ (pres_plasma_thermal_total_profile161)_ 7.01305978870753432e+05 -Total_plasma_pressure_at_point_162_______________________________________ (pres_plasma_thermal_total_profile162)_ 6.99593956890972564e+05 -Total_plasma_pressure_at_point_163_______________________________________ (pres_plasma_thermal_total_profile163)_ 6.97873894668811350e+05 -Total_plasma_pressure_at_point_164_______________________________________ (pres_plasma_thermal_total_profile164)_ 6.96145838692730293e+05 -Total_plasma_pressure_at_point_165_______________________________________ (pres_plasma_thermal_total_profile165)_ 6.94409835708793602e+05 -Total_plasma_pressure_at_point_166_______________________________________ (pres_plasma_thermal_total_profile166)_ 6.92665932720150333e+05 -Total_plasma_pressure_at_point_167_______________________________________ (pres_plasma_thermal_total_profile167)_ 6.90914176986514824e+05 -Total_plasma_pressure_at_point_168_______________________________________ (pres_plasma_thermal_total_profile168)_ 6.89154616023643408e+05 -Total_plasma_pressure_at_point_169_______________________________________ (pres_plasma_thermal_total_profile169)_ 6.87387297602807870e+05 -Total_plasma_pressure_at_point_170_______________________________________ (pres_plasma_thermal_total_profile170)_ 6.85612269750268431e+05 -Total_plasma_pressure_at_point_171_______________________________________ (pres_plasma_thermal_total_profile171)_ 6.83829580746740568e+05 -Total_plasma_pressure_at_point_172_______________________________________ (pres_plasma_thermal_total_profile172)_ 6.82039279126861598e+05 -Total_plasma_pressure_at_point_173_______________________________________ (pres_plasma_thermal_total_profile173)_ 6.80241413678654819e+05 -Total_plasma_pressure_at_point_174_______________________________________ (pres_plasma_thermal_total_profile174)_ 6.78436033442988293e+05 -Total_plasma_pressure_at_point_175_______________________________________ (pres_plasma_thermal_total_profile175)_ 6.76623187713035615e+05 -Total_plasma_pressure_at_point_176_______________________________________ (pres_plasma_thermal_total_profile176)_ 6.74802926033727825e+05 -Total_plasma_pressure_at_point_177_______________________________________ (pres_plasma_thermal_total_profile177)_ 6.72975298201208818e+05 -Total_plasma_pressure_at_point_178_______________________________________ (pres_plasma_thermal_total_profile178)_ 6.71140354262284469e+05 -Total_plasma_pressure_at_point_179_______________________________________ (pres_plasma_thermal_total_profile179)_ 6.69298144513870589e+05 -Total_plasma_pressure_at_point_180_______________________________________ (pres_plasma_thermal_total_profile180)_ 6.67448719502437860e+05 -Total_plasma_pressure_at_point_181_______________________________________ (pres_plasma_thermal_total_profile181)_ 6.65592130023454316e+05 -Total_plasma_pressure_at_point_182_______________________________________ (pres_plasma_thermal_total_profile182)_ 6.63728427120825276e+05 -Total_plasma_pressure_at_point_183_______________________________________ (pres_plasma_thermal_total_profile183)_ 6.61857662086331984e+05 -Total_plasma_pressure_at_point_184_______________________________________ (pres_plasma_thermal_total_profile184)_ 6.59979886459065718e+05 -Total_plasma_pressure_at_point_185_______________________________________ (pres_plasma_thermal_total_profile185)_ 6.58095152024861425e+05 -Total_plasma_pressure_at_point_186_______________________________________ (pres_plasma_thermal_total_profile186)_ 6.56203510815727990e+05 -Total_plasma_pressure_at_point_187_______________________________________ (pres_plasma_thermal_total_profile187)_ 6.54305015109275701e+05 -Total_plasma_pressure_at_point_188_______________________________________ (pres_plasma_thermal_total_profile188)_ 6.52399717428142671e+05 -Total_plasma_pressure_at_point_189_______________________________________ (pres_plasma_thermal_total_profile189)_ 6.50487670539419167e+05 -Total_plasma_pressure_at_point_190_______________________________________ (pres_plasma_thermal_total_profile190)_ 6.48568927454067394e+05 -Total_plasma_pressure_at_point_191_______________________________________ (pres_plasma_thermal_total_profile191)_ 6.46643541426340933e+05 -Total_plasma_pressure_at_point_192_______________________________________ (pres_plasma_thermal_total_profile192)_ 6.44711565953202546e+05 -Total_plasma_pressure_at_point_193_______________________________________ (pres_plasma_thermal_total_profile193)_ 6.42773054773737676e+05 -Total_plasma_pressure_at_point_194_______________________________________ (pres_plasma_thermal_total_profile194)_ 6.40828061868568184e+05 -Total_plasma_pressure_at_point_195_______________________________________ (pres_plasma_thermal_total_profile195)_ 6.38876641459261882e+05 -Total_plasma_pressure_at_point_196_______________________________________ (pres_plasma_thermal_total_profile196)_ 6.36918848007742083e+05 -Total_plasma_pressure_at_point_197_______________________________________ (pres_plasma_thermal_total_profile197)_ 6.34954736215692596e+05 -Total_plasma_pressure_at_point_198_______________________________________ (pres_plasma_thermal_total_profile198)_ 6.32984361023964011e+05 -Total_plasma_pressure_at_point_199_______________________________________ (pres_plasma_thermal_total_profile199)_ 6.31007777611974743e+05 -Total_plasma_pressure_at_point_200_______________________________________ (pres_plasma_thermal_total_profile200)_ 6.29025041397113353e+05 -Total_plasma_pressure_at_point_201_______________________________________ (pres_plasma_thermal_total_profile201)_ 6.27036208034135750e+05 -Total_plasma_pressure_at_point_202_______________________________________ (pres_plasma_thermal_total_profile202)_ 6.25041333414563676e+05 -Total_plasma_pressure_at_point_203_______________________________________ (pres_plasma_thermal_total_profile203)_ 6.23040473666078644e+05 -Total_plasma_pressure_at_point_204_______________________________________ (pres_plasma_thermal_total_profile204)_ 6.21033685151918093e+05 -Total_plasma_pressure_at_point_205_______________________________________ (pres_plasma_thermal_total_profile205)_ 6.19021024470263626e+05 -Total_plasma_pressure_at_point_206_______________________________________ (pres_plasma_thermal_total_profile206)_ 6.17002548453635303e+05 -Total_plasma_pressure_at_point_207_______________________________________ (pres_plasma_thermal_total_profile207)_ 6.14978314168277895e+05 -Total_plasma_pressure_at_point_208_______________________________________ (pres_plasma_thermal_total_profile208)_ 6.12948378913549241e+05 -Total_plasma_pressure_at_point_209_______________________________________ (pres_plasma_thermal_total_profile209)_ 6.10912800221306505e+05 -Total_plasma_pressure_at_point_210_______________________________________ (pres_plasma_thermal_total_profile210)_ 6.08871635855289642e+05 -Total_plasma_pressure_at_point_211_______________________________________ (pres_plasma_thermal_total_profile211)_ 6.06824943810505443e+05 -Total_plasma_pressure_at_point_212_______________________________________ (pres_plasma_thermal_total_profile212)_ 6.04772782312609721e+05 -Total_plasma_pressure_at_point_213_______________________________________ (pres_plasma_thermal_total_profile213)_ 6.02715209817287046e+05 -Total_plasma_pressure_at_point_214_______________________________________ (pres_plasma_thermal_total_profile214)_ 6.00652285009631072e+05 -Total_plasma_pressure_at_point_215_______________________________________ (pres_plasma_thermal_total_profile215)_ 5.98584066803523572e+05 -Total_plasma_pressure_at_point_216_______________________________________ (pres_plasma_thermal_total_profile216)_ 5.96510614341010572e+05 -Total_plasma_pressure_at_point_217_______________________________________ (pres_plasma_thermal_total_profile217)_ 5.94431986991679762e+05 -Total_plasma_pressure_at_point_218_______________________________________ (pres_plasma_thermal_total_profile218)_ 5.92348244352036854e+05 -Total_plasma_pressure_at_point_219_______________________________________ (pres_plasma_thermal_total_profile219)_ 5.90259446244878811e+05 -Total_plasma_pressure_at_point_220_______________________________________ (pres_plasma_thermal_total_profile220)_ 5.88165652718669735e+05 -Total_plasma_pressure_at_point_221_______________________________________ (pres_plasma_thermal_total_profile221)_ 5.86066924046913628e+05 -Total_plasma_pressure_at_point_222_______________________________________ (pres_plasma_thermal_total_profile222)_ 5.83963320727526909e+05 -Total_plasma_pressure_at_point_223_______________________________________ (pres_plasma_thermal_total_profile223)_ 5.81854903482211870e+05 -Total_plasma_pressure_at_point_224_______________________________________ (pres_plasma_thermal_total_profile224)_ 5.79741733255828498e+05 -Total_plasma_pressure_at_point_225_______________________________________ (pres_plasma_thermal_total_profile225)_ 5.77623871215765597e+05 -Total_plasma_pressure_at_point_226_______________________________________ (pres_plasma_thermal_total_profile226)_ 5.75501378751313430e+05 -Total_plasma_pressure_at_point_227_______________________________________ (pres_plasma_thermal_total_profile227)_ 5.73374317473034142e+05 -Total_plasma_pressure_at_point_228_______________________________________ (pres_plasma_thermal_total_profile228)_ 5.71242749212133698e+05 -Total_plasma_pressure_at_point_229_______________________________________ (pres_plasma_thermal_total_profile229)_ 5.69106736019833479e+05 -Total_plasma_pressure_at_point_230_______________________________________ (pres_plasma_thermal_total_profile230)_ 5.66966340166741400e+05 -Total_plasma_pressure_at_point_231_______________________________________ (pres_plasma_thermal_total_profile231)_ 5.64821624142223736e+05 -Total_plasma_pressure_at_point_232_______________________________________ (pres_plasma_thermal_total_profile232)_ 5.62672650653778692e+05 -Total_plasma_pressure_at_point_233_______________________________________ (pres_plasma_thermal_total_profile233)_ 5.60519482626406476e+05 -Total_plasma_pressure_at_point_234_______________________________________ (pres_plasma_thermal_total_profile234)_ 5.58362183201986132e+05 -Total_plasma_pressure_at_point_235_______________________________________ (pres_plasma_thermal_total_profile235)_ 5.56200815738646314e+05 -Total_plasma_pressure_at_point_236_______________________________________ (pres_plasma_thermal_total_profile236)_ 5.54035443810141878e+05 -Total_plasma_pressure_at_point_237_______________________________________ (pres_plasma_thermal_total_profile237)_ 5.51866131205229321e+05 -Total_plasma_pressure_at_point_238_______________________________________ (pres_plasma_thermal_total_profile238)_ 5.49692941927044303e+05 -Total_plasma_pressure_at_point_239_______________________________________ (pres_plasma_thermal_total_profile239)_ 5.47515940192477545e+05 -Total_plasma_pressure_at_point_240_______________________________________ (pres_plasma_thermal_total_profile240)_ 5.45335190431557479e+05 -Total_plasma_pressure_at_point_241_______________________________________ (pres_plasma_thermal_total_profile241)_ 5.43150757286828710e+05 -Total_plasma_pressure_at_point_242_______________________________________ (pres_plasma_thermal_total_profile242)_ 5.40962705612734891e+05 -Total_plasma_pressure_at_point_243_______________________________________ (pres_plasma_thermal_total_profile243)_ 5.38771100475004525e+05 -Total_plasma_pressure_at_point_244_______________________________________ (pres_plasma_thermal_total_profile244)_ 5.36576007150035352e+05 -Total_plasma_pressure_at_point_245_______________________________________ (pres_plasma_thermal_total_profile245)_ 5.34377491124283639e+05 -Total_plasma_pressure_at_point_246_______________________________________ (pres_plasma_thermal_total_profile246)_ 5.32175618093654863e+05 -Total_plasma_pressure_at_point_247_______________________________________ (pres_plasma_thermal_total_profile247)_ 5.29970453962895786e+05 -Total_plasma_pressure_at_point_248_______________________________________ (pres_plasma_thermal_total_profile248)_ 5.27762064844990848e+05 -Total_plasma_pressure_at_point_249_______________________________________ (pres_plasma_thermal_total_profile249)_ 5.25550517060560058e+05 -Total_plasma_pressure_at_point_250_______________________________________ (pres_plasma_thermal_total_profile250)_ 5.23335877137260395e+05 -Total_plasma_pressure_at_point_251_______________________________________ (pres_plasma_thermal_total_profile251)_ 5.21118211809189292e+05 -Total_plasma_pressure_at_point_252_______________________________________ (pres_plasma_thermal_total_profile252)_ 5.18897588016294467e+05 -Total_plasma_pressure_at_point_253_______________________________________ (pres_plasma_thermal_total_profile253)_ 5.16674072903781547e+05 -Total_plasma_pressure_at_point_254_______________________________________ (pres_plasma_thermal_total_profile254)_ 5.14447733821532514e+05 -Total_plasma_pressure_at_point_255_______________________________________ (pres_plasma_thermal_total_profile255)_ 5.12218638323522115e+05 -Total_plasma_pressure_at_point_256_______________________________________ (pres_plasma_thermal_total_profile256)_ 5.09986854167242185e+05 -Total_plasma_pressure_at_point_257_______________________________________ (pres_plasma_thermal_total_profile257)_ 5.07752449313127378e+05 -Total_plasma_pressure_at_point_258_______________________________________ (pres_plasma_thermal_total_profile258)_ 5.05515491923988913e+05 -Total_plasma_pressure_at_point_259_______________________________________ (pres_plasma_thermal_total_profile259)_ 5.03276050364449737e+05 -Total_plasma_pressure_at_point_260_______________________________________ (pres_plasma_thermal_total_profile260)_ 5.01034193200387468e+05 -Total_plasma_pressure_at_point_261_______________________________________ (pres_plasma_thermal_total_profile261)_ 4.98789989198380150e+05 -Total_plasma_pressure_at_point_262_______________________________________ (pres_plasma_thermal_total_profile262)_ 4.96543507325160899e+05 -Total_plasma_pressure_at_point_263_______________________________________ (pres_plasma_thermal_total_profile263)_ 4.94294816747074132e+05 -Total_plasma_pressure_at_point_264_______________________________________ (pres_plasma_thermal_total_profile264)_ 4.92043986829542904e+05 -Total_plasma_pressure_at_point_265_______________________________________ (pres_plasma_thermal_total_profile265)_ 4.89791087136537535e+05 -Total_plasma_pressure_at_point_266_______________________________________ (pres_plasma_thermal_total_profile266)_ 4.87536187430055346e+05 -Total_plasma_pressure_at_point_267_______________________________________ (pres_plasma_thermal_total_profile267)_ 4.85279357669604186e+05 -Total_plasma_pressure_at_point_268_______________________________________ (pres_plasma_thermal_total_profile268)_ 4.83020668011696660e+05 -Total_plasma_pressure_at_point_269_______________________________________ (pres_plasma_thermal_total_profile269)_ 4.80760188809347106e+05 -Total_plasma_pressure_at_point_270_______________________________________ (pres_plasma_thermal_total_profile270)_ 4.78497990611582529e+05 -Total_plasma_pressure_at_point_271_______________________________________ (pres_plasma_thermal_total_profile271)_ 4.76234144162956625e+05 -Total_plasma_pressure_at_point_272_______________________________________ (pres_plasma_thermal_total_profile272)_ 4.73968720403075975e+05 -Total_plasma_pressure_at_point_273_______________________________________ (pres_plasma_thermal_total_profile273)_ 4.71701790466133913e+05 -Total_plasma_pressure_at_point_274_______________________________________ (pres_plasma_thermal_total_profile274)_ 4.69433425680454005e+05 -Total_plasma_pressure_at_point_275_______________________________________ (pres_plasma_thermal_total_profile275)_ 4.67163697568042728e+05 -Total_plasma_pressure_at_point_276_______________________________________ (pres_plasma_thermal_total_profile276)_ 4.64892677844154532e+05 -Total_plasma_pressure_at_point_277_______________________________________ (pres_plasma_thermal_total_profile277)_ 4.62620438416864490e+05 -Total_plasma_pressure_at_point_278_______________________________________ (pres_plasma_thermal_total_profile278)_ 4.60347051386655658e+05 -Total_plasma_pressure_at_point_279_______________________________________ (pres_plasma_thermal_total_profile279)_ 4.58072589046013891e+05 -Total_plasma_pressure_at_point_280_______________________________________ (pres_plasma_thermal_total_profile280)_ 4.55797123879039078e+05 -Total_plasma_pressure_at_point_281_______________________________________ (pres_plasma_thermal_total_profile281)_ 4.53520728561064578e+05 -Total_plasma_pressure_at_point_282_______________________________________ (pres_plasma_thermal_total_profile282)_ 4.51243475958293304e+05 -Total_plasma_pressure_at_point_283_______________________________________ (pres_plasma_thermal_total_profile283)_ 4.48965439127445279e+05 -Total_plasma_pressure_at_point_284_______________________________________ (pres_plasma_thermal_total_profile284)_ 4.46686691315418691e+05 -Total_plasma_pressure_at_point_285_______________________________________ (pres_plasma_thermal_total_profile285)_ 4.44407305958968820e+05 -Total_plasma_pressure_at_point_286_______________________________________ (pres_plasma_thermal_total_profile286)_ 4.42127356684397382e+05 -Total_plasma_pressure_at_point_287_______________________________________ (pres_plasma_thermal_total_profile287)_ 4.39846917307262192e+05 -Total_plasma_pressure_at_point_288_______________________________________ (pres_plasma_thermal_total_profile288)_ 4.37566061832098814e+05 -Total_plasma_pressure_at_point_289_______________________________________ (pres_plasma_thermal_total_profile289)_ 4.35284864452163805e+05 -Total_plasma_pressure_at_point_290_______________________________________ (pres_plasma_thermal_total_profile290)_ 4.33003399549190945e+05 -Total_plasma_pressure_at_point_291_______________________________________ (pres_plasma_thermal_total_profile291)_ 4.30721741693170276e+05 -Total_plasma_pressure_at_point_292_______________________________________ (pres_plasma_thermal_total_profile292)_ 4.28439965642140713e+05 -Total_plasma_pressure_at_point_293_______________________________________ (pres_plasma_thermal_total_profile293)_ 4.26158146342008957e+05 -Total_plasma_pressure_at_point_294_______________________________________ (pres_plasma_thermal_total_profile294)_ 4.23876358926382614e+05 -Total_plasma_pressure_at_point_295_______________________________________ (pres_plasma_thermal_total_profile295)_ 4.21594678716428112e+05 -Total_plasma_pressure_at_point_296_______________________________________ (pres_plasma_thermal_total_profile296)_ 4.19313181220750092e+05 -Total_plasma_pressure_at_point_297_______________________________________ (pres_plasma_thermal_total_profile297)_ 4.17031942135293037e+05 -Total_plasma_pressure_at_point_298_______________________________________ (pres_plasma_thermal_total_profile298)_ 4.14751037343265489e+05 -Total_plasma_pressure_at_point_299_______________________________________ (pres_plasma_thermal_total_profile299)_ 4.12470542915092257e+05 -Total_plasma_pressure_at_point_300_______________________________________ (pres_plasma_thermal_total_profile300)_ 4.10190535108387878e+05 -Total_plasma_pressure_at_point_301_______________________________________ (pres_plasma_thermal_total_profile301)_ 4.07911090367959929e+05 -Total_plasma_pressure_at_point_302_______________________________________ (pres_plasma_thermal_total_profile302)_ 4.05632285325837263e+05 -Total_plasma_pressure_at_point_303_______________________________________ (pres_plasma_thermal_total_profile303)_ 4.03354196801328217e+05 -Total_plasma_pressure_at_point_304_______________________________________ (pres_plasma_thermal_total_profile304)_ 4.01076901801107335e+05 -Total_plasma_pressure_at_point_305_______________________________________ (pres_plasma_thermal_total_profile305)_ 3.98800477519333945e+05 -Total_plasma_pressure_at_point_306_______________________________________ (pres_plasma_thermal_total_profile306)_ 3.96525001337800175e+05 -Total_plasma_pressure_at_point_307_______________________________________ (pres_plasma_thermal_total_profile307)_ 3.94250550826114602e+05 -Total_plasma_pressure_at_point_308_______________________________________ (pres_plasma_thermal_total_profile308)_ 3.91977203741916921e+05 -Total_plasma_pressure_at_point_309_______________________________________ (pres_plasma_thermal_total_profile309)_ 3.89705038031131378e+05 -Total_plasma_pressure_at_point_310_______________________________________ (pres_plasma_thermal_total_profile310)_ 3.87434131828253507e+05 -Total_plasma_pressure_at_point_311_______________________________________ (pres_plasma_thermal_total_profile311)_ 3.85164563456678297e+05 -Total_plasma_pressure_at_point_312_______________________________________ (pres_plasma_thermal_total_profile312)_ 3.82896411429063301e+05 -Total_plasma_pressure_at_point_313_______________________________________ (pres_plasma_thermal_total_profile313)_ 3.80629754447738349e+05 -Total_plasma_pressure_at_point_314_______________________________________ (pres_plasma_thermal_total_profile314)_ 3.78364671405152068e+05 -Total_plasma_pressure_at_point_315_______________________________________ (pres_plasma_thermal_total_profile315)_ 3.76101241384367051e+05 -Total_plasma_pressure_at_point_316_______________________________________ (pres_plasma_thermal_total_profile316)_ 3.73839543659597170e+05 -Total_plasma_pressure_at_point_317_______________________________________ (pres_plasma_thermal_total_profile317)_ 3.71579657696794660e+05 -Total_plasma_pressure_at_point_318_______________________________________ (pres_plasma_thermal_total_profile318)_ 3.69321663154284819e+05 -Total_plasma_pressure_at_point_319_______________________________________ (pres_plasma_thermal_total_profile319)_ 3.67065639883453317e+05 -Total_plasma_pressure_at_point_320_______________________________________ (pres_plasma_thermal_total_profile320)_ 3.64811667929484043e+05 -Total_plasma_pressure_at_point_321_______________________________________ (pres_plasma_thermal_total_profile321)_ 3.62559827532154392e+05 -Total_plasma_pressure_at_point_322_______________________________________ (pres_plasma_thermal_total_profile322)_ 3.60310199126685970e+05 -Total_plasma_pressure_at_point_323_______________________________________ (pres_plasma_thermal_total_profile323)_ 3.58062863344655139e+05 -Total_plasma_pressure_at_point_324_______________________________________ (pres_plasma_thermal_total_profile324)_ 3.55817901014964562e+05 -Total_plasma_pressure_at_point_325_______________________________________ (pres_plasma_thermal_total_profile325)_ 3.53575393164878653e+05 -Total_plasma_pressure_at_point_326_______________________________________ (pres_plasma_thermal_total_profile326)_ 3.51335421021125396e+05 -Total_plasma_pressure_at_point_327_______________________________________ (pres_plasma_thermal_total_profile327)_ 3.49098066011066898e+05 -Total_plasma_pressure_at_point_328_______________________________________ (pres_plasma_thermal_total_profile328)_ 3.46863409763940668e+05 -Total_plasma_pressure_at_point_329_______________________________________ (pres_plasma_thermal_total_profile329)_ 3.44631534112176276e+05 -Total_plasma_pressure_at_point_330_______________________________________ (pres_plasma_thermal_total_profile330)_ 3.42402521092787036e+05 -Total_plasma_pressure_at_point_331_______________________________________ (pres_plasma_thermal_total_profile331)_ 3.40176452948844759e+05 -Total_plasma_pressure_at_point_332_______________________________________ (pres_plasma_thermal_total_profile332)_ 3.37953412131033547e+05 -Total_plasma_pressure_at_point_333_______________________________________ (pres_plasma_thermal_total_profile333)_ 3.35733481299294275e+05 -Total_plasma_pressure_at_point_334_______________________________________ (pres_plasma_thermal_total_profile334)_ 3.33516743324554816e+05 -Total_plasma_pressure_at_point_335_______________________________________ (pres_plasma_thermal_total_profile335)_ 3.31303281290557003e+05 -Total_plasma_pressure_at_point_336_______________________________________ (pres_plasma_thermal_total_profile336)_ 3.29093178495778120e+05 -Total_plasma_pressure_at_point_337_______________________________________ (pres_plasma_thermal_total_profile337)_ 3.26886518455454614e+05 -Total_plasma_pressure_at_point_338_______________________________________ (pres_plasma_thermal_total_profile338)_ 3.24683384903709986e+05 -Total_plasma_pressure_at_point_339_______________________________________ (pres_plasma_thermal_total_profile339)_ 3.22483861795792298e+05 -Total_plasma_pressure_at_point_340_______________________________________ (pres_plasma_thermal_total_profile340)_ 3.20288033310424536e+05 -Total_plasma_pressure_at_point_341_______________________________________ (pres_plasma_thermal_total_profile341)_ 3.18095983852273901e+05 -Total_plasma_pressure_at_point_342_______________________________________ (pres_plasma_thermal_total_profile342)_ 3.15907798054543091e+05 -Total_plasma_pressure_at_point_343_______________________________________ (pres_plasma_thermal_total_profile343)_ 3.13723560781690059e+05 -Total_plasma_pressure_at_point_344_______________________________________ (pres_plasma_thermal_total_profile344)_ 3.11543357132281642e+05 -Total_plasma_pressure_at_point_345_______________________________________ (pres_plasma_thermal_total_profile345)_ 3.09367272441982932e+05 -Total_plasma_pressure_at_point_346_______________________________________ (pres_plasma_thermal_total_profile346)_ 3.07195392286695889e+05 -Total_plasma_pressure_at_point_347_______________________________________ (pres_plasma_thermal_total_profile347)_ 3.05027802485843538e+05 -Total_plasma_pressure_at_point_348_______________________________________ (pres_plasma_thermal_total_profile348)_ 3.02864589105814113e+05 -Total_plasma_pressure_at_point_349_______________________________________ (pres_plasma_thermal_total_profile349)_ 3.00705838463567779e+05 -Total_plasma_pressure_at_point_350_______________________________________ (pres_plasma_thermal_total_profile350)_ 2.98551637130413204e+05 -Total_plasma_pressure_at_point_351_______________________________________ (pres_plasma_thermal_total_profile351)_ 2.96402071935961489e+05 -Total_plasma_pressure_at_point_352_______________________________________ (pres_plasma_thermal_total_profile352)_ 2.94257229972267291e+05 -Total_plasma_pressure_at_point_353_______________________________________ (pres_plasma_thermal_total_profile353)_ 2.92117198598160292e+05 -Total_plasma_pressure_at_point_354_______________________________________ (pres_plasma_thermal_total_profile354)_ 2.89982065443780972e+05 -Total_plasma_pressure_at_point_355_______________________________________ (pres_plasma_thermal_total_profile355)_ 2.87851918415325054e+05 -Total_plasma_pressure_at_point_356_______________________________________ (pres_plasma_thermal_total_profile356)_ 2.85726845700008445e+05 -Total_plasma_pressure_at_point_357_______________________________________ (pres_plasma_thermal_total_profile357)_ 2.83606935771261808e+05 -Total_plasma_pressure_at_point_358_______________________________________ (pres_plasma_thermal_total_profile358)_ 2.81492277394163888e+05 -Total_plasma_pressure_at_point_359_______________________________________ (pres_plasma_thermal_total_profile359)_ 2.79382959631126374e+05 -Total_plasma_pressure_at_point_360_______________________________________ (pres_plasma_thermal_total_profile360)_ 2.77279071847840853e+05 -Total_plasma_pressure_at_point_361_______________________________________ (pres_plasma_thermal_total_profile361)_ 2.75180703719497076e+05 -Total_plasma_pressure_at_point_362_______________________________________ (pres_plasma_thermal_total_profile362)_ 2.73087945237291045e+05 -Total_plasma_pressure_at_point_363_______________________________________ (pres_plasma_thermal_total_profile363)_ 2.71000886715229135e+05 -Total_plasma_pressure_at_point_364_______________________________________ (pres_plasma_thermal_total_profile364)_ 2.68919618797248637e+05 -Total_plasma_pressure_at_point_365_______________________________________ (pres_plasma_thermal_total_profile365)_ 2.66844232464664092e+05 -Total_plasma_pressure_at_point_366_______________________________________ (pres_plasma_thermal_total_profile366)_ 2.64774819043958676e+05 -Total_plasma_pressure_at_point_367_______________________________________ (pres_plasma_thermal_total_profile367)_ 2.62711470214934612e+05 -Total_plasma_pressure_at_point_368_______________________________________ (pres_plasma_thermal_total_profile368)_ 2.60654278019242280e+05 -Total_plasma_pressure_at_point_369_______________________________________ (pres_plasma_thermal_total_profile369)_ 2.58603334869302751e+05 -Total_plasma_pressure_at_point_370_______________________________________ (pres_plasma_thermal_total_profile370)_ 2.56558733557646890e+05 -Total_plasma_pressure_at_point_371_______________________________________ (pres_plasma_thermal_total_profile371)_ 2.54520567266688508e+05 -Total_plasma_pressure_at_point_372_______________________________________ (pres_plasma_thermal_total_profile372)_ 2.52488929578955111e+05 -Total_plasma_pressure_at_point_373_______________________________________ (pres_plasma_thermal_total_profile373)_ 2.50463914487797010e+05 -Total_plasma_pressure_at_point_374_______________________________________ (pres_plasma_thermal_total_profile374)_ 2.48445616408602044e+05 -Total_plasma_pressure_at_point_375_______________________________________ (pres_plasma_thermal_total_profile375)_ 2.46434130190537195e+05 -Total_plasma_pressure_at_point_376_______________________________________ (pres_plasma_thermal_total_profile376)_ 2.44429551128849242e+05 -Total_plasma_pressure_at_point_377_______________________________________ (pres_plasma_thermal_total_profile377)_ 2.42431974977748177e+05 -Total_plasma_pressure_at_point_378_______________________________________ (pres_plasma_thermal_total_profile378)_ 2.40441497963909118e+05 -Total_plasma_pressure_at_point_379_______________________________________ (pres_plasma_thermal_total_profile379)_ 2.38458216800620663e+05 -Total_plasma_pressure_at_point_380_______________________________________ (pres_plasma_thermal_total_profile380)_ 2.36482228702616791e+05 -Total_plasma_pressure_at_point_381_______________________________________ (pres_plasma_thermal_total_profile381)_ 2.34513631401628780e+05 -Total_plasma_pressure_at_point_382_______________________________________ (pres_plasma_thermal_total_profile382)_ 2.32552523162694997e+05 -Total_plasma_pressure_at_point_383_______________________________________ (pres_plasma_thermal_total_profile383)_ 2.30599002801271563e+05 -Total_plasma_pressure_at_point_384_______________________________________ (pres_plasma_thermal_total_profile384)_ 2.28653169701187173e+05 -Total_plasma_pressure_at_point_385_______________________________________ (pres_plasma_thermal_total_profile385)_ 2.26715123833490186e+05 -Total_plasma_pressure_at_point_386_______________________________________ (pres_plasma_thermal_total_profile386)_ 2.24784965776237019e+05 -Total_plasma_pressure_at_point_387_______________________________________ (pres_plasma_thermal_total_profile387)_ 2.22862796735277516e+05 -Total_plasma_pressure_at_point_388_______________________________________ (pres_plasma_thermal_total_profile388)_ 2.20948718566093186e+05 -Total_plasma_pressure_at_point_389_______________________________________ (pres_plasma_thermal_total_profile389)_ 2.19042833796750929e+05 -Total_plasma_pressure_at_point_390_______________________________________ (pres_plasma_thermal_total_profile390)_ 2.17145245652036392e+05 -Total_plasma_pressure_at_point_391_______________________________________ (pres_plasma_thermal_total_profile391)_ 2.15256058078840200e+05 -Total_plasma_pressure_at_point_392_______________________________________ (pres_plasma_thermal_total_profile392)_ 2.13375375772868691e+05 -Total_plasma_pressure_at_point_393_______________________________________ (pres_plasma_thermal_total_profile393)_ 2.11503304206765199e+05 -Total_plasma_pressure_at_point_394_______________________________________ (pres_plasma_thermal_total_profile394)_ 2.09639949659722508e+05 -Total_plasma_pressure_at_point_395_______________________________________ (pres_plasma_thermal_total_profile395)_ 2.07785419248686405e+05 -Total_plasma_pressure_at_point_396_______________________________________ (pres_plasma_thermal_total_profile396)_ 2.05939820961245627e+05 -Total_plasma_pressure_at_point_397_______________________________________ (pres_plasma_thermal_total_profile397)_ 2.04103263690319611e+05 -Total_plasma_pressure_at_point_398_______________________________________ (pres_plasma_thermal_total_profile398)_ 2.02275857270758570e+05 -Total_plasma_pressure_at_point_399_______________________________________ (pres_plasma_thermal_total_profile399)_ 2.00457712517983338e+05 -Total_plasma_pressure_at_point_400_______________________________________ (pres_plasma_thermal_total_profile400)_ 1.98648941268798138e+05 -Total_plasma_pressure_at_point_401_______________________________________ (pres_plasma_thermal_total_profile401)_ 1.96849656424526416e+05 -Total_plasma_pressure_at_point_402_______________________________________ (pres_plasma_thermal_total_profile402)_ 1.95059971996623994e+05 -Total_plasma_pressure_at_point_403_______________________________________ (pres_plasma_thermal_total_profile403)_ 1.93280003154945734e+05 -Total_plasma_pressure_at_point_404_______________________________________ (pres_plasma_thermal_total_profile404)_ 1.91509866278847796e+05 -Total_plasma_pressure_at_point_405_______________________________________ (pres_plasma_thermal_total_profile405)_ 1.89749679011331056e+05 -Total_plasma_pressure_at_point_406_______________________________________ (pres_plasma_thermal_total_profile406)_ 1.87999560316442279e+05 -Total_plasma_pressure_at_point_407_______________________________________ (pres_plasma_thermal_total_profile407)_ 1.86259630540174636e+05 -Total_plasma_pressure_at_point_408_______________________________________ (pres_plasma_thermal_total_profile408)_ 1.84530011475124658e+05 -Total_plasma_pressure_at_point_409_______________________________________ (pres_plasma_thermal_total_profile409)_ 1.82810826429193636e+05 -Total_plasma_pressure_at_point_410_______________________________________ (pres_plasma_thermal_total_profile410)_ 1.81102200298638490e+05 -Total_plasma_pressure_at_point_411_______________________________________ (pres_plasma_thermal_total_profile411)_ 1.79404259645815997e+05 -Total_plasma_pressure_at_point_412_______________________________________ (pres_plasma_thermal_total_profile412)_ 1.77717132781986787e+05 -Total_plasma_pressure_at_point_413_______________________________________ (pres_plasma_thermal_total_profile413)_ 1.76040949855591636e+05 -Total_plasma_pressure_at_point_414_______________________________________ (pres_plasma_thermal_total_profile414)_ 1.74375842946441990e+05 -Total_plasma_pressure_at_point_415_______________________________________ (pres_plasma_thermal_total_profile415)_ 1.72721946166321286e+05 -Total_plasma_pressure_at_point_416_______________________________________ (pres_plasma_thermal_total_profile416)_ 1.71079395766536240e+05 -Total_plasma_pressure_at_point_417_______________________________________ (pres_plasma_thermal_total_profile417)_ 1.69448330253018765e+05 -Total_plasma_pressure_at_point_418_______________________________________ (pres_plasma_thermal_total_profile418)_ 1.67828890509638702e+05 -Total_plasma_pressure_at_point_419_______________________________________ (pres_plasma_thermal_total_profile419)_ 1.66221219930462132e+05 -Total_plasma_pressure_at_point_420_______________________________________ (pres_plasma_thermal_total_profile420)_ 1.64625464561767352e+05 -Total_plasma_pressure_at_point_421_______________________________________ (pres_plasma_thermal_total_profile421)_ 1.63041773254724161e+05 -Total_plasma_pressure_at_point_422_______________________________________ (pres_plasma_thermal_total_profile422)_ 1.61470297829743766e+05 -Total_plasma_pressure_at_point_423_______________________________________ (pres_plasma_thermal_total_profile423)_ 1.59911193253625795e+05 -Total_plasma_pressure_at_point_424_______________________________________ (pres_plasma_thermal_total_profile424)_ 1.58364617830759176e+05 -Total_plasma_pressure_at_point_425_______________________________________ (pres_plasma_thermal_total_profile425)_ 1.56830733409792359e+05 -Total_plasma_pressure_at_point_426_______________________________________ (pres_plasma_thermal_total_profile426)_ 1.55309705607357202e+05 -Total_plasma_pressure_at_point_427_______________________________________ (pres_plasma_thermal_total_profile427)_ 1.53801704050636530e+05 -Total_plasma_pressure_at_point_428_______________________________________ (pres_plasma_thermal_total_profile428)_ 1.52306902640797431e+05 -Total_plasma_pressure_at_point_429_______________________________________ (pres_plasma_thermal_total_profile429)_ 1.50825479839576641e+05 -Total_plasma_pressure_at_point_430_______________________________________ (pres_plasma_thermal_total_profile430)_ 1.49357618981622334e+05 -Total_plasma_pressure_at_point_431_______________________________________ (pres_plasma_thermal_total_profile431)_ 1.47903508615551720e+05 -Total_plasma_pressure_at_point_432_______________________________________ (pres_plasma_thermal_total_profile432)_ 1.46463342877114599e+05 -Total_plasma_pressure_at_point_433_______________________________________ (pres_plasma_thermal_total_profile433)_ 1.45037321898342023e+05 -Total_plasma_pressure_at_point_434_______________________________________ (pres_plasma_thermal_total_profile434)_ 1.43625652257150272e+05 -Total_plasma_pressure_at_point_435_______________________________________ (pres_plasma_thermal_total_profile435)_ 1.42228547472554957e+05 -Total_plasma_pressure_at_point_436_______________________________________ (pres_plasma_thermal_total_profile436)_ 1.40846228551475768e+05 -Total_plasma_pressure_at_point_437_______________________________________ (pres_plasma_thermal_total_profile437)_ 1.39478924594083044e+05 -Total_plasma_pressure_at_point_438_______________________________________ (pres_plasma_thermal_total_profile438)_ 1.38126873465817102e+05 -Total_plasma_pressure_at_point_439_______________________________________ (pres_plasma_thermal_total_profile439)_ 1.36790322545614705e+05 -Total_plasma_pressure_at_point_440_______________________________________ (pres_plasma_thermal_total_profile440)_ 1.35469529561591335e+05 -Total_plasma_pressure_at_point_441_______________________________________ (pres_plasma_thermal_total_profile441)_ 1.34164763527506555e+05 -Total_plasma_pressure_at_point_442_______________________________________ (pres_plasma_thermal_total_profile442)_ 1.32876305795892666e+05 -Total_plasma_pressure_at_point_443_______________________________________ (pres_plasma_thermal_total_profile443)_ 1.31604451246869226e+05 -Total_plasma_pressure_at_point_444_______________________________________ (pres_plasma_thermal_total_profile444)_ 1.30349509635579161e+05 -Total_plasma_pressure_at_point_445_______________________________________ (pres_plasma_thermal_total_profile445)_ 1.29111807126064596e+05 -Total_plasma_pressure_at_point_446_______________________________________ (pres_plasma_thermal_total_profile446)_ 1.27891688045571471e+05 -Total_plasma_pressure_at_point_447_______________________________________ (pres_plasma_thermal_total_profile447)_ 1.26689516901111609e+05 -Total_plasma_pressure_at_point_448_______________________________________ (pres_plasma_thermal_total_profile448)_ 1.25505680710180488e+05 -Total_plasma_pressure_at_point_449_______________________________________ (pres_plasma_thermal_total_profile449)_ 1.24340591710578243e+05 -Total_plasma_pressure_at_point_450_______________________________________ (pres_plasma_thermal_total_profile450)_ 1.23194690531389759e+05 -Total_plasma_pressure_at_point_451_______________________________________ (pres_plasma_thermal_total_profile451)_ 1.22068449929854629e+05 -Total_plasma_pressure_at_point_452_______________________________________ (pres_plasma_thermal_total_profile452)_ 1.20962379229315527e+05 -Total_plasma_pressure_at_point_453_______________________________________ (pres_plasma_thermal_total_profile453)_ 1.19877029634905222e+05 -Total_plasma_pressure_at_point_454_______________________________________ (pres_plasma_thermal_total_profile454)_ 1.18813000660988764e+05 -Total_plasma_pressure_at_point_455_______________________________________ (pres_plasma_thermal_total_profile455)_ 1.17770947985056147e+05 -Total_plasma_pressure_at_point_456_______________________________________ (pres_plasma_thermal_total_profile456)_ 1.16751593158428761e+05 -Total_plasma_pressure_at_point_457_______________________________________ (pres_plasma_thermal_total_profile457)_ 1.15755735773516499e+05 -Total_plasma_pressure_at_point_458_______________________________________ (pres_plasma_thermal_total_profile458)_ 1.14784268941418559e+05 -Total_plasma_pressure_at_point_459_______________________________________ (pres_plasma_thermal_total_profile459)_ 1.13838199325230933e+05 -Total_plasma_pressure_at_point_460_______________________________________ (pres_plasma_thermal_total_profile460)_ 1.12918673597161105e+05 -Total_plasma_pressure_at_point_461_______________________________________ (pres_plasma_thermal_total_profile461)_ 1.12027014214525378e+05 -Total_plasma_pressure_at_point_462_______________________________________ (pres_plasma_thermal_total_profile462)_ 1.11164769177287701e+05 -Total_plasma_pressure_at_point_463_______________________________________ (pres_plasma_thermal_total_profile463)_ 1.10333783631448328e+05 -Total_plasma_pressure_at_point_464_______________________________________ (pres_plasma_thermal_total_profile464)_ 1.09536307354235221e+05 -Total_plasma_pressure_at_point_465_______________________________________ (pres_plasma_thermal_total_profile465)_ 1.08775165016310144e+05 -Total_plasma_pressure_at_point_466_______________________________________ (pres_plasma_thermal_total_profile466)_ 1.08054045744652933e+05 -Total_plasma_pressure_at_point_467_______________________________________ (pres_plasma_thermal_total_profile467)_ 1.07378046748679670e+05 -Total_plasma_pressure_at_point_468_______________________________________ (pres_plasma_thermal_total_profile468)_ 1.06754857928497426e+05 -Total_plasma_pressure_at_point_469_______________________________________ (pres_plasma_thermal_total_profile469)_ 1.06198110870042234e+05 -Total_plasma_pressure_at_point_470_______________________________________ (pres_plasma_thermal_total_profile470)_ 1.05748025848155230e+05 -Total_plasma_pressure_at_point_471_______________________________________ (pres_plasma_thermal_total_profile471)_ 1.00883239660830484e+05 -Total_plasma_pressure_at_point_472_______________________________________ (pres_plasma_thermal_total_profile472)_ 9.61134570475297223e+04 -Total_plasma_pressure_at_point_473_______________________________________ (pres_plasma_thermal_total_profile473)_ 9.14386780082529876e+04 -Total_plasma_pressure_at_point_474_______________________________________ (pres_plasma_thermal_total_profile474)_ 8.68589025430002803e+04 -Total_plasma_pressure_at_point_475_______________________________________ (pres_plasma_thermal_total_profile475)_ 8.23741306517715420e+04 -Total_plasma_pressure_at_point_476_______________________________________ (pres_plasma_thermal_total_profile476)_ 7.79843623345668311e+04 -Total_plasma_pressure_at_point_477_______________________________________ (pres_plasma_thermal_total_profile477)_ 7.36895975913861475e+04 -Total_plasma_pressure_at_point_478_______________________________________ (pres_plasma_thermal_total_profile478)_ 6.94898364222294767e+04 -Total_plasma_pressure_at_point_479_______________________________________ (pres_plasma_thermal_total_profile479)_ 6.53850788270967969e+04 -Total_plasma_pressure_at_point_480_______________________________________ (pres_plasma_thermal_total_profile480)_ 6.13753248059881444e+04 -Total_plasma_pressure_at_point_481_______________________________________ (pres_plasma_thermal_total_profile481)_ 5.74605743589034828e+04 -Total_plasma_pressure_at_point_482_______________________________________ (pres_plasma_thermal_total_profile482)_ 5.36408274858428631e+04 -Total_plasma_pressure_at_point_483_______________________________________ (pres_plasma_thermal_total_profile483)_ 4.99160841868062416e+04 -Total_plasma_pressure_at_point_484_______________________________________ (pres_plasma_thermal_total_profile484)_ 4.62863444617936257e+04 -Total_plasma_pressure_at_point_485_______________________________________ (pres_plasma_thermal_total_profile485)_ 4.27516083108050079e+04 -Total_plasma_pressure_at_point_486_______________________________________ (pres_plasma_thermal_total_profile486)_ 3.93118757338404102e+04 -Total_plasma_pressure_at_point_487_______________________________________ (pres_plasma_thermal_total_profile487)_ 3.59671467308998326e+04 -Total_plasma_pressure_at_point_488_______________________________________ (pres_plasma_thermal_total_profile488)_ 3.27174213019832605e+04 -Total_plasma_pressure_at_point_489_______________________________________ (pres_plasma_thermal_total_profile489)_ 2.95626994470906939e+04 -Total_plasma_pressure_at_point_490_______________________________________ (pres_plasma_thermal_total_profile490)_ 2.65029811662221546e+04 -Total_plasma_pressure_at_point_491_______________________________________ (pres_plasma_thermal_total_profile491)_ 2.35382664593776135e+04 -Total_plasma_pressure_at_point_492_______________________________________ (pres_plasma_thermal_total_profile492)_ 2.06685553265570852e+04 -Total_plasma_pressure_at_point_493_______________________________________ (pres_plasma_thermal_total_profile493)_ 1.78938477677605770e+04 -Total_plasma_pressure_at_point_494_______________________________________ (pres_plasma_thermal_total_profile494)_ 1.52141437829880706e+04 -Total_plasma_pressure_at_point_495_______________________________________ (pres_plasma_thermal_total_profile495)_ 1.26294433722395770e+04 -Total_plasma_pressure_at_point_496_______________________________________ (pres_plasma_thermal_total_profile496)_ 1.01397465355150944e+04 -Total_plasma_pressure_at_point_497_______________________________________ (pres_plasma_thermal_total_profile497)_ 7.74505327281462087e+03 -Total_plasma_pressure_at_point_498_______________________________________ (pres_plasma_thermal_total_profile498)_ 5.44536358413816288e+03 -Total_plasma_pressure_at_point_499_______________________________________ (pres_plasma_thermal_total_profile499)_ 3.24067746948571266e+03 -Total_plasma_pressure_at_point_500_______________________________________ (pres_plasma_thermal_total_profile500)_ 1.13099492885727523e+03 -Total_plasma_electron_pressure_at_point_0________________________________ (pres_plasma_electron_profile0)_ 4.49743342242376239e+05 -Total_plasma_electron_pressure_at_point_1________________________________ (pres_plasma_electron_profile1)_ 4.49740186343193171e+05 -Total_plasma_electron_pressure_at_point_2________________________________ (pres_plasma_electron_profile2)_ 4.49730718725352199e+05 -Total_plasma_electron_pressure_at_point_3________________________________ (pres_plasma_electron_profile3)_ 4.49714939627975516e+05 -Total_plasma_electron_pressure_at_point_4________________________________ (pres_plasma_electron_profile4)_ 4.49692849449598230e+05 -Total_plasma_electron_pressure_at_point_5________________________________ (pres_plasma_electron_profile5)_ 4.49664448748163355e+05 -Total_plasma_electron_pressure_at_point_6________________________________ (pres_plasma_electron_profile6)_ 4.49629738241015177e+05 -Total_plasma_electron_pressure_at_point_7________________________________ (pres_plasma_electron_profile7)_ 4.49588718804893375e+05 -Total_plasma_electron_pressure_at_point_8________________________________ (pres_plasma_electron_profile8)_ 4.49541391475921671e+05 -Total_plasma_electron_pressure_at_point_9________________________________ (pres_plasma_electron_profile9)_ 4.49487757449597993e+05 -Total_plasma_electron_pressure_at_point_10_______________________________ (pres_plasma_electron_profile10)_ 4.49427818080781377e+05 -Total_plasma_electron_pressure_at_point_11_______________________________ (pres_plasma_electron_profile11)_ 4.49361574883677182e+05 -Total_plasma_electron_pressure_at_point_12_______________________________ (pres_plasma_electron_profile12)_ 4.49289029531821026e+05 -Total_plasma_electron_pressure_at_point_13_______________________________ (pres_plasma_electron_profile13)_ 4.49210183858061268e+05 -Total_plasma_electron_pressure_at_point_14_______________________________ (pres_plasma_electron_profile14)_ 4.49125039854538452e+05 -Total_plasma_electron_pressure_at_point_15_______________________________ (pres_plasma_electron_profile15)_ 4.49033599672664946e+05 -Total_plasma_electron_pressure_at_point_16_______________________________ (pres_plasma_electron_profile16)_ 4.48935865623101301e+05 -Total_plasma_electron_pressure_at_point_17_______________________________ (pres_plasma_electron_profile17)_ 4.48831840175731690e+05 -Total_plasma_electron_pressure_at_point_18_______________________________ (pres_plasma_electron_profile18)_ 4.48721525959637540e+05 -Total_plasma_electron_pressure_at_point_19_______________________________ (pres_plasma_electron_profile19)_ 4.48604925763069186e+05 -Total_plasma_electron_pressure_at_point_20_______________________________ (pres_plasma_electron_profile20)_ 4.48482042533415661e+05 -Total_plasma_electron_pressure_at_point_21_______________________________ (pres_plasma_electron_profile21)_ 4.48352879377174308e+05 -Total_plasma_electron_pressure_at_point_22_______________________________ (pres_plasma_electron_profile22)_ 4.48217439559916034e+05 -Total_plasma_electron_pressure_at_point_23_______________________________ (pres_plasma_electron_profile23)_ 4.48075726506251027e+05 -Total_plasma_electron_pressure_at_point_24_______________________________ (pres_plasma_electron_profile24)_ 4.47927743799792137e+05 -Total_plasma_electron_pressure_at_point_25_______________________________ (pres_plasma_electron_profile25)_ 4.47773495183116582e+05 -Total_plasma_electron_pressure_at_point_26_______________________________ (pres_plasma_electron_profile26)_ 4.47612984557724616e+05 -Total_plasma_electron_pressure_at_point_27_______________________________ (pres_plasma_electron_profile27)_ 4.47446215983999660e+05 -Total_plasma_electron_pressure_at_point_28_______________________________ (pres_plasma_electron_profile28)_ 4.47273193681163073e+05 -Total_plasma_electron_pressure_at_point_29_______________________________ (pres_plasma_electron_profile29)_ 4.47093922027229797e+05 -Total_plasma_electron_pressure_at_point_30_______________________________ (pres_plasma_electron_profile30)_ 4.46908405558960978e+05 -Total_plasma_electron_pressure_at_point_31_______________________________ (pres_plasma_electron_profile31)_ 4.46716648971815477e+05 -Total_plasma_electron_pressure_at_point_32_______________________________ (pres_plasma_electron_profile32)_ 4.46518657119899581e+05 -Total_plasma_electron_pressure_at_point_33_______________________________ (pres_plasma_electron_profile33)_ 4.46314435015914612e+05 -Total_plasma_electron_pressure_at_point_34_______________________________ (pres_plasma_electron_profile34)_ 4.46103987831103383e+05 -Total_plasma_electron_pressure_at_point_35_______________________________ (pres_plasma_electron_profile35)_ 4.45887320895194774e+05 -Total_plasma_electron_pressure_at_point_36_______________________________ (pres_plasma_electron_profile36)_ 4.45664439696346177e+05 -Total_plasma_electron_pressure_at_point_37_______________________________ (pres_plasma_electron_profile37)_ 4.45435349881084869e+05 -Total_plasma_electron_pressure_at_point_38_______________________________ (pres_plasma_electron_profile38)_ 4.45200057254246960e+05 -Total_plasma_electron_pressure_at_point_39_______________________________ (pres_plasma_electron_profile39)_ 4.44958567778915807e+05 -Total_plasma_electron_pressure_at_point_40_______________________________ (pres_plasma_electron_profile40)_ 4.44710887576357054e+05 -Total_plasma_electron_pressure_at_point_41_______________________________ (pres_plasma_electron_profile41)_ 4.44457022925953381e+05 -Total_plasma_electron_pressure_at_point_42_______________________________ (pres_plasma_electron_profile42)_ 4.44196980265137274e+05 -Total_plasma_electron_pressure_at_point_43_______________________________ (pres_plasma_electron_profile43)_ 4.43930766189320828e+05 -Total_plasma_electron_pressure_at_point_44_______________________________ (pres_plasma_electron_profile44)_ 4.43658387451826246e+05 -Total_plasma_electron_pressure_at_point_45_______________________________ (pres_plasma_electron_profile45)_ 4.43379850963811856e+05 -Total_plasma_electron_pressure_at_point_46_______________________________ (pres_plasma_electron_profile46)_ 4.43095163794198772e+05 -Total_plasma_electron_pressure_at_point_47_______________________________ (pres_plasma_electron_profile47)_ 4.42804333169594407e+05 -Total_plasma_electron_pressure_at_point_48_______________________________ (pres_plasma_electron_profile48)_ 4.42507366474214708e+05 -Total_plasma_electron_pressure_at_point_49_______________________________ (pres_plasma_electron_profile49)_ 4.42204271249804995e+05 -Total_plasma_electron_pressure_at_point_50_______________________________ (pres_plasma_electron_profile50)_ 4.41895055195558467e+05 -Total_plasma_electron_pressure_at_point_51_______________________________ (pres_plasma_electron_profile51)_ 4.41579726168033259e+05 -Total_plasma_electron_pressure_at_point_52_______________________________ (pres_plasma_electron_profile52)_ 4.41258292181068507e+05 -Total_plasma_electron_pressure_at_point_53_______________________________ (pres_plasma_electron_profile53)_ 4.40930761405696860e+05 -Total_plasma_electron_pressure_at_point_54_______________________________ (pres_plasma_electron_profile54)_ 4.40597142170057865e+05 -Total_plasma_electron_pressure_at_point_55_______________________________ (pres_plasma_electron_profile55)_ 4.40257442959306994e+05 -Total_plasma_electron_pressure_at_point_56_______________________________ (pres_plasma_electron_profile56)_ 4.39911672415524954e+05 -Total_plasma_electron_pressure_at_point_57_______________________________ (pres_plasma_electron_profile57)_ 4.39559839337624260e+05 -Total_plasma_electron_pressure_at_point_58_______________________________ (pres_plasma_electron_profile58)_ 4.39201952681254188e+05 -Total_plasma_electron_pressure_at_point_59_______________________________ (pres_plasma_electron_profile59)_ 4.38838021558704728e+05 -Total_plasma_electron_pressure_at_point_60_______________________________ (pres_plasma_electron_profile60)_ 4.38468055238807574e+05 -Total_plasma_electron_pressure_at_point_61_______________________________ (pres_plasma_electron_profile61)_ 4.38092063146836765e+05 -Total_plasma_electron_pressure_at_point_62_______________________________ (pres_plasma_electron_profile62)_ 4.37710054864406178e+05 -Total_plasma_electron_pressure_at_point_63_______________________________ (pres_plasma_electron_profile63)_ 4.37322040129367204e+05 -Total_plasma_electron_pressure_at_point_64_______________________________ (pres_plasma_electron_profile64)_ 4.36928028835702396e+05 -Total_plasma_electron_pressure_at_point_65_______________________________ (pres_plasma_electron_profile65)_ 4.36528031033419538e+05 -Total_plasma_electron_pressure_at_point_66_______________________________ (pres_plasma_electron_profile66)_ 4.36122056928442267e+05 -Total_plasma_electron_pressure_at_point_67_______________________________ (pres_plasma_electron_profile67)_ 4.35710116882500472e+05 -Total_plasma_electron_pressure_at_point_68_______________________________ (pres_plasma_electron_profile68)_ 4.35292221413017891e+05 -Total_plasma_electron_pressure_at_point_69_______________________________ (pres_plasma_electron_profile69)_ 4.34868381192998204e+05 -Total_plasma_electron_pressure_at_point_70_______________________________ (pres_plasma_electron_profile70)_ 4.34438607050910301e+05 -Total_plasma_electron_pressure_at_point_71_______________________________ (pres_plasma_electron_profile71)_ 4.34002909970570181e+05 -Total_plasma_electron_pressure_at_point_72_______________________________ (pres_plasma_electron_profile72)_ 4.33561301091023081e+05 -Total_plasma_electron_pressure_at_point_73_______________________________ (pres_plasma_electron_profile73)_ 4.33113791706421878e+05 -Total_plasma_electron_pressure_at_point_74_______________________________ (pres_plasma_electron_profile74)_ 4.32660393265905441e+05 -Total_plasma_electron_pressure_at_point_75_______________________________ (pres_plasma_electron_profile75)_ 4.32201117373474408e+05 -Total_plasma_electron_pressure_at_point_76_______________________________ (pres_plasma_electron_profile76)_ 4.31735975787865813e+05 -Total_plasma_electron_pressure_at_point_77_______________________________ (pres_plasma_electron_profile77)_ 4.31264980422424735e+05 -Total_plasma_electron_pressure_at_point_78_______________________________ (pres_plasma_electron_profile78)_ 4.30788143344976124e+05 -Total_plasma_electron_pressure_at_point_79_______________________________ (pres_plasma_electron_profile79)_ 4.30305476777693490e+05 -Total_plasma_electron_pressure_at_point_80_______________________________ (pres_plasma_electron_profile80)_ 4.29816993096966005e+05 -Total_plasma_electron_pressure_at_point_81_______________________________ (pres_plasma_electron_profile81)_ 4.29322704833264987e+05 -Total_plasma_electron_pressure_at_point_82_______________________________ (pres_plasma_electron_profile82)_ 4.28822624671007041e+05 -Total_plasma_electron_pressure_at_point_83_______________________________ (pres_plasma_electron_profile83)_ 4.28316765448416932e+05 -Total_plasma_electron_pressure_at_point_84_______________________________ (pres_plasma_electron_profile84)_ 4.27805140157387883e+05 -Total_plasma_electron_pressure_at_point_85_______________________________ (pres_plasma_electron_profile85)_ 4.27287761943340360e+05 -Total_plasma_electron_pressure_at_point_86_______________________________ (pres_plasma_electron_profile86)_ 4.26764644105079351e+05 -Total_plasma_electron_pressure_at_point_87_______________________________ (pres_plasma_electron_profile87)_ 4.26235800094649545e+05 -Total_plasma_electron_pressure_at_point_88_______________________________ (pres_plasma_electron_profile88)_ 4.25701243517189403e+05 -Total_plasma_electron_pressure_at_point_89_______________________________ (pres_plasma_electron_profile89)_ 4.25160988130783022e+05 -Total_plasma_electron_pressure_at_point_90_______________________________ (pres_plasma_electron_profile90)_ 4.24615047846309957e+05 -Total_plasma_electron_pressure_at_point_91_______________________________ (pres_plasma_electron_profile91)_ 4.24063436727294466e+05 -Total_plasma_electron_pressure_at_point_92_______________________________ (pres_plasma_electron_profile92)_ 4.23506168989751895e+05 -Total_plasma_electron_pressure_at_point_93_______________________________ (pres_plasma_electron_profile93)_ 4.22943259002033970e+05 -Total_plasma_electron_pressure_at_point_94_______________________________ (pres_plasma_electron_profile94)_ 4.22374721284672443e+05 -Total_plasma_electron_pressure_at_point_95_______________________________ (pres_plasma_electron_profile95)_ 4.21800570510220306e+05 -Total_plasma_electron_pressure_at_point_96_______________________________ (pres_plasma_electron_profile96)_ 4.21220821503092127e+05 -Total_plasma_electron_pressure_at_point_97_______________________________ (pres_plasma_electron_profile97)_ 4.20635489239402406e+05 -Total_plasma_electron_pressure_at_point_98_______________________________ (pres_plasma_electron_profile98)_ 4.20044588846802246e+05 -Total_plasma_electron_pressure_at_point_99_______________________________ (pres_plasma_electron_profile99)_ 4.19448135604313575e+05 -Total_plasma_electron_pressure_at_point_100______________________________ (pres_plasma_electron_profile100)_ 4.18846144942163199e+05 -Total_plasma_electron_pressure_at_point_101______________________________ (pres_plasma_electron_profile101)_ 4.18238632441613881e+05 -Total_plasma_electron_pressure_at_point_102______________________________ (pres_plasma_electron_profile102)_ 4.17625613834793563e+05 -Total_plasma_electron_pressure_at_point_103______________________________ (pres_plasma_electron_profile103)_ 4.17007105004524579e+05 -Total_plasma_electron_pressure_at_point_104______________________________ (pres_plasma_electron_profile104)_ 4.16383121984149155e+05 -Total_plasma_electron_pressure_at_point_105______________________________ (pres_plasma_electron_profile105)_ 4.15753680957354256e+05 -Total_plasma_electron_pressure_at_point_106______________________________ (pres_plasma_electron_profile106)_ 4.15118798257994407e+05 -Total_plasma_electron_pressure_at_point_107______________________________ (pres_plasma_electron_profile107)_ 4.14478490369913052e+05 -Total_plasma_electron_pressure_at_point_108______________________________ (pres_plasma_electron_profile108)_ 4.13832773926762631e+05 -Total_plasma_electron_pressure_at_point_109______________________________ (pres_plasma_electron_profile109)_ 4.13181665711821232e+05 -Total_plasma_electron_pressure_at_point_110______________________________ (pres_plasma_electron_profile110)_ 4.12525182657809695e+05 -Total_plasma_electron_pressure_at_point_111______________________________ (pres_plasma_electron_profile111)_ 4.11863341846705647e+05 -Total_plasma_electron_pressure_at_point_112______________________________ (pres_plasma_electron_profile112)_ 4.11196160509556532e+05 -Total_plasma_electron_pressure_at_point_113______________________________ (pres_plasma_electron_profile113)_ 4.10523656026290380e+05 -Total_plasma_electron_pressure_at_point_114______________________________ (pres_plasma_electron_profile114)_ 4.09845845925525122e+05 -Total_plasma_electron_pressure_at_point_115______________________________ (pres_plasma_electron_profile115)_ 4.09162747884376615e+05 -Total_plasma_electron_pressure_at_point_116______________________________ (pres_plasma_electron_profile116)_ 4.08474379728263884e+05 -Total_plasma_electron_pressure_at_point_117______________________________ (pres_plasma_electron_profile117)_ 4.07780759430714708e+05 -Total_plasma_electron_pressure_at_point_118______________________________ (pres_plasma_electron_profile118)_ 4.07081905113166722e+05 -Total_plasma_electron_pressure_at_point_119______________________________ (pres_plasma_electron_profile119)_ 4.06377835044768988e+05 -Total_plasma_electron_pressure_at_point_120______________________________ (pres_plasma_electron_profile120)_ 4.05668567642181646e+05 -Total_plasma_electron_pressure_at_point_121______________________________ (pres_plasma_electron_profile121)_ 4.04954121469372767e+05 -Total_plasma_electron_pressure_at_point_122______________________________ (pres_plasma_electron_profile122)_ 4.04234515237414103e+05 -Total_plasma_electron_pressure_at_point_123______________________________ (pres_plasma_electron_profile123)_ 4.03509767804276082e+05 -Total_plasma_electron_pressure_at_point_124______________________________ (pres_plasma_electron_profile124)_ 4.02779898174619710e+05 -Total_plasma_electron_pressure_at_point_125______________________________ (pres_plasma_electron_profile125)_ 4.02044925499587087e+05 -Total_plasma_electron_pressure_at_point_126______________________________ (pres_plasma_electron_profile126)_ 4.01304869076591334e+05 -Total_plasma_electron_pressure_at_point_127______________________________ (pres_plasma_electron_profile127)_ 4.00559748349103669e+05 -Total_plasma_electron_pressure_at_point_128______________________________ (pres_plasma_electron_profile128)_ 3.99809582906438969e+05 -Total_plasma_electron_pressure_at_point_129______________________________ (pres_plasma_electron_profile129)_ 3.99054392483539996e+05 -Total_plasma_electron_pressure_at_point_130______________________________ (pres_plasma_electron_profile130)_ 3.98294196960760397e+05 -Total_plasma_electron_pressure_at_point_131______________________________ (pres_plasma_electron_profile131)_ 3.97529016363644856e+05 -Total_plasma_electron_pressure_at_point_132______________________________ (pres_plasma_electron_profile132)_ 3.96758870862708194e+05 -Total_plasma_electron_pressure_at_point_133______________________________ (pres_plasma_electron_profile133)_ 3.95983780773213774e+05 -Total_plasma_electron_pressure_at_point_134______________________________ (pres_plasma_electron_profile134)_ 3.95203766554948059e+05 -Total_plasma_electron_pressure_at_point_135______________________________ (pres_plasma_electron_profile135)_ 3.94418848811995646e+05 -Total_plasma_electron_pressure_at_point_136______________________________ (pres_plasma_electron_profile136)_ 3.93629048292511841e+05 -Total_plasma_electron_pressure_at_point_137______________________________ (pres_plasma_electron_profile137)_ 3.92834385888492747e+05 -Total_plasma_electron_pressure_at_point_138______________________________ (pres_plasma_electron_profile138)_ 3.92034882635545335e+05 -Total_plasma_electron_pressure_at_point_139______________________________ (pres_plasma_electron_profile139)_ 3.91230559712654620e+05 -Total_plasma_electron_pressure_at_point_140______________________________ (pres_plasma_electron_profile140)_ 3.90421438441949838e+05 -Total_plasma_electron_pressure_at_point_141______________________________ (pres_plasma_electron_profile141)_ 3.89607540288468590e+05 -Total_plasma_electron_pressure_at_point_142______________________________ (pres_plasma_electron_profile142)_ 3.88788886859919585e+05 -Total_plasma_electron_pressure_at_point_143______________________________ (pres_plasma_electron_profile143)_ 3.87965499906443991e+05 -Total_plasma_electron_pressure_at_point_144______________________________ (pres_plasma_electron_profile144)_ 3.87137401320374629e+05 -Total_plasma_electron_pressure_at_point_145______________________________ (pres_plasma_electron_profile145)_ 3.86304613135993714e+05 -Total_plasma_electron_pressure_at_point_146______________________________ (pres_plasma_electron_profile146)_ 3.85467157529289427e+05 -Total_plasma_electron_pressure_at_point_147______________________________ (pres_plasma_electron_profile147)_ 3.84625056817710458e+05 -Total_plasma_electron_pressure_at_point_148______________________________ (pres_plasma_electron_profile148)_ 3.83778333459918562e+05 -Total_plasma_electron_pressure_at_point_149______________________________ (pres_plasma_electron_profile149)_ 3.82927010055541119e+05 -Total_plasma_electron_pressure_at_point_150______________________________ (pres_plasma_electron_profile150)_ 3.82071109344919736e+05 -Total_plasma_electron_pressure_at_point_151______________________________ (pres_plasma_electron_profile151)_ 3.81210654208859021e+05 -Total_plasma_electron_pressure_at_point_152______________________________ (pres_plasma_electron_profile152)_ 3.80345667668373266e+05 -Total_plasma_electron_pressure_at_point_153______________________________ (pres_plasma_electron_profile153)_ 3.79476172884432075e+05 -Total_plasma_electron_pressure_at_point_154______________________________ (pres_plasma_electron_profile154)_ 3.78602193157702277e+05 -Total_plasma_electron_pressure_at_point_155______________________________ (pres_plasma_electron_profile155)_ 3.77723751928292040e+05 -Total_plasma_electron_pressure_at_point_156______________________________ (pres_plasma_electron_profile156)_ 3.76840872775489406e+05 -Total_plasma_electron_pressure_at_point_157______________________________ (pres_plasma_electron_profile157)_ 3.75953579417502449e+05 -Total_plasma_electron_pressure_at_point_158______________________________ (pres_plasma_electron_profile158)_ 3.75061895711195713e+05 -Total_plasma_electron_pressure_at_point_159______________________________ (pres_plasma_electron_profile159)_ 3.74165845651826181e+05 -Total_plasma_electron_pressure_at_point_160______________________________ (pres_plasma_electron_profile160)_ 3.73265453372778196e+05 -Total_plasma_electron_pressure_at_point_161______________________________ (pres_plasma_electron_profile161)_ 3.72360743145294953e+05 -Total_plasma_electron_pressure_at_point_162______________________________ (pres_plasma_electron_profile162)_ 3.71451739378210623e+05 -Total_plasma_electron_pressure_at_point_163______________________________ (pres_plasma_electron_profile163)_ 3.70538466617679689e+05 -Total_plasma_electron_pressure_at_point_164______________________________ (pres_plasma_electron_profile164)_ 3.69620949546905118e+05 -Total_plasma_electron_pressure_at_point_165______________________________ (pres_plasma_electron_profile165)_ 3.68699212985865073e+05 -Total_plasma_electron_pressure_at_point_166______________________________ (pres_plasma_electron_profile166)_ 3.67773281891038117e+05 -Total_plasma_electron_pressure_at_point_167______________________________ (pres_plasma_electron_profile167)_ 3.66843181355126668e+05 -Total_plasma_electron_pressure_at_point_168______________________________ (pres_plasma_electron_profile168)_ 3.65908936606779811e+05 -Total_plasma_electron_pressure_at_point_169______________________________ (pres_plasma_electron_profile169)_ 3.64970573010313325e+05 -Total_plasma_electron_pressure_at_point_170______________________________ (pres_plasma_electron_profile170)_ 3.64028116065429640e+05 -Total_plasma_electron_pressure_at_point_171______________________________ (pres_plasma_electron_profile171)_ 3.63081591406935360e+05 -Total_plasma_electron_pressure_at_point_172______________________________ (pres_plasma_electron_profile172)_ 3.62131024804457847e+05 -Total_plasma_electron_pressure_at_point_173______________________________ (pres_plasma_electron_profile173)_ 3.61176442162160296e+05 -Total_plasma_electron_pressure_at_point_174______________________________ (pres_plasma_electron_profile174)_ 3.60217869518454769e+05 -Total_plasma_electron_pressure_at_point_175______________________________ (pres_plasma_electron_profile175)_ 3.59255333045715874e+05 -Total_plasma_electron_pressure_at_point_176______________________________ (pres_plasma_electron_profile176)_ 3.58288859049989551e+05 -Total_plasma_electron_pressure_at_point_177______________________________ (pres_plasma_electron_profile177)_ 3.57318473970704246e+05 -Total_plasma_electron_pressure_at_point_178______________________________ (pres_plasma_electron_profile178)_ 3.56344204380377894e+05 -Total_plasma_electron_pressure_at_point_179______________________________ (pres_plasma_electron_profile179)_ 3.55366076984325424e+05 -Total_plasma_electron_pressure_at_point_180______________________________ (pres_plasma_electron_profile180)_ 3.54384118620363530e+05 -Total_plasma_electron_pressure_at_point_181______________________________ (pres_plasma_electron_profile181)_ 3.53398356258515094e+05 -Total_plasma_electron_pressure_at_point_182______________________________ (pres_plasma_electron_profile182)_ 3.52408817000711511e+05 -Total_plasma_electron_pressure_at_point_183______________________________ (pres_plasma_electron_profile183)_ 3.51415528080494609e+05 -Total_plasma_electron_pressure_at_point_184______________________________ (pres_plasma_electron_profile184)_ 3.50418516862716584e+05 -Total_plasma_electron_pressure_at_point_185______________________________ (pres_plasma_electron_profile185)_ 3.49417810843238665e+05 -Total_plasma_electron_pressure_at_point_186______________________________ (pres_plasma_electron_profile186)_ 3.48413437648629071e+05 -Total_plasma_electron_pressure_at_point_187______________________________ (pres_plasma_electron_profile187)_ 3.47405425035859051e+05 -Total_plasma_electron_pressure_at_point_188______________________________ (pres_plasma_electron_profile188)_ 3.46393800891998166e+05 -Total_plasma_electron_pressure_at_point_189______________________________ (pres_plasma_electron_profile189)_ 3.45378593233908410e+05 -Total_plasma_electron_pressure_at_point_190______________________________ (pres_plasma_electron_profile190)_ 3.44359830207936524e+05 -Total_plasma_electron_pressure_at_point_191______________________________ (pres_plasma_electron_profile191)_ 3.43337540089605900e+05 -Total_plasma_electron_pressure_at_point_192______________________________ (pres_plasma_electron_profile192)_ 3.42311751283306687e+05 -Total_plasma_electron_pressure_at_point_193______________________________ (pres_plasma_electron_profile193)_ 3.41282492321985308e+05 -Total_plasma_electron_pressure_at_point_194______________________________ (pres_plasma_electron_profile194)_ 3.40249791866832471e+05 -Total_plasma_electron_pressure_at_point_195______________________________ (pres_plasma_electron_profile195)_ 3.39213678706970066e+05 -Total_plasma_electron_pressure_at_point_196______________________________ (pres_plasma_electron_profile196)_ 3.38174181759137427e+05 -Total_plasma_electron_pressure_at_point_197______________________________ (pres_plasma_electron_profile197)_ 3.37131330067375733e+05 -Total_plasma_electron_pressure_at_point_198______________________________ (pres_plasma_electron_profile198)_ 3.36085152802712284e+05 -Total_plasma_electron_pressure_at_point_199______________________________ (pres_plasma_electron_profile199)_ 3.35035679262842983e+05 -Total_plasma_electron_pressure_at_point_200______________________________ (pres_plasma_electron_profile200)_ 3.33982938871814695e+05 -Total_plasma_electron_pressure_at_point_201______________________________ (pres_plasma_electron_profile201)_ 3.32926961179705278e+05 -Total_plasma_electron_pressure_at_point_202______________________________ (pres_plasma_electron_profile202)_ 3.31867775862304086e+05 -Total_plasma_electron_pressure_at_point_203______________________________ (pres_plasma_electron_profile203)_ 3.30805412720790599e+05 -Total_plasma_electron_pressure_at_point_204______________________________ (pres_plasma_electron_profile204)_ 3.29739901681412943e+05 -Total_plasma_electron_pressure_at_point_205______________________________ (pres_plasma_electron_profile205)_ 3.28671272795164317e+05 -Total_plasma_electron_pressure_at_point_206______________________________ (pres_plasma_electron_profile206)_ 3.27599556237460172e+05 -Total_plasma_electron_pressure_at_point_207______________________________ (pres_plasma_electron_profile207)_ 3.26524782307813177e+05 -Total_plasma_electron_pressure_at_point_208______________________________ (pres_plasma_electron_profile208)_ 3.25446981429508014e+05 -Total_plasma_electron_pressure_at_point_209______________________________ (pres_plasma_electron_profile209)_ 3.24366184149275534e+05 -Total_plasma_electron_pressure_at_point_210______________________________ (pres_plasma_electron_profile210)_ 3.23282421136965917e+05 -Total_plasma_electron_pressure_at_point_211______________________________ (pres_plasma_electron_profile211)_ 3.22195723185220850e+05 -Total_plasma_electron_pressure_at_point_212______________________________ (pres_plasma_electron_profile212)_ 3.21106121209146106e+05 -Total_plasma_electron_pressure_at_point_213______________________________ (pres_plasma_electron_profile213)_ 3.20013646245981916e+05 -Total_plasma_electron_pressure_at_point_214______________________________ (pres_plasma_electron_profile214)_ 3.18918329454773979e+05 -Total_plasma_electron_pressure_at_point_215______________________________ (pres_plasma_electron_profile215)_ 3.17820202116043947e+05 -Total_plasma_electron_pressure_at_point_216______________________________ (pres_plasma_electron_profile216)_ 3.16719295631457877e+05 -Total_plasma_electron_pressure_at_point_217______________________________ (pres_plasma_electron_profile217)_ 3.15615641523495957e+05 -Total_plasma_electron_pressure_at_point_218______________________________ (pres_plasma_electron_profile218)_ 3.14509271435121191e+05 -Total_plasma_electron_pressure_at_point_219______________________________ (pres_plasma_electron_profile219)_ 3.13400217129446741e+05 -Total_plasma_electron_pressure_at_point_220______________________________ (pres_plasma_electron_profile220)_ 3.12288510489404434e+05 -Total_plasma_electron_pressure_at_point_221______________________________ (pres_plasma_electron_profile221)_ 3.11174183517411642e+05 -Total_plasma_electron_pressure_at_point_222______________________________ (pres_plasma_electron_profile222)_ 3.10057268335038563e+05 -Total_plasma_electron_pressure_at_point_223______________________________ (pres_plasma_electron_profile223)_ 3.08937797182675102e+05 -Total_plasma_electron_pressure_at_point_224______________________________ (pres_plasma_electron_profile224)_ 3.07815802419197338e+05 -Total_plasma_electron_pressure_at_point_225______________________________ (pres_plasma_electron_profile225)_ 3.06691316521633998e+05 -Total_plasma_electron_pressure_at_point_226______________________________ (pres_plasma_electron_profile226)_ 3.05564372084832983e+05 -Total_plasma_electron_pressure_at_point_227______________________________ (pres_plasma_electron_profile227)_ 3.04435001821127255e+05 -Total_plasma_electron_pressure_at_point_228______________________________ (pres_plasma_electron_profile228)_ 3.03303238560001424e+05 -Total_plasma_electron_pressure_at_point_229______________________________ (pres_plasma_electron_profile229)_ 3.02169115247757931e+05 -Total_plasma_electron_pressure_at_point_230______________________________ (pres_plasma_electron_profile230)_ 3.01032664947183221e+05 -Total_plasma_electron_pressure_at_point_231______________________________ (pres_plasma_electron_profile231)_ 2.99893920837214391e+05 -Total_plasma_electron_pressure_at_point_232______________________________ (pres_plasma_electron_profile232)_ 2.98752916212606127e+05 -Total_plasma_electron_pressure_at_point_233______________________________ (pres_plasma_electron_profile233)_ 2.97609684483596822e+05 -Total_plasma_electron_pressure_at_point_234______________________________ (pres_plasma_electron_profile234)_ 2.96464259175577085e+05 -Total_plasma_electron_pressure_at_point_235______________________________ (pres_plasma_electron_profile235)_ 2.95316673928756325e+05 -Total_plasma_electron_pressure_at_point_236______________________________ (pres_plasma_electron_profile236)_ 2.94166962497831206e+05 -Total_plasma_electron_pressure_at_point_237______________________________ (pres_plasma_electron_profile237)_ 2.93015158751654148e+05 -Total_plasma_electron_pressure_at_point_238______________________________ (pres_plasma_electron_profile238)_ 2.91861296672903060e+05 -Total_plasma_electron_pressure_at_point_239______________________________ (pres_plasma_electron_profile239)_ 2.90705410357749788e+05 -Total_plasma_electron_pressure_at_point_240______________________________ (pres_plasma_electron_profile240)_ 2.89547534015532292e+05 -Total_plasma_electron_pressure_at_point_241______________________________ (pres_plasma_electron_profile241)_ 2.88387701968424721e+05 -Total_plasma_electron_pressure_at_point_242______________________________ (pres_plasma_electron_profile242)_ 2.87225948651109880e+05 -Total_plasma_electron_pressure_at_point_243______________________________ (pres_plasma_electron_profile243)_ 2.86062308610452630e+05 -Total_plasma_electron_pressure_at_point_244______________________________ (pres_plasma_electron_profile244)_ 2.84896816505173629e+05 -Total_plasma_electron_pressure_at_point_245______________________________ (pres_plasma_electron_profile245)_ 2.83729507105524826e+05 -Total_plasma_electron_pressure_at_point_246______________________________ (pres_plasma_electron_profile246)_ 2.82560415292965772e+05 -Total_plasma_electron_pressure_at_point_247______________________________ (pres_plasma_electron_profile247)_ 2.81389576059841085e+05 -Total_plasma_electron_pressure_at_point_248______________________________ (pres_plasma_electron_profile248)_ 2.80217024509059847e+05 -Total_plasma_electron_pressure_at_point_249______________________________ (pres_plasma_electron_profile249)_ 2.79042795853775926e+05 -Total_plasma_electron_pressure_at_point_250______________________________ (pres_plasma_electron_profile250)_ 2.77866925417070161e+05 -Total_plasma_electron_pressure_at_point_251______________________________ (pres_plasma_electron_profile251)_ 2.76689448631633713e+05 -Total_plasma_electron_pressure_at_point_252______________________________ (pres_plasma_electron_profile252)_ 2.75510401039454504e+05 -Total_plasma_electron_pressure_at_point_253______________________________ (pres_plasma_electron_profile253)_ 2.74329818291502947e+05 -Total_plasma_electron_pressure_at_point_254______________________________ (pres_plasma_electron_profile254)_ 2.73147736147422926e+05 -Total_plasma_electron_pressure_at_point_255______________________________ (pres_plasma_electron_profile255)_ 2.71964190475222189e+05 -Total_plasma_electron_pressure_at_point_256______________________________ (pres_plasma_electron_profile256)_ 2.70779217250966467e+05 -Total_plasma_electron_pressure_at_point_257______________________________ (pres_plasma_electron_profile257)_ 2.69592852558474697e+05 -Total_plasma_electron_pressure_at_point_258______________________________ (pres_plasma_electron_profile258)_ 2.68405132589018322e+05 -Total_plasma_electron_pressure_at_point_259______________________________ (pres_plasma_electron_profile259)_ 2.67216093641021347e+05 -Total_plasma_electron_pressure_at_point_260______________________________ (pres_plasma_electron_profile260)_ 2.66025772119764646e+05 -Total_plasma_electron_pressure_at_point_261______________________________ (pres_plasma_electron_profile261)_ 2.64834204537091719e+05 -Total_plasma_electron_pressure_at_point_262______________________________ (pres_plasma_electron_profile262)_ 2.63641427511118993e+05 -Total_plasma_electron_pressure_at_point_263______________________________ (pres_plasma_electron_profile263)_ 2.62447477765947173e+05 -Total_plasma_electron_pressure_at_point_264______________________________ (pres_plasma_electron_profile264)_ 2.61252392131378467e+05 -Total_plasma_electron_pressure_at_point_265______________________________ (pres_plasma_electron_profile265)_ 2.60056207542634394e+05 -Total_plasma_electron_pressure_at_point_266______________________________ (pres_plasma_electron_profile266)_ 2.58858961040079506e+05 -Total_plasma_electron_pressure_at_point_267______________________________ (pres_plasma_electron_profile267)_ 2.57660689768947399e+05 -Total_plasma_electron_pressure_at_point_268______________________________ (pres_plasma_electron_profile268)_ 2.56461430979071825e+05 -Total_plasma_electron_pressure_at_point_269______________________________ (pres_plasma_electron_profile269)_ 2.55261222024619899e+05 -Total_plasma_electron_pressure_at_point_270______________________________ (pres_plasma_electron_profile270)_ 2.54060100363832258e+05 -Total_plasma_electron_pressure_at_point_271______________________________ (pres_plasma_electron_profile271)_ 2.52858103558765026e+05 -Total_plasma_electron_pressure_at_point_272______________________________ (pres_plasma_electron_profile272)_ 2.51655269275038445e+05 -Total_plasma_electron_pressure_at_point_273______________________________ (pres_plasma_electron_profile273)_ 2.50451635281589144e+05 -Total_plasma_electron_pressure_at_point_274______________________________ (pres_plasma_electron_profile274)_ 2.49247239450427907e+05 -Total_plasma_electron_pressure_at_point_275______________________________ (pres_plasma_electron_profile275)_ 2.48042119756402040e+05 -Total_plasma_electron_pressure_at_point_276______________________________ (pres_plasma_electron_profile276)_ 2.46836314276964520e+05 -Total_plasma_electron_pressure_at_point_277______________________________ (pres_plasma_electron_profile277)_ 2.45629861191947159e+05 -Total_plasma_electron_pressure_at_point_278______________________________ (pres_plasma_electron_profile278)_ 2.44422798783341277e+05 -Total_plasma_electron_pressure_at_point_279______________________________ (pres_plasma_electron_profile279)_ 2.43215165435082832e+05 -Total_plasma_electron_pressure_at_point_280______________________________ (pres_plasma_electron_profile280)_ 2.42006999632845866e+05 -Total_plasma_electron_pressure_at_point_281______________________________ (pres_plasma_electron_profile281)_ 2.40798339963840408e+05 -Total_plasma_electron_pressure_at_point_282______________________________ (pres_plasma_electron_profile282)_ 2.39589225116619462e+05 -Total_plasma_electron_pressure_at_point_283______________________________ (pres_plasma_electron_profile283)_ 2.38379693880891544e+05 -Total_plasma_electron_pressure_at_point_284______________________________ (pres_plasma_electron_profile284)_ 2.37169785147340997e+05 -Total_plasma_electron_pressure_at_point_285______________________________ (pres_plasma_electron_profile285)_ 2.35959537907457445e+05 -Total_plasma_electron_pressure_at_point_286______________________________ (pres_plasma_electron_profile286)_ 2.34748991253370710e+05 -Total_plasma_electron_pressure_at_point_287______________________________ (pres_plasma_electron_profile287)_ 2.33538184377696918e+05 -Total_plasma_electron_pressure_at_point_288______________________________ (pres_plasma_electron_profile288)_ 2.32327156573390443e+05 -Total_plasma_electron_pressure_at_point_289______________________________ (pres_plasma_electron_profile289)_ 2.31115947233607731e+05 -Total_plasma_electron_pressure_at_point_290______________________________ (pres_plasma_electron_profile290)_ 2.29904595851577906e+05 -Total_plasma_electron_pressure_at_point_291______________________________ (pres_plasma_electron_profile291)_ 2.28693142020485218e+05 -Total_plasma_electron_pressure_at_point_292______________________________ (pres_plasma_electron_profile292)_ 2.27481625433359324e+05 -Total_plasma_electron_pressure_at_point_293______________________________ (pres_plasma_electron_profile293)_ 2.26270085882978688e+05 -Total_plasma_electron_pressure_at_point_294______________________________ (pres_plasma_electron_profile294)_ 2.25058563261782256e+05 -Total_plasma_electron_pressure_at_point_295______________________________ (pres_plasma_electron_profile295)_ 2.23847097561794071e+05 -Total_plasma_electron_pressure_at_point_296______________________________ (pres_plasma_electron_profile296)_ 2.22635728874558961e+05 -Total_plasma_electron_pressure_at_point_297______________________________ (pres_plasma_electron_profile297)_ 2.21424497391090525e+05 -Total_plasma_electron_pressure_at_point_298______________________________ (pres_plasma_electron_profile298)_ 2.20213443401830911e+05 -Total_plasma_electron_pressure_at_point_299______________________________ (pres_plasma_electron_profile299)_ 2.19002607296625298e+05 -Total_plasma_electron_pressure_at_point_300______________________________ (pres_plasma_electron_profile300)_ 2.17792029564707802e+05 -Total_plasma_electron_pressure_at_point_301______________________________ (pres_plasma_electron_profile301)_ 2.16581750794703461e+05 -Total_plasma_electron_pressure_at_point_302______________________________ (pres_plasma_electron_profile302)_ 2.15371811674642988e+05 -Total_plasma_electron_pressure_at_point_303______________________________ (pres_plasma_electron_profile303)_ 2.14162252991993708e+05 -Total_plasma_electron_pressure_at_point_304______________________________ (pres_plasma_electron_profile304)_ 2.12953115633705806e+05 -Total_plasma_electron_pressure_at_point_305______________________________ (pres_plasma_electron_profile305)_ 2.11744440586274985e+05 -Total_plasma_electron_pressure_at_point_306______________________________ (pres_plasma_electron_profile306)_ 2.10536268935821281e+05 -Total_plasma_electron_pressure_at_point_307______________________________ (pres_plasma_electron_profile307)_ 2.09328641868186474e+05 -Total_plasma_electron_pressure_at_point_308______________________________ (pres_plasma_electron_profile308)_ 2.08121600669048144e+05 -Total_plasma_electron_pressure_at_point_309______________________________ (pres_plasma_electron_profile309)_ 2.06915186724054103e+05 -Total_plasma_electron_pressure_at_point_310______________________________ (pres_plasma_electron_profile310)_ 2.05709441518974811e+05 -Total_plasma_electron_pressure_at_point_311______________________________ (pres_plasma_electron_profile311)_ 2.04504406639877387e+05 -Total_plasma_electron_pressure_at_point_312______________________________ (pres_plasma_electron_profile312)_ 2.03300123773318686e+05 -Total_plasma_electron_pressure_at_point_313______________________________ (pres_plasma_electron_profile313)_ 2.02096634706562618e+05 -Total_plasma_electron_pressure_at_point_314______________________________ (pres_plasma_electron_profile314)_ 2.00893981327817251e+05 -Total_plasma_electron_pressure_at_point_315______________________________ (pres_plasma_electron_profile315)_ 1.99692205626497860e+05 -Total_plasma_electron_pressure_at_point_316______________________________ (pres_plasma_electron_profile316)_ 1.98491349693512078e+05 -Total_plasma_electron_pressure_at_point_317______________________________ (pres_plasma_electron_profile317)_ 1.97291455721571721e+05 -Total_plasma_electron_pressure_at_point_318______________________________ (pres_plasma_electron_profile318)_ 1.96092566005529632e+05 -Total_plasma_electron_pressure_at_point_319______________________________ (pres_plasma_electron_profile319)_ 1.94894722942744731e+05 -Total_plasma_electron_pressure_at_point_320______________________________ (pres_plasma_electron_profile320)_ 1.93697969033473812e+05 -Total_plasma_electron_pressure_at_point_321______________________________ (pres_plasma_electron_profile321)_ 1.92502346881293633e+05 -Total_plasma_electron_pressure_at_point_322______________________________ (pres_plasma_electron_profile322)_ 1.91307899193552817e+05 -Total_plasma_electron_pressure_at_point_323______________________________ (pres_plasma_electron_profile323)_ 1.90114668781855085e+05 -Total_plasma_electron_pressure_at_point_324______________________________ (pres_plasma_electron_profile324)_ 1.88922698562575330e+05 -Total_plasma_electron_pressure_at_point_325______________________________ (pres_plasma_electron_profile325)_ 1.87732031557409209e+05 -Total_plasma_electron_pressure_at_point_326______________________________ (pres_plasma_electron_profile326)_ 1.86542710893958196e+05 -Total_plasma_electron_pressure_at_point_327______________________________ (pres_plasma_electron_profile327)_ 1.85354779806351202e+05 -Total_plasma_electron_pressure_at_point_328______________________________ (pres_plasma_electron_profile328)_ 1.84168281635903462e+05 -Total_plasma_electron_pressure_at_point_329______________________________ (pres_plasma_electron_profile329)_ 1.82983259831815813e+05 -Total_plasma_electron_pressure_at_point_330______________________________ (pres_plasma_electron_profile330)_ 1.81799757951913431e+05 -Total_plasma_electron_pressure_at_point_331______________________________ (pres_plasma_electron_profile331)_ 1.80617819663428963e+05 -Total_plasma_electron_pressure_at_point_332______________________________ (pres_plasma_electron_profile332)_ 1.79437488743827533e+05 -Total_plasma_electron_pressure_at_point_333______________________________ (pres_plasma_electron_profile333)_ 1.78258809081679763e+05 -Total_plasma_electron_pressure_at_point_334______________________________ (pres_plasma_electron_profile334)_ 1.77081824677580589e+05 -Total_plasma_electron_pressure_at_point_335______________________________ (pres_plasma_electron_profile335)_ 1.75906579645119200e+05 -Total_plasma_electron_pressure_at_point_336______________________________ (pres_plasma_electron_profile336)_ 1.74733118211899331e+05 -Total_plasma_electron_pressure_at_point_337______________________________ (pres_plasma_electron_profile337)_ 1.73561484720613604e+05 -Total_plasma_electron_pressure_at_point_338______________________________ (pres_plasma_electron_profile338)_ 1.72391723630173568e+05 -Total_plasma_electron_pressure_at_point_339______________________________ (pres_plasma_electron_profile339)_ 1.71223879516897548e+05 -Total_plasma_electron_pressure_at_point_340______________________________ (pres_plasma_electron_profile340)_ 1.70057997075758671e+05 -Total_plasma_electron_pressure_at_point_341______________________________ (pres_plasma_electron_profile341)_ 1.68894121121695760e+05 -Total_plasma_electron_pressure_at_point_342______________________________ (pres_plasma_electron_profile342)_ 1.67732296590989456e+05 -Total_plasma_electron_pressure_at_point_343______________________________ (pres_plasma_electron_profile343)_ 1.66572568542706169e+05 -Total_plasma_electron_pressure_at_point_344______________________________ (pres_plasma_electron_profile344)_ 1.65414982160213025e+05 -Total_plasma_electron_pressure_at_point_345______________________________ (pres_plasma_electron_profile345)_ 1.64259582752765418e+05 -Total_plasma_electron_pressure_at_point_346______________________________ (pres_plasma_electron_profile346)_ 1.63106415757173265e+05 -Total_plasma_electron_pressure_at_point_347______________________________ (pres_plasma_electron_profile347)_ 1.61955526739544759e+05 -Total_plasma_electron_pressure_at_point_348______________________________ (pres_plasma_electron_profile348)_ 1.60806961397115199e+05 -Total_plasma_electron_pressure_at_point_349______________________________ (pres_plasma_electron_profile349)_ 1.59660765560161730e+05 -Total_plasma_electron_pressure_at_point_350______________________________ (pres_plasma_electron_profile350)_ 1.58516985194008797e+05 -Total_plasma_electron_pressure_at_point_351______________________________ (pres_plasma_electron_profile351)_ 1.57375666401127382e+05 -Total_plasma_electron_pressure_at_point_352______________________________ (pres_plasma_electron_profile352)_ 1.56236855423333647e+05 -Total_plasma_electron_pressure_at_point_353______________________________ (pres_plasma_electron_profile353)_ 1.55100598644088954e+05 -Total_plasma_electron_pressure_at_point_354______________________________ (pres_plasma_electron_profile354)_ 1.53966942590907973e+05 -Total_plasma_electron_pressure_at_point_355______________________________ (pres_plasma_electron_profile355)_ 1.52835933937877853e+05 -Total_plasma_electron_pressure_at_point_356______________________________ (pres_plasma_electron_profile356)_ 1.51707619508294330e+05 -Total_plasma_electron_pressure_at_point_357______________________________ (pres_plasma_electron_profile357)_ 1.50582046277419751e+05 -Total_plasma_electron_pressure_at_point_358______________________________ (pres_plasma_electron_profile358)_ 1.49459261375368165e+05 -Total_plasma_electron_pressure_at_point_359______________________________ (pres_plasma_electron_profile359)_ 1.48339312090123363e+05 -Total_plasma_electron_pressure_at_point_360______________________________ (pres_plasma_electron_profile360)_ 1.47222245870696643e+05 -Total_plasma_electron_pressure_at_point_361______________________________ (pres_plasma_electron_profile361)_ 1.46108110330428433e+05 -Total_plasma_electron_pressure_at_point_362______________________________ (pres_plasma_electron_profile362)_ 1.44996953250443708e+05 -Total_plasma_electron_pressure_at_point_363______________________________ (pres_plasma_electron_profile363)_ 1.43888822583264671e+05 -Total_plasma_electron_pressure_at_point_364______________________________ (pres_plasma_electron_profile364)_ 1.42783766456591460e+05 -Total_plasma_electron_pressure_at_point_365______________________________ (pres_plasma_electron_profile365)_ 1.41681833177255787e+05 -Total_plasma_electron_pressure_at_point_366______________________________ (pres_plasma_electron_profile366)_ 1.40583071235357755e+05 -Total_plasma_electron_pressure_at_point_367______________________________ (pres_plasma_electron_profile367)_ 1.39487529308593483e+05 -Total_plasma_electron_pressure_at_point_368______________________________ (pres_plasma_electron_profile368)_ 1.38395256266783486e+05 -Total_plasma_electron_pressure_at_point_369______________________________ (pres_plasma_electron_profile369)_ 1.37306301176610228e+05 -Total_plasma_electron_pressure_at_point_370______________________________ (pres_plasma_electron_profile370)_ 1.36220713306576799e+05 -Total_plasma_electron_pressure_at_point_371______________________________ (pres_plasma_electron_profile371)_ 1.35138542132195842e+05 -Total_plasma_electron_pressure_at_point_372______________________________ (pres_plasma_electron_profile372)_ 1.34059837341421749e+05 -Total_plasma_electron_pressure_at_point_373______________________________ (pres_plasma_electron_profile373)_ 1.32984648840336624e+05 -Total_plasma_electron_pressure_at_point_374______________________________ (pres_plasma_electron_profile374)_ 1.31913026759104861e+05 -Total_plasma_electron_pressure_at_point_375______________________________ (pres_plasma_electron_profile375)_ 1.30845021458207266e+05 -Total_plasma_electron_pressure_at_point_376______________________________ (pres_plasma_electron_profile376)_ 1.29780683534972210e+05 -Total_plasma_electron_pressure_at_point_377______________________________ (pres_plasma_electron_profile377)_ 1.28720063830416126e+05 -Total_plasma_electron_pressure_at_point_378______________________________ (pres_plasma_electron_profile378)_ 1.27663213436412378e+05 -Total_plasma_electron_pressure_at_point_379______________________________ (pres_plasma_electron_profile379)_ 1.26610183703203380e+05 -Total_plasma_electron_pressure_at_point_380______________________________ (pres_plasma_electron_profile380)_ 1.25561026247275600e+05 -Total_plasma_electron_pressure_at_point_381______________________________ (pres_plasma_electron_profile381)_ 1.24515792959616985e+05 -Total_plasma_electron_pressure_at_point_382______________________________ (pres_plasma_electron_profile382)_ 1.23474536014376659e+05 -Total_plasma_electron_pressure_at_point_383______________________________ (pres_plasma_electron_profile383)_ 1.22437307877949846e+05 -Total_plasma_electron_pressure_at_point_384______________________________ (pres_plasma_electron_profile384)_ 1.21404161318511105e+05 -Total_plasma_electron_pressure_at_point_385______________________________ (pres_plasma_electron_profile385)_ 1.20375149416021231e+05 -Total_plasma_electron_pressure_at_point_386______________________________ (pres_plasma_electron_profile386)_ 1.19350325572733942e+05 -Total_plasma_electron_pressure_at_point_387______________________________ (pres_plasma_electron_profile387)_ 1.18329743524232021e+05 -Total_plasma_electron_pressure_at_point_388______________________________ (pres_plasma_electron_profile388)_ 1.17313457351022284e+05 -Total_plasma_electron_pressure_at_point_389______________________________ (pres_plasma_electron_profile389)_ 1.16301521490723055e+05 -Total_plasma_electron_pressure_at_point_390______________________________ (pres_plasma_electron_profile390)_ 1.15293990750877725e+05 -Total_plasma_electron_pressure_at_point_391______________________________ (pres_plasma_electron_profile391)_ 1.14290920322433769e+05 -Total_plasma_electron_pressure_at_point_392______________________________ (pres_plasma_electron_profile392)_ 1.13292365793924881e+05 -Total_plasma_electron_pressure_at_point_393______________________________ (pres_plasma_electron_profile393)_ 1.12298383166401953e+05 -Total_plasma_electron_pressure_at_point_394______________________________ (pres_plasma_electron_profile394)_ 1.11309028869156115e+05 -Total_plasma_electron_pressure_at_point_395______________________________ (pres_plasma_electron_profile395)_ 1.10324359776286161e+05 -Total_plasma_electron_pressure_at_point_396______________________________ (pres_plasma_electron_profile396)_ 1.09344433224161621e+05 -Total_plasma_electron_pressure_at_point_397______________________________ (pres_plasma_electron_profile397)_ 1.08369307029840464e+05 -Total_plasma_electron_pressure_at_point_398______________________________ (pres_plasma_electron_profile398)_ 1.07399039510501912e+05 -Total_plasma_electron_pressure_at_point_399______________________________ (pres_plasma_electron_profile399)_ 1.06433689503962349e+05 -Total_plasma_electron_pressure_at_point_400______________________________ (pres_plasma_electron_profile400)_ 1.05473316390345193e+05 -Total_plasma_electron_pressure_at_point_401______________________________ (pres_plasma_electron_profile401)_ 1.04517980114983773e+05 -Total_plasma_electron_pressure_at_point_402______________________________ (pres_plasma_electron_profile402)_ 1.03567741212639943e+05 -Total_plasma_electron_pressure_at_point_403______________________________ (pres_plasma_electron_profile403)_ 1.02622660833131391e+05 -Total_plasma_electron_pressure_at_point_404______________________________ (pres_plasma_electron_profile404)_ 1.01682800768464542e+05 -Total_plasma_electron_pressure_at_point_405______________________________ (pres_plasma_electron_profile405)_ 1.00748223481582158e+05 -Total_plasma_electron_pressure_at_point_406______________________________ (pres_plasma_electron_profile406)_ 9.98189921368407522e+04 -Total_plasma_electron_pressure_at_point_407______________________________ (pres_plasma_electron_profile407)_ 9.88951706323458493e+04 -Total_plasma_electron_pressure_at_point_408______________________________ (pres_plasma_electron_profile408)_ 9.79768236342818709e+04 -Total_plasma_electron_pressure_at_point_409______________________________ (pres_plasma_electron_profile409)_ 9.70640166133893072e+04 -Total_plasma_electron_pressure_at_point_410______________________________ (pres_plasma_electron_profile410)_ 9.61568158837513911e+04 -Total_plasma_electron_pressure_at_point_411______________________________ (pres_plasma_electron_profile411)_ 9.52552886440725706e+04 -Total_plasma_electron_pressure_at_point_412______________________________ (pres_plasma_electron_profile412)_ 9.43595030216436862e+04 -Total_plasma_electron_pressure_at_point_413______________________________ (pres_plasma_electron_profile413)_ 9.34695281192124530e+04 -Total_plasma_electron_pressure_at_point_414______________________________ (pres_plasma_electron_profile414)_ 9.25854340649942169e+04 -Total_plasma_electron_pressure_at_point_415______________________________ (pres_plasma_electron_profile415)_ 9.17072920660866948e+04 -Total_plasma_electron_pressure_at_point_416______________________________ (pres_plasma_electron_profile416)_ 9.08351744655745861e+04 -Total_plasma_electron_pressure_at_point_417______________________________ (pres_plasma_electron_profile417)_ 8.99691548036433087e+04 -Total_plasma_electron_pressure_at_point_418______________________________ (pres_plasma_electron_profile418)_ 8.91093078830523737e+04 -Total_plasma_electron_pressure_at_point_419______________________________ (pres_plasma_electron_profile419)_ 8.82557098393583292e+04 -Total_plasma_electron_pressure_at_point_420______________________________ (pres_plasma_electron_profile420)_ 8.74084382163186092e+04 -Total_plasma_electron_pressure_at_point_421______________________________ (pres_plasma_electron_profile421)_ 8.65675720469571388e+04 -Total_plasma_electron_pressure_at_point_422______________________________ (pres_plasma_electron_profile422)_ 8.57331919408264657e+04 -Total_plasma_electron_pressure_at_point_423______________________________ (pres_plasma_electron_profile423)_ 8.49053801780644717e+04 -Total_plasma_electron_pressure_at_point_424______________________________ (pres_plasma_electron_profile424)_ 8.40842208109132625e+04 -Total_plasma_electron_pressure_at_point_425______________________________ (pres_plasma_electron_profile425)_ 8.32697997734513192e+04 -Total_plasma_electron_pressure_at_point_426______________________________ (pres_plasma_electron_profile426)_ 8.24622050003803888e+04 -Total_plasma_electron_pressure_at_point_427______________________________ (pres_plasma_electron_profile427)_ 8.16615265558176616e+04 -Total_plasma_electron_pressure_at_point_428______________________________ (pres_plasma_electron_profile428)_ 8.08678567731664953e+04 -Total_plasma_electron_pressure_at_point_429______________________________ (pres_plasma_electron_profile429)_ 8.00812904072798265e+04 -Total_plasma_electron_pressure_at_point_430______________________________ (pres_plasma_electron_profile430)_ 7.93019248002991808e+04 -Total_plasma_electron_pressure_at_point_431______________________________ (pres_plasma_electron_profile431)_ 7.85298600627402921e+04 -Total_plasma_electron_pressure_at_point_432______________________________ (pres_plasma_electron_profile432)_ 7.77651992716255190e+04 -Total_plasma_electron_pressure_at_point_433______________________________ (pres_plasma_electron_profile433)_ 7.70080486877226795e+04 -Total_plasma_electron_pressure_at_point_434______________________________ (pres_plasma_electron_profile434)_ 7.62585179942638497e+04 -Total_plasma_electron_pressure_at_point_435______________________________ (pres_plasma_electron_profile435)_ 7.55167205598808941e+04 -Total_plasma_electron_pressure_at_point_436______________________________ (pres_plasma_electron_profile436)_ 7.47827737289332144e+04 -Total_plasma_electron_pressure_at_point_437______________________________ (pres_plasma_electron_profile437)_ 7.40567991429186077e+04 -Total_plasma_electron_pressure_at_point_438______________________________ (pres_plasma_electron_profile438)_ 7.33389230972841615e+04 -Total_plasma_electron_pressure_at_point_439______________________________ (pres_plasma_electron_profile439)_ 7.26292769386994769e+04 -Total_plasma_electron_pressure_at_point_440______________________________ (pres_plasma_electron_profile440)_ 7.19279975087651255e+04 -Total_plasma_electron_pressure_at_point_441______________________________ (pres_plasma_electron_profile441)_ 7.12352276412319188e+04 -Total_plasma_electron_pressure_at_point_442______________________________ (pres_plasma_electron_profile442)_ 7.05511167211630673e+04 -Total_plasma_electron_pressure_at_point_443______________________________ (pres_plasma_electron_profile443)_ 6.98758213161393360e+04 -Total_plasma_electron_pressure_at_point_444______________________________ (pres_plasma_electron_profile444)_ 6.92095058916845883e+04 -Total_plasma_electron_pressure_at_point_445______________________________ (pres_plasma_electron_profile445)_ 6.85523436256823188e+04 -Total_plasma_electron_pressure_at_point_446______________________________ (pres_plasma_electron_profile446)_ 6.79045173398295592e+04 -Total_plasma_electron_pressure_at_point_447______________________________ (pres_plasma_electron_profile447)_ 6.72662205703371728e+04 -Total_plasma_electron_pressure_at_point_448______________________________ (pres_plasma_electron_profile448)_ 6.66376588054322056e+04 -Total_plasma_electron_pressure_at_point_449______________________________ (pres_plasma_electron_profile449)_ 6.60190509241464024e+04 -Total_plasma_electron_pressure_at_point_450______________________________ (pres_plasma_electron_profile450)_ 6.54106308799586259e+04 -Total_plasma_electron_pressure_at_point_451______________________________ (pres_plasma_electron_profile451)_ 6.48126496848983807e+04 -Total_plasma_electron_pressure_at_point_452______________________________ (pres_plasma_electron_profile452)_ 6.42253777658892941e+04 -Total_plasma_electron_pressure_at_point_453______________________________ (pres_plasma_electron_profile453)_ 6.36491077871307862e+04 -Total_plasma_electron_pressure_at_point_454______________________________ (pres_plasma_electron_profile454)_ 6.30841580627699150e+04 -Total_plasma_electron_pressure_at_point_455______________________________ (pres_plasma_electron_profile455)_ 6.25308767269518430e+04 -Total_plasma_electron_pressure_at_point_456______________________________ (pres_plasma_electron_profile456)_ 6.19896468897516825e+04 -Total_plasma_electron_pressure_at_point_457______________________________ (pres_plasma_electron_profile457)_ 6.14608930974202012e+04 -Total_plasma_electron_pressure_at_point_458______________________________ (pres_plasma_electron_profile458)_ 6.09450895502674102e+04 -Total_plasma_electron_pressure_at_point_459______________________________ (pres_plasma_electron_profile459)_ 6.04427707394138997e+04 -Total_plasma_electron_pressure_at_point_460______________________________ (pres_plasma_electron_profile460)_ 5.99545454942839133e+04 -Total_plasma_electron_pressure_at_point_461______________________________ (pres_plasma_electron_profile461)_ 5.94811159779901354e+04 -Total_plasma_electron_pressure_at_point_462______________________________ (pres_plasma_electron_profile462)_ 5.90233041062645498e+04 -Total_plasma_electron_pressure_at_point_463______________________________ (pres_plasma_electron_profile463)_ 5.85820895655158965e+04 -Total_plasma_electron_pressure_at_point_464______________________________ (pres_plasma_electron_profile464)_ 5.81586668824497028e+04 -Total_plasma_electron_pressure_at_point_465______________________________ (pres_plasma_electron_profile465)_ 5.77545358253532104e+04 -Total_plasma_electron_pressure_at_point_466______________________________ (pres_plasma_electron_profile466)_ 5.73716551484722877e+04 -Total_plasma_electron_pressure_at_point_467______________________________ (pres_plasma_electron_profile467)_ 5.70127312321078643e+04 -Total_plasma_electron_pressure_at_point_468______________________________ (pres_plasma_electron_profile468)_ 5.66818470543106741e+04 -Total_plasma_electron_pressure_at_point_469______________________________ (pres_plasma_electron_profile469)_ 5.63862403509938886e+04 -Total_plasma_electron_pressure_at_point_470______________________________ (pres_plasma_electron_profile470)_ 5.61472662109212979e+04 -Total_plasma_electron_pressure_at_point_471______________________________ (pres_plasma_electron_profile471)_ 5.35642917967119283e+04 -Total_plasma_electron_pressure_at_point_472______________________________ (pres_plasma_electron_profile472)_ 5.10317598462642345e+04 -Total_plasma_electron_pressure_at_point_473______________________________ (pres_plasma_electron_profile473)_ 4.85496703595782237e+04 -Total_plasma_electron_pressure_at_point_474______________________________ (pres_plasma_electron_profile474)_ 4.61180233366539251e+04 -Total_plasma_electron_pressure_at_point_475______________________________ (pres_plasma_electron_profile475)_ 4.37368187774912731e+04 -Total_plasma_electron_pressure_at_point_476______________________________ (pres_plasma_electron_profile476)_ 4.14060566820903186e+04 -Total_plasma_electron_pressure_at_point_477______________________________ (pres_plasma_electron_profile477)_ 3.91257370504510545e+04 -Total_plasma_electron_pressure_at_point_478______________________________ (pres_plasma_electron_profile478)_ 3.68958598825734734e+04 -Total_plasma_electron_pressure_at_point_479______________________________ (pres_plasma_electron_profile479)_ 3.47164251784575608e+04 -Total_plasma_electron_pressure_at_point_480______________________________ (pres_plasma_electron_profile480)_ 3.25874329381033422e+04 -Total_plasma_electron_pressure_at_point_481______________________________ (pres_plasma_electron_profile481)_ 3.05088831615108029e+04 -Total_plasma_electron_pressure_at_point_482______________________________ (pres_plasma_electron_profile482)_ 2.84807758486799539e+04 -Total_plasma_electron_pressure_at_point_483______________________________ (pres_plasma_electron_profile483)_ 2.65031109996107843e+04 -Total_plasma_electron_pressure_at_point_484______________________________ (pres_plasma_electron_profile484)_ 2.45758886143032978e+04 -Total_plasma_electron_pressure_at_point_485______________________________ (pres_plasma_electron_profile485)_ 2.26991086927574870e+04 -Total_plasma_electron_pressure_at_point_486______________________________ (pres_plasma_electron_profile486)_ 2.08727712349733665e+04 -Total_plasma_electron_pressure_at_point_487______________________________ (pres_plasma_electron_profile487)_ 1.90968762409509291e+04 -Total_plasma_electron_pressure_at_point_488______________________________ (pres_plasma_electron_profile488)_ 1.73714237106901746e+04 -Total_plasma_electron_pressure_at_point_489______________________________ (pres_plasma_electron_profile489)_ 1.56964136441911014e+04 -Total_plasma_electron_pressure_at_point_490______________________________ (pres_plasma_electron_profile490)_ 1.40718460414537185e+04 -Total_plasma_electron_pressure_at_point_491______________________________ (pres_plasma_electron_profile491)_ 1.24977209024780132e+04 -Total_plasma_electron_pressure_at_point_492______________________________ (pres_plasma_electron_profile492)_ 1.09740382272639908e+04 -Total_plasma_electron_pressure_at_point_493______________________________ (pres_plasma_electron_profile493)_ 9.50079801581165339e+03 -Total_plasma_electron_pressure_at_point_494______________________________ (pres_plasma_electron_profile494)_ 8.07800026812099895e+03 -Total_plasma_electron_pressure_at_point_495______________________________ (pres_plasma_electron_profile495)_ 6.70564498419202755e+03 -Total_plasma_electron_pressure_at_point_496______________________________ (pres_plasma_electron_profile496)_ 5.38373216402474009e+03 -Total_plasma_electron_pressure_at_point_497______________________________ (pres_plasma_electron_profile497)_ 4.11226180761913383e+03 -Total_plasma_electron_pressure_at_point_498______________________________ (pres_plasma_electron_profile498)_ 2.89123391497521379e+03 -Total_plasma_electron_pressure_at_point_499______________________________ (pres_plasma_electron_profile499)_ 1.72064848609297496e+03 -Total_plasma_electron_pressure_at_point_500______________________________ (pres_plasma_electron_profile500)_ 6.00505520972420300e+02 -Total_plasma_ion_pressure_at_point_0_____________________________________ (pres_plasma_ion_total_profile0)_ 3.97305388533257821e+05 -Total_plasma_ion_pressure_at_point_1_____________________________________ (pres_plasma_ion_total_profile1)_ 3.97302600597043289e+05 -Total_plasma_ion_pressure_at_point_2_____________________________________ (pres_plasma_ion_total_profile2)_ 3.97294236858814140e+05 -Total_plasma_ion_pressure_at_point_3_____________________________________ (pres_plasma_ion_total_profile3)_ 3.97280297529812262e+05 -Total_plasma_ion_pressure_at_point_4_____________________________________ (pres_plasma_ion_total_profile4)_ 3.97260782962105237e+05 -Total_plasma_ion_pressure_at_point_5_____________________________________ (pres_plasma_ion_total_profile5)_ 3.97235693648582732e+05 -Total_plasma_ion_pressure_at_point_6_____________________________________ (pres_plasma_ion_total_profile6)_ 3.97205030222949979e+05 -Total_plasma_ion_pressure_at_point_7_____________________________________ (pres_plasma_ion_total_profile7)_ 3.97168793459722889e+05 -Total_plasma_ion_pressure_at_point_8_____________________________________ (pres_plasma_ion_total_profile8)_ 3.97126984274218092e+05 -Total_plasma_ion_pressure_at_point_9_____________________________________ (pres_plasma_ion_total_profile9)_ 3.97079603722544154e+05 -Total_plasma_ion_pressure_at_point_10____________________________________ (pres_plasma_ion_total_profile10)_ 3.97026653001589817e+05 -Total_plasma_ion_pressure_at_point_11____________________________________ (pres_plasma_ion_total_profile11)_ 3.96968133449011308e+05 -Total_plasma_ion_pressure_at_point_12____________________________________ (pres_plasma_ion_total_profile12)_ 3.96904046543217963e+05 -Total_plasma_ion_pressure_at_point_13____________________________________ (pres_plasma_ion_total_profile13)_ 3.96834393903356511e+05 -Total_plasma_ion_pressure_at_point_14____________________________________ (pres_plasma_ion_total_profile14)_ 3.96759177289293439e+05 -Total_plasma_ion_pressure_at_point_15____________________________________ (pres_plasma_ion_total_profile15)_ 3.96678398601596418e+05 -Total_plasma_ion_pressure_at_point_16____________________________________ (pres_plasma_ion_total_profile16)_ 3.96592059881513997e+05 -Total_plasma_ion_pressure_at_point_17____________________________________ (pres_plasma_ion_total_profile17)_ 3.96500163310953358e+05 -Total_plasma_ion_pressure_at_point_18____________________________________ (pres_plasma_ion_total_profile18)_ 3.96402711212457623e+05 -Total_plasma_ion_pressure_at_point_19____________________________________ (pres_plasma_ion_total_profile19)_ 3.96299706049180066e+05 -Total_plasma_ion_pressure_at_point_20____________________________________ (pres_plasma_ion_total_profile20)_ 3.96191150424858264e+05 -Total_plasma_ion_pressure_at_point_21____________________________________ (pres_plasma_ion_total_profile21)_ 3.96077047083786456e+05 -Total_plasma_ion_pressure_at_point_22____________________________________ (pres_plasma_ion_total_profile22)_ 3.95957398910785443e+05 -Total_plasma_ion_pressure_at_point_23____________________________________ (pres_plasma_ion_total_profile23)_ 3.95832208931171917e+05 -Total_plasma_ion_pressure_at_point_24____________________________________ (pres_plasma_ion_total_profile24)_ 3.95701480310726620e+05 -Total_plasma_ion_pressure_at_point_25____________________________________ (pres_plasma_ion_total_profile25)_ 3.95565216355659533e+05 -Total_plasma_ion_pressure_at_point_26____________________________________ (pres_plasma_ion_total_profile26)_ 3.95423420512574725e+05 -Total_plasma_ion_pressure_at_point_27____________________________________ (pres_plasma_ion_total_profile27)_ 3.95276096368433791e+05 -Total_plasma_ion_pressure_at_point_28____________________________________ (pres_plasma_ion_total_profile28)_ 3.95123247650516860e+05 -Total_plasma_ion_pressure_at_point_29____________________________________ (pres_plasma_ion_total_profile29)_ 3.94964878226383007e+05 -Total_plasma_ion_pressure_at_point_30____________________________________ (pres_plasma_ion_total_profile30)_ 3.94800992103828292e+05 -Total_plasma_ion_pressure_at_point_31____________________________________ (pres_plasma_ion_total_profile31)_ 3.94631593430843437e+05 -Total_plasma_ion_pressure_at_point_32____________________________________ (pres_plasma_ion_total_profile32)_ 3.94456686495568603e+05 -Total_plasma_ion_pressure_at_point_33____________________________________ (pres_plasma_ion_total_profile33)_ 3.94276275726247870e+05 -Total_plasma_ion_pressure_at_point_34____________________________________ (pres_plasma_ion_total_profile34)_ 3.94090365691181505e+05 -Total_plasma_ion_pressure_at_point_35____________________________________ (pres_plasma_ion_total_profile35)_ 3.93898961098677129e+05 -Total_plasma_ion_pressure_at_point_36____________________________________ (pres_plasma_ion_total_profile36)_ 3.93702066796998726e+05 -Total_plasma_ion_pressure_at_point_37____________________________________ (pres_plasma_ion_total_profile37)_ 3.93499687774315302e+05 -Total_plasma_ion_pressure_at_point_38____________________________________ (pres_plasma_ion_total_profile38)_ 3.93291829158646287e+05 -Total_plasma_ion_pressure_at_point_39____________________________________ (pres_plasma_ion_total_profile39)_ 3.93078496217807697e+05 -Total_plasma_ion_pressure_at_point_40____________________________________ (pres_plasma_ion_total_profile40)_ 3.92859694359354442e+05 -Total_plasma_ion_pressure_at_point_41____________________________________ (pres_plasma_ion_total_profile41)_ 3.92635429130522825e+05 -Total_plasma_ion_pressure_at_point_42____________________________________ (pres_plasma_ion_total_profile42)_ 3.92405706218171050e+05 -Total_plasma_ion_pressure_at_point_43____________________________________ (pres_plasma_ion_total_profile43)_ 3.92170531448717054e+05 -Total_plasma_ion_pressure_at_point_44____________________________________ (pres_plasma_ion_total_profile44)_ 3.91929910788077861e+05 -Total_plasma_ion_pressure_at_point_45____________________________________ (pres_plasma_ion_total_profile45)_ 3.91683850341602985e+05 -Total_plasma_ion_pressure_at_point_46____________________________________ (pres_plasma_ion_total_profile46)_ 3.91432356354010815e+05 -Total_plasma_ion_pressure_at_point_47____________________________________ (pres_plasma_ion_total_profile47)_ 3.91175435209320451e+05 -Total_plasma_ion_pressure_at_point_48____________________________________ (pres_plasma_ion_total_profile48)_ 3.90913093430782901e+05 -Total_plasma_ion_pressure_at_point_49____________________________________ (pres_plasma_ion_total_profile49)_ 3.90645337680811703e+05 -Total_plasma_ion_pressure_at_point_50____________________________________ (pres_plasma_ion_total_profile50)_ 3.90372174760910275e+05 -Total_plasma_ion_pressure_at_point_51____________________________________ (pres_plasma_ion_total_profile51)_ 3.90093611611599161e+05 -Total_plasma_ion_pressure_at_point_52____________________________________ (pres_plasma_ion_total_profile52)_ 3.89809655312341754e+05 -Total_plasma_ion_pressure_at_point_53____________________________________ (pres_plasma_ion_total_profile53)_ 3.89520313081466709e+05 -Total_plasma_ion_pressure_at_point_54____________________________________ (pres_plasma_ion_total_profile54)_ 3.89225592276091629e+05 -Total_plasma_ion_pressure_at_point_55____________________________________ (pres_plasma_ion_total_profile55)_ 3.88925500392043090e+05 -Total_plasma_ion_pressure_at_point_56____________________________________ (pres_plasma_ion_total_profile56)_ 3.88620045063775789e+05 -Total_plasma_ion_pressure_at_point_57____________________________________ (pres_plasma_ion_total_profile57)_ 3.88309234064290533e+05 -Total_plasma_ion_pressure_at_point_58____________________________________ (pres_plasma_ion_total_profile58)_ 3.87993075305050181e+05 -Total_plasma_ion_pressure_at_point_59____________________________________ (pres_plasma_ion_total_profile59)_ 3.87671576835894550e+05 -Total_plasma_ion_pressure_at_point_60____________________________________ (pres_plasma_ion_total_profile60)_ 3.87344746844953275e+05 -Total_plasma_ion_pressure_at_point_61____________________________________ (pres_plasma_ion_total_profile61)_ 3.87012593658557977e+05 -Total_plasma_ion_pressure_at_point_62____________________________________ (pres_plasma_ion_total_profile62)_ 3.86675125741151394e+05 -Total_plasma_ion_pressure_at_point_63____________________________________ (pres_plasma_ion_total_profile63)_ 3.86332351695197343e+05 -Total_plasma_ion_pressure_at_point_64____________________________________ (pres_plasma_ion_total_profile64)_ 3.85984280261086766e+05 -Total_plasma_ion_pressure_at_point_65____________________________________ (pres_plasma_ion_total_profile65)_ 3.85630920317043900e+05 -Total_plasma_ion_pressure_at_point_66____________________________________ (pres_plasma_ion_total_profile66)_ 3.85272280879029655e+05 -Total_plasma_ion_pressure_at_point_67____________________________________ (pres_plasma_ion_total_profile67)_ 3.84908371100645221e+05 -Total_plasma_ion_pressure_at_point_68____________________________________ (pres_plasma_ion_total_profile68)_ 3.84539200273032126e+05 -Total_plasma_ion_pressure_at_point_69____________________________________ (pres_plasma_ion_total_profile69)_ 3.84164777824772347e+05 -Total_plasma_ion_pressure_at_point_70____________________________________ (pres_plasma_ion_total_profile70)_ 3.83785113321786223e+05 -Total_plasma_ion_pressure_at_point_71____________________________________ (pres_plasma_ion_total_profile71)_ 3.83400216467228543e+05 -Total_plasma_ion_pressure_at_point_72____________________________________ (pres_plasma_ion_total_profile72)_ 3.83010097101384425e+05 -Total_plasma_ion_pressure_at_point_73____________________________________ (pres_plasma_ion_total_profile73)_ 3.82614765201561851e+05 -Total_plasma_ion_pressure_at_point_74____________________________________ (pres_plasma_ion_total_profile74)_ 3.82214230881983938e+05 -Total_plasma_ion_pressure_at_point_75____________________________________ (pres_plasma_ion_total_profile75)_ 3.81808504393679497e+05 -Total_plasma_ion_pressure_at_point_76____________________________________ (pres_plasma_ion_total_profile76)_ 3.81397596124372503e+05 -Total_plasma_ion_pressure_at_point_77____________________________________ (pres_plasma_ion_total_profile77)_ 3.80981516598367831e+05 -Total_plasma_ion_pressure_at_point_78____________________________________ (pres_plasma_ion_total_profile78)_ 3.80560276476439205e+05 -Total_plasma_ion_pressure_at_point_79____________________________________ (pres_plasma_ion_total_profile79)_ 3.80133886555712146e+05 -Total_plasma_ion_pressure_at_point_80____________________________________ (pres_plasma_ion_total_profile80)_ 3.79702357769547321e+05 -Total_plasma_ion_pressure_at_point_81____________________________________ (pres_plasma_ion_total_profile81)_ 3.79265701187421975e+05 -Total_plasma_ion_pressure_at_point_82____________________________________ (pres_plasma_ion_total_profile82)_ 3.78823928014809615e+05 -Total_plasma_ion_pressure_at_point_83____________________________________ (pres_plasma_ion_total_profile83)_ 3.78377049593058706e+05 -Total_plasma_ion_pressure_at_point_84____________________________________ (pres_plasma_ion_total_profile84)_ 3.77925077399268688e+05 -Total_plasma_ion_pressure_at_point_85____________________________________ (pres_plasma_ion_total_profile85)_ 3.77468023046166054e+05 -Total_plasma_ion_pressure_at_point_86____________________________________ (pres_plasma_ion_total_profile86)_ 3.77005898281977803e+05 -Total_plasma_ion_pressure_at_point_87____________________________________ (pres_plasma_ion_total_profile87)_ 3.76538714990303793e+05 -Total_plasma_ion_pressure_at_point_88____________________________________ (pres_plasma_ion_total_profile88)_ 3.76066485189987230e+05 -Total_plasma_ion_pressure_at_point_89____________________________________ (pres_plasma_ion_total_profile89)_ 3.75589221034984628e+05 -Total_plasma_ion_pressure_at_point_90____________________________________ (pres_plasma_ion_total_profile90)_ 3.75106934814232460e+05 -Total_plasma_ion_pressure_at_point_91____________________________________ (pres_plasma_ion_total_profile91)_ 3.74619638951514324e+05 -Total_plasma_ion_pressure_at_point_92____________________________________ (pres_plasma_ion_total_profile92)_ 3.74127346005325322e+05 -Total_plasma_ion_pressure_at_point_93____________________________________ (pres_plasma_ion_total_profile93)_ 3.73630068668734981e+05 -Total_plasma_ion_pressure_at_point_94____________________________________ (pres_plasma_ion_total_profile94)_ 3.73127819769249531e+05 -Total_plasma_ion_pressure_at_point_95____________________________________ (pres_plasma_ion_total_profile95)_ 3.72620612268671452e+05 -Total_plasma_ion_pressure_at_point_96____________________________________ (pres_plasma_ion_total_profile96)_ 3.72108459262958553e+05 -Total_plasma_ion_pressure_at_point_97____________________________________ (pres_plasma_ion_total_profile97)_ 3.71591373982080724e+05 -Total_plasma_ion_pressure_at_point_98____________________________________ (pres_plasma_ion_total_profile98)_ 3.71069369789876509e+05 -Total_plasma_ion_pressure_at_point_99____________________________________ (pres_plasma_ion_total_profile99)_ 3.70542460183905845e+05 -Total_plasma_ion_pressure_at_point_100___________________________________ (pres_plasma_ion_total_profile100)_ 3.70010658795303723e+05 -Total_plasma_ion_pressure_at_point_101___________________________________ (pres_plasma_ion_total_profile101)_ 3.69473979388631182e+05 -Total_plasma_ion_pressure_at_point_102___________________________________ (pres_plasma_ion_total_profile102)_ 3.68932435861724196e+05 -Total_plasma_ion_pressure_at_point_103___________________________________ (pres_plasma_ion_total_profile103)_ 3.68386042245542922e+05 -Total_plasma_ion_pressure_at_point_104___________________________________ (pres_plasma_ion_total_profile104)_ 3.67834812704017444e+05 -Total_plasma_ion_pressure_at_point_105___________________________________ (pres_plasma_ion_total_profile105)_ 3.67278761533893063e+05 -Total_plasma_ion_pressure_at_point_106___________________________________ (pres_plasma_ion_total_profile106)_ 3.66717903164573887e+05 -Total_plasma_ion_pressure_at_point_107___________________________________ (pres_plasma_ion_total_profile107)_ 3.66152252157964918e+05 -Total_plasma_ion_pressure_at_point_108___________________________________ (pres_plasma_ion_total_profile108)_ 3.65581823208313144e+05 -Total_plasma_ion_pressure_at_point_109___________________________________ (pres_plasma_ion_total_profile109)_ 3.65006631142045604e+05 -Total_plasma_ion_pressure_at_point_110___________________________________ (pres_plasma_ion_total_profile110)_ 3.64426690917607513e+05 -Total_plasma_ion_pressure_at_point_111___________________________________ (pres_plasma_ion_total_profile111)_ 3.63842017625298642e+05 -Total_plasma_ion_pressure_at_point_112___________________________________ (pres_plasma_ion_total_profile112)_ 3.63252626487107365e+05 -Total_plasma_ion_pressure_at_point_113___________________________________ (pres_plasma_ion_total_profile113)_ 3.62658532856544189e+05 -Total_plasma_ion_pressure_at_point_114___________________________________ (pres_plasma_ion_total_profile114)_ 3.62059752218472655e+05 -Total_plasma_ion_pressure_at_point_115___________________________________ (pres_plasma_ion_total_profile115)_ 3.61456300188940309e+05 -Total_plasma_ion_pressure_at_point_116___________________________________ (pres_plasma_ion_total_profile116)_ 3.60848192515006405e+05 -Total_plasma_ion_pressure_at_point_117___________________________________ (pres_plasma_ion_total_profile117)_ 3.60235445074569958e+05 -Total_plasma_ion_pressure_at_point_118___________________________________ (pres_plasma_ion_total_profile118)_ 3.59618073876194598e+05 -Total_plasma_ion_pressure_at_point_119___________________________________ (pres_plasma_ion_total_profile119)_ 3.58996095058932493e+05 -Total_plasma_ion_pressure_at_point_120___________________________________ (pres_plasma_ion_total_profile120)_ 3.58369524892148154e+05 -Total_plasma_ion_pressure_at_point_121___________________________________ (pres_plasma_ion_total_profile121)_ 3.57738379775338515e+05 -Total_plasma_ion_pressure_at_point_122___________________________________ (pres_plasma_ion_total_profile122)_ 3.57102676237952430e+05 -Total_plasma_ion_pressure_at_point_123___________________________________ (pres_plasma_ion_total_profile123)_ 3.56462430939210113e+05 -Total_plasma_ion_pressure_at_point_124___________________________________ (pres_plasma_ion_total_profile124)_ 3.55817660667918390e+05 -Total_plasma_ion_pressure_at_point_125___________________________________ (pres_plasma_ion_total_profile125)_ 3.55168382342286641e+05 -Total_plasma_ion_pressure_at_point_126___________________________________ (pres_plasma_ion_total_profile126)_ 3.54514613009740540e+05 -Total_plasma_ion_pressure_at_point_127___________________________________ (pres_plasma_ion_total_profile127)_ 3.53856369846734160e+05 -Total_plasma_ion_pressure_at_point_128___________________________________ (pres_plasma_ion_total_profile128)_ 3.53193670158560679e+05 -Total_plasma_ion_pressure_at_point_129___________________________________ (pres_plasma_ion_total_profile129)_ 3.52526531379161577e+05 -Total_plasma_ion_pressure_at_point_130___________________________________ (pres_plasma_ion_total_profile130)_ 3.51854971070934844e+05 -Total_plasma_ion_pressure_at_point_131___________________________________ (pres_plasma_ion_total_profile131)_ 3.51179006924541143e+05 -Total_plasma_ion_pressure_at_point_132___________________________________ (pres_plasma_ion_total_profile132)_ 3.50498656758708414e+05 -Total_plasma_ion_pressure_at_point_133___________________________________ (pres_plasma_ion_total_profile133)_ 3.49813938520035939e+05 -Total_plasma_ion_pressure_at_point_134___________________________________ (pres_plasma_ion_total_profile134)_ 3.49124870282795629e+05 -Total_plasma_ion_pressure_at_point_135___________________________________ (pres_plasma_ion_total_profile135)_ 3.48431470248732890e+05 -Total_plasma_ion_pressure_at_point_136___________________________________ (pres_plasma_ion_total_profile136)_ 3.47733756746865925e+05 -Total_plasma_ion_pressure_at_point_137___________________________________ (pres_plasma_ion_total_profile137)_ 3.47031748233282589e+05 -Total_plasma_ion_pressure_at_point_138___________________________________ (pres_plasma_ion_total_profile138)_ 3.46325463290937245e+05 -Total_plasma_ion_pressure_at_point_139___________________________________ (pres_plasma_ion_total_profile139)_ 3.45614920629444998e+05 -Total_plasma_ion_pressure_at_point_140___________________________________ (pres_plasma_ion_total_profile140)_ 3.44900139084875467e+05 -Total_plasma_ion_pressure_at_point_141___________________________________ (pres_plasma_ion_total_profile141)_ 3.44181137619543937e+05 -Total_plasma_ion_pressure_at_point_142___________________________________ (pres_plasma_ion_total_profile142)_ 3.43457935321802099e+05 -Total_plasma_ion_pressure_at_point_143___________________________________ (pres_plasma_ion_total_profile143)_ 3.42730551405827340e+05 -Total_plasma_ion_pressure_at_point_144___________________________________ (pres_plasma_ion_total_profile144)_ 3.41999005211409589e+05 -Total_plasma_ion_pressure_at_point_145___________________________________ (pres_plasma_ion_total_profile145)_ 3.41263316203737690e+05 -Total_plasma_ion_pressure_at_point_146___________________________________ (pres_plasma_ion_total_profile146)_ 3.40523503973183979e+05 -Total_plasma_ion_pressure_at_point_147___________________________________ (pres_plasma_ion_total_profile147)_ 3.39779588235087926e+05 -Total_plasma_ion_pressure_at_point_148___________________________________ (pres_plasma_ion_total_profile148)_ 3.39031588829537155e+05 -Total_plasma_ion_pressure_at_point_149___________________________________ (pres_plasma_ion_total_profile149)_ 3.38279525721149170e+05 -Total_plasma_ion_pressure_at_point_150___________________________________ (pres_plasma_ion_total_profile150)_ 3.37523418998848763e+05 -Total_plasma_ion_pressure_at_point_151___________________________________ (pres_plasma_ion_total_profile151)_ 3.36763288875646540e+05 -Total_plasma_ion_pressure_at_point_152___________________________________ (pres_plasma_ion_total_profile152)_ 3.35999155688415281e+05 -Total_plasma_ion_pressure_at_point_153___________________________________ (pres_plasma_ion_total_profile153)_ 3.35231039897664450e+05 -Total_plasma_ion_pressure_at_point_154___________________________________ (pres_plasma_ion_total_profile154)_ 3.34458962087313179e+05 -Total_plasma_ion_pressure_at_point_155___________________________________ (pres_plasma_ion_total_profile155)_ 3.33682942964463320e+05 -Total_plasma_ion_pressure_at_point_156___________________________________ (pres_plasma_ion_total_profile156)_ 3.32903003359169292e+05 -Total_plasma_ion_pressure_at_point_157___________________________________ (pres_plasma_ion_total_profile157)_ 3.32119164224207751e+05 -Total_plasma_ion_pressure_at_point_158___________________________________ (pres_plasma_ion_total_profile158)_ 3.31331446634845284e+05 -Total_plasma_ion_pressure_at_point_159___________________________________ (pres_plasma_ion_total_profile159)_ 3.30539871788605058e+05 -Total_plasma_ion_pressure_at_point_160___________________________________ (pres_plasma_ion_total_profile160)_ 3.29744461005032645e+05 -Total_plasma_ion_pressure_at_point_161___________________________________ (pres_plasma_ion_total_profile161)_ 3.28945235725458537e+05 -Total_plasma_ion_pressure_at_point_162___________________________________ (pres_plasma_ion_total_profile162)_ 3.28142217512761999e+05 -Total_plasma_ion_pressure_at_point_163___________________________________ (pres_plasma_ion_total_profile163)_ 3.27335428051131661e+05 -Total_plasma_ion_pressure_at_point_164___________________________________ (pres_plasma_ion_total_profile164)_ 3.26524889145825233e+05 -Total_plasma_ion_pressure_at_point_165___________________________________ (pres_plasma_ion_total_profile165)_ 3.25710622722928529e+05 -Total_plasma_ion_pressure_at_point_166___________________________________ (pres_plasma_ion_total_profile166)_ 3.24892650829112274e+05 -Total_plasma_ion_pressure_at_point_167___________________________________ (pres_plasma_ion_total_profile167)_ 3.24070995631388098e+05 -Total_plasma_ion_pressure_at_point_168___________________________________ (pres_plasma_ion_total_profile168)_ 3.23245679416863539e+05 -Total_plasma_ion_pressure_at_point_169___________________________________ (pres_plasma_ion_total_profile169)_ 3.22416724592494604e+05 -Total_plasma_ion_pressure_at_point_170___________________________________ (pres_plasma_ion_total_profile170)_ 3.21584153684838850e+05 -Total_plasma_ion_pressure_at_point_171___________________________________ (pres_plasma_ion_total_profile171)_ 3.20747989339805150e+05 -Total_plasma_ion_pressure_at_point_172___________________________________ (pres_plasma_ion_total_profile172)_ 3.19908254322403693e+05 -Total_plasma_ion_pressure_at_point_173___________________________________ (pres_plasma_ion_total_profile173)_ 3.19064971516494523e+05 -Total_plasma_ion_pressure_at_point_174___________________________________ (pres_plasma_ion_total_profile174)_ 3.18218163924533525e+05 -Total_plasma_ion_pressure_at_point_175___________________________________ (pres_plasma_ion_total_profile175)_ 3.17367854667319742e+05 -Total_plasma_ion_pressure_at_point_176___________________________________ (pres_plasma_ion_total_profile176)_ 3.16514066983738216e+05 -Total_plasma_ion_pressure_at_point_177___________________________________ (pres_plasma_ion_total_profile177)_ 3.15656824230504571e+05 -Total_plasma_ion_pressure_at_point_178___________________________________ (pres_plasma_ion_total_profile178)_ 3.14796149881906575e+05 -Total_plasma_ion_pressure_at_point_179___________________________________ (pres_plasma_ion_total_profile179)_ 3.13932067529545224e+05 -Total_plasma_ion_pressure_at_point_180___________________________________ (pres_plasma_ion_total_profile180)_ 3.13064600882074272e+05 -Total_plasma_ion_pressure_at_point_181___________________________________ (pres_plasma_ion_total_profile181)_ 3.12193773764939164e+05 -Total_plasma_ion_pressure_at_point_182___________________________________ (pres_plasma_ion_total_profile182)_ 3.11319610120113706e+05 -Total_plasma_ion_pressure_at_point_183___________________________________ (pres_plasma_ion_total_profile183)_ 3.10442134005837317e+05 -Total_plasma_ion_pressure_at_point_184___________________________________ (pres_plasma_ion_total_profile184)_ 3.09561369596349134e+05 -Total_plasma_ion_pressure_at_point_185___________________________________ (pres_plasma_ion_total_profile185)_ 3.08677341181622818e+05 -Total_plasma_ion_pressure_at_point_186___________________________________ (pres_plasma_ion_total_profile186)_ 3.07790073167098861e+05 -Total_plasma_ion_pressure_at_point_187___________________________________ (pres_plasma_ion_total_profile187)_ 3.06899590073416592e+05 -Total_plasma_ion_pressure_at_point_188___________________________________ (pres_plasma_ion_total_profile188)_ 3.06005916536144563e+05 -Total_plasma_ion_pressure_at_point_189___________________________________ (pres_plasma_ion_total_profile189)_ 3.05109077305510815e+05 -Total_plasma_ion_pressure_at_point_190___________________________________ (pres_plasma_ion_total_profile190)_ 3.04209097246130812e+05 -Total_plasma_ion_pressure_at_point_191___________________________________ (pres_plasma_ion_total_profile191)_ 3.03306001336735033e+05 -Total_plasma_ion_pressure_at_point_192___________________________________ (pres_plasma_ion_total_profile192)_ 3.02399814669895801e+05 -Total_plasma_ion_pressure_at_point_193___________________________________ (pres_plasma_ion_total_profile193)_ 3.01490562451752310e+05 -Total_plasma_ion_pressure_at_point_194___________________________________ (pres_plasma_ion_total_profile194)_ 3.00578270001735655e+05 -Total_plasma_ion_pressure_at_point_195___________________________________ (pres_plasma_ion_total_profile195)_ 2.99662962752291816e+05 -Total_plasma_ion_pressure_at_point_196___________________________________ (pres_plasma_ion_total_profile196)_ 2.98744666248604597e+05 -Total_plasma_ion_pressure_at_point_197___________________________________ (pres_plasma_ion_total_profile197)_ 2.97823406148316863e+05 -Total_plasma_ion_pressure_at_point_198___________________________________ (pres_plasma_ion_total_profile198)_ 2.96899208221251727e+05 -Total_plasma_ion_pressure_at_point_199___________________________________ (pres_plasma_ion_total_profile199)_ 2.95972098349131760e+05 -Total_plasma_ion_pressure_at_point_200___________________________________ (pres_plasma_ion_total_profile200)_ 2.95042102525298658e+05 -Total_plasma_ion_pressure_at_point_201___________________________________ (pres_plasma_ion_total_profile201)_ 2.94109246854430472e+05 -Total_plasma_ion_pressure_at_point_202___________________________________ (pres_plasma_ion_total_profile202)_ 2.93173557552259532e+05 -Total_plasma_ion_pressure_at_point_203___________________________________ (pres_plasma_ion_total_profile203)_ 2.92235060945288104e+05 -Total_plasma_ion_pressure_at_point_204___________________________________ (pres_plasma_ion_total_profile204)_ 2.91293783470505092e+05 -Total_plasma_ion_pressure_at_point_205___________________________________ (pres_plasma_ion_total_profile205)_ 2.90349751675099309e+05 -Total_plasma_ion_pressure_at_point_206___________________________________ (pres_plasma_ion_total_profile206)_ 2.89402992216175073e+05 -Total_plasma_ion_pressure_at_point_207___________________________________ (pres_plasma_ion_total_profile207)_ 2.88453531860464660e+05 -Total_plasma_ion_pressure_at_point_208___________________________________ (pres_plasma_ion_total_profile208)_ 2.87501397484041285e+05 -Total_plasma_ion_pressure_at_point_209___________________________________ (pres_plasma_ion_total_profile209)_ 2.86546616072030913e+05 -Total_plasma_ion_pressure_at_point_210___________________________________ (pres_plasma_ion_total_profile210)_ 2.85589214718323667e+05 -Total_plasma_ion_pressure_at_point_211___________________________________ (pres_plasma_ion_total_profile211)_ 2.84629220625284594e+05 -Total_plasma_ion_pressure_at_point_212___________________________________ (pres_plasma_ion_total_profile212)_ 2.83666661103463557e+05 -Total_plasma_ion_pressure_at_point_213___________________________________ (pres_plasma_ion_total_profile213)_ 2.82701563571305189e+05 -Total_plasma_ion_pressure_at_point_214___________________________________ (pres_plasma_ion_total_profile214)_ 2.81733955554857093e+05 -Total_plasma_ion_pressure_at_point_215___________________________________ (pres_plasma_ion_total_profile215)_ 2.80763864687479683e+05 -Total_plasma_ion_pressure_at_point_216___________________________________ (pres_plasma_ion_total_profile216)_ 2.79791318709552696e+05 -Total_plasma_ion_pressure_at_point_217___________________________________ (pres_plasma_ion_total_profile217)_ 2.78816345468183805e+05 -Total_plasma_ion_pressure_at_point_218___________________________________ (pres_plasma_ion_total_profile218)_ 2.77838972916915664e+05 -Total_plasma_ion_pressure_at_point_219___________________________________ (pres_plasma_ion_total_profile219)_ 2.76859229115432070e+05 -Total_plasma_ion_pressure_at_point_220___________________________________ (pres_plasma_ion_total_profile220)_ 2.75877142229265359e+05 -Total_plasma_ion_pressure_at_point_221___________________________________ (pres_plasma_ion_total_profile221)_ 2.74892740529501927e+05 -Total_plasma_ion_pressure_at_point_222___________________________________ (pres_plasma_ion_total_profile222)_ 2.73906052392488287e+05 -Total_plasma_ion_pressure_at_point_223___________________________________ (pres_plasma_ion_total_profile223)_ 2.72917106299536768e+05 -Total_plasma_ion_pressure_at_point_224___________________________________ (pres_plasma_ion_total_profile224)_ 2.71925930836631160e+05 -Total_plasma_ion_pressure_at_point_225___________________________________ (pres_plasma_ion_total_profile225)_ 2.70932554694131599e+05 -Total_plasma_ion_pressure_at_point_226___________________________________ (pres_plasma_ion_total_profile226)_ 2.69937006666480447e+05 -Total_plasma_ion_pressure_at_point_227___________________________________ (pres_plasma_ion_total_profile227)_ 2.68939315651906945e+05 -Total_plasma_ion_pressure_at_point_228___________________________________ (pres_plasma_ion_total_profile228)_ 2.67939510652132332e+05 -Total_plasma_ion_pressure_at_point_229___________________________________ (pres_plasma_ion_total_profile229)_ 2.66937620772075607e+05 -Total_plasma_ion_pressure_at_point_230___________________________________ (pres_plasma_ion_total_profile230)_ 2.65933675219558179e+05 -Total_plasma_ion_pressure_at_point_231___________________________________ (pres_plasma_ion_total_profile231)_ 2.64927703305009345e+05 -Total_plasma_ion_pressure_at_point_232___________________________________ (pres_plasma_ion_total_profile232)_ 2.63919734441172564e+05 -Total_plasma_ion_pressure_at_point_233___________________________________ (pres_plasma_ion_total_profile233)_ 2.62909798142809712e+05 -Total_plasma_ion_pressure_at_point_234___________________________________ (pres_plasma_ion_total_profile234)_ 2.61897924026408989e+05 -Total_plasma_ion_pressure_at_point_235___________________________________ (pres_plasma_ion_total_profile235)_ 2.60884141809889989e+05 -Total_plasma_ion_pressure_at_point_236___________________________________ (pres_plasma_ion_total_profile236)_ 2.59868481312310731e+05 -Total_plasma_ion_pressure_at_point_237___________________________________ (pres_plasma_ion_total_profile237)_ 2.58850972453575232e+05 -Total_plasma_ion_pressure_at_point_238___________________________________ (pres_plasma_ion_total_profile238)_ 2.57831645254141215e+05 -Total_plasma_ion_pressure_at_point_239___________________________________ (pres_plasma_ion_total_profile239)_ 2.56810529834727728e+05 -Total_plasma_ion_pressure_at_point_240___________________________________ (pres_plasma_ion_total_profile240)_ 2.55787656416025158e+05 -Total_plasma_ion_pressure_at_point_241___________________________________ (pres_plasma_ion_total_profile241)_ 2.54763055318403931e+05 -Total_plasma_ion_pressure_at_point_242___________________________________ (pres_plasma_ion_total_profile242)_ 2.53736756961625069e+05 -Total_plasma_ion_pressure_at_point_243___________________________________ (pres_plasma_ion_total_profile243)_ 2.52708791864551924e+05 -Total_plasma_ion_pressure_at_point_244___________________________________ (pres_plasma_ion_total_profile244)_ 2.51679190644861665e+05 -Total_plasma_ion_pressure_at_point_245___________________________________ (pres_plasma_ion_total_profile245)_ 2.50647984018758812e+05 -Total_plasma_ion_pressure_at_point_246___________________________________ (pres_plasma_ion_total_profile246)_ 2.49615202800689091e+05 -Total_plasma_ion_pressure_at_point_247___________________________________ (pres_plasma_ion_total_profile247)_ 2.48580877903054730e+05 -Total_plasma_ion_pressure_at_point_248___________________________________ (pres_plasma_ion_total_profile248)_ 2.47545040335931059e+05 -Total_plasma_ion_pressure_at_point_249___________________________________ (pres_plasma_ion_total_profile249)_ 2.46507721206784161e+05 -Total_plasma_ion_pressure_at_point_250___________________________________ (pres_plasma_ion_total_profile250)_ 2.45468951720190205e+05 -Total_plasma_ion_pressure_at_point_251___________________________________ (pres_plasma_ion_total_profile251)_ 2.44428763177555578e+05 -Total_plasma_ion_pressure_at_point_252___________________________________ (pres_plasma_ion_total_profile252)_ 2.43387186976839963e+05 -Total_plasma_ion_pressure_at_point_253___________________________________ (pres_plasma_ion_total_profile253)_ 2.42344254612278630e+05 -Total_plasma_ion_pressure_at_point_254___________________________________ (pres_plasma_ion_total_profile254)_ 2.41299997674109589e+05 -Total_plasma_ion_pressure_at_point_255___________________________________ (pres_plasma_ion_total_profile255)_ 2.40254447848299926e+05 -Total_plasma_ion_pressure_at_point_256___________________________________ (pres_plasma_ion_total_profile256)_ 2.39207636916275689e+05 -Total_plasma_ion_pressure_at_point_257___________________________________ (pres_plasma_ion_total_profile257)_ 2.38159596754652681e+05 -Total_plasma_ion_pressure_at_point_258___________________________________ (pres_plasma_ion_total_profile258)_ 2.37110359334970621e+05 -Total_plasma_ion_pressure_at_point_259___________________________________ (pres_plasma_ion_total_profile259)_ 2.36059956723428390e+05 -Total_plasma_ion_pressure_at_point_260___________________________________ (pres_plasma_ion_total_profile260)_ 2.35008421080622822e+05 -Total_plasma_ion_pressure_at_point_261___________________________________ (pres_plasma_ion_total_profile261)_ 2.33955784661288402e+05 -Total_plasma_ion_pressure_at_point_262___________________________________ (pres_plasma_ion_total_profile262)_ 2.32902079814041877e+05 -Total_plasma_ion_pressure_at_point_263___________________________________ (pres_plasma_ion_total_profile263)_ 2.31847338981126988e+05 -Total_plasma_ion_pressure_at_point_264___________________________________ (pres_plasma_ion_total_profile264)_ 2.30791594698164467e+05 -Total_plasma_ion_pressure_at_point_265___________________________________ (pres_plasma_ion_total_profile265)_ 2.29734879593903170e+05 -Total_plasma_ion_pressure_at_point_266___________________________________ (pres_plasma_ion_total_profile266)_ 2.28677226389975811e+05 -Total_plasma_ion_pressure_at_point_267___________________________________ (pres_plasma_ion_total_profile267)_ 2.27618667900656787e+05 -Total_plasma_ion_pressure_at_point_268___________________________________ (pres_plasma_ion_total_profile268)_ 2.26559237032624806e+05 -Total_plasma_ion_pressure_at_point_269___________________________________ (pres_plasma_ion_total_profile269)_ 2.25498966784727178e+05 -Total_plasma_ion_pressure_at_point_270___________________________________ (pres_plasma_ion_total_profile270)_ 2.24437890247750300e+05 -Total_plasma_ion_pressure_at_point_271___________________________________ (pres_plasma_ion_total_profile271)_ 2.23376040604191629e+05 -Total_plasma_ion_pressure_at_point_272___________________________________ (pres_plasma_ion_total_profile272)_ 2.22313451128037530e+05 -Total_plasma_ion_pressure_at_point_273___________________________________ (pres_plasma_ion_total_profile273)_ 2.21250155184544768e+05 -Total_plasma_ion_pressure_at_point_274___________________________________ (pres_plasma_ion_total_profile274)_ 2.20186186230026098e+05 -Total_plasma_ion_pressure_at_point_275___________________________________ (pres_plasma_ion_total_profile275)_ 2.19121577811640687e+05 -Total_plasma_ion_pressure_at_point_276___________________________________ (pres_plasma_ion_total_profile276)_ 2.18056363567189983e+05 -Total_plasma_ion_pressure_at_point_277___________________________________ (pres_plasma_ion_total_profile277)_ 2.16990577224917302e+05 -Total_plasma_ion_pressure_at_point_278___________________________________ (pres_plasma_ion_total_profile278)_ 2.15924252603314380e+05 -Total_plasma_ion_pressure_at_point_279___________________________________ (pres_plasma_ion_total_profile279)_ 2.14857423610931059e+05 -Total_plasma_ion_pressure_at_point_280___________________________________ (pres_plasma_ion_total_profile280)_ 2.13790124246193242e+05 -Total_plasma_ion_pressure_at_point_281___________________________________ (pres_plasma_ion_total_profile281)_ 2.12722388597224141e+05 -Total_plasma_ion_pressure_at_point_282___________________________________ (pres_plasma_ion_total_profile282)_ 2.11654250841673871e+05 -Total_plasma_ion_pressure_at_point_283___________________________________ (pres_plasma_ion_total_profile283)_ 2.10585745246553735e+05 -Total_plasma_ion_pressure_at_point_284___________________________________ (pres_plasma_ion_total_profile284)_ 2.09516906168077723e+05 -Total_plasma_ion_pressure_at_point_285___________________________________ (pres_plasma_ion_total_profile285)_ 2.08447768051511404e+05 -Total_plasma_ion_pressure_at_point_286___________________________________ (pres_plasma_ion_total_profile286)_ 2.07378365431026672e+05 -Total_plasma_ion_pressure_at_point_287___________________________________ (pres_plasma_ion_total_profile287)_ 2.06308732929565303e+05 -Total_plasma_ion_pressure_at_point_288___________________________________ (pres_plasma_ion_total_profile288)_ 2.05238905258708372e+05 -Total_plasma_ion_pressure_at_point_289___________________________________ (pres_plasma_ion_total_profile289)_ 2.04168917218556075e+05 -Total_plasma_ion_pressure_at_point_290___________________________________ (pres_plasma_ion_total_profile290)_ 2.03098803697613039e+05 -Total_plasma_ion_pressure_at_point_291___________________________________ (pres_plasma_ion_total_profile291)_ 2.02028599672685028e+05 -Total_plasma_ion_pressure_at_point_292___________________________________ (pres_plasma_ion_total_profile292)_ 2.00958340208781417e+05 -Total_plasma_ion_pressure_at_point_293___________________________________ (pres_plasma_ion_total_profile293)_ 1.99888060459030297e+05 -Total_plasma_ion_pressure_at_point_294___________________________________ (pres_plasma_ion_total_profile294)_ 1.98817795664600388e+05 -Total_plasma_ion_pressure_at_point_295___________________________________ (pres_plasma_ion_total_profile295)_ 1.97747581154634070e+05 -Total_plasma_ion_pressure_at_point_296___________________________________ (pres_plasma_ion_total_profile296)_ 1.96677452346191159e+05 -Total_plasma_ion_pressure_at_point_297___________________________________ (pres_plasma_ion_total_profile297)_ 1.95607444744202512e+05 -Total_plasma_ion_pressure_at_point_298___________________________________ (pres_plasma_ion_total_profile298)_ 1.94537593941434578e+05 -Total_plasma_ion_pressure_at_point_299___________________________________ (pres_plasma_ion_total_profile299)_ 1.93467935618466960e+05 -Total_plasma_ion_pressure_at_point_300___________________________________ (pres_plasma_ion_total_profile300)_ 1.92398505543680076e+05 -Total_plasma_ion_pressure_at_point_301___________________________________ (pres_plasma_ion_total_profile301)_ 1.91329339573256439e+05 -Total_plasma_ion_pressure_at_point_302___________________________________ (pres_plasma_ion_total_profile302)_ 1.90260473651194276e+05 -Total_plasma_ion_pressure_at_point_303___________________________________ (pres_plasma_ion_total_profile303)_ 1.89191943809334480e+05 -Total_plasma_ion_pressure_at_point_304___________________________________ (pres_plasma_ion_total_profile304)_ 1.88123786167401558e+05 -Total_plasma_ion_pressure_at_point_305___________________________________ (pres_plasma_ion_total_profile305)_ 1.87056036933058960e+05 -Total_plasma_ion_pressure_at_point_306___________________________________ (pres_plasma_ion_total_profile306)_ 1.85988732401978923e+05 -Total_plasma_ion_pressure_at_point_307___________________________________ (pres_plasma_ion_total_profile307)_ 1.84921908957928128e+05 -Total_plasma_ion_pressure_at_point_308___________________________________ (pres_plasma_ion_total_profile308)_ 1.83855603072868806e+05 -Total_plasma_ion_pressure_at_point_309___________________________________ (pres_plasma_ion_total_profile309)_ 1.82789851307077275e+05 -Total_plasma_ion_pressure_at_point_310___________________________________ (pres_plasma_ion_total_profile310)_ 1.81724690309278725e+05 -Total_plasma_ion_pressure_at_point_311___________________________________ (pres_plasma_ion_total_profile311)_ 1.80660156816800882e+05 -Total_plasma_ion_pressure_at_point_312___________________________________ (pres_plasma_ion_total_profile312)_ 1.79596287655744585e+05 -Total_plasma_ion_pressure_at_point_313___________________________________ (pres_plasma_ion_total_profile313)_ 1.78533119741175731e+05 -Total_plasma_ion_pressure_at_point_314___________________________________ (pres_plasma_ion_total_profile314)_ 1.77470690077334817e+05 -Total_plasma_ion_pressure_at_point_315___________________________________ (pres_plasma_ion_total_profile315)_ 1.76409035757869191e+05 -Total_plasma_ion_pressure_at_point_316___________________________________ (pres_plasma_ion_total_profile316)_ 1.75348193966085062e+05 -Total_plasma_ion_pressure_at_point_317___________________________________ (pres_plasma_ion_total_profile317)_ 1.74288201975222939e+05 -Total_plasma_ion_pressure_at_point_318___________________________________ (pres_plasma_ion_total_profile318)_ 1.73229097148755187e+05 -Total_plasma_ion_pressure_at_point_319___________________________________ (pres_plasma_ion_total_profile319)_ 1.72170916940708586e+05 -Total_plasma_ion_pressure_at_point_320___________________________________ (pres_plasma_ion_total_profile320)_ 1.71113698896010232e+05 -Total_plasma_ion_pressure_at_point_321___________________________________ (pres_plasma_ion_total_profile321)_ 1.70057480650860787e+05 -Total_plasma_ion_pressure_at_point_322___________________________________ (pres_plasma_ion_total_profile322)_ 1.69002299933133123e+05 -Total_plasma_ion_pressure_at_point_323___________________________________ (pres_plasma_ion_total_profile323)_ 1.67948194562800025e+05 -Total_plasma_ion_pressure_at_point_324___________________________________ (pres_plasma_ion_total_profile324)_ 1.66895202452389203e+05 -Total_plasma_ion_pressure_at_point_325___________________________________ (pres_plasma_ion_total_profile325)_ 1.65843361607469444e+05 -Total_plasma_ion_pressure_at_point_326___________________________________ (pres_plasma_ion_total_profile326)_ 1.64792710127167171e+05 -Total_plasma_ion_pressure_at_point_327___________________________________ (pres_plasma_ion_total_profile327)_ 1.63743286204715725e+05 -Total_plasma_ion_pressure_at_point_328___________________________________ (pres_plasma_ion_total_profile328)_ 1.62695128128037206e+05 -Total_plasma_ion_pressure_at_point_329___________________________________ (pres_plasma_ion_total_profile329)_ 1.61648274280360434e+05 -Total_plasma_ion_pressure_at_point_330___________________________________ (pres_plasma_ion_total_profile330)_ 1.60602763140873605e+05 -Total_plasma_ion_pressure_at_point_331___________________________________ (pres_plasma_ion_total_profile331)_ 1.59558633285415766e+05 -Total_plasma_ion_pressure_at_point_332___________________________________ (pres_plasma_ion_total_profile332)_ 1.58515923387206014e+05 -Total_plasma_ion_pressure_at_point_333___________________________________ (pres_plasma_ion_total_profile333)_ 1.57474672217614483e+05 -Total_plasma_ion_pressure_at_point_334___________________________________ (pres_plasma_ion_total_profile334)_ 1.56434918646974227e+05 -Total_plasma_ion_pressure_at_point_335___________________________________ (pres_plasma_ion_total_profile335)_ 1.55396701645437774e+05 -Total_plasma_ion_pressure_at_point_336___________________________________ (pres_plasma_ion_total_profile336)_ 1.54360060283878789e+05 -Total_plasma_ion_pressure_at_point_337___________________________________ (pres_plasma_ion_total_profile337)_ 1.53325033734841010e+05 -Total_plasma_ion_pressure_at_point_338___________________________________ (pres_plasma_ion_total_profile338)_ 1.52291661273536418e+05 -Total_plasma_ion_pressure_at_point_339___________________________________ (pres_plasma_ion_total_profile339)_ 1.51259982278894749e+05 -Total_plasma_ion_pressure_at_point_340___________________________________ (pres_plasma_ion_total_profile340)_ 1.50230036234665866e+05 -Total_plasma_ion_pressure_at_point_341___________________________________ (pres_plasma_ion_total_profile341)_ 1.49201862730578141e+05 -Total_plasma_ion_pressure_at_point_342___________________________________ (pres_plasma_ion_total_profile342)_ 1.48175501463553606e+05 -Total_plasma_ion_pressure_at_point_343___________________________________ (pres_plasma_ion_total_profile343)_ 1.47150992238983919e+05 -Total_plasma_ion_pressure_at_point_344___________________________________ (pres_plasma_ion_total_profile344)_ 1.46128374972068617e+05 -Total_plasma_ion_pressure_at_point_345___________________________________ (pres_plasma_ion_total_profile345)_ 1.45107689689217514e+05 -Total_plasma_ion_pressure_at_point_346___________________________________ (pres_plasma_ion_total_profile346)_ 1.44088976529522653e+05 -Total_plasma_ion_pressure_at_point_347___________________________________ (pres_plasma_ion_total_profile347)_ 1.43072275746298750e+05 -Total_plasma_ion_pressure_at_point_348___________________________________ (pres_plasma_ion_total_profile348)_ 1.42057627708698914e+05 -Total_plasma_ion_pressure_at_point_349___________________________________ (pres_plasma_ion_total_profile349)_ 1.41045072903406020e+05 -Total_plasma_ion_pressure_at_point_350___________________________________ (pres_plasma_ion_total_profile350)_ 1.40034651936404407e+05 -Total_plasma_ion_pressure_at_point_351___________________________________ (pres_plasma_ion_total_profile351)_ 1.39026405534834106e+05 -Total_plasma_ion_pressure_at_point_352___________________________________ (pres_plasma_ion_total_profile352)_ 1.38020374548933614e+05 -Total_plasma_ion_pressure_at_point_353___________________________________ (pres_plasma_ion_total_profile353)_ 1.37016599954071309e+05 -Total_plasma_ion_pressure_at_point_354___________________________________ (pres_plasma_ion_total_profile354)_ 1.36015122852872970e+05 -Total_plasma_ion_pressure_at_point_355___________________________________ (pres_plasma_ion_total_profile355)_ 1.35015984477447200e+05 -Total_plasma_ion_pressure_at_point_356___________________________________ (pres_plasma_ion_total_profile356)_ 1.34019226191714144e+05 -Total_plasma_ion_pressure_at_point_357___________________________________ (pres_plasma_ion_total_profile357)_ 1.33024889493842027e+05 -Total_plasma_ion_pressure_at_point_358___________________________________ (pres_plasma_ion_total_profile358)_ 1.32033016018795694e+05 -Total_plasma_ion_pressure_at_point_359___________________________________ (pres_plasma_ion_total_profile359)_ 1.31043647541003025e+05 -Total_plasma_ion_pressure_at_point_360___________________________________ (pres_plasma_ion_total_profile360)_ 1.30056825977144224e+05 -Total_plasma_ion_pressure_at_point_361___________________________________ (pres_plasma_ion_total_profile361)_ 1.29072593389068672e+05 -Total_plasma_ion_pressure_at_point_362___________________________________ (pres_plasma_ion_total_profile362)_ 1.28090991986847366e+05 -Total_plasma_ion_pressure_at_point_363___________________________________ (pres_plasma_ion_total_profile363)_ 1.27112064131964478e+05 -Total_plasma_ion_pressure_at_point_364___________________________________ (pres_plasma_ion_total_profile364)_ 1.26135852340657191e+05 -Total_plasma_ion_pressure_at_point_365___________________________________ (pres_plasma_ion_total_profile365)_ 1.25162399287408305e+05 -Total_plasma_ion_pressure_at_point_366___________________________________ (pres_plasma_ion_total_profile366)_ 1.24191747808600892e+05 -Total_plasma_ion_pressure_at_point_367___________________________________ (pres_plasma_ion_total_profile367)_ 1.23223940906341129e+05 -Total_plasma_ion_pressure_at_point_368___________________________________ (pres_plasma_ion_total_profile368)_ 1.22259021752458808e+05 -Total_plasma_ion_pressure_at_point_369___________________________________ (pres_plasma_ion_total_profile369)_ 1.21297033692692508e+05 -Total_plasma_ion_pressure_at_point_370___________________________________ (pres_plasma_ion_total_profile370)_ 1.20338020251070091e+05 -Total_plasma_ion_pressure_at_point_371___________________________________ (pres_plasma_ion_total_profile371)_ 1.19382025134492666e+05 -Total_plasma_ion_pressure_at_point_372___________________________________ (pres_plasma_ion_total_profile372)_ 1.18429092237533361e+05 -Total_plasma_ion_pressure_at_point_373___________________________________ (pres_plasma_ion_total_profile373)_ 1.17479265647460372e+05 -Total_plasma_ion_pressure_at_point_374___________________________________ (pres_plasma_ion_total_profile374)_ 1.16532589649497182e+05 -Total_plasma_ion_pressure_at_point_375___________________________________ (pres_plasma_ion_total_profile375)_ 1.15589108732329929e+05 -Total_plasma_ion_pressure_at_point_376___________________________________ (pres_plasma_ion_total_profile376)_ 1.14648867593877032e+05 -Total_plasma_ion_pressure_at_point_377___________________________________ (pres_plasma_ion_total_profile377)_ 1.13711911147332037e+05 -Total_plasma_ion_pressure_at_point_378___________________________________ (pres_plasma_ion_total_profile378)_ 1.12778284527496726e+05 -Total_plasma_ion_pressure_at_point_379___________________________________ (pres_plasma_ion_total_profile379)_ 1.11848033097417298e+05 -Total_plasma_ion_pressure_at_point_380___________________________________ (pres_plasma_ion_total_profile380)_ 1.10921202455341190e+05 -Total_plasma_ion_pressure_at_point_381___________________________________ (pres_plasma_ion_total_profile381)_ 1.09997838442011795e+05 -Total_plasma_ion_pressure_at_point_382___________________________________ (pres_plasma_ion_total_profile382)_ 1.09077987148318338e+05 -Total_plasma_ion_pressure_at_point_383___________________________________ (pres_plasma_ion_total_profile383)_ 1.08161694923321731e+05 -Total_plasma_ion_pressure_at_point_384___________________________________ (pres_plasma_ion_total_profile384)_ 1.07249008382676082e+05 -Total_plasma_ion_pressure_at_point_385___________________________________ (pres_plasma_ion_total_profile385)_ 1.06339974417468969e+05 -Total_plasma_ion_pressure_at_point_386___________________________________ (pres_plasma_ion_total_profile386)_ 1.05434640203503062e+05 -Total_plasma_ion_pressure_at_point_387___________________________________ (pres_plasma_ion_total_profile387)_ 1.04533053211045481e+05 -Total_plasma_ion_pressure_at_point_388___________________________________ (pres_plasma_ion_total_profile388)_ 1.03635261215070888e+05 -Total_plasma_ion_pressure_at_point_389___________________________________ (pres_plasma_ion_total_profile389)_ 1.02741312306027874e+05 -Total_plasma_ion_pressure_at_point_390___________________________________ (pres_plasma_ion_total_profile390)_ 1.01851254901158682e+05 -Total_plasma_ion_pressure_at_point_391___________________________________ (pres_plasma_ion_total_profile391)_ 1.00965137756406431e+05 -Total_plasma_ion_pressure_at_point_392___________________________________ (pres_plasma_ion_total_profile392)_ 1.00083009978943825e+05 -Total_plasma_ion_pressure_at_point_393___________________________________ (pres_plasma_ion_total_profile393)_ 9.92049210403632314e+04 -Total_plasma_ion_pressure_at_point_394___________________________________ (pres_plasma_ion_total_profile394)_ 9.83309207905663789e+04 -Total_plasma_ion_pressure_at_point_395___________________________________ (pres_plasma_ion_total_profile395)_ 9.74610594724002585e+04 -Total_plasma_ion_pressure_at_point_396___________________________________ (pres_plasma_ion_total_profile396)_ 9.65953877370839909e+04 -Total_plasma_ion_pressure_at_point_397___________________________________ (pres_plasma_ion_total_profile397)_ 9.57339566604791326e+04 -Total_plasma_ion_pressure_at_point_398___________________________________ (pres_plasma_ion_total_profile398)_ 9.48768177602566575e+04 -Total_plasma_ion_pressure_at_point_399___________________________________ (pres_plasma_ion_total_profile399)_ 9.40240230140209751e+04 -Total_plasma_ion_pressure_at_point_400___________________________________ (pres_plasma_ion_total_profile400)_ 9.31756248784529453e+04 -Total_plasma_ion_pressure_at_point_401___________________________________ (pres_plasma_ion_total_profile401)_ 9.23316763095426577e+04 -Total_plasma_ion_pressure_at_point_402___________________________________ (pres_plasma_ion_total_profile402)_ 9.14922307839840505e+04 -Total_plasma_ion_pressure_at_point_403___________________________________ (pres_plasma_ion_total_profile403)_ 9.06573423218143434e+04 -Total_plasma_ion_pressure_at_point_404___________________________________ (pres_plasma_ion_total_profile404)_ 8.98270655103832687e+04 -Total_plasma_ion_pressure_at_point_405___________________________________ (pres_plasma_ion_total_profile405)_ 8.90014555297488987e+04 -Total_plasma_ion_pressure_at_point_406___________________________________ (pres_plasma_ion_total_profile406)_ 8.81805681796015415e+04 -Total_plasma_ion_pressure_at_point_407___________________________________ (pres_plasma_ion_total_profile407)_ 8.73644599078287865e+04 -Total_plasma_ion_pressure_at_point_408___________________________________ (pres_plasma_ion_total_profile408)_ 8.65531878408427874e+04 -Total_plasma_ion_pressure_at_point_409___________________________________ (pres_plasma_ion_total_profile409)_ 8.57468098158043285e+04 -Total_plasma_ion_pressure_at_point_410___________________________________ (pres_plasma_ion_total_profile410)_ 8.49453844148870994e+04 -Total_plasma_ion_pressure_at_point_411___________________________________ (pres_plasma_ion_total_profile411)_ 8.41489710017434118e+04 -Total_plasma_ion_pressure_at_point_412___________________________________ (pres_plasma_ion_total_profile412)_ 8.33576297603430867e+04 -Total_plasma_ion_pressure_at_point_413___________________________________ (pres_plasma_ion_total_profile413)_ 8.25714217363791977e+04 -Total_plasma_ion_pressure_at_point_414___________________________________ (pres_plasma_ion_total_profile414)_ 8.17904088814477727e+04 -Total_plasma_ion_pressure_at_point_415___________________________________ (pres_plasma_ion_total_profile415)_ 8.10146541002345766e+04 -Total_plasma_ion_pressure_at_point_416___________________________________ (pres_plasma_ion_total_profile416)_ 8.02442213009616535e+04 -Total_plasma_ion_pressure_at_point_417___________________________________ (pres_plasma_ion_total_profile417)_ 7.94791754493754415e+04 -Total_plasma_ion_pressure_at_point_418___________________________________ (pres_plasma_ion_total_profile418)_ 7.87195826265863143e+04 -Total_plasma_ion_pressure_at_point_419___________________________________ (pres_plasma_ion_total_profile419)_ 7.79655100911037880e+04 -Total_plasma_ion_pressure_at_point_420___________________________________ (pres_plasma_ion_total_profile420)_ 7.72170263454487285e+04 -Total_plasma_ion_pressure_at_point_421___________________________________ (pres_plasma_ion_total_profile421)_ 7.64742012077670079e+04 -Total_plasma_ion_pressure_at_point_422___________________________________ (pres_plasma_ion_total_profile422)_ 7.57371058889173146e+04 -Total_plasma_ion_pressure_at_point_423___________________________________ (pres_plasma_ion_total_profile423)_ 7.50058130755613238e+04 -Total_plasma_ion_pressure_at_point_424___________________________________ (pres_plasma_ion_total_profile424)_ 7.42803970198459137e+04 -Total_plasma_ion_pressure_at_point_425___________________________________ (pres_plasma_ion_total_profile425)_ 7.35609336363410548e+04 -Total_plasma_ion_pressure_at_point_426___________________________________ (pres_plasma_ion_total_profile426)_ 7.28475006069768278e+04 -Total_plasma_ion_pressure_at_point_427___________________________________ (pres_plasma_ion_total_profile427)_ 7.21401774948188686e+04 -Total_plasma_ion_pressure_at_point_428___________________________________ (pres_plasma_ion_total_profile428)_ 7.14390458676309499e+04 -Total_plasma_ion_pressure_at_point_429___________________________________ (pres_plasma_ion_total_profile429)_ 7.07441894322968292e+04 -Total_plasma_ion_pressure_at_point_430___________________________________ (pres_plasma_ion_total_profile430)_ 7.00556941813231533e+04 -Total_plasma_ion_pressure_at_point_431___________________________________ (pres_plasma_ion_total_profile431)_ 6.93736485528114281e+04 -Total_plasma_ion_pressure_at_point_432___________________________________ (pres_plasma_ion_total_profile432)_ 6.86981436054890946e+04 -Total_plasma_ion_pressure_at_point_433___________________________________ (pres_plasma_ion_total_profile433)_ 6.80292732106193434e+04 -Total_plasma_ion_pressure_at_point_434___________________________________ (pres_plasma_ion_total_profile434)_ 6.73671342628864222e+04 -Total_plasma_ion_pressure_at_point_435___________________________________ (pres_plasma_ion_total_profile435)_ 6.67118269126740634e+04 -Total_plasma_ion_pressure_at_point_436___________________________________ (pres_plasma_ion_total_profile436)_ 6.60634548225425533e+04 -Total_plasma_ion_pressure_at_point_437___________________________________ (pres_plasma_ion_total_profile437)_ 6.54221254511644220e+04 -Total_plasma_ion_pressure_at_point_438___________________________________ (pres_plasma_ion_total_profile438)_ 6.47879503685329473e+04 -Total_plasma_ion_pressure_at_point_439___________________________________ (pres_plasma_ion_total_profile439)_ 6.41610456069152206e+04 -Total_plasma_ion_pressure_at_point_440___________________________________ (pres_plasma_ion_total_profile440)_ 6.35415320528261946e+04 -Total_plasma_ion_pressure_at_point_441___________________________________ (pres_plasma_ion_total_profile441)_ 6.29295358862746434e+04 -Total_plasma_ion_pressure_at_point_442___________________________________ (pres_plasma_ion_total_profile442)_ 6.23251890747295838e+04 -Total_plasma_ion_pressure_at_point_443___________________________________ (pres_plasma_ion_total_profile443)_ 6.17286299307298832e+04 -Total_plasma_ion_pressure_at_point_444___________________________________ (pres_plasma_ion_total_profile444)_ 6.11400037438945728e+04 -Total_plasma_ion_pressure_at_point_445___________________________________ (pres_plasma_ion_total_profile445)_ 6.05594635003822768e+04 -Total_plasma_ion_pressure_at_point_446___________________________________ (pres_plasma_ion_total_profile446)_ 5.99871707057419044e+04 -Total_plasma_ion_pressure_at_point_447___________________________________ (pres_plasma_ion_total_profile447)_ 5.94232963307744430e+04 -Total_plasma_ion_pressure_at_point_448___________________________________ (pres_plasma_ion_total_profile448)_ 5.88680219047482824e+04 -Total_plasma_ion_pressure_at_point_449___________________________________ (pres_plasma_ion_total_profile449)_ 5.83215407864318477e+04 -Total_plasma_ion_pressure_at_point_450___________________________________ (pres_plasma_ion_total_profile450)_ 5.77840596514311328e+04 -Total_plasma_ion_pressure_at_point_451___________________________________ (pres_plasma_ion_total_profile451)_ 5.72558002449562409e+04 -Total_plasma_ion_pressure_at_point_452___________________________________ (pres_plasma_ion_total_profile452)_ 5.67370014634262334e+04 -Total_plasma_ion_pressure_at_point_453___________________________________ (pres_plasma_ion_total_profile453)_ 5.62279218477744434e+04 -Total_plasma_ion_pressure_at_point_454___________________________________ (pres_plasma_ion_total_profile454)_ 5.57288425982188419e+04 -Total_plasma_ion_pressure_at_point_455___________________________________ (pres_plasma_ion_total_profile455)_ 5.52400712581042972e+04 -Total_plasma_ion_pressure_at_point_456___________________________________ (pres_plasma_ion_total_profile456)_ 5.47619462686770712e+04 -Total_plasma_ion_pressure_at_point_457___________________________________ (pres_plasma_ion_total_profile457)_ 5.42948426760963048e+04 -Total_plasma_ion_pressure_at_point_458___________________________________ (pres_plasma_ion_total_profile458)_ 5.38391793911511559e+04 -Total_plasma_ion_pressure_at_point_459___________________________________ (pres_plasma_ion_total_profile459)_ 5.33954285858170260e+04 -Total_plasma_ion_pressure_at_point_460___________________________________ (pres_plasma_ion_total_profile460)_ 5.29641281028771918e+04 -Total_plasma_ion_pressure_at_point_461___________________________________ (pres_plasma_ion_total_profile461)_ 5.25458982365352422e+04 -Total_plasma_ion_pressure_at_point_462___________________________________ (pres_plasma_ion_total_profile462)_ 5.21414650710231508e+04 -Total_plasma_ion_pressure_at_point_463___________________________________ (pres_plasma_ion_total_profile463)_ 5.17516940659324318e+04 -Total_plasma_ion_pressure_at_point_464___________________________________ (pres_plasma_ion_total_profile464)_ 5.13776404717855185e+04 -Total_plasma_ion_pressure_at_point_465___________________________________ (pres_plasma_ion_total_profile465)_ 5.10206291909569409e+04 -Total_plasma_ion_pressure_at_point_466___________________________________ (pres_plasma_ion_total_profile466)_ 5.06823905961806449e+04 -Total_plasma_ion_pressure_at_point_467___________________________________ (pres_plasma_ion_total_profile467)_ 5.03653155165718053e+04 -Total_plasma_ion_pressure_at_point_468___________________________________ (pres_plasma_ion_total_profile468)_ 5.00730108741867516e+04 -Total_plasma_ion_pressure_at_point_469___________________________________ (pres_plasma_ion_total_profile469)_ 4.98118705190483379e+04 -Total_plasma_ion_pressure_at_point_470___________________________________ (pres_plasma_ion_total_profile470)_ 4.96007596372339394e+04 -Total_plasma_ion_pressure_at_point_471___________________________________ (pres_plasma_ion_total_profile471)_ 4.73189478641185560e+04 -Total_plasma_ion_pressure_at_point_472___________________________________ (pres_plasma_ion_total_profile472)_ 4.50816972012654878e+04 -Total_plasma_ion_pressure_at_point_473___________________________________ (pres_plasma_ion_total_profile473)_ 4.28890076486747566e+04 -Total_plasma_ion_pressure_at_point_474___________________________________ (pres_plasma_ion_total_profile474)_ 4.07408792063463552e+04 -Total_plasma_ion_pressure_at_point_475___________________________________ (pres_plasma_ion_total_profile475)_ 3.86373118742802690e+04 -Total_plasma_ion_pressure_at_point_476___________________________________ (pres_plasma_ion_total_profile476)_ 3.65783056524765125e+04 -Total_plasma_ion_pressure_at_point_477___________________________________ (pres_plasma_ion_total_profile477)_ 3.45638605409350930e+04 -Total_plasma_ion_pressure_at_point_478___________________________________ (pres_plasma_ion_total_profile478)_ 3.25939765396560106e+04 -Total_plasma_ion_pressure_at_point_479___________________________________ (pres_plasma_ion_total_profile479)_ 3.06686536486392361e+04 -Total_plasma_ion_pressure_at_point_480___________________________________ (pres_plasma_ion_total_profile480)_ 2.87878918678847986e+04 -Total_plasma_ion_pressure_at_point_481___________________________________ (pres_plasma_ion_total_profile481)_ 2.69516911973926835e+04 -Total_plasma_ion_pressure_at_point_482___________________________________ (pres_plasma_ion_total_profile482)_ 2.51600516371629055e+04 -Total_plasma_ion_pressure_at_point_483___________________________________ (pres_plasma_ion_total_profile483)_ 2.34129731871954536e+04 -Total_plasma_ion_pressure_at_point_484___________________________________ (pres_plasma_ion_total_profile484)_ 2.17104558474903279e+04 -Total_plasma_ion_pressure_at_point_485___________________________________ (pres_plasma_ion_total_profile485)_ 2.00524996180475209e+04 -Total_plasma_ion_pressure_at_point_486___________________________________ (pres_plasma_ion_total_profile486)_ 1.84391044988670474e+04 -Total_plasma_ion_pressure_at_point_487___________________________________ (pres_plasma_ion_total_profile487)_ 1.68702704899489036e+04 -Total_plasma_ion_pressure_at_point_488___________________________________ (pres_plasma_ion_total_profile488)_ 1.53459975912930859e+04 -Total_plasma_ion_pressure_at_point_489___________________________________ (pres_plasma_ion_total_profile489)_ 1.38662858028995943e+04 -Total_plasma_ion_pressure_at_point_490___________________________________ (pres_plasma_ion_total_profile490)_ 1.24311351247684361e+04 -Total_plasma_ion_pressure_at_point_491___________________________________ (pres_plasma_ion_total_profile491)_ 1.10405455568996022e+04 -Total_plasma_ion_pressure_at_point_492___________________________________ (pres_plasma_ion_total_profile492)_ 9.69451709929309618e+03 -Total_plasma_ion_pressure_at_point_493___________________________________ (pres_plasma_ion_total_profile493)_ 8.39304975194892177e+03 -Total_plasma_ion_pressure_at_point_494___________________________________ (pres_plasma_ion_total_profile494)_ 7.13614351486707073e+03 -Total_plasma_ion_pressure_at_point_495___________________________________ (pres_plasma_ion_total_profile495)_ 5.92379838804754854e+03 -Total_plasma_ion_pressure_at_point_496___________________________________ (pres_plasma_ion_total_profile496)_ 4.75601437149035428e+03 -Total_plasma_ion_pressure_at_point_497___________________________________ (pres_plasma_ion_total_profile497)_ 3.63279146519548704e+03 -Total_plasma_ion_pressure_at_point_498___________________________________ (pres_plasma_ion_total_profile498)_ 2.55412966916294909e+03 -Total_plasma_ion_pressure_at_point_499___________________________________ (pres_plasma_ion_total_profile499)_ 1.52002898339273770e+03 -Total_plasma_ion_pressure_at_point_500___________________________________ (pres_plasma_ion_total_profile500)_ 5.30489407884855041e+02 -Total_plasma_fuel_pressure_at_point_0____________________________________ (pres_plasma_fuel_profile0)____ 3.57792057557356195e+05 -Total_plasma_fuel_pressure_at_point_1____________________________________ (pres_plasma_fuel_profile1)____ 3.57789546890591213e+05 -Total_plasma_fuel_pressure_at_point_2____________________________________ (pres_plasma_fuel_profile2)____ 3.57782014953707869e+05 -Total_plasma_fuel_pressure_at_point_3____________________________________ (pres_plasma_fuel_profile3)____ 3.57769461936939100e+05 -Total_plasma_fuel_pressure_at_point_4____________________________________ (pres_plasma_fuel_profile4)____ 3.57751888157338486e+05 -Total_plasma_fuel_pressure_at_point_5____________________________________ (pres_plasma_fuel_profile5)____ 3.57729294058775937e+05 -Total_plasma_fuel_pressure_at_point_6____________________________________ (pres_plasma_fuel_profile6)____ 3.57701680211932864e+05 -Total_plasma_fuel_pressure_at_point_7____________________________________ (pres_plasma_fuel_profile7)____ 3.57669047314296826e+05 -Total_plasma_fuel_pressure_at_point_8____________________________________ (pres_plasma_fuel_profile8)____ 3.57631396190153318e+05 -Total_plasma_fuel_pressure_at_point_9____________________________________ (pres_plasma_fuel_profile9)____ 3.57588727790577337e+05 -Total_plasma_fuel_pressure_at_point_10___________________________________ (pres_plasma_fuel_profile10)___ 3.57541043193423189e+05 -Total_plasma_fuel_pressure_at_point_11___________________________________ (pres_plasma_fuel_profile11)___ 3.57488343603312678e+05 -Total_plasma_fuel_pressure_at_point_12___________________________________ (pres_plasma_fuel_profile12)___ 3.57430630351622473e+05 -Total_plasma_fuel_pressure_at_point_13___________________________________ (pres_plasma_fuel_profile13)___ 3.57367904896469903e+05 -Total_plasma_fuel_pressure_at_point_14___________________________________ (pres_plasma_fuel_profile14)___ 3.57300168822696840e+05 -Total_plasma_fuel_pressure_at_point_15___________________________________ (pres_plasma_fuel_profile15)___ 3.57227423841853219e+05 -Total_plasma_fuel_pressure_at_point_16___________________________________ (pres_plasma_fuel_profile16)___ 3.57149671792178822e+05 -Total_plasma_fuel_pressure_at_point_17___________________________________ (pres_plasma_fuel_profile17)___ 3.57066914638582908e+05 -Total_plasma_fuel_pressure_at_point_18___________________________________ (pres_plasma_fuel_profile18)___ 3.56979154472623835e+05 -Total_plasma_fuel_pressure_at_point_19___________________________________ (pres_plasma_fuel_profile19)___ 3.56886393512486422e+05 -Total_plasma_fuel_pressure_at_point_20___________________________________ (pres_plasma_fuel_profile20)___ 3.56788634102957963e+05 -Total_plasma_fuel_pressure_at_point_21___________________________________ (pres_plasma_fuel_profile21)___ 3.56685878715403378e+05 -Total_plasma_fuel_pressure_at_point_22___________________________________ (pres_plasma_fuel_profile22)___ 3.56578129947738606e+05 -Total_plasma_fuel_pressure_at_point_23___________________________________ (pres_plasma_fuel_profile23)___ 3.56465390524402785e+05 -Total_plasma_fuel_pressure_at_point_24___________________________________ (pres_plasma_fuel_profile24)___ 3.56347663296328974e+05 -Total_plasma_fuel_pressure_at_point_25___________________________________ (pres_plasma_fuel_profile25)___ 3.56224951240914059e+05 -Total_plasma_fuel_pressure_at_point_26___________________________________ (pres_plasma_fuel_profile26)___ 3.56097257461985748e+05 -Total_plasma_fuel_pressure_at_point_27___________________________________ (pres_plasma_fuel_profile27)___ 3.55964585189770558e+05 -Total_plasma_fuel_pressure_at_point_28___________________________________ (pres_plasma_fuel_profile28)___ 3.55826937780858250e+05 -Total_plasma_fuel_pressure_at_point_29___________________________________ (pres_plasma_fuel_profile29)___ 3.55684318718166440e+05 -Total_plasma_fuel_pressure_at_point_30___________________________________ (pres_plasma_fuel_profile30)___ 3.55536731610902643e+05 -Total_plasma_fuel_pressure_at_point_31___________________________________ (pres_plasma_fuel_profile31)___ 3.55384180194526154e+05 -Total_plasma_fuel_pressure_at_point_32___________________________________ (pres_plasma_fuel_profile32)___ 3.55226668330707646e+05 -Total_plasma_fuel_pressure_at_point_33___________________________________ (pres_plasma_fuel_profile33)___ 3.55064200007287494e+05 -Total_plasma_fuel_pressure_at_point_34___________________________________ (pres_plasma_fuel_profile34)___ 3.54896779338233639e+05 -Total_plasma_fuel_pressure_at_point_35___________________________________ (pres_plasma_fuel_profile35)___ 3.54724410563596815e+05 -Total_plasma_fuel_pressure_at_point_36___________________________________ (pres_plasma_fuel_profile36)___ 3.54547098049465276e+05 -Total_plasma_fuel_pressure_at_point_37___________________________________ (pres_plasma_fuel_profile37)___ 3.54364846287918161e+05 -Total_plasma_fuel_pressure_at_point_38___________________________________ (pres_plasma_fuel_profile38)___ 3.54177659896976431e+05 -Total_plasma_fuel_pressure_at_point_39___________________________________ (pres_plasma_fuel_profile39)___ 3.53985543620554497e+05 -Total_plasma_fuel_pressure_at_point_40___________________________________ (pres_plasma_fuel_profile40)___ 3.53788502328407951e+05 -Total_plasma_fuel_pressure_at_point_41___________________________________ (pres_plasma_fuel_profile41)___ 3.53586541016082338e+05 -Total_plasma_fuel_pressure_at_point_42___________________________________ (pres_plasma_fuel_profile42)___ 3.53379664804858796e+05 -Total_plasma_fuel_pressure_at_point_43___________________________________ (pres_plasma_fuel_profile43)___ 3.53167878941699222e+05 -Total_plasma_fuel_pressure_at_point_44___________________________________ (pres_plasma_fuel_profile44)___ 3.52951188799189986e+05 -Total_plasma_fuel_pressure_at_point_45___________________________________ (pres_plasma_fuel_profile45)___ 3.52729599875483895e+05 -Total_plasma_fuel_pressure_at_point_46___________________________________ (pres_plasma_fuel_profile46)___ 3.52503117794241291e+05 -Total_plasma_fuel_pressure_at_point_47___________________________________ (pres_plasma_fuel_profile47)___ 3.52271748304569570e+05 -Total_plasma_fuel_pressure_at_point_48___________________________________ (pres_plasma_fuel_profile48)___ 3.52035497280961019e+05 -Total_plasma_fuel_pressure_at_point_49___________________________________ (pres_plasma_fuel_profile49)___ 3.51794370723229949e+05 -Total_plasma_fuel_pressure_at_point_50___________________________________ (pres_plasma_fuel_profile50)___ 3.51548374756448087e+05 -Total_plasma_fuel_pressure_at_point_51___________________________________ (pres_plasma_fuel_profile51)___ 3.51297515630878101e+05 -Total_plasma_fuel_pressure_at_point_52___________________________________ (pres_plasma_fuel_profile52)___ 3.51041799721907533e+05 -Total_plasma_fuel_pressure_at_point_53___________________________________ (pres_plasma_fuel_profile53)___ 3.50781233529978432e+05 -Total_plasma_fuel_pressure_at_point_54___________________________________ (pres_plasma_fuel_profile54)___ 3.50515823680518894e+05 -Total_plasma_fuel_pressure_at_point_55___________________________________ (pres_plasma_fuel_profile55)___ 3.50245576923870598e+05 -Total_plasma_fuel_pressure_at_point_56___________________________________ (pres_plasma_fuel_profile56)___ 3.49970500135216687e+05 -Total_plasma_fuel_pressure_at_point_57___________________________________ (pres_plasma_fuel_profile57)___ 3.49690600314507377e+05 -Total_plasma_fuel_pressure_at_point_58___________________________________ (pres_plasma_fuel_profile58)___ 3.49405884586384520e+05 -Total_plasma_fuel_pressure_at_point_59___________________________________ (pres_plasma_fuel_profile59)___ 3.49116360200104769e+05 -Total_plasma_fuel_pressure_at_point_60___________________________________ (pres_plasma_fuel_profile60)___ 3.48822034529461234e+05 -Total_plasma_fuel_pressure_at_point_61___________________________________ (pres_plasma_fuel_profile61)___ 3.48522915072704491e+05 -Total_plasma_fuel_pressure_at_point_62___________________________________ (pres_plasma_fuel_profile62)___ 3.48219009452460392e+05 -Total_plasma_fuel_pressure_at_point_63___________________________________ (pres_plasma_fuel_profile63)___ 3.47910325415649626e+05 -Total_plasma_fuel_pressure_at_point_64___________________________________ (pres_plasma_fuel_profile64)___ 3.47596870833402150e+05 -Total_plasma_fuel_pressure_at_point_65___________________________________ (pres_plasma_fuel_profile65)___ 3.47278653700973606e+05 -Total_plasma_fuel_pressure_at_point_66___________________________________ (pres_plasma_fuel_profile66)___ 3.46955682137657946e+05 -Total_plasma_fuel_pressure_at_point_67___________________________________ (pres_plasma_fuel_profile67)___ 3.46627964386700478e+05 -Total_plasma_fuel_pressure_at_point_68___________________________________ (pres_plasma_fuel_profile68)___ 3.46295508815208043e+05 -Total_plasma_fuel_pressure_at_point_69___________________________________ (pres_plasma_fuel_profile69)___ 3.45958323914059030e+05 -Total_plasma_fuel_pressure_at_point_70___________________________________ (pres_plasma_fuel_profile70)___ 3.45616418297811644e+05 -Total_plasma_fuel_pressure_at_point_71___________________________________ (pres_plasma_fuel_profile71)___ 3.45269800704609719e+05 -Total_plasma_fuel_pressure_at_point_72___________________________________ (pres_plasma_fuel_profile72)___ 3.44918479996089707e+05 -Total_plasma_fuel_pressure_at_point_73___________________________________ (pres_plasma_fuel_profile73)___ 3.44562465157283295e+05 -Total_plasma_fuel_pressure_at_point_74___________________________________ (pres_plasma_fuel_profile74)___ 3.44201765296520840e+05 -Total_plasma_fuel_pressure_at_point_75___________________________________ (pres_plasma_fuel_profile75)___ 3.43836389645332587e+05 -Total_plasma_fuel_pressure_at_point_76___________________________________ (pres_plasma_fuel_profile76)___ 3.43466347558348847e+05 -Total_plasma_fuel_pressure_at_point_77___________________________________ (pres_plasma_fuel_profile77)___ 3.43091648513198073e+05 -Total_plasma_fuel_pressure_at_point_78___________________________________ (pres_plasma_fuel_profile78)___ 3.42712302110404591e+05 -Total_plasma_fuel_pressure_at_point_79___________________________________ (pres_plasma_fuel_profile79)___ 3.42328318073284230e+05 -Total_plasma_fuel_pressure_at_point_80___________________________________ (pres_plasma_fuel_profile80)___ 3.41939706247839029e+05 -Total_plasma_fuel_pressure_at_point_81___________________________________ (pres_plasma_fuel_profile81)___ 3.41546476602650131e+05 -Total_plasma_fuel_pressure_at_point_82___________________________________ (pres_plasma_fuel_profile82)___ 3.41148639228769694e+05 -Total_plasma_fuel_pressure_at_point_83___________________________________ (pres_plasma_fuel_profile83)___ 3.40746204339611693e+05 -Total_plasma_fuel_pressure_at_point_84___________________________________ (pres_plasma_fuel_profile84)___ 3.40339182270840276e+05 -Total_plasma_fuel_pressure_at_point_85___________________________________ (pres_plasma_fuel_profile85)___ 3.39927583480257948e+05 -Total_plasma_fuel_pressure_at_point_86___________________________________ (pres_plasma_fuel_profile86)___ 3.39511418547691777e+05 -Total_plasma_fuel_pressure_at_point_87___________________________________ (pres_plasma_fuel_profile87)___ 3.39090698174878431e+05 -Total_plasma_fuel_pressure_at_point_88___________________________________ (pres_plasma_fuel_profile88)___ 3.38665433185347472e+05 -Total_plasma_fuel_pressure_at_point_89___________________________________ (pres_plasma_fuel_profile89)___ 3.38235634524304536e+05 -Total_plasma_fuel_pressure_at_point_90___________________________________ (pres_plasma_fuel_profile90)___ 3.37801313258510665e+05 -Total_plasma_fuel_pressure_at_point_91___________________________________ (pres_plasma_fuel_profile91)___ 3.37362480576163332e+05 -Total_plasma_fuel_pressure_at_point_92___________________________________ (pres_plasma_fuel_profile92)___ 3.36919147786773799e+05 -Total_plasma_fuel_pressure_at_point_93___________________________________ (pres_plasma_fuel_profile93)___ 3.36471326321044064e+05 -Total_plasma_fuel_pressure_at_point_94___________________________________ (pres_plasma_fuel_profile94)___ 3.36019027730742469e+05 -Total_plasma_fuel_pressure_at_point_95___________________________________ (pres_plasma_fuel_profile95)___ 3.35562263688577514e+05 -Total_plasma_fuel_pressure_at_point_96___________________________________ (pres_plasma_fuel_profile96)___ 3.35101045988070895e+05 -Total_plasma_fuel_pressure_at_point_97___________________________________ (pres_plasma_fuel_profile97)___ 3.34635386543428292e+05 -Total_plasma_fuel_pressure_at_point_98___________________________________ (pres_plasma_fuel_profile98)___ 3.34165297389410553e+05 -Total_plasma_fuel_pressure_at_point_99___________________________________ (pres_plasma_fuel_profile99)___ 3.33690790681200568e+05 -Total_plasma_fuel_pressure_at_point_100__________________________________ (pres_plasma_fuel_profile100)__ 3.33211878694272134e+05 -Total_plasma_fuel_pressure_at_point_101__________________________________ (pres_plasma_fuel_profile101)__ 3.32728573824255436e+05 -Total_plasma_fuel_pressure_at_point_102__________________________________ (pres_plasma_fuel_profile102)__ 3.32240888586800662e+05 -Total_plasma_fuel_pressure_at_point_103__________________________________ (pres_plasma_fuel_profile103)__ 3.31748835617442674e+05 -Total_plasma_fuel_pressure_at_point_104__________________________________ (pres_plasma_fuel_profile104)__ 3.31252427671462123e+05 -Total_plasma_fuel_pressure_at_point_105__________________________________ (pres_plasma_fuel_profile105)__ 3.30751677623745869e+05 -Total_plasma_fuel_pressure_at_point_106__________________________________ (pres_plasma_fuel_profile106)__ 3.30246598468646058e+05 -Total_plasma_fuel_pressure_at_point_107__________________________________ (pres_plasma_fuel_profile107)__ 3.29737203319838329e+05 -Total_plasma_fuel_pressure_at_point_108__________________________________ (pres_plasma_fuel_profile108)__ 3.29223505410178273e+05 -Total_plasma_fuel_pressure_at_point_109__________________________________ (pres_plasma_fuel_profile109)__ 3.28705518091556034e+05 -Total_plasma_fuel_pressure_at_point_110__________________________________ (pres_plasma_fuel_profile110)__ 3.28183254834749911e+05 -Total_plasma_fuel_pressure_at_point_111__________________________________ (pres_plasma_fuel_profile111)__ 3.27656729229279794e+05 -Total_plasma_fuel_pressure_at_point_112__________________________________ (pres_plasma_fuel_profile112)__ 3.27125954983256990e+05 -Total_plasma_fuel_pressure_at_point_113__________________________________ (pres_plasma_fuel_profile113)__ 3.26590945923234860e+05 -Total_plasma_fuel_pressure_at_point_114__________________________________ (pres_plasma_fuel_profile114)__ 3.26051715994056081e+05 -Total_plasma_fuel_pressure_at_point_115__________________________________ (pres_plasma_fuel_profile115)__ 3.25508279258700903e+05 -Total_plasma_fuel_pressure_at_point_116__________________________________ (pres_plasma_fuel_profile116)__ 3.24960649898131553e+05 -Total_plasma_fuel_pressure_at_point_117__________________________________ (pres_plasma_fuel_profile117)__ 3.24408842211137642e+05 -Total_plasma_fuel_pressure_at_point_118__________________________________ (pres_plasma_fuel_profile118)__ 3.23852870614178304e+05 -Total_plasma_fuel_pressure_at_point_119__________________________________ (pres_plasma_fuel_profile119)__ 3.23292749641223869e+05 -Total_plasma_fuel_pressure_at_point_120__________________________________ (pres_plasma_fuel_profile120)__ 3.22728493943596841e+05 -Total_plasma_fuel_pressure_at_point_121__________________________________ (pres_plasma_fuel_profile121)__ 3.22160118289809965e+05 -Total_plasma_fuel_pressure_at_point_122__________________________________ (pres_plasma_fuel_profile122)__ 3.21587637565404235e+05 -Total_plasma_fuel_pressure_at_point_123__________________________________ (pres_plasma_fuel_profile123)__ 3.21011066772785154e+05 -Total_plasma_fuel_pressure_at_point_124__________________________________ (pres_plasma_fuel_profile124)__ 3.20430421031057485e+05 -Total_plasma_fuel_pressure_at_point_125__________________________________ (pres_plasma_fuel_profile125)__ 3.19845715575859009e+05 -Total_plasma_fuel_pressure_at_point_126__________________________________ (pres_plasma_fuel_profile126)__ 3.19256965759192419e+05 -Total_plasma_fuel_pressure_at_point_127__________________________________ (pres_plasma_fuel_profile127)__ 3.18664187049257103e+05 -Total_plasma_fuel_pressure_at_point_128__________________________________ (pres_plasma_fuel_profile128)__ 3.18067395030277548e+05 -Total_plasma_fuel_pressure_at_point_129__________________________________ (pres_plasma_fuel_profile129)__ 3.17466605402332381e+05 -Total_plasma_fuel_pressure_at_point_130__________________________________ (pres_plasma_fuel_profile130)__ 3.16861833981181204e+05 -Total_plasma_fuel_pressure_at_point_131__________________________________ (pres_plasma_fuel_profile131)__ 3.16253096698090085e+05 -Total_plasma_fuel_pressure_at_point_132__________________________________ (pres_plasma_fuel_profile132)__ 3.15640409599655657e+05 -Total_plasma_fuel_pressure_at_point_133__________________________________ (pres_plasma_fuel_profile133)__ 3.15023788847628923e+05 -Total_plasma_fuel_pressure_at_point_134__________________________________ (pres_plasma_fuel_profile134)__ 3.14403250718735624e+05 -Total_plasma_fuel_pressure_at_point_135__________________________________ (pres_plasma_fuel_profile135)__ 3.13778811604497780e+05 -Total_plasma_fuel_pressure_at_point_136__________________________________ (pres_plasma_fuel_profile136)__ 3.13150488011052134e+05 -Total_plasma_fuel_pressure_at_point_137__________________________________ (pres_plasma_fuel_profile137)__ 3.12518296558967791e+05 -Total_plasma_fuel_pressure_at_point_138__________________________________ (pres_plasma_fuel_profile138)__ 3.11882253983063041e+05 -Total_plasma_fuel_pressure_at_point_139__________________________________ (pres_plasma_fuel_profile139)__ 3.11242377132220136e+05 -Total_plasma_fuel_pressure_at_point_140__________________________________ (pres_plasma_fuel_profile140)__ 3.10598682969199319e+05 -Total_plasma_fuel_pressure_at_point_141__________________________________ (pres_plasma_fuel_profile141)__ 3.09951188570451224e+05 -Total_plasma_fuel_pressure_at_point_142__________________________________ (pres_plasma_fuel_profile142)__ 3.09299911125927989e+05 -Total_plasma_fuel_pressure_at_point_143__________________________________ (pres_plasma_fuel_profile143)__ 3.08644867938893673e+05 -Total_plasma_fuel_pressure_at_point_144__________________________________ (pres_plasma_fuel_profile144)__ 3.07986076425732346e+05 -Total_plasma_fuel_pressure_at_point_145__________________________________ (pres_plasma_fuel_profile145)__ 3.07323554115755600e+05 -Total_plasma_fuel_pressure_at_point_146__________________________________ (pres_plasma_fuel_profile146)__ 3.06657318651008711e+05 -Total_plasma_fuel_pressure_at_point_147__________________________________ (pres_plasma_fuel_profile147)__ 3.05987387786075531e+05 -Total_plasma_fuel_pressure_at_point_148__________________________________ (pres_plasma_fuel_profile148)__ 3.05313779387881688e+05 -Total_plasma_fuel_pressure_at_point_149__________________________________ (pres_plasma_fuel_profile149)__ 3.04636511435497436e+05 -Total_plasma_fuel_pressure_at_point_150__________________________________ (pres_plasma_fuel_profile150)__ 3.03955602019938000e+05 -Total_plasma_fuel_pressure_at_point_151__________________________________ (pres_plasma_fuel_profile151)__ 3.03271069343963289e+05 -Total_plasma_fuel_pressure_at_point_152__________________________________ (pres_plasma_fuel_profile152)__ 3.02582931721877074e+05 -Total_plasma_fuel_pressure_at_point_153__________________________________ (pres_plasma_fuel_profile153)__ 3.01891207579323556e+05 -Total_plasma_fuel_pressure_at_point_154__________________________________ (pres_plasma_fuel_profile154)__ 3.01195915453083406e+05 -Total_plasma_fuel_pressure_at_point_155__________________________________ (pres_plasma_fuel_profile155)__ 3.00497073990868812e+05 -Total_plasma_fuel_pressure_at_point_156__________________________________ (pres_plasma_fuel_profile156)__ 2.99794701951116731e+05 -Total_plasma_fuel_pressure_at_point_157__________________________________ (pres_plasma_fuel_profile157)__ 2.99088818202780909e+05 -Total_plasma_fuel_pressure_at_point_158__________________________________ (pres_plasma_fuel_profile158)__ 2.98379441725123266e+05 -Total_plasma_fuel_pressure_at_point_159__________________________________ (pres_plasma_fuel_profile159)__ 2.97666591607503477e+05 -Total_plasma_fuel_pressure_at_point_160__________________________________ (pres_plasma_fuel_profile160)__ 2.96950287049167731e+05 -Total_plasma_fuel_pressure_at_point_161__________________________________ (pres_plasma_fuel_profile161)__ 2.96230547359035816e+05 -Total_plasma_fuel_pressure_at_point_162__________________________________ (pres_plasma_fuel_profile162)__ 2.95507391955487430e+05 -Total_plasma_fuel_pressure_at_point_163__________________________________ (pres_plasma_fuel_profile163)__ 2.94780840366147109e+05 -Total_plasma_fuel_pressure_at_point_164__________________________________ (pres_plasma_fuel_profile164)__ 2.94050912227667810e+05 -Total_plasma_fuel_pressure_at_point_165__________________________________ (pres_plasma_fuel_profile165)__ 2.93317627285513794e+05 -Total_plasma_fuel_pressure_at_point_166__________________________________ (pres_plasma_fuel_profile166)__ 2.92581005393741711e+05 -Total_plasma_fuel_pressure_at_point_167__________________________________ (pres_plasma_fuel_profile167)__ 2.91841066514780803e+05 -Total_plasma_fuel_pressure_at_point_168__________________________________ (pres_plasma_fuel_profile168)__ 2.91097830719212245e+05 -Total_plasma_fuel_pressure_at_point_169__________________________________ (pres_plasma_fuel_profile169)__ 2.90351318185546435e+05 -Total_plasma_fuel_pressure_at_point_170__________________________________ (pres_plasma_fuel_profile170)__ 2.89601549200000416e+05 -Total_plasma_fuel_pressure_at_point_171__________________________________ (pres_plasma_fuel_profile171)__ 2.88848544156272779e+05 -Total_plasma_fuel_pressure_at_point_172__________________________________ (pres_plasma_fuel_profile172)__ 2.88092323555318464e+05 -Total_plasma_fuel_pressure_at_point_173__________________________________ (pres_plasma_fuel_profile173)__ 2.87332908005122037e+05 -Total_plasma_fuel_pressure_at_point_174__________________________________ (pres_plasma_fuel_profile174)__ 2.86570318220469286e+05 -Total_plasma_fuel_pressure_at_point_175__________________________________ (pres_plasma_fuel_profile175)__ 2.85804575022719800e+05 -Total_plasma_fuel_pressure_at_point_176__________________________________ (pres_plasma_fuel_profile176)__ 2.85035699339574610e+05 -Total_plasma_fuel_pressure_at_point_177__________________________________ (pres_plasma_fuel_profile177)__ 2.84263712204847077e+05 -Total_plasma_fuel_pressure_at_point_178__________________________________ (pres_plasma_fuel_profile178)__ 2.83488634758229717e+05 -Total_plasma_fuel_pressure_at_point_179__________________________________ (pres_plasma_fuel_profile179)__ 2.82710488245060726e+05 -Total_plasma_fuel_pressure_at_point_180__________________________________ (pres_plasma_fuel_profile180)__ 2.81929294016090396e+05 -Total_plasma_fuel_pressure_at_point_181__________________________________ (pres_plasma_fuel_profile181)__ 2.81145073527244851e+05 -Total_plasma_fuel_pressure_at_point_182__________________________________ (pres_plasma_fuel_profile182)__ 2.80357848339389777e+05 -Total_plasma_fuel_pressure_at_point_183__________________________________ (pres_plasma_fuel_profile183)__ 2.79567640118093230e+05 -Total_plasma_fuel_pressure_at_point_184__________________________________ (pres_plasma_fuel_profile184)__ 2.78774470633386692e+05 -Total_plasma_fuel_pressure_at_point_185__________________________________ (pres_plasma_fuel_profile185)__ 2.77978361759525724e+05 -Total_plasma_fuel_pressure_at_point_186__________________________________ (pres_plasma_fuel_profile186)__ 2.77179335474749387e+05 -Total_plasma_fuel_pressure_at_point_187__________________________________ (pres_plasma_fuel_profile187)__ 2.76377413861038513e+05 -Total_plasma_fuel_pressure_at_point_188__________________________________ (pres_plasma_fuel_profile188)__ 2.75572619103873149e+05 -Total_plasma_fuel_pressure_at_point_189__________________________________ (pres_plasma_fuel_profile189)__ 2.74764973491989484e+05 -Total_plasma_fuel_pressure_at_point_190__________________________________ (pres_plasma_fuel_profile190)__ 2.73954499417135085e+05 -Total_plasma_fuel_pressure_at_point_191__________________________________ (pres_plasma_fuel_profile191)__ 2.73141219373823260e+05 -Total_plasma_fuel_pressure_at_point_192__________________________________ (pres_plasma_fuel_profile192)__ 2.72325155959087308e+05 -Total_plasma_fuel_pressure_at_point_193__________________________________ (pres_plasma_fuel_profile193)__ 2.71506331872232724e+05 -Total_plasma_fuel_pressure_at_point_194__________________________________ (pres_plasma_fuel_profile194)__ 2.70684769914589706e+05 -Total_plasma_fuel_pressure_at_point_195__________________________________ (pres_plasma_fuel_profile195)__ 2.69860492989263672e+05 -Total_plasma_fuel_pressure_at_point_196__________________________________ (pres_plasma_fuel_profile196)__ 2.69033524100885552e+05 -Total_plasma_fuel_pressure_at_point_197__________________________________ (pres_plasma_fuel_profile197)__ 2.68203886355361145e+05 -Total_plasma_fuel_pressure_at_point_198__________________________________ (pres_plasma_fuel_profile198)__ 2.67371602959619544e+05 -Total_plasma_fuel_pressure_at_point_199__________________________________ (pres_plasma_fuel_profile199)__ 2.66536697221360693e+05 -Total_plasma_fuel_pressure_at_point_200__________________________________ (pres_plasma_fuel_profile200)__ 2.65699192548802996e+05 -Total_plasma_fuel_pressure_at_point_201__________________________________ (pres_plasma_fuel_profile201)__ 2.64859112450427900e+05 -Total_plasma_fuel_pressure_at_point_202__________________________________ (pres_plasma_fuel_profile202)__ 2.64016480534726812e+05 -Total_plasma_fuel_pressure_at_point_203__________________________________ (pres_plasma_fuel_profile203)__ 2.63171320509944519e+05 -Total_plasma_fuel_pressure_at_point_204__________________________________ (pres_plasma_fuel_profile204)__ 2.62323656183824176e+05 -Total_plasma_fuel_pressure_at_point_205__________________________________ (pres_plasma_fuel_profile205)__ 2.61473511463349249e+05 -Total_plasma_fuel_pressure_at_point_206__________________________________ (pres_plasma_fuel_profile206)__ 2.60620910354486958e+05 -Total_plasma_fuel_pressure_at_point_207__________________________________ (pres_plasma_fuel_profile207)__ 2.59765876961930044e+05 -Total_plasma_fuel_pressure_at_point_208__________________________________ (pres_plasma_fuel_profile208)__ 2.58908435488837335e+05 -Total_plasma_fuel_pressure_at_point_209__________________________________ (pres_plasma_fuel_profile209)__ 2.58048610236575216e+05 -Total_plasma_fuel_pressure_at_point_210__________________________________ (pres_plasma_fuel_profile210)__ 2.57186425604457094e+05 -Total_plasma_fuel_pressure_at_point_211__________________________________ (pres_plasma_fuel_profile211)__ 2.56321906089482945e+05 -Total_plasma_fuel_pressure_at_point_212__________________________________ (pres_plasma_fuel_profile212)__ 2.55455076286078664e+05 -Total_plasma_fuel_pressure_at_point_213__________________________________ (pres_plasma_fuel_profile213)__ 2.54585960885833891e+05 -Total_plasma_fuel_pressure_at_point_214__________________________________ (pres_plasma_fuel_profile214)__ 2.53714584677240200e+05 -Total_plasma_fuel_pressure_at_point_215__________________________________ (pres_plasma_fuel_profile215)__ 2.52840972545429104e+05 -Total_plasma_fuel_pressure_at_point_216__________________________________ (pres_plasma_fuel_profile216)__ 2.51965149471908255e+05 -Total_plasma_fuel_pressure_at_point_217__________________________________ (pres_plasma_fuel_profile217)__ 2.51087140534298436e+05 -Total_plasma_fuel_pressure_at_point_218__________________________________ (pres_plasma_fuel_profile218)__ 2.50206970906070317e+05 -Total_plasma_fuel_pressure_at_point_219__________________________________ (pres_plasma_fuel_profile219)__ 2.49324665856279811e+05 -Total_plasma_fuel_pressure_at_point_220__________________________________ (pres_plasma_fuel_profile220)__ 2.48440250749304105e+05 -Total_plasma_fuel_pressure_at_point_221__________________________________ (pres_plasma_fuel_profile221)__ 2.47553751044576755e+05 -Total_plasma_fuel_pressure_at_point_222__________________________________ (pres_plasma_fuel_profile222)__ 2.46665192296323046e+05 -Total_plasma_fuel_pressure_at_point_223__________________________________ (pres_plasma_fuel_profile223)__ 2.45774600153295061e+05 -Total_plasma_fuel_pressure_at_point_224__________________________________ (pres_plasma_fuel_profile224)__ 2.44882000358505931e+05 -Total_plasma_fuel_pressure_at_point_225__________________________________ (pres_plasma_fuel_profile225)__ 2.43987418748965225e+05 -Total_plasma_fuel_pressure_at_point_226__________________________________ (pres_plasma_fuel_profile226)__ 2.43090881255412794e+05 -Total_plasma_fuel_pressure_at_point_227__________________________________ (pres_plasma_fuel_profile227)__ 2.42192413902053755e+05 -Total_plasma_fuel_pressure_at_point_228__________________________________ (pres_plasma_fuel_profile228)__ 2.41292042806292651e+05 -Total_plasma_fuel_pressure_at_point_229__________________________________ (pres_plasma_fuel_profile229)__ 2.40389794178468175e+05 -Total_plasma_fuel_pressure_at_point_230__________________________________ (pres_plasma_fuel_profile230)__ 2.39485694321587711e+05 -Total_plasma_fuel_pressure_at_point_231__________________________________ (pres_plasma_fuel_profile231)__ 2.38579769631061645e+05 -Total_plasma_fuel_pressure_at_point_232__________________________________ (pres_plasma_fuel_profile232)__ 2.37672046594439104e+05 -Total_plasma_fuel_pressure_at_point_233__________________________________ (pres_plasma_fuel_profile233)__ 2.36762551791141566e+05 -Total_plasma_fuel_pressure_at_point_234__________________________________ (pres_plasma_fuel_profile234)__ 2.35851311892199825e+05 -Total_plasma_fuel_pressure_at_point_235__________________________________ (pres_plasma_fuel_profile235)__ 2.34938353659988410e+05 -Total_plasma_fuel_pressure_at_point_236__________________________________ (pres_plasma_fuel_profile236)__ 2.34023703947961709e+05 -Total_plasma_fuel_pressure_at_point_237__________________________________ (pres_plasma_fuel_profile237)__ 2.33107389700390544e+05 -Total_plasma_fuel_pressure_at_point_238__________________________________ (pres_plasma_fuel_profile238)__ 2.32189437952099222e+05 -Total_plasma_fuel_pressure_at_point_239__________________________________ (pres_plasma_fuel_profile239)__ 2.31269875828201941e+05 -Total_plasma_fuel_pressure_at_point_240__________________________________ (pres_plasma_fuel_profile240)__ 2.30348730543841666e+05 -Total_plasma_fuel_pressure_at_point_241__________________________________ (pres_plasma_fuel_profile241)__ 2.29426029403928114e+05 -Total_plasma_fuel_pressure_at_point_242__________________________________ (pres_plasma_fuel_profile242)__ 2.28501799802876776e+05 -Total_plasma_fuel_pressure_at_point_243__________________________________ (pres_plasma_fuel_profile243)__ 2.27576069224349339e+05 -Total_plasma_fuel_pressure_at_point_244__________________________________ (pres_plasma_fuel_profile244)__ 2.26648865240994142e+05 -Total_plasma_fuel_pressure_at_point_245__________________________________ (pres_plasma_fuel_profile245)__ 2.25720215514187759e+05 -Total_plasma_fuel_pressure_at_point_246__________________________________ (pres_plasma_fuel_profile246)__ 2.24790147793777694e+05 -Total_plasma_fuel_pressure_at_point_247__________________________________ (pres_plasma_fuel_profile247)__ 2.23858689917825861e+05 -Total_plasma_fuel_pressure_at_point_248__________________________________ (pres_plasma_fuel_profile248)__ 2.22925869812353369e+05 -Total_plasma_fuel_pressure_at_point_249__________________________________ (pres_plasma_fuel_profile249)__ 2.21991715491086245e+05 -Total_plasma_fuel_pressure_at_point_250__________________________________ (pres_plasma_fuel_profile250)__ 2.21056255055202550e+05 -Total_plasma_fuel_pressure_at_point_251__________________________________ (pres_plasma_fuel_profile251)__ 2.20119516693080688e+05 -Total_plasma_fuel_pressure_at_point_252__________________________________ (pres_plasma_fuel_profile252)__ 2.19181528680049669e+05 -Total_plasma_fuel_pressure_at_point_253__________________________________ (pres_plasma_fuel_profile253)__ 2.18242319378139277e+05 -Total_plasma_fuel_pressure_at_point_254__________________________________ (pres_plasma_fuel_profile254)__ 2.17301917235834175e+05 -Total_plasma_fuel_pressure_at_point_255__________________________________ (pres_plasma_fuel_profile255)__ 2.16360350787827541e+05 -Total_plasma_fuel_pressure_at_point_256__________________________________ (pres_plasma_fuel_profile256)__ 2.15417648654777731e+05 -Total_plasma_fuel_pressure_at_point_257__________________________________ (pres_plasma_fuel_profile257)__ 2.14473839543066017e+05 -Total_plasma_fuel_pressure_at_point_258__________________________________ (pres_plasma_fuel_profile258)__ 2.13528952244557120e+05 -Total_plasma_fuel_pressure_at_point_259__________________________________ (pres_plasma_fuel_profile259)__ 2.12583015636360709e+05 -Total_plasma_fuel_pressure_at_point_260__________________________________ (pres_plasma_fuel_profile260)__ 2.11636058680596121e+05 -Total_plasma_fuel_pressure_at_point_261__________________________________ (pres_plasma_fuel_profile261)__ 2.10688110424158309e+05 -Total_plasma_fuel_pressure_at_point_262__________________________________ (pres_plasma_fuel_profile262)__ 2.09739199998487253e+05 -Total_plasma_fuel_pressure_at_point_263__________________________________ (pres_plasma_fuel_profile263)__ 2.08789356619338621e+05 -Total_plasma_fuel_pressure_at_point_264__________________________________ (pres_plasma_fuel_profile264)__ 2.07838609586558421e+05 -Total_plasma_fuel_pressure_at_point_265__________________________________ (pres_plasma_fuel_profile265)__ 2.06886988283858838e+05 -Total_plasma_fuel_pressure_at_point_266__________________________________ (pres_plasma_fuel_profile266)__ 2.05934522178598301e+05 -Total_plasma_fuel_pressure_at_point_267__________________________________ (pres_plasma_fuel_profile267)__ 2.04981240821563406e+05 -Total_plasma_fuel_pressure_at_point_268__________________________________ (pres_plasma_fuel_profile268)__ 2.04027173846755148e+05 -Total_plasma_fuel_pressure_at_point_269__________________________________ (pres_plasma_fuel_profile269)__ 2.03072350971176726e+05 -Total_plasma_fuel_pressure_at_point_270__________________________________ (pres_plasma_fuel_profile270)__ 2.02116801994626643e+05 -Total_plasma_fuel_pressure_at_point_271__________________________________ (pres_plasma_fuel_profile271)__ 2.01160556799493555e+05 -Total_plasma_fuel_pressure_at_point_272__________________________________ (pres_plasma_fuel_profile272)__ 2.00203645350556239e+05 -Total_plasma_fuel_pressure_at_point_273__________________________________ (pres_plasma_fuel_profile273)__ 1.99246097694786586e+05 -Total_plasma_fuel_pressure_at_point_274__________________________________ (pres_plasma_fuel_profile274)__ 1.98287943961156765e+05 -Total_plasma_fuel_pressure_at_point_275__________________________________ (pres_plasma_fuel_profile275)__ 1.97329214360450336e+05 -Total_plasma_fuel_pressure_at_point_276__________________________________ (pres_plasma_fuel_profile276)__ 1.96369939185078489e+05 -Total_plasma_fuel_pressure_at_point_277__________________________________ (pres_plasma_fuel_profile277)__ 1.95410148808899539e+05 -Total_plasma_fuel_pressure_at_point_278__________________________________ (pres_plasma_fuel_profile278)__ 1.94449873687044601e+05 -Total_plasma_fuel_pressure_at_point_279__________________________________ (pres_plasma_fuel_profile279)__ 1.93489144355746597e+05 -Total_plasma_fuel_pressure_at_point_280__________________________________ (pres_plasma_fuel_profile280)__ 1.92527991432175710e+05 -Total_plasma_fuel_pressure_at_point_281__________________________________ (pres_plasma_fuel_profile281)__ 1.91566445614278986e+05 -Total_plasma_fuel_pressure_at_point_282__________________________________ (pres_plasma_fuel_profile282)__ 1.90604537680626469e+05 -Total_plasma_fuel_pressure_at_point_283__________________________________ (pres_plasma_fuel_profile283)__ 1.89642298490262270e+05 -Total_plasma_fuel_pressure_at_point_284__________________________________ (pres_plasma_fuel_profile284)__ 1.88679758982561529e+05 -Total_plasma_fuel_pressure_at_point_285__________________________________ (pres_plasma_fuel_profile285)__ 1.87716950177094695e+05 -Total_plasma_fuel_pressure_at_point_286__________________________________ (pres_plasma_fuel_profile286)__ 1.86753903173496248e+05 -Total_plasma_fuel_pressure_at_point_287__________________________________ (pres_plasma_fuel_profile287)__ 1.85790649151342310e+05 -Total_plasma_fuel_pressure_at_point_288__________________________________ (pres_plasma_fuel_profile288)__ 1.84827219370032806e+05 -Total_plasma_fuel_pressure_at_point_289__________________________________ (pres_plasma_fuel_profile289)__ 1.83863645168683142e+05 -Total_plasma_fuel_pressure_at_point_290__________________________________ (pres_plasma_fuel_profile290)__ 1.82899957966021146e+05 -Total_plasma_fuel_pressure_at_point_291__________________________________ (pres_plasma_fuel_profile291)__ 1.81936189260293904e+05 -Total_plasma_fuel_pressure_at_point_292__________________________________ (pres_plasma_fuel_profile292)__ 1.80972370629179961e+05 -Total_plasma_fuel_pressure_at_point_293__________________________________ (pres_plasma_fuel_profile293)__ 1.80008533729713003e+05 -Total_plasma_fuel_pressure_at_point_294__________________________________ (pres_plasma_fuel_profile294)__ 1.79044710298211197e+05 -Total_plasma_fuel_pressure_at_point_295__________________________________ (pres_plasma_fuel_profile295)__ 1.78080932150217268e+05 -Total_plasma_fuel_pressure_at_point_296__________________________________ (pres_plasma_fuel_profile296)__ 1.77117231180447678e+05 -Total_plasma_fuel_pressure_at_point_297__________________________________ (pres_plasma_fuel_profile297)__ 1.76153639362750779e+05 -Total_plasma_fuel_pressure_at_point_298__________________________________ (pres_plasma_fuel_profile298)__ 1.75190188750075060e+05 -Total_plasma_fuel_pressure_at_point_299__________________________________ (pres_plasma_fuel_profile299)__ 1.74226911474448862e+05 -Total_plasma_fuel_pressure_at_point_300__________________________________ (pres_plasma_fuel_profile300)__ 1.73263839746969141e+05 -Total_plasma_fuel_pressure_at_point_301__________________________________ (pres_plasma_fuel_profile301)__ 1.72301005857802927e+05 -Total_plasma_fuel_pressure_at_point_302__________________________________ (pres_plasma_fuel_profile302)__ 1.71338442176199227e+05 -Total_plasma_fuel_pressure_at_point_303__________________________________ (pres_plasma_fuel_profile303)__ 1.70376181150513556e+05 -Total_plasma_fuel_pressure_at_point_304__________________________________ (pres_plasma_fuel_profile304)__ 1.69414255308244727e+05 -Total_plasma_fuel_pressure_at_point_305__________________________________ (pres_plasma_fuel_profile305)__ 1.68452697256084706e+05 -Total_plasma_fuel_pressure_at_point_306__________________________________ (pres_plasma_fuel_profile306)__ 1.67491539679981390e+05 -Total_plasma_fuel_pressure_at_point_307__________________________________ (pres_plasma_fuel_profile307)__ 1.66530815345215873e+05 -Total_plasma_fuel_pressure_at_point_308__________________________________ (pres_plasma_fuel_profile308)__ 1.65570557096493547e+05 -Total_plasma_fuel_pressure_at_point_309__________________________________ (pres_plasma_fuel_profile309)__ 1.64610797858050646e+05 -Total_plasma_fuel_pressure_at_point_310__________________________________ (pres_plasma_fuel_profile310)__ 1.63651570633775817e+05 -Total_plasma_fuel_pressure_at_point_311__________________________________ (pres_plasma_fuel_profile311)__ 1.62692908507348388e+05 -Total_plasma_fuel_pressure_at_point_312__________________________________ (pres_plasma_fuel_profile312)__ 1.61734844642392069e+05 -Total_plasma_fuel_pressure_at_point_313__________________________________ (pres_plasma_fuel_profile313)__ 1.60777412282647681e+05 -Total_plasma_fuel_pressure_at_point_314__________________________________ (pres_plasma_fuel_profile314)__ 1.59820644752162014e+05 -Total_plasma_fuel_pressure_at_point_315__________________________________ (pres_plasma_fuel_profile315)__ 1.58864575455496873e+05 -Total_plasma_fuel_pressure_at_point_316__________________________________ (pres_plasma_fuel_profile316)__ 1.57909237877956068e+05 -Total_plasma_fuel_pressure_at_point_317__________________________________ (pres_plasma_fuel_profile317)__ 1.56954665585833427e+05 -Total_plasma_fuel_pressure_at_point_318__________________________________ (pres_plasma_fuel_profile318)__ 1.56000892226680735e+05 -Total_plasma_fuel_pressure_at_point_319__________________________________ (pres_plasma_fuel_profile319)__ 1.55047951529598387e+05 -Total_plasma_fuel_pressure_at_point_320__________________________________ (pres_plasma_fuel_profile320)__ 1.54095877305546601e+05 -Total_plasma_fuel_pressure_at_point_321__________________________________ (pres_plasma_fuel_profile321)__ 1.53144703447681823e+05 -Total_plasma_fuel_pressure_at_point_322__________________________________ (pres_plasma_fuel_profile322)__ 1.52194463931715582e+05 -Total_plasma_fuel_pressure_at_point_323__________________________________ (pres_plasma_fuel_profile323)__ 1.51245192816299590e+05 -Total_plasma_fuel_pressure_at_point_324__________________________________ (pres_plasma_fuel_profile324)__ 1.50296924243435729e+05 -Total_plasma_fuel_pressure_at_point_325__________________________________ (pres_plasma_fuel_profile325)__ 1.49349692438913655e+05 -Total_plasma_fuel_pressure_at_point_326__________________________________ (pres_plasma_fuel_profile326)__ 1.48403531712775992e+05 -Total_plasma_fuel_pressure_at_point_327__________________________________ (pres_plasma_fuel_profile327)__ 1.47458476459813101e+05 -Total_plasma_fuel_pressure_at_point_328__________________________________ (pres_plasma_fuel_profile328)__ 1.46514561160086974e+05 -Total_plasma_fuel_pressure_at_point_329__________________________________ (pres_plasma_fuel_profile329)__ 1.45571820379487821e+05 -Total_plasma_fuel_pressure_at_point_330__________________________________ (pres_plasma_fuel_profile330)__ 1.44630288770321611e+05 -Total_plasma_fuel_pressure_at_point_331__________________________________ (pres_plasma_fuel_profile331)__ 1.43690001071932988e+05 -Total_plasma_fuel_pressure_at_point_332__________________________________ (pres_plasma_fuel_profile332)__ 1.42750992111361935e+05 -Total_plasma_fuel_pressure_at_point_333__________________________________ (pres_plasma_fuel_profile333)__ 1.41813296804037993e+05 -Total_plasma_fuel_pressure_at_point_334__________________________________ (pres_plasma_fuel_profile334)__ 1.40876950154511374e+05 -Total_plasma_fuel_pressure_at_point_335__________________________________ (pres_plasma_fuel_profile335)__ 1.39941987257224449e+05 -Total_plasma_fuel_pressure_at_point_336__________________________________ (pres_plasma_fuel_profile336)__ 1.39008443297323713e+05 -Total_plasma_fuel_pressure_at_point_337__________________________________ (pres_plasma_fuel_profile337)__ 1.38076353551514185e+05 -Total_plasma_fuel_pressure_at_point_338__________________________________ (pres_plasma_fuel_profile338)__ 1.37145753388958547e+05 -Total_plasma_fuel_pressure_at_point_339__________________________________ (pres_plasma_fuel_profile339)__ 1.36216678272222111e+05 -Total_plasma_fuel_pressure_at_point_340__________________________________ (pres_plasma_fuel_profile340)__ 1.35289163758265669e+05 -Total_plasma_fuel_pressure_at_point_341__________________________________ (pres_plasma_fuel_profile341)__ 1.34363245499488461e+05 -Total_plasma_fuel_pressure_at_point_342__________________________________ (pres_plasma_fuel_profile342)__ 1.33438959244822821e+05 -Total_plasma_fuel_pressure_at_point_343__________________________________ (pres_plasma_fuel_profile343)__ 1.32516340840882913e+05 -Total_plasma_fuel_pressure_at_point_344__________________________________ (pres_plasma_fuel_profile344)__ 1.31595426233170088e+05 -Total_plasma_fuel_pressure_at_point_345__________________________________ (pres_plasma_fuel_profile345)__ 1.30676251467335664e+05 -Total_plasma_fuel_pressure_at_point_346__________________________________ (pres_plasma_fuel_profile346)__ 1.29758852690506654e+05 -Total_plasma_fuel_pressure_at_point_347__________________________________ (pres_plasma_fuel_profile347)__ 1.28843266152672921e+05 -Total_plasma_fuel_pressure_at_point_348__________________________________ (pres_plasma_fuel_profile348)__ 1.27929528208142132e+05 -Total_plasma_fuel_pressure_at_point_349__________________________________ (pres_plasma_fuel_profile349)__ 1.27017675317063113e+05 -Total_plasma_fuel_pressure_at_point_350__________________________________ (pres_plasma_fuel_profile350)__ 1.26107744047021071e+05 -Total_plasma_fuel_pressure_at_point_351__________________________________ (pres_plasma_fuel_profile351)__ 1.25199771074707780e+05 -Total_plasma_fuel_pressure_at_point_352__________________________________ (pres_plasma_fuel_profile352)__ 1.24293793187670744e+05 -Total_plasma_fuel_pressure_at_point_353__________________________________ (pres_plasma_fuel_profile353)__ 1.23389847286142845e+05 -Total_plasma_fuel_pressure_at_point_354__________________________________ (pres_plasma_fuel_profile354)__ 1.22487970384958229e+05 -Total_plasma_fuel_pressure_at_point_355__________________________________ (pres_plasma_fuel_profile355)__ 1.21588199615556296e+05 -Total_plasma_fuel_pressure_at_point_356__________________________________ (pres_plasma_fuel_profile356)__ 1.20690572228078949e+05 -Total_plasma_fuel_pressure_at_point_357__________________________________ (pres_plasma_fuel_profile357)__ 1.19795125593564779e+05 -Total_plasma_fuel_pressure_at_point_358__________________________________ (pres_plasma_fuel_profile358)__ 1.18901897206244088e+05 -Total_plasma_fuel_pressure_at_point_359__________________________________ (pres_plasma_fuel_profile359)__ 1.18010924685940103e+05 -Total_plasma_fuel_pressure_at_point_360__________________________________ (pres_plasma_fuel_profile360)__ 1.17122245780580983e+05 -Total_plasma_fuel_pressure_at_point_361__________________________________ (pres_plasma_fuel_profile361)__ 1.16235898368826529e+05 -Total_plasma_fuel_pressure_at_point_362__________________________________ (pres_plasma_fuel_profile362)__ 1.15351920462816954e+05 -Total_plasma_fuel_pressure_at_point_363__________________________________ (pres_plasma_fuel_profile363)__ 1.14470350211047175e+05 -Total_plasma_fuel_pressure_at_point_364__________________________________ (pres_plasma_fuel_profile364)__ 1.13591225901374375e+05 -Total_plasma_fuel_pressure_at_point_365__________________________________ (pres_plasma_fuel_profile365)__ 1.12714585964163314e+05 -Total_plasma_fuel_pressure_at_point_366__________________________________ (pres_plasma_fuel_profile366)__ 1.11840468975577533e+05 -Total_plasma_fuel_pressure_at_point_367__________________________________ (pres_plasma_fuel_profile367)__ 1.10968913661021958e+05 -Total_plasma_fuel_pressure_at_point_368__________________________________ (pres_plasma_fuel_profile368)__ 1.10099958898745521e+05 -Total_plasma_fuel_pressure_at_point_369__________________________________ (pres_plasma_fuel_profile369)__ 1.09233643723610221e+05 -Total_plasma_fuel_pressure_at_point_370__________________________________ (pres_plasma_fuel_profile370)__ 1.08370007331035769e+05 -Total_plasma_fuel_pressure_at_point_371__________________________________ (pres_plasma_fuel_profile371)__ 1.07509089081127895e+05 -Total_plasma_fuel_pressure_at_point_372__________________________________ (pres_plasma_fuel_profile372)__ 1.06650928502999668e+05 -Total_plasma_fuel_pressure_at_point_373__________________________________ (pres_plasma_fuel_profile373)__ 1.05795565299295078e+05 -Total_plasma_fuel_pressure_at_point_374__________________________________ (pres_plasma_fuel_profile374)__ 1.04943039350926134e+05 -Total_plasma_fuel_pressure_at_point_375__________________________________ (pres_plasma_fuel_profile375)__ 1.04093390722032389e+05 -Total_plasma_fuel_pressure_at_point_376__________________________________ (pres_plasma_fuel_profile376)__ 1.03246659665176936e+05 -Total_plasma_fuel_pressure_at_point_377__________________________________ (pres_plasma_fuel_profile377)__ 1.02402886626788095e+05 -Total_plasma_fuel_pressure_at_point_378__________________________________ (pres_plasma_fuel_profile378)__ 1.01562112252862818e+05 -Total_plasma_fuel_pressure_at_point_379__________________________________ (pres_plasma_fuel_profile379)__ 1.00724377394942727e+05 -Total_plasma_fuel_pressure_at_point_380__________________________________ (pres_plasma_fuel_profile380)__ 9.98897231163792312e+04 -Total_plasma_fuel_pressure_at_point_381__________________________________ (pres_plasma_fuel_profile381)__ 9.90581906989026174e+04 -Total_plasma_fuel_pressure_at_point_382__________________________________ (pres_plasma_fuel_profile382)__ 9.82298216495112283e+04 -Total_plasma_fuel_pressure_at_point_383__________________________________ (pres_plasma_fuel_profile383)__ 9.74046577076989925e+04 -Total_plasma_fuel_pressure_at_point_384__________________________________ (pres_plasma_fuel_profile384)__ 9.65827408530395187e+04 -Total_plasma_fuel_pressure_at_point_385__________________________________ (pres_plasma_fuel_profile385)__ 9.57641133131471142e+04 -Total_plasma_fuel_pressure_at_point_386__________________________________ (pres_plasma_fuel_profile386)__ 9.49488175720353029e+04 -Total_plasma_fuel_pressure_at_point_387__________________________________ (pres_plasma_fuel_profile387)__ 9.41368963788966357e+04 -Total_plasma_fuel_pressure_at_point_388__________________________________ (pres_plasma_fuel_profile388)__ 9.33283927573269902e+04 -Total_plasma_fuel_pressure_at_point_389__________________________________ (pres_plasma_fuel_profile389)__ 9.25233500150212785e+04 -Total_plasma_fuel_pressure_at_point_390__________________________________ (pres_plasma_fuel_profile390)__ 9.17218117539673403e+04 -Total_plasma_fuel_pressure_at_point_391__________________________________ (pres_plasma_fuel_profile391)__ 9.09238218811689731e+04 -Total_plasma_fuel_pressure_at_point_392__________________________________ (pres_plasma_fuel_profile392)__ 9.01294246199286426e+04 -Total_plasma_fuel_pressure_at_point_393__________________________________ (pres_plasma_fuel_profile393)__ 8.93386645217257319e+04 -Total_plasma_fuel_pressure_at_point_394__________________________________ (pres_plasma_fuel_profile394)__ 8.85515864787248720e+04 -Total_plasma_fuel_pressure_at_point_395__________________________________ (pres_plasma_fuel_profile395)__ 8.77682357369562087e+04 -Total_plasma_fuel_pressure_at_point_396__________________________________ (pres_plasma_fuel_profile396)__ 8.69886579102081305e+04 -Total_plasma_fuel_pressure_at_point_397__________________________________ (pres_plasma_fuel_profile397)__ 8.62128989946793445e+04 -Total_plasma_fuel_pressure_at_point_398__________________________________ (pres_plasma_fuel_profile398)__ 8.54410053844385839e+04 -Total_plasma_fuel_pressure_at_point_399__________________________________ (pres_plasma_fuel_profile399)__ 8.46730238877460797e+04 -Total_plasma_fuel_pressure_at_point_400__________________________________ (pres_plasma_fuel_profile400)__ 8.39090017442928074e+04 -Total_plasma_fuel_pressure_at_point_401__________________________________ (pres_plasma_fuel_profile401)__ 8.31489866434210562e+04 -Total_plasma_fuel_pressure_at_point_402__________________________________ (pres_plasma_fuel_profile402)__ 8.23930267433911940e+04 -Total_plasma_fuel_pressure_at_point_403__________________________________ (pres_plasma_fuel_profile403)__ 8.16411706917695992e+04 -Total_plasma_fuel_pressure_at_point_404__________________________________ (pres_plasma_fuel_profile404)__ 8.08934676470140985e+04 -Total_plasma_fuel_pressure_at_point_405__________________________________ (pres_plasma_fuel_profile405)__ 8.01499673013440188e+04 -Total_plasma_fuel_pressure_at_point_406__________________________________ (pres_plasma_fuel_profile406)__ 7.94107199049864867e+04 -Total_plasma_fuel_pressure_at_point_407__________________________________ (pres_plasma_fuel_profile407)__ 7.86757762919005327e+04 -Total_plasma_fuel_pressure_at_point_408__________________________________ (pres_plasma_fuel_profile408)__ 7.79451879070882569e+04 -Total_plasma_fuel_pressure_at_point_409__________________________________ (pres_plasma_fuel_profile409)__ 7.72190068356140691e+04 -Total_plasma_fuel_pressure_at_point_410__________________________________ (pres_plasma_fuel_profile410)__ 7.64972858334613265e+04 -Total_plasma_fuel_pressure_at_point_411__________________________________ (pres_plasma_fuel_profile411)__ 7.57800783603713789e+04 -Total_plasma_fuel_pressure_at_point_412__________________________________ (pres_plasma_fuel_profile412)__ 7.50674386148197955e+04 -Total_plasma_fuel_pressure_at_point_413__________________________________ (pres_plasma_fuel_profile413)__ 7.43594215713041776e+04 -Total_plasma_fuel_pressure_at_point_414__________________________________ (pres_plasma_fuel_profile414)__ 7.36560830201300414e+04 -Total_plasma_fuel_pressure_at_point_415__________________________________ (pres_plasma_fuel_profile415)__ 7.29574796099047235e+04 -Total_plasma_fuel_pressure_at_point_416__________________________________ (pres_plasma_fuel_profile416)__ 7.22636688929668744e+04 -Total_plasma_fuel_pressure_at_point_417__________________________________ (pres_plasma_fuel_profile417)__ 7.15747093740052078e+04 -Total_plasma_fuel_pressure_at_point_418__________________________________ (pres_plasma_fuel_profile418)__ 7.08906605621457711e+04 -Total_plasma_fuel_pressure_at_point_419__________________________________ (pres_plasma_fuel_profile419)__ 7.02115830268175632e+04 -Total_plasma_fuel_pressure_at_point_420__________________________________ (pres_plasma_fuel_profile420)__ 6.95375384577398363e+04 -Total_plasma_fuel_pressure_at_point_421__________________________________ (pres_plasma_fuel_profile421)__ 6.88685897294136375e+04 -Total_plasma_fuel_pressure_at_point_422__________________________________ (pres_plasma_fuel_profile422)__ 6.82048009705429431e+04 -Total_plasma_fuel_pressure_at_point_423__________________________________ (pres_plasma_fuel_profile423)__ 6.75462376388612611e+04 -Total_plasma_fuel_pressure_at_point_424__________________________________ (pres_plasma_fuel_profile424)__ 6.68929666018946009e+04 -Total_plasma_fuel_pressure_at_point_425__________________________________ (pres_plasma_fuel_profile425)__ 6.62450562242586748e+04 -Total_plasma_fuel_pressure_at_point_426__________________________________ (pres_plasma_fuel_profile426)__ 6.56025764621593989e+04 -Total_plasma_fuel_pressure_at_point_427__________________________________ (pres_plasma_fuel_profile427)__ 6.49655989658532199e+04 -Total_plasma_fuel_pressure_at_point_428__________________________________ (pres_plasma_fuel_profile428)__ 6.43341971909208296e+04 -Total_plasma_fuel_pressure_at_point_429__________________________________ (pres_plasma_fuel_profile429)__ 6.37084465193203723e+04 -Total_plasma_fuel_pressure_at_point_430__________________________________ (pres_plasma_fuel_profile430)__ 6.30884243913201572e+04 -Total_plasma_fuel_pressure_at_point_431__________________________________ (pres_plasma_fuel_profile431)__ 6.24742104495608946e+04 -Total_plasma_fuel_pressure_at_point_432__________________________________ (pres_plasma_fuel_profile432)__ 6.18658866966793066e+04 -Total_plasma_fuel_pressure_at_point_433__________________________________ (pres_plasma_fuel_profile433)__ 6.12635376681319103e+04 -Total_plasma_fuel_pressure_at_point_434__________________________________ (pres_plasma_fuel_profile434)__ 6.06672506221071235e+04 -Total_plasma_fuel_pressure_at_point_435__________________________________ (pres_plasma_fuel_profile435)__ 6.00771157487027958e+04 -Total_plasma_fuel_pressure_at_point_436__________________________________ (pres_plasma_fuel_profile436)__ 5.94932264008957281e+04 -Total_plasma_fuel_pressure_at_point_437__________________________________ (pres_plasma_fuel_profile437)__ 5.89156793502391447e+04 -Total_plasma_fuel_pressure_at_point_438__________________________________ (pres_plasma_fuel_profile438)__ 5.83445750707226107e+04 -Total_plasma_fuel_pressure_at_point_439__________________________________ (pres_plasma_fuel_profile439)__ 5.77800180548216522e+04 -Total_plasma_fuel_pressure_at_point_440__________________________________ (pres_plasma_fuel_profile440)__ 5.72221171664886715e+04 -Total_plasma_fuel_pressure_at_point_441__________________________________ (pres_plasma_fuel_profile441)__ 5.66709860367145084e+04 -Total_plasma_fuel_pressure_at_point_442__________________________________ (pres_plasma_fuel_profile442)__ 5.61267435083682576e+04 -Total_plasma_fuel_pressure_at_point_443__________________________________ (pres_plasma_fuel_profile443)__ 5.55895141383506780e+04 -Total_plasma_fuel_pressure_at_point_444__________________________________ (pres_plasma_fuel_profile444)__ 5.50594287667491444e+04 -Total_plasma_fuel_pressure_at_point_445__________________________________ (pres_plasma_fuel_profile445)__ 5.45366251647443205e+04 -Total_plasma_fuel_pressure_at_point_446__________________________________ (pres_plasma_fuel_profile446)__ 5.40212487756257324e+04 -Total_plasma_fuel_pressure_at_point_447__________________________________ (pres_plasma_fuel_profile447)__ 5.35134535665844378e+04 -Total_plasma_fuel_pressure_at_point_448__________________________________ (pres_plasma_fuel_profile448)__ 5.30134030132045227e+04 -Total_plasma_fuel_pressure_at_point_449__________________________________ (pres_plasma_fuel_profile449)__ 5.25212712440872856e+04 -Total_plasma_fuel_pressure_at_point_450__________________________________ (pres_plasma_fuel_profile450)__ 5.20372443802682174e+04 -Total_plasma_fuel_pressure_at_point_451__________________________________ (pres_plasma_fuel_profile451)__ 5.15615221136650944e+04 -Total_plasma_fuel_pressure_at_point_452__________________________________ (pres_plasma_fuel_profile452)__ 5.10943195816603329e+04 -Total_plasma_fuel_pressure_at_point_453__________________________________ (pres_plasma_fuel_profile453)__ 5.06358696124389535e+04 -Total_plasma_fuel_pressure_at_point_454__________________________________ (pres_plasma_fuel_profile454)__ 5.01864254399299898e+04 -Total_plasma_fuel_pressure_at_point_455__________________________________ (pres_plasma_fuel_profile455)__ 4.97462640212785773e+04 -Total_plasma_fuel_pressure_at_point_456__________________________________ (pres_plasma_fuel_profile456)__ 4.93156901386330501e+04 -Total_plasma_fuel_pressure_at_point_457__________________________________ (pres_plasma_fuel_profile457)__ 4.88950415385753295e+04 -Total_plasma_fuel_pressure_at_point_458__________________________________ (pres_plasma_fuel_profile458)__ 4.84846954698352492e+04 -Total_plasma_fuel_pressure_at_point_459__________________________________ (pres_plasma_fuel_profile459)__ 4.80850771453283305e+04 -Total_plasma_fuel_pressure_at_point_460__________________________________ (pres_plasma_fuel_profile460)__ 4.76966709175995420e+04 -Total_plasma_fuel_pressure_at_point_461__________________________________ (pres_plasma_fuel_profile461)__ 4.73200353905485463e+04 -Total_plasma_fuel_pressure_at_point_462__________________________________ (pres_plasma_fuel_profile462)__ 4.69558244369362292e+04 -Total_plasma_fuel_pressure_at_point_463__________________________________ (pres_plasma_fuel_profile463)__ 4.66048174435439651e+04 -Total_plasma_fuel_pressure_at_point_464__________________________________ (pres_plasma_fuel_profile464)__ 4.62679647127500939e+04 -Total_plasma_fuel_pressure_at_point_465__________________________________ (pres_plasma_fuel_profile465)__ 4.59464593810192309e+04 -Total_plasma_fuel_pressure_at_point_466__________________________________ (pres_plasma_fuel_profile466)__ 4.56418597298111563e+04 -Total_plasma_fuel_pressure_at_point_467__________________________________ (pres_plasma_fuel_profile467)__ 4.53563188124019434e+04 -Total_plasma_fuel_pressure_at_point_468__________________________________ (pres_plasma_fuel_profile468)__ 4.50930848305558538e+04 -Total_plasma_fuel_pressure_at_point_469__________________________________ (pres_plasma_fuel_profile469)__ 4.48579157448277110e+04 -Total_plasma_fuel_pressure_at_point_470__________________________________ (pres_plasma_fuel_profile470)__ 4.46678005363328775e+04 -Total_plasma_fuel_pressure_at_point_471__________________________________ (pres_plasma_fuel_profile471)__ 4.26129224681658961e+04 -Total_plasma_fuel_pressure_at_point_472__________________________________ (pres_plasma_fuel_profile472)__ 4.05981737609085540e+04 -Total_plasma_fuel_pressure_at_point_473__________________________________ (pres_plasma_fuel_profile473)__ 3.86235544145608583e+04 -Total_plasma_fuel_pressure_at_point_474__________________________________ (pres_plasma_fuel_profile474)__ 3.66890644291228236e+04 -Total_plasma_fuel_pressure_at_point_475__________________________________ (pres_plasma_fuel_profile475)__ 3.47947038045944209e+04 -Total_plasma_fuel_pressure_at_point_476__________________________________ (pres_plasma_fuel_profile476)__ 3.29404725409756647e+04 -Total_plasma_fuel_pressure_at_point_477__________________________________ (pres_plasma_fuel_profile477)__ 3.11263706382665587e+04 -Total_plasma_fuel_pressure_at_point_478__________________________________ (pres_plasma_fuel_profile478)__ 2.93523980964671100e+04 -Total_plasma_fuel_pressure_at_point_479__________________________________ (pres_plasma_fuel_profile479)__ 2.76185549155772860e+04 -Total_plasma_fuel_pressure_at_point_480__________________________________ (pres_plasma_fuel_profile480)__ 2.59248410955971231e+04 -Total_plasma_fuel_pressure_at_point_481__________________________________ (pres_plasma_fuel_profile481)__ 2.42712566365265993e+04 -Total_plasma_fuel_pressure_at_point_482__________________________________ (pres_plasma_fuel_profile482)__ 2.26578015383657330e+04 -Total_plasma_fuel_pressure_at_point_483__________________________________ (pres_plasma_fuel_profile483)__ 2.10844758011145095e+04 -Total_plasma_fuel_pressure_at_point_484__________________________________ (pres_plasma_fuel_profile484)__ 1.95512794247729325e+04 -Total_plasma_fuel_pressure_at_point_485__________________________________ (pres_plasma_fuel_profile485)__ 1.80582124093409948e+04 -Total_plasma_fuel_pressure_at_point_486__________________________________ (pres_plasma_fuel_profile486)__ 1.66052747548187072e+04 -Total_plasma_fuel_pressure_at_point_487__________________________________ (pres_plasma_fuel_profile487)__ 1.51924664612060715e+04 -Total_plasma_fuel_pressure_at_point_488__________________________________ (pres_plasma_fuel_profile488)__ 1.38197875285030768e+04 -Total_plasma_fuel_pressure_at_point_489__________________________________ (pres_plasma_fuel_profile489)__ 1.24872379567097287e+04 -Total_plasma_fuel_pressure_at_point_490__________________________________ (pres_plasma_fuel_profile490)__ 1.11948177458260307e+04 -Total_plasma_fuel_pressure_at_point_491__________________________________ (pres_plasma_fuel_profile491)__ 9.94252689585197913e+03 -Total_plasma_fuel_pressure_at_point_492__________________________________ (pres_plasma_fuel_profile492)__ 8.73036540678757228e+03 -Total_plasma_fuel_pressure_at_point_493__________________________________ (pres_plasma_fuel_profile493)__ 7.55833327863281465e+03 -Total_plasma_fuel_pressure_at_point_494__________________________________ (pres_plasma_fuel_profile494)__ 6.42643051138770079e+03 -Total_plasma_fuel_pressure_at_point_495__________________________________ (pres_plasma_fuel_profile495)__ 5.33465710505223433e+03 -Total_plasma_fuel_pressure_at_point_496__________________________________ (pres_plasma_fuel_profile496)__ 4.28301305962641527e+03 -Total_plasma_fuel_pressure_at_point_497__________________________________ (pres_plasma_fuel_profile497)__ 3.27149837511024134e+03 -Total_plasma_fuel_pressure_at_point_498__________________________________ (pres_plasma_fuel_profile498)__ 2.30011305150371572e+03 -Total_plasma_fuel_pressure_at_point_499__________________________________ (pres_plasma_fuel_profile499)__ 1.36885708880683546e+03 -Total_plasma_fuel_pressure_at_point_500__________________________________ (pres_plasma_fuel_profile500)__ 4.77730487019603004e+02 -H_concentration__________________________________________________________ (f_nd_impurity_electrons(01))__ 7.95779991487233662e-01 OP -He_concentration_________________________________________________________ (f_nd_impurity_electrons(02))__ 8.70076989100456027e-02 -He_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons1_0)___ 9.29581552838618726e+18 OP -He_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons1_1)___ 9.29579854358191923e+18 OP -He_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons1_2)___ 9.29574758916911514e+18 OP -He_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons1_3)___ 9.29566266514777088e+18 OP -He_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons1_4)___ 9.29554377151789261e+18 OP -He_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons1_5)___ 9.29539090827947622e+18 OP -He_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons1_6)___ 9.29520407543252378e+18 OP -He_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons1_7)___ 9.29498327297703322e+18 OP -He_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons1_8)___ 9.29472850091300659e+18 OP -He_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons1_9)___ 9.29443975924044186e+18 OP -He_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons1_10)__ 9.29411704795934106e+18 OP -He_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons1_11)__ 9.29376036706970419e+18 OP -He_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons1_12)__ 9.29336971657152922e+18 OP -He_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons1_13)__ 9.29294509646482022e+18 OP -He_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons1_14)__ 9.29248650674957107e+18 OP -He_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons1_15)__ 9.29199394742578586e+18 OP -He_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons1_16)__ 9.29146741849346458e+18 OP -He_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons1_17)__ 9.29090691995260518e+18 OP -He_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons1_18)__ 9.29031245180320973e+18 OP -He_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons1_19)__ 9.28968401404527616e+18 OP -He_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons1_20)__ 9.28902160667880653e+18 OP -He_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons1_21)__ 9.28832522970379878e+18 OP -He_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons1_22)__ 9.28759488312025498e+18 OP -He_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons1_23)__ 9.28683056692817510e+18 OP -He_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons1_24)__ 9.28603228112755712e+18 OP -He_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons1_25)__ 9.28520002571840307e+18 OP -He_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons1_26)__ 9.28433380070071091e+18 OP -He_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons1_27)__ 9.28343360607448474e+18 OP -He_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons1_28)__ 9.28249944183971840e+18 OP -He_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons1_29)__ 9.28153130799641600e+18 OP -He_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons1_30)__ 9.28052920454457754e+18 OP -He_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons1_31)__ 9.27949313148420301e+18 OP -He_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons1_32)__ 9.27842308881529242e+18 OP -He_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons1_33)__ 9.27731907653784166e+18 OP -He_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons1_34)__ 9.27618109465185485e+18 OP -He_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons1_35)__ 9.27500914315732992e+18 OP -He_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons1_36)__ 9.27380322205427098e+18 OP -He_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons1_37)__ 9.27256333134267392e+18 OP -He_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons1_38)__ 9.27128947102253875e+18 OP -He_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons1_39)__ 9.26998164109386752e+18 OP -He_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons1_40)__ 9.26863984155666022e+18 OP -He_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons1_41)__ 9.26726407241091482e+18 OP -He_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons1_42)__ 9.26585433365663334e+18 OP -He_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons1_43)__ 9.26441062529381581e+18 OP -He_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons1_44)__ 9.26293294732246016e+18 OP -He_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons1_45)__ 9.26142129974256640e+18 OP -He_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons1_46)__ 9.25987568255413862e+18 OP -He_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons1_47)__ 9.25829609575717274e+18 OP -He_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons1_48)__ 9.25668253935166874e+18 OP -He_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons1_49)__ 9.25503501333762867e+18 OP -He_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons1_50)__ 9.25335351771505050e+18 OP -He_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons1_51)__ 9.25163805248393626e+18 OP -He_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons1_52)__ 9.24988861764428800e+18 OP -He_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons1_53)__ 9.24810521319609958e+18 OP -He_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons1_54)__ 9.24628783913937510e+18 OP -He_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons1_55)__ 9.24443649547411251e+18 OP -He_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons1_56)__ 9.24255118220031386e+18 OP -He_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons1_57)__ 9.24063189931797914e+18 OP -He_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons1_58)__ 9.23867864682710630e+18 OP -He_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons1_59)__ 9.23669142472769741e+18 OP -He_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons1_60)__ 9.23467023301975040e+18 OP -He_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons1_61)__ 9.23261507170326938e+18 OP -He_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons1_62)__ 9.23052594077824819e+18 OP -He_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons1_63)__ 9.22840284024469299e+18 OP -He_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons1_64)__ 9.22624577010259763e+18 OP -He_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons1_65)__ 9.22405473035196826e+18 OP -He_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons1_66)__ 9.22182972099280077e+18 OP -He_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons1_67)__ 9.21957074202509517e+18 OP -He_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons1_68)__ 9.21727779344885453e+18 OP -He_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons1_69)__ 9.21495087526407578e+18 OP -He_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons1_70)__ 9.21258998747076096e+18 OP -He_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons1_71)__ 9.21019513006890701e+18 OP -He_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons1_72)__ 9.20776630305851904e+18 OP -He_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons1_73)__ 9.20530350643959398e+18 OP -He_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons1_74)__ 9.20280674021213082e+18 OP -He_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons1_75)__ 9.20027600437612954e+18 OP -He_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons1_76)__ 9.19771129893159424e+18 OP -He_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons1_77)__ 9.19511262387851981e+18 OP -He_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons1_78)__ 9.19247997921691034e+18 OP -He_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons1_79)__ 9.18981336494676378e+18 OP -He_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons1_80)__ 9.18711278106807808e+18 OP -He_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons1_81)__ 9.18437822758085734e+18 OP -He_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons1_82)__ 9.18160970448509850e+18 OP -He_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons1_83)__ 9.17880721178080358e+18 OP -He_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons1_84)__ 9.17597074946797261e+18 OP -He_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons1_85)__ 9.17310031754660250e+18 OP -He_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons1_86)__ 9.17019591601669734e+18 OP -He_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons1_87)__ 9.16725754487825510e+18 OP -He_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons1_88)__ 9.16428520413127578e+18 OP -He_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons1_89)__ 9.16127889377576038e+18 OP -He_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons1_90)__ 9.15823861381170586e+18 OP -He_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons1_91)__ 9.15516436423911526e+18 OP -He_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons1_92)__ 9.15205614505798861e+18 OP -He_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons1_93)__ 9.14891395626832282e+18 OP -He_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons1_94)__ 9.14573779787012301e+18 OP -He_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons1_95)__ 9.14252766986338611e+18 OP -He_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons1_96)__ 9.13928357224811110e+18 OP -He_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons1_97)__ 9.13600550502429798e+18 OP -He_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons1_98)__ 9.13269346819195085e+18 OP -He_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons1_99)__ 9.12934746175106458e+18 OP -He_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons1_100)_ 9.12596748570164224e+18 OP -He_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons1_101)_ 9.12255354004368282e+18 OP -He_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons1_102)_ 9.11910562477718733e+18 OP -He_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons1_103)_ 9.11562373990215270e+18 OP -He_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons1_104)_ 9.11210788541858202e+18 OP -He_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons1_105)_ 9.10855806132647731e+18 OP -He_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons1_106)_ 9.10497426762583245e+18 OP -He_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons1_107)_ 9.10135650431665152e+18 OP -He_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons1_108)_ 9.09770477139893350e+18 OP -He_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons1_109)_ 9.09401906887267942e+18 OP -He_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons1_110)_ 9.09029939673788723e+18 OP -He_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons1_111)_ 9.08654575499455898e+18 OP -He_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons1_112)_ 9.08275814364269363e+18 OP -He_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons1_113)_ 9.07893656268229120e+18 OP -He_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons1_114)_ 9.07508101211335270e+18 OP -He_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons1_115)_ 9.07119149193587712e+18 OP -He_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons1_116)_ 9.06726800214986342e+18 OP -He_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons1_117)_ 9.06331054275531264e+18 OP -He_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons1_118)_ 9.05931911375222682e+18 OP -He_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons1_119)_ 9.05529371514060288e+18 OP -He_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons1_120)_ 9.05123434692044186e+18 OP -He_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons1_121)_ 9.04714100909174579e+18 OP -He_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons1_122)_ 9.04301370165451059e+18 OP -He_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons1_123)_ 9.03885242460873830e+18 OP -He_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons1_124)_ 9.03465717795443098e+18 OP -He_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons1_125)_ 9.03042796169158451e+18 OP -He_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons1_126)_ 9.02616477582020198e+18 OP -He_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons1_127)_ 9.02186762034028339e+18 OP -He_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons1_128)_ 9.01753649525182874e+18 OP -He_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons1_129)_ 9.01317140055483597e+18 OP -He_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons1_130)_ 9.00877233624930611e+18 OP -He_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons1_131)_ 9.00433930233524019e+18 OP -He_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons1_132)_ 8.99987229881263514e+18 OP -He_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons1_133)_ 8.99537132568149504e+18 OP -He_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons1_134)_ 8.99083638294181786e+18 OP -He_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons1_135)_ 8.98626747059360256e+18 OP -He_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons1_136)_ 8.98166458863685222e+18 OP -He_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons1_137)_ 8.97702773707156378e+18 OP -He_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons1_138)_ 8.97235691589773926e+18 OP -He_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons1_139)_ 8.96765212511537664e+18 OP -He_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons1_140)_ 8.96291336472447795e+18 OP -He_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons1_141)_ 8.95814063472504320e+18 OP -He_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons1_142)_ 8.95333393511706931e+18 OP -He_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons1_143)_ 8.94849326590055936e+18 OP -He_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons1_144)_ 8.94361862707551334e+18 OP -He_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons1_145)_ 8.93871001864193229e+18 OP -He_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons1_146)_ 8.93376744059981107e+18 OP -He_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons1_147)_ 8.92879089294915379e+18 OP -He_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons1_148)_ 8.92378037568995840e+18 OP -He_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons1_149)_ 8.91873588882222797e+18 OP -He_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons1_150)_ 8.91365743234596045e+18 OP -He_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons1_151)_ 8.90854500626115482e+18 OP -He_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons1_152)_ 8.90339861056781312e+18 OP -He_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons1_153)_ 8.89821824526593536e+18 OP -He_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons1_154)_ 8.89300391035551949e+18 OP -He_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons1_155)_ 8.88775560583656653e+18 OP -He_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons1_156)_ 8.88247333170907648e+18 OP -He_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons1_157)_ 8.87715708797305037e+18 OP -He_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons1_158)_ 8.87180687462848819e+18 OP -He_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons1_159)_ 8.86642269167538790e+18 OP -He_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons1_160)_ 8.86100453911375053e+18 OP -He_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons1_161)_ 8.85555241694357709e+18 OP -He_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons1_162)_ 8.85006632516486554e+18 OP -He_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons1_163)_ 8.84454626377761894e+18 OP -He_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons1_164)_ 8.83899223278183322e+18 OP -He_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons1_165)_ 8.83340423217751245e+18 OP -He_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons1_166)_ 8.82778226196465357e+18 OP -He_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons1_167)_ 8.82212632214325862e+18 OP -He_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons1_168)_ 8.81643641271332762e+18 OP -He_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons1_169)_ 8.81071253367485645e+18 OP -He_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons1_170)_ 8.80495468502785024e+18 OP -He_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons1_171)_ 8.79916286677230797e+18 OP -He_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons1_172)_ 8.79333707890822758e+18 OP -He_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons1_173)_ 8.78747732143561114e+18 OP -He_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons1_174)_ 8.78158359435445658e+18 OP -He_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons1_175)_ 8.77565589766476698e+18 OP -He_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons1_176)_ 8.76969423136653926e+18 OP -He_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons1_177)_ 8.76369859545977446e+18 OP -He_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons1_178)_ 8.75766898994447360e+18 OP -He_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons1_179)_ 8.75160541482063462e+18 OP -He_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons1_180)_ 8.74550787008825958e+18 OP -He_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons1_181)_ 8.73937635574734746e+18 OP -He_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons1_182)_ 8.73321087179789926e+18 OP -He_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons1_183)_ 8.72701141823991296e+18 OP -He_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons1_184)_ 8.72077799507338957e+18 OP -He_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons1_185)_ 8.71451060229833011e+18 OP -He_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons1_186)_ 8.70820923991473357e+18 OP -He_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons1_187)_ 8.70187390792260096e+18 OP -He_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons1_188)_ 8.69550460632192922e+18 OP -He_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons1_189)_ 8.68910133511272243e+18 OP -He_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons1_190)_ 8.68266409429497754e+18 OP -He_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons1_191)_ 8.67619288386869760e+18 OP -He_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons1_192)_ 8.66968770383387955e+18 OP -He_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons1_193)_ 8.66314855419052339e+18 OP -He_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons1_194)_ 8.65657543493863219e+18 OP -He_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons1_195)_ 8.64996834607820288e+18 OP -He_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons1_196)_ 8.64332728760923750e+18 OP -He_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons1_197)_ 8.63665225953173504e+18 OP -He_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons1_198)_ 8.62994326184569446e+18 OP -He_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons1_199)_ 8.62320029455111885e+18 OP -He_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons1_200)_ 8.61642335764800512e+18 OP -He_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons1_201)_ 8.60961245113635533e+18 OP -He_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons1_202)_ 8.60276757501616742e+18 OP -He_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons1_203)_ 8.59588872928744346e+18 OP -He_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons1_204)_ 8.58897591395018342e+18 OP -He_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons1_205)_ 8.58202912900438528e+18 OP -He_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons1_206)_ 8.57504837445005005e+18 OP -He_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons1_207)_ 8.56803365028717875e+18 OP -He_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons1_208)_ 8.56098495651576934e+18 OP -He_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons1_209)_ 8.55390229313582490e+18 OP -He_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons1_210)_ 8.54678566014734131e+18 OP -He_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons1_211)_ 8.53963505755032269e+18 OP -He_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons1_212)_ 8.53245048534476595e+18 OP -He_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons1_213)_ 8.52523194353067418e+18 OP -He_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons1_214)_ 8.51797943210804224e+18 OP -He_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons1_215)_ 8.51069295107687629e+18 OP -He_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons1_216)_ 8.50337250043717325e+18 OP -He_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons1_217)_ 8.49601808018893005e+18 OP -He_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons1_218)_ 8.48862969033215283e+18 OP -He_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons1_219)_ 8.48120733086683853e+18 OP -He_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons1_220)_ 8.47375100179298714e+18 OP -He_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons1_221)_ 8.46626070311059866e+18 OP -He_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons1_222)_ 8.45873643481967309e+18 OP -He_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons1_223)_ 8.45117819692021146e+18 OP -He_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons1_224)_ 8.44358598941221274e+18 OP -He_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons1_225)_ 8.43595981229567590e+18 OP -He_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons1_226)_ 8.42829966557060301e+18 OP -He_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons1_227)_ 8.42060554923699302e+18 OP -He_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons1_228)_ 8.41287746329484698e+18 OP -He_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons1_229)_ 8.40511540774416179e+18 OP -He_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons1_230)_ 8.39731938258494157e+18 OP -He_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons1_231)_ 8.38948938781718323e+18 OP -He_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons1_232)_ 8.38162542344088986e+18 OP -He_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons1_233)_ 8.37372748945605734e+18 OP -He_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons1_234)_ 8.36579558586268877e+18 OP -He_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons1_235)_ 8.35782971266078515e+18 OP -He_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons1_236)_ 8.34982986985034342e+18 OP -He_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons1_237)_ 8.34179605743136358e+18 OP -He_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons1_238)_ 8.33372827540384870e+18 OP -He_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons1_239)_ 8.32562652376779571e+18 OP -He_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons1_240)_ 8.31749080252320563e+18 OP -He_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons1_241)_ 8.30932111167007846e+18 OP -He_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons1_242)_ 8.30111745120841523e+18 OP -He_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons1_243)_ 8.29287982113821491e+18 OP -He_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons1_244)_ 8.28460822145947750e+18 OP -He_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons1_245)_ 8.27630265217220301e+18 OP -He_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons1_246)_ 8.26796311327639142e+18 OP -He_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons1_247)_ 8.25958960477204275e+18 OP -He_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons1_248)_ 8.25118212665915904e+18 OP -He_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons1_249)_ 8.24274067893773619e+18 OP -He_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons1_250)_ 8.23426526160777830e+18 OP -He_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons1_251)_ 8.22575587466928128e+18 OP -He_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons1_252)_ 8.21721251812225024e+18 OP -He_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons1_253)_ 8.20863519196667904e+18 OP -He_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons1_254)_ 8.20002389620257382e+18 OP -He_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons1_255)_ 8.19137863082993050e+18 OP -He_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons1_256)_ 8.18269939584875008e+18 OP -He_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons1_257)_ 8.17398619125903258e+18 OP -He_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons1_258)_ 8.16523901706077901e+18 OP -He_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons1_259)_ 8.15645787325398733e+18 OP -He_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons1_260)_ 8.14764275983866061e+18 OP -He_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons1_261)_ 8.13879367681479373e+18 OP -He_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons1_262)_ 8.12991062418239283e+18 OP -He_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons1_263)_ 8.12099360194145382e+18 OP -He_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons1_264)_ 8.11204261009197875e+18 OP -He_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons1_265)_ 8.10305764863396557e+18 OP -He_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons1_266)_ 8.09403871756741632e+18 OP -He_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons1_267)_ 8.08498581689232998e+18 OP -He_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons1_268)_ 8.07589894660870656e+18 OP -He_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons1_269)_ 8.06677810671654707e+18 OP -He_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons1_270)_ 8.05762329721585050e+18 OP -He_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons1_271)_ 8.04843451810661683e+18 OP -He_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons1_272)_ 8.03921176938884506e+18 OP -He_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons1_273)_ 8.02995505106253722e+18 OP -He_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons1_274)_ 8.02066436312769229e+18 OP -He_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons1_275)_ 8.01133970558431130e+18 OP -He_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons1_276)_ 8.00198107843239322e+18 OP -He_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons1_277)_ 7.99258848167193702e+18 OP -He_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons1_278)_ 7.98316191530294477e+18 OP -He_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons1_279)_ 7.97370137932541542e+18 OP -He_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons1_280)_ 7.96420687373935002e+18 OP -He_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons1_281)_ 7.95467839854474752e+18 OP -He_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons1_282)_ 7.94511595374160691e+18 OP -He_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons1_283)_ 7.93551953932993126e+18 OP -He_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons1_284)_ 7.92588915530971750e+18 OP -He_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons1_285)_ 7.91622480168096768e+18 OP -He_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons1_286)_ 7.90652647844367872e+18 OP -He_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons1_287)_ 7.89679418559785472e+18 OP -He_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons1_288)_ 7.88702792314349363e+18 OP -He_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons1_289)_ 7.87722769108059443e+18 OP -He_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons1_290)_ 7.86739348940915814e+18 OP -He_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons1_291)_ 7.85752531812918784e+18 OP -He_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons1_292)_ 7.84762317724067840e+18 OP -He_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons1_293)_ 7.83768706674363187e+18 OP -He_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons1_294)_ 7.82771698663805030e+18 OP -He_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons1_295)_ 7.81771293692392960e+18 OP -He_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons1_296)_ 7.80767491760127283e+18 OP -He_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons1_297)_ 7.79760292867008000e+18 OP -He_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons1_298)_ 7.78749697013034803e+18 OP -He_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons1_299)_ 7.77735704198208205e+18 OP -He_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons1_300)_ 7.76718314422527693e+18 OP -He_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons1_301)_ 7.75697527685993574e+18 OP -He_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons1_302)_ 7.74673343988605850e+18 OP -He_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons1_303)_ 7.73645763330364314e+18 OP -He_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons1_304)_ 7.72614785711269069e+18 OP -He_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons1_305)_ 7.71580411131320218e+18 OP -He_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons1_306)_ 7.70542639590517658e+18 OP -He_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons1_307)_ 7.69501471088861389e+18 OP -He_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons1_308)_ 7.68456905626351514e+18 OP -He_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons1_309)_ 7.67408943202987827e+18 OP -He_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons1_310)_ 7.66357583818770330e+18 OP -He_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons1_311)_ 7.65302827473699430e+18 OP -He_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons1_312)_ 7.64244674167774618e+18 OP -He_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons1_313)_ 7.63183123900996403e+18 OP -He_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons1_314)_ 7.62118176673364173e+18 OP -He_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons1_315)_ 7.61049832484878438e+18 OP -He_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons1_316)_ 7.59978091335538893e+18 OP -He_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons1_317)_ 7.58902953225345843e+18 OP -He_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons1_318)_ 7.57824418154298778e+18 OP -He_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons1_319)_ 7.56742486122398310e+18 OP -He_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons1_320)_ 7.55657157129644134e+18 OP -He_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons1_321)_ 7.54568431176036147e+18 OP -He_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons1_322)_ 7.53476308261574451e+18 OP -He_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons1_323)_ 7.52380788386259149e+18 OP -He_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons1_324)_ 7.51281871550090240e+18 OP -He_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons1_325)_ 7.50179557753067520e+18 OP -He_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons1_326)_ 7.49073846995191091e+18 OP -He_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons1_327)_ 7.47964739276460954e+18 OP -He_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons1_328)_ 7.46852234596877107e+18 OP -He_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons1_329)_ 7.45736332956439757e+18 OP -He_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons1_330)_ 7.44617034355148493e+18 OP -He_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons1_331)_ 7.43494338793003725e+18 OP -He_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons1_332)_ 7.42368246270005146e+18 OP -He_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons1_333)_ 7.41238756786152960e+18 OP -He_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons1_334)_ 7.40105870341447066e+18 OP -He_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons1_335)_ 7.38969586935887462e+18 OP -He_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons1_336)_ 7.37829906569474253e+18 OP -He_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons1_337)_ 7.36686829242207130e+18 OP -He_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons1_338)_ 7.35540354954086400e+18 OP -He_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons1_339)_ 7.34390483705112166e+18 OP -He_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons1_340)_ 7.33237215495284122e+18 OP -He_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons1_341)_ 7.32080550324602266e+18 OP -He_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons1_342)_ 7.30920488193066906e+18 OP -He_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons1_343)_ 7.29757029100677734e+18 OP -He_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons1_344)_ 7.28590173047434957e+18 OP -He_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons1_345)_ 7.27419920033338368e+18 OP -He_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons1_346)_ 7.26246270058388173e+18 OP -He_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons1_347)_ 7.25069223122584371e+18 OP -He_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons1_348)_ 7.23888779225926758e+18 OP -He_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons1_349)_ 7.22704938368415334e+18 OP -He_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons1_350)_ 7.21517700550050406e+18 OP -He_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons1_351)_ 7.20327065770831667e+18 OP -He_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons1_352)_ 7.19133034030759526e+18 OP -He_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons1_353)_ 7.17935605329833267e+18 OP -He_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons1_354)_ 7.16734779668053606e+18 OP -He_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons1_355)_ 7.15530557045420237e+18 OP -He_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons1_356)_ 7.14322937461933056e+18 OP -He_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons1_357)_ 7.13111920917592269e+18 OP -He_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons1_358)_ 7.11897507412397875e+18 OP -He_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons1_359)_ 7.10679696946349568e+18 OP -He_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons1_360)_ 7.09458489519447654e+18 OP -He_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons1_361)_ 7.08233885131692032e+18 OP -He_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons1_362)_ 7.07005883783082803e+18 OP -He_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons1_363)_ 7.05774485473619866e+18 OP -He_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons1_364)_ 7.04539690203303219e+18 OP -He_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons1_365)_ 7.03301497972132864e+18 OP -He_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons1_366)_ 7.02059908780109005e+18 OP -He_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons1_367)_ 7.00814922627231130e+18 OP -He_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons1_368)_ 6.99566539513499648e+18 OP -He_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons1_369)_ 6.98314759438914662e+18 OP -He_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons1_370)_ 6.97059582403475866e+18 OP -He_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons1_371)_ 6.95801008407183258e+18 OP -He_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons1_372)_ 6.94539037450037248e+18 OP -He_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons1_373)_ 6.93273669532037222e+18 OP -He_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons1_374)_ 6.92004904653183693e+18 OP -He_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons1_375)_ 6.90732742813476454e+18 OP -He_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons1_376)_ 6.89457184012915610e+18 OP -He_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons1_377)_ 6.88178228251500954e+18 OP -He_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons1_378)_ 6.86895875529232589e+18 OP -He_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons1_379)_ 6.85610125846110720e+18 OP -He_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons1_380)_ 6.84320979202134938e+18 OP -He_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons1_381)_ 6.83028435597305446e+18 OP -He_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons1_382)_ 6.81732495031622451e+18 OP -He_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons1_383)_ 6.80433157505085645e+18 OP -He_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons1_384)_ 6.79130423017695232e+18 OP -He_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons1_385)_ 6.77824291569451008e+18 OP -He_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons1_386)_ 6.76514763160353280e+18 OP -He_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons1_387)_ 6.75201837790401741e+18 OP -He_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons1_388)_ 6.73885515459596390e+18 OP -He_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons1_389)_ 6.72565796167937536e+18 OP -He_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons1_390)_ 6.71242679915424973e+18 OP -He_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons1_391)_ 6.69916166702058701e+18 OP -He_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons1_392)_ 6.68586256527838515e+18 OP -He_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons1_393)_ 6.67252949392764928e+18 OP -He_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons1_394)_ 6.65916245296837530e+18 OP -He_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons1_395)_ 6.64576144240056525e+18 OP -He_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons1_396)_ 6.63232646222421709e+18 OP -He_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons1_397)_ 6.61885751243933286e+18 OP -He_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons1_398)_ 6.60535459304591053e+18 OP -He_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons1_399)_ 6.59181770404395315e+18 OP -He_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons1_400)_ 6.57824684543345766e+18 OP -He_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons1_401)_ 6.56464201721442611e+18 OP -He_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons1_402)_ 6.55100321938685645e+18 OP -He_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons1_403)_ 6.53733045195075174e+18 OP -He_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons1_404)_ 6.52362371490610790e+18 OP -He_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons1_405)_ 6.50988300825292800e+18 OP -He_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons1_406)_ 6.49610833199121203e+18 OP -He_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons1_407)_ 6.48229968612095898e+18 OP -He_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons1_408)_ 6.46845707064216883e+18 OP -He_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons1_409)_ 6.45458048555484160e+18 OP -He_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons1_410)_ 6.44066993085897626e+18 OP -He_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons1_411)_ 6.42672540655457587e+18 OP -He_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons1_412)_ 6.41274691264163635e+18 OP -He_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons1_413)_ 6.39873444912016179e+18 OP -He_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons1_414)_ 6.38468801599015014e+18 OP -He_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons1_415)_ 6.37060761325160141e+18 OP -He_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons1_416)_ 6.35649324090451558e+18 OP -He_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons1_417)_ 6.34234489894889370e+18 OP -He_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons1_418)_ 6.32816258738473267e+18 OP -He_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons1_419)_ 6.31394630621203661e+18 OP -He_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons1_420)_ 6.29969605543080243e+18 OP -He_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons1_421)_ 6.28541183504103322e+18 OP -He_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons1_422)_ 6.27109364504272589e+18 OP -He_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons1_423)_ 6.25674148543588147e+18 OP -He_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons1_424)_ 6.24235535622049997e+18 OP -He_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons1_425)_ 6.22793525739658240e+18 OP -He_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons1_426)_ 6.21348118896412877e+18 OP -He_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons1_427)_ 6.19899315092313600e+18 OP -He_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons1_428)_ 6.18447114327360819e+18 OP -He_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons1_429)_ 6.16991516601554227e+18 OP -He_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons1_430)_ 6.15532521914894029e+18 OP -He_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons1_431)_ 6.14070130267380019e+18 OP -He_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons1_432)_ 6.12604341659012403e+18 OP -He_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons1_433)_ 6.11135156089791078e+18 OP -He_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons1_434)_ 6.09662573559716147e+18 OP -He_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons1_435)_ 6.08186594068787302e+18 OP -He_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons1_436)_ 6.06707217617004954e+18 OP -He_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons1_437)_ 6.05224444204368896e+18 OP -He_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons1_438)_ 6.03738273830879130e+18 OP -He_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons1_439)_ 6.02248706496535654e+18 OP -He_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons1_440)_ 6.00755742201338470e+18 OP -He_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons1_441)_ 5.99259380945287578e+18 OP -He_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons1_442)_ 5.97759622728383078e+18 OP -He_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons1_443)_ 5.96256467550624870e+18 OP -He_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons1_444)_ 5.94749915412012954e+18 OP -He_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons1_445)_ 5.93239966312547328e+18 OP -He_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons1_446)_ 5.91726620252227994e+18 OP -He_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons1_447)_ 5.90209877231055053e+18 OP -He_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons1_448)_ 5.88689737249028403e+18 OP -He_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons1_449)_ 5.87166200306147942e+18 OP -He_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons1_450)_ 5.85639266402413875e+18 OP -He_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons1_451)_ 5.84108935537826099e+18 OP -He_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons1_452)_ 5.82575207712384717e+18 OP -He_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons1_453)_ 5.81038082926089523e+18 OP -He_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons1_454)_ 5.79497561178940723e+18 OP -He_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons1_455)_ 5.77953642470938112e+18 OP -He_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons1_456)_ 5.76406326802081997e+18 OP -He_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons1_457)_ 5.74855614172372070e+18 OP -He_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons1_458)_ 5.73301504581808538e+18 OP -He_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons1_459)_ 5.71743998030391194e+18 OP -He_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons1_460)_ 5.70183094518120243e+18 OP -He_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons1_461)_ 5.68618794044995584e+18 OP -He_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons1_462)_ 5.67051096611017216e+18 OP -He_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons1_463)_ 5.65480002216185139e+18 OP -He_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons1_464)_ 5.63905510860499456e+18 OP -He_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons1_465)_ 5.62327622543959962e+18 OP -He_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons1_466)_ 5.60746337266566861e+18 OP -He_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons1_467)_ 5.59161655028320051e+18 OP -He_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons1_468)_ 5.57573575829219635e+18 OP -He_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons1_469)_ 5.55982099669265408e+18 OP -He_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons1_470)_ 5.54387226548457574e+18 OP -He_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons1_471)_ 5.46777990105635635e+18 OP -He_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons1_472)_ 5.39168753662813594e+18 OP -He_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons1_473)_ 5.31559517219991654e+18 OP -He_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons1_474)_ 5.23950280777169715e+18 OP -He_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons1_475)_ 5.16341044334347776e+18 OP -He_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons1_476)_ 5.08731807891525734e+18 OP -He_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons1_477)_ 5.01122571448703795e+18 OP -He_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons1_478)_ 4.93513335005881856e+18 OP -He_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons1_479)_ 4.85904098563059814e+18 OP -He_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons1_480)_ 4.78294862120237875e+18 OP -He_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons1_481)_ 4.70685625677415936e+18 OP -He_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons1_482)_ 4.63076389234593997e+18 OP -He_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons1_483)_ 4.55467152791772006e+18 OP -He_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons1_484)_ 4.47857916348950067e+18 OP -He_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons1_485)_ 4.40248679906128077e+18 OP -He_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons1_486)_ 4.32639443463306138e+18 OP -He_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons1_487)_ 4.25030207020484147e+18 OP -He_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons1_488)_ 4.17420970577662208e+18 OP -He_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons1_489)_ 4.09811734134840166e+18 OP -He_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons1_490)_ 4.02202497692018227e+18 OP -He_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons1_491)_ 3.94593261249196288e+18 OP -He_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons1_492)_ 3.86984024806374298e+18 OP -He_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons1_493)_ 3.79374788363552358e+18 OP -He_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons1_494)_ 3.71765551920730368e+18 OP -He_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons1_495)_ 3.64156315477908429e+18 OP -He_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons1_496)_ 3.56547079035086490e+18 OP -He_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons1_497)_ 3.48937842592264448e+18 OP -He_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons1_498)_ 3.41328606149442509e+18 OP -He_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons1_499)_ 3.33719369706620518e+18 OP -He_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons1_500)_ 3.26110133263798579e+18 OP +Plasma_thermal_pressure_on_axis_(p₀)_(Pa)________________________________ (pres_plasma_thermal_on_axis)__ 8.18681994356746087e+05 OP +Volume_averaged_plasma_thermal_pressure_(⟨p⟩)_(Pa)_______________________ (pres_plasma_thermal_vol_avg)__ 3.33712075598421216e+05 OP +Total_plasma_pressure_at_point_0_________________________________________ (pres_plasma_thermal_total_profile0)_ 8.18681994356746087e+05 +Total_plasma_pressure_at_point_1_________________________________________ (pres_plasma_thermal_total_profile1)_ 8.18676274012914626e+05 +Total_plasma_pressure_at_point_2_________________________________________ (pres_plasma_thermal_total_profile2)_ 8.18659113125681411e+05 +Total_plasma_pressure_at_point_3_________________________________________ (pres_plasma_thermal_total_profile3)_ 8.18630512127824361e+05 +Total_plasma_pressure_at_point_4_________________________________________ (pres_plasma_thermal_total_profile4)_ 8.18590471740637207e+05 +Total_plasma_pressure_at_point_5_________________________________________ (pres_plasma_thermal_total_profile5)_ 8.18538992973919958e+05 +Total_plasma_pressure_at_point_6_________________________________________ (pres_plasma_thermal_total_profile6)_ 8.18476077125967480e+05 +Total_plasma_pressure_at_point_7_________________________________________ (pres_plasma_thermal_total_profile7)_ 8.18401725783557398e+05 +Total_plasma_pressure_at_point_8_________________________________________ (pres_plasma_thermal_total_profile8)_ 8.18315940821931465e+05 +Total_plasma_pressure_at_point_9_________________________________________ (pres_plasma_thermal_total_profile9)_ 8.18218724404775770e+05 +Total_plasma_pressure_at_point_10________________________________________ (pres_plasma_thermal_total_profile10)_ 8.18110078984199092e+05 +Total_plasma_pressure_at_point_11________________________________________ (pres_plasma_thermal_total_profile11)_ 8.17990007300704252e+05 +Total_plasma_pressure_at_point_12________________________________________ (pres_plasma_thermal_total_profile12)_ 8.17858512383161229e+05 +Total_plasma_pressure_at_point_13________________________________________ (pres_plasma_thermal_total_profile13)_ 8.17715597548771999e+05 +Total_plasma_pressure_at_point_14________________________________________ (pres_plasma_thermal_total_profile14)_ 8.17561266403037938e+05 +Total_plasma_pressure_at_point_15________________________________________ (pres_plasma_thermal_total_profile15)_ 8.17395522839718265e+05 +Total_plasma_pressure_at_point_16________________________________________ (pres_plasma_thermal_total_profile16)_ 8.17218371040791273e+05 +Total_plasma_pressure_at_point_17________________________________________ (pres_plasma_thermal_total_profile17)_ 8.17029815476406831e+05 +Total_plasma_pressure_at_point_18________________________________________ (pres_plasma_thermal_total_profile18)_ 8.16829860904840520e+05 +Total_plasma_pressure_at_point_19________________________________________ (pres_plasma_thermal_total_profile19)_ 8.16618512372441357e+05 +Total_plasma_pressure_at_point_20________________________________________ (pres_plasma_thermal_total_profile20)_ 8.16395775213578250e+05 +Total_plasma_pressure_at_point_21________________________________________ (pres_plasma_thermal_total_profile21)_ 8.16161655050583417e+05 +Total_plasma_pressure_at_point_22________________________________________ (pres_plasma_thermal_total_profile22)_ 8.15916157793690683e+05 +Total_plasma_pressure_at_point_23________________________________________ (pres_plasma_thermal_total_profile23)_ 8.15659289640973089e+05 +Total_plasma_pressure_at_point_24________________________________________ (pres_plasma_thermal_total_profile24)_ 8.15391057078276528e+05 +Total_plasma_pressure_at_point_25________________________________________ (pres_plasma_thermal_total_profile25)_ 8.15111466879150597e+05 +Total_plasma_pressure_at_point_26________________________________________ (pres_plasma_thermal_total_profile26)_ 8.14820526104773628e+05 +Total_plasma_pressure_at_point_27________________________________________ (pres_plasma_thermal_total_profile27)_ 8.14518242103880621e+05 +Total_plasma_pressure_at_point_28________________________________________ (pres_plasma_thermal_total_profile28)_ 8.14204622512681410e+05 +Total_plasma_pressure_at_point_29________________________________________ (pres_plasma_thermal_total_profile29)_ 8.13879675254780333e+05 +Total_plasma_pressure_at_point_30________________________________________ (pres_plasma_thermal_total_profile30)_ 8.13543408541090321e+05 +Total_plasma_pressure_at_point_31________________________________________ (pres_plasma_thermal_total_profile31)_ 8.13195830869745696e+05 +Total_plasma_pressure_at_point_32________________________________________ (pres_plasma_thermal_total_profile32)_ 8.12836951026010676e+05 +Total_plasma_pressure_at_point_33________________________________________ (pres_plasma_thermal_total_profile33)_ 8.12466778082184494e+05 +Total_plasma_pressure_at_point_34________________________________________ (pres_plasma_thermal_total_profile34)_ 8.12085321397504653e+05 +Total_plasma_pressure_at_point_35________________________________________ (pres_plasma_thermal_total_profile35)_ 8.11692590618046932e+05 +Total_plasma_pressure_at_point_36________________________________________ (pres_plasma_thermal_total_profile36)_ 8.11288595676620025e+05 +Total_plasma_pressure_at_point_37________________________________________ (pres_plasma_thermal_total_profile37)_ 8.10873346792661818e+05 +Total_plasma_pressure_at_point_38________________________________________ (pres_plasma_thermal_total_profile38)_ 8.10446854472125880e+05 +Total_plasma_pressure_at_point_39________________________________________ (pres_plasma_thermal_total_profile39)_ 8.10009129507372389e+05 +Total_plasma_pressure_at_point_40________________________________________ (pres_plasma_thermal_total_profile40)_ 8.09560182977049262e+05 +Total_plasma_pressure_at_point_41________________________________________ (pres_plasma_thermal_total_profile41)_ 8.09100026245974819e+05 +Total_plasma_pressure_at_point_42________________________________________ (pres_plasma_thermal_total_profile42)_ 8.08628670965015655e+05 +Total_plasma_pressure_at_point_43________________________________________ (pres_plasma_thermal_total_profile43)_ 8.08146129070959520e+05 +Total_plasma_pressure_at_point_44________________________________________ (pres_plasma_thermal_total_profile44)_ 8.07652412786389817e+05 +Total_plasma_pressure_at_point_45________________________________________ (pres_plasma_thermal_total_profile45)_ 8.07147534619551850e+05 +Total_plasma_pressure_at_point_46________________________________________ (pres_plasma_thermal_total_profile46)_ 8.06631507364219637e+05 +Total_plasma_pressure_at_point_47________________________________________ (pres_plasma_thermal_total_profile47)_ 8.06104344099557260e+05 +Total_plasma_pressure_at_point_48________________________________________ (pres_plasma_thermal_total_profile48)_ 8.05566058189979289e+05 +Total_plasma_pressure_at_point_49________________________________________ (pres_plasma_thermal_total_profile49)_ 8.05016663285006303e+05 +Total_plasma_pressure_at_point_50________________________________________ (pres_plasma_thermal_total_profile50)_ 8.04456173319118097e+05 +Total_plasma_pressure_at_point_51________________________________________ (pres_plasma_thermal_total_profile51)_ 8.03884602511603269e+05 +Total_plasma_pressure_at_point_52________________________________________ (pres_plasma_thermal_total_profile52)_ 8.03301965366407065e+05 +Total_plasma_pressure_at_point_53________________________________________ (pres_plasma_thermal_total_profile53)_ 8.02708276671973523e+05 +Total_plasma_pressure_at_point_54________________________________________ (pres_plasma_thermal_total_profile54)_ 8.02103551501089009e+05 +Total_plasma_pressure_at_point_55________________________________________ (pres_plasma_thermal_total_profile55)_ 8.01487805210716324e+05 +Total_plasma_pressure_at_point_56________________________________________ (pres_plasma_thermal_total_profile56)_ 8.00861053441832308e+05 +Total_plasma_pressure_at_point_57________________________________________ (pres_plasma_thermal_total_profile57)_ 8.00223312119256007e+05 +Total_plasma_pressure_at_point_58________________________________________ (pres_plasma_thermal_total_profile58)_ 7.99574597451480571e+05 +Total_plasma_pressure_at_point_59________________________________________ (pres_plasma_thermal_total_profile59)_ 7.98914925930496072e+05 +Total_plasma_pressure_at_point_60________________________________________ (pres_plasma_thermal_total_profile60)_ 7.98244314331611386e+05 +Total_plasma_pressure_at_point_61________________________________________ (pres_plasma_thermal_total_profile61)_ 7.97562779713274795e+05 +Total_plasma_pressure_at_point_62________________________________________ (pres_plasma_thermal_total_profile62)_ 7.96870339416888542e+05 +Total_plasma_pressure_at_point_63________________________________________ (pres_plasma_thermal_total_profile63)_ 7.96167011066622566e+05 +Total_plasma_pressure_at_point_64________________________________________ (pres_plasma_thermal_total_profile64)_ 7.95452812569222879e+05 +Total_plasma_pressure_at_point_65________________________________________ (pres_plasma_thermal_total_profile65)_ 7.94727762113819947e+05 +Total_plasma_pressure_at_point_66________________________________________ (pres_plasma_thermal_total_profile66)_ 7.93991878171730321e+05 +Total_plasma_pressure_at_point_67________________________________________ (pres_plasma_thermal_total_profile67)_ 7.93245179496258497e+05 +Total_plasma_pressure_at_point_68________________________________________ (pres_plasma_thermal_total_profile68)_ 7.92487685122492956e+05 +Total_plasma_pressure_at_point_69________________________________________ (pres_plasma_thermal_total_profile69)_ 7.91719414367101155e+05 +Total_plasma_pressure_at_point_70________________________________________ (pres_plasma_thermal_total_profile70)_ 7.90940386828119983e+05 +Total_plasma_pressure_at_point_71________________________________________ (pres_plasma_thermal_total_profile71)_ 7.90150622384745046e+05 +Total_plasma_pressure_at_point_72________________________________________ (pres_plasma_thermal_total_profile72)_ 7.89350141197113320e+05 +Total_plasma_pressure_at_point_73________________________________________ (pres_plasma_thermal_total_profile73)_ 7.88538963706087321e+05 +Total_plasma_pressure_at_point_74________________________________________ (pres_plasma_thermal_total_profile74)_ 7.87717110633031116e+05 +Total_plasma_pressure_at_point_75________________________________________ (pres_plasma_thermal_total_profile75)_ 7.86884602979588322e+05 +Total_plasma_pressure_at_point_76________________________________________ (pres_plasma_thermal_total_profile76)_ 7.86041462027453468e+05 +Total_plasma_pressure_at_point_77________________________________________ (pres_plasma_thermal_total_profile77)_ 7.85187709338141256e+05 +Total_plasma_pressure_at_point_78________________________________________ (pres_plasma_thermal_total_profile78)_ 7.84323366752752336e+05 +Total_plasma_pressure_at_point_79________________________________________ (pres_plasma_thermal_total_profile79)_ 7.83448456391738029e+05 +Total_plasma_pressure_at_point_80________________________________________ (pres_plasma_thermal_total_profile80)_ 7.82563000654658768e+05 +Total_plasma_pressure_at_point_81________________________________________ (pres_plasma_thermal_total_profile81)_ 7.81667022219941951e+05 +Total_plasma_pressure_at_point_82________________________________________ (pres_plasma_thermal_total_profile82)_ 7.80760544044634327e+05 +Total_plasma_pressure_at_point_83________________________________________ (pres_plasma_thermal_total_profile83)_ 7.79843589364155196e+05 +Total_plasma_pressure_at_point_84________________________________________ (pres_plasma_thermal_total_profile84)_ 7.78916181692042155e+05 +Total_plasma_pressure_at_point_85________________________________________ (pres_plasma_thermal_total_profile85)_ 7.77978344819696038e+05 +Total_plasma_pressure_at_point_86________________________________________ (pres_plasma_thermal_total_profile86)_ 7.77030102816122118e+05 +Total_plasma_pressure_at_point_87________________________________________ (pres_plasma_thermal_total_profile87)_ 7.76071480027668877e+05 +Total_plasma_pressure_at_point_88________________________________________ (pres_plasma_thermal_total_profile88)_ 7.75102501077763736e+05 +Total_plasma_pressure_at_point_89________________________________________ (pres_plasma_thermal_total_profile89)_ 7.74123190866643330e+05 +Total_plasma_pressure_at_point_90________________________________________ (pres_plasma_thermal_total_profile90)_ 7.73133574571084464e+05 +Total_plasma_pressure_at_point_91________________________________________ (pres_plasma_thermal_total_profile91)_ 7.72133677644129028e+05 +Total_plasma_pressure_at_point_92________________________________________ (pres_plasma_thermal_total_profile92)_ 7.71123525814806810e+05 +Total_plasma_pressure_at_point_93________________________________________ (pres_plasma_thermal_total_profile93)_ 7.70103145087856101e+05 +Total_plasma_pressure_at_point_94________________________________________ (pres_plasma_thermal_total_profile94)_ 7.69072561743438710e+05 +Total_plasma_pressure_at_point_95________________________________________ (pres_plasma_thermal_total_profile95)_ 7.68031802336855093e+05 +Total_plasma_pressure_at_point_96________________________________________ (pres_plasma_thermal_total_profile96)_ 7.66980893698254367e+05 +Total_plasma_pressure_at_point_97________________________________________ (pres_plasma_thermal_total_profile97)_ 7.65919862932340708e+05 +Total_plasma_pressure_at_point_98________________________________________ (pres_plasma_thermal_total_profile98)_ 7.64848737418078701e+05 +Total_plasma_pressure_at_point_99________________________________________ (pres_plasma_thermal_total_profile99)_ 7.63767544808394276e+05 +Total_plasma_pressure_at_point_100_______________________________________ (pres_plasma_thermal_total_profile100)_ 7.62676313029872486e+05 +Total_plasma_pressure_at_point_101_______________________________________ (pres_plasma_thermal_total_profile101)_ 7.61575070282452274e+05 +Total_plasma_pressure_at_point_102_______________________________________ (pres_plasma_thermal_total_profile102)_ 7.60463845039119245e+05 +Total_plasma_pressure_at_point_103_______________________________________ (pres_plasma_thermal_total_profile103)_ 7.59342666045593563e+05 +Total_plasma_pressure_at_point_104_______________________________________ (pres_plasma_thermal_total_profile104)_ 7.58211562320016441e+05 +Total_plasma_pressure_at_point_105_______________________________________ (pres_plasma_thermal_total_profile105)_ 7.57070563152631978e+05 +Total_plasma_pressure_at_point_106_______________________________________ (pres_plasma_thermal_total_profile106)_ 7.55919698105466668e+05 +Total_plasma_pressure_at_point_107_______________________________________ (pres_plasma_thermal_total_profile107)_ 7.54758997012007632e+05 +Total_plasma_pressure_at_point_108_______________________________________ (pres_plasma_thermal_total_profile108)_ 7.53588489976873156e+05 +Total_plasma_pressure_at_point_109_______________________________________ (pres_plasma_thermal_total_profile109)_ 7.52408207375485450e+05 +Total_plasma_pressure_at_point_110_______________________________________ (pres_plasma_thermal_total_profile110)_ 7.51218179853736539e+05 +Total_plasma_pressure_at_point_111_______________________________________ (pres_plasma_thermal_total_profile111)_ 7.50018438327653101e+05 +Total_plasma_pressure_at_point_112_______________________________________ (pres_plasma_thermal_total_profile112)_ 7.48809013983057346e+05 +Total_plasma_pressure_at_point_113_______________________________________ (pres_plasma_thermal_total_profile113)_ 7.47589938275224529e+05 +Total_plasma_pressure_at_point_114_______________________________________ (pres_plasma_thermal_total_profile114)_ 7.46361242928538355e+05 +Total_plasma_pressure_at_point_115_______________________________________ (pres_plasma_thermal_total_profile115)_ 7.45122959936143365e+05 +Total_plasma_pressure_at_point_116_______________________________________ (pres_plasma_thermal_total_profile116)_ 7.43875121559592895e+05 +Total_plasma_pressure_at_point_117_______________________________________ (pres_plasma_thermal_total_profile117)_ 7.42617760328495409e+05 +Total_plasma_pressure_at_point_118_______________________________________ (pres_plasma_thermal_total_profile118)_ 7.41350909040156752e+05 +Total_plasma_pressure_at_point_119_______________________________________ (pres_plasma_thermal_total_profile119)_ 7.40074600759220193e+05 +Total_plasma_pressure_at_point_120_______________________________________ (pres_plasma_thermal_total_profile120)_ 7.38788868817302748e+05 +Total_plasma_pressure_at_point_121_______________________________________ (pres_plasma_thermal_total_profile121)_ 7.37493746812629164e+05 +Total_plasma_pressure_at_point_122_______________________________________ (pres_plasma_thermal_total_profile122)_ 7.36189268609661842e+05 +Total_plasma_pressure_at_point_123_______________________________________ (pres_plasma_thermal_total_profile123)_ 7.34875468338728650e+05 +Total_plasma_pressure_at_point_124_______________________________________ (pres_plasma_thermal_total_profile124)_ 7.33552380395647255e+05 +Total_plasma_pressure_at_point_125_______________________________________ (pres_plasma_thermal_total_profile125)_ 7.32220039441347122e+05 +Total_plasma_pressure_at_point_126_______________________________________ (pres_plasma_thermal_total_profile126)_ 7.30878480401486973e+05 +Total_plasma_pressure_at_point_127_______________________________________ (pres_plasma_thermal_total_profile127)_ 7.29527738466070150e+05 +Total_plasma_pressure_at_point_128_______________________________________ (pres_plasma_thermal_total_profile128)_ 7.28167849089057418e+05 +Total_plasma_pressure_at_point_129_______________________________________ (pres_plasma_thermal_total_profile129)_ 7.26798847987976624e+05 +Total_plasma_pressure_at_point_130_______________________________________ (pres_plasma_thermal_total_profile130)_ 7.25420771143528167e+05 +Total_plasma_pressure_at_point_131_______________________________________ (pres_plasma_thermal_total_profile131)_ 7.24033654799188022e+05 +Total_plasma_pressure_at_point_132_______________________________________ (pres_plasma_thermal_total_profile132)_ 7.22637535460809944e+05 +Total_plasma_pressure_at_point_133_______________________________________ (pres_plasma_thermal_total_profile133)_ 7.21232449896219769e+05 +Total_plasma_pressure_at_point_134_______________________________________ (pres_plasma_thermal_total_profile134)_ 7.19818435134812491e+05 +Total_plasma_pressure_at_point_135_______________________________________ (pres_plasma_thermal_total_profile135)_ 7.18395528467141907e+05 +Total_plasma_pressure_at_point_136_______________________________________ (pres_plasma_thermal_total_profile136)_ 7.16963767444509780e+05 +Total_plasma_pressure_at_point_137_______________________________________ (pres_plasma_thermal_total_profile137)_ 7.15523189878549660e+05 +Total_plasma_pressure_at_point_138_______________________________________ (pres_plasma_thermal_total_profile138)_ 7.14073833840811742e+05 +Total_plasma_pressure_at_point_139_______________________________________ (pres_plasma_thermal_total_profile139)_ 7.12615737662340049e+05 +Total_plasma_pressure_at_point_140_______________________________________ (pres_plasma_thermal_total_profile140)_ 7.11148939933250076e+05 +Total_plasma_pressure_at_point_141_______________________________________ (pres_plasma_thermal_total_profile141)_ 7.09673479502301314e+05 +Total_plasma_pressure_at_point_142_______________________________________ (pres_plasma_thermal_total_profile142)_ 7.08189395476468839e+05 +Total_plasma_pressure_at_point_143_______________________________________ (pres_plasma_thermal_total_profile143)_ 7.06696727220510831e+05 +Total_plasma_pressure_at_point_144_______________________________________ (pres_plasma_thermal_total_profile144)_ 7.05195514356531668e+05 +Total_plasma_pressure_at_point_145_______________________________________ (pres_plasma_thermal_total_profile145)_ 7.03685796763545601e+05 +Total_plasma_pressure_at_point_146_______________________________________ (pres_plasma_thermal_total_profile146)_ 7.02167614577035070e+05 +Total_plasma_pressure_at_point_147_______________________________________ (pres_plasma_thermal_total_profile147)_ 7.00641008188505657e+05 +Total_plasma_pressure_at_point_148_______________________________________ (pres_plasma_thermal_total_profile148)_ 6.99106018245040090e+05 +Total_plasma_pressure_at_point_149_______________________________________ (pres_plasma_thermal_total_profile149)_ 6.97562685648848070e+05 +Total_plasma_pressure_at_point_150_______________________________________ (pres_plasma_thermal_total_profile150)_ 6.96011051556813996e+05 +Total_plasma_pressure_at_point_151_______________________________________ (pres_plasma_thermal_total_profile151)_ 6.94451157380040153e+05 +Total_plasma_pressure_at_point_152_______________________________________ (pres_plasma_thermal_total_profile152)_ 6.92883044783388963e+05 +Total_plasma_pressure_at_point_153_______________________________________ (pres_plasma_thermal_total_profile153)_ 6.91306755685022450e+05 +Total_plasma_pressure_at_point_154_______________________________________ (pres_plasma_thermal_total_profile154)_ 6.89722332255936228e+05 +Total_plasma_pressure_at_point_155_______________________________________ (pres_plasma_thermal_total_profile155)_ 6.88129816919493955e+05 +Total_plasma_pressure_at_point_156_______________________________________ (pres_plasma_thermal_total_profile156)_ 6.86529252350957133e+05 +Total_plasma_pressure_at_point_157_______________________________________ (pres_plasma_thermal_total_profile157)_ 6.84920681477012113e+05 +Total_plasma_pressure_at_point_158_______________________________________ (pres_plasma_thermal_total_profile158)_ 6.83304147475294769e+05 +Total_plasma_pressure_at_point_159_______________________________________ (pres_plasma_thermal_total_profile159)_ 6.81679693773912732e+05 +Total_plasma_pressure_at_point_160_______________________________________ (pres_plasma_thermal_total_profile160)_ 6.80047364050963428e+05 +Total_plasma_pressure_at_point_161_______________________________________ (pres_plasma_thermal_total_profile161)_ 6.78407202234051423e+05 +Total_plasma_pressure_at_point_162_______________________________________ (pres_plasma_thermal_total_profile162)_ 6.76759252499801107e+05 +Total_plasma_pressure_at_point_163_______________________________________ (pres_plasma_thermal_total_profile163)_ 6.75103559273367515e+05 +Total_plasma_pressure_at_point_164_______________________________________ (pres_plasma_thermal_total_profile164)_ 6.73440167227945058e+05 +Total_plasma_pressure_at_point_165_______________________________________ (pres_plasma_thermal_total_profile165)_ 6.71769121284271358e+05 +Total_plasma_pressure_at_point_166_______________________________________ (pres_plasma_thermal_total_profile166)_ 6.70090466610131552e+05 +Total_plasma_pressure_at_point_167_______________________________________ (pres_plasma_thermal_total_profile167)_ 6.68404248619857477e+05 +Total_plasma_pressure_at_point_168_______________________________________ (pres_plasma_thermal_total_profile168)_ 6.66710512973824283e+05 +Total_plasma_pressure_at_point_169_______________________________________ (pres_plasma_thermal_total_profile169)_ 6.65009305577946827e+05 +Total_plasma_pressure_at_point_170_______________________________________ (pres_plasma_thermal_total_profile170)_ 6.63300672583169304e+05 +Total_plasma_pressure_at_point_171_______________________________________ (pres_plasma_thermal_total_profile171)_ 6.61584660384956864e+05 +Total_plasma_pressure_at_point_172_______________________________________ (pres_plasma_thermal_total_profile172)_ 6.59861315622781171e+05 +Total_plasma_pressure_at_point_173_______________________________________ (pres_plasma_thermal_total_profile173)_ 6.58130685179604799e+05 +Total_plasma_pressure_at_point_174_______________________________________ (pres_plasma_thermal_total_profile174)_ 6.56392816181363421e+05 +Total_plasma_pressure_at_point_175_______________________________________ (pres_plasma_thermal_total_profile175)_ 6.54647755996444379e+05 +Total_plasma_pressure_at_point_176_______________________________________ (pres_plasma_thermal_total_profile176)_ 6.52895552235163283e+05 +Total_plasma_pressure_at_point_177_______________________________________ (pres_plasma_thermal_total_profile177)_ 6.51136252749238978e+05 +Total_plasma_pressure_at_point_178_______________________________________ (pres_plasma_thermal_total_profile178)_ 6.49369905631263624e+05 +Total_plasma_pressure_at_point_179_______________________________________ (pres_plasma_thermal_total_profile179)_ 6.47596559214173816e+05 +Total_plasma_pressure_at_point_180_______________________________________ (pres_plasma_thermal_total_profile180)_ 6.45816262070715660e+05 +Total_plasma_pressure_at_point_181_______________________________________ (pres_plasma_thermal_total_profile181)_ 6.44029063012910541e+05 +Total_plasma_pressure_at_point_182_______________________________________ (pres_plasma_thermal_total_profile182)_ 6.42235011091516004e+05 +Total_plasma_pressure_at_point_183_______________________________________ (pres_plasma_thermal_total_profile183)_ 6.40434155595485470e+05 +Total_plasma_pressure_at_point_184_______________________________________ (pres_plasma_thermal_total_profile184)_ 6.38626546051426674e+05 +Total_plasma_pressure_at_point_185_______________________________________ (pres_plasma_thermal_total_profile185)_ 6.36812232223055325e+05 +Total_plasma_pressure_at_point_186_______________________________________ (pres_plasma_thermal_total_profile186)_ 6.34991264110648539e+05 +Total_plasma_pressure_at_point_187_______________________________________ (pres_plasma_thermal_total_profile187)_ 6.33163691950494656e+05 +Total_plasma_pressure_at_point_188_______________________________________ (pres_plasma_thermal_total_profile188)_ 6.31329566214342369e+05 +Total_plasma_pressure_at_point_189_______________________________________ (pres_plasma_thermal_total_profile189)_ 6.29488937608846347e+05 +Total_plasma_pressure_at_point_190_______________________________________ (pres_plasma_thermal_total_profile190)_ 6.27641857075010543e+05 +Total_plasma_pressure_at_point_191_______________________________________ (pres_plasma_thermal_total_profile191)_ 6.25788375787631143e+05 +Total_plasma_pressure_at_point_192_______________________________________ (pres_plasma_thermal_total_profile192)_ 6.23928545154734864e+05 +Total_plasma_pressure_at_point_193_______________________________________ (pres_plasma_thermal_total_profile193)_ 6.22062416817017598e+05 +Total_plasma_pressure_at_point_194_______________________________________ (pres_plasma_thermal_total_profile194)_ 6.20190042647279450e+05 +Total_plasma_pressure_at_point_195_______________________________________ (pres_plasma_thermal_total_profile195)_ 6.18311474749858491e+05 +Total_plasma_pressure_at_point_196_______________________________________ (pres_plasma_thermal_total_profile196)_ 6.16426765460062074e+05 +Total_plasma_pressure_at_point_197_______________________________________ (pres_plasma_thermal_total_profile197)_ 6.14535967343596742e+05 +Total_plasma_pressure_at_point_198_______________________________________ (pres_plasma_thermal_total_profile198)_ 6.12639133195996052e+05 +Total_plasma_pressure_at_point_199_______________________________________ (pres_plasma_thermal_total_profile199)_ 6.10736316042046528e+05 +Total_plasma_pressure_at_point_200_______________________________________ (pres_plasma_thermal_total_profile200)_ 6.08827569135211408e+05 +Total_plasma_pressure_at_point_201_______________________________________ (pres_plasma_thermal_total_profile201)_ 6.06912945957053220e+05 +Total_plasma_pressure_at_point_202_______________________________________ (pres_plasma_thermal_total_profile202)_ 6.04992500216654618e+05 +Total_plasma_pressure_at_point_203_______________________________________ (pres_plasma_thermal_total_profile203)_ 6.03066285850037122e+05 +Total_plasma_pressure_at_point_204_______________________________________ (pres_plasma_thermal_total_profile204)_ 6.01134357019578805e+05 +Total_plasma_pressure_at_point_205_______________________________________ (pres_plasma_thermal_total_profile205)_ 5.99196768113429425e+05 +Total_plasma_pressure_at_point_206_______________________________________ (pres_plasma_thermal_total_profile206)_ 5.97253573744925205e+05 +Total_plasma_pressure_at_point_207_______________________________________ (pres_plasma_thermal_total_profile207)_ 5.95304828752001049e+05 +Total_plasma_pressure_at_point_208_______________________________________ (pres_plasma_thermal_total_profile208)_ 5.93350588196602417e+05 +Total_plasma_pressure_at_point_209_______________________________________ (pres_plasma_thermal_total_profile209)_ 5.91390907364094746e+05 +Total_plasma_pressure_at_point_210_______________________________________ (pres_plasma_thermal_total_profile210)_ 5.89425841762672295e+05 +Total_plasma_pressure_at_point_211_______________________________________ (pres_plasma_thermal_total_profile211)_ 5.87455447122765705e+05 +Total_plasma_pressure_at_point_212_______________________________________ (pres_plasma_thermal_total_profile212)_ 5.85479779396447004e+05 +Total_plasma_pressure_at_point_213_______________________________________ (pres_plasma_thermal_total_profile213)_ 5.83498894756835885e+05 +Total_plasma_pressure_at_point_214_______________________________________ (pres_plasma_thermal_total_profile214)_ 5.81512849597502500e+05 +Total_plasma_pressure_at_point_215_______________________________________ (pres_plasma_thermal_total_profile215)_ 5.79521700531870825e+05 +Total_plasma_pressure_at_point_216_______________________________________ (pres_plasma_thermal_total_profile216)_ 5.77525504392620875e+05 +Total_plasma_pressure_at_point_217_______________________________________ (pres_plasma_thermal_total_profile217)_ 5.75524318231088342e+05 +Total_plasma_pressure_at_point_218_______________________________________ (pres_plasma_thermal_total_profile218)_ 5.73518199316666112e+05 +Total_plasma_pressure_at_point_219_______________________________________ (pres_plasma_thermal_total_profile219)_ 5.71507205136201927e+05 +Total_plasma_pressure_at_point_220_______________________________________ (pres_plasma_thermal_total_profile220)_ 5.69491393393399077e+05 +Total_plasma_pressure_at_point_221_______________________________________ (pres_plasma_thermal_total_profile221)_ 5.67470822008212795e+05 +Total_plasma_pressure_at_point_222_______________________________________ (pres_plasma_thermal_total_profile222)_ 5.65445549116248032e+05 +Total_plasma_pressure_at_point_223_______________________________________ (pres_plasma_thermal_total_profile223)_ 5.63415633068157127e+05 +Total_plasma_pressure_at_point_224_______________________________________ (pres_plasma_thermal_total_profile224)_ 5.61381132429036079e+05 +Total_plasma_pressure_at_point_225_______________________________________ (pres_plasma_thermal_total_profile225)_ 5.59342105977820000e+05 +Total_plasma_pressure_at_point_226_______________________________________ (pres_plasma_thermal_total_profile226)_ 5.57298612706680899e+05 +Total_plasma_pressure_at_point_227_______________________________________ (pres_plasma_thermal_total_profile227)_ 5.55250711820421740e+05 +Total_plasma_pressure_at_point_228_______________________________________ (pres_plasma_thermal_total_profile228)_ 5.53198462735873880e+05 +Total_plasma_pressure_at_point_229_______________________________________ (pres_plasma_thermal_total_profile229)_ 5.51141925081292866e+05 +Total_plasma_pressure_at_point_230_______________________________________ (pres_plasma_thermal_total_profile230)_ 5.49081158695753664e+05 +Total_plasma_pressure_at_point_231_______________________________________ (pres_plasma_thermal_total_profile231)_ 5.47016223628547508e+05 +Total_plasma_pressure_at_point_232_______________________________________ (pres_plasma_thermal_total_profile232)_ 5.44947180138579570e+05 +Total_plasma_pressure_at_point_233_______________________________________ (pres_plasma_thermal_total_profile233)_ 5.42874088693764759e+05 +Total_plasma_pressure_at_point_234_______________________________________ (pres_plasma_thermal_total_profile234)_ 5.40797009970426327e+05 +Total_plasma_pressure_at_point_235_______________________________________ (pres_plasma_thermal_total_profile235)_ 5.38716004852694226e+05 +Total_plasma_pressure_at_point_236_______________________________________ (pres_plasma_thermal_total_profile236)_ 5.36631134431903833e+05 +Total_plasma_pressure_at_point_237_______________________________________ (pres_plasma_thermal_total_profile237)_ 5.34542460005997214e+05 +Total_plasma_pressure_at_point_238_______________________________________ (pres_plasma_thermal_total_profile238)_ 5.32450043078923831e+05 +Total_plasma_pressure_at_point_239_______________________________________ (pres_plasma_thermal_total_profile239)_ 5.30353945360041922e+05 +Total_plasma_pressure_at_point_240_______________________________________ (pres_plasma_thermal_total_profile240)_ 5.28254228763523861e+05 +Total_plasma_pressure_at_point_241_______________________________________ (pres_plasma_thermal_total_profile241)_ 5.26150955407759873e+05 +Total_plasma_pressure_at_point_242_______________________________________ (pres_plasma_thermal_total_profile242)_ 5.24044187614765367e+05 +Total_plasma_pressure_at_point_243_______________________________________ (pres_plasma_thermal_total_profile243)_ 5.21933987909589196e+05 +Total_plasma_pressure_at_point_244_______________________________________ (pres_plasma_thermal_total_profile244)_ 5.19820419019724242e+05 +Total_plasma_pressure_at_point_245_______________________________________ (pres_plasma_thermal_total_profile245)_ 5.17703543874517665e+05 +Total_plasma_pressure_at_point_246_______________________________________ (pres_plasma_thermal_total_profile246)_ 5.15583425604588585e+05 +Total_plasma_pressure_at_point_247_______________________________________ (pres_plasma_thermal_total_profile247)_ 5.13460127541241702e+05 +Total_plasma_pressure_at_point_248_______________________________________ (pres_plasma_thermal_total_profile248)_ 5.11333713215887896e+05 +Total_plasma_pressure_at_point_249_______________________________________ (pres_plasma_thermal_total_profile249)_ 5.09204246359465062e+05 +Total_plasma_pressure_at_point_250_______________________________________ (pres_plasma_thermal_total_profile250)_ 5.07071790901864937e+05 +Total_plasma_pressure_at_point_251_______________________________________ (pres_plasma_thermal_total_profile251)_ 5.04936410971356789e+05 +Total_plasma_pressure_at_point_252_______________________________________ (pres_plasma_thermal_total_profile252)_ 5.02798170894022915e+05 +Total_plasma_pressure_at_point_253_______________________________________ (pres_plasma_thermal_total_profile253)_ 5.00657135193187860e+05 +Total_plasma_pressure_at_point_254_______________________________________ (pres_plasma_thermal_total_profile254)_ 4.98513368588860263e+05 +Total_plasma_pressure_at_point_255_______________________________________ (pres_plasma_thermal_total_profile255)_ 4.96366935997171619e+05 +Total_plasma_pressure_at_point_256_______________________________________ (pres_plasma_thermal_total_profile256)_ 4.94217902529823477e+05 +Total_plasma_pressure_at_point_257_______________________________________ (pres_plasma_thermal_total_profile257)_ 4.92066333493535523e+05 +Total_plasma_pressure_at_point_258_______________________________________ (pres_plasma_thermal_total_profile258)_ 4.89912294389501039e+05 +Total_plasma_pressure_at_point_259_______________________________________ (pres_plasma_thermal_total_profile259)_ 4.87755850912844646e+05 +Total_plasma_pressure_at_point_260_______________________________________ (pres_plasma_thermal_total_profile260)_ 4.85597068952086731e+05 +Total_plasma_pressure_at_point_261_______________________________________ (pres_plasma_thermal_total_profile261)_ 4.83436014588610618e+05 +Total_plasma_pressure_at_point_262_______________________________________ (pres_plasma_thermal_total_profile262)_ 4.81272754096138757e+05 +Total_plasma_pressure_at_point_263_______________________________________ (pres_plasma_thermal_total_profile263)_ 4.79107353940210945e+05 +Total_plasma_pressure_at_point_264_______________________________________ (pres_plasma_thermal_total_profile264)_ 4.76939880777670420e+05 +Total_plasma_pressure_at_point_265_______________________________________ (pres_plasma_thermal_total_profile265)_ 4.74770401456155581e+05 +Total_plasma_pressure_at_point_266_______________________________________ (pres_plasma_thermal_total_profile266)_ 4.72598983013598248e+05 +Total_plasma_pressure_at_point_267_______________________________________ (pres_plasma_thermal_total_profile267)_ 4.70425692677728366e+05 +Total_plasma_pressure_at_point_268_______________________________________ (pres_plasma_thermal_total_profile268)_ 4.68250597865587450e+05 +Total_plasma_pressure_at_point_269_______________________________________ (pres_plasma_thermal_total_profile269)_ 4.66073766183045576e+05 +Total_plasma_pressure_at_point_270_______________________________________ (pres_plasma_thermal_total_profile270)_ 4.63895265424331650e+05 +Total_plasma_pressure_at_point_271_______________________________________ (pres_plasma_thermal_total_profile271)_ 4.61715163571564830e+05 +Total_plasma_pressure_at_point_272_______________________________________ (pres_plasma_thermal_total_profile272)_ 4.59533528794301732e+05 +Total_plasma_pressure_at_point_273_______________________________________ (pres_plasma_thermal_total_profile273)_ 4.57350429449086019e+05 +Total_plasma_pressure_at_point_274_______________________________________ (pres_plasma_thermal_total_profile274)_ 4.55165934079011669e+05 +Total_plasma_pressure_at_point_275_______________________________________ (pres_plasma_thermal_total_profile275)_ 4.52980111413291655e+05 +Total_plasma_pressure_at_point_276_______________________________________ (pres_plasma_thermal_total_profile276)_ 4.50793030366840598e+05 +Total_plasma_pressure_at_point_277_______________________________________ (pres_plasma_thermal_total_profile277)_ 4.48604760039865039e+05 +Total_plasma_pressure_at_point_278_______________________________________ (pres_plasma_thermal_total_profile278)_ 4.46415369717464666e+05 +Total_plasma_pressure_at_point_279_______________________________________ (pres_plasma_thermal_total_profile279)_ 4.44224928869244759e+05 +Total_plasma_pressure_at_point_280_______________________________________ (pres_plasma_thermal_total_profile280)_ 4.42033507148942328e+05 +Total_plasma_pressure_at_point_281_______________________________________ (pres_plasma_thermal_total_profile281)_ 4.39841174394060043e+05 +Total_plasma_pressure_at_point_282_______________________________________ (pres_plasma_thermal_total_profile282)_ 4.37648000625516463e+05 +Total_plasma_pressure_at_point_283_______________________________________ (pres_plasma_thermal_total_profile283)_ 4.35454056047307036e+05 +Total_plasma_pressure_at_point_284_______________________________________ (pres_plasma_thermal_total_profile284)_ 4.33259411046180408e+05 +Total_plasma_pressure_at_point_285_______________________________________ (pres_plasma_thermal_total_profile285)_ 4.31064136191326543e+05 +Total_plasma_pressure_at_point_286_______________________________________ (pres_plasma_thermal_total_profile286)_ 4.28868302234081260e+05 +Total_plasma_pressure_at_point_287_______________________________________ (pres_plasma_thermal_total_profile287)_ 4.26671980107645039e+05 +Total_plasma_pressure_at_point_288_______________________________________ (pres_plasma_thermal_total_profile288)_ 4.24475240926817118e+05 +Total_plasma_pressure_at_point_289_______________________________________ (pres_plasma_thermal_total_profile289)_ 4.22278155987747712e+05 +Total_plasma_pressure_at_point_290_______________________________________ (pres_plasma_thermal_total_profile290)_ 4.20080796767704363e+05 +Total_plasma_pressure_at_point_291_______________________________________ (pres_plasma_thermal_total_profile291)_ 4.17883234924858785e+05 +Total_plasma_pressure_at_point_292_______________________________________ (pres_plasma_thermal_total_profile292)_ 4.15685542298089247e+05 +Total_plasma_pressure_at_point_293_______________________________________ (pres_plasma_thermal_total_profile293)_ 4.13487790906804148e+05 +Total_plasma_pressure_at_point_294_______________________________________ (pres_plasma_thermal_total_profile294)_ 4.11290052950783633e+05 +Total_plasma_pressure_at_point_295_______________________________________ (pres_plasma_thermal_total_profile295)_ 4.09092400810042629e+05 +Total_plasma_pressure_at_point_296_______________________________________ (pres_plasma_thermal_total_profile296)_ 4.06894907044713851e+05 +Total_plasma_pressure_at_point_297_______________________________________ (pres_plasma_thermal_total_profile297)_ 4.04697644394954492e+05 +Total_plasma_pressure_at_point_298_______________________________________ (pres_plasma_thermal_total_profile298)_ 4.02500685780873289e+05 +Total_plasma_pressure_at_point_299_______________________________________ (pres_plasma_thermal_total_profile299)_ 4.00304104302483727e+05 +Total_plasma_pressure_at_point_300_______________________________________ (pres_plasma_thermal_total_profile300)_ 3.98107973239679122e+05 +Total_plasma_pressure_at_point_301_______________________________________ (pres_plasma_thermal_total_profile301)_ 3.95912366052236233e+05 +Total_plasma_pressure_at_point_302_______________________________________ (pres_plasma_thermal_total_profile302)_ 3.93717356379841454e+05 +Total_plasma_pressure_at_point_303_______________________________________ (pres_plasma_thermal_total_profile303)_ 3.91523018042147160e+05 +Total_plasma_pressure_at_point_304_______________________________________ (pres_plasma_thermal_total_profile304)_ 3.89329425038855290e+05 +Total_plasma_pressure_at_point_305_______________________________________ (pres_plasma_thermal_total_profile305)_ 3.87136651549830800e+05 +Total_plasma_pressure_at_point_306_______________________________________ (pres_plasma_thermal_total_profile306)_ 3.84944771935244557e+05 +Total_plasma_pressure_at_point_307_______________________________________ (pres_plasma_thermal_total_profile307)_ 3.82753860735748778e+05 +Total_plasma_pressure_at_point_308_______________________________________ (pres_plasma_thermal_total_profile308)_ 3.80563992672684311e+05 +Total_plasma_pressure_at_point_309_______________________________________ (pres_plasma_thermal_total_profile309)_ 3.78375242648323765e+05 +Total_plasma_pressure_at_point_310_______________________________________ (pres_plasma_thermal_total_profile310)_ 3.76187685746147064e+05 +Total_plasma_pressure_at_point_311_______________________________________ (pres_plasma_thermal_total_profile311)_ 3.74001397231156414e+05 +Total_plasma_pressure_at_point_312_______________________________________ (pres_plasma_thermal_total_profile312)_ 3.71816452550225891e+05 +Total_plasma_pressure_at_point_313_______________________________________ (pres_plasma_thermal_total_profile313)_ 3.69632927332494757e+05 +Total_plasma_pressure_at_point_314_______________________________________ (pres_plasma_thermal_total_profile314)_ 3.67450897389796679e+05 +Total_plasma_pressure_at_point_315_______________________________________ (pres_plasma_thermal_total_profile315)_ 3.65270438717135228e+05 +Total_plasma_pressure_at_point_316_______________________________________ (pres_plasma_thermal_total_profile316)_ 3.63091627493200591e+05 +Total_plasma_pressure_at_point_317_______________________________________ (pres_plasma_thermal_total_profile317)_ 3.60914540080933773e+05 +Total_plasma_pressure_at_point_318_______________________________________ (pres_plasma_thermal_total_profile318)_ 3.58739253028135980e+05 +Total_plasma_pressure_at_point_319_______________________________________ (pres_plasma_thermal_total_profile319)_ 3.56565843068129499e+05 +Total_plasma_pressure_at_point_320_______________________________________ (pres_plasma_thermal_total_profile320)_ 3.54394387120466679e+05 +Total_plasma_pressure_at_point_321_______________________________________ (pres_plasma_thermal_total_profile321)_ 3.52224962291694013e+05 +Total_plasma_pressure_at_point_322_______________________________________ (pres_plasma_thermal_total_profile322)_ 3.50057645876169670e+05 +Total_plasma_pressure_at_point_323_______________________________________ (pres_plasma_thermal_total_profile323)_ 3.47892515356938762e+05 +Total_plasma_pressure_at_point_324_______________________________________ (pres_plasma_thermal_total_profile324)_ 3.45729648406666005e+05 +Total_plasma_pressure_at_point_325_______________________________________ (pres_plasma_thermal_total_profile325)_ 3.43569122888632410e+05 +Total_plasma_pressure_at_point_326_______________________________________ (pres_plasma_thermal_total_profile326)_ 3.41411016857791983e+05 +Total_plasma_pressure_at_point_327_______________________________________ (pres_plasma_thermal_total_profile327)_ 3.39255408561898279e+05 +Total_plasma_pressure_at_point_328_______________________________________ (pres_plasma_thermal_total_profile328)_ 3.37102376442696142e+05 +Total_plasma_pressure_at_point_329_______________________________________ (pres_plasma_thermal_total_profile329)_ 3.34951999137187551e+05 +Total_plasma_pressure_at_point_330_______________________________________ (pres_plasma_thermal_total_profile330)_ 3.32804355478968937e+05 +Total_plasma_pressure_at_point_331_______________________________________ (pres_plasma_thermal_total_profile331)_ 3.30659524499647436e+05 +Total_plasma_pressure_at_point_332_______________________________________ (pres_plasma_thermal_total_profile332)_ 3.28517585430335312e+05 +Total_plasma_pressure_at_point_333_______________________________________ (pres_plasma_thermal_total_profile333)_ 3.26378617703228956e+05 +Total_plasma_pressure_at_point_334_______________________________________ (pres_plasma_thermal_total_profile334)_ 3.24242700953273103e+05 +Total_plasma_pressure_at_point_335_______________________________________ (pres_plasma_thermal_total_profile335)_ 3.22109915019914391e+05 +Total_plasma_pressure_at_point_336_______________________________________ (pres_plasma_thermal_total_profile336)_ 3.19980339948949520e+05 +Total_plasma_pressure_at_point_337_______________________________________ (pres_plasma_thermal_total_profile337)_ 3.17854055994469149e+05 +Total_plasma_pressure_at_point_338_______________________________________ (pres_plasma_thermal_total_profile338)_ 3.15731143620902731e+05 +Total_plasma_pressure_at_point_339_______________________________________ (pres_plasma_thermal_total_profile339)_ 3.13611683505168825e+05 +Total_plasma_pressure_at_point_340_______________________________________ (pres_plasma_thermal_total_profile340)_ 3.11495756538933725e+05 +Total_plasma_pressure_at_point_341_______________________________________ (pres_plasma_thermal_total_profile341)_ 3.09383443830983597e+05 +Total_plasma_pressure_at_point_342_______________________________________ (pres_plasma_thermal_total_profile342)_ 3.07274826709715766e+05 +Total_plasma_pressure_at_point_343_______________________________________ (pres_plasma_thermal_total_profile343)_ 3.05169986725751252e+05 +Total_plasma_pressure_at_point_344_______________________________________ (pres_plasma_thermal_total_profile344)_ 3.03069005654677108e+05 +Total_plasma_pressure_at_point_345_______________________________________ (pres_plasma_thermal_total_profile345)_ 3.00971965499919781e+05 +Total_plasma_pressure_at_point_346_______________________________________ (pres_plasma_thermal_total_profile346)_ 2.98878948495759745e+05 +Total_plasma_pressure_at_point_347_______________________________________ (pres_plasma_thermal_total_profile347)_ 2.96790037110489095e+05 +Total_plasma_pressure_at_point_348_______________________________________ (pres_plasma_thermal_total_profile348)_ 2.94705314049720182e+05 +Total_plasma_pressure_at_point_349_______________________________________ (pres_plasma_thermal_total_profile349)_ 2.92624862259851070e+05 +Total_plasma_pressure_at_point_350_______________________________________ (pres_plasma_thermal_total_profile350)_ 2.90548764931695885e+05 +Total_plasma_pressure_at_point_351_______________________________________ (pres_plasma_thermal_total_profile351)_ 2.88477105504283099e+05 +Total_plasma_pressure_at_point_352_______________________________________ (pres_plasma_thermal_total_profile352)_ 2.86409967668836121e+05 +Total_plasma_pressure_at_point_353_______________________________________ (pres_plasma_thermal_total_profile353)_ 2.84347435372934327e+05 +Total_plasma_pressure_at_point_354_______________________________________ (pres_plasma_thermal_total_profile354)_ 2.82289592824872583e+05 +Total_plasma_pressure_at_point_355_______________________________________ (pres_plasma_thermal_total_profile355)_ 2.80236524498220126e+05 +Total_plasma_pressure_at_point_356_______________________________________ (pres_plasma_thermal_total_profile356)_ 2.78188315136591671e+05 +Total_plasma_pressure_at_point_357_______________________________________ (pres_plasma_thermal_total_profile357)_ 2.76145049758638721e+05 +Total_plasma_pressure_at_point_358_______________________________________ (pres_plasma_thermal_total_profile358)_ 2.74106813663271489e+05 +Total_plasma_pressure_at_point_359_______________________________________ (pres_plasma_thermal_total_profile359)_ 2.72073692435121164e+05 +Total_plasma_pressure_at_point_360_______________________________________ (pres_plasma_thermal_total_profile360)_ 2.70045771950254391e+05 +Total_plasma_pressure_at_point_361_______________________________________ (pres_plasma_thermal_total_profile361)_ 2.68023138382149627e+05 +Total_plasma_pressure_at_point_362_______________________________________ (pres_plasma_thermal_total_profile362)_ 2.66005878207949921e+05 +Total_plasma_pressure_at_point_363_______________________________________ (pres_plasma_thermal_total_profile363)_ 2.63994078215002490e+05 +Total_plasma_pressure_at_point_364_______________________________________ (pres_plasma_thermal_total_profile364)_ 2.61987825507699978e+05 +Total_plasma_pressure_at_point_365_______________________________________ (pres_plasma_thermal_total_profile365)_ 2.59987207514636859e+05 +Total_plasma_pressure_at_point_366_______________________________________ (pres_plasma_thermal_total_profile366)_ 2.57992311996096309e+05 +Total_plasma_pressure_at_point_367_______________________________________ (pres_plasma_thermal_total_profile367)_ 2.56003227051882423e+05 +Total_plasma_pressure_at_point_368_______________________________________ (pres_plasma_thermal_total_profile368)_ 2.54020041129515681e+05 +Total_plasma_pressure_at_point_369_______________________________________ (pres_plasma_thermal_total_profile369)_ 2.52042843032807810e+05 +Total_plasma_pressure_at_point_370_______________________________________ (pres_plasma_thermal_total_profile370)_ 2.50071721930835571e+05 +Total_plasma_pressure_at_point_371_______________________________________ (pres_plasma_thermal_total_profile371)_ 2.48106767367332766e+05 +Total_plasma_pressure_at_point_372_______________________________________ (pres_plasma_thermal_total_profile372)_ 2.46148069270520966e+05 +Total_plasma_pressure_at_point_373_______________________________________ (pres_plasma_thermal_total_profile373)_ 2.44195717963400763e+05 +Total_plasma_pressure_at_point_374_______________________________________ (pres_plasma_thermal_total_profile374)_ 2.42249804174528224e+05 +Total_plasma_pressure_at_point_375_______________________________________ (pres_plasma_thermal_total_profile375)_ 2.40310419049298274e+05 +Total_plasma_pressure_at_point_376_______________________________________ (pres_plasma_thermal_total_profile376)_ 2.38377654161764600e+05 +Total_plasma_pressure_at_point_377_______________________________________ (pres_plasma_thermal_total_profile377)_ 2.36451601527020568e+05 +Total_plasma_pressure_at_point_378_______________________________________ (pres_plasma_thermal_total_profile378)_ 2.34532353614173218e+05 +Total_plasma_pressure_at_point_379_______________________________________ (pres_plasma_thermal_total_profile379)_ 2.32620003359939408e+05 +Total_plasma_pressure_at_point_380_______________________________________ (pres_plasma_thermal_total_profile380)_ 2.30714644182898221e+05 +Total_plasma_pressure_at_point_381_______________________________________ (pres_plasma_thermal_total_profile381)_ 2.28816369998436305e+05 +Total_plasma_pressure_at_point_382_______________________________________ (pres_plasma_thermal_total_profile382)_ 2.26925275234419649e+05 +Total_plasma_pressure_at_point_383_______________________________________ (pres_plasma_thermal_total_profile383)_ 2.25041454847636924e+05 +Total_plasma_pressure_at_point_384_______________________________________ (pres_plasma_thermal_total_profile384)_ 2.23165004341052612e+05 +Total_plasma_pressure_at_point_385_______________________________________ (pres_plasma_thermal_total_profile385)_ 2.21296019781918469e+05 +Total_plasma_pressure_at_point_386_______________________________________ (pres_plasma_thermal_total_profile386)_ 2.19434597820788797e+05 +Total_plasma_pressure_at_point_387_______________________________________ (pres_plasma_thermal_total_profile387)_ 2.17580835711494408e+05 +Total_plasma_pressure_at_point_388_______________________________________ (pres_plasma_thermal_total_profile388)_ 2.15734831332127971e+05 +Total_plasma_pressure_at_point_389_______________________________________ (pres_plasma_thermal_total_profile389)_ 2.13896683207101072e+05 +Total_plasma_pressure_at_point_390_______________________________________ (pres_plasma_thermal_total_profile390)_ 2.12066490530335403e+05 +Total_plasma_pressure_at_point_391_______________________________________ (pres_plasma_thermal_total_profile391)_ 2.10244353189657675e+05 +Total_plasma_pressure_at_point_392_______________________________________ (pres_plasma_thermal_total_profile392)_ 2.08430371792467427e+05 +Total_plasma_pressure_at_point_393_______________________________________ (pres_plasma_thermal_total_profile393)_ 2.06624647692759114e+05 +Total_plasma_pressure_at_point_394_______________________________________ (pres_plasma_thermal_total_profile394)_ 2.04827283019579598e+05 +Total_plasma_pressure_at_point_395_______________________________________ (pres_plasma_thermal_total_profile395)_ 2.03038380707012344e+05 +Total_plasma_pressure_at_point_396_______________________________________ (pres_plasma_thermal_total_profile396)_ 2.01258044525782811e+05 +Total_plasma_pressure_at_point_397_______________________________________ (pres_plasma_thermal_total_profile397)_ 1.99486379116592201e+05 +Total_plasma_pressure_at_point_398_______________________________________ (pres_plasma_thermal_total_profile398)_ 1.97723490025287756e+05 +Total_plasma_pressure_at_point_399_______________________________________ (pres_plasma_thermal_total_profile399)_ 1.95969483739993913e+05 +Total_plasma_pressure_at_point_400_______________________________________ (pres_plasma_thermal_total_profile400)_ 1.94224467730331293e+05 +Total_plasma_pressure_at_point_401_______________________________________ (pres_plasma_thermal_total_profile401)_ 1.92488550488867913e+05 +Total_plasma_pressure_at_point_402_______________________________________ (pres_plasma_thermal_total_profile402)_ 1.90761841574951191e+05 +Total_plasma_pressure_at_point_403_______________________________________ (pres_plasma_thermal_total_profile403)_ 1.89044451661089755e+05 +Total_plasma_pressure_at_point_404_______________________________________ (pres_plasma_thermal_total_profile404)_ 1.87336492582059902e+05 +Total_plasma_pressure_at_point_405_______________________________________ (pres_plasma_thermal_total_profile405)_ 1.85638077386934950e+05 +Total_plasma_pressure_at_point_406_______________________________________ (pres_plasma_thermal_total_profile406)_ 1.83949320394244685e+05 +Total_plasma_pressure_at_point_407_______________________________________ (pres_plasma_thermal_total_profile407)_ 1.82270337250497774e+05 +Total_plasma_pressure_at_point_408_______________________________________ (pres_plasma_thermal_total_profile408)_ 1.80601244992313499e+05 +Total_plasma_pressure_at_point_409_______________________________________ (pres_plasma_thermal_total_profile409)_ 1.78942162112440739e+05 +Total_plasma_pressure_at_point_410_______________________________________ (pres_plasma_thermal_total_profile410)_ 1.77293208629955741e+05 +Total_plasma_pressure_at_point_411_______________________________________ (pres_plasma_thermal_total_profile411)_ 1.75654506164970546e+05 +Total_plasma_pressure_at_point_412_______________________________________ (pres_plasma_thermal_total_profile412)_ 1.74026178018203704e+05 +Total_plasma_pressure_at_point_413_______________________________________ (pres_plasma_thermal_total_profile413)_ 1.72408349255808716e+05 +Total_plasma_pressure_at_point_414_______________________________________ (pres_plasma_thermal_total_profile414)_ 1.70801146799886803e+05 +Total_plasma_pressure_at_point_415_______________________________________ (pres_plasma_thermal_total_profile415)_ 1.69204699525159347e+05 +Total_plasma_pressure_at_point_416_______________________________________ (pres_plasma_thermal_total_profile416)_ 1.67619138362319674e+05 +Total_plasma_pressure_at_point_417_______________________________________ (pres_plasma_thermal_total_profile417)_ 1.66044596408639656e+05 +Total_plasma_pressure_at_point_418_______________________________________ (pres_plasma_thermal_total_profile418)_ 1.64481209046467353e+05 +Total_plasma_pressure_at_point_419_______________________________________ (pres_plasma_thermal_total_profile419)_ 1.62929114070320386e+05 +Total_plasma_pressure_at_point_420_______________________________________ (pres_plasma_thermal_total_profile420)_ 1.61388451823356154e+05 +Total_plasma_pressure_at_point_421_______________________________________ (pres_plasma_thermal_total_profile421)_ 1.59859365344088757e+05 +Total_plasma_pressure_at_point_422_______________________________________ (pres_plasma_thermal_total_profile422)_ 1.58342000524321280e+05 +Total_plasma_pressure_at_point_423_______________________________________ (pres_plasma_thermal_total_profile423)_ 1.56836506279374706e+05 +Total_plasma_pressure_at_point_424_______________________________________ (pres_plasma_thermal_total_profile424)_ 1.55343034731822438e+05 +Total_plasma_pressure_at_point_425_______________________________________ (pres_plasma_thermal_total_profile425)_ 1.53861741410090297e+05 +Total_plasma_pressure_at_point_426_______________________________________ (pres_plasma_thermal_total_profile426)_ 1.52392785463443142e+05 +Total_plasma_pressure_at_point_427_______________________________________ (pres_plasma_thermal_total_profile427)_ 1.50936329895080824e+05 +Total_plasma_pressure_at_point_428_______________________________________ (pres_plasma_thermal_total_profile428)_ 1.49492541815283621e+05 +Total_plasma_pressure_at_point_429_______________________________________ (pres_plasma_thermal_total_profile429)_ 1.48061592716806859e+05 +Total_plasma_pressure_at_point_430_______________________________________ (pres_plasma_thermal_total_profile430)_ 1.46643658775025106e+05 +Total_plasma_pressure_at_point_431_______________________________________ (pres_plasma_thermal_total_profile431)_ 1.45238921175671916e+05 +Total_plasma_pressure_at_point_432_______________________________________ (pres_plasma_thermal_total_profile432)_ 1.43847566473430634e+05 +Total_plasma_pressure_at_point_433_______________________________________ (pres_plasma_thermal_total_profile433)_ 1.42469786985105922e+05 +Total_plasma_pressure_at_point_434_______________________________________ (pres_plasma_thermal_total_profile434)_ 1.41105781221670506e+05 +Total_plasma_pressure_at_point_435_______________________________________ (pres_plasma_thermal_total_profile435)_ 1.39755754364140972e+05 +Total_plasma_pressure_at_point_436_______________________________________ (pres_plasma_thermal_total_profile436)_ 1.38419918789029442e+05 +Total_plasma_pressure_at_point_437_______________________________________ (pres_plasma_thermal_total_profile437)_ 1.37098494650051405e+05 +Total_plasma_pressure_at_point_438_______________________________________ (pres_plasma_thermal_total_profile438)_ 1.35791710523902439e+05 +Total_plasma_pressure_at_point_439_______________________________________ (pres_plasma_thermal_total_profile439)_ 1.34499804129265831e+05 +Total_plasma_pressure_at_point_440_______________________________________ (pres_plasma_thermal_total_profile440)_ 1.33223023129861627e+05 +Total_plasma_pressure_at_point_441_______________________________________ (pres_plasma_thermal_total_profile441)_ 1.31961626034342800e+05 +Total_plasma_pressure_at_point_442_______________________________________ (pres_plasma_thermal_total_profile442)_ 1.30715883208298445e+05 +Total_plasma_pressure_at_point_443_______________________________________ (pres_plasma_thermal_total_profile443)_ 1.29486078016645319e+05 +Total_plasma_pressure_at_point_444_______________________________________ (pres_plasma_thermal_total_profile444)_ 1.28272508118446014e+05 +Total_plasma_pressure_at_point_445_______________________________________ (pres_plasma_thermal_total_profile445)_ 1.27075486940886418e+05 +Total_plasma_pressure_at_point_446_______________________________________ (pres_plasma_thermal_total_profile446)_ 1.25895345365074754e+05 +Total_plasma_pressure_at_point_447_______________________________________ (pres_plasma_thermal_total_profile447)_ 1.24732433663856136e+05 +Total_plasma_pressure_at_point_448_______________________________________ (pres_plasma_thermal_total_profile448)_ 1.23587123741515563e+05 +Total_plasma_pressure_at_point_449_______________________________________ (pres_plasma_thermal_total_profile449)_ 1.22459811737779819e+05 +Total_plasma_pressure_at_point_450_______________________________________ (pres_plasma_thermal_total_profile450)_ 1.21350921074970276e+05 +Total_plasma_pressure_at_point_451_______________________________________ (pres_plasma_thermal_total_profile451)_ 1.20260906048947509e+05 +Total_plasma_pressure_at_point_452_______________________________________ (pres_plasma_thermal_total_profile452)_ 1.19190256093757169e+05 +Total_plasma_pressure_at_point_453_______________________________________ (pres_plasma_thermal_total_profile453)_ 1.18139500889738643e+05 +Total_plasma_pressure_at_point_454_______________________________________ (pres_plasma_thermal_total_profile454)_ 1.17109216539974877e+05 +Total_plasma_pressure_at_point_455_______________________________________ (pres_plasma_thermal_total_profile455)_ 1.16100033117489744e+05 +Total_plasma_pressure_at_point_456_______________________________________ (pres_plasma_thermal_total_profile456)_ 1.15112643996750208e+05 +Total_plasma_pressure_at_point_457_______________________________________ (pres_plasma_thermal_total_profile457)_ 1.14147817545791244e+05 +Total_plasma_pressure_at_point_458_______________________________________ (pres_plasma_thermal_total_profile458)_ 1.13206411999414719e+05 +Total_plasma_pressure_at_point_459_______________________________________ (pres_plasma_thermal_total_profile459)_ 1.12289394710195280e+05 +Total_plasma_pressure_at_point_460_______________________________________ (pres_plasma_thermal_total_profile460)_ 1.11397867572442890e+05 +Total_plasma_pressure_at_point_461_______________________________________ (pres_plasma_thermal_total_profile461)_ 1.10533101401145846e+05 +Total_plasma_pressure_at_point_462_______________________________________ (pres_plasma_thermal_total_profile462)_ 1.09696583746475721e+05 +Total_plasma_pressure_at_point_463_______________________________________ (pres_plasma_thermal_total_profile463)_ 1.08890087701061741e+05 +Total_plasma_pressure_at_point_464_______________________________________ (pres_plasma_thermal_total_profile464)_ 1.08115775187883351e+05 +Total_plasma_pressure_at_point_465_______________________________________ (pres_plasma_thermal_total_profile465)_ 1.07376360573735757e+05 +Total_plasma_pressure_at_point_466_______________________________________ (pres_plasma_thermal_total_profile466)_ 1.06675388924683357e+05 +Total_plasma_pressure_at_point_467_______________________________________ (pres_plasma_thermal_total_profile467)_ 1.06017758403583735e+05 +Total_plasma_pressure_at_point_468_______________________________________ (pres_plasma_thermal_total_profile468)_ 1.05410858619412829e+05 +Total_plasma_pressure_at_point_469_______________________________________ (pres_plasma_thermal_total_profile469)_ 1.04867788844241499e+05 +Total_plasma_pressure_at_point_470_______________________________________ (pres_plasma_thermal_total_profile470)_ 1.04427198751717777e+05 +Total_plasma_pressure_at_point_471_______________________________________ (pres_plasma_thermal_total_profile471)_ 9.96231753196601348e+04 +Total_plasma_pressure_at_point_472_______________________________________ (pres_plasma_thermal_total_profile472)_ 9.49129688362136658e+04 +Total_plasma_pressure_at_point_473_______________________________________ (pres_plasma_thermal_total_profile473)_ 9.02965793013783696e+04 +Total_plasma_pressure_at_point_474_______________________________________ (pres_plasma_thermal_total_profile474)_ 8.57740067151542753e+04 +Total_plasma_pressure_at_point_475_______________________________________ (pres_plasma_thermal_total_profile475)_ 8.13452510775412957e+04 +Total_plasma_pressure_at_point_476_______________________________________ (pres_plasma_thermal_total_profile476)_ 7.70103123885395180e+04 +Total_plasma_pressure_at_point_477_______________________________________ (pres_plasma_thermal_total_profile477)_ 7.27691906481488841e+04 +Total_plasma_pressure_at_point_478_______________________________________ (pres_plasma_thermal_total_profile478)_ 6.86218858563694521e+04 +Total_plasma_pressure_at_point_479_______________________________________ (pres_plasma_thermal_total_profile479)_ 6.45683980132011566e+04 +Total_plasma_pressure_at_point_480_______________________________________ (pres_plasma_thermal_total_profile480)_ 6.06087271186440485e+04 +Total_plasma_pressure_at_point_481_______________________________________ (pres_plasma_thermal_total_profile481)_ 5.67428731726980914e+04 +Total_plasma_pressure_at_point_482_______________________________________ (pres_plasma_thermal_total_profile482)_ 5.29708361753633289e+04 +Total_plasma_pressure_at_point_483_______________________________________ (pres_plasma_thermal_total_profile483)_ 4.92926161266397175e+04 +Total_plasma_pressure_at_point_484_______________________________________ (pres_plasma_thermal_total_profile484)_ 4.57082130265272863e+04 +Total_plasma_pressure_at_point_485_______________________________________ (pres_plasma_thermal_total_profile485)_ 4.22176268750260133e+04 +Total_plasma_pressure_at_point_486_______________________________________ (pres_plasma_thermal_total_profile486)_ 3.88208576721359132e+04 +Total_plasma_pressure_at_point_487_______________________________________ (pres_plasma_thermal_total_profile487)_ 3.55179054178569859e+04 +Total_plasma_pressure_at_point_488_______________________________________ (pres_plasma_thermal_total_profile488)_ 3.23087701121892169e+04 +Total_plasma_pressure_at_point_489_______________________________________ (pres_plasma_thermal_total_profile489)_ 2.91934517551326207e+04 +Total_plasma_pressure_at_point_490_______________________________________ (pres_plasma_thermal_total_profile490)_ 2.61719503466872047e+04 +Total_plasma_pressure_at_point_491_______________________________________ (pres_plasma_thermal_total_profile491)_ 2.32442658868529470e+04 +Total_plasma_pressure_at_point_492_______________________________________ (pres_plasma_thermal_total_profile492)_ 2.04103983756298585e+04 +Total_plasma_pressure_at_point_493_______________________________________ (pres_plasma_thermal_total_profile493)_ 1.76703478130179428e+04 +Total_plasma_pressure_at_point_494_______________________________________ (pres_plasma_thermal_total_profile494)_ 1.50241141990171964e+04 +Total_plasma_pressure_at_point_495_______________________________________ (pres_plasma_thermal_total_profile495)_ 1.24716975336276137e+04 +Total_plasma_pressure_at_point_496_______________________________________ (pres_plasma_thermal_total_profile496)_ 1.00130978168492038e+04 +Total_plasma_pressure_at_point_497_______________________________________ (pres_plasma_thermal_total_profile497)_ 7.64831504868196134e+03 +Total_plasma_pressure_at_point_498_______________________________________ (pres_plasma_thermal_total_profile498)_ 5.37734922912588809e+03 +Total_plasma_pressure_at_point_499_______________________________________ (pres_plasma_thermal_total_profile499)_ 3.20020035818098404e+03 +Total_plasma_pressure_at_point_500_______________________________________ (pres_plasma_thermal_total_profile500)_ 1.11686843584724897e+03 +Total_plasma_electron_pressure_at_point_0________________________________ (pres_plasma_electron_profile0)_ 4.32409924704107281e+05 +Total_plasma_electron_pressure_at_point_1________________________________ (pres_plasma_electron_profile1)_ 4.32406903343600396e+05 +Total_plasma_electron_pressure_at_point_2________________________________ (pres_plasma_electron_profile2)_ 4.32397839338275313e+05 +Total_plasma_electron_pressure_at_point_3________________________________ (pres_plasma_electron_profile3)_ 4.32382732916715962e+05 +Total_plasma_electron_pressure_at_point_4________________________________ (pres_plasma_electron_profile4)_ 4.32361584459893813e+05 +Total_plasma_electron_pressure_at_point_5________________________________ (pres_plasma_electron_profile5)_ 4.32334394501163159e+05 +Total_plasma_electron_pressure_at_point_6________________________________ (pres_plasma_electron_profile6)_ 4.32301163726255065e+05 +Total_plasma_electron_pressure_at_point_7________________________________ (pres_plasma_electron_profile7)_ 4.32261892973270558e+05 +Total_plasma_electron_pressure_at_point_8________________________________ (pres_plasma_electron_profile8)_ 4.32216583232671488e+05 +Total_plasma_electron_pressure_at_point_9________________________________ (pres_plasma_electron_profile9)_ 4.32165235647269583e+05 +Total_plasma_electron_pressure_at_point_10_______________________________ (pres_plasma_electron_profile10)_ 4.32107851512214867e+05 +Total_plasma_electron_pressure_at_point_11_______________________________ (pres_plasma_electron_profile11)_ 4.32044432274981169e+05 +Total_plasma_electron_pressure_at_point_12_______________________________ (pres_plasma_electron_profile12)_ 4.31974979535351216e+05 +Total_plasma_electron_pressure_at_point_13_______________________________ (pres_plasma_electron_profile13)_ 4.31899495045398711e+05 +Total_plasma_electron_pressure_at_point_14_______________________________ (pres_plasma_electron_profile14)_ 4.31817980709470517e+05 +Total_plasma_electron_pressure_at_point_15_______________________________ (pres_plasma_electron_profile15)_ 4.31730438584165182e+05 +Total_plasma_electron_pressure_at_point_16_______________________________ (pres_plasma_electron_profile16)_ 4.31636870878312038e+05 +Total_plasma_electron_pressure_at_point_17_______________________________ (pres_plasma_electron_profile17)_ 4.31537279952946585e+05 +Total_plasma_electron_pressure_at_point_18_______________________________ (pres_plasma_electron_profile18)_ 4.31431668321285921e+05 +Total_plasma_electron_pressure_at_point_19_______________________________ (pres_plasma_electron_profile19)_ 4.31320038648701156e+05 +Total_plasma_electron_pressure_at_point_20_______________________________ (pres_plasma_electron_profile20)_ 4.31202393752689415e+05 +Total_plasma_electron_pressure_at_point_21_______________________________ (pres_plasma_electron_profile21)_ 4.31078736602843506e+05 +Total_plasma_electron_pressure_at_point_22_______________________________ (pres_plasma_electron_profile22)_ 4.30949070320819679e+05 +Total_plasma_electron_pressure_at_point_23_______________________________ (pres_plasma_electron_profile23)_ 4.30813398180304677e+05 +Total_plasma_electron_pressure_at_point_24_______________________________ (pres_plasma_electron_profile24)_ 4.30671723606980348e+05 +Total_plasma_electron_pressure_at_point_25_______________________________ (pres_plasma_electron_profile25)_ 4.30524050178487494e+05 +Total_plasma_electron_pressure_at_point_26_______________________________ (pres_plasma_electron_profile26)_ 4.30370381624386006e+05 +Total_plasma_electron_pressure_at_point_27_______________________________ (pres_plasma_electron_profile27)_ 4.30210721826117078e+05 +Total_plasma_electron_pressure_at_point_28_______________________________ (pres_plasma_electron_profile28)_ 4.30045074816959735e+05 +Total_plasma_electron_pressure_at_point_29_______________________________ (pres_plasma_electron_profile29)_ 4.29873444781988394e+05 +Total_plasma_electron_pressure_at_point_30_______________________________ (pres_plasma_electron_profile30)_ 4.29695836058027809e+05 +Total_plasma_electron_pressure_at_point_31_______________________________ (pres_plasma_electron_profile31)_ 4.29512253133606690e+05 +Total_plasma_electron_pressure_at_point_32_______________________________ (pres_plasma_electron_profile32)_ 4.29322700648909376e+05 +Total_plasma_electron_pressure_at_point_33_______________________________ (pres_plasma_electron_profile33)_ 4.29127183395725908e+05 +Total_plasma_electron_pressure_at_point_34_______________________________ (pres_plasma_electron_profile34)_ 4.28925706317400909e+05 +Total_plasma_electron_pressure_at_point_35_______________________________ (pres_plasma_electron_profile35)_ 4.28718274508780625e+05 +Total_plasma_electron_pressure_at_point_36_______________________________ (pres_plasma_electron_profile36)_ 4.28504893216157390e+05 +Total_plasma_electron_pressure_at_point_37_______________________________ (pres_plasma_electron_profile37)_ 4.28285567837214621e+05 +Total_plasma_electron_pressure_at_point_38_______________________________ (pres_plasma_electron_profile38)_ 4.28060303920967504e+05 +Total_plasma_electron_pressure_at_point_39_______________________________ (pres_plasma_electron_profile39)_ 4.27829107167704438e+05 +Total_plasma_electron_pressure_at_point_40_______________________________ (pres_plasma_electron_profile40)_ 4.27591983428925159e+05 +Total_plasma_electron_pressure_at_point_41_______________________________ (pres_plasma_electron_profile41)_ 4.27348938707277994e+05 +Total_plasma_electron_pressure_at_point_42_______________________________ (pres_plasma_electron_profile42)_ 4.27099979156495887e+05 +Total_plasma_electron_pressure_at_point_43_______________________________ (pres_plasma_electron_profile43)_ 4.26845111081329116e+05 +Total_plasma_electron_pressure_at_point_44_______________________________ (pres_plasma_electron_profile44)_ 4.26584340937478933e+05 +Total_plasma_electron_pressure_at_point_45_______________________________ (pres_plasma_electron_profile45)_ 4.26317675331526960e+05 +Total_plasma_electron_pressure_at_point_46_______________________________ (pres_plasma_electron_profile46)_ 4.26045121020864695e+05 +Total_plasma_electron_pressure_at_point_47_______________________________ (pres_plasma_electron_profile47)_ 4.25766684913620702e+05 +Total_plasma_electron_pressure_at_point_48_______________________________ (pres_plasma_electron_profile48)_ 4.25482374068586505e+05 +Total_plasma_electron_pressure_at_point_49_______________________________ (pres_plasma_electron_profile49)_ 4.25192195695140224e+05 +Total_plasma_electron_pressure_at_point_50_______________________________ (pres_plasma_electron_profile50)_ 4.24896157153169392e+05 +Total_plasma_electron_pressure_at_point_51_______________________________ (pres_plasma_electron_profile51)_ 4.24594265952991322e+05 +Total_plasma_electron_pressure_at_point_52_______________________________ (pres_plasma_electron_profile52)_ 4.24286529755272553e+05 +Total_plasma_electron_pressure_at_point_53_______________________________ (pres_plasma_electron_profile53)_ 4.23972956370946078e+05 +Total_plasma_electron_pressure_at_point_54_______________________________ (pres_plasma_electron_profile54)_ 4.23653553761127696e+05 +Total_plasma_electron_pressure_at_point_55_______________________________ (pres_plasma_electron_profile55)_ 4.23328330037029402e+05 +Total_plasma_electron_pressure_at_point_56_______________________________ (pres_plasma_electron_profile56)_ 4.22997293459873123e+05 +Total_plasma_electron_pressure_at_point_57_______________________________ (pres_plasma_electron_profile57)_ 4.22660452440800087e+05 +Total_plasma_electron_pressure_at_point_58_______________________________ (pres_plasma_electron_profile58)_ 4.22317815540781769e+05 +Total_plasma_electron_pressure_at_point_59_______________________________ (pres_plasma_electron_profile59)_ 4.21969391470526636e+05 +Total_plasma_electron_pressure_at_point_60_______________________________ (pres_plasma_electron_profile60)_ 4.21615189090385975e+05 +Total_plasma_electron_pressure_at_point_61_______________________________ (pres_plasma_electron_profile61)_ 4.21255217410259182e+05 +Total_plasma_electron_pressure_at_point_62_______________________________ (pres_plasma_electron_profile62)_ 4.20889485589495569e+05 +Total_plasma_electron_pressure_at_point_63_______________________________ (pres_plasma_electron_profile63)_ 4.20518002936796285e+05 +Total_plasma_electron_pressure_at_point_64_______________________________ (pres_plasma_electron_profile64)_ 4.20140778910112975e+05 +Total_plasma_electron_pressure_at_point_65_______________________________ (pres_plasma_electron_profile65)_ 4.19757823116546555e+05 +Total_plasma_electron_pressure_at_point_66_______________________________ (pres_plasma_electron_profile66)_ 4.19369145312242385e+05 +Total_plasma_electron_pressure_at_point_67_______________________________ (pres_plasma_electron_profile67)_ 4.18974755402285780e+05 +Total_plasma_electron_pressure_at_point_68_______________________________ (pres_plasma_electron_profile68)_ 4.18574663440594159e+05 +Total_plasma_electron_pressure_at_point_69_______________________________ (pres_plasma_electron_profile69)_ 4.18168879629808944e+05 +Total_plasma_electron_pressure_at_point_70_______________________________ (pres_plasma_electron_profile70)_ 4.17757414321184508e+05 +Total_plasma_electron_pressure_at_point_71_______________________________ (pres_plasma_electron_profile71)_ 4.17340278014477226e+05 +Total_plasma_electron_pressure_at_point_72_______________________________ (pres_plasma_electron_profile72)_ 4.16917481357830518e+05 +Total_plasma_electron_pressure_at_point_73_______________________________ (pres_plasma_electron_profile73)_ 4.16489035147660936e+05 +Total_plasma_electron_pressure_at_point_74_______________________________ (pres_plasma_electron_profile74)_ 4.16054950328539882e+05 +Total_plasma_electron_pressure_at_point_75_______________________________ (pres_plasma_electron_profile75)_ 4.15615237993075978e+05 +Total_plasma_electron_pressure_at_point_76_______________________________ (pres_plasma_electron_profile76)_ 4.15169909381795092e+05 +Total_plasma_electron_pressure_at_point_77_______________________________ (pres_plasma_electron_profile77)_ 4.14718975883017585e+05 +Total_plasma_electron_pressure_at_point_78_______________________________ (pres_plasma_electron_profile78)_ 4.14262449032735254e+05 +Total_plasma_electron_pressure_at_point_79_______________________________ (pres_plasma_electron_profile79)_ 4.13800340514486597e+05 +Total_plasma_electron_pressure_at_point_80_______________________________ (pres_plasma_electron_profile80)_ 4.13332662159229629e+05 +Total_plasma_electron_pressure_at_point_81_______________________________ (pres_plasma_electron_profile81)_ 4.12859425945213647e+05 +Total_plasma_electron_pressure_at_point_82_______________________________ (pres_plasma_electron_profile82)_ 4.12380643997848732e+05 +Total_plasma_electron_pressure_at_point_83_______________________________ (pres_plasma_electron_profile83)_ 4.11896328589575249e+05 +Total_plasma_electron_pressure_at_point_84_______________________________ (pres_plasma_electron_profile84)_ 4.11406492139729438e+05 +Total_plasma_electron_pressure_at_point_85_______________________________ (pres_plasma_electron_profile85)_ 4.10911147214408906e+05 +Total_plasma_electron_pressure_at_point_86_______________________________ (pres_plasma_electron_profile86)_ 4.10410306526335829e+05 +Total_plasma_electron_pressure_at_point_87_______________________________ (pres_plasma_electron_profile87)_ 4.09903982934719068e+05 +Total_plasma_electron_pressure_at_point_88_______________________________ (pres_plasma_electron_profile88)_ 4.09392189445114345e+05 +Total_plasma_electron_pressure_at_point_89_______________________________ (pres_plasma_electron_profile89)_ 4.08874939209282282e+05 +Total_plasma_electron_pressure_at_point_90_______________________________ (pres_plasma_electron_profile90)_ 4.08352245525045553e+05 +Total_plasma_electron_pressure_at_point_91_______________________________ (pres_plasma_electron_profile91)_ 4.07824121836144361e+05 +Total_plasma_electron_pressure_at_point_92_______________________________ (pres_plasma_electron_profile92)_ 4.07290581732089515e+05 +Total_plasma_electron_pressure_at_point_93_______________________________ (pres_plasma_electron_profile93)_ 4.06751638948014996e+05 +Total_plasma_electron_pressure_at_point_94_______________________________ (pres_plasma_electron_profile94)_ 4.06207307364527660e+05 +Total_plasma_electron_pressure_at_point_95_______________________________ (pres_plasma_electron_profile95)_ 4.05657601007556252e+05 +Total_plasma_electron_pressure_at_point_96_______________________________ (pres_plasma_electron_profile96)_ 4.05102534048198839e+05 +Total_plasma_electron_pressure_at_point_97_______________________________ (pres_plasma_electron_profile97)_ 4.04542120802567457e+05 +Total_plasma_electron_pressure_at_point_98_______________________________ (pres_plasma_electron_profile98)_ 4.03976375731632288e+05 +Total_plasma_electron_pressure_at_point_99_______________________________ (pres_plasma_electron_profile99)_ 4.03405313441064092e+05 +Total_plasma_electron_pressure_at_point_100______________________________ (pres_plasma_electron_profile100)_ 4.02828948681074427e+05 +Total_plasma_electron_pressure_at_point_101______________________________ (pres_plasma_electron_profile101)_ 4.02247296346254181e+05 +Total_plasma_electron_pressure_at_point_102______________________________ (pres_plasma_electron_profile102)_ 4.01660371475411579e+05 +Total_plasma_electron_pressure_at_point_103______________________________ (pres_plasma_electron_profile103)_ 4.01068189251407573e+05 +Total_plasma_electron_pressure_at_point_104______________________________ (pres_plasma_electron_profile104)_ 4.00470765000989486e+05 +Total_plasma_electron_pressure_at_point_105______________________________ (pres_plasma_electron_profile105)_ 3.99868114194623777e+05 +Total_plasma_electron_pressure_at_point_106______________________________ (pres_plasma_electron_profile106)_ 3.99260252446326311e+05 +Total_plasma_electron_pressure_at_point_107______________________________ (pres_plasma_electron_profile107)_ 3.98647195513492508e+05 +Total_plasma_electron_pressure_at_point_108______________________________ (pres_plasma_electron_profile108)_ 3.98028959296723362e+05 +Total_plasma_electron_pressure_at_point_109______________________________ (pres_plasma_electron_profile109)_ 3.97405559839652618e+05 +Total_plasma_electron_pressure_at_point_110______________________________ (pres_plasma_electron_profile110)_ 3.96777013328770117e+05 +Total_plasma_electron_pressure_at_point_111______________________________ (pres_plasma_electron_profile111)_ 3.96143336093245074e+05 +Total_plasma_electron_pressure_at_point_112______________________________ (pres_plasma_electron_profile112)_ 3.95504544604746625e+05 +Total_plasma_electron_pressure_at_point_113______________________________ (pres_plasma_electron_profile113)_ 3.94860655477263383e+05 +Total_plasma_electron_pressure_at_point_114______________________________ (pres_plasma_electron_profile114)_ 3.94211685466921015e+05 +Total_plasma_electron_pressure_at_point_115______________________________ (pres_plasma_electron_profile115)_ 3.93557651471798657e+05 +Total_plasma_electron_pressure_at_point_116______________________________ (pres_plasma_electron_profile116)_ 3.92898570531743229e+05 +Total_plasma_electron_pressure_at_point_117______________________________ (pres_plasma_electron_profile117)_ 3.92234459828182589e+05 +Total_plasma_electron_pressure_at_point_118______________________________ (pres_plasma_electron_profile118)_ 3.91565336683936242e+05 +Total_plasma_electron_pressure_at_point_119______________________________ (pres_plasma_electron_profile119)_ 3.90891218563025759e+05 +Total_plasma_electron_pressure_at_point_120______________________________ (pres_plasma_electron_profile120)_ 3.90212123070482281e+05 +Total_plasma_electron_pressure_at_point_121______________________________ (pres_plasma_electron_profile121)_ 3.89528067952153215e+05 +Total_plasma_electron_pressure_at_point_122______________________________ (pres_plasma_electron_profile122)_ 3.88839071094507119e+05 +Total_plasma_electron_pressure_at_point_123______________________________ (pres_plasma_electron_profile123)_ 3.88145150524436613e+05 +Total_plasma_electron_pressure_at_point_124______________________________ (pres_plasma_electron_profile124)_ 3.87446324409060529e+05 +Total_plasma_electron_pressure_at_point_125______________________________ (pres_plasma_electron_profile125)_ 3.86742611055523565e+05 +Total_plasma_electron_pressure_at_point_126______________________________ (pres_plasma_electron_profile126)_ 3.86034028910794877e+05 +Total_plasma_electron_pressure_at_point_127______________________________ (pres_plasma_electron_profile127)_ 3.85320596561464656e+05 +Total_plasma_electron_pressure_at_point_128______________________________ (pres_plasma_electron_profile128)_ 3.84602332733539573e+05 +Total_plasma_electron_pressure_at_point_129______________________________ (pres_plasma_electron_profile129)_ 3.83879256292236794e+05 +Total_plasma_electron_pressure_at_point_130______________________________ (pres_plasma_electron_profile130)_ 3.83151386241775181e+05 +Total_plasma_electron_pressure_at_point_131______________________________ (pres_plasma_electron_profile131)_ 3.82418741725166270e+05 +Total_plasma_electron_pressure_at_point_132______________________________ (pres_plasma_electron_profile132)_ 3.81681342024003447e+05 +Total_plasma_electron_pressure_at_point_133______________________________ (pres_plasma_electron_profile133)_ 3.80939206558248319e+05 +Total_plasma_electron_pressure_at_point_134______________________________ (pres_plasma_electron_profile134)_ 3.80192354886017507e+05 +Total_plasma_electron_pressure_at_point_135______________________________ (pres_plasma_electron_profile135)_ 3.79440806703365932e+05 +Total_plasma_electron_pressure_at_point_136______________________________ (pres_plasma_electron_profile136)_ 3.78684581844069879e+05 +Total_plasma_electron_pressure_at_point_137______________________________ (pres_plasma_electron_profile137)_ 3.77923700279407261e+05 +Total_plasma_electron_pressure_at_point_138______________________________ (pres_plasma_electron_profile138)_ 3.77158182117938355e+05 +Total_plasma_electron_pressure_at_point_139______________________________ (pres_plasma_electron_profile139)_ 3.76388047605282278e+05 +Total_plasma_electron_pressure_at_point_140______________________________ (pres_plasma_electron_profile140)_ 3.75613317123893881e+05 +Total_plasma_electron_pressure_at_point_141______________________________ (pres_plasma_electron_profile141)_ 3.74834011192838545e+05 +Total_plasma_electron_pressure_at_point_142______________________________ (pres_plasma_electron_profile142)_ 3.74050150467565109e+05 +Total_plasma_electron_pressure_at_point_143______________________________ (pres_plasma_electron_profile143)_ 3.73261755739677872e+05 +Total_plasma_electron_pressure_at_point_144______________________________ (pres_plasma_electron_profile144)_ 3.72468847936706035e+05 +Total_plasma_electron_pressure_at_point_145______________________________ (pres_plasma_electron_profile145)_ 3.71671448121872556e+05 +Total_plasma_electron_pressure_at_point_146______________________________ (pres_plasma_electron_profile146)_ 3.70869577493861492e+05 +Total_plasma_electron_pressure_at_point_147______________________________ (pres_plasma_electron_profile147)_ 3.70063257386582904e+05 +Total_plasma_electron_pressure_at_point_148______________________________ (pres_plasma_electron_profile148)_ 3.69252509268936759e+05 +Total_plasma_electron_pressure_at_point_149______________________________ (pres_plasma_electron_profile149)_ 3.68437354744575801e+05 +Total_plasma_electron_pressure_at_point_150______________________________ (pres_plasma_electron_profile150)_ 3.67617815551666194e+05 +Total_plasma_electron_pressure_at_point_151______________________________ (pres_plasma_electron_profile151)_ 3.66793913562646427e+05 +Total_plasma_electron_pressure_at_point_152______________________________ (pres_plasma_electron_profile152)_ 3.65965670783985755e+05 +Total_plasma_electron_pressure_at_point_153______________________________ (pres_plasma_electron_profile153)_ 3.65133109355940484e+05 +Total_plasma_electron_pressure_at_point_154______________________________ (pres_plasma_electron_profile154)_ 3.64296251552308328e+05 +Total_plasma_electron_pressure_at_point_155______________________________ (pres_plasma_electron_profile155)_ 3.63455119780182082e+05 +Total_plasma_electron_pressure_at_point_156______________________________ (pres_plasma_electron_profile156)_ 3.62609736579701595e+05 +Total_plasma_electron_pressure_at_point_157______________________________ (pres_plasma_electron_profile157)_ 3.61760124623803713e+05 +Total_plasma_electron_pressure_at_point_158______________________________ (pres_plasma_electron_profile158)_ 3.60906306717971514e+05 +Total_plasma_electron_pressure_at_point_159______________________________ (pres_plasma_electron_profile159)_ 3.60048305799981521e+05 +Total_plasma_electron_pressure_at_point_160______________________________ (pres_plasma_electron_profile160)_ 3.59186144939649734e+05 +Total_plasma_electron_pressure_at_point_161______________________________ (pres_plasma_electron_profile161)_ 3.58319847338576044e+05 +Total_plasma_electron_pressure_at_point_162______________________________ (pres_plasma_electron_profile162)_ 3.57449436329887365e+05 +Total_plasma_electron_pressure_at_point_163______________________________ (pres_plasma_electron_profile163)_ 3.56574935377978953e+05 +Total_plasma_electron_pressure_at_point_164______________________________ (pres_plasma_electron_profile164)_ 3.55696368078255095e+05 +Total_plasma_electron_pressure_at_point_165______________________________ (pres_plasma_electron_profile165)_ 3.54813758156866999e+05 +Total_plasma_electron_pressure_at_point_166______________________________ (pres_plasma_electron_profile166)_ 3.53927129470450978e+05 +Total_plasma_electron_pressure_at_point_167______________________________ (pres_plasma_electron_profile167)_ 3.53036506005863775e+05 +Total_plasma_electron_pressure_at_point_168______________________________ (pres_plasma_electron_profile168)_ 3.52141911879917199e+05 +Total_plasma_electron_pressure_at_point_169______________________________ (pres_plasma_electron_profile169)_ 3.51243371339111123e+05 +Total_plasma_electron_pressure_at_point_170______________________________ (pres_plasma_electron_profile170)_ 3.50340908759365208e+05 +Total_plasma_electron_pressure_at_point_171______________________________ (pres_plasma_electron_profile171)_ 3.49434548645749455e+05 +Total_plasma_electron_pressure_at_point_172______________________________ (pres_plasma_electron_profile172)_ 3.48524315632212732e+05 +Total_plasma_electron_pressure_at_point_173______________________________ (pres_plasma_electron_profile173)_ 3.47610234481310530e+05 +Total_plasma_electron_pressure_at_point_174______________________________ (pres_plasma_electron_profile174)_ 3.46692330083931447e+05 +Total_plasma_electron_pressure_at_point_175______________________________ (pres_plasma_electron_profile175)_ 3.45770627459021634e+05 +Total_plasma_electron_pressure_at_point_176______________________________ (pres_plasma_electron_profile176)_ 3.44845151753308659e+05 +Total_plasma_electron_pressure_at_point_177______________________________ (pres_plasma_electron_profile177)_ 3.43915928241023852e+05 +Total_plasma_electron_pressure_at_point_178______________________________ (pres_plasma_electron_profile178)_ 3.42982982323622622e+05 +Total_plasma_electron_pressure_at_point_179______________________________ (pres_plasma_electron_profile179)_ 3.42046339529504941e+05 +Total_plasma_electron_pressure_at_point_180______________________________ (pres_plasma_electron_profile180)_ 3.41106025513733155e+05 +Total_plasma_electron_pressure_at_point_181______________________________ (pres_plasma_electron_profile181)_ 3.40162066057749325e+05 +Total_plasma_electron_pressure_at_point_182______________________________ (pres_plasma_electron_profile182)_ 3.39214487069090828e+05 +Total_plasma_electron_pressure_at_point_183______________________________ (pres_plasma_electron_profile183)_ 3.38263314581104962e+05 +Total_plasma_electron_pressure_at_point_184______________________________ (pres_plasma_electron_profile184)_ 3.37308574752662738e+05 +Total_plasma_electron_pressure_at_point_185______________________________ (pres_plasma_electron_profile185)_ 3.36350293867870467e+05 +Total_plasma_electron_pressure_at_point_186______________________________ (pres_plasma_electron_profile186)_ 3.35388498335780983e+05 +Total_plasma_electron_pressure_at_point_187______________________________ (pres_plasma_electron_profile187)_ 3.34423214690103254e+05 +Total_plasma_electron_pressure_at_point_188______________________________ (pres_plasma_electron_profile188)_ 3.33454469588910870e+05 +Total_plasma_electron_pressure_at_point_189______________________________ (pres_plasma_electron_profile189)_ 3.32482289814350021e+05 +Total_plasma_electron_pressure_at_point_190______________________________ (pres_plasma_electron_profile190)_ 3.31506702272344904e+05 +Total_plasma_electron_pressure_at_point_191______________________________ (pres_plasma_electron_profile191)_ 3.30527733992303605e+05 +Total_plasma_electron_pressure_at_point_192______________________________ (pres_plasma_electron_profile192)_ 3.29545412126821582e+05 +Total_plasma_electron_pressure_at_point_193______________________________ (pres_plasma_electron_profile193)_ 3.28559763951384986e+05 +Total_plasma_electron_pressure_at_point_194______________________________ (pres_plasma_electron_profile194)_ 3.27570816864072345e+05 +Total_plasma_electron_pressure_at_point_195______________________________ (pres_plasma_electron_profile195)_ 3.26578598385255551e+05 +Total_plasma_electron_pressure_at_point_196______________________________ (pres_plasma_electron_profile196)_ 3.25583136157299334e+05 +Total_plasma_electron_pressure_at_point_197______________________________ (pres_plasma_electron_profile197)_ 3.24584457944260328e+05 +Total_plasma_electron_pressure_at_point_198______________________________ (pres_plasma_electron_profile198)_ 3.23582591631584626e+05 +Total_plasma_electron_pressure_at_point_199______________________________ (pres_plasma_electron_profile199)_ 3.22577565225804807e+05 +Total_plasma_electron_pressure_at_point_200______________________________ (pres_plasma_electron_profile200)_ 3.21569406854235567e+05 +Total_plasma_electron_pressure_at_point_201______________________________ (pres_plasma_electron_profile201)_ 3.20558144764668425e+05 +Total_plasma_electron_pressure_at_point_202______________________________ (pres_plasma_electron_profile202)_ 3.19543807325066475e+05 +Total_plasma_electron_pressure_at_point_203______________________________ (pres_plasma_electron_profile203)_ 3.18526423023256473e+05 +Total_plasma_electron_pressure_at_point_204______________________________ (pres_plasma_electron_profile204)_ 3.17506020466622082e+05 +Total_plasma_electron_pressure_at_point_205______________________________ (pres_plasma_electron_profile205)_ 3.16482628381794493e+05 +Total_plasma_electron_pressure_at_point_206______________________________ (pres_plasma_electron_profile206)_ 3.15456275614343467e+05 +Total_plasma_electron_pressure_at_point_207______________________________ (pres_plasma_electron_profile207)_ 3.14426991128466965e+05 +Total_plasma_electron_pressure_at_point_208______________________________ (pres_plasma_electron_profile208)_ 3.13394804006680322e+05 +Total_plasma_electron_pressure_at_point_209______________________________ (pres_plasma_electron_profile209)_ 3.12359743449504487e+05 +Total_plasma_electron_pressure_at_point_210______________________________ (pres_plasma_electron_profile210)_ 3.11321838775153679e+05 +Total_plasma_electron_pressure_at_point_211______________________________ (pres_plasma_electron_profile211)_ 3.10281119419222465e+05 +Total_plasma_electron_pressure_at_point_212______________________________ (pres_plasma_electron_profile212)_ 3.09237614934371784e+05 +Total_plasma_electron_pressure_at_point_213______________________________ (pres_plasma_electron_profile213)_ 3.08191354990014806e+05 +Total_plasma_electron_pressure_at_point_214______________________________ (pres_plasma_electron_profile214)_ 3.07142369372001907e+05 +Total_plasma_electron_pressure_at_point_215______________________________ (pres_plasma_electron_profile215)_ 3.06090687982305652e+05 +Total_plasma_electron_pressure_at_point_216______________________________ (pres_plasma_electron_profile216)_ 3.05036340838704549e+05 +Total_plasma_electron_pressure_at_point_217______________________________ (pres_plasma_electron_profile217)_ 3.03979358074466407e+05 +Total_plasma_electron_pressure_at_point_218______________________________ (pres_plasma_electron_profile218)_ 3.02919769938032026e+05 +Total_plasma_electron_pressure_at_point_219______________________________ (pres_plasma_electron_profile219)_ 3.01857606792697276e+05 +Total_plasma_electron_pressure_at_point_220______________________________ (pres_plasma_electron_profile220)_ 3.00792899116296088e+05 +Total_plasma_electron_pressure_at_point_221______________________________ (pres_plasma_electron_profile221)_ 2.99725677500882186e+05 +Total_plasma_electron_pressure_at_point_222______________________________ (pres_plasma_electron_profile222)_ 2.98655972652410681e+05 +Total_plasma_electron_pressure_at_point_223______________________________ (pres_plasma_electron_profile223)_ 2.97583815390419972e+05 +Total_plasma_electron_pressure_at_point_224______________________________ (pres_plasma_electron_profile224)_ 2.96509236647712882e+05 +Total_plasma_electron_pressure_at_point_225______________________________ (pres_plasma_electron_profile225)_ 2.95432267470037506e+05 +Total_plasma_electron_pressure_at_point_226______________________________ (pres_plasma_electron_profile226)_ 2.94352939015768876e+05 +Total_plasma_electron_pressure_at_point_227______________________________ (pres_plasma_electron_profile227)_ 2.93271282555589161e+05 +Total_plasma_electron_pressure_at_point_228______________________________ (pres_plasma_electron_profile228)_ 2.92187329472169222e+05 +Total_plasma_electron_pressure_at_point_229______________________________ (pres_plasma_electron_profile229)_ 2.91101111259849451e+05 +Total_plasma_electron_pressure_at_point_230______________________________ (pres_plasma_electron_profile230)_ 2.90012659524320625e+05 +Total_plasma_electron_pressure_at_point_231______________________________ (pres_plasma_electron_profile231)_ 2.88922005982305156e+05 +Total_plasma_electron_pressure_at_point_232______________________________ (pres_plasma_electron_profile232)_ 2.87829182461238815e+05 +Total_plasma_electron_pressure_at_point_233______________________________ (pres_plasma_electron_profile233)_ 2.86734220898951811e+05 +Total_plasma_electron_pressure_at_point_234______________________________ (pres_plasma_electron_profile234)_ 2.85637153343351092e+05 +Total_plasma_electron_pressure_at_point_235______________________________ (pres_plasma_electron_profile235)_ 2.84538011952102534e+05 +Total_plasma_electron_pressure_at_point_236______________________________ (pres_plasma_electron_profile236)_ 2.83436828992313473e+05 +Total_plasma_electron_pressure_at_point_237______________________________ (pres_plasma_electron_profile237)_ 2.82333636840216292e+05 +Total_plasma_electron_pressure_at_point_238______________________________ (pres_plasma_electron_profile238)_ 2.81228467980851885e+05 +Total_plasma_electron_pressure_at_point_239______________________________ (pres_plasma_electron_profile239)_ 2.80121355007753766e+05 +Total_plasma_electron_pressure_at_point_240______________________________ (pres_plasma_electron_profile240)_ 2.79012330622633744e+05 +Total_plasma_electron_pressure_at_point_241______________________________ (pres_plasma_electron_profile241)_ 2.77901427635066910e+05 +Total_plasma_electron_pressure_at_point_242______________________________ (pres_plasma_electron_profile242)_ 2.76788678962178936e+05 +Total_plasma_electron_pressure_at_point_243______________________________ (pres_plasma_electron_profile243)_ 2.75674117628333042e+05 +Total_plasma_electron_pressure_at_point_244______________________________ (pres_plasma_electron_profile244)_ 2.74557776764819166e+05 +Total_plasma_electron_pressure_at_point_245______________________________ (pres_plasma_electron_profile245)_ 2.73439689609542256e+05 +Total_plasma_electron_pressure_at_point_246______________________________ (pres_plasma_electron_profile246)_ 2.72319889506714593e+05 +Total_plasma_electron_pressure_at_point_247______________________________ (pres_plasma_electron_profile247)_ 2.71198409906546294e+05 +Total_plasma_electron_pressure_at_point_248______________________________ (pres_plasma_electron_profile248)_ 2.70075284364939085e+05 +Total_plasma_electron_pressure_at_point_249______________________________ (pres_plasma_electron_profile249)_ 2.68950546543180651e+05 +Total_plasma_electron_pressure_at_point_250______________________________ (pres_plasma_electron_profile250)_ 2.67824230207641493e+05 +Total_plasma_electron_pressure_at_point_251______________________________ (pres_plasma_electron_profile251)_ 2.66696369229471136e+05 +Total_plasma_electron_pressure_at_point_252______________________________ (pres_plasma_electron_profile252)_ 2.65566997584299301e+05 +Total_plasma_electron_pressure_at_point_253______________________________ (pres_plasma_electron_profile253)_ 2.64436149351934902e+05 +Total_plasma_electron_pressure_at_point_254______________________________ (pres_plasma_electron_profile254)_ 2.63303858716071059e+05 +Total_plasma_electron_pressure_at_point_255______________________________ (pres_plasma_electron_profile255)_ 2.62170159963988699e+05 +Total_plasma_electron_pressure_at_point_256______________________________ (pres_plasma_electron_profile256)_ 2.61035087486264616e+05 +Total_plasma_electron_pressure_at_point_257______________________________ (pres_plasma_electron_profile257)_ 2.59898675776479824e+05 +Total_plasma_electron_pressure_at_point_258______________________________ (pres_plasma_electron_profile258)_ 2.58760959430932126e+05 +Total_plasma_electron_pressure_at_point_259______________________________ (pres_plasma_electron_profile259)_ 2.57621973148349585e+05 +Total_plasma_electron_pressure_at_point_260______________________________ (pres_plasma_electron_profile260)_ 2.56481751729607640e+05 +Total_plasma_electron_pressure_at_point_261______________________________ (pres_plasma_electron_profile261)_ 2.55340330077447812e+05 +Total_plasma_electron_pressure_at_point_262______________________________ (pres_plasma_electron_profile262)_ 2.54197743196200841e+05 +Total_plasma_electron_pressure_at_point_263______________________________ (pres_plasma_electron_profile263)_ 2.53054026191511250e+05 +Total_plasma_electron_pressure_at_point_264______________________________ (pres_plasma_electron_profile264)_ 2.51909214270065830e+05 +Total_plasma_electron_pressure_at_point_265______________________________ (pres_plasma_electron_profile265)_ 2.50763342739325191e+05 +Total_plasma_electron_pressure_at_point_266______________________________ (pres_plasma_electron_profile266)_ 2.49616447007258830e+05 +Total_plasma_electron_pressure_at_point_267______________________________ (pres_plasma_electron_profile267)_ 2.48468562582083425e+05 +Total_plasma_electron_pressure_at_point_268______________________________ (pres_plasma_electron_profile268)_ 2.47319725072005822e+05 +Total_plasma_electron_pressure_at_point_269______________________________ (pres_plasma_electron_profile269)_ 2.46169970184968144e+05 +Total_plasma_electron_pressure_at_point_270______________________________ (pres_plasma_electron_profile270)_ 2.45019333728399331e+05 +Total_plasma_electron_pressure_at_point_271______________________________ (pres_plasma_electron_profile271)_ 2.43867851608967962e+05 +Total_plasma_electron_pressure_at_point_272______________________________ (pres_plasma_electron_profile272)_ 2.42715559832343017e+05 +Total_plasma_electron_pressure_at_point_273______________________________ (pres_plasma_electron_profile273)_ 2.41562494502955844e+05 +Total_plasma_electron_pressure_at_point_274______________________________ (pres_plasma_electron_profile274)_ 2.40408691823769652e+05 +Total_plasma_electron_pressure_at_point_275______________________________ (pres_plasma_electron_profile275)_ 2.39254188096051570e+05 +Total_plasma_electron_pressure_at_point_276______________________________ (pres_plasma_electron_profile276)_ 2.38099019719152391e+05 +Total_plasma_electron_pressure_at_point_277______________________________ (pres_plasma_electron_profile277)_ 2.36943223190289922e+05 +Total_plasma_electron_pressure_at_point_278______________________________ (pres_plasma_electron_profile278)_ 2.35786835104338534e+05 +Total_plasma_electron_pressure_at_point_279______________________________ (pres_plasma_electron_profile279)_ 2.34629892153624503e+05 +Total_plasma_electron_pressure_at_point_280______________________________ (pres_plasma_electron_profile280)_ 2.33472431127728283e+05 +Total_plasma_electron_pressure_at_point_281______________________________ (pres_plasma_electron_profile281)_ 2.32314488913291425e+05 +Total_plasma_electron_pressure_at_point_282______________________________ (pres_plasma_electron_profile282)_ 2.31156102493831830e+05 +Total_plasma_electron_pressure_at_point_283______________________________ (pres_plasma_electron_profile283)_ 2.29997308949564496e+05 +Total_plasma_electron_pressure_at_point_284______________________________ (pres_plasma_electron_profile284)_ 2.28838145457230625e+05 +Total_plasma_electron_pressure_at_point_285______________________________ (pres_plasma_electron_profile285)_ 2.27678649289933062e+05 +Total_plasma_electron_pressure_at_point_286______________________________ (pres_plasma_electron_profile286)_ 2.26518857816980017e+05 +Total_plasma_electron_pressure_at_point_287______________________________ (pres_plasma_electron_profile287)_ 2.25358808503736625e+05 +Total_plasma_electron_pressure_at_point_288______________________________ (pres_plasma_electron_profile288)_ 2.24198538911484618e+05 +Total_plasma_electron_pressure_at_point_289______________________________ (pres_plasma_electron_profile289)_ 2.23038086697291263e+05 +Total_plasma_electron_pressure_at_point_290______________________________ (pres_plasma_electron_profile290)_ 2.21877489613886049e+05 +Total_plasma_electron_pressure_at_point_291______________________________ (pres_plasma_electron_profile291)_ 2.20716785509548063e+05 +Total_plasma_electron_pressure_at_point_292______________________________ (pres_plasma_electron_profile292)_ 2.19556012328001729e+05 +Total_plasma_electron_pressure_at_point_293______________________________ (pres_plasma_electron_profile293)_ 2.18395208108323422e+05 +Total_plasma_electron_pressure_at_point_294______________________________ (pres_plasma_electron_profile294)_ 2.17234410984858114e+05 +Total_plasma_electron_pressure_at_point_295______________________________ (pres_plasma_electron_profile295)_ 2.16073659187146550e+05 +Total_plasma_electron_pressure_at_point_296______________________________ (pres_plasma_electron_profile296)_ 2.14912991039864108e+05 +Total_plasma_electron_pressure_at_point_297______________________________ (pres_plasma_electron_profile297)_ 2.13752444962770853e+05 +Total_plasma_electron_pressure_at_point_298______________________________ (pres_plasma_electron_profile298)_ 2.12592059470673528e+05 +Total_plasma_electron_pressure_at_point_299______________________________ (pres_plasma_electron_profile299)_ 2.11431873173400469e+05 +Total_plasma_electron_pressure_at_point_300______________________________ (pres_plasma_electron_profile300)_ 2.10271924775788735e+05 +Total_plasma_electron_pressure_at_point_301______________________________ (pres_plasma_electron_profile301)_ 2.09112253077685804e+05 +Total_plasma_electron_pressure_at_point_302______________________________ (pres_plasma_electron_profile302)_ 2.07952896973963536e+05 +Total_plasma_electron_pressure_at_point_303______________________________ (pres_plasma_electron_profile303)_ 2.06793895454547834e+05 +Total_plasma_electron_pressure_at_point_304______________________________ (pres_plasma_electron_profile304)_ 2.05635287604462967e+05 +Total_plasma_electron_pressure_at_point_305______________________________ (pres_plasma_electron_profile305)_ 2.04477112603891117e+05 +Total_plasma_electron_pressure_at_point_306______________________________ (pres_plasma_electron_profile306)_ 2.03319409728248458e+05 +Total_plasma_electron_pressure_at_point_307______________________________ (pres_plasma_electron_profile307)_ 2.02162218348277151e+05 +Total_plasma_electron_pressure_at_point_308______________________________ (pres_plasma_electron_profile308)_ 2.01005577930155268e+05 +Total_plasma_electron_pressure_at_point_309______________________________ (pres_plasma_electron_profile309)_ 1.99849528035625117e+05 +Total_plasma_electron_pressure_at_point_310______________________________ (pres_plasma_electron_profile310)_ 1.98694108322138694e+05 +Total_plasma_electron_pressure_at_point_311______________________________ (pres_plasma_electron_profile311)_ 1.97539358543024049e+05 +Total_plasma_electron_pressure_at_point_312______________________________ (pres_plasma_electron_profile312)_ 1.96385318547670118e+05 +Total_plasma_electron_pressure_at_point_313______________________________ (pres_plasma_electron_profile313)_ 1.95232028281734209e+05 +Total_plasma_electron_pressure_at_point_314______________________________ (pres_plasma_electron_profile314)_ 1.94079527787368803e+05 +Total_plasma_electron_pressure_at_point_315______________________________ (pres_plasma_electron_profile315)_ 1.92927857203472813e+05 +Total_plasma_electron_pressure_at_point_316______________________________ (pres_plasma_electron_profile316)_ 1.91777056765964400e+05 +Total_plasma_electron_pressure_at_point_317______________________________ (pres_plasma_electron_profile317)_ 1.90627166808078822e+05 +Total_plasma_electron_pressure_at_point_318______________________________ (pres_plasma_electron_profile318)_ 1.89478227760690614e+05 +Total_plasma_electron_pressure_at_point_319______________________________ (pres_plasma_electron_profile319)_ 1.88330280152662424e+05 +Total_plasma_electron_pressure_at_point_320______________________________ (pres_plasma_electron_profile320)_ 1.87183364611219586e+05 +Total_plasma_electron_pressure_at_point_321______________________________ (pres_plasma_electron_profile321)_ 1.86037521862353664e+05 +Total_plasma_electron_pressure_at_point_322______________________________ (pres_plasma_electron_profile322)_ 1.84892792731254100e+05 +Total_plasma_electron_pressure_at_point_323______________________________ (pres_plasma_electron_profile323)_ 1.83749218142770784e+05 +Total_plasma_electron_pressure_at_point_324______________________________ (pres_plasma_electron_profile324)_ 1.82606839121906552e+05 +Total_plasma_electron_pressure_at_point_325______________________________ (pres_plasma_electron_profile325)_ 1.81465696794343501e+05 +Total_plasma_electron_pressure_at_point_326______________________________ (pres_plasma_electron_profile326)_ 1.80325832387001283e+05 +Total_plasma_electron_pressure_at_point_327______________________________ (pres_plasma_electron_profile327)_ 1.79187287228632049e+05 +Total_plasma_electron_pressure_at_point_328______________________________ (pres_plasma_electron_profile328)_ 1.78050102750449878e+05 +Total_plasma_electron_pressure_at_point_329______________________________ (pres_plasma_electron_profile329)_ 1.76914320486799406e+05 +Total_plasma_electron_pressure_at_point_330______________________________ (pres_plasma_electron_profile330)_ 1.75779982075862150e+05 +Total_plasma_electron_pressure_at_point_331______________________________ (pres_plasma_electron_profile331)_ 1.74647129260404588e+05 +Total_plasma_electron_pressure_at_point_332______________________________ (pres_plasma_electron_profile332)_ 1.73515803888567403e+05 +Total_plasma_electron_pressure_at_point_333______________________________ (pres_plasma_electron_profile333)_ 1.72386047914699593e+05 +Total_plasma_electron_pressure_at_point_334______________________________ (pres_plasma_electron_profile334)_ 1.71257903400237265e+05 +Total_plasma_electron_pressure_at_point_335______________________________ (pres_plasma_electron_profile335)_ 1.70131412514630007e+05 +Total_plasma_electron_pressure_at_point_336______________________________ (pres_plasma_electron_profile336)_ 1.69006617536317121e+05 +Total_plasma_electron_pressure_at_point_337______________________________ (pres_plasma_electron_profile337)_ 1.67883560853754025e+05 +Total_plasma_electron_pressure_at_point_338______________________________ (pres_plasma_electron_profile338)_ 1.66762284966492676e+05 +Total_plasma_electron_pressure_at_point_339______________________________ (pres_plasma_electron_profile339)_ 1.65642832486316969e+05 +Total_plasma_electron_pressure_at_point_340______________________________ (pres_plasma_electron_profile340)_ 1.64525246138435905e+05 +Total_plasma_electron_pressure_at_point_341______________________________ (pres_plasma_electron_profile341)_ 1.63409568762736570e+05 +Total_plasma_electron_pressure_at_point_342______________________________ (pres_plasma_electron_profile342)_ 1.62295843315099715e+05 +Total_plasma_electron_pressure_at_point_343______________________________ (pres_plasma_electron_profile343)_ 1.61184112868779805e+05 +Total_plasma_electron_pressure_at_point_344______________________________ (pres_plasma_electron_profile344)_ 1.60074420615853509e+05 +Total_plasma_electron_pressure_at_point_345______________________________ (pres_plasma_electron_profile345)_ 1.58966809868737269e+05 +Total_plasma_electron_pressure_at_point_346______________________________ (pres_plasma_electron_profile346)_ 1.57861324061779509e+05 +Total_plasma_electron_pressure_at_point_347______________________________ (pres_plasma_electron_profile347)_ 1.56758006752928515e+05 +Total_plasma_electron_pressure_at_point_348______________________________ (pres_plasma_electron_profile348)_ 1.55656901625479979e+05 +Total_plasma_electron_pressure_at_point_349______________________________ (pres_plasma_electron_profile349)_ 1.54558052489907306e+05 +Total_plasma_electron_pressure_at_point_350______________________________ (pres_plasma_electron_profile350)_ 1.53461503285779094e+05 +Total_plasma_electron_pressure_at_point_351______________________________ (pres_plasma_electron_profile351)_ 1.52367298083765374e+05 +Total_plasma_electron_pressure_at_point_352______________________________ (pres_plasma_electron_profile352)_ 1.51275481087740016e+05 +Total_plasma_electron_pressure_at_point_353______________________________ (pres_plasma_electron_profile353)_ 1.50186096636978473e+05 +Total_plasma_electron_pressure_at_point_354______________________________ (pres_plasma_electron_profile354)_ 1.49099189208460477e+05 +Total_plasma_electron_pressure_at_point_355______________________________ (pres_plasma_electron_profile355)_ 1.48014803419277800e+05 +Total_plasma_electron_pressure_at_point_356______________________________ (pres_plasma_electron_profile356)_ 1.46932984029154439e+05 +Total_plasma_electron_pressure_at_point_357______________________________ (pres_plasma_electron_profile357)_ 1.45853775943082670e+05 +Total_plasma_electron_pressure_at_point_358______________________________ (pres_plasma_electron_profile358)_ 1.44777224214081449e+05 +Total_plasma_electron_pressure_at_point_359______________________________ (pres_plasma_electron_profile359)_ 1.43703374046081153e+05 +Total_plasma_electron_pressure_at_point_360______________________________ (pres_plasma_electron_profile360)_ 1.42632270796942088e+05 +Total_plasma_electron_pressure_at_point_361______________________________ (pres_plasma_electron_profile361)_ 1.41563959981610940e+05 +Total_plasma_electron_pressure_at_point_362______________________________ (pres_plasma_electron_profile362)_ 1.40498487275423424e+05 +Total_plasma_electron_pressure_at_point_363______________________________ (pres_plasma_electron_profile363)_ 1.39435898517558235e+05 +Total_plasma_electron_pressure_at_point_364______________________________ (pres_plasma_electron_profile364)_ 1.38376239714650612e+05 +Total_plasma_electron_pressure_at_point_365______________________________ (pres_plasma_electron_profile365)_ 1.37319557044572080e+05 +Total_plasma_electron_pressure_at_point_366______________________________ (pres_plasma_electron_profile366)_ 1.36265896860384877e+05 +Total_plasma_electron_pressure_at_point_367______________________________ (pres_plasma_electron_profile367)_ 1.35215305694478768e+05 +Total_plasma_electron_pressure_at_point_368______________________________ (pres_plasma_electron_profile368)_ 1.34167830262899690e+05 +Total_plasma_electron_pressure_at_point_369______________________________ (pres_plasma_electron_profile369)_ 1.33123517469878861e+05 +Total_plasma_electron_pressure_at_point_370______________________________ (pres_plasma_electron_profile370)_ 1.32082414412572485e+05 +Total_plasma_electron_pressure_at_point_371______________________________ (pres_plasma_electron_profile371)_ 1.31044568386022394e+05 +Total_plasma_electron_pressure_at_point_372______________________________ (pres_plasma_electron_profile372)_ 1.30010026888348526e+05 +Total_plasma_electron_pressure_at_point_373______________________________ (pres_plasma_electron_profile373)_ 1.28978837626184366e+05 +Total_plasma_electron_pressure_at_point_374______________________________ (pres_plasma_electron_profile374)_ 1.27951048520369004e+05 +Total_plasma_electron_pressure_at_point_375______________________________ (pres_plasma_electron_profile375)_ 1.26926707711906653e+05 +Total_plasma_electron_pressure_at_point_376______________________________ (pres_plasma_electron_profile376)_ 1.25905863568209767e+05 +Total_plasma_electron_pressure_at_point_377______________________________ (pres_plasma_electron_profile377)_ 1.24888564689638253e+05 +Total_plasma_electron_pressure_at_point_378______________________________ (pres_plasma_electron_profile378)_ 1.23874859916352128e+05 +Total_plasma_electron_pressure_at_point_379______________________________ (pres_plasma_electron_profile379)_ 1.22864798335492698e+05 +Total_plasma_electron_pressure_at_point_380______________________________ (pres_plasma_electron_profile380)_ 1.21858429288710366e+05 +Total_plasma_electron_pressure_at_point_381______________________________ (pres_plasma_electron_profile381)_ 1.20855802380058405e+05 +Total_plasma_electron_pressure_at_point_382______________________________ (pres_plasma_electron_profile382)_ 1.19856967484270470e+05 +Total_plasma_electron_pressure_at_point_383______________________________ (pres_plasma_electron_profile383)_ 1.18861974755445626e+05 +Total_plasma_electron_pressure_at_point_384______________________________ (pres_plasma_electron_profile384)_ 1.17870874636161054e+05 +Total_plasma_electron_pressure_at_point_385______________________________ (pres_plasma_electron_profile385)_ 1.16883717867038111e+05 +Total_plasma_electron_pressure_at_point_386______________________________ (pres_plasma_electron_profile386)_ 1.15900555496785819e+05 +Total_plasma_electron_pressure_at_point_387______________________________ (pres_plasma_electron_profile387)_ 1.14921438892750652e+05 +Total_plasma_electron_pressure_at_point_388______________________________ (pres_plasma_electron_profile388)_ 1.13946419752000540e+05 +Total_plasma_electron_pressure_at_point_389______________________________ (pres_plasma_electron_profile389)_ 1.12975550112974961e+05 +Total_plasma_electron_pressure_at_point_390______________________________ (pres_plasma_electron_profile390)_ 1.12008882367733953e+05 +Total_plasma_electron_pressure_at_point_391______________________________ (pres_plasma_electron_profile391)_ 1.11046469274843024e+05 +Total_plasma_electron_pressure_at_point_392______________________________ (pres_plasma_electron_profile392)_ 1.10088363972930281e+05 +Total_plasma_electron_pressure_at_point_393______________________________ (pres_plasma_electron_profile393)_ 1.09134619994959008e+05 +Total_plasma_electron_pressure_at_point_394______________________________ (pres_plasma_electron_profile394)_ 1.08185291283258164e+05 +Total_plasma_electron_pressure_at_point_395______________________________ (pres_plasma_electron_profile395)_ 1.07240432205359422e+05 +Total_plasma_electron_pressure_at_point_396______________________________ (pres_plasma_electron_profile396)_ 1.06300097570690516e+05 +Total_plasma_electron_pressure_at_point_397______________________________ (pres_plasma_electron_profile397)_ 1.05364342648181308e+05 +Total_plasma_electron_pressure_at_point_398______________________________ (pres_plasma_electron_profile398)_ 1.04433223184839997e+05 +Total_plasma_electron_pressure_at_point_399______________________________ (pres_plasma_electron_profile399)_ 1.03506795425364995e+05 +Total_plasma_electron_pressure_at_point_400______________________________ (pres_plasma_electron_profile400)_ 1.02585116132859548e+05 +Total_plasma_electron_pressure_at_point_401______________________________ (pres_plasma_electron_profile401)_ 1.01668242610725341e+05 +Total_plasma_electron_pressure_at_point_402______________________________ (pres_plasma_electron_profile402)_ 1.00756232725813548e+05 +Total_plasma_electron_pressure_at_point_403______________________________ (pres_plasma_electron_profile403)_ 9.98491449329228490e+04 +Total_plasma_electron_pressure_at_point_404______________________________ (pres_plasma_electron_profile404)_ 9.89470383007362252e+04 +Total_plasma_electron_pressure_at_point_405______________________________ (pres_plasma_electron_profile405)_ 9.80499725393017870e+04 +Total_plasma_electron_pressure_at_point_406______________________________ (pres_plasma_electron_profile406)_ 9.71580080291668273e+04 +Total_plasma_electron_pressure_at_point_407______________________________ (pres_plasma_electron_profile407)_ 9.62712058522879961e+04 +Total_plasma_electron_pressure_at_point_408______________________________ (pres_plasma_electron_profile408)_ 9.53896278248479794e+04 +Total_plasma_electron_pressure_at_point_409______________________________ (pres_plasma_electron_profile409)_ 9.45133365321253077e+04 +Total_plasma_electron_pressure_at_point_410______________________________ (pres_plasma_electron_profile410)_ 9.36423953655711957e+04 +Total_plasma_electron_pressure_at_point_411______________________________ (pres_plasma_electron_profile411)_ 9.27768685622689663e+04 +Total_plasma_electron_pressure_at_point_412______________________________ (pres_plasma_electron_profile412)_ 9.19168212469615828e+04 +Total_plasma_electron_pressure_at_point_413______________________________ (pres_plasma_electron_profile413)_ 9.10623194768560497e+04 +Total_plasma_electron_pressure_at_point_414______________________________ (pres_plasma_electron_profile414)_ 9.02134302894304710e+04 +Total_plasma_electron_pressure_at_point_415______________________________ (pres_plasma_electron_profile415)_ 8.93702217534941592e+04 +Total_plasma_electron_pressure_at_point_416______________________________ (pres_plasma_electron_profile416)_ 8.85327630237758422e+04 +Total_plasma_electron_pressure_at_point_417______________________________ (pres_plasma_electron_profile417)_ 8.77011243993436656e+04 +Total_plasma_electron_pressure_at_point_418______________________________ (pres_plasma_electron_profile418)_ 8.68753773861930385e+04 +Total_plasma_electron_pressure_at_point_419______________________________ (pres_plasma_electron_profile419)_ 8.60555947643745894e+04 +Total_plasma_electron_pressure_at_point_420______________________________ (pres_plasma_electron_profile420)_ 8.52418506600747060e+04 +Total_plasma_electron_pressure_at_point_421______________________________ (pres_plasma_electron_profile421)_ 8.44342206231082964e+04 +Total_plasma_electron_pressure_at_point_422______________________________ (pres_plasma_electron_profile422)_ 8.36327817103350390e+04 +Total_plasma_electron_pressure_at_point_423______________________________ (pres_plasma_electron_profile423)_ 8.28376125755706598e+04 +Total_plasma_electron_pressure_at_point_424______________________________ (pres_plasma_electron_profile424)_ 8.20487935666315461e+04 +Total_plasma_electron_pressure_at_point_425______________________________ (pres_plasma_electron_profile425)_ 8.12664068302306987e+04 +Total_plasma_electron_pressure_at_point_426______________________________ (pres_plasma_electron_profile426)_ 8.04905364255292807e+04 +Total_plasma_electron_pressure_at_point_427______________________________ (pres_plasma_electron_profile427)_ 7.97212684472524852e+04 +Total_plasma_electron_pressure_at_point_428______________________________ (pres_plasma_electron_profile428)_ 7.89586911593956465e+04 +Total_plasma_electron_pressure_at_point_429______________________________ (pres_plasma_electron_profile429)_ 7.82028951406815322e+04 +Total_plasma_electron_pressure_at_point_430______________________________ (pres_plasma_electron_profile430)_ 7.74539734430900426e+04 +Total_plasma_electron_pressure_at_point_431______________________________ (pres_plasma_electron_profile431)_ 7.67120217649630504e+04 +Total_plasma_electron_pressure_at_point_432______________________________ (pres_plasma_electron_profile432)_ 7.59771386404043151e+04 +Total_plasma_electron_pressure_at_point_433______________________________ (pres_plasma_electron_profile433)_ 7.52494256469440734e+04 +Total_plasma_electron_pressure_at_point_434______________________________ (pres_plasma_electron_profile434)_ 7.45289876337366295e+04 +Total_plasma_electron_pressure_at_point_435______________________________ (pres_plasma_electron_profile435)_ 7.38159329729076271e+04 +Total_plasma_electron_pressure_at_point_436______________________________ (pres_plasma_electron_profile436)_ 7.31103738370860374e+04 +Total_plasma_electron_pressure_at_point_437______________________________ (pres_plasma_electron_profile437)_ 7.24124265066495864e+04 +Total_plasma_electron_pressure_at_point_438______________________________ (pres_plasma_electron_profile438)_ 7.17222117108098610e+04 +Total_plasma_electron_pressure_at_point_439______________________________ (pres_plasma_electron_profile439)_ 7.10398550073764345e+04 +Total_plasma_electron_pressure_at_point_440______________________________ (pres_plasma_electron_profile440)_ 7.03654872069097910e+04 +Total_plasma_electron_pressure_at_point_441______________________________ (pres_plasma_electron_profile441)_ 6.96992448480267922e+04 +Total_plasma_electron_pressure_at_point_442______________________________ (pres_plasma_electron_profile442)_ 6.90412707319186593e+04 +Total_plasma_electron_pressure_at_point_443______________________________ (pres_plasma_electron_profile443)_ 6.83917145257371885e+04 +Total_plasma_electron_pressure_at_point_444______________________________ (pres_plasma_electron_profile444)_ 6.77507334464893793e+04 +Total_plasma_electron_pressure_at_point_445______________________________ (pres_plasma_electron_profile445)_ 6.71184930395601259e+04 +Total_plasma_electron_pressure_at_point_446______________________________ (pres_plasma_electron_profile446)_ 6.64951680691143411e+04 +Total_plasma_electron_pressure_at_point_447______________________________ (pres_plasma_electron_profile447)_ 6.58809435416083143e+04 +Total_plasma_electron_pressure_at_point_448______________________________ (pres_plasma_electron_profile448)_ 6.52760158887517609e+04 +Total_plasma_electron_pressure_at_point_449______________________________ (pres_plasma_electron_profile449)_ 6.46805943428847168e+04 +Total_plasma_electron_pressure_at_point_450______________________________ (pres_plasma_electron_profile450)_ 6.40949025464170118e+04 +Total_plasma_electron_pressure_at_point_451______________________________ (pres_plasma_electron_profile451)_ 6.35191804484866880e+04 +Total_plasma_electron_pressure_at_point_452______________________________ (pres_plasma_electron_profile452)_ 6.29536865574526382e+04 +Total_plasma_electron_pressure_at_point_453______________________________ (pres_plasma_electron_profile453)_ 6.23987006388859372e+04 +Total_plasma_electron_pressure_at_point_454______________________________ (pres_plasma_electron_profile454)_ 6.18545269778355141e+04 +Total_plasma_electron_pressure_at_point_455______________________________ (pres_plasma_electron_profile455)_ 6.13214983650927825e+04 +Total_plasma_electron_pressure_at_point_456______________________________ (pres_plasma_electron_profile456)_ 6.07999810258869693e+04 +Total_plasma_electron_pressure_at_point_457______________________________ (pres_plasma_electron_profile457)_ 6.02903807954098083e+04 +Total_plasma_electron_pressure_at_point_458______________________________ (pres_plasma_electron_profile458)_ 5.97931509745139119e+04 +Total_plasma_electron_pressure_at_point_459______________________________ (pres_plasma_electron_profile459)_ 5.93088024976730303e+04 +Total_plasma_electron_pressure_at_point_460______________________________ (pres_plasma_electron_profile460)_ 5.88379173613630774e+04 +Total_plasma_electron_pressure_at_point_461______________________________ (pres_plasma_electron_profile461)_ 5.83811667822679374e+04 +Total_plasma_electron_pressure_at_point_462______________________________ (pres_plasma_electron_profile462)_ 5.79393364518552407e+04 +Total_plasma_electron_pressure_at_point_463______________________________ (pres_plasma_electron_profile463)_ 5.75133628788739152e+04 +Total_plasma_electron_pressure_at_point_464______________________________ (pres_plasma_electron_profile464)_ 5.71043879437600845e+04 +Total_plasma_electron_pressure_at_point_465______________________________ (pres_plasma_electron_profile465)_ 5.67138453156912874e+04 +Total_plasma_electron_pressure_at_point_466______________________________ (pres_plasma_electron_profile466)_ 5.63436074210315783e+04 +Total_plasma_electron_pressure_at_point_467______________________________ (pres_plasma_electron_profile467)_ 5.59962613622786375e+04 +Total_plasma_electron_pressure_at_point_468______________________________ (pres_plasma_electron_profile468)_ 5.56757101692815631e+04 +Total_plasma_electron_pressure_at_point_469______________________________ (pres_plasma_electron_profile469)_ 5.53888725910648573e+04 +Total_plasma_electron_pressure_at_point_470______________________________ (pres_plasma_electron_profile470)_ 5.51561625399744444e+04 +Total_plasma_electron_pressure_at_point_471______________________________ (pres_plasma_electron_profile471)_ 5.26187824279750421e+04 +Total_plasma_electron_pressure_at_point_472______________________________ (pres_plasma_electron_profile472)_ 5.01309543764393675e+04 +Total_plasma_electron_pressure_at_point_473______________________________ (pres_plasma_electron_profile473)_ 4.76926783853674133e+04 +Total_plasma_electron_pressure_at_point_474______________________________ (pres_plasma_electron_profile474)_ 4.53039544547591940e+04 +Total_plasma_electron_pressure_at_point_475______________________________ (pres_plasma_electron_profile475)_ 4.29647825846146734e+04 +Total_plasma_electron_pressure_at_point_476______________________________ (pres_plasma_electron_profile476)_ 4.06751627749338804e+04 +Total_plasma_electron_pressure_at_point_477______________________________ (pres_plasma_electron_profile477)_ 3.84350950257168079e+04 +Total_plasma_electron_pressure_at_point_478______________________________ (pres_plasma_electron_profile478)_ 3.62445793369634630e+04 +Total_plasma_electron_pressure_at_point_479______________________________ (pres_plasma_electron_profile479)_ 3.41036157086738240e+04 +Total_plasma_electron_pressure_at_point_480______________________________ (pres_plasma_electron_profile480)_ 3.20122041408479163e+04 +Total_plasma_electron_pressure_at_point_481______________________________ (pres_plasma_electron_profile481)_ 2.99703446334857181e+04 +Total_plasma_electron_pressure_at_point_482______________________________ (pres_plasma_electron_profile482)_ 2.79780371865872548e+04 +Total_plasma_electron_pressure_at_point_483______________________________ (pres_plasma_electron_profile483)_ 2.60352818001525011e+04 +Total_plasma_electron_pressure_at_point_484______________________________ (pres_plasma_electron_profile484)_ 2.41420784741814750e+04 +Total_plasma_electron_pressure_at_point_485______________________________ (pres_plasma_electron_profile485)_ 2.22984272086741621e+04 +Total_plasma_electron_pressure_at_point_486______________________________ (pres_plasma_electron_profile486)_ 2.05043280036305732e+04 +Total_plasma_electron_pressure_at_point_487______________________________ (pres_plasma_electron_profile487)_ 1.87597808590507047e+04 +Total_plasma_electron_pressure_at_point_488______________________________ (pres_plasma_electron_profile488)_ 1.70647857749345530e+04 +Total_plasma_electron_pressure_at_point_489______________________________ (pres_plasma_electron_profile489)_ 1.54193427512821236e+04 +Total_plasma_electron_pressure_at_point_490______________________________ (pres_plasma_electron_profile490)_ 1.38234517880934181e+04 +Total_plasma_electron_pressure_at_point_491______________________________ (pres_plasma_electron_profile491)_ 1.22771128853684295e+04 +Total_plasma_electron_pressure_at_point_492______________________________ (pres_plasma_electron_profile492)_ 1.07803260431071631e+04 +Total_plasma_electron_pressure_at_point_493______________________________ (pres_plasma_electron_profile493)_ 9.33309126130961522e+03 +Total_plasma_electron_pressure_at_point_494______________________________ (pres_plasma_electron_profile494)_ 7.93540853997579052e+03 +Total_plasma_electron_pressure_at_point_495______________________________ (pres_plasma_electron_profile495)_ 6.58727787910568259e+03 +Total_plasma_electron_pressure_at_point_496______________________________ (pres_plasma_electron_profile496)_ 5.28869927869929688e+03 +Total_plasma_electron_pressure_at_point_497______________________________ (pres_plasma_electron_profile497)_ 4.03967273875663113e+03 +Total_plasma_electron_pressure_at_point_498______________________________ (pres_plasma_electron_profile498)_ 2.84019825927768625e+03 +Total_plasma_electron_pressure_at_point_499______________________________ (pres_plasma_electron_profile499)_ 1.69027584026246109e+03 +Total_plasma_electron_pressure_at_point_500______________________________ (pres_plasma_electron_profile500)_ 5.89905481710956678e+02 +Total_plasma_ion_pressure_at_point_0_____________________________________ (pres_plasma_ion_total_profile0)_ 3.86272069652638806e+05 +Total_plasma_ion_pressure_at_point_1_____________________________________ (pres_plasma_ion_total_profile1)_ 3.86269370669314289e+05 +Total_plasma_ion_pressure_at_point_2_____________________________________ (pres_plasma_ion_total_profile2)_ 3.86261273787406040e+05 +Total_plasma_ion_pressure_at_point_3_____________________________________ (pres_plasma_ion_total_profile3)_ 3.86247779211108456e+05 +Total_plasma_ion_pressure_at_point_4_____________________________________ (pres_plasma_ion_total_profile4)_ 3.86228887280743453e+05 +Total_plasma_ion_pressure_at_point_5_____________________________________ (pres_plasma_ion_total_profile5)_ 3.86204598472756741e+05 +Total_plasma_ion_pressure_at_point_6_____________________________________ (pres_plasma_ion_total_profile6)_ 3.86174913399712474e+05 +Total_plasma_ion_pressure_at_point_7_____________________________________ (pres_plasma_ion_total_profile7)_ 3.86139832810286782e+05 +Total_plasma_ion_pressure_at_point_8_____________________________________ (pres_plasma_ion_total_profile8)_ 3.86099357589259918e+05 +Total_plasma_ion_pressure_at_point_9_____________________________________ (pres_plasma_ion_total_profile9)_ 3.86053488757506188e+05 +Total_plasma_ion_pressure_at_point_10____________________________________ (pres_plasma_ion_total_profile10)_ 3.86002227471984166e+05 +Total_plasma_ion_pressure_at_point_11____________________________________ (pres_plasma_ion_total_profile11)_ 3.85945575025723083e+05 +Total_plasma_ion_pressure_at_point_12____________________________________ (pres_plasma_ion_total_profile12)_ 3.85883532847810013e+05 +Total_plasma_ion_pressure_at_point_13____________________________________ (pres_plasma_ion_total_profile13)_ 3.85816102503373288e+05 +Total_plasma_ion_pressure_at_point_14____________________________________ (pres_plasma_ion_total_profile14)_ 3.85743285693567421e+05 +Total_plasma_ion_pressure_at_point_15____________________________________ (pres_plasma_ion_total_profile15)_ 3.85665084255553142e+05 +Total_plasma_ion_pressure_at_point_16____________________________________ (pres_plasma_ion_total_profile16)_ 3.85581500162479235e+05 +Total_plasma_ion_pressure_at_point_17____________________________________ (pres_plasma_ion_total_profile17)_ 3.85492535523460305e+05 +Total_plasma_ion_pressure_at_point_18____________________________________ (pres_plasma_ion_total_profile18)_ 3.85398192583554657e+05 +Total_plasma_ion_pressure_at_point_19____________________________________ (pres_plasma_ion_total_profile19)_ 3.85298473723740259e+05 +Total_plasma_ion_pressure_at_point_20____________________________________ (pres_plasma_ion_total_profile20)_ 3.85193381460888893e+05 +Total_plasma_ion_pressure_at_point_21____________________________________ (pres_plasma_ion_total_profile21)_ 3.85082918447739969e+05 +Total_plasma_ion_pressure_at_point_22____________________________________ (pres_plasma_ion_total_profile22)_ 3.84967087472870946e+05 +Total_plasma_ion_pressure_at_point_23____________________________________ (pres_plasma_ion_total_profile23)_ 3.84845891460668412e+05 +Total_plasma_ion_pressure_at_point_24____________________________________ (pres_plasma_ion_total_profile24)_ 3.84719333471296239e+05 +Total_plasma_ion_pressure_at_point_25____________________________________ (pres_plasma_ion_total_profile25)_ 3.84587416700663161e+05 +Total_plasma_ion_pressure_at_point_26____________________________________ (pres_plasma_ion_total_profile26)_ 3.84450144480387680e+05 +Total_plasma_ion_pressure_at_point_27____________________________________ (pres_plasma_ion_total_profile27)_ 3.84307520277763542e+05 +Total_plasma_ion_pressure_at_point_28____________________________________ (pres_plasma_ion_total_profile28)_ 3.84159547695721732e+05 +Total_plasma_ion_pressure_at_point_29____________________________________ (pres_plasma_ion_total_profile29)_ 3.84006230472791940e+05 +Total_plasma_ion_pressure_at_point_30____________________________________ (pres_plasma_ion_total_profile30)_ 3.83847572483062453e+05 +Total_plasma_ion_pressure_at_point_31____________________________________ (pres_plasma_ion_total_profile31)_ 3.83683577736139065e+05 +Total_plasma_ion_pressure_at_point_32____________________________________ (pres_plasma_ion_total_profile32)_ 3.83514250377101300e+05 +Total_plasma_ion_pressure_at_point_33____________________________________ (pres_plasma_ion_total_profile33)_ 3.83339594686458586e+05 +Total_plasma_ion_pressure_at_point_34____________________________________ (pres_plasma_ion_total_profile34)_ 3.83159615080103744e+05 +Total_plasma_ion_pressure_at_point_35____________________________________ (pres_plasma_ion_total_profile35)_ 3.82974316109266307e+05 +Total_plasma_ion_pressure_at_point_36____________________________________ (pres_plasma_ion_total_profile36)_ 3.82783702460462693e+05 +Total_plasma_ion_pressure_at_point_37____________________________________ (pres_plasma_ion_total_profile37)_ 3.82587778955447138e+05 +Total_plasma_ion_pressure_at_point_38____________________________________ (pres_plasma_ion_total_profile38)_ 3.82386550551158376e+05 +Total_plasma_ion_pressure_at_point_39____________________________________ (pres_plasma_ion_total_profile39)_ 3.82180022339667892e+05 +Total_plasma_ion_pressure_at_point_40____________________________________ (pres_plasma_ion_total_profile40)_ 3.81968199548124103e+05 +Total_plasma_ion_pressure_at_point_41____________________________________ (pres_plasma_ion_total_profile41)_ 3.81751087538696826e+05 +Total_plasma_ion_pressure_at_point_42____________________________________ (pres_plasma_ion_total_profile42)_ 3.81528691808519710e+05 +Total_plasma_ion_pressure_at_point_43____________________________________ (pres_plasma_ion_total_profile43)_ 3.81301017989630403e+05 +Total_plasma_ion_pressure_at_point_44____________________________________ (pres_plasma_ion_total_profile44)_ 3.81068071848910884e+05 +Total_plasma_ion_pressure_at_point_45____________________________________ (pres_plasma_ion_total_profile45)_ 3.80829859288024891e+05 +Total_plasma_ion_pressure_at_point_46____________________________________ (pres_plasma_ion_total_profile46)_ 3.80586386343354941e+05 +Total_plasma_ion_pressure_at_point_47____________________________________ (pres_plasma_ion_total_profile47)_ 3.80337659185936500e+05 +Total_plasma_ion_pressure_at_point_48____________________________________ (pres_plasma_ion_total_profile48)_ 3.80083684121392784e+05 +Total_plasma_ion_pressure_at_point_49____________________________________ (pres_plasma_ion_total_profile49)_ 3.79824467589866137e+05 +Total_plasma_ion_pressure_at_point_50____________________________________ (pres_plasma_ion_total_profile50)_ 3.79560016165948648e+05 +Total_plasma_ion_pressure_at_point_51____________________________________ (pres_plasma_ion_total_profile51)_ 3.79290336558611947e+05 +Total_plasma_ion_pressure_at_point_52____________________________________ (pres_plasma_ion_total_profile52)_ 3.79015435611134453e+05 +Total_plasma_ion_pressure_at_point_53____________________________________ (pres_plasma_ion_total_profile53)_ 3.78735320301027503e+05 +Total_plasma_ion_pressure_at_point_54____________________________________ (pres_plasma_ion_total_profile54)_ 3.78449997739961371e+05 +Total_plasma_ion_pressure_at_point_55____________________________________ (pres_plasma_ion_total_profile55)_ 3.78159475173686922e+05 +Total_plasma_ion_pressure_at_point_56____________________________________ (pres_plasma_ion_total_profile56)_ 3.77863759981959127e+05 +Total_plasma_ion_pressure_at_point_57____________________________________ (pres_plasma_ion_total_profile57)_ 3.77562859678455919e+05 +Total_plasma_ion_pressure_at_point_58____________________________________ (pres_plasma_ion_total_profile58)_ 3.77256781910698861e+05 +Total_plasma_ion_pressure_at_point_59____________________________________ (pres_plasma_ion_total_profile59)_ 3.76945534459969494e+05 +Total_plasma_ion_pressure_at_point_60____________________________________ (pres_plasma_ion_total_profile60)_ 3.76629125241225411e+05 +Total_plasma_ion_pressure_at_point_61____________________________________ (pres_plasma_ion_total_profile61)_ 3.76307562303015613e+05 +Total_plasma_ion_pressure_at_point_62____________________________________ (pres_plasma_ion_total_profile62)_ 3.75980853827392973e+05 +Total_plasma_ion_pressure_at_point_63____________________________________ (pres_plasma_ion_total_profile63)_ 3.75649008129826223e+05 +Total_plasma_ion_pressure_at_point_64____________________________________ (pres_plasma_ion_total_profile64)_ 3.75312033659109904e+05 +Total_plasma_ion_pressure_at_point_65____________________________________ (pres_plasma_ion_total_profile65)_ 3.74969938997273392e+05 +Total_plasma_ion_pressure_at_point_66____________________________________ (pres_plasma_ion_total_profile66)_ 3.74622732859487995e+05 +Total_plasma_ion_pressure_at_point_67____________________________________ (pres_plasma_ion_total_profile67)_ 3.74270424093972717e+05 +Total_plasma_ion_pressure_at_point_68____________________________________ (pres_plasma_ion_total_profile68)_ 3.73913021681898739e+05 +Total_plasma_ion_pressure_at_point_69____________________________________ (pres_plasma_ion_total_profile69)_ 3.73550534737292153e+05 +Total_plasma_ion_pressure_at_point_70____________________________________ (pres_plasma_ion_total_profile70)_ 3.73182972506935475e+05 +Total_plasma_ion_pressure_at_point_71____________________________________ (pres_plasma_ion_total_profile71)_ 3.72810344370267820e+05 +Total_plasma_ion_pressure_at_point_72____________________________________ (pres_plasma_ion_total_profile72)_ 3.72432659839282802e+05 +Total_plasma_ion_pressure_at_point_73____________________________________ (pres_plasma_ion_total_profile73)_ 3.72049928558426385e+05 +Total_plasma_ion_pressure_at_point_74____________________________________ (pres_plasma_ion_total_profile74)_ 3.71662160304491234e+05 +Total_plasma_ion_pressure_at_point_75____________________________________ (pres_plasma_ion_total_profile75)_ 3.71269364986512344e+05 +Total_plasma_ion_pressure_at_point_76____________________________________ (pres_plasma_ion_total_profile76)_ 3.70871552645658376e+05 +Total_plasma_ion_pressure_at_point_77____________________________________ (pres_plasma_ion_total_profile77)_ 3.70468733455123671e+05 +Total_plasma_ion_pressure_at_point_78____________________________________ (pres_plasma_ion_total_profile78)_ 3.70060917720017140e+05 +Total_plasma_ion_pressure_at_point_79____________________________________ (pres_plasma_ion_total_profile79)_ 3.69648115877251432e+05 +Total_plasma_ion_pressure_at_point_80____________________________________ (pres_plasma_ion_total_profile80)_ 3.69230338495429198e+05 +Total_plasma_ion_pressure_at_point_81____________________________________ (pres_plasma_ion_total_profile81)_ 3.68807596274728305e+05 +Total_plasma_ion_pressure_at_point_82____________________________________ (pres_plasma_ion_total_profile82)_ 3.68379900046785537e+05 +Total_plasma_ion_pressure_at_point_83____________________________________ (pres_plasma_ion_total_profile83)_ 3.67947260774579947e+05 +Total_plasma_ion_pressure_at_point_84____________________________________ (pres_plasma_ion_total_profile84)_ 3.67509689552312659e+05 +Total_plasma_ion_pressure_at_point_85____________________________________ (pres_plasma_ion_total_profile85)_ 3.67067197605287132e+05 +Total_plasma_ion_pressure_at_point_86____________________________________ (pres_plasma_ion_total_profile86)_ 3.66619796289786231e+05 +Total_plasma_ion_pressure_at_point_87____________________________________ (pres_plasma_ion_total_profile87)_ 3.66167497092949867e+05 +Total_plasma_ion_pressure_at_point_88____________________________________ (pres_plasma_ion_total_profile88)_ 3.65710311632649333e+05 +Total_plasma_ion_pressure_at_point_89____________________________________ (pres_plasma_ion_total_profile89)_ 3.65248251657361106e+05 +Total_plasma_ion_pressure_at_point_90____________________________________ (pres_plasma_ion_total_profile90)_ 3.64781329046038911e+05 +Total_plasma_ion_pressure_at_point_91____________________________________ (pres_plasma_ion_total_profile91)_ 3.64309555807984667e+05 +Total_plasma_ion_pressure_at_point_92____________________________________ (pres_plasma_ion_total_profile92)_ 3.63832944082717295e+05 +Total_plasma_ion_pressure_at_point_93____________________________________ (pres_plasma_ion_total_profile93)_ 3.63351506139841105e+05 +Total_plasma_ion_pressure_at_point_94____________________________________ (pres_plasma_ion_total_profile94)_ 3.62865254378911108e+05 +Total_plasma_ion_pressure_at_point_95____________________________________ (pres_plasma_ion_total_profile95)_ 3.62374201329298841e+05 +Total_plasma_ion_pressure_at_point_96____________________________________ (pres_plasma_ion_total_profile96)_ 3.61878359650055529e+05 +Total_plasma_ion_pressure_at_point_97____________________________________ (pres_plasma_ion_total_profile97)_ 3.61377742129773251e+05 +Total_plasma_ion_pressure_at_point_98____________________________________ (pres_plasma_ion_total_profile98)_ 3.60872361686446413e+05 +Total_plasma_ion_pressure_at_point_99____________________________________ (pres_plasma_ion_total_profile99)_ 3.60362231367330125e+05 +Total_plasma_ion_pressure_at_point_100___________________________________ (pres_plasma_ion_total_profile100)_ 3.59847364348798117e+05 +Total_plasma_ion_pressure_at_point_101___________________________________ (pres_plasma_ion_total_profile101)_ 3.59327773936198151e+05 +Total_plasma_ion_pressure_at_point_102___________________________________ (pres_plasma_ion_total_profile102)_ 3.58803473563707666e+05 +Total_plasma_ion_pressure_at_point_103___________________________________ (pres_plasma_ion_total_profile103)_ 3.58274476794186048e+05 +Total_plasma_ion_pressure_at_point_104___________________________________ (pres_plasma_ion_total_profile104)_ 3.57740797319026955e+05 +Total_plasma_ion_pressure_at_point_105___________________________________ (pres_plasma_ion_total_profile105)_ 3.57202448958008201e+05 +Total_plasma_ion_pressure_at_point_106___________________________________ (pres_plasma_ion_total_profile106)_ 3.56659445659140358e+05 +Total_plasma_ion_pressure_at_point_107___________________________________ (pres_plasma_ion_total_profile107)_ 3.56111801498515124e+05 +Total_plasma_ion_pressure_at_point_108___________________________________ (pres_plasma_ion_total_profile108)_ 3.55559530680149794e+05 +Total_plasma_ion_pressure_at_point_109___________________________________ (pres_plasma_ion_total_profile109)_ 3.55002647535832890e+05 +Total_plasma_ion_pressure_at_point_110___________________________________ (pres_plasma_ion_total_profile110)_ 3.54441166524966422e+05 +Total_plasma_ion_pressure_at_point_111___________________________________ (pres_plasma_ion_total_profile111)_ 3.53875102234408085e+05 +Total_plasma_ion_pressure_at_point_112___________________________________ (pres_plasma_ion_total_profile112)_ 3.53304469378310663e+05 +Total_plasma_ion_pressure_at_point_113___________________________________ (pres_plasma_ion_total_profile113)_ 3.52729282797961088e+05 +Total_plasma_ion_pressure_at_point_114___________________________________ (pres_plasma_ion_total_profile114)_ 3.52149557461617340e+05 +Total_plasma_ion_pressure_at_point_115___________________________________ (pres_plasma_ion_total_profile115)_ 3.51565308464344707e+05 +Total_plasma_ion_pressure_at_point_116___________________________________ (pres_plasma_ion_total_profile116)_ 3.50976551027849724e+05 +Total_plasma_ion_pressure_at_point_117___________________________________ (pres_plasma_ion_total_profile117)_ 3.50383300500312878e+05 +Total_plasma_ion_pressure_at_point_118___________________________________ (pres_plasma_ion_total_profile118)_ 3.49785572356220509e+05 +Total_plasma_ion_pressure_at_point_119___________________________________ (pres_plasma_ion_total_profile119)_ 3.49183382196194434e+05 +Total_plasma_ion_pressure_at_point_120___________________________________ (pres_plasma_ion_total_profile120)_ 3.48576745746820467e+05 +Total_plasma_ion_pressure_at_point_121___________________________________ (pres_plasma_ion_total_profile121)_ 3.47965678860475949e+05 +Total_plasma_ion_pressure_at_point_122___________________________________ (pres_plasma_ion_total_profile122)_ 3.47350197515154665e+05 +Total_plasma_ion_pressure_at_point_123___________________________________ (pres_plasma_ion_total_profile123)_ 3.46730317814291979e+05 +Total_plasma_ion_pressure_at_point_124___________________________________ (pres_plasma_ion_total_profile124)_ 3.46106055986586725e+05 +Total_plasma_ion_pressure_at_point_125___________________________________ (pres_plasma_ion_total_profile125)_ 3.45477428385823616e+05 +Total_plasma_ion_pressure_at_point_126___________________________________ (pres_plasma_ion_total_profile126)_ 3.44844451490692096e+05 +Total_plasma_ion_pressure_at_point_127___________________________________ (pres_plasma_ion_total_profile127)_ 3.44207141904605494e+05 +Total_plasma_ion_pressure_at_point_128___________________________________ (pres_plasma_ion_total_profile128)_ 3.43565516355517786e+05 +Total_plasma_ion_pressure_at_point_129___________________________________ (pres_plasma_ion_total_profile129)_ 3.42919591695739829e+05 +Total_plasma_ion_pressure_at_point_130___________________________________ (pres_plasma_ion_total_profile130)_ 3.42269384901752928e+05 +Total_plasma_ion_pressure_at_point_131___________________________________ (pres_plasma_ion_total_profile131)_ 3.41614913074021810e+05 +Total_plasma_ion_pressure_at_point_132___________________________________ (pres_plasma_ion_total_profile132)_ 3.40956193436806439e+05 +Total_plasma_ion_pressure_at_point_133___________________________________ (pres_plasma_ion_total_profile133)_ 3.40293243337971449e+05 +Total_plasma_ion_pressure_at_point_134___________________________________ (pres_plasma_ion_total_profile134)_ 3.39626080248794984e+05 +Total_plasma_ion_pressure_at_point_135___________________________________ (pres_plasma_ion_total_profile135)_ 3.38954721763775975e+05 +Total_plasma_ion_pressure_at_point_136___________________________________ (pres_plasma_ion_total_profile136)_ 3.38279185600439901e+05 +Total_plasma_ion_pressure_at_point_137___________________________________ (pres_plasma_ion_total_profile137)_ 3.37599489599142340e+05 +Total_plasma_ion_pressure_at_point_138___________________________________ (pres_plasma_ion_total_profile138)_ 3.36915651722873386e+05 +Total_plasma_ion_pressure_at_point_139___________________________________ (pres_plasma_ion_total_profile139)_ 3.36227690057057829e+05 +Total_plasma_ion_pressure_at_point_140___________________________________ (pres_plasma_ion_total_profile140)_ 3.35535622809356195e+05 +Total_plasma_ion_pressure_at_point_141___________________________________ (pres_plasma_ion_total_profile141)_ 3.34839468309462769e+05 +Total_plasma_ion_pressure_at_point_142___________________________________ (pres_plasma_ion_total_profile142)_ 3.34139245008903788e+05 +Total_plasma_ion_pressure_at_point_143___________________________________ (pres_plasma_ion_total_profile143)_ 3.33434971480832959e+05 +Total_plasma_ion_pressure_at_point_144___________________________________ (pres_plasma_ion_total_profile144)_ 3.32726666419825691e+05 +Total_plasma_ion_pressure_at_point_145___________________________________ (pres_plasma_ion_total_profile145)_ 3.32014348641673103e+05 +Total_plasma_ion_pressure_at_point_146___________________________________ (pres_plasma_ion_total_profile146)_ 3.31298037083173578e+05 +Total_plasma_ion_pressure_at_point_147___________________________________ (pres_plasma_ion_total_profile147)_ 3.30577750801922753e+05 +Total_plasma_ion_pressure_at_point_148___________________________________ (pres_plasma_ion_total_profile148)_ 3.29853508976103330e+05 +Total_plasma_ion_pressure_at_point_149___________________________________ (pres_plasma_ion_total_profile149)_ 3.29125330904272327e+05 +Total_plasma_ion_pressure_at_point_150___________________________________ (pres_plasma_ion_total_profile150)_ 3.28393236005147861e+05 +Total_plasma_ion_pressure_at_point_151___________________________________ (pres_plasma_ion_total_profile151)_ 3.27657243817393726e+05 +Total_plasma_ion_pressure_at_point_152___________________________________ (pres_plasma_ion_total_profile152)_ 3.26917373999403208e+05 +Total_plasma_ion_pressure_at_point_153___________________________________ (pres_plasma_ion_total_profile153)_ 3.26173646329081967e+05 +Total_plasma_ion_pressure_at_point_154___________________________________ (pres_plasma_ion_total_profile154)_ 3.25426080703627842e+05 +Total_plasma_ion_pressure_at_point_155___________________________________ (pres_plasma_ion_total_profile155)_ 3.24674697139311815e+05 +Total_plasma_ion_pressure_at_point_156___________________________________ (pres_plasma_ion_total_profile156)_ 3.23919515771255596e+05 +Total_plasma_ion_pressure_at_point_157___________________________________ (pres_plasma_ion_total_profile157)_ 3.23160556853208400e+05 +Total_plasma_ion_pressure_at_point_158___________________________________ (pres_plasma_ion_total_profile158)_ 3.22397840757323313e+05 +Total_plasma_ion_pressure_at_point_159___________________________________ (pres_plasma_ion_total_profile159)_ 3.21631387973931152e+05 +Total_plasma_ion_pressure_at_point_160___________________________________ (pres_plasma_ion_total_profile160)_ 3.20861219111313636e+05 +Total_plasma_ion_pressure_at_point_161___________________________________ (pres_plasma_ion_total_profile161)_ 3.20087354895475321e+05 +Total_plasma_ion_pressure_at_point_162___________________________________ (pres_plasma_ion_total_profile162)_ 3.19309816169913742e+05 +Total_plasma_ion_pressure_at_point_163___________________________________ (pres_plasma_ion_total_profile163)_ 3.18528623895388562e+05 +Total_plasma_ion_pressure_at_point_164___________________________________ (pres_plasma_ion_total_profile164)_ 3.17743799149689905e+05 +Total_plasma_ion_pressure_at_point_165___________________________________ (pres_plasma_ion_total_profile165)_ 3.16955363127404300e+05 +Total_plasma_ion_pressure_at_point_166___________________________________ (pres_plasma_ion_total_profile166)_ 3.16163337139680574e+05 +Total_plasma_ion_pressure_at_point_167___________________________________ (pres_plasma_ion_total_profile167)_ 3.15367742613993643e+05 +Total_plasma_ion_pressure_at_point_168___________________________________ (pres_plasma_ion_total_profile168)_ 3.14568601093907142e+05 +Total_plasma_ion_pressure_at_point_169___________________________________ (pres_plasma_ion_total_profile169)_ 3.13765934238835645e+05 +Total_plasma_ion_pressure_at_point_170___________________________________ (pres_plasma_ion_total_profile170)_ 3.12959763823804038e+05 +Total_plasma_ion_pressure_at_point_171___________________________________ (pres_plasma_ion_total_profile171)_ 3.12150111739207408e+05 +Total_plasma_ion_pressure_at_point_172___________________________________ (pres_plasma_ion_total_profile172)_ 3.11336999990568438e+05 +Total_plasma_ion_pressure_at_point_173___________________________________ (pres_plasma_ion_total_profile173)_ 3.10520450698294269e+05 +Total_plasma_ion_pressure_at_point_174___________________________________ (pres_plasma_ion_total_profile174)_ 3.09700486097431974e+05 +Total_plasma_ion_pressure_at_point_175___________________________________ (pres_plasma_ion_total_profile175)_ 3.08877128537422745e+05 +Total_plasma_ion_pressure_at_point_176___________________________________ (pres_plasma_ion_total_profile176)_ 3.08050400481854624e+05 +Total_plasma_ion_pressure_at_point_177___________________________________ (pres_plasma_ion_total_profile177)_ 3.07220324508215126e+05 +Total_plasma_ion_pressure_at_point_178___________________________________ (pres_plasma_ion_total_profile178)_ 3.06386923307641002e+05 +Total_plasma_ion_pressure_at_point_179___________________________________ (pres_plasma_ion_total_profile179)_ 3.05550219684668817e+05 +Total_plasma_ion_pressure_at_point_180___________________________________ (pres_plasma_ion_total_profile180)_ 3.04710236556982505e+05 +Total_plasma_ion_pressure_at_point_181___________________________________ (pres_plasma_ion_total_profile181)_ 3.03866996955161216e+05 +Total_plasma_ion_pressure_at_point_182___________________________________ (pres_plasma_ion_total_profile182)_ 3.03020524022425176e+05 +Total_plasma_ion_pressure_at_point_183___________________________________ (pres_plasma_ion_total_profile183)_ 3.02170841014380509e+05 +Total_plasma_ion_pressure_at_point_184___________________________________ (pres_plasma_ion_total_profile184)_ 3.01317971298763936e+05 +Total_plasma_ion_pressure_at_point_185___________________________________ (pres_plasma_ion_total_profile185)_ 3.00461938355184917e+05 +Total_plasma_ion_pressure_at_point_186___________________________________ (pres_plasma_ion_total_profile186)_ 2.99602765774867497e+05 +Total_plasma_ion_pressure_at_point_187___________________________________ (pres_plasma_ion_total_profile187)_ 2.98740477260391461e+05 +Total_plasma_ion_pressure_at_point_188___________________________________ (pres_plasma_ion_total_profile188)_ 2.97875096625431499e+05 +Total_plasma_ion_pressure_at_point_189___________________________________ (pres_plasma_ion_total_profile189)_ 2.97006647794496326e+05 +Total_plasma_ion_pressure_at_point_190___________________________________ (pres_plasma_ion_total_profile190)_ 2.96135154802665638e+05 +Total_plasma_ion_pressure_at_point_191___________________________________ (pres_plasma_ion_total_profile191)_ 2.95260641795327596e+05 +Total_plasma_ion_pressure_at_point_192___________________________________ (pres_plasma_ion_total_profile192)_ 2.94383133027913282e+05 +Total_plasma_ion_pressure_at_point_193___________________________________ (pres_plasma_ion_total_profile193)_ 2.93502652865632670e+05 +Total_plasma_ion_pressure_at_point_194___________________________________ (pres_plasma_ion_total_profile194)_ 2.92619225783207105e+05 +Total_plasma_ion_pressure_at_point_195___________________________________ (pres_plasma_ion_total_profile195)_ 2.91732876364602940e+05 +Total_plasma_ion_pressure_at_point_196___________________________________ (pres_plasma_ion_total_profile196)_ 2.90843629302762682e+05 +Total_plasma_ion_pressure_at_point_197___________________________________ (pres_plasma_ion_total_profile197)_ 2.89951509399336472e+05 +Total_plasma_ion_pressure_at_point_198___________________________________ (pres_plasma_ion_total_profile198)_ 2.89056541564411484e+05 +Total_plasma_ion_pressure_at_point_199___________________________________ (pres_plasma_ion_total_profile199)_ 2.88158750816241780e+05 +Total_plasma_ion_pressure_at_point_200___________________________________ (pres_plasma_ion_total_profile200)_ 2.87258162280975899e+05 +Total_plasma_ion_pressure_at_point_201___________________________________ (pres_plasma_ion_total_profile201)_ 2.86354801192384737e+05 +Total_plasma_ion_pressure_at_point_202___________________________________ (pres_plasma_ion_total_profile202)_ 2.85448692891588144e+05 +Total_plasma_ion_pressure_at_point_203___________________________________ (pres_plasma_ion_total_profile203)_ 2.84539862826780591e+05 +Total_plasma_ion_pressure_at_point_204___________________________________ (pres_plasma_ion_total_profile204)_ 2.83628336552956665e+05 +Total_plasma_ion_pressure_at_point_205___________________________________ (pres_plasma_ion_total_profile205)_ 2.82714139731634932e+05 +Total_plasma_ion_pressure_at_point_206___________________________________ (pres_plasma_ion_total_profile206)_ 2.81797298130581737e+05 +Total_plasma_ion_pressure_at_point_207___________________________________ (pres_plasma_ion_total_profile207)_ 2.80877837623534084e+05 +Total_plasma_ion_pressure_at_point_208___________________________________ (pres_plasma_ion_total_profile208)_ 2.79955784189922037e+05 +Total_plasma_ion_pressure_at_point_209___________________________________ (pres_plasma_ion_total_profile209)_ 2.79031163914590259e+05 +Total_plasma_ion_pressure_at_point_210___________________________________ (pres_plasma_ion_total_profile210)_ 2.78104002987518616e+05 +Total_plasma_ion_pressure_at_point_211___________________________________ (pres_plasma_ion_total_profile211)_ 2.77174327703543182e+05 +Total_plasma_ion_pressure_at_point_212___________________________________ (pres_plasma_ion_total_profile212)_ 2.76242164462075219e+05 +Total_plasma_ion_pressure_at_point_213___________________________________ (pres_plasma_ion_total_profile213)_ 2.75307539766821079e+05 +Total_plasma_ion_pressure_at_point_214___________________________________ (pres_plasma_ion_total_profile214)_ 2.74370480225500534e+05 +Total_plasma_ion_pressure_at_point_215___________________________________ (pres_plasma_ion_total_profile215)_ 2.73431012549565232e+05 +Total_plasma_ion_pressure_at_point_216___________________________________ (pres_plasma_ion_total_profile216)_ 2.72489163553916384e+05 +Total_plasma_ion_pressure_at_point_217___________________________________ (pres_plasma_ion_total_profile217)_ 2.71544960156621935e+05 +Total_plasma_ion_pressure_at_point_218___________________________________ (pres_plasma_ion_total_profile218)_ 2.70598429378634086e+05 +Total_plasma_ion_pressure_at_point_219___________________________________ (pres_plasma_ion_total_profile219)_ 2.69649598343504651e+05 +Total_plasma_ion_pressure_at_point_220___________________________________ (pres_plasma_ion_total_profile220)_ 2.68698494277102989e+05 +Total_plasma_ion_pressure_at_point_221___________________________________ (pres_plasma_ion_total_profile221)_ 2.67745144507330551e+05 +Total_plasma_ion_pressure_at_point_222___________________________________ (pres_plasma_ion_total_profile222)_ 2.66789576463837351e+05 +Total_plasma_ion_pressure_at_point_223___________________________________ (pres_plasma_ion_total_profile223)_ 2.65831817677737214e+05 +Total_plasma_ion_pressure_at_point_224___________________________________ (pres_plasma_ion_total_profile224)_ 2.64871895781323139e+05 +Total_plasma_ion_pressure_at_point_225___________________________________ (pres_plasma_ion_total_profile225)_ 2.63909838507782493e+05 +Total_plasma_ion_pressure_at_point_226___________________________________ (pres_plasma_ion_total_profile226)_ 2.62945673690912023e+05 +Total_plasma_ion_pressure_at_point_227___________________________________ (pres_plasma_ion_total_profile227)_ 2.61979429264832608e+05 +Total_plasma_ion_pressure_at_point_228___________________________________ (pres_plasma_ion_total_profile228)_ 2.61011133263704716e+05 +Total_plasma_ion_pressure_at_point_229___________________________________ (pres_plasma_ion_total_profile229)_ 2.60040813821443444e+05 +Total_plasma_ion_pressure_at_point_230___________________________________ (pres_plasma_ion_total_profile230)_ 2.59068499171432981e+05 +Total_plasma_ion_pressure_at_point_231___________________________________ (pres_plasma_ion_total_profile231)_ 2.58094217646242294e+05 +Total_plasma_ion_pressure_at_point_232___________________________________ (pres_plasma_ion_total_profile232)_ 2.57117997677340725e+05 +Total_plasma_ion_pressure_at_point_233___________________________________ (pres_plasma_ion_total_profile233)_ 2.56139867794812919e+05 +Total_plasma_ion_pressure_at_point_234___________________________________ (pres_plasma_ion_total_profile234)_ 2.55159856627075176e+05 +Total_plasma_ion_pressure_at_point_235___________________________________ (pres_plasma_ion_total_profile235)_ 2.54177992900591635e+05 +Total_plasma_ion_pressure_at_point_236___________________________________ (pres_plasma_ion_total_profile236)_ 2.53194305439590360e+05 +Total_plasma_ion_pressure_at_point_237___________________________________ (pres_plasma_ion_total_profile237)_ 2.52208823165780981e+05 +Total_plasma_ion_pressure_at_point_238___________________________________ (pres_plasma_ion_total_profile238)_ 2.51221575098071946e+05 +Total_plasma_ion_pressure_at_point_239___________________________________ (pres_plasma_ion_total_profile239)_ 2.50232590352288156e+05 +Total_plasma_ion_pressure_at_point_240___________________________________ (pres_plasma_ion_total_profile240)_ 2.49241898140890116e+05 +Total_plasma_ion_pressure_at_point_241___________________________________ (pres_plasma_ion_total_profile241)_ 2.48249527772692905e+05 +Total_plasma_ion_pressure_at_point_242___________________________________ (pres_plasma_ion_total_profile242)_ 2.47255508652586432e+05 +Total_plasma_ion_pressure_at_point_243___________________________________ (pres_plasma_ion_total_profile243)_ 2.46259870281256182e+05 +Total_plasma_ion_pressure_at_point_244___________________________________ (pres_plasma_ion_total_profile244)_ 2.45262642254905048e+05 +Total_plasma_ion_pressure_at_point_245___________________________________ (pres_plasma_ion_total_profile245)_ 2.44263854264975380e+05 +Total_plasma_ion_pressure_at_point_246___________________________________ (pres_plasma_ion_total_profile246)_ 2.43263536097873963e+05 +Total_plasma_ion_pressure_at_point_247___________________________________ (pres_plasma_ion_total_profile247)_ 2.42261717634695407e+05 +Total_plasma_ion_pressure_at_point_248___________________________________ (pres_plasma_ion_total_profile248)_ 2.41258428850948781e+05 +Total_plasma_ion_pressure_at_point_249___________________________________ (pres_plasma_ion_total_profile249)_ 2.40253699816284439e+05 +Total_plasma_ion_pressure_at_point_250___________________________________ (pres_plasma_ion_total_profile250)_ 2.39247560694223444e+05 +Total_plasma_ion_pressure_at_point_251___________________________________ (pres_plasma_ion_total_profile251)_ 2.38240041741885652e+05 +Total_plasma_ion_pressure_at_point_252___________________________________ (pres_plasma_ion_total_profile252)_ 2.37231173309723643e+05 +Total_plasma_ion_pressure_at_point_253___________________________________ (pres_plasma_ion_total_profile253)_ 2.36220985841252987e+05 +Total_plasma_ion_pressure_at_point_254___________________________________ (pres_plasma_ion_total_profile254)_ 2.35209509872789233e+05 +Total_plasma_ion_pressure_at_point_255___________________________________ (pres_plasma_ion_total_profile255)_ 2.34196776033182919e+05 +Total_plasma_ion_pressure_at_point_256___________________________________ (pres_plasma_ion_total_profile256)_ 2.33182815043558861e+05 +Total_plasma_ion_pressure_at_point_257___________________________________ (pres_plasma_ion_total_profile257)_ 2.32167657717055670e+05 +Total_plasma_ion_pressure_at_point_258___________________________________ (pres_plasma_ion_total_profile258)_ 2.31151334958568914e+05 +Total_plasma_ion_pressure_at_point_259___________________________________ (pres_plasma_ion_total_profile259)_ 2.30133877764495090e+05 +Total_plasma_ion_pressure_at_point_260___________________________________ (pres_plasma_ion_total_profile260)_ 2.29115317222479061e+05 +Total_plasma_ion_pressure_at_point_261___________________________________ (pres_plasma_ion_total_profile261)_ 2.28095684511162777e+05 +Total_plasma_ion_pressure_at_point_262___________________________________ (pres_plasma_ion_total_profile262)_ 2.27075010899937915e+05 +Total_plasma_ion_pressure_at_point_263___________________________________ (pres_plasma_ion_total_profile263)_ 2.26053327748699696e+05 +Total_plasma_ion_pressure_at_point_264___________________________________ (pres_plasma_ion_total_profile264)_ 2.25030666507604619e+05 +Total_plasma_ion_pressure_at_point_265___________________________________ (pres_plasma_ion_total_profile265)_ 2.24007058716830390e+05 +Total_plasma_ion_pressure_at_point_266___________________________________ (pres_plasma_ion_total_profile266)_ 2.22982536006339418e+05 +Total_plasma_ion_pressure_at_point_267___________________________________ (pres_plasma_ion_total_profile267)_ 2.21957130095644941e+05 +Total_plasma_ion_pressure_at_point_268___________________________________ (pres_plasma_ion_total_profile268)_ 2.20930872793581599e+05 +Total_plasma_ion_pressure_at_point_269___________________________________ (pres_plasma_ion_total_profile269)_ 2.19903795998077432e+05 +Total_plasma_ion_pressure_at_point_270___________________________________ (pres_plasma_ion_total_profile270)_ 2.18875931695932319e+05 +Total_plasma_ion_pressure_at_point_271___________________________________ (pres_plasma_ion_total_profile271)_ 2.17847311962596868e+05 +Total_plasma_ion_pressure_at_point_272___________________________________ (pres_plasma_ion_total_profile272)_ 2.16817968961958715e+05 +Total_plasma_ion_pressure_at_point_273___________________________________ (pres_plasma_ion_total_profile273)_ 2.15787934946130175e+05 +Total_plasma_ion_pressure_at_point_274___________________________________ (pres_plasma_ion_total_profile274)_ 2.14757242255241988e+05 +Total_plasma_ion_pressure_at_point_275___________________________________ (pres_plasma_ion_total_profile275)_ 2.13725923317240056e+05 +Total_plasma_ion_pressure_at_point_276___________________________________ (pres_plasma_ion_total_profile276)_ 2.12694010647688207e+05 +Total_plasma_ion_pressure_at_point_277___________________________________ (pres_plasma_ion_total_profile277)_ 2.11661536849575146e+05 +Total_plasma_ion_pressure_at_point_278___________________________________ (pres_plasma_ion_total_profile278)_ 2.10628534613126103e+05 +Total_plasma_ion_pressure_at_point_279___________________________________ (pres_plasma_ion_total_profile279)_ 2.09595036715620285e+05 +Total_plasma_ion_pressure_at_point_280___________________________________ (pres_plasma_ion_total_profile280)_ 2.08561076021214074e+05 +Total_plasma_ion_pressure_at_point_281___________________________________ (pres_plasma_ion_total_profile281)_ 2.07526685480768589e+05 +Total_plasma_ion_pressure_at_point_282___________________________________ (pres_plasma_ion_total_profile282)_ 2.06491898131684633e+05 +Total_plasma_ion_pressure_at_point_283___________________________________ (pres_plasma_ion_total_profile283)_ 2.05456747097742540e+05 +Total_plasma_ion_pressure_at_point_284___________________________________ (pres_plasma_ion_total_profile284)_ 2.04421265588949755e+05 +Total_plasma_ion_pressure_at_point_285___________________________________ (pres_plasma_ion_total_profile285)_ 2.03385486901393480e+05 +Total_plasma_ion_pressure_at_point_286___________________________________ (pres_plasma_ion_total_profile286)_ 2.02349444417101244e+05 +Total_plasma_ion_pressure_at_point_287___________________________________ (pres_plasma_ion_total_profile287)_ 2.01313171603908384e+05 +Total_plasma_ion_pressure_at_point_288___________________________________ (pres_plasma_ion_total_profile288)_ 2.00276702015332499e+05 +Total_plasma_ion_pressure_at_point_289___________________________________ (pres_plasma_ion_total_profile289)_ 1.99240069290456449e+05 +Total_plasma_ion_pressure_at_point_290___________________________________ (pres_plasma_ion_total_profile290)_ 1.98203307153818314e+05 +Total_plasma_ion_pressure_at_point_291___________________________________ (pres_plasma_ion_total_profile291)_ 1.97166449415310693e+05 +Total_plasma_ion_pressure_at_point_292___________________________________ (pres_plasma_ion_total_profile292)_ 1.96129529970087548e+05 +Total_plasma_ion_pressure_at_point_293___________________________________ (pres_plasma_ion_total_profile293)_ 1.95092582798480726e+05 +Total_plasma_ion_pressure_at_point_294___________________________________ (pres_plasma_ion_total_profile294)_ 1.94055641965925548e+05 +Total_plasma_ion_pressure_at_point_295___________________________________ (pres_plasma_ion_total_profile295)_ 1.93018741622896050e+05 +Total_plasma_ion_pressure_at_point_296___________________________________ (pres_plasma_ion_total_profile296)_ 1.91981916004849772e+05 +Total_plasma_ion_pressure_at_point_297___________________________________ (pres_plasma_ion_total_profile297)_ 1.90945199432183639e+05 +Total_plasma_ion_pressure_at_point_298___________________________________ (pres_plasma_ion_total_profile298)_ 1.89908626310199790e+05 +Total_plasma_ion_pressure_at_point_299___________________________________ (pres_plasma_ion_total_profile299)_ 1.88872231129083288e+05 +Total_plasma_ion_pressure_at_point_300___________________________________ (pres_plasma_ion_total_profile300)_ 1.87836048463890387e+05 +Total_plasma_ion_pressure_at_point_301___________________________________ (pres_plasma_ion_total_profile301)_ 1.86800112974550429e+05 +Total_plasma_ion_pressure_at_point_302___________________________________ (pres_plasma_ion_total_profile302)_ 1.85764459405877948e+05 +Total_plasma_ion_pressure_at_point_303___________________________________ (pres_plasma_ion_total_profile303)_ 1.84729122587599297e+05 +Total_plasma_ion_pressure_at_point_304___________________________________ (pres_plasma_ion_total_profile304)_ 1.83694137434392353e+05 +Total_plasma_ion_pressure_at_point_305___________________________________ (pres_plasma_ion_total_profile305)_ 1.82659538945939654e+05 +Total_plasma_ion_pressure_at_point_306___________________________________ (pres_plasma_ion_total_profile306)_ 1.81625362206996127e+05 +Total_plasma_ion_pressure_at_point_307___________________________________ (pres_plasma_ion_total_profile307)_ 1.80591642387471657e+05 +Total_plasma_ion_pressure_at_point_308___________________________________ (pres_plasma_ion_total_profile308)_ 1.79558414742529043e+05 +Total_plasma_ion_pressure_at_point_309___________________________________ (pres_plasma_ion_total_profile309)_ 1.78525714612698677e+05 +Total_plasma_ion_pressure_at_point_310___________________________________ (pres_plasma_ion_total_profile310)_ 1.77493577424008399e+05 +Total_plasma_ion_pressure_at_point_311___________________________________ (pres_plasma_ion_total_profile311)_ 1.76462038688132365e+05 +Total_plasma_ion_pressure_at_point_312___________________________________ (pres_plasma_ion_total_profile312)_ 1.75431134002555744e+05 +Total_plasma_ion_pressure_at_point_313___________________________________ (pres_plasma_ion_total_profile313)_ 1.74400899050760549e+05 +Total_plasma_ion_pressure_at_point_314___________________________________ (pres_plasma_ion_total_profile314)_ 1.73371369602427847e+05 +Total_plasma_ion_pressure_at_point_315___________________________________ (pres_plasma_ion_total_profile315)_ 1.72342581513662386e+05 +Total_plasma_ion_pressure_at_point_316___________________________________ (pres_plasma_ion_total_profile316)_ 1.71314570727236191e+05 +Total_plasma_ion_pressure_at_point_317___________________________________ (pres_plasma_ion_total_profile317)_ 1.70287373272854951e+05 +Total_plasma_ion_pressure_at_point_318___________________________________ (pres_plasma_ion_total_profile318)_ 1.69261025267445337e+05 +Total_plasma_ion_pressure_at_point_319___________________________________ (pres_plasma_ion_total_profile319)_ 1.68235562915467046e+05 +Total_plasma_ion_pressure_at_point_320___________________________________ (pres_plasma_ion_total_profile320)_ 1.67211022509247065e+05 +Total_plasma_ion_pressure_at_point_321___________________________________ (pres_plasma_ion_total_profile321)_ 1.66187440429340350e+05 +Total_plasma_ion_pressure_at_point_322___________________________________ (pres_plasma_ion_total_profile322)_ 1.65164853144915600e+05 +Total_plasma_ion_pressure_at_point_323___________________________________ (pres_plasma_ion_total_profile323)_ 1.64143297214167978e+05 +Total_plasma_ion_pressure_at_point_324___________________________________ (pres_plasma_ion_total_profile324)_ 1.63122809284759482e+05 +Total_plasma_ion_pressure_at_point_325___________________________________ (pres_plasma_ion_total_profile325)_ 1.62103426094288909e+05 +Total_plasma_ion_pressure_at_point_326___________________________________ (pres_plasma_ion_total_profile326)_ 1.61085184470790700e+05 +Total_plasma_ion_pressure_at_point_327___________________________________ (pres_plasma_ion_total_profile327)_ 1.60068121333266259e+05 +Total_plasma_ion_pressure_at_point_328___________________________________ (pres_plasma_ion_total_profile328)_ 1.59052273692246265e+05 +Total_plasma_ion_pressure_at_point_329___________________________________ (pres_plasma_ion_total_profile329)_ 1.58037678650388145e+05 +Total_plasma_ion_pressure_at_point_330___________________________________ (pres_plasma_ion_total_profile330)_ 1.57024373403106758e+05 +Total_plasma_ion_pressure_at_point_331___________________________________ (pres_plasma_ion_total_profile331)_ 1.56012395239242847e+05 +Total_plasma_ion_pressure_at_point_332___________________________________ (pres_plasma_ion_total_profile332)_ 1.55001781541767908e+05 +Total_plasma_ion_pressure_at_point_333___________________________________ (pres_plasma_ion_total_profile333)_ 1.53992569788529392e+05 +Total_plasma_ion_pressure_at_point_334___________________________________ (pres_plasma_ion_total_profile334)_ 1.52984797553035867e+05 +Total_plasma_ion_pressure_at_point_335___________________________________ (pres_plasma_ion_total_profile335)_ 1.51978502505284385e+05 +Total_plasma_ion_pressure_at_point_336___________________________________ (pres_plasma_ion_total_profile336)_ 1.50973722412632429e+05 +Total_plasma_ion_pressure_at_point_337___________________________________ (pres_plasma_ion_total_profile337)_ 1.49970495140715124e+05 +Total_plasma_ion_pressure_at_point_338___________________________________ (pres_plasma_ion_total_profile338)_ 1.48968858654410054e+05 +Total_plasma_ion_pressure_at_point_339___________________________________ (pres_plasma_ion_total_profile339)_ 1.47968851018851856e+05 +Total_plasma_ion_pressure_at_point_340___________________________________ (pres_plasma_ion_total_profile340)_ 1.46970510400497791e+05 +Total_plasma_ion_pressure_at_point_341___________________________________ (pres_plasma_ion_total_profile341)_ 1.45973875068247027e+05 +Total_plasma_ion_pressure_at_point_342___________________________________ (pres_plasma_ion_total_profile342)_ 1.44978983394616080e+05 +Total_plasma_ion_pressure_at_point_343___________________________________ (pres_plasma_ion_total_profile343)_ 1.43985873856971448e+05 +Total_plasma_ion_pressure_at_point_344___________________________________ (pres_plasma_ion_total_profile344)_ 1.42994585038823599e+05 +Total_plasma_ion_pressure_at_point_345___________________________________ (pres_plasma_ion_total_profile345)_ 1.42005155631182512e+05 +Total_plasma_ion_pressure_at_point_346___________________________________ (pres_plasma_ion_total_profile346)_ 1.41017624433980265e+05 +Total_plasma_ion_pressure_at_point_347___________________________________ (pres_plasma_ion_total_profile347)_ 1.40032030357560579e+05 +Total_plasma_ion_pressure_at_point_348___________________________________ (pres_plasma_ion_total_profile348)_ 1.39048412424240174e+05 +Total_plasma_ion_pressure_at_point_349___________________________________ (pres_plasma_ion_total_profile349)_ 1.38066809769943764e+05 +Total_plasma_ion_pressure_at_point_350___________________________________ (pres_plasma_ion_total_profile350)_ 1.37087261645916762e+05 +Total_plasma_ion_pressure_at_point_351___________________________________ (pres_plasma_ion_total_profile351)_ 1.36109807420517725e+05 +Total_plasma_ion_pressure_at_point_352___________________________________ (pres_plasma_ion_total_profile352)_ 1.35134486581096106e+05 +Total_plasma_ion_pressure_at_point_353___________________________________ (pres_plasma_ion_total_profile353)_ 1.34161338735955855e+05 +Total_plasma_ion_pressure_at_point_354___________________________________ (pres_plasma_ion_total_profile354)_ 1.33190403616412106e+05 +Total_plasma_ion_pressure_at_point_355___________________________________ (pres_plasma_ion_total_profile355)_ 1.32221721078942326e+05 +Total_plasma_ion_pressure_at_point_356___________________________________ (pres_plasma_ion_total_profile356)_ 1.31255331107437232e+05 +Total_plasma_ion_pressure_at_point_357___________________________________ (pres_plasma_ion_total_profile357)_ 1.30291273815556022e+05 +Total_plasma_ion_pressure_at_point_358___________________________________ (pres_plasma_ion_total_profile358)_ 1.29329589449190069e+05 +Total_plasma_ion_pressure_at_point_359___________________________________ (pres_plasma_ion_total_profile359)_ 1.28370318389040011e+05 +Total_plasma_ion_pressure_at_point_360___________________________________ (pres_plasma_ion_total_profile360)_ 1.27413501153312289e+05 +Total_plasma_ion_pressure_at_point_361___________________________________ (pres_plasma_ion_total_profile361)_ 1.26459178400538673e+05 +Total_plasma_ion_pressure_at_point_362___________________________________ (pres_plasma_ion_total_profile362)_ 1.25507390932526512e+05 +Total_plasma_ion_pressure_at_point_363___________________________________ (pres_plasma_ion_total_profile363)_ 1.24558179697444255e+05 +Total_plasma_ion_pressure_at_point_364___________________________________ (pres_plasma_ion_total_profile364)_ 1.23611585793049351e+05 +Total_plasma_ion_pressure_at_point_365___________________________________ (pres_plasma_ion_total_profile365)_ 1.22667650470064778e+05 +Total_plasma_ion_pressure_at_point_366___________________________________ (pres_plasma_ion_total_profile366)_ 1.21726415135711432e+05 +Total_plasma_ion_pressure_at_point_367___________________________________ (pres_plasma_ion_total_profile367)_ 1.20787921357403655e+05 +Total_plasma_ion_pressure_at_point_368___________________________________ (pres_plasma_ion_total_profile368)_ 1.19852210866616006e+05 +Total_plasma_ion_pressure_at_point_369___________________________________ (pres_plasma_ion_total_profile369)_ 1.18919325562928949e+05 +Total_plasma_ion_pressure_at_point_370___________________________________ (pres_plasma_ion_total_profile370)_ 1.17989307518263086e+05 +Total_plasma_ion_pressure_at_point_371___________________________________ (pres_plasma_ion_total_profile371)_ 1.17062198981310357e+05 +Total_plasma_ion_pressure_at_point_372___________________________________ (pres_plasma_ion_total_profile372)_ 1.16138042382172440e+05 +Total_plasma_ion_pressure_at_point_373___________________________________ (pres_plasma_ion_total_profile373)_ 1.15216880337216397e+05 +Total_plasma_ion_pressure_at_point_374___________________________________ (pres_plasma_ion_total_profile374)_ 1.14298755654159220e+05 +Total_plasma_ion_pressure_at_point_375___________________________________ (pres_plasma_ion_total_profile375)_ 1.13383711337391607e+05 +Total_plasma_ion_pressure_at_point_376___________________________________ (pres_plasma_ion_total_profile376)_ 1.12471790593554833e+05 +Total_plasma_ion_pressure_at_point_377___________________________________ (pres_plasma_ion_total_profile377)_ 1.11563036837382329e+05 +Total_plasma_ion_pressure_at_point_378___________________________________ (pres_plasma_ion_total_profile378)_ 1.10657493697821090e+05 +Total_plasma_ion_pressure_at_point_379___________________________________ (pres_plasma_ion_total_profile379)_ 1.09755205024446710e+05 +Total_plasma_ion_pressure_at_point_380___________________________________ (pres_plasma_ion_total_profile380)_ 1.08856214894187855e+05 +Total_plasma_ion_pressure_at_point_381___________________________________ (pres_plasma_ion_total_profile381)_ 1.07960567618377900e+05 +Total_plasma_ion_pressure_at_point_382___________________________________ (pres_plasma_ion_total_profile382)_ 1.07068307750149179e+05 +Total_plasma_ion_pressure_at_point_383___________________________________ (pres_plasma_ion_total_profile383)_ 1.06179480092191283e+05 +Total_plasma_ion_pressure_at_point_384___________________________________ (pres_plasma_ion_total_profile384)_ 1.05294129704891544e+05 +Total_plasma_ion_pressure_at_point_385___________________________________ (pres_plasma_ion_total_profile385)_ 1.04412301914880358e+05 +Total_plasma_ion_pressure_at_point_386___________________________________ (pres_plasma_ion_total_profile386)_ 1.03534042324002978e+05 +Total_plasma_ion_pressure_at_point_387___________________________________ (pres_plasma_ion_total_profile387)_ 1.02659396818743757e+05 +Total_plasma_ion_pressure_at_point_388___________________________________ (pres_plasma_ion_total_profile388)_ 1.01788411580127417e+05 +Total_plasma_ion_pressure_at_point_389___________________________________ (pres_plasma_ion_total_profile389)_ 1.00921133094126097e+05 +Total_plasma_ion_pressure_at_point_390___________________________________ (pres_plasma_ion_total_profile390)_ 1.00057608162601435e+05 +Total_plasma_ion_pressure_at_point_391___________________________________ (pres_plasma_ion_total_profile391)_ 9.91978839148146653e+04 +Total_plasma_ion_pressure_at_point_392___________________________________ (pres_plasma_ion_total_profile392)_ 9.83420078195371461e+04 +Total_plasma_ion_pressure_at_point_393___________________________________ (pres_plasma_ion_total_profile393)_ 9.74900276978000911e+04 +Total_plasma_ion_pressure_at_point_394___________________________________ (pres_plasma_ion_total_profile394)_ 9.66419917363214481e+04 +Total_plasma_ion_pressure_at_point_395___________________________________ (pres_plasma_ion_total_profile395)_ 9.57979485016529215e+04 +Total_plasma_ion_pressure_at_point_396___________________________________ (pres_plasma_ion_total_profile396)_ 9.49579469550922950e+04 +Total_plasma_ion_pressure_at_point_397___________________________________ (pres_plasma_ion_total_profile397)_ 9.41220364684108936e+04 +Total_plasma_ion_pressure_at_point_398___________________________________ (pres_plasma_ion_total_profile398)_ 9.32902668404477590e+04 +Total_plasma_ion_pressure_at_point_399___________________________________ (pres_plasma_ion_total_profile399)_ 9.24626883146289183e+04 +Total_plasma_ion_pressure_at_point_400___________________________________ (pres_plasma_ion_total_profile400)_ 9.16393515974717302e+04 +Total_plasma_ion_pressure_at_point_401___________________________________ (pres_plasma_ion_total_profile401)_ 9.08203078781425866e+04 +Total_plasma_ion_pressure_at_point_402___________________________________ (pres_plasma_ion_total_profile402)_ 9.00056088491376431e+04 +Total_plasma_ion_pressure_at_point_403___________________________________ (pres_plasma_ion_total_profile403)_ 8.91953067281669064e+04 +Total_plasma_ion_pressure_at_point_404___________________________________ (pres_plasma_ion_total_profile404)_ 8.83894542813236767e+04 +Total_plasma_ion_pressure_at_point_405___________________________________ (pres_plasma_ion_total_profile405)_ 8.75881048476331489e+04 +Total_plasma_ion_pressure_at_point_406___________________________________ (pres_plasma_ion_total_profile406)_ 8.67913123650778580e+04 +Total_plasma_ion_pressure_at_point_407___________________________________ (pres_plasma_ion_total_profile407)_ 8.59991313982097781e+04 +Total_plasma_ion_pressure_at_point_408___________________________________ (pres_plasma_ion_total_profile408)_ 8.52116171674655052e+04 +Total_plasma_ion_pressure_at_point_409___________________________________ (pres_plasma_ion_total_profile409)_ 8.44288255803154316e+04 +Total_plasma_ion_pressure_at_point_410___________________________________ (pres_plasma_ion_total_profile410)_ 8.36508132643845456e+04 +Total_plasma_ion_pressure_at_point_411___________________________________ (pres_plasma_ion_total_profile411)_ 8.28776376027015795e+04 +Total_plasma_ion_pressure_at_point_412___________________________________ (pres_plasma_ion_total_profile412)_ 8.21093567712421354e+04 +Total_plasma_ion_pressure_at_point_413___________________________________ (pres_plasma_ion_total_profile413)_ 8.13460297789526667e+04 +Total_plasma_ion_pressure_at_point_414___________________________________ (pres_plasma_ion_total_profile414)_ 8.05877165104563319e+04 +Total_plasma_ion_pressure_at_point_415___________________________________ (pres_plasma_ion_total_profile415)_ 7.98344777716651879e+04 +Total_plasma_ion_pressure_at_point_416___________________________________ (pres_plasma_ion_total_profile416)_ 7.90863753385438467e+04 +Total_plasma_ion_pressure_at_point_417___________________________________ (pres_plasma_ion_total_profile417)_ 7.83434720092959906e+04 +Total_plasma_ion_pressure_at_point_418___________________________________ (pres_plasma_ion_total_profile418)_ 7.76058316602743143e+04 +Total_plasma_ion_pressure_at_point_419___________________________________ (pres_plasma_ion_total_profile419)_ 7.68735193059458106e+04 +Total_plasma_ion_pressure_at_point_420___________________________________ (pres_plasma_ion_total_profile420)_ 7.61466011632814334e+04 +Total_plasma_ion_pressure_at_point_421___________________________________ (pres_plasma_ion_total_profile421)_ 7.54251447209804755e+04 +Total_plasma_ion_pressure_at_point_422___________________________________ (pres_plasma_ion_total_profile422)_ 7.47092188139862556e+04 +Total_plasma_ion_pressure_at_point_423___________________________________ (pres_plasma_ion_total_profile423)_ 7.39988937038040312e+04 +Total_plasma_ion_pressure_at_point_424___________________________________ (pres_plasma_ion_total_profile424)_ 7.32942411651909060e+04 +Total_plasma_ion_pressure_at_point_425___________________________________ (pres_plasma_ion_total_profile425)_ 7.25953345798595838e+04 +Total_plasma_ion_pressure_at_point_426___________________________________ (pres_plasma_ion_total_profile426)_ 7.19022490379138762e+04 +Total_plasma_ion_pressure_at_point_427___________________________________ (pres_plasma_ion_total_profile427)_ 7.12150614478283533e+04 +Total_plasma_ion_pressure_at_point_428___________________________________ (pres_plasma_ion_total_profile428)_ 7.05338506558879744e+04 +Total_plasma_ion_pressure_at_point_429___________________________________ (pres_plasma_ion_total_profile429)_ 6.98586975761253125e+04 +Total_plasma_ion_pressure_at_point_430___________________________________ (pres_plasma_ion_total_profile430)_ 6.91896853319350485e+04 +Total_plasma_ion_pressure_at_point_431___________________________________ (pres_plasma_ion_total_profile431)_ 6.85268994107088511e+04 +Total_plasma_ion_pressure_at_point_432___________________________________ (pres_plasma_ion_total_profile432)_ 6.78704278330263187e+04 +Total_plasma_ion_pressure_at_point_433___________________________________ (pres_plasma_ion_total_profile433)_ 6.72203613381618488e+04 +Total_plasma_ion_pressure_at_point_434___________________________________ (pres_plasma_ion_total_profile434)_ 6.65767935879338766e+04 +Total_plasma_ion_pressure_at_point_435___________________________________ (pres_plasma_ion_total_profile435)_ 6.59398213912333449e+04 +Total_plasma_ion_pressure_at_point_436___________________________________ (pres_plasma_ion_total_profile436)_ 6.53095449519434114e+04 +Total_plasma_ion_pressure_at_point_437___________________________________ (pres_plasma_ion_total_profile437)_ 6.46860681434018261e+04 +Total_plasma_ion_pressure_at_point_438___________________________________ (pres_plasma_ion_total_profile438)_ 6.40694988130925849e+04 +Total_plasma_ion_pressure_at_point_439___________________________________ (pres_plasma_ion_total_profile439)_ 6.34599491218893963e+04 +Total_plasma_ion_pressure_at_point_440___________________________________ (pres_plasma_ion_total_profile440)_ 6.28575359229518435e+04 +Total_plasma_ion_pressure_at_point_441___________________________________ (pres_plasma_ion_total_profile441)_ 6.22623811863160154e+04 +Total_plasma_ion_pressure_at_point_442___________________________________ (pres_plasma_ion_total_profile442)_ 6.16746124763797852e+04 +Total_plasma_ion_pressure_at_point_443___________________________________ (pres_plasma_ion_total_profile443)_ 6.10943634909081302e+04 +Total_plasma_ion_pressure_at_point_444___________________________________ (pres_plasma_ion_total_profile444)_ 6.05217746719566276e+04 +Total_plasma_ion_pressure_at_point_445___________________________________ (pres_plasma_ion_total_profile445)_ 5.99569939013262992e+04 +Total_plasma_ion_pressure_at_point_446___________________________________ (pres_plasma_ion_total_profile446)_ 5.94001772959604059e+04 +Total_plasma_ion_pressure_at_point_447___________________________________ (pres_plasma_ion_total_profile447)_ 5.88514901222478220e+04 +Total_plasma_ion_pressure_at_point_448___________________________________ (pres_plasma_ion_total_profile448)_ 5.83111078527638092e+04 +Total_plasma_ion_pressure_at_point_449___________________________________ (pres_plasma_ion_total_profile449)_ 5.77792173948951095e+04 +Total_plasma_ion_pressure_at_point_450___________________________________ (pres_plasma_ion_total_profile450)_ 5.72560185285532643e+04 +Total_plasma_ion_pressure_at_point_451___________________________________ (pres_plasma_ion_total_profile451)_ 5.67417256004608280e+04 +Total_plasma_ion_pressure_at_point_452___________________________________ (pres_plasma_ion_total_profile452)_ 5.62365695363045306e+04 +Total_plasma_ion_pressure_at_point_453___________________________________ (pres_plasma_ion_total_profile453)_ 5.57408002508527134e+04 +Total_plasma_ion_pressure_at_point_454___________________________________ (pres_plasma_ion_total_profile454)_ 5.52546895621393705e+04 +Total_plasma_ion_pressure_at_point_455___________________________________ (pres_plasma_ion_total_profile455)_ 5.47785347523969613e+04 +Total_plasma_ion_pressure_at_point_456___________________________________ (pres_plasma_ion_total_profile456)_ 5.43126629708632463e+04 +Total_plasma_ion_pressure_at_point_457___________________________________ (pres_plasma_ion_total_profile457)_ 5.38574367503814356e+04 +Total_plasma_ion_pressure_at_point_458___________________________________ (pres_plasma_ion_total_profile458)_ 5.34132610249008067e+04 +Total_plasma_ion_pressure_at_point_459___________________________________ (pres_plasma_ion_total_profile459)_ 5.29805922125222423e+04 +Total_plasma_ion_pressure_at_point_460___________________________________ (pres_plasma_ion_total_profile460)_ 5.25599502110798057e+04 +Total_plasma_ion_pressure_at_point_461___________________________________ (pres_plasma_ion_total_profile461)_ 5.21519346188779091e+04 +Total_plasma_ion_pressure_at_point_462___________________________________ (pres_plasma_ion_total_profile462)_ 5.17572472946204871e+04 +Total_plasma_ion_pressure_at_point_463___________________________________ (pres_plasma_ion_total_profile463)_ 5.13767248221878253e+04 +Total_plasma_ion_pressure_at_point_464___________________________________ (pres_plasma_ion_total_profile464)_ 5.10113872441232743e+04 +Total_plasma_ion_pressure_at_point_465___________________________________ (pres_plasma_ion_total_profile465)_ 5.06625152580444628e+04 +Total_plasma_ion_pressure_at_point_466___________________________________ (pres_plasma_ion_total_profile466)_ 5.03317815036517859e+04 +Total_plasma_ion_pressure_at_point_467___________________________________ (pres_plasma_ion_total_profile467)_ 5.00214970413050978e+04 +Total_plasma_ion_pressure_at_point_468___________________________________ (pres_plasma_ion_total_profile468)_ 4.97351484501312661e+04 +Total_plasma_ion_pressure_at_point_469___________________________________ (pres_plasma_ion_total_profile469)_ 4.94789162531766488e+04 +Total_plasma_ion_pressure_at_point_470___________________________________ (pres_plasma_ion_total_profile470)_ 4.92710362117433251e+04 +Total_plasma_ion_pressure_at_point_471___________________________________ (pres_plasma_ion_total_profile471)_ 4.70043928916850855e+04 +Total_plasma_ion_pressure_at_point_472___________________________________ (pres_plasma_ion_total_profile472)_ 4.47820144597742910e+04 +Total_plasma_ion_pressure_at_point_473___________________________________ (pres_plasma_ion_total_profile473)_ 4.26039009160109563e+04 +Total_plasma_ion_pressure_at_point_474___________________________________ (pres_plasma_ion_total_profile474)_ 4.04700522603950740e+04 +Total_plasma_ion_pressure_at_point_475___________________________________ (pres_plasma_ion_total_profile475)_ 3.83804684929266150e+04 +Total_plasma_ion_pressure_at_point_476___________________________________ (pres_plasma_ion_total_profile476)_ 3.63351496136056303e+04 +Total_plasma_ion_pressure_at_point_477___________________________________ (pres_plasma_ion_total_profile477)_ 3.43340956224320762e+04 +Total_plasma_ion_pressure_at_point_478___________________________________ (pres_plasma_ion_total_profile478)_ 3.23773065194059891e+04 +Total_plasma_ion_pressure_at_point_479___________________________________ (pres_plasma_ion_total_profile479)_ 3.04647823045273326e+04 +Total_plasma_ion_pressure_at_point_480___________________________________ (pres_plasma_ion_total_profile480)_ 2.85965229777961322e+04 +Total_plasma_ion_pressure_at_point_481___________________________________ (pres_plasma_ion_total_profile481)_ 2.67725285392123697e+04 +Total_plasma_ion_pressure_at_point_482___________________________________ (pres_plasma_ion_total_profile482)_ 2.49927989887760741e+04 +Total_plasma_ion_pressure_at_point_483___________________________________ (pres_plasma_ion_total_profile483)_ 2.32573343264872165e+04 +Total_plasma_ion_pressure_at_point_484___________________________________ (pres_plasma_ion_total_profile484)_ 2.15661345523458149e+04 +Total_plasma_ion_pressure_at_point_485___________________________________ (pres_plasma_ion_total_profile485)_ 1.99191996663518512e+04 +Total_plasma_ion_pressure_at_point_486___________________________________ (pres_plasma_ion_total_profile486)_ 1.83165296685053399e+04 +Total_plasma_ion_pressure_at_point_487___________________________________ (pres_plasma_ion_total_profile487)_ 1.67581245588062811e+04 +Total_plasma_ion_pressure_at_point_488___________________________________ (pres_plasma_ion_total_profile488)_ 1.52439843372546657e+04 +Total_plasma_ion_pressure_at_point_489___________________________________ (pres_plasma_ion_total_profile489)_ 1.37741090038504990e+04 +Total_plasma_ion_pressure_at_point_490___________________________________ (pres_plasma_ion_total_profile490)_ 1.23484985585937848e+04 +Total_plasma_ion_pressure_at_point_491___________________________________ (pres_plasma_ion_total_profile491)_ 1.09671530014845157e+04 +Total_plasma_ion_pressure_at_point_492___________________________________ (pres_plasma_ion_total_profile492)_ 9.63007233252269543e+03 +Total_plasma_ion_pressure_at_point_493___________________________________ (pres_plasma_ion_total_profile493)_ 8.33725655170832761e+03 +Total_plasma_ion_pressure_at_point_494___________________________________ (pres_plasma_ion_total_profile494)_ 7.08870565904140585e+03 +Total_plasma_ion_pressure_at_point_495___________________________________ (pres_plasma_ion_total_profile495)_ 5.88441965452193108e+03 +Total_plasma_ion_pressure_at_point_496___________________________________ (pres_plasma_ion_total_profile496)_ 4.72439853814990602e+03 +Total_plasma_ion_pressure_at_point_497___________________________________ (pres_plasma_ion_total_profile497)_ 3.60864230992532976e+03 +Total_plasma_ion_pressure_at_point_498___________________________________ (pres_plasma_ion_total_profile498)_ 2.53715096984820229e+03 +Total_plasma_ion_pressure_at_point_499___________________________________ (pres_plasma_ion_total_profile499)_ 1.50992451791852295e+03 +Total_plasma_ion_pressure_at_point_500___________________________________ (pres_plasma_ion_total_profile500)_ 5.26962954136292296e+02 +Total_plasma_fuel_pressure_at_point_0____________________________________ (pres_plasma_fuel_profile0)____ 3.52232761187787750e+05 +Total_plasma_fuel_pressure_at_point_1____________________________________ (pres_plasma_fuel_profile1)____ 3.52230300045956683e+05 +Total_plasma_fuel_pressure_at_point_2____________________________________ (pres_plasma_fuel_profile2)____ 3.52222916682530660e+05 +Total_plasma_fuel_pressure_at_point_3____________________________________ (pres_plasma_fuel_profile3)____ 3.52210611283709994e+05 +Total_plasma_fuel_pressure_at_point_4____________________________________ (pres_plasma_fuel_profile4)____ 3.52193384159826499e+05 +Total_plasma_fuel_pressure_at_point_5____________________________________ (pres_plasma_fuel_profile5)____ 3.52171235745340353e+05 +Total_plasma_fuel_pressure_at_point_6____________________________________ (pres_plasma_fuel_profile6)____ 3.52144166598834738e+05 +Total_plasma_fuel_pressure_at_point_7____________________________________ (pres_plasma_fuel_profile7)____ 3.52112177403010661e+05 +Total_plasma_fuel_pressure_at_point_8____________________________________ (pres_plasma_fuel_profile8)____ 3.52075268964679039e+05 +Total_plasma_fuel_pressure_at_point_9____________________________________ (pres_plasma_fuel_profile9)____ 3.52033442214752256e+05 +Total_plasma_fuel_pressure_at_point_10___________________________________ (pres_plasma_fuel_profile10)___ 3.51986698208234506e+05 +Total_plasma_fuel_pressure_at_point_11___________________________________ (pres_plasma_fuel_profile11)___ 3.51935038124210085e+05 +Total_plasma_fuel_pressure_at_point_12___________________________________ (pres_plasma_fuel_profile12)___ 3.51878463265830826e+05 +Total_plasma_fuel_pressure_at_point_13___________________________________ (pres_plasma_fuel_profile13)___ 3.51816975060302182e+05 +Total_plasma_fuel_pressure_at_point_14___________________________________ (pres_plasma_fuel_profile14)___ 3.51750575058868271e+05 +Total_plasma_fuel_pressure_at_point_15___________________________________ (pres_plasma_fuel_profile15)___ 3.51679264936794527e+05 +Total_plasma_fuel_pressure_at_point_16___________________________________ (pres_plasma_fuel_profile16)___ 3.51603046493350528e+05 +Total_plasma_fuel_pressure_at_point_17___________________________________ (pres_plasma_fuel_profile17)___ 3.51521921651790268e+05 +Total_plasma_fuel_pressure_at_point_18___________________________________ (pres_plasma_fuel_profile18)___ 3.51435892459331721e+05 +Total_plasma_fuel_pressure_at_point_19___________________________________ (pres_plasma_fuel_profile19)___ 3.51344961087134550e+05 +Total_plasma_fuel_pressure_at_point_20___________________________________ (pres_plasma_fuel_profile20)___ 3.51249129830277467e+05 +Total_plasma_fuel_pressure_at_point_21___________________________________ (pres_plasma_fuel_profile21)___ 3.51148401107733371e+05 +Total_plasma_fuel_pressure_at_point_22___________________________________ (pres_plasma_fuel_profile22)___ 3.51042777462343045e+05 +Total_plasma_fuel_pressure_at_point_23___________________________________ (pres_plasma_fuel_profile23)___ 3.50932261560788320e+05 +Total_plasma_fuel_pressure_at_point_24___________________________________ (pres_plasma_fuel_profile24)___ 3.50816856193563610e+05 +Total_plasma_fuel_pressure_at_point_25___________________________________ (pres_plasma_fuel_profile25)___ 3.50696564274945587e+05 +Total_plasma_fuel_pressure_at_point_26___________________________________ (pres_plasma_fuel_profile26)___ 3.50571388842961867e+05 +Total_plasma_fuel_pressure_at_point_27___________________________________ (pres_plasma_fuel_profile27)___ 3.50441333059359167e+05 +Total_plasma_fuel_pressure_at_point_28___________________________________ (pres_plasma_fuel_profile28)___ 3.50306400209568790e+05 +Total_plasma_fuel_pressure_at_point_29___________________________________ (pres_plasma_fuel_profile29)___ 3.50166593702671293e+05 +Total_plasma_fuel_pressure_at_point_30___________________________________ (pres_plasma_fuel_profile30)___ 3.50021917071360105e+05 +Total_plasma_fuel_pressure_at_point_31___________________________________ (pres_plasma_fuel_profile31)___ 3.49872373971904221e+05 +Total_plasma_fuel_pressure_at_point_32___________________________________ (pres_plasma_fuel_profile32)___ 3.49717968184107682e+05 +Total_plasma_fuel_pressure_at_point_33___________________________________ (pres_plasma_fuel_profile33)___ 3.49558703611270292e+05 +Total_plasma_fuel_pressure_at_point_34___________________________________ (pres_plasma_fuel_profile34)___ 3.49394584280144772e+05 +Total_plasma_fuel_pressure_at_point_35___________________________________ (pres_plasma_fuel_profile35)___ 3.49225614340894390e+05 +Total_plasma_fuel_pressure_at_point_36___________________________________ (pres_plasma_fuel_profile36)___ 3.49051798067047494e+05 +Total_plasma_fuel_pressure_at_point_37___________________________________ (pres_plasma_fuel_profile37)___ 3.48873139855452464e+05 +Total_plasma_fuel_pressure_at_point_38___________________________________ (pres_plasma_fuel_profile38)___ 3.48689644226229808e+05 +Total_plasma_fuel_pressure_at_point_39___________________________________ (pres_plasma_fuel_profile39)___ 3.48501315822724311e+05 +Total_plasma_fuel_pressure_at_point_40___________________________________ (pres_plasma_fuel_profile40)___ 3.48308159411454166e+05 +Total_plasma_fuel_pressure_at_point_41___________________________________ (pres_plasma_fuel_profile41)___ 3.48110179882060969e+05 +Total_plasma_fuel_pressure_at_point_42___________________________________ (pres_plasma_fuel_profile42)___ 3.47907382247256231e+05 +Total_plasma_fuel_pressure_at_point_43___________________________________ (pres_plasma_fuel_profile43)___ 3.47699771642767941e+05 +Total_plasma_fuel_pressure_at_point_44___________________________________ (pres_plasma_fuel_profile44)___ 3.47487353327285033e+05 +Total_plasma_fuel_pressure_at_point_45___________________________________ (pres_plasma_fuel_profile45)___ 3.47270132682401454e+05 +Total_plasma_fuel_pressure_at_point_46___________________________________ (pres_plasma_fuel_profile46)___ 3.47048115212557605e+05 +Total_plasma_fuel_pressure_at_point_47___________________________________ (pres_plasma_fuel_profile47)___ 3.46821306544981198e+05 +Total_plasma_fuel_pressure_at_point_48___________________________________ (pres_plasma_fuel_profile48)___ 3.46589712429627485e+05 +Total_plasma_fuel_pressure_at_point_49___________________________________ (pres_plasma_fuel_profile49)___ 3.46353338739116269e+05 +Total_plasma_fuel_pressure_at_point_50___________________________________ (pres_plasma_fuel_profile50)___ 3.46112191468669800e+05 +Total_plasma_fuel_pressure_at_point_51___________________________________ (pres_plasma_fuel_profile51)___ 3.45866276736047061e+05 +Total_plasma_fuel_pressure_at_point_52___________________________________ (pres_plasma_fuel_profile52)___ 3.45615600781478977e+05 +Total_plasma_fuel_pressure_at_point_53___________________________________ (pres_plasma_fuel_profile53)___ 3.45360169967600494e+05 +Total_plasma_fuel_pressure_at_point_54___________________________________ (pres_plasma_fuel_profile54)___ 3.45099990779382468e+05 +Total_plasma_fuel_pressure_at_point_55___________________________________ (pres_plasma_fuel_profile55)___ 3.44835069824061415e+05 +Total_plasma_fuel_pressure_at_point_56___________________________________ (pres_plasma_fuel_profile56)___ 3.44565413831068901e+05 +Total_plasma_fuel_pressure_at_point_57___________________________________ (pres_plasma_fuel_profile57)___ 3.44291029651957855e+05 +Total_plasma_fuel_pressure_at_point_58___________________________________ (pres_plasma_fuel_profile58)___ 3.44011924260330095e+05 +Total_plasma_fuel_pressure_at_point_59___________________________________ (pres_plasma_fuel_profile59)___ 3.43728104751760198e+05 +Total_plasma_fuel_pressure_at_point_60___________________________________ (pres_plasma_fuel_profile60)___ 3.43439578343719011e+05 +Total_plasma_fuel_pressure_at_point_61___________________________________ (pres_plasma_fuel_profile61)___ 3.43146352375496353e+05 +Total_plasma_fuel_pressure_at_point_62___________________________________ (pres_plasma_fuel_profile62)___ 3.42848434308120923e+05 +Total_plasma_fuel_pressure_at_point_63___________________________________ (pres_plasma_fuel_profile63)___ 3.42545831724280608e+05 +Total_plasma_fuel_pressure_at_point_64___________________________________ (pres_plasma_fuel_profile64)___ 3.42238552328240068e+05 +Total_plasma_fuel_pressure_at_point_65___________________________________ (pres_plasma_fuel_profile65)___ 3.41926603945757670e+05 +Total_plasma_fuel_pressure_at_point_66___________________________________ (pres_plasma_fuel_profile66)___ 3.41609994524000911e+05 +Total_plasma_fuel_pressure_at_point_67___________________________________ (pres_plasma_fuel_profile67)___ 3.41288732131460623e+05 +Total_plasma_fuel_pressure_at_point_68___________________________________ (pres_plasma_fuel_profile68)___ 3.40962824957863428e+05 +Total_plasma_fuel_pressure_at_point_69___________________________________ (pres_plasma_fuel_profile69)___ 3.40632281314083841e+05 +Total_plasma_fuel_pressure_at_point_70___________________________________ (pres_plasma_fuel_profile70)___ 3.40297109632053296e+05 +Total_plasma_fuel_pressure_at_point_71___________________________________ (pres_plasma_fuel_profile71)___ 3.39957318464670330e+05 +Total_plasma_fuel_pressure_at_point_72___________________________________ (pres_plasma_fuel_profile72)___ 3.39612916485706635e+05 +Total_plasma_fuel_pressure_at_point_73___________________________________ (pres_plasma_fuel_profile73)___ 3.39263912489714334e+05 +Total_plasma_fuel_pressure_at_point_74___________________________________ (pres_plasma_fuel_profile74)___ 3.38910315391929413e+05 +Total_plasma_fuel_pressure_at_point_75___________________________________ (pres_plasma_fuel_profile75)___ 3.38552134228176728e+05 +Total_plasma_fuel_pressure_at_point_76___________________________________ (pres_plasma_fuel_profile76)___ 3.38189378154770820e+05 +Total_plasma_fuel_pressure_at_point_77___________________________________ (pres_plasma_fuel_profile77)___ 3.37822056448417425e+05 +Total_plasma_fuel_pressure_at_point_78___________________________________ (pres_plasma_fuel_profile78)___ 3.37450178506112192e+05 +Total_plasma_fuel_pressure_at_point_79___________________________________ (pres_plasma_fuel_profile79)___ 3.37073753845039755e+05 +Total_plasma_fuel_pressure_at_point_80___________________________________ (pres_plasma_fuel_profile80)___ 3.36692792102469481e+05 +Total_plasma_fuel_pressure_at_point_81___________________________________ (pres_plasma_fuel_profile81)___ 3.36307303035651857e+05 +Total_plasma_fuel_pressure_at_point_82___________________________________ (pres_plasma_fuel_profile82)___ 3.35917296521711163e+05 +Total_plasma_fuel_pressure_at_point_83___________________________________ (pres_plasma_fuel_profile83)___ 3.35522782557539991e+05 +Total_plasma_fuel_pressure_at_point_84___________________________________ (pres_plasma_fuel_profile84)___ 3.35123771259689471e+05 +Total_plasma_fuel_pressure_at_point_85___________________________________ (pres_plasma_fuel_profile85)___ 3.34720272864259721e+05 +Total_plasma_fuel_pressure_at_point_86___________________________________ (pres_plasma_fuel_profile86)___ 3.34312297726788267e+05 +Total_plasma_fuel_pressure_at_point_87___________________________________ (pres_plasma_fuel_profile87)___ 3.33899856322137988e+05 +Total_plasma_fuel_pressure_at_point_88___________________________________ (pres_plasma_fuel_profile88)___ 3.33482959244382975e+05 +Total_plasma_fuel_pressure_at_point_89___________________________________ (pres_plasma_fuel_profile89)___ 3.33061617206693103e+05 +Total_plasma_fuel_pressure_at_point_90___________________________________ (pres_plasma_fuel_profile90)___ 3.32635841041217442e+05 +Total_plasma_fuel_pressure_at_point_91___________________________________ (pres_plasma_fuel_profile91)___ 3.32205641698966851e+05 +Total_plasma_fuel_pressure_at_point_92___________________________________ (pres_plasma_fuel_profile92)___ 3.31771030249693897e+05 +Total_plasma_fuel_pressure_at_point_93___________________________________ (pres_plasma_fuel_profile93)___ 3.31332017881773121e+05 +Total_plasma_fuel_pressure_at_point_94___________________________________ (pres_plasma_fuel_profile94)___ 3.30888615902078396e+05 +Total_plasma_fuel_pressure_at_point_95___________________________________ (pres_plasma_fuel_profile95)___ 3.30440835735859873e+05 +Total_plasma_fuel_pressure_at_point_96___________________________________ (pres_plasma_fuel_profile96)___ 3.29988688926620118e+05 +Total_plasma_fuel_pressure_at_point_97___________________________________ (pres_plasma_fuel_profile97)___ 3.29532187135986984e+05 +Total_plasma_fuel_pressure_at_point_98___________________________________ (pres_plasma_fuel_profile98)___ 3.29071342143587186e+05 +Total_plasma_fuel_pressure_at_point_99___________________________________ (pres_plasma_fuel_profile99)___ 3.28606165846917604e+05 +Total_plasma_fuel_pressure_at_point_100__________________________________ (pres_plasma_fuel_profile100)__ 3.28136670261215069e+05 +Total_plasma_fuel_pressure_at_point_101__________________________________ (pres_plasma_fuel_profile101)__ 3.27662867519325519e+05 +Total_plasma_fuel_pressure_at_point_102__________________________________ (pres_plasma_fuel_profile102)__ 3.27184769871571218e+05 +Total_plasma_fuel_pressure_at_point_103__________________________________ (pres_plasma_fuel_profile103)__ 3.26702389685616887e+05 +Total_plasma_fuel_pressure_at_point_104__________________________________ (pres_plasma_fuel_profile104)__ 3.26215739446334541e+05 +Total_plasma_fuel_pressure_at_point_105__________________________________ (pres_plasma_fuel_profile105)__ 3.25724831755666935e+05 +Total_plasma_fuel_pressure_at_point_106__________________________________ (pres_plasma_fuel_profile106)__ 3.25229679332489439e+05 +Total_plasma_fuel_pressure_at_point_107__________________________________ (pres_plasma_fuel_profile107)__ 3.24730295012471499e+05 +Total_plasma_fuel_pressure_at_point_108__________________________________ (pres_plasma_fuel_profile108)__ 3.24226691747935198e+05 +Total_plasma_fuel_pressure_at_point_109__________________________________ (pres_plasma_fuel_profile109)__ 3.23718882607714273e+05 +Total_plasma_fuel_pressure_at_point_110__________________________________ (pres_plasma_fuel_profile110)__ 3.23206880777010228e+05 +Total_plasma_fuel_pressure_at_point_111__________________________________ (pres_plasma_fuel_profile111)__ 3.22690699557248561e+05 +Total_plasma_fuel_pressure_at_point_112__________________________________ (pres_plasma_fuel_profile112)__ 3.22170352365932253e+05 +Total_plasma_fuel_pressure_at_point_113__________________________________ (pres_plasma_fuel_profile113)__ 3.21645852736495202e+05 +Total_plasma_fuel_pressure_at_point_114__________________________________ (pres_plasma_fuel_profile114)__ 3.21117214318153157e+05 +Total_plasma_fuel_pressure_at_point_115__________________________________ (pres_plasma_fuel_profile115)__ 3.20584450875754701e+05 +Total_plasma_fuel_pressure_at_point_116__________________________________ (pres_plasma_fuel_profile116)__ 3.20047576289629447e+05 +Total_plasma_fuel_pressure_at_point_117__________________________________ (pres_plasma_fuel_profile117)__ 3.19506604555436235e+05 +Total_plasma_fuel_pressure_at_point_118__________________________________ (pres_plasma_fuel_profile118)__ 3.18961549784008821e+05 +Total_plasma_fuel_pressure_at_point_119__________________________________ (pres_plasma_fuel_profile119)__ 3.18412426201201393e+05 +Total_plasma_fuel_pressure_at_point_120__________________________________ (pres_plasma_fuel_profile120)__ 3.17859248147731763e+05 +Total_plasma_fuel_pressure_at_point_121__________________________________ (pres_plasma_fuel_profile121)__ 3.17302030079024029e+05 +Total_plasma_fuel_pressure_at_point_122__________________________________ (pres_plasma_fuel_profile122)__ 3.16740786565049493e+05 +Total_plasma_fuel_pressure_at_point_123__________________________________ (pres_plasma_fuel_profile123)__ 3.16175532290166302e+05 +Total_plasma_fuel_pressure_at_point_124__________________________________ (pres_plasma_fuel_profile124)__ 3.15606282052957860e+05 +Total_plasma_fuel_pressure_at_point_125__________________________________ (pres_plasma_fuel_profile125)__ 3.15033050766070432e+05 +Total_plasma_fuel_pressure_at_point_126__________________________________ (pres_plasma_fuel_profile126)__ 3.14455853456048120e+05 +Total_plasma_fuel_pressure_at_point_127__________________________________ (pres_plasma_fuel_profile127)__ 3.13874705263167911e+05 +Total_plasma_fuel_pressure_at_point_128__________________________________ (pres_plasma_fuel_profile128)__ 3.13289621441272553e+05 +Total_plasma_fuel_pressure_at_point_129__________________________________ (pres_plasma_fuel_profile129)__ 3.12700617357603041e+05 +Total_plasma_fuel_pressure_at_point_130__________________________________ (pres_plasma_fuel_profile130)__ 3.12107708492628648e+05 +Total_plasma_fuel_pressure_at_point_131__________________________________ (pres_plasma_fuel_profile131)__ 3.11510910439876257e+05 +Total_plasma_fuel_pressure_at_point_132__________________________________ (pres_plasma_fuel_profile132)__ 3.10910238905758772e+05 +Total_plasma_fuel_pressure_at_point_133__________________________________ (pres_plasma_fuel_profile133)__ 3.10305709709401417e+05 +Total_plasma_fuel_pressure_at_point_134__________________________________ (pres_plasma_fuel_profile134)__ 3.09697338782467705e+05 +Total_plasma_fuel_pressure_at_point_135__________________________________ (pres_plasma_fuel_profile135)__ 3.09085142168982944e+05 +Total_plasma_fuel_pressure_at_point_136__________________________________ (pres_plasma_fuel_profile136)__ 3.08469136025157815e+05 +Total_plasma_fuel_pressure_at_point_137__________________________________ (pres_plasma_fuel_profile137)__ 3.07849336619208974e+05 +Total_plasma_fuel_pressure_at_point_138__________________________________ (pres_plasma_fuel_profile138)__ 3.07225760331180645e+05 +Total_plasma_fuel_pressure_at_point_139__________________________________ (pres_plasma_fuel_profile139)__ 3.06598423652762605e+05 +Total_plasma_fuel_pressure_at_point_140__________________________________ (pres_plasma_fuel_profile140)__ 3.05967343187108403e+05 +Total_plasma_fuel_pressure_at_point_141__________________________________ (pres_plasma_fuel_profile141)__ 3.05332535648651712e+05 +Total_plasma_fuel_pressure_at_point_142__________________________________ (pres_plasma_fuel_profile142)__ 3.04694017862921755e+05 +Total_plasma_fuel_pressure_at_point_143__________________________________ (pres_plasma_fuel_profile143)__ 3.04051806766357273e+05 +Total_plasma_fuel_pressure_at_point_144__________________________________ (pres_plasma_fuel_profile144)__ 3.03405919406118686e+05 +Total_plasma_fuel_pressure_at_point_145__________________________________ (pres_plasma_fuel_profile145)__ 3.02756372939899971e+05 +Total_plasma_fuel_pressure_at_point_146__________________________________ (pres_plasma_fuel_profile146)__ 3.02103184635739366e+05 +Total_plasma_fuel_pressure_at_point_147__________________________________ (pres_plasma_fuel_profile147)__ 3.01446371871827112e+05 +Total_plasma_fuel_pressure_at_point_148__________________________________ (pres_plasma_fuel_profile148)__ 3.00785952136314067e+05 +Total_plasma_fuel_pressure_at_point_149__________________________________ (pres_plasma_fuel_profile149)__ 3.00121943027117872e+05 +Total_plasma_fuel_pressure_at_point_150__________________________________ (pres_plasma_fuel_profile150)__ 2.99454362251728191e+05 +Total_plasma_fuel_pressure_at_point_151__________________________________ (pres_plasma_fuel_profile151)__ 2.98783227627010376e+05 +Total_plasma_fuel_pressure_at_point_152__________________________________ (pres_plasma_fuel_profile152)__ 2.98108557079008664e+05 +Total_plasma_fuel_pressure_at_point_153__________________________________ (pres_plasma_fuel_profile153)__ 2.97430368642747635e+05 +Total_plasma_fuel_pressure_at_point_154__________________________________ (pres_plasma_fuel_profile154)__ 2.96748680462032033e+05 +Total_plasma_fuel_pressure_at_point_155__________________________________ (pres_plasma_fuel_profile155)__ 2.96063510789246357e+05 +Total_plasma_fuel_pressure_at_point_156__________________________________ (pres_plasma_fuel_profile156)__ 2.95374877985152474e+05 +Total_plasma_fuel_pressure_at_point_157__________________________________ (pres_plasma_fuel_profile157)__ 2.94682800518686301e+05 +Total_plasma_fuel_pressure_at_point_158__________________________________ (pres_plasma_fuel_profile158)__ 2.93987296966753143e+05 +Total_plasma_fuel_pressure_at_point_159__________________________________ (pres_plasma_fuel_profile159)__ 2.93288386014022166e+05 +Total_plasma_fuel_pressure_at_point_160__________________________________ (pres_plasma_fuel_profile160)__ 2.92586086452719290e+05 +Total_plasma_fuel_pressure_at_point_161__________________________________ (pres_plasma_fuel_profile161)__ 2.91880417182419042e+05 +Total_plasma_fuel_pressure_at_point_162__________________________________ (pres_plasma_fuel_profile162)__ 2.91171397209835239e+05 +Total_plasma_fuel_pressure_at_point_163__________________________________ (pres_plasma_fuel_profile163)__ 2.90459045648610452e+05 +Total_plasma_fuel_pressure_at_point_164__________________________________ (pres_plasma_fuel_profile164)__ 2.89743381719104713e+05 +Total_plasma_fuel_pressure_at_point_165__________________________________ (pres_plasma_fuel_profile165)__ 2.89024424748181773e+05 +Total_plasma_fuel_pressure_at_point_166__________________________________ (pres_plasma_fuel_profile166)__ 2.88302194168996299e+05 +Total_plasma_fuel_pressure_at_point_167__________________________________ (pres_plasma_fuel_profile167)__ 2.87576709520777746e+05 +Total_plasma_fuel_pressure_at_point_168__________________________________ (pres_plasma_fuel_profile168)__ 2.86847990448614466e+05 +Total_plasma_fuel_pressure_at_point_169__________________________________ (pres_plasma_fuel_profile169)__ 2.86116056703236478e+05 +Total_plasma_fuel_pressure_at_point_170__________________________________ (pres_plasma_fuel_profile170)__ 2.85380928140796372e+05 +Total_plasma_fuel_pressure_at_point_171__________________________________ (pres_plasma_fuel_profile171)__ 2.84642624722650333e+05 +Total_plasma_fuel_pressure_at_point_172__________________________________ (pres_plasma_fuel_profile172)__ 2.83901166515136429e+05 +Total_plasma_fuel_pressure_at_point_173__________________________________ (pres_plasma_fuel_profile173)__ 2.83156573689353478e+05 +Total_plasma_fuel_pressure_at_point_174__________________________________ (pres_plasma_fuel_profile174)__ 2.82408866520938056e+05 +Total_plasma_fuel_pressure_at_point_175__________________________________ (pres_plasma_fuel_profile175)__ 2.81658065389839699e+05 +Total_plasma_fuel_pressure_at_point_176__________________________________ (pres_plasma_fuel_profile176)__ 2.80904190780096222e+05 +Total_plasma_fuel_pressure_at_point_177__________________________________ (pres_plasma_fuel_profile177)__ 2.80147263279607811e+05 +Total_plasma_fuel_pressure_at_point_178__________________________________ (pres_plasma_fuel_profile178)__ 2.79387303579908505e+05 +Total_plasma_fuel_pressure_at_point_179__________________________________ (pres_plasma_fuel_profile179)__ 2.78624332475939300e+05 +Total_plasma_fuel_pressure_at_point_180__________________________________ (pres_plasma_fuel_profile180)__ 2.77858370865817822e+05 +Total_plasma_fuel_pressure_at_point_181__________________________________ (pres_plasma_fuel_profile181)__ 2.77089439750608057e+05 +Total_plasma_fuel_pressure_at_point_182__________________________________ (pres_plasma_fuel_profile182)__ 2.76317560234088858e+05 +Total_plasma_fuel_pressure_at_point_183__________________________________ (pres_plasma_fuel_profile183)__ 2.75542753522521409e+05 +Total_plasma_fuel_pressure_at_point_184__________________________________ (pres_plasma_fuel_profile184)__ 2.74765040924416098e+05 +Total_plasma_fuel_pressure_at_point_185__________________________________ (pres_plasma_fuel_profile185)__ 2.73984443850297539e+05 +Total_plasma_fuel_pressure_at_point_186__________________________________ (pres_plasma_fuel_profile186)__ 2.73200983812469349e+05 +Total_plasma_fuel_pressure_at_point_187__________________________________ (pres_plasma_fuel_profile187)__ 2.72414682424777711e+05 +Total_plasma_fuel_pressure_at_point_188__________________________________ (pres_plasma_fuel_profile188)__ 2.71625561402373714e+05 +Total_plasma_fuel_pressure_at_point_189__________________________________ (pres_plasma_fuel_profile189)__ 2.70833642561475688e+05 +Total_plasma_fuel_pressure_at_point_190__________________________________ (pres_plasma_fuel_profile190)__ 2.70038947819128982e+05 +Total_plasma_fuel_pressure_at_point_191__________________________________ (pres_plasma_fuel_profile191)__ 2.69241499192966789e+05 +Total_plasma_fuel_pressure_at_point_192__________________________________ (pres_plasma_fuel_profile192)__ 2.68441318800968060e+05 +Total_plasma_fuel_pressure_at_point_193__________________________________ (pres_plasma_fuel_profile193)__ 2.67638428861216293e+05 +Total_plasma_fuel_pressure_at_point_194__________________________________ (pres_plasma_fuel_profile194)__ 2.66832851691656397e+05 +Total_plasma_fuel_pressure_at_point_195__________________________________ (pres_plasma_fuel_profile195)__ 2.66024609709850920e+05 +Total_plasma_fuel_pressure_at_point_196__________________________________ (pres_plasma_fuel_profile196)__ 2.65213725432735635e+05 +Total_plasma_fuel_pressure_at_point_197__________________________________ (pres_plasma_fuel_profile197)__ 2.64400221476374078e+05 +Total_plasma_fuel_pressure_at_point_198__________________________________ (pres_plasma_fuel_profile198)__ 2.63584120555711212e+05 +Total_plasma_fuel_pressure_at_point_199__________________________________ (pres_plasma_fuel_profile199)__ 2.62765445484326803e+05 +Total_plasma_fuel_pressure_at_point_200__________________________________ (pres_plasma_fuel_profile200)__ 2.61944219174187310e+05 +Total_plasma_fuel_pressure_at_point_201__________________________________ (pres_plasma_fuel_profile201)__ 2.61120464635397540e+05 +Total_plasma_fuel_pressure_at_point_202__________________________________ (pres_plasma_fuel_profile202)__ 2.60294204975951376e+05 +Total_plasma_fuel_pressure_at_point_203__________________________________ (pres_plasma_fuel_profile203)__ 2.59465463401481567e+05 +Total_plasma_fuel_pressure_at_point_204__________________________________ (pres_plasma_fuel_profile204)__ 2.58634263215009560e+05 +Total_plasma_fuel_pressure_at_point_205__________________________________ (pres_plasma_fuel_profile205)__ 2.57800627816693479e+05 +Total_plasma_fuel_pressure_at_point_206__________________________________ (pres_plasma_fuel_profile206)__ 2.56964580703576474e+05 +Total_plasma_fuel_pressure_at_point_207__________________________________ (pres_plasma_fuel_profile207)__ 2.56126145469334064e+05 +Total_plasma_fuel_pressure_at_point_208__________________________________ (pres_plasma_fuel_profile208)__ 2.55285345804020675e+05 +Total_plasma_fuel_pressure_at_point_209__________________________________ (pres_plasma_fuel_profile209)__ 2.54442205493815971e+05 +Total_plasma_fuel_pressure_at_point_210__________________________________ (pres_plasma_fuel_profile210)__ 2.53596748420770193e+05 +Total_plasma_fuel_pressure_at_point_211__________________________________ (pres_plasma_fuel_profile211)__ 2.52748998562549270e+05 +Total_plasma_fuel_pressure_at_point_212__________________________________ (pres_plasma_fuel_profile212)__ 2.51898979992179287e+05 +Total_plasma_fuel_pressure_at_point_213__________________________________ (pres_plasma_fuel_profile213)__ 2.51046716877790255e+05 +Total_plasma_fuel_pressure_at_point_214__________________________________ (pres_plasma_fuel_profile214)__ 2.50192233482359850e+05 +Total_plasma_fuel_pressure_at_point_215__________________________________ (pres_plasma_fuel_profile215)__ 2.49335554163456574e+05 +Total_plasma_fuel_pressure_at_point_216__________________________________ (pres_plasma_fuel_profile216)__ 2.48476703372982214e+05 +Total_plasma_fuel_pressure_at_point_217__________________________________ (pres_plasma_fuel_profile217)__ 2.47615705656913895e+05 +Total_plasma_fuel_pressure_at_point_218__________________________________ (pres_plasma_fuel_profile218)__ 2.46752585655046540e+05 +Total_plasma_fuel_pressure_at_point_219__________________________________ (pres_plasma_fuel_profile219)__ 2.45887368100733496e+05 +Total_plasma_fuel_pressure_at_point_220__________________________________ (pres_plasma_fuel_profile220)__ 2.45020077820628940e+05 +Total_plasma_fuel_pressure_at_point_221__________________________________ (pres_plasma_fuel_profile221)__ 2.44150739734428033e+05 +Total_plasma_fuel_pressure_at_point_222__________________________________ (pres_plasma_fuel_profile222)__ 2.43279378854608018e+05 +Total_plasma_fuel_pressure_at_point_223__________________________________ (pres_plasma_fuel_profile223)__ 2.42406020286168758e+05 +Total_plasma_fuel_pressure_at_point_224__________________________________ (pres_plasma_fuel_profile224)__ 2.41530689226373041e+05 +Total_plasma_fuel_pressure_at_point_225__________________________________ (pres_plasma_fuel_profile225)__ 2.40653410964486859e+05 +Total_plasma_fuel_pressure_at_point_226__________________________________ (pres_plasma_fuel_profile226)__ 2.39774210881520004e+05 +Total_plasma_fuel_pressure_at_point_227__________________________________ (pres_plasma_fuel_profile227)__ 2.38893114449965040e+05 +Total_plasma_fuel_pressure_at_point_228__________________________________ (pres_plasma_fuel_profile228)__ 2.38010147233538883e+05 +Total_plasma_fuel_pressure_at_point_229__________________________________ (pres_plasma_fuel_profile229)__ 2.37125334886922064e+05 +Total_plasma_fuel_pressure_at_point_230__________________________________ (pres_plasma_fuel_profile230)__ 2.36238703155498923e+05 +Total_plasma_fuel_pressure_at_point_231__________________________________ (pres_plasma_fuel_profile231)__ 2.35350277875098080e+05 +Total_plasma_fuel_pressure_at_point_232__________________________________ (pres_plasma_fuel_profile232)__ 2.34460084971733158e+05 +Total_plasma_fuel_pressure_at_point_233__________________________________ (pres_plasma_fuel_profile233)__ 2.33568150461342884e+05 +Total_plasma_fuel_pressure_at_point_234__________________________________ (pres_plasma_fuel_profile234)__ 2.32674500449532410e+05 +Total_plasma_fuel_pressure_at_point_235__________________________________ (pres_plasma_fuel_profile235)__ 2.31779161131314439e+05 +Total_plasma_fuel_pressure_at_point_236__________________________________ (pres_plasma_fuel_profile236)__ 2.30882158790850517e+05 +Total_plasma_fuel_pressure_at_point_237__________________________________ (pres_plasma_fuel_profile237)__ 2.29983519801193179e+05 +Total_plasma_fuel_pressure_at_point_238__________________________________ (pres_plasma_fuel_profile238)__ 2.29083270624028548e+05 +Total_plasma_fuel_pressure_at_point_239__________________________________ (pres_plasma_fuel_profile239)__ 2.28181437809418654e+05 +Total_plasma_fuel_pressure_at_point_240__________________________________ (pres_plasma_fuel_profile240)__ 2.27278047995545319e+05 +Total_plasma_fuel_pressure_at_point_241__________________________________ (pres_plasma_fuel_profile241)__ 2.26373127908453898e+05 +Total_plasma_fuel_pressure_at_point_242__________________________________ (pres_plasma_fuel_profile242)__ 2.25466704361798271e+05 +Total_plasma_fuel_pressure_at_point_243__________________________________ (pres_plasma_fuel_profile243)__ 2.24558804256586096e+05 +Total_plasma_fuel_pressure_at_point_244__________________________________ (pres_plasma_fuel_profile244)__ 2.23649454580925114e+05 +Total_plasma_fuel_pressure_at_point_245__________________________________ (pres_plasma_fuel_profile245)__ 2.22738682409770001e+05 +Total_plasma_fuel_pressure_at_point_246__________________________________ (pres_plasma_fuel_profile246)__ 2.21826514904671087e+05 +Total_plasma_fuel_pressure_at_point_247__________________________________ (pres_plasma_fuel_profile247)__ 2.20912979313522548e+05 +Total_plasma_fuel_pressure_at_point_248__________________________________ (pres_plasma_fuel_profile248)__ 2.19998102970312932e+05 +Total_plasma_fuel_pressure_at_point_249__________________________________ (pres_plasma_fuel_profile249)__ 2.19081913294876169e+05 +Total_plasma_fuel_pressure_at_point_250__________________________________ (pres_plasma_fuel_profile250)__ 2.18164437792644487e+05 +Total_plasma_fuel_pressure_at_point_251__________________________________ (pres_plasma_fuel_profile251)__ 2.17245704054401169e+05 +Total_plasma_fuel_pressure_at_point_252__________________________________ (pres_plasma_fuel_profile252)__ 2.16325739756037103e+05 +Total_plasma_fuel_pressure_at_point_253__________________________________ (pres_plasma_fuel_profile253)__ 2.15404572658305435e+05 +Total_plasma_fuel_pressure_at_point_254__________________________________ (pres_plasma_fuel_profile254)__ 2.14482230606581492e+05 +Total_plasma_fuel_pressure_at_point_255__________________________________ (pres_plasma_fuel_profile255)__ 2.13558741530621046e+05 +Total_plasma_fuel_pressure_at_point_256__________________________________ (pres_plasma_fuel_profile256)__ 2.12634133444322826e+05 +Total_plasma_fuel_pressure_at_point_257__________________________________ (pres_plasma_fuel_profile257)__ 2.11708434445490770e+05 +Total_plasma_fuel_pressure_at_point_258__________________________________ (pres_plasma_fuel_profile258)__ 2.10781672715599940e+05 +Total_plasma_fuel_pressure_at_point_259__________________________________ (pres_plasma_fuel_profile259)__ 2.09853876519563055e+05 +Total_plasma_fuel_pressure_at_point_260__________________________________ (pres_plasma_fuel_profile260)__ 2.08925074205500190e+05 +Total_plasma_fuel_pressure_at_point_261__________________________________ (pres_plasma_fuel_profile261)__ 2.07995294204509497e+05 +Total_plasma_fuel_pressure_at_point_262__________________________________ (pres_plasma_fuel_profile262)__ 2.07064565030441678e+05 +Total_plasma_fuel_pressure_at_point_263__________________________________ (pres_plasma_fuel_profile263)__ 2.06132915279675886e+05 +Total_plasma_fuel_pressure_at_point_264__________________________________ (pres_plasma_fuel_profile264)__ 2.05200373630898190e+05 +Total_plasma_fuel_pressure_at_point_265__________________________________ (pres_plasma_fuel_profile265)__ 2.04266968844883057e+05 +Total_plasma_fuel_pressure_at_point_266__________________________________ (pres_plasma_fuel_profile266)__ 2.03332729764277639e+05 +Total_plasma_fuel_pressure_at_point_267__________________________________ (pres_plasma_fuel_profile267)__ 2.02397685313388414e+05 +Total_plasma_fuel_pressure_at_point_268__________________________________ (pres_plasma_fuel_profile268)__ 2.01461864497972070e+05 +Total_plasma_fuel_pressure_at_point_269__________________________________ (pres_plasma_fuel_profile269)__ 2.00525296405027446e+05 +Total_plasma_fuel_pressure_at_point_270__________________________________ (pres_plasma_fuel_profile270)__ 1.99588010202593723e+05 +Total_plasma_fuel_pressure_at_point_271__________________________________ (pres_plasma_fuel_profile271)__ 1.98650035139548592e+05 +Total_plasma_fuel_pressure_at_point_272__________________________________ (pres_plasma_fuel_profile272)__ 1.97711400545413606e+05 +Total_plasma_fuel_pressure_at_point_273__________________________________ (pres_plasma_fuel_profile273)__ 1.96772135830160230e+05 +Total_plasma_fuel_pressure_at_point_274__________________________________ (pres_plasma_fuel_profile274)__ 1.95832270484021981e+05 +Total_plasma_fuel_pressure_at_point_275__________________________________ (pres_plasma_fuel_profile275)__ 1.94891834077309089e+05 +Total_plasma_fuel_pressure_at_point_276__________________________________ (pres_plasma_fuel_profile276)__ 1.93950856260228582e+05 +Total_plasma_fuel_pressure_at_point_277__________________________________ (pres_plasma_fuel_profile277)__ 1.93009366762708232e+05 +Total_plasma_fuel_pressure_at_point_278__________________________________ (pres_plasma_fuel_profile278)__ 1.92067395394224819e+05 +Total_plasma_fuel_pressure_at_point_279__________________________________ (pres_plasma_fuel_profile279)__ 1.91124972043637768e+05 +Total_plasma_fuel_pressure_at_point_280__________________________________ (pres_plasma_fuel_profile280)__ 1.90182126679027657e+05 +Total_plasma_fuel_pressure_at_point_281__________________________________ (pres_plasma_fuel_profile281)__ 1.89238889347539283e+05 +Total_plasma_fuel_pressure_at_point_282__________________________________ (pres_plasma_fuel_profile282)__ 1.88295290175230999e+05 +Total_plasma_fuel_pressure_at_point_283__________________________________ (pres_plasma_fuel_profile283)__ 1.87351359366928722e+05 +Total_plasma_fuel_pressure_at_point_284__________________________________ (pres_plasma_fuel_profile284)__ 1.86407127206086821e+05 +Total_plasma_fuel_pressure_at_point_285__________________________________ (pres_plasma_fuel_profile285)__ 1.85462624054653948e+05 +Total_plasma_fuel_pressure_at_point_286__________________________________ (pres_plasma_fuel_profile286)__ 1.84517880352945795e+05 +Total_plasma_fuel_pressure_at_point_287__________________________________ (pres_plasma_fuel_profile287)__ 1.83572926619524165e+05 +Total_plasma_fuel_pressure_at_point_288__________________________________ (pres_plasma_fuel_profile288)__ 1.82627793451082660e+05 +Total_plasma_fuel_pressure_at_point_289__________________________________ (pres_plasma_fuel_profile289)__ 1.81682511522339919e+05 +Total_plasma_fuel_pressure_at_point_290__________________________________ (pres_plasma_fuel_profile290)__ 1.80737111585939128e+05 +Total_plasma_fuel_pressure_at_point_291__________________________________ (pres_plasma_fuel_profile291)__ 1.79791624472356518e+05 +Total_plasma_fuel_pressure_at_point_292__________________________________ (pres_plasma_fuel_profile292)__ 1.78846081089816027e+05 +Total_plasma_fuel_pressure_at_point_293__________________________________ (pres_plasma_fuel_profile293)__ 1.77900512424213608e+05 +Total_plasma_fuel_pressure_at_point_294__________________________________ (pres_plasma_fuel_profile294)__ 1.76954949539048946e+05 +Total_plasma_fuel_pressure_at_point_295__________________________________ (pres_plasma_fuel_profile295)__ 1.76009423575366673e+05 +Total_plasma_fuel_pressure_at_point_296__________________________________ (pres_plasma_fuel_profile296)__ 1.75063965751706040e+05 +Total_plasma_fuel_pressure_at_point_297__________________________________ (pres_plasma_fuel_profile297)__ 1.74118607364060503e+05 +Total_plasma_fuel_pressure_at_point_298__________________________________ (pres_plasma_fuel_profile298)__ 1.73173379785846657e+05 +Total_plasma_fuel_pressure_at_point_299__________________________________ (pres_plasma_fuel_profile299)__ 1.72228314467883931e+05 +Total_plasma_fuel_pressure_at_point_300__________________________________ (pres_plasma_fuel_profile300)__ 1.71283442938383960e+05 +Total_plasma_fuel_pressure_at_point_301__________________________________ (pres_plasma_fuel_profile301)__ 1.70338796802952071e+05 +Total_plasma_fuel_pressure_at_point_302__________________________________ (pres_plasma_fuel_profile302)__ 1.69394407744598604e+05 +Total_plasma_fuel_pressure_at_point_303__________________________________ (pres_plasma_fuel_profile303)__ 1.68450307523763069e+05 +Total_plasma_fuel_pressure_at_point_304__________________________________ (pres_plasma_fuel_profile304)__ 1.67506527978350234e+05 +Total_plasma_fuel_pressure_at_point_305__________________________________ (pres_plasma_fuel_profile305)__ 1.66563101023778727e+05 +Total_plasma_fuel_pressure_at_point_306__________________________________ (pres_plasma_fuel_profile306)__ 1.65620058653042914e+05 +Total_plasma_fuel_pressure_at_point_307__________________________________ (pres_plasma_fuel_profile307)__ 1.64677432936787838e+05 +Total_plasma_fuel_pressure_at_point_308__________________________________ (pres_plasma_fuel_profile308)__ 1.63735256023398862e+05 +Total_plasma_fuel_pressure_at_point_309__________________________________ (pres_plasma_fuel_profile309)__ 1.62793560139106150e+05 +Total_plasma_fuel_pressure_at_point_310__________________________________ (pres_plasma_fuel_profile310)__ 1.61852377588102885e+05 +Total_plasma_fuel_pressure_at_point_311__________________________________ (pres_plasma_fuel_profile311)__ 1.60911740752681362e+05 +Total_plasma_fuel_pressure_at_point_312__________________________________ (pres_plasma_fuel_profile312)__ 1.59971682093382959e+05 +Total_plasma_fuel_pressure_at_point_313__________________________________ (pres_plasma_fuel_profile313)__ 1.59032234149167576e+05 +Total_plasma_fuel_pressure_at_point_314__________________________________ (pres_plasma_fuel_profile314)__ 1.58093429537598131e+05 +Total_plasma_fuel_pressure_at_point_315__________________________________ (pres_plasma_fuel_profile315)__ 1.57155300955045328e+05 +Total_plasma_fuel_pressure_at_point_316__________________________________ (pres_plasma_fuel_profile316)__ 1.56217881176909810e+05 +Total_plasma_fuel_pressure_at_point_317__________________________________ (pres_plasma_fuel_profile317)__ 1.55281203057865001e+05 +Total_plasma_fuel_pressure_at_point_318__________________________________ (pres_plasma_fuel_profile318)__ 1.54345299532119301e+05 +Total_plasma_fuel_pressure_at_point_319__________________________________ (pres_plasma_fuel_profile319)__ 1.53410203613700316e+05 +Total_plasma_fuel_pressure_at_point_320__________________________________ (pres_plasma_fuel_profile320)__ 1.52475948396759952e+05 +Total_plasma_fuel_pressure_at_point_321__________________________________ (pres_plasma_fuel_profile321)__ 1.51542567055903259e+05 +Total_plasma_fuel_pressure_at_point_322__________________________________ (pres_plasma_fuel_profile322)__ 1.50610092846540007e+05 +Total_plasma_fuel_pressure_at_point_323__________________________________ (pres_plasma_fuel_profile323)__ 1.49678559105261258e+05 +Total_plasma_fuel_pressure_at_point_324__________________________________ (pres_plasma_fuel_profile324)__ 1.48747999250240944e+05 +Total_plasma_fuel_pressure_at_point_325__________________________________ (pres_plasma_fuel_profile325)__ 1.47818446781664185e+05 +Total_plasma_fuel_pressure_at_point_326__________________________________ (pres_plasma_fuel_profile326)__ 1.46889935282182356e+05 +Total_plasma_fuel_pressure_at_point_327__________________________________ (pres_plasma_fuel_profile327)__ 1.45962498417397641e+05 +Total_plasma_fuel_pressure_at_point_328__________________________________ (pres_plasma_fuel_profile328)__ 1.45036169936375605e+05 +Total_plasma_fuel_pressure_at_point_329__________________________________ (pres_plasma_fuel_profile329)__ 1.44110983672190137e+05 +Total_plasma_fuel_pressure_at_point_330__________________________________ (pres_plasma_fuel_profile330)__ 1.43186973542498483e+05 +Total_plasma_fuel_pressure_at_point_331__________________________________ (pres_plasma_fuel_profile331)__ 1.42264173550150881e+05 +Total_plasma_fuel_pressure_at_point_332__________________________________ (pres_plasma_fuel_profile332)__ 1.41342617783833324e+05 +Total_plasma_fuel_pressure_at_point_333__________________________________ (pres_plasma_fuel_profile333)__ 1.40422340418747044e+05 +Total_plasma_fuel_pressure_at_point_334__________________________________ (pres_plasma_fuel_profile334)__ 1.39503375717324321e+05 +Total_plasma_fuel_pressure_at_point_335__________________________________ (pres_plasma_fuel_profile335)__ 1.38585758029983233e+05 +Total_plasma_fuel_pressure_at_point_336__________________________________ (pres_plasma_fuel_profile336)__ 1.37669521795922657e+05 +Total_plasma_fuel_pressure_at_point_337__________________________________ (pres_plasma_fuel_profile337)__ 1.36754701543958538e+05 +Total_plasma_fuel_pressure_at_point_338__________________________________ (pres_plasma_fuel_profile338)__ 1.35841331893403869e+05 +Total_plasma_fuel_pressure_at_point_339__________________________________ (pres_plasma_fuel_profile339)__ 1.34929447554993705e+05 +Total_plasma_fuel_pressure_at_point_340__________________________________ (pres_plasma_fuel_profile340)__ 1.34019083331856848e+05 +Total_plasma_fuel_pressure_at_point_341__________________________________ (pres_plasma_fuel_profile341)__ 1.33110274120536749e+05 +Total_plasma_fuel_pressure_at_point_342__________________________________ (pres_plasma_fuel_profile342)__ 1.32203054912063060e+05 +Total_plasma_fuel_pressure_at_point_343__________________________________ (pres_plasma_fuel_profile343)__ 1.31297460793075705e+05 +Total_plasma_fuel_pressure_at_point_344__________________________________ (pres_plasma_fuel_profile344)__ 1.30393526947005026e+05 +Total_plasma_fuel_pressure_at_point_345__________________________________ (pres_plasma_fuel_profile345)__ 1.29491288655307624e+05 +Total_plasma_fuel_pressure_at_point_346__________________________________ (pres_plasma_fuel_profile346)__ 1.28590781298763744e+05 +Total_plasma_fuel_pressure_at_point_347__________________________________ (pres_plasma_fuel_profile347)__ 1.27692040358835511e+05 +Total_plasma_fuel_pressure_at_point_348__________________________________ (pres_plasma_fuel_profile348)__ 1.26795101419090701e+05 +Total_plasma_fuel_pressure_at_point_349__________________________________ (pres_plasma_fuel_profile349)__ 1.25900000166693630e+05 +Total_plasma_fuel_pressure_at_point_350__________________________________ (pres_plasma_fuel_profile350)__ 1.25006772393966967e+05 +Total_plasma_fuel_pressure_at_point_351__________________________________ (pres_plasma_fuel_profile351)__ 1.24115454000026162e+05 +Total_plasma_fuel_pressure_at_point_352__________________________________ (pres_plasma_fuel_profile352)__ 1.23226080992491887e+05 +Total_plasma_fuel_pressure_at_point_353__________________________________ (pres_plasma_fuel_profile353)__ 1.22338689489280325e+05 +Total_plasma_fuel_pressure_at_point_354__________________________________ (pres_plasma_fuel_profile354)__ 1.21453315720478873e+05 +Total_plasma_fuel_pressure_at_point_355__________________________________ (pres_plasma_fuel_profile355)__ 1.20569996030307637e+05 +Total_plasma_fuel_pressure_at_point_356__________________________________ (pres_plasma_fuel_profile356)__ 1.19688766879171933e+05 +Total_plasma_fuel_pressure_at_point_357__________________________________ (pres_plasma_fuel_profile357)__ 1.18809664845810054e+05 +Total_plasma_fuel_pressure_at_point_358__________________________________ (pres_plasma_fuel_profile358)__ 1.17932726629539771e+05 +Total_plasma_fuel_pressure_at_point_359__________________________________ (pres_plasma_fuel_profile359)__ 1.17057989052608449e+05 +Total_plasma_fuel_pressure_at_point_360__________________________________ (pres_plasma_fuel_profile360)__ 1.16185489062651875e+05 +Total_plasma_fuel_pressure_at_point_361__________________________________ (pres_plasma_fuel_profile361)__ 1.15315263735265224e+05 +Total_plasma_fuel_pressure_at_point_362__________________________________ (pres_plasma_fuel_profile362)__ 1.14447350276693556e+05 +Total_plasma_fuel_pressure_at_point_363__________________________________ (pres_plasma_fuel_profile363)__ 1.13581786026645263e+05 +Total_plasma_fuel_pressure_at_point_364__________________________________ (pres_plasma_fuel_profile364)__ 1.12718608461235519e+05 +Total_plasma_fuel_pressure_at_point_365__________________________________ (pres_plasma_fuel_profile365)__ 1.11857855196065371e+05 +Total_plasma_fuel_pressure_at_point_366__________________________________ (pres_plasma_fuel_profile366)__ 1.10999563989442730e+05 +Total_plasma_fuel_pressure_at_point_367__________________________________ (pres_plasma_fuel_profile367)__ 1.10143772745752285e+05 +Total_plasma_fuel_pressure_at_point_368__________________________________ (pres_plasma_fuel_profile368)__ 1.09290519518981571e+05 +Total_plasma_fuel_pressure_at_point_369__________________________________ (pres_plasma_fuel_profile369)__ 1.08439842516410077e+05 +Total_plasma_fuel_pressure_at_point_370__________________________________ (pres_plasma_fuel_profile370)__ 1.07591780102470308e+05 +Total_plasma_fuel_pressure_at_point_371__________________________________ (pres_plasma_fuel_profile371)__ 1.06746370802788631e+05 +Total_plasma_fuel_pressure_at_point_372__________________________________ (pres_plasma_fuel_profile372)__ 1.05903653308414810e+05 +Total_plasma_fuel_pressure_at_point_373__________________________________ (pres_plasma_fuel_profile373)__ 1.05063666480249798e+05 +Total_plasma_fuel_pressure_at_point_374__________________________________ (pres_plasma_fuel_profile374)__ 1.04226449353682212e+05 +Total_plasma_fuel_pressure_at_point_375__________________________________ (pres_plasma_fuel_profile375)__ 1.03392041143443013e+05 +Total_plasma_fuel_pressure_at_point_376__________________________________ (pres_plasma_fuel_profile376)__ 1.02560481248690863e+05 +Total_plasma_fuel_pressure_at_point_377__________________________________ (pres_plasma_fuel_profile377)__ 1.01731809258338923e+05 +Total_plasma_fuel_pressure_at_point_378__________________________________ (pres_plasma_fuel_profile378)__ 1.00906064956636896e+05 +Total_plasma_fuel_pressure_at_point_379__________________________________ (pres_plasma_fuel_profile379)__ 1.00083288329020710e+05 +Total_plasma_fuel_pressure_at_point_380__________________________________ (pres_plasma_fuel_profile380)__ 9.92635195682444028e+04 +Total_plasma_fuel_pressure_at_point_381__________________________________ (pres_plasma_fuel_profile381)__ 9.84467990808103641e+04 +Total_plasma_fuel_pressure_at_point_382__________________________________ (pres_plasma_fuel_profile382)__ 9.76331674937119678e+04 +Total_plasma_fuel_pressure_at_point_383__________________________________ (pres_plasma_fuel_profile383)__ 9.68226656615082611e+04 +Total_plasma_fuel_pressure_at_point_384__________________________________ (pres_plasma_fuel_profile384)__ 9.60153346737469692e+04 +Total_plasma_fuel_pressure_at_point_385__________________________________ (pres_plasma_fuel_profile385)__ 9.52112158627568569e+04 +Total_plasma_fuel_pressure_at_point_386__________________________________ (pres_plasma_fuel_profile386)__ 9.44103508118289319e+04 +Total_plasma_fuel_pressure_at_point_387__________________________________ (pres_plasma_fuel_profile387)__ 9.36127813638100924e+04 +Total_plasma_fuel_pressure_at_point_388__________________________________ (pres_plasma_fuel_profile388)__ 9.28185496301320236e+04 +Total_plasma_fuel_pressure_at_point_389__________________________________ (pres_plasma_fuel_profile389)__ 9.20276980003009521e+04 +Total_plasma_fuel_pressure_at_point_390__________________________________ (pres_plasma_fuel_profile390)__ 9.12402691518756910e+04 +Total_plasma_fuel_pressure_at_point_391__________________________________ (pres_plasma_fuel_profile391)__ 9.04563060609632375e+04 +Total_plasma_fuel_pressure_at_point_392__________________________________ (pres_plasma_fuel_profile392)__ 8.96758520132622943e+04 +Total_plasma_fuel_pressure_at_point_393__________________________________ (pres_plasma_fuel_profile393)__ 8.88989506156893040e+04 +Total_plasma_fuel_pressure_at_point_394__________________________________ (pres_plasma_fuel_profile394)__ 8.81256458086221392e+04 +Total_plasma_fuel_pressure_at_point_395__________________________________ (pres_plasma_fuel_profile395)__ 8.73559818788005505e+04 +Total_plasma_fuel_pressure_at_point_396__________________________________ (pres_plasma_fuel_profile396)__ 8.65900034729242761e+04 +Total_plasma_fuel_pressure_at_point_397__________________________________ (pres_plasma_fuel_profile397)__ 8.58277556119945657e+04 +Total_plasma_fuel_pressure_at_point_398__________________________________ (pres_plasma_fuel_profile398)__ 8.50692837064460764e+04 +Total_plasma_fuel_pressure_at_point_399__________________________________ (pres_plasma_fuel_profile399)__ 8.43146335721222858e+04 +Total_plasma_fuel_pressure_at_point_400__________________________________ (pres_plasma_fuel_profile400)__ 8.35638514471492090e+04 +Total_plasma_fuel_pressure_at_point_401__________________________________ (pres_plasma_fuel_profile401)__ 8.28169840097695123e+04 +Total_plasma_fuel_pressure_at_point_402__________________________________ (pres_plasma_fuel_profile402)__ 8.20740783972009376e+04 +Total_plasma_fuel_pressure_at_point_403__________________________________ (pres_plasma_fuel_profile403)__ 8.13351822255918814e+04 +Total_plasma_fuel_pressure_at_point_404__________________________________ (pres_plasma_fuel_profile404)__ 8.06003436111490009e+04 +Total_plasma_fuel_pressure_at_point_405__________________________________ (pres_plasma_fuel_profile405)__ 7.98696111925226287e+04 +Total_plasma_fuel_pressure_at_point_406__________________________________ (pres_plasma_fuel_profile406)__ 7.91430341545387346e+04 +Total_plasma_fuel_pressure_at_point_407__________________________________ (pres_plasma_fuel_profile407)__ 7.84206622533777845e+04 +Total_plasma_fuel_pressure_at_point_408__________________________________ (pres_plasma_fuel_profile408)__ 7.77025458433065651e+04 +Total_plasma_fuel_pressure_at_point_409__________________________________ (pres_plasma_fuel_profile409)__ 7.69887359050824598e+04 +Total_plasma_fuel_pressure_at_point_410__________________________________ (pres_plasma_fuel_profile410)__ 7.62792840761555854e+04 +Total_plasma_fuel_pressure_at_point_411__________________________________ (pres_plasma_fuel_profile411)__ 7.55742426828115276e+04 +Total_plasma_fuel_pressure_at_point_412__________________________________ (pres_plasma_fuel_profile412)__ 7.48736647744062939e+04 +Total_plasma_fuel_pressure_at_point_413__________________________________ (pres_plasma_fuel_profile413)__ 7.41776041598630836e+04 +Total_plasma_fuel_pressure_at_point_414__________________________________ (pres_plasma_fuel_profile414)__ 7.34861154466149455e+04 +Total_plasma_fuel_pressure_at_point_415__________________________________ (pres_plasma_fuel_profile415)__ 7.27992540821973816e+04 +Total_plasma_fuel_pressure_at_point_416__________________________________ (pres_plasma_fuel_profile416)__ 7.21170763987148530e+04 +Total_plasma_fuel_pressure_at_point_417__________________________________ (pres_plasma_fuel_profile417)__ 7.14396396604285837e+04 +Total_plasma_fuel_pressure_at_point_418__________________________________ (pres_plasma_fuel_profile418)__ 7.07670021147394145e+04 +Total_plasma_fuel_pressure_at_point_419__________________________________ (pres_plasma_fuel_profile419)__ 7.00992230468688795e+04 +Total_plasma_fuel_pressure_at_point_420__________________________________ (pres_plasma_fuel_profile420)__ 6.94363628385747143e+04 +Total_plasma_fuel_pressure_at_point_421__________________________________ (pres_plasma_fuel_profile421)__ 6.87784830312748818e+04 +Total_plasma_fuel_pressure_at_point_422__________________________________ (pres_plasma_fuel_profile422)__ 6.81256463939968817e+04 +Total_plasma_fuel_pressure_at_point_423__________________________________ (pres_plasma_fuel_profile423)__ 6.74779169966177142e+04 +Total_plasma_fuel_pressure_at_point_424__________________________________ (pres_plasma_fuel_profile424)__ 6.68353602889145550e+04 +Total_plasma_fuel_pressure_at_point_425__________________________________ (pres_plasma_fuel_profile425)__ 6.61980431860109966e+04 +Total_plasma_fuel_pressure_at_point_426__________________________________ (pres_plasma_fuel_profile426)__ 6.55660341608738527e+04 +Total_plasma_fuel_pressure_at_point_427__________________________________ (pres_plasma_fuel_profile427)__ 6.49394033446010799e+04 +Total_plasma_fuel_pressure_at_point_428__________________________________ (pres_plasma_fuel_profile428)__ 6.43182226353361038e+04 +Total_plasma_fuel_pressure_at_point_429__________________________________ (pres_plasma_fuel_profile429)__ 6.37025658167545771e+04 +Total_plasma_fuel_pressure_at_point_430__________________________________ (pres_plasma_fuel_profile430)__ 6.30925086871995445e+04 +Total_plasma_fuel_pressure_at_point_431__________________________________ (pres_plasma_fuel_profile431)__ 6.24881292006893345e+04 +Total_plasma_fuel_pressure_at_point_432__________________________________ (pres_plasma_fuel_profile432)__ 6.18895076211991036e+04 +Total_plasma_fuel_pressure_at_point_433__________________________________ (pres_plasma_fuel_profile433)__ 6.12967266918202658e+04 +Total_plasma_fuel_pressure_at_point_434__________________________________ (pres_plasma_fuel_profile434)__ 6.07098718206460107e+04 +Total_plasma_fuel_pressure_at_point_435__________________________________ (pres_plasma_fuel_profile435)__ 6.01290312855137745e+04 +Total_plasma_fuel_pressure_at_point_436__________________________________ (pres_plasma_fuel_profile436)__ 5.95542964600775449e+04 +Total_plasma_fuel_pressure_at_point_437__________________________________ (pres_plasma_fuel_profile437)__ 5.89857620640839741e+04 +Total_plasma_fuel_pressure_at_point_438__________________________________ (pres_plasma_fuel_profile438)__ 5.84235264412137112e+04 +Total_plasma_fuel_pressure_at_point_439__________________________________ (pres_plasma_fuel_profile439)__ 5.78676918684299890e+04 +Total_plasma_fuel_pressure_at_point_440__________________________________ (pres_plasma_fuel_profile440)__ 5.73183649014852708e+04 +Total_plasma_fuel_pressure_at_point_441__________________________________ (pres_plasma_fuel_profile441)__ 5.67756567620959977e+04 +Total_plasma_fuel_pressure_at_point_442__________________________________ (pres_plasma_fuel_profile442)__ 5.62396837733505308e+04 +Total_plasma_fuel_pressure_at_point_443__________________________________ (pres_plasma_fuel_profile443)__ 5.57105678512159429e+04 +Total_plasma_fuel_pressure_at_point_444__________________________________ (pres_plasma_fuel_profile444)__ 5.51884370616253000e+04 +Total_plasma_fuel_pressure_at_point_445__________________________________ (pres_plasma_fuel_profile445)__ 5.46734262546472455e+04 +Total_plasma_fuel_pressure_at_point_446__________________________________ (pres_plasma_fuel_profile446)__ 5.41656777897903085e+04 +Total_plasma_fuel_pressure_at_point_447__________________________________ (pres_plasma_fuel_profile447)__ 5.36653423697354665e+04 +Total_plasma_fuel_pressure_at_point_448__________________________________ (pres_plasma_fuel_profile448)__ 5.31725800039541573e+04 +Total_plasma_fuel_pressure_at_point_449__________________________________ (pres_plasma_fuel_profile449)__ 5.26875611290637098e+04 +Total_plasma_fuel_pressure_at_point_450__________________________________ (pres_plasma_fuel_profile450)__ 5.22104679198455779e+04 +Total_plasma_fuel_pressure_at_point_451__________________________________ (pres_plasma_fuel_profile451)__ 5.17414958342266109e+04 +Total_plasma_fuel_pressure_at_point_452__________________________________ (pres_plasma_fuel_profile452)__ 5.12808554481160245e+04 +Total_plasma_fuel_pressure_at_point_453__________________________________ (pres_plasma_fuel_profile453)__ 5.08287746531369121e+04 +Total_plasma_fuel_pressure_at_point_454__________________________________ (pres_plasma_fuel_profile454)__ 5.03855013140047959e+04 +Total_plasma_fuel_pressure_at_point_455__________________________________ (pres_plasma_fuel_profile455)__ 4.99513065156616576e+04 +Total_plasma_fuel_pressure_at_point_456__________________________________ (pres_plasma_fuel_profile456)__ 4.95264885780958939e+04 +Total_plasma_fuel_pressure_at_point_457__________________________________ (pres_plasma_fuel_profile457)__ 4.91113780868051690e+04 +Total_plasma_fuel_pressure_at_point_458__________________________________ (pres_plasma_fuel_profile458)__ 4.87063442918965156e+04 +Total_plasma_fuel_pressure_at_point_459__________________________________ (pres_plasma_fuel_profile459)__ 4.83118033907099743e+04 +Total_plasma_fuel_pressure_at_point_460__________________________________ (pres_plasma_fuel_profile460)__ 4.79282294663181165e+04 +Total_plasma_fuel_pressure_at_point_461__________________________________ (pres_plasma_fuel_profile461)__ 4.75561692788492655e+04 +Total_plasma_fuel_pressure_at_point_462__________________________________ (pres_plasma_fuel_profile462)__ 4.71962628373764601e+04 +Total_plasma_fuel_pressure_at_point_463__________________________________ (pres_plasma_fuel_profile463)__ 4.68492730038130685e+04 +Total_plasma_fuel_pressure_at_point_464__________________________________ (pres_plasma_fuel_profile464)__ 4.65161299318766032e+04 +Total_plasma_fuel_pressure_at_point_465__________________________________ (pres_plasma_fuel_profile465)__ 4.61980014607497287e+04 +Total_plasma_fuel_pressure_at_point_466__________________________________ (pres_plasma_fuel_profile466)__ 4.58964128327329599e+04 +Total_plasma_fuel_pressure_at_point_467__________________________________ (pres_plasma_fuel_profile467)__ 4.56134714514823718e+04 +Total_plasma_fuel_pressure_at_point_468__________________________________ (pres_plasma_fuel_profile468)__ 4.53523566496223939e+04 +Total_plasma_fuel_pressure_at_point_469__________________________________ (pres_plasma_fuel_profile469)__ 4.51187043062891025e+04 +Total_plasma_fuel_pressure_at_point_470__________________________________ (pres_plasma_fuel_profile470)__ 4.49291431996428655e+04 +Total_plasma_fuel_pressure_at_point_471__________________________________ (pres_plasma_fuel_profile471)__ 4.28622424372607129e+04 +Total_plasma_fuel_pressure_at_point_472__________________________________ (pres_plasma_fuel_profile472)__ 4.08357058249188849e+04 +Total_plasma_fuel_pressure_at_point_473__________________________________ (pres_plasma_fuel_profile473)__ 3.88495333626173888e+04 +Total_plasma_fuel_pressure_at_point_474__________________________________ (pres_plasma_fuel_profile474)__ 3.69037250503562100e+04 +Total_plasma_fuel_pressure_at_point_475__________________________________ (pres_plasma_fuel_profile475)__ 3.49982808881353485e+04 +Total_plasma_fuel_pressure_at_point_476__________________________________ (pres_plasma_fuel_profile476)__ 3.31332008759548116e+04 +Total_plasma_fuel_pressure_at_point_477__________________________________ (pres_plasma_fuel_profile477)__ 3.13084850138145885e+04 +Total_plasma_fuel_pressure_at_point_478__________________________________ (pres_plasma_fuel_profile478)__ 2.95241333017146972e+04 +Total_plasma_fuel_pressure_at_point_479__________________________________ (pres_plasma_fuel_profile479)__ 2.77801457396551159e+04 +Total_plasma_fuel_pressure_at_point_480__________________________________ (pres_plasma_fuel_profile480)__ 2.60765223276358665e+04 +Total_plasma_fuel_pressure_at_point_481__________________________________ (pres_plasma_fuel_profile481)__ 2.44132630656569163e+04 +Total_plasma_fuel_pressure_at_point_482__________________________________ (pres_plasma_fuel_profile482)__ 2.27903679537183125e+04 +Total_plasma_fuel_pressure_at_point_483__________________________________ (pres_plasma_fuel_profile483)__ 2.12078369918200151e+04 +Total_plasma_fuel_pressure_at_point_484__________________________________ (pres_plasma_fuel_profile484)__ 1.96656701799620423e+04 +Total_plasma_fuel_pressure_at_point_485__________________________________ (pres_plasma_fuel_profile485)__ 1.81638675181443868e+04 +Total_plasma_fuel_pressure_at_point_486__________________________________ (pres_plasma_fuel_profile486)__ 1.67024290063670560e+04 +Total_plasma_fuel_pressure_at_point_487__________________________________ (pres_plasma_fuel_profile487)__ 1.52813546446300497e+04 +Total_plasma_fuel_pressure_at_point_488__________________________________ (pres_plasma_fuel_profile488)__ 1.39006444329333553e+04 +Total_plasma_fuel_pressure_at_point_489__________________________________ (pres_plasma_fuel_profile489)__ 1.25602983712769856e+04 +Total_plasma_fuel_pressure_at_point_490__________________________________ (pres_plasma_fuel_profile490)__ 1.12603164596609404e+04 +Total_plasma_fuel_pressure_at_point_491__________________________________ (pres_plasma_fuel_profile491)__ 1.00006986980852125e+04 +Total_plasma_fuel_pressure_at_point_492__________________________________ (pres_plasma_fuel_profile492)__ 8.78144508654980382e+03 +Total_plasma_fuel_pressure_at_point_493__________________________________ (pres_plasma_fuel_profile493)__ 7.60255562505472062e+03 +Total_plasma_fuel_pressure_at_point_494__________________________________ (pres_plasma_fuel_profile494)__ 6.46403031359995566e+03 +Total_plasma_fuel_pressure_at_point_495__________________________________ (pres_plasma_fuel_profile495)__ 5.36586915218551167e+03 +Total_plasma_fuel_pressure_at_point_496__________________________________ (pres_plasma_fuel_profile496)__ 4.30807214081138864e+03 +Total_plasma_fuel_pressure_at_point_497__________________________________ (pres_plasma_fuel_profile497)__ 3.29063927947758657e+03 +Total_plasma_fuel_pressure_at_point_498__________________________________ (pres_plasma_fuel_profile498)__ 2.31357056818410547e+03 +Total_plasma_fuel_pressure_at_point_499__________________________________ (pres_plasma_fuel_profile499)__ 1.37686600693094488e+03 +Total_plasma_fuel_pressure_at_point_500__________________________________ (pres_plasma_fuel_profile500)__ 4.80525595718105478e+02 +H_concentration__________________________________________________________ (f_nd_impurity_electrons(01))__ 8.14787689899803991e-01 OP +He_concentration_________________________________________________________ (f_nd_impurity_electrons(02))__ 7.79113320586695551e-02 +He_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons1_0)___ 8.17704563911436288e+18 OP +He_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons1_1)___ 8.17703069843705651e+18 OP +He_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons1_2)___ 8.17698587640513843e+18 OP +He_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons1_3)___ 8.17691117301860762e+18 OP +He_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons1_4)___ 8.17680658827746202e+18 OP +He_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons1_5)___ 8.17667212218170573e+18 OP +He_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons1_6)___ 8.17650777473133773e+18 OP +He_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons1_7)___ 8.17631354592635494e+18 OP +He_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons1_8)___ 8.17608943576676250e+18 OP +He_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons1_9)___ 8.17583544425255526e+18 OP +He_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons1_10)__ 8.17555157138373632e+18 OP +He_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons1_11)__ 8.17523781716030362e+18 OP +He_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons1_12)__ 8.17489418158226022e+18 OP +He_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons1_13)__ 8.17452066464960205e+18 OP +He_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons1_14)__ 8.17411726636233421e+18 OP +He_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons1_15)__ 8.17368398672045158e+18 OP +He_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons1_16)__ 8.17322082572395725e+18 OP +He_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons1_17)__ 8.17272778337284915e+18 OP +He_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons1_18)__ 8.17220485966713139e+18 OP +He_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons1_19)__ 8.17165205460679885e+18 OP +He_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons1_20)__ 8.17106936819185357e+18 OP +He_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons1_21)__ 8.17045680042229658e+18 OP +He_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons1_22)__ 8.16981435129812685e+18 OP +He_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons1_23)__ 8.16914202081934438e+18 OP +He_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons1_24)__ 8.16843980898594918e+18 OP +He_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons1_25)__ 8.16770771579794227e+18 OP +He_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons1_26)__ 8.16694574125532160e+18 OP +He_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons1_27)__ 8.16615388535808922e+18 OP +He_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons1_28)__ 8.16533214810624614e+18 OP +He_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons1_29)__ 8.16448052949978726e+18 OP +He_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons1_30)__ 8.16359902953871770e+18 OP +He_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons1_31)__ 8.16268764822303437e+18 OP +He_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons1_32)__ 8.16174638555273933e+18 OP +He_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons1_33)__ 8.16077524152783155e+18 OP +He_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons1_34)__ 8.15977421614831104e+18 OP +He_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons1_35)__ 8.15874330941417882e+18 OP +He_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons1_36)__ 8.15768252132543283e+18 OP +He_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons1_37)__ 8.15659185188207514e+18 OP +He_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons1_38)__ 8.15547130108410470e+18 OP +He_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons1_39)__ 8.15432086893152154e+18 OP +He_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons1_40)__ 8.15314055542432563e+18 OP +He_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons1_41)__ 8.15193036056251802e+18 OP +He_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons1_42)__ 8.15069028434609766e+18 OP +He_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons1_43)__ 8.14942032677506355e+18 OP +He_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons1_44)__ 8.14812048784941773e+18 OP +He_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons1_45)__ 8.14679076756916019e+18 OP +He_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons1_46)__ 8.14543116593428890e+18 OP +He_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons1_47)__ 8.14404168294480486e+18 OP +He_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons1_48)__ 8.14262231860070912e+18 OP +He_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons1_49)__ 8.14117307290199962e+18 OP +He_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons1_50)__ 8.13969394584867942e+18 OP +He_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons1_51)__ 8.13818493744074547e+18 OP +He_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons1_52)__ 8.13664604767820083e+18 OP +He_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons1_53)__ 8.13507727656104141e+18 OP +He_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons1_54)__ 8.13347862408927027e+18 OP +He_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons1_55)__ 8.13185009026288538e+18 OP +He_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons1_56)__ 8.13019167508188979e+18 OP +He_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons1_57)__ 8.12850337854627942e+18 OP +He_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons1_58)__ 8.12678520065605837e+18 OP +He_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons1_59)__ 8.12503714141122560e+18 OP +He_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons1_60)__ 8.12325920081177907e+18 OP +He_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons1_61)__ 8.12145137885771981e+18 OP +He_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons1_62)__ 8.11961367554904883e+18 OP +He_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons1_63)__ 8.11774609088576410e+18 OP +He_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons1_64)__ 8.11584862486786662e+18 OP +He_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons1_65)__ 8.11392127749535744e+18 OP +He_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons1_66)__ 8.11196404876823552e+18 OP +He_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons1_67)__ 8.10997693868650086e+18 OP +He_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons1_68)__ 8.10795994725015450e+18 OP +He_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons1_69)__ 8.10591307445919539e+18 OP +He_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons1_70)__ 8.10383632031362253e+18 OP +He_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons1_71)__ 8.10172968481343795e+18 OP +He_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons1_72)__ 8.09959316795864064e+18 OP +He_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons1_73)__ 8.09742676974923264e+18 OP +He_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons1_74)__ 8.09523049018520986e+18 OP +He_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons1_75)__ 8.09300432926657434e+18 OP +He_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons1_76)__ 8.09074828699332710e+18 OP +He_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons1_77)__ 8.08846236336546816e+18 OP +He_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons1_78)__ 8.08614655838299443e+18 OP +He_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons1_79)__ 8.08380087204591002e+18 OP +He_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons1_80)__ 8.08142530435421184e+18 OP +He_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons1_81)__ 8.07901985530790298e+18 OP +He_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons1_82)__ 8.07658452490698035e+18 OP +He_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons1_83)__ 8.07411931315144397e+18 OP +He_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons1_84)__ 8.07162422004129690e+18 OP +He_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons1_85)__ 8.06909924557653709e+18 OP +He_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons1_86)__ 8.06654438975716352e+18 OP +He_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons1_87)__ 8.06395965258317824e+18 OP +He_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons1_88)__ 8.06134503405458125e+18 OP +He_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons1_89)__ 8.05870053417137152e+18 OP +He_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons1_90)__ 8.05602615293354701e+18 OP +He_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons1_91)__ 8.05332189034111181e+18 OP +He_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons1_92)__ 8.05058774639406387e+18 OP +He_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons1_93)__ 8.04782372109240422e+18 OP +He_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons1_94)__ 8.04502981443613082e+18 OP +He_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons1_95)__ 8.04220602642524365e+18 OP +He_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons1_96)__ 8.03935235705974579e+18 OP +He_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons1_97)__ 8.03646880633963520e+18 OP +He_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons1_98)__ 8.03355537426491187e+18 OP +He_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons1_99)__ 8.03061206083557581e+18 OP +He_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons1_100)_ 8.02763886605162803e+18 OP +He_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons1_101)_ 8.02463578991306752e+18 OP +He_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons1_102)_ 8.02160283241989325e+18 OP +He_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons1_103)_ 8.01853999357210726e+18 OP +He_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons1_104)_ 8.01544727336970854e+18 OP +He_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons1_105)_ 8.01232467181269811e+18 OP +He_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons1_106)_ 8.00917218890107392e+18 OP +He_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons1_107)_ 8.00598982463483802e+18 OP +He_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons1_108)_ 8.00277757901398938e+18 OP +He_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons1_109)_ 7.99953545203852800e+18 OP +He_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons1_110)_ 7.99626344370845389e+18 OP +He_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons1_111)_ 7.99296155402376704e+18 OP +He_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons1_112)_ 7.98962978298446746e+18 OP +He_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons1_113)_ 7.98626813059055616e+18 OP +He_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons1_114)_ 7.98287659684203213e+18 OP +He_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons1_115)_ 7.97945518173889536e+18 OP +He_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons1_116)_ 7.97600388528114688e+18 OP +He_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons1_117)_ 7.97252270746878464e+18 OP +He_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons1_118)_ 7.96901164830180966e+18 OP +He_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons1_119)_ 7.96547070778022502e+18 OP +He_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons1_120)_ 7.96189988590402560e+18 OP +He_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons1_121)_ 7.95829918267321242e+18 OP +He_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons1_122)_ 7.95466859808778854e+18 OP +He_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons1_123)_ 7.95100813214775194e+18 OP +He_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons1_124)_ 7.94731778485310157e+18 OP +He_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons1_125)_ 7.94359755620383949e+18 OP +He_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons1_126)_ 7.93984744619996570e+18 OP +He_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons1_127)_ 7.93606745484147814e+18 OP +He_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons1_128)_ 7.93225758212837786e+18 OP +He_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons1_129)_ 7.92841782806066586e+18 OP +He_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons1_130)_ 7.92454819263834214e+18 OP +He_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons1_131)_ 7.92064867586140262e+18 OP +He_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons1_132)_ 7.91671927772985344e+18 OP +He_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons1_133)_ 7.91275999824369050e+18 OP +He_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons1_134)_ 7.90877083740291584e+18 OP +He_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons1_135)_ 7.90475179520752742e+18 OP +He_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons1_136)_ 7.90070287165752832e+18 OP +He_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons1_137)_ 7.89662406675291546e+18 OP +He_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons1_138)_ 7.89251538049368986e+18 OP +He_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons1_139)_ 7.88837681287985254e+18 OP +He_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons1_140)_ 7.88420836391140250e+18 OP +He_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons1_141)_ 7.88001003358833971e+18 OP +He_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons1_142)_ 7.87578182191066317e+18 OP +He_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons1_143)_ 7.87152372887837696e+18 OP +He_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons1_144)_ 7.86723575449147699e+18 OP +He_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons1_145)_ 7.86291789874996224e+18 OP +He_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons1_146)_ 7.85857016165383782e+18 OP +He_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons1_147)_ 7.85419254320309965e+18 OP +He_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons1_148)_ 7.84978504339774771e+18 OP +He_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons1_149)_ 7.84534766223778509e+18 OP +He_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons1_150)_ 7.84088039972320973e+18 OP +He_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons1_151)_ 7.83638325585402163e+18 OP +He_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons1_152)_ 7.83185623063021978e+18 OP +He_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons1_153)_ 7.82729932405180723e+18 OP +He_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons1_154)_ 7.82271253611878093e+18 OP +He_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons1_155)_ 7.81809586683114086e+18 OP +He_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons1_156)_ 7.81344931618889011e+18 OP +He_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons1_157)_ 7.80877288419202662e+18 OP +He_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons1_158)_ 7.80406657084055040e+18 OP +He_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons1_159)_ 7.79933037613446246e+18 OP +He_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons1_160)_ 7.79456430007376077e+18 OP +He_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons1_161)_ 7.78976834265844736e+18 OP +He_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons1_162)_ 7.78494250388852224e+18 OP +He_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons1_163)_ 7.78008678376398234e+18 OP +He_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons1_164)_ 7.77520118228483174e+18 OP +He_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons1_165)_ 7.77028569945106637e+18 OP +He_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons1_166)_ 7.76534033526269030e+18 OP +He_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons1_167)_ 7.76036508971970048e+18 OP +He_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons1_168)_ 7.75535996282209894e+18 OP +He_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons1_169)_ 7.75032495456988570e+18 OP +He_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons1_170)_ 7.74526006496305766e+18 OP +He_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons1_171)_ 7.74016529400161997e+18 OP +He_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons1_172)_ 7.73504064168556749e+18 OP +He_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons1_173)_ 7.72988610801490330e+18 OP +He_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons1_174)_ 7.72470169298962637e+18 OP +He_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons1_175)_ 7.71948739660973670e+18 OP +He_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons1_176)_ 7.71424321887523430e+18 OP +He_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons1_177)_ 7.70896915978612019e+18 OP +He_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons1_178)_ 7.70366521934239334e+18 OP +He_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons1_179)_ 7.69833139754405376e+18 OP +He_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons1_180)_ 7.69296769439110144e+18 OP +He_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons1_181)_ 7.68757410988353638e+18 OP +He_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons1_182)_ 7.68215064402135859e+18 OP +He_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons1_183)_ 7.67669729680457011e+18 OP +He_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons1_184)_ 7.67121406823316685e+18 OP +He_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons1_185)_ 7.66570095830715187e+18 OP +He_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons1_186)_ 7.66015796702652416e+18 OP +He_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons1_187)_ 7.65458509439128474e+18 OP +He_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons1_188)_ 7.64898234040143155e+18 OP +He_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons1_189)_ 7.64334970505696666e+18 OP +He_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons1_190)_ 7.63768718835788902e+18 OP +He_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons1_191)_ 7.63199479030419866e+18 OP +He_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons1_192)_ 7.62627251089589658e+18 OP +He_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons1_193)_ 7.62052035013298074e+18 OP +He_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons1_194)_ 7.61473830801545216e+18 OP +He_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons1_195)_ 7.60892638454331290e+18 OP +He_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons1_196)_ 7.60308457971655987e+18 OP +He_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons1_197)_ 7.59721289353519411e+18 OP +He_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons1_198)_ 7.59131132599921562e+18 OP +He_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons1_199)_ 7.58537987710862541e+18 OP +He_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons1_200)_ 7.57941854686342246e+18 OP +He_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons1_201)_ 7.57342733526360678e+18 OP +He_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons1_202)_ 7.56740624230917939e+18 OP +He_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons1_203)_ 7.56135526800013722e+18 OP +He_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons1_204)_ 7.55527441233648333e+18 OP +He_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons1_205)_ 7.54916367531821773e+18 OP +He_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons1_206)_ 7.54302305694534042e+18 OP +He_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons1_207)_ 7.53685255721785037e+18 OP +He_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons1_208)_ 7.53065217613574656e+18 OP +He_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons1_209)_ 7.52442191369903002e+18 OP +He_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons1_210)_ 7.51816176990770176e+18 OP +He_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons1_211)_ 7.51187174476176077e+18 OP +He_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons1_212)_ 7.50555183826120602e+18 OP +He_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons1_213)_ 7.49920205040604058e+18 OP +He_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons1_214)_ 7.49282238119626138e+18 OP +He_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons1_215)_ 7.48641283063186944e+18 OP +He_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons1_216)_ 7.47997339871286579e+18 OP +He_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons1_217)_ 7.47350408543924941e+18 OP +He_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons1_218)_ 7.46700489081102131e+18 OP +He_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons1_219)_ 7.46047581482817843e+18 OP +He_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons1_220)_ 7.45391685749072589e+18 OP +He_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons1_221)_ 7.44732801879865856e+18 OP +He_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons1_222)_ 7.44070929875197952e+18 OP +He_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons1_223)_ 7.43406069735068672e+18 OP +He_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons1_224)_ 7.42738221459478323e+18 OP +He_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons1_225)_ 7.42067385048426598e+18 OP +He_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons1_226)_ 7.41393560501913702e+18 OP +He_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons1_227)_ 7.40716747819939533e+18 OP +He_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons1_228)_ 7.40036947002504090e+18 OP +He_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons1_229)_ 7.39354158049607373e+18 OP +He_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons1_230)_ 7.38668380961249280e+18 OP +He_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons1_231)_ 7.37979615737430221e+18 OP +He_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons1_232)_ 7.37287862378149683e+18 OP +He_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons1_233)_ 7.36593120883407974e+18 OP +He_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons1_234)_ 7.35895391253205094e+18 OP +He_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons1_235)_ 7.35194673487540838e+18 OP +He_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons1_236)_ 7.34490967586415309e+18 OP +He_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons1_237)_ 7.33784273549828608e+18 OP +He_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons1_238)_ 7.33074591377780634e+18 OP +He_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons1_239)_ 7.32361921070271283e+18 OP +He_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons1_240)_ 7.31646262627300966e+18 OP +He_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons1_241)_ 7.30927616048869069e+18 OP +He_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons1_242)_ 7.30205981334976102e+18 OP +He_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons1_243)_ 7.29481358485621760e+18 OP +He_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons1_244)_ 7.28753747500806349e+18 OP +He_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons1_245)_ 7.28023148380529562e+18 OP +He_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons1_246)_ 7.27289561124791501e+18 OP +He_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons1_247)_ 7.26552985733592269e+18 OP +He_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons1_248)_ 7.25813422206931763e+18 OP +He_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons1_249)_ 7.25070870544809882e+18 OP +He_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons1_250)_ 7.24325330747226931e+18 OP +He_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons1_251)_ 7.23576802814182400e+18 OP +He_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons1_252)_ 7.22825286745677005e+18 OP +He_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons1_253)_ 7.22070782541710234e+18 OP +He_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons1_254)_ 7.21313290202282189e+18 OP +He_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons1_255)_ 7.20552809727392768e+18 OP +He_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons1_256)_ 7.19789341117042278e+18 OP +He_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons1_257)_ 7.19022884371230413e+18 OP +He_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons1_258)_ 7.18253439489957274e+18 OP +He_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons1_259)_ 7.17481006473222861e+18 OP +He_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons1_260)_ 7.16705585321027379e+18 OP +He_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons1_261)_ 7.15927176033370522e+18 OP +He_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons1_262)_ 7.15145778610252390e+18 OP +He_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons1_263)_ 7.14361393051672986e+18 OP +He_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons1_264)_ 7.13574019357632307e+18 OP +He_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons1_265)_ 7.12783657528130458e+18 OP +He_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons1_266)_ 7.11990307563167437e+18 OP +He_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons1_267)_ 7.11193969462743040e+18 OP +He_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons1_268)_ 7.10394643226857370e+18 OP +He_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons1_269)_ 7.09592328855510426e+18 OP +He_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons1_270)_ 7.08787026348702413e+18 OP +He_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons1_271)_ 7.07978735706432922e+18 OP +He_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons1_272)_ 7.07167456928702259e+18 OP +He_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons1_273)_ 7.06353190015510323e+18 OP +He_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons1_274)_ 7.05535934966857216e+18 OP +He_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons1_275)_ 7.04715691782742733e+18 OP +He_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons1_276)_ 7.03892460463167078e+18 OP +He_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons1_277)_ 7.03066241008130150e+18 OP +He_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons1_278)_ 7.02237033417632051e+18 OP +He_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons1_279)_ 7.01404837691672678e+18 OP +He_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons1_280)_ 7.00569653830251930e+18 OP +He_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons1_281)_ 6.99731481833369907e+18 OP +He_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons1_282)_ 6.98890321701026816e+18 OP +He_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons1_283)_ 6.98046173433222349e+18 OP +He_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons1_284)_ 6.97199037029956710e+18 OP +He_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons1_285)_ 6.96348912491229696e+18 OP +He_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons1_286)_ 6.95495799817041510e+18 OP +He_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons1_287)_ 6.94639699007392051e+18 OP +He_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons1_288)_ 6.93780610062281318e+18 OP +He_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons1_289)_ 6.92918532981709312e+18 OP +He_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons1_290)_ 6.92053467765676032e+18 OP +He_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons1_291)_ 6.91185414414181478e+18 OP +He_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons1_292)_ 6.90314372927225856e+18 OP +He_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons1_293)_ 6.89440343304808755e+18 OP +He_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons1_294)_ 6.88563325546930483e+18 OP +He_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons1_295)_ 6.87683319653591040e+18 OP +He_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons1_296)_ 6.86800325624790323e+18 OP +He_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons1_297)_ 6.85914343460528333e+18 OP +He_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons1_298)_ 6.85025373160804966e+18 OP +He_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons1_299)_ 6.84133414725620531e+18 OP +He_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons1_300)_ 6.83238468154974618e+18 OP +He_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons1_301)_ 6.82340533448867533e+18 OP +He_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons1_302)_ 6.81439610607299277e+18 OP +He_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons1_303)_ 6.80535699630269747e+18 OP +He_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons1_304)_ 6.79628800517778944e+18 OP +He_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons1_305)_ 6.78718913269826867e+18 OP +He_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons1_306)_ 6.77806037886413619e+18 OP +He_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons1_307)_ 6.76890174367539098e+18 OP +He_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons1_308)_ 6.75971322713203098e+18 OP +He_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons1_309)_ 6.75049482923406131e+18 OP +He_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons1_310)_ 6.74124654998147686e+18 OP +He_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons1_311)_ 6.73196838937428173e+18 OP +He_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons1_312)_ 6.72266034741247386e+18 OP +He_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons1_313)_ 6.71332242409605427e+18 OP +He_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons1_314)_ 6.70395461942501888e+18 OP +He_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons1_315)_ 6.69455693339937382e+18 OP +He_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons1_316)_ 6.68512936601911398e+18 OP +He_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons1_317)_ 6.67567191728424448e+18 OP +He_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons1_318)_ 6.66618458719475917e+18 OP +He_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons1_319)_ 6.65666737575066317e+18 OP +He_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons1_320)_ 6.64712028295195443e+18 OP +He_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons1_321)_ 6.63754330879863296e+18 OP +He_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons1_322)_ 6.62793645329069978e+18 OP +He_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons1_323)_ 6.61829971642815283e+18 OP +He_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons1_324)_ 6.60863309821099418e+18 OP +He_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons1_325)_ 6.59893659863922278e+18 OP +He_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons1_326)_ 6.58921021771283866e+18 OP +He_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons1_327)_ 6.57945395543184282e+18 OP +He_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons1_328)_ 6.56966781179623219e+18 OP +He_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons1_329)_ 6.55985178680600986e+18 OP +He_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons1_330)_ 6.55000588046117581e+18 OP +He_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons1_331)_ 6.54013009276173005e+18 OP +He_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons1_332)_ 6.53022442370766950e+18 OP +He_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons1_333)_ 6.52028887329899827e+18 OP +He_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons1_334)_ 6.51032344153571430e+18 OP +He_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons1_335)_ 6.50032812841781658e+18 OP +He_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons1_336)_ 6.49030293394530816e+18 OP +He_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons1_337)_ 6.48024785811818598e+18 OP +He_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons1_338)_ 6.47016290093645107e+18 OP +He_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons1_339)_ 6.46004806240010342e+18 OP +He_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons1_340)_ 6.44990334250914509e+18 OP +He_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons1_341)_ 6.43972874126357197e+18 OP +He_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons1_342)_ 6.42952425866338714e+18 OP +He_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons1_343)_ 6.41928989470858957e+18 OP +He_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons1_344)_ 6.40902564939917926e+18 OP +He_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons1_345)_ 6.39873152273515725e+18 OP +He_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons1_346)_ 6.38840751471652352e+18 OP +He_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons1_347)_ 6.37805362534327501e+18 OP +He_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons1_348)_ 6.36766985461541478e+18 OP +He_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons1_349)_ 6.35725620253294182e+18 OP +He_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons1_350)_ 6.34681266909585818e+18 OP +He_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons1_351)_ 6.33633925430415974e+18 OP +He_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons1_352)_ 6.32583595815784960e+18 OP +He_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons1_353)_ 6.31530278065692672e+18 OP +He_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons1_354)_ 6.30473972180139110e+18 OP +He_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons1_355)_ 6.29414678159124275e+18 OP +He_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons1_356)_ 6.28352396002648269e+18 OP +He_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons1_357)_ 6.27287125710710989e+18 OP +He_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons1_358)_ 6.26218867283312435e+18 OP +He_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons1_359)_ 6.25147620720452608e+18 OP +He_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons1_360)_ 6.24073386022131507e+18 OP +He_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons1_361)_ 6.22996163188349133e+18 OP +He_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons1_362)_ 6.21915952219105587e+18 OP +He_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons1_363)_ 6.20832753114400768e+18 OP +He_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons1_364)_ 6.19746565874234778e+18 OP +He_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons1_365)_ 6.18657390498607411e+18 OP +He_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons1_366)_ 6.17565226987518771e+18 OP +He_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons1_367)_ 6.16470075340968858e+18 OP +He_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons1_368)_ 6.15371935558957773e+18 OP +He_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons1_369)_ 6.14270807641485517e+18 OP +He_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons1_370)_ 6.13166691588551782e+18 OP +He_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons1_371)_ 6.12059587400156979e+18 OP +He_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons1_372)_ 6.10949495076300800e+18 OP +He_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons1_373)_ 6.09836414616983450e+18 OP +He_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons1_374)_ 6.08720346022204826e+18 OP +He_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons1_375)_ 6.07601289291964928e+18 OP +He_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons1_376)_ 6.06479244426263859e+18 OP +He_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons1_377)_ 6.05354211425101414e+18 OP +He_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons1_378)_ 6.04226190288477696e+18 OP +He_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons1_379)_ 6.03095181016392909e+18 OP +He_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons1_380)_ 6.01961183608846643e+18 OP +He_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons1_381)_ 6.00824198065839206e+18 OP +He_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons1_382)_ 5.99684224387370598e+18 OP +He_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons1_383)_ 5.98541262573440614e+18 OP +He_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons1_384)_ 5.97395312624049459e+18 OP +He_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons1_385)_ 5.96246374539197133e+18 OP +He_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons1_386)_ 5.95094448318883430e+18 OP +He_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons1_387)_ 5.93939533963108352e+18 OP +He_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons1_388)_ 5.92781631471872205e+18 OP +He_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons1_389)_ 5.91620740845174886e+18 OP +He_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons1_390)_ 5.90456862083016090e+18 OP +He_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons1_391)_ 5.89289995185396122e+18 OP +He_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons1_392)_ 5.88120140152314880e+18 OP +He_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons1_393)_ 5.86947296983772467e+18 OP +He_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons1_394)_ 5.85771465679768678e+18 OP +He_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons1_395)_ 5.84592646240303718e+18 OP +He_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons1_396)_ 5.83410838665377485e+18 OP +He_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons1_397)_ 5.82226042954989978e+18 OP +He_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons1_398)_ 5.81038259109141197e+18 OP +He_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons1_399)_ 5.79847487127831245e+18 OP +He_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons1_400)_ 5.78653727011059917e+18 OP +He_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons1_401)_ 5.77456978758827418e+18 OP +He_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons1_402)_ 5.76257242371133645e+18 OP +He_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons1_403)_ 5.75054517847978701e+18 OP +He_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons1_404)_ 5.73848805189362381e+18 OP +He_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons1_405)_ 5.72640104395284890e+18 OP +He_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons1_406)_ 5.71428415465746125e+18 OP +He_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons1_407)_ 5.70213738400746086e+18 OP +He_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons1_408)_ 5.68996073200284774e+18 OP +He_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons1_409)_ 5.67775419864362291e+18 OP +He_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons1_410)_ 5.66551778392978432e+18 OP +He_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons1_411)_ 5.65325148786133402e+18 OP +He_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons1_412)_ 5.64095531043827098e+18 OP +He_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons1_413)_ 5.62862925166059520e+18 OP +He_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons1_414)_ 5.61627331152830771e+18 OP +He_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons1_415)_ 5.60388749004140646e+18 OP +He_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons1_416)_ 5.59147178719989350e+18 OP +He_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons1_417)_ 5.57902620300376781e+18 OP +He_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons1_418)_ 5.56655073745302835e+18 OP +He_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons1_419)_ 5.55404539054767821e+18 OP +He_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons1_420)_ 5.54151016228771430e+18 OP +He_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons1_421)_ 5.52894505267313869e+18 OP +He_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons1_422)_ 5.51635006170394931e+18 OP +He_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons1_423)_ 5.50372518938014822e+18 OP +He_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons1_424)_ 5.49107043570173440e+18 OP +He_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons1_425)_ 5.47838580066870886e+18 OP +He_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons1_426)_ 5.46567128428107059e+18 OP +He_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons1_427)_ 5.45292688653881856e+18 OP +He_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons1_428)_ 5.44015260744195584e+18 OP +He_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons1_429)_ 5.42734844699047834e+18 OP +He_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons1_430)_ 5.41451440518438912e+18 OP +He_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons1_431)_ 5.40165048202368819e+18 OP +He_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons1_432)_ 5.38875667750837453e+18 OP +He_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons1_433)_ 5.37583299163844710e+18 OP +He_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons1_434)_ 5.36287942441390899e+18 OP +He_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons1_435)_ 5.34989597583475610e+18 OP +He_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons1_436)_ 5.33688264590099251e+18 OP +He_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons1_437)_ 5.32383943461261517e+18 OP +He_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons1_438)_ 5.31076634196962611e+18 OP +He_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons1_439)_ 5.29766336797202432e+18 OP +He_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons1_440)_ 5.28453051261980979e+18 OP +He_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons1_441)_ 5.27136777591298253e+18 OP +He_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons1_442)_ 5.25817515785154355e+18 OP +He_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons1_443)_ 5.24495265843549082e+18 OP +He_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons1_444)_ 5.23170027766482637e+18 OP +He_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons1_445)_ 5.21841801553954918e+18 OP +He_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons1_446)_ 5.20510587205966029e+18 OP +He_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons1_447)_ 5.19176384722515661e+18 OP +He_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons1_448)_ 5.17839194103604224e+18 OP +He_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons1_449)_ 5.16499015349231514e+18 OP +He_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons1_450)_ 5.15155848459397530e+18 OP +He_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons1_451)_ 5.13809693434102272e+18 OP +He_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons1_452)_ 5.12460550273345843e+18 OP +He_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons1_453)_ 5.11108418977128038e+18 OP +He_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons1_454)_ 5.09753299545449062e+18 OP +He_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons1_455)_ 5.08395191978308710e+18 OP +He_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons1_456)_ 5.07034096275707290e+18 OP +He_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons1_457)_ 5.05670012437644390e+18 OP +He_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons1_458)_ 5.04302940464120422e+18 OP +He_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons1_459)_ 5.02932880355135078e+18 OP +He_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons1_460)_ 5.01559832110688666e+18 OP +He_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons1_461)_ 5.00183795730780774e+18 OP +He_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons1_462)_ 4.98804771215411814e+18 OP +He_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons1_463)_ 4.97422758564581478e+18 OP +He_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons1_464)_ 4.96037757778289869e+18 OP +He_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons1_465)_ 4.94649768856537088e+18 OP +He_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons1_466)_ 4.93258791799323034e+18 OP +He_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons1_467)_ 4.91864826606647706e+18 OP +He_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons1_468)_ 4.90467873278511104e+18 OP +He_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons1_469)_ 4.89067931814913331e+18 OP +He_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons1_470)_ 4.87665002215854285e+18 OP +He_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons1_471)_ 4.80971561008969933e+18 OP +He_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons1_472)_ 4.74278119802085683e+18 OP +He_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons1_473)_ 4.67584678595201434e+18 OP +He_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons1_474)_ 4.60891237388317235e+18 OP +He_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons1_475)_ 4.54197796181432883e+18 OP +He_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons1_476)_ 4.47504354974548634e+18 OP +He_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons1_477)_ 4.40810913767664333e+18 OP +He_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons1_478)_ 4.34117472560780083e+18 OP +He_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons1_479)_ 4.27424031353895834e+18 OP +He_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons1_480)_ 4.20730590147011584e+18 OP +He_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons1_481)_ 4.14037148940127283e+18 OP +He_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons1_482)_ 4.07343707733243034e+18 OP +He_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons1_483)_ 4.00650266526358682e+18 OP +He_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons1_484)_ 3.93956825319474432e+18 OP +He_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons1_485)_ 3.87263384112590182e+18 OP +He_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons1_486)_ 3.80569942905705933e+18 OP +He_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons1_487)_ 3.73876501698821632e+18 OP +He_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons1_488)_ 3.67183060491937382e+18 OP +He_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons1_489)_ 3.60489619285053030e+18 OP +He_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons1_490)_ 3.53796178078168781e+18 OP +He_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons1_491)_ 3.47102736871284531e+18 OP +He_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons1_492)_ 3.40409295664400230e+18 OP +He_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons1_493)_ 3.33715854457515981e+18 OP +He_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons1_494)_ 3.27022413250631731e+18 OP +He_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons1_495)_ 3.20328972043747430e+18 OP +He_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons1_496)_ 3.13635530836863181e+18 OP +He_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons1_497)_ 3.06942089629978931e+18 OP +He_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons1_498)_ 3.00248648423094579e+18 OP +He_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons1_499)_ 2.93555207216210330e+18 OP +He_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons1_500)_ 2.86861766009326080e+18 OP Be_concentration_________________________________________________________ (f_nd_impurity_electrons(03))__ 0.00000000000000000e+00 C_concentration__________________________________________________________ (f_nd_impurity_electrons(04))__ 0.00000000000000000e+00 N_concentration__________________________________________________________ (f_nd_impurity_electrons(05))__ 0.00000000000000000e+00 @@ -5016,1512 +5013,1512 @@ Ar_concentration_________________________________________________________ (f_nd_ Fe_concentration_________________________________________________________ (f_nd_impurity_electrons(10))__ 0.00000000000000000e+00 Ni_concentration_________________________________________________________ (f_nd_impurity_electrons(11))__ 0.00000000000000000e+00 Kr_concentration_________________________________________________________ (f_nd_impurity_electrons(12))__ 0.00000000000000000e+00 -Xe_concentration_________________________________________________________ (f_nd_impurity_electrons(13))__ 6.12023394218243070e-04 -Xe_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons12_0)__ 6.53879673061058720e+16 OP -Xe_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons12_1)__ 6.53878478327984560e+16 OP -Xe_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons12_2)__ 6.53874894128762480e+16 OP -Xe_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons12_3)__ 6.53868920463392160e+16 OP -Xe_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons12_4)__ 6.53860557331873840e+16 OP -Xe_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons12_5)__ 6.53849804734207440e+16 OP -Xe_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons12_6)__ 6.53836662670392720e+16 OP -Xe_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons12_7)__ 6.53821131140430080e+16 OP -Xe_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons12_8)__ 6.53803210144319280e+16 OP -Xe_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons12_9)__ 6.53782899682060320e+16 OP -Xe_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons12_10)_ 6.53760199753653360e+16 OP -Xe_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons12_11)_ 6.53735110359098240e+16 OP -Xe_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons12_12)_ 6.53707631498394960e+16 OP -Xe_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons12_13)_ 6.53677763171543680e+16 OP -Xe_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons12_14)_ 6.53645505378544240e+16 OP -Xe_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons12_15)_ 6.53610858119396640e+16 OP -Xe_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons12_16)_ 6.53573821394101040e+16 OP -Xe_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons12_17)_ 6.53534395202657280e+16 OP -Xe_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons12_18)_ 6.53492579545065440e+16 OP -Xe_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons12_19)_ 6.53448374421325440e+16 OP -Xe_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons12_20)_ 6.53401779831437280e+16 OP -Xe_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons12_21)_ 6.53352795775401120e+16 OP -Xe_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons12_22)_ 6.53301422253216800e+16 OP -Xe_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons12_23)_ 6.53247659264884480e+16 OP -Xe_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons12_24)_ 6.53191506810403840e+16 OP -Xe_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons12_25)_ 6.53132964889775280e+16 OP -Xe_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons12_26)_ 6.53072033502998480e+16 OP -Xe_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons12_27)_ 6.53008712650073680e+16 OP -Xe_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons12_28)_ 6.52943002331000720e+16 OP -Xe_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons12_29)_ 6.52874902545779680e+16 OP -Xe_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons12_30)_ 6.52804413294410560e+16 OP -Xe_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons12_31)_ 6.52731534576893280e+16 OP -Xe_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons12_32)_ 6.52656266393228000e+16 OP -Xe_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons12_33)_ 6.52578608743414480e+16 OP -Xe_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons12_34)_ 6.52498561627452880e+16 OP -Xe_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons12_35)_ 6.52416125045343120e+16 OP -Xe_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons12_36)_ 6.52331298997085360e+16 OP -Xe_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons12_37)_ 6.52244083482679520e+16 OP -Xe_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons12_38)_ 6.52154478502125440e+16 OP -Xe_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons12_39)_ 6.52062484055423280e+16 OP -Xe_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons12_40)_ 6.51968100142573120e+16 OP -Xe_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons12_41)_ 6.51871326763574720e+16 OP -Xe_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons12_42)_ 6.51772163918428320e+16 OP -Xe_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons12_43)_ 6.51670611607133840e+16 OP -Xe_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons12_44)_ 6.51566669829691120e+16 OP -Xe_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons12_45)_ 6.51460338586100320e+16 OP -Xe_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons12_46)_ 6.51351617876361440e+16 OP -Xe_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons12_47)_ 6.51240507700474560e+16 OP -Xe_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons12_48)_ 6.51127008058439440e+16 OP -Xe_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons12_49)_ 6.51011118950256240e+16 OP -Xe_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons12_50)_ 6.50892840375924960e+16 OP -Xe_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons12_51)_ 6.50772172335445440e+16 OP -Xe_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons12_52)_ 6.50649114828818080e+16 OP -Xe_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons12_53)_ 6.50523667856042400e+16 OP -Xe_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons12_54)_ 6.50395831417118640e+16 OP -Xe_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons12_55)_ 6.50265605512046800e+16 OP -Xe_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons12_56)_ 6.50132990140826880e+16 OP -Xe_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons12_57)_ 6.49997985303458880e+16 OP -Xe_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons12_58)_ 6.49860590999942640e+16 OP -Xe_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons12_59)_ 6.49720807230278480e+16 OP -Xe_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons12_60)_ 6.49578633994466000e+16 OP -Xe_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons12_61)_ 6.49434071292505680e+16 OP -Xe_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons12_62)_ 6.49287119124397040e+16 OP -Xe_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons12_63)_ 6.49137777490140400e+16 OP -Xe_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons12_64)_ 6.48986046389735600e+16 OP -Xe_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons12_65)_ 6.48831925823182720e+16 OP -Xe_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons12_66)_ 6.48675415790481680e+16 OP -Xe_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons12_67)_ 6.48516516291632560e+16 OP -Xe_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons12_68)_ 6.48355227326635360e+16 OP -Xe_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons12_69)_ 6.48191548895490000e+16 OP -Xe_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons12_70)_ 6.48025480998196560e+16 OP -Xe_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons12_71)_ 6.47857023634754960e+16 OP -Xe_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons12_72)_ 6.47686176805165360e+16 OP -Xe_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons12_73)_ 6.47512940509427600e+16 OP -Xe_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons12_74)_ 6.47337314747541680e+16 OP -Xe_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons12_75)_ 6.47159299519507680e+16 OP -Xe_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons12_76)_ 6.46978894825325680e+16 OP -Xe_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons12_77)_ 6.46796100664995440e+16 OP -Xe_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons12_78)_ 6.46610917038517200e+16 OP -Xe_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons12_79)_ 6.46423343945890800e+16 OP -Xe_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons12_80)_ 6.46233381387116240e+16 OP -Xe_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons12_81)_ 6.46041029362193680e+16 OP -Xe_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons12_82)_ 6.45846287871122880e+16 OP -Xe_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons12_83)_ 6.45649156913904080e+16 OP -Xe_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons12_84)_ 6.45449636490537200e+16 OP -Xe_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons12_85)_ 6.45247726601022080e+16 OP -Xe_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons12_86)_ 6.45043427245358880e+16 OP -Xe_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons12_87)_ 6.44836738423547680e+16 OP -Xe_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons12_88)_ 6.44627660135588320e+16 OP -Xe_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons12_89)_ 6.44416192381480960e+16 OP -Xe_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons12_90)_ 6.44202335161225280e+16 OP -Xe_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons12_91)_ 6.43986088474821600e+16 OP -Xe_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons12_92)_ 6.43767452322269840e+16 OP -Xe_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons12_93)_ 6.43546426703569840e+16 OP -Xe_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons12_94)_ 6.43323011618721920e+16 OP -Xe_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons12_95)_ 6.43097207067725840e+16 OP -Xe_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons12_96)_ 6.42869013050581600e+16 OP -Xe_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons12_97)_ 6.42638429567289200e+16 OP -Xe_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons12_98)_ 6.42405456617848880e+16 OP -Xe_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons12_99)_ 6.42170094202260320e+16 OP -Xe_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons12_100)_ 6.41932342320523680e+16 OP -Xe_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons12_101)_ 6.41692200972638960e+16 OP -Xe_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons12_102)_ 6.41449670158606080e+16 OP -Xe_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons12_103)_ 6.41204749878425040e+16 OP -Xe_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons12_104)_ 6.40957440132095920e+16 OP -Xe_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons12_105)_ 6.40707740919618880e+16 OP -Xe_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons12_106)_ 6.40455652240993520e+16 OP -Xe_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons12_107)_ 6.40201174096220080e+16 OP -Xe_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons12_108)_ 6.39944306485298560e+16 OP -Xe_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons12_109)_ 6.39685049408229040e+16 OP -Xe_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons12_110)_ 6.39423402865011200e+16 OP -Xe_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons12_111)_ 6.39159366855645520e+16 OP -Xe_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons12_112)_ 6.38892941380131520e+16 OP -Xe_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons12_113)_ 6.38624126438469440e+16 OP -Xe_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons12_114)_ 6.38352922030659360e+16 OP -Xe_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons12_115)_ 6.38079328156701120e+16 OP -Xe_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons12_116)_ 6.37803344816594720e+16 OP -Xe_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons12_117)_ 6.37524972010340240e+16 OP -Xe_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons12_118)_ 6.37244209737937760e+16 OP -Xe_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons12_119)_ 6.36961057999387040e+16 OP -Xe_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons12_120)_ 6.36675516794688240e+16 OP -Xe_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons12_121)_ 6.36387586123841440e+16 OP -Xe_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons12_122)_ 6.36097265986846320e+16 OP -Xe_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons12_123)_ 6.35804556383703200e+16 OP -Xe_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons12_124)_ 6.35509457314412080e+16 OP -Xe_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons12_125)_ 6.35211968778972640e+16 OP -Xe_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons12_126)_ 6.34912090777385200e+16 OP -Xe_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons12_127)_ 6.34609823309649680e+16 OP -Xe_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons12_128)_ 6.34305166375766160e+16 OP -Xe_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons12_129)_ 6.33998119975734320e+16 OP -Xe_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons12_130)_ 6.33688684109554480e+16 OP -Xe_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons12_131)_ 6.33376858777226560e+16 OP -Xe_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons12_132)_ 6.33062643978750400e+16 OP -Xe_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons12_133)_ 6.32746039714126240e+16 OP -Xe_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons12_134)_ 6.32427045983354000e+16 OP -Xe_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons12_135)_ 6.32105662786433520e+16 OP -Xe_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons12_136)_ 6.31781890123365120e+16 OP -Xe_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons12_137)_ 6.31455727994148400e+16 OP -Xe_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons12_138)_ 6.31127176398783760e+16 OP -Xe_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons12_139)_ 6.30796235337270880e+16 OP -Xe_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons12_140)_ 6.30462904809610000e+16 OP -Xe_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons12_141)_ 6.30127184815801040e+16 OP -Xe_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons12_142)_ 6.29789075355843760e+16 OP -Xe_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons12_143)_ 6.29448576429738480e+16 OP -Xe_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons12_144)_ 6.29105688037485200e+16 OP -Xe_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons12_145)_ 6.28760410179083840e+16 OP -Xe_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons12_146)_ 6.28412742854534240e+16 OP -Xe_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons12_147)_ 6.28062686063836560e+16 OP -Xe_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons12_148)_ 6.27710239806990640e+16 OP -Xe_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons12_149)_ 6.27355404083996800e+16 OP -Xe_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons12_150)_ 6.26998178894854800e+16 OP -Xe_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons12_151)_ 6.26638564239564640e+16 OP -Xe_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons12_152)_ 6.26276560118126480e+16 OP -Xe_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons12_153)_ 6.25912166530540240e+16 OP -Xe_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons12_154)_ 6.25545383476805760e+16 OP -Xe_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons12_155)_ 6.25176210956923200e+16 OP -Xe_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons12_156)_ 6.24804648970892560e+16 OP -Xe_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons12_157)_ 6.24430697518713840e+16 OP -Xe_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons12_158)_ 6.24054356600387040e+16 OP -Xe_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons12_159)_ 6.23675626215912000e+16 OP -Xe_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons12_160)_ 6.23294506365288960e+16 OP -Xe_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons12_161)_ 6.22910997048517840e+16 OP -Xe_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons12_162)_ 6.22525098265598400e+16 OP -Xe_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons12_163)_ 6.22136810016531120e+16 OP -Xe_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons12_164)_ 6.21746132301315520e+16 OP -Xe_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons12_165)_ 6.21353065119952080e+16 OP -Xe_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons12_166)_ 6.20957608472440320e+16 OP -Xe_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons12_167)_ 6.20559762358780480e+16 OP -Xe_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons12_168)_ 6.20159526778972640e+16 OP -Xe_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons12_169)_ 6.19756901733016560e+16 OP -Xe_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons12_170)_ 6.19351887220912400e+16 OP -Xe_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons12_171)_ 6.18944483242660160e+16 OP -Xe_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons12_172)_ 6.18534689798259760e+16 OP -Xe_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons12_173)_ 6.18122506887711360e+16 OP -Xe_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons12_174)_ 6.17707934511014720e+16 OP -Xe_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons12_175)_ 6.17290972668170160e+16 OP -Xe_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons12_176)_ 6.16871621359177280e+16 OP -Xe_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons12_177)_ 6.16449880584036400e+16 OP -Xe_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons12_178)_ 6.16025750342747520e+16 OP -Xe_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons12_179)_ 6.15599230635310320e+16 OP -Xe_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons12_180)_ 6.15170321461725120e+16 OP -Xe_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons12_181)_ 6.14739022821991840e+16 OP -Xe_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons12_182)_ 6.14305334716110400e+16 OP -Xe_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons12_183)_ 6.13869257144080800e+16 OP -Xe_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons12_184)_ 6.13430790105903200e+16 OP -Xe_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons12_185)_ 6.12989933601577440e+16 OP -Xe_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons12_186)_ 6.12546687631103680e+16 OP -Xe_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons12_187)_ 6.12101052194481680e+16 OP -Xe_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons12_188)_ 6.11653027291711600e+16 OP -Xe_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons12_189)_ 6.11202612922793440e+16 OP -Xe_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons12_190)_ 6.10749809087727120e+16 OP -Xe_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons12_191)_ 6.10294615786512800e+16 OP -Xe_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons12_192)_ 6.09837033019150320e+16 OP -Xe_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons12_193)_ 6.09377060785639680e+16 OP -Xe_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons12_194)_ 6.08914699085980960e+16 OP -Xe_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons12_195)_ 6.08449947920174160e+16 OP -Xe_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons12_196)_ 6.07982807288219280e+16 OP -Xe_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons12_197)_ 6.07513277190116240e+16 OP -Xe_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons12_198)_ 6.07041357625865040e+16 OP -Xe_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons12_199)_ 6.06567048595465840e+16 OP -Xe_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons12_200)_ 6.06090350098918480e+16 OP -Xe_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons12_201)_ 6.05611262136223040e+16 OP -Xe_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons12_202)_ 6.05129784707379440e+16 OP -Xe_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons12_203)_ 6.04645917812387760e+16 OP -Xe_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons12_204)_ 6.04159661451248080e+16 OP -Xe_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons12_205)_ 6.03671015623960160e+16 OP -Xe_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons12_206)_ 6.03179980330524080e+16 OP -Xe_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons12_207)_ 6.02686555570940080e+16 OP -Xe_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons12_208)_ 6.02190741345207840e+16 OP -Xe_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons12_209)_ 6.01692537653327520e+16 OP -Xe_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons12_210)_ 6.01191944495299120e+16 OP -Xe_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons12_211)_ 6.00688961871122640e+16 OP -Xe_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons12_212)_ 6.00183589780798000e+16 OP -Xe_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons12_213)_ 5.99675828224325280e+16 OP -Xe_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons12_214)_ 5.99165677201704320e+16 OP -Xe_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons12_215)_ 5.98653136712935440e+16 OP -Xe_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons12_216)_ 5.98138206758018400e+16 OP -Xe_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons12_217)_ 5.97620887336953120e+16 OP -Xe_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons12_218)_ 5.97101178449739920e+16 OP -Xe_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons12_219)_ 5.96579080096378560e+16 OP -Xe_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons12_220)_ 5.96054592276869040e+16 OP -Xe_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons12_221)_ 5.95527714991211440e+16 OP -Xe_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons12_222)_ 5.94998448239405760e+16 OP -Xe_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons12_223)_ 5.94466792021452000e+16 OP -Xe_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons12_224)_ 5.93932746337350080e+16 OP -Xe_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons12_225)_ 5.93396311187100000e+16 OP -Xe_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons12_226)_ 5.92857486570701920e+16 OP -Xe_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons12_227)_ 5.92316272488155600e+16 OP -Xe_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons12_228)_ 5.91772668939461360e+16 OP -Xe_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons12_229)_ 5.91226675924618800e+16 OP -Xe_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons12_230)_ 5.90678293443628320e+16 OP -Xe_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons12_231)_ 5.90127521496489520e+16 OP -Xe_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons12_232)_ 5.89574360083202880e+16 OP -Xe_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons12_233)_ 5.89018809203767920e+16 OP -Xe_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons12_234)_ 5.88460868858184880e+16 OP -Xe_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons12_235)_ 5.87900539046453920e+16 OP -Xe_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons12_236)_ 5.87337819768574720e+16 OP -Xe_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons12_237)_ 5.86772711024547360e+16 OP -Xe_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons12_238)_ 5.86205212814372000e+16 OP -Xe_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons12_239)_ 5.85635325138048480e+16 OP -Xe_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons12_240)_ 5.85063047995576800e+16 OP -Xe_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons12_241)_ 5.84488381386957040e+16 OP -Xe_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons12_242)_ 5.83911325312189200e+16 OP -Xe_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons12_243)_ 5.83331879771273280e+16 OP -Xe_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons12_244)_ 5.82750044764209200e+16 OP -Xe_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons12_245)_ 5.82165820290997040e+16 OP -Xe_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons12_246)_ 5.81579206351636800e+16 OP -Xe_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons12_247)_ 5.80990202946128400e+16 OP -Xe_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons12_248)_ 5.80398810074471920e+16 OP -Xe_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons12_249)_ 5.79805027736667280e+16 OP -Xe_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons12_250)_ 5.79208855932714640e+16 OP -Xe_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons12_251)_ 5.78610294662613760e+16 OP -Xe_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons12_252)_ 5.78009343926364960e+16 OP -Xe_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons12_253)_ 5.77406003723967840e+16 OP -Xe_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons12_254)_ 5.76800274055422800e+16 OP -Xe_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons12_255)_ 5.76192154920729520e+16 OP -Xe_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons12_256)_ 5.75581646319888160e+16 OP -Xe_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons12_257)_ 5.74968748252898720e+16 OP -Xe_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons12_258)_ 5.74353460719761200e+16 OP -Xe_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons12_259)_ 5.73735783720475520e+16 OP -Xe_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons12_260)_ 5.73115717255041760e+16 OP -Xe_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons12_261)_ 5.72493261323459840e+16 OP -Xe_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons12_262)_ 5.71868415925729920e+16 OP -Xe_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons12_263)_ 5.71241181061851760e+16 OP -Xe_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons12_264)_ 5.70611556731825600e+16 OP -Xe_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons12_265)_ 5.69979542935651280e+16 OP -Xe_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons12_266)_ 5.69345139673328880e+16 OP -Xe_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons12_267)_ 5.68708346944858320e+16 OP -Xe_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons12_268)_ 5.68069164750239680e+16 OP -Xe_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons12_269)_ 5.67427593089472960e+16 OP -Xe_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons12_270)_ 5.66783631962558160e+16 OP -Xe_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons12_271)_ 5.66137281369495200e+16 OP -Xe_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons12_272)_ 5.65488541310284080e+16 OP -Xe_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons12_273)_ 5.64837411784924960e+16 OP -Xe_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons12_274)_ 5.64183892793417680e+16 OP -Xe_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons12_275)_ 5.63527984335762320e+16 OP -Xe_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons12_276)_ 5.62869686411958880e+16 OP -Xe_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons12_277)_ 5.62208999022007280e+16 OP -Xe_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons12_278)_ 5.61545922165907600e+16 OP -Xe_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons12_279)_ 5.60880455843659760e+16 OP -Xe_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons12_280)_ 5.60212600055263840e+16 OP -Xe_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons12_281)_ 5.59542354800719840e+16 OP -Xe_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons12_282)_ 5.58869720080027680e+16 OP -Xe_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons12_283)_ 5.58194695893187600e+16 OP -Xe_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons12_284)_ 5.57517282240199200e+16 OP -Xe_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons12_285)_ 5.56837479121062800e+16 OP -Xe_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons12_286)_ 5.56155286535778160e+16 OP -Xe_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons12_287)_ 5.55470704484345520e+16 OP -Xe_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons12_288)_ 5.54783732966764800e+16 OP -Xe_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons12_289)_ 5.54094371983035920e+16 OP -Xe_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons12_290)_ 5.53402621533158880e+16 OP -Xe_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons12_291)_ 5.52708481617133840e+16 OP -Xe_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons12_292)_ 5.52011952234960640e+16 OP -Xe_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons12_293)_ 5.51313033386639360e+16 OP -Xe_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons12_294)_ 5.50611725072170000e+16 OP -Xe_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons12_295)_ 5.49908027291552400e+16 OP -Xe_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons12_296)_ 5.49201940044786800e+16 OP -Xe_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons12_297)_ 5.48493463331873120e+16 OP -Xe_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons12_298)_ 5.47782597152811200e+16 OP -Xe_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons12_299)_ 5.47069341507601280e+16 OP -Xe_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons12_300)_ 5.46353696396243200e+16 OP -Xe_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons12_301)_ 5.45635661818736960e+16 OP -Xe_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons12_302)_ 5.44915237775082800e+16 OP -Xe_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons12_303)_ 5.44192424265280400e+16 OP -Xe_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons12_304)_ 5.43467221289329920e+16 OP -Xe_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons12_305)_ 5.42739628847231360e+16 OP -Xe_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons12_306)_ 5.42009646938984640e+16 OP -Xe_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons12_307)_ 5.41277275564589920e+16 OP -Xe_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons12_308)_ 5.40542514724046960e+16 OP -Xe_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons12_309)_ 5.39805364417355920e+16 OP -Xe_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons12_310)_ 5.39065824644516720e+16 OP -Xe_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons12_311)_ 5.38323895405529600e+16 OP -Xe_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons12_312)_ 5.37579576700394240e+16 OP -Xe_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons12_313)_ 5.36832868529110880e+16 OP -Xe_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons12_314)_ 5.36083770891679280e+16 OP -Xe_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons12_315)_ 5.35332283788099680e+16 OP -Xe_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons12_316)_ 5.34578407218371840e+16 OP -Xe_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons12_317)_ 5.33822141182496080e+16 OP -Xe_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons12_318)_ 5.33063485680472000e+16 OP -Xe_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons12_319)_ 5.32302440712299920e+16 OP -Xe_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons12_320)_ 5.31539006277979760e+16 OP -Xe_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons12_321)_ 5.30773182377511440e+16 OP -Xe_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons12_322)_ 5.30004969010894960e+16 OP -Xe_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons12_323)_ 5.29234366178130480e+16 OP -Xe_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons12_324)_ 5.28461373879217920e+16 OP -Xe_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons12_325)_ 5.27685992114157200e+16 OP -Xe_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons12_326)_ 5.26908220882948320e+16 OP -Xe_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons12_327)_ 5.26128060185591360e+16 OP -Xe_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons12_328)_ 5.25345510022086320e+16 OP -Xe_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons12_329)_ 5.24560570392433200e+16 OP -Xe_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons12_330)_ 5.23773241296631840e+16 OP -Xe_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons12_331)_ 5.22983522734682560e+16 OP -Xe_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons12_332)_ 5.22191414706585040e+16 OP -Xe_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons12_333)_ 5.21396917212339520e+16 OP -Xe_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons12_334)_ 5.20600030251945760e+16 OP -Xe_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons12_335)_ 5.19800753825404000e+16 OP -Xe_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons12_336)_ 5.18999087932714160e+16 OP -Xe_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons12_337)_ 5.18195032573876080e+16 OP -Xe_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons12_338)_ 5.17388587748890000e+16 OP -Xe_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons12_339)_ 5.16579753457755840e+16 OP -Xe_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons12_340)_ 5.15768529700473520e+16 OP -Xe_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons12_341)_ 5.14954916477043040e+16 OP -Xe_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons12_342)_ 5.14138913787464480e+16 OP -Xe_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons12_343)_ 5.13320521631737840e+16 OP -Xe_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons12_344)_ 5.12499740009863120e+16 OP -Xe_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons12_345)_ 5.11676568921840160e+16 OP -Xe_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons12_346)_ 5.10851008367669280e+16 OP -Xe_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons12_347)_ 5.10023058347350240e+16 OP -Xe_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons12_348)_ 5.09192718860883040e+16 OP -Xe_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons12_349)_ 5.08359989908267680e+16 OP -Xe_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons12_350)_ 5.07524871489504240e+16 OP -Xe_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons12_351)_ 5.06687363604592720e+16 OP -Xe_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons12_352)_ 5.05847466253533200e+16 OP -Xe_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons12_353)_ 5.05005179436325360e+16 OP -Xe_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons12_354)_ 5.04160503152969600e+16 OP -Xe_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons12_355)_ 5.03313437403465680e+16 OP -Xe_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons12_356)_ 5.02463982187813600e+16 OP -Xe_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons12_357)_ 5.01612137506013440e+16 OP -Xe_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons12_358)_ 5.00757903358065280e+16 OP -Xe_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons12_359)_ 4.99901279743968880e+16 OP -Xe_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons12_360)_ 4.99042266663724400e+16 OP -Xe_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons12_361)_ 4.98180864117331760e+16 OP -Xe_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons12_362)_ 4.97317072104791120e+16 OP -Xe_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons12_363)_ 4.96450890626102320e+16 OP -Xe_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons12_364)_ 4.95582319681265440e+16 OP -Xe_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons12_365)_ 4.94711359270280400e+16 OP -Xe_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons12_366)_ 4.93838009393147360e+16 OP -Xe_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons12_367)_ 4.92962270049866080e+16 OP -Xe_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons12_368)_ 4.92084141240436720e+16 OP -Xe_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons12_369)_ 4.91203622964859360e+16 OP -Xe_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons12_370)_ 4.90320715223133760e+16 OP -Xe_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons12_371)_ 4.89435418015260080e+16 OP -Xe_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons12_372)_ 4.88547731341238480e+16 OP -Xe_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons12_373)_ 4.87657655201068480e+16 OP -Xe_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons12_374)_ 4.86765189594750560e+16 OP -Xe_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons12_375)_ 4.85870334522284480e+16 OP -Xe_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons12_376)_ 4.84973089983670320e+16 OP -Xe_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons12_377)_ 4.84073455978908080e+16 OP -Xe_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons12_378)_ 4.83171432507997600e+16 OP -Xe_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons12_379)_ 4.82267019570939120e+16 OP -Xe_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons12_380)_ 4.81360217167732560e+16 OP -Xe_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons12_381)_ 4.80451025298377760e+16 OP -Xe_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons12_382)_ 4.79539443962874960e+16 OP -Xe_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons12_383)_ 4.78625473161224000e+16 OP -Xe_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons12_384)_ 4.77709112893424960e+16 OP -Xe_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons12_385)_ 4.76790363159477840e+16 OP -Xe_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons12_386)_ 4.75869223959382640e+16 OP -Xe_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons12_387)_ 4.74945695293139280e+16 OP -Xe_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons12_388)_ 4.74019777160747760e+16 OP -Xe_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons12_389)_ 4.73091469562208240e+16 OP -Xe_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons12_390)_ 4.72160772497520480e+16 OP -Xe_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons12_391)_ 4.71227685966684800e+16 OP -Xe_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons12_392)_ 4.70292209969700800e+16 OP -Xe_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons12_393)_ 4.69354344506568880e+16 OP -Xe_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons12_394)_ 4.68414089577288640e+16 OP -Xe_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons12_395)_ 4.67471445181860560e+16 OP -Xe_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons12_396)_ 4.66526411320284160e+16 OP -Xe_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons12_397)_ 4.65578987992559760e+16 OP -Xe_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons12_398)_ 4.64629175198687120e+16 OP -Xe_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons12_399)_ 4.63676972938666560e+16 OP -Xe_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons12_400)_ 4.62722381212497760e+16 OP -Xe_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons12_401)_ 4.61765400020180960e+16 OP -Xe_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons12_402)_ 4.60806029361716000e+16 OP -Xe_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons12_403)_ 4.59844269237102960e+16 OP -Xe_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons12_404)_ 4.58880119646341680e+16 OP -Xe_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons12_405)_ 4.57913580589432400e+16 OP -Xe_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons12_406)_ 4.56944652066375040e+16 OP -Xe_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons12_407)_ 4.55973334077169680e+16 OP -Xe_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons12_408)_ 4.54999626621816000e+16 OP -Xe_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons12_409)_ 4.54023529700314320e+16 OP -Xe_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons12_410)_ 4.53045043312664480e+16 OP -Xe_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons12_411)_ 4.52064167458866560e+16 OP -Xe_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons12_412)_ 4.51080902138920400e+16 OP -Xe_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons12_413)_ 4.50095247352826320e+16 OP -Xe_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons12_414)_ 4.49107203100584080e+16 OP -Xe_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons12_415)_ 4.48116769382193680e+16 OP -Xe_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons12_416)_ 4.47123946197655200e+16 OP -Xe_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons12_417)_ 4.46128733546968720e+16 OP -Xe_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons12_418)_ 4.45131131430134000e+16 OP -Xe_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons12_419)_ 4.44131139847151200e+16 OP -Xe_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons12_420)_ 4.43128758798020320e+16 OP -Xe_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons12_421)_ 4.42123988282741360e+16 OP -Xe_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons12_422)_ 4.41116828301314240e+16 OP -Xe_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons12_423)_ 4.40107278853739040e+16 OP -Xe_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons12_424)_ 4.39095339940015680e+16 OP -Xe_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons12_425)_ 4.38081011560144240e+16 OP -Xe_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons12_426)_ 4.37064293714124800e+16 OP -Xe_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons12_427)_ 4.36045186401957120e+16 OP -Xe_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons12_428)_ 4.35023689623641360e+16 OP -Xe_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons12_429)_ 4.33999803379177520e+16 OP -Xe_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons12_430)_ 4.32973527668565520e+16 OP -Xe_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons12_431)_ 4.31944862491805440e+16 OP -Xe_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons12_432)_ 4.30913807848897280e+16 OP -Xe_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons12_433)_ 4.29880363739840960e+16 OP -Xe_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons12_434)_ 4.28844530164636640e+16 OP -Xe_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons12_435)_ 4.27806307123284080e+16 OP -Xe_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons12_436)_ 4.26765694615783520e+16 OP -Xe_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons12_437)_ 4.25722692642134800e+16 OP -Xe_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons12_438)_ 4.24677301202338000e+16 OP -Xe_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons12_439)_ 4.23629520296393040e+16 OP -Xe_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons12_440)_ 4.22579349924300080e+16 OP -Xe_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons12_441)_ 4.21526790086058880e+16 OP -Xe_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons12_442)_ 4.20471840781669680e+16 OP -Xe_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons12_443)_ 4.19414502011132320e+16 OP -Xe_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons12_444)_ 4.18354773774446880e+16 OP -Xe_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons12_445)_ 4.17292656071613200e+16 OP -Xe_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons12_446)_ 4.16228148902631600e+16 OP -Xe_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons12_447)_ 4.15161252267501760e+16 OP -Xe_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons12_448)_ 4.14091966166223920e+16 OP -Xe_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons12_449)_ 4.13020290598797920e+16 OP -Xe_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons12_450)_ 4.11946225565223760e+16 OP -Xe_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons12_451)_ 4.10869771065501600e+16 OP -Xe_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons12_452)_ 4.09790927099631280e+16 OP -Xe_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons12_453)_ 4.08709693667612800e+16 OP -Xe_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons12_454)_ 4.07626070769446320e+16 OP -Xe_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons12_455)_ 4.06540058405131680e+16 OP -Xe_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons12_456)_ 4.05451656574668960e+16 OP -Xe_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons12_457)_ 4.04360865278058080e+16 OP -Xe_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons12_458)_ 4.03267684515299120e+16 OP -Xe_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons12_459)_ 4.02172114286392080e+16 OP -Xe_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons12_460)_ 4.01074154591336880e+16 OP -Xe_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons12_461)_ 3.99973805430133600e+16 OP -Xe_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons12_462)_ 3.98871066802782240e+16 OP -Xe_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons12_463)_ 3.97765938709282720e+16 OP -Xe_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons12_464)_ 3.96658421149635120e+16 OP -Xe_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons12_465)_ 3.95548514123839360e+16 OP -Xe_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons12_466)_ 3.94436217631895600e+16 OP -Xe_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons12_467)_ 3.93321531673803680e+16 OP -Xe_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons12_468)_ 3.92204456249563680e+16 OP -Xe_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons12_469)_ 3.91084991359175520e+16 OP -Xe_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons12_470)_ 3.89963137002639360e+16 OP -Xe_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons12_471)_ 3.84610701788877680e+16 OP -Xe_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons12_472)_ 3.79258266575115920e+16 OP -Xe_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons12_473)_ 3.73905831361354160e+16 OP -Xe_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons12_474)_ 3.68553396147592480e+16 OP -Xe_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons12_475)_ 3.63200960933830800e+16 OP -Xe_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons12_476)_ 3.57848525720069040e+16 OP -Xe_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons12_477)_ 3.52496090506307320e+16 OP -Xe_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons12_478)_ 3.47143655292545640e+16 OP -Xe_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons12_479)_ 3.41791220078783880e+16 OP -Xe_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons12_480)_ 3.36438784865022200e+16 OP -Xe_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons12_481)_ 3.31086349651260480e+16 OP -Xe_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons12_482)_ 3.25733914437498760e+16 OP -Xe_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons12_483)_ 3.20381479223737040e+16 OP -Xe_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons12_484)_ 3.15029044009975360e+16 OP -Xe_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons12_485)_ 3.09676608796213600e+16 OP -Xe_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons12_486)_ 3.04324173582451920e+16 OP -Xe_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons12_487)_ 2.98971738368690160e+16 OP -Xe_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons12_488)_ 2.93619303154928480e+16 OP -Xe_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons12_489)_ 2.88266867941166720e+16 OP -Xe_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons12_490)_ 2.82914432727405040e+16 OP -Xe_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons12_491)_ 2.77561997513643320e+16 OP -Xe_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons12_492)_ 2.72209562299881600e+16 OP -Xe_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons12_493)_ 2.66857127086119880e+16 OP -Xe_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons12_494)_ 2.61504691872358120e+16 OP -Xe_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons12_495)_ 2.56152256658596440e+16 OP -Xe_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons12_496)_ 2.50799821444834760e+16 OP -Xe_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons12_497)_ 2.45447386231073000e+16 OP -Xe_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons12_498)_ 2.40094951017311320e+16 OP -Xe_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons12_499)_ 2.34742515803549560e+16 OP -Xe_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons12_500)_ 2.29390080589787880e+16 OP +Xe_concentration_________________________________________________________ (f_nd_impurity_electrons(13))__ 5.96634627889471502e-04 +Xe_concentration_at_point_0______________________________________________ (f_nd_impurity_electrons12_0)__ 6.26187289219289840e+16 OP +Xe_concentration_at_point_1______________________________________________ (f_nd_impurity_electrons12_1)__ 6.26186145082075120e+16 OP +Xe_concentration_at_point_2______________________________________________ (f_nd_impurity_electrons12_2)__ 6.26182712670431280e+16 OP +Xe_concentration_at_point_3______________________________________________ (f_nd_impurity_electrons12_3)__ 6.26176991984358080e+16 OP +Xe_concentration_at_point_4______________________________________________ (f_nd_impurity_electrons12_4)__ 6.26168983023855520e+16 OP +Xe_concentration_at_point_5______________________________________________ (f_nd_impurity_electrons12_5)__ 6.26158685788923760e+16 OP +Xe_concentration_at_point_6______________________________________________ (f_nd_impurity_electrons12_6)__ 6.26146100279562800e+16 OP +Xe_concentration_at_point_7______________________________________________ (f_nd_impurity_electrons12_7)__ 6.26131226495772400e+16 OP +Xe_concentration_at_point_8______________________________________________ (f_nd_impurity_electrons12_8)__ 6.26114064437552880e+16 OP +Xe_concentration_at_point_9______________________________________________ (f_nd_impurity_electrons12_9)__ 6.26094614104904000e+16 OP +Xe_concentration_at_point_10_____________________________________________ (f_nd_impurity_electrons12_10)_ 6.26072875497825920e+16 OP +Xe_concentration_at_point_11_____________________________________________ (f_nd_impurity_electrons12_11)_ 6.26048848616318400e+16 OP +Xe_concentration_at_point_12_____________________________________________ (f_nd_impurity_electrons12_12)_ 6.26022533460381680e+16 OP +Xe_concentration_at_point_13_____________________________________________ (f_nd_impurity_electrons12_13)_ 6.25993930030015680e+16 OP +Xe_concentration_at_point_14_____________________________________________ (f_nd_impurity_electrons12_14)_ 6.25963038325220480e+16 OP +Xe_concentration_at_point_15_____________________________________________ (f_nd_impurity_electrons12_15)_ 6.25929858345995920e+16 OP +Xe_concentration_at_point_16_____________________________________________ (f_nd_impurity_electrons12_16)_ 6.25894390092342160e+16 OP +Xe_concentration_at_point_17_____________________________________________ (f_nd_impurity_electrons12_17)_ 6.25856633564258960e+16 OP +Xe_concentration_at_point_18_____________________________________________ (f_nd_impurity_electrons12_18)_ 6.25816588761746720e+16 OP +Xe_concentration_at_point_19_____________________________________________ (f_nd_impurity_electrons12_19)_ 6.25774255684805040e+16 OP +Xe_concentration_at_point_20_____________________________________________ (f_nd_impurity_electrons12_20)_ 6.25729634333434080e+16 OP +Xe_concentration_at_point_21_____________________________________________ (f_nd_impurity_electrons12_21)_ 6.25682724707633840e+16 OP +Xe_concentration_at_point_22_____________________________________________ (f_nd_impurity_electrons12_22)_ 6.25633526807404320e+16 OP +Xe_concentration_at_point_23_____________________________________________ (f_nd_impurity_electrons12_23)_ 6.25582040632745600e+16 OP +Xe_concentration_at_point_24_____________________________________________ (f_nd_impurity_electrons12_24)_ 6.25528266183657440e+16 OP +Xe_concentration_at_point_25_____________________________________________ (f_nd_impurity_electrons12_25)_ 6.25472203460140160e+16 OP +Xe_concentration_at_point_26_____________________________________________ (f_nd_impurity_electrons12_26)_ 6.25413852462193520e+16 OP +Xe_concentration_at_point_27_____________________________________________ (f_nd_impurity_electrons12_27)_ 6.25353213189817600e+16 OP +Xe_concentration_at_point_28_____________________________________________ (f_nd_impurity_electrons12_28)_ 6.25290285643012560e+16 OP +Xe_concentration_at_point_29_____________________________________________ (f_nd_impurity_electrons12_29)_ 6.25225069821778080e+16 OP +Xe_concentration_at_point_30_____________________________________________ (f_nd_impurity_electrons12_30)_ 6.25157565726114400e+16 OP +Xe_concentration_at_point_31_____________________________________________ (f_nd_impurity_electrons12_31)_ 6.25087773356021280e+16 OP +Xe_concentration_at_point_32_____________________________________________ (f_nd_impurity_electrons12_32)_ 6.25015692711499120e+16 OP +Xe_concentration_at_point_33_____________________________________________ (f_nd_impurity_electrons12_33)_ 6.24941323792547520e+16 OP +Xe_concentration_at_point_34_____________________________________________ (f_nd_impurity_electrons12_34)_ 6.24864666599166720e+16 OP +Xe_concentration_at_point_35_____________________________________________ (f_nd_impurity_electrons12_35)_ 6.24785721131356560e+16 OP +Xe_concentration_at_point_36_____________________________________________ (f_nd_impurity_electrons12_36)_ 6.24704487389117120e+16 OP +Xe_concentration_at_point_37_____________________________________________ (f_nd_impurity_electrons12_37)_ 6.24620965372448480e+16 OP +Xe_concentration_at_point_38_____________________________________________ (f_nd_impurity_electrons12_38)_ 6.24535155081350480e+16 OP +Xe_concentration_at_point_39_____________________________________________ (f_nd_impurity_electrons12_39)_ 6.24447056515823280e+16 OP +Xe_concentration_at_point_40_____________________________________________ (f_nd_impurity_electrons12_40)_ 6.24356669675866720e+16 OP +Xe_concentration_at_point_41_____________________________________________ (f_nd_impurity_electrons12_41)_ 6.24263994561480960e+16 OP +Xe_concentration_at_point_42_____________________________________________ (f_nd_impurity_electrons12_42)_ 6.24169031172665920e+16 OP +Xe_concentration_at_point_43_____________________________________________ (f_nd_impurity_electrons12_43)_ 6.24071779509421520e+16 OP +Xe_concentration_at_point_44_____________________________________________ (f_nd_impurity_electrons12_44)_ 6.23972239571747840e+16 OP +Xe_concentration_at_point_45_____________________________________________ (f_nd_impurity_electrons12_45)_ 6.23870411359645040e+16 OP +Xe_concentration_at_point_46_____________________________________________ (f_nd_impurity_electrons12_46)_ 6.23766294873112880e+16 OP +Xe_concentration_at_point_47_____________________________________________ (f_nd_impurity_electrons12_47)_ 6.23659890112151360e+16 OP +Xe_concentration_at_point_48_____________________________________________ (f_nd_impurity_electrons12_48)_ 6.23551197076760640e+16 OP +Xe_concentration_at_point_49_____________________________________________ (f_nd_impurity_electrons12_49)_ 6.23440215766940560e+16 OP +Xe_concentration_at_point_50_____________________________________________ (f_nd_impurity_electrons12_50)_ 6.23326946182691280e+16 OP +Xe_concentration_at_point_51_____________________________________________ (f_nd_impurity_electrons12_51)_ 6.23211388324012720e+16 OP +Xe_concentration_at_point_52_____________________________________________ (f_nd_impurity_electrons12_52)_ 6.23093542190904960e+16 OP +Xe_concentration_at_point_53_____________________________________________ (f_nd_impurity_electrons12_53)_ 6.22973407783367760e+16 OP +Xe_concentration_at_point_54_____________________________________________ (f_nd_impurity_electrons12_54)_ 6.22850985101401360e+16 OP +Xe_concentration_at_point_55_____________________________________________ (f_nd_impurity_electrons12_55)_ 6.22726274145005600e+16 OP +Xe_concentration_at_point_56_____________________________________________ (f_nd_impurity_electrons12_56)_ 6.22599274914180720e+16 OP +Xe_concentration_at_point_57_____________________________________________ (f_nd_impurity_electrons12_57)_ 6.22469987408926320e+16 OP +Xe_concentration_at_point_58_____________________________________________ (f_nd_impurity_electrons12_58)_ 6.22338411629242800e+16 OP +Xe_concentration_at_point_59_____________________________________________ (f_nd_impurity_electrons12_59)_ 6.22204547575130080e+16 OP +Xe_concentration_at_point_60_____________________________________________ (f_nd_impurity_electrons12_60)_ 6.22068395246588000e+16 OP +Xe_concentration_at_point_61_____________________________________________ (f_nd_impurity_electrons12_61)_ 6.21929954643616640e+16 OP +Xe_concentration_at_point_62_____________________________________________ (f_nd_impurity_electrons12_62)_ 6.21789225766216000e+16 OP +Xe_concentration_at_point_63_____________________________________________ (f_nd_impurity_electrons12_63)_ 6.21646208614386080e+16 OP +Xe_concentration_at_point_64_____________________________________________ (f_nd_impurity_electrons12_64)_ 6.21500903188126800e+16 OP +Xe_concentration_at_point_65_____________________________________________ (f_nd_impurity_electrons12_65)_ 6.21353309487438320e+16 OP +Xe_concentration_at_point_66_____________________________________________ (f_nd_impurity_electrons12_66)_ 6.21203427512320560e+16 OP +Xe_concentration_at_point_67_____________________________________________ (f_nd_impurity_electrons12_67)_ 6.21051257262773440e+16 OP +Xe_concentration_at_point_68_____________________________________________ (f_nd_impurity_electrons12_68)_ 6.20896798738797200e+16 OP +Xe_concentration_at_point_69_____________________________________________ (f_nd_impurity_electrons12_69)_ 6.20740051940391600e+16 OP +Xe_concentration_at_point_70_____________________________________________ (f_nd_impurity_electrons12_70)_ 6.20581016867556720e+16 OP +Xe_concentration_at_point_71_____________________________________________ (f_nd_impurity_electrons12_71)_ 6.20419693520292560e+16 OP +Xe_concentration_at_point_72_____________________________________________ (f_nd_impurity_electrons12_72)_ 6.20256081898599040e+16 OP +Xe_concentration_at_point_73_____________________________________________ (f_nd_impurity_electrons12_73)_ 6.20090182002476480e+16 OP +Xe_concentration_at_point_74_____________________________________________ (f_nd_impurity_electrons12_74)_ 6.19921993831924480e+16 OP +Xe_concentration_at_point_75_____________________________________________ (f_nd_impurity_electrons12_75)_ 6.19751517386943200e+16 OP +Xe_concentration_at_point_76_____________________________________________ (f_nd_impurity_electrons12_76)_ 6.19578752667532640e+16 OP +Xe_concentration_at_point_77_____________________________________________ (f_nd_impurity_electrons12_77)_ 6.19403699673692800e+16 OP +Xe_concentration_at_point_78_____________________________________________ (f_nd_impurity_electrons12_78)_ 6.19226358405423600e+16 OP +Xe_concentration_at_point_79_____________________________________________ (f_nd_impurity_electrons12_79)_ 6.19046728862725280e+16 OP +Xe_concentration_at_point_80_____________________________________________ (f_nd_impurity_electrons12_80)_ 6.18864811045597600e+16 OP +Xe_concentration_at_point_81_____________________________________________ (f_nd_impurity_electrons12_81)_ 6.18680604954040720e+16 OP +Xe_concentration_at_point_82_____________________________________________ (f_nd_impurity_electrons12_82)_ 6.18494110588054480e+16 OP +Xe_concentration_at_point_83_____________________________________________ (f_nd_impurity_electrons12_83)_ 6.18305327947638880e+16 OP +Xe_concentration_at_point_84_____________________________________________ (f_nd_impurity_electrons12_84)_ 6.18114257032794160e+16 OP +Xe_concentration_at_point_85_____________________________________________ (f_nd_impurity_electrons12_85)_ 6.17920897843520080e+16 OP +Xe_concentration_at_point_86_____________________________________________ (f_nd_impurity_electrons12_86)_ 6.17725250379816720e+16 OP +Xe_concentration_at_point_87_____________________________________________ (f_nd_impurity_electrons12_87)_ 6.17527314641684080e+16 OP +Xe_concentration_at_point_88_____________________________________________ (f_nd_impurity_electrons12_88)_ 6.17327090629122320e+16 OP +Xe_concentration_at_point_89_____________________________________________ (f_nd_impurity_electrons12_89)_ 6.17124578342131120e+16 OP +Xe_concentration_at_point_90_____________________________________________ (f_nd_impurity_electrons12_90)_ 6.16919777780710560e+16 OP +Xe_concentration_at_point_91_____________________________________________ (f_nd_impurity_electrons12_91)_ 6.16712688944860880e+16 OP +Xe_concentration_at_point_92_____________________________________________ (f_nd_impurity_electrons12_92)_ 6.16503311834581840e+16 OP +Xe_concentration_at_point_93_____________________________________________ (f_nd_impurity_electrons12_93)_ 6.16291646449873680e+16 OP +Xe_concentration_at_point_94_____________________________________________ (f_nd_impurity_electrons12_94)_ 6.16077692790736080e+16 OP +Xe_concentration_at_point_95_____________________________________________ (f_nd_impurity_electrons12_95)_ 6.15861450857169120e+16 OP +Xe_concentration_at_point_96_____________________________________________ (f_nd_impurity_electrons12_96)_ 6.15642920649173040e+16 OP +Xe_concentration_at_point_97_____________________________________________ (f_nd_impurity_electrons12_97)_ 6.15422102166747680e+16 OP +Xe_concentration_at_point_98_____________________________________________ (f_nd_impurity_electrons12_98)_ 6.15198995409892960e+16 OP +Xe_concentration_at_point_99_____________________________________________ (f_nd_impurity_electrons12_99)_ 6.14973600378608960e+16 OP +Xe_concentration_at_point_100____________________________________________ (f_nd_impurity_electrons12_100)_ 6.14745917072895760e+16 OP +Xe_concentration_at_point_101____________________________________________ (f_nd_impurity_electrons12_101)_ 6.14515945492753280e+16 OP +Xe_concentration_at_point_102____________________________________________ (f_nd_impurity_electrons12_102)_ 6.14283685638181440e+16 OP +Xe_concentration_at_point_103____________________________________________ (f_nd_impurity_electrons12_103)_ 6.14049137509180400e+16 OP +Xe_concentration_at_point_104____________________________________________ (f_nd_impurity_electrons12_104)_ 6.13812301105750000e+16 OP +Xe_concentration_at_point_105____________________________________________ (f_nd_impurity_electrons12_105)_ 6.13573176427890400e+16 OP +Xe_concentration_at_point_106____________________________________________ (f_nd_impurity_electrons12_106)_ 6.13331763475601440e+16 OP +Xe_concentration_at_point_107____________________________________________ (f_nd_impurity_electrons12_107)_ 6.13088062248883280e+16 OP +Xe_concentration_at_point_108____________________________________________ (f_nd_impurity_electrons12_108)_ 6.12842072747735840e+16 OP +Xe_concentration_at_point_109____________________________________________ (f_nd_impurity_electrons12_109)_ 6.12593794972159120e+16 OP +Xe_concentration_at_point_110____________________________________________ (f_nd_impurity_electrons12_110)_ 6.12343228922153040e+16 OP +Xe_concentration_at_point_111____________________________________________ (f_nd_impurity_electrons12_111)_ 6.12090374597717680e+16 OP +Xe_concentration_at_point_112____________________________________________ (f_nd_impurity_electrons12_112)_ 6.11835231998853120e+16 OP +Xe_concentration_at_point_113____________________________________________ (f_nd_impurity_electrons12_113)_ 6.11577801125559280e+16 OP +Xe_concentration_at_point_114____________________________________________ (f_nd_impurity_electrons12_114)_ 6.11318081977836160e+16 OP +Xe_concentration_at_point_115____________________________________________ (f_nd_impurity_electrons12_115)_ 6.11056074555683680e+16 OP +Xe_concentration_at_point_116____________________________________________ (f_nd_impurity_electrons12_116)_ 6.10791778859102000e+16 OP +Xe_concentration_at_point_117____________________________________________ (f_nd_impurity_electrons12_117)_ 6.10525194888090960e+16 OP +Xe_concentration_at_point_118____________________________________________ (f_nd_impurity_electrons12_118)_ 6.10256322642650720e+16 OP +Xe_concentration_at_point_119____________________________________________ (f_nd_impurity_electrons12_119)_ 6.09985162122781280e+16 OP +Xe_concentration_at_point_120____________________________________________ (f_nd_impurity_electrons12_120)_ 6.09711713328482480e+16 OP +Xe_concentration_at_point_121____________________________________________ (f_nd_impurity_electrons12_121)_ 6.09435976259754320e+16 OP +Xe_concentration_at_point_122____________________________________________ (f_nd_impurity_electrons12_122)_ 6.09157950916596960e+16 OP +Xe_concentration_at_point_123____________________________________________ (f_nd_impurity_electrons12_123)_ 6.08877637299010320e+16 OP +Xe_concentration_at_point_124____________________________________________ (f_nd_impurity_electrons12_124)_ 6.08595035406994400e+16 OP +Xe_concentration_at_point_125____________________________________________ (f_nd_impurity_electrons12_125)_ 6.08310145240549120e+16 OP +Xe_concentration_at_point_126____________________________________________ (f_nd_impurity_electrons12_126)_ 6.08022966799674720e+16 OP +Xe_concentration_at_point_127____________________________________________ (f_nd_impurity_electrons12_127)_ 6.07733500084370960e+16 OP +Xe_concentration_at_point_128____________________________________________ (f_nd_impurity_electrons12_128)_ 6.07441745094637840e+16 OP +Xe_concentration_at_point_129____________________________________________ (f_nd_impurity_electrons12_129)_ 6.07147701830475520e+16 OP +Xe_concentration_at_point_130____________________________________________ (f_nd_impurity_electrons12_130)_ 6.06851370291884000e+16 OP +Xe_concentration_at_point_131____________________________________________ (f_nd_impurity_electrons12_131)_ 6.06552750478862960e+16 OP +Xe_concentration_at_point_132____________________________________________ (f_nd_impurity_electrons12_132)_ 6.06251842391412880e+16 OP +Xe_concentration_at_point_133____________________________________________ (f_nd_impurity_electrons12_133)_ 6.05948646029533360e+16 OP +Xe_concentration_at_point_134____________________________________________ (f_nd_impurity_electrons12_134)_ 6.05643161393224640e+16 OP +Xe_concentration_at_point_135____________________________________________ (f_nd_impurity_electrons12_135)_ 6.05335388482486640e+16 OP +Xe_concentration_at_point_136____________________________________________ (f_nd_impurity_electrons12_136)_ 6.05025327297319440e+16 OP +Xe_concentration_at_point_137____________________________________________ (f_nd_impurity_electrons12_137)_ 6.04712977837722880e+16 OP +Xe_concentration_at_point_138____________________________________________ (f_nd_impurity_electrons12_138)_ 6.04398340103696960e+16 OP +Xe_concentration_at_point_139____________________________________________ (f_nd_impurity_electrons12_139)_ 6.04081414095241920e+16 OP +Xe_concentration_at_point_140____________________________________________ (f_nd_impurity_electrons12_140)_ 6.03762199812357520e+16 OP +Xe_concentration_at_point_141____________________________________________ (f_nd_impurity_electrons12_141)_ 6.03440697255043840e+16 OP +Xe_concentration_at_point_142____________________________________________ (f_nd_impurity_electrons12_142)_ 6.03116906423300880e+16 OP +Xe_concentration_at_point_143____________________________________________ (f_nd_impurity_electrons12_143)_ 6.02790827317128720e+16 OP +Xe_concentration_at_point_144____________________________________________ (f_nd_impurity_electrons12_144)_ 6.02462459936527280e+16 OP +Xe_concentration_at_point_145____________________________________________ (f_nd_impurity_electrons12_145)_ 6.02131804281496400e+16 OP +Xe_concentration_at_point_146____________________________________________ (f_nd_impurity_electrons12_146)_ 6.01798860352036400e+16 OP +Xe_concentration_at_point_147____________________________________________ (f_nd_impurity_electrons12_147)_ 6.01463628148146960e+16 OP +Xe_concentration_at_point_148____________________________________________ (f_nd_impurity_electrons12_148)_ 6.01126107669828320e+16 OP +Xe_concentration_at_point_149____________________________________________ (f_nd_impurity_electrons12_149)_ 6.00786298917080480e+16 OP +Xe_concentration_at_point_150____________________________________________ (f_nd_impurity_electrons12_150)_ 6.00444201889903280e+16 OP +Xe_concentration_at_point_151____________________________________________ (f_nd_impurity_electrons12_151)_ 6.00099816588296880e+16 OP +Xe_concentration_at_point_152____________________________________________ (f_nd_impurity_electrons12_152)_ 5.99753143012261040e+16 OP +Xe_concentration_at_point_153____________________________________________ (f_nd_impurity_electrons12_153)_ 5.99404181161796080e+16 OP +Xe_concentration_at_point_154____________________________________________ (f_nd_impurity_electrons12_154)_ 5.99052931036901760e+16 OP +Xe_concentration_at_point_155____________________________________________ (f_nd_impurity_electrons12_155)_ 5.98699392637578080e+16 OP +Xe_concentration_at_point_156____________________________________________ (f_nd_impurity_electrons12_156)_ 5.98343565963825280e+16 OP +Xe_concentration_at_point_157____________________________________________ (f_nd_impurity_electrons12_157)_ 5.97985451015643200e+16 OP +Xe_concentration_at_point_158____________________________________________ (f_nd_impurity_electrons12_158)_ 5.97625047793031680e+16 OP +Xe_concentration_at_point_159____________________________________________ (f_nd_impurity_electrons12_159)_ 5.97262356295991040e+16 OP +Xe_concentration_at_point_160____________________________________________ (f_nd_impurity_electrons12_160)_ 5.96897376524521040e+16 OP +Xe_concentration_at_point_161____________________________________________ (f_nd_impurity_electrons12_161)_ 5.96530108478621840e+16 OP +Xe_concentration_at_point_162____________________________________________ (f_nd_impurity_electrons12_162)_ 5.96160552158293440e+16 OP +Xe_concentration_at_point_163____________________________________________ (f_nd_impurity_electrons12_163)_ 5.95788707563535520e+16 OP +Xe_concentration_at_point_164____________________________________________ (f_nd_impurity_electrons12_164)_ 5.95414574694348480e+16 OP +Xe_concentration_at_point_165____________________________________________ (f_nd_impurity_electrons12_165)_ 5.95038153550732080e+16 OP +Xe_concentration_at_point_166____________________________________________ (f_nd_impurity_electrons12_166)_ 5.94659444132686400e+16 OP +Xe_concentration_at_point_167____________________________________________ (f_nd_impurity_electrons12_167)_ 5.94278446440211520e+16 OP +Xe_concentration_at_point_168____________________________________________ (f_nd_impurity_electrons12_168)_ 5.93895160473307280e+16 OP +Xe_concentration_at_point_169____________________________________________ (f_nd_impurity_electrons12_169)_ 5.93509586231973840e+16 OP +Xe_concentration_at_point_170____________________________________________ (f_nd_impurity_electrons12_170)_ 5.93121723716211040e+16 OP +Xe_concentration_at_point_171____________________________________________ (f_nd_impurity_electrons12_171)_ 5.92731572926019040e+16 OP +Xe_concentration_at_point_172____________________________________________ (f_nd_impurity_electrons12_172)_ 5.92339133861397760e+16 OP +Xe_concentration_at_point_173____________________________________________ (f_nd_impurity_electrons12_173)_ 5.91944406522347120e+16 OP +Xe_concentration_at_point_174____________________________________________ (f_nd_impurity_electrons12_174)_ 5.91547390908867280e+16 OP +Xe_concentration_at_point_175____________________________________________ (f_nd_impurity_electrons12_175)_ 5.91148087020958160e+16 OP +Xe_concentration_at_point_176____________________________________________ (f_nd_impurity_electrons12_176)_ 5.90746494858619680e+16 OP +Xe_concentration_at_point_177____________________________________________ (f_nd_impurity_electrons12_177)_ 5.90342614421852000e+16 OP +Xe_concentration_at_point_178____________________________________________ (f_nd_impurity_electrons12_178)_ 5.89936445710654960e+16 OP +Xe_concentration_at_point_179____________________________________________ (f_nd_impurity_electrons12_179)_ 5.89527988725028720e+16 OP +Xe_concentration_at_point_180____________________________________________ (f_nd_impurity_electrons12_180)_ 5.89117243464973200e+16 OP +Xe_concentration_at_point_181____________________________________________ (f_nd_impurity_electrons12_181)_ 5.88704209930488400e+16 OP +Xe_concentration_at_point_182____________________________________________ (f_nd_impurity_electrons12_182)_ 5.88288888121574240e+16 OP +Xe_concentration_at_point_183____________________________________________ (f_nd_impurity_electrons12_183)_ 5.87871278038230880e+16 OP +Xe_concentration_at_point_184____________________________________________ (f_nd_impurity_electrons12_184)_ 5.87451379680458240e+16 OP +Xe_concentration_at_point_185____________________________________________ (f_nd_impurity_electrons12_185)_ 5.87029193048256240e+16 OP +Xe_concentration_at_point_186____________________________________________ (f_nd_impurity_electrons12_186)_ 5.86604718141625040e+16 OP +Xe_concentration_at_point_187____________________________________________ (f_nd_impurity_electrons12_187)_ 5.86177954960564560e+16 OP +Xe_concentration_at_point_188____________________________________________ (f_nd_impurity_electrons12_188)_ 5.85748903505074720e+16 OP +Xe_concentration_at_point_189____________________________________________ (f_nd_impurity_electrons12_189)_ 5.85317563775155760e+16 OP +Xe_concentration_at_point_190____________________________________________ (f_nd_impurity_electrons12_190)_ 5.84883935770807360e+16 OP +Xe_concentration_at_point_191____________________________________________ (f_nd_impurity_electrons12_191)_ 5.84448019492029760e+16 OP +Xe_concentration_at_point_192____________________________________________ (f_nd_impurity_electrons12_192)_ 5.84009814938822880e+16 OP +Xe_concentration_at_point_193____________________________________________ (f_nd_impurity_electrons12_193)_ 5.83569322111186720e+16 OP +Xe_concentration_at_point_194____________________________________________ (f_nd_impurity_electrons12_194)_ 5.83126541009121200e+16 OP +Xe_concentration_at_point_195____________________________________________ (f_nd_impurity_electrons12_195)_ 5.82681471632626560e+16 OP +Xe_concentration_at_point_196____________________________________________ (f_nd_impurity_electrons12_196)_ 5.82234113981702480e+16 OP +Xe_concentration_at_point_197____________________________________________ (f_nd_impurity_electrons12_197)_ 5.81784468056349200e+16 OP +Xe_concentration_at_point_198____________________________________________ (f_nd_impurity_electrons12_198)_ 5.81332533856566640e+16 OP +Xe_concentration_at_point_199____________________________________________ (f_nd_impurity_electrons12_199)_ 5.80878311382354800e+16 OP +Xe_concentration_at_point_200____________________________________________ (f_nd_impurity_electrons12_200)_ 5.80421800633713760e+16 OP +Xe_concentration_at_point_201____________________________________________ (f_nd_impurity_electrons12_201)_ 5.79963001610643280e+16 OP +Xe_concentration_at_point_202____________________________________________ (f_nd_impurity_electrons12_202)_ 5.79501914313143680e+16 OP +Xe_concentration_at_point_203____________________________________________ (f_nd_impurity_electrons12_203)_ 5.79038538741214640e+16 OP +Xe_concentration_at_point_204____________________________________________ (f_nd_impurity_electrons12_204)_ 5.78572874894856400e+16 OP +Xe_concentration_at_point_205____________________________________________ (f_nd_impurity_electrons12_205)_ 5.78104922774068880e+16 OP +Xe_concentration_at_point_206____________________________________________ (f_nd_impurity_electrons12_206)_ 5.77634682378852160e+16 OP +Xe_concentration_at_point_207____________________________________________ (f_nd_impurity_electrons12_207)_ 5.77162153709206160e+16 OP +Xe_concentration_at_point_208____________________________________________ (f_nd_impurity_electrons12_208)_ 5.76687336765130720e+16 OP +Xe_concentration_at_point_209____________________________________________ (f_nd_impurity_electrons12_209)_ 5.76210231546626080e+16 OP +Xe_concentration_at_point_210____________________________________________ (f_nd_impurity_electrons12_210)_ 5.75730838053692160e+16 OP +Xe_concentration_at_point_211____________________________________________ (f_nd_impurity_electrons12_211)_ 5.75249156286329040e+16 OP +Xe_concentration_at_point_212____________________________________________ (f_nd_impurity_electrons12_212)_ 5.74765186244536480e+16 OP +Xe_concentration_at_point_213____________________________________________ (f_nd_impurity_electrons12_213)_ 5.74278927928314800e+16 OP +Xe_concentration_at_point_214____________________________________________ (f_nd_impurity_electrons12_214)_ 5.73790381337663760e+16 OP +Xe_concentration_at_point_215____________________________________________ (f_nd_impurity_electrons12_215)_ 5.73299546472583440e+16 OP +Xe_concentration_at_point_216____________________________________________ (f_nd_impurity_electrons12_216)_ 5.72806423333073840e+16 OP +Xe_concentration_at_point_217____________________________________________ (f_nd_impurity_electrons12_217)_ 5.72311011919134960e+16 OP +Xe_concentration_at_point_218____________________________________________ (f_nd_impurity_electrons12_218)_ 5.71813312230766880e+16 OP +Xe_concentration_at_point_219____________________________________________ (f_nd_impurity_electrons12_219)_ 5.71313324267969440e+16 OP +Xe_concentration_at_point_220____________________________________________ (f_nd_impurity_electrons12_220)_ 5.70811048030742800e+16 OP +Xe_concentration_at_point_221____________________________________________ (f_nd_impurity_electrons12_221)_ 5.70306483519086800e+16 OP +Xe_concentration_at_point_222____________________________________________ (f_nd_impurity_electrons12_222)_ 5.69799630733001520e+16 OP +Xe_concentration_at_point_223____________________________________________ (f_nd_impurity_electrons12_223)_ 5.69290489672486960e+16 OP +Xe_concentration_at_point_224____________________________________________ (f_nd_impurity_electrons12_224)_ 5.68779060337543120e+16 OP +Xe_concentration_at_point_225____________________________________________ (f_nd_impurity_electrons12_225)_ 5.68265342728170000e+16 OP +Xe_concentration_at_point_226____________________________________________ (f_nd_impurity_electrons12_226)_ 5.67749336844367680e+16 OP +Xe_concentration_at_point_227____________________________________________ (f_nd_impurity_electrons12_227)_ 5.67231042686136080e+16 OP +Xe_concentration_at_point_228____________________________________________ (f_nd_impurity_electrons12_228)_ 5.66710460253475120e+16 OP +Xe_concentration_at_point_229____________________________________________ (f_nd_impurity_electrons12_229)_ 5.66187589546384960e+16 OP +Xe_concentration_at_point_230____________________________________________ (f_nd_impurity_electrons12_230)_ 5.65662430564865360e+16 OP +Xe_concentration_at_point_231____________________________________________ (f_nd_impurity_electrons12_231)_ 5.65134983308916640e+16 OP +Xe_concentration_at_point_232____________________________________________ (f_nd_impurity_electrons12_232)_ 5.64605247778538560e+16 OP +Xe_concentration_at_point_233____________________________________________ (f_nd_impurity_electrons12_233)_ 5.64073223973731200e+16 OP +Xe_concentration_at_point_234____________________________________________ (f_nd_impurity_electrons12_234)_ 5.63538911894494720e+16 OP +Xe_concentration_at_point_235____________________________________________ (f_nd_impurity_electrons12_235)_ 5.63002311540828880e+16 OP +Xe_concentration_at_point_236____________________________________________ (f_nd_impurity_electrons12_236)_ 5.62463422912733680e+16 OP +Xe_concentration_at_point_237____________________________________________ (f_nd_impurity_electrons12_237)_ 5.61922246010209280e+16 OP +Xe_concentration_at_point_238____________________________________________ (f_nd_impurity_electrons12_238)_ 5.61378780833255520e+16 OP +Xe_concentration_at_point_239____________________________________________ (f_nd_impurity_electrons12_239)_ 5.60833027381872480e+16 OP +Xe_concentration_at_point_240____________________________________________ (f_nd_impurity_electrons12_240)_ 5.60284985656060320e+16 OP +Xe_concentration_at_point_241____________________________________________ (f_nd_impurity_electrons12_241)_ 5.59734655655818640e+16 OP +Xe_concentration_at_point_242____________________________________________ (f_nd_impurity_electrons12_242)_ 5.59182037381147840e+16 OP +Xe_concentration_at_point_243____________________________________________ (f_nd_impurity_electrons12_243)_ 5.58627130832047680e+16 OP +Xe_concentration_at_point_244____________________________________________ (f_nd_impurity_electrons12_244)_ 5.58069936008518400e+16 OP +Xe_concentration_at_point_245____________________________________________ (f_nd_impurity_electrons12_245)_ 5.57510452910559680e+16 OP +Xe_concentration_at_point_246____________________________________________ (f_nd_impurity_electrons12_246)_ 5.56948681538171760e+16 OP +Xe_concentration_at_point_247____________________________________________ (f_nd_impurity_electrons12_247)_ 5.56384621891354560e+16 OP +Xe_concentration_at_point_248____________________________________________ (f_nd_impurity_electrons12_248)_ 5.55818273970108080e+16 OP +Xe_concentration_at_point_249____________________________________________ (f_nd_impurity_electrons12_249)_ 5.55249637774432240e+16 OP +Xe_concentration_at_point_250____________________________________________ (f_nd_impurity_electrons12_250)_ 5.54678713304327200e+16 OP +Xe_concentration_at_point_251____________________________________________ (f_nd_impurity_electrons12_251)_ 5.54105500559792800e+16 OP +Xe_concentration_at_point_252____________________________________________ (f_nd_impurity_electrons12_252)_ 5.53529999540829200e+16 OP +Xe_concentration_at_point_253____________________________________________ (f_nd_impurity_electrons12_253)_ 5.52952210247436320e+16 OP +Xe_concentration_at_point_254____________________________________________ (f_nd_impurity_electrons12_254)_ 5.52372132679614160e+16 OP +Xe_concentration_at_point_255____________________________________________ (f_nd_impurity_electrons12_255)_ 5.51789766837362720e+16 OP +Xe_concentration_at_point_256____________________________________________ (f_nd_impurity_electrons12_256)_ 5.51205112720682000e+16 OP +Xe_concentration_at_point_257____________________________________________ (f_nd_impurity_electrons12_257)_ 5.50618170329572000e+16 OP +Xe_concentration_at_point_258____________________________________________ (f_nd_impurity_electrons12_258)_ 5.50028939664032720e+16 OP +Xe_concentration_at_point_259____________________________________________ (f_nd_impurity_electrons12_259)_ 5.49437420724064000e+16 OP +Xe_concentration_at_point_260____________________________________________ (f_nd_impurity_electrons12_260)_ 5.48843613509666320e+16 OP +Xe_concentration_at_point_261____________________________________________ (f_nd_impurity_electrons12_261)_ 5.48247518020839120e+16 OP +Xe_concentration_at_point_262____________________________________________ (f_nd_impurity_electrons12_262)_ 5.47649134257582640e+16 OP +Xe_concentration_at_point_263____________________________________________ (f_nd_impurity_electrons12_263)_ 5.47048462219896960e+16 OP +Xe_concentration_at_point_264____________________________________________ (f_nd_impurity_electrons12_264)_ 5.46445501907782000e+16 OP +Xe_concentration_at_point_265____________________________________________ (f_nd_impurity_electrons12_265)_ 5.45840253321237760e+16 OP +Xe_concentration_at_point_266____________________________________________ (f_nd_impurity_electrons12_266)_ 5.45232716460264240e+16 OP +Xe_concentration_at_point_267____________________________________________ (f_nd_impurity_electrons12_267)_ 5.44622891324861520e+16 OP +Xe_concentration_at_point_268____________________________________________ (f_nd_impurity_electrons12_268)_ 5.44010777915029360e+16 OP +Xe_concentration_at_point_269____________________________________________ (f_nd_impurity_electrons12_269)_ 5.43396376230768000e+16 OP +Xe_concentration_at_point_270____________________________________________ (f_nd_impurity_electrons12_270)_ 5.42779686272077440e+16 OP +Xe_concentration_at_point_271____________________________________________ (f_nd_impurity_electrons12_271)_ 5.42160708038957440e+16 OP +Xe_concentration_at_point_272____________________________________________ (f_nd_impurity_electrons12_272)_ 5.41539441531408240e+16 OP +Xe_concentration_at_point_273____________________________________________ (f_nd_impurity_electrons12_273)_ 5.40915886749429760e+16 OP +Xe_concentration_at_point_274____________________________________________ (f_nd_impurity_electrons12_274)_ 5.40290043693022000e+16 OP +Xe_concentration_at_point_275____________________________________________ (f_nd_impurity_electrons12_275)_ 5.39661912362184960e+16 OP +Xe_concentration_at_point_276____________________________________________ (f_nd_impurity_electrons12_276)_ 5.39031492756918640e+16 OP +Xe_concentration_at_point_277____________________________________________ (f_nd_impurity_electrons12_277)_ 5.38398784877223040e+16 OP +Xe_concentration_at_point_278____________________________________________ (f_nd_impurity_electrons12_278)_ 5.37763788723098240e+16 OP +Xe_concentration_at_point_279____________________________________________ (f_nd_impurity_electrons12_279)_ 5.37126504294544160e+16 OP +Xe_concentration_at_point_280____________________________________________ (f_nd_impurity_electrons12_280)_ 5.36486931591560640e+16 OP +Xe_concentration_at_point_281____________________________________________ (f_nd_impurity_electrons12_281)_ 5.35845070614147920e+16 OP +Xe_concentration_at_point_282____________________________________________ (f_nd_impurity_electrons12_282)_ 5.35200921362306000e+16 OP +Xe_concentration_at_point_283____________________________________________ (f_nd_impurity_electrons12_283)_ 5.34554483836034800e+16 OP +Xe_concentration_at_point_284____________________________________________ (f_nd_impurity_electrons12_284)_ 5.33905758035334240e+16 OP +Xe_concentration_at_point_285____________________________________________ (f_nd_impurity_electrons12_285)_ 5.33254743960204400e+16 OP +Xe_concentration_at_point_286____________________________________________ (f_nd_impurity_electrons12_286)_ 5.32601441610645360e+16 OP +Xe_concentration_at_point_287____________________________________________ (f_nd_impurity_electrons12_287)_ 5.31945850986656960e+16 OP +Xe_concentration_at_point_288____________________________________________ (f_nd_impurity_electrons12_288)_ 5.31287972088239280e+16 OP +Xe_concentration_at_point_289____________________________________________ (f_nd_impurity_electrons12_289)_ 5.30627804915392320e+16 OP +Xe_concentration_at_point_290____________________________________________ (f_nd_impurity_electrons12_290)_ 5.29965349468116160e+16 OP +Xe_concentration_at_point_291____________________________________________ (f_nd_impurity_electrons12_291)_ 5.29300605746410560e+16 OP +Xe_concentration_at_point_292____________________________________________ (f_nd_impurity_electrons12_292)_ 5.28633573750275840e+16 OP +Xe_concentration_at_point_293____________________________________________ (f_nd_impurity_electrons12_293)_ 5.27964253479711760e+16 OP +Xe_concentration_at_point_294____________________________________________ (f_nd_impurity_electrons12_294)_ 5.27292644934718480e+16 OP +Xe_concentration_at_point_295____________________________________________ (f_nd_impurity_electrons12_295)_ 5.26618748115295840e+16 OP +Xe_concentration_at_point_296____________________________________________ (f_nd_impurity_electrons12_296)_ 5.25942563021444000e+16 OP +Xe_concentration_at_point_297____________________________________________ (f_nd_impurity_electrons12_297)_ 5.25264089653162880e+16 OP +Xe_concentration_at_point_298____________________________________________ (f_nd_impurity_electrons12_298)_ 5.24583328010452320e+16 OP +Xe_concentration_at_point_299____________________________________________ (f_nd_impurity_electrons12_299)_ 5.23900278093312720e+16 OP +Xe_concentration_at_point_300____________________________________________ (f_nd_impurity_electrons12_300)_ 5.23214939901743600e+16 OP +Xe_concentration_at_point_301____________________________________________ (f_nd_impurity_electrons12_301)_ 5.22527313435745280e+16 OP +Xe_concentration_at_point_302____________________________________________ (f_nd_impurity_electrons12_302)_ 5.21837398695317760e+16 OP +Xe_concentration_at_point_303____________________________________________ (f_nd_impurity_electrons12_303)_ 5.21145195680460960e+16 OP +Xe_concentration_at_point_304____________________________________________ (f_nd_impurity_electrons12_304)_ 5.20450704391174800e+16 OP +Xe_concentration_at_point_305____________________________________________ (f_nd_impurity_electrons12_305)_ 5.19753924827459360e+16 OP +Xe_concentration_at_point_306____________________________________________ (f_nd_impurity_electrons12_306)_ 5.19054856989314800e+16 OP +Xe_concentration_at_point_307____________________________________________ (f_nd_impurity_electrons12_307)_ 5.18353500876740800e+16 OP +Xe_concentration_at_point_308____________________________________________ (f_nd_impurity_electrons12_308)_ 5.17649856489737520e+16 OP +Xe_concentration_at_point_309____________________________________________ (f_nd_impurity_electrons12_309)_ 5.16943923828305040e+16 OP +Xe_concentration_at_point_310____________________________________________ (f_nd_impurity_electrons12_310)_ 5.16235702892443200e+16 OP +Xe_concentration_at_point_311____________________________________________ (f_nd_impurity_electrons12_311)_ 5.15525193682152240e+16 OP +Xe_concentration_at_point_312____________________________________________ (f_nd_impurity_electrons12_312)_ 5.14812396197431840e+16 OP +Xe_concentration_at_point_313____________________________________________ (f_nd_impurity_electrons12_313)_ 5.14097310438282320e+16 OP +Xe_concentration_at_point_314____________________________________________ (f_nd_impurity_electrons12_314)_ 5.13379936404703360e+16 OP +Xe_concentration_at_point_315____________________________________________ (f_nd_impurity_electrons12_315)_ 5.12660274096695200e+16 OP +Xe_concentration_at_point_316____________________________________________ (f_nd_impurity_electrons12_316)_ 5.11938323514257680e+16 OP +Xe_concentration_at_point_317____________________________________________ (f_nd_impurity_electrons12_317)_ 5.11214084657390960e+16 OP +Xe_concentration_at_point_318____________________________________________ (f_nd_impurity_electrons12_318)_ 5.10487557526094880e+16 OP +Xe_concentration_at_point_319____________________________________________ (f_nd_impurity_electrons12_319)_ 5.09758742120369520e+16 OP +Xe_concentration_at_point_320____________________________________________ (f_nd_impurity_electrons12_320)_ 5.09027638440214960e+16 OP +Xe_concentration_at_point_321____________________________________________ (f_nd_impurity_electrons12_321)_ 5.08294246485631200e+16 OP +Xe_concentration_at_point_322____________________________________________ (f_nd_impurity_electrons12_322)_ 5.07558566256618080e+16 OP +Xe_concentration_at_point_323____________________________________________ (f_nd_impurity_electrons12_323)_ 5.06820597753175600e+16 OP +Xe_concentration_at_point_324____________________________________________ (f_nd_impurity_electrons12_324)_ 5.06080340975303920e+16 OP +Xe_concentration_at_point_325____________________________________________ (f_nd_impurity_electrons12_325)_ 5.05337795923002960e+16 OP +Xe_concentration_at_point_326____________________________________________ (f_nd_impurity_electrons12_326)_ 5.04592962596272720e+16 OP +Xe_concentration_at_point_327____________________________________________ (f_nd_impurity_electrons12_327)_ 5.03845840995113200e+16 OP +Xe_concentration_at_point_328____________________________________________ (f_nd_impurity_electrons12_328)_ 5.03096431119524320e+16 OP +Xe_concentration_at_point_329____________________________________________ (f_nd_impurity_electrons12_329)_ 5.02344732969506240e+16 OP +Xe_concentration_at_point_330____________________________________________ (f_nd_impurity_electrons12_330)_ 5.01590746545058800e+16 OP +Xe_concentration_at_point_331____________________________________________ (f_nd_impurity_electrons12_331)_ 5.00834471846182320e+16 OP +Xe_concentration_at_point_332____________________________________________ (f_nd_impurity_electrons12_332)_ 5.00075908872876320e+16 OP +Xe_concentration_at_point_333____________________________________________ (f_nd_impurity_electrons12_333)_ 4.99315057625141120e+16 OP +Xe_concentration_at_point_334____________________________________________ (f_nd_impurity_electrons12_334)_ 4.98551918102976640e+16 OP +Xe_concentration_at_point_335____________________________________________ (f_nd_impurity_electrons12_335)_ 4.97786490306382880e+16 OP +Xe_concentration_at_point_336____________________________________________ (f_nd_impurity_electrons12_336)_ 4.97018774235359920e+16 OP +Xe_concentration_at_point_337____________________________________________ (f_nd_impurity_electrons12_337)_ 4.96248769889907600e+16 OP +Xe_concentration_at_point_338____________________________________________ (f_nd_impurity_electrons12_338)_ 4.95476477270025920e+16 OP +Xe_concentration_at_point_339____________________________________________ (f_nd_impurity_electrons12_339)_ 4.94701896375715040e+16 OP +Xe_concentration_at_point_340____________________________________________ (f_nd_impurity_electrons12_340)_ 4.93925027206974960e+16 OP +Xe_concentration_at_point_341____________________________________________ (f_nd_impurity_electrons12_341)_ 4.93145869763805520e+16 OP +Xe_concentration_at_point_342____________________________________________ (f_nd_impurity_electrons12_342)_ 4.92364424046206720e+16 OP +Xe_concentration_at_point_343____________________________________________ (f_nd_impurity_electrons12_343)_ 4.91580690054178720e+16 OP +Xe_concentration_at_point_344____________________________________________ (f_nd_impurity_electrons12_344)_ 4.90794667787721520e+16 OP +Xe_concentration_at_point_345____________________________________________ (f_nd_impurity_electrons12_345)_ 4.90006357246834960e+16 OP +Xe_concentration_at_point_346____________________________________________ (f_nd_impurity_electrons12_346)_ 4.89215758431519200e+16 OP +Xe_concentration_at_point_347____________________________________________ (f_nd_impurity_electrons12_347)_ 4.88422871341774080e+16 OP +Xe_concentration_at_point_348____________________________________________ (f_nd_impurity_electrons12_348)_ 4.87627695977599680e+16 OP +Xe_concentration_at_point_349____________________________________________ (f_nd_impurity_electrons12_349)_ 4.86830232338996000e+16 OP +Xe_concentration_at_point_350____________________________________________ (f_nd_impurity_electrons12_350)_ 4.86030480425963120e+16 OP +Xe_concentration_at_point_351____________________________________________ (f_nd_impurity_electrons12_351)_ 4.85228440238500880e+16 OP +Xe_concentration_at_point_352____________________________________________ (f_nd_impurity_electrons12_352)_ 4.84424111776609360e+16 OP +Xe_concentration_at_point_353____________________________________________ (f_nd_impurity_electrons12_353)_ 4.83617495040288560e+16 OP +Xe_concentration_at_point_354____________________________________________ (f_nd_impurity_electrons12_354)_ 4.82808590029538480e+16 OP +Xe_concentration_at_point_355____________________________________________ (f_nd_impurity_electrons12_355)_ 4.81997396744359120e+16 OP +Xe_concentration_at_point_356____________________________________________ (f_nd_impurity_electrons12_356)_ 4.81183915184750560e+16 OP +Xe_concentration_at_point_357____________________________________________ (f_nd_impurity_electrons12_357)_ 4.80368145350712640e+16 OP +Xe_concentration_at_point_358____________________________________________ (f_nd_impurity_electrons12_358)_ 4.79550087242245520e+16 OP +Xe_concentration_at_point_359____________________________________________ (f_nd_impurity_electrons12_359)_ 4.78729740859349040e+16 OP +Xe_concentration_at_point_360____________________________________________ (f_nd_impurity_electrons12_360)_ 4.77907106202023280e+16 OP +Xe_concentration_at_point_361____________________________________________ (f_nd_impurity_electrons12_361)_ 4.77082183270268320e+16 OP +Xe_concentration_at_point_362____________________________________________ (f_nd_impurity_electrons12_362)_ 4.76254972064084000e+16 OP +Xe_concentration_at_point_363____________________________________________ (f_nd_impurity_electrons12_363)_ 4.75425472583470480e+16 OP +Xe_concentration_at_point_364____________________________________________ (f_nd_impurity_electrons12_364)_ 4.74593684828427680e+16 OP +Xe_concentration_at_point_365____________________________________________ (f_nd_impurity_electrons12_365)_ 4.73759608798955520e+16 OP +Xe_concentration_at_point_366____________________________________________ (f_nd_impurity_electrons12_366)_ 4.72923244495054080e+16 OP +Xe_concentration_at_point_367____________________________________________ (f_nd_impurity_electrons12_367)_ 4.72084591916723360e+16 OP +Xe_concentration_at_point_368____________________________________________ (f_nd_impurity_electrons12_368)_ 4.71243651063963440e+16 OP +Xe_concentration_at_point_369____________________________________________ (f_nd_impurity_electrons12_369)_ 4.70400421936774160e+16 OP +Xe_concentration_at_point_370____________________________________________ (f_nd_impurity_electrons12_370)_ 4.69554904535155600e+16 OP +Xe_concentration_at_point_371____________________________________________ (f_nd_impurity_electrons12_371)_ 4.68707098859107840e+16 OP +Xe_concentration_at_point_372____________________________________________ (f_nd_impurity_electrons12_372)_ 4.67857004908630800e+16 OP +Xe_concentration_at_point_373____________________________________________ (f_nd_impurity_electrons12_373)_ 4.67004622683724400e+16 OP +Xe_concentration_at_point_374____________________________________________ (f_nd_impurity_electrons12_374)_ 4.66149952184388800e+16 OP +Xe_concentration_at_point_375____________________________________________ (f_nd_impurity_electrons12_375)_ 4.65292993410623920e+16 OP +Xe_concentration_at_point_376____________________________________________ (f_nd_impurity_electrons12_376)_ 4.64433746362429760e+16 OP +Xe_concentration_at_point_377____________________________________________ (f_nd_impurity_electrons12_377)_ 4.63572211039806240e+16 OP +Xe_concentration_at_point_378____________________________________________ (f_nd_impurity_electrons12_378)_ 4.62708387442753440e+16 OP +Xe_concentration_at_point_379____________________________________________ (f_nd_impurity_electrons12_379)_ 4.61842275571271520e+16 OP +Xe_concentration_at_point_380____________________________________________ (f_nd_impurity_electrons12_380)_ 4.60973875425360080e+16 OP +Xe_concentration_at_point_381____________________________________________ (f_nd_impurity_electrons12_381)_ 4.60103187005019520e+16 OP +Xe_concentration_at_point_382____________________________________________ (f_nd_impurity_electrons12_382)_ 4.59230210310249680e+16 OP +Xe_concentration_at_point_383____________________________________________ (f_nd_impurity_electrons12_383)_ 4.58354945341050560e+16 OP +Xe_concentration_at_point_384____________________________________________ (f_nd_impurity_electrons12_384)_ 4.57477392097422080e+16 OP +Xe_concentration_at_point_385____________________________________________ (f_nd_impurity_electrons12_385)_ 4.56597550579364480e+16 OP +Xe_concentration_at_point_386____________________________________________ (f_nd_impurity_electrons12_386)_ 4.55715420786877520e+16 OP +Xe_concentration_at_point_387____________________________________________ (f_nd_impurity_electrons12_387)_ 4.54831002719961120e+16 OP +Xe_concentration_at_point_388____________________________________________ (f_nd_impurity_electrons12_388)_ 4.53944296378615680e+16 OP +Xe_concentration_at_point_389____________________________________________ (f_nd_impurity_electrons12_389)_ 4.53055301762840880e+16 OP +Xe_concentration_at_point_390____________________________________________ (f_nd_impurity_electrons12_390)_ 4.52164018872636800e+16 OP +Xe_concentration_at_point_391____________________________________________ (f_nd_impurity_electrons12_391)_ 4.51270447708003360e+16 OP +Xe_concentration_at_point_392____________________________________________ (f_nd_impurity_electrons12_392)_ 4.50374588268940720e+16 OP +Xe_concentration_at_point_393____________________________________________ (f_nd_impurity_electrons12_393)_ 4.49476440555448800e+16 OP +Xe_concentration_at_point_394____________________________________________ (f_nd_impurity_electrons12_394)_ 4.48576004567527520e+16 OP +Xe_concentration_at_point_395____________________________________________ (f_nd_impurity_electrons12_395)_ 4.47673280305177120e+16 OP +Xe_concentration_at_point_396____________________________________________ (f_nd_impurity_electrons12_396)_ 4.46768267768397280e+16 OP +Xe_concentration_at_point_397____________________________________________ (f_nd_impurity_electrons12_397)_ 4.45860966957188240e+16 OP +Xe_concentration_at_point_398____________________________________________ (f_nd_impurity_electrons12_398)_ 4.44951377871549920e+16 OP +Xe_concentration_at_point_399____________________________________________ (f_nd_impurity_electrons12_399)_ 4.44039500511482320e+16 OP +Xe_concentration_at_point_400____________________________________________ (f_nd_impurity_electrons12_400)_ 4.43125334876985360e+16 OP +Xe_concentration_at_point_401____________________________________________ (f_nd_impurity_electrons12_401)_ 4.42208880968059280e+16 OP +Xe_concentration_at_point_402____________________________________________ (f_nd_impurity_electrons12_402)_ 4.41290138784703840e+16 OP +Xe_concentration_at_point_403____________________________________________ (f_nd_impurity_electrons12_403)_ 4.40369108326919200e+16 OP +Xe_concentration_at_point_404____________________________________________ (f_nd_impurity_electrons12_404)_ 4.39445789594705120e+16 OP +Xe_concentration_at_point_405____________________________________________ (f_nd_impurity_electrons12_405)_ 4.38520182588061840e+16 OP +Xe_concentration_at_point_406____________________________________________ (f_nd_impurity_electrons12_406)_ 4.37592287306989280e+16 OP +Xe_concentration_at_point_407____________________________________________ (f_nd_impurity_electrons12_407)_ 4.36662103751487520e+16 OP +Xe_concentration_at_point_408____________________________________________ (f_nd_impurity_electrons12_408)_ 4.35729631921556400e+16 OP +Xe_concentration_at_point_409____________________________________________ (f_nd_impurity_electrons12_409)_ 4.34794871817196080e+16 OP +Xe_concentration_at_point_410____________________________________________ (f_nd_impurity_electrons12_410)_ 4.33857823438406320e+16 OP +Xe_concentration_at_point_411____________________________________________ (f_nd_impurity_electrons12_411)_ 4.32918486785187440e+16 OP +Xe_concentration_at_point_412____________________________________________ (f_nd_impurity_electrons12_412)_ 4.31976861857539120e+16 OP +Xe_concentration_at_point_413____________________________________________ (f_nd_impurity_electrons12_413)_ 4.31032948655461680e+16 OP +Xe_concentration_at_point_414____________________________________________ (f_nd_impurity_electrons12_414)_ 4.30086747178954880e+16 OP +Xe_concentration_at_point_415____________________________________________ (f_nd_impurity_electrons12_415)_ 4.29138257428018800e+16 OP +Xe_concentration_at_point_416____________________________________________ (f_nd_impurity_electrons12_416)_ 4.28187479402653440e+16 OP +Xe_concentration_at_point_417____________________________________________ (f_nd_impurity_electrons12_417)_ 4.27234413102858880e+16 OP +Xe_concentration_at_point_418____________________________________________ (f_nd_impurity_electrons12_418)_ 4.26279058528634960e+16 OP +Xe_concentration_at_point_419____________________________________________ (f_nd_impurity_electrons12_419)_ 4.25321415679981760e+16 OP +Xe_concentration_at_point_420____________________________________________ (f_nd_impurity_electrons12_420)_ 4.24361484556899280e+16 OP +Xe_concentration_at_point_421____________________________________________ (f_nd_impurity_electrons12_421)_ 4.23399265159387520e+16 OP +Xe_concentration_at_point_422____________________________________________ (f_nd_impurity_electrons12_422)_ 4.22434757487446560e+16 OP +Xe_concentration_at_point_423____________________________________________ (f_nd_impurity_electrons12_423)_ 4.21467961541076240e+16 OP +Xe_concentration_at_point_424____________________________________________ (f_nd_impurity_electrons12_424)_ 4.20498877320276640e+16 OP +Xe_concentration_at_point_425____________________________________________ (f_nd_impurity_electrons12_425)_ 4.19527504825047760e+16 OP +Xe_concentration_at_point_426____________________________________________ (f_nd_impurity_electrons12_426)_ 4.18553844055389760e+16 OP +Xe_concentration_at_point_427____________________________________________ (f_nd_impurity_electrons12_427)_ 4.17577895011302320e+16 OP +Xe_concentration_at_point_428____________________________________________ (f_nd_impurity_electrons12_428)_ 4.16599657692785680e+16 OP +Xe_concentration_at_point_429____________________________________________ (f_nd_impurity_electrons12_429)_ 4.15619132099839600e+16 OP +Xe_concentration_at_point_430____________________________________________ (f_nd_impurity_electrons12_430)_ 4.14636318232464400e+16 OP +Xe_concentration_at_point_431____________________________________________ (f_nd_impurity_electrons12_431)_ 4.13651216090659840e+16 OP +Xe_concentration_at_point_432____________________________________________ (f_nd_impurity_electrons12_432)_ 4.12663825674426080e+16 OP +Xe_concentration_at_point_433____________________________________________ (f_nd_impurity_electrons12_433)_ 4.11674146983762960e+16 OP +Xe_concentration_at_point_434____________________________________________ (f_nd_impurity_electrons12_434)_ 4.10682180018670640e+16 OP +Xe_concentration_at_point_435____________________________________________ (f_nd_impurity_electrons12_435)_ 4.09687924779148960e+16 OP +Xe_concentration_at_point_436____________________________________________ (f_nd_impurity_electrons12_436)_ 4.08691381265198080e+16 OP +Xe_concentration_at_point_437____________________________________________ (f_nd_impurity_electrons12_437)_ 4.07692549476817840e+16 OP +Xe_concentration_at_point_438____________________________________________ (f_nd_impurity_electrons12_438)_ 4.06691429414008400e+16 OP +Xe_concentration_at_point_439____________________________________________ (f_nd_impurity_electrons12_439)_ 4.05688021076769600e+16 OP +Xe_concentration_at_point_440____________________________________________ (f_nd_impurity_electrons12_440)_ 4.04682324465101600e+16 OP +Xe_concentration_at_point_441____________________________________________ (f_nd_impurity_electrons12_441)_ 4.03674339579004240e+16 OP +Xe_concentration_at_point_442____________________________________________ (f_nd_impurity_electrons12_442)_ 4.02664066418477680e+16 OP +Xe_concentration_at_point_443____________________________________________ (f_nd_impurity_electrons12_443)_ 4.01651504983521760e+16 OP +Xe_concentration_at_point_444____________________________________________ (f_nd_impurity_electrons12_444)_ 4.00636655274136640e+16 OP +Xe_concentration_at_point_445____________________________________________ (f_nd_impurity_electrons12_445)_ 3.99619517290322160e+16 OP +Xe_concentration_at_point_446____________________________________________ (f_nd_impurity_electrons12_446)_ 3.98600091032078480e+16 OP +Xe_concentration_at_point_447____________________________________________ (f_nd_impurity_electrons12_447)_ 3.97578376499405520e+16 OP +Xe_concentration_at_point_448____________________________________________ (f_nd_impurity_electrons12_448)_ 3.96554373692303280e+16 OP +Xe_concentration_at_point_449____________________________________________ (f_nd_impurity_electrons12_449)_ 3.95528082610771680e+16 OP +Xe_concentration_at_point_450____________________________________________ (f_nd_impurity_electrons12_450)_ 3.94499503254810880e+16 OP +Xe_concentration_at_point_451____________________________________________ (f_nd_impurity_electrons12_451)_ 3.93468635624420800e+16 OP +Xe_concentration_at_point_452____________________________________________ (f_nd_impurity_electrons12_452)_ 3.92435479719601440e+16 OP +Xe_concentration_at_point_453____________________________________________ (f_nd_impurity_electrons12_453)_ 3.91400035540352720e+16 OP +Xe_concentration_at_point_454____________________________________________ (f_nd_impurity_electrons12_454)_ 3.90362303086674800e+16 OP +Xe_concentration_at_point_455____________________________________________ (f_nd_impurity_electrons12_455)_ 3.89322282358567520e+16 OP +Xe_concentration_at_point_456____________________________________________ (f_nd_impurity_electrons12_456)_ 3.88279973356031120e+16 OP +Xe_concentration_at_point_457____________________________________________ (f_nd_impurity_electrons12_457)_ 3.87235376079065280e+16 OP +Xe_concentration_at_point_458____________________________________________ (f_nd_impurity_electrons12_458)_ 3.86188490527670320e+16 OP +Xe_concentration_at_point_459____________________________________________ (f_nd_impurity_electrons12_459)_ 3.85139316701845920e+16 OP +Xe_concentration_at_point_460____________________________________________ (f_nd_impurity_electrons12_460)_ 3.84087854601592320e+16 OP +Xe_concentration_at_point_461____________________________________________ (f_nd_impurity_electrons12_461)_ 3.83034104226909440e+16 OP +Xe_concentration_at_point_462____________________________________________ (f_nd_impurity_electrons12_462)_ 3.81978065577797280e+16 OP +Xe_concentration_at_point_463____________________________________________ (f_nd_impurity_electrons12_463)_ 3.80919738654255760e+16 OP +Xe_concentration_at_point_464____________________________________________ (f_nd_impurity_electrons12_464)_ 3.79859123456285040e+16 OP +Xe_concentration_at_point_465____________________________________________ (f_nd_impurity_electrons12_465)_ 3.78796219983885040e+16 OP +Xe_concentration_at_point_466____________________________________________ (f_nd_impurity_electrons12_466)_ 3.77731028237055760e+16 OP +Xe_concentration_at_point_467____________________________________________ (f_nd_impurity_electrons12_467)_ 3.76663548215797200e+16 OP +Xe_concentration_at_point_468____________________________________________ (f_nd_impurity_electrons12_468)_ 3.75593779920109360e+16 OP +Xe_concentration_at_point_469____________________________________________ (f_nd_impurity_electrons12_469)_ 3.74521723349992240e+16 OP +Xe_concentration_at_point_470____________________________________________ (f_nd_impurity_electrons12_470)_ 3.73447378505445920e+16 OP +Xe_concentration_at_point_471____________________________________________ (f_nd_impurity_electrons12_471)_ 3.68321630173018160e+16 OP +Xe_concentration_at_point_472____________________________________________ (f_nd_impurity_electrons12_472)_ 3.63195881840590560e+16 OP +Xe_concentration_at_point_473____________________________________________ (f_nd_impurity_electrons12_473)_ 3.58070133508162840e+16 OP +Xe_concentration_at_point_474____________________________________________ (f_nd_impurity_electrons12_474)_ 3.52944385175735200e+16 OP +Xe_concentration_at_point_475____________________________________________ (f_nd_impurity_electrons12_475)_ 3.47818636843307480e+16 OP +Xe_concentration_at_point_476____________________________________________ (f_nd_impurity_electrons12_476)_ 3.42692888510879800e+16 OP +Xe_concentration_at_point_477____________________________________________ (f_nd_impurity_electrons12_477)_ 3.37567140178452080e+16 OP +Xe_concentration_at_point_478____________________________________________ (f_nd_impurity_electrons12_478)_ 3.32441391846024400e+16 OP +Xe_concentration_at_point_479____________________________________________ (f_nd_impurity_electrons12_479)_ 3.27315643513596720e+16 OP +Xe_concentration_at_point_480____________________________________________ (f_nd_impurity_electrons12_480)_ 3.22189895181169040e+16 OP +Xe_concentration_at_point_481____________________________________________ (f_nd_impurity_electrons12_481)_ 3.17064146848741320e+16 OP +Xe_concentration_at_point_482____________________________________________ (f_nd_impurity_electrons12_482)_ 3.11938398516313640e+16 OP +Xe_concentration_at_point_483____________________________________________ (f_nd_impurity_electrons12_483)_ 3.06812650183885920e+16 OP +Xe_concentration_at_point_484____________________________________________ (f_nd_impurity_electrons12_484)_ 3.01686901851458280e+16 OP +Xe_concentration_at_point_485____________________________________________ (f_nd_impurity_electrons12_485)_ 2.96561153519030600e+16 OP +Xe_concentration_at_point_486____________________________________________ (f_nd_impurity_electrons12_486)_ 2.91435405186602920e+16 OP +Xe_concentration_at_point_487____________________________________________ (f_nd_impurity_electrons12_487)_ 2.86309656854175200e+16 OP +Xe_concentration_at_point_488____________________________________________ (f_nd_impurity_electrons12_488)_ 2.81183908521747520e+16 OP +Xe_concentration_at_point_489____________________________________________ (f_nd_impurity_electrons12_489)_ 2.76058160189319800e+16 OP +Xe_concentration_at_point_490____________________________________________ (f_nd_impurity_electrons12_490)_ 2.70932411856892120e+16 OP +Xe_concentration_at_point_491____________________________________________ (f_nd_impurity_electrons12_491)_ 2.65806663524464480e+16 OP +Xe_concentration_at_point_492____________________________________________ (f_nd_impurity_electrons12_492)_ 2.60680915192036760e+16 OP +Xe_concentration_at_point_493____________________________________________ (f_nd_impurity_electrons12_493)_ 2.55555166859609080e+16 OP +Xe_concentration_at_point_494____________________________________________ (f_nd_impurity_electrons12_494)_ 2.50429418527181400e+16 OP +Xe_concentration_at_point_495____________________________________________ (f_nd_impurity_electrons12_495)_ 2.45303670194753680e+16 OP +Xe_concentration_at_point_496____________________________________________ (f_nd_impurity_electrons12_496)_ 2.40177921862326000e+16 OP +Xe_concentration_at_point_497____________________________________________ (f_nd_impurity_electrons12_497)_ 2.35052173529898320e+16 OP +Xe_concentration_at_point_498____________________________________________ (f_nd_impurity_electrons12_498)_ 2.29926425197470600e+16 OP +Xe_concentration_at_point_499____________________________________________ (f_nd_impurity_electrons12_499)_ 2.24800676865042960e+16 OP +Xe_concentration_at_point_500____________________________________________ (f_nd_impurity_electrons12_500)_ 2.19674928532615240e+16 OP W_concentration__________________________________________________________ (f_nd_impurity_electrons(14))__ 5.00000000000000041e-06 -W_concentration_at_point_0_______________________________________________ (f_nd_impurity_electrons13_0)__ 5.34194999111333000e+14 OP -W_concentration_at_point_1_______________________________________________ (f_nd_impurity_electrons13_1)__ 5.34194023059530562e+14 OP -W_concentration_at_point_2_______________________________________________ (f_nd_impurity_electrons13_2)__ 5.34191094904123500e+14 OP -W_concentration_at_point_3_______________________________________________ (f_nd_impurity_electrons13_3)__ 5.34186214645111562e+14 OP -W_concentration_at_point_4_______________________________________________ (f_nd_impurity_electrons13_4)__ 5.34179382282494875e+14 OP -W_concentration_at_point_5_______________________________________________ (f_nd_impurity_electrons13_5)__ 5.34170597816273500e+14 OP -W_concentration_at_point_6_______________________________________________ (f_nd_impurity_electrons13_6)__ 5.34159861246447250e+14 OP -W_concentration_at_point_7_______________________________________________ (f_nd_impurity_electrons13_7)__ 5.34147172573016250e+14 OP -W_concentration_at_point_8_______________________________________________ (f_nd_impurity_electrons13_8)__ 5.34132531795980562e+14 OP -W_concentration_at_point_9_______________________________________________ (f_nd_impurity_electrons13_9)__ 5.34115938915340000e+14 OP -W_concentration_at_point_10______________________________________________ (f_nd_impurity_electrons13_10)_ 5.34097393931094812e+14 OP -W_concentration_at_point_11______________________________________________ (f_nd_impurity_electrons13_11)_ 5.34076896843244812e+14 OP -W_concentration_at_point_12______________________________________________ (f_nd_impurity_electrons13_12)_ 5.34054447651790000e+14 OP -W_concentration_at_point_13______________________________________________ (f_nd_impurity_electrons13_13)_ 5.34030046356730500e+14 OP -W_concentration_at_point_14______________________________________________ (f_nd_impurity_electrons13_14)_ 5.34003692958066188e+14 OP -W_concentration_at_point_15______________________________________________ (f_nd_impurity_electrons13_15)_ 5.33975387455797062e+14 OP -W_concentration_at_point_16______________________________________________ (f_nd_impurity_electrons13_16)_ 5.33945129849923188e+14 OP -W_concentration_at_point_17______________________________________________ (f_nd_impurity_electrons13_17)_ 5.33912920140444562e+14 OP -W_concentration_at_point_18______________________________________________ (f_nd_impurity_electrons13_18)_ 5.33878758327361250e+14 OP -W_concentration_at_point_19______________________________________________ (f_nd_impurity_electrons13_19)_ 5.33842644410673125e+14 OP -W_concentration_at_point_20______________________________________________ (f_nd_impurity_electrons13_20)_ 5.33804578390380188e+14 OP -W_concentration_at_point_21______________________________________________ (f_nd_impurity_electrons13_21)_ 5.33764560266482500e+14 OP -W_concentration_at_point_22______________________________________________ (f_nd_impurity_electrons13_22)_ 5.33722590038980062e+14 OP -W_concentration_at_point_23______________________________________________ (f_nd_impurity_electrons13_23)_ 5.33678667707872938e+14 OP -W_concentration_at_point_24______________________________________________ (f_nd_impurity_electrons13_24)_ 5.33632793273160875e+14 OP -W_concentration_at_point_25______________________________________________ (f_nd_impurity_electrons13_25)_ 5.33584966734844188e+14 OP -W_concentration_at_point_26______________________________________________ (f_nd_impurity_electrons13_26)_ 5.33535188092922625e+14 OP -W_concentration_at_point_27______________________________________________ (f_nd_impurity_electrons13_27)_ 5.33483457347396438e+14 OP -W_concentration_at_point_28______________________________________________ (f_nd_impurity_electrons13_28)_ 5.33429774498265375e+14 OP -W_concentration_at_point_29______________________________________________ (f_nd_impurity_electrons13_29)_ 5.33374139545529562e+14 OP -W_concentration_at_point_30______________________________________________ (f_nd_impurity_electrons13_30)_ 5.33316552489189062e+14 OP -W_concentration_at_point_31______________________________________________ (f_nd_impurity_electrons13_31)_ 5.33257013329243812e+14 OP -W_concentration_at_point_32______________________________________________ (f_nd_impurity_electrons13_32)_ 5.33195522065693750e+14 OP -W_concentration_at_point_33______________________________________________ (f_nd_impurity_electrons13_33)_ 5.33132078698538875e+14 OP -W_concentration_at_point_34______________________________________________ (f_nd_impurity_electrons13_34)_ 5.33066683227779250e+14 OP -W_concentration_at_point_35______________________________________________ (f_nd_impurity_electrons13_35)_ 5.32999335653414875e+14 OP -W_concentration_at_point_36______________________________________________ (f_nd_impurity_electrons13_36)_ 5.32930035975445750e+14 OP -W_concentration_at_point_37______________________________________________ (f_nd_impurity_electrons13_37)_ 5.32858784193871938e+14 OP -W_concentration_at_point_38______________________________________________ (f_nd_impurity_electrons13_38)_ 5.32785580308693188e+14 OP -W_concentration_at_point_39______________________________________________ (f_nd_impurity_electrons13_39)_ 5.32710424319909750e+14 OP -W_concentration_at_point_40______________________________________________ (f_nd_impurity_electrons13_40)_ 5.32633316227521625e+14 OP -W_concentration_at_point_41______________________________________________ (f_nd_impurity_electrons13_41)_ 5.32554256031528625e+14 OP -W_concentration_at_point_42______________________________________________ (f_nd_impurity_electrons13_42)_ 5.32473243731930938e+14 OP -W_concentration_at_point_43______________________________________________ (f_nd_impurity_electrons13_43)_ 5.32390279328728500e+14 OP -W_concentration_at_point_44______________________________________________ (f_nd_impurity_electrons13_44)_ 5.32305362821921250e+14 OP -W_concentration_at_point_45______________________________________________ (f_nd_impurity_electrons13_45)_ 5.32218494211509188e+14 OP -W_concentration_at_point_46______________________________________________ (f_nd_impurity_electrons13_46)_ 5.32129673497492375e+14 OP -W_concentration_at_point_47______________________________________________ (f_nd_impurity_electrons13_47)_ 5.32038900679870938e+14 OP -W_concentration_at_point_48______________________________________________ (f_nd_impurity_electrons13_48)_ 5.31946175758644562e+14 OP -W_concentration_at_point_49______________________________________________ (f_nd_impurity_electrons13_49)_ 5.31851498733813500e+14 OP -W_concentration_at_point_50______________________________________________ (f_nd_impurity_electrons13_50)_ 5.31754869605377688e+14 OP -W_concentration_at_point_51______________________________________________ (f_nd_impurity_electrons13_51)_ 5.31656288373337000e+14 OP -W_concentration_at_point_52______________________________________________ (f_nd_impurity_electrons13_52)_ 5.31555755037691812e+14 OP -W_concentration_at_point_53______________________________________________ (f_nd_impurity_electrons13_53)_ 5.31453269598441625e+14 OP -W_concentration_at_point_54______________________________________________ (f_nd_impurity_electrons13_54)_ 5.31348832055586688e+14 OP -W_concentration_at_point_55______________________________________________ (f_nd_impurity_electrons13_55)_ 5.31242442409127000e+14 OP -W_concentration_at_point_56______________________________________________ (f_nd_impurity_electrons13_56)_ 5.31134100659062562e+14 OP -W_concentration_at_point_57______________________________________________ (f_nd_impurity_electrons13_57)_ 5.31023806805393438e+14 OP -W_concentration_at_point_58______________________________________________ (f_nd_impurity_electrons13_58)_ 5.30911560848119438e+14 OP -W_concentration_at_point_59______________________________________________ (f_nd_impurity_electrons13_59)_ 5.30797362787240812e+14 OP -W_concentration_at_point_60______________________________________________ (f_nd_impurity_electrons13_60)_ 5.30681212622757250e+14 OP -W_concentration_at_point_61______________________________________________ (f_nd_impurity_electrons13_61)_ 5.30563110354669125e+14 OP -W_concentration_at_point_62______________________________________________ (f_nd_impurity_electrons13_62)_ 5.30443055982976062e+14 OP -W_concentration_at_point_63______________________________________________ (f_nd_impurity_electrons13_63)_ 5.30321049507678312e+14 OP -W_concentration_at_point_64______________________________________________ (f_nd_impurity_electrons13_64)_ 5.30197090928775812e+14 OP -W_concentration_at_point_65______________________________________________ (f_nd_impurity_electrons13_65)_ 5.30071180246268500e+14 OP -W_concentration_at_point_66______________________________________________ (f_nd_impurity_electrons13_66)_ 5.29943317460156438e+14 OP -W_concentration_at_point_67______________________________________________ (f_nd_impurity_electrons13_67)_ 5.29813502570439625e+14 OP -W_concentration_at_point_68______________________________________________ (f_nd_impurity_electrons13_68)_ 5.29681735577118000e+14 OP -W_concentration_at_point_69______________________________________________ (f_nd_impurity_electrons13_69)_ 5.29548016480191625e+14 OP -W_concentration_at_point_70______________________________________________ (f_nd_impurity_electrons13_70)_ 5.29412345279660562e+14 OP -W_concentration_at_point_71______________________________________________ (f_nd_impurity_electrons13_71)_ 5.29274721975524625e+14 OP -W_concentration_at_point_72______________________________________________ (f_nd_impurity_electrons13_72)_ 5.29135146567784000e+14 OP -W_concentration_at_point_73______________________________________________ (f_nd_impurity_electrons13_73)_ 5.28993619056438625e+14 OP -W_concentration_at_point_74______________________________________________ (f_nd_impurity_electrons13_74)_ 5.28850139441488438e+14 OP -W_concentration_at_point_75______________________________________________ (f_nd_impurity_electrons13_75)_ 5.28704707722933438e+14 OP -W_concentration_at_point_76______________________________________________ (f_nd_impurity_electrons13_76)_ 5.28557323900773812e+14 OP -W_concentration_at_point_77______________________________________________ (f_nd_impurity_electrons13_77)_ 5.28407987975009312e+14 OP -W_concentration_at_point_78______________________________________________ (f_nd_impurity_electrons13_78)_ 5.28256699945640062e+14 OP -W_concentration_at_point_79______________________________________________ (f_nd_impurity_electrons13_79)_ 5.28103459812666125e+14 OP -W_concentration_at_point_80______________________________________________ (f_nd_impurity_electrons13_80)_ 5.27948267576087312e+14 OP -W_concentration_at_point_81______________________________________________ (f_nd_impurity_electrons13_81)_ 5.27791123235903750e+14 OP -W_concentration_at_point_82______________________________________________ (f_nd_impurity_electrons13_82)_ 5.27632026792115438e+14 OP -W_concentration_at_point_83______________________________________________ (f_nd_impurity_electrons13_83)_ 5.27470978244722375e+14 OP -W_concentration_at_point_84______________________________________________ (f_nd_impurity_electrons13_84)_ 5.27307977593724625e+14 OP -W_concentration_at_point_85______________________________________________ (f_nd_impurity_electrons13_85)_ 5.27143024839122000e+14 OP -W_concentration_at_point_86______________________________________________ (f_nd_impurity_electrons13_86)_ 5.26976119980914625e+14 OP -W_concentration_at_point_87______________________________________________ (f_nd_impurity_electrons13_87)_ 5.26807263019102562e+14 OP -W_concentration_at_point_88______________________________________________ (f_nd_impurity_electrons13_88)_ 5.26636453953685688e+14 OP -W_concentration_at_point_89______________________________________________ (f_nd_impurity_electrons13_89)_ 5.26463692784664125e+14 OP -W_concentration_at_point_90______________________________________________ (f_nd_impurity_electrons13_90)_ 5.26288979512037688e+14 OP -W_concentration_at_point_91______________________________________________ (f_nd_impurity_electrons13_91)_ 5.26112314135806500e+14 OP -W_concentration_at_point_92______________________________________________ (f_nd_impurity_electrons13_92)_ 5.25933696655970562e+14 OP -W_concentration_at_point_93______________________________________________ (f_nd_impurity_electrons13_93)_ 5.25753127072529812e+14 OP -W_concentration_at_point_94______________________________________________ (f_nd_impurity_electrons13_94)_ 5.25570605385484438e+14 OP -W_concentration_at_point_95______________________________________________ (f_nd_impurity_electrons13_95)_ 5.25386131594834188e+14 OP -W_concentration_at_point_96______________________________________________ (f_nd_impurity_electrons13_96)_ 5.25199705700579188e+14 OP -W_concentration_at_point_97______________________________________________ (f_nd_impurity_electrons13_97)_ 5.25011327702719438e+14 OP -W_concentration_at_point_98______________________________________________ (f_nd_impurity_electrons13_98)_ 5.24820997601255000e+14 OP -W_concentration_at_point_99______________________________________________ (f_nd_impurity_electrons13_99)_ 5.24628715396185688e+14 OP -W_concentration_at_point_100_____________________________________________ (f_nd_impurity_electrons13_100)_ 5.24434481087511625e+14 OP -W_concentration_at_point_101_____________________________________________ (f_nd_impurity_electrons13_101)_ 5.24238294675232812e+14 OP -W_concentration_at_point_102_____________________________________________ (f_nd_impurity_electrons13_102)_ 5.24040156159349250e+14 OP -W_concentration_at_point_103_____________________________________________ (f_nd_impurity_electrons13_103)_ 5.23840065539860875e+14 OP -W_concentration_at_point_104_____________________________________________ (f_nd_impurity_electrons13_104)_ 5.23638022816767688e+14 OP -W_concentration_at_point_105_____________________________________________ (f_nd_impurity_electrons13_105)_ 5.23434027990069938e+14 OP -W_concentration_at_point_106_____________________________________________ (f_nd_impurity_electrons13_106)_ 5.23228081059767312e+14 OP -W_concentration_at_point_107_____________________________________________ (f_nd_impurity_electrons13_107)_ 5.23020182025859875e+14 OP -W_concentration_at_point_108_____________________________________________ (f_nd_impurity_electrons13_108)_ 5.22810330888347688e+14 OP -W_concentration_at_point_109_____________________________________________ (f_nd_impurity_electrons13_109)_ 5.22598527647230812e+14 OP -W_concentration_at_point_110_____________________________________________ (f_nd_impurity_electrons13_110)_ 5.22384772302509062e+14 OP -W_concentration_at_point_111_____________________________________________ (f_nd_impurity_electrons13_111)_ 5.22169064854182688e+14 OP -W_concentration_at_point_112_____________________________________________ (f_nd_impurity_electrons13_112)_ 5.21951405302251375e+14 OP -W_concentration_at_point_113_____________________________________________ (f_nd_impurity_electrons13_113)_ 5.21731793646715438e+14 OP -W_concentration_at_point_114_____________________________________________ (f_nd_impurity_electrons13_114)_ 5.21510229887574688e+14 OP -W_concentration_at_point_115_____________________________________________ (f_nd_impurity_electrons13_115)_ 5.21286714024829188e+14 OP -W_concentration_at_point_116_____________________________________________ (f_nd_impurity_electrons13_116)_ 5.21061246058478938e+14 OP -W_concentration_at_point_117_____________________________________________ (f_nd_impurity_electrons13_117)_ 5.20833825988523812e+14 OP -W_concentration_at_point_118_____________________________________________ (f_nd_impurity_electrons13_118)_ 5.20604453814964125e+14 OP -W_concentration_at_point_119_____________________________________________ (f_nd_impurity_electrons13_119)_ 5.20373129537799500e+14 OP -W_concentration_at_point_120_____________________________________________ (f_nd_impurity_electrons13_120)_ 5.20139853157030188e+14 OP -W_concentration_at_point_121_____________________________________________ (f_nd_impurity_electrons13_121)_ 5.19904624672656125e+14 OP -W_concentration_at_point_122_____________________________________________ (f_nd_impurity_electrons13_122)_ 5.19667444084677250e+14 OP -W_concentration_at_point_123_____________________________________________ (f_nd_impurity_electrons13_123)_ 5.19428311393093562e+14 OP -W_concentration_at_point_124_____________________________________________ (f_nd_impurity_electrons13_124)_ 5.19187226597905250e+14 OP -W_concentration_at_point_125_____________________________________________ (f_nd_impurity_electrons13_125)_ 5.18944189699112000e+14 OP -W_concentration_at_point_126_____________________________________________ (f_nd_impurity_electrons13_126)_ 5.18699200696714062e+14 OP -W_concentration_at_point_127_____________________________________________ (f_nd_impurity_electrons13_127)_ 5.18452259590711438e+14 OP -W_concentration_at_point_128_____________________________________________ (f_nd_impurity_electrons13_128)_ 5.18203366381104062e+14 OP -W_concentration_at_point_129_____________________________________________ (f_nd_impurity_electrons13_129)_ 5.17952521067891812e+14 OP -W_concentration_at_point_130_____________________________________________ (f_nd_impurity_electrons13_130)_ 5.17699723651074812e+14 OP -W_concentration_at_point_131_____________________________________________ (f_nd_impurity_electrons13_131)_ 5.17444974130653125e+14 OP -W_concentration_at_point_132_____________________________________________ (f_nd_impurity_electrons13_132)_ 5.17188272506626562e+14 OP -W_concentration_at_point_133_____________________________________________ (f_nd_impurity_electrons13_133)_ 5.16929618778995312e+14 OP -W_concentration_at_point_134_____________________________________________ (f_nd_impurity_electrons13_134)_ 5.16669012947759312e+14 OP -W_concentration_at_point_135_____________________________________________ (f_nd_impurity_electrons13_135)_ 5.16406455012918438e+14 OP -W_concentration_at_point_136_____________________________________________ (f_nd_impurity_electrons13_136)_ 5.16141944974472938e+14 OP -W_concentration_at_point_137_____________________________________________ (f_nd_impurity_electrons13_137)_ 5.15875482832422562e+14 OP -W_concentration_at_point_138_____________________________________________ (f_nd_impurity_electrons13_138)_ 5.15607068586767500e+14 OP -W_concentration_at_point_139_____________________________________________ (f_nd_impurity_electrons13_139)_ 5.15336702237507625e+14 OP -W_concentration_at_point_140_____________________________________________ (f_nd_impurity_electrons13_140)_ 5.15064383784643000e+14 OP -W_concentration_at_point_141_____________________________________________ (f_nd_impurity_electrons13_141)_ 5.14790113228173688e+14 OP -W_concentration_at_point_142_____________________________________________ (f_nd_impurity_electrons13_142)_ 5.14513890568099500e+14 OP -W_concentration_at_point_143_____________________________________________ (f_nd_impurity_electrons13_143)_ 5.14235715804420562e+14 OP -W_concentration_at_point_144_____________________________________________ (f_nd_impurity_electrons13_144)_ 5.13955588937136938e+14 OP -W_concentration_at_point_145_____________________________________________ (f_nd_impurity_electrons13_145)_ 5.13673509966248562e+14 OP -W_concentration_at_point_146_____________________________________________ (f_nd_impurity_electrons13_146)_ 5.13389478891755312e+14 OP -W_concentration_at_point_147_____________________________________________ (f_nd_impurity_electrons13_147)_ 5.13103495713657375e+14 OP -W_concentration_at_point_148_____________________________________________ (f_nd_impurity_electrons13_148)_ 5.12815560431954562e+14 OP -W_concentration_at_point_149_____________________________________________ (f_nd_impurity_electrons13_149)_ 5.12525673046647062e+14 OP -W_concentration_at_point_150_____________________________________________ (f_nd_impurity_electrons13_150)_ 5.12233833557734812e+14 OP -W_concentration_at_point_151_____________________________________________ (f_nd_impurity_electrons13_151)_ 5.11940041965217750e+14 OP -W_concentration_at_point_152_____________________________________________ (f_nd_impurity_electrons13_152)_ 5.11644298269096000e+14 OP -W_concentration_at_point_153_____________________________________________ (f_nd_impurity_electrons13_153)_ 5.11346602469369500e+14 OP -W_concentration_at_point_154_____________________________________________ (f_nd_impurity_electrons13_154)_ 5.11046954566038125e+14 OP -W_concentration_at_point_155_____________________________________________ (f_nd_impurity_electrons13_155)_ 5.10745354559102062e+14 OP -W_concentration_at_point_156_____________________________________________ (f_nd_impurity_electrons13_156)_ 5.10441802448561125e+14 OP -W_concentration_at_point_157_____________________________________________ (f_nd_impurity_electrons13_157)_ 5.10136298234415562e+14 OP -W_concentration_at_point_158_____________________________________________ (f_nd_impurity_electrons13_158)_ 5.09828841916665250e+14 OP -W_concentration_at_point_159_____________________________________________ (f_nd_impurity_electrons13_159)_ 5.09519433495310062e+14 OP -W_concentration_at_point_160_____________________________________________ (f_nd_impurity_electrons13_160)_ 5.09208072970350125e+14 OP -W_concentration_at_point_161_____________________________________________ (f_nd_impurity_electrons13_161)_ 5.08894760341785500e+14 OP -W_concentration_at_point_162_____________________________________________ (f_nd_impurity_electrons13_162)_ 5.08579495609616000e+14 OP -W_concentration_at_point_163_____________________________________________ (f_nd_impurity_electrons13_163)_ 5.08262278773841875e+14 OP -W_concentration_at_point_164_____________________________________________ (f_nd_impurity_electrons13_164)_ 5.07943109834462875e+14 OP -W_concentration_at_point_165_____________________________________________ (f_nd_impurity_electrons13_165)_ 5.07621988791479188e+14 OP -W_concentration_at_point_166_____________________________________________ (f_nd_impurity_electrons13_166)_ 5.07298915644890688e+14 OP -W_concentration_at_point_167_____________________________________________ (f_nd_impurity_electrons13_167)_ 5.06973890394697438e+14 OP -W_concentration_at_point_168_____________________________________________ (f_nd_impurity_electrons13_168)_ 5.06646913040899500e+14 OP -W_concentration_at_point_169_____________________________________________ (f_nd_impurity_electrons13_169)_ 5.06317983583496625e+14 OP -W_concentration_at_point_170_____________________________________________ (f_nd_impurity_electrons13_170)_ 5.05987102022489062e+14 OP -W_concentration_at_point_171_____________________________________________ (f_nd_impurity_electrons13_171)_ 5.05654268357876812e+14 OP -W_concentration_at_point_172_____________________________________________ (f_nd_impurity_electrons13_172)_ 5.05319482589659688e+14 OP -W_concentration_at_point_173_____________________________________________ (f_nd_impurity_electrons13_173)_ 5.04982744717837875e+14 OP -W_concentration_at_point_174_____________________________________________ (f_nd_impurity_electrons13_174)_ 5.04644054742411250e+14 OP -W_concentration_at_point_175_____________________________________________ (f_nd_impurity_electrons13_175)_ 5.04303412663379938e+14 OP -W_concentration_at_point_176_____________________________________________ (f_nd_impurity_electrons13_176)_ 5.03960818480743750e+14 OP -W_concentration_at_point_177_____________________________________________ (f_nd_impurity_electrons13_177)_ 5.03616272194502875e+14 OP -W_concentration_at_point_178_____________________________________________ (f_nd_impurity_electrons13_178)_ 5.03269773804657250e+14 OP -W_concentration_at_point_179_____________________________________________ (f_nd_impurity_electrons13_179)_ 5.02921323311206750e+14 OP -W_concentration_at_point_180_____________________________________________ (f_nd_impurity_electrons13_180)_ 5.02570920714151562e+14 OP -W_concentration_at_point_181_____________________________________________ (f_nd_impurity_electrons13_181)_ 5.02218566013491625e+14 OP -W_concentration_at_point_182_____________________________________________ (f_nd_impurity_electrons13_182)_ 5.01864259209226938e+14 OP -W_concentration_at_point_183_____________________________________________ (f_nd_impurity_electrons13_183)_ 5.01508000301357438e+14 OP -W_concentration_at_point_184_____________________________________________ (f_nd_impurity_electrons13_184)_ 5.01149789289883188e+14 OP -W_concentration_at_point_185_____________________________________________ (f_nd_impurity_electrons13_185)_ 5.00789626174804188e+14 OP -W_concentration_at_point_186_____________________________________________ (f_nd_impurity_electrons13_186)_ 5.00427510956120438e+14 OP -W_concentration_at_point_187_____________________________________________ (f_nd_impurity_electrons13_187)_ 5.00063443633831875e+14 OP -W_concentration_at_point_188_____________________________________________ (f_nd_impurity_electrons13_188)_ 4.99697424207938562e+14 OP -W_concentration_at_point_189_____________________________________________ (f_nd_impurity_electrons13_189)_ 4.99329452678440500e+14 OP -W_concentration_at_point_190_____________________________________________ (f_nd_impurity_electrons13_190)_ 4.98959529045337688e+14 OP -W_concentration_at_point_191_____________________________________________ (f_nd_impurity_electrons13_191)_ 4.98587653308630125e+14 OP -W_concentration_at_point_192_____________________________________________ (f_nd_impurity_electrons13_192)_ 4.98213825468317750e+14 OP -W_concentration_at_point_193_____________________________________________ (f_nd_impurity_electrons13_193)_ 4.97838045524400562e+14 OP -W_concentration_at_point_194_____________________________________________ (f_nd_impurity_electrons13_194)_ 4.97460313476878688e+14 OP -W_concentration_at_point_195_____________________________________________ (f_nd_impurity_electrons13_195)_ 4.97080629325752062e+14 OP -W_concentration_at_point_196_____________________________________________ (f_nd_impurity_electrons13_196)_ 4.96698993071020625e+14 OP -W_concentration_at_point_197_____________________________________________ (f_nd_impurity_electrons13_197)_ 4.96315404712684438e+14 OP -W_concentration_at_point_198_____________________________________________ (f_nd_impurity_electrons13_198)_ 4.95929864250743500e+14 OP -W_concentration_at_point_199_____________________________________________ (f_nd_impurity_electrons13_199)_ 4.95542371685197812e+14 OP -W_concentration_at_point_200_____________________________________________ (f_nd_impurity_electrons13_200)_ 4.95152927016047312e+14 OP -W_concentration_at_point_201_____________________________________________ (f_nd_impurity_electrons13_201)_ 4.94761530243292062e+14 OP -W_concentration_at_point_202_____________________________________________ (f_nd_impurity_electrons13_202)_ 4.94368181366932062e+14 OP -W_concentration_at_point_203_____________________________________________ (f_nd_impurity_electrons13_203)_ 4.93972880386967250e+14 OP -W_concentration_at_point_204_____________________________________________ (f_nd_impurity_electrons13_204)_ 4.93575627303397812e+14 OP -W_concentration_at_point_205_____________________________________________ (f_nd_impurity_electrons13_205)_ 4.93176422116223500e+14 OP -W_concentration_at_point_206_____________________________________________ (f_nd_impurity_electrons13_206)_ 4.92775264825444375e+14 OP -W_concentration_at_point_207_____________________________________________ (f_nd_impurity_electrons13_207)_ 4.92372155431060625e+14 OP -W_concentration_at_point_208_____________________________________________ (f_nd_impurity_electrons13_208)_ 4.91967093933072000e+14 OP -W_concentration_at_point_209_____________________________________________ (f_nd_impurity_electrons13_209)_ 4.91560080331478688e+14 OP -W_concentration_at_point_210_____________________________________________ (f_nd_impurity_electrons13_210)_ 4.91151114626280500e+14 OP -W_concentration_at_point_211_____________________________________________ (f_nd_impurity_electrons13_211)_ 4.90740196817477688e+14 OP -W_concentration_at_point_212_____________________________________________ (f_nd_impurity_electrons13_212)_ 4.90327326905070000e+14 OP -W_concentration_at_point_213_____________________________________________ (f_nd_impurity_electrons13_213)_ 4.89912504889057625e+14 OP -W_concentration_at_point_214_____________________________________________ (f_nd_impurity_electrons13_214)_ 4.89495730769440375e+14 OP -W_concentration_at_point_215_____________________________________________ (f_nd_impurity_electrons13_215)_ 4.89077004546218500e+14 OP -W_concentration_at_point_216_____________________________________________ (f_nd_impurity_electrons13_216)_ 4.88656326219391812e+14 OP -W_concentration_at_point_217_____________________________________________ (f_nd_impurity_electrons13_217)_ 4.88233695788960250e+14 OP -W_concentration_at_point_218_____________________________________________ (f_nd_impurity_electrons13_218)_ 4.87809113254924062e+14 OP -W_concentration_at_point_219_____________________________________________ (f_nd_impurity_electrons13_219)_ 4.87382578617283062e+14 OP -W_concentration_at_point_220_____________________________________________ (f_nd_impurity_electrons13_220)_ 4.86954091876037312e+14 OP -W_concentration_at_point_221_____________________________________________ (f_nd_impurity_electrons13_221)_ 4.86523653031186812e+14 OP -W_concentration_at_point_222_____________________________________________ (f_nd_impurity_electrons13_222)_ 4.86091262082731500e+14 OP -W_concentration_at_point_223_____________________________________________ (f_nd_impurity_electrons13_223)_ 4.85656919030671500e+14 OP -W_concentration_at_point_224_____________________________________________ (f_nd_impurity_electrons13_224)_ 4.85220623875006688e+14 OP -W_concentration_at_point_225_____________________________________________ (f_nd_impurity_electrons13_225)_ 4.84782376615737062e+14 OP -W_concentration_at_point_226_____________________________________________ (f_nd_impurity_electrons13_226)_ 4.84342177252862750e+14 OP -W_concentration_at_point_227_____________________________________________ (f_nd_impurity_electrons13_227)_ 4.83900025786383625e+14 OP -W_concentration_at_point_228_____________________________________________ (f_nd_impurity_electrons13_228)_ 4.83455922216299750e+14 OP -W_concentration_at_point_229_____________________________________________ (f_nd_impurity_electrons13_229)_ 4.83009866542611062e+14 OP -W_concentration_at_point_230_____________________________________________ (f_nd_impurity_electrons13_230)_ 4.82561858765317688e+14 OP -W_concentration_at_point_231_____________________________________________ (f_nd_impurity_electrons13_231)_ 4.82111898884419438e+14 OP -W_concentration_at_point_232_____________________________________________ (f_nd_impurity_electrons13_232)_ 4.81659986899916562e+14 OP -W_concentration_at_point_233_____________________________________________ (f_nd_impurity_electrons13_233)_ 4.81206122811808875e+14 OP -W_concentration_at_point_234_____________________________________________ (f_nd_impurity_electrons13_234)_ 4.80750306620096375e+14 OP -W_concentration_at_point_235_____________________________________________ (f_nd_impurity_electrons13_235)_ 4.80292538324779188e+14 OP -W_concentration_at_point_236_____________________________________________ (f_nd_impurity_electrons13_236)_ 4.79832817925857250e+14 OP -W_concentration_at_point_237_____________________________________________ (f_nd_impurity_electrons13_237)_ 4.79371145423330438e+14 OP -W_concentration_at_point_238_____________________________________________ (f_nd_impurity_electrons13_238)_ 4.78907520817199000e+14 OP -W_concentration_at_point_239_____________________________________________ (f_nd_impurity_electrons13_239)_ 4.78441944107462688e+14 OP -W_concentration_at_point_240_____________________________________________ (f_nd_impurity_electrons13_240)_ 4.77974415294121625e+14 OP -W_concentration_at_point_241_____________________________________________ (f_nd_impurity_electrons13_241)_ 4.77504934377175812e+14 OP -W_concentration_at_point_242_____________________________________________ (f_nd_impurity_electrons13_242)_ 4.77033501356625250e+14 OP -W_concentration_at_point_243_____________________________________________ (f_nd_impurity_electrons13_243)_ 4.76560116232469938e+14 OP -W_concentration_at_point_244_____________________________________________ (f_nd_impurity_electrons13_244)_ 4.76084779004709812e+14 OP -W_concentration_at_point_245_____________________________________________ (f_nd_impurity_electrons13_245)_ 4.75607489673344875e+14 OP -W_concentration_at_point_246_____________________________________________ (f_nd_impurity_electrons13_246)_ 4.75128248238375250e+14 OP -W_concentration_at_point_247_____________________________________________ (f_nd_impurity_electrons13_247)_ 4.74647054699800875e+14 OP -W_concentration_at_point_248_____________________________________________ (f_nd_impurity_electrons13_248)_ 4.74163909057621750e+14 OP -W_concentration_at_point_249_____________________________________________ (f_nd_impurity_electrons13_249)_ 4.73678811311837812e+14 OP -W_concentration_at_point_250_____________________________________________ (f_nd_impurity_electrons13_250)_ 4.73191761462449125e+14 OP -W_concentration_at_point_251_____________________________________________ (f_nd_impurity_electrons13_251)_ 4.72702759509455625e+14 OP -W_concentration_at_point_252_____________________________________________ (f_nd_impurity_electrons13_252)_ 4.72211805452857438e+14 OP -W_concentration_at_point_253_____________________________________________ (f_nd_impurity_electrons13_253)_ 4.71718899292654438e+14 OP -W_concentration_at_point_254_____________________________________________ (f_nd_impurity_electrons13_254)_ 4.71224041028846750e+14 OP -W_concentration_at_point_255_____________________________________________ (f_nd_impurity_electrons13_255)_ 4.70727230661434188e+14 OP -W_concentration_at_point_256_____________________________________________ (f_nd_impurity_electrons13_256)_ 4.70228468190416938e+14 OP -W_concentration_at_point_257_____________________________________________ (f_nd_impurity_electrons13_257)_ 4.69727753615794875e+14 OP -W_concentration_at_point_258_____________________________________________ (f_nd_impurity_electrons13_258)_ 4.69225086937568062e+14 OP -W_concentration_at_point_259_____________________________________________ (f_nd_impurity_electrons13_259)_ 4.68720468155736500e+14 OP -W_concentration_at_point_260_____________________________________________ (f_nd_impurity_electrons13_260)_ 4.68213897270300250e+14 OP -W_concentration_at_point_261_____________________________________________ (f_nd_impurity_electrons13_261)_ 4.67705374281259062e+14 OP -W_concentration_at_point_262_____________________________________________ (f_nd_impurity_electrons13_262)_ 4.67194899188613250e+14 OP -W_concentration_at_point_263_____________________________________________ (f_nd_impurity_electrons13_263)_ 4.66682471992362562e+14 OP -W_concentration_at_point_264_____________________________________________ (f_nd_impurity_electrons13_264)_ 4.66168092692507250e+14 OP -W_concentration_at_point_265_____________________________________________ (f_nd_impurity_electrons13_265)_ 4.65651761289047062e+14 OP -W_concentration_at_point_266_____________________________________________ (f_nd_impurity_electrons13_266)_ 4.65133477781982125e+14 OP -W_concentration_at_point_267_____________________________________________ (f_nd_impurity_electrons13_267)_ 4.64613242171312438e+14 OP -W_concentration_at_point_268_____________________________________________ (f_nd_impurity_electrons13_268)_ 4.64091054457038000e+14 OP -W_concentration_at_point_269_____________________________________________ (f_nd_impurity_electrons13_269)_ 4.63566914639158750e+14 OP -W_concentration_at_point_270_____________________________________________ (f_nd_impurity_electrons13_270)_ 4.63040822717674812e+14 OP -W_concentration_at_point_271_____________________________________________ (f_nd_impurity_electrons13_271)_ 4.62512778692586062e+14 OP -W_concentration_at_point_272_____________________________________________ (f_nd_impurity_electrons13_272)_ 4.61982782563892562e+14 OP -W_concentration_at_point_273_____________________________________________ (f_nd_impurity_electrons13_273)_ 4.61450834331594312e+14 OP -W_concentration_at_point_274_____________________________________________ (f_nd_impurity_electrons13_274)_ 4.60916933995691250e+14 OP -W_concentration_at_point_275_____________________________________________ (f_nd_impurity_electrons13_275)_ 4.60381081556183500e+14 OP -W_concentration_at_point_276_____________________________________________ (f_nd_impurity_electrons13_276)_ 4.59843277013070938e+14 OP -W_concentration_at_point_277_____________________________________________ (f_nd_impurity_electrons13_277)_ 4.59303520366353562e+14 OP -W_concentration_at_point_278_____________________________________________ (f_nd_impurity_electrons13_278)_ 4.58761811616031500e+14 OP -W_concentration_at_point_279_____________________________________________ (f_nd_impurity_electrons13_279)_ 4.58218150762104625e+14 OP -W_concentration_at_point_280_____________________________________________ (f_nd_impurity_electrons13_280)_ 4.57672537804573062e+14 OP -W_concentration_at_point_281_____________________________________________ (f_nd_impurity_electrons13_281)_ 4.57124972743436625e+14 OP -W_concentration_at_point_282_____________________________________________ (f_nd_impurity_electrons13_282)_ 4.56575455578695500e+14 OP -W_concentration_at_point_283_____________________________________________ (f_nd_impurity_electrons13_283)_ 4.56023986310349688e+14 OP -W_concentration_at_point_284_____________________________________________ (f_nd_impurity_electrons13_284)_ 4.55470564938398938e+14 OP -W_concentration_at_point_285_____________________________________________ (f_nd_impurity_electrons13_285)_ 4.54915191462843562e+14 OP -W_concentration_at_point_286_____________________________________________ (f_nd_impurity_electrons13_286)_ 4.54357865883683250e+14 OP -W_concentration_at_point_287_____________________________________________ (f_nd_impurity_electrons13_287)_ 4.53798588200918312e+14 OP -W_concentration_at_point_288_____________________________________________ (f_nd_impurity_electrons13_288)_ 4.53237358414548625e+14 OP -W_concentration_at_point_289_____________________________________________ (f_nd_impurity_electrons13_289)_ 4.52674176524574125e+14 OP -W_concentration_at_point_290_____________________________________________ (f_nd_impurity_electrons13_290)_ 4.52109042530994812e+14 OP -W_concentration_at_point_291_____________________________________________ (f_nd_impurity_electrons13_291)_ 4.51541956433810812e+14 OP -W_concentration_at_point_292_____________________________________________ (f_nd_impurity_electrons13_292)_ 4.50972918233022000e+14 OP -W_concentration_at_point_293_____________________________________________ (f_nd_impurity_electrons13_293)_ 4.50401927928628438e+14 OP -W_concentration_at_point_294_____________________________________________ (f_nd_impurity_electrons13_294)_ 4.49828985520630188e+14 OP -W_concentration_at_point_295_____________________________________________ (f_nd_impurity_electrons13_295)_ 4.49254091009027062e+14 OP -W_concentration_at_point_296_____________________________________________ (f_nd_impurity_electrons13_296)_ 4.48677244393819188e+14 OP -W_concentration_at_point_297_____________________________________________ (f_nd_impurity_electrons13_297)_ 4.48098445675006625e+14 OP -W_concentration_at_point_298_____________________________________________ (f_nd_impurity_electrons13_298)_ 4.47517694852589188e+14 OP -W_concentration_at_point_299_____________________________________________ (f_nd_impurity_electrons13_299)_ 4.46934991926567125e+14 OP -W_concentration_at_point_300_____________________________________________ (f_nd_impurity_electrons13_300)_ 4.46350336896940125e+14 OP -W_concentration_at_point_301_____________________________________________ (f_nd_impurity_electrons13_301)_ 4.45763729763708500e+14 OP -W_concentration_at_point_302_____________________________________________ (f_nd_impurity_electrons13_302)_ 4.45175170526872062e+14 OP -W_concentration_at_point_303_____________________________________________ (f_nd_impurity_electrons13_303)_ 4.44584659186430875e+14 OP -W_concentration_at_point_304_____________________________________________ (f_nd_impurity_electrons13_304)_ 4.43992195742384875e+14 OP -W_concentration_at_point_305_____________________________________________ (f_nd_impurity_electrons13_305)_ 4.43397780194734188e+14 OP -W_concentration_at_point_306_____________________________________________ (f_nd_impurity_electrons13_306)_ 4.42801412543478688e+14 OP -W_concentration_at_point_307_____________________________________________ (f_nd_impurity_electrons13_307)_ 4.42203092788618500e+14 OP -W_concentration_at_point_308_____________________________________________ (f_nd_impurity_electrons13_308)_ 4.41602820930153438e+14 OP -W_concentration_at_point_309_____________________________________________ (f_nd_impurity_electrons13_309)_ 4.41000596968083625e+14 OP -W_concentration_at_point_310_____________________________________________ (f_nd_impurity_electrons13_310)_ 4.40396420902409062e+14 OP -W_concentration_at_point_311_____________________________________________ (f_nd_impurity_electrons13_311)_ 4.39790292733129812e+14 OP -W_concentration_at_point_312_____________________________________________ (f_nd_impurity_electrons13_312)_ 4.39182212460245688e+14 OP -W_concentration_at_point_313_____________________________________________ (f_nd_impurity_electrons13_313)_ 4.38572180083756938e+14 OP -W_concentration_at_point_314_____________________________________________ (f_nd_impurity_electrons13_314)_ 4.37960195603663312e+14 OP -W_concentration_at_point_315_____________________________________________ (f_nd_impurity_electrons13_315)_ 4.37346259019964938e+14 OP -W_concentration_at_point_316_____________________________________________ (f_nd_impurity_electrons13_316)_ 4.36730370332661812e+14 OP -W_concentration_at_point_317_____________________________________________ (f_nd_impurity_electrons13_317)_ 4.36112529541753938e+14 OP -W_concentration_at_point_318_____________________________________________ (f_nd_impurity_electrons13_318)_ 4.35492736647241188e+14 OP -W_concentration_at_point_319_____________________________________________ (f_nd_impurity_electrons13_319)_ 4.34870991649123812e+14 OP -W_concentration_at_point_320_____________________________________________ (f_nd_impurity_electrons13_320)_ 4.34247294547401625e+14 OP -W_concentration_at_point_321_____________________________________________ (f_nd_impurity_electrons13_321)_ 4.33621645342074688e+14 OP -W_concentration_at_point_322_____________________________________________ (f_nd_impurity_electrons13_322)_ 4.32994044033142875e+14 OP -W_concentration_at_point_323_____________________________________________ (f_nd_impurity_electrons13_323)_ 4.32364490620606438e+14 OP -W_concentration_at_point_324_____________________________________________ (f_nd_impurity_electrons13_324)_ 4.31732985104465188e+14 OP -W_concentration_at_point_325_____________________________________________ (f_nd_impurity_electrons13_325)_ 4.31099527484719250e+14 OP -W_concentration_at_point_326_____________________________________________ (f_nd_impurity_electrons13_326)_ 4.30464117761368438e+14 OP -W_concentration_at_point_327_____________________________________________ (f_nd_impurity_electrons13_327)_ 4.29826755934412812e+14 OP -W_concentration_at_point_328_____________________________________________ (f_nd_impurity_electrons13_328)_ 4.29187442003852500e+14 OP -W_concentration_at_point_329_____________________________________________ (f_nd_impurity_electrons13_329)_ 4.28546175969687500e+14 OP -W_concentration_at_point_330_____________________________________________ (f_nd_impurity_electrons13_330)_ 4.27902957831917625e+14 OP -W_concentration_at_point_331_____________________________________________ (f_nd_impurity_electrons13_331)_ 4.27257787590543062e+14 OP -W_concentration_at_point_332_____________________________________________ (f_nd_impurity_electrons13_332)_ 4.26610665245563625e+14 OP -W_concentration_at_point_333_____________________________________________ (f_nd_impurity_electrons13_333)_ 4.25961590796979625e+14 OP -W_concentration_at_point_334_____________________________________________ (f_nd_impurity_electrons13_334)_ 4.25310564244790688e+14 OP -W_concentration_at_point_335_____________________________________________ (f_nd_impurity_electrons13_335)_ 4.24657585588997062e+14 OP -W_concentration_at_point_336_____________________________________________ (f_nd_impurity_electrons13_336)_ 4.24002654829598688e+14 OP -W_concentration_at_point_337_____________________________________________ (f_nd_impurity_electrons13_337)_ 4.23345771966595438e+14 OP -W_concentration_at_point_338_____________________________________________ (f_nd_impurity_electrons13_338)_ 4.22686936999987500e+14 OP -W_concentration_at_point_339_____________________________________________ (f_nd_impurity_electrons13_339)_ 4.22026149929774812e+14 OP -W_concentration_at_point_340_____________________________________________ (f_nd_impurity_electrons13_340)_ 4.21363410755957375e+14 OP -W_concentration_at_point_341_____________________________________________ (f_nd_impurity_electrons13_341)_ 4.20698719478535062e+14 OP -W_concentration_at_point_342_____________________________________________ (f_nd_impurity_electrons13_342)_ 4.20032076097508125e+14 OP -W_concentration_at_point_343_____________________________________________ (f_nd_impurity_electrons13_343)_ 4.19363480612876312e+14 OP -W_concentration_at_point_344_____________________________________________ (f_nd_impurity_electrons13_344)_ 4.18692933024639812e+14 OP -W_concentration_at_point_345_____________________________________________ (f_nd_impurity_electrons13_345)_ 4.18020433332798438e+14 OP -W_concentration_at_point_346_____________________________________________ (f_nd_impurity_electrons13_346)_ 4.17345981537352438e+14 OP -W_concentration_at_point_347_____________________________________________ (f_nd_impurity_electrons13_347)_ 4.16669577638301625e+14 OP -W_concentration_at_point_348_____________________________________________ (f_nd_impurity_electrons13_348)_ 4.15991221635646062e+14 OP -W_concentration_at_point_349_____________________________________________ (f_nd_impurity_electrons13_349)_ 4.15310913529385625e+14 OP -W_concentration_at_point_350_____________________________________________ (f_nd_impurity_electrons13_350)_ 4.14628653319520562e+14 OP -W_concentration_at_point_351_____________________________________________ (f_nd_impurity_electrons13_351)_ 4.13944441006050625e+14 OP -W_concentration_at_point_352_____________________________________________ (f_nd_impurity_electrons13_352)_ 4.13258276588976062e+14 OP -W_concentration_at_point_353_____________________________________________ (f_nd_impurity_electrons13_353)_ 4.12570160068296562e+14 OP -W_concentration_at_point_354_____________________________________________ (f_nd_impurity_electrons13_354)_ 4.11880091444012438e+14 OP -W_concentration_at_point_355_____________________________________________ (f_nd_impurity_electrons13_355)_ 4.11188070716123500e+14 OP -W_concentration_at_point_356_____________________________________________ (f_nd_impurity_electrons13_356)_ 4.10494097884629750e+14 OP -W_concentration_at_point_357_____________________________________________ (f_nd_impurity_electrons13_357)_ 4.09798172949531312e+14 OP -W_concentration_at_point_358_____________________________________________ (f_nd_impurity_electrons13_358)_ 4.09100295910828125e+14 OP -W_concentration_at_point_359_____________________________________________ (f_nd_impurity_electrons13_359)_ 4.08400466768520125e+14 OP -W_concentration_at_point_360_____________________________________________ (f_nd_impurity_electrons13_360)_ 4.07698685522607312e+14 OP -W_concentration_at_point_361_____________________________________________ (f_nd_impurity_electrons13_361)_ 4.06994952173089812e+14 OP -W_concentration_at_point_362_____________________________________________ (f_nd_impurity_electrons13_362)_ 4.06289266719967500e+14 OP -W_concentration_at_point_363_____________________________________________ (f_nd_impurity_electrons13_363)_ 4.05581629163240438e+14 OP -W_concentration_at_point_364_____________________________________________ (f_nd_impurity_electrons13_364)_ 4.04872039502908625e+14 OP -W_concentration_at_point_365_____________________________________________ (f_nd_impurity_electrons13_365)_ 4.04160497738972062e+14 OP -W_concentration_at_point_366_____________________________________________ (f_nd_impurity_electrons13_366)_ 4.03447003871430750e+14 OP -W_concentration_at_point_367_____________________________________________ (f_nd_impurity_electrons13_367)_ 4.02731557900284562e+14 OP -W_concentration_at_point_368_____________________________________________ (f_nd_impurity_electrons13_368)_ 4.02014159825533688e+14 OP -W_concentration_at_point_369_____________________________________________ (f_nd_impurity_electrons13_369)_ 4.01294809647178062e+14 OP -W_concentration_at_point_370_____________________________________________ (f_nd_impurity_electrons13_370)_ 4.00573507365217688e+14 OP -W_concentration_at_point_371_____________________________________________ (f_nd_impurity_electrons13_371)_ 3.99850252979652500e+14 OP -W_concentration_at_point_372_____________________________________________ (f_nd_impurity_electrons13_372)_ 3.99125046490482625e+14 OP -W_concentration_at_point_373_____________________________________________ (f_nd_impurity_electrons13_373)_ 3.98397887897707812e+14 OP -W_concentration_at_point_374_____________________________________________ (f_nd_impurity_electrons13_374)_ 3.97668777201328438e+14 OP -W_concentration_at_point_375_____________________________________________ (f_nd_impurity_electrons13_375)_ 3.96937714401344188e+14 OP -W_concentration_at_point_376_____________________________________________ (f_nd_impurity_electrons13_376)_ 3.96204699497755250e+14 OP -W_concentration_at_point_377_____________________________________________ (f_nd_impurity_electrons13_377)_ 3.95469732490561500e+14 OP -W_concentration_at_point_378_____________________________________________ (f_nd_impurity_electrons13_378)_ 3.94732813379762938e+14 OP -W_concentration_at_point_379_____________________________________________ (f_nd_impurity_electrons13_379)_ 3.93993942165359688e+14 OP -W_concentration_at_point_380_____________________________________________ (f_nd_impurity_electrons13_380)_ 3.93253118847351625e+14 OP -W_concentration_at_point_381_____________________________________________ (f_nd_impurity_electrons13_381)_ 3.92510343425738812e+14 OP -W_concentration_at_point_382_____________________________________________ (f_nd_impurity_electrons13_382)_ 3.91765615900521188e+14 OP -W_concentration_at_point_383_____________________________________________ (f_nd_impurity_electrons13_383)_ 3.91018936271698875e+14 OP -W_concentration_at_point_384_____________________________________________ (f_nd_impurity_electrons13_384)_ 3.90270304539271750e+14 OP -W_concentration_at_point_385_____________________________________________ (f_nd_impurity_electrons13_385)_ 3.89519720703239875e+14 OP -W_concentration_at_point_386_____________________________________________ (f_nd_impurity_electrons13_386)_ 3.88767184763603312e+14 OP -W_concentration_at_point_387_____________________________________________ (f_nd_impurity_electrons13_387)_ 3.88012696720361938e+14 OP -W_concentration_at_point_388_____________________________________________ (f_nd_impurity_electrons13_388)_ 3.87256256573515750e+14 OP -W_concentration_at_point_389_____________________________________________ (f_nd_impurity_electrons13_389)_ 3.86497864323064812e+14 OP -W_concentration_at_point_390_____________________________________________ (f_nd_impurity_electrons13_390)_ 3.85737519969009125e+14 OP -W_concentration_at_point_391_____________________________________________ (f_nd_impurity_electrons13_391)_ 3.84975223511348688e+14 OP -W_concentration_at_point_392_____________________________________________ (f_nd_impurity_electrons13_392)_ 3.84210974950083438e+14 OP -W_concentration_at_point_393_____________________________________________ (f_nd_impurity_electrons13_393)_ 3.83444774285213500e+14 OP -W_concentration_at_point_394_____________________________________________ (f_nd_impurity_electrons13_394)_ 3.82676621516738688e+14 OP -W_concentration_at_point_395_____________________________________________ (f_nd_impurity_electrons13_395)_ 3.81906516644659250e+14 OP -W_concentration_at_point_396_____________________________________________ (f_nd_impurity_electrons13_396)_ 3.81134459668974938e+14 OP -W_concentration_at_point_397_____________________________________________ (f_nd_impurity_electrons13_397)_ 3.80360450589685875e+14 OP -W_concentration_at_point_398_____________________________________________ (f_nd_impurity_electrons13_398)_ 3.79584489406792062e+14 OP -W_concentration_at_point_399_____________________________________________ (f_nd_impurity_electrons13_399)_ 3.78806576120293500e+14 OP -W_concentration_at_point_400_____________________________________________ (f_nd_impurity_electrons13_400)_ 3.78026710730190125e+14 OP -W_concentration_at_point_401_____________________________________________ (f_nd_impurity_electrons13_401)_ 3.77244893236482062e+14 OP -W_concentration_at_point_402_____________________________________________ (f_nd_impurity_electrons13_402)_ 3.76461123639169188e+14 OP -W_concentration_at_point_403_____________________________________________ (f_nd_impurity_electrons13_403)_ 3.75675401938251625e+14 OP -W_concentration_at_point_404_____________________________________________ (f_nd_impurity_electrons13_404)_ 3.74887728133729188e+14 OP -W_concentration_at_point_405_____________________________________________ (f_nd_impurity_electrons13_405)_ 3.74098102225602000e+14 OP -W_concentration_at_point_406_____________________________________________ (f_nd_impurity_electrons13_406)_ 3.73306524213870125e+14 OP -W_concentration_at_point_407_____________________________________________ (f_nd_impurity_electrons13_407)_ 3.72512994098533500e+14 OP -W_concentration_at_point_408_____________________________________________ (f_nd_impurity_electrons13_408)_ 3.71717511879592062e+14 OP -W_concentration_at_point_409_____________________________________________ (f_nd_impurity_electrons13_409)_ 3.70920077557045875e+14 OP -W_concentration_at_point_410_____________________________________________ (f_nd_impurity_electrons13_410)_ 3.70120691130894875e+14 OP -W_concentration_at_point_411_____________________________________________ (f_nd_impurity_electrons13_411)_ 3.69319352601139125e+14 OP -W_concentration_at_point_412_____________________________________________ (f_nd_impurity_electrons13_412)_ 3.68516061967778562e+14 OP -W_concentration_at_point_413_____________________________________________ (f_nd_impurity_electrons13_413)_ 3.67710819230813312e+14 OP -W_concentration_at_point_414_____________________________________________ (f_nd_impurity_electrons13_414)_ 3.66903624390243250e+14 OP -W_concentration_at_point_415_____________________________________________ (f_nd_impurity_electrons13_415)_ 3.66094477446068500e+14 OP -W_concentration_at_point_416_____________________________________________ (f_nd_impurity_electrons13_416)_ 3.65283378398288938e+14 OP -W_concentration_at_point_417_____________________________________________ (f_nd_impurity_electrons13_417)_ 3.64470327246904625e+14 OP -W_concentration_at_point_418_____________________________________________ (f_nd_impurity_electrons13_418)_ 3.63655323991915500e+14 OP -W_concentration_at_point_419_____________________________________________ (f_nd_impurity_electrons13_419)_ 3.62838368633321688e+14 OP -W_concentration_at_point_420_____________________________________________ (f_nd_impurity_electrons13_420)_ 3.62019461171123000e+14 OP -W_concentration_at_point_421_____________________________________________ (f_nd_impurity_electrons13_421)_ 3.61198601605319688e+14 OP -W_concentration_at_point_422_____________________________________________ (f_nd_impurity_electrons13_422)_ 3.60375789935911500e+14 OP -W_concentration_at_point_423_____________________________________________ (f_nd_impurity_electrons13_423)_ 3.59551026162898625e+14 OP -W_concentration_at_point_424_____________________________________________ (f_nd_impurity_electrons13_424)_ 3.58724310286280875e+14 OP -W_concentration_at_point_425_____________________________________________ (f_nd_impurity_electrons13_425)_ 3.57895642306058500e+14 OP -W_concentration_at_point_426_____________________________________________ (f_nd_impurity_electrons13_426)_ 3.57065022222231312e+14 OP -W_concentration_at_point_427_____________________________________________ (f_nd_impurity_electrons13_427)_ 3.56232450034799312e+14 OP -W_concentration_at_point_428_____________________________________________ (f_nd_impurity_electrons13_428)_ 3.55397925743762625e+14 OP -W_concentration_at_point_429_____________________________________________ (f_nd_impurity_electrons13_429)_ 3.54561449349121125e+14 OP -W_concentration_at_point_430_____________________________________________ (f_nd_impurity_electrons13_430)_ 3.53723020850874875e+14 OP -W_concentration_at_point_431_____________________________________________ (f_nd_impurity_electrons13_431)_ 3.52882640249023812e+14 OP -W_concentration_at_point_432_____________________________________________ (f_nd_impurity_electrons13_432)_ 3.52040307543568062e+14 OP -W_concentration_at_point_433_____________________________________________ (f_nd_impurity_electrons13_433)_ 3.51196022734507438e+14 OP -W_concentration_at_point_434_____________________________________________ (f_nd_impurity_electrons13_434)_ 3.50349785821842188e+14 OP -W_concentration_at_point_435_____________________________________________ (f_nd_impurity_electrons13_435)_ 3.49501596805572062e+14 OP -W_concentration_at_point_436_____________________________________________ (f_nd_impurity_electrons13_436)_ 3.48651455685697250e+14 OP -W_concentration_at_point_437_____________________________________________ (f_nd_impurity_electrons13_437)_ 3.47799362462217625e+14 OP -W_concentration_at_point_438_____________________________________________ (f_nd_impurity_electrons13_438)_ 3.46945317135133250e+14 OP -W_concentration_at_point_439_____________________________________________ (f_nd_impurity_electrons13_439)_ 3.46089319704444125e+14 OP -W_concentration_at_point_440_____________________________________________ (f_nd_impurity_electrons13_440)_ 3.45231370170150188e+14 OP -W_concentration_at_point_441_____________________________________________ (f_nd_impurity_electrons13_441)_ 3.44371468532251500e+14 OP -W_concentration_at_point_442_____________________________________________ (f_nd_impurity_electrons13_442)_ 3.43509614790748125e+14 OP -W_concentration_at_point_443_____________________________________________ (f_nd_impurity_electrons13_443)_ 3.42645808945639875e+14 OP -W_concentration_at_point_444_____________________________________________ (f_nd_impurity_electrons13_444)_ 3.41780050996926938e+14 OP -W_concentration_at_point_445_____________________________________________ (f_nd_impurity_electrons13_445)_ 3.40912340944609188e+14 OP -W_concentration_at_point_446_____________________________________________ (f_nd_impurity_electrons13_446)_ 3.40042678788686688e+14 OP -W_concentration_at_point_447_____________________________________________ (f_nd_impurity_electrons13_447)_ 3.39171064529159438e+14 OP -W_concentration_at_point_448_____________________________________________ (f_nd_impurity_electrons13_448)_ 3.38297498166027438e+14 OP -W_concentration_at_point_449_____________________________________________ (f_nd_impurity_electrons13_449)_ 3.37421979699290625e+14 OP -W_concentration_at_point_450_____________________________________________ (f_nd_impurity_electrons13_450)_ 3.36544509128949062e+14 OP -W_concentration_at_point_451_____________________________________________ (f_nd_impurity_electrons13_451)_ 3.35665086455002812e+14 OP -W_concentration_at_point_452_____________________________________________ (f_nd_impurity_electrons13_452)_ 3.34783711677451750e+14 OP -W_concentration_at_point_453_____________________________________________ (f_nd_impurity_electrons13_453)_ 3.33900384796295875e+14 OP -W_concentration_at_point_454_____________________________________________ (f_nd_impurity_electrons13_454)_ 3.33015105811535312e+14 OP -W_concentration_at_point_455_____________________________________________ (f_nd_impurity_electrons13_455)_ 3.32127874723169875e+14 OP -W_concentration_at_point_456_____________________________________________ (f_nd_impurity_electrons13_456)_ 3.31238691531199812e+14 OP -W_concentration_at_point_457_____________________________________________ (f_nd_impurity_electrons13_457)_ 3.30347556235624875e+14 OP -W_concentration_at_point_458_____________________________________________ (f_nd_impurity_electrons13_458)_ 3.29454468836445188e+14 OP -W_concentration_at_point_459_____________________________________________ (f_nd_impurity_electrons13_459)_ 3.28559429333660750e+14 OP -W_concentration_at_point_460_____________________________________________ (f_nd_impurity_electrons13_460)_ 3.27662437727271625e+14 OP -W_concentration_at_point_461_____________________________________________ (f_nd_impurity_electrons13_461)_ 3.26763494017277625e+14 OP -W_concentration_at_point_462_____________________________________________ (f_nd_impurity_electrons13_462)_ 3.25862598203678938e+14 OP -W_concentration_at_point_463_____________________________________________ (f_nd_impurity_electrons13_463)_ 3.24959750286475438e+14 OP -W_concentration_at_point_464_____________________________________________ (f_nd_impurity_electrons13_464)_ 3.24054950265667188e+14 OP -W_concentration_at_point_465_____________________________________________ (f_nd_impurity_electrons13_465)_ 3.23148198141254125e+14 OP -W_concentration_at_point_466_____________________________________________ (f_nd_impurity_electrons13_466)_ 3.22239493913236375e+14 OP -W_concentration_at_point_467_____________________________________________ (f_nd_impurity_electrons13_467)_ 3.21328837581613875e+14 OP -W_concentration_at_point_468_____________________________________________ (f_nd_impurity_electrons13_468)_ 3.20416229146386562e+14 OP -W_concentration_at_point_469_____________________________________________ (f_nd_impurity_electrons13_469)_ 3.19501668607554500e+14 OP -W_concentration_at_point_470_____________________________________________ (f_nd_impurity_electrons13_470)_ 3.18585155965117688e+14 OP -W_concentration_at_point_471_____________________________________________ (f_nd_impurity_electrons13_471)_ 3.14212418530302375e+14 OP -W_concentration_at_point_472_____________________________________________ (f_nd_impurity_electrons13_472)_ 3.09839681095487000e+14 OP -W_concentration_at_point_473_____________________________________________ (f_nd_impurity_electrons13_473)_ 3.05466943660671688e+14 OP -W_concentration_at_point_474_____________________________________________ (f_nd_impurity_electrons13_474)_ 3.01094206225856375e+14 OP -W_concentration_at_point_475_____________________________________________ (f_nd_impurity_electrons13_475)_ 2.96721468791041000e+14 OP -W_concentration_at_point_476_____________________________________________ (f_nd_impurity_electrons13_476)_ 2.92348731356225625e+14 OP -W_concentration_at_point_477_____________________________________________ (f_nd_impurity_electrons13_477)_ 2.87975993921410312e+14 OP -W_concentration_at_point_478_____________________________________________ (f_nd_impurity_electrons13_478)_ 2.83603256486595000e+14 OP -W_concentration_at_point_479_____________________________________________ (f_nd_impurity_electrons13_479)_ 2.79230519051779625e+14 OP -W_concentration_at_point_480_____________________________________________ (f_nd_impurity_electrons13_480)_ 2.74857781616964312e+14 OP -W_concentration_at_point_481_____________________________________________ (f_nd_impurity_electrons13_481)_ 2.70485044182148969e+14 OP -W_concentration_at_point_482_____________________________________________ (f_nd_impurity_electrons13_482)_ 2.66112306747333625e+14 OP -W_concentration_at_point_483_____________________________________________ (f_nd_impurity_electrons13_483)_ 2.61739569312518281e+14 OP -W_concentration_at_point_484_____________________________________________ (f_nd_impurity_electrons13_484)_ 2.57366831877702969e+14 OP -W_concentration_at_point_485_____________________________________________ (f_nd_impurity_electrons13_485)_ 2.52994094442887594e+14 OP -W_concentration_at_point_486_____________________________________________ (f_nd_impurity_electrons13_486)_ 2.48621357008072281e+14 OP -W_concentration_at_point_487_____________________________________________ (f_nd_impurity_electrons13_487)_ 2.44248619573256906e+14 OP -W_concentration_at_point_488_____________________________________________ (f_nd_impurity_electrons13_488)_ 2.39875882138441594e+14 OP -W_concentration_at_point_489_____________________________________________ (f_nd_impurity_electrons13_489)_ 2.35503144703626219e+14 OP -W_concentration_at_point_490_____________________________________________ (f_nd_impurity_electrons13_490)_ 2.31130407268810906e+14 OP -W_concentration_at_point_491_____________________________________________ (f_nd_impurity_electrons13_491)_ 2.26757669833995562e+14 OP -W_concentration_at_point_492_____________________________________________ (f_nd_impurity_electrons13_492)_ 2.22384932399180219e+14 OP -W_concentration_at_point_493_____________________________________________ (f_nd_impurity_electrons13_493)_ 2.18012194964364875e+14 OP -W_concentration_at_point_494_____________________________________________ (f_nd_impurity_electrons13_494)_ 2.13639457529549500e+14 OP -W_concentration_at_point_495_____________________________________________ (f_nd_impurity_electrons13_495)_ 2.09266720094734188e+14 OP -W_concentration_at_point_496_____________________________________________ (f_nd_impurity_electrons13_496)_ 2.04893982659918875e+14 OP -W_concentration_at_point_497_____________________________________________ (f_nd_impurity_electrons13_497)_ 2.00521245225103500e+14 OP -W_concentration_at_point_498_____________________________________________ (f_nd_impurity_electrons13_498)_ 1.96148507790288188e+14 OP -W_concentration_at_point_499_____________________________________________ (f_nd_impurity_electrons13_499)_ 1.91775770355472812e+14 OP -W_concentration_at_point_500_____________________________________________ (f_nd_impurity_electrons13_500)_ 1.87403032920657500e+14 OP -Volume_averaged_plasma_effective_charge_(⟨Zₑ⟩)___________________________ (n_charge_plasma_effective_vol_avg)_ 2.62276718906693374e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile0)_ 2.76168441917185037e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile1)_ 2.76168396861639964e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile2)_ 2.76168261694195172e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile3)_ 2.76168036412421980e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile4)_ 2.76167721012272382e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile5)_ 2.76167315488078868e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile6)_ 2.76166819832554244e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile7)_ 2.76166234036790881e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile8)_ 2.76165558090260888e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile9)_ 2.76164791980815005e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile10)_ 2.76163935694682072e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile11)_ 2.76162989216468491e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile12)_ 2.76161952529157340e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile13)_ 2.76160825614107708e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile14)_ 2.76159608451052829e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile15)_ 2.76158301018100616e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile16)_ 2.76156903291730771e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile17)_ 2.76155415246794922e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile18)_ 2.76153836856514534e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile19)_ 2.76152168092479844e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile20)_ 2.76150408924648172e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile21)_ 2.76148559321342679e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile22)_ 2.76146619249250369e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile23)_ 2.76144588673420532e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile24)_ 2.76142467557262927e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile25)_ 2.76140255862545780e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile26)_ 2.76137953549393833e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile27)_ 2.76135560576286343e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile28)_ 2.76133076900054864e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile29)_ 2.76130502475880668e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile30)_ 2.76127837257293196e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile31)_ 2.76125081196166811e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile32)_ 2.76122234242718667e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile33)_ 2.76119296345506227e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile34)_ 2.76116102221043791e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile35)_ 2.76112545065217851e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile36)_ 2.76108884038091595e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile37)_ 2.76105119073766714e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile38)_ 2.76101250104446994e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile39)_ 2.76097277060433921e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile40)_ 2.76093199870123529e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile41)_ 2.76089018460002755e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile42)_ 2.76084732754645179e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile43)_ 2.76080342676707335e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile44)_ 2.76075848146924896e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile45)_ 2.76071249084108050e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile46)_ 2.76066545405137598e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile47)_ 2.76061737024960552e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile48)_ 2.76056823856585565e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile49)_ 2.76051805811078577e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile50)_ 2.76046682797558107e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile51)_ 2.76041454723190238e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile52)_ 2.76036121493184083e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile53)_ 2.76030683010786682e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile54)_ 2.76025139177278156e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile55)_ 2.76019489891965941e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile56)_ 2.76013735052180165e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile57)_ 2.76007874553267918e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile58)_ 2.76001908288587749e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile59)_ 2.75995836149504337e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile60)_ 2.75989658025382356e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile61)_ 2.75983373803581067e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile62)_ 2.75976983369448181e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile63)_ 2.75970486606313781e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile64)_ 2.75963883395484322e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile65)_ 2.75957173616236329e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile66)_ 2.75950357145810088e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile67)_ 2.75943433859402942e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile68)_ 2.75936403630163163e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile69)_ 2.75929266329182710e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile70)_ 2.75922021825490749e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile71)_ 2.75914669986046812e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile72)_ 2.75907210675733472e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile73)_ 2.75899643757349589e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile74)_ 2.75891969091602585e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile75)_ 2.75884186537101384e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile76)_ 2.75876295950348860e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile77)_ 2.75868297185734290e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile78)_ 2.75860190095525493e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile79)_ 2.75851974529861232e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile80)_ 2.75843650336742785e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile81)_ 2.75835217362026608e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile82)_ 2.75826675449415326e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile83)_ 2.75818024440450182e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile84)_ 2.75809264174502111e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile85)_ 2.75800394488763301e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile86)_ 2.75791415218238800e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile87)_ 2.75782326195737193e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile88)_ 2.75773127251862249e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile89)_ 2.75763818215003553e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile90)_ 2.75754398911327403e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile91)_ 2.75744869164767792e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile92)_ 2.75735228797016552e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile93)_ 2.75725477627514159e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile94)_ 2.75715615473440012e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile95)_ 2.75705642149702745e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile96)_ 2.75695557468929930e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile97)_ 2.75685361241458571e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile98)_ 2.75675053275324711e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile99)_ 2.75664633376253043e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile100)_ 2.75654101347646563e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile101)_ 2.75643456990576219e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile102)_ 2.75632700103769945e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile103)_ 2.75621830483602048e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile104)_ 2.75610847924082059e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile105)_ 2.75599752216844118e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile106)_ 2.75588041099315006e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile107)_ 2.75575367873776811e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile108)_ 2.75562567334179986e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile109)_ 2.75549639237925481e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile110)_ 2.75536583339708629e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile111)_ 2.75523399391506052e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile112)_ 2.75510087142562154e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile113)_ 2.75496646339375983e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile114)_ 2.75483076725687459e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile115)_ 2.75469378042463431e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile116)_ 2.75455550027884088e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile117)_ 2.75441592417328840e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile118)_ 2.75427504943361789e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile119)_ 2.75413287335717749e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile120)_ 2.75398939321287495e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile121)_ 2.75384460624103200e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile122)_ 2.75369850965323382e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile123)_ 2.75355110063218067e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile124)_ 2.75340237633153739e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile125)_ 2.75325233387577528e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile126)_ 2.75310097036002421e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile127)_ 2.75294828284990922e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile128)_ 2.75279426838139862e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile129)_ 2.75263892396063836e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile130)_ 2.75248224656379614e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile131)_ 2.75232423313689401e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile132)_ 2.75216488059564535e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile133)_ 2.75200418582529149e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile134)_ 2.75184214568042762e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile135)_ 2.75167875698483932e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile136)_ 2.75151401653132632e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile137)_ 2.75134792108153325e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile138)_ 2.75118046736577426e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile139)_ 2.75101165208285225e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile140)_ 2.75084147189988881e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile141)_ 2.75066992345213812e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile142)_ 2.75049700334280889e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile143)_ 2.75032270814287916e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile144)_ 2.75014703439091157e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile145)_ 2.74997037498490515e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile146)_ 2.74979266487660512e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile147)_ 2.74961357133496920e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile148)_ 2.74943309078190179e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile149)_ 2.74925121960607965e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile150)_ 2.74906795416276140e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile151)_ 2.74888329077358939e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile152)_ 2.74869722572639263e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile153)_ 2.74850975527498509e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile154)_ 2.74832087563897032e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile155)_ 2.74813058300353230e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile156)_ 2.74793887351923383e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile157)_ 2.74774574330181087e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile158)_ 2.74755118843196300e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile159)_ 2.74735520495514463e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile160)_ 2.74715778888135320e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile161)_ 2.74695893618491560e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile162)_ 2.74675864280427540e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile163)_ 2.74655690464177438e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile164)_ 2.74635371756343316e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile165)_ 2.74614907739873537e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile166)_ 2.74594297994040160e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile167)_ 2.74573542094416956e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile168)_ 2.74552639612856719e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile169)_ 2.74531590117468616e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile170)_ 2.74510393172595446e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile171)_ 2.74489048338790642e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile172)_ 2.74467555172795041e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile173)_ 2.74445913227513572e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile174)_ 2.74424122051991759e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile175)_ 2.74400211098577751e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile176)_ 2.74375820345769750e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile177)_ 2.74351263469968343e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile178)_ 2.74326539959316662e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile179)_ 2.74301649297602212e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile180)_ 2.74276590964230627e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile181)_ 2.74251364434198752e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile182)_ 2.74225969178067785e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile183)_ 2.74200404661936403e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile184)_ 2.74174670347413407e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile185)_ 2.74148765691590590e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile186)_ 2.74122690147015158e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile187)_ 2.74096443161662284e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile188)_ 2.74070024178907090e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile189)_ 2.74043432637497153e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile190)_ 2.74016667971524042e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile191)_ 2.73989729610395560e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile192)_ 2.73962616978807283e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile193)_ 2.73935329496714264e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile194)_ 2.73907866579302350e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile195)_ 2.73880227636960027e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile196)_ 2.73852412075249019e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile197)_ 2.73824419294875998e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile198)_ 2.73796248691663635e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile199)_ 2.73766661330087935e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile200)_ 2.73732319202625396e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile201)_ 2.73697761381002680e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile202)_ 2.73662987125294377e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile203)_ 2.73627995689647907e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile204)_ 2.73592786322249593e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile205)_ 2.73557358265290862e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile206)_ 2.73521710754934411e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile207)_ 2.73485843021279829e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile208)_ 2.73449754288330116e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile209)_ 2.73413443773957665e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile210)_ 2.73376910689869801e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile211)_ 2.73340154241575473e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile212)_ 2.73303173628351193e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile213)_ 2.73265968043206842e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile214)_ 2.73228536672852496e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile215)_ 2.73190878697664319e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile216)_ 2.73152993291650992e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile217)_ 2.73114879622420403e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile218)_ 2.73076536851146168e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile219)_ 2.73037964132534361e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile220)_ 2.72999185245943599e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile221)_ 2.72960360918730283e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile222)_ 2.72921305311845774e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile223)_ 2.72882017558262246e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile224)_ 2.72842496784353994e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile225)_ 2.72802742109865282e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile226)_ 2.72762752647879481e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile227)_ 2.72722527504787138e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile228)_ 2.72682065780255423e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile229)_ 2.72641366567197307e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile230)_ 2.72600428951741458e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile231)_ 2.72559252013202169e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile232)_ 2.72517834824050409e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile233)_ 2.72476176449884466e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile234)_ 2.72434275949401528e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile235)_ 2.72392132374369966e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile236)_ 2.72349744769601454e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile237)_ 2.72307112172924892e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile238)_ 2.72264233615159457e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile239)_ 2.72219892772321392e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile240)_ 2.72172666571253163e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile241)_ 2.72125169925558730e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile242)_ 2.72077401759352844e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile243)_ 2.72029360989105973e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile244)_ 2.71981046523622760e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile245)_ 2.71932457264020311e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile246)_ 2.71883592103708160e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile247)_ 2.71834449928369493e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile248)_ 2.71785029615942975e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile249)_ 2.71735330036606282e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile250)_ 2.71685350052760599e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile251)_ 2.71635088519016676e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile252)_ 2.71584544282182083e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile253)_ 2.71533716181250107e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile254)_ 2.71482603047390025e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile255)_ 2.71431203703939383e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile256)_ 2.71376036207036853e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile257)_ 2.71316947071075631e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile258)_ 2.71257529773622696e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile259)_ 2.71197782963533074e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile260)_ 2.71137705281006447e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile261)_ 2.71077295357594261e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile262)_ 2.71016551816209095e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile263)_ 2.70955473271136871e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile264)_ 2.70894058328051557e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile265)_ 2.70832305584033151e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile266)_ 2.70770213627587975e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile267)_ 2.70707781038672923e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile268)_ 2.70645006388722464e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile269)_ 2.70581888240679236e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile270)_ 2.70518425149027708e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile271)_ 2.70454615659832420e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile272)_ 2.70381395894491439e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile273)_ 2.70307579884997784e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile274)_ 2.70233364578708501e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile275)_ 2.70158748310174879e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile276)_ 2.70083729405033512e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile277)_ 2.70008306180084157e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile278)_ 2.69932476943372812e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile279)_ 2.69856239994280989e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile280)_ 2.69779593623620562e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile281)_ 2.69702536113735691e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile282)_ 2.69625065738610648e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile283)_ 2.69547180763985184e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile284)_ 2.69468879447476439e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile285)_ 2.69390160038708748e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile286)_ 2.69303363907668203e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile287)_ 2.69215150223419020e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile288)_ 2.69126469556219883e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile289)_ 2.69037319972661759e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile290)_ 2.68947699531822249e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile291)_ 2.68857606285471951e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile292)_ 2.68767038278291359e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile293)_ 2.68675993548098901e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile294)_ 2.68584470126091057e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile295)_ 2.68492466037094424e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile296)_ 2.68399979299830571e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile297)_ 2.68307007927194086e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile298)_ 2.68213549926544115e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile299)_ 2.68109118051325579e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile300)_ 2.68000520714070234e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile301)_ 2.67891361822339347e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile302)_ 2.67781639145157824e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile303)_ 2.67671350448102396e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile304)_ 2.67560493493754947e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile305)_ 2.67449066042176442e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile306)_ 2.67337065851401823e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile307)_ 2.67224490677957904e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile308)_ 2.67111338277403343e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile309)_ 2.66997606404893117e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile310)_ 2.66883292815767925e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile311)_ 2.66761049584260190e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile312)_ 2.66628557004920852e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile313)_ 2.66495396687186137e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile314)_ 2.66361566185417997e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile315)_ 2.66227063059464841e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile316)_ 2.66091884875544915e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile317)_ 2.65956029207167388e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile318)_ 2.65819493636091408e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile319)_ 2.65682275753324948e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile320)_ 2.65544373160165570e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile321)_ 2.65405783469284318e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile322)_ 2.65265987786181956e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile323)_ 2.65105959430493465e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile324)_ 2.64945147978661222e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile325)_ 2.64783550938925227e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile326)_ 2.64621165841495021e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile327)_ 2.64457990240138541e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile328)_ 2.64294021713835514e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile329)_ 2.64129257868496836e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile330)_ 2.63963696338752607e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile331)_ 2.63797334789812554e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile332)_ 2.63630170919399864e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile333)_ 2.63457281954924927e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile334)_ 2.63256069249174152e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile335)_ 2.63053913919063964e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile336)_ 2.62850813752371115e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile337)_ 2.62646766592426717e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile338)_ 2.62441770341039282e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile339)_ 2.62235822961532206e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile340)_ 2.62028922481899107e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile341)_ 2.61821066998083385e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile342)_ 2.61612254677384914e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile343)_ 2.61400117384724329e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile344)_ 2.61152403881816220e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile345)_ 2.60903590792299234e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile346)_ 2.60653676834138892e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile347)_ 2.60402660836575439e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile348)_ 2.60150541745143782e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile349)_ 2.59897318626885809e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile350)_ 2.59642990675764018e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile351)_ 2.59387557218283415e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile352)_ 2.59131017719329915e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile353)_ 2.58862487492923199e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile354)_ 2.58563391323415903e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile355)_ 2.58263057817974628e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile356)_ 2.57961487723061511e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile357)_ 2.57658681988568272e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile358)_ 2.57354641776204529e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile359)_ 2.57049368468207406e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile360)_ 2.56742863676385280e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile361)_ 2.56435129251508309e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile362)_ 2.56124407569111012e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile363)_ 2.55769877545659741e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile364)_ 2.55414006059521315e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile365)_ 2.55056797278736846e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile366)_ 2.54698255710403698e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile367)_ 2.54338386213932832e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile368)_ 2.53977194014814334e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile369)_ 2.53614684718912109e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile370)_ 2.53250864327309300e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile371)_ 2.52878575025900920e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile372)_ 2.52491529316068197e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile373)_ 2.52103149493914058e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile374)_ 2.51713444160057387e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile375)_ 2.51322422422318636e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile376)_ 2.50930093915253982e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile377)_ 2.50536468820452418e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile378)_ 2.50141557887630750e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile379)_ 2.49745372456560233e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile380)_ 2.49341629798324060e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile381)_ 2.48935661070547409e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile382)_ 2.48528444154445305e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile383)_ 2.48119993393106286e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile384)_ 2.47710323856099635e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile385)_ 2.47299451367613043e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile386)_ 2.46887392535729644e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile387)_ 2.46474164782897898e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile388)_ 2.46074415332447716e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile389)_ 2.45679435368319110e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile390)_ 2.45283367754181558e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile391)_ 2.44886232067342924e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile392)_ 2.44488048825376003e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile393)_ 2.44088839523531620e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile394)_ 2.43688626673742226e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile395)_ 2.43287433845297008e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile396)_ 2.42915776818654772e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile397)_ 2.42548507036956273e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile398)_ 2.42180363348253813e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile399)_ 2.41811370902332756e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile400)_ 2.41441556032554772e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile401)_ 2.41070946304846867e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile402)_ 2.40699570568909493e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile403)_ 2.40341191436679935e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile404)_ 2.40027356741155407e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile405)_ 2.39712883473343918e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile406)_ 2.39397800003090788e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile407)_ 2.39082136050201921e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile408)_ 2.38765922743114878e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile409)_ 2.38449192680420996e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile410)_ 2.38131979995406518e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile411)_ 2.37856061692874254e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile412)_ 2.37590108088601459e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile413)_ 2.37323789115632344e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile414)_ 2.37057138648878318e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile415)_ 2.36790192187020798e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile416)_ 2.36522986927382917e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile417)_ 2.36255561844810957e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile418)_ 2.36011082018875129e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile419)_ 2.35788381904506839e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile420)_ 2.35565565177170111e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile421)_ 2.35342670741218729e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile422)_ 2.35119739395314387e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile423)_ 2.34896813925746484e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile424)_ 2.34673939205359394e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile425)_ 2.34465421172270538e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile426)_ 2.34287745762780908e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile427)_ 2.34110197091523853e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile428)_ 2.33932818539337051e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile429)_ 2.33755655661260198e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile430)_ 2.33578756303794544e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile431)_ 2.33402170730410319e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile432)_ 2.33230292612896095e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile433)_ 2.33084761378721561e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile434)_ 2.32939609988086938e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile435)_ 2.32794889378295666e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile436)_ 2.32650653163377852e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile437)_ 2.32506957798969927e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile438)_ 2.32363862761627038e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile439)_ 2.32221430744429735e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile440)_ 2.32098669349689146e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile441)_ 2.31979394114345361e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile442)_ 2.31860847201064502e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile443)_ 2.31743094763618362e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile444)_ 2.31626206815137481e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile445)_ 2.31510257531665742e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile446)_ 2.31395325593119860e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile447)_ 2.31284051537348168e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile448)_ 2.31178718813661055e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile449)_ 2.31074583717107407e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile450)_ 2.30971740939573600e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile451)_ 2.30870291801314131e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile452)_ 2.30770344986133891e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile453)_ 2.30672017410698205e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile454)_ 2.30575435263096695e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile455)_ 2.30484035801737042e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile456)_ 2.30409455751023451e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile457)_ 2.30336635821086544e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile458)_ 2.30265720569280674e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile459)_ 2.30196870249429075e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile460)_ 2.30130264073285407e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile461)_ 2.30066104592007559e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile462)_ 2.30004623753887705e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile463)_ 2.29946091574755762e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile464)_ 2.29890829089121373e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile465)_ 2.29839228772077409e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile466)_ 2.29791925754100035e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile467)_ 2.29749441789074726e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile468)_ 2.29712750626619133e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile469)_ 2.29683533875810930e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile470)_ 2.29666594781906364e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile471)_ 2.29256916076762085e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile472)_ 2.28863270778124539e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile473)_ 2.28463162706091216e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile474)_ 2.28049934996540316e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile475)_ 2.27623259987934334e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile476)_ 2.27161759537847052e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile477)_ 2.26661163034253521e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile478)_ 2.26138685579864207e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile479)_ 2.25552234617390557e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile480)_ 2.24829465959230701e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile481)_ 2.24003833810516584e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile482)_ 2.22960639181560927e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile483)_ 2.21519959847364456e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile484)_ 2.19425090093429453e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile485)_ 2.16226073912241334e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile486)_ 2.11107910130968390e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile487)_ 2.04160673402112858e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile488)_ 1.97016037624127494e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile489)_ 1.91858469108174412e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile490)_ 1.88638830259290669e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile491)_ 1.86612752685338523e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile492)_ 1.84987438405921756e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile493)_ 1.83449754243583363e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile494)_ 1.81565928053843617e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile495)_ 1.78761375380416365e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile496)_ 1.74313113053421631e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile497)_ 1.62032265644412776e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile498)_ 1.48667293375746490e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile499)_ 1.37990803121821126e+00 OP -Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile500)_ 1.23379729895942214e+00 OP +W_concentration_at_point_0_______________________________________________ (f_nd_impurity_electrons13_0)__ 5.24766129845964188e+14 OP +W_concentration_at_point_1_______________________________________________ (f_nd_impurity_electrons13_1)__ 5.24765171020276562e+14 OP +W_concentration_at_point_2_______________________________________________ (f_nd_impurity_electrons13_2)__ 5.24762294543213875e+14 OP +W_concentration_at_point_3_______________________________________________ (f_nd_impurity_electrons13_3)__ 5.24757500414776000e+14 OP +W_concentration_at_point_4_______________________________________________ (f_nd_impurity_electrons13_4)__ 5.24750788634962875e+14 OP +W_concentration_at_point_5_______________________________________________ (f_nd_impurity_electrons13_5)__ 5.24742159203774688e+14 OP +W_concentration_at_point_6_______________________________________________ (f_nd_impurity_electrons13_6)__ 5.24731612121211312e+14 OP +W_concentration_at_point_7_______________________________________________ (f_nd_impurity_electrons13_7)__ 5.24719147387272750e+14 OP +W_concentration_at_point_8_______________________________________________ (f_nd_impurity_electrons13_8)__ 5.24704765001959125e+14 OP +W_concentration_at_point_9_______________________________________________ (f_nd_impurity_electrons13_9)__ 5.24688464965270312e+14 OP +W_concentration_at_point_10______________________________________________ (f_nd_impurity_electrons13_10)_ 5.24670247277206312e+14 OP +W_concentration_at_point_11______________________________________________ (f_nd_impurity_electrons13_11)_ 5.24650111937767062e+14 OP +W_concentration_at_point_12______________________________________________ (f_nd_impurity_electrons13_12)_ 5.24628058946952750e+14 OP +W_concentration_at_point_13______________________________________________ (f_nd_impurity_electrons13_13)_ 5.24604088304763250e+14 OP +W_concentration_at_point_14______________________________________________ (f_nd_impurity_electrons13_14)_ 5.24578200011198688e+14 OP +W_concentration_at_point_15______________________________________________ (f_nd_impurity_electrons13_15)_ 5.24550394066258875e+14 OP +W_concentration_at_point_16______________________________________________ (f_nd_impurity_electrons13_16)_ 5.24520670469943938e+14 OP +W_concentration_at_point_17______________________________________________ (f_nd_impurity_electrons13_17)_ 5.24489029222253750e+14 OP +W_concentration_at_point_18______________________________________________ (f_nd_impurity_electrons13_18)_ 5.24455470323188562e+14 OP +W_concentration_at_point_19______________________________________________ (f_nd_impurity_electrons13_19)_ 5.24419993772748125e+14 OP +W_concentration_at_point_20______________________________________________ (f_nd_impurity_electrons13_20)_ 5.24382599570932500e+14 OP +W_concentration_at_point_21______________________________________________ (f_nd_impurity_electrons13_21)_ 5.24343287717741750e+14 OP +W_concentration_at_point_22______________________________________________ (f_nd_impurity_electrons13_22)_ 5.24302058213175812e+14 OP +W_concentration_at_point_23______________________________________________ (f_nd_impurity_electrons13_23)_ 5.24258911057234812e+14 OP +W_concentration_at_point_24______________________________________________ (f_nd_impurity_electrons13_24)_ 5.24213846249918500e+14 OP +W_concentration_at_point_25______________________________________________ (f_nd_impurity_electrons13_25)_ 5.24166863791227188e+14 OP +W_concentration_at_point_26______________________________________________ (f_nd_impurity_electrons13_26)_ 5.24117963681160625e+14 OP +W_concentration_at_point_27______________________________________________ (f_nd_impurity_electrons13_27)_ 5.24067145919718875e+14 OP +W_concentration_at_point_28______________________________________________ (f_nd_impurity_electrons13_28)_ 5.24014410506902125e+14 OP +W_concentration_at_point_29______________________________________________ (f_nd_impurity_electrons13_29)_ 5.23959757442710062e+14 OP +W_concentration_at_point_30______________________________________________ (f_nd_impurity_electrons13_30)_ 5.23903186727142875e+14 OP +W_concentration_at_point_31______________________________________________ (f_nd_impurity_electrons13_31)_ 5.23844698360200500e+14 OP +W_concentration_at_point_32______________________________________________ (f_nd_impurity_electrons13_32)_ 5.23784292341883062e+14 OP +W_concentration_at_point_33______________________________________________ (f_nd_impurity_electrons13_33)_ 5.23721968672190438e+14 OP +W_concentration_at_point_34______________________________________________ (f_nd_impurity_electrons13_34)_ 5.23657727351122625e+14 OP +W_concentration_at_point_35______________________________________________ (f_nd_impurity_electrons13_35)_ 5.23591568378679688e+14 OP +W_concentration_at_point_36______________________________________________ (f_nd_impurity_electrons13_36)_ 5.23523491754861500e+14 OP +W_concentration_at_point_37______________________________________________ (f_nd_impurity_electrons13_37)_ 5.23453497479668250e+14 OP +W_concentration_at_point_38______________________________________________ (f_nd_impurity_electrons13_38)_ 5.23381585553099750e+14 OP +W_concentration_at_point_39______________________________________________ (f_nd_impurity_electrons13_39)_ 5.23307755975156188e+14 OP +W_concentration_at_point_40______________________________________________ (f_nd_impurity_electrons13_40)_ 5.23232008745837375e+14 OP +W_concentration_at_point_41______________________________________________ (f_nd_impurity_electrons13_41)_ 5.23154343865143500e+14 OP +W_concentration_at_point_42______________________________________________ (f_nd_impurity_electrons13_42)_ 5.23074761333074438e+14 OP +W_concentration_at_point_43______________________________________________ (f_nd_impurity_electrons13_43)_ 5.22993261149630188e+14 OP +W_concentration_at_point_44______________________________________________ (f_nd_impurity_electrons13_44)_ 5.22909843314810750e+14 OP +W_concentration_at_point_45______________________________________________ (f_nd_impurity_electrons13_45)_ 5.22824507828616250e+14 OP +W_concentration_at_point_46______________________________________________ (f_nd_impurity_electrons13_46)_ 5.22737254691046562e+14 OP +W_concentration_at_point_47______________________________________________ (f_nd_impurity_electrons13_47)_ 5.22648083902101625e+14 OP +W_concentration_at_point_48______________________________________________ (f_nd_impurity_electrons13_48)_ 5.22556995461781625e+14 OP +W_concentration_at_point_49______________________________________________ (f_nd_impurity_electrons13_49)_ 5.22463989370086375e+14 OP +W_concentration_at_point_50______________________________________________ (f_nd_impurity_electrons13_50)_ 5.22369065627016125e+14 OP +W_concentration_at_point_51______________________________________________ (f_nd_impurity_electrons13_51)_ 5.22272224232570625e+14 OP +W_concentration_at_point_52______________________________________________ (f_nd_impurity_electrons13_52)_ 5.22173465186750000e+14 OP +W_concentration_at_point_53______________________________________________ (f_nd_impurity_electrons13_53)_ 5.22072788489554125e+14 OP +W_concentration_at_point_54______________________________________________ (f_nd_impurity_electrons13_54)_ 5.21970194140983188e+14 OP +W_concentration_at_point_55______________________________________________ (f_nd_impurity_electrons13_55)_ 5.21865682141037000e+14 OP +W_concentration_at_point_56______________________________________________ (f_nd_impurity_electrons13_56)_ 5.21759252489715750e+14 OP +W_concentration_at_point_57______________________________________________ (f_nd_impurity_electrons13_57)_ 5.21650905187019188e+14 OP +W_concentration_at_point_58______________________________________________ (f_nd_impurity_electrons13_58)_ 5.21540640232947562e+14 OP +W_concentration_at_point_59______________________________________________ (f_nd_impurity_electrons13_59)_ 5.21428457627500938e+14 OP +W_concentration_at_point_60______________________________________________ (f_nd_impurity_electrons13_60)_ 5.21314357370679000e+14 OP +W_concentration_at_point_61______________________________________________ (f_nd_impurity_electrons13_61)_ 5.21198339462481875e+14 OP +W_concentration_at_point_62______________________________________________ (f_nd_impurity_electrons13_62)_ 5.21080403902909688e+14 OP +W_concentration_at_point_63______________________________________________ (f_nd_impurity_electrons13_63)_ 5.20960550691962250e+14 OP +W_concentration_at_point_64______________________________________________ (f_nd_impurity_electrons13_64)_ 5.20838779829639625e+14 OP +W_concentration_at_point_65______________________________________________ (f_nd_impurity_electrons13_65)_ 5.20715091315941938e+14 OP +W_concentration_at_point_66______________________________________________ (f_nd_impurity_electrons13_66)_ 5.20589485150869062e+14 OP +W_concentration_at_point_67______________________________________________ (f_nd_impurity_electrons13_67)_ 5.20461961334421000e+14 OP +W_concentration_at_point_68______________________________________________ (f_nd_impurity_electrons13_68)_ 5.20332519866597812e+14 OP +W_concentration_at_point_69______________________________________________ (f_nd_impurity_electrons13_69)_ 5.20201160747399438e+14 OP +W_concentration_at_point_70______________________________________________ (f_nd_impurity_electrons13_70)_ 5.20067883976825938e+14 OP +W_concentration_at_point_71______________________________________________ (f_nd_impurity_electrons13_71)_ 5.19932689554877250e+14 OP +W_concentration_at_point_72______________________________________________ (f_nd_impurity_electrons13_72)_ 5.19795577481553375e+14 OP +W_concentration_at_point_73______________________________________________ (f_nd_impurity_electrons13_73)_ 5.19656547756854500e+14 OP +W_concentration_at_point_74______________________________________________ (f_nd_impurity_electrons13_74)_ 5.19515600380780312e+14 OP +W_concentration_at_point_75______________________________________________ (f_nd_impurity_electrons13_75)_ 5.19372735353331000e+14 OP +W_concentration_at_point_76______________________________________________ (f_nd_impurity_electrons13_76)_ 5.19227952674506562e+14 OP +W_concentration_at_point_77______________________________________________ (f_nd_impurity_electrons13_77)_ 5.19081252344306938e+14 OP +W_concentration_at_point_78______________________________________________ (f_nd_impurity_electrons13_78)_ 5.18932634362732125e+14 OP +W_concentration_at_point_79______________________________________________ (f_nd_impurity_electrons13_79)_ 5.18782098729782188e+14 OP +W_concentration_at_point_80______________________________________________ (f_nd_impurity_electrons13_80)_ 5.18629645445457062e+14 OP +W_concentration_at_point_81______________________________________________ (f_nd_impurity_electrons13_81)_ 5.18475274509756875e+14 OP +W_concentration_at_point_82______________________________________________ (f_nd_impurity_electrons13_82)_ 5.18318985922681438e+14 OP +W_concentration_at_point_83______________________________________________ (f_nd_impurity_electrons13_83)_ 5.18160779684230812e+14 OP +W_concentration_at_point_84______________________________________________ (f_nd_impurity_electrons13_84)_ 5.18000655794405062e+14 OP +W_concentration_at_point_85______________________________________________ (f_nd_impurity_electrons13_85)_ 5.17838614253204250e+14 OP +W_concentration_at_point_86______________________________________________ (f_nd_impurity_electrons13_86)_ 5.17674655060628125e+14 OP +W_concentration_at_point_87______________________________________________ (f_nd_impurity_electrons13_87)_ 5.17508778216676938e+14 OP +W_concentration_at_point_88______________________________________________ (f_nd_impurity_electrons13_88)_ 5.17340983721350625e+14 OP +W_concentration_at_point_89______________________________________________ (f_nd_impurity_electrons13_89)_ 5.17171271574649125e+14 OP +W_concentration_at_point_90______________________________________________ (f_nd_impurity_electrons13_90)_ 5.16999641776572375e+14 OP +W_concentration_at_point_91______________________________________________ (f_nd_impurity_electrons13_91)_ 5.16826094327120562e+14 OP +W_concentration_at_point_92______________________________________________ (f_nd_impurity_electrons13_92)_ 5.16650629226293562e+14 OP +W_concentration_at_point_93______________________________________________ (f_nd_impurity_electrons13_93)_ 5.16473246474091438e+14 OP +W_concentration_at_point_94______________________________________________ (f_nd_impurity_electrons13_94)_ 5.16293946070514125e+14 OP +W_concentration_at_point_95______________________________________________ (f_nd_impurity_electrons13_95)_ 5.16112728015561562e+14 OP +W_concentration_at_point_96______________________________________________ (f_nd_impurity_electrons13_96)_ 5.15929592309233938e+14 OP +W_concentration_at_point_97______________________________________________ (f_nd_impurity_electrons13_97)_ 5.15744538951531188e+14 OP +W_concentration_at_point_98______________________________________________ (f_nd_impurity_electrons13_98)_ 5.15557567942453188e+14 OP +W_concentration_at_point_99______________________________________________ (f_nd_impurity_electrons13_99)_ 5.15368679282000062e+14 OP +W_concentration_at_point_100_____________________________________________ (f_nd_impurity_electrons13_100)_ 5.15177872970171875e+14 OP +W_concentration_at_point_101_____________________________________________ (f_nd_impurity_electrons13_101)_ 5.14985149006968438e+14 OP +W_concentration_at_point_102_____________________________________________ (f_nd_impurity_electrons13_102)_ 5.14790507392389812e+14 OP +W_concentration_at_point_103_____________________________________________ (f_nd_impurity_electrons13_103)_ 5.14593948126436125e+14 OP +W_concentration_at_point_104_____________________________________________ (f_nd_impurity_electrons13_104)_ 5.14395471209107188e+14 OP +W_concentration_at_point_105_____________________________________________ (f_nd_impurity_electrons13_105)_ 5.14195076640403188e+14 OP +W_concentration_at_point_106_____________________________________________ (f_nd_impurity_electrons13_106)_ 5.13992764420323938e+14 OP +W_concentration_at_point_107_____________________________________________ (f_nd_impurity_electrons13_107)_ 5.13788534548869562e+14 OP +W_concentration_at_point_108_____________________________________________ (f_nd_impurity_electrons13_108)_ 5.13582387026040062e+14 OP +W_concentration_at_point_109_____________________________________________ (f_nd_impurity_electrons13_109)_ 5.13374321851835375e+14 OP +W_concentration_at_point_110_____________________________________________ (f_nd_impurity_electrons13_110)_ 5.13164339026255500e+14 OP +W_concentration_at_point_111_____________________________________________ (f_nd_impurity_electrons13_111)_ 5.12952438549300500e+14 OP +W_concentration_at_point_112_____________________________________________ (f_nd_impurity_electrons13_112)_ 5.12738620420970312e+14 OP +W_concentration_at_point_113_____________________________________________ (f_nd_impurity_electrons13_113)_ 5.12522884641264938e+14 OP +W_concentration_at_point_114_____________________________________________ (f_nd_impurity_electrons13_114)_ 5.12305231210184500e+14 OP +W_concentration_at_point_115_____________________________________________ (f_nd_impurity_electrons13_115)_ 5.12085660127728812e+14 OP +W_concentration_at_point_116_____________________________________________ (f_nd_impurity_electrons13_116)_ 5.11864171393898062e+14 OP +W_concentration_at_point_117_____________________________________________ (f_nd_impurity_electrons13_117)_ 5.11640765008692062e+14 OP +W_concentration_at_point_118_____________________________________________ (f_nd_impurity_electrons13_118)_ 5.11415440972110938e+14 OP +W_concentration_at_point_119_____________________________________________ (f_nd_impurity_electrons13_119)_ 5.11188199284154750e+14 OP +W_concentration_at_point_120_____________________________________________ (f_nd_impurity_electrons13_120)_ 5.10959039944823312e+14 OP +W_concentration_at_point_121_____________________________________________ (f_nd_impurity_electrons13_121)_ 5.10727962954116688e+14 OP +W_concentration_at_point_122_____________________________________________ (f_nd_impurity_electrons13_122)_ 5.10494968312034938e+14 OP +W_concentration_at_point_123_____________________________________________ (f_nd_impurity_electrons13_123)_ 5.10260056018578000e+14 OP +W_concentration_at_point_124_____________________________________________ (f_nd_impurity_electrons13_124)_ 5.10023226073745938e+14 OP +W_concentration_at_point_125_____________________________________________ (f_nd_impurity_electrons13_125)_ 5.09784478477538688e+14 OP +W_concentration_at_point_126_____________________________________________ (f_nd_impurity_electrons13_126)_ 5.09543813229956312e+14 OP +W_concentration_at_point_127_____________________________________________ (f_nd_impurity_electrons13_127)_ 5.09301230330998812e+14 OP +W_concentration_at_point_128_____________________________________________ (f_nd_impurity_electrons13_128)_ 5.09056729780666062e+14 OP +W_concentration_at_point_129_____________________________________________ (f_nd_impurity_electrons13_129)_ 5.08810311578958188e+14 OP +W_concentration_at_point_130_____________________________________________ (f_nd_impurity_electrons13_130)_ 5.08561975725875250e+14 OP +W_concentration_at_point_131_____________________________________________ (f_nd_impurity_electrons13_131)_ 5.08311722221417000e+14 OP +W_concentration_at_point_132_____________________________________________ (f_nd_impurity_electrons13_132)_ 5.08059551065583688e+14 OP +W_concentration_at_point_133_____________________________________________ (f_nd_impurity_electrons13_133)_ 5.07805462258375125e+14 OP +W_concentration_at_point_134_____________________________________________ (f_nd_impurity_electrons13_134)_ 5.07549455799791500e+14 OP +W_concentration_at_point_135_____________________________________________ (f_nd_impurity_electrons13_135)_ 5.07291531689832625e+14 OP +W_concentration_at_point_136_____________________________________________ (f_nd_impurity_electrons13_136)_ 5.07031689928498750e+14 OP +W_concentration_at_point_137_____________________________________________ (f_nd_impurity_electrons13_137)_ 5.06769930515789625e+14 OP +W_concentration_at_point_138_____________________________________________ (f_nd_impurity_electrons13_138)_ 5.06506253451705250e+14 OP +W_concentration_at_point_139_____________________________________________ (f_nd_impurity_electrons13_139)_ 5.06240658736245812e+14 OP +W_concentration_at_point_140_____________________________________________ (f_nd_impurity_electrons13_140)_ 5.05973146369411250e+14 OP +W_concentration_at_point_141_____________________________________________ (f_nd_impurity_electrons13_141)_ 5.05703716351201500e+14 OP +W_concentration_at_point_142_____________________________________________ (f_nd_impurity_electrons13_142)_ 5.05432368681616562e+14 OP +W_concentration_at_point_143_____________________________________________ (f_nd_impurity_electrons13_143)_ 5.05159103360656562e+14 OP +W_concentration_at_point_144_____________________________________________ (f_nd_impurity_electrons13_144)_ 5.04883920388321312e+14 OP +W_concentration_at_point_145_____________________________________________ (f_nd_impurity_electrons13_145)_ 5.04606819764610875e+14 OP +W_concentration_at_point_146_____________________________________________ (f_nd_impurity_electrons13_146)_ 5.04327801489525375e+14 OP +W_concentration_at_point_147_____________________________________________ (f_nd_impurity_electrons13_147)_ 5.04046865563064625e+14 OP +W_concentration_at_point_148_____________________________________________ (f_nd_impurity_electrons13_148)_ 5.03764011985228688e+14 OP +W_concentration_at_point_149_____________________________________________ (f_nd_impurity_electrons13_149)_ 5.03479240756017688e+14 OP +W_concentration_at_point_150_____________________________________________ (f_nd_impurity_electrons13_150)_ 5.03192551875431500e+14 OP +W_concentration_at_point_151_____________________________________________ (f_nd_impurity_electrons13_151)_ 5.02903945343470188e+14 OP +W_concentration_at_point_152_____________________________________________ (f_nd_impurity_electrons13_152)_ 5.02613421160133625e+14 OP +W_concentration_at_point_153_____________________________________________ (f_nd_impurity_electrons13_153)_ 5.02320979325422000e+14 OP +W_concentration_at_point_154_____________________________________________ (f_nd_impurity_electrons13_154)_ 5.02026619839335188e+14 OP +W_concentration_at_point_155_____________________________________________ (f_nd_impurity_electrons13_155)_ 5.01730342701873125e+14 OP +W_concentration_at_point_156_____________________________________________ (f_nd_impurity_electrons13_156)_ 5.01432147913036000e+14 OP +W_concentration_at_point_157_____________________________________________ (f_nd_impurity_electrons13_157)_ 5.01132035472823688e+14 OP +W_concentration_at_point_158_____________________________________________ (f_nd_impurity_electrons13_158)_ 5.00830005381236188e+14 OP +W_concentration_at_point_159_____________________________________________ (f_nd_impurity_electrons13_159)_ 5.00526057638273625e+14 OP +W_concentration_at_point_160_____________________________________________ (f_nd_impurity_electrons13_160)_ 5.00220192243935875e+14 OP +W_concentration_at_point_161_____________________________________________ (f_nd_impurity_electrons13_161)_ 4.99912409198222938e+14 OP +W_concentration_at_point_162_____________________________________________ (f_nd_impurity_electrons13_162)_ 4.99602708501134938e+14 OP +W_concentration_at_point_163_____________________________________________ (f_nd_impurity_electrons13_163)_ 4.99291090152671625e+14 OP +W_concentration_at_point_164_____________________________________________ (f_nd_impurity_electrons13_164)_ 4.98977554152833250e+14 OP +W_concentration_at_point_165_____________________________________________ (f_nd_impurity_electrons13_165)_ 4.98662100501619625e+14 OP +W_concentration_at_point_166_____________________________________________ (f_nd_impurity_electrons13_166)_ 4.98344729199030875e+14 OP +W_concentration_at_point_167_____________________________________________ (f_nd_impurity_electrons13_167)_ 4.98025440245067000e+14 OP +W_concentration_at_point_168_____________________________________________ (f_nd_impurity_electrons13_168)_ 4.97704233639727938e+14 OP +W_concentration_at_point_169_____________________________________________ (f_nd_impurity_electrons13_169)_ 4.97381109383013812e+14 OP +W_concentration_at_point_170_____________________________________________ (f_nd_impurity_electrons13_170)_ 4.97056067474924375e+14 OP +W_concentration_at_point_171_____________________________________________ (f_nd_impurity_electrons13_171)_ 4.96729107915459938e+14 OP +W_concentration_at_point_172_____________________________________________ (f_nd_impurity_electrons13_172)_ 4.96400230704620188e+14 OP +W_concentration_at_point_173_____________________________________________ (f_nd_impurity_electrons13_173)_ 4.96069435842405375e+14 OP +W_concentration_at_point_174_____________________________________________ (f_nd_impurity_electrons13_174)_ 4.95736723328815375e+14 OP +W_concentration_at_point_175_____________________________________________ (f_nd_impurity_electrons13_175)_ 4.95402093163850250e+14 OP +W_concentration_at_point_176_____________________________________________ (f_nd_impurity_electrons13_176)_ 4.95065545347509875e+14 OP +W_concentration_at_point_177_____________________________________________ (f_nd_impurity_electrons13_177)_ 4.94727079879794500e+14 OP +W_concentration_at_point_178_____________________________________________ (f_nd_impurity_electrons13_178)_ 4.94386696760703812e+14 OP +W_concentration_at_point_179_____________________________________________ (f_nd_impurity_electrons13_179)_ 4.94044395990238062e+14 OP +W_concentration_at_point_180_____________________________________________ (f_nd_impurity_electrons13_180)_ 4.93700177568397125e+14 OP +W_concentration_at_point_181_____________________________________________ (f_nd_impurity_electrons13_181)_ 4.93354041495181000e+14 OP +W_concentration_at_point_182_____________________________________________ (f_nd_impurity_electrons13_182)_ 4.93005987770589688e+14 OP +W_concentration_at_point_183_____________________________________________ (f_nd_impurity_electrons13_183)_ 4.92656016394623375e+14 OP +W_concentration_at_point_184_____________________________________________ (f_nd_impurity_electrons13_184)_ 4.92304127367281750e+14 OP +W_concentration_at_point_185_____________________________________________ (f_nd_impurity_electrons13_185)_ 4.91950320688565000e+14 OP +W_concentration_at_point_186_____________________________________________ (f_nd_impurity_electrons13_186)_ 4.91594596358473125e+14 OP +W_concentration_at_point_187_____________________________________________ (f_nd_impurity_electrons13_187)_ 4.91236954377006062e+14 OP +W_concentration_at_point_188_____________________________________________ (f_nd_impurity_electrons13_188)_ 4.90877394744163812e+14 OP +W_concentration_at_point_189_____________________________________________ (f_nd_impurity_electrons13_189)_ 4.90515917459946500e+14 OP +W_concentration_at_point_190_____________________________________________ (f_nd_impurity_electrons13_190)_ 4.90152522524353938e+14 OP +W_concentration_at_point_191_____________________________________________ (f_nd_impurity_electrons13_191)_ 4.89787209937386250e+14 OP +W_concentration_at_point_192_____________________________________________ (f_nd_impurity_electrons13_192)_ 4.89419979699043438e+14 OP +W_concentration_at_point_193_____________________________________________ (f_nd_impurity_electrons13_193)_ 4.89050831809325438e+14 OP +W_concentration_at_point_194_____________________________________________ (f_nd_impurity_electrons13_194)_ 4.88679766268232188e+14 OP +W_concentration_at_point_195_____________________________________________ (f_nd_impurity_electrons13_195)_ 4.88306783075763938e+14 OP +W_concentration_at_point_196_____________________________________________ (f_nd_impurity_electrons13_196)_ 4.87931882231920438e+14 OP +W_concentration_at_point_197_____________________________________________ (f_nd_impurity_electrons13_197)_ 4.87555063736701812e+14 OP +W_concentration_at_point_198_____________________________________________ (f_nd_impurity_electrons13_198)_ 4.87176327590108000e+14 OP +W_concentration_at_point_199_____________________________________________ (f_nd_impurity_electrons13_199)_ 4.86795673792139062e+14 OP +W_concentration_at_point_200_____________________________________________ (f_nd_impurity_electrons13_200)_ 4.86413102342795000e+14 OP +W_concentration_at_point_201_____________________________________________ (f_nd_impurity_electrons13_201)_ 4.86028613242075688e+14 OP +W_concentration_at_point_202_____________________________________________ (f_nd_impurity_electrons13_202)_ 4.85642206489981312e+14 OP +W_concentration_at_point_203_____________________________________________ (f_nd_impurity_electrons13_203)_ 4.85253882086511625e+14 OP +W_concentration_at_point_204_____________________________________________ (f_nd_impurity_electrons13_204)_ 4.84863640031666875e+14 OP +W_concentration_at_point_205_____________________________________________ (f_nd_impurity_electrons13_205)_ 4.84471480325447000e+14 OP +W_concentration_at_point_206_____________________________________________ (f_nd_impurity_electrons13_206)_ 4.84077402967851938e+14 OP +W_concentration_at_point_207_____________________________________________ (f_nd_impurity_electrons13_207)_ 4.83681407958881750e+14 OP +W_concentration_at_point_208_____________________________________________ (f_nd_impurity_electrons13_208)_ 4.83283495298536375e+14 OP +W_concentration_at_point_209_____________________________________________ (f_nd_impurity_electrons13_209)_ 4.82883664986815812e+14 OP +W_concentration_at_point_210_____________________________________________ (f_nd_impurity_electrons13_210)_ 4.82481917023720125e+14 OP +W_concentration_at_point_211_____________________________________________ (f_nd_impurity_electrons13_211)_ 4.82078251409249250e+14 OP +W_concentration_at_point_212_____________________________________________ (f_nd_impurity_electrons13_212)_ 4.81672668143403188e+14 OP +W_concentration_at_point_213_____________________________________________ (f_nd_impurity_electrons13_213)_ 4.81265167226182062e+14 OP +W_concentration_at_point_214_____________________________________________ (f_nd_impurity_electrons13_214)_ 4.80855748657585750e+14 OP +W_concentration_at_point_215_____________________________________________ (f_nd_impurity_electrons13_215)_ 4.80444412437614250e+14 OP +W_concentration_at_point_216_____________________________________________ (f_nd_impurity_electrons13_216)_ 4.80031158566267562e+14 OP +W_concentration_at_point_217_____________________________________________ (f_nd_impurity_electrons13_217)_ 4.79615987043545812e+14 OP +W_concentration_at_point_218_____________________________________________ (f_nd_impurity_electrons13_218)_ 4.79198897869448875e+14 OP +W_concentration_at_point_219_____________________________________________ (f_nd_impurity_electrons13_219)_ 4.78779891043976688e+14 OP +W_concentration_at_point_220_____________________________________________ (f_nd_impurity_electrons13_220)_ 4.78358966567129438e+14 OP +W_concentration_at_point_221_____________________________________________ (f_nd_impurity_electrons13_221)_ 4.77936124438907000e+14 OP +W_concentration_at_point_222_____________________________________________ (f_nd_impurity_electrons13_222)_ 4.77511364659309375e+14 OP +W_concentration_at_point_223_____________________________________________ (f_nd_impurity_electrons13_223)_ 4.77084687228336562e+14 OP +W_concentration_at_point_224_____________________________________________ (f_nd_impurity_electrons13_224)_ 4.76656092145988688e+14 OP +W_concentration_at_point_225_____________________________________________ (f_nd_impurity_electrons13_225)_ 4.76225579412265562e+14 OP +W_concentration_at_point_226_____________________________________________ (f_nd_impurity_electrons13_226)_ 4.75793149027167375e+14 OP +W_concentration_at_point_227_____________________________________________ (f_nd_impurity_electrons13_227)_ 4.75358800990694000e+14 OP +W_concentration_at_point_228_____________________________________________ (f_nd_impurity_electrons13_228)_ 4.74922535302845438e+14 OP +W_concentration_at_point_229_____________________________________________ (f_nd_impurity_electrons13_229)_ 4.74484351963621750e+14 OP +W_concentration_at_point_230_____________________________________________ (f_nd_impurity_electrons13_230)_ 4.74044250973022812e+14 OP +W_concentration_at_point_231_____________________________________________ (f_nd_impurity_electrons13_231)_ 4.73602232331048812e+14 OP +W_concentration_at_point_232_____________________________________________ (f_nd_impurity_electrons13_232)_ 4.73158296037699625e+14 OP +W_concentration_at_point_233_____________________________________________ (f_nd_impurity_electrons13_233)_ 4.72712442092975250e+14 OP +W_concentration_at_point_234_____________________________________________ (f_nd_impurity_electrons13_234)_ 4.72264670496875875e+14 OP +W_concentration_at_point_235_____________________________________________ (f_nd_impurity_electrons13_235)_ 4.71814981249401188e+14 OP +W_concentration_at_point_236_____________________________________________ (f_nd_impurity_electrons13_236)_ 4.71363374350551312e+14 OP +W_concentration_at_point_237_____________________________________________ (f_nd_impurity_electrons13_237)_ 4.70909849800326375e+14 OP +W_concentration_at_point_238_____________________________________________ (f_nd_impurity_electrons13_238)_ 4.70454407598726250e+14 OP +W_concentration_at_point_239_____________________________________________ (f_nd_impurity_electrons13_239)_ 4.69997047745750938e+14 OP +W_concentration_at_point_240_____________________________________________ (f_nd_impurity_electrons13_240)_ 4.69537770241400562e+14 OP +W_concentration_at_point_241_____________________________________________ (f_nd_impurity_electrons13_241)_ 4.69076575085674875e+14 OP +W_concentration_at_point_242_____________________________________________ (f_nd_impurity_electrons13_242)_ 4.68613462278574125e+14 OP +W_concentration_at_point_243_____________________________________________ (f_nd_impurity_electrons13_243)_ 4.68148431820098125e+14 OP +W_concentration_at_point_244_____________________________________________ (f_nd_impurity_electrons13_244)_ 4.67681483710247125e+14 OP +W_concentration_at_point_245_____________________________________________ (f_nd_impurity_electrons13_245)_ 4.67212617949020875e+14 OP +W_concentration_at_point_246_____________________________________________ (f_nd_impurity_electrons13_246)_ 4.66741834536419438e+14 OP +W_concentration_at_point_247_____________________________________________ (f_nd_impurity_electrons13_247)_ 4.66269133472442875e+14 OP +W_concentration_at_point_248_____________________________________________ (f_nd_impurity_electrons13_248)_ 4.65794514757091188e+14 OP +W_concentration_at_point_249_____________________________________________ (f_nd_impurity_electrons13_249)_ 4.65317978390364250e+14 OP +W_concentration_at_point_250_____________________________________________ (f_nd_impurity_electrons13_250)_ 4.64839524372262312e+14 OP +W_concentration_at_point_251_____________________________________________ (f_nd_impurity_electrons13_251)_ 4.64359152702785000e+14 OP +W_concentration_at_point_252_____________________________________________ (f_nd_impurity_electrons13_252)_ 4.63876863381932750e+14 OP +W_concentration_at_point_253_____________________________________________ (f_nd_impurity_electrons13_253)_ 4.63392656409705250e+14 OP +W_concentration_at_point_254_____________________________________________ (f_nd_impurity_electrons13_254)_ 4.62906531786102562e+14 OP +W_concentration_at_point_255_____________________________________________ (f_nd_impurity_electrons13_255)_ 4.62418489511124688e+14 OP +W_concentration_at_point_256_____________________________________________ (f_nd_impurity_electrons13_256)_ 4.61928529584771750e+14 OP +W_concentration_at_point_257_____________________________________________ (f_nd_impurity_electrons13_257)_ 4.61436652007043625e+14 OP +W_concentration_at_point_258_____________________________________________ (f_nd_impurity_electrons13_258)_ 4.60942856777940312e+14 OP +W_concentration_at_point_259_____________________________________________ (f_nd_impurity_electrons13_259)_ 4.60447143897461750e+14 OP +W_concentration_at_point_260_____________________________________________ (f_nd_impurity_electrons13_260)_ 4.59949513365608250e+14 OP +W_concentration_at_point_261_____________________________________________ (f_nd_impurity_electrons13_261)_ 4.59449965182379438e+14 OP +W_concentration_at_point_262_____________________________________________ (f_nd_impurity_electrons13_262)_ 4.58948499347775438e+14 OP +W_concentration_at_point_263_____________________________________________ (f_nd_impurity_electrons13_263)_ 4.58445115861796312e+14 OP +W_concentration_at_point_264_____________________________________________ (f_nd_impurity_electrons13_264)_ 4.57939814724442062e+14 OP +W_concentration_at_point_265_____________________________________________ (f_nd_impurity_electrons13_265)_ 4.57432595935712688e+14 OP +W_concentration_at_point_266_____________________________________________ (f_nd_impurity_electrons13_266)_ 4.56923459495608125e+14 OP +W_concentration_at_point_267_____________________________________________ (f_nd_impurity_electrons13_267)_ 4.56412405404128438e+14 OP +W_concentration_at_point_268_____________________________________________ (f_nd_impurity_electrons13_268)_ 4.55899433661273500e+14 OP +W_concentration_at_point_269_____________________________________________ (f_nd_impurity_electrons13_269)_ 4.55384544267043438e+14 OP +W_concentration_at_point_270_____________________________________________ (f_nd_impurity_electrons13_270)_ 4.54867737221438312e+14 OP +W_concentration_at_point_271_____________________________________________ (f_nd_impurity_electrons13_271)_ 4.54349012524457875e+14 OP +W_concentration_at_point_272_____________________________________________ (f_nd_impurity_electrons13_272)_ 4.53828370176102375e+14 OP +W_concentration_at_point_273_____________________________________________ (f_nd_impurity_electrons13_273)_ 4.53305810176371625e+14 OP +W_concentration_at_point_274_____________________________________________ (f_nd_impurity_electrons13_274)_ 4.52781332525265812e+14 OP +W_concentration_at_point_275_____________________________________________ (f_nd_impurity_electrons13_275)_ 4.52254937222784812e+14 OP +W_concentration_at_point_276_____________________________________________ (f_nd_impurity_electrons13_276)_ 4.51726624268928625e+14 OP +W_concentration_at_point_277_____________________________________________ (f_nd_impurity_electrons13_277)_ 4.51196393663697312e+14 OP +W_concentration_at_point_278_____________________________________________ (f_nd_impurity_electrons13_278)_ 4.50664245407090875e+14 OP +W_concentration_at_point_279_____________________________________________ (f_nd_impurity_electrons13_279)_ 4.50130179499109312e+14 OP +W_concentration_at_point_280_____________________________________________ (f_nd_impurity_electrons13_280)_ 4.49594195939752438e+14 OP +W_concentration_at_point_281_____________________________________________ (f_nd_impurity_electrons13_281)_ 4.49056294729020500e+14 OP +W_concentration_at_point_282_____________________________________________ (f_nd_impurity_electrons13_282)_ 4.48516475866913438e+14 OP +W_concentration_at_point_283_____________________________________________ (f_nd_impurity_electrons13_283)_ 4.47974739353431188e+14 OP +W_concentration_at_point_284_____________________________________________ (f_nd_impurity_electrons13_284)_ 4.47431085188573812e+14 OP +W_concentration_at_point_285_____________________________________________ (f_nd_impurity_electrons13_285)_ 4.46885513372341188e+14 OP +W_concentration_at_point_286_____________________________________________ (f_nd_impurity_electrons13_286)_ 4.46338023904733438e+14 OP +W_concentration_at_point_287_____________________________________________ (f_nd_impurity_electrons13_287)_ 4.45788616785750562e+14 OP +W_concentration_at_point_288_____________________________________________ (f_nd_impurity_electrons13_288)_ 4.45237292015392500e+14 OP +W_concentration_at_point_289_____________________________________________ (f_nd_impurity_electrons13_289)_ 4.44684049593659250e+14 OP +W_concentration_at_point_290_____________________________________________ (f_nd_impurity_electrons13_290)_ 4.44128889520550938e+14 OP +W_concentration_at_point_291_____________________________________________ (f_nd_impurity_electrons13_291)_ 4.43571811796067312e+14 OP +W_concentration_at_point_292_____________________________________________ (f_nd_impurity_electrons13_292)_ 4.43012816420208688e+14 OP +W_concentration_at_point_293_____________________________________________ (f_nd_impurity_electrons13_293)_ 4.42451903392974812e+14 OP +W_concentration_at_point_294_____________________________________________ (f_nd_impurity_electrons13_294)_ 4.41889072714365812e+14 OP +W_concentration_at_point_295_____________________________________________ (f_nd_impurity_electrons13_295)_ 4.41324324384381625e+14 OP +W_concentration_at_point_296_____________________________________________ (f_nd_impurity_electrons13_296)_ 4.40757658403022312e+14 OP +W_concentration_at_point_297_____________________________________________ (f_nd_impurity_electrons13_297)_ 4.40189074770287875e+14 OP +W_concentration_at_point_298_____________________________________________ (f_nd_impurity_electrons13_298)_ 4.39618573486178188e+14 OP +W_concentration_at_point_299_____________________________________________ (f_nd_impurity_electrons13_299)_ 4.39046154550693438e+14 OP +W_concentration_at_point_300_____________________________________________ (f_nd_impurity_electrons13_300)_ 4.38471817963833375e+14 OP +W_concentration_at_point_301_____________________________________________ (f_nd_impurity_electrons13_301)_ 4.37895563725598250e+14 OP +W_concentration_at_point_302_____________________________________________ (f_nd_impurity_electrons13_302)_ 4.37317391835988000e+14 OP +W_concentration_at_point_303_____________________________________________ (f_nd_impurity_electrons13_303)_ 4.36737302295002625e+14 OP +W_concentration_at_point_304_____________________________________________ (f_nd_impurity_electrons13_304)_ 4.36155295102641938e+14 OP +W_concentration_at_point_305_____________________________________________ (f_nd_impurity_electrons13_305)_ 4.35571370258906188e+14 OP +W_concentration_at_point_306_____________________________________________ (f_nd_impurity_electrons13_306)_ 4.34985527763795375e+14 OP +W_concentration_at_point_307_____________________________________________ (f_nd_impurity_electrons13_307)_ 4.34397767617309250e+14 OP +W_concentration_at_point_308_____________________________________________ (f_nd_impurity_electrons13_308)_ 4.33808089819448000e+14 OP +W_concentration_at_point_309_____________________________________________ (f_nd_impurity_electrons13_309)_ 4.33216494370211625e+14 OP +W_concentration_at_point_310_____________________________________________ (f_nd_impurity_electrons13_310)_ 4.32622981269600062e+14 OP +W_concentration_at_point_311_____________________________________________ (f_nd_impurity_electrons13_311)_ 4.32027550517613375e+14 OP +W_concentration_at_point_312_____________________________________________ (f_nd_impurity_electrons13_312)_ 4.31430202114251500e+14 OP +W_concentration_at_point_313_____________________________________________ (f_nd_impurity_electrons13_313)_ 4.30830936059514562e+14 OP +W_concentration_at_point_314_____________________________________________ (f_nd_impurity_electrons13_314)_ 4.30229752353402312e+14 OP +W_concentration_at_point_315_____________________________________________ (f_nd_impurity_electrons13_315)_ 4.29626650995915062e+14 OP +W_concentration_at_point_316_____________________________________________ (f_nd_impurity_electrons13_316)_ 4.29021631987052500e+14 OP +W_concentration_at_point_317_____________________________________________ (f_nd_impurity_electrons13_317)_ 4.28414695326814875e+14 OP +W_concentration_at_point_318_____________________________________________ (f_nd_impurity_electrons13_318)_ 4.27805841015202000e+14 OP +W_concentration_at_point_319_____________________________________________ (f_nd_impurity_electrons13_319)_ 4.27195069052214000e+14 OP +W_concentration_at_point_320_____________________________________________ (f_nd_impurity_electrons13_320)_ 4.26582379437850875e+14 OP +W_concentration_at_point_321_____________________________________________ (f_nd_impurity_electrons13_321)_ 4.25967772172112625e+14 OP +W_concentration_at_point_322_____________________________________________ (f_nd_impurity_electrons13_322)_ 4.25351247254999250e+14 OP +W_concentration_at_point_323_____________________________________________ (f_nd_impurity_electrons13_323)_ 4.24732804686510625e+14 OP +W_concentration_at_point_324_____________________________________________ (f_nd_impurity_electrons13_324)_ 4.24112444466646812e+14 OP +W_concentration_at_point_325_____________________________________________ (f_nd_impurity_electrons13_325)_ 4.23490166595407938e+14 OP +W_concentration_at_point_326_____________________________________________ (f_nd_impurity_electrons13_326)_ 4.22865971072793812e+14 OP +W_concentration_at_point_327_____________________________________________ (f_nd_impurity_electrons13_327)_ 4.22239857898804625e+14 OP +W_concentration_at_point_328_____________________________________________ (f_nd_impurity_electrons13_328)_ 4.21611827073440188e+14 OP +W_concentration_at_point_329_____________________________________________ (f_nd_impurity_electrons13_329)_ 4.20981878596700625e+14 OP +W_concentration_at_point_330_____________________________________________ (f_nd_impurity_electrons13_330)_ 4.20350012468585875e+14 OP +W_concentration_at_point_331_____________________________________________ (f_nd_impurity_electrons13_331)_ 4.19716228689096062e+14 OP +W_concentration_at_point_332_____________________________________________ (f_nd_impurity_electrons13_332)_ 4.19080527258231000e+14 OP +W_concentration_at_point_333_____________________________________________ (f_nd_impurity_electrons13_333)_ 4.18442908175990812e+14 OP +W_concentration_at_point_334_____________________________________________ (f_nd_impurity_electrons13_334)_ 4.17803371442375500e+14 OP +W_concentration_at_point_335_____________________________________________ (f_nd_impurity_electrons13_335)_ 4.17161917057385000e+14 OP +W_concentration_at_point_336_____________________________________________ (f_nd_impurity_electrons13_336)_ 4.16518545021019375e+14 OP +W_concentration_at_point_337_____________________________________________ (f_nd_impurity_electrons13_337)_ 4.15873255333278562e+14 OP +W_concentration_at_point_338_____________________________________________ (f_nd_impurity_electrons13_338)_ 4.15226047994162500e+14 OP +W_concentration_at_point_339_____________________________________________ (f_nd_impurity_electrons13_339)_ 4.14576923003671375e+14 OP +W_concentration_at_point_340_____________________________________________ (f_nd_impurity_electrons13_340)_ 4.13925880361805125e+14 OP +W_concentration_at_point_341_____________________________________________ (f_nd_impurity_electrons13_341)_ 4.13272920068563625e+14 OP +W_concentration_at_point_342_____________________________________________ (f_nd_impurity_electrons13_342)_ 4.12618042123947000e+14 OP +W_concentration_at_point_343_____________________________________________ (f_nd_impurity_electrons13_343)_ 4.11961246527955250e+14 OP +W_concentration_at_point_344_____________________________________________ (f_nd_impurity_electrons13_344)_ 4.11302533280588312e+14 OP +W_concentration_at_point_345_____________________________________________ (f_nd_impurity_electrons13_345)_ 4.10641902381846250e+14 OP +W_concentration_at_point_346_____________________________________________ (f_nd_impurity_electrons13_346)_ 4.09979353831729000e+14 OP +W_concentration_at_point_347_____________________________________________ (f_nd_impurity_electrons13_347)_ 4.09314887630236562e+14 OP +W_concentration_at_point_348_____________________________________________ (f_nd_impurity_electrons13_348)_ 4.08648503777369000e+14 OP +W_concentration_at_point_349_____________________________________________ (f_nd_impurity_electrons13_349)_ 4.07980202273126250e+14 OP +W_concentration_at_point_350_____________________________________________ (f_nd_impurity_electrons13_350)_ 4.07309983117508500e+14 OP +W_concentration_at_point_351_____________________________________________ (f_nd_impurity_electrons13_351)_ 4.06637846310515375e+14 OP +W_concentration_at_point_352_____________________________________________ (f_nd_impurity_electrons13_352)_ 4.05963791852147188e+14 OP +W_concentration_at_point_353_____________________________________________ (f_nd_impurity_electrons13_353)_ 4.05287819742403812e+14 OP +W_concentration_at_point_354_____________________________________________ (f_nd_impurity_electrons13_354)_ 4.04609929981285312e+14 OP +W_concentration_at_point_355_____________________________________________ (f_nd_impurity_electrons13_355)_ 4.03930122568791625e+14 OP +W_concentration_at_point_356_____________________________________________ (f_nd_impurity_electrons13_356)_ 4.03248397504922750e+14 OP +W_concentration_at_point_357_____________________________________________ (f_nd_impurity_electrons13_357)_ 4.02564754789678812e+14 OP +W_concentration_at_point_358_____________________________________________ (f_nd_impurity_electrons13_358)_ 4.01879194423059688e+14 OP +W_concentration_at_point_359_____________________________________________ (f_nd_impurity_electrons13_359)_ 4.01191716405065375e+14 OP +W_concentration_at_point_360_____________________________________________ (f_nd_impurity_electrons13_360)_ 4.00502320735695875e+14 OP +W_concentration_at_point_361_____________________________________________ (f_nd_impurity_electrons13_361)_ 3.99811007414951250e+14 OP +W_concentration_at_point_362_____________________________________________ (f_nd_impurity_electrons13_362)_ 3.99117776442831438e+14 OP +W_concentration_at_point_363_____________________________________________ (f_nd_impurity_electrons13_363)_ 3.98422627819336562e+14 OP +W_concentration_at_point_364_____________________________________________ (f_nd_impurity_electrons13_364)_ 3.97725561544466438e+14 OP +W_concentration_at_point_365_____________________________________________ (f_nd_impurity_electrons13_365)_ 3.97026577618221188e+14 OP +W_concentration_at_point_366_____________________________________________ (f_nd_impurity_electrons13_366)_ 3.96325676040600750e+14 OP +W_concentration_at_point_367_____________________________________________ (f_nd_impurity_electrons13_367)_ 3.95622856811605125e+14 OP +W_concentration_at_point_368_____________________________________________ (f_nd_impurity_electrons13_368)_ 3.94918119931234438e+14 OP +W_concentration_at_point_369_____________________________________________ (f_nd_impurity_electrons13_369)_ 3.94211465399488562e+14 OP +W_concentration_at_point_370_____________________________________________ (f_nd_impurity_electrons13_370)_ 3.93502893216367438e+14 OP +W_concentration_at_point_371_____________________________________________ (f_nd_impurity_electrons13_371)_ 3.92792403381871250e+14 OP +W_concentration_at_point_372_____________________________________________ (f_nd_impurity_electrons13_372)_ 3.92079995895999875e+14 OP +W_concentration_at_point_373_____________________________________________ (f_nd_impurity_electrons13_373)_ 3.91365670758753375e+14 OP +W_concentration_at_point_374_____________________________________________ (f_nd_impurity_electrons13_374)_ 3.90649427970131688e+14 OP +W_concentration_at_point_375_____________________________________________ (f_nd_impurity_electrons13_375)_ 3.89931267530134875e+14 OP +W_concentration_at_point_376_____________________________________________ (f_nd_impurity_electrons13_376)_ 3.89211189438762875e+14 OP +W_concentration_at_point_377_____________________________________________ (f_nd_impurity_electrons13_377)_ 3.88489193696015688e+14 OP +W_concentration_at_point_378_____________________________________________ (f_nd_impurity_electrons13_378)_ 3.87765280301893312e+14 OP +W_concentration_at_point_379_____________________________________________ (f_nd_impurity_electrons13_379)_ 3.87039449256395938e+14 OP +W_concentration_at_point_380_____________________________________________ (f_nd_impurity_electrons13_380)_ 3.86311700559523188e+14 OP +W_concentration_at_point_381_____________________________________________ (f_nd_impurity_electrons13_381)_ 3.85582034211275438e+14 OP +W_concentration_at_point_382_____________________________________________ (f_nd_impurity_electrons13_382)_ 3.84850450211652500e+14 OP +W_concentration_at_point_383_____________________________________________ (f_nd_impurity_electrons13_383)_ 3.84116948560654375e+14 OP +W_concentration_at_point_384_____________________________________________ (f_nd_impurity_electrons13_384)_ 3.83381529258281062e+14 OP +W_concentration_at_point_385_____________________________________________ (f_nd_impurity_electrons13_385)_ 3.82644192304532688e+14 OP +W_concentration_at_point_386_____________________________________________ (f_nd_impurity_electrons13_386)_ 3.81904937699409125e+14 OP +W_concentration_at_point_387_____________________________________________ (f_nd_impurity_electrons13_387)_ 3.81163765442910312e+14 OP +W_concentration_at_point_388_____________________________________________ (f_nd_impurity_electrons13_388)_ 3.80420675535036438e+14 OP +W_concentration_at_point_389_____________________________________________ (f_nd_impurity_electrons13_389)_ 3.79675667975787438e+14 OP +W_concentration_at_point_390_____________________________________________ (f_nd_impurity_electrons13_390)_ 3.78928742765163188e+14 OP +W_concentration_at_point_391_____________________________________________ (f_nd_impurity_electrons13_391)_ 3.78179899903163812e+14 OP +W_concentration_at_point_392_____________________________________________ (f_nd_impurity_electrons13_392)_ 3.77429139389789250e+14 OP +W_concentration_at_point_393_____________________________________________ (f_nd_impurity_electrons13_393)_ 3.76676461225039562e+14 OP +W_concentration_at_point_394_____________________________________________ (f_nd_impurity_electrons13_394)_ 3.75921865408914688e+14 OP +W_concentration_at_point_395_____________________________________________ (f_nd_impurity_electrons13_395)_ 3.75165351941414688e+14 OP +W_concentration_at_point_396_____________________________________________ (f_nd_impurity_electrons13_396)_ 3.74406920822539500e+14 OP +W_concentration_at_point_397_____________________________________________ (f_nd_impurity_electrons13_397)_ 3.73646572052289188e+14 OP +W_concentration_at_point_398_____________________________________________ (f_nd_impurity_electrons13_398)_ 3.72884305630663688e+14 OP +W_concentration_at_point_399_____________________________________________ (f_nd_impurity_electrons13_399)_ 3.72120121557663062e+14 OP +W_concentration_at_point_400_____________________________________________ (f_nd_impurity_electrons13_400)_ 3.71354019833287188e+14 OP +W_concentration_at_point_401_____________________________________________ (f_nd_impurity_electrons13_401)_ 3.70586000457536250e+14 OP +W_concentration_at_point_402_____________________________________________ (f_nd_impurity_electrons13_402)_ 3.69816063430410125e+14 OP +W_concentration_at_point_403_____________________________________________ (f_nd_impurity_electrons13_403)_ 3.69044208751908875e+14 OP +W_concentration_at_point_404_____________________________________________ (f_nd_impurity_electrons13_404)_ 3.68270436422032438e+14 OP +W_concentration_at_point_405_____________________________________________ (f_nd_impurity_electrons13_405)_ 3.67494746440780812e+14 OP +W_concentration_at_point_406_____________________________________________ (f_nd_impurity_electrons13_406)_ 3.66717138808154062e+14 OP +W_concentration_at_point_407_____________________________________________ (f_nd_impurity_electrons13_407)_ 3.65937613524152188e+14 OP +W_concentration_at_point_408_____________________________________________ (f_nd_impurity_electrons13_408)_ 3.65156170588775062e+14 OP +W_concentration_at_point_409_____________________________________________ (f_nd_impurity_electrons13_409)_ 3.64372810002022938e+14 OP +W_concentration_at_point_410_____________________________________________ (f_nd_impurity_electrons13_410)_ 3.63587531763895500e+14 OP +W_concentration_at_point_411_____________________________________________ (f_nd_impurity_electrons13_411)_ 3.62800335874392938e+14 OP +W_concentration_at_point_412_____________________________________________ (f_nd_impurity_electrons13_412)_ 3.62011222333515250e+14 OP +W_concentration_at_point_413_____________________________________________ (f_nd_impurity_electrons13_413)_ 3.61220191141262375e+14 OP +W_concentration_at_point_414_____________________________________________ (f_nd_impurity_electrons13_414)_ 3.60427242297634375e+14 OP +W_concentration_at_point_415_____________________________________________ (f_nd_impurity_electrons13_415)_ 3.59632375802631188e+14 OP +W_concentration_at_point_416_____________________________________________ (f_nd_impurity_electrons13_416)_ 3.58835591656252812e+14 OP +W_concentration_at_point_417_____________________________________________ (f_nd_impurity_electrons13_417)_ 3.58036889858499312e+14 OP +W_concentration_at_point_418_____________________________________________ (f_nd_impurity_electrons13_418)_ 3.57236270409370625e+14 OP +W_concentration_at_point_419_____________________________________________ (f_nd_impurity_electrons13_419)_ 3.56433733308866812e+14 OP +W_concentration_at_point_420_____________________________________________ (f_nd_impurity_electrons13_420)_ 3.55629278556987812e+14 OP +W_concentration_at_point_421_____________________________________________ (f_nd_impurity_electrons13_421)_ 3.54822906153733750e+14 OP +W_concentration_at_point_422_____________________________________________ (f_nd_impurity_electrons13_422)_ 3.54014616099104438e+14 OP +W_concentration_at_point_423_____________________________________________ (f_nd_impurity_electrons13_423)_ 3.53204408393100000e+14 OP +W_concentration_at_point_424_____________________________________________ (f_nd_impurity_electrons13_424)_ 3.52392283035720375e+14 OP +W_concentration_at_point_425_____________________________________________ (f_nd_impurity_electrons13_425)_ 3.51578240026965625e+14 OP +W_concentration_at_point_426_____________________________________________ (f_nd_impurity_electrons13_426)_ 3.50762279366835750e+14 OP +W_concentration_at_point_427_____________________________________________ (f_nd_impurity_electrons13_427)_ 3.49944401055330625e+14 OP +W_concentration_at_point_428_____________________________________________ (f_nd_impurity_electrons13_428)_ 3.49124605092450438e+14 OP +W_concentration_at_point_429_____________________________________________ (f_nd_impurity_electrons13_429)_ 3.48302891478194938e+14 OP +W_concentration_at_point_430_____________________________________________ (f_nd_impurity_electrons13_430)_ 3.47479260212564375e+14 OP +W_concentration_at_point_431_____________________________________________ (f_nd_impurity_electrons13_431)_ 3.46653711295558688e+14 OP +W_concentration_at_point_432_____________________________________________ (f_nd_impurity_electrons13_432)_ 3.45826244727177812e+14 OP +W_concentration_at_point_433_____________________________________________ (f_nd_impurity_electrons13_433)_ 3.44996860507421750e+14 OP +W_concentration_at_point_434_____________________________________________ (f_nd_impurity_electrons13_434)_ 3.44165558636290625e+14 OP +W_concentration_at_point_435_____________________________________________ (f_nd_impurity_electrons13_435)_ 3.43332339113784250e+14 OP +W_concentration_at_point_436_____________________________________________ (f_nd_impurity_electrons13_436)_ 3.42497201939902750e+14 OP +W_concentration_at_point_437_____________________________________________ (f_nd_impurity_electrons13_437)_ 3.41660147114646000e+14 OP +W_concentration_at_point_438_____________________________________________ (f_nd_impurity_electrons13_438)_ 3.40821174638014250e+14 OP +W_concentration_at_point_439_____________________________________________ (f_nd_impurity_electrons13_439)_ 3.39980284510007250e+14 OP +W_concentration_at_point_440_____________________________________________ (f_nd_impurity_electrons13_440)_ 3.39137476730625062e+14 OP +W_concentration_at_point_441_____________________________________________ (f_nd_impurity_electrons13_441)_ 3.38292751299867750e+14 OP +W_concentration_at_point_442_____________________________________________ (f_nd_impurity_electrons13_442)_ 3.37446108217735375e+14 OP +W_concentration_at_point_443_____________________________________________ (f_nd_impurity_electrons13_443)_ 3.36597547484227688e+14 OP +W_concentration_at_point_444_____________________________________________ (f_nd_impurity_electrons13_444)_ 3.35747069099344938e+14 OP +W_concentration_at_point_445_____________________________________________ (f_nd_impurity_electrons13_445)_ 3.34894673063086938e+14 OP +W_concentration_at_point_446_____________________________________________ (f_nd_impurity_electrons13_446)_ 3.34040359375453938e+14 OP +W_concentration_at_point_447_____________________________________________ (f_nd_impurity_electrons13_447)_ 3.33184128036445625e+14 OP +W_concentration_at_point_448_____________________________________________ (f_nd_impurity_electrons13_448)_ 3.32325979046062250e+14 OP +W_concentration_at_point_449_____________________________________________ (f_nd_impurity_electrons13_449)_ 3.31465912404303625e+14 OP +W_concentration_at_point_450_____________________________________________ (f_nd_impurity_electrons13_450)_ 3.30603928111169938e+14 OP +W_concentration_at_point_451_____________________________________________ (f_nd_impurity_electrons13_451)_ 3.29740026166661000e+14 OP +W_concentration_at_point_452_____________________________________________ (f_nd_impurity_electrons13_452)_ 3.28874206570777000e+14 OP +W_concentration_at_point_453_____________________________________________ (f_nd_impurity_electrons13_453)_ 3.28006469323517750e+14 OP +W_concentration_at_point_454_____________________________________________ (f_nd_impurity_electrons13_454)_ 3.27136814424883438e+14 OP +W_concentration_at_point_455_____________________________________________ (f_nd_impurity_electrons13_455)_ 3.26265241874873875e+14 OP +W_concentration_at_point_456_____________________________________________ (f_nd_impurity_electrons13_456)_ 3.25391751673489250e+14 OP +W_concentration_at_point_457_____________________________________________ (f_nd_impurity_electrons13_457)_ 3.24516343820729375e+14 OP +W_concentration_at_point_458_____________________________________________ (f_nd_impurity_electrons13_458)_ 3.23639018316594438e+14 OP +W_concentration_at_point_459_____________________________________________ (f_nd_impurity_electrons13_459)_ 3.22759775161084188e+14 OP +W_concentration_at_point_460_____________________________________________ (f_nd_impurity_electrons13_460)_ 3.21878614354198938e+14 OP +W_concentration_at_point_461_____________________________________________ (f_nd_impurity_electrons13_461)_ 3.20995535895938438e+14 OP +W_concentration_at_point_462_____________________________________________ (f_nd_impurity_electrons13_462)_ 3.20110539786302812e+14 OP +W_concentration_at_point_463_____________________________________________ (f_nd_impurity_electrons13_463)_ 3.19223626025292000e+14 OP +W_concentration_at_point_464_____________________________________________ (f_nd_impurity_electrons13_464)_ 3.18334794612906062e+14 OP +W_concentration_at_point_465_____________________________________________ (f_nd_impurity_electrons13_465)_ 3.17444045549144938e+14 OP +W_concentration_at_point_466_____________________________________________ (f_nd_impurity_electrons13_466)_ 3.16551378834008688e+14 OP +W_concentration_at_point_467_____________________________________________ (f_nd_impurity_electrons13_467)_ 3.15656794467497250e+14 OP +W_concentration_at_point_468_____________________________________________ (f_nd_impurity_electrons13_468)_ 3.14760292449610688e+14 OP +W_concentration_at_point_469_____________________________________________ (f_nd_impurity_electrons13_469)_ 3.13861872780349000e+14 OP +W_concentration_at_point_470_____________________________________________ (f_nd_impurity_electrons13_470)_ 3.12961535459712125e+14 OP +W_concentration_at_point_471_____________________________________________ (f_nd_impurity_electrons13_471)_ 3.08665984973010125e+14 OP +W_concentration_at_point_472_____________________________________________ (f_nd_impurity_electrons13_472)_ 3.04370434486308250e+14 OP +W_concentration_at_point_473_____________________________________________ (f_nd_impurity_electrons13_473)_ 3.00074883999606312e+14 OP +W_concentration_at_point_474_____________________________________________ (f_nd_impurity_electrons13_474)_ 2.95779333512904375e+14 OP +W_concentration_at_point_475_____________________________________________ (f_nd_impurity_electrons13_475)_ 2.91483783026202438e+14 OP +W_concentration_at_point_476_____________________________________________ (f_nd_impurity_electrons13_476)_ 2.87188232539500500e+14 OP +W_concentration_at_point_477_____________________________________________ (f_nd_impurity_electrons13_477)_ 2.82892682052798562e+14 OP +W_concentration_at_point_478_____________________________________________ (f_nd_impurity_electrons13_478)_ 2.78597131566096656e+14 OP +W_concentration_at_point_479_____________________________________________ (f_nd_impurity_electrons13_479)_ 2.74301581079394750e+14 OP +W_concentration_at_point_480_____________________________________________ (f_nd_impurity_electrons13_480)_ 2.70006030592692812e+14 OP +W_concentration_at_point_481_____________________________________________ (f_nd_impurity_electrons13_481)_ 2.65710480105990875e+14 OP +W_concentration_at_point_482_____________________________________________ (f_nd_impurity_electrons13_482)_ 2.61414929619288938e+14 OP +W_concentration_at_point_483_____________________________________________ (f_nd_impurity_electrons13_483)_ 2.57119379132587000e+14 OP +W_concentration_at_point_484_____________________________________________ (f_nd_impurity_electrons13_484)_ 2.52823828645885062e+14 OP +W_concentration_at_point_485_____________________________________________ (f_nd_impurity_electrons13_485)_ 2.48528278159183156e+14 OP +W_concentration_at_point_486_____________________________________________ (f_nd_impurity_electrons13_486)_ 2.44232727672481250e+14 OP +W_concentration_at_point_487_____________________________________________ (f_nd_impurity_electrons13_487)_ 2.39937177185779281e+14 OP +W_concentration_at_point_488_____________________________________________ (f_nd_impurity_electrons13_488)_ 2.35641626699077375e+14 OP +W_concentration_at_point_489_____________________________________________ (f_nd_impurity_electrons13_489)_ 2.31346076212375406e+14 OP +W_concentration_at_point_490_____________________________________________ (f_nd_impurity_electrons13_490)_ 2.27050525725673500e+14 OP +W_concentration_at_point_491_____________________________________________ (f_nd_impurity_electrons13_491)_ 2.22754975238971562e+14 OP +W_concentration_at_point_492_____________________________________________ (f_nd_impurity_electrons13_492)_ 2.18459424752269625e+14 OP +W_concentration_at_point_493_____________________________________________ (f_nd_impurity_electrons13_493)_ 2.14163874265567688e+14 OP +W_concentration_at_point_494_____________________________________________ (f_nd_impurity_electrons13_494)_ 2.09868323778865781e+14 OP +W_concentration_at_point_495_____________________________________________ (f_nd_impurity_electrons13_495)_ 2.05572773292163812e+14 OP +W_concentration_at_point_496_____________________________________________ (f_nd_impurity_electrons13_496)_ 2.01277222805461906e+14 OP +W_concentration_at_point_497_____________________________________________ (f_nd_impurity_electrons13_497)_ 1.96981672318760000e+14 OP +W_concentration_at_point_498_____________________________________________ (f_nd_impurity_electrons13_498)_ 1.92686121832058031e+14 OP +W_concentration_at_point_499_____________________________________________ (f_nd_impurity_electrons13_499)_ 1.88390571345356125e+14 OP +W_concentration_at_point_500_____________________________________________ (f_nd_impurity_electrons13_500)_ 1.84095020858654188e+14 OP +Volume_averaged_plasma_effective_charge_(⟨Zₑ⟩)___________________________ (n_charge_plasma_effective_vol_avg)_ 2.56247582201384372e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile0)_ 2.70213649678517243e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile1)_ 2.70213599862905252e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile2)_ 2.70213450415188028e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile3)_ 2.70213201332720843e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile4)_ 2.70212852611096022e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile5)_ 2.70212404244142457e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile6)_ 2.70211856223925295e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile7)_ 2.70211208540745496e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile8)_ 2.70210461183139561e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile9)_ 2.70209614137878651e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile10)_ 2.70208667389968094e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile11)_ 2.70207620922646630e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile12)_ 2.70206474717385348e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile13)_ 2.70205228753887150e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile14)_ 2.70203883010085244e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile15)_ 2.70202437462142298e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile16)_ 2.70200892084449285e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile17)_ 2.70199246849623842e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile18)_ 2.70197501728509470e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile19)_ 2.70195656690173180e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile20)_ 2.70193711701904737e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile21)_ 2.70191666729214752e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile22)_ 2.70189521735832416e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile23)_ 2.70187276683704480e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile24)_ 2.70184931532992767e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile25)_ 2.70182486242072128e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile26)_ 2.70179940767528626e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile27)_ 2.70177295064157219e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile28)_ 2.70174549084959148e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile29)_ 2.70171702781140066e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile30)_ 2.70168756102107066e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile31)_ 2.70165708995466325e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile32)_ 2.70162561407020352e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile33)_ 2.70159313280765367e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile34)_ 2.70155964558888328e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile35)_ 2.70152515181763908e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile36)_ 2.70148965087951431e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile37)_ 2.70145314214192034e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile38)_ 2.70141562495404974e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile39)_ 2.70137709864684750e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile40)_ 2.70133756253297230e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile41)_ 2.70129701590676552e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile42)_ 2.70125545804421074e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile43)_ 2.70121288820290228e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile44)_ 2.70116930562200119e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile45)_ 2.70112470952220018e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile46)_ 2.70107909910568145e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile47)_ 2.70103247355607889e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile48)_ 2.70098483203842976e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile49)_ 2.70093617369914085e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile50)_ 2.70088649766593614e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile51)_ 2.70083580304781767e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile52)_ 2.70078408893501898e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile53)_ 2.70073135439895173e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile54)_ 2.70067759849216849e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile55)_ 2.70062282024830758e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile56)_ 2.70056701868204341e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile57)_ 2.70051019278903670e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile58)_ 2.70045234154588476e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile59)_ 2.70039346391006507e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile60)_ 2.70033355881988424e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile61)_ 2.70027262519442157e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile62)_ 2.70021066193347403e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile63)_ 2.70014766791750160e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile64)_ 2.70008364200756468e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile65)_ 2.70001858304526809e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile66)_ 2.69995248985270342e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile67)_ 2.69988536123238276e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile68)_ 2.69981719596718239e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile69)_ 2.69974799282027522e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile70)_ 2.69967775053506909e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile71)_ 2.69960646783514191e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile72)_ 2.69953414342417508e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile73)_ 2.69946077598588463e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile74)_ 2.69938636418395550e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile75)_ 2.69931090666197138e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile76)_ 2.69923440204334364e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile77)_ 2.69915684893124075e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile78)_ 2.69907824590851408e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile79)_ 2.69899859153762689e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile80)_ 2.69891788436057700e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile81)_ 2.69883612289882269e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile82)_ 2.69875330565320581e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile83)_ 2.69866943110387103e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile84)_ 2.69858449771019071e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile85)_ 2.69849551756592954e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile86)_ 2.69839809013520826e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile87)_ 2.69829947267633408e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile88)_ 2.69819966338137407e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile89)_ 2.69809866041883195e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile90)_ 2.69799646193354770e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile91)_ 2.69789306604660695e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile92)_ 2.69778847085523754e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile93)_ 2.69768267443271492e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile94)_ 2.69757567482826000e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile95)_ 2.69746747006693788e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile96)_ 2.69735805814955354e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile97)_ 2.69724743705255232e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile98)_ 2.69713560472790848e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile99)_ 2.69702255910302124e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile100)_ 2.69690829808060784e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile101)_ 2.69679281953859418e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile102)_ 2.69667612133000034e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile103)_ 2.69655820128283219e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile104)_ 2.69643905719996724e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile105)_ 2.69631868685903786e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile106)_ 2.69619708801231805e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile107)_ 2.69607425838660486e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile108)_ 2.69595019568309802e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile109)_ 2.69582489757728228e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile110)_ 2.69569836171880306e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile111)_ 2.69557058573134478e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile112)_ 2.69544156721250738e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile113)_ 2.69531130373367978e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile114)_ 2.69517979283991149e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile115)_ 2.69504703204978524e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile116)_ 2.69491301885528811e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile117)_ 2.69477775072167569e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile118)_ 2.69464122508734594e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile119)_ 2.69450343936369840e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile120)_ 2.69436439093500146e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile121)_ 2.69422407715825596e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile122)_ 2.69408249536305533e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile123)_ 2.69393964285144394e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile124)_ 2.69379551689778030e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile125)_ 2.69365011474858917e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile126)_ 2.69350343362241773e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile127)_ 2.69335547070969383e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile128)_ 2.69320622317257197e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile129)_ 2.69305568814479157e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile130)_ 2.69290386273152027e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile131)_ 2.69275096043468398e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile132)_ 2.69259717415653022e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile133)_ 2.69244209393150369e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile134)_ 2.69228571676137696e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile135)_ 2.69212803961870062e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile136)_ 2.69196905944664255e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile137)_ 2.69180877315883071e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile138)_ 2.69164717763918881e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile139)_ 2.69148426974177690e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile140)_ 2.69132004629062083e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile141)_ 2.69115450407955104e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile142)_ 2.69098763987203249e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile143)_ 2.69081945040099413e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile144)_ 2.69064993236866146e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile145)_ 2.69047908244638112e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile146)_ 2.69030689727444727e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile147)_ 2.69013337346192793e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile148)_ 2.68995850758648647e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile149)_ 2.68978229619420306e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile150)_ 2.68960473579939618e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile151)_ 2.68942582288443788e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile152)_ 2.68924555389957476e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile153)_ 2.68906392526273974e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile154)_ 2.68888093335936817e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile155)_ 2.68869657454220867e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile156)_ 2.68851084513113570e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile157)_ 2.68832374141295682e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile158)_ 2.68813525964122224e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile159)_ 2.68794539603602844e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile160)_ 2.68775414678382729e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile161)_ 2.68756150803722527e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile162)_ 2.68736747591478675e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile163)_ 2.68717204650083508e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile164)_ 2.68696336619629417e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile165)_ 2.68674451078513288e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile166)_ 2.68652410088027516e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile167)_ 2.68630213203402457e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile168)_ 2.68607859976008045e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile169)_ 2.68585349953330743e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile170)_ 2.68562682678950893e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile171)_ 2.68539857692519623e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile172)_ 2.68516874529735805e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile173)_ 2.68493732722322820e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile174)_ 2.68470431798005027e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile175)_ 2.68446971280484270e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile176)_ 2.68423350689416207e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile177)_ 2.68399569540386329e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile178)_ 2.68375627344886158e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile179)_ 2.68351523610288911e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile180)_ 2.68327257839825473e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile181)_ 2.68302829532559839e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile182)_ 2.68278238183364692e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile183)_ 2.68253483282896665e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile184)_ 2.68228564317571871e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile185)_ 2.68203480769540503e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile186)_ 2.68178232116662452e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile187)_ 2.68152817832481638e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile188)_ 2.68127237386201189e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile189)_ 2.68101490242657947e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile190)_ 2.68075202337077156e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile191)_ 2.68043809043040770e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile192)_ 2.68012213644296304e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile193)_ 2.67980415485218559e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile194)_ 2.67948413904883820e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile195)_ 2.67916208237039344e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile196)_ 2.67883797810074054e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile197)_ 2.67851181946988381e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile198)_ 2.67818359965363628e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile199)_ 2.67785331177332742e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile200)_ 2.67752094889549541e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile201)_ 2.67718650403158609e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile202)_ 2.67684997013765447e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile203)_ 2.67651134011405700e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile204)_ 2.67617060680515317e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile205)_ 2.67582776299900260e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile206)_ 2.67548280142706307e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile207)_ 2.67513571476388501e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile208)_ 2.67478649562681614e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile209)_ 2.67443513657569465e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile210)_ 2.67408163011255340e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile211)_ 2.67372596868131707e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile212)_ 2.67336814466750372e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile213)_ 2.67300949852143521e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile214)_ 2.67264927525017804e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile215)_ 2.67228687784821606e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile216)_ 2.67192229850462182e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile217)_ 2.67155552934888529e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile218)_ 2.67118656245062214e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile219)_ 2.67081538981928546e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile220)_ 2.67044200340388116e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile221)_ 2.67006639509268595e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile222)_ 2.66968855671296090e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile223)_ 2.66930848003068411e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile224)_ 2.66892615675026290e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile225)_ 2.66854157851427010e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile226)_ 2.66815473690317262e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile227)_ 2.66776562343506463e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile228)_ 2.66737422956540815e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile229)_ 2.66698054668677242e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile230)_ 2.66658456612858386e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile231)_ 2.66618627915687645e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile232)_ 2.66578567697404312e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile233)_ 2.66534960595471082e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile234)_ 2.66490836401808462e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile235)_ 2.66446457731068120e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile236)_ 2.66401823606574117e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile237)_ 2.66356933044703359e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile238)_ 2.66311785054864547e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile239)_ 2.66266378639477308e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile240)_ 2.66220712793952119e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile241)_ 2.66174786506671879e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile242)_ 2.66128598758973389e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile243)_ 2.66082148525130302e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile244)_ 2.66035434772337220e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile245)_ 2.65988456460694245e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile246)_ 2.65941212543193695e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile247)_ 2.65893701965706475e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile248)_ 2.65845923666971284e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile249)_ 2.65797876578583780e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile250)_ 2.65747320540759668e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile251)_ 2.65692086580763132e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile252)_ 2.65636544524395113e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile253)_ 2.65580693144484759e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile254)_ 2.65524531205940173e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile255)_ 2.65468057465749219e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile256)_ 2.65411270672983379e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile257)_ 2.65354169568802467e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile258)_ 2.65296752886462706e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile259)_ 2.65239019351326100e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile260)_ 2.65180967680873181e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile261)_ 2.65122596584716952e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile262)_ 2.65063904764620784e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile263)_ 2.65004890914517954e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile264)_ 2.64945553720534477e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile265)_ 2.64885891861014944e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile266)_ 2.64824240738195060e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile267)_ 2.64755224644412746e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile268)_ 2.64685834374186779e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile269)_ 2.64616068412464100e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile270)_ 2.64545925235872792e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile271)_ 2.64475403312779234e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile272)_ 2.64404501103349343e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile273)_ 2.64333217059614567e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile274)_ 2.64261549625543024e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile275)_ 2.64189497237115090e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile276)_ 2.64117058322404752e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile277)_ 2.64044231301665988e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile278)_ 2.63971014587425046e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile279)_ 2.63897406584578542e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile280)_ 2.63823405690497426e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile281)_ 2.63744354674224901e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile282)_ 2.63661431023596515e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile283)_ 2.63578068604244775e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile284)_ 2.63494265644388781e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile285)_ 2.63410020365032116e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile286)_ 2.63325330980129824e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile287)_ 2.63240195696764356e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile288)_ 2.63154612715330183e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile289)_ 2.63068580229728299e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile290)_ 2.62982096427570600e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile291)_ 2.62895159490394770e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile292)_ 2.62807767593889485e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile293)_ 2.62719918908131245e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile294)_ 2.62631611597832304e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile295)_ 2.62529908649982202e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile296)_ 2.62427305741686379e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile297)_ 2.62324173636637026e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile298)_ 2.62220510277828600e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile299)_ 2.62116313604613804e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile300)_ 2.62011581553088435e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile301)_ 2.61906312056494350e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile302)_ 2.61800503045639266e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile303)_ 2.61694152449336714e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile304)_ 2.61587258194863814e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile305)_ 2.61479818208440262e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile306)_ 2.61371830415727358e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile307)_ 2.61259132152732887e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile308)_ 2.61133979322951193e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile309)_ 2.61008197626728355e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile310)_ 2.60881784798357685e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile311)_ 2.60754738576028755e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile312)_ 2.60627056702575155e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile313)_ 2.60498736926253116e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile314)_ 2.60369777001551794e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile315)_ 2.60240174690037573e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile316)_ 2.60109927761232296e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile317)_ 2.59979033993527908e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile318)_ 2.59847491175137968e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile319)_ 2.59705816054816019e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile320)_ 2.59553944059825392e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile321)_ 2.59401332309576205e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile322)_ 2.59247978490196962e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile323)_ 2.59093880306958813e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile324)_ 2.58939035485666746e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile325)_ 2.58783441774105327e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile326)_ 2.58627096943541268e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile327)_ 2.58469998790285560e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile328)_ 2.58312145137317239e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile329)_ 2.58153533835970350e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile330)_ 2.57984757198426085e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile331)_ 2.57793860444140499e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile332)_ 2.57602073210889637e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile333)_ 2.57409393417126564e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile334)_ 2.57215819029862969e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile335)_ 2.57021348067210686e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile336)_ 2.56825978601021054e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile337)_ 2.56629708759625119e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile338)_ 2.56432536730679050e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile339)_ 2.56234460764119065e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile340)_ 2.56035479175229375e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile341)_ 2.55802808706673668e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile342)_ 2.55566811719675746e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile343)_ 2.55329773888550360e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile344)_ 2.55091694035208505e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile345)_ 2.54852571083035562e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile346)_ 2.54612404061393915e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile347)_ 2.54371192110295441e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile348)_ 2.54128934485251623e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile349)_ 2.53885630562306641e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile350)_ 2.53641279843261680e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile351)_ 2.53362360062271197e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile352)_ 2.53077523694439588e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile353)_ 2.52791515761343621e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile354)_ 2.52504336935585849e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile355)_ 2.52215988074036979e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile356)_ 2.51926470225312826e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile357)_ 2.51635784637533666e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile358)_ 2.51343932766375344e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile359)_ 2.51050916283424108e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile360)_ 2.50739717694388498e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile361)_ 2.50402187133730791e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile362)_ 2.50063384865163263e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile363)_ 2.49723314667540564e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile364)_ 2.49381980625186550e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile365)_ 2.49039387139645907e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile366)_ 2.48695538941878880e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile367)_ 2.48350441104915642e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile368)_ 2.48004099056990857e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile369)_ 2.47646870590529655e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile370)_ 2.47278435962056164e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile371)_ 2.46908733760891419e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile372)_ 2.46537771760547164e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile373)_ 2.46165558189059297e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile374)_ 2.45792101746203295e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile375)_ 2.45417411621369297e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile376)_ 2.45041497512127915e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile377)_ 2.44664369643513568e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile378)_ 2.44280486223293503e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile379)_ 2.43894041965977948e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile380)_ 2.43506406759721905e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile381)_ 2.43117593516548958e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile382)_ 2.42727615795894769e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile383)_ 2.42336487829249458e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile384)_ 2.41944224545776798e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile385)_ 2.41550841598959698e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile386)_ 2.41165238307817331e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile387)_ 2.40789214826433806e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile388)_ 2.40412147173698720e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile389)_ 2.40034052892375716e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile390)_ 2.39654950358526486e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile391)_ 2.39274858814066071e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile392)_ 2.38893798400674884e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile393)_ 2.38511790195132045e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile394)_ 2.38142852181058462e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile395)_ 2.37793126135584654e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile396)_ 2.37442551738895569e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile397)_ 2.37091151409884526e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile398)_ 2.36738948609890754e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile399)_ 2.36385967885013182e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile400)_ 2.36032234910298433e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile401)_ 2.35677776535900119e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile402)_ 2.35357360126560389e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile403)_ 2.35057785377241180e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile404)_ 2.34757605284964432e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile405)_ 2.34456846181111622e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile406)_ 2.34155535628871858e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile407)_ 2.33853702475910108e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile408)_ 2.33551376909555275e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile409)_ 2.33249619379893280e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile410)_ 2.32996108838915372e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile411)_ 2.32742217788936134e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile412)_ 2.32487976074057690e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile413)_ 2.32233414948284533e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile414)_ 2.31978567139014347e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile415)_ 2.31723466913826615e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile416)_ 2.31468150150786833e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile417)_ 2.31237335735673755e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile418)_ 2.31024685911405747e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile419)_ 2.30811916230351555e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile420)_ 2.30599062395037224e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile421)_ 2.30386161817407897e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile422)_ 2.30173253701510339e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile423)_ 2.29960379131045567e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile424)_ 2.29757199562375503e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile425)_ 2.29587449283617095e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile426)_ 2.29417803966853828e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile427)_ 2.29248303199074988e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile428)_ 2.29078988516591098e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile429)_ 2.28909903507997647e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile430)_ 2.28741093924208183e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile431)_ 2.28572607796243421e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile432)_ 2.28430526653270016e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile433)_ 2.28291685600081218e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile434)_ 2.28153227367985689e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile435)_ 2.28015200528111395e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile436)_ 2.27877656174133625e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile437)_ 2.27740648077237129e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile438)_ 2.27604232854701838e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile439)_ 2.27478412031186261e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile440)_ 2.27364087779450941e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile441)_ 2.27250415547219786e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile442)_ 2.27137454782406989e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile443)_ 2.27025268312404327e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile444)_ 2.26913922600170537e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile445)_ 2.26803488030519107e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile446)_ 2.26694039231848032e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile447)_ 2.26591293833975449e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile448)_ 2.26491017439380826e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile449)_ 2.26391896342552057e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile450)_ 2.26294020236279136e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile451)_ 2.26197485065483628e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile452)_ 2.26102393722953909e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile453)_ 2.26008856872364472e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile454)_ 2.25916993931936183e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile455)_ 2.25835202210998531e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile456)_ 2.25764276580901013e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile457)_ 2.25695034720440324e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile458)_ 2.25627613401556104e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile459)_ 2.25562164250954744e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile460)_ 2.25498856844769735e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile461)_ 2.25437882866645722e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile462)_ 2.25379461857388064e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile463)_ 2.25323849445289381e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile464)_ 2.25271349640923857e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile465)_ 2.25222344318824996e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile466)_ 2.25177422947500494e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile467)_ 2.25137078587003181e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile468)_ 2.25102238120214215e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile469)_ 2.25074496939742152e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile470)_ 2.25058414108314908e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile471)_ 2.24658701427153051e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile472)_ 2.24274641019935972e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile473)_ 2.23884285153841711e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile474)_ 2.23481147057192553e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile475)_ 2.23064912020006956e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile476)_ 2.22614729429828317e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile477)_ 2.22126434070181888e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile478)_ 2.21616803816691776e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile479)_ 2.21044788531375858e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile480)_ 2.20339847315570792e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile481)_ 2.19534555605596848e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile482)_ 2.18517061662376255e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile483)_ 2.17111880095395193e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile484)_ 2.15068652385187864e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile485)_ 2.11948626358536085e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile486)_ 2.06957314548559035e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile487)_ 2.00182889237150707e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile488)_ 1.93216313199110745e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile489)_ 1.88187266105025786e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile490)_ 1.85047609879265162e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile491)_ 1.83071534501724709e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile492)_ 1.81486074602192859e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile493)_ 1.79986006262379239e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile494)_ 1.78148552116003223e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile495)_ 1.75413652047673896e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile496)_ 1.71076459718740148e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile497)_ 1.59103582539566779e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile498)_ 1.46073661890838968e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile499)_ 1.35664269142663185e+00 OP +Effective_charge_at_point________________________________________________ (n_charge_plasma_effective_profile500)_ 1.21417998388673998e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile0_0)___ 1.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile0_1)___ 1.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile0_2)___ 1.00000000000000000e+00 OP @@ -9405,16 +9402,16 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_375)_ 8.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_376)_ 8.00000000000000000e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_377)_ 8.00000000000000000e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_378)_ 8.00000000000000000e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_379)_ 8.00000000000000000e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_380)_ 7.99989540977582259e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_381)_ 7.99977426409983750e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_382)_ 7.99965256220848708e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_383)_ 7.99953030586354341e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_384)_ 7.99940749704393994e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_385)_ 7.99928413795603177e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_386)_ 7.99916023104430352e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_387)_ 7.99903577900257101e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_378)_ 7.99990539582006388e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_379)_ 7.99978715363660520e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_380)_ 7.99966837204386749e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_381)_ 7.99954905260872362e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_382)_ 7.99942919709564926e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_383)_ 7.99930880747590756e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_384)_ 7.99918788593714147e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_385)_ 7.99906643489338354e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_386)_ 7.99899999999999967e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_387)_ 7.99899999999999967e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_388)_ 7.99899999999999967e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_389)_ 7.99899999999999967e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile5_390)_ 7.99899999999999967e+00 OP @@ -9858,19 +9855,19 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_327)_ 9.99900000000000055e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_328)_ 9.99900000000000055e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_329)_ 9.99900000000000055e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_330)_ 9.99900000000000055e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_331)_ 9.99900000000000055e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_332)_ 9.99900000000000055e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_333)_ 9.99898532344668212e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_334)_ 9.99888850224302494e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_335)_ 9.99879116131179657e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_336)_ 9.99869329852249678e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_337)_ 9.99859491175984871e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_338)_ 9.99849599892519159e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_339)_ 9.99839655793792126e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_340)_ 9.99829658673700550e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_341)_ 9.99819608328256315e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_342)_ 9.99809504555750905e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_330)_ 9.99897122479341505e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_331)_ 9.99887703248832338e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_332)_ 9.99878233818084539e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_333)_ 9.99868713984195701e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_334)_ 9.99859143545589113e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_335)_ 9.99849522302136684e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_336)_ 9.99839850055287904e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_337)_ 9.99830126608203607e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_338)_ 9.99820351765895765e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_339)_ 9.99810525335373512e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_340)_ 9.99800647125795550e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_341)_ 9.99799999999999933e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_342)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_343)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_344)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_345)_ 9.99799999999999933e+00 OP @@ -9945,14 +9942,14 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_414)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_415)_ 9.99799999999999933e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_416)_ 9.99799999999999933e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_417)_ 9.99799999999999933e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_418)_ 9.99792897802451108e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_419)_ 9.99779043521050426e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_420)_ 9.99765169129049447e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_421)_ 9.99751276996257943e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_422)_ 9.99737369619475480e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_423)_ 9.99723449628941729e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_424)_ 9.99709519795169221e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_417)_ 9.99792224293620357e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_418)_ 9.99778661003782609e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_419)_ 9.99765077740200780e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_420)_ 9.99751476730694932e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_421)_ 9.99737860320526117e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_422)_ 9.99724230978253381e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_423)_ 9.99710591301933782e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_424)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_425)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_426)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_427)_ 9.99699999999999989e+00 OP @@ -9993,11 +9990,11 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_462)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_463)_ 9.99699999999999989e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_464)_ 9.99699999999999989e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_465)_ 9.99699999999999989e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_466)_ 9.99692979326187903e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_467)_ 9.99686503684883121e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_468)_ 9.99680910003525725e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_469)_ 9.99676455148820686e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_465)_ 9.99699484513653402e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_466)_ 9.99692467959987319e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_467)_ 9.99686165059283205e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_468)_ 9.99680721058905419e+00 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_469)_ 9.99676385721932270e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_470)_ 9.99673872070360581e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_471)_ 9.99611338281042450e+00 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile6_472)_ 9.99600000000000044e+00 OP @@ -10380,17 +10377,17 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_348)_ 1.39900000000000002e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_349)_ 1.39900000000000002e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_350)_ 1.39900000000000002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_351)_ 1.39900000000000002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_352)_ 1.39900000000000002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_353)_ 1.39897138147091642e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_354)_ 1.39886517451801708e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_355)_ 1.39875841723722019e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_356)_ 1.39865110816939389e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_357)_ 1.39854324591283934e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_358)_ 1.39843482912651087e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_359)_ 1.39832585653337311e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_360)_ 1.39821632692390807e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_361)_ 1.39810623915976997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_351)_ 1.39890954452736711e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_352)_ 1.39880576700407886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_353)_ 1.39870145662822498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_354)_ 1.39859661201266068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_355)_ 1.39849123182353772e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_356)_ 1.39838531478324519e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_357)_ 1.39827885967347640e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_358)_ 1.39817186533842683e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_359)_ 1.39806433068812730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_360)_ 1.39800000000000004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_361)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_362)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_363)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_364)_ 1.39800000000000004e+01 OP @@ -10446,14 +10443,14 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_414)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_415)_ 1.39800000000000004e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_416)_ 1.39800000000000004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_417)_ 1.39800000000000004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_418)_ 1.39792897802451090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_419)_ 1.39779043521050408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_420)_ 1.39765169129049536e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_421)_ 1.39751276996258014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_422)_ 1.39737369619475587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_423)_ 1.39723449628941712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_424)_ 1.39709519795169257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_417)_ 1.39792224293620340e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_418)_ 1.39778661003782751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_419)_ 1.39765077740200780e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_420)_ 1.39751476730694915e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_421)_ 1.39737860320526064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_422)_ 1.39724230978253345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_423)_ 1.39710591301933871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_424)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_425)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_426)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_427)_ 1.39700000000000006e+01 OP @@ -10476,14 +10473,14 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_444)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_445)_ 1.39700000000000006e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_446)_ 1.39700000000000006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_447)_ 1.39695533087139747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_448)_ 1.39682756841487503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_449)_ 1.39670119929079117e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_450)_ 1.39657634044243899e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_451)_ 1.39645311705802744e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_452)_ 1.39633166347600994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_453)_ 1.39621212425454466e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_454)_ 1.39609465544803175e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_447)_ 1.39689904972401138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_448)_ 1.39677436021581247e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_449)_ 1.39665105068113693e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_450)_ 1.39652923466784120e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_451)_ 1.39640903369187335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_452)_ 1.39629057811511821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_453)_ 1.39617400818288111e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_454)_ 1.39605947526280794e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_455)_ 1.39600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_456)_ 1.39600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile7_457)_ 1.39600000000000009e+01 OP @@ -10694,41 +10691,41 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_161)_ 1.79699999999999989e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_162)_ 1.79699999999999989e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_163)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_164)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_165)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_166)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_167)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_168)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_169)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_170)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_171)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_172)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_173)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_174)_ 1.79699999999999989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_175)_ 1.79696774749488348e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_176)_ 1.79693009314184451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_177)_ 1.79689217924994047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_178)_ 1.79685400496534911e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_179)_ 1.79681556942680594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_180)_ 1.79677687176555558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_181)_ 1.79673791110530132e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_182)_ 1.79669868656215606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_183)_ 1.79665919724459329e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_184)_ 1.79661944225339560e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_185)_ 1.79657942068160494e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_186)_ 1.79653913161447107e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_187)_ 1.79649857412940044e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_188)_ 1.79645774729590535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_189)_ 1.79641665017555070e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_190)_ 1.79637528182190280e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_191)_ 1.79633364128047681e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_192)_ 1.79629172758868307e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_193)_ 1.79624953977577420e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_194)_ 1.79620707686279317e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_195)_ 1.79616433786251619e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_196)_ 1.79612132177940254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_197)_ 1.79607802760953774e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_198)_ 1.79603445434057889e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_164)_ 1.79698010563391044e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_165)_ 1.79694548390923288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_166)_ 1.79691061366286746e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_167)_ 1.79687549413508094e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_168)_ 1.79684012455939985e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_169)_ 1.79680450416256967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_170)_ 1.79676863216450933e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_171)_ 1.79673250777827000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_172)_ 1.79669613020999179e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_173)_ 1.79665949865885786e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_174)_ 1.79662261231705216e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_175)_ 1.79658547036971399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_176)_ 1.79654807199489426e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_177)_ 1.79651041636350826e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_178)_ 1.79647250263929230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_179)_ 1.79643432997875756e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_180)_ 1.79639589753114244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_181)_ 1.79635720443836817e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_182)_ 1.79631824983499158e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_183)_ 1.79627903284815673e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_184)_ 1.79623955259754950e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_185)_ 1.79619980819534995e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_186)_ 1.79615979874618219e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_187)_ 1.79611952334706935e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_188)_ 1.79607898108738304e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_189)_ 1.79603817104879475e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_190)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_191)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_192)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_193)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_194)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_195)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_196)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_197)_ 1.79600000000000009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_198)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_199)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_200)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_201)_ 1.79600000000000009e+01 OP @@ -10780,28 +10777,28 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_247)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_248)_ 1.79600000000000009e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_249)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_250)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_251)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_252)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_253)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_254)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_255)_ 1.79600000000000009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_256)_ 1.79596967029549575e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_257)_ 1.79590766765397376e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_258)_ 1.79584530856581637e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_259)_ 1.79578259140430099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_260)_ 1.79571951453114416e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_261)_ 1.79565607629647879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_262)_ 1.79559227503883498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_263)_ 1.79552810908512086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_264)_ 1.79546357675060904e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_265)_ 1.79539867633892385e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_266)_ 1.79533340614203105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_267)_ 1.79526776444023355e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_268)_ 1.79520174950216536e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_269)_ 1.79513535958479302e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_270)_ 1.79506859293341954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_271)_ 1.79500144778168966e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_250)_ 1.79597999108076500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_251)_ 1.79592058715898233e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_252)_ 1.79586084075708818e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_253)_ 1.79580075036271936e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_254)_ 1.79574031445274400e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_255)_ 1.79567953149323678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_256)_ 1.79561839993945540e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_257)_ 1.79555691823581896e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_258)_ 1.79549508481588944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_259)_ 1.79543289810235329e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_260)_ 1.79537035650700822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_261)_ 1.79530745843074975e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_262)_ 1.79524420226356192e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_263)_ 1.79518058638450952e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_264)_ 1.79511660916173348e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_265)_ 1.79505226895245009e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_266)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_267)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_268)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_269)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_270)_ 1.79499999999999993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_271)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_272)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_273)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_274)_ 1.79499999999999993e+01 OP @@ -10825,22 +10822,22 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_292)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_293)_ 1.79499999999999993e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_294)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_295)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_296)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_297)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_298)_ 1.79499999999999993e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_299)_ 1.79494149758295265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_300)_ 1.79486244613997954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_301)_ 1.79478295741250555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_302)_ 1.79470302930280816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_303)_ 1.79462265970499857e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_304)_ 1.79454184650529243e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_305)_ 1.79446058758230258e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_306)_ 1.79437888080734034e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_307)_ 1.79429672404473841e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_308)_ 1.79421411515218843e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_309)_ 1.79413105198109690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_310)_ 1.79404753237696006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_295)_ 1.79492597950293558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_296)_ 1.79484940652857006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_297)_ 1.79477241184410552e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_298)_ 1.79469499347161516e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_299)_ 1.79461714942524004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_300)_ 1.79453887771142462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_301)_ 1.79446017632916650e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_302)_ 1.79438104327027865e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_303)_ 1.79430147651966507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_304)_ 1.79422147405561283e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_305)_ 1.79414103385009760e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_306)_ 1.79406015386910695e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_307)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_308)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_309)_ 1.79400000000000013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_310)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_311)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_312)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_313)_ 1.79400000000000013e+01 OP @@ -10849,20 +10846,20 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_316)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_317)_ 1.79400000000000013e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_318)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_319)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_320)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_321)_ 1.79400000000000013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_322)_ 1.79399769521089922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_323)_ 1.79390815077078898e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_324)_ 1.79381811995479836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_325)_ 1.79372760058256908e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_326)_ 1.79363659047707991e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_327)_ 1.79354508746548262e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_328)_ 1.79345308937997743e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_329)_ 1.79336059405872952e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_330)_ 1.79326759934682336e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_331)_ 1.79317410309726633e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_332)_ 1.79308010317203141e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_319)_ 1.79395659975798800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_320)_ 1.79386945079368729e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_321)_ 1.79378183166168057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_322)_ 1.79369374029426822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_323)_ 1.79360517462641411e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_324)_ 1.79351613259649589e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_325)_ 1.79342661214708592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_326)_ 1.79333661122576942e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_327)_ 1.79324612778600034e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_328)_ 1.79315515978799169e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_329)_ 1.79306370519964915e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_330)_ 1.79299999999999997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_331)_ 1.79299999999999997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_332)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_333)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_334)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_335)_ 1.79299999999999997e+01 OP @@ -10871,18 +10868,18 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_338)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_339)_ 1.79299999999999997e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_340)_ 1.79299999999999997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_341)_ 1.79299999999999997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_342)_ 1.79299999999999997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_343)_ 1.79299361951434726e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_344)_ 1.79289382132898503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_345)_ 1.79279349521719844e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_346)_ 1.79269263931429066e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_347)_ 1.79259125178701808e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_348)_ 1.79248933083567223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_349)_ 1.79238687469625226e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_350)_ 1.79228388164273476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_351)_ 1.79218034998943736e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_352)_ 1.79207627809349042e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_341)_ 1.79290927317978870e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_342)_ 1.79281171203346510e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_343)_ 1.79271363937697785e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_344)_ 1.79261505344539316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_345)_ 1.79251595250324343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_346)_ 1.79241633484644254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_347)_ 1.79231619880428497e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_348)_ 1.79221554274152872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_349)_ 1.79211436506056820e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_350)_ 1.79201266420370118e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_351)_ 1.79200000000000017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_352)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_353)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_354)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_355)_ 1.79200000000000017e+01 OP @@ -10890,17 +10887,17 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_357)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_358)_ 1.79200000000000017e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_359)_ 1.79200000000000017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_360)_ 1.79200000000000017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_361)_ 1.79200000000000017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_362)_ 1.79199552599858762e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_363)_ 1.79188264915009761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_364)_ 1.79176920277352636e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_365)_ 1.79165518604285730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_366)_ 1.79154059822544092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_367)_ 1.79142543868678672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_368)_ 1.79130970689556470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_369)_ 1.79119340242882465e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_370)_ 1.79107652497744532e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_360)_ 1.79195559791031549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_361)_ 1.79184534884652429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_362)_ 1.79173454847318645e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_363)_ 1.79162319598809354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_364)_ 1.79151129067507853e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_365)_ 1.79139883190836713e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_366)_ 1.79128581915711500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_367)_ 1.79117225199013888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_368)_ 1.79105813008085057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_369)_ 1.79100000000000001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_370)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_371)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_372)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_373)_ 1.79100000000000001e+01 OP @@ -10908,98 +10905,98 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_375)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_376)_ 1.79100000000000001e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_377)_ 1.79100000000000001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_378)_ 1.79100000000000001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_379)_ 1.79100000000000001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_380)_ 1.79089540977582260e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_381)_ 1.79077426409983751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_382)_ 1.79065256220848745e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_383)_ 1.79053030586354325e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_384)_ 1.79040749704394031e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_385)_ 1.79028413795603143e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_386)_ 1.79016023104430353e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_387)_ 1.79003577900257120e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_388)_ 1.78991061561783944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_389)_ 1.78978484442080052e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_390)_ 1.78965853677560851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_391)_ 1.78953169650308688e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_392)_ 1.78940432773806322e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_393)_ 1.78927643494402098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_394)_ 1.78914802292842872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_395)_ 1.78901909685877634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_396)_ 1.78888956200423870e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_397)_ 1.78875950676659343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_398)_ 1.78862895485828126e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_399)_ 1.78849791306887447e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_400)_ 1.78836638864051842e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_401)_ 1.78823438928906278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_402)_ 1.78810192322620800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_403)_ 1.78796901470554275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_404)_ 1.78783570873838507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_405)_ 1.78770196412751261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_406)_ 1.78756779130637931e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_407)_ 1.78743320133184511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_408)_ 1.78729820591362163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_409)_ 1.78716281744518852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_410)_ 1.78702704903626355e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_411)_ 1.78689090992319883e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_412)_ 1.78675441821460836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_413)_ 1.78661759052788369e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_414)_ 1.78648044319755996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_415)_ 1.78634299346359491e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_416)_ 1.78620525951536528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_417)_ 1.78606726053803122e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_418)_ 1.78592897802451098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_419)_ 1.78579043521050416e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_420)_ 1.78565169129049544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_421)_ 1.78551276996258004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_422)_ 1.78537369619475577e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_423)_ 1.78523449628941719e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_424)_ 1.78509519795169282e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_425)_ 1.78491157318404916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_426)_ 1.78463248467653131e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_427)_ 1.78435338385088471e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_428)_ 1.78407433894997531e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_429)_ 1.78379542184817836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_430)_ 1.78351670824981312e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_431)_ 1.78323827790132050e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_432)_ 1.78298013757541263e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_433)_ 1.78284154442040510e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_434)_ 1.78270322539882358e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_435)_ 1.78256522961755124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_436)_ 1.78242760886119562e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_437)_ 1.78229041775719850e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_438)_ 1.78215371395515874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_439)_ 1.78201755832218183e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_440)_ 1.78176372417229700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_441)_ 1.78149364876736698e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_442)_ 1.78122507994802568e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_443)_ 1.78095817010032036e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_444)_ 1.78069308067109731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_445)_ 1.78042998287529244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_446)_ 1.78016905848932048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_447)_ 1.77991066174279489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_448)_ 1.77965513682975001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_449)_ 1.77940239858158229e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_450)_ 1.77915268088487792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_451)_ 1.77890623411605482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_452)_ 1.77866332695201983e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_453)_ 1.77842424850908927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_454)_ 1.77818931089606345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_455)_ 1.77795881244998881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_456)_ 1.77773298241414821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_457)_ 1.77751240705283138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_458)_ 1.77729752975717297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_459)_ 1.77708884194258303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_460)_ 1.77688689297295426e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_461)_ 1.77669230348906559e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_462)_ 1.77650578383179649e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_463)_ 1.77632816040625450e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_464)_ 1.77616041505660682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_465)_ 1.77600374714703442e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_466)_ 1.77578937978563935e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_467)_ 1.77559511054649342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_468)_ 1.77542730010577223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_469)_ 1.77529365446462108e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_378)_ 1.79090539582006407e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_379)_ 1.79078715363660521e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_380)_ 1.79066837204386751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_381)_ 1.79054905260872381e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_382)_ 1.79042919709564927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_383)_ 1.79030880747590793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_384)_ 1.79018788593714184e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_385)_ 1.79006643489338373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_386)_ 1.78994435167614476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_387)_ 1.78982161753761631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_388)_ 1.78969836161394369e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_389)_ 1.78957458734056658e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_390)_ 1.78945029843702024e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_391)_ 1.78932549891997574e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_392)_ 1.78920019311687000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_393)_ 1.78907438568015387e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_394)_ 1.78894803441865555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_395)_ 1.78882112381542804e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_396)_ 1.78869372719713482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_397)_ 1.78856585067777445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_398)_ 1.78843750077836816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_399)_ 1.78830868444563507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_400)_ 1.78817940907154451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_401)_ 1.78804968251378362e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_402)_ 1.78791955341884652e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_403)_ 1.78778901543402284e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_404)_ 1.78765805306500383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_405)_ 1.78752667625218251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_406)_ 1.78739489551930433e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_407)_ 1.78726272200056435e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_408)_ 1.78713016746903612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_409)_ 1.78699724424970796e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_410)_ 1.78686396006883328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_411)_ 1.78673033431907982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_412)_ 1.78659638164334957e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_413)_ 1.78646211748843200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_414)_ 1.78632755814323367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_415)_ 1.78619272077900462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_416)_ 1.78605762349169588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_417)_ 1.78592224293620347e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_418)_ 1.78578661003782742e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_419)_ 1.78565077740200771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_420)_ 1.78551476730694922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_421)_ 1.78537860320526072e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_422)_ 1.78524230978253371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_423)_ 1.78510591301933879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_424)_ 1.78493881994747454e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_425)_ 1.78466550939834221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_426)_ 1.78439216491205705e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_427)_ 1.78411885026940347e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_428)_ 1.78384563258777540e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_429)_ 1.78357258249981996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_430)_ 1.78329977434416165e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_431)_ 1.78302728636936223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_432)_ 1.78287778608912646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_433)_ 1.78274219396070421e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_434)_ 1.78260689171850153e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_435)_ 1.78247192741068829e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_436)_ 1.78233735167198581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_437)_ 1.78220321788259461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_438)_ 1.78206958234086912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_439)_ 1.78187284414829037e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_440)_ 1.78160758541440565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_441)_ 1.78134370170957830e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_442)_ 1.78108133329780394e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_443)_ 1.78082062857677741e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_444)_ 1.78056174468989248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_445)_ 1.78030484820951926e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_446)_ 1.78005011590386317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_447)_ 1.77979809944802270e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_448)_ 1.77954872043162489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_449)_ 1.77930210136227380e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_450)_ 1.77905846933568235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_451)_ 1.77881806738374664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_452)_ 1.77858115623023636e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_453)_ 1.77834801636576216e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_454)_ 1.77811895052561582e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_455)_ 1.77789418431156427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_456)_ 1.77767406638519390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_457)_ 1.77745910262813176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_458)_ 1.77724972293963468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_459)_ 1.77704640378728840e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_460)_ 1.77684967785698262e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_461)_ 1.77666014701537165e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_462)_ 1.77647850022989715e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_463)_ 1.77630553921581189e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_464)_ 1.77614221674342900e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_465)_ 1.77598453540960115e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_466)_ 1.77577403879962219e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_467)_ 1.77558495177849593e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_468)_ 1.77542163176716450e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_469)_ 1.77529157165796612e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_470)_ 1.77521616211081863e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_471)_ 1.77334014843127150e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_472)_ 1.77193294108828354e+01 OP @@ -11031,476 +11028,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_498)_ 1.56871625497990657e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_499)_ 1.37557983829949482e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile8_500)_ 9.01695775214311013e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_0)___ 2.57122043507046705e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_1)___ 2.57122024032865006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_2)___ 2.57121965609951459e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_3)___ 2.57121868237200886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_4)___ 2.57121731912771168e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_5)___ 2.57121556634083248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_6)___ 2.57121342397820918e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_7)___ 2.57121089199930708e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_8)___ 2.57120797035621607e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_9)___ 2.57120465899364810e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_10)__ 2.57120095784893508e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_11)__ 2.57119686685202424e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_12)__ 2.57119238592547461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_13)__ 2.57118751498445377e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_14)__ 2.57118225393673150e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_15)__ 2.57117660268267727e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_16)__ 2.57117056111525208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_17)__ 2.57116412912000456e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_18)__ 2.57115730657506418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_19)__ 2.57115009335113456e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_20)__ 2.57114248931148666e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_21)__ 2.57113449431195065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_22)__ 2.57112610820090950e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_23)__ 2.57111733081928904e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_24)__ 2.57110816200055119e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_25)__ 2.57109860157068297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_26)__ 2.57108864934818868e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_27)__ 2.57107830514407851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_28)__ 2.57106756876185969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_29)__ 2.57105643999752580e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_30)__ 2.57104491863954330e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_31)__ 2.57103300446884404e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_32)__ 2.57102069725880895e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_33)__ 2.57100799677525984e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_34)__ 2.57099488038027744e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_35)__ 2.57098133335435932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_36)__ 2.57096739057564250e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_37)__ 2.57095305177840885e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_38)__ 2.57093831668927884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_39)__ 2.57092318502719408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_40)__ 2.57090765650340458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_41)__ 2.57089173082145095e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_42)__ 2.57087540767714984e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_43)__ 2.57085868675857547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_44)__ 2.57084156774604438e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_45)__ 2.57082405031209689e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_46)__ 2.57080613412148011e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_47)__ 2.57078781883112804e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_48)__ 2.57076910409014445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_49)__ 2.57074998953978238e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_50)__ 2.57073047481342591e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_51)__ 2.57071055953656824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_52)__ 2.57069024332679277e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_53)__ 2.57066952579375148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_54)__ 2.57064840653914253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_55)__ 2.57062688515669073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_56)__ 2.57060496123212268e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_57)__ 2.57058263434314576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_58)__ 2.57055990405942403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_59)__ 2.57053676994255511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_60)__ 2.57051323154604532e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_61)__ 2.57048928841528550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_62)__ 2.57046494008752617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_63)__ 2.57044018609185194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_64)__ 2.57041502594915414e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_65)__ 2.57038945917210739e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_66)__ 2.57036348526513976e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_67)__ 2.57033710372440609e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_68)__ 2.57031031403776176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_69)__ 2.57028311568473207e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_70)__ 2.57025550813648458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_71)__ 2.57022749085580031e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_72)__ 2.57019906329704284e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_73)__ 2.57017022490612774e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_74)__ 2.57014097512049418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_75)__ 2.57011131336907077e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_76)__ 2.57008123907224579e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_77)__ 2.57005075164183374e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_78)__ 2.57001985048104409e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_79)__ 2.56998853498444610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_80)__ 2.56995680453793689e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_81)__ 2.56992465851870584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_82)__ 2.56989209629520090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_83)__ 2.56985911722709197e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_84)__ 2.56982572066523716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_85)__ 2.56979190595164475e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_86)__ 2.56975767241943700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_87)__ 2.56972301939281245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_88)__ 2.56968794618700933e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_89)__ 2.56965245210826545e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_90)__ 2.56961653645378050e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_91)__ 2.56958019851167592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_92)__ 2.56954343756095547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_93)__ 2.56950625287146401e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_94)__ 2.56946864370384773e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_95)__ 2.56943060930951077e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_96)__ 2.56939214893057475e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_97)__ 2.56935326179983434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_98)__ 2.56931394714071608e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_99)__ 2.56927420416723251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_100)_ 2.56923403208393957e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_101)_ 2.56919343008588967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_102)_ 2.56915239735858805e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_103)_ 2.56911093307794651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_104)_ 2.56906903641023483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_105)_ 2.56902670651203593e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_106)_ 2.56898393962001244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_107)_ 2.56894073286241458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_108)_ 2.56889709020648276e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_109)_ 2.56885301076940458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_110)_ 2.56880849365843282e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_111)_ 2.56876353797083432e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_112)_ 2.56871814279383948e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_113)_ 2.56867230720459041e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_114)_ 2.56862603027008731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_115)_ 2.56857931104713622e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_116)_ 2.56853214858229464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_117)_ 2.56848454191181794e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_118)_ 2.56843649006160284e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_119)_ 2.56838799204713304e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_120)_ 2.56833904687342276e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_121)_ 2.56828965353495882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_122)_ 2.56823981101564520e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_123)_ 2.56818951828874198e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_124)_ 2.56813877431680844e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_125)_ 2.56808757805164412e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_126)_ 2.56803592843422592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_127)_ 2.56798382439465058e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_128)_ 2.56793126485207068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_129)_ 2.56787824871463499e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_130)_ 2.56782477487942238e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_131)_ 2.56777084223238248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_132)_ 2.56771644964826784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_133)_ 2.56766159599057140e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_134)_ 2.56760628011146075e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_135)_ 2.56755050085171135e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_136)_ 2.56749425704063974e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_137)_ 2.56743754749603781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_138)_ 2.56738037102410139e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_139)_ 2.56732272641936490e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_140)_ 2.56726461246462918e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_141)_ 2.56720602793089299e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_142)_ 2.56714697157728011e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_143)_ 2.56708744215097049e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_144)_ 2.56702743838712522e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_145)_ 2.56696712991384608e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_146)_ 2.56690648892927555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_147)_ 2.56684537221333535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_148)_ 2.56678377845917254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_149)_ 2.56672170634760946e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_150)_ 2.56665915454706521e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_151)_ 2.56659612171347966e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_152)_ 2.56653260649023665e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_153)_ 2.56646860750808337e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_154)_ 2.56640412338505364e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_155)_ 2.56633915272638724e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_156)_ 2.56627369412444857e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_157)_ 2.56620774615864562e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_158)_ 2.56614130739534971e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_159)_ 2.56607437638780951e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_160)_ 2.56600695167607107e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_161)_ 2.56593903178689047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_162)_ 2.56587061523365101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_163)_ 2.56580170051627725e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_164)_ 2.56573228612114690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_165)_ 2.56566237052100590e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_166)_ 2.56559195217487961e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_167)_ 2.56552102952798329e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_168)_ 2.56544960101163468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_169)_ 2.56537766504316167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_170)_ 2.56530522002581343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_171)_ 2.56523226434866771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_172)_ 2.56515879638653921e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_173)_ 2.56508481449988572e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_174)_ 2.56501031703471511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_175)_ 2.56490324248465029e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_176)_ 2.56479027942553373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_177)_ 2.56467653774982125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_178)_ 2.56456201489604716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_179)_ 2.56444670828041836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_180)_ 2.56433061529666695e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_181)_ 2.56421373331590381e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_182)_ 2.56409605968646837e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_183)_ 2.56397759173378006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_184)_ 2.56385832676018737e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_185)_ 2.56373826204481539e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_186)_ 2.56361739484341342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_187)_ 2.56349572238820151e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_188)_ 2.56337324188771589e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_189)_ 2.56324995052665194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_190)_ 2.56312584546570861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_191)_ 2.56300092384143028e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_192)_ 2.56287518276604871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_193)_ 2.56274861932732279e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_194)_ 2.56262123058837901e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_195)_ 2.56249301358754877e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_196)_ 2.56236396533820781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_197)_ 2.56223408282861271e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_198)_ 2.56210336302173616e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_199)_ 2.56198103222566580e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_200)_ 2.56189196640394137e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_201)_ 2.56180233111351576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_202)_ 2.56171212424228578e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_203)_ 2.56162134366058254e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_204)_ 2.56152998722105707e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_205)_ 2.56143805275856771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_206)_ 2.56134553809006604e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_207)_ 2.56125244101448111e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_208)_ 2.56115875931260746e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_209)_ 2.56106449074698617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_210)_ 2.56096963306179326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_211)_ 2.56087418398272142e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_212)_ 2.56077814121686558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_213)_ 2.56068150245260533e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_214)_ 2.56058426535948982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_215)_ 2.56048642758812051e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_216)_ 2.56038798677003498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_217)_ 2.56028894051758975e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_218)_ 2.56018928642384367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_219)_ 2.56008902206244109e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_220)_ 2.55998232778207750e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_221)_ 2.55983103370037099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_222)_ 2.55967881886894091e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_223)_ 2.55952567955332455e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_224)_ 2.55937161198925018e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_225)_ 2.55921661238246223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_226)_ 2.55906067690855075e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_227)_ 2.55890380171277876e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_228)_ 2.55874598290991067e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_229)_ 2.55858721658404242e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_230)_ 2.55842749878843136e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_231)_ 2.55826682554532816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_232)_ 2.55810519284580771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_233)_ 2.55794259664960428e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_234)_ 2.55777903288494493e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_235)_ 2.55761449744838636e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_236)_ 2.55744898620465158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_237)_ 2.55728249498646925e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_238)_ 2.55711501959441527e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_239)_ 2.55692829487713844e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_240)_ 2.55670093819331434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_241)_ 2.55647224389735932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_242)_ 2.55624220618034030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_243)_ 2.55601081918915831e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_244)_ 2.55577807702635269e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_245)_ 2.55554397374990963e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_246)_ 2.55530850337307527e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_247)_ 2.55507165986417064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_248)_ 2.55483343714641400e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_249)_ 2.55459382909774568e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_250)_ 2.55435282955066079e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_251)_ 2.55411043229204360e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_252)_ 2.55386663106301093e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_253)_ 2.55362141955875863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_254)_ 2.55337479142841914e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_255)_ 2.55312674027491830e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_256)_ 2.55290901088648745e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_257)_ 2.55272300296192114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_258)_ 2.55253592569744860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_259)_ 2.55234777421290282e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_260)_ 2.55215854359343233e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_261)_ 2.55196822888943657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_262)_ 2.55177682511650481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_263)_ 2.55158432725536244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_264)_ 2.55139073025182697e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_265)_ 2.55119602901677105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_266)_ 2.55100021842609372e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_267)_ 2.55080329332070050e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_268)_ 2.55060524850649593e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_269)_ 2.55040607875437928e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_270)_ 2.55020577880025847e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_271)_ 2.55000434334506885e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_272)_ 2.54973232275336983e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_273)_ 2.54945723287726125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_274)_ 2.54918058796608022e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_275)_ 2.54890238067611463e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_276)_ 2.54862260361681123e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_277)_ 2.54834124935090749e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_278)_ 2.54805831039458077e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_279)_ 2.54777377921762032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_280)_ 2.54748764824361871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_281)_ 2.54719990985018754e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_282)_ 2.54691055636919543e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_283)_ 2.54661958008703202e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_284)_ 2.54632697324489712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_285)_ 2.54603272803911480e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_286)_ 2.54573857165012711e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_287)_ 2.54544298783741105e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_288)_ 2.54514575294214147e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_289)_ 2.54484685903748584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_290)_ 2.54454629815404196e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_291)_ 2.54424406228033710e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_292)_ 2.54394014336336127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_293)_ 2.54363453330914027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_294)_ 2.54332722398334674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_295)_ 2.54301820721194893e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_296)_ 2.54270747478190700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_297)_ 2.54239501844190663e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_298)_ 2.54208082990314495e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_299)_ 2.54176599033181070e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_300)_ 2.54144978455991790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_301)_ 2.54113182965002196e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_302)_ 2.54081211721123346e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_303)_ 2.54049063881999402e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_304)_ 2.54016738602117016e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_305)_ 2.53984235032921042e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_306)_ 2.53951552322936109e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_307)_ 2.53918689617895303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_308)_ 2.53885646060875274e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_309)_ 2.53852420792438700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_310)_ 2.53819012950784000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_311)_ 2.53785256359271010e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_312)_ 2.53751097775007075e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_313)_ 2.53716751919780990e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_314)_ 2.53682217914130987e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_315)_ 2.53647494877085720e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_316)_ 2.53612581926367753e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_317)_ 2.53577478178607123e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_318)_ 2.53542182749565157e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_319)_ 2.53506694754369235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_320)_ 2.53471013307758639e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_321)_ 2.53435137524342231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_322)_ 2.53398847605449582e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_323)_ 2.53354075385394459e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_324)_ 2.53309059977399151e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_325)_ 2.53263800291284547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_326)_ 2.53218295238539959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_327)_ 2.53172543732741246e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_328)_ 2.53126544689988791e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_329)_ 2.53080297029364694e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_330)_ 2.53033799673411721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_331)_ 2.52987051548633133e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_332)_ 2.52940051586015748e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_333)_ 2.52892661723340950e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_334)_ 2.52844251121511832e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_335)_ 2.52795580655898142e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_336)_ 2.52746649261248351e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_337)_ 2.52697455879924640e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_338)_ 2.52647999462595720e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_339)_ 2.52598278968960379e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_340)_ 2.52548293368502925e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_341)_ 2.52498041641282178e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_342)_ 2.52447522778755022e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_343)_ 2.52396809757173664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_344)_ 2.52346910664492583e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_345)_ 2.52296747608599219e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_346)_ 2.52246319657145328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_347)_ 2.52195625893509003e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_348)_ 2.52144665417836009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_349)_ 2.52093437348126166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_350)_ 2.52041940821367341e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_351)_ 2.51990174994718608e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_352)_ 2.51938139046745100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_353)_ 2.51882828882549887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_354)_ 2.51819104710810215e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_355)_ 2.51755050342332076e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_356)_ 2.51690664901636296e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_357)_ 2.51625947547703639e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_358)_ 2.51560897475906451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_359)_ 2.51495513920023868e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_360)_ 2.51429796154344807e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_361)_ 2.51363743495861982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_362)_ 2.51297762999293752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_363)_ 2.51241324575048637e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_364)_ 2.51184601386763013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_365)_ 2.51127593021428623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_366)_ 2.51070299112720470e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_367)_ 2.51012719343393336e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_368)_ 2.50954853447782220e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_369)_ 2.50896701214412303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_370)_ 2.50838262488722705e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_371)_ 2.50775864738906513e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_372)_ 2.50706262010536989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_373)_ 2.50636321263578061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_374)_ 2.50566042619276033e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_375)_ 2.50495426284307072e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_376)_ 2.50424472554934070e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_377)_ 2.50353181821346560e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_378)_ 2.50281554572192384e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_379)_ 2.50209591399309943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_380)_ 2.50137245865493654e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_381)_ 2.50064558459902457e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_382)_ 2.49991537325092530e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_383)_ 2.49918183518126078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_384)_ 2.49844498226364173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_385)_ 2.49770482773618987e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_386)_ 2.49696138626582140e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_387)_ 2.49621467401542887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_388)_ 2.49537430932487716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_389)_ 2.49449391094560440e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_390)_ 2.49360975742926030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_391)_ 2.49272187552160958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_392)_ 2.49183029416644253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_393)_ 2.49093504460814614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_394)_ 2.49003616049900032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_395)_ 2.48913367801143295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_396)_ 2.48833737202543084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_397)_ 2.48755704059956138e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_398)_ 2.48677372914968657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_399)_ 2.48598747841324794e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_400)_ 2.48519833184311061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_401)_ 2.48440633573437637e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_402)_ 2.48361153935724879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_403)_ 2.48278310293879869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_404)_ 2.48184996116869669e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_405)_ 2.48091374889258844e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_406)_ 2.47997453914465495e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_407)_ 2.47903240932291595e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_408)_ 2.47808744139535158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_409)_ 2.47713972211631877e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_410)_ 2.47618934325384537e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_411)_ 2.47523636946239058e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_412)_ 2.47428092750225765e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_413)_ 2.47332313369518566e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_414)_ 2.47236310238291956e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_415)_ 2.47140095424516488e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_416)_ 2.47043681660755752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_417)_ 2.46947082376621836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_418)_ 2.46857386814706565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_419)_ 2.46774261126302399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_420)_ 2.46691014774297237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_421)_ 2.46607661977547998e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_422)_ 2.46524217716853471e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_423)_ 2.46440697773650292e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_424)_ 2.46357118771015529e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_425)_ 2.46269050614417218e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_426)_ 2.46171369636785862e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_427)_ 2.46073684347809660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_428)_ 2.45976018632491353e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_429)_ 2.45878397646862474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_430)_ 2.45780847887434675e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_431)_ 2.45683397265462169e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_432)_ 2.45588082545247630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_433)_ 2.45504926652243114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_434)_ 2.45421935239294200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_435)_ 2.45339137770530726e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_436)_ 2.45256565316717392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_437)_ 2.45174250654319117e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_438)_ 2.45092228373095189e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_439)_ 2.45010534993309079e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_440)_ 2.44929117251689057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_441)_ 2.44848094630210120e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_442)_ 2.44767523984407660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_443)_ 2.44687451030096099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_444)_ 2.44607924201329183e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_445)_ 2.44528994862587759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_446)_ 2.44450717546796135e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_447)_ 2.44373198522838457e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_448)_ 2.44296541048924958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_449)_ 2.44220719574474714e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_450)_ 2.44145804265463369e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_451)_ 2.44071870234816437e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_452)_ 2.43998998085605940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_453)_ 2.43927274552726701e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_454)_ 2.43856793268818990e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_455)_ 2.43789703112497200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_456)_ 2.43733245603536979e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_457)_ 2.43678101763207842e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_458)_ 2.43624382439293221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_459)_ 2.43572210485645719e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_460)_ 2.43521723243238526e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_461)_ 2.43473075872266307e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_462)_ 2.43426445957949085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_463)_ 2.43382040101563604e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_464)_ 2.43340103764151685e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_465)_ 2.43300936786758584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_466)_ 2.43257875957127823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_467)_ 2.43219022109298635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_468)_ 2.43185460021154434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_469)_ 2.43158730892924204e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_0)___ 2.57041131980371702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_1)___ 2.57041112533141352e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_2)___ 2.57041054191085969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_3)___ 2.57040956953112314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_4)___ 2.57040820817398199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_5)___ 2.57040645781392598e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_6)___ 2.57040431841815220e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_7)___ 2.57040178994656543e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_8)___ 2.57039887235177531e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_9)___ 2.57039556557909386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_10)__ 2.57039186956653296e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_11)__ 2.57038778424479943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_12)__ 2.57038330953729357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_13)__ 2.57037844536010418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_14)__ 2.57037319162200326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_15)__ 2.57036754822444209e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_16)__ 2.57036151506154553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_17)__ 2.57035509202010743e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_18)__ 2.57034827897958245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_19)__ 2.57034107581208175e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_20)__ 2.57033348238236563e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_21)__ 2.57032549854783454e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_22)__ 2.57031712415852418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_23)__ 2.57030835905709623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_24)__ 2.57029920307882911e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_25)__ 2.57028965605161055e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_26)__ 2.57027971779592797e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_27)__ 2.57026938812485852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_28)__ 2.57025866684405884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_29)__ 2.57024755375175644e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_30)__ 2.57023604863873665e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_31)__ 2.57022415128833259e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_32)__ 2.57021186147641316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_33)__ 2.57019917897137198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_34)__ 2.57018610353411354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_35)__ 2.57017263491804115e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_36)__ 2.57015877286904413e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_37)__ 2.57014451712548393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_38)__ 2.57012986741817926e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_39)__ 2.57011482347039255e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_40)__ 2.57009938499781505e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_41)__ 2.57008355170855118e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_42)__ 2.57006732330310328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_43)__ 2.57005069947435558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_44)__ 2.57003367990755649e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_45)__ 2.57001626428030363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_46)__ 2.56999845226252503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_47)__ 2.56998024351646173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_48)__ 2.56996163769664996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_49)__ 2.56994263444990239e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_50)__ 2.56992323341528888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_51)__ 2.56990343422411662e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_52)__ 2.56988323649991202e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_53)__ 2.56986263985839791e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_54)__ 2.56984164390747516e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_55)__ 2.56982024824719950e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_56)__ 2.56979845246976133e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_57)__ 2.56977625615946366e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_58)__ 2.56975365889269867e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_59)__ 2.56973066023792533e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_60)__ 2.56970725975564633e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_61)__ 2.56968345699838352e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_62)__ 2.56965925151065520e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_63)__ 2.56963464282894947e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_64)__ 2.56960963048170044e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_65)__ 2.56958421398926227e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_66)__ 2.56955839286388326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_67)__ 2.56953216660967882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_68)__ 2.56950553472260594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_69)__ 2.56947849669043400e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_70)__ 2.56945105199271744e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_71)__ 2.56942320010076912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_72)__ 2.56939494047762906e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_73)__ 2.56936627257803671e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_74)__ 2.56933719584840041e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_75)__ 2.56930770972676861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_76)__ 2.56927781364279753e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_77)__ 2.56924750701772062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_78)__ 2.56921678926431731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_79)__ 2.56918565978688136e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_80)__ 2.56915411798118676e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_81)__ 2.56912216323445541e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_82)__ 2.56908979492532410e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_83)__ 2.56905701242381070e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_84)__ 2.56902381509127800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_85)__ 2.56899020050470490e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_86)__ 2.56895616539217642e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_87)__ 2.56892171340490272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_88)__ 2.56888684386915287e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_89)__ 2.56885155610236140e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_90)__ 2.56881584941308887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_91)__ 2.56877972310098421e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_92)__ 2.56874317645674779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_93)__ 2.56870620876208946e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_94)__ 2.56866881928969129e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_95)__ 2.56863100730316702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_96)__ 2.56859277205702057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_97)__ 2.56855411279660544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_98)__ 2.56851502875808357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_99)__ 2.56847551916838164e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_100)_ 2.56843558324514980e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_101)_ 2.56839522019671769e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_102)_ 2.56835442922205104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_103)_ 2.56831320951070623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_104)_ 2.56827156024278658e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_105)_ 2.56822948058889651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_106)_ 2.56818696971009466e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_107)_ 2.56814402675784912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_108)_ 2.56810065087398876e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_109)_ 2.56805684119065525e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_110)_ 2.56801259683025691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_111)_ 2.56796791690541752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_112)_ 2.56792280051892838e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_113)_ 2.56787724676369784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_114)_ 2.56783125472270015e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_115)_ 2.56778482346892609e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_116)_ 2.56773795206532967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_117)_ 2.56769063956477588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_118)_ 2.56764288500998887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_119)_ 2.56759468743349757e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_120)_ 2.56754604585758237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_121)_ 2.56749695929421975e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_122)_ 2.56744742674502682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_123)_ 2.56739744720120697e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_124)_ 2.56734701964349199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_125)_ 2.56729614304208482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_126)_ 2.56724481635660382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_127)_ 2.56719303853602163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_128)_ 2.56714080851860871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_129)_ 2.56708812523187255e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_130)_ 2.56703498759249840e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_131)_ 2.56698149074348763e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_132)_ 2.56692772067787445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_133)_ 2.56687349531142566e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_134)_ 2.56681881352275099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_135)_ 2.56676367417938600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_136)_ 2.56670807613772638e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_137)_ 2.56665201824296503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_138)_ 2.56659549932902706e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_139)_ 2.56653851821850338e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_140)_ 2.56648107372258600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_141)_ 2.56642316464099984e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_142)_ 2.56636478976193629e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_143)_ 2.56630594786198394e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_144)_ 2.56624663770606176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_145)_ 2.56618685804734739e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_146)_ 2.56612660762720886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_147)_ 2.56606588517513288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_148)_ 2.56600468940865447e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_149)_ 2.56594301903328308e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_150)_ 2.56588087274243222e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_151)_ 2.56581824921734487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_152)_ 2.56575514712701853e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_153)_ 2.56569156512813237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_154)_ 2.56562750186497119e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_155)_ 2.56556295596934874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_156)_ 2.56549792606053195e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_157)_ 2.56543241074516288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_158)_ 2.56536640861718119e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_159)_ 2.56529991825774566e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_160)_ 2.56523293823515317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_161)_ 2.56516546710476092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_162)_ 2.56509750340890470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_163)_ 2.56502904567681753e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_164)_ 2.56494031690173152e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_165)_ 2.56483645172769847e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_166)_ 2.56473184098860223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_167)_ 2.56462648240524231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_168)_ 2.56452037367820012e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_169)_ 2.56441351248770886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_170)_ 2.56430589649352783e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_171)_ 2.56419752333481057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_172)_ 2.56408839062997522e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_173)_ 2.56397849597657341e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_174)_ 2.56386783695115597e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_175)_ 2.56375641110914216e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_176)_ 2.56364421598468262e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_177)_ 2.56353124909052461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_178)_ 2.56341750791787746e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_179)_ 2.56330298993627252e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_180)_ 2.56318769259342751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_181)_ 2.56307161331510471e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_182)_ 2.56295474950497422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_183)_ 2.56283709854446968e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_184)_ 2.56271865779264871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_185)_ 2.56259942458604932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_186)_ 2.56247939623854677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_187)_ 2.56235857004120824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_188)_ 2.56223694326214861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_189)_ 2.56211451314638374e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_190)_ 2.56199413211885805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_191)_ 2.56191068890611007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_192)_ 2.56182669964751675e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_193)_ 2.56174216242669850e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_194)_ 2.56165707531123701e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_195)_ 2.56157143635257576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_196)_ 2.56148524358591771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_197)_ 2.56139849503012265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_198)_ 2.56131118868760446e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_199)_ 2.56122332254422922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_200)_ 2.56113489456921002e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_201)_ 2.56104590271500427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_202)_ 2.56095634491720858e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_203)_ 2.56086621909445427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_204)_ 2.56077552314830399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_205)_ 2.56068425496314376e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_206)_ 2.56059241240607918e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_207)_ 2.56049999332682994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_208)_ 2.56040699555762288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_209)_ 2.56031341691308612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_210)_ 2.56021925519014317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_211)_ 2.56012450816790533e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_212)_ 2.56002917360756683e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_213)_ 2.55990049493752814e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_214)_ 2.55975661830324341e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_215)_ 2.55961185565435976e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_216)_ 2.55946620354506571e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_217)_ 2.55931965850204435e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_218)_ 2.55917221702431377e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_219)_ 2.55902387558306970e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_220)_ 2.55887463062152634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_221)_ 2.55872447855475862e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_222)_ 2.55857341576954553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_223)_ 2.55842143862421132e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_224)_ 2.55826854344847163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_225)_ 2.55811472654327510e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_226)_ 2.55795998418065089e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_227)_ 2.55780431260355243e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_228)_ 2.55764770802570496e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_229)_ 2.55749016663145419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_230)_ 2.55733168457561391e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_231)_ 2.55717225798331675e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_232)_ 2.55701188294986537e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_233)_ 2.55679949306617900e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_234)_ 2.55658175988804821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_235)_ 2.55636273824485762e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_236)_ 2.55614242273570547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_237)_ 2.55592080791870160e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_238)_ 2.55569788831078526e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_239)_ 2.55547365838754175e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_240)_ 2.55524811258302229e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_241)_ 2.55502124528956891e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_242)_ 2.55479305085764317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_243)_ 2.55456352359565635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_244)_ 2.55433265776980498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_245)_ 2.55410044760391273e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_246)_ 2.55386688727927229e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_247)_ 2.55363197093449621e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_248)_ 2.55339569266537012e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_249)_ 2.55315804652471314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_250)_ 2.55293997324229451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_251)_ 2.55276176147694649e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_252)_ 2.55258252227126405e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_253)_ 2.55240225108815757e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_254)_ 2.55222094335823186e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_255)_ 2.55203859447971055e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_256)_ 2.55185519981836642e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_257)_ 2.55167075470745743e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_258)_ 2.55148525444766818e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_259)_ 2.55129869430705973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_260)_ 2.55111106952102453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_261)_ 2.55092237529224946e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_262)_ 2.55073260679068596e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_263)_ 2.55054175915352843e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_264)_ 2.55034982748520065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_265)_ 2.55015680685735013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_266)_ 2.54994962280344168e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_267)_ 2.54968602281386012e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_268)_ 2.54942093215416854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_269)_ 2.54915434399268648e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_270)_ 2.54888625145363505e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_271)_ 2.54861664761721585e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_272)_ 2.54834552551969935e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_273)_ 2.54807287815353298e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_274)_ 2.54779869846746791e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_275)_ 2.54752297936670047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_276)_ 2.54724571371303448e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_277)_ 2.54696689432506425e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_278)_ 2.54668651397837529e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_279)_ 2.54640456540576849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_280)_ 2.54612104129750740e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_281)_ 2.54583701598205572e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_282)_ 2.54555220889146554e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_283)_ 2.54526581461730075e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_284)_ 2.54497782573190854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_285)_ 2.54468823476696784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_286)_ 2.54439703421388934e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_287)_ 2.54410421652424290e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_288)_ 2.54380977411021760e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_289)_ 2.54351369934511418e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_290)_ 2.54321598456386901e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_291)_ 2.54291662206361622e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_292)_ 2.54261560410428302e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_293)_ 2.54231292290922468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_294)_ 2.54200857066589947e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_295)_ 2.54170391801174311e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_296)_ 2.54139762611428068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_297)_ 2.54108964737642289e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_298)_ 2.54077997388646111e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_299)_ 2.54046859770095992e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_300)_ 2.54015551084569786e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_301)_ 2.53984070531666610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_302)_ 2.53952417308111471e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_303)_ 2.53920590607866039e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_304)_ 2.53888589622245036e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_305)_ 2.53856413540038943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_306)_ 2.53824061547642756e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_307)_ 2.53791436814732201e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_308)_ 2.53758359675810361e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_309)_ 2.53725102150322464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_310)_ 2.53691663407189480e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_311)_ 2.53658042613667867e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_312)_ 2.53624238935524495e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_313)_ 2.53590251537220084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_314)_ 2.53556079582101326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_315)_ 2.53521722232602578e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_316)_ 2.53487178650456677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_317)_ 2.53452447996916064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_318)_ 2.53417529432984274e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_319)_ 2.53378299878993865e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_320)_ 2.53334725396843581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_321)_ 2.53290915830840326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_322)_ 2.53246870147134082e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_323)_ 2.53202587313207061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_324)_ 2.53158066298247881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_325)_ 2.53113306073542859e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_326)_ 2.53068305612884785e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_327)_ 2.53023063893000248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_328)_ 2.52977579893995888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_329)_ 2.52931852599824580e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_330)_ 2.52885612396707700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_331)_ 2.52838516244161511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_332)_ 2.52791169090422869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_333)_ 2.52743569920978821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_334)_ 2.52695717727945386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_335)_ 2.52647611510683170e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_336)_ 2.52599250276439271e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_337)_ 2.52550633041017747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_338)_ 2.52501758829478646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_339)_ 2.52452626676867808e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_340)_ 2.52403235628978138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_341)_ 2.52354636589894419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_342)_ 2.52305856016732548e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_343)_ 2.52256819688488854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_344)_ 2.52207526722696542e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_345)_ 2.52157976251621712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_346)_ 2.52108167423221303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_347)_ 2.52058099402142481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_348)_ 2.52007771370764253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_349)_ 2.51957182530283994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_350)_ 2.51906332101850587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_351)_ 2.51845726716420302e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_352)_ 2.51783460202447351e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_353)_ 2.51720873976934989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_354)_ 2.51657967207596407e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_355)_ 2.51594739094122630e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_356)_ 2.51531188869947080e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_357)_ 2.51467315804085843e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_358)_ 2.51403119203056029e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_359)_ 2.51338598412876308e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_360)_ 2.51277798955157650e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_361)_ 2.51222674423262049e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_362)_ 2.51167274236593165e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_363)_ 2.51111597994046640e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_364)_ 2.51055645337539133e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_365)_ 2.50999415954183505e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_366)_ 2.50942909578557476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_367)_ 2.50886125995069342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_368)_ 2.50829065040425299e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_369)_ 2.50766652416192954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_370)_ 2.50698696187656438e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_371)_ 2.50630412631829849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_372)_ 2.50561801834536020e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_373)_ 2.50492863959822785e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_374)_ 2.50423599253712013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_375)_ 2.50354008048110686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_376)_ 2.50284090764892007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_377)_ 2.50213847920153576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_378)_ 2.50143237492038395e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_379)_ 2.50072292181963078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_380)_ 2.50001023226320633e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_381)_ 2.49929431565234275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_382)_ 2.49857518257389586e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_383)_ 2.49785284485544921e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_384)_ 2.49712731562285235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_385)_ 2.49639860936030402e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_386)_ 2.49561046173301442e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_387)_ 2.49475132276331557e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_388)_ 2.49388853129760619e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_389)_ 2.49302211138396608e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_390)_ 2.49215208905914167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_391)_ 2.49127849243983057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_392)_ 2.49040135181809106e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_393)_ 2.48952069976107779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_394)_ 2.48868820651193339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_395)_ 2.48792674289256901e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_396)_ 2.48716236318280934e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_397)_ 2.48639510406664783e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_398)_ 2.48562500467020833e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_399)_ 2.48485210667380976e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_400)_ 2.48407645442926714e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_401)_ 2.48329809508270216e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_402)_ 2.48243687393192545e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_403)_ 2.48152310803816007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_404)_ 2.48060637145502625e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_405)_ 2.47968673376527846e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_406)_ 2.47876426863513117e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_407)_ 2.47783905400394957e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_408)_ 2.47691117228325197e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_409)_ 2.47598070974795519e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_410)_ 2.47504772048183170e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_411)_ 2.47411234023355924e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_412)_ 2.47317467150344612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_413)_ 2.47223482241902310e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_414)_ 2.47129290700263553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_415)_ 2.47034904545303284e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_416)_ 2.46940336444187061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_417)_ 2.46853345761722025e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_418)_ 2.46771966022696496e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_419)_ 2.46690466441204670e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_420)_ 2.46608860384169404e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_421)_ 2.46527161923156406e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_422)_ 2.46445385869520059e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_423)_ 2.46363547811603212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_424)_ 2.46278586981616030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_425)_ 2.46182928289419678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_426)_ 2.46087257719219892e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_427)_ 2.45991597594291207e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_428)_ 2.45895971405721454e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_429)_ 2.45800403874937032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_430)_ 2.45704921020456624e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_431)_ 2.45609550229276792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_432)_ 2.45526671653476001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_433)_ 2.45445316376422511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_434)_ 2.45364135031100865e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_435)_ 2.45283156446413102e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_436)_ 2.45202411003191614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_437)_ 2.45121930729556858e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_438)_ 2.45041749404521454e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_439)_ 2.44961853244487138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_440)_ 2.44882275624321721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_441)_ 2.44803110512873445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_442)_ 2.44724399989341208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_443)_ 2.44646188573033214e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_444)_ 2.44568523406967770e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_445)_ 2.44491454462855771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_446)_ 2.44415034771158943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_447)_ 2.44339429834406801e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_448)_ 2.44264616129487457e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_449)_ 2.44190630408682061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_450)_ 2.44117540800704660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_451)_ 2.44045420215124018e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_452)_ 2.43974346869070864e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_453)_ 2.43904404909728605e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_454)_ 2.43835685157684736e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_455)_ 2.43773546077891048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_456)_ 2.43718516596298471e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_457)_ 2.43664775657032884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_458)_ 2.43612430734908614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_459)_ 2.43561600946822026e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_460)_ 2.43512419464245617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_461)_ 2.43465036753842874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_462)_ 2.43419625057474214e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_463)_ 2.43376384803952952e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_464)_ 2.43335554185857177e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_465)_ 2.43296907081920182e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_466)_ 2.43254807759924390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_467)_ 2.43216990355699174e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_468)_ 2.43184326353432887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_469)_ 2.43158314331593211e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_470)_ 2.43143232422163713e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_471)_ 2.42768029686254252e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_472)_ 2.42433235272070853e+01 OP @@ -11532,476 +11529,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_498)_ 1.72686501991962658e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_499)_ 1.61073314312430398e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile9_500)_ 1.03943400039871836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_0)__ 2.75333065260570073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_1)__ 2.75333036049297490e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_2)__ 2.75332948414927188e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_3)__ 2.75332802355801327e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_4)__ 2.75332597869156750e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_5)__ 2.75332334951124835e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_6)__ 2.75332013596731358e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_7)__ 2.75331633799896025e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_8)__ 2.75331195553432373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_9)__ 2.75330698849047231e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_10)_ 2.75330143677340260e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_11)_ 2.75329530027803635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_12)_ 2.75328857888821190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_13)_ 2.75328127247668064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_14)_ 2.75327338090509741e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_15)_ 2.75326490402401589e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_16)_ 2.75325584167287793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_17)_ 2.75324619368000683e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_18)_ 2.75323595986259626e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_19)_ 2.75322514002670182e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_20)_ 2.75321373396722962e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_21)_ 2.75320174146792596e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_22)_ 2.75318916230136423e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_23)_ 2.75317599622893354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_24)_ 2.75316224300082695e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_25)_ 2.75314790235602445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_26)_ 2.75313297402228265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_27)_ 2.75311745771611776e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_28)_ 2.75310135314278988e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_29)_ 2.75308465999628851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_30)_ 2.75306737795931511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_31)_ 2.75304950670326569e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_32)_ 2.75303104588821341e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_33)_ 2.75301199516288939e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_34)_ 2.75299232057041614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_35)_ 2.75297200003153897e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_36)_ 2.75295108586346373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_37)_ 2.75292957766761361e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_38)_ 2.75290747503391806e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_39)_ 2.75288477754079111e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_40)_ 2.75286148475510686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_41)_ 2.75283759623217676e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_42)_ 2.75281311151572474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_43)_ 2.75278803013786302e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_44)_ 2.75276235161906619e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_45)_ 2.75273607546814532e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_46)_ 2.75270920118222016e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_47)_ 2.75268172824669186e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_48)_ 2.75265365613521631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_49)_ 2.75262498430967355e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_50)_ 2.75259571222013868e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_51)_ 2.75256583930485235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_52)_ 2.75253536499018914e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_53)_ 2.75250428869062702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_54)_ 2.75247260980871360e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_55)_ 2.75244032773503591e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_56)_ 2.75240744184818382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_57)_ 2.75237395151471844e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_58)_ 2.75233985608913621e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_59)_ 2.75230515491383265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_60)_ 2.75226984731906796e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_61)_ 2.75223393262292824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_62)_ 2.75219741013128925e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_63)_ 2.75216027913777772e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_64)_ 2.75212253892373120e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_65)_ 2.75208418875816108e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_66)_ 2.75204522789770927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_67)_ 2.75200565558660912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_68)_ 2.75196547105664244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_69)_ 2.75192467352709791e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_70)_ 2.75188326220472703e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_71)_ 2.75184123628370045e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_72)_ 2.75179859494556389e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_73)_ 2.75175533735919160e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_74)_ 2.75171146268074089e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_75)_ 2.75166697005360597e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_76)_ 2.75162185860836850e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_77)_ 2.75157612746275078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_78)_ 2.75152977572156630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_79)_ 2.75148280247666932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_80)_ 2.75143520680690550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_81)_ 2.75138698777805892e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_82)_ 2.75133814444280098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_83)_ 2.75128867584063777e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_84)_ 2.75123858099785572e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_85)_ 2.75118785892746693e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_86)_ 2.75113650862915513e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_87)_ 2.75108452908921883e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_88)_ 2.75103191928051416e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_89)_ 2.75097867816239834e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_90)_ 2.75092480468067073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_91)_ 2.75087029776751386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_92)_ 2.75081515634143301e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_93)_ 2.75075937930719618e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_94)_ 2.75070296555577158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_95)_ 2.75064591396426614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_96)_ 2.75058822339586193e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_97)_ 2.75052989269975150e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_98)_ 2.75047092071107393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_99)_ 2.75041130625084875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_100)_ 2.75035104812590916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_101)_ 2.75029014512883414e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_102)_ 2.75022859603788206e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_103)_ 2.75016639961691958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_104)_ 2.75010355461535205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_105)_ 2.75004005976805388e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_106)_ 2.74997590943001882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_107)_ 2.74991109929362167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_108)_ 2.74984563530972395e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_109)_ 2.74977951615410667e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_110)_ 2.74971274048764869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_111)_ 2.74964530695625093e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_112)_ 2.74957721419075902e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_113)_ 2.74950846080688542e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_114)_ 2.74943904540513060e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_115)_ 2.74936896657070413e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_116)_ 2.74929822287344194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_117)_ 2.74922681286772672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_118)_ 2.74915473509240371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_119)_ 2.74908198807069901e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_120)_ 2.74900857031013359e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_121)_ 2.74893448030243803e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_122)_ 2.74885971652346761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_123)_ 2.74878427743311242e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_124)_ 2.74870816147521246e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_125)_ 2.74863136707746563e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_126)_ 2.74855389265133851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_127)_ 2.74847573659197550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_128)_ 2.74839689727810601e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_129)_ 2.74831737307195212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_130)_ 2.74823716231913338e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_131)_ 2.74815626334857335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_132)_ 2.74807467447240121e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_133)_ 2.74799239398585691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_134)_ 2.74790942016719093e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_135)_ 2.74782575127756665e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_136)_ 2.74774138556095942e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_137)_ 2.74765632124405634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_138)_ 2.74757055653615190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_139)_ 2.74748408962904698e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_140)_ 2.74739691869694376e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_141)_ 2.74730904189633875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_142)_ 2.74722045736591980e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_143)_ 2.74713116322645519e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_144)_ 2.74704115758068745e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_145)_ 2.74693425982769206e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_146)_ 2.74681297785855065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_147)_ 2.74669074442666989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_148)_ 2.74656755691834498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_149)_ 2.74644341269521881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_150)_ 2.74631830909412997e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_151)_ 2.74619224342695922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_152)_ 2.74606521298047284e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_153)_ 2.74593721501616628e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_154)_ 2.74580824677010717e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_155)_ 2.74567830545277438e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_156)_ 2.74554738824889668e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_157)_ 2.74541549231729149e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_158)_ 2.74528261479069897e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_159)_ 2.74514875277561892e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_160)_ 2.74501390335214168e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_161)_ 2.74487806357378084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_162)_ 2.74474123046730227e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_163)_ 2.74460340103255405e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_164)_ 2.74446457224229370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_165)_ 2.74432474104201205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_166)_ 2.74418390434975947e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_167)_ 2.74404205905596683e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_168)_ 2.74389920202326927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_169)_ 2.74375533008632360e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_170)_ 2.74361044005162711e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_171)_ 2.74346452869733568e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_172)_ 2.74331759277307832e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_173)_ 2.74316962899977135e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_174)_ 2.74302063406943084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_175)_ 2.74290324248465041e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_176)_ 2.74279027942553384e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_177)_ 2.74267653774982101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_178)_ 2.74256201489604727e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_179)_ 2.74244670828041812e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_180)_ 2.74233061529666706e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_181)_ 2.74221373331590392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_182)_ 2.74209605968646848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_183)_ 2.74197759173378017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_184)_ 2.74185832676018748e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_185)_ 2.74173826204481514e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_186)_ 2.74161739484341318e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_187)_ 2.74149572238820163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_188)_ 2.74137324188771601e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_189)_ 2.74124995052665206e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_190)_ 2.74112584546570837e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_191)_ 2.74100092384143039e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_192)_ 2.74087518276604882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_193)_ 2.74074861932732290e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_194)_ 2.74062123058837876e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_195)_ 2.74049301358754853e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_196)_ 2.74036396533820756e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_197)_ 2.74023408282861247e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_198)_ 2.74010336302173592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_199)_ 2.73996206445133090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_200)_ 2.73978393280788275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_201)_ 2.73960466222703154e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_202)_ 2.73942424848457158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_203)_ 2.73924268732116474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_204)_ 2.73905997444211380e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_205)_ 2.73887610551713507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_206)_ 2.73869107618013139e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_207)_ 2.73850488202896223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_208)_ 2.73831751862521422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_209)_ 2.73812898149397199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_210)_ 2.73793926612358618e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_211)_ 2.73774836796544285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_212)_ 2.73755628243373081e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_213)_ 2.73736300490520996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_214)_ 2.73716853071897894e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_215)_ 2.73697285517624032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_216)_ 2.73677597354006927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_217)_ 2.73657788103517881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_218)_ 2.73637857284768664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_219)_ 2.73617804412488184e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_220)_ 2.73597054630346221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_221)_ 2.73571838950061839e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_222)_ 2.73546469811490134e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_223)_ 2.73520946592220753e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_224)_ 2.73495268664874978e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_225)_ 2.73469435397076985e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_226)_ 2.73443446151425107e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_227)_ 2.73417300285463121e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_228)_ 2.73390997151651760e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_229)_ 2.73364536097340398e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_230)_ 2.73337916464738555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_231)_ 2.73311137590887974e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_232)_ 2.73284198807634588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_233)_ 2.73257099441600673e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_234)_ 2.73229838814157482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_235)_ 2.73202416241397685e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_236)_ 2.73174831034108578e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_237)_ 2.73147082497744869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_238)_ 2.73119169932402528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_239)_ 2.73092829487713828e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_240)_ 2.73070093819331419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_241)_ 2.73047224389735916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_242)_ 2.73024220618034015e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_243)_ 2.73001081918915816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_244)_ 2.72977807702635253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_245)_ 2.72954397374990947e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_246)_ 2.72930850337307511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_247)_ 2.72907165986417048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_248)_ 2.72883343714641384e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_249)_ 2.72859382909774553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_250)_ 2.72835282955066063e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_251)_ 2.72811043229204344e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_252)_ 2.72786663106301077e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_253)_ 2.72762141955875848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_254)_ 2.72737479142841899e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_255)_ 2.72712674027491815e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_256)_ 2.72684835147747897e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_257)_ 2.72653833826986833e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_258)_ 2.72622654282908101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_259)_ 2.72591295702150411e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_260)_ 2.72559757265571996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_261)_ 2.72528038148239418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_262)_ 2.72496137519417445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_263)_ 2.72464054542560383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_264)_ 2.72431788375304507e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_265)_ 2.72399338169461842e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_266)_ 2.72366703071015586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_267)_ 2.72333882220116763e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_268)_ 2.72300874751082631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_269)_ 2.72267679792396535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_270)_ 2.72234296466709758e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_271)_ 2.72200723890844820e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_272)_ 2.72166540344171182e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_273)_ 2.72132154109657627e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_274)_ 2.72097573495760017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_275)_ 2.72062797584514335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_276)_ 2.72027825452101411e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_277)_ 2.71992656168863434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_278)_ 2.71957288799322612e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_279)_ 2.71921722402202555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_280)_ 2.71885956030452363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_281)_ 2.71849988731273449e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_282)_ 2.71813819546149418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_283)_ 2.71777447510879000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_284)_ 2.71740871655612146e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_285)_ 2.71704091004889356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_286)_ 2.71667321456265896e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_287)_ 2.71630373479676415e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_288)_ 2.71593219117767681e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_289)_ 2.71555857379685719e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_290)_ 2.71518287269255261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_291)_ 2.71480507785042136e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_292)_ 2.71442517920420130e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_293)_ 2.71404316663642540e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_294)_ 2.71365902997918305e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_295)_ 2.71327275901493614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_296)_ 2.71288434347738345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_297)_ 2.71249377305238326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_298)_ 2.71210103737893071e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_299)_ 2.71170748791476335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_300)_ 2.71131223069989744e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_301)_ 2.71091478706252751e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_302)_ 2.71051514651404162e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_303)_ 2.71011329852499223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_304)_ 2.70970923252646294e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_305)_ 2.70930293791151300e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_306)_ 2.70889440403670143e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_307)_ 2.70848362022369145e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_308)_ 2.70807057576094117e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_309)_ 2.70765525990548390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_310)_ 2.70723766188480006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_311)_ 2.70677884538906532e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_312)_ 2.70626646662510630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_313)_ 2.70575127879671484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_314)_ 2.70523326871196517e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_315)_ 2.70471242315628579e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_316)_ 2.70418872889551629e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_317)_ 2.70366217267910685e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_318)_ 2.70313274124347771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_319)_ 2.70260042131553888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_320)_ 2.70206519961637994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_321)_ 2.70152706286513364e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_322)_ 2.70098617126539544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_323)_ 2.70044890462473397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_324)_ 2.69990871972878992e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_325)_ 2.69936560349541494e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_326)_ 2.69881954286247954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_327)_ 2.69827052479289513e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_328)_ 2.69771853627986538e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_329)_ 2.69716356435237650e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_330)_ 2.69660559608094061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_331)_ 2.69604461858359734e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_332)_ 2.69548061903218894e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_333)_ 2.69491194068009143e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_334)_ 2.69433101345814201e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_335)_ 2.69374696787077781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_336)_ 2.69315979113498045e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_337)_ 2.69256947055909599e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_338)_ 2.69197599355114896e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_339)_ 2.69137934762752487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_340)_ 2.69077952042203528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_341)_ 2.69017649969538617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_342)_ 2.68957027334506051e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_343)_ 2.68896171708608414e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_344)_ 2.68836292797391110e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_345)_ 2.68776097130319087e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_346)_ 2.68715583588574383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_347)_ 2.68654751072210800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_348)_ 2.68593598501403186e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_349)_ 2.68532124817751381e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_350)_ 2.68470328985640769e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_351)_ 2.68408209993662332e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_352)_ 2.68345766856094095e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_353)_ 2.68282828882549857e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_354)_ 2.68219104710810186e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_355)_ 2.68155050342332046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_356)_ 2.68090664901636266e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_357)_ 2.68025947547703609e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_358)_ 2.67960897475906457e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_359)_ 2.67895513920023873e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_360)_ 2.67829796154344812e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_361)_ 2.67763743495861988e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_362)_ 2.67697315599152503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_363)_ 2.67629589490058351e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_364)_ 2.67561521664115638e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_365)_ 2.67493111625714342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_366)_ 2.67424358935264586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_367)_ 2.67355263212072032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_368)_ 2.67285824137338679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_369)_ 2.67216041457294793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_370)_ 2.67145914986467261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_371)_ 2.67075864738906539e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_372)_ 2.67006262010537014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_373)_ 2.66936321263578087e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_374)_ 2.66866042619276023e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_375)_ 2.66795426284307062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_376)_ 2.66724472554934096e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_377)_ 2.66653181821346550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_378)_ 2.66581554572192374e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_379)_ 2.66509591399309933e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_380)_ 2.66437245865493644e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_381)_ 2.66364558459902447e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_382)_ 2.66291537325092520e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_383)_ 2.66218183518126068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_384)_ 2.66144498226364163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_385)_ 2.66070482773618977e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_386)_ 2.65996138626582130e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_387)_ 2.65921467401542877e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_388)_ 2.65846369370703748e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_389)_ 2.65770906652480363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_390)_ 2.65695122065365155e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_391)_ 2.65619017901852246e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_392)_ 2.65542596642837943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_393)_ 2.65465860966412528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_394)_ 2.65388813757057171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_395)_ 2.65311458115265673e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_396)_ 2.65244781002119261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_397)_ 2.65179753383296806e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_398)_ 2.65114477429140543e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_399)_ 2.65048956534437359e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_400)_ 2.64983194320259230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_401)_ 2.64917194644531371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_402)_ 2.64850961613104090e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_403)_ 2.64781408823325641e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_404)_ 2.64701425243031174e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_405)_ 2.64621178476507595e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_406)_ 2.64540674783827576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_407)_ 2.64459920799107095e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_408)_ 2.64378923548173006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_409)_ 2.64297690467113036e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_410)_ 2.64216229421758158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_411)_ 2.64134545953919186e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_412)_ 2.64052650928764940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_413)_ 2.63970554316730173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_414)_ 2.63888265918535971e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_415)_ 2.63805796078156973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_416)_ 2.63723155709219199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_417)_ 2.63640356322818690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_418)_ 2.63564489012255478e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_419)_ 2.63495217605251995e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_420)_ 2.63425845645247669e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_421)_ 2.63356384981290006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_422)_ 2.63286848097377870e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_423)_ 2.63217248144708549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_424)_ 2.63147598975846257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_425)_ 2.63077893296012277e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_426)_ 2.63008121169132778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_427)_ 2.62938345962721201e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_428)_ 2.62868584737493833e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_429)_ 2.62798855462044614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_430)_ 2.62729177062453338e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_431)_ 2.62659569475330166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_432)_ 2.62590068787706379e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_433)_ 2.62520772210202615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_434)_ 2.62451612699411854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_435)_ 2.62382614808775614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_436)_ 2.62313804430597841e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_437)_ 2.62245208878599279e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_438)_ 2.62176856977579327e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_439)_ 2.62108779161090908e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_440)_ 2.62052744834459368e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_441)_ 2.61998729753473434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_442)_ 2.61945015989605139e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_443)_ 2.61891634020064075e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_444)_ 2.61838616134219464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_445)_ 2.61785996575058526e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_446)_ 2.61733811697864098e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_447)_ 2.61682132348558980e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_448)_ 2.61631027365949969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_449)_ 2.61580479716316496e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_450)_ 2.61530536176975588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_451)_ 2.61481246823210967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_452)_ 2.61432665390403969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_453)_ 2.61384849701817785e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_454)_ 2.61337862179212657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_455)_ 2.61291762489997765e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_456)_ 2.61246596482829574e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_457)_ 2.61202481410566278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_458)_ 2.61159505951434596e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_459)_ 2.61117768388516573e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_460)_ 2.61077378594590819e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_461)_ 2.61038460697813051e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_462)_ 2.61001156766359266e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_463)_ 2.60965632081250902e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_464)_ 2.60932083011321367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_465)_ 2.60900749429406886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_466)_ 2.60871917304751904e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_467)_ 2.60846014739532421e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_468)_ 2.60823640014102978e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_469)_ 2.60805820595282789e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_0)__ 2.75211697970557552e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_1)__ 2.75211668799712044e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_2)__ 2.75211581286628970e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_3)__ 2.75211435429668470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_4)__ 2.75211231226097297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_5)__ 2.75210968672088860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_6)__ 2.75210647762722793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_7)__ 2.75210268491984777e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_8)__ 2.75209830852766295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_9)__ 2.75209334836864095e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_10)_ 2.75208780434979907e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_11)_ 2.75208167636719914e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_12)_ 2.75207496430594070e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_13)_ 2.75206766804015643e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_14)_ 2.75205978743300470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_15)_ 2.75205132233666276e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_16)_ 2.75204227259231828e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_17)_ 2.75203263803016078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_18)_ 2.75202241846937348e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_19)_ 2.75201161371812262e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_20)_ 2.75200022357354825e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_21)_ 2.75198824782175180e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_22)_ 2.75197568623778643e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_23)_ 2.75196253858564432e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_24)_ 2.75194880461824347e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_25)_ 2.75193448407741563e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_26)_ 2.75191957669389176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_27)_ 2.75190408218728741e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_28)_ 2.75188800026608824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_29)_ 2.75187133062763500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_30)_ 2.75185407295810514e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_31)_ 2.75183622693249887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_32)_ 2.75181779221461973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_33)_ 2.75179876845705778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_34)_ 2.75177915530117012e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_35)_ 2.75175895237706172e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_36)_ 2.75173815930356618e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_37)_ 2.75171677568822588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_38)_ 2.75169480112726852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_39)_ 2.75167223520558863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_40)_ 2.75164907749672238e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_41)_ 2.75162532756282658e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_42)_ 2.75160098495465490e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_43)_ 2.75157604921153300e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_44)_ 2.75155051986133472e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_45)_ 2.75152439642045508e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_46)_ 2.75149767839378718e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_47)_ 2.75147036527469240e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_48)_ 2.75144245654497475e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_49)_ 2.75141395167485356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_50)_ 2.75138485012293295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_51)_ 2.75135515133617474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_52)_ 2.75132485474986765e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_53)_ 2.75129395978759668e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_54)_ 2.75126246586121219e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_55)_ 2.75123037237079906e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_56)_ 2.75119767870464216e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_57)_ 2.75116438423919547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_58)_ 2.75113048833904799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_59)_ 2.75109599035688781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_60)_ 2.75106088963346949e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_61)_ 2.75102518549757527e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_62)_ 2.75098887726598278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_63)_ 2.75095196424342419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_64)_ 2.75091444572255064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_65)_ 2.75087632098389321e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_66)_ 2.75083758929582451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_67)_ 2.75079824991451822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_68)_ 2.75075830208390890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_69)_ 2.75071774503565081e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_70)_ 2.75067657798907632e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_71)_ 2.75063480015115367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_72)_ 2.75059241071644323e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_73)_ 2.75054940886705452e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_74)_ 2.75050579377260043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_75)_ 2.75046156459015272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_76)_ 2.75041672046419592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_77)_ 2.75037126052658074e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_78)_ 2.75032518389647613e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_79)_ 2.75027848968032202e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_80)_ 2.75023117697177959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_81)_ 2.75018324485168257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_82)_ 2.75013469238798614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_83)_ 2.75008551863571604e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_84)_ 2.75003572263691680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_85)_ 2.74998530075705716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_86)_ 2.74993424808826461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_87)_ 2.74988257010735389e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_88)_ 2.74983026580372929e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_89)_ 2.74977733415354209e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_90)_ 2.74972377411963294e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_91)_ 2.74966958465147648e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_92)_ 2.74961476468512132e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_93)_ 2.74955931314313382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_94)_ 2.74950322893453674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_95)_ 2.74944651095475017e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_96)_ 2.74938915808553048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_97)_ 2.74933116919490814e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_98)_ 2.74927254313712481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_99)_ 2.74921327875257191e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_100)_ 2.74915337486772451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_101)_ 2.74909283029507669e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_102)_ 2.74903164383307654e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_103)_ 2.74896981426605933e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_104)_ 2.74890734036417967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_105)_ 2.74884422088334439e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_106)_ 2.74878045456514180e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_107)_ 2.74871604013677349e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_108)_ 2.74865097631098294e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_109)_ 2.74858526178598268e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_110)_ 2.74851889524538535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_111)_ 2.74845187535812627e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_112)_ 2.74838420077839238e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_113)_ 2.74831587014554621e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_114)_ 2.74824688208404986e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_115)_ 2.74817723520338895e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_116)_ 2.74810692809799413e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_117)_ 2.74803595934716327e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_118)_ 2.74796432751498294e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_119)_ 2.74789203115024598e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_120)_ 2.74781906878637336e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_121)_ 2.74774543894132890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_122)_ 2.74767114011754003e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_123)_ 2.74759617080181044e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_124)_ 2.74752052946523762e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_125)_ 2.74744421456312722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_126)_ 2.74736722453490536e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_127)_ 2.74728955780403190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_128)_ 2.74721121277791269e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_129)_ 2.74713218784780864e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_130)_ 2.74705248138874722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_131)_ 2.74696298148697480e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_132)_ 2.74685544135574879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_133)_ 2.74674699062285086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_134)_ 2.74663762704550187e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_135)_ 2.74652734835877155e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_136)_ 2.74641615227545230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_137)_ 2.74630403648592996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_138)_ 2.74619099865805367e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_139)_ 2.74607703643700667e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_140)_ 2.74596214744517191e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_141)_ 2.74584632928199959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_142)_ 2.74572957952387213e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_143)_ 2.74561189572396778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_144)_ 2.74549327541212342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_145)_ 2.74537371609469467e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_146)_ 2.74525321525441761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_147)_ 2.74513177035026565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_148)_ 2.74500937881730849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_149)_ 2.74488603806656606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_150)_ 2.74476174548486469e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_151)_ 2.74463649843468964e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_152)_ 2.74451029425403661e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_153)_ 2.74438313025626464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_154)_ 2.74425500372994229e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_155)_ 2.74412591193869737e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_156)_ 2.74399585212106381e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_157)_ 2.74386482149032602e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_158)_ 2.74373281723436264e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_159)_ 2.74359983651549122e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_160)_ 2.74346587647030624e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_161)_ 2.74333093420952210e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_162)_ 2.74319500681781001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_163)_ 2.74305809135363496e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_164)_ 2.74294031690173163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_165)_ 2.74283645172769859e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_166)_ 2.74273184098860234e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_167)_ 2.74262648240524243e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_168)_ 2.74252037367820023e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_169)_ 2.74241351248770897e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_170)_ 2.74230589649352794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_171)_ 2.74219752333481068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_172)_ 2.74208839062997534e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_173)_ 2.74197849597657317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_174)_ 2.74186783695115608e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_175)_ 2.74175641110914228e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_176)_ 2.74164421598468238e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_177)_ 2.74153124909052472e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_178)_ 2.74141750791787722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_179)_ 2.74130298993627264e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_180)_ 2.74118769259342727e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_181)_ 2.74107161331510483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_182)_ 2.74095474950497398e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_183)_ 2.74083709854446944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_184)_ 2.74071865779264847e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_185)_ 2.74059942458604944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_186)_ 2.74047939623854653e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_187)_ 2.74035857004120800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_188)_ 2.74023694326214837e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_189)_ 2.74011451314638350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_190)_ 2.73998826423771575e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_191)_ 2.73982137781221944e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_192)_ 2.73965339929503351e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_193)_ 2.73948432485339666e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_194)_ 2.73931415062247403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_195)_ 2.73914287270515153e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_196)_ 2.73897048717183509e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_197)_ 2.73879699006024460e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_198)_ 2.73862237737520857e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_199)_ 2.73844664508845810e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_200)_ 2.73826978913841970e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_201)_ 2.73809180543000821e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_202)_ 2.73791268983441647e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_203)_ 2.73773243818890855e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_204)_ 2.73755104629660764e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_205)_ 2.73736850992628682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_206)_ 2.73718482481215801e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_207)_ 2.73699998665365953e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_208)_ 2.73681399111524541e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_209)_ 2.73662683382617224e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_210)_ 2.73643851038028600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_211)_ 2.73624901633581068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_212)_ 2.73605834721513332e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_213)_ 2.73583415822921339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_214)_ 2.73559436383873837e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_215)_ 2.73535309275726597e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_216)_ 2.73511033924177624e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_217)_ 2.73486609750340683e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_218)_ 2.73462036170718967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_219)_ 2.73437312597178277e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_220)_ 2.73412438436921015e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_221)_ 2.73387413092459752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_222)_ 2.73362235961590869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_223)_ 2.73336906437368548e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_224)_ 2.73311423908078588e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_225)_ 2.73285787757212510e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_226)_ 2.73259997363441798e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_227)_ 2.73234052100592031e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_228)_ 2.73207951337617487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_229)_ 2.73181694438575704e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_230)_ 2.73155280762602324e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_231)_ 2.73128709663886085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_232)_ 2.73101980491644198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_233)_ 2.73079949306617884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_234)_ 2.73058175988804805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_235)_ 2.73036273824485747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_236)_ 2.73014242273570531e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_237)_ 2.72992080791870144e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_238)_ 2.72969788831078510e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_239)_ 2.72947365838754159e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_240)_ 2.72924811258302213e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_241)_ 2.72902124528956875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_242)_ 2.72879305085764301e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_243)_ 2.72856352359565619e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_244)_ 2.72833265776980483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_245)_ 2.72810044760391257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_246)_ 2.72786688727927213e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_247)_ 2.72763197093449605e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_248)_ 2.72739569266536996e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_249)_ 2.72715804652471299e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_250)_ 2.72689995540382419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_251)_ 2.72660293579491047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_252)_ 2.72630420378543974e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_253)_ 2.72600375181359560e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_254)_ 2.72570157226371954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_255)_ 2.72539765746618414e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_256)_ 2.72509199969727725e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_257)_ 2.72478459117909537e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_258)_ 2.72447542407944674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_259)_ 2.72416449051176564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_260)_ 2.72385178253504030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_261)_ 2.72353729215374862e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_262)_ 2.72322101131780983e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_263)_ 2.72290293192254751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_264)_ 2.72258304580866763e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_265)_ 2.72226134476224999e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_266)_ 2.72193702850430199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_267)_ 2.72160752851732504e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_268)_ 2.72127616519271065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_269)_ 2.72094292999085781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_270)_ 2.72060781431704406e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_271)_ 2.72027080952152005e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_272)_ 2.71993190689962425e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_273)_ 2.71959109769191620e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_274)_ 2.71924837308433496e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_275)_ 2.71890372420837565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_276)_ 2.71855714214129343e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_277)_ 2.71820861790633046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_278)_ 2.71785814247296891e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_279)_ 2.71750570675721086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_280)_ 2.71715130162188423e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_281)_ 2.71679626997756962e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_282)_ 2.71644026111433163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_283)_ 2.71608226827162582e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_284)_ 2.71572228216488547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_285)_ 2.71536029345870986e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_286)_ 2.71499629276736165e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_287)_ 2.71463027065530369e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_288)_ 2.71426221763777207e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_289)_ 2.71389212418139252e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_290)_ 2.71351998070483624e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_291)_ 2.71314577757952016e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_292)_ 2.71276950513035366e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_293)_ 2.71239115363653092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_294)_ 2.71201071333237458e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_295)_ 2.71162989751467869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_296)_ 2.71124703264285074e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_297)_ 2.71086205922052841e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_298)_ 2.71047496735807663e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_299)_ 2.71008574712619961e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_300)_ 2.70969438855712248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_301)_ 2.70930088164583260e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_302)_ 2.70890521635139336e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_303)_ 2.70850738259832546e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_304)_ 2.70810737027806319e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_305)_ 2.70770516925048703e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_306)_ 2.70730076934553452e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_307)_ 2.70687155222098355e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_308)_ 2.70637539513715559e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_309)_ 2.70587653225483713e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_310)_ 2.70537495110784256e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_311)_ 2.70487063920501853e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_312)_ 2.70436358403286761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_313)_ 2.70385377305830126e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_314)_ 2.70334119373152006e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_315)_ 2.70282583348903884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_316)_ 2.70230767975684998e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_317)_ 2.70178671995374131e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_318)_ 2.70126294149476429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_319)_ 2.70073959854792669e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_320)_ 2.70021670476212314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_321)_ 2.69969098997008388e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_322)_ 2.69916244176560909e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_323)_ 2.69863104775848477e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_324)_ 2.69809679557897475e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_325)_ 2.69755967288251419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_326)_ 2.69701966735461731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_327)_ 2.69647676671600287e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_328)_ 2.69593095872795061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_329)_ 2.69538223119789500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_330)_ 2.69482734876049257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_331)_ 2.69426219492993830e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_332)_ 2.69369402908507460e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_333)_ 2.69312283905174574e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_334)_ 2.69254861273534480e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_335)_ 2.69197133812819800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_336)_ 2.69139100331727157e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_337)_ 2.69080759649221299e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_338)_ 2.69022110595374393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_339)_ 2.68963152012241409e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_340)_ 2.68903882754773775e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_341)_ 2.68845563907873313e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_342)_ 2.68787027220079047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_343)_ 2.68728183626186627e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_344)_ 2.68669032067235882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_345)_ 2.68609571501946043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_346)_ 2.68549800907865581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_347)_ 2.68489719282570967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_348)_ 2.68429325644917078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_349)_ 2.68368619036340768e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_350)_ 2.68307598522220658e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_351)_ 2.68245726716420272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_352)_ 2.68183460202447321e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_353)_ 2.68120873976934995e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_354)_ 2.68057967207596413e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_355)_ 2.67994739094122600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_356)_ 2.67931188869947086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_357)_ 2.67867315804085848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_358)_ 2.67803119203056035e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_359)_ 2.67738598412876314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_360)_ 2.67673358746189187e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_361)_ 2.67607209307914466e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_362)_ 2.67540729083911799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_363)_ 2.67473917592855983e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_364)_ 2.67406774405046974e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_365)_ 2.67339299145020242e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_366)_ 2.67271491494269000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_367)_ 2.67203351194083218e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_368)_ 2.67134878048510380e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_369)_ 2.67066652416192980e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_370)_ 2.66998696187656464e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_371)_ 2.66930412631829874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_372)_ 2.66861801834536010e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_373)_ 2.66792863959822775e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_374)_ 2.66723599253712003e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_375)_ 2.66654008048110676e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_376)_ 2.66584090764891997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_377)_ 2.66513847920153566e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_378)_ 2.66443237492038385e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_379)_ 2.66372292181963068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_380)_ 2.66301023226320623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_381)_ 2.66229431565234265e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_382)_ 2.66157518257389576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_383)_ 2.66085284485544911e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_384)_ 2.66012731562285225e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_385)_ 2.65939860936030392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_386)_ 2.65866611005686941e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_387)_ 2.65792970522569902e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_388)_ 2.65719016968366226e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_389)_ 2.65644752404339961e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_390)_ 2.65570179062212119e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_391)_ 2.65495299351985459e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_392)_ 2.65420115870122082e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_393)_ 2.65344631408092404e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_394)_ 2.65274017209327795e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_395)_ 2.65210561907714073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_396)_ 2.65146863598567428e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_397)_ 2.65082925338887314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_398)_ 2.65018750389184028e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_399)_ 2.64954342222817516e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_400)_ 2.64889704535772275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_401)_ 2.64824841256891865e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_402)_ 2.64751732051307940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_403)_ 2.64673409260413735e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_404)_ 2.64594831839002254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_405)_ 2.64516005751309571e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_406)_ 2.64436937311582696e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_407)_ 2.64357633200338569e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_408)_ 2.64278100481421596e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_409)_ 2.64198346549824734e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_410)_ 2.64118376041299854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_411)_ 2.64038200591447918e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_412)_ 2.63957828986009666e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_413)_ 2.63877270493059122e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_414)_ 2.63796534885940162e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_415)_ 2.63715632467402799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_416)_ 2.63634574095017449e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_417)_ 2.63561121468101689e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_418)_ 2.63493305018913730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_419)_ 2.63425388701003875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_420)_ 2.63357383653474493e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_421)_ 2.63289301602630310e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_422)_ 2.63221154891266700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_423)_ 2.63152956509669345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_424)_ 2.63084704986868587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_425)_ 2.63016377349585504e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_426)_ 2.62948041228014198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_427)_ 2.62879712567350872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_428)_ 2.62811408146943890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_429)_ 2.62743145624955012e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_430)_ 2.62674943586040470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_431)_ 2.62606821592340580e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_432)_ 2.62538893044563366e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_433)_ 2.62471096980352101e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_434)_ 2.62403445859250724e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_435)_ 2.62335963705344284e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_436)_ 2.62268675835993008e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_437)_ 2.62201608941297408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_438)_ 2.62134791170434553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_439)_ 2.62074568829658077e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_440)_ 2.62021517082881168e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_441)_ 2.61968740341915662e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_442)_ 2.61916266659560826e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_443)_ 2.61864125715355485e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_444)_ 2.61812348937978534e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_445)_ 2.61760969641903856e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_446)_ 2.61710023180772637e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_447)_ 2.61659619889604542e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_448)_ 2.61609744086324980e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_449)_ 2.61560420272454728e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_450)_ 2.61511693867136437e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_451)_ 2.61463613476749330e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_452)_ 2.61416231246047239e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_453)_ 2.61369603273152400e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_454)_ 2.61323790105123166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_455)_ 2.61278836862312858e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_456)_ 2.61234813277038782e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_457)_ 2.61191820525626319e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_458)_ 2.61149944587926903e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_459)_ 2.61109280757457611e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_460)_ 2.61069935571396492e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_461)_ 2.61032029403074297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_462)_ 2.60995700045979397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_463)_ 2.60961107843162381e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_464)_ 2.60928443348685768e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_465)_ 2.60897938054613441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_466)_ 2.60869871839949603e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_467)_ 2.60844660237132793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_468)_ 2.60822884235621935e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_469)_ 2.60805542887728805e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_470)_ 2.60795488281442474e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_471)_ 2.60545353124169523e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_472)_ 2.60339941163242514e+01 OP @@ -12033,476 +12030,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_498)_ 1.85900551394373856e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_499)_ 1.77955216357063293e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile10_500)_ 9.56367475234246989e+00 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_0)__ 3.46566130521140110e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_1)__ 3.46566072098594944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_2)__ 3.46565896829854339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_3)__ 3.46565604711602617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_4)__ 3.46565195738313463e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_5)__ 3.46564669902249634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_6)__ 3.46564027193462678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_7)__ 3.46563267599792013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_8)__ 3.46562391106864709e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_9)__ 3.46561397698094424e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_10)_ 3.46560287354680554e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_11)_ 3.46559060055607233e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_12)_ 3.46557715777642343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_13)_ 3.46556254495336091e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_14)_ 3.46554676181019445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_15)_ 3.46552980804803141e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_16)_ 3.46551168334575550e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_17)_ 3.46549238736001328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_18)_ 3.46547191972519215e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_19)_ 3.46545028005340328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_20)_ 3.46542746793445886e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_21)_ 3.46540348293585154e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_22)_ 3.46537832460272810e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_23)_ 3.46535199245786742e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_24)_ 3.46532448600165353e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_25)_ 3.46529580471204852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_26)_ 3.46526594804456494e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_27)_ 3.46523491543223514e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_28)_ 3.46520270628557938e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_29)_ 3.46516931999257665e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_30)_ 3.46513475591862985e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_31)_ 3.46509901340653101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_32)_ 3.46506209177642646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_33)_ 3.46502399032577841e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_34)_ 3.46498720095069359e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_35)_ 3.46495333338589830e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_36)_ 3.46491847643910589e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_37)_ 3.46488262944602212e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_38)_ 3.46484579172319656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_39)_ 3.46480796256798484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_40)_ 3.46476914125851110e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_41)_ 3.46472932705362737e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_42)_ 3.46468851919287388e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_43)_ 3.46464671689643779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_44)_ 3.46460391936511058e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_45)_ 3.46456012578024186e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_46)_ 3.46451533530369957e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_47)_ 3.46446954707781956e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_48)_ 3.46442276022536078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_49)_ 3.46437497384945559e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_50)_ 3.46432618703356425e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_51)_ 3.46427639884142025e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_52)_ 3.46422560831698192e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_53)_ 3.46417381448437780e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_54)_ 3.46412101634785614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_55)_ 3.46406721289172594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_56)_ 3.46401240308030651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_57)_ 3.46395658585786421e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_58)_ 3.46389976014855989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_59)_ 3.46384192485638778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_60)_ 3.46378307886511294e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_61)_ 3.46372322103821375e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_62)_ 3.46366235021881579e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_63)_ 3.46360046522962932e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_64)_ 3.46353756487288535e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_65)_ 3.46347364793026813e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_66)_ 3.46340871316284833e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_67)_ 3.46334275931101487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_68)_ 3.46327578509440386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_69)_ 3.46320778921182963e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_70)_ 3.46313877034121163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_71)_ 3.46306872713950114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_72)_ 3.46299765824260675e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_73)_ 3.46292556226531900e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_74)_ 3.46285243780123508e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_75)_ 3.46277828342267640e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_76)_ 3.46270309768061395e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_77)_ 3.46262687910458453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_78)_ 3.46254962620261040e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_79)_ 3.46247133746111544e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_80)_ 3.46239201134484205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_81)_ 3.46231164629676442e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_82)_ 3.46223024073800190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_83)_ 3.46214779306773011e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_84)_ 3.46206430166309289e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_85)_ 3.46197976487911205e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_86)_ 3.46189418104859215e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_87)_ 3.46180754848203094e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_88)_ 3.46171986546752350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_89)_ 3.46163113027066345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_90)_ 3.46154134113445124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_91)_ 3.46145049627918979e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_92)_ 3.46135859390238849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_93)_ 3.46126563217866021e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_94)_ 3.46117160925961898e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_95)_ 3.46107652327377693e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_96)_ 3.46098037232643634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_97)_ 3.46088315449958586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_98)_ 3.46078486785179038e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_99)_ 3.46068551041808163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_100)_ 3.46058508020984874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_101)_ 3.46048357521472383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_102)_ 3.46038099339647047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_103)_ 3.46027733269486575e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_104)_ 3.46017259102558725e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_105)_ 3.46006676628009018e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_106)_ 3.45995984905003127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_107)_ 3.45985183215603627e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_108)_ 3.45974272551620672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_109)_ 3.45963252692351162e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_110)_ 3.45952123414608153e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_111)_ 3.45940884492708491e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_112)_ 3.45929535698459816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_113)_ 3.45918076801147549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_114)_ 3.45906507567521828e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_115)_ 3.45894827761784072e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_116)_ 3.45883037145573695e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_117)_ 3.45871135477954468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_118)_ 3.45859122515400657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_119)_ 3.45846998011783171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_120)_ 3.45834761718355637e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_121)_ 3.45822413383739686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_122)_ 3.45809952753911247e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_123)_ 3.45797379572185406e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_124)_ 3.45784693579202127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_125)_ 3.45771894512910976e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_126)_ 3.45758982108556410e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_127)_ 3.45745956098662575e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_128)_ 3.45732816213017671e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_129)_ 3.45719562178658677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_130)_ 3.45706193719855577e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_131)_ 3.45692710558095584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_132)_ 3.45679112412066871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_133)_ 3.45665398997642797e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_134)_ 3.45651570027865134e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_135)_ 3.45637625212927730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_136)_ 3.45623564260159952e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_137)_ 3.45609386874009346e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_138)_ 3.45595092756025295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_139)_ 3.45580681604841189e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_140)_ 3.45566153116157295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_141)_ 3.45551506982723140e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_142)_ 3.45536742894319957e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_143)_ 3.45521860537742569e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_144)_ 3.45506859596781197e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_145)_ 3.45491782478461502e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_146)_ 3.45476622232318817e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_147)_ 3.45461343053333749e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_148)_ 3.45445944614793135e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_149)_ 3.45430426586902328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_150)_ 3.45414788636766232e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_151)_ 3.45399030428369898e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_152)_ 3.45383151622559055e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_153)_ 3.45367151877020788e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_154)_ 3.45351030846263427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_155)_ 3.45334788181596792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_156)_ 3.45318423531112089e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_157)_ 3.45301936539661440e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_158)_ 3.45285326848837357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_159)_ 3.45268594096952341e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_160)_ 3.45251737919017714e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_161)_ 3.45234757946722581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_162)_ 3.45217653808412734e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_163)_ 3.45200425129069259e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_164)_ 3.45183071530286725e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_165)_ 3.45165592630251510e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_166)_ 3.45147988043719920e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_167)_ 3.45130257381995875e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_168)_ 3.45112400252908671e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_169)_ 3.45094416260790453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_170)_ 3.45076305006453410e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_171)_ 3.45058066087166964e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_172)_ 3.45039699096634820e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_173)_ 3.45021203624971449e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_174)_ 3.45002579258678850e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_175)_ 3.44980648496930087e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_176)_ 3.44958055885106774e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_177)_ 3.44935307549964207e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_178)_ 3.44912402979209460e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_179)_ 3.44889341656083630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_180)_ 3.44866123059333418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_181)_ 3.44842746663180790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_182)_ 3.44819211937293701e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_183)_ 3.44795518346756040e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_184)_ 3.44771665352037502e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_185)_ 3.44747652408963035e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_186)_ 3.44723478968682642e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_187)_ 3.44699144477640331e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_188)_ 3.44674648377543207e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_189)_ 3.44649990105330417e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_190)_ 3.44625169093141679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_191)_ 3.44600184768286084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_192)_ 3.44575036553209770e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_193)_ 3.44549723865464586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_194)_ 3.44524246117675759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_195)_ 3.44498602717509712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_196)_ 3.44472793067641518e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_197)_ 3.44446816565722500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_198)_ 3.44420672604347189e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_199)_ 3.44395258056416367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_200)_ 3.44372991600985330e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_201)_ 3.44350582778378893e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_202)_ 3.44328031060571433e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_203)_ 3.44305335915145605e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_204)_ 3.44282496805264202e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_205)_ 3.44259513189641879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_206)_ 3.44236384522516445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_207)_ 3.44213110253620300e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_208)_ 3.44189689828151799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_209)_ 3.44166122686746476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_210)_ 3.44142408265448267e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_211)_ 3.44118545995680378e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_212)_ 3.44094535304216365e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_213)_ 3.44070375613151285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_214)_ 3.44046066339872354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_215)_ 3.44021606897030097e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_216)_ 3.43996996692508716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_217)_ 3.43972235129397390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_218)_ 3.43947321605960852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_219)_ 3.43922255515610189e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_220)_ 3.43897054630346233e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_221)_ 3.43871838950061814e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_222)_ 3.43846469811490110e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_223)_ 3.43820946592220764e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_224)_ 3.43795268664875024e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_225)_ 3.43769435397077032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_226)_ 3.43743446151425118e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_227)_ 3.43717300285463097e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_228)_ 3.43690997151651771e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_229)_ 3.43664536097340445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_230)_ 3.43637916464738566e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_231)_ 3.43611137590888021e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_232)_ 3.43584198807634635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_233)_ 3.43557099441600684e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_234)_ 3.43529838814157529e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_235)_ 3.43502416241397768e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_236)_ 3.43474831034108590e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_237)_ 3.43447082497744915e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_238)_ 3.43419169932402610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_239)_ 3.43391036859642327e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_240)_ 3.43362617274164350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_241)_ 3.43334030487169954e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_242)_ 3.43305275772542586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_243)_ 3.43276352398644775e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_244)_ 3.43247259628294046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_245)_ 3.43217996718738689e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_246)_ 3.43188562921634457e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_247)_ 3.43158957483021325e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_248)_ 3.43129179643301754e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_249)_ 3.43099228637218232e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_250)_ 3.43069103693832602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_251)_ 3.43038804036505454e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_252)_ 3.43008328882876370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_253)_ 3.42977677444844815e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_254)_ 3.42946848928552370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_255)_ 3.42915842534364756e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_256)_ 3.42887868118198327e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_257)_ 3.42863067061589462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_258)_ 3.42838123426326504e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_259)_ 3.42813036561720352e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_260)_ 3.42787805812457620e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_261)_ 3.42762430518591543e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_262)_ 3.42736910015533951e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_263)_ 3.42711243634048301e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_264)_ 3.42685430700243572e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_265)_ 3.42659470535569497e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_266)_ 3.42633362456812449e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_267)_ 3.42607105776093448e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_268)_ 3.42580699800866100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_269)_ 3.42554143833917237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_270)_ 3.42527437173367773e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_271)_ 3.42500579112675823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_272)_ 3.42466540344171193e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_273)_ 3.42432154109657674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_274)_ 3.42397573495760028e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_275)_ 3.42362797584514311e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_276)_ 3.42327825452101422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_277)_ 3.42292656168863445e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_278)_ 3.42257288799322623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_279)_ 3.42221722402202602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_280)_ 3.42185956030452374e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_281)_ 3.42149988731273424e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_282)_ 3.42113819546149429e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_283)_ 3.42077447510879011e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_284)_ 3.42040871655612122e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_285)_ 3.42004091004889403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_286)_ 3.41967321456265907e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_287)_ 3.41930373479676391e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_288)_ 3.41893219117767657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_289)_ 3.41855857379685730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_290)_ 3.41818287269255237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_291)_ 3.41780507785042147e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_292)_ 3.41742517920420141e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_293)_ 3.41704316663642516e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_294)_ 3.41665902997918280e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_295)_ 3.41627275901493590e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_296)_ 3.41588434347738357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_297)_ 3.41549377305238337e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_298)_ 3.41510103737893047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_299)_ 3.41476599033181074e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_300)_ 3.41444978455991759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_301)_ 3.41413182965002164e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_302)_ 3.41381211721123350e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_303)_ 3.41349063881999371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_304)_ 3.41316738602116985e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_305)_ 3.41284235032921046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_306)_ 3.41251552322936078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_307)_ 3.41218689617895308e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_308)_ 3.41185646060875243e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_309)_ 3.41152420792438704e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_310)_ 3.41119012950783969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_311)_ 3.41085256359271014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_312)_ 3.41051097775007079e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_313)_ 3.41016751919780958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_314)_ 3.40982217914131027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_315)_ 3.40947494877085688e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_316)_ 3.40912581926367722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_317)_ 3.40877478178607092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_318)_ 3.40842182749565197e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_319)_ 3.40806694754369275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_320)_ 3.40771013307758679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_321)_ 3.40735137524342235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_322)_ 3.40699078084359712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_323)_ 3.40663260308315614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_324)_ 3.40627247981919297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_325)_ 3.40591040233027655e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_326)_ 3.40554636190831985e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_327)_ 3.40518034986193001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_328)_ 3.40481235751991065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_329)_ 3.40444237623491759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_330)_ 3.40407039738729367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_331)_ 3.40369641238906482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_332)_ 3.40332041268812588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_333)_ 3.40292661723340970e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_334)_ 3.40244251121511851e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_335)_ 3.40195580655898127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_336)_ 3.40146649261248371e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_337)_ 3.40097455879924624e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_338)_ 3.40047999462595740e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_339)_ 3.39998278968960363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_340)_ 3.39948293368502945e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_341)_ 3.39898041641282163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_342)_ 3.39847522778755007e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_343)_ 3.39798085854304190e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_344)_ 3.39768146398695521e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_345)_ 3.39738048565159545e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_346)_ 3.39707791794287175e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_347)_ 3.39677375536105401e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_348)_ 3.39646799250701577e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_349)_ 3.39616062408875692e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_350)_ 3.39585164492820439e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_351)_ 3.39554104996831185e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_352)_ 3.39522883428047066e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_353)_ 3.39488552588366588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_354)_ 3.39446069807206854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_355)_ 3.39403366894888094e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_356)_ 3.39360443267757503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_357)_ 3.39317298365135755e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_358)_ 3.39273931650604297e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_359)_ 3.39230342613349265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_360)_ 3.39186530769563177e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_361)_ 3.39142495663907937e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_362)_ 3.39098210399434947e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_363)_ 3.39053059660038869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_364)_ 3.39007681109410370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_365)_ 3.38962074417142887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_366)_ 3.38916239290176335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_367)_ 3.38870175474714657e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_368)_ 3.38823882758225778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_369)_ 3.38777360971529831e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_370)_ 3.38730609990978166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_371)_ 3.38683909825937661e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_372)_ 3.38637508007024621e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_373)_ 3.38590880842385360e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_374)_ 3.38544028412850651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_375)_ 3.38496950856204677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_376)_ 3.38449648369956009e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_377)_ 3.38402121214231002e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_378)_ 3.38354369714794885e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_379)_ 3.38306394266206638e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_380)_ 3.38258163910329088e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_381)_ 3.38209705639934981e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_382)_ 3.38161024883395029e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_383)_ 3.38112122345417347e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_384)_ 3.38062998817576101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_385)_ 3.38013655182412620e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_386)_ 3.37964092417721389e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_387)_ 3.37914311601028601e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_388)_ 3.37864246247135824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_389)_ 3.37813937768320258e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_390)_ 3.37763414710243453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_391)_ 3.37712678601234799e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_392)_ 3.37661731095225264e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_393)_ 3.37610573977608368e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_394)_ 3.37559209171371464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_395)_ 3.37507638743510441e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_396)_ 3.37466868601271557e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_397)_ 3.37427852029978084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_398)_ 3.37388686457484326e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_399)_ 3.37349373920662430e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_400)_ 3.37309916592155545e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_401)_ 3.37270316786718780e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_402)_ 3.37230576967862419e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_403)_ 3.37187605882217056e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_404)_ 3.37134283495354126e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_405)_ 3.37080785651005073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_406)_ 3.37027116522551680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_407)_ 3.36973280532738073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_408)_ 3.36919282365448680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_409)_ 3.36865126978075367e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_410)_ 3.36810819614505448e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_411)_ 3.36756363969279420e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_412)_ 3.36701767285843303e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_413)_ 3.36647036211153434e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_414)_ 3.36592177279023943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_415)_ 3.36537197385437992e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_416)_ 3.36482103806146142e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_417)_ 3.36426904215212446e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_418)_ 3.36364489012255490e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_419)_ 3.36295217605252006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_420)_ 3.36225845645247716e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_421)_ 3.36156384981290017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_422)_ 3.36086848097377882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_423)_ 3.36017248144708631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_424)_ 3.35947598975846304e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_425)_ 3.35882314636809838e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_426)_ 3.35826496935306267e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_427)_ 3.35770676770176948e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_428)_ 3.35714867789995068e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_429)_ 3.35659084369635679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_430)_ 3.35603341649962630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_431)_ 3.35547655580264106e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_432)_ 3.35490068787706335e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_433)_ 3.35420772210202571e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_434)_ 3.35351612699411845e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_435)_ 3.35282614808775605e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_436)_ 3.35213804430597833e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_437)_ 3.35145208878599234e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_438)_ 3.35076856977579354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_439)_ 3.35008779161090899e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_440)_ 3.34929117251689021e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_441)_ 3.34848094630210085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_442)_ 3.34767523984407660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_443)_ 3.34687451030096099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_444)_ 3.34607924201329183e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_445)_ 3.34528994862587723e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_446)_ 3.34450717546796099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_447)_ 3.34377665435698646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_448)_ 3.34313784207437408e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_449)_ 3.34250599645395567e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_450)_ 3.34188170221219494e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_451)_ 3.34126558529013664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_452)_ 3.34065831738004917e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_453)_ 3.34006062127272259e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_454)_ 3.33947327724015821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_455)_ 3.33885584357496086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_456)_ 3.33806543844951804e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_457)_ 3.33729342468490984e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_458)_ 3.33654135415010558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_459)_ 3.33581094679904027e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_460)_ 3.33510412540533991e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_461)_ 3.33442306221172871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_462)_ 3.33377024341128703e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_463)_ 3.33314856142189058e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_464)_ 3.33256145269812407e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_465)_ 3.33201311501462030e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_466)_ 3.33150855283315792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_467)_ 3.33105525794181787e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_468)_ 3.33066370024680154e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_469)_ 3.33035186041744922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_0)__ 3.46352829950929220e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_1)__ 3.46352781332853397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_2)__ 3.46352635477714941e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_3)__ 3.46352392382780749e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_4)__ 3.46352052043495462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_5)__ 3.46351614453481460e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_6)__ 3.46351079604538015e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_7)__ 3.46350447486641286e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_8)__ 3.46349718087943828e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_9)__ 3.46348891394773446e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_10)_ 3.46347967391633205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_11)_ 3.46346946061199787e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_12)_ 3.46345827384323428e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_13)_ 3.46344611340026063e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_14)_ 3.46343297905500762e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_15)_ 3.46341887056110451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_16)_ 3.46340378765386347e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_17)_ 3.46338773005026823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_18)_ 3.46337069744895558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_19)_ 3.46335268953020474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_20)_ 3.46333370595591319e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_21)_ 3.46331374636958600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_22)_ 3.46329281039631027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_23)_ 3.46327089764274021e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_24)_ 3.46324800769707224e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_25)_ 3.46322414012902584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_26)_ 3.46319929448981938e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_27)_ 3.46317347031214524e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_28)_ 3.46314666711014709e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_29)_ 3.46311888437939146e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_30)_ 3.46309012159684144e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_31)_ 3.46306037822083113e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_32)_ 3.46302965369103291e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_33)_ 3.46299794742842977e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_34)_ 3.46296525883528332e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_35)_ 3.46293158729510253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_36)_ 3.46289693217261032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_37)_ 3.46286129281370947e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_38)_ 3.46282466854544779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_39)_ 3.46278705867598049e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_40)_ 3.46274846249453674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_41)_ 3.46270887927137778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_42)_ 3.46266830825775784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_43)_ 3.46262674868588860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_44)_ 3.46258419976889087e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_45)_ 3.46254066070075837e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_46)_ 3.46249613065631223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_47)_ 3.46245060879115414e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_48)_ 3.46240409424162436e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_49)_ 3.46235658612475561e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_50)_ 3.46230808353822184e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_51)_ 3.46225858556029138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_52)_ 3.46220809124977933e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_53)_ 3.46215659964599425e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_54)_ 3.46210410976868701e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_55)_ 3.46205062061799822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_56)_ 3.46199613117440350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_57)_ 3.46194064039865950e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_58)_ 3.46188414723174702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_59)_ 3.46182665059481351e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_60)_ 3.46176814938911548e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_61)_ 3.46170864249595880e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_62)_ 3.46164812877663763e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_63)_ 3.46158660707237331e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_64)_ 3.46152407620425109e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_65)_ 3.46146053497315549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_66)_ 3.46139598215970778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_67)_ 3.46133041652419706e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_68)_ 3.46126383680651486e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_69)_ 3.46119624172608411e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_70)_ 3.46112762998179377e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_71)_ 3.46105800025192281e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_72)_ 3.46098735119407266e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_73)_ 3.46091568144509125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_74)_ 3.46084298962100121e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_75)_ 3.46076927431692098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_76)_ 3.46069453410699310e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_77)_ 3.46061876754430102e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_78)_ 3.46054197316079382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_79)_ 3.46046414946720304e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_80)_ 3.46038529495296672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_81)_ 3.46030540808613836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_82)_ 3.46022448731331025e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_83)_ 3.46014253105952676e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_84)_ 3.46005953772819481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_85)_ 3.45997550126176208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_86)_ 3.45989041348044140e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_87)_ 3.45980428351225626e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_88)_ 3.45971710967288217e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_89)_ 3.45962889025590314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_90)_ 3.45953962353272146e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_91)_ 3.45944930775246036e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_92)_ 3.45935794114186876e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_93)_ 3.45926552190522330e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_94)_ 3.45917204822422804e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_95)_ 3.45907751825791721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_96)_ 3.45898193014255071e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_97)_ 3.45888528199151324e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_98)_ 3.45878757189520840e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_99)_ 3.45868879792095356e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_100)_ 3.45858895811287397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_101)_ 3.45848805049179404e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_102)_ 3.45838607305512724e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_103)_ 3.45828302377676522e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_104)_ 3.45817890060696627e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_105)_ 3.45807370147224091e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_106)_ 3.45796742427523682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_107)_ 3.45786006689462297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_108)_ 3.45775162718497100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_109)_ 3.45764210297663794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_110)_ 3.45753149207564192e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_111)_ 3.45741979226354346e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_112)_ 3.45730700129732043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_113)_ 3.45719311690924371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_114)_ 3.45707813680675002e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_115)_ 3.45696205867231470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_116)_ 3.45684488016332310e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_117)_ 3.45672659891193845e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_118)_ 3.45660721252497112e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_119)_ 3.45648671858374357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_120)_ 3.45636511464395539e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_121)_ 3.45624239823554831e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_122)_ 3.45611856686256687e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_123)_ 3.45599361800301708e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_124)_ 3.45586754910872926e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_125)_ 3.45574035760521170e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_126)_ 3.45561204089150849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_127)_ 3.45548259634005319e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_128)_ 3.45535202129652106e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_129)_ 3.45522031307968120e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_130)_ 3.45508746898124528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_131)_ 3.45495372685871800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_132)_ 3.45481930169468541e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_133)_ 3.45468373827856325e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_134)_ 3.45454703380687747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_135)_ 3.45440918544846483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_136)_ 3.45427019034431524e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_137)_ 3.45413004560741257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_138)_ 3.45398874832256695e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_139)_ 3.45384629554625846e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_140)_ 3.45370268430646519e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_141)_ 3.45355791160249979e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_142)_ 3.45341197440484038e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_143)_ 3.45326486965496002e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_144)_ 3.45311659426515405e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_145)_ 3.45296714511836811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_146)_ 3.45281651906802196e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_147)_ 3.45266471293783184e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_148)_ 3.45251172352163564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_149)_ 3.45235754758320752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_150)_ 3.45220218185608090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_151)_ 3.45204562304336164e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_152)_ 3.45188786781754615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_153)_ 3.45172891282033092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_154)_ 3.45156875466242781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_155)_ 3.45140738992337148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_156)_ 3.45124481515132970e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_157)_ 3.45108102686290721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_158)_ 3.45091602154295316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_159)_ 3.45074979564436362e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_160)_ 3.45058234558788257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_161)_ 3.45041366776190301e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_162)_ 3.45024375852226228e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_163)_ 3.45007261419204383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_164)_ 3.44988063380346333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_165)_ 3.44967290345539723e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_166)_ 3.44946368197720474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_167)_ 3.44925296481048491e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_168)_ 3.44904074735640052e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_169)_ 3.44882702497541800e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_170)_ 3.44861179298705594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_171)_ 3.44839504666962142e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_172)_ 3.44817678125995073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_173)_ 3.44795699195314640e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_174)_ 3.44773567390231221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_175)_ 3.44751282221828461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_176)_ 3.44728843196936481e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_177)_ 3.44706249818104951e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_178)_ 3.44683501583575449e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_179)_ 3.44660597987254533e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_180)_ 3.44637538518685460e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_181)_ 3.44614322663020971e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_182)_ 3.44590949900994801e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_183)_ 3.44567419708893894e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_184)_ 3.44543731558529700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_185)_ 3.44519884917209893e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_186)_ 3.44495879247709311e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_187)_ 3.44471714008241605e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_188)_ 3.44447388652429680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_189)_ 3.44422902629276706e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_190)_ 3.44398533029714429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_191)_ 3.44377672226527451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_192)_ 3.44356674911879139e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_193)_ 3.44335540606674613e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_194)_ 3.44314268827809258e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_195)_ 3.44292859088143928e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_196)_ 3.44271310896479363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_197)_ 3.44249623757530614e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_198)_ 3.44227797171901102e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_199)_ 3.44205830636057257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_200)_ 3.44183723642302439e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_201)_ 3.44161475678751003e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_202)_ 3.44139086229302080e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_203)_ 3.44116554773613572e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_204)_ 3.44093880787075932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_205)_ 3.44071063740785874e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_206)_ 3.44048103101519729e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_207)_ 3.44024998331707437e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_208)_ 3.44001748889405690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_209)_ 3.43978354228271499e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_210)_ 3.43954813797535763e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_211)_ 3.43931127041976339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_212)_ 3.43907293401891678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_213)_ 3.43883415822921350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_214)_ 3.43859436383873884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_215)_ 3.43835309275726573e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_216)_ 3.43811033924177636e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_217)_ 3.43786609750340730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_218)_ 3.43762036170718943e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_219)_ 3.43737312597178288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_220)_ 3.43712438436921062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_221)_ 3.43687413092459764e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_222)_ 3.43662235961590881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_223)_ 3.43636906437368594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_224)_ 3.43611423908078635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_225)_ 3.43585787757212557e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_226)_ 3.43559997363441809e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_227)_ 3.43534052100592078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_228)_ 3.43507951337617499e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_229)_ 3.43481694438575715e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_230)_ 3.43455280762602371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_231)_ 3.43428709663886167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_232)_ 3.43401980491644210e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_233)_ 3.43374936633272441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_234)_ 3.43347719986006084e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_235)_ 3.43320342280607278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_236)_ 3.43292802841963152e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_237)_ 3.43265100989837677e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_238)_ 3.43237236038848224e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_239)_ 3.43209207298442749e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_240)_ 3.43181014072877772e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_241)_ 3.43152655661196135e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_242)_ 3.43124131357205400e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_243)_ 3.43095440449457030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_244)_ 3.43066582221225644e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_245)_ 3.43037555950489050e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_246)_ 3.43008360909908987e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_247)_ 3.42978996366812012e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_248)_ 3.42949461583171242e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_249)_ 3.42919755815589156e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_250)_ 3.42891996432305959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_251)_ 3.42868234863592818e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_252)_ 3.42844336302835160e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_253)_ 3.42820300145087629e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_254)_ 3.42796125781097558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_255)_ 3.42771812597294740e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_256)_ 3.42747359975782189e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_257)_ 3.42722767294327610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_258)_ 3.42698033926355734e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_259)_ 3.42673159240941274e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_260)_ 3.42648142602803247e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_261)_ 3.42622983372299927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_262)_ 3.42597680905424795e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_263)_ 3.42572234553803767e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_264)_ 3.42546643664693420e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_265)_ 3.42520907580979994e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_266)_ 3.42493702850430211e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_267)_ 3.42460752851732479e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_268)_ 3.42427616519271112e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_269)_ 3.42394292999085792e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_270)_ 3.42360781431704382e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_271)_ 3.42327080952152016e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_272)_ 3.42293190689962401e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_273)_ 3.42259109769191667e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_274)_ 3.42224837308433507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_275)_ 3.42190372420837576e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_276)_ 3.42155714214129318e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_277)_ 3.42120861790633057e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_278)_ 3.42085814247296938e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_279)_ 3.42050570675721062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_280)_ 3.42015130162188470e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_281)_ 3.41979626997756938e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_282)_ 3.41944026111433175e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_283)_ 3.41908226827162594e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_284)_ 3.41872228216488523e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_285)_ 3.41836029345870998e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_286)_ 3.41799629276736212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_287)_ 3.41763027065530380e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_288)_ 3.41726221763777218e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_289)_ 3.41689212418139263e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_290)_ 3.41651998070483600e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_291)_ 3.41614577757951992e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_292)_ 3.41576950513035342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_293)_ 3.41539115363653067e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_294)_ 3.41501071333237434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_295)_ 3.41470391801174245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_296)_ 3.41439762611428037e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_297)_ 3.41408964737642293e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_298)_ 3.41377997388646079e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_299)_ 3.41346859770095961e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_300)_ 3.41315551084569790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_301)_ 3.41284070531666615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_302)_ 3.41252417308111475e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_303)_ 3.41220590607866043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_304)_ 3.41188589622245004e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_305)_ 3.41156413540038912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_306)_ 3.41124061547642725e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_307)_ 3.41091436814732205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_308)_ 3.41058359675810365e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_309)_ 3.41025102150322468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_310)_ 3.40991663407189520e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_311)_ 3.40958042613667871e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_312)_ 3.40924238935524500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_313)_ 3.40890251537220053e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_314)_ 3.40856079582101330e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_315)_ 3.40821722232602582e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_316)_ 3.40787178650456681e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_317)_ 3.40752447996916104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_318)_ 3.40717529432984279e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_319)_ 3.40682639903195081e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_320)_ 3.40647780317474869e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_321)_ 3.40612732664672251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_322)_ 3.40577496117707312e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_323)_ 3.40542069850565667e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_324)_ 3.40506453038598309e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_325)_ 3.40470644858834319e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_326)_ 3.40434644490307861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_327)_ 3.40398451114400231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_328)_ 3.40362063915196700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_329)_ 3.40325482079859682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_330)_ 3.40285612396707720e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_331)_ 3.40238516244161531e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_332)_ 3.40191169090422889e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_333)_ 3.40143569920978805e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_334)_ 3.40095717727945370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_335)_ 3.40047611510683154e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_336)_ 3.39999250276439255e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_337)_ 3.39950633041017696e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_338)_ 3.39901758829478595e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_339)_ 3.39852626676867828e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_340)_ 3.39803235628978086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_341)_ 3.39772781953936658e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_342)_ 3.39743513610039471e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_343)_ 3.39714091813093333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_344)_ 3.39684516033617925e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_345)_ 3.39654785750973005e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_346)_ 3.39624900453932810e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_347)_ 3.39594859641285467e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_348)_ 3.39564662822458558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_349)_ 3.39534309518170403e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_350)_ 3.39503799261110331e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_351)_ 3.39463817810946864e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_352)_ 3.39422306801631564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_353)_ 3.39380582651290013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_354)_ 3.39338644805064291e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_355)_ 3.39296492729415107e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_356)_ 3.39254125913298026e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_357)_ 3.39211543869390582e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_358)_ 3.39168746135370682e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_359)_ 3.39125732275250868e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_360)_ 3.39082239164126094e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_361)_ 3.39038139538609613e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_362)_ 3.38993819389274478e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_363)_ 3.38949278395237314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_364)_ 3.38904516270031309e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_365)_ 3.38859532763346820e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_366)_ 3.38814327662845969e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_367)_ 3.38768900796055448e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_368)_ 3.38723252032340199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_369)_ 3.38677768277461979e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_370)_ 3.38632464125104278e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_371)_ 3.38586941754553195e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_372)_ 3.38541201223023975e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_373)_ 3.38495242639881866e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_374)_ 3.38449066169141304e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_375)_ 3.38402672032073752e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_376)_ 3.38356060509928014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_377)_ 3.38309231946769060e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_378)_ 3.38262158328025606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_379)_ 3.38214861454642062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_380)_ 3.38167348817547051e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_381)_ 3.38119621043489502e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_382)_ 3.38071678838259686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_383)_ 3.38023522990363290e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_384)_ 3.37975154374856785e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_385)_ 3.37926573957353611e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_386)_ 3.37877740670457953e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_387)_ 3.37828647015046570e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_388)_ 3.37779344645577453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_389)_ 3.37729834936226609e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_390)_ 3.37680119374808072e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_391)_ 3.37630199567990275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_392)_ 3.37580077246748047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_393)_ 3.37529754272061595e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_394)_ 3.37484410325596684e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_395)_ 3.37446337144628430e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_396)_ 3.37408118159140429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_397)_ 3.37369755203332389e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_398)_ 3.37331250233510431e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_399)_ 3.37292605333690503e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_400)_ 3.37253822721463337e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_401)_ 3.37214904754135105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_402)_ 3.37167821367538636e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_403)_ 3.37115606173609166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_404)_ 3.37063221226001488e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_405)_ 3.37010670500873033e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_406)_ 3.36957958207721759e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_407)_ 3.36905088800225698e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_408)_ 3.36852066987614407e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_409)_ 3.36798897699883142e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_410)_ 3.36745584027533198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_411)_ 3.36692133727631955e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_412)_ 3.36638552657339787e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_413)_ 3.36584846995372757e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_414)_ 3.36531023257293427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_415)_ 3.36477088311601875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_416)_ 3.36423049396678309e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_417)_ 3.36361121468101700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_418)_ 3.36293305018913742e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_419)_ 3.36225388701003922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_420)_ 3.36157383653474540e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_421)_ 3.36089301602630357e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_422)_ 3.36021154891266747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_423)_ 3.35952956509669391e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_424)_ 3.35887763989494914e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_425)_ 3.35833101879668448e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_426)_ 3.35778432982411417e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_427)_ 3.35723770053880699e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_428)_ 3.35669126517555085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_429)_ 3.35614516499963997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_430)_ 3.35559954868832335e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_431)_ 3.35505457273872452e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_432)_ 3.35438893044563287e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_433)_ 3.35371096980352092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_434)_ 3.35303445859250715e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_435)_ 3.35235963705344275e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_436)_ 3.35168675835993000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_437)_ 3.35101608941297400e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_438)_ 3.35034791170434545e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_439)_ 3.34961853244487102e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_440)_ 3.34882275624321721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_441)_ 3.34803110512873445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_442)_ 3.34724399989341208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_443)_ 3.34646188573033214e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_444)_ 3.34568523406967770e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_445)_ 3.34491454462855700e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_446)_ 3.34415034771158872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_447)_ 3.34349524862005651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_448)_ 3.34287180107906181e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_449)_ 3.34225525340568410e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_450)_ 3.34164617333920546e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_451)_ 3.34104516845936672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_452)_ 3.34045289057559032e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_453)_ 3.33987004091440483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_454)_ 3.33929737631403967e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_455)_ 3.33862964509047515e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_456)_ 3.33785923234817901e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_457)_ 3.33710685919846100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_458)_ 3.33637403028872086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_459)_ 3.33566241325550834e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_460)_ 3.33497387249943884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_461)_ 3.33431051455380043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_462)_ 3.33367475080463933e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_463)_ 3.33306938725534181e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_464)_ 3.33249775860200046e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_465)_ 3.33196391595573544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_466)_ 3.33147275719911846e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_467)_ 3.33103155414982339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_468)_ 3.33065047412338373e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_469)_ 3.33034700053525441e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_470)_ 3.33017104492524325e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_471)_ 3.32579367967296662e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_472)_ 3.32073176435313400e+01 OP @@ -12534,476 +12531,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_498)_ 2.21545456573476756e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_499)_ 1.61356138848025381e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile11_500)_ 1.27291631291117842e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_0)__ 5.10877152274663473e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_1)__ 5.10877084115027458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_2)__ 5.10876879634830061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_3)__ 5.10876538830203017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_4)__ 5.10876061694699004e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_5)__ 5.10875448219291286e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_6)__ 5.10874698392373148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_7)__ 5.10873812199757396e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_8)__ 5.10872789624675505e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_9)__ 5.10871630647776840e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_10)_ 5.10870335247127301e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_11)_ 5.10868903398208474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_12)_ 5.10867335073916067e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_13)_ 5.10865630244558773e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_14)_ 5.10863788877855995e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_15)_ 5.10861810938936998e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_16)_ 5.10859696390338129e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_17)_ 5.10857445192001549e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_18)_ 5.10855057301272382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_19)_ 5.10852532672897084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_20)_ 5.10849871259020247e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_21)_ 5.10847073009182679e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_22)_ 5.10844137870318278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_23)_ 5.10841065786751187e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_24)_ 5.10837856700192887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_25)_ 5.10834510549738994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_26)_ 5.10831027271865921e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_27)_ 5.10827406800427397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_28)_ 5.10823649066650916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_29)_ 5.10819753999133894e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_30)_ 5.10815721523840125e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_31)_ 5.10811551564095296e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_32)_ 5.10807244040583086e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_33)_ 5.10802798871340826e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_34)_ 5.10797952152110923e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_35)_ 5.10792533341743678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_36)_ 5.10786956230256948e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_37)_ 5.10781220711363559e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_38)_ 5.10775326675711483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_39)_ 5.10769274010877652e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_40)_ 5.10763062601361781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_41)_ 5.10756692328580399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_42)_ 5.10750163070859884e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_43)_ 5.10743474703430067e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_44)_ 5.10736627098417628e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_45)_ 5.10729620124838704e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_46)_ 5.10722453648591994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_47)_ 5.10715127532451163e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_48)_ 5.10707641636057659e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_49)_ 5.10699995815912899e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_50)_ 5.10692189925370315e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_51)_ 5.10684223814627316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_52)_ 5.10676097330717127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_53)_ 5.10667810317500468e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_54)_ 5.10659362615656960e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_55)_ 5.10650754062676171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_56)_ 5.10641984492849019e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_57)_ 5.10633053737258251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_58)_ 5.10623961623769631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_59)_ 5.10614707977022064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_60)_ 5.10605292618418076e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_61)_ 5.10595715366114220e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_62)_ 5.10585976035010489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_63)_ 5.10576074436740655e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_64)_ 5.10566010379661677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_65)_ 5.10555783668842906e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_66)_ 5.10545394106055781e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_67)_ 5.10534841489762385e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_68)_ 5.10524125615104651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_69)_ 5.10513246273892776e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_70)_ 5.10502203254593852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_71)_ 5.10490996342320145e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_72)_ 5.10479625318817014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_73)_ 5.10468089962451046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_74)_ 5.10456390048197619e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_75)_ 5.10444525347628257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_76)_ 5.10432495628898195e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_77)_ 5.10420300656733517e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_78)_ 5.10407940192417584e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_79)_ 5.10395413993778462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_80)_ 5.10382721815174776e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_81)_ 5.10369863407482356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_82)_ 5.10356838518080238e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_83)_ 5.10343646890836737e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_84)_ 5.10330288266094811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_85)_ 5.10316762380657849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_86)_ 5.10303068967774749e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_87)_ 5.10289207757124998e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_88)_ 5.10275178474803752e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_89)_ 5.10260980843306200e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_90)_ 5.10246614581512148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_91)_ 5.10232079404670316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_92)_ 5.10217375024382136e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_93)_ 5.10202501148585625e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_94)_ 5.10187457481539042e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_95)_ 5.10172243723804328e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_96)_ 5.10156859572229848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_97)_ 5.10141304719933757e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_98)_ 5.10125578856286381e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_99)_ 5.10109681666893024e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_100)_ 5.10093612833575705e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_101)_ 5.10077372034355818e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_102)_ 5.10060958943435239e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_103)_ 5.10044373231178554e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_104)_ 5.10027614564093881e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_105)_ 5.10010682604814392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_106)_ 5.09992772829005645e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_107)_ 5.09973329788086431e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_108)_ 5.09953690592917184e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_109)_ 5.09933854846232038e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_110)_ 5.09913822146294677e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_111)_ 5.09893592086875316e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_112)_ 5.09873164257227671e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_113)_ 5.09852538242065592e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_114)_ 5.09831713621539251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_115)_ 5.09810689971211275e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_116)_ 5.09789466862032583e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_117)_ 5.09768043860318016e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_118)_ 5.09746420527721185e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_119)_ 5.09724596421209739e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_120)_ 5.09702571093040078e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_121)_ 5.09680344090731481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_122)_ 5.09657914957040248e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_123)_ 5.09635283229933762e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_124)_ 5.09612448442563775e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_125)_ 5.09589410123239688e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_126)_ 5.09566167795401554e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_127)_ 5.09542720977592651e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_128)_ 5.09519069183431768e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_129)_ 5.09495211921585565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_130)_ 5.09471148695740084e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_131)_ 5.09446879004572040e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_132)_ 5.09422402341720399e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_133)_ 5.09397718195757037e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_134)_ 5.09372826050157244e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_135)_ 5.09347725383269960e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_136)_ 5.09322415668287860e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_137)_ 5.09296896373216867e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_138)_ 5.09271166960845605e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_139)_ 5.09245226888714129e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_140)_ 5.09219075609083092e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_141)_ 5.09192712568901698e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_142)_ 5.09166137209775940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_143)_ 5.09139348967936627e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_144)_ 5.09112347274206201e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_145)_ 5.09085208461230678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_146)_ 5.09057920018173888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_147)_ 5.09030417496000709e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_148)_ 5.09002700306627602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_149)_ 5.08974767856424180e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_150)_ 5.08946619546179235e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_151)_ 5.08918254771065790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_152)_ 5.08889672920606344e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_153)_ 5.08860873378637422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_154)_ 5.08831855523274115e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_155)_ 5.08802618726874272e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_156)_ 5.08773162356001762e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_157)_ 5.08743485771390525e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_158)_ 5.08713588327907260e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_159)_ 5.08683469374514274e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_160)_ 5.08653128254231888e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_161)_ 5.08622564304100635e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_162)_ 5.08591776855142967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_163)_ 5.08560765232324670e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_164)_ 5.08529528754516065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_165)_ 5.08498066734452721e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_166)_ 5.08466378478695873e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_167)_ 5.08434463287592564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_168)_ 5.08402320455235639e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_169)_ 5.08369949269422747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_170)_ 5.08337349011616055e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_171)_ 5.08304518956900537e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_172)_ 5.08271458373942622e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_173)_ 5.08238166524948625e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_174)_ 5.08204642665621904e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_175)_ 5.08167747494883528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_176)_ 5.08130093141844625e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_177)_ 5.08092179249940443e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_178)_ 5.08054004965349080e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_179)_ 5.08015569426806124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_180)_ 5.07976871765555700e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_181)_ 5.07937911105301296e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_182)_ 5.07898686562156172e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_183)_ 5.07859197244593403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_184)_ 5.07819442253395792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_185)_ 5.07779420681605060e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_186)_ 5.07739131614471120e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_187)_ 5.07698574129400555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_188)_ 5.07657747295905324e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_189)_ 5.07616650175550674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_190)_ 5.07575281821902848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_191)_ 5.07533641280476786e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_192)_ 5.07491727588682906e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_193)_ 5.07449539775774312e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_194)_ 5.07407076862792934e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_195)_ 5.07364337862516166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_196)_ 5.07321321779402581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_197)_ 5.07278027609537503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_198)_ 5.07234454340578722e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_199)_ 5.07188619335399338e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_200)_ 5.07135179842364821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_201)_ 5.07081398668109458e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_202)_ 5.07027274545371469e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_203)_ 5.06972806196349453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_204)_ 5.06917992332634171e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_205)_ 5.06862831655140553e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_206)_ 5.06807322854039484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_207)_ 5.06751464608688664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_208)_ 5.06695255587564333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_209)_ 5.06638694448191629e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_210)_ 5.06581779837075885e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_211)_ 5.06524510389632852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_212)_ 5.06466884730119276e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_213)_ 5.06408901471563055e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_214)_ 5.06350559215693750e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_215)_ 5.06291856552872162e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_216)_ 5.06232792062020849e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_217)_ 5.06173364310553708e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_218)_ 5.06113571854306059e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_219)_ 5.06053413237464511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_220)_ 5.05992931112830959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_221)_ 5.05932413480148426e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_222)_ 5.05871527547576321e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_223)_ 5.05810271821329778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_224)_ 5.05748644795699960e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_225)_ 5.05686644952984778e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_226)_ 5.05624270763420256e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_227)_ 5.05561520685111461e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_228)_ 5.05498393163964224e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_229)_ 5.05434886633616927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_230)_ 5.05370999515372574e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_231)_ 5.05306730218131150e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_232)_ 5.05242077138322969e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_233)_ 5.05177038659841600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_234)_ 5.05111613153977927e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_235)_ 5.05045798979354501e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_236)_ 5.04979594481860588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_237)_ 5.04912997994587656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_238)_ 5.04846007837766066e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_239)_ 5.04776695835069944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_240)_ 5.04702804912827148e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_241)_ 5.04628479266641747e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_242)_ 5.04553717008610576e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_243)_ 5.04478516236476366e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_244)_ 5.04402875033564513e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_245)_ 5.04326791468720614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_246)_ 5.04250263596249440e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_247)_ 5.04173289455855453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_248)_ 5.04095867072584483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_249)_ 5.04017994456767369e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_250)_ 5.03939669603964759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_251)_ 5.03860890494914173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_252)_ 5.03781655095478484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_253)_ 5.03701961356596613e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_254)_ 5.03621807214236199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_255)_ 5.03541190589348489e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_256)_ 5.03454505443243718e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_257)_ 5.03361501480960527e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_258)_ 5.03267962848724295e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_259)_ 5.03173887106451332e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_260)_ 5.03079271796716085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_261)_ 5.02984114444718315e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_262)_ 5.02888412558252398e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_263)_ 5.02792163627681177e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_264)_ 5.02695365125913511e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_265)_ 5.02598014508385589e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_266)_ 5.02500109213046784e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_267)_ 5.02401646660350352e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_268)_ 5.02302624253247885e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_269)_ 5.02203039377189668e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_270)_ 5.02102889400129300e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_271)_ 5.02002171672534487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_272)_ 5.01886237170182099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_273)_ 5.01769323972836006e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_274)_ 5.01651749885584124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_275)_ 5.01533511787348729e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_276)_ 5.01414606537144749e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_277)_ 5.01295030974135614e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_278)_ 5.01174781917696848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_279)_ 5.01053856167488689e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_280)_ 5.00932250503538015e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_281)_ 5.00809961686329714e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_282)_ 5.00686986456908016e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_283)_ 5.00563321536988610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_284)_ 5.00438963629081215e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_285)_ 5.00313909416623801e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_286)_ 5.00175821533810279e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_287)_ 5.00035419222770230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_288)_ 4.99894232647517143e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_289)_ 4.99752258042805764e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_290)_ 4.99609491623170001e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_291)_ 4.99465929583160104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_292)_ 4.99321568097596540e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_293)_ 4.99176403321841633e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_294)_ 4.99030431392089611e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_295)_ 4.98883648425675759e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_296)_ 4.98736050521405758e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_297)_ 4.98587633759905628e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_298)_ 4.98438394203993695e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_299)_ 4.98271294682495807e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_300)_ 4.98097381507954822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_301)_ 4.97922506307512052e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_302)_ 4.97746664466178359e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_303)_ 4.97569851350996615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_304)_ 4.97392062311643599e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_305)_ 4.97213292681065653e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_306)_ 4.97033537776148506e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_307)_ 4.96852792898424127e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_308)_ 4.96671053334814019e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_309)_ 4.96488314358412808e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_310)_ 4.96304571229311975e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_311)_ 4.96107852245443937e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_312)_ 4.95894361093794203e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_313)_ 4.95679699498631194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_314)_ 4.95463861963318735e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_315)_ 4.95246842981785704e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_316)_ 4.95028637039798411e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_317)_ 4.94809238616294422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_318)_ 4.94588642184782259e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_319)_ 4.94366842214807818e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_320)_ 4.94143833173491558e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_321)_ 4.93919609527138945e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_322)_ 4.93693316111607672e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_323)_ 4.93433637235287961e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_324)_ 4.93172547868915032e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_325)_ 4.92910041689450438e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_326)_ 4.92646112383531687e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_327)_ 4.92380753649899319e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_328)_ 4.92113959201934890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_329)_ 4.91845722770315277e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_330)_ 4.91576038105787916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_331)_ 4.91304898982072089e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_332)_ 4.91032299198891309e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_333)_ 4.90750099718718573e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_334)_ 4.90420907626280567e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_335)_ 4.90089948460107436e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_336)_ 4.89757214976488839e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_337)_ 4.89422699983487632e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_338)_ 4.89086396345651053e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_339)_ 4.88748296988930662e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_340)_ 4.88408394905820060e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_341)_ 4.88066683160718924e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_342)_ 4.87723154895534208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_343)_ 4.87373840008824217e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_344)_ 4.86964667448839208e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_345)_ 4.86553330390513707e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_346)_ 4.86139821188591625e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_347)_ 4.85724132326773770e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_348)_ 4.85306256426255160e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_349)_ 4.84886186254634453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_350)_ 4.84463914735212100e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_351)_ 4.84039434956692602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_352)_ 4.83612740183309811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_353)_ 4.83165492913307304e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_354)_ 4.82666320234679986e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_355)_ 4.82164561014934563e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_356)_ 4.81660208396150864e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_357)_ 4.81153255790345113e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_358)_ 4.80643696894600581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_359)_ 4.80131525706853779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_360)_ 4.79616736542367619e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_361)_ 4.79099324050918938e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_362)_ 4.78576287792513924e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_363)_ 4.77978040495515586e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_364)_ 4.77376774699688227e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_365)_ 4.76772486027143358e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_366)_ 4.76165170594837193e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_367)_ 4.75554825039969487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_368)_ 4.74941446546491761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_369)_ 4.74325032872770578e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_370)_ 4.73705582380460655e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_371)_ 4.73070715019612180e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_372)_ 4.72409489100101680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_373)_ 4.71745052003991816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_374)_ 4.71077404883122384e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_375)_ 4.70406549700917225e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_376)_ 4.69732489271873845e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_377)_ 4.69055227302792446e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_378)_ 4.68374768435827562e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_379)_ 4.67691118293444603e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_380)_ 4.66993376699771972e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_381)_ 4.66290731779057097e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_382)_ 4.65584860809227834e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_383)_ 4.64875774008551943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_384)_ 4.64163482854853484e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_385)_ 4.63448000144983325e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_386)_ 4.62729340056960581e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_387)_ 4.62007518214914441e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_388)_ 4.61308385898117734e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_389)_ 4.60616644314403487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_390)_ 4.59921952265847338e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_391)_ 4.59224330766978994e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_392)_ 4.58523802559347686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_393)_ 4.57820392192114909e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_394)_ 4.57114126106357261e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_395)_ 4.56405032723268675e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_396)_ 4.55747810021192450e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_397)_ 4.55097533832967827e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_398)_ 4.54444774291405480e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_399)_ 4.53789565344373358e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_400)_ 4.53131943202592211e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_401)_ 4.52471946445313691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_402)_ 4.51809616131040883e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_403)_ 4.51169861763279343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_404)_ 4.50609976701218073e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_405)_ 4.50048249335553052e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_406)_ 4.49484723486793101e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_407)_ 4.48919445593749487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_408)_ 4.48352464837210931e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_409)_ 4.47783833269791245e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_410)_ 4.47213605952307134e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_411)_ 4.46718184731195223e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_412)_ 4.46240463751128686e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_413)_ 4.45761566847592690e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_414)_ 4.45281551191459712e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_415)_ 4.44800477122582407e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_416)_ 4.44318408303778654e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_417)_ 4.43835411883109074e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_418)_ 4.43394036271081688e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_419)_ 4.42992262110461610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_420)_ 4.42589904742436602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_421)_ 4.42187032891482019e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_422)_ 4.41783718964791703e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_423)_ 4.41380039239309738e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_424)_ 4.40976074059908356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_425)_ 4.40598309161656587e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_426)_ 4.40277357378010805e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_427)_ 4.39956391428517577e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_428)_ 4.39635489792471645e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_429)_ 4.39314735125405278e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_430)_ 4.38994214487285390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_431)_ 4.38674019586518682e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_432)_ 4.38362261393284172e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_433)_ 4.38098934398769941e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_434)_ 4.37836128257765083e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_435)_ 4.37573936273347357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_436)_ 4.37312456836271792e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_437)_ 4.37051793738677219e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_438)_ 4.36792056514801459e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_439)_ 4.36533360812145474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_440)_ 4.36310979337837423e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_441)_ 4.36094919013893687e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_442)_ 4.35880063958420436e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_443)_ 4.35666536080256179e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_444)_ 4.35454464536877808e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_445)_ 4.35243986300233985e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_446)_ 4.35035246791456345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_447)_ 4.34832996307096096e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_448)_ 4.34641352622312382e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_449)_ 4.34451798936186790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_450)_ 4.34264510663658498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_451)_ 4.34079675587041081e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_452)_ 4.33897495214014839e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_453)_ 4.33718186381816793e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_454)_ 4.33541983172047551e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_455)_ 4.33375287469993324e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_456)_ 4.33239789448488821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_457)_ 4.33107444231698864e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_458)_ 4.32978517854303817e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_459)_ 4.32853305165549713e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_460)_ 4.32732135783772520e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_461)_ 4.32615382093439180e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_462)_ 4.32503470299077790e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_463)_ 4.32396896243752664e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_464)_ 4.32296249033964060e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_465)_ 4.32202248288220616e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_466)_ 4.32115751914255668e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_467)_ 4.32038044218597292e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_468)_ 4.31970920042308890e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_469)_ 4.31917461785848431e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_0)__ 5.10564527921486757e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_1)__ 5.10564450132565426e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_2)__ 5.10564216764343897e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_3)__ 5.10563827812449205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_4)__ 5.10563283269592816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_5)__ 5.10562583125570271e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_6)__ 5.10561727367260758e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_7)__ 5.10560715978626050e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_8)__ 5.10559548940710073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_9)__ 5.10558226231637562e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_10)_ 5.10556747826613062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_11)_ 5.10555113697919722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_12)_ 5.10553323814917448e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_13)_ 5.10551378144041621e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_14)_ 5.10549276648801253e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_15)_ 5.10547019289776713e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_16)_ 5.10544606024618162e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_17)_ 5.10542036808042852e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_18)_ 5.10539311591832927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_19)_ 5.10536430324832722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_20)_ 5.10533392952946130e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_21)_ 5.10530199419133766e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_22)_ 5.10526849663409692e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_23)_ 5.10523343622838439e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_24)_ 5.10519681231531592e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_25)_ 5.10515862420644169e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_26)_ 5.10511887118371135e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_27)_ 5.10507755249943287e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_28)_ 5.10503466737623555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_29)_ 5.10499021500702597e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_30)_ 5.10494419455494679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_31)_ 5.10489660515332986e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_32)_ 5.10484744590565285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_33)_ 5.10479671588548740e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_34)_ 5.10474441413645295e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_35)_ 5.10469053967216411e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_36)_ 5.10463509147617671e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_37)_ 5.10457806850193521e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_38)_ 5.10451946967271581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_39)_ 5.10445929388156898e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_40)_ 5.10439753999125898e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_41)_ 5.10433420683420422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_42)_ 5.10426929321241261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_43)_ 5.10420279789742111e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_44)_ 5.10413471963022545e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_45)_ 5.10406505712121401e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_46)_ 5.10399380905009892e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_47)_ 5.10392097406584639e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_48)_ 5.10384655078659932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_49)_ 5.10377053779960903e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_50)_ 5.10369293366115429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_51)_ 5.10361373689646598e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_52)_ 5.10353294599964755e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_53)_ 5.10345055943359114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_54)_ 5.10336657562989942e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_55)_ 5.10328099298879678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_56)_ 5.10319380987904552e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_57)_ 5.10310502463785483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_58)_ 5.10301463557079487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_59)_ 5.10292264095170083e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_60)_ 5.10282903902258482e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_61)_ 5.10273382799353428e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_62)_ 5.10263700604262027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_63)_ 5.10253857131579736e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_64)_ 5.10243852192680123e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_65)_ 5.10233685595704856e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_66)_ 5.10223357145553251e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_67)_ 5.10212866643871550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_68)_ 5.10202213889042326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_69)_ 5.10191398676173478e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_70)_ 5.10180420797086995e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_71)_ 5.10169280040307598e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_72)_ 5.10157976191051574e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_73)_ 5.10146509031214563e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_74)_ 5.10134878339360114e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_75)_ 5.10123083890707392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_76)_ 5.10111125457118888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_77)_ 5.10099002807088127e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_78)_ 5.10086715705726945e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_79)_ 5.10074263914752493e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_80)_ 5.10061647192474581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_81)_ 5.10048865293782043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_82)_ 5.10035917970129660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_83)_ 5.10022804969524231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_84)_ 5.10009526036511147e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_85)_ 5.09995590227117148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_86)_ 5.09980274426479383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_87)_ 5.09964771032206130e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_88)_ 5.09949079741118823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_89)_ 5.09933200246062626e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_90)_ 5.09917132235889881e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_91)_ 5.09900875395442910e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_92)_ 5.09884429405536395e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_93)_ 5.09867793942940111e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_94)_ 5.09850968680361021e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_95)_ 5.09833953286425086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_96)_ 5.09816747425659145e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_97)_ 5.09799350758472372e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_98)_ 5.09781762941137515e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_99)_ 5.09763983625771644e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_100)_ 5.09746012460317317e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_101)_ 5.09727849088522973e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_102)_ 5.09709493149922892e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_103)_ 5.09690944279817728e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_104)_ 5.09672202109253902e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_105)_ 5.09653266265003353e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_106)_ 5.09634136369542574e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_107)_ 5.09614812041032081e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_108)_ 5.09595292893294811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_109)_ 5.09575578535794875e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_110)_ 5.09555668573615606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_111)_ 5.09535562607437882e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_112)_ 5.09515260233517751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_113)_ 5.09494761043663900e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_114)_ 5.09474064625214993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_115)_ 5.09453170561016648e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_116)_ 5.09432078429398203e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_117)_ 5.09410787804148981e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_118)_ 5.09389298254494847e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_119)_ 5.09367609345073831e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_120)_ 5.09345720635911974e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_121)_ 5.09323631682398741e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_122)_ 5.09301342035262010e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_123)_ 5.09278851240543062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_124)_ 5.09256158839571285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_125)_ 5.09233264368938165e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_126)_ 5.09210167360471573e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_127)_ 5.09186867341209606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_128)_ 5.09163363833373808e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_129)_ 5.09139656354342591e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_130)_ 5.09115744416624167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_131)_ 5.09091670834569285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_132)_ 5.09067474305043461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_133)_ 5.09043072890141417e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_134)_ 5.09018466085237904e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_135)_ 5.08993653380723643e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_136)_ 5.08968634261976831e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_137)_ 5.08943408209334223e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_138)_ 5.08917974698062068e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_139)_ 5.08892333198326483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_140)_ 5.08866483175163680e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_141)_ 5.08840424088449907e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_142)_ 5.08814155392871257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_143)_ 5.08787676537892750e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_144)_ 5.08760986967727717e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_145)_ 5.08734086121306248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_146)_ 5.08706973432243927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_147)_ 5.08679648328809790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_148)_ 5.08652110233894419e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_149)_ 5.08624358564977399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_150)_ 5.08596392734094565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_151)_ 5.08568212147805099e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_152)_ 5.08539816207158282e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_153)_ 5.08511204307659526e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_154)_ 5.08482375839236980e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_155)_ 5.08453330186206927e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_156)_ 5.08424066727239392e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_157)_ 5.08394584835323329e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_158)_ 5.08364883877731657e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_159)_ 5.08334963215985525e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_160)_ 5.08304822205818922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_161)_ 5.08274460197142517e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_162)_ 5.08243876534007200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_163)_ 5.08213070554567921e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_164)_ 5.08180105633910557e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_165)_ 5.08145483909232851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_166)_ 5.08110613662867436e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_167)_ 5.08075494135080845e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_168)_ 5.08040124559400041e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_169)_ 5.08004504162569646e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_170)_ 5.07968632164509302e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_171)_ 5.07932507778270192e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_172)_ 5.07896130209991767e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_173)_ 5.07859498658857760e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_174)_ 5.07822612317052062e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_175)_ 5.07785470369714105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_176)_ 5.07748071994894161e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_177)_ 5.07710416363508230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_178)_ 5.07672502639292489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_179)_ 5.07634329978757535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_180)_ 5.07595897531142413e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_181)_ 5.07557204438368288e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_182)_ 5.07518249834991408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_183)_ 5.07479032848156564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_184)_ 5.07439552597549550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_185)_ 5.07399808195349777e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_186)_ 5.07359798746182236e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_187)_ 5.07319523347069321e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_188)_ 5.07278981087382803e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_189)_ 5.07238171048794584e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_190)_ 5.07196479271314686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_191)_ 5.07146413343665898e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_192)_ 5.07096019788510048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_193)_ 5.07045297456019028e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_194)_ 5.06994245186742205e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_195)_ 5.06942861811545455e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_196)_ 5.06891146151550558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_197)_ 5.06839097018073446e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_198)_ 5.06786713212562603e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_199)_ 5.06733993526537461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_200)_ 5.06680936741525940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_201)_ 5.06627541629002422e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_202)_ 5.06573806950325007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_203)_ 5.06519731456672559e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_204)_ 5.06465313888982323e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_205)_ 5.06410552977886113e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_206)_ 5.06355447443647435e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_207)_ 5.06299995996097891e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_208)_ 5.06244197334573656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_209)_ 5.06188050147851669e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_210)_ 5.06131553114085833e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_211)_ 5.06074704900743200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_212)_ 5.06017504164540028e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_213)_ 5.05960197975011212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_214)_ 5.05902647321297252e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_215)_ 5.05844742261743860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_216)_ 5.05786481418026312e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_217)_ 5.05727863400817697e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_218)_ 5.05668886809725535e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_219)_ 5.05609550233227836e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_220)_ 5.05549852248610492e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_221)_ 5.05489791421903476e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_222)_ 5.05429366307818100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_223)_ 5.05368575449684485e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_224)_ 5.05307417379388610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_225)_ 5.05245890617310067e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_226)_ 5.05183993672260314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_227)_ 5.05121725041420859e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_228)_ 5.05059083210281941e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_229)_ 5.04996066652581632e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_230)_ 5.04932673830245520e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_231)_ 5.04868903193326659e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_232)_ 5.04804753179946104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_233)_ 5.04734835246508169e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_234)_ 5.04664071963615655e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_235)_ 5.04592889929578732e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_236)_ 5.04521287389104174e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_237)_ 5.04449262573577926e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_238)_ 5.04376813701005204e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_239)_ 5.04303938975951098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_240)_ 5.04230636589482231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_241)_ 5.04156904719109917e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_242)_ 5.04082741528734033e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_243)_ 5.04008145168588229e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_244)_ 5.03933113775186641e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_245)_ 5.03857645471271596e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_246)_ 5.03781738365763445e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_247)_ 5.03705390553711183e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_248)_ 5.03628600116245266e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_249)_ 5.03551365120531784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_250)_ 5.03469986621147285e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_251)_ 5.03380880738473167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_252)_ 5.03291261135631984e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_253)_ 5.03201125544078778e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_254)_ 5.03110471679115889e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_255)_ 5.03019297239855305e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_256)_ 5.02927599909183272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_257)_ 5.02835377353728674e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_258)_ 5.02742627223834049e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_259)_ 5.02649347153529789e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_260)_ 5.02555534760512188e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_261)_ 5.02461187646124685e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_262)_ 5.02366303395342939e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_263)_ 5.02270879576764244e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_264)_ 5.02174913742600282e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_265)_ 5.02078403428674989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_266)_ 5.01978589691462673e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_267)_ 5.01866559695890544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_268)_ 5.01753896165521738e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_269)_ 5.01640596196891693e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_270)_ 5.01526656867794998e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_271)_ 5.01412075237316799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_272)_ 5.01296848345872235e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_273)_ 5.01180973215251555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_274)_ 5.01064446848673910e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_275)_ 5.00947266230847745e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_276)_ 5.00829428328039725e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_277)_ 5.00710930088152324e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_278)_ 5.00591768440809446e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_279)_ 5.00471940297451638e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_280)_ 5.00351442551440613e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_281)_ 5.00222582591476339e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_282)_ 5.00087299223446067e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_283)_ 4.99951261943217773e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_284)_ 4.99814467222656447e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_285)_ 4.99676911514309765e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_286)_ 4.99538591251597452e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_287)_ 4.99399502849015349e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_288)_ 4.99259642702353332e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_289)_ 4.99119007188929160e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_290)_ 4.98977592667837726e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_291)_ 4.98835395480217656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_292)_ 4.98692411949534318e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_293)_ 4.98548638381881730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_294)_ 4.98404071066302308e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_295)_ 4.98237154906458670e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_296)_ 4.98068694362854316e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_297)_ 4.97899306057032547e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_298)_ 4.97728985637553620e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_299)_ 4.97557728735527860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_300)_ 4.97385530965133853e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_301)_ 4.97212387924166350e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_302)_ 4.97038295194613085e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_303)_ 4.96863248343263137e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_304)_ 4.96687242922347707e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_305)_ 4.96510274470214199e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_306)_ 4.96332338512035065e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_307)_ 4.96146480092076345e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_308)_ 4.95939747973814775e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_309)_ 4.95731888439515487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_310)_ 4.95522896294934370e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_311)_ 4.95312766335424257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_312)_ 4.95101493347028168e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_313)_ 4.94889072107625410e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_314)_ 4.94675497388133252e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_315)_ 4.94460763953766076e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_316)_ 4.94244866565354144e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_317)_ 4.94027799980725462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_318)_ 4.93809558956151733e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_319)_ 4.93574139298164383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_320)_ 4.93321407301692787e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_321)_ 4.93067311818873861e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_322)_ 4.92811846853377702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_323)_ 4.92555006416600989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_324)_ 4.92296784529837765e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_325)_ 4.92037175226548555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_326)_ 4.91776172554731730e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_327)_ 4.91513770579401452e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_328)_ 4.91249963385176116e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_329)_ 4.90984745078982669e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_330)_ 4.90702164297612384e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_331)_ 4.90381910460298442e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_332)_ 4.90059949814875679e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_333)_ 4.89736275462655968e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_334)_ 4.89410880550028793e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_335)_ 4.89083758272645639e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_336)_ 4.88754901879787198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_337)_ 4.88424304678920720e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_338)_ 4.88091960040454822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_339)_ 4.87757861402701280e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_340)_ 4.87422002277051405e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_341)_ 4.87028020037134297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_342)_ 4.86628019337206865e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_343)_ 4.86225921445608691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_344)_ 4.85821719126111802e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_345)_ 4.85415405263297899e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_346)_ 4.85006972870414756e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_347)_ 4.84596415097568354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_348)_ 4.84183725240266654e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_349)_ 4.83768896748328672e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_350)_ 4.83351923235174539e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_351)_ 4.82874859278625550e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_352)_ 4.82387104919170895e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_353)_ 4.81896846152657474e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_354)_ 4.81404076459505248e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_355)_ 4.80908789570627206e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_356)_ 4.80410979481252269e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_357)_ 4.79910640465339213e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_358)_ 4.79407767090605645e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_359)_ 4.78902354234197816e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_360)_ 4.78364668924671008e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_361)_ 4.77780348886577713e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_362)_ 4.77193106907887596e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_363)_ 4.76602938736894544e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_364)_ 4.76009840577914858e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_365)_ 4.75413809114345298e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_366)_ 4.74814841532709551e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_367)_ 4.74212935547735128e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_368)_ 4.73608089428508237e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_369)_ 4.72983197953833354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_370)_ 4.72337613782736483e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_371)_ 4.71688920002383867e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_372)_ 4.71037117428092245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_373)_ 4.70382207618316386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_374)_ 4.69724192910264051e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_375)_ 4.69063076457051622e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_376)_ 4.68398862266474225e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_377)_ 4.67731555241459134e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_378)_ 4.67051295756371303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_379)_ 4.66365491092309767e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_380)_ 4.65676557854432716e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_381)_ 4.64984505130598151e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_382)_ 4.64289343154765888e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_383)_ 4.63591083360267362e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_384)_ 4.62889738435423936e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_385)_ 4.62185322381627302e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_386)_ 4.61493934218796937e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_387)_ 4.60818896456890812e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_388)_ 4.60140988876690500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_389)_ 4.59460230373116190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_390)_ 4.58776641403611194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_391)_ 4.58090244059866691e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_392)_ 4.57401062142785761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_393)_ 4.56709121240846940e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_394)_ 4.56040172093277931e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_395)_ 4.55405619077140855e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_396)_ 4.54768635985674408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_397)_ 4.54129253388873124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_398)_ 4.53487503891840333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_399)_ 4.52843422228175072e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_400)_ 4.52197045357722658e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_401)_ 4.51548412568918565e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_402)_ 4.50962124359155467e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_403)_ 4.50413864822896102e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_404)_ 4.49863822873015806e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_405)_ 4.49312040259166992e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_406)_ 4.48758561181078761e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_407)_ 4.48203432402369799e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_408)_ 4.47646703369951027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_409)_ 4.47090354873977489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_410)_ 4.46623860240915747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_411)_ 4.46156170116779549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_412)_ 4.45687335751722884e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_413)_ 4.45217411209511553e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_414)_ 4.44746453501317660e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_415)_ 4.44274522726516352e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_416)_ 4.43801682220935163e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_417)_ 4.43374504514989809e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_418)_ 4.42981169109699664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_419)_ 4.42587254465822539e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_420)_ 4.42192825190152092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_421)_ 4.41797949295255918e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_422)_ 4.41402698369346993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_423)_ 4.41007147756082247e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_424)_ 4.40629642939595527e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_425)_ 4.40315335808093309e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_426)_ 4.40000989648865399e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_427)_ 4.39686677809813986e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_428)_ 4.39372477475941992e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_429)_ 4.39058469874793147e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_430)_ 4.38744740495786161e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_431)_ 4.38431379324766723e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_432)_ 4.38167793569340702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_433)_ 4.37910168525337937e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_434)_ 4.37653094265152731e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_435)_ 4.37396662080308190e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_436)_ 4.37140968176773441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_437)_ 4.36886113976930019e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_438)_ 4.36632206447651257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_439)_ 4.36398275318632329e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_440)_ 4.36186068331524623e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_441)_ 4.35974961367662530e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_442)_ 4.35765066638243255e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_443)_ 4.35556502861421890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_444)_ 4.35349395751914088e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_445)_ 4.35143878567615303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_446)_ 4.34940092723090501e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_447)_ 4.34748574586017043e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_448)_ 4.34561540323718631e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_449)_ 4.34376576021705176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_450)_ 4.34193852001761655e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_451)_ 4.34013550537810033e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_452)_ 4.33835867172677254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_453)_ 4.33661012274321536e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_454)_ 4.33489212894211846e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_455)_ 4.33336510586938601e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_456)_ 4.33204439831116375e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_457)_ 4.33075461576878951e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_458)_ 4.32949833763780774e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_459)_ 4.32827842272372934e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_460)_ 4.32709806714189540e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_461)_ 4.32596088209222955e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_462)_ 4.32487100137938185e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_463)_ 4.32383323529487171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_464)_ 4.32285330046057226e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_465)_ 4.32193814163840386e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_466)_ 4.32109615519848802e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_467)_ 4.32033980711398371e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_468)_ 4.31968652706865797e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_469)_ 4.31916628663186444e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_470)_ 4.31886464844327449e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_471)_ 4.31136059372508527e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_472)_ 4.30413117598555885e+01 OP @@ -13035,476 +13032,476 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_498)_ 2.35829477290757055e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_499)_ 1.95598792195493942e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile12_500)_ 1.20636325044855823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_0)__ 6.40629848387410732e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_1)__ 6.40629468640867259e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_2)__ 6.40628329394053253e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_3)__ 6.40626430625416958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_4)__ 6.40623772299037455e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_5)__ 6.40620354364622813e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_6)__ 6.40616176757507532e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_7)__ 6.40611239398648280e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_8)__ 6.40605542194620767e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_9)__ 6.40599085037613776e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_10)_ 6.40591867805423476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_11)_ 6.40583890361447175e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_12)_ 6.40575152554675498e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_13)_ 6.40565654219684433e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_14)_ 6.40555395176626376e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_15)_ 6.40544375231220329e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_16)_ 6.40532594174741234e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_17)_ 6.40520051784008615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_18)_ 6.40506747821374915e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_19)_ 6.40492682034712146e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_20)_ 6.40477854157398525e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_21)_ 6.40462263908303555e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_22)_ 6.40445910991773104e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_23)_ 6.40428795097613630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_24)_ 6.40410915901074702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_25)_ 6.40392273062831805e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_26)_ 6.40372866228967439e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_27)_ 6.40352695030952788e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_28)_ 6.40331759085626402e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_29)_ 6.40310057995174731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_30)_ 6.40287591347109526e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_31)_ 6.40264358714245390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_32)_ 6.40240359654677462e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_33)_ 6.40215593711756128e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_34)_ 6.40190016741540973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_35)_ 6.40163600041000649e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_36)_ 6.40136411622502521e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_37)_ 6.40108450967897227e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_38)_ 6.40079717544093398e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_39)_ 6.40050210803028392e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_40)_ 6.40019930181638870e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_41)_ 6.39988875101829464e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_42)_ 6.39957044970441871e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_43)_ 6.39924439179221736e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_44)_ 6.39891057104786114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_45)_ 6.39856898108588865e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_46)_ 6.39821961536885837e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_47)_ 6.39786246720699339e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_48)_ 6.39749752975781263e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_49)_ 6.39712479602575570e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_50)_ 6.39674425886180344e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_51)_ 6.39635591096308076e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_52)_ 6.39595974487245940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_53)_ 6.39555575297814940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_54)_ 6.39514392751327705e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_55)_ 6.39472426055546492e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_56)_ 6.39429674402638923e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_57)_ 6.39386136969134071e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_58)_ 6.39341812915876986e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_59)_ 6.39296701387982509e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_60)_ 6.39250801514788307e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_61)_ 6.39204112409806768e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_62)_ 6.39156633170676116e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_63)_ 6.39108362879110743e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_64)_ 6.39059300600850548e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_65)_ 6.39009445385609283e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_66)_ 6.38958796267021967e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_67)_ 6.38907352262591743e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_68)_ 6.38855112373635166e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_69)_ 6.38802075585227271e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_70)_ 6.38748240866145025e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_71)_ 6.38693607168810615e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_72)_ 6.38638173429232978e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_73)_ 6.38581938566948963e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_74)_ 6.38524901484963294e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_75)_ 6.38467061069687674e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_76)_ 6.38408416190878825e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_77)_ 6.38348965701575821e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_78)_ 6.38288708438035854e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_79)_ 6.38227643219670000e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_80)_ 6.38165768848976924e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_81)_ 6.38103084111476377e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_82)_ 6.38039587775641266e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_83)_ 6.37975278592829227e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_84)_ 6.37910155297212427e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_85)_ 6.37844216605707146e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_86)_ 6.37777461217901802e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_87)_ 6.37709887815984331e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_88)_ 6.37641495064668149e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_89)_ 6.37572281611117617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_90)_ 6.37502246084871800e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_91)_ 6.37431387097767796e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_92)_ 6.37359703243862796e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_93)_ 6.37287193099354852e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_94)_ 6.37213855222503014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_95)_ 6.37139688153546047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_96)_ 6.37064690414620500e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_97)_ 6.36988860509677011e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_98)_ 6.36912196924396312e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_99)_ 6.36834698126103476e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_100)_ 6.36756362563681719e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_101)_ 6.36677188667484515e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_102)_ 6.36597174849246841e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_103)_ 6.36516319501995440e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_104)_ 6.36434620999957801e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_105)_ 6.36352077698470140e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_106)_ 6.36268682259024345e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_107)_ 6.36184429081707989e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_108)_ 6.36099325902641155e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_109)_ 6.36013371000338879e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_110)_ 6.35926562633943533e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_111)_ 6.35838899043126347e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_112)_ 6.35750378447986719e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_113)_ 6.35660999048950970e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_114)_ 6.35570759026670018e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_115)_ 6.35479656541915503e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_116)_ 6.35387689735474623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_117)_ 6.35294856728044692e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_118)_ 6.35201155620125064e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_119)_ 6.35106584491908990e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_120)_ 6.35011141403173767e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_121)_ 6.34914824393169681e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_122)_ 6.34817631480507814e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_123)_ 6.34719560663046423e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_124)_ 6.34620609917776477e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_125)_ 6.34520777200705481e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_126)_ 6.34420060446740237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_127)_ 6.34318457569568181e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_128)_ 6.34215966461537874e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_129)_ 6.34112584993537709e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_130)_ 6.34008311014873698e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_131)_ 6.33903142353145554e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_132)_ 6.33797076814121922e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_133)_ 6.33690112181614040e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_134)_ 6.33582246217348199e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_135)_ 6.33473476660836639e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_136)_ 6.33363801229247514e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_137)_ 6.33253217617273236e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_138)_ 6.33141723496997599e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_139)_ 6.33029316517761416e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_140)_ 6.32915994306026803e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_141)_ 6.32801754465240691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_142)_ 6.32686594575695977e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_143)_ 6.32570512194392052e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_144)_ 6.32453504854893680e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_145)_ 6.32334259827692051e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_146)_ 6.32212977858550857e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_147)_ 6.32090744426670099e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_148)_ 6.31967556918345039e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_149)_ 6.31843412695218802e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_150)_ 6.31718309094130177e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_151)_ 6.31592243426959357e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_152)_ 6.31465212980472828e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_153)_ 6.31337215016166482e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_154)_ 6.31208246770107451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_155)_ 6.31078305452774515e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_156)_ 6.30947388248896814e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_157)_ 6.30815492317291415e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_158)_ 6.30682614790699176e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_159)_ 6.30548752775619121e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_160)_ 6.30413903352141887e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_161)_ 6.30278063573780756e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_162)_ 6.30141230467302194e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_163)_ 6.30003401032554251e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_164)_ 6.29864572242293761e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_165)_ 6.29724741042012113e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_166)_ 6.29583904349759393e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_167)_ 6.29442059055967036e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_168)_ 6.29299202023269473e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_169)_ 6.29155330086323517e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_170)_ 6.29010440051627029e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_171)_ 6.28864528697335743e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_172)_ 6.28717592773078522e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_173)_ 6.28569628999771552e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_174)_ 6.28420634069430832e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_175)_ 6.28267764729022531e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_176)_ 6.28113381881562916e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_177)_ 6.27957934924755676e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_178)_ 6.27801420357931121e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_179)_ 6.27643834649905017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_180)_ 6.27485174238778356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_181)_ 6.27325435531735280e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_182)_ 6.27164614904840221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_183)_ 6.27002708702833047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_184)_ 6.26839713238922798e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_185)_ 6.26675624794580912e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_186)_ 6.26510439619331621e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_187)_ 6.26344153930542333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_188)_ 6.26176763913211900e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_189)_ 6.26008265719757730e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_190)_ 6.25838655469801779e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_191)_ 6.25667929249954824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_192)_ 6.25496083113599965e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_193)_ 6.25323113080674631e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_194)_ 6.25149015137451158e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_195)_ 6.24973785236316459e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_196)_ 6.24797419295550611e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_197)_ 6.24619913199103891e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_198)_ 6.24441262796372740e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_199)_ 6.24260167673897612e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_200)_ 6.24073129448276944e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_201)_ 6.23884895338383174e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_202)_ 6.23695460908800285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_203)_ 6.23504821687223085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_204)_ 6.23312973164219457e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_205)_ 6.23119910792991973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_206)_ 6.22925629989138159e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_207)_ 6.22730126130410397e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_208)_ 6.22533394556475059e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_209)_ 6.22335430568670702e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_210)_ 6.22136229429765564e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_211)_ 6.21935786363714911e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_212)_ 6.21734096555417324e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_213)_ 6.21531155150470696e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_214)_ 6.21326957254928018e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_215)_ 6.21121497935052531e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_216)_ 6.20914772217072937e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_217)_ 6.20706775086937981e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_218)_ 6.20497501490071173e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_219)_ 6.20286946331125861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_220)_ 6.20074669820977604e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_221)_ 6.19857814970531678e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_222)_ 6.19639640378815102e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_223)_ 6.19420140693098418e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_224)_ 6.19199310517924815e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_225)_ 6.18977144414862224e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_226)_ 6.18753636902255977e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_227)_ 6.18528782454982746e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_228)_ 6.18302575504205265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_229)_ 6.18075010437127403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_230)_ 6.17846081596751660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_231)_ 6.17615783281636723e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_232)_ 6.17384109745657454e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_233)_ 6.17151055197765785e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_234)_ 6.16916613801754252e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_235)_ 6.16680779676020308e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_236)_ 6.16443546893333760e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_237)_ 6.16204909480605920e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_238)_ 6.15964861418661940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_239)_ 6.15719331736780688e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_240)_ 6.15463555467478685e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_241)_ 6.15206274384529337e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_242)_ 6.14947481952882882e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_243)_ 6.14687171587802936e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_244)_ 6.14425336654646514e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_245)_ 6.14161970468648306e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_246)_ 6.13897066294709646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_247)_ 6.13630617347191958e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_248)_ 6.13362616789715602e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_249)_ 6.13093057734963978e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_250)_ 6.12821933244493451e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_251)_ 6.12549236328549114e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_252)_ 6.12274959945887005e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_253)_ 6.11999097003603580e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_254)_ 6.11721640356971363e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_255)_ 6.11442582809283124e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_256)_ 6.11157450388830270e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_257)_ 6.10866037973676228e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_258)_ 6.10572950259336196e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_259)_ 6.10278179600214017e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_260)_ 6.09981718296376982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_261)_ 6.09683558593450599e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_262)_ 6.09383692682524085e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_263)_ 6.09082112700067739e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_264)_ 6.08778810727862307e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_265)_ 6.08473778792941360e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_266)_ 6.08167008867546528e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_267)_ 6.07858492869097660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_268)_ 6.07548222660176691e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_269)_ 6.07236190048527433e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_270)_ 6.06922386787071630e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_271)_ 6.06606804573941290e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_272)_ 6.06278787304043547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_273)_ 6.05948679452713321e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_274)_ 6.05616705559296378e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_275)_ 6.05282856811337453e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_276)_ 6.04947124340173374e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_277)_ 6.04609499221088811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_278)_ 6.04269972473496964e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_279)_ 6.03928535061144487e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_280)_ 6.03585177892342557e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_281)_ 6.03239891820224940e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_282)_ 6.02892667643034343e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_283)_ 6.02543496104438390e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_284)_ 6.02192367893876366e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_285)_ 6.01839273646937656e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_286)_ 6.01466678853911816e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_287)_ 6.01089809492699061e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_288)_ 6.00710835001230237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_289)_ 6.00329745272794355e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_290)_ 5.99946530146403560e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_291)_ 5.99561179407429634e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_292)_ 5.99173682788285333e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_293)_ 5.98784029969153764e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_294)_ 5.98392210578766708e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_295)_ 5.97998214195234823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_296)_ 5.97602030346931130e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_297)_ 5.97203648513430920e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_298)_ 5.96803058126509356e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_299)_ 5.96384086947944283e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_300)_ 5.95957209155889132e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_301)_ 5.95527970027529534e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_302)_ 5.95096358235165042e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_303)_ 5.94662362406991676e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_304)_ 5.94225971128579786e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_305)_ 5.93787172944433834e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_306)_ 5.93345956359637370e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_307)_ 5.92902309841586543e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_308)_ 5.92456221821816342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_309)_ 5.92007680697922467e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_310)_ 5.91556674835584033e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_311)_ 5.91089903119612217e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_312)_ 5.90603143293850863e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_313)_ 5.90113714856879241e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_314)_ 5.89621605276366694e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_315)_ 5.89126801998471521e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_316)_ 5.88629292450740422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_317)_ 5.88129064045151395e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_318)_ 5.87626104181303646e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_319)_ 5.87120400249761829e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_320)_ 5.86611939635560802e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_321)_ 5.86100709721876925e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_322)_ 5.85586171265395237e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_323)_ 5.85048904624733765e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_324)_ 5.84508719728789856e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_325)_ 5.83965603495414811e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_326)_ 5.83419542862479474e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_327)_ 5.82870524792895210e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_328)_ 5.82318536279865384e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_329)_ 5.81763564352376505e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_330)_ 5.81205596080940623e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_331)_ 5.80644618583597492e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_332)_ 5.80080619032189020e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_333)_ 5.79507537714096230e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_334)_ 5.78897564131049265e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_335)_ 5.78284316264316729e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_336)_ 5.77667780691729362e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_337)_ 5.77047944087050624e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_338)_ 5.76424793228706420e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_339)_ 5.75798315008901014e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_340)_ 5.75168496443137087e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_341)_ 5.74535324680155597e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_342)_ 5.73898787012313321e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_343)_ 5.73258526843257883e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_344)_ 5.72609838638403588e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_345)_ 5.71957718911789996e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_346)_ 5.71302155542889167e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_347)_ 5.70643136615616982e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_348)_ 5.69980650431867915e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_349)_ 5.69314685525640058e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_350)_ 5.68645230677775331e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_351)_ 5.67972274931341943e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_352)_ 5.67295807607686342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_353)_ 5.66608255855140257e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_354)_ 5.65896669270714057e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_355)_ 5.65181395489374836e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_356)_ 5.64462424734938466e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_357)_ 5.63739747616023905e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_358)_ 5.63013355147622079e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_359)_ 5.62283238773600047e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_360)_ 5.61549390390183660e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_361)_ 5.60811802370458921e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_362)_ 5.60069576790395161e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_363)_ 5.59302014220661547e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_364)_ 5.58530578859977354e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_365)_ 5.57755265091429209e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_366)_ 5.56976067932998617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_367)_ 5.56192983070149580e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_368)_ 5.55406006889838437e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_369)_ 5.54615136516007610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_370)_ 5.53820369846628822e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_371)_ 5.53022444497425241e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_372)_ 5.52222013121175692e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_373)_ 5.51417694531147973e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_374)_ 5.50609490121674483e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_375)_ 5.49797402269531403e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_376)_ 5.48981434381742091e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_377)_ 5.48161590945485599e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_378)_ 5.47337877580212364e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_379)_ 5.46510301092064594e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_380)_ 5.45667868430759313e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_381)_ 5.44819848698862046e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_382)_ 5.43967935459412928e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_383)_ 5.43112141044804062e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_384)_ 5.42252479307581794e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_385)_ 5.41388965692221262e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_386)_ 5.40521617310124753e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_387)_ 5.39650453018000178e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_388)_ 5.38783247763093129e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_389)_ 5.37915426503524330e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_390)_ 5.37043903751699361e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_391)_ 5.36168705871300872e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_392)_ 5.35289861392636155e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_393)_ 5.34407401113744172e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_394)_ 5.33521358206157288e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_395)_ 5.32631768325555228e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_396)_ 5.31737977829245523e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_397)_ 5.30840596689495570e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_398)_ 5.29939788522139565e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_399)_ 5.29035600175235246e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_400)_ 5.28128081619577188e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_401)_ 5.27217286094532867e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_402)_ 5.26303270260836413e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_403)_ 5.25386201468244636e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_404)_ 5.24466390294858229e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_405)_ 5.23543552479837118e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_406)_ 5.22617760014017207e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_407)_ 5.21689089189731305e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_408)_ 5.20757620803989383e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_409)_ 5.19823440371799848e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_410)_ 5.18886638350218803e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_411)_ 5.17947278470070600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_412)_ 5.17005485680796610e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_413)_ 5.16061374642397013e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_414)_ 5.15115058063163431e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_415)_ 5.14166654898805291e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_416)_ 5.13216290656020746e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_417)_ 5.12264097712415065e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_418)_ 5.11324152764223285e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_419)_ 5.10395915910376843e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_420)_ 5.09466331646319048e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_421)_ 5.08535558749286096e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_422)_ 5.07603764504863548e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_423)_ 5.06671125139094869e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_424)_ 5.05737826276339959e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_425)_ 5.04808191507362309e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_426)_ 5.03887199432552606e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_427)_ 5.02966166707919911e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_428)_ 5.02045318534918650e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_429)_ 5.01124892098989108e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_430)_ 5.00205137224384089e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_431)_ 4.99286317074357839e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_432)_ 4.98376852967558861e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_433)_ 4.97517575406512336e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_434)_ 4.96659997472706962e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_435)_ 4.95804423628817617e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_436)_ 4.94951174939413221e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_437)_ 4.94100590094631045e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_438)_ 4.93253026521983600e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_439)_ 4.92408861597527263e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_440)_ 4.91602986308275618e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_441)_ 4.90806263863732823e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_442)_ 4.90013985846675340e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_443)_ 4.89226601795944731e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_444)_ 4.88444587979736866e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_445)_ 4.87668449482112862e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_446)_ 4.86898722543495168e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_447)_ 4.86158786705545864e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_448)_ 4.85468869440324440e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_449)_ 4.84786476170272422e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_450)_ 4.84112238389170386e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_451)_ 4.83446832113347824e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_452)_ 4.82790982770453425e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_453)_ 4.82145470974540373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_454)_ 4.81511139419371119e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_455)_ 4.80897031124972187e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_456)_ 4.80332456035369830e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_457)_ 4.79781017632078388e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_458)_ 4.79243824392932396e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_459)_ 4.78722104856457236e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_460)_ 4.78217232432385373e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_461)_ 4.77730758722663396e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_462)_ 4.77264459579490889e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_463)_ 4.76820401015636151e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_464)_ 4.76401037641516965e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_465)_ 4.76009367867586022e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_466)_ 4.75684069678458883e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_467)_ 4.75392665819739904e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_468)_ 4.75140950158658342e+01 OP -Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_469)_ 4.74940481696931585e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_0)__ 6.39052073617247842e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_1)__ 6.39051694396256451e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_2)__ 6.39050556726176495e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_3)__ 6.39048660585689774e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_4)__ 6.39046005939264887e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_5)__ 6.39042592737155246e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_6)__ 6.39038420915396301e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_7)__ 6.39033490395802133e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_8)__ 6.39027801085961613e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_9)__ 6.39021352879233078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_10)_ 6.39014145654738854e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_11)_ 6.39006179277358655e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_12)_ 6.38997453597722611e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_13)_ 6.38987968452203035e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_14)_ 6.38977723662906030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_15)_ 6.38966719037661548e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_16)_ 6.38954954370013652e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_17)_ 6.38942429439209008e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_18)_ 6.38929144010185581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_19)_ 6.38915097833559500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_20)_ 6.38900290645612401e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_21)_ 6.38884722168277008e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_22)_ 6.38868392109122141e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_23)_ 6.38851300161337363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_24)_ 6.38833446003716432e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_25)_ 6.38814829300640383e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_26)_ 6.38795449702059273e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_27)_ 6.38775306843473558e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_28)_ 6.38754400345914846e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_29)_ 6.38732729815925211e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_30)_ 6.38710294845536453e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_31)_ 6.38687095012248349e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_32)_ 6.38663129879005638e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_33)_ 6.38638398994175063e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_34)_ 6.38612901891520863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_35)_ 6.38586638090179903e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_36)_ 6.38559607094636092e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_37)_ 6.38531808394693456e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_38)_ 6.38503241465449136e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_39)_ 6.38473905767264966e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_40)_ 6.38443800745738841e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_41)_ 6.38412925831674443e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_42)_ 6.38381280441051331e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_43)_ 6.38348863974992895e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_44)_ 6.38315675819734878e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_45)_ 6.38281715346591767e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_46)_ 6.38246981911923328e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_47)_ 6.38211474857100001e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_48)_ 6.38175193508467231e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_49)_ 6.38138137177309517e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_50)_ 6.38100305159812820e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_51)_ 6.38061696737027333e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_52)_ 6.38022311174828047e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_53)_ 6.37982147723875670e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_54)_ 6.37941205619575982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_55)_ 6.37899484082038555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_56)_ 6.37856982316034617e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_57)_ 6.37813699510954208e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_58)_ 6.37769634840762407e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_59)_ 6.37724787463954286e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_60)_ 6.37679156523510073e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_61)_ 6.37632741146847977e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_62)_ 6.37585540445777568e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_63)_ 6.37537553516451325e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_64)_ 6.37488779439315678e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_65)_ 6.37439217279061268e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_66)_ 6.37388866084572072e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_67)_ 6.37337724888873822e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_68)_ 6.37285792709081491e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_69)_ 6.37233068546345791e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_70)_ 6.37179551385799030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_71)_ 6.37125240196499618e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_72)_ 6.37070133931376432e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_73)_ 6.37014231527171049e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_74)_ 6.36957531904380687e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_75)_ 6.36900033967198524e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_76)_ 6.36841736603454649e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_77)_ 6.36782638684554811e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_78)_ 6.36722739065418892e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_79)_ 6.36662036584418587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_80)_ 6.36600530063313670e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_81)_ 6.36538218307187549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_82)_ 6.36475100104382037e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_83)_ 6.36411174226430703e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_84)_ 6.36346439427991726e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_85)_ 6.36280890984174192e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_86)_ 6.36214522514744090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_87)_ 6.36147341139560041e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_88)_ 6.36079345544848138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_89)_ 6.36010534399604595e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_90)_ 6.35940906355522912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_91)_ 6.35870460046919277e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_92)_ 6.35799194090657664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_93)_ 6.35727107086073886e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_94)_ 6.35654197614897782e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_95)_ 6.35580464241175420e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_96)_ 6.35505905511189724e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_97)_ 6.35430519953380468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_98)_ 6.35354306078262496e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_99)_ 6.35277262378343721e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_100)_ 6.35199387328041851e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_101)_ 6.35120679383599551e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_102)_ 6.35041136982999390e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_103)_ 6.34960758545877013e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_104)_ 6.34879542473433744e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_105)_ 6.34797487148347770e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_106)_ 6.34714590934684608e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_107)_ 6.34630852177805806e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_108)_ 6.34546269204277706e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_109)_ 6.34460840321777795e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_110)_ 6.34374563819000912e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_111)_ 6.34287437965564109e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_112)_ 6.34199461011910230e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_113)_ 6.34110631189210210e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_114)_ 6.34020946709265090e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_115)_ 6.33930405764405620e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_116)_ 6.33839006527392286e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_117)_ 6.33746747151312348e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_118)_ 6.33653625769477742e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_119)_ 6.33559640495319982e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_120)_ 6.33464789422285364e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_121)_ 6.33369070623727879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_122)_ 6.33272482152802070e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_123)_ 6.33175022042353461e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_124)_ 6.33076688304808997e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_125)_ 6.32977478932065409e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_126)_ 6.32877391895376959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_127)_ 6.32776425145241745e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_128)_ 6.32674576611286597e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_129)_ 6.32571844202151468e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_130)_ 6.32468225805371702e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_131)_ 6.32362981486974860e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_132)_ 6.32255441355748786e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_133)_ 6.32146990622850922e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_134)_ 6.32037627045501935e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_135)_ 6.31927348358771823e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_136)_ 6.31816152275452581e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_137)_ 6.31704036485930018e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_138)_ 6.31590998658053948e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_139)_ 6.31477036437006873e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_140)_ 6.31362147445172113e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_141)_ 6.31246329281999863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_142)_ 6.31129579523872408e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_143)_ 6.31011895723968053e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_144)_ 6.30893275412123415e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_145)_ 6.30773716094694663e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_146)_ 6.30653215254417532e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_147)_ 6.30531770350265859e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_148)_ 6.30409378817308692e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_149)_ 6.30286038066566263e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_150)_ 6.30161745484864824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_151)_ 6.30036498434689562e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_152)_ 6.29910294254036813e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_153)_ 6.29783130256264769e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_154)_ 6.29655003729942351e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_155)_ 6.29525911938697504e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_156)_ 6.29395852121063939e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_157)_ 6.29264821490326014e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_158)_ 6.29132817234362847e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_159)_ 6.28999836515491211e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_160)_ 6.28865876470306375e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_161)_ 6.28730934209522232e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_162)_ 6.28595006817809931e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_163)_ 6.28458091353635098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_164)_ 6.28318433099033342e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_165)_ 6.28176484027854656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_166)_ 6.28033516017756455e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_167)_ 6.27889525953831509e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_168)_ 6.27744510693540221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_169)_ 6.27598467066535690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_170)_ 6.27451391874488138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_171)_ 6.27303281890907840e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_172)_ 6.27154133860966354e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_173)_ 6.27003944501316965e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_174)_ 6.26852710499913499e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_175)_ 6.26700428515827781e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_176)_ 6.26547095179066105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_177)_ 6.26392707090383780e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_178)_ 6.26237260821099113e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_179)_ 6.26080752912905893e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_180)_ 6.25923179877684035e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_181)_ 6.25764538197309932e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_182)_ 6.25604824323464754e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_183)_ 6.25444034677441891e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_184)_ 6.25282165649953257e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_185)_ 6.25119213600934245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_186)_ 6.24955174859347125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_187)_ 6.24790045722984360e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_188)_ 6.24623822458269515e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_189)_ 6.24456501300057809e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_190)_ 6.24287677449601546e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_191)_ 6.24112446702830610e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_192)_ 6.23936069259785171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_193)_ 6.23758541096066708e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_194)_ 6.23579858153597684e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_195)_ 6.23400016340409167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_196)_ 6.23219011530427025e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_197)_ 6.23036839563257061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_198)_ 6.22853496243969076e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_199)_ 6.22668977342881078e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_200)_ 6.22483278595340863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_201)_ 6.22296395701508587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_202)_ 6.22108324326137421e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_203)_ 6.21919060098353995e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_204)_ 6.21728598611438059e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_205)_ 6.21536935422601289e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_206)_ 6.21344066052765953e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_207)_ 6.21149985986342656e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_208)_ 6.20954690671007796e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_209)_ 6.20758175517480737e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_210)_ 6.20560435899300344e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_211)_ 6.20361467152601165e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_212)_ 6.20161264575889959e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_213)_ 6.19957376077123428e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_214)_ 6.19751152901315194e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_215)_ 6.19543659771248727e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_216)_ 6.19334891747927472e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_217)_ 6.19124843852930056e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_218)_ 6.18913511068183055e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_219)_ 6.18700888335733197e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_220)_ 6.18486970557520905e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_221)_ 6.18271752595154069e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_222)_ 6.18055229269681661e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_223)_ 6.17837395361369488e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_224)_ 6.17618245609475807e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_225)_ 6.17397774712027712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_226)_ 6.17175977325599590e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_227)_ 6.16952848065091572e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_228)_ 6.16728381503510406e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_229)_ 6.16502572171751027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_230)_ 6.16275414558379993e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_231)_ 6.16046903109420541e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_232)_ 6.15817032228140206e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_233)_ 6.15574429699451500e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_234)_ 6.15329479874054215e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_235)_ 6.15083080525464965e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_236)_ 6.14835225577668396e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_237)_ 6.14585908908539125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_238)_ 6.14335124349633546e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_239)_ 6.14082865685984487e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_240)_ 6.13829126655899984e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_241)_ 6.13573900950765108e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_242)_ 6.13317182214848557e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_243)_ 6.13058964045113157e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_244)_ 6.12799239991030618e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_245)_ 6.12538003554401698e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_246)_ 6.12275248189181198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_247)_ 6.12010967301308000e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_248)_ 6.11745154248541212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_249)_ 6.11477802340302290e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_250)_ 6.11205958079594751e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_251)_ 6.10926759647215931e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_252)_ 6.10645951558313484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_253)_ 6.10363526704780028e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_254)_ 6.10079477927896434e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_255)_ 6.09793798018213096e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_256)_ 6.09506479715440790e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_257)_ 6.09217515708349779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_258)_ 6.08926898634679858e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_259)_ 6.08634621081059919e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_260)_ 6.08340675582938104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_261)_ 6.08045054624523900e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_262)_ 6.07747750638741167e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_263)_ 6.07448756007194604e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_264)_ 6.07148063060147507e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_265)_ 6.06845664076514879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_266)_ 6.06539547364129916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_267)_ 6.06223227376632039e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_268)_ 6.05905118585002427e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_269)_ 6.05585212791223526e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_270)_ 6.05263501744362173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_271)_ 6.04939977140659124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_272)_ 6.04614630623639115e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_273)_ 6.04287453784239688e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_274)_ 6.03958438160961606e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_275)_ 6.03627575240040528e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_276)_ 6.03294856455641479e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_277)_ 6.02960273190077061e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_278)_ 6.02623816774050098e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_279)_ 6.02285478486922159e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_280)_ 6.01945249557008779e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_281)_ 6.01592195377120689e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_282)_ 6.01229066336618274e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_283)_ 6.00863913637058147e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_284)_ 6.00496727808183053e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_285)_ 6.00127499327883953e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_286)_ 5.99756218622708914e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_287)_ 5.99382876068409587e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_288)_ 5.99007461990527332e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_289)_ 5.98629966665020277e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_290)_ 5.98250380318932713e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_291)_ 5.97868693131110405e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_292)_ 5.97484895232960511e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_293)_ 5.97098976709261393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_294)_ 5.96710927599021801e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_295)_ 5.96300289315853007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_296)_ 5.95886795254278780e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_297)_ 5.95471023958170775e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_298)_ 5.95052964746722566e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_299)_ 5.94632606896295712e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_300)_ 5.94209939641692273e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_301)_ 5.93784952177499221e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_302)_ 5.93357633659504771e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_303)_ 5.92927973206191368e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_304)_ 5.92495959900308122e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_305)_ 5.92061582790525804e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_306)_ 5.91624830893177105e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_307)_ 5.91177974609934225e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_308)_ 5.90706625380297723e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_309)_ 5.90232705642095397e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_310)_ 5.89756203552450344e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_311)_ 5.89277107244767393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_312)_ 5.88795404831224261e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_313)_ 5.88311084405386069e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_314)_ 5.87824134044943989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_315)_ 5.87334541814586686e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_316)_ 5.86842295769007549e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_317)_ 5.86347383956054173e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_318)_ 5.85849794420026058e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_319)_ 5.85339598547926414e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_320)_ 5.84816704762123081e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_321)_ 5.84290989970083956e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_322)_ 5.83762441765609097e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_323)_ 5.83231047758484848e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_324)_ 5.82696795578974687e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_325)_ 5.82159672882514272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_326)_ 5.81619667354617391e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_327)_ 5.81076766716003021e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_328)_ 5.80530958727950690e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_329)_ 5.79982231197895146e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_330)_ 5.79418716198517103e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_331)_ 5.78825304676435337e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_332)_ 5.78228730539328524e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_333)_ 5.77628981004333184e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_334)_ 5.77026043372112198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_335)_ 5.76419905034608036e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_336)_ 5.75810553483135124e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_337)_ 5.75197976316823585e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_338)_ 5.74582161251430890e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_339)_ 5.73963096128534715e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_340)_ 5.73340768925124564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_341)_ 5.72710275668627489e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_342)_ 5.72076128217523063e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_343)_ 5.71438655950355212e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_344)_ 5.70797847395055200e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_345)_ 5.70153691271082010e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_346)_ 5.69506176501877022e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_347)_ 5.68855292227852303e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_348)_ 5.68201027819934978e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_349)_ 5.67543372893691824e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_350)_ 5.66882317324057254e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_351)_ 5.66193948333359813e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_352)_ 5.65498638927328727e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_353)_ 5.64799759409107480e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_354)_ 5.64097300484826647e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_355)_ 5.63391253217702612e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_356)_ 5.62681609047742555e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_357)_ 5.61968359812292064e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_358)_ 5.61251497767459142e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_359)_ 5.60531015610452172e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_360)_ 5.59798065790143937e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_361)_ 5.59048372156363840e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_362)_ 5.58294929617667108e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_363)_ 5.57537732719034551e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_364)_ 5.56776776590532307e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_365)_ 5.56012056976895863e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_366)_ 5.55243570268382030e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_367)_ 5.54471313532943171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_368)_ 5.53695284549784148e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_369)_ 5.52916502786219297e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_370)_ 5.52135006158049393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_371)_ 5.51349745266043598e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_372)_ 5.50560721097164318e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_373)_ 5.49767935537961989e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_374)_ 5.48971391417688110e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_375)_ 5.48171092553273027e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_376)_ 5.47367043796258272e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_377)_ 5.46559251081766320e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_378)_ 5.45737770740448198e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_379)_ 5.44910075456235958e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_380)_ 5.44078604307073945e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_381)_ 5.43243368261066735e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_382)_ 5.42404379669545094e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_383)_ 5.41561652331357166e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_384)_ 5.40715201559994441e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_385)_ 5.39865044253688069e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_386)_ 5.39016026565399784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_387)_ 5.38169161009553889e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_388)_ 5.37318695136211701e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_389)_ 5.36464652649909368e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_390)_ 5.35607059215439421e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_391)_ 5.34745942547832769e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_392)_ 5.33881332506403936e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_393)_ 5.33013261193062462e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_394)_ 5.32141437488723525e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_395)_ 5.31265754326454314e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_396)_ 5.30386717660230644e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_397)_ 5.29504369676644870e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_398)_ 5.28618755370739635e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_399)_ 5.27729922674881564e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_400)_ 5.26837922593657240e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_401)_ 5.25942809345107634e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_402)_ 5.25044918590041121e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_403)_ 5.24144206494757867e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_404)_ 5.23240566148525872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_405)_ 5.22334066140060074e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_406)_ 5.21424779083200747e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_407)_ 5.20512781803893176e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_408)_ 5.19598155536348116e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_409)_ 5.18680985322984185e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_410)_ 5.17761324474948097e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_411)_ 5.16839306801651048e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_412)_ 5.15915033339110849e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_413)_ 5.14988610670179909e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_414)_ 5.14060151188311920e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_415)_ 5.13129773375132245e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_416)_ 5.12197602092700706e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_417)_ 5.11279027672562663e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_418)_ 5.10370287253443990e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_419)_ 5.09460208593452037e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_420)_ 5.08548940956558368e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_421)_ 5.07636641475246506e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_422)_ 5.06723475542974171e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_423)_ 5.05809617229569355e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_424)_ 5.04898105826665429e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_425)_ 5.03996181014528659e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_426)_ 5.03094144209787615e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_427)_ 5.02192205889031484e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_428)_ 5.01290587539659498e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_429)_ 5.00389522249406298e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_430)_ 4.99489255335734086e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_431)_ 4.98590045018895651e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_432)_ 4.97742273752585405e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_433)_ 4.96901602556365916e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_434)_ 4.96062728654708991e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_435)_ 4.95225949946268784e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_436)_ 4.94391580366313264e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_437)_ 4.93559950872087541e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_438)_ 4.92731410513388326e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_439)_ 4.91924890237456722e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_440)_ 4.91142376972496990e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_441)_ 4.90363920043255561e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_442)_ 4.89589933228521872e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_443)_ 4.88820854301493242e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_444)_ 4.88057146835183104e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_445)_ 4.87299302218081465e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_446)_ 4.86547841916396138e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_447)_ 4.85854868509661202e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_448)_ 4.85181545165387007e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_449)_ 4.84515673678138583e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_450)_ 4.83857867206341794e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_451)_ 4.83208781936116125e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_452)_ 4.82569121821637879e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_453)_ 4.81939644187557334e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_454)_ 4.81321166419162694e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_455)_ 4.80735460778910664e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_456)_ 4.80185165962984755e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_457)_ 4.79647756570329022e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_458)_ 4.79124307349086394e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_459)_ 4.78616009468220369e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_460)_ 4.78124194642456430e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_461)_ 4.77650367538428924e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_462)_ 4.77196250574742393e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_463)_ 4.76763848039529776e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_464)_ 4.76355541858571954e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_465)_ 4.75976803114401363e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_466)_ 4.75661058199433100e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_467)_ 4.75377427667743788e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_468)_ 4.75132447650746670e+01 OP +Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_469)_ 4.74937357486949239e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_470)_ 4.74824243166227831e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_471)_ 4.72010222646906996e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_472)_ 4.69365882176566842e+01 OP @@ -13536,1538 +13533,1538 @@ Impurity_charge_at_point_________________________________________________ (n_cha Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_498)_ 2.22801102788747691e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_499)_ 1.97175159294354501e+01 OP Impurity_charge_at_point_________________________________________________ (n_charge_plasma_profile13_500)_ 1.35498706286133856e+01 OP -Volume_averaged_mass-weighted_plasma_effective_charge_(⟨Zₑ⟩ₘ)____________ (n_charge_plasma_effective_mass_weighted_vol_avg)_ 4.27892231320192384e-01 OP -Average_mass_of_all_ions_(amu)___________________________________________ (m_ions_total_amu)_____________ 2.75082843523598175e+00 OP -Total_mass_of_all_ions_in_plasma_(kg)____________________________________ (m_plasma_ions_total)__________ 6.18880334915468009e-04 OP +Volume_averaged_mass-weighted_plasma_effective_charge_(⟨Zₑ⟩ₘ)____________ (n_charge_plasma_effective_mass_weighted_vol_avg)_ 4.26329374835799413e-01 OP +Average_mass_of_all_ions_(amu)___________________________________________ (m_ions_total_amu)_____________ 2.73089399075073125e+00 OP +Total_mass_of_all_ions_in_plasma_(kg)____________________________________ (m_plasma_ions_total)__________ 6.10311717817044403e-04 OP Average_mass_of_all_fuel_ions_(amu)______________________________________ (m_fuel_amu)___________________ 2.51452696425700006e+00 OP -Total_mass_of_all_fuel_ions_in_plasma_(kg)_______________________________ (m_plasma_fuel_ions)___________ 5.09454866992840481e-04 OP +Total_mass_of_all_fuel_ions_in_plasma_(kg)_______________________________ (m_plasma_fuel_ions)___________ 5.12435966816946593e-04 OP Average_mass_of_all_beam_ions_(amu)______________________________________ (m_beam_amu)___________________ 2.01355421449150329e+00 OP -Total_mass_of_all_alpha_particles_in_plasma_(kg)_________________________ (m_plasma_alpha)_______________ 8.86675361595709203e-05 OP -Total_mass_of_all_electrons_in_plasma_(kg)_______________________________ (m_plasma_electron)____________ 1.39708671828550419e-07 OP -Total_mass_of_the_plasma_(kg)____________________________________________ (m_plasma)_____________________ 6.19020043587296606e-04 OP +Total_mass_of_all_alpha_particles_in_plasma_(kg)_________________________ (m_plasma_alpha)_______________ 7.79961803517537712e-05 OP +Total_mass_of_all_electrons_in_plasma_(kg)_______________________________ (m_plasma_electron)____________ 1.37242655155683782e-07 OP +Total_mass_of_the_plasma_(kg)____________________________________________ (m_plasma)_____________________ 6.10448960472200126e-04 OP # Plasma density limits # Plasma_density_limit_model_used__________________________________________ (i_density_limit)______________ 7 -Density_limit_from_scaling_(nₑ<)(/m³)____________________________________ (nd_plasma_electrons_max)______ 7.49612131682629878e+19 OP -Old_ASDEX_model__________________________________________________________ (nd_plasma_electron_max_array(1))_ 5.32467641546511647e+19 OP -Borrass_ITER_model_I_____________________________________________________ (nd_plasma_electron_max_array(2))_ 1.08869542435499377e+20 OP -Borrass_ITER_model_II____________________________________________________ (nd_plasma_electron_max_array(3))_ 4.28635291497600942e+19 OP -JET_edge_radiation_model_________________________________________________ (nd_plasma_electron_max_array(4))_ 2.16616819768938280e+21 OP -JET_simplified_model_____________________________________________________ (nd_plasma_electron_max_array(5))_ 4.07397322844233531e+20 OP -Hugill-Murakami_Mq_model_________________________________________________ (nd_plasma_electron_max_array(6))_ 6.70703349773431849e+19 OP -Greenwald_model__________________________________________________________ (nd_plasma_electron_max_array(7))_ 7.49612131682629878e+19 OP -ASDEX_New________________________________________________________________ (nd_plasma_electron_max_array(8))_ 9.06639803490199667e+20 OP +Density_limit_from_scaling_(nₑ<)(/m³)____________________________________ (nd_plasma_electrons_max)______ 7.36380083434616668e+19 OP +Old_ASDEX_model__________________________________________________________ (nd_plasma_electron_max_array(1))_ 5.32520612774513541e+19 OP +Borrass_ITER_model_I_____________________________________________________ (nd_plasma_electron_max_array(2))_ 1.09440682959023538e+20 OP +Borrass_ITER_model_II____________________________________________________ (nd_plasma_electron_max_array(3))_ 4.32008692413795205e+19 OP +JET_edge_radiation_model_________________________________________________ (nd_plasma_electron_max_array(4))_ 2.12188067839230948e+21 OP +JET_simplified_model_____________________________________________________ (nd_plasma_electron_max_array(5))_ 4.09713814292284899e+20 OP +Hugill-Murakami_Mq_model_________________________________________________ (nd_plasma_electron_max_array(6))_ 6.58864188280160584e+19 OP +Greenwald_model__________________________________________________________ (nd_plasma_electron_max_array(7))_ 7.36380083434616668e+19 OP +ASDEX_New________________________________________________________________ (nd_plasma_electron_max_array(8))_ 8.74962351476857897e+20 OP # Plasma Reactions : # Deuterium_fuel_fraction__________________________________________________ (f_plasma_fuel_deuterium)______ 5.00000000000000000e-01 Tritium_fuel_fraction____________________________________________________ (f_plasma_fuel_tritium)________ 5.00000000000000000e-01 3-Helium_fuel_fraction___________________________________________________ (f_plasma_fuel_helium3)________ 0.00000000000000000e+00 -Fusion_rate:_total_(reactions/sec)_______________________________________ (fusrat_total)_________________ 5.88001517663528616e+20 OP -Fusion_rate_density:_total_(reactions/m³/sec)____________________________ (fusden_total)_________________ 3.11413251064395072e+17 OP -Fusion_rate_density:_plasma_(reactions/m³/sec)___________________________ (fusden_plasma)________________ 3.11413251064395072e+17 OP -Total_fusion_power_(MW)__________________________________________________ (p_fusion_total_mw)____________ 1.64934744441023304e+03 OP -D-T_fusion_power:_total_(MW)_____________________________________________ (p_dt_total_mw)________________ 1.64735369756583532e+03 OP -DT_fusion_rate_at_point_0________________________________________________ fusrat_plasma_dt_profile0______ 1.07351287334220339e+18 -DT_fusion_rate_at_point_1________________________________________________ fusrat_plasma_dt_profile1______ 1.07350355507584666e+18 -DT_fusion_rate_at_point_2________________________________________________ fusrat_plasma_dt_profile2______ 1.07347560038330432e+18 -DT_fusion_rate_at_point_3________________________________________________ fusrat_plasma_dt_profile3______ 1.07342900958416256e+18 -DT_fusion_rate_at_point_4________________________________________________ fusrat_plasma_dt_profile4______ 1.07336378321114010e+18 -DT_fusion_rate_at_point_5________________________________________________ fusrat_plasma_dt_profile5______ 1.07327992201018816e+18 -DT_fusion_rate_at_point_6________________________________________________ fusrat_plasma_dt_profile6______ 1.07317742694063398e+18 -DT_fusion_rate_at_point_7________________________________________________ fusrat_plasma_dt_profile7______ 1.07305629917537971e+18 -DT_fusion_rate_at_point_8________________________________________________ fusrat_plasma_dt_profile8______ 1.07291654010111334e+18 -DT_fusion_rate_at_point_9________________________________________________ fusrat_plasma_dt_profile9______ 1.07275815131859712e+18 -DT_fusion_rate_at_point_10_______________________________________________ fusrat_plasma_dt_profile10_____ 1.07258113464297126e+18 -DT_fusion_rate_at_point_11_______________________________________________ fusrat_plasma_dt_profile11_____ 1.07238549210411098e+18 -DT_fusion_rate_at_point_12_______________________________________________ fusrat_plasma_dt_profile12_____ 1.07217122594702118e+18 -DT_fusion_rate_at_point_13_______________________________________________ fusrat_plasma_dt_profile13_____ 1.07193833863228173e+18 -DT_fusion_rate_at_point_14_______________________________________________ fusrat_plasma_dt_profile14_____ 1.07168683283652454e+18 -DT_fusion_rate_at_point_15_______________________________________________ fusrat_plasma_dt_profile15_____ 1.07141671145294502e+18 -DT_fusion_rate_at_point_16_______________________________________________ fusrat_plasma_dt_profile16_____ 1.07112797759188992e+18 -DT_fusion_rate_at_point_17_______________________________________________ fusrat_plasma_dt_profile17_____ 1.07082063458143718e+18 -DT_fusion_rate_at_point_18_______________________________________________ fusrat_plasma_dt_profile18_____ 1.07049468596807539e+18 -DT_fusion_rate_at_point_19_______________________________________________ fusrat_plasma_dt_profile19_____ 1.07015013551736397e+18 -DT_fusion_rate_at_point_20_______________________________________________ fusrat_plasma_dt_profile20_____ 1.06978698721468762e+18 -DT_fusion_rate_at_point_21_______________________________________________ fusrat_plasma_dt_profile21_____ 1.06940524526602880e+18 -DT_fusion_rate_at_point_22_______________________________________________ fusrat_plasma_dt_profile22_____ 1.06900491409877990e+18 -DT_fusion_rate_at_point_23_______________________________________________ fusrat_plasma_dt_profile23_____ 1.06858599836260838e+18 -DT_fusion_rate_at_point_24_______________________________________________ fusrat_plasma_dt_profile24_____ 1.06814850293036314e+18 -DT_fusion_rate_at_point_25_______________________________________________ fusrat_plasma_dt_profile25_____ 1.06769243289901850e+18 -DT_fusion_rate_at_point_26_______________________________________________ fusrat_plasma_dt_profile26_____ 1.06721779359066560e+18 -DT_fusion_rate_at_point_27_______________________________________________ fusrat_plasma_dt_profile27_____ 1.06672459055353984e+18 -DT_fusion_rate_at_point_28_______________________________________________ fusrat_plasma_dt_profile28_____ 1.06621282956310784e+18 -DT_fusion_rate_at_point_29_______________________________________________ fusrat_plasma_dt_profile29_____ 1.06568251662317338e+18 -DT_fusion_rate_at_point_30_______________________________________________ fusrat_plasma_dt_profile30_____ 1.06513365796704781e+18 -DT_fusion_rate_at_point_31_______________________________________________ fusrat_plasma_dt_profile31_____ 1.06456626005875686e+18 -DT_fusion_rate_at_point_32_______________________________________________ fusrat_plasma_dt_profile32_____ 1.06398032959428864e+18 -DT_fusion_rate_at_point_33_______________________________________________ fusrat_plasma_dt_profile33_____ 1.06337587350287910e+18 -DT_fusion_rate_at_point_34_______________________________________________ fusrat_plasma_dt_profile34_____ 1.06275289894836685e+18 -DT_fusion_rate_at_point_35_______________________________________________ fusrat_plasma_dt_profile35_____ 1.06211141333055501e+18 -DT_fusion_rate_at_point_36_______________________________________________ fusrat_plasma_dt_profile36_____ 1.06145142428665472e+18 -DT_fusion_rate_at_point_37_______________________________________________ fusrat_plasma_dt_profile37_____ 1.06077293969274099e+18 -DT_fusion_rate_at_point_38_______________________________________________ fusrat_plasma_dt_profile38_____ 1.06007596766527309e+18 -DT_fusion_rate_at_point_39_______________________________________________ fusrat_plasma_dt_profile39_____ 1.05936051656265587e+18 -DT_fusion_rate_at_point_40_______________________________________________ fusrat_plasma_dt_profile40_____ 1.05862659498684339e+18 -DT_fusion_rate_at_point_41_______________________________________________ fusrat_plasma_dt_profile41_____ 1.05787421178497946e+18 -DT_fusion_rate_at_point_42_______________________________________________ fusrat_plasma_dt_profile42_____ 1.05710337605110502e+18 -DT_fusion_rate_at_point_43_______________________________________________ fusrat_plasma_dt_profile43_____ 1.05631409712788710e+18 -DT_fusion_rate_at_point_44_______________________________________________ fusrat_plasma_dt_profile44_____ 1.05550638460841331e+18 -DT_fusion_rate_at_point_45_______________________________________________ fusrat_plasma_dt_profile45_____ 1.05468024833801152e+18 -DT_fusion_rate_at_point_46_______________________________________________ fusrat_plasma_dt_profile46_____ 1.05383569841613786e+18 -DT_fusion_rate_at_point_47_______________________________________________ fusrat_plasma_dt_profile47_____ 1.05297274519829363e+18 -DT_fusion_rate_at_point_48_______________________________________________ fusrat_plasma_dt_profile48_____ 1.05209139929799731e+18 -DT_fusion_rate_at_point_49_______________________________________________ fusrat_plasma_dt_profile49_____ 1.05119167158879834e+18 -DT_fusion_rate_at_point_50_______________________________________________ fusrat_plasma_dt_profile50_____ 1.05027357320634189e+18 -DT_fusion_rate_at_point_51_______________________________________________ fusrat_plasma_dt_profile51_____ 1.04933711555047795e+18 -DT_fusion_rate_at_point_52_______________________________________________ fusrat_plasma_dt_profile52_____ 1.04838231028742042e+18 -DT_fusion_rate_at_point_53_______________________________________________ fusrat_plasma_dt_profile53_____ 1.04740916935194445e+18 -DT_fusion_rate_at_point_54_______________________________________________ fusrat_plasma_dt_profile54_____ 1.04641770494964928e+18 -DT_fusion_rate_at_point_55_______________________________________________ fusrat_plasma_dt_profile55_____ 1.04540792955924979e+18 -DT_fusion_rate_at_point_56_______________________________________________ fusrat_plasma_dt_profile56_____ 1.04437985593492646e+18 -DT_fusion_rate_at_point_57_______________________________________________ fusrat_plasma_dt_profile57_____ 1.04333349710872755e+18 -DT_fusion_rate_at_point_58_______________________________________________ fusrat_plasma_dt_profile58_____ 1.04226886639300250e+18 -DT_fusion_rate_at_point_59_______________________________________________ fusrat_plasma_dt_profile59_____ 1.04118597738291379e+18 -DT_fusion_rate_at_point_60_______________________________________________ fusrat_plasma_dt_profile60_____ 1.04008484395895616e+18 -DT_fusion_rate_at_point_61_______________________________________________ fusrat_plasma_dt_profile61_____ 1.03896548028957286e+18 -DT_fusion_rate_at_point_62_______________________________________________ fusrat_plasma_dt_profile62_____ 1.03782790083378125e+18 -DT_fusion_rate_at_point_63_______________________________________________ fusrat_plasma_dt_profile63_____ 1.03667212034387648e+18 -DT_fusion_rate_at_point_64_______________________________________________ fusrat_plasma_dt_profile64_____ 1.03549815386816077e+18 -DT_fusion_rate_at_point_65_______________________________________________ fusrat_plasma_dt_profile65_____ 1.03430601675374822e+18 -DT_fusion_rate_at_point_66_______________________________________________ fusrat_plasma_dt_profile66_____ 1.03309572464940518e+18 -DT_fusion_rate_at_point_67_______________________________________________ fusrat_plasma_dt_profile67_____ 1.03186729350843597e+18 -DT_fusion_rate_at_point_68_______________________________________________ fusrat_plasma_dt_profile68_____ 1.03062073959164390e+18 -DT_fusion_rate_at_point_69_______________________________________________ fusrat_plasma_dt_profile69_____ 1.02935607947031296e+18 -DT_fusion_rate_at_point_70_______________________________________________ fusrat_plasma_dt_profile70_____ 1.02807333002926605e+18 -DT_fusion_rate_at_point_71_______________________________________________ fusrat_plasma_dt_profile71_____ 1.02677250846996582e+18 -DT_fusion_rate_at_point_72_______________________________________________ fusrat_plasma_dt_profile72_____ 1.02545363231366733e+18 -DT_fusion_rate_at_point_73_______________________________________________ fusrat_plasma_dt_profile73_____ 1.02411671940461952e+18 -DT_fusion_rate_at_point_74_______________________________________________ fusrat_plasma_dt_profile74_____ 1.02276178791333274e+18 -DT_fusion_rate_at_point_75_______________________________________________ fusrat_plasma_dt_profile75_____ 1.02138885633988595e+18 -DT_fusion_rate_at_point_76_______________________________________________ fusrat_plasma_dt_profile76_____ 1.01999794351729702e+18 -DT_fusion_rate_at_point_77_______________________________________________ fusrat_plasma_dt_profile77_____ 1.01858906861494093e+18 -DT_fusion_rate_at_point_78_______________________________________________ fusrat_plasma_dt_profile78_____ 1.01716225114202342e+18 -DT_fusion_rate_at_point_79_______________________________________________ fusrat_plasma_dt_profile79_____ 1.01571751095111578e+18 -DT_fusion_rate_at_point_80_______________________________________________ fusrat_plasma_dt_profile80_____ 1.01425486824173235e+18 -DT_fusion_rate_at_point_81_______________________________________________ fusrat_plasma_dt_profile81_____ 1.01277434356397568e+18 -DT_fusion_rate_at_point_82_______________________________________________ fusrat_plasma_dt_profile82_____ 1.01127595782222733e+18 -DT_fusion_rate_at_point_83_______________________________________________ fusrat_plasma_dt_profile83_____ 1.00975973227890253e+18 -DT_fusion_rate_at_point_84_______________________________________________ fusrat_plasma_dt_profile84_____ 1.00822568855825958e+18 -DT_fusion_rate_at_point_85_______________________________________________ fusrat_plasma_dt_profile85_____ 1.00667384865025510e+18 -DT_fusion_rate_at_point_86_______________________________________________ fusrat_plasma_dt_profile86_____ 1.00510423491447744e+18 -DT_fusion_rate_at_point_87_______________________________________________ fusrat_plasma_dt_profile87_____ 1.00351687008411136e+18 -DT_fusion_rate_at_point_88_______________________________________________ fusrat_plasma_dt_profile88_____ 1.00191177726998797e+18 -DT_fusion_rate_at_point_89_______________________________________________ fusrat_plasma_dt_profile89_____ 1.00028897996466662e+18 -DT_fusion_rate_at_point_90_______________________________________________ fusrat_plasma_dt_profile90_____ 9.98648502046593152e+17 -DT_fusion_rate_at_point_91_______________________________________________ fusrat_plasma_dt_profile91_____ 9.96990367784311552e+17 -DT_fusion_rate_at_point_92_______________________________________________ fusrat_plasma_dt_profile92_____ 9.95314601840732288e+17 -DT_fusion_rate_at_point_93_______________________________________________ fusrat_plasma_dt_profile93_____ 9.93621229277455744e+17 -DT_fusion_rate_at_point_94_______________________________________________ fusrat_plasma_dt_profile94_____ 9.91910275559175424e+17 -DT_fusion_rate_at_point_95_______________________________________________ fusrat_plasma_dt_profile95_____ 9.90181766558109568e+17 -DT_fusion_rate_at_point_96_______________________________________________ fusrat_plasma_dt_profile96_____ 9.88435728558525312e+17 -DT_fusion_rate_at_point_97_______________________________________________ fusrat_plasma_dt_profile97_____ 9.86672188261300864e+17 -DT_fusion_rate_at_point_98_______________________________________________ fusrat_plasma_dt_profile98_____ 9.84891172788559744e+17 -DT_fusion_rate_at_point_99_______________________________________________ fusrat_plasma_dt_profile99_____ 9.83092709688357760e+17 -DT_fusion_rate_at_point_100______________________________________________ fusrat_plasma_dt_profile100____ 9.81276826939448960e+17 -DT_fusion_rate_at_point_101______________________________________________ fusrat_plasma_dt_profile101____ 9.79443552956094080e+17 -DT_fusion_rate_at_point_102______________________________________________ fusrat_plasma_dt_profile102____ 9.77592916592940160e+17 -DT_fusion_rate_at_point_103______________________________________________ fusrat_plasma_dt_profile103____ 9.75724947149967104e+17 -DT_fusion_rate_at_point_104______________________________________________ fusrat_plasma_dt_profile104____ 9.73839674377490176e+17 -DT_fusion_rate_at_point_105______________________________________________ fusrat_plasma_dt_profile105____ 9.71937128481232256e+17 -DT_fusion_rate_at_point_106______________________________________________ fusrat_plasma_dt_profile106____ 9.70017340127451136e+17 -DT_fusion_rate_at_point_107______________________________________________ fusrat_plasma_dt_profile107____ 9.68080340448145408e+17 -DT_fusion_rate_at_point_108______________________________________________ fusrat_plasma_dt_profile108____ 9.66126161046309632e+17 -DT_fusion_rate_at_point_109______________________________________________ fusrat_plasma_dt_profile109____ 9.64154834001267072e+17 -DT_fusion_rate_at_point_110______________________________________________ fusrat_plasma_dt_profile110____ 9.62166391874057984e+17 -DT_fusion_rate_at_point_111______________________________________________ fusrat_plasma_dt_profile111____ 9.60160867712905216e+17 -DT_fusion_rate_at_point_112______________________________________________ fusrat_plasma_dt_profile112____ 9.58138295058726400e+17 -DT_fusion_rate_at_point_113______________________________________________ fusrat_plasma_dt_profile113____ 9.56098707950741376e+17 -DT_fusion_rate_at_point_114______________________________________________ fusrat_plasma_dt_profile114____ 9.54042140932115200e+17 -DT_fusion_rate_at_point_115______________________________________________ fusrat_plasma_dt_profile115____ 9.51968629055694976e+17 -DT_fusion_rate_at_point_116______________________________________________ fusrat_plasma_dt_profile116____ 9.49878207889793536e+17 -DT_fusion_rate_at_point_117______________________________________________ fusrat_plasma_dt_profile117____ 9.47770913524057856e+17 -DT_fusion_rate_at_point_118______________________________________________ fusrat_plasma_dt_profile118____ 9.45646782575393024e+17 -DT_fusion_rate_at_point_119______________________________________________ fusrat_plasma_dt_profile119____ 9.43505852193952512e+17 -DT_fusion_rate_at_point_120______________________________________________ fusrat_plasma_dt_profile120____ 9.41348160069222912e+17 -DT_fusion_rate_at_point_121______________________________________________ fusrat_plasma_dt_profile121____ 9.39173744436138496e+17 -DT_fusion_rate_at_point_122______________________________________________ fusrat_plasma_dt_profile122____ 9.36982644081299328e+17 -DT_fusion_rate_at_point_123______________________________________________ fusrat_plasma_dt_profile123____ 9.34774898349241472e+17 -DT_fusion_rate_at_point_124______________________________________________ fusrat_plasma_dt_profile124____ 9.32550547148774528e+17 -DT_fusion_rate_at_point_125______________________________________________ fusrat_plasma_dt_profile125____ 9.30309630959407872e+17 -DT_fusion_rate_at_point_126______________________________________________ fusrat_plasma_dt_profile126____ 9.28052190837828352e+17 -DT_fusion_rate_at_point_127______________________________________________ fusrat_plasma_dt_profile127____ 9.25778268424456448e+17 -DT_fusion_rate_at_point_128______________________________________________ fusrat_plasma_dt_profile128____ 9.23487905950076416e+17 -DT_fusion_rate_at_point_129______________________________________________ fusrat_plasma_dt_profile129____ 9.21181146242532992e+17 -DT_fusion_rate_at_point_130______________________________________________ fusrat_plasma_dt_profile130____ 9.18858032733501696e+17 -DT_fusion_rate_at_point_131______________________________________________ fusrat_plasma_dt_profile131____ 9.16518609465334656e+17 -DT_fusion_rate_at_point_132______________________________________________ fusrat_plasma_dt_profile132____ 9.14162921097966976e+17 -DT_fusion_rate_at_point_133______________________________________________ fusrat_plasma_dt_profile133____ 9.11791012915914752e+17 -DT_fusion_rate_at_point_134______________________________________________ fusrat_plasma_dt_profile134____ 9.09402930835324928e+17 -DT_fusion_rate_at_point_135______________________________________________ fusrat_plasma_dt_profile135____ 9.06998721411111296e+17 -DT_fusion_rate_at_point_136______________________________________________ fusrat_plasma_dt_profile136____ 9.04578431844165504e+17 -DT_fusion_rate_at_point_137______________________________________________ fusrat_plasma_dt_profile137____ 9.02142109988622592e+17 -DT_fusion_rate_at_point_138______________________________________________ fusrat_plasma_dt_profile138____ 8.99689804359231488e+17 -DT_fusion_rate_at_point_139______________________________________________ fusrat_plasma_dt_profile139____ 8.97221564138761856e+17 -DT_fusion_rate_at_point_140______________________________________________ fusrat_plasma_dt_profile140____ 8.94737439185516800e+17 -DT_fusion_rate_at_point_141______________________________________________ fusrat_plasma_dt_profile141____ 8.92237480040898432e+17 -DT_fusion_rate_at_point_142______________________________________________ fusrat_plasma_dt_profile142____ 8.89721737937064576e+17 -DT_fusion_rate_at_point_143______________________________________________ fusrat_plasma_dt_profile143____ 8.87190264804639744e+17 -DT_fusion_rate_at_point_144______________________________________________ fusrat_plasma_dt_profile144____ 8.84643113280516096e+17 -DT_fusion_rate_at_point_145______________________________________________ fusrat_plasma_dt_profile145____ 8.82080336715722880e+17 -DT_fusion_rate_at_point_146______________________________________________ fusrat_plasma_dt_profile146____ 8.79501989183371392e+17 -DT_fusion_rate_at_point_147______________________________________________ fusrat_plasma_dt_profile147____ 8.76908125486673664e+17 -DT_fusion_rate_at_point_148______________________________________________ fusrat_plasma_dt_profile148____ 8.74298801167032576e+17 -DT_fusion_rate_at_point_149______________________________________________ fusrat_plasma_dt_profile149____ 8.71674072512213248e+17 -DT_fusion_rate_at_point_150______________________________________________ fusrat_plasma_dt_profile150____ 8.69033996564580224e+17 -DT_fusion_rate_at_point_151______________________________________________ fusrat_plasma_dt_profile151____ 8.66378631129419008e+17 -DT_fusion_rate_at_point_152______________________________________________ fusrat_plasma_dt_profile152____ 8.63708034783320832e+17 -DT_fusion_rate_at_point_153______________________________________________ fusrat_plasma_dt_profile153____ 8.61022266882652800e+17 -DT_fusion_rate_at_point_154______________________________________________ fusrat_plasma_dt_profile154____ 8.58321387572092032e+17 -DT_fusion_rate_at_point_155______________________________________________ fusrat_plasma_dt_profile155____ 8.55605457793238400e+17 -DT_fusion_rate_at_point_156______________________________________________ fusrat_plasma_dt_profile156____ 8.52874539293300352e+17 -DT_fusion_rate_at_point_157______________________________________________ fusrat_plasma_dt_profile157____ 8.50128694633862656e+17 -DT_fusion_rate_at_point_158______________________________________________ fusrat_plasma_dt_profile158____ 8.47367987199706496e+17 -DT_fusion_rate_at_point_159______________________________________________ fusrat_plasma_dt_profile159____ 8.44592481207725056e+17 -DT_fusion_rate_at_point_160______________________________________________ fusrat_plasma_dt_profile160____ 8.41802241715899648e+17 -DT_fusion_rate_at_point_161______________________________________________ fusrat_plasma_dt_profile161____ 8.38997334632349056e+17 -DT_fusion_rate_at_point_162______________________________________________ fusrat_plasma_dt_profile162____ 8.36177826724457344e+17 -DT_fusion_rate_at_point_163______________________________________________ fusrat_plasma_dt_profile163____ 8.33343785628069120e+17 -DT_fusion_rate_at_point_164______________________________________________ fusrat_plasma_dt_profile164____ 8.30495279856753024e+17 -DT_fusion_rate_at_point_165______________________________________________ fusrat_plasma_dt_profile165____ 8.27632378811141120e+17 -DT_fusion_rate_at_point_166______________________________________________ fusrat_plasma_dt_profile166____ 8.24755152788340096e+17 -DT_fusion_rate_at_point_167______________________________________________ fusrat_plasma_dt_profile167____ 8.21863672991407104e+17 -DT_fusion_rate_at_point_168______________________________________________ fusrat_plasma_dt_profile168____ 8.18958011538897280e+17 -DT_fusion_rate_at_point_169______________________________________________ fusrat_plasma_dt_profile169____ 8.16038241474481024e+17 -DT_fusion_rate_at_point_170______________________________________________ fusrat_plasma_dt_profile170____ 8.13104436776630912e+17 -DT_fusion_rate_at_point_171______________________________________________ fusrat_plasma_dt_profile171____ 8.10156672368374016e+17 -DT_fusion_rate_at_point_172______________________________________________ fusrat_plasma_dt_profile172____ 8.07195024127103744e+17 -DT_fusion_rate_at_point_173______________________________________________ fusrat_plasma_dt_profile173____ 8.04219568894478976e+17 -DT_fusion_rate_at_point_174______________________________________________ fusrat_plasma_dt_profile174____ 8.01230384486361728e+17 -DT_fusion_rate_at_point_175______________________________________________ fusrat_plasma_dt_profile175____ 7.98227549702838272e+17 -DT_fusion_rate_at_point_176______________________________________________ fusrat_plasma_dt_profile176____ 7.95211144338294272e+17 -DT_fusion_rate_at_point_177______________________________________________ fusrat_plasma_dt_profile177____ 7.92181249191563776e+17 -DT_fusion_rate_at_point_178______________________________________________ fusrat_plasma_dt_profile178____ 7.89137946076116992e+17 -DT_fusion_rate_at_point_179______________________________________________ fusrat_plasma_dt_profile179____ 7.86081317830336512e+17 -DT_fusion_rate_at_point_180______________________________________________ fusrat_plasma_dt_profile180____ 7.83011448327831424e+17 -DT_fusion_rate_at_point_181______________________________________________ fusrat_plasma_dt_profile181____ 7.79928422487820032e+17 -DT_fusion_rate_at_point_182______________________________________________ fusrat_plasma_dt_profile182____ 7.76832326285566080e+17 -DT_fusion_rate_at_point_183______________________________________________ fusrat_plasma_dt_profile183____ 7.73723246762866816e+17 -DT_fusion_rate_at_point_184______________________________________________ fusrat_plasma_dt_profile184____ 7.70601272038605952e+17 -DT_fusion_rate_at_point_185______________________________________________ fusrat_plasma_dt_profile185____ 7.67466491319346560e+17 -DT_fusion_rate_at_point_186______________________________________________ fusrat_plasma_dt_profile186____ 7.64318994909986176e+17 -DT_fusion_rate_at_point_187______________________________________________ fusrat_plasma_dt_profile187____ 7.61158874224447104e+17 -DT_fusion_rate_at_point_188______________________________________________ fusrat_plasma_dt_profile188____ 7.57986221796434432e+17 -DT_fusion_rate_at_point_189______________________________________________ fusrat_plasma_dt_profile189____ 7.54801131290218880e+17 -DT_fusion_rate_at_point_190______________________________________________ fusrat_plasma_dt_profile190____ 7.51603697511482624e+17 -DT_fusion_rate_at_point_191______________________________________________ fusrat_plasma_dt_profile191____ 7.48394016418192128e+17 -DT_fusion_rate_at_point_192______________________________________________ fusrat_plasma_dt_profile192____ 7.45172185131520896e+17 -DT_fusion_rate_at_point_193______________________________________________ fusrat_plasma_dt_profile193____ 7.41938301946808192e+17 -DT_fusion_rate_at_point_194______________________________________________ fusrat_plasma_dt_profile194____ 7.38692466344553600e+17 -DT_fusion_rate_at_point_195______________________________________________ fusrat_plasma_dt_profile195____ 7.35434779001444096e+17 -DT_fusion_rate_at_point_196______________________________________________ fusrat_plasma_dt_profile196____ 7.32165341801412992e+17 -DT_fusion_rate_at_point_197______________________________________________ fusrat_plasma_dt_profile197____ 7.28884257846729856e+17 -DT_fusion_rate_at_point_198______________________________________________ fusrat_plasma_dt_profile198____ 7.25591631469117696e+17 -DT_fusion_rate_at_point_199______________________________________________ fusrat_plasma_dt_profile199____ 7.22287568240888192e+17 -DT_fusion_rate_at_point_200______________________________________________ fusrat_plasma_dt_profile200____ 7.18972174986106368e+17 -DT_fusion_rate_at_point_201______________________________________________ fusrat_plasma_dt_profile201____ 7.15645559791767552e+17 -DT_fusion_rate_at_point_202______________________________________________ fusrat_plasma_dt_profile202____ 7.12307832018991360e+17 -DT_fusion_rate_at_point_203______________________________________________ fusrat_plasma_dt_profile203____ 7.08959102314227712e+17 -DT_fusion_rate_at_point_204______________________________________________ fusrat_plasma_dt_profile204____ 7.05599482620477568e+17 -DT_fusion_rate_at_point_205______________________________________________ fusrat_plasma_dt_profile205____ 7.02229086188507008e+17 -DT_fusion_rate_at_point_206______________________________________________ fusrat_plasma_dt_profile206____ 6.98848027588076928e+17 -DT_fusion_rate_at_point_207______________________________________________ fusrat_plasma_dt_profile207____ 6.95456422719167360e+17 -DT_fusion_rate_at_point_208______________________________________________ fusrat_plasma_dt_profile208____ 6.92054388823187456e+17 -DT_fusion_rate_at_point_209______________________________________________ fusrat_plasma_dt_profile209____ 6.88642044494198784e+17 -DT_fusion_rate_at_point_210______________________________________________ fusrat_plasma_dt_profile210____ 6.85219509690097024e+17 -DT_fusion_rate_at_point_211______________________________________________ fusrat_plasma_dt_profile211____ 6.81786905743808512e+17 -DT_fusion_rate_at_point_212______________________________________________ fusrat_plasma_dt_profile212____ 6.78344355374438656e+17 -DT_fusion_rate_at_point_213______________________________________________ fusrat_plasma_dt_profile213____ 6.74891982698413056e+17 -DT_fusion_rate_at_point_214______________________________________________ fusrat_plasma_dt_profile214____ 6.71429913240578432e+17 -DT_fusion_rate_at_point_215______________________________________________ fusrat_plasma_dt_profile215____ 6.67958273945282816e+17 -DT_fusion_rate_at_point_216______________________________________________ fusrat_plasma_dt_profile216____ 6.64477193187395200e+17 -DT_fusion_rate_at_point_217______________________________________________ fusrat_plasma_dt_profile217____ 6.60986800783304704e+17 -DT_fusion_rate_at_point_218______________________________________________ fusrat_plasma_dt_profile218____ 6.57487228001853312e+17 -DT_fusion_rate_at_point_219______________________________________________ fusrat_plasma_dt_profile219____ 6.53978607575224704e+17 -DT_fusion_rate_at_point_220______________________________________________ fusrat_plasma_dt_profile220____ 6.50461073709764736e+17 -DT_fusion_rate_at_point_221______________________________________________ fusrat_plasma_dt_profile221____ 6.46934762096744192e+17 -DT_fusion_rate_at_point_222______________________________________________ fusrat_plasma_dt_profile222____ 6.43399809923045248e+17 -DT_fusion_rate_at_point_223______________________________________________ fusrat_plasma_dt_profile223____ 6.39856355881770240e+17 -DT_fusion_rate_at_point_224______________________________________________ fusrat_plasma_dt_profile224____ 6.36304540182775040e+17 -DT_fusion_rate_at_point_225______________________________________________ fusrat_plasma_dt_profile225____ 6.32744504563096576e+17 -DT_fusion_rate_at_point_226______________________________________________ fusrat_plasma_dt_profile226____ 6.29176392297302912e+17 -DT_fusion_rate_at_point_227______________________________________________ fusrat_plasma_dt_profile227____ 6.25600348207724672e+17 -DT_fusion_rate_at_point_228______________________________________________ fusrat_plasma_dt_profile228____ 6.22016518674581888e+17 -DT_fusion_rate_at_point_229______________________________________________ fusrat_plasma_dt_profile229____ 6.18425051645998848e+17 -DT_fusion_rate_at_point_230______________________________________________ fusrat_plasma_dt_profile230____ 6.14826096647884032e+17 -DT_fusion_rate_at_point_231______________________________________________ fusrat_plasma_dt_profile231____ 6.11219804793684992e+17 -DT_fusion_rate_at_point_232______________________________________________ fusrat_plasma_dt_profile232____ 6.07606328793998848e+17 -DT_fusion_rate_at_point_233______________________________________________ fusrat_plasma_dt_profile233____ 6.03985822966036992e+17 -DT_fusion_rate_at_point_234______________________________________________ fusrat_plasma_dt_profile234____ 6.00358443242935168e+17 -DT_fusion_rate_at_point_235______________________________________________ fusrat_plasma_dt_profile235____ 5.96724347182890624e+17 -DT_fusion_rate_at_point_236______________________________________________ fusrat_plasma_dt_profile236____ 5.93083693978133888e+17 -DT_fusion_rate_at_point_237______________________________________________ fusrat_plasma_dt_profile237____ 5.89436644463710976e+17 -DT_fusion_rate_at_point_238______________________________________________ fusrat_plasma_dt_profile238____ 5.85783361126081920e+17 -DT_fusion_rate_at_point_239______________________________________________ fusrat_plasma_dt_profile239____ 5.82124008111505664e+17 -DT_fusion_rate_at_point_240______________________________________________ fusrat_plasma_dt_profile240____ 5.78458751234226560e+17 -DT_fusion_rate_at_point_241______________________________________________ fusrat_plasma_dt_profile241____ 5.74787757984429312e+17 -DT_fusion_rate_at_point_242______________________________________________ fusrat_plasma_dt_profile242____ 5.71111197535965248e+17 -DT_fusion_rate_at_point_243______________________________________________ fusrat_plasma_dt_profile243____ 5.67429240753840512e+17 -DT_fusion_rate_at_point_244______________________________________________ fusrat_plasma_dt_profile244____ 5.63742060201443968e+17 -DT_fusion_rate_at_point_245______________________________________________ fusrat_plasma_dt_profile245____ 5.60049830147516416e+17 -DT_fusion_rate_at_point_246______________________________________________ fusrat_plasma_dt_profile246____ 5.56352726572844160e+17 -DT_fusion_rate_at_point_247______________________________________________ fusrat_plasma_dt_profile247____ 5.52650927176658048e+17 -DT_fusion_rate_at_point_248______________________________________________ fusrat_plasma_dt_profile248____ 5.48944611382744512e+17 -DT_fusion_rate_at_point_249______________________________________________ fusrat_plasma_dt_profile249____ 5.45233960345234560e+17 -DT_fusion_rate_at_point_250______________________________________________ fusrat_plasma_dt_profile250____ 5.41519156954074944e+17 -DT_fusion_rate_at_point_251______________________________________________ fusrat_plasma_dt_profile251____ 5.37800385840161088e+17 -DT_fusion_rate_at_point_252______________________________________________ fusrat_plasma_dt_profile252____ 5.34077833380118656e+17 -DT_fusion_rate_at_point_253______________________________________________ fusrat_plasma_dt_profile253____ 5.30351687700720896e+17 -DT_fusion_rate_at_point_254______________________________________________ fusrat_plasma_dt_profile254____ 5.26622138682932032e+17 -DT_fusion_rate_at_point_255______________________________________________ fusrat_plasma_dt_profile255____ 5.22889377965553408e+17 -DT_fusion_rate_at_point_256______________________________________________ fusrat_plasma_dt_profile256____ 5.19153598948470592e+17 -DT_fusion_rate_at_point_257______________________________________________ fusrat_plasma_dt_profile257____ 5.15414996795470144e+17 -DT_fusion_rate_at_point_258______________________________________________ fusrat_plasma_dt_profile258____ 5.11673768436632128e+17 -DT_fusion_rate_at_point_259______________________________________________ fusrat_plasma_dt_profile259____ 5.07930112570262976e+17 -DT_fusion_rate_at_point_260______________________________________________ fusrat_plasma_dt_profile260____ 5.04184229664359168e+17 -DT_fusion_rate_at_point_261______________________________________________ fusrat_plasma_dt_profile261____ 5.00436321957599616e+17 -DT_fusion_rate_at_point_262______________________________________________ fusrat_plasma_dt_profile262____ 4.96686593459824192e+17 -DT_fusion_rate_at_point_263______________________________________________ fusrat_plasma_dt_profile263____ 4.92935249952002176e+17 -DT_fusion_rate_at_point_264______________________________________________ fusrat_plasma_dt_profile264____ 4.89182498985673664e+17 -DT_fusion_rate_at_point_265______________________________________________ fusrat_plasma_dt_profile265____ 4.85428549881825600e+17 -DT_fusion_rate_at_point_266______________________________________________ fusrat_plasma_dt_profile266____ 4.81673613729210048e+17 -DT_fusion_rate_at_point_267______________________________________________ fusrat_plasma_dt_profile267____ 4.77917903382072768e+17 -DT_fusion_rate_at_point_268______________________________________________ fusrat_plasma_dt_profile268____ 4.74161633457276096e+17 -DT_fusion_rate_at_point_269______________________________________________ fusrat_plasma_dt_profile269____ 4.70405020330792512e+17 -DT_fusion_rate_at_point_270______________________________________________ fusrat_plasma_dt_profile270____ 4.66648282133565760e+17 -DT_fusion_rate_at_point_271______________________________________________ fusrat_plasma_dt_profile271____ 4.62891638746697920e+17 -DT_fusion_rate_at_point_272______________________________________________ fusrat_plasma_dt_profile272____ 4.59135311795958144e+17 -DT_fusion_rate_at_point_273______________________________________________ fusrat_plasma_dt_profile273____ 4.55379524645593280e+17 -DT_fusion_rate_at_point_274______________________________________________ fusrat_plasma_dt_profile274____ 4.51624502391404352e+17 -DT_fusion_rate_at_point_275______________________________________________ fusrat_plasma_dt_profile275____ 4.47870471853088320e+17 -DT_fusion_rate_at_point_276______________________________________________ fusrat_plasma_dt_profile276____ 4.44117661565807872e+17 -DT_fusion_rate_at_point_277______________________________________________ fusrat_plasma_dt_profile277____ 4.40366301770977152e+17 -DT_fusion_rate_at_point_278______________________________________________ fusrat_plasma_dt_profile278____ 4.36616624406241472e+17 -DT_fusion_rate_at_point_279______________________________________________ fusrat_plasma_dt_profile279____ 4.32868863094615808e+17 -DT_fusion_rate_at_point_280______________________________________________ fusrat_plasma_dt_profile280____ 4.29123253132783808e+17 -DT_fusion_rate_at_point_281______________________________________________ fusrat_plasma_dt_profile281____ 4.25380031478508672e+17 -DT_fusion_rate_at_point_282______________________________________________ fusrat_plasma_dt_profile282____ 4.21639436737151744e+17 -DT_fusion_rate_at_point_283______________________________________________ fusrat_plasma_dt_profile283____ 4.17901709147266624e+17 -DT_fusion_rate_at_point_284______________________________________________ fusrat_plasma_dt_profile284____ 4.14167090565243072e+17 -DT_fusion_rate_at_point_285______________________________________________ fusrat_plasma_dt_profile285____ 4.10435824448994176e+17 -DT_fusion_rate_at_point_286______________________________________________ fusrat_plasma_dt_profile286____ 4.06708155840628160e+17 -DT_fusion_rate_at_point_287______________________________________________ fusrat_plasma_dt_profile287____ 4.02984331348125504e+17 -DT_fusion_rate_at_point_288______________________________________________ fusrat_plasma_dt_profile288____ 3.99264599125952576e+17 -DT_fusion_rate_at_point_289______________________________________________ fusrat_plasma_dt_profile289____ 3.95549208854622208e+17 -DT_fusion_rate_at_point_290______________________________________________ fusrat_plasma_dt_profile290____ 3.91838411719155136e+17 -DT_fusion_rate_at_point_291______________________________________________ fusrat_plasma_dt_profile291____ 3.88132460386425536e+17 -DT_fusion_rate_at_point_292______________________________________________ fusrat_plasma_dt_profile292____ 3.84431608981358720e+17 -DT_fusion_rate_at_point_293______________________________________________ fusrat_plasma_dt_profile293____ 3.80736113061971776e+17 -DT_fusion_rate_at_point_294______________________________________________ fusrat_plasma_dt_profile294____ 3.77046229593206784e+17 -DT_fusion_rate_at_point_295______________________________________________ fusrat_plasma_dt_profile295____ 3.73362216919557568e+17 -DT_fusion_rate_at_point_296______________________________________________ fusrat_plasma_dt_profile296____ 3.69684334736437056e+17 -DT_fusion_rate_at_point_297______________________________________________ fusrat_plasma_dt_profile297____ 3.66012844060288704e+17 -DT_fusion_rate_at_point_298______________________________________________ fusrat_plasma_dt_profile298____ 3.62348007197388480e+17 -DT_fusion_rate_at_point_299______________________________________________ fusrat_plasma_dt_profile299____ 3.58690087711332224e+17 -DT_fusion_rate_at_point_300______________________________________________ fusrat_plasma_dt_profile300____ 3.55039350389172224e+17 -DT_fusion_rate_at_point_301______________________________________________ fusrat_plasma_dt_profile301____ 3.51396061206179328e+17 -DT_fusion_rate_at_point_302______________________________________________ fusrat_plasma_dt_profile302____ 3.47760487289205696e+17 -DT_fusion_rate_at_point_303______________________________________________ fusrat_plasma_dt_profile303____ 3.44132896878625152e+17 -DT_fusion_rate_at_point_304______________________________________________ fusrat_plasma_dt_profile304____ 3.40513559288819520e+17 -DT_fusion_rate_at_point_305______________________________________________ fusrat_plasma_dt_profile305____ 3.36902744867193152e+17 -DT_fusion_rate_at_point_306______________________________________________ fusrat_plasma_dt_profile306____ 3.33300724951686016e+17 -DT_fusion_rate_at_point_307______________________________________________ fusrat_plasma_dt_profile307____ 3.29707771826762816e+17 -DT_fusion_rate_at_point_308______________________________________________ fusrat_plasma_dt_profile308____ 3.26124158677850880e+17 -DT_fusion_rate_at_point_309______________________________________________ fusrat_plasma_dt_profile309____ 3.22550159544210944e+17 -DT_fusion_rate_at_point_310______________________________________________ fusrat_plasma_dt_profile310____ 3.18986049270207424e+17 -DT_fusion_rate_at_point_311______________________________________________ fusrat_plasma_dt_profile311____ 3.15432103454963648e+17 -DT_fusion_rate_at_point_312______________________________________________ fusrat_plasma_dt_profile312____ 3.11888598400370048e+17 -DT_fusion_rate_at_point_313______________________________________________ fusrat_plasma_dt_profile313____ 3.08355811057439040e+17 -DT_fusion_rate_at_point_314______________________________________________ fusrat_plasma_dt_profile314____ 3.04834018970964544e+17 -DT_fusion_rate_at_point_315______________________________________________ fusrat_plasma_dt_profile315____ 3.01323500222488128e+17 -DT_fusion_rate_at_point_316______________________________________________ fusrat_plasma_dt_profile316____ 2.97824533371532544e+17 -DT_fusion_rate_at_point_317______________________________________________ fusrat_plasma_dt_profile317____ 2.94337397395097600e+17 -DT_fusion_rate_at_point_318______________________________________________ fusrat_plasma_dt_profile318____ 2.90862371625390720e+17 -DT_fusion_rate_at_point_319______________________________________________ fusrat_plasma_dt_profile319____ 2.87399735685785344e+17 -DT_fusion_rate_at_point_320______________________________________________ fusrat_plasma_dt_profile320____ 2.83949769424977120e+17 -DT_fusion_rate_at_point_321______________________________________________ fusrat_plasma_dt_profile321____ 2.80512752849339392e+17 -DT_fusion_rate_at_point_322______________________________________________ fusrat_plasma_dt_profile322____ 2.77088966053449696e+17 -DT_fusion_rate_at_point_323______________________________________________ fusrat_plasma_dt_profile323____ 2.73678689148786816e+17 -DT_fusion_rate_at_point_324______________________________________________ fusrat_plasma_dt_profile324____ 2.70282202190574464e+17 -DT_fusion_rate_at_point_325______________________________________________ fusrat_plasma_dt_profile325____ 2.66899785102773760e+17 -DT_fusion_rate_at_point_326______________________________________________ fusrat_plasma_dt_profile326____ 2.63531717601211456e+17 -DT_fusion_rate_at_point_327______________________________________________ fusrat_plasma_dt_profile327____ 2.60178279114832320e+17 -DT_fusion_rate_at_point_328______________________________________________ fusrat_plasma_dt_profile328____ 2.56839748705080448e+17 -DT_fusion_rate_at_point_329______________________________________________ fusrat_plasma_dt_profile329____ 2.53516404983396576e+17 -DT_fusion_rate_at_point_330______________________________________________ fusrat_plasma_dt_profile330____ 2.50208526026837568e+17 -DT_fusion_rate_at_point_331______________________________________________ fusrat_plasma_dt_profile331____ 2.46916389291812640e+17 -DT_fusion_rate_at_point_332______________________________________________ fusrat_plasma_dt_profile332____ 2.43640271525942848e+17 -DT_fusion_rate_at_point_333______________________________________________ fusrat_plasma_dt_profile333____ 2.40380448678046176e+17 -DT_fusion_rate_at_point_334______________________________________________ fusrat_plasma_dt_profile334____ 2.37137195806254944e+17 -DT_fusion_rate_at_point_335______________________________________________ fusrat_plasma_dt_profile335____ 2.33910786984277952e+17 -DT_fusion_rate_at_point_336______________________________________________ fusrat_plasma_dt_profile336____ 2.30701495205815104e+17 -DT_fusion_rate_at_point_337______________________________________________ fusrat_plasma_dt_profile337____ 2.27509592287136096e+17 -DT_fusion_rate_at_point_338______________________________________________ fusrat_plasma_dt_profile338____ 2.24335348767852000e+17 -DT_fusion_rate_at_point_339______________________________________________ fusrat_plasma_dt_profile339____ 2.21179033809882720e+17 -DT_fusion_rate_at_point_340______________________________________________ fusrat_plasma_dt_profile340____ 2.18040915094655008e+17 -DT_fusion_rate_at_point_341______________________________________________ fusrat_plasma_dt_profile341____ 2.14921258718552512e+17 -DT_fusion_rate_at_point_342______________________________________________ fusrat_plasma_dt_profile342____ 2.11820329086641664e+17 -DT_fusion_rate_at_point_343______________________________________________ fusrat_plasma_dt_profile343____ 2.08738388804713920e+17 -DT_fusion_rate_at_point_344______________________________________________ fusrat_plasma_dt_profile344____ 2.05675698569671520e+17 -DT_fusion_rate_at_point_345______________________________________________ fusrat_plasma_dt_profile345____ 2.02632517058294400e+17 -DT_fusion_rate_at_point_346______________________________________________ fusrat_plasma_dt_profile346____ 1.99609100814440288e+17 -DT_fusion_rate_at_point_347______________________________________________ fusrat_plasma_dt_profile347____ 1.96605704134707968e+17 -DT_fusion_rate_at_point_348______________________________________________ fusrat_plasma_dt_profile348____ 1.93622578952623872e+17 -DT_fusion_rate_at_point_349______________________________________________ fusrat_plasma_dt_profile349____ 1.90659974721401728e+17 -DT_fusion_rate_at_point_350______________________________________________ fusrat_plasma_dt_profile350____ 1.87718138295328960e+17 -DT_fusion_rate_at_point_351______________________________________________ fusrat_plasma_dt_profile351____ 1.84797313809841664e+17 -DT_fusion_rate_at_point_352______________________________________________ fusrat_plasma_dt_profile352____ 1.81897742560358144e+17 -DT_fusion_rate_at_point_353______________________________________________ fusrat_plasma_dt_profile353____ 1.79019662879929120e+17 -DT_fusion_rate_at_point_354______________________________________________ fusrat_plasma_dt_profile354____ 1.76163310015787616e+17 -DT_fusion_rate_at_point_355______________________________________________ fusrat_plasma_dt_profile355____ 1.73328916004870432e+17 -DT_fusion_rate_at_point_356______________________________________________ fusrat_plasma_dt_profile356____ 1.70516709548394400e+17 -DT_fusion_rate_at_point_357______________________________________________ fusrat_plasma_dt_profile357____ 1.67726915885573952e+17 -DT_fusion_rate_at_point_358______________________________________________ fusrat_plasma_dt_profile358____ 1.64959756666570752e+17 -DT_fusion_rate_at_point_359______________________________________________ fusrat_plasma_dt_profile359____ 1.62215449824770080e+17 -DT_fusion_rate_at_point_360______________________________________________ fusrat_plasma_dt_profile360____ 1.59494209448486624e+17 -DT_fusion_rate_at_point_361______________________________________________ fusrat_plasma_dt_profile361____ 1.56796245652198720e+17 -DT_fusion_rate_at_point_362______________________________________________ fusrat_plasma_dt_profile362____ 1.54121764447432352e+17 -DT_fusion_rate_at_point_363______________________________________________ fusrat_plasma_dt_profile363____ 1.51470967613392352e+17 -DT_fusion_rate_at_point_364______________________________________________ fusrat_plasma_dt_profile364____ 1.48844052567478624e+17 -DT_fusion_rate_at_point_365______________________________________________ fusrat_plasma_dt_profile365____ 1.46241212235797088e+17 -DT_fusion_rate_at_point_366______________________________________________ fusrat_plasma_dt_profile366____ 1.43662634923803248e+17 -DT_fusion_rate_at_point_367______________________________________________ fusrat_plasma_dt_profile367____ 1.41108504187208832e+17 -DT_fusion_rate_at_point_368______________________________________________ fusrat_plasma_dt_profile368____ 1.38578998703290496e+17 -DT_fusion_rate_at_point_369______________________________________________ fusrat_plasma_dt_profile369____ 1.36074292142746336e+17 -DT_fusion_rate_at_point_370______________________________________________ fusrat_plasma_dt_profile370____ 1.33594553042245392e+17 -DT_fusion_rate_at_point_371______________________________________________ fusrat_plasma_dt_profile371____ 1.31139944677828928e+17 -DT_fusion_rate_at_point_372______________________________________________ fusrat_plasma_dt_profile372____ 1.28710624939314400e+17 -DT_fusion_rate_at_point_373______________________________________________ fusrat_plasma_dt_profile373____ 1.26306746205871680e+17 -DT_fusion_rate_at_point_374______________________________________________ fusrat_plasma_dt_profile374____ 1.23928455222936144e+17 -DT_fusion_rate_at_point_375______________________________________________ fusrat_plasma_dt_profile375____ 1.21575892980627120e+17 -DT_fusion_rate_at_point_376______________________________________________ fusrat_plasma_dt_profile376____ 1.19249194593855024e+17 -DT_fusion_rate_at_point_377______________________________________________ fusrat_plasma_dt_profile377____ 1.16948489184291184e+17 -DT_fusion_rate_at_point_378______________________________________________ fusrat_plasma_dt_profile378____ 1.14673899764387856e+17 -DT_fusion_rate_at_point_379______________________________________________ fusrat_plasma_dt_profile379____ 1.12425543123636960e+17 -DT_fusion_rate_at_point_380______________________________________________ fusrat_plasma_dt_profile380____ 1.10203529717258128e+17 -DT_fusion_rate_at_point_381______________________________________________ fusrat_plasma_dt_profile381____ 1.08007963557515168e+17 -DT_fusion_rate_at_point_382______________________________________________ fusrat_plasma_dt_profile382____ 1.05838942107855312e+17 -DT_fusion_rate_at_point_383______________________________________________ fusrat_plasma_dt_profile383____ 1.03696556180079008e+17 -DT_fusion_rate_at_point_384______________________________________________ fusrat_plasma_dt_profile384____ 1.01580889834741600e+17 -DT_fusion_rate_at_point_385______________________________________________ fusrat_plasma_dt_profile385____ 9.94920202849974080e+16 -DT_fusion_rate_at_point_386______________________________________________ fusrat_plasma_dt_profile386____ 9.74300178040961920e+16 -DT_fusion_rate_at_point_387______________________________________________ fusrat_plasma_dt_profile387____ 9.53949456367449920e+16 -DT_fusion_rate_at_point_388______________________________________________ fusrat_plasma_dt_profile388____ 9.33868599145489440e+16 -DT_fusion_rate_at_point_389______________________________________________ fusrat_plasma_dt_profile389____ 9.14058095757507040e+16 -DT_fusion_rate_at_point_390______________________________________________ fusrat_plasma_dt_profile390____ 8.94518362894816960e+16 -DT_fusion_rate_at_point_391______________________________________________ fusrat_plasma_dt_profile391____ 8.75249743847483520e+16 -DT_fusion_rate_at_point_392______________________________________________ fusrat_plasma_dt_profile392____ 8.56252507843700160e+16 -DT_fusion_rate_at_point_393______________________________________________ fusrat_plasma_dt_profile393____ 8.37526849440913760e+16 -DT_fusion_rate_at_point_394______________________________________________ fusrat_plasma_dt_profile394____ 8.19072887970852320e+16 -DT_fusion_rate_at_point_395______________________________________________ fusrat_plasma_dt_profile395____ 8.00890667040699520e+16 -DT_fusion_rate_at_point_396______________________________________________ fusrat_plasma_dt_profile396____ 7.82980154092580800e+16 -DT_fusion_rate_at_point_397______________________________________________ fusrat_plasma_dt_profile397____ 7.65341240023562720e+16 -DT_fusion_rate_at_point_398______________________________________________ fusrat_plasma_dt_profile398____ 7.47973738868320320e+16 -DT_fusion_rate_at_point_399______________________________________________ fusrat_plasma_dt_profile399____ 7.30877387546646400e+16 -DT_fusion_rate_at_point_400______________________________________________ fusrat_plasma_dt_profile400____ 7.14051845677942400e+16 -DT_fusion_rate_at_point_401______________________________________________ fusrat_plasma_dt_profile401____ 6.97496695464792000e+16 -DT_fusion_rate_at_point_402______________________________________________ fusrat_plasma_dt_profile402____ 6.81211441647745440e+16 -DT_fusion_rate_at_point_403______________________________________________ fusrat_plasma_dt_profile403____ 6.65195511533371840e+16 -DT_fusion_rate_at_point_404______________________________________________ fusrat_plasma_dt_profile404____ 6.49448255097623840e+16 -DT_fusion_rate_at_point_405______________________________________________ fusrat_plasma_dt_profile405____ 6.33968945166546880e+16 -DT_fusion_rate_at_point_406______________________________________________ fusrat_plasma_dt_profile406____ 6.18756777676323360e+16 -DT_fusion_rate_at_point_407______________________________________________ fusrat_plasma_dt_profile407____ 6.03810872014626880e+16 -DT_fusion_rate_at_point_408______________________________________________ fusrat_plasma_dt_profile408____ 5.89130271445196640e+16 -DT_fusion_rate_at_point_409______________________________________________ fusrat_plasma_dt_profile409____ 5.74713943617605520e+16 -DT_fusion_rate_at_point_410______________________________________________ fusrat_plasma_dt_profile410____ 5.60560781164061440e+16 -DT_fusion_rate_at_point_411______________________________________________ fusrat_plasma_dt_profile411____ 5.46669602385153360e+16 -DT_fusion_rate_at_point_412______________________________________________ fusrat_plasma_dt_profile412____ 5.33039152026398960e+16 -DT_fusion_rate_at_point_413______________________________________________ fusrat_plasma_dt_profile413____ 5.19668102147464880e+16 -DT_fusion_rate_at_point_414______________________________________________ fusrat_plasma_dt_profile414____ 5.06555053085917440e+16 -DT_fusion_rate_at_point_415______________________________________________ fusrat_plasma_dt_profile415____ 4.93698534517401680e+16 -DT_fusion_rate_at_point_416______________________________________________ fusrat_plasma_dt_profile416____ 4.81097006614166560e+16 -DT_fusion_rate_at_point_417______________________________________________ fusrat_plasma_dt_profile417____ 4.68748861303876240e+16 -DT_fusion_rate_at_point_418______________________________________________ fusrat_plasma_dt_profile418____ 4.56652423630786000e+16 -DT_fusion_rate_at_point_419______________________________________________ fusrat_plasma_dt_profile419____ 4.44805953221365840e+16 -DT_fusion_rate_at_point_420______________________________________________ fusrat_plasma_dt_profile420____ 4.33207645856638960e+16 -DT_fusion_rate_at_point_421______________________________________________ fusrat_plasma_dt_profile421____ 4.21855635153642480e+16 -DT_fusion_rate_at_point_422______________________________________________ fusrat_plasma_dt_profile422____ 4.10747994358602080e+16 -DT_fusion_rate_at_point_423______________________________________________ fusrat_plasma_dt_profile423____ 3.99882738254673840e+16 -DT_fusion_rate_at_point_424______________________________________________ fusrat_plasma_dt_profile424____ 3.89257825187393840e+16 -DT_fusion_rate_at_point_425______________________________________________ fusrat_plasma_dt_profile425____ 3.78871159211368800e+16 -DT_fusion_rate_at_point_426______________________________________________ fusrat_plasma_dt_profile426____ 3.68720592362158560e+16 -DT_fusion_rate_at_point_427______________________________________________ fusrat_plasma_dt_profile427____ 3.58803927057873920e+16 -DT_fusion_rate_at_point_428______________________________________________ fusrat_plasma_dt_profile428____ 3.49118918635658880e+16 -DT_fusion_rate_at_point_429______________________________________________ fusrat_plasma_dt_profile429____ 3.39663278028991600e+16 -DT_fusion_rate_at_point_430______________________________________________ fusrat_plasma_dt_profile430____ 3.30434674592734960e+16 -DT_fusion_rate_at_point_431______________________________________________ fusrat_plasma_dt_profile431____ 3.21430739083943960e+16 -DT_fusion_rate_at_point_432______________________________________________ fusrat_plasma_dt_profile432____ 3.12649066807842680e+16 -DT_fusion_rate_at_point_433______________________________________________ fusrat_plasma_dt_profile433____ 3.04087220939980760e+16 -DT_fusion_rate_at_point_434______________________________________________ fusrat_plasma_dt_profile434____ 2.95742736037573680e+16 -DT_fusion_rate_at_point_435______________________________________________ fusrat_plasma_dt_profile435____ 2.87613121755338920e+16 -DT_fusion_rate_at_point_436______________________________________________ fusrat_plasma_dt_profile436____ 2.79695866784038720e+16 -DT_fusion_rate_at_point_437______________________________________________ fusrat_plasma_dt_profile437____ 2.71988443033298240e+16 -DT_fusion_rate_at_point_438______________________________________________ fusrat_plasma_dt_profile438____ 2.64488310084499800e+16 -DT_fusion_rate_at_point_439______________________________________________ fusrat_plasma_dt_profile439____ 2.57192919944543720e+16 -DT_fusion_rate_at_point_440______________________________________________ fusrat_plasma_dt_profile440____ 2.50099722137482480e+16 -DT_fusion_rate_at_point_441______________________________________________ fusrat_plasma_dt_profile441____ 2.43206169178593600e+16 -DT_fusion_rate_at_point_442______________________________________________ fusrat_plasma_dt_profile442____ 2.36509722484811160e+16 -DT_fusion_rate_at_point_443______________________________________________ fusrat_plasma_dt_profile443____ 2.30007858787005560e+16 -DT_fusion_rate_at_point_444______________________________________________ fusrat_plasma_dt_profile444____ 2.23698077124107960e+16 -DT_fusion_rate_at_point_445______________________________________________ fusrat_plasma_dt_profile445____ 2.17577906517217360e+16 -DT_fusion_rate_at_point_446______________________________________________ fusrat_plasma_dt_profile446____ 2.11644914444871880e+16 -DT_fusion_rate_at_point_447______________________________________________ fusrat_plasma_dt_profile447____ 2.05896716270055800e+16 -DT_fusion_rate_at_point_448______________________________________________ fusrat_plasma_dt_profile448____ 2.00330985807341320e+16 -DT_fusion_rate_at_point_449______________________________________________ fusrat_plasma_dt_profile449____ 1.94945467267800520e+16 -DT_fusion_rate_at_point_450______________________________________________ fusrat_plasma_dt_profile450____ 1.89737988883986720e+16 -DT_fusion_rate_at_point_451______________________________________________ fusrat_plasma_dt_profile451____ 1.84706478603263160e+16 -DT_fusion_rate_at_point_452______________________________________________ fusrat_plasma_dt_profile452____ 1.79848982353514500e+16 -DT_fusion_rate_at_point_453______________________________________________ fusrat_plasma_dt_profile453____ 1.75163685543288600e+16 -DT_fusion_rate_at_point_454______________________________________________ fusrat_plasma_dt_profile454____ 1.70648938677462840e+16 -DT_fusion_rate_at_point_455______________________________________________ fusrat_plasma_dt_profile455____ 1.66303288278337700e+16 -DT_fusion_rate_at_point_456______________________________________________ fusrat_plasma_dt_profile456____ 1.62125514745819120e+16 -DT_fusion_rate_at_point_457______________________________________________ fusrat_plasma_dt_profile457____ 1.58114679441572320e+16 -DT_fusion_rate_at_point_458______________________________________________ fusrat_plasma_dt_profile458____ 1.54270184260955280e+16 -DT_fusion_rate_at_point_459______________________________________________ fusrat_plasma_dt_profile459____ 1.50591848468640720e+16 -DT_fusion_rate_at_point_460______________________________________________ fusrat_plasma_dt_profile460____ 1.47080009983651220e+16 -DT_fusion_rate_at_point_461______________________________________________ fusrat_plasma_dt_profile461____ 1.43735662282079980e+16 -DT_fusion_rate_at_point_462______________________________________________ fusrat_plasma_dt_profile462____ 1.40560644954572900e+16 -DT_fusion_rate_at_point_463______________________________________________ fusrat_plasma_dt_profile463____ 1.37557918422891140e+16 -DT_fusion_rate_at_point_464______________________________________________ fusrat_plasma_dt_profile464____ 1.34731977401435800e+16 -DT_fusion_rate_at_point_465______________________________________________ fusrat_plasma_dt_profile465____ 1.32089507967844960e+16 -DT_fusion_rate_at_point_466______________________________________________ fusrat_plasma_dt_profile466____ 1.29640509184818240e+16 -DT_fusion_rate_at_point_467______________________________________________ fusrat_plasma_dt_profile467____ 1.27400407360004180e+16 -DT_fusion_rate_at_point_468______________________________________________ fusrat_plasma_dt_profile468____ 1.25394682968802380e+16 -DT_fusion_rate_at_point_469______________________________________________ fusrat_plasma_dt_profile469____ 1.23672010761825300e+16 -DT_fusion_rate_at_point_470______________________________________________ fusrat_plasma_dt_profile470____ 1.22385736881710940e+16 -DT_fusion_rate_at_point_471______________________________________________ fusrat_plasma_dt_profile471____ 1.06136604480079840e+16 -DT_fusion_rate_at_point_472______________________________________________ fusrat_plasma_dt_profile472____ 9.15008303092494600e+15 -DT_fusion_rate_at_point_473______________________________________________ fusrat_plasma_dt_profile473____ 7.83817825388823800e+15 -DT_fusion_rate_at_point_474______________________________________________ fusrat_plasma_dt_profile474____ 6.66832678446175600e+15 -DT_fusion_rate_at_point_475______________________________________________ fusrat_plasma_dt_profile475____ 5.63098368762584100e+15 -DT_fusion_rate_at_point_476______________________________________________ fusrat_plasma_dt_profile476____ 4.71670983456535100e+15 -DT_fusion_rate_at_point_477______________________________________________ fusrat_plasma_dt_profile477____ 3.91620395201374150e+15 -DT_fusion_rate_at_point_478______________________________________________ fusrat_plasma_dt_profile478____ 3.22033506839547550e+15 -DT_fusion_rate_at_point_479______________________________________________ fusrat_plasma_dt_profile479____ 2.62017509421465800e+15 -DT_fusion_rate_at_point_480______________________________________________ fusrat_plasma_dt_profile480____ 2.10703126012279275e+15 -DT_fusion_rate_at_point_481______________________________________________ fusrat_plasma_dt_profile481____ 1.67247812817196700e+15 -DT_fusion_rate_at_point_482______________________________________________ fusrat_plasma_dt_profile482____ 1.30838889125888050e+15 -DT_fusion_rate_at_point_483______________________________________________ fusrat_plasma_dt_profile483____ 1.00696568397769312e+15 -DT_fusion_rate_at_point_484______________________________________________ fusrat_plasma_dt_profile484____ 7.60768646122880375e+14 -DT_fusion_rate_at_point_485______________________________________________ fusrat_plasma_dt_profile485____ 5.62743508603180125e+14 -DT_fusion_rate_at_point_486______________________________________________ fusrat_plasma_dt_profile486____ 4.06247510438875438e+14 -DT_fusion_rate_at_point_487______________________________________________ fusrat_plasma_dt_profile487____ 2.85073503273922188e+14 -DT_fusion_rate_at_point_488______________________________________________ fusrat_plasma_dt_profile488____ 1.93472152345289875e+14 -DT_fusion_rate_at_point_489______________________________________________ fusrat_plasma_dt_profile489____ 1.26172191521624344e+14 -DT_fusion_rate_at_point_490______________________________________________ fusrat_plasma_dt_profile490____ 7.83987183784187344e+13 -DT_fusion_rate_at_point_491______________________________________________ fusrat_plasma_dt_profile491____ 4.58894930850140781e+13 -DT_fusion_rate_at_point_492______________________________________________ fusrat_plasma_dt_profile492____ 2.49090781055707383e+13 -DT_fusion_rate_at_point_493______________________________________________ fusrat_plasma_dt_profile493____ 1.22603299700199453e+13 -DT_fusion_rate_at_point_494______________________________________________ fusrat_plasma_dt_profile494____ 5.29206984889471680e+12 -DT_fusion_rate_at_point_495______________________________________________ fusrat_plasma_dt_profile495____ 1.90046142391021582e+12 -DT_fusion_rate_at_point_496______________________________________________ fusrat_plasma_dt_profile496____ 5.19359584798729004e+11 -DT_fusion_rate_at_point_497______________________________________________ fusrat_plasma_dt_profile497____ 9.13715453842735443e+10 -DT_fusion_rate_at_point_498______________________________________________ fusrat_plasma_dt_profile498____ 7.17734143699417591e+09 -DT_fusion_rate_at_point_499______________________________________________ fusrat_plasma_dt_profile499____ 8.85147488733996898e+07 -DT_fusion_rate_at_point_500______________________________________________ fusrat_plasma_dt_profile500____ 6.05381810160016926e+02 -D-D_->_T_fusion_rate_at_point_0__________________________________________ fusrat_plasma_dd_triton_profile0_ 6.91261200678207000e+15 -D-D_->_T_fusion_rate_at_point_1__________________________________________ fusrat_plasma_dd_triton_profile1_ 6.91252824793721400e+15 -D-D_->_T_fusion_rate_at_point_2__________________________________________ fusrat_plasma_dd_triton_profile2_ 6.91227697547179000e+15 -D-D_->_T_fusion_rate_at_point_3__________________________________________ fusrat_plasma_dd_triton_profile3_ 6.91185820159304000e+15 -D-D_->_T_fusion_rate_at_point_4__________________________________________ fusrat_plasma_dd_triton_profile4_ 6.91127194664584600e+15 -D-D_->_T_fusion_rate_at_point_5__________________________________________ fusrat_plasma_dd_triton_profile5_ 6.91051823911202100e+15 -D-D_->_T_fusion_rate_at_point_6__________________________________________ fusrat_plasma_dd_triton_profile6_ 6.90959711560916200e+15 -D-D_->_T_fusion_rate_at_point_7__________________________________________ fusrat_plasma_dd_triton_profile7_ 6.90850862088938000e+15 -D-D_->_T_fusion_rate_at_point_8__________________________________________ fusrat_plasma_dd_triton_profile8_ 6.90725280783756200e+15 -D-D_->_T_fusion_rate_at_point_9__________________________________________ fusrat_plasma_dd_triton_profile9_ 6.90582973746943100e+15 -D-D_->_T_fusion_rate_at_point_10_________________________________________ fusrat_plasma_dd_triton_profile10_ 6.90423947892925600e+15 -D-D_->_T_fusion_rate_at_point_11_________________________________________ fusrat_plasma_dd_triton_profile11_ 6.90248210948727900e+15 -D-D_->_T_fusion_rate_at_point_12_________________________________________ fusrat_plasma_dd_triton_profile12_ 6.90055771453681500e+15 -D-D_->_T_fusion_rate_at_point_13_________________________________________ fusrat_plasma_dd_triton_profile13_ 6.89846638759110600e+15 -D-D_->_T_fusion_rate_at_point_14_________________________________________ fusrat_plasma_dd_triton_profile14_ 6.89620823027978300e+15 -D-D_->_T_fusion_rate_at_point_15_________________________________________ fusrat_plasma_dd_triton_profile15_ 6.89378335234509800e+15 -D-D_->_T_fusion_rate_at_point_16_________________________________________ fusrat_plasma_dd_triton_profile16_ 6.89119187163782700e+15 -D-D_->_T_fusion_rate_at_point_17_________________________________________ fusrat_plasma_dd_triton_profile17_ 6.88843391411286100e+15 -D-D_->_T_fusion_rate_at_point_18_________________________________________ fusrat_plasma_dd_triton_profile18_ 6.88550961382447400e+15 -D-D_->_T_fusion_rate_at_point_19_________________________________________ fusrat_plasma_dd_triton_profile19_ 6.88241911292138600e+15 -D-D_->_T_fusion_rate_at_point_20_________________________________________ fusrat_plasma_dd_triton_profile20_ 6.87916256164136100e+15 -D-D_->_T_fusion_rate_at_point_21_________________________________________ fusrat_plasma_dd_triton_profile21_ 6.87574011830565800e+15 -D-D_->_T_fusion_rate_at_point_22_________________________________________ fusrat_plasma_dd_triton_profile22_ 6.87215194931307300e+15 -D-D_->_T_fusion_rate_at_point_23_________________________________________ fusrat_plasma_dd_triton_profile23_ 6.86839822913370600e+15 -D-D_->_T_fusion_rate_at_point_24_________________________________________ fusrat_plasma_dd_triton_profile24_ 6.86447914030248600e+15 -D-D_->_T_fusion_rate_at_point_25_________________________________________ fusrat_plasma_dd_triton_profile25_ 6.86039487341227200e+15 -D-D_->_T_fusion_rate_at_point_26_________________________________________ fusrat_plasma_dd_triton_profile26_ 6.85614562710672800e+15 -D-D_->_T_fusion_rate_at_point_27_________________________________________ fusrat_plasma_dd_triton_profile27_ 6.85173160807292400e+15 -D-D_->_T_fusion_rate_at_point_28_________________________________________ fusrat_plasma_dd_triton_profile28_ 6.84715303103351500e+15 -D-D_->_T_fusion_rate_at_point_29_________________________________________ fusrat_plasma_dd_triton_profile29_ 6.84241011873877700e+15 -D-D_->_T_fusion_rate_at_point_30_________________________________________ fusrat_plasma_dd_triton_profile30_ 6.83750310195814300e+15 -D-D_->_T_fusion_rate_at_point_31_________________________________________ fusrat_plasma_dd_triton_profile31_ 6.83243221947163300e+15 -D-D_->_T_fusion_rate_at_point_32_________________________________________ fusrat_plasma_dd_triton_profile32_ 6.82719771806084700e+15 -D-D_->_T_fusion_rate_at_point_33_________________________________________ fusrat_plasma_dd_triton_profile33_ 6.82179985249968000e+15 -D-D_->_T_fusion_rate_at_point_34_________________________________________ fusrat_plasma_dd_triton_profile34_ 6.81623888554478000e+15 -D-D_->_T_fusion_rate_at_point_35_________________________________________ fusrat_plasma_dd_triton_profile35_ 6.81051508792561300e+15 -D-D_->_T_fusion_rate_at_point_36_________________________________________ fusrat_plasma_dd_triton_profile36_ 6.80462873833435700e+15 -D-D_->_T_fusion_rate_at_point_37_________________________________________ fusrat_plasma_dd_triton_profile37_ 6.79858012341530500e+15 -D-D_->_T_fusion_rate_at_point_38_________________________________________ fusrat_plasma_dd_triton_profile38_ 6.79236953775412700e+15 -D-D_->_T_fusion_rate_at_point_39_________________________________________ fusrat_plasma_dd_triton_profile39_ 6.78599728386676100e+15 -D-D_->_T_fusion_rate_at_point_40_________________________________________ fusrat_plasma_dd_triton_profile40_ 6.77946367218799400e+15 -D-D_->_T_fusion_rate_at_point_41_________________________________________ fusrat_plasma_dd_triton_profile41_ 6.77276902105972200e+15 -D-D_->_T_fusion_rate_at_point_42_________________________________________ fusrat_plasma_dd_triton_profile42_ 6.76591365671898400e+15 -D-D_->_T_fusion_rate_at_point_43_________________________________________ fusrat_plasma_dd_triton_profile43_ 6.75889791328552600e+15 -D-D_->_T_fusion_rate_at_point_44_________________________________________ fusrat_plasma_dd_triton_profile44_ 6.75172213274927800e+15 -D-D_->_T_fusion_rate_at_point_45_________________________________________ fusrat_plasma_dd_triton_profile45_ 6.74438666495735700e+15 -D-D_->_T_fusion_rate_at_point_46_________________________________________ fusrat_plasma_dd_triton_profile46_ 6.73689186760080700e+15 -D-D_->_T_fusion_rate_at_point_47_________________________________________ fusrat_plasma_dd_triton_profile47_ 6.72923810620103100e+15 -D-D_->_T_fusion_rate_at_point_48_________________________________________ fusrat_plasma_dd_triton_profile48_ 6.72142575409597100e+15 -D-D_->_T_fusion_rate_at_point_49_________________________________________ fusrat_plasma_dd_triton_profile49_ 6.71345519242591200e+15 -D-D_->_T_fusion_rate_at_point_50_________________________________________ fusrat_plasma_dd_triton_profile50_ 6.70532681011898400e+15 -D-D_->_T_fusion_rate_at_point_51_________________________________________ fusrat_plasma_dd_triton_profile51_ 6.69704100387636800e+15 -D-D_->_T_fusion_rate_at_point_52_________________________________________ fusrat_plasma_dd_triton_profile52_ 6.68859817815724900e+15 -D-D_->_T_fusion_rate_at_point_53_________________________________________ fusrat_plasma_dd_triton_profile53_ 6.67999874516336800e+15 -D-D_->_T_fusion_rate_at_point_54_________________________________________ fusrat_plasma_dd_triton_profile54_ 6.67124312482328500e+15 -D-D_->_T_fusion_rate_at_point_55_________________________________________ fusrat_plasma_dd_triton_profile55_ 6.66233174477643600e+15 -D-D_->_T_fusion_rate_at_point_56_________________________________________ fusrat_plasma_dd_triton_profile56_ 6.65326504035673100e+15 -D-D_->_T_fusion_rate_at_point_57_________________________________________ fusrat_plasma_dd_triton_profile57_ 6.64404345457593300e+15 -D-D_->_T_fusion_rate_at_point_58_________________________________________ fusrat_plasma_dd_triton_profile58_ 6.63466743810671500e+15 -D-D_->_T_fusion_rate_at_point_59_________________________________________ fusrat_plasma_dd_triton_profile59_ 6.62513744926540700e+15 -D-D_->_T_fusion_rate_at_point_60_________________________________________ fusrat_plasma_dd_triton_profile60_ 6.61545395399439600e+15 -D-D_->_T_fusion_rate_at_point_61_________________________________________ fusrat_plasma_dd_triton_profile61_ 6.60561742584429200e+15 -D-D_->_T_fusion_rate_at_point_62_________________________________________ fusrat_plasma_dd_triton_profile62_ 6.59562834595568100e+15 -D-D_->_T_fusion_rate_at_point_63_________________________________________ fusrat_plasma_dd_triton_profile63_ 6.58548720304069100e+15 -D-D_->_T_fusion_rate_at_point_64_________________________________________ fusrat_plasma_dd_triton_profile64_ 6.57519449336409700e+15 -D-D_->_T_fusion_rate_at_point_65_________________________________________ fusrat_plasma_dd_triton_profile65_ 6.56475072072431500e+15 -D-D_->_T_fusion_rate_at_point_66_________________________________________ fusrat_plasma_dd_triton_profile66_ 6.55415639643384500e+15 -D-D_->_T_fusion_rate_at_point_67_________________________________________ fusrat_plasma_dd_triton_profile67_ 6.54341203929960700e+15 -D-D_->_T_fusion_rate_at_point_68_________________________________________ fusrat_plasma_dd_triton_profile68_ 6.53251817560285500e+15 -D-D_->_T_fusion_rate_at_point_69_________________________________________ fusrat_plasma_dd_triton_profile69_ 6.52147533907881000e+15 -D-D_->_T_fusion_rate_at_point_70_________________________________________ fusrat_plasma_dd_triton_profile70_ 6.51028407089598800e+15 -D-D_->_T_fusion_rate_at_point_71_________________________________________ fusrat_plasma_dd_triton_profile71_ 6.49894491963518200e+15 -D-D_->_T_fusion_rate_at_point_72_________________________________________ fusrat_plasma_dd_triton_profile72_ 6.48745844126819900e+15 -D-D_->_T_fusion_rate_at_point_73_________________________________________ fusrat_plasma_dd_triton_profile73_ 6.47582519913617700e+15 -D-D_->_T_fusion_rate_at_point_74_________________________________________ fusrat_plasma_dd_triton_profile74_ 6.46404576392771200e+15 -D-D_->_T_fusion_rate_at_point_75_________________________________________ fusrat_plasma_dd_triton_profile75_ 6.45212071365655700e+15 -D-D_->_T_fusion_rate_at_point_76_________________________________________ fusrat_plasma_dd_triton_profile76_ 6.44005063363910900e+15 -D-D_->_T_fusion_rate_at_point_77_________________________________________ fusrat_plasma_dd_triton_profile77_ 6.42783611647149700e+15 -D-D_->_T_fusion_rate_at_point_78_________________________________________ fusrat_plasma_dd_triton_profile78_ 6.41547776200639200e+15 -D-D_->_T_fusion_rate_at_point_79_________________________________________ fusrat_plasma_dd_triton_profile79_ 6.40297617732952800e+15 -D-D_->_T_fusion_rate_at_point_80_________________________________________ fusrat_plasma_dd_triton_profile80_ 6.39033197673582000e+15 -D-D_->_T_fusion_rate_at_point_81_________________________________________ fusrat_plasma_dd_triton_profile81_ 6.37754578170531300e+15 -D-D_->_T_fusion_rate_at_point_82_________________________________________ fusrat_plasma_dd_triton_profile82_ 6.36461822087862900e+15 -D-D_->_T_fusion_rate_at_point_83_________________________________________ fusrat_plasma_dd_triton_profile83_ 6.35154993003227400e+15 -D-D_->_T_fusion_rate_at_point_84_________________________________________ fusrat_plasma_dd_triton_profile84_ 6.33834155205349800e+15 -D-D_->_T_fusion_rate_at_point_85_________________________________________ fusrat_plasma_dd_triton_profile85_ 6.32499373691491400e+15 -D-D_->_T_fusion_rate_at_point_86_________________________________________ fusrat_plasma_dd_triton_profile86_ 6.31150714164875300e+15 -D-D_->_T_fusion_rate_at_point_87_________________________________________ fusrat_plasma_dd_triton_profile87_ 6.29788243032085200e+15 -D-D_->_T_fusion_rate_at_point_88_________________________________________ fusrat_plasma_dd_triton_profile88_ 6.28412027400425000e+15 -D-D_->_T_fusion_rate_at_point_89_________________________________________ fusrat_plasma_dd_triton_profile89_ 6.27022135075254300e+15 -D-D_->_T_fusion_rate_at_point_90_________________________________________ fusrat_plasma_dd_triton_profile90_ 6.25618634557286400e+15 -D-D_->_T_fusion_rate_at_point_91_________________________________________ fusrat_plasma_dd_triton_profile91_ 6.24201595039856100e+15 -D-D_->_T_fusion_rate_at_point_92_________________________________________ fusrat_plasma_dd_triton_profile92_ 6.22771086406157500e+15 -D-D_->_T_fusion_rate_at_point_93_________________________________________ fusrat_plasma_dd_triton_profile93_ 6.21327179226445600e+15 -D-D_->_T_fusion_rate_at_point_94_________________________________________ fusrat_plasma_dd_triton_profile94_ 6.19869944755208000e+15 -D-D_->_T_fusion_rate_at_point_95_________________________________________ fusrat_plasma_dd_triton_profile95_ 6.18399454928307000e+15 -D-D_->_T_fusion_rate_at_point_96_________________________________________ fusrat_plasma_dd_triton_profile96_ 6.16915782360083900e+15 -D-D_->_T_fusion_rate_at_point_97_________________________________________ fusrat_plasma_dd_triton_profile97_ 6.15419000340435300e+15 -D-D_->_T_fusion_rate_at_point_98_________________________________________ fusrat_plasma_dd_triton_profile98_ 6.13909182831855800e+15 -D-D_->_T_fusion_rate_at_point_99_________________________________________ fusrat_plasma_dd_triton_profile99_ 6.12386404466447000e+15 -D-D_->_T_fusion_rate_at_point_100________________________________________ fusrat_plasma_dd_triton_profile100_ 6.10850740542897600e+15 -D-D_->_T_fusion_rate_at_point_101________________________________________ fusrat_plasma_dd_triton_profile101_ 6.09302267023428100e+15 -D-D_->_T_fusion_rate_at_point_102________________________________________ fusrat_plasma_dd_triton_profile102_ 6.07741060530701400e+15 -D-D_->_T_fusion_rate_at_point_103________________________________________ fusrat_plasma_dd_triton_profile103_ 6.06167198344707000e+15 -D-D_->_T_fusion_rate_at_point_104________________________________________ fusrat_plasma_dd_triton_profile104_ 6.04580758399604400e+15 -D-D_->_T_fusion_rate_at_point_105________________________________________ fusrat_plasma_dd_triton_profile105_ 6.02981819280541300e+15 -D-D_->_T_fusion_rate_at_point_106________________________________________ fusrat_plasma_dd_triton_profile106_ 6.01370460220435400e+15 -D-D_->_T_fusion_rate_at_point_107________________________________________ fusrat_plasma_dd_triton_profile107_ 5.99746761096720700e+15 -D-D_->_T_fusion_rate_at_point_108________________________________________ fusrat_plasma_dd_triton_profile108_ 5.98110802428070900e+15 -D-D_->_T_fusion_rate_at_point_109________________________________________ fusrat_plasma_dd_triton_profile109_ 5.96462665371074700e+15 -D-D_->_T_fusion_rate_at_point_110________________________________________ fusrat_plasma_dd_triton_profile110_ 5.94802431716891600e+15 -D-D_->_T_fusion_rate_at_point_111________________________________________ fusrat_plasma_dd_triton_profile111_ 5.93130183887869800e+15 -D-D_->_T_fusion_rate_at_point_112________________________________________ fusrat_plasma_dd_triton_profile112_ 5.91446004934127400e+15 -D-D_->_T_fusion_rate_at_point_113________________________________________ fusrat_plasma_dd_triton_profile113_ 5.89749978530109100e+15 -D-D_->_T_fusion_rate_at_point_114________________________________________ fusrat_plasma_dd_triton_profile114_ 5.88042188971096900e+15 -D-D_->_T_fusion_rate_at_point_115________________________________________ fusrat_plasma_dd_triton_profile115_ 5.86322721169702700e+15 -D-D_->_T_fusion_rate_at_point_116________________________________________ fusrat_plasma_dd_triton_profile116_ 5.84591660652313500e+15 -D-D_->_T_fusion_rate_at_point_117________________________________________ fusrat_plasma_dd_triton_profile117_ 5.82849093555514900e+15 -D-D_->_T_fusion_rate_at_point_118________________________________________ fusrat_plasma_dd_triton_profile118_ 5.81095106622473100e+15 -D-D_->_T_fusion_rate_at_point_119________________________________________ fusrat_plasma_dd_triton_profile119_ 5.79329787199282800e+15 -D-D_->_T_fusion_rate_at_point_120________________________________________ fusrat_plasma_dd_triton_profile120_ 5.77553223231293100e+15 -D-D_->_T_fusion_rate_at_point_121________________________________________ fusrat_plasma_dd_triton_profile121_ 5.75765503259381600e+15 -D-D_->_T_fusion_rate_at_point_122________________________________________ fusrat_plasma_dd_triton_profile122_ 5.73966716416210900e+15 -D-D_->_T_fusion_rate_at_point_123________________________________________ fusrat_plasma_dd_triton_profile123_ 5.72156952422443400e+15 -D-D_->_T_fusion_rate_at_point_124________________________________________ fusrat_plasma_dd_triton_profile124_ 5.70336301582920500e+15 -D-D_->_T_fusion_rate_at_point_125________________________________________ fusrat_plasma_dd_triton_profile125_ 5.68504854782814700e+15 -D-D_->_T_fusion_rate_at_point_126________________________________________ fusrat_plasma_dd_triton_profile126_ 5.66662703483743000e+15 -D-D_->_T_fusion_rate_at_point_127________________________________________ fusrat_plasma_dd_triton_profile127_ 5.64809939719843100e+15 -D-D_->_T_fusion_rate_at_point_128________________________________________ fusrat_plasma_dd_triton_profile128_ 5.62946656093825700e+15 -D-D_->_T_fusion_rate_at_point_129________________________________________ fusrat_plasma_dd_triton_profile129_ 5.61072945772979700e+15 -D-D_->_T_fusion_rate_at_point_130________________________________________ fusrat_plasma_dd_triton_profile130_ 5.59188902485151300e+15 -D-D_->_T_fusion_rate_at_point_131________________________________________ fusrat_plasma_dd_triton_profile131_ 5.57294620514690600e+15 -D-D_->_T_fusion_rate_at_point_132________________________________________ fusrat_plasma_dd_triton_profile132_ 5.55390194698352100e+15 -D-D_->_T_fusion_rate_at_point_133________________________________________ fusrat_plasma_dd_triton_profile133_ 5.53475720421173600e+15 -D-D_->_T_fusion_rate_at_point_134________________________________________ fusrat_plasma_dd_triton_profile134_ 5.51551293612314000e+15 -D-D_->_T_fusion_rate_at_point_135________________________________________ fusrat_plasma_dd_triton_profile135_ 5.49617010740855100e+15 -D-D_->_T_fusion_rate_at_point_136________________________________________ fusrat_plasma_dd_triton_profile136_ 5.47672968811571100e+15 -D-D_->_T_fusion_rate_at_point_137________________________________________ fusrat_plasma_dd_triton_profile137_ 5.45719265360662800e+15 -D-D_->_T_fusion_rate_at_point_138________________________________________ fusrat_plasma_dd_triton_profile138_ 5.43755998451459300e+15 -D-D_->_T_fusion_rate_at_point_139________________________________________ fusrat_plasma_dd_triton_profile139_ 5.41783266670072900e+15 -D-D_->_T_fusion_rate_at_point_140________________________________________ fusrat_plasma_dd_triton_profile140_ 5.39801169121036600e+15 -D-D_->_T_fusion_rate_at_point_141________________________________________ fusrat_plasma_dd_triton_profile141_ 5.37809805422892300e+15 -D-D_->_T_fusion_rate_at_point_142________________________________________ fusrat_plasma_dd_triton_profile142_ 5.35809275703748400e+15 -D-D_->_T_fusion_rate_at_point_143________________________________________ fusrat_plasma_dd_triton_profile143_ 5.33799680596802600e+15 -D-D_->_T_fusion_rate_at_point_144________________________________________ fusrat_plasma_dd_triton_profile144_ 5.31781121235825000e+15 -D-D_->_T_fusion_rate_at_point_145________________________________________ fusrat_plasma_dd_triton_profile145_ 5.29753699250612800e+15 -D-D_->_T_fusion_rate_at_point_146________________________________________ fusrat_plasma_dd_triton_profile146_ 5.27717516762399400e+15 -D-D_->_T_fusion_rate_at_point_147________________________________________ fusrat_plasma_dd_triton_profile147_ 5.25672676379237500e+15 -D-D_->_T_fusion_rate_at_point_148________________________________________ fusrat_plasma_dd_triton_profile148_ 5.23619281191335700e+15 -D-D_->_T_fusion_rate_at_point_149________________________________________ fusrat_plasma_dd_triton_profile149_ 5.21557434766370400e+15 -D-D_->_T_fusion_rate_at_point_150________________________________________ fusrat_plasma_dd_triton_profile150_ 5.19487241144751100e+15 -D-D_->_T_fusion_rate_at_point_151________________________________________ fusrat_plasma_dd_triton_profile151_ 5.17408804834851400e+15 -D-D_->_T_fusion_rate_at_point_152________________________________________ fusrat_plasma_dd_triton_profile152_ 5.15322230808211300e+15 -D-D_->_T_fusion_rate_at_point_153________________________________________ fusrat_plasma_dd_triton_profile153_ 5.13227624494693200e+15 -D-D_->_T_fusion_rate_at_point_154________________________________________ fusrat_plasma_dd_triton_profile154_ 5.11125091777602300e+15 -D-D_->_T_fusion_rate_at_point_155________________________________________ fusrat_plasma_dd_triton_profile155_ 5.09014738988778100e+15 -D-D_->_T_fusion_rate_at_point_156________________________________________ fusrat_plasma_dd_triton_profile156_ 5.06896672903637500e+15 -D-D_->_T_fusion_rate_at_point_157________________________________________ fusrat_plasma_dd_triton_profile157_ 5.04771000736189000e+15 -D-D_->_T_fusion_rate_at_point_158________________________________________ fusrat_plasma_dd_triton_profile158_ 5.02637830134009100e+15 -D-D_->_T_fusion_rate_at_point_159________________________________________ fusrat_plasma_dd_triton_profile159_ 5.00497269173171400e+15 -D-D_->_T_fusion_rate_at_point_160________________________________________ fusrat_plasma_dd_triton_profile160_ 4.98349426353155700e+15 -D-D_->_T_fusion_rate_at_point_161________________________________________ fusrat_plasma_dd_triton_profile161_ 4.96194410591698900e+15 -D-D_->_T_fusion_rate_at_point_162________________________________________ fusrat_plasma_dd_triton_profile162_ 4.94032331219626600e+15 -D-D_->_T_fusion_rate_at_point_163________________________________________ fusrat_plasma_dd_triton_profile163_ 4.91863297975634400e+15 -D-D_->_T_fusion_rate_at_point_164________________________________________ fusrat_plasma_dd_triton_profile164_ 4.89687421001035100e+15 -D-D_->_T_fusion_rate_at_point_165________________________________________ fusrat_plasma_dd_triton_profile165_ 4.87504810834467800e+15 -D-D_->_T_fusion_rate_at_point_166________________________________________ fusrat_plasma_dd_triton_profile166_ 4.85315578406570400e+15 -D-D_->_T_fusion_rate_at_point_167________________________________________ fusrat_plasma_dd_triton_profile167_ 4.83119835034608500e+15 -D-D_->_T_fusion_rate_at_point_168________________________________________ fusrat_plasma_dd_triton_profile168_ 4.80917692417070800e+15 -D-D_->_T_fusion_rate_at_point_169________________________________________ fusrat_plasma_dd_triton_profile169_ 4.78709262628219300e+15 -D-D_->_T_fusion_rate_at_point_170________________________________________ fusrat_plasma_dd_triton_profile170_ 4.76494658112609600e+15 -D-D_->_T_fusion_rate_at_point_171________________________________________ fusrat_plasma_dd_triton_profile171_ 4.74273991679564100e+15 -D-D_->_T_fusion_rate_at_point_172________________________________________ fusrat_plasma_dd_triton_profile172_ 4.72047376497606300e+15 -D-D_->_T_fusion_rate_at_point_173________________________________________ fusrat_plasma_dd_triton_profile173_ 4.69814926088862300e+15 -D-D_->_T_fusion_rate_at_point_174________________________________________ fusrat_plasma_dd_triton_profile174_ 4.67576754323414000e+15 -D-D_->_T_fusion_rate_at_point_175________________________________________ fusrat_plasma_dd_triton_profile175_ 4.65332975413619300e+15 -D-D_->_T_fusion_rate_at_point_176________________________________________ fusrat_plasma_dd_triton_profile176_ 4.63083703908386800e+15 -D-D_->_T_fusion_rate_at_point_177________________________________________ fusrat_plasma_dd_triton_profile177_ 4.60829054687415700e+15 -D-D_->_T_fusion_rate_at_point_178________________________________________ fusrat_plasma_dd_triton_profile178_ 4.58569142955389400e+15 -D-D_->_T_fusion_rate_at_point_179________________________________________ fusrat_plasma_dd_triton_profile179_ 4.56304084236134000e+15 -D-D_->_T_fusion_rate_at_point_180________________________________________ fusrat_plasma_dd_triton_profile180_ 4.54033994366733400e+15 -D-D_->_T_fusion_rate_at_point_181________________________________________ fusrat_plasma_dd_triton_profile181_ 4.51758989491602100e+15 -D-D_->_T_fusion_rate_at_point_182________________________________________ fusrat_plasma_dd_triton_profile182_ 4.49479186056520600e+15 -D-D_->_T_fusion_rate_at_point_183________________________________________ fusrat_plasma_dd_triton_profile183_ 4.47194700802625800e+15 -D-D_->_T_fusion_rate_at_point_184________________________________________ fusrat_plasma_dd_triton_profile184_ 4.44905650760363850e+15 -D-D_->_T_fusion_rate_at_point_185________________________________________ fusrat_plasma_dd_triton_profile185_ 4.42612153243395900e+15 -D-D_->_T_fusion_rate_at_point_186________________________________________ fusrat_plasma_dd_triton_profile186_ 4.40314325842468200e+15 -D-D_->_T_fusion_rate_at_point_187________________________________________ fusrat_plasma_dd_triton_profile187_ 4.38012286419234200e+15 -D-D_->_T_fusion_rate_at_point_188________________________________________ fusrat_plasma_dd_triton_profile188_ 4.35706153100040550e+15 -D-D_->_T_fusion_rate_at_point_189________________________________________ fusrat_plasma_dd_triton_profile189_ 4.33396044269663050e+15 -D-D_->_T_fusion_rate_at_point_190________________________________________ fusrat_plasma_dd_triton_profile190_ 4.31082078565010450e+15 -D-D_->_T_fusion_rate_at_point_191________________________________________ fusrat_plasma_dd_triton_profile191_ 4.28764374868771550e+15 -D-D_->_T_fusion_rate_at_point_192________________________________________ fusrat_plasma_dd_triton_profile192_ 4.26443052303033200e+15 -D-D_->_T_fusion_rate_at_point_193________________________________________ fusrat_plasma_dd_triton_profile193_ 4.24118230222844850e+15 -D-D_->_T_fusion_rate_at_point_194________________________________________ fusrat_plasma_dd_triton_profile194_ 4.21790028209744650e+15 -D-D_->_T_fusion_rate_at_point_195________________________________________ fusrat_plasma_dd_triton_profile195_ 4.19458566065240100e+15 -D-D_->_T_fusion_rate_at_point_196________________________________________ fusrat_plasma_dd_triton_profile196_ 4.17123963804247100e+15 -D-D_->_T_fusion_rate_at_point_197________________________________________ fusrat_plasma_dd_triton_profile197_ 4.14786341648478150e+15 -D-D_->_T_fusion_rate_at_point_198________________________________________ fusrat_plasma_dd_triton_profile198_ 4.12445820019796050e+15 -D-D_->_T_fusion_rate_at_point_199________________________________________ fusrat_plasma_dd_triton_profile199_ 4.10102519533513750e+15 -D-D_->_T_fusion_rate_at_point_200________________________________________ fusrat_plasma_dd_triton_profile200_ 4.07756560991656400e+15 -D-D_->_T_fusion_rate_at_point_201________________________________________ fusrat_plasma_dd_triton_profile201_ 4.05408065376172150e+15 -D-D_->_T_fusion_rate_at_point_202________________________________________ fusrat_plasma_dd_triton_profile202_ 4.03057153842102400e+15 -D-D_->_T_fusion_rate_at_point_203________________________________________ fusrat_plasma_dd_triton_profile203_ 4.00703947710704000e+15 -D-D_->_T_fusion_rate_at_point_204________________________________________ fusrat_plasma_dd_triton_profile204_ 3.98348568462528300e+15 -D-D_->_T_fusion_rate_at_point_205________________________________________ fusrat_plasma_dd_triton_profile205_ 3.95991137730447100e+15 -D-D_->_T_fusion_rate_at_point_206________________________________________ fusrat_plasma_dd_triton_profile206_ 3.93631777292642950e+15 -D-D_->_T_fusion_rate_at_point_207________________________________________ fusrat_plasma_dd_triton_profile207_ 3.91270609065542500e+15 -D-D_->_T_fusion_rate_at_point_208________________________________________ fusrat_plasma_dd_triton_profile208_ 3.88907755096711000e+15 -D-D_->_T_fusion_rate_at_point_209________________________________________ fusrat_plasma_dd_triton_profile209_ 3.86543337557693050e+15 -D-D_->_T_fusion_rate_at_point_210________________________________________ fusrat_plasma_dd_triton_profile210_ 3.84177478736811850e+15 -D-D_->_T_fusion_rate_at_point_211________________________________________ fusrat_plasma_dd_triton_profile211_ 3.81810301031917050e+15 -D-D_->_T_fusion_rate_at_point_212________________________________________ fusrat_plasma_dd_triton_profile212_ 3.79441926943085650e+15 -D-D_->_T_fusion_rate_at_point_213________________________________________ fusrat_plasma_dd_triton_profile213_ 3.77072479065273950e+15 -D-D_->_T_fusion_rate_at_point_214________________________________________ fusrat_plasma_dd_triton_profile214_ 3.74702080080923150e+15 -D-D_->_T_fusion_rate_at_point_215________________________________________ fusrat_plasma_dd_triton_profile215_ 3.72330852752515700e+15 -D-D_->_T_fusion_rate_at_point_216________________________________________ fusrat_plasma_dd_triton_profile216_ 3.69958919915079100e+15 -D-D_->_T_fusion_rate_at_point_217________________________________________ fusrat_plasma_dd_triton_profile217_ 3.67586404468643950e+15 -D-D_->_T_fusion_rate_at_point_218________________________________________ fusrat_plasma_dd_triton_profile218_ 3.65213429370654950e+15 -D-D_->_T_fusion_rate_at_point_219________________________________________ fusrat_plasma_dd_triton_profile219_ 3.62840117628323250e+15 -D-D_->_T_fusion_rate_at_point_220________________________________________ fusrat_plasma_dd_triton_profile220_ 3.60466592290937400e+15 -D-D_->_T_fusion_rate_at_point_221________________________________________ fusrat_plasma_dd_triton_profile221_ 3.58092976442120250e+15 -D-D_->_T_fusion_rate_at_point_222________________________________________ fusrat_plasma_dd_triton_profile222_ 3.55719393192033650e+15 -D-D_->_T_fusion_rate_at_point_223________________________________________ fusrat_plasma_dd_triton_profile223_ 3.53345965669534450e+15 -D-D_->_T_fusion_rate_at_point_224________________________________________ fusrat_plasma_dd_triton_profile224_ 3.50972817014279300e+15 -D-D_->_T_fusion_rate_at_point_225________________________________________ fusrat_plasma_dd_triton_profile225_ 3.48600070368775000e+15 -D-D_->_T_fusion_rate_at_point_226________________________________________ fusrat_plasma_dd_triton_profile226_ 3.46227848870379050e+15 -D-D_->_T_fusion_rate_at_point_227________________________________________ fusrat_plasma_dd_triton_profile227_ 3.43856275643249600e+15 -D-D_->_T_fusion_rate_at_point_228________________________________________ fusrat_plasma_dd_triton_profile228_ 3.41485473790235600e+15 -D-D_->_T_fusion_rate_at_point_229________________________________________ fusrat_plasma_dd_triton_profile229_ 3.39115566384726050e+15 -D-D_->_T_fusion_rate_at_point_230________________________________________ fusrat_plasma_dd_triton_profile230_ 3.36746676462431050e+15 -D-D_->_T_fusion_rate_at_point_231________________________________________ fusrat_plasma_dd_triton_profile231_ 3.34378927013124950e+15 -D-D_->_T_fusion_rate_at_point_232________________________________________ fusrat_plasma_dd_triton_profile232_ 3.32012440972321100e+15 -D-D_->_T_fusion_rate_at_point_233________________________________________ fusrat_plasma_dd_triton_profile233_ 3.29647341212903700e+15 -D-D_->_T_fusion_rate_at_point_234________________________________________ fusrat_plasma_dd_triton_profile234_ 3.27283750536697850e+15 -D-D_->_T_fusion_rate_at_point_235________________________________________ fusrat_plasma_dd_triton_profile235_ 3.24921791665988950e+15 -D-D_->_T_fusion_rate_at_point_236________________________________________ fusrat_plasma_dd_triton_profile236_ 3.22561587234983650e+15 -D-D_->_T_fusion_rate_at_point_237________________________________________ fusrat_plasma_dd_triton_profile237_ 3.20203259781217650e+15 -D-D_->_T_fusion_rate_at_point_238________________________________________ fusrat_plasma_dd_triton_profile238_ 3.17846931736908000e+15 -D-D_->_T_fusion_rate_at_point_239________________________________________ fusrat_plasma_dd_triton_profile239_ 3.15492725420244650e+15 -D-D_->_T_fusion_rate_at_point_240________________________________________ fusrat_plasma_dd_triton_profile240_ 3.13140763026632500e+15 -D-D_->_T_fusion_rate_at_point_241________________________________________ fusrat_plasma_dd_triton_profile241_ 3.10791166619870300e+15 -D-D_->_T_fusion_rate_at_point_242________________________________________ fusrat_plasma_dd_triton_profile242_ 3.08444058123274450e+15 -D-D_->_T_fusion_rate_at_point_243________________________________________ fusrat_plasma_dd_triton_profile243_ 3.06099559310748250e+15 -D-D_->_T_fusion_rate_at_point_244________________________________________ fusrat_plasma_dd_triton_profile244_ 3.03757791797787700e+15 -D-D_->_T_fusion_rate_at_point_245________________________________________ fusrat_plasma_dd_triton_profile245_ 3.01418877032432300e+15 -D-D_->_T_fusion_rate_at_point_246________________________________________ fusrat_plasma_dd_triton_profile246_ 2.99082936286158900e+15 -D-D_->_T_fusion_rate_at_point_247________________________________________ fusrat_plasma_dd_triton_profile247_ 2.96750090644710400e+15 -D-D_->_T_fusion_rate_at_point_248________________________________________ fusrat_plasma_dd_triton_profile248_ 2.94420460998873200e+15 -D-D_->_T_fusion_rate_at_point_249________________________________________ fusrat_plasma_dd_triton_profile249_ 2.92094168035187700e+15 -D-D_->_T_fusion_rate_at_point_250________________________________________ fusrat_plasma_dd_triton_profile250_ 2.89771332226603600e+15 -D-D_->_T_fusion_rate_at_point_251________________________________________ fusrat_plasma_dd_triton_profile251_ 2.87452073823073900e+15 -D-D_->_T_fusion_rate_at_point_252________________________________________ fusrat_plasma_dd_triton_profile252_ 2.85136512842085650e+15 -D-D_->_T_fusion_rate_at_point_253________________________________________ fusrat_plasma_dd_triton_profile253_ 2.82824769059132300e+15 -D-D_->_T_fusion_rate_at_point_254________________________________________ fusrat_plasma_dd_triton_profile254_ 2.80516961998125200e+15 -D-D_->_T_fusion_rate_at_point_255________________________________________ fusrat_plasma_dd_triton_profile255_ 2.78213210921739700e+15 -D-D_->_T_fusion_rate_at_point_256________________________________________ fusrat_plasma_dd_triton_profile256_ 2.75913634821704500e+15 -D-D_->_T_fusion_rate_at_point_257________________________________________ fusrat_plasma_dd_triton_profile257_ 2.73618352409021650e+15 -D-D_->_T_fusion_rate_at_point_258________________________________________ fusrat_plasma_dd_triton_profile258_ 2.71327482104132600e+15 -D-D_->_T_fusion_rate_at_point_259________________________________________ fusrat_plasma_dd_triton_profile259_ 2.69041142027012350e+15 -D-D_->_T_fusion_rate_at_point_260________________________________________ fusrat_plasma_dd_triton_profile260_ 2.66759449987207350e+15 -D-D_->_T_fusion_rate_at_point_261________________________________________ fusrat_plasma_dd_triton_profile261_ 2.64482523473804000e+15 -D-D_->_T_fusion_rate_at_point_262________________________________________ fusrat_plasma_dd_triton_profile262_ 2.62210479645338050e+15 -D-D_->_T_fusion_rate_at_point_263________________________________________ fusrat_plasma_dd_triton_profile263_ 2.59943435319634850e+15 -D-D_->_T_fusion_rate_at_point_264________________________________________ fusrat_plasma_dd_triton_profile264_ 2.57681506963590550e+15 -D-D_->_T_fusion_rate_at_point_265________________________________________ fusrat_plasma_dd_triton_profile265_ 2.55424810682880500e+15 -D-D_->_T_fusion_rate_at_point_266________________________________________ fusrat_plasma_dd_triton_profile266_ 2.53173462211613000e+15 -D-D_->_T_fusion_rate_at_point_267________________________________________ fusrat_plasma_dd_triton_profile267_ 2.50927576901904850e+15 -D-D_->_T_fusion_rate_at_point_268________________________________________ fusrat_plasma_dd_triton_profile268_ 2.48687269713403750e+15 -D-D_->_T_fusion_rate_at_point_269________________________________________ fusrat_plasma_dd_triton_profile269_ 2.46452655202733950e+15 -D-D_->_T_fusion_rate_at_point_270________________________________________ fusrat_plasma_dd_triton_profile270_ 2.44223847512881850e+15 -D-D_->_T_fusion_rate_at_point_271________________________________________ fusrat_plasma_dd_triton_profile271_ 2.42000960362512450e+15 -D-D_->_T_fusion_rate_at_point_272________________________________________ fusrat_plasma_dd_triton_profile272_ 2.39784107035218700e+15 -D-D_->_T_fusion_rate_at_point_273________________________________________ fusrat_plasma_dd_triton_profile273_ 2.37573400368706000e+15 -D-D_->_T_fusion_rate_at_point_274________________________________________ fusrat_plasma_dd_triton_profile274_ 2.35368952743905050e+15 -D-D_->_T_fusion_rate_at_point_275________________________________________ fusrat_plasma_dd_triton_profile275_ 2.33170876074021300e+15 -D-D_->_T_fusion_rate_at_point_276________________________________________ fusrat_plasma_dd_triton_profile276_ 2.30979281793513100e+15 -D-D_->_T_fusion_rate_at_point_277________________________________________ fusrat_plasma_dd_triton_profile277_ 2.28794280847003100e+15 -D-D_->_T_fusion_rate_at_point_278________________________________________ fusrat_plasma_dd_triton_profile278_ 2.26615983678122800e+15 -D-D_->_T_fusion_rate_at_point_279________________________________________ fusrat_plasma_dd_triton_profile279_ 2.24444500218285625e+15 -D-D_->_T_fusion_rate_at_point_280________________________________________ fusrat_plasma_dd_triton_profile280_ 2.22279939875392125e+15 -D-D_->_T_fusion_rate_at_point_281________________________________________ fusrat_plasma_dd_triton_profile281_ 2.20122411522468575e+15 -D-D_->_T_fusion_rate_at_point_282________________________________________ fusrat_plasma_dd_triton_profile282_ 2.17972023486234000e+15 -D-D_->_T_fusion_rate_at_point_283________________________________________ fusrat_plasma_dd_triton_profile283_ 2.15828883535598650e+15 -D-D_->_T_fusion_rate_at_point_284________________________________________ fusrat_plasma_dd_triton_profile284_ 2.13693098870092800e+15 -D-D_->_T_fusion_rate_at_point_285________________________________________ fusrat_plasma_dd_triton_profile285_ 2.11564776108228925e+15 -D-D_->_T_fusion_rate_at_point_286________________________________________ fusrat_plasma_dd_triton_profile286_ 2.09444021275790000e+15 -D-D_->_T_fusion_rate_at_point_287________________________________________ fusrat_plasma_dd_triton_profile287_ 2.07330939794052275e+15 -D-D_->_T_fusion_rate_at_point_288________________________________________ fusrat_plasma_dd_triton_profile288_ 2.05225636467936250e+15 -D-D_->_T_fusion_rate_at_point_289________________________________________ fusrat_plasma_dd_triton_profile289_ 2.03128215474088225e+15 -D-D_->_T_fusion_rate_at_point_290________________________________________ fusrat_plasma_dd_triton_profile290_ 2.01038780348894875e+15 -D-D_->_T_fusion_rate_at_point_291________________________________________ fusrat_plasma_dd_triton_profile291_ 1.98957433976423550e+15 -D-D_->_T_fusion_rate_at_point_292________________________________________ fusrat_plasma_dd_triton_profile292_ 1.96884278576297875e+15 -D-D_->_T_fusion_rate_at_point_293________________________________________ fusrat_plasma_dd_triton_profile293_ 1.94819415691502325e+15 -D-D_->_T_fusion_rate_at_point_294________________________________________ fusrat_plasma_dd_triton_profile294_ 1.92762946176115750e+15 -D-D_->_T_fusion_rate_at_point_295________________________________________ fusrat_plasma_dd_triton_profile295_ 1.90714970182978625e+15 -D-D_->_T_fusion_rate_at_point_296________________________________________ fusrat_plasma_dd_triton_profile296_ 1.88675587151290625e+15 -D-D_->_T_fusion_rate_at_point_297________________________________________ fusrat_plasma_dd_triton_profile297_ 1.86644895794138150e+15 -D-D_->_T_fusion_rate_at_point_298________________________________________ fusrat_plasma_dd_triton_profile298_ 1.84622994085954250e+15 -D-D_->_T_fusion_rate_at_point_299________________________________________ fusrat_plasma_dd_triton_profile299_ 1.82609979249912075e+15 -D-D_->_T_fusion_rate_at_point_300________________________________________ fusrat_plasma_dd_triton_profile300_ 1.80605947745247325e+15 -D-D_->_T_fusion_rate_at_point_301________________________________________ fusrat_plasma_dd_triton_profile301_ 1.78610995254516100e+15 -D-D_->_T_fusion_rate_at_point_302________________________________________ fusrat_plasma_dd_triton_profile302_ 1.76625216670783600e+15 -D-D_->_T_fusion_rate_at_point_303________________________________________ fusrat_plasma_dd_triton_profile303_ 1.74648706084747625e+15 -D-D_->_T_fusion_rate_at_point_304________________________________________ fusrat_plasma_dd_triton_profile304_ 1.72681556771795050e+15 -D-D_->_T_fusion_rate_at_point_305________________________________________ fusrat_plasma_dd_triton_profile305_ 1.70723861178992950e+15 -D-D_->_T_fusion_rate_at_point_306________________________________________ fusrat_plasma_dd_triton_profile306_ 1.68775710912014575e+15 -D-D_->_T_fusion_rate_at_point_307________________________________________ fusrat_plasma_dd_triton_profile307_ 1.66837196722002875e+15 -D-D_->_T_fusion_rate_at_point_308________________________________________ fusrat_plasma_dd_triton_profile308_ 1.64908408492364300e+15 -D-D_->_T_fusion_rate_at_point_309________________________________________ fusrat_plasma_dd_triton_profile309_ 1.62989435225509075e+15 -D-D_->_T_fusion_rate_at_point_310________________________________________ fusrat_plasma_dd_triton_profile310_ 1.61080365029519875e+15 -D-D_->_T_fusion_rate_at_point_311________________________________________ fusrat_plasma_dd_triton_profile311_ 1.59181285104765900e+15 -D-D_->_T_fusion_rate_at_point_312________________________________________ fusrat_plasma_dd_triton_profile312_ 1.57292281730451975e+15 -D-D_->_T_fusion_rate_at_point_313________________________________________ fusrat_plasma_dd_triton_profile313_ 1.55413440251112625e+15 -D-D_->_T_fusion_rate_at_point_314________________________________________ fusrat_plasma_dd_triton_profile314_ 1.53544845063042300e+15 -D-D_->_T_fusion_rate_at_point_315________________________________________ fusrat_plasma_dd_triton_profile315_ 1.51686579600675500e+15 -D-D_->_T_fusion_rate_at_point_316________________________________________ fusrat_plasma_dd_triton_profile316_ 1.49838726322902800e+15 -D-D_->_T_fusion_rate_at_point_317________________________________________ fusrat_plasma_dd_triton_profile317_ 1.48001366699338725e+15 -D-D_->_T_fusion_rate_at_point_318________________________________________ fusrat_plasma_dd_triton_profile318_ 1.46174581196532900e+15 -D-D_->_T_fusion_rate_at_point_319________________________________________ fusrat_plasma_dd_triton_profile319_ 1.44358449264130100e+15 -D-D_->_T_fusion_rate_at_point_320________________________________________ fusrat_plasma_dd_triton_profile320_ 1.42553049320978950e+15 -D-D_->_T_fusion_rate_at_point_321________________________________________ fusrat_plasma_dd_triton_profile321_ 1.40758458741194075e+15 -D-D_->_T_fusion_rate_at_point_322________________________________________ fusrat_plasma_dd_triton_profile322_ 1.38974753840168400e+15 -D-D_->_T_fusion_rate_at_point_323________________________________________ fusrat_plasma_dd_triton_profile323_ 1.37202009860541725e+15 -D-D_->_T_fusion_rate_at_point_324________________________________________ fusrat_plasma_dd_triton_profile324_ 1.35440300958125925e+15 -D-D_->_T_fusion_rate_at_point_325________________________________________ fusrat_plasma_dd_triton_profile325_ 1.33689700187787600e+15 -D-D_->_T_fusion_rate_at_point_326________________________________________ fusrat_plasma_dd_triton_profile326_ 1.31950279489292825e+15 -D-D_->_T_fusion_rate_at_point_327________________________________________ fusrat_plasma_dd_triton_profile327_ 1.30222109673114375e+15 -D-D_->_T_fusion_rate_at_point_328________________________________________ fusrat_plasma_dd_triton_profile328_ 1.28505260406203150e+15 -D-D_->_T_fusion_rate_at_point_329________________________________________ fusrat_plasma_dd_triton_profile329_ 1.26799800197730100e+15 -D-D_->_T_fusion_rate_at_point_330________________________________________ fusrat_plasma_dd_triton_profile330_ 1.25105796384794675e+15 -D-D_->_T_fusion_rate_at_point_331________________________________________ fusrat_plasma_dd_triton_profile331_ 1.23423315118110125e+15 -D-D_->_T_fusion_rate_at_point_332________________________________________ fusrat_plasma_dd_triton_profile332_ 1.21752421347662225e+15 -D-D_->_T_fusion_rate_at_point_333________________________________________ fusrat_plasma_dd_triton_profile333_ 1.20093178808348500e+15 -D-D_->_T_fusion_rate_at_point_334________________________________________ fusrat_plasma_dd_triton_profile334_ 1.18445650005598800e+15 -D-D_->_T_fusion_rate_at_point_335________________________________________ fusrat_plasma_dd_triton_profile335_ 1.16809896200981650e+15 -D-D_->_T_fusion_rate_at_point_336________________________________________ fusrat_plasma_dd_triton_profile336_ 1.15185977397798625e+15 -D-D_->_T_fusion_rate_at_point_337________________________________________ fusrat_plasma_dd_triton_profile337_ 1.13573952326673425e+15 -D-D_->_T_fusion_rate_at_point_338________________________________________ fusrat_plasma_dd_triton_profile338_ 1.11973878431134812e+15 -D-D_->_T_fusion_rate_at_point_339________________________________________ fusrat_plasma_dd_triton_profile339_ 1.10385811853201700e+15 -D-D_->_T_fusion_rate_at_point_340________________________________________ fusrat_plasma_dd_triton_profile340_ 1.08809807418971212e+15 -D-D_->_T_fusion_rate_at_point_341________________________________________ fusrat_plasma_dd_triton_profile341_ 1.07245918624216888e+15 -D-D_->_T_fusion_rate_at_point_342________________________________________ fusrat_plasma_dd_triton_profile342_ 1.05694197620000012e+15 -D-D_->_T_fusion_rate_at_point_343________________________________________ fusrat_plasma_dd_triton_profile343_ 1.04154695198298075e+15 -D-D_->_T_fusion_rate_at_point_344________________________________________ fusrat_plasma_dd_triton_profile344_ 1.02627460777657162e+15 -D-D_->_T_fusion_rate_at_point_345________________________________________ fusrat_plasma_dd_triton_profile345_ 1.01112542388872462e+15 -D-D_->_T_fusion_rate_at_point_346________________________________________ fusrat_plasma_dd_triton_profile346_ 9.96099866607028875e+14 -D-D_->_T_fusion_rate_at_point_347________________________________________ fusrat_plasma_dd_triton_profile347_ 9.81198388056230500e+14 -D-D_->_T_fusion_rate_at_point_348________________________________________ fusrat_plasma_dd_triton_profile348_ 9.66421426056234375e+14 -D-D_->_T_fusion_rate_at_point_349________________________________________ fusrat_plasma_dd_triton_profile349_ 9.51769403980582375e+14 -D-D_->_T_fusion_rate_at_point_350________________________________________ fusrat_plasma_dd_triton_profile350_ 9.37242730615542000e+14 -D-D_->_T_fusion_rate_at_point_351________________________________________ fusrat_plasma_dd_triton_profile351_ 9.22841800019818250e+14 -D-D_->_T_fusion_rate_at_point_352________________________________________ fusrat_plasma_dd_triton_profile352_ 9.08566991384975125e+14 -D-D_->_T_fusion_rate_at_point_353________________________________________ fusrat_plasma_dd_triton_profile353_ 8.94418668896648000e+14 -D-D_->_T_fusion_rate_at_point_354________________________________________ fusrat_plasma_dd_triton_profile354_ 8.80397181596630250e+14 -D-D_->_T_fusion_rate_at_point_355________________________________________ fusrat_plasma_dd_triton_profile355_ 8.66502863245852625e+14 -D-D_->_T_fusion_rate_at_point_356________________________________________ fusrat_plasma_dd_triton_profile356_ 8.52736032188438125e+14 -D-D_->_T_fusion_rate_at_point_357________________________________________ fusrat_plasma_dd_triton_profile357_ 8.39096991216806500e+14 -D-D_->_T_fusion_rate_at_point_358________________________________________ fusrat_plasma_dd_triton_profile358_ 8.25586027438016125e+14 -D-D_->_T_fusion_rate_at_point_359________________________________________ fusrat_plasma_dd_triton_profile359_ 8.12203412141347125e+14 -D-D_->_T_fusion_rate_at_point_360________________________________________ fusrat_plasma_dd_triton_profile360_ 7.98949400667290500e+14 -D-D_->_T_fusion_rate_at_point_361________________________________________ fusrat_plasma_dd_triton_profile361_ 7.85824232278000875e+14 -D-D_->_T_fusion_rate_at_point_362________________________________________ fusrat_plasma_dd_triton_profile362_ 7.72828130029328625e+14 -D-D_->_T_fusion_rate_at_point_363________________________________________ fusrat_plasma_dd_triton_profile363_ 7.59961300644541000e+14 -D-D_->_T_fusion_rate_at_point_364________________________________________ fusrat_plasma_dd_triton_profile364_ 7.47223934389841000e+14 -D-D_->_T_fusion_rate_at_point_365________________________________________ fusrat_plasma_dd_triton_profile365_ 7.34616204951784750e+14 -D-D_->_T_fusion_rate_at_point_366________________________________________ fusrat_plasma_dd_triton_profile366_ 7.22138269316748875e+14 -D-D_->_T_fusion_rate_at_point_367________________________________________ fusrat_plasma_dd_triton_profile367_ 7.09790267652536375e+14 -D-D_->_T_fusion_rate_at_point_368________________________________________ fusrat_plasma_dd_triton_profile368_ 6.97572323192281625e+14 -D-D_->_T_fusion_rate_at_point_369________________________________________ fusrat_plasma_dd_triton_profile369_ 6.85484542120754250e+14 -D-D_->_T_fusion_rate_at_point_370________________________________________ fusrat_plasma_dd_triton_profile370_ 6.73527013463240500e+14 -D-D_->_T_fusion_rate_at_point_371________________________________________ fusrat_plasma_dd_triton_profile371_ 6.61699808977111375e+14 -D-D_->_T_fusion_rate_at_point_372________________________________________ fusrat_plasma_dd_triton_profile372_ 6.50002983046246625e+14 -D-D_->_T_fusion_rate_at_point_373________________________________________ fusrat_plasma_dd_triton_profile373_ 6.38436572578464250e+14 -D-D_->_T_fusion_rate_at_point_374________________________________________ fusrat_plasma_dd_triton_profile374_ 6.27000596906120500e+14 -D-D_->_T_fusion_rate_at_point_375________________________________________ fusrat_plasma_dd_triton_profile375_ 6.15695057690032750e+14 -D-D_->_T_fusion_rate_at_point_376________________________________________ fusrat_plasma_dd_triton_profile376_ 6.04519938826932875e+14 -D-D_->_T_fusion_rate_at_point_377________________________________________ fusrat_plasma_dd_triton_profile377_ 5.93475206360580875e+14 -D-D_->_T_fusion_rate_at_point_378________________________________________ fusrat_plasma_dd_triton_profile378_ 5.82560808396777750e+14 -D-D_->_T_fusion_rate_at_point_379________________________________________ fusrat_plasma_dd_triton_profile379_ 5.71776675022437500e+14 -D-D_->_T_fusion_rate_at_point_380________________________________________ fusrat_plasma_dd_triton_profile380_ 5.61122718228928125e+14 -D-D_->_T_fusion_rate_at_point_381________________________________________ fusrat_plasma_dd_triton_profile381_ 5.50598831839898812e+14 -D-D_->_T_fusion_rate_at_point_382________________________________________ fusrat_plasma_dd_triton_profile382_ 5.40204891443800375e+14 -D-D_->_T_fusion_rate_at_point_383________________________________________ fusrat_plasma_dd_triton_profile383_ 5.29940754331326938e+14 -D-D_->_T_fusion_rate_at_point_384________________________________________ fusrat_plasma_dd_triton_profile384_ 5.19806259438016812e+14 -D-D_->_T_fusion_rate_at_point_385________________________________________ fusrat_plasma_dd_triton_profile385_ 5.09801227292255750e+14 -D-D_->_T_fusion_rate_at_point_386________________________________________ fusrat_plasma_dd_triton_profile386_ 4.99925459968922125e+14 -D-D_->_T_fusion_rate_at_point_387________________________________________ fusrat_plasma_dd_triton_profile387_ 4.90178741048957875e+14 -D-D_->_T_fusion_rate_at_point_388________________________________________ fusrat_plasma_dd_triton_profile388_ 4.80560835585120375e+14 -D-D_->_T_fusion_rate_at_point_389________________________________________ fusrat_plasma_dd_triton_profile389_ 4.71071490074206875e+14 -D-D_->_T_fusion_rate_at_point_390________________________________________ fusrat_plasma_dd_triton_profile390_ 4.61710432436042875e+14 -D-D_->_T_fusion_rate_at_point_391________________________________________ fusrat_plasma_dd_triton_profile391_ 4.52477371999552375e+14 -D-D_->_T_fusion_rate_at_point_392________________________________________ fusrat_plasma_dd_triton_profile392_ 4.43371999496208875e+14 -D-D_->_T_fusion_rate_at_point_393________________________________________ fusrat_plasma_dd_triton_profile393_ 4.34393987061226000e+14 -D-D_->_T_fusion_rate_at_point_394________________________________________ fusrat_plasma_dd_triton_profile394_ 4.25542988242813125e+14 -D-D_->_T_fusion_rate_at_point_395________________________________________ fusrat_plasma_dd_triton_profile395_ 4.16818638019870500e+14 -D-D_->_T_fusion_rate_at_point_396________________________________________ fusrat_plasma_dd_triton_profile396_ 4.08220552828506812e+14 -D-D_->_T_fusion_rate_at_point_397________________________________________ fusrat_plasma_dd_triton_profile397_ 3.99748330597761312e+14 -D-D_->_T_fusion_rate_at_point_398________________________________________ fusrat_plasma_dd_triton_profile398_ 3.91401550794952812e+14 -D-D_->_T_fusion_rate_at_point_399________________________________________ fusrat_plasma_dd_triton_profile399_ 3.83179774481094500e+14 -D-D_->_T_fusion_rate_at_point_400________________________________________ fusrat_plasma_dd_triton_profile400_ 3.75082544376814500e+14 -D-D_->_T_fusion_rate_at_point_401________________________________________ fusrat_plasma_dd_triton_profile401_ 3.67109384939273625e+14 -D-D_->_T_fusion_rate_at_point_402________________________________________ fusrat_plasma_dd_triton_profile402_ 3.59259802450573562e+14 -D-D_->_T_fusion_rate_at_point_403________________________________________ fusrat_plasma_dd_triton_profile403_ 3.51533285118184562e+14 -D-D_->_T_fusion_rate_at_point_404________________________________________ fusrat_plasma_dd_triton_profile404_ 3.43929303187950312e+14 -D-D_->_T_fusion_rate_at_point_405________________________________________ fusrat_plasma_dd_triton_profile405_ 3.36447309070253000e+14 -D-D_->_T_fusion_rate_at_point_406________________________________________ fusrat_plasma_dd_triton_profile406_ 3.29086737479964062e+14 -D-D_->_T_fusion_rate_at_point_407________________________________________ fusrat_plasma_dd_triton_profile407_ 3.21847005590831500e+14 -D-D_->_T_fusion_rate_at_point_408________________________________________ fusrat_plasma_dd_triton_profile408_ 3.14727513205002250e+14 -D-D_->_T_fusion_rate_at_point_409________________________________________ fusrat_plasma_dd_triton_profile409_ 3.07727642938432688e+14 -D-D_->_T_fusion_rate_at_point_410________________________________________ fusrat_plasma_dd_triton_profile410_ 3.00846760422949750e+14 -D-D_->_T_fusion_rate_at_point_411________________________________________ fusrat_plasma_dd_triton_profile411_ 2.94084214525841375e+14 -D-D_->_T_fusion_rate_at_point_412________________________________________ fusrat_plasma_dd_triton_profile412_ 2.87439337587842562e+14 -D-D_->_T_fusion_rate_at_point_413________________________________________ fusrat_plasma_dd_triton_profile413_ 2.80911445680523406e+14 -D-D_->_T_fusion_rate_at_point_414________________________________________ fusrat_plasma_dd_triton_profile414_ 2.74499838884081750e+14 -D-D_->_T_fusion_rate_at_point_415________________________________________ fusrat_plasma_dd_triton_profile415_ 2.68203801586701062e+14 -D-D_->_T_fusion_rate_at_point_416________________________________________ fusrat_plasma_dd_triton_profile416_ 2.62022602806666312e+14 -D-D_->_T_fusion_rate_at_point_417________________________________________ fusrat_plasma_dd_triton_profile417_ 2.55955496538561000e+14 -D-D_->_T_fusion_rate_at_point_418________________________________________ fusrat_plasma_dd_triton_profile418_ 2.50001722124988781e+14 -D-D_->_T_fusion_rate_at_point_419________________________________________ fusrat_plasma_dd_triton_profile419_ 2.44160504655380250e+14 -D-D_->_T_fusion_rate_at_point_420________________________________________ fusrat_plasma_dd_triton_profile420_ 2.38431055393587469e+14 -D-D_->_T_fusion_rate_at_point_421________________________________________ fusrat_plasma_dd_triton_profile421_ 2.32812572236177219e+14 -D-D_->_T_fusion_rate_at_point_422________________________________________ fusrat_plasma_dd_triton_profile422_ 2.27304240203458750e+14 -D-D_->_T_fusion_rate_at_point_423________________________________________ fusrat_plasma_dd_triton_profile423_ 2.21905231965573188e+14 -D-D_->_T_fusion_rate_at_point_424________________________________________ fusrat_plasma_dd_triton_profile424_ 2.16614708406156688e+14 -D-D_->_T_fusion_rate_at_point_425________________________________________ fusrat_plasma_dd_triton_profile425_ 2.11431819226427875e+14 -D-D_->_T_fusion_rate_at_point_426________________________________________ fusrat_plasma_dd_triton_profile426_ 2.06355703592841219e+14 -D-D_->_T_fusion_rate_at_point_427________________________________________ fusrat_plasma_dd_triton_profile427_ 2.01385490831848719e+14 -D-D_->_T_fusion_rate_at_point_428________________________________________ fusrat_plasma_dd_triton_profile428_ 1.96520301175761750e+14 -D-D_->_T_fusion_rate_at_point_429________________________________________ fusrat_plasma_dd_triton_profile429_ 1.91759246564176344e+14 -D-D_->_T_fusion_rate_at_point_430________________________________________ fusrat_plasma_dd_triton_profile430_ 1.87101431506085531e+14 -D-D_->_T_fusion_rate_at_point_431________________________________________ fusrat_plasma_dd_triton_profile431_ 1.82545954008430375e+14 -D-D_->_T_fusion_rate_at_point_432________________________________________ fusrat_plasma_dd_triton_profile432_ 1.78091906577720719e+14 -D-D_->_T_fusion_rate_at_point_433________________________________________ fusrat_plasma_dd_triton_profile433_ 1.73738377302277875e+14 -D-D_->_T_fusion_rate_at_point_434________________________________________ fusrat_plasma_dd_triton_profile434_ 1.69484451023818594e+14 -D-D_->_T_fusion_rate_at_point_435________________________________________ fusrat_plasma_dd_triton_profile435_ 1.65329210608436719e+14 -D-D_->_T_fusion_rate_at_point_436________________________________________ fusrat_plasma_dd_triton_profile436_ 1.61271738328662031e+14 -D-D_->_T_fusion_rate_at_point_437________________________________________ fusrat_plasma_dd_triton_profile437_ 1.57311117370201375e+14 -D-D_->_T_fusion_rate_at_point_438________________________________________ fusrat_plasma_dd_triton_profile438_ 1.53446433479298844e+14 -D-D_->_T_fusion_rate_at_point_439________________________________________ fusrat_plasma_dd_triton_profile439_ 1.49676776769447094e+14 -D-D_->_T_fusion_rate_at_point_440________________________________________ fusrat_plasma_dd_triton_profile440_ 1.46001243709614875e+14 -D-D_->_T_fusion_rate_at_point_441________________________________________ fusrat_plasma_dd_triton_profile441_ 1.42418939320312500e+14 -D-D_->_T_fusion_rate_at_point_442________________________________________ fusrat_plasma_dd_triton_profile442_ 1.38928979608961609e+14 -D-D_->_T_fusion_rate_at_point_443________________________________________ fusrat_plasma_dd_triton_profile443_ 1.35530494282368281e+14 -D-D_->_T_fusion_rate_at_point_444________________________________________ fusrat_plasma_dd_triton_profile444_ 1.32222629782025812e+14 -D-D_->_T_fusion_rate_at_point_445________________________________________ fusrat_plasma_dd_triton_profile445_ 1.29004552697878562e+14 -D-D_->_T_fusion_rate_at_point_446________________________________________ fusrat_plasma_dd_triton_profile446_ 1.25875453628746312e+14 -D-D_->_T_fusion_rate_at_point_447________________________________________ fusrat_plasma_dd_triton_profile447_ 1.22834551573595875e+14 -D-D_->_T_fusion_rate_at_point_448________________________________________ fusrat_plasma_dd_triton_profile448_ 1.19881098958466625e+14 -D-D_->_T_fusion_rate_at_point_449________________________________________ fusrat_plasma_dd_triton_profile449_ 1.17014387430610297e+14 -D-D_->_T_fusion_rate_at_point_450________________________________________ fusrat_plasma_dd_triton_profile450_ 1.14233754586589500e+14 -D-D_->_T_fusion_rate_at_point_451________________________________________ fusrat_plasma_dd_triton_profile451_ 1.11538591847805203e+14 -D-D_->_T_fusion_rate_at_point_452________________________________________ fusrat_plasma_dd_triton_profile452_ 1.08928353759840859e+14 -D-D_->_T_fusion_rate_at_point_453________________________________________ fusrat_plasma_dd_triton_profile453_ 1.06402569077844344e+14 -D-D_->_T_fusion_rate_at_point_454________________________________________ fusrat_plasma_dd_triton_profile454_ 1.03960854119168266e+14 -D-D_->_T_fusion_rate_at_point_455________________________________________ fusrat_plasma_dd_triton_profile455_ 1.01602929032184641e+14 -D-D_->_T_fusion_rate_at_point_456________________________________________ fusrat_plasma_dd_triton_profile456_ 9.93286378711376562e+13 -D-D_->_T_fusion_rate_at_point_457________________________________________ fusrat_plasma_dd_triton_profile457_ 9.71379737204151875e+13 -D-D_->_T_fusion_rate_at_point_458________________________________________ fusrat_plasma_dd_triton_profile458_ 9.50311106429303125e+13 -D-D_->_T_fusion_rate_at_point_459________________________________________ fusrat_plasma_dd_triton_profile459_ 9.30084450478288750e+13 -D-D_->_T_fusion_rate_at_point_460________________________________________ fusrat_plasma_dd_triton_profile460_ 9.10706503801489531e+13 -D-D_->_T_fusion_rate_at_point_461________________________________________ fusrat_plasma_dd_triton_profile461_ 8.92187511953232969e+13 -D-D_->_T_fusion_rate_at_point_462________________________________________ fusrat_plasma_dd_triton_profile462_ 8.74542264065638906e+13 -D-D_->_T_fusion_rate_at_point_463________________________________________ fusrat_plasma_dd_triton_profile463_ 8.57791582533281406e+13 -D-D_->_T_fusion_rate_at_point_464________________________________________ fusrat_plasma_dd_triton_profile464_ 8.41964565945849375e+13 -D-D_->_T_fusion_rate_at_point_465________________________________________ fusrat_plasma_dd_triton_profile465_ 8.27102153838392969e+13 -D-D_->_T_fusion_rate_at_point_466________________________________________ fusrat_plasma_dd_triton_profile466_ 8.13263210928382812e+13 -D-D_->_T_fusion_rate_at_point_467________________________________________ fusrat_plasma_dd_triton_profile467_ 8.00535992869872656e+13 -D-D_->_T_fusion_rate_at_point_468________________________________________ fusrat_plasma_dd_triton_profile468_ 7.89063229924358750e+13 -D-D_->_T_fusion_rate_at_point_469________________________________________ fusrat_plasma_dd_triton_profile469_ 7.79113337176607188e+13 -D-D_->_T_fusion_rate_at_point_470________________________________________ fusrat_plasma_dd_triton_profile470_ 7.71521789962937969e+13 -D-D_->_T_fusion_rate_at_point_471________________________________________ fusrat_plasma_dd_triton_profile471_ 6.80010954467127422e+13 -D-D_->_T_fusion_rate_at_point_472________________________________________ fusrat_plasma_dd_triton_profile472_ 5.96289373708006797e+13 -D-D_->_T_fusion_rate_at_point_473________________________________________ fusrat_plasma_dd_triton_profile473_ 5.19985013425781406e+13 -D-D_->_T_fusion_rate_at_point_474________________________________________ fusrat_plasma_dd_triton_profile474_ 4.50727431854289609e+13 -D-D_->_T_fusion_rate_at_point_475________________________________________ fusrat_plasma_dd_triton_profile475_ 3.88147936979885859e+13 -D-D_->_T_fusion_rate_at_point_476________________________________________ fusrat_plasma_dd_triton_profile476_ 3.31879763513780469e+13 -D-D_->_T_fusion_rate_at_point_477________________________________________ fusrat_plasma_dd_triton_profile477_ 2.81558273249270000e+13 -D-D_->_T_fusion_rate_at_point_478________________________________________ fusrat_plasma_dd_triton_profile478_ 2.36821183328086953e+13 -D-D_->_T_fusion_rate_at_point_479________________________________________ fusrat_plasma_dd_triton_profile479_ 1.97308828015867148e+13 -D-D_->_T_fusion_rate_at_point_480________________________________________ fusrat_plasma_dd_triton_profile480_ 1.62664460947961504e+13 -D-D_->_T_fusion_rate_at_point_481________________________________________ fusrat_plasma_dd_triton_profile481_ 1.32534606533807383e+13 -D-D_->_T_fusion_rate_at_point_482________________________________________ fusrat_plasma_dd_triton_profile482_ 1.06569471403519551e+13 -D-D_->_T_fusion_rate_at_point_483________________________________________ fusrat_plasma_dd_triton_profile483_ 8.44234295744761719e+12 -D-D_->_T_fusion_rate_at_point_484________________________________________ fusrat_plasma_dd_triton_profile484_ 6.57555985711841309e+12 -D-D_->_T_fusion_rate_at_point_485________________________________________ fusrat_plasma_dd_triton_profile485_ 5.02305282467305078e+12 -D-D_->_T_fusion_rate_at_point_486________________________________________ fusrat_plasma_dd_triton_profile486_ 3.75190297590971729e+12 -D-D_->_T_fusion_rate_at_point_487________________________________________ fusrat_plasma_dd_triton_profile487_ 2.72991792956709521e+12 -D-D_->_T_fusion_rate_at_point_488________________________________________ fusrat_plasma_dd_triton_profile488_ 1.92575399236826611e+12 -D-D_->_T_fusion_rate_at_point_489________________________________________ fusrat_plasma_dd_triton_profile489_ 1.30906554267507593e+12 -D-D_->_T_fusion_rate_at_point_490________________________________________ fusrat_plasma_dd_triton_profile490_ 8.50688180143951660e+11 -D-D_->_T_fusion_rate_at_point_491________________________________________ fusrat_plasma_dd_triton_profile491_ 5.22863388369196411e+11 -D-D_->_T_fusion_rate_at_point_492________________________________________ fusrat_plasma_dd_triton_profile492_ 2.99513285535970642e+11 -D-D_->_T_fusion_rate_at_point_493________________________________________ fusrat_plasma_dd_triton_profile493_ 1.56573712051348724e+11 -D-D_->_T_fusion_rate_at_point_494________________________________________ fusrat_plasma_dd_triton_profile494_ 7.23906938693896637e+10 -D-D_->_T_fusion_rate_at_point_495________________________________________ fusrat_plasma_dd_triton_profile495_ 2.81756584013148956e+10 -D-D_->_T_fusion_rate_at_point_496________________________________________ fusrat_plasma_dd_triton_profile496_ 8.49168548726934147e+09 -D-D_->_T_fusion_rate_at_point_497________________________________________ fusrat_plasma_dd_triton_profile497_ 1.69420389757438159e+09 -D-D_->_T_fusion_rate_at_point_498________________________________________ fusrat_plasma_dd_triton_profile498_ 1.58789681134147495e+08 -D-D_->_T_fusion_rate_at_point_499________________________________________ fusrat_plasma_dd_triton_profile499_ 2.62370949309833953e+06 -D-D_->_T_fusion_rate_at_point_500________________________________________ fusrat_plasma_dd_triton_profile500_ 3.82169753385829054e+01 -D-D_->_3He_fusion_rate_at_point_0________________________________________ fusrat_plasma_dd_helion_profile0_ 7.63693519305538400e+15 -D-D_->_3He_fusion_rate_at_point_1________________________________________ fusrat_plasma_dd_helion_profile1_ 7.63683998666246200e+15 -D-D_->_3He_fusion_rate_at_point_2________________________________________ fusrat_plasma_dd_helion_profile2_ 7.63655437232537800e+15 -D-D_->_3He_fusion_rate_at_point_3________________________________________ fusrat_plasma_dd_helion_profile3_ 7.63607836456912100e+15 -D-D_->_3He_fusion_rate_at_point_4________________________________________ fusrat_plasma_dd_helion_profile4_ 7.63541198760127900e+15 -D-D_->_3He_fusion_rate_at_point_5________________________________________ fusrat_plasma_dd_helion_profile5_ 7.63455527531112000e+15 -D-D_->_3He_fusion_rate_at_point_6________________________________________ fusrat_plasma_dd_helion_profile6_ 7.63350827126814500e+15 -D-D_->_3He_fusion_rate_at_point_7________________________________________ fusrat_plasma_dd_helion_profile7_ 7.63227102872038500e+15 -D-D_->_3He_fusion_rate_at_point_8________________________________________ fusrat_plasma_dd_helion_profile8_ 7.63084361059212200e+15 -D-D_->_3He_fusion_rate_at_point_9________________________________________ fusrat_plasma_dd_helion_profile9_ 7.62922608948136200e+15 -D-D_->_3He_fusion_rate_at_point_10_______________________________________ fusrat_plasma_dd_helion_profile10_ 7.62741854765689100e+15 -D-D_->_3He_fusion_rate_at_point_11_______________________________________ fusrat_plasma_dd_helion_profile11_ 7.62542107705483100e+15 -D-D_->_3He_fusion_rate_at_point_12_______________________________________ fusrat_plasma_dd_helion_profile12_ 7.62323377927491900e+15 -D-D_->_3He_fusion_rate_at_point_13_______________________________________ fusrat_plasma_dd_helion_profile13_ 7.62085676557632100e+15 -D-D_->_3He_fusion_rate_at_point_14_______________________________________ fusrat_plasma_dd_helion_profile14_ 7.61829015687307500e+15 -D-D_->_3He_fusion_rate_at_point_15_______________________________________ fusrat_plasma_dd_helion_profile15_ 7.61553408372913800e+15 -D-D_->_3He_fusion_rate_at_point_16_______________________________________ fusrat_plasma_dd_helion_profile16_ 7.61258868635302300e+15 -D-D_->_3He_fusion_rate_at_point_17_______________________________________ fusrat_plasma_dd_helion_profile17_ 7.60945411459203900e+15 -D-D_->_3He_fusion_rate_at_point_18_______________________________________ fusrat_plasma_dd_helion_profile18_ 7.60613052792613900e+15 -D-D_->_3He_fusion_rate_at_point_19_______________________________________ fusrat_plasma_dd_helion_profile19_ 7.60261809546137500e+15 -D-D_->_3He_fusion_rate_at_point_20_______________________________________ fusrat_plasma_dd_helion_profile20_ 7.59891699592294700e+15 -D-D_->_3He_fusion_rate_at_point_21_______________________________________ fusrat_plasma_dd_helion_profile21_ 7.59502741764789400e+15 -D-D_->_3He_fusion_rate_at_point_22_______________________________________ fusrat_plasma_dd_helion_profile22_ 7.59094955857728100e+15 -D-D_->_3He_fusion_rate_at_point_23_______________________________________ fusrat_plasma_dd_helion_profile23_ 7.58668362624812100e+15 -D-D_->_3He_fusion_rate_at_point_24_______________________________________ fusrat_plasma_dd_helion_profile24_ 7.58222983778479800e+15 -D-D_->_3He_fusion_rate_at_point_25_______________________________________ fusrat_plasma_dd_helion_profile25_ 7.57758841989019100e+15 -D-D_->_3He_fusion_rate_at_point_26_______________________________________ fusrat_plasma_dd_helion_profile26_ 7.57275960883624000e+15 -D-D_->_3He_fusion_rate_at_point_27_______________________________________ fusrat_plasma_dd_helion_profile27_ 7.56774365045433300e+15 -D-D_->_3He_fusion_rate_at_point_28_______________________________________ fusrat_plasma_dd_helion_profile28_ 7.56254080012507200e+15 -D-D_->_3He_fusion_rate_at_point_29_______________________________________ fusrat_plasma_dd_helion_profile29_ 7.55715132276782000e+15 -D-D_->_3He_fusion_rate_at_point_30_______________________________________ fusrat_plasma_dd_helion_profile30_ 7.55157549282973100e+15 -D-D_->_3He_fusion_rate_at_point_31_______________________________________ fusrat_plasma_dd_helion_profile31_ 7.54581359427443500e+15 -D-D_->_3He_fusion_rate_at_point_32_______________________________________ fusrat_plasma_dd_helion_profile32_ 7.53986592057033500e+15 -D-D_->_3He_fusion_rate_at_point_33_______________________________________ fusrat_plasma_dd_helion_profile33_ 7.53373277467842800e+15 -D-D_->_3He_fusion_rate_at_point_34_______________________________________ fusrat_plasma_dd_helion_profile34_ 7.52741446903984400e+15 -D-D_->_3He_fusion_rate_at_point_35_______________________________________ fusrat_plasma_dd_helion_profile35_ 7.52091132556292000e+15 -D-D_->_3He_fusion_rate_at_point_36_______________________________________ fusrat_plasma_dd_helion_profile36_ 7.51422367560982700e+15 -D-D_->_3He_fusion_rate_at_point_37_______________________________________ fusrat_plasma_dd_helion_profile37_ 7.50735185998288000e+15 -D-D_->_3He_fusion_rate_at_point_38_______________________________________ fusrat_plasma_dd_helion_profile38_ 7.50029622891042300e+15 -D-D_->_3He_fusion_rate_at_point_39_______________________________________ fusrat_plasma_dd_helion_profile39_ 7.49305714203231500e+15 -D-D_->_3He_fusion_rate_at_point_40_______________________________________ fusrat_plasma_dd_helion_profile40_ 7.48563496838499100e+15 -D-D_->_3He_fusion_rate_at_point_41_______________________________________ fusrat_plasma_dd_helion_profile41_ 7.47803008638611800e+15 -D-D_->_3He_fusion_rate_at_point_42_______________________________________ fusrat_plasma_dd_helion_profile42_ 7.47024288381895000e+15 -D-D_->_3He_fusion_rate_at_point_43_______________________________________ fusrat_plasma_dd_helion_profile43_ 7.46227375781610000e+15 -D-D_->_3He_fusion_rate_at_point_44_______________________________________ fusrat_plasma_dd_helion_profile44_ 7.45412311484311200e+15 -D-D_->_3He_fusion_rate_at_point_45_______________________________________ fusrat_plasma_dd_helion_profile45_ 7.44579137068146500e+15 -D-D_->_3He_fusion_rate_at_point_46_______________________________________ fusrat_plasma_dd_helion_profile46_ 7.43727895041131300e+15 -D-D_->_3He_fusion_rate_at_point_47_______________________________________ fusrat_plasma_dd_helion_profile47_ 7.42858628839367200e+15 -D-D_->_3He_fusion_rate_at_point_48_______________________________________ fusrat_plasma_dd_helion_profile48_ 7.41971382825237700e+15 -D-D_->_3He_fusion_rate_at_point_49_______________________________________ fusrat_plasma_dd_helion_profile49_ 7.41066202285546900e+15 -D-D_->_3He_fusion_rate_at_point_50_______________________________________ fusrat_plasma_dd_helion_profile50_ 7.40143133429634400e+15 -D-D_->_3He_fusion_rate_at_point_51_______________________________________ fusrat_plasma_dd_helion_profile51_ 7.39202223387434300e+15 -D-D_->_3He_fusion_rate_at_point_52_______________________________________ fusrat_plasma_dd_helion_profile52_ 7.38243520207503700e+15 -D-D_->_3He_fusion_rate_at_point_53_______________________________________ fusrat_plasma_dd_helion_profile53_ 7.37267072855009000e+15 -D-D_->_3He_fusion_rate_at_point_54_______________________________________ fusrat_plasma_dd_helion_profile54_ 7.36272931209672200e+15 -D-D_->_3He_fusion_rate_at_point_55_______________________________________ fusrat_plasma_dd_helion_profile55_ 7.35261146063671500e+15 -D-D_->_3He_fusion_rate_at_point_56_______________________________________ fusrat_plasma_dd_helion_profile56_ 7.34231769119511100e+15 -D-D_->_3He_fusion_rate_at_point_57_______________________________________ fusrat_plasma_dd_helion_profile57_ 7.33184852987841000e+15 -D-D_->_3He_fusion_rate_at_point_58_______________________________________ fusrat_plasma_dd_helion_profile58_ 7.32120451185243100e+15 -D-D_->_3He_fusion_rate_at_point_59_______________________________________ fusrat_plasma_dd_helion_profile59_ 7.31038618131973900e+15 -D-D_->_3He_fusion_rate_at_point_60_______________________________________ fusrat_plasma_dd_helion_profile60_ 7.29939409149664600e+15 -D-D_->_3He_fusion_rate_at_point_61_______________________________________ fusrat_plasma_dd_helion_profile61_ 7.28822880458988900e+15 -D-D_->_3He_fusion_rate_at_point_62_______________________________________ fusrat_plasma_dd_helion_profile62_ 7.27689089177276700e+15 -D-D_->_3He_fusion_rate_at_point_63_______________________________________ fusrat_plasma_dd_helion_profile63_ 7.26538093316102900e+15 -D-D_->_3He_fusion_rate_at_point_64_______________________________________ fusrat_plasma_dd_helion_profile64_ 7.25369951778822000e+15 -D-D_->_3He_fusion_rate_at_point_65_______________________________________ fusrat_plasma_dd_helion_profile65_ 7.24184724358070700e+15 -D-D_->_3He_fusion_rate_at_point_66_______________________________________ fusrat_plasma_dd_helion_profile66_ 7.22982471733224100e+15 -D-D_->_3He_fusion_rate_at_point_67_______________________________________ fusrat_plasma_dd_helion_profile67_ 7.21763255467816400e+15 -D-D_->_3He_fusion_rate_at_point_68_______________________________________ fusrat_plasma_dd_helion_profile68_ 7.20527138006917700e+15 -D-D_->_3He_fusion_rate_at_point_69_______________________________________ fusrat_plasma_dd_helion_profile69_ 7.19274182674466800e+15 -D-D_->_3He_fusion_rate_at_point_70_______________________________________ fusrat_plasma_dd_helion_profile70_ 7.18004453670576200e+15 -D-D_->_3He_fusion_rate_at_point_71_______________________________________ fusrat_plasma_dd_helion_profile71_ 7.16718016068773000e+15 -D-D_->_3He_fusion_rate_at_point_72_______________________________________ fusrat_plasma_dd_helion_profile72_ 7.15414935813228900e+15 -D-D_->_3He_fusion_rate_at_point_73_______________________________________ fusrat_plasma_dd_helion_profile73_ 7.14095279715918800e+15 -D-D_->_3He_fusion_rate_at_point_74_______________________________________ fusrat_plasma_dd_helion_profile74_ 7.12759115453760800e+15 -D-D_->_3He_fusion_rate_at_point_75_______________________________________ fusrat_plasma_dd_helion_profile75_ 7.11406511565703500e+15 -D-D_->_3He_fusion_rate_at_point_76_______________________________________ fusrat_plasma_dd_helion_profile76_ 7.10037537449782800e+15 -D-D_->_3He_fusion_rate_at_point_77_______________________________________ fusrat_plasma_dd_helion_profile77_ 7.08652263360118500e+15 -D-D_->_3He_fusion_rate_at_point_78_______________________________________ fusrat_plasma_dd_helion_profile78_ 7.07250760403893600e+15 -D-D_->_3He_fusion_rate_at_point_79_______________________________________ fusrat_plasma_dd_helion_profile79_ 7.05833100538271700e+15 -D-D_->_3He_fusion_rate_at_point_80_______________________________________ fusrat_plasma_dd_helion_profile80_ 7.04399356567289400e+15 -D-D_->_3He_fusion_rate_at_point_81_______________________________________ fusrat_plasma_dd_helion_profile81_ 7.02949602138696700e+15 -D-D_->_3He_fusion_rate_at_point_82_______________________________________ fusrat_plasma_dd_helion_profile82_ 7.01483911740758500e+15 -D-D_->_3He_fusion_rate_at_point_83_______________________________________ fusrat_plasma_dd_helion_profile83_ 7.00002360699017100e+15 -D-D_->_3He_fusion_rate_at_point_84_______________________________________ fusrat_plasma_dd_helion_profile84_ 6.98505025173014800e+15 -D-D_->_3He_fusion_rate_at_point_85_______________________________________ fusrat_plasma_dd_helion_profile85_ 6.96991982152967000e+15 -D-D_->_3He_fusion_rate_at_point_86_______________________________________ fusrat_plasma_dd_helion_profile86_ 6.95463309456402200e+15 -D-D_->_3He_fusion_rate_at_point_87_______________________________________ fusrat_plasma_dd_helion_profile87_ 6.93919085724757300e+15 -D-D_->_3He_fusion_rate_at_point_88_______________________________________ fusrat_plasma_dd_helion_profile88_ 6.92359390419930900e+15 -D-D_->_3He_fusion_rate_at_point_89_______________________________________ fusrat_plasma_dd_helion_profile89_ 6.90784303820794800e+15 -D-D_->_3He_fusion_rate_at_point_90_______________________________________ fusrat_plasma_dd_helion_profile90_ 6.89193907019666000e+15 -D-D_->_3He_fusion_rate_at_point_91_______________________________________ fusrat_plasma_dd_helion_profile91_ 6.87588281918735400e+15 -D-D_->_3He_fusion_rate_at_point_92_______________________________________ fusrat_plasma_dd_helion_profile92_ 6.85967511226449100e+15 -D-D_->_3He_fusion_rate_at_point_93_______________________________________ fusrat_plasma_dd_helion_profile93_ 6.84331678453865500e+15 -D-D_->_3He_fusion_rate_at_point_94_______________________________________ fusrat_plasma_dd_helion_profile94_ 6.82680867910945400e+15 -D-D_->_3He_fusion_rate_at_point_95_______________________________________ fusrat_plasma_dd_helion_profile95_ 6.81015164702822100e+15 -D-D_->_3He_fusion_rate_at_point_96_______________________________________ fusrat_plasma_dd_helion_profile96_ 6.79334654726019500e+15 -D-D_->_3He_fusion_rate_at_point_97_______________________________________ fusrat_plasma_dd_helion_profile97_ 6.77639424664622600e+15 -D-D_->_3He_fusion_rate_at_point_98_______________________________________ fusrat_plasma_dd_helion_profile98_ 6.75929561986424400e+15 -D-D_->_3He_fusion_rate_at_point_99_______________________________________ fusrat_plasma_dd_helion_profile99_ 6.74205154939008000e+15 -D-D_->_3He_fusion_rate_at_point_100______________________________________ fusrat_plasma_dd_helion_profile100_ 6.72466292545803900e+15 -D-D_->_3He_fusion_rate_at_point_101______________________________________ fusrat_plasma_dd_helion_profile101_ 6.70713064602098500e+15 -D-D_->_3He_fusion_rate_at_point_102______________________________________ fusrat_plasma_dd_helion_profile102_ 6.68945561670996900e+15 -D-D_->_3He_fusion_rate_at_point_103______________________________________ fusrat_plasma_dd_helion_profile103_ 6.67163875079351600e+15 -D-D_->_3He_fusion_rate_at_point_104______________________________________ fusrat_plasma_dd_helion_profile104_ 6.65368096913639800e+15 -D-D_->_3He_fusion_rate_at_point_105______________________________________ fusrat_plasma_dd_helion_profile105_ 6.63558320015803300e+15 -D-D_->_3He_fusion_rate_at_point_106______________________________________ fusrat_plasma_dd_helion_profile106_ 6.61734637979051700e+15 -D-D_->_3He_fusion_rate_at_point_107______________________________________ fusrat_plasma_dd_helion_profile107_ 6.59897145143604600e+15 -D-D_->_3He_fusion_rate_at_point_108______________________________________ fusrat_plasma_dd_helion_profile108_ 6.58045936592414700e+15 -D-D_->_3He_fusion_rate_at_point_109______________________________________ fusrat_plasma_dd_helion_profile109_ 6.56181108146831100e+15 -D-D_->_3He_fusion_rate_at_point_110______________________________________ fusrat_plasma_dd_helion_profile110_ 6.54302756362222100e+15 -D-D_->_3He_fusion_rate_at_point_111______________________________________ fusrat_plasma_dd_helion_profile111_ 6.52410978523566800e+15 -D-D_->_3He_fusion_rate_at_point_112______________________________________ fusrat_plasma_dd_helion_profile112_ 6.50505872640987000e+15 -D-D_->_3He_fusion_rate_at_point_113______________________________________ fusrat_plasma_dd_helion_profile113_ 6.48587537445251700e+15 -D-D_->_3He_fusion_rate_at_point_114______________________________________ fusrat_plasma_dd_helion_profile114_ 6.46656072383226100e+15 -D-D_->_3He_fusion_rate_at_point_115______________________________________ fusrat_plasma_dd_helion_profile115_ 6.44711577613283500e+15 -D-D_->_3He_fusion_rate_at_point_116______________________________________ fusrat_plasma_dd_helion_profile116_ 6.42754154000680000e+15 -D-D_->_3He_fusion_rate_at_point_117______________________________________ fusrat_plasma_dd_helion_profile117_ 6.40783903112869500e+15 -D-D_->_3He_fusion_rate_at_point_118______________________________________ fusrat_plasma_dd_helion_profile118_ 6.38800927214793500e+15 -D-D_->_3He_fusion_rate_at_point_119______________________________________ fusrat_plasma_dd_helion_profile119_ 6.36805329264111800e+15 -D-D_->_3He_fusion_rate_at_point_120______________________________________ fusrat_plasma_dd_helion_profile120_ 6.34797212906409300e+15 -D-D_->_3He_fusion_rate_at_point_121______________________________________ fusrat_plasma_dd_helion_profile121_ 6.32776682470333200e+15 -D-D_->_3He_fusion_rate_at_point_122______________________________________ fusrat_plasma_dd_helion_profile122_ 6.30743842962713400e+15 -D-D_->_3He_fusion_rate_at_point_123______________________________________ fusrat_plasma_dd_helion_profile123_ 6.28698800063619900e+15 -D-D_->_3He_fusion_rate_at_point_124______________________________________ fusrat_plasma_dd_helion_profile124_ 6.26641660121383100e+15 -D-D_->_3He_fusion_rate_at_point_125______________________________________ fusrat_plasma_dd_helion_profile125_ 6.24572530147577000e+15 -D-D_->_3He_fusion_rate_at_point_126______________________________________ fusrat_plasma_dd_helion_profile126_ 6.22491517811944000e+15 -D-D_->_3He_fusion_rate_at_point_127______________________________________ fusrat_plasma_dd_helion_profile127_ 6.20398731437293500e+15 -D-D_->_3He_fusion_rate_at_point_128______________________________________ fusrat_plasma_dd_helion_profile128_ 6.18294279994339000e+15 -D-D_->_3He_fusion_rate_at_point_129______________________________________ fusrat_plasma_dd_helion_profile129_ 6.16178273096501700e+15 -D-D_->_3He_fusion_rate_at_point_130______________________________________ fusrat_plasma_dd_helion_profile130_ 6.14050820994674500e+15 -D-D_->_3He_fusion_rate_at_point_131______________________________________ fusrat_plasma_dd_helion_profile131_ 6.11912034571922800e+15 -D-D_->_3He_fusion_rate_at_point_132______________________________________ fusrat_plasma_dd_helion_profile132_ 6.09762025338163100e+15 -D-D_->_3He_fusion_rate_at_point_133______________________________________ fusrat_plasma_dd_helion_profile133_ 6.07600905424784700e+15 -D-D_->_3He_fusion_rate_at_point_134______________________________________ fusrat_plasma_dd_helion_profile134_ 6.05428787579226800e+15 -D-D_->_3He_fusion_rate_at_point_135______________________________________ fusrat_plasma_dd_helion_profile135_ 6.03245785159519900e+15 -D-D_->_3He_fusion_rate_at_point_136______________________________________ fusrat_plasma_dd_helion_profile136_ 6.01052012128770900e+15 -D-D_->_3He_fusion_rate_at_point_137______________________________________ fusrat_plasma_dd_helion_profile137_ 5.98847583049611000e+15 -D-D_->_3He_fusion_rate_at_point_138______________________________________ fusrat_plasma_dd_helion_profile138_ 5.96632613078603000e+15 -D-D_->_3He_fusion_rate_at_point_139______________________________________ fusrat_plasma_dd_helion_profile139_ 5.94407217960587900e+15 -D-D_->_3He_fusion_rate_at_point_140______________________________________ fusrat_plasma_dd_helion_profile140_ 5.92171514023004400e+15 -D-D_->_3He_fusion_rate_at_point_141______________________________________ fusrat_plasma_dd_helion_profile141_ 5.89925618170156200e+15 -D-D_->_3He_fusion_rate_at_point_142______________________________________ fusrat_plasma_dd_helion_profile142_ 5.87669647877428400e+15 -D-D_->_3He_fusion_rate_at_point_143______________________________________ fusrat_plasma_dd_helion_profile143_ 5.85403721185467900e+15 -D-D_->_3He_fusion_rate_at_point_144______________________________________ fusrat_plasma_dd_helion_profile144_ 5.83127956694315100e+15 -D-D_->_3He_fusion_rate_at_point_145______________________________________ fusrat_plasma_dd_helion_profile145_ 5.80842473557490900e+15 -D-D_->_3He_fusion_rate_at_point_146______________________________________ fusrat_plasma_dd_helion_profile146_ 5.78547391476032000e+15 -D-D_->_3He_fusion_rate_at_point_147______________________________________ fusrat_plasma_dd_helion_profile147_ 5.76242830692495500e+15 -D-D_->_3He_fusion_rate_at_point_148______________________________________ fusrat_plasma_dd_helion_profile148_ 5.73928911984899300e+15 -D-D_->_3He_fusion_rate_at_point_149______________________________________ fusrat_plasma_dd_helion_profile149_ 5.71605756660633200e+15 -D-D_->_3He_fusion_rate_at_point_150______________________________________ fusrat_plasma_dd_helion_profile150_ 5.69273486550314500e+15 -D-D_->_3He_fusion_rate_at_point_151______________________________________ fusrat_plasma_dd_helion_profile151_ 5.66932224001599600e+15 -D-D_->_3He_fusion_rate_at_point_152______________________________________ fusrat_plasma_dd_helion_profile152_ 5.64582091872952100e+15 -D-D_->_3He_fusion_rate_at_point_153______________________________________ fusrat_plasma_dd_helion_profile153_ 5.62223213527365200e+15 -D-D_->_3He_fusion_rate_at_point_154______________________________________ fusrat_plasma_dd_helion_profile154_ 5.59855712826029900e+15 -D-D_->_3He_fusion_rate_at_point_155______________________________________ fusrat_plasma_dd_helion_profile155_ 5.57479714121971300e+15 -D-D_->_3He_fusion_rate_at_point_156______________________________________ fusrat_plasma_dd_helion_profile156_ 5.55095342253624500e+15 -D-D_->_3He_fusion_rate_at_point_157______________________________________ fusrat_plasma_dd_helion_profile157_ 5.52702722538374100e+15 -D-D_->_3He_fusion_rate_at_point_158______________________________________ fusrat_plasma_dd_helion_profile158_ 5.50301980766041300e+15 -D-D_->_3He_fusion_rate_at_point_159______________________________________ fusrat_plasma_dd_helion_profile159_ 5.47893243192326700e+15 -D-D_->_3He_fusion_rate_at_point_160______________________________________ fusrat_plasma_dd_helion_profile160_ 5.45476636532205800e+15 -D-D_->_3He_fusion_rate_at_point_161______________________________________ fusrat_plasma_dd_helion_profile161_ 5.43052287953279600e+15 -D-D_->_3He_fusion_rate_at_point_162______________________________________ fusrat_plasma_dd_helion_profile162_ 5.40620325069076200e+15 -D-D_->_3He_fusion_rate_at_point_163______________________________________ fusrat_plasma_dd_helion_profile163_ 5.38180875932303700e+15 -D-D_->_3He_fusion_rate_at_point_164______________________________________ fusrat_plasma_dd_helion_profile164_ 5.35734069028062400e+15 -D-D_->_3He_fusion_rate_at_point_165______________________________________ fusrat_plasma_dd_helion_profile165_ 5.33280033267002000e+15 -D-D_->_3He_fusion_rate_at_point_166______________________________________ fusrat_plasma_dd_helion_profile166_ 5.30818897978437500e+15 -D-D_->_3He_fusion_rate_at_point_167______________________________________ fusrat_plasma_dd_helion_profile167_ 5.28350792903414300e+15 -D-D_->_3He_fusion_rate_at_point_168______________________________________ fusrat_plasma_dd_helion_profile168_ 5.25875848187728400e+15 -D-D_->_3He_fusion_rate_at_point_169______________________________________ fusrat_plasma_dd_helion_profile169_ 5.23394194374897200e+15 -D-D_->_3He_fusion_rate_at_point_170______________________________________ fusrat_plasma_dd_helion_profile170_ 5.20905962399080100e+15 -D-D_->_3He_fusion_rate_at_point_171______________________________________ fusrat_plasma_dd_helion_profile171_ 5.18411283577959400e+15 -D-D_->_3He_fusion_rate_at_point_172______________________________________ fusrat_plasma_dd_helion_profile172_ 5.15910289605563600e+15 -D-D_->_3He_fusion_rate_at_point_173______________________________________ fusrat_plasma_dd_helion_profile173_ 5.13403112545049000e+15 -D-D_->_3He_fusion_rate_at_point_174______________________________________ fusrat_plasma_dd_helion_profile174_ 5.10889884821432100e+15 -D-D_->_3He_fusion_rate_at_point_175______________________________________ fusrat_plasma_dd_helion_profile175_ 5.08370739214272000e+15 -D-D_->_3He_fusion_rate_at_point_176______________________________________ fusrat_plasma_dd_helion_profile176_ 5.05845808850303400e+15 -D-D_->_3He_fusion_rate_at_point_177______________________________________ fusrat_plasma_dd_helion_profile177_ 5.03315227196028600e+15 -D-D_->_3He_fusion_rate_at_point_178______________________________________ fusrat_plasma_dd_helion_profile178_ 5.00779128050249700e+15 -D-D_->_3He_fusion_rate_at_point_179______________________________________ fusrat_plasma_dd_helion_profile179_ 4.98237645536560700e+15 -D-D_->_3He_fusion_rate_at_point_180______________________________________ fusrat_plasma_dd_helion_profile180_ 4.95690914095791000e+15 -D-D_->_3He_fusion_rate_at_point_181______________________________________ fusrat_plasma_dd_helion_profile181_ 4.93139068478389600e+15 -D-D_->_3He_fusion_rate_at_point_182______________________________________ fusrat_plasma_dd_helion_profile182_ 4.90582243736774400e+15 -D-D_->_3He_fusion_rate_at_point_183______________________________________ fusrat_plasma_dd_helion_profile183_ 4.88020575217623900e+15 -D-D_->_3He_fusion_rate_at_point_184______________________________________ fusrat_plasma_dd_helion_profile184_ 4.85454198554119600e+15 -D-D_->_3He_fusion_rate_at_point_185______________________________________ fusrat_plasma_dd_helion_profile185_ 4.82883249658143000e+15 -D-D_->_3He_fusion_rate_at_point_186______________________________________ fusrat_plasma_dd_helion_profile186_ 4.80307864712420100e+15 -D-D_->_3He_fusion_rate_at_point_187______________________________________ fusrat_plasma_dd_helion_profile187_ 4.77728180162617600e+15 -D-D_->_3He_fusion_rate_at_point_188______________________________________ fusrat_plasma_dd_helion_profile188_ 4.75144332709388300e+15 -D-D_->_3He_fusion_rate_at_point_189______________________________________ fusrat_plasma_dd_helion_profile189_ 4.72556459300368400e+15 -D-D_->_3He_fusion_rate_at_point_190______________________________________ fusrat_plasma_dd_helion_profile190_ 4.69964697122124000e+15 -D-D_->_3He_fusion_rate_at_point_191______________________________________ fusrat_plasma_dd_helion_profile191_ 4.67369183592045600e+15 -D-D_->_3He_fusion_rate_at_point_192______________________________________ fusrat_plasma_dd_helion_profile192_ 4.64770056350195100e+15 -D-D_->_3He_fusion_rate_at_point_193______________________________________ fusrat_plasma_dd_helion_profile193_ 4.62167453251103700e+15 -D-D_->_3He_fusion_rate_at_point_194______________________________________ fusrat_plasma_dd_helion_profile194_ 4.59561512355512600e+15 -D-D_->_3He_fusion_rate_at_point_195______________________________________ fusrat_plasma_dd_helion_profile195_ 4.56952371922072600e+15 -D-D_->_3He_fusion_rate_at_point_196______________________________________ fusrat_plasma_dd_helion_profile196_ 4.54340170398986700e+15 -D-D_->_3He_fusion_rate_at_point_197______________________________________ fusrat_plasma_dd_helion_profile197_ 4.51725046415599500e+15 -D-D_->_3He_fusion_rate_at_point_198______________________________________ fusrat_plasma_dd_helion_profile198_ 4.49107138773945650e+15 -D-D_->_3He_fusion_rate_at_point_199______________________________________ fusrat_plasma_dd_helion_profile199_ 4.46486586440238000e+15 -D-D_->_3He_fusion_rate_at_point_200______________________________________ fusrat_plasma_dd_helion_profile200_ 4.43863528536308000e+15 -D-D_->_3He_fusion_rate_at_point_201______________________________________ fusrat_plasma_dd_helion_profile201_ 4.41238104330996000e+15 -D-D_->_3He_fusion_rate_at_point_202______________________________________ fusrat_plasma_dd_helion_profile202_ 4.38610453231485100e+15 -D-D_->_3He_fusion_rate_at_point_203______________________________________ fusrat_plasma_dd_helion_profile203_ 4.35980714774592000e+15 -D-D_->_3He_fusion_rate_at_point_204______________________________________ fusrat_plasma_dd_helion_profile204_ 4.33349028617998400e+15 -D-D_->_3He_fusion_rate_at_point_205______________________________________ fusrat_plasma_dd_helion_profile205_ 4.30715534531433850e+15 -D-D_->_3He_fusion_rate_at_point_206______________________________________ fusrat_plasma_dd_helion_profile206_ 4.28080372387806150e+15 -D-D_->_3He_fusion_rate_at_point_207______________________________________ fusrat_plasma_dd_helion_profile207_ 4.25443682154282300e+15 -D-D_->_3He_fusion_rate_at_point_208______________________________________ fusrat_plasma_dd_helion_profile208_ 4.22805603883310900e+15 -D-D_->_3He_fusion_rate_at_point_209______________________________________ fusrat_plasma_dd_helion_profile209_ 4.20166277703599350e+15 -D-D_->_3He_fusion_rate_at_point_210______________________________________ fusrat_plasma_dd_helion_profile210_ 4.17525843811035150e+15 -D-D_->_3He_fusion_rate_at_point_211______________________________________ fusrat_plasma_dd_helion_profile211_ 4.14884442459553350e+15 -D-D_->_3He_fusion_rate_at_point_212______________________________________ fusrat_plasma_dd_helion_profile212_ 4.12242213951957100e+15 -D-D_->_3He_fusion_rate_at_point_213______________________________________ fusrat_plasma_dd_helion_profile213_ 4.09599298630676000e+15 -D-D_->_3He_fusion_rate_at_point_214______________________________________ fusrat_plasma_dd_helion_profile214_ 4.06955836868480250e+15 -D-D_->_3He_fusion_rate_at_point_215______________________________________ fusrat_plasma_dd_helion_profile215_ 4.04311969059140100e+15 -D-D_->_3He_fusion_rate_at_point_216______________________________________ fusrat_plasma_dd_helion_profile216_ 4.01667835608026650e+15 -D-D_->_3He_fusion_rate_at_point_217______________________________________ fusrat_plasma_dd_helion_profile217_ 3.99023576922666050e+15 -D-D_->_3He_fusion_rate_at_point_218______________________________________ fusrat_plasma_dd_helion_profile218_ 3.96379333403236350e+15 -D-D_->_3He_fusion_rate_at_point_219______________________________________ fusrat_plasma_dd_helion_profile219_ 3.93735245433013550e+15 -D-D_->_3He_fusion_rate_at_point_220______________________________________ fusrat_plasma_dd_helion_profile220_ 3.91091453368759750e+15 -D-D_->_3He_fusion_rate_at_point_221______________________________________ fusrat_plasma_dd_helion_profile221_ 3.88448097531064300e+15 -D-D_->_3He_fusion_rate_at_point_222______________________________________ fusrat_plasma_dd_helion_profile222_ 3.85805318194622650e+15 -D-D_->_3He_fusion_rate_at_point_223______________________________________ fusrat_plasma_dd_helion_profile223_ 3.83163255578469400e+15 -D-D_->_3He_fusion_rate_at_point_224______________________________________ fusrat_plasma_dd_helion_profile224_ 3.80522049836152650e+15 -D-D_->_3He_fusion_rate_at_point_225______________________________________ fusrat_plasma_dd_helion_profile225_ 3.77881841045852100e+15 -D-D_->_3He_fusion_rate_at_point_226______________________________________ fusrat_plasma_dd_helion_profile226_ 3.75242769200451650e+15 -D-D_->_3He_fusion_rate_at_point_227______________________________________ fusrat_plasma_dd_helion_profile227_ 3.72604974197544250e+15 -D-D_->_3He_fusion_rate_at_point_228______________________________________ fusrat_plasma_dd_helion_profile228_ 3.69968595829396650e+15 -D-D_->_3He_fusion_rate_at_point_229______________________________________ fusrat_plasma_dd_helion_profile229_ 3.67333773772848750e+15 -D-D_->_3He_fusion_rate_at_point_230______________________________________ fusrat_plasma_dd_helion_profile230_ 3.64700647579161800e+15 -D-D_->_3He_fusion_rate_at_point_231______________________________________ fusrat_plasma_dd_helion_profile231_ 3.62069356663812150e+15 -D-D_->_3He_fusion_rate_at_point_232______________________________________ fusrat_plasma_dd_helion_profile232_ 3.59440040296232350e+15 -D-D_->_3He_fusion_rate_at_point_233______________________________________ fusrat_plasma_dd_helion_profile233_ 3.56812837589488400e+15 -D-D_->_3He_fusion_rate_at_point_234______________________________________ fusrat_plasma_dd_helion_profile234_ 3.54187887489915750e+15 -D-D_->_3He_fusion_rate_at_point_235______________________________________ fusrat_plasma_dd_helion_profile235_ 3.51565328766685850e+15 -D-D_->_3He_fusion_rate_at_point_236______________________________________ fusrat_plasma_dd_helion_profile236_ 3.48945300001325750e+15 -D-D_->_3He_fusion_rate_at_point_237______________________________________ fusrat_plasma_dd_helion_profile237_ 3.46327939577182350e+15 -D-D_->_3He_fusion_rate_at_point_238______________________________________ fusrat_plasma_dd_helion_profile238_ 3.43713385668825350e+15 -D-D_->_3He_fusion_rate_at_point_239______________________________________ fusrat_plasma_dd_helion_profile239_ 3.41101776231400250e+15 -D-D_->_3He_fusion_rate_at_point_240______________________________________ fusrat_plasma_dd_helion_profile240_ 3.38493248989924150e+15 -D-D_->_3He_fusion_rate_at_point_241______________________________________ fusrat_plasma_dd_helion_profile241_ 3.35887941428522250e+15 -D-D_->_3He_fusion_rate_at_point_242______________________________________ fusrat_plasma_dd_helion_profile242_ 3.33285990779614000e+15 -D-D_->_3He_fusion_rate_at_point_243______________________________________ fusrat_plasma_dd_helion_profile243_ 3.30687534013040050e+15 -D-D_->_3He_fusion_rate_at_point_244______________________________________ fusrat_plasma_dd_helion_profile244_ 3.28092707825133650e+15 -D-D_->_3He_fusion_rate_at_point_245______________________________________ fusrat_plasma_dd_helion_profile245_ 3.25501648627735850e+15 -D-D_->_3He_fusion_rate_at_point_246______________________________________ fusrat_plasma_dd_helion_profile246_ 3.22914492537154450e+15 -D-D_->_3He_fusion_rate_at_point_247______________________________________ fusrat_plasma_dd_helion_profile247_ 3.20331375363068500e+15 -D-D_->_3He_fusion_rate_at_point_248______________________________________ fusrat_plasma_dd_helion_profile248_ 3.17752432597374400e+15 -D-D_->_3He_fusion_rate_at_point_249______________________________________ fusrat_plasma_dd_helion_profile249_ 3.15177799402977000e+15 -D-D_->_3He_fusion_rate_at_point_250______________________________________ fusrat_plasma_dd_helion_profile250_ 3.12607610602521350e+15 -D-D_->_3He_fusion_rate_at_point_251______________________________________ fusrat_plasma_dd_helion_profile251_ 3.10042000667076000e+15 -D-D_->_3He_fusion_rate_at_point_252______________________________________ fusrat_plasma_dd_helion_profile252_ 3.07481103704749750e+15 -D-D_->_3He_fusion_rate_at_point_253______________________________________ fusrat_plasma_dd_helion_profile253_ 3.04925053449258950e+15 -D-D_->_3He_fusion_rate_at_point_254______________________________________ fusrat_plasma_dd_helion_profile254_ 3.02373983248435200e+15 -D-D_->_3He_fusion_rate_at_point_255______________________________________ fusrat_plasma_dd_helion_profile255_ 2.99828026052680350e+15 -D-D_->_3He_fusion_rate_at_point_256______________________________________ fusrat_plasma_dd_helion_profile256_ 2.97287314403358550e+15 -D-D_->_3He_fusion_rate_at_point_257______________________________________ fusrat_plasma_dd_helion_profile257_ 2.94751980421139200e+15 -D-D_->_3He_fusion_rate_at_point_258______________________________________ fusrat_plasma_dd_helion_profile258_ 2.92222155794278350e+15 -D-D_->_3He_fusion_rate_at_point_259______________________________________ fusrat_plasma_dd_helion_profile259_ 2.89697971766845750e+15 -D-D_->_3He_fusion_rate_at_point_260______________________________________ fusrat_plasma_dd_helion_profile260_ 2.87179559126896650e+15 -D-D_->_3He_fusion_rate_at_point_261______________________________________ fusrat_plasma_dd_helion_profile261_ 2.84667048194583900e+15 -D-D_->_3He_fusion_rate_at_point_262______________________________________ fusrat_plasma_dd_helion_profile262_ 2.82160568810217750e+15 -D-D_->_3He_fusion_rate_at_point_263______________________________________ fusrat_plasma_dd_helion_profile263_ 2.79660250322266300e+15 -D-D_->_3He_fusion_rate_at_point_264______________________________________ fusrat_plasma_dd_helion_profile264_ 2.77166221575303150e+15 -D-D_->_3He_fusion_rate_at_point_265______________________________________ fusrat_plasma_dd_helion_profile265_ 2.74678610897894250e+15 -D-D_->_3He_fusion_rate_at_point_266______________________________________ fusrat_plasma_dd_helion_profile266_ 2.72197546090434850e+15 -D-D_->_3He_fusion_rate_at_point_267______________________________________ fusrat_plasma_dd_helion_profile267_ 2.69723154412924050e+15 -D-D_->_3He_fusion_rate_at_point_268______________________________________ fusrat_plasma_dd_helion_profile268_ 2.67255562572691500e+15 -D-D_->_3He_fusion_rate_at_point_269______________________________________ fusrat_plasma_dd_helion_profile269_ 2.64794896712060050e+15 -D-D_->_3He_fusion_rate_at_point_270______________________________________ fusrat_plasma_dd_helion_profile270_ 2.62341282395959950e+15 -D-D_->_3He_fusion_rate_at_point_271______________________________________ fusrat_plasma_dd_helion_profile271_ 2.59894844599482700e+15 -D-D_->_3He_fusion_rate_at_point_272______________________________________ fusrat_plasma_dd_helion_profile272_ 2.57455707695384250e+15 -D-D_->_3He_fusion_rate_at_point_273______________________________________ fusrat_plasma_dd_helion_profile273_ 2.55023995441531350e+15 -D-D_->_3He_fusion_rate_at_point_274______________________________________ fusrat_plasma_dd_helion_profile274_ 2.52599830968289650e+15 -D-D_->_3He_fusion_rate_at_point_275______________________________________ fusrat_plasma_dd_helion_profile275_ 2.50183336765865350e+15 -D-D_->_3He_fusion_rate_at_point_276______________________________________ fusrat_plasma_dd_helion_profile276_ 2.47774634671585650e+15 -D-D_->_3He_fusion_rate_at_point_277______________________________________ fusrat_plasma_dd_helion_profile277_ 2.45373845857127400e+15 -D-D_->_3He_fusion_rate_at_point_278______________________________________ fusrat_plasma_dd_helion_profile278_ 2.42981090815694950e+15 -D-D_->_3He_fusion_rate_at_point_279______________________________________ fusrat_plasma_dd_helion_profile279_ 2.40596489349139000e+15 -D-D_->_3He_fusion_rate_at_point_280______________________________________ fusrat_plasma_dd_helion_profile280_ 2.38220160555028800e+15 -D-D_->_3He_fusion_rate_at_point_281______________________________________ fusrat_plasma_dd_helion_profile281_ 2.35852222813664900e+15 -D-D_->_3He_fusion_rate_at_point_282______________________________________ fusrat_plasma_dd_helion_profile282_ 2.33492793775047550e+15 -D-D_->_3He_fusion_rate_at_point_283______________________________________ fusrat_plasma_dd_helion_profile283_ 2.31141990345783850e+15 -D-D_->_3He_fusion_rate_at_point_284______________________________________ fusrat_plasma_dd_helion_profile284_ 2.28799928675952500e+15 -D-D_->_3He_fusion_rate_at_point_285______________________________________ fusrat_plasma_dd_helion_profile285_ 2.26466724145911600e+15 -D-D_->_3He_fusion_rate_at_point_286______________________________________ fusrat_plasma_dd_helion_profile286_ 2.24142491353056525e+15 -D-D_->_3He_fusion_rate_at_point_287______________________________________ fusrat_plasma_dd_helion_profile287_ 2.21827344098531400e+15 -D-D_->_3He_fusion_rate_at_point_288______________________________________ fusrat_plasma_dd_helion_profile288_ 2.19521395373884275e+15 -D-D_->_3He_fusion_rate_at_point_289______________________________________ fusrat_plasma_dd_helion_profile289_ 2.17224757347681725e+15 -D-D_->_3He_fusion_rate_at_point_290______________________________________ fusrat_plasma_dd_helion_profile290_ 2.14937541352066900e+15 -D-D_->_3He_fusion_rate_at_point_291______________________________________ fusrat_plasma_dd_helion_profile291_ 2.12659857869275350e+15 -D-D_->_3He_fusion_rate_at_point_292______________________________________ fusrat_plasma_dd_helion_profile292_ 2.10391816518099900e+15 -D-D_->_3He_fusion_rate_at_point_293______________________________________ fusrat_plasma_dd_helion_profile293_ 2.08133526040312850e+15 -D-D_->_3He_fusion_rate_at_point_294______________________________________ fusrat_plasma_dd_helion_profile294_ 2.05885094287037575e+15 -D-D_->_3He_fusion_rate_at_point_295______________________________________ fusrat_plasma_dd_helion_profile295_ 2.03646628205079500e+15 -D-D_->_3He_fusion_rate_at_point_296______________________________________ fusrat_plasma_dd_helion_profile296_ 2.01418233823209950e+15 -D-D_->_3He_fusion_rate_at_point_297______________________________________ fusrat_plasma_dd_helion_profile297_ 1.99200016238408800e+15 -D-D_->_3He_fusion_rate_at_point_298______________________________________ fusrat_plasma_dd_helion_profile298_ 1.96992079602060450e+15 -D-D_->_3He_fusion_rate_at_point_299______________________________________ fusrat_plasma_dd_helion_profile299_ 1.94794527106114125e+15 -D-D_->_3He_fusion_rate_at_point_300______________________________________ fusrat_plasma_dd_helion_profile300_ 1.92607460969198175e+15 -D-D_->_3He_fusion_rate_at_point_301______________________________________ fusrat_plasma_dd_helion_profile301_ 1.90430982422697200e+15 -D-D_->_3He_fusion_rate_at_point_302______________________________________ fusrat_plasma_dd_helion_profile302_ 1.88265191696790325e+15 -D-D_->_3He_fusion_rate_at_point_303______________________________________ fusrat_plasma_dd_helion_profile303_ 1.86110188006451675e+15 -D-D_->_3He_fusion_rate_at_point_304______________________________________ fusrat_plasma_dd_helion_profile304_ 1.83966069537413675e+15 -D-D_->_3He_fusion_rate_at_point_305______________________________________ fusrat_plasma_dd_helion_profile305_ 1.81832933432096650e+15 -D-D_->_3He_fusion_rate_at_point_306______________________________________ fusrat_plasma_dd_helion_profile306_ 1.79710875775503625e+15 -D-D_->_3He_fusion_rate_at_point_307______________________________________ fusrat_plasma_dd_helion_profile307_ 1.77599991581082700e+15 -D-D_->_3He_fusion_rate_at_point_308______________________________________ fusrat_plasma_dd_helion_profile308_ 1.75500374776557075e+15 -D-D_->_3He_fusion_rate_at_point_309______________________________________ fusrat_plasma_dd_helion_profile309_ 1.73412118189728225e+15 -D-D_->_3He_fusion_rate_at_point_310______________________________________ fusrat_plasma_dd_helion_profile310_ 1.71335313534247575e+15 -D-D_->_3He_fusion_rate_at_point_311______________________________________ fusrat_plasma_dd_helion_profile311_ 1.69270051395363225e+15 -D-D_->_3He_fusion_rate_at_point_312______________________________________ fusrat_plasma_dd_helion_profile312_ 1.67216421215640875e+15 -D-D_->_3He_fusion_rate_at_point_313______________________________________ fusrat_plasma_dd_helion_profile313_ 1.65174511280663075e+15 -D-D_->_3He_fusion_rate_at_point_314______________________________________ fusrat_plasma_dd_helion_profile314_ 1.63144408704702775e+15 -D-D_->_3He_fusion_rate_at_point_315______________________________________ fusrat_plasma_dd_helion_profile315_ 1.61126199416384000e+15 -D-D_->_3He_fusion_rate_at_point_316______________________________________ fusrat_plasma_dd_helion_profile316_ 1.59119968144317900e+15 -D-D_->_3He_fusion_rate_at_point_317______________________________________ fusrat_plasma_dd_helion_profile317_ 1.57125798402726300e+15 -D-D_->_3He_fusion_rate_at_point_318______________________________________ fusrat_plasma_dd_helion_profile318_ 1.55143772477052450e+15 -D-D_->_3He_fusion_rate_at_point_319______________________________________ fusrat_plasma_dd_helion_profile319_ 1.53173971409559100e+15 -D-D_->_3He_fusion_rate_at_point_320______________________________________ fusrat_plasma_dd_helion_profile320_ 1.51216474984916500e+15 -D-D_->_3He_fusion_rate_at_point_321______________________________________ fusrat_plasma_dd_helion_profile321_ 1.49271361715786425e+15 -D-D_->_3He_fusion_rate_at_point_322______________________________________ fusrat_plasma_dd_helion_profile322_ 1.47338708828399275e+15 -D-D_->_3He_fusion_rate_at_point_323______________________________________ fusrat_plasma_dd_helion_profile323_ 1.45418592248131800e+15 -D-D_->_3He_fusion_rate_at_point_324______________________________________ fusrat_plasma_dd_helion_profile324_ 1.43511086585083250e+15 -D-D_->_3He_fusion_rate_at_point_325______________________________________ fusrat_plasma_dd_helion_profile325_ 1.41616265119658475e+15 -D-D_->_3He_fusion_rate_at_point_326______________________________________ fusrat_plasma_dd_helion_profile326_ 1.39734199788154725e+15 -D-D_->_3He_fusion_rate_at_point_327______________________________________ fusrat_plasma_dd_helion_profile327_ 1.37864961168362400e+15 -D-D_->_3He_fusion_rate_at_point_328______________________________________ fusrat_plasma_dd_helion_profile328_ 1.36008618465172025e+15 -D-D_->_3He_fusion_rate_at_point_329______________________________________ fusrat_plasma_dd_helion_profile329_ 1.34165239496206150e+15 -D-D_->_3He_fusion_rate_at_point_330______________________________________ fusrat_plasma_dd_helion_profile330_ 1.32334890677462700e+15 -D-D_->_3He_fusion_rate_at_point_331______________________________________ fusrat_plasma_dd_helion_profile331_ 1.30517637008987500e+15 -D-D_->_3He_fusion_rate_at_point_332______________________________________ fusrat_plasma_dd_helion_profile332_ 1.28713542060570325e+15 -D-D_->_3He_fusion_rate_at_point_333______________________________________ fusrat_plasma_dd_helion_profile333_ 1.26922667957473025e+15 -D-D_->_3He_fusion_rate_at_point_334______________________________________ fusrat_plasma_dd_helion_profile334_ 1.25145075366191475e+15 -D-D_->_3He_fusion_rate_at_point_335______________________________________ fusrat_plasma_dd_helion_profile335_ 1.23380823480257475e+15 -D-D_->_3He_fusion_rate_at_point_336______________________________________ fusrat_plasma_dd_helion_profile336_ 1.21629970006082900e+15 -D-D_->_3He_fusion_rate_at_point_337______________________________________ fusrat_plasma_dd_helion_profile337_ 1.19892571148851075e+15 -D-D_->_3He_fusion_rate_at_point_338______________________________________ fusrat_plasma_dd_helion_profile338_ 1.18168681598461225e+15 -D-D_->_3He_fusion_rate_at_point_339______________________________________ fusrat_plasma_dd_helion_profile339_ 1.16458354515529000e+15 -D-D_->_3He_fusion_rate_at_point_340______________________________________ fusrat_plasma_dd_helion_profile340_ 1.14761641517449800e+15 -D-D_->_3He_fusion_rate_at_point_341______________________________________ fusrat_plasma_dd_helion_profile341_ 1.13078592664527450e+15 -D-D_->_3He_fusion_rate_at_point_342______________________________________ fusrat_plasma_dd_helion_profile342_ 1.11409256446177800e+15 -D-D_->_3He_fusion_rate_at_point_343______________________________________ fusrat_plasma_dd_helion_profile343_ 1.09753679767207625e+15 -D-D_->_3He_fusion_rate_at_point_344______________________________________ fusrat_plasma_dd_helion_profile344_ 1.08111907934179212e+15 -D-D_->_3He_fusion_rate_at_point_345______________________________________ fusrat_plasma_dd_helion_profile345_ 1.06483984641862912e+15 -D-D_->_3He_fusion_rate_at_point_346______________________________________ fusrat_plasma_dd_helion_profile346_ 1.04869951959787850e+15 -D-D_->_3He_fusion_rate_at_point_347______________________________________ fusrat_plasma_dd_helion_profile347_ 1.03269850318891775e+15 -D-D_->_3He_fusion_rate_at_point_348______________________________________ fusrat_plasma_dd_helion_profile348_ 1.01683718498282412e+15 -D-D_->_3He_fusion_rate_at_point_349______________________________________ fusrat_plasma_dd_helion_profile349_ 1.00111593612113800e+15 -D-D_->_3He_fusion_rate_at_point_350______________________________________ fusrat_plasma_dd_helion_profile350_ 9.85535110965842125e+14 -D-D_->_3He_fusion_rate_at_point_351______________________________________ fusrat_plasma_dd_helion_profile351_ 9.70095046970665250e+14 -D-D_->_3He_fusion_rate_at_point_352______________________________________ fusrat_plasma_dd_helion_profile352_ 9.54796064553758625e+14 -D-D_->_3He_fusion_rate_at_point_353______________________________________ fusrat_plasma_dd_helion_profile353_ 9.39638466971810000e+14 -D-D_->_3He_fusion_rate_at_point_354______________________________________ fusrat_plasma_dd_helion_profile354_ 9.24622540195736375e+14 -D-D_->_3He_fusion_rate_at_point_355______________________________________ fusrat_plasma_dd_helion_profile355_ 9.09748552787970750e+14 -D-D_->_3He_fusion_rate_at_point_356______________________________________ fusrat_plasma_dd_helion_profile356_ 8.95016755781481875e+14 -D-D_->_3He_fusion_rate_at_point_357______________________________________ fusrat_plasma_dd_helion_profile357_ 8.80427382560588500e+14 -D-D_->_3He_fusion_rate_at_point_358______________________________________ fusrat_plasma_dd_helion_profile358_ 8.65980648743680125e+14 -D-D_->_3He_fusion_rate_at_point_359______________________________________ fusrat_plasma_dd_helion_profile359_ 8.51676752067936875e+14 -D-D_->_3He_fusion_rate_at_point_360______________________________________ fusrat_plasma_dd_helion_profile360_ 8.37515872276141625e+14 -D-D_->_3He_fusion_rate_at_point_361______________________________________ fusrat_plasma_dd_helion_profile361_ 8.23498171005699125e+14 -D-D_->_3He_fusion_rate_at_point_362______________________________________ fusrat_plasma_dd_helion_profile362_ 8.09623791679975125e+14 -D-D_->_3He_fusion_rate_at_point_363______________________________________ fusrat_plasma_dd_helion_profile363_ 7.95892859402043625e+14 -D-D_->_3He_fusion_rate_at_point_364______________________________________ fusrat_plasma_dd_helion_profile364_ 7.82305480850994000e+14 -D-D_->_3He_fusion_rate_at_point_365______________________________________ fusrat_plasma_dd_helion_profile365_ 7.68861744180885625e+14 -D-D_->_3He_fusion_rate_at_point_366______________________________________ fusrat_plasma_dd_helion_profile366_ 7.55561718922492125e+14 -D-D_->_3He_fusion_rate_at_point_367______________________________________ fusrat_plasma_dd_helion_profile367_ 7.42405455887967625e+14 -D-D_->_3He_fusion_rate_at_point_368______________________________________ fusrat_plasma_dd_helion_profile368_ 7.29392987078540875e+14 -D-D_->_3He_fusion_rate_at_point_369______________________________________ fusrat_plasma_dd_helion_profile369_ 7.16524325595423500e+14 -D-D_->_3He_fusion_rate_at_point_370______________________________________ fusrat_plasma_dd_helion_profile370_ 7.03799465554021375e+14 -D-D_->_3He_fusion_rate_at_point_371______________________________________ fusrat_plasma_dd_helion_profile371_ 6.91218382001629500e+14 -D-D_->_3He_fusion_rate_at_point_372______________________________________ fusrat_plasma_dd_helion_profile372_ 6.78781030838767250e+14 -D-D_->_3He_fusion_rate_at_point_373______________________________________ fusrat_plasma_dd_helion_profile373_ 6.66487348744279250e+14 -D-D_->_3He_fusion_rate_at_point_374______________________________________ fusrat_plasma_dd_helion_profile374_ 6.54337253104403750e+14 -D-D_->_3He_fusion_rate_at_point_375______________________________________ fusrat_plasma_dd_helion_profile375_ 6.42330641945955875e+14 -D-D_->_3He_fusion_rate_at_point_376______________________________________ fusrat_plasma_dd_helion_profile376_ 6.30467393873797375e+14 -D-D_->_3He_fusion_rate_at_point_377______________________________________ fusrat_plasma_dd_helion_profile377_ 6.18747368012795125e+14 -D-D_->_3He_fusion_rate_at_point_378______________________________________ fusrat_plasma_dd_helion_profile378_ 6.07170403954429375e+14 -D-D_->_3He_fusion_rate_at_point_379______________________________________ fusrat_plasma_dd_helion_profile379_ 5.95736321708277625e+14 -D-D_->_3He_fusion_rate_at_point_380______________________________________ fusrat_plasma_dd_helion_profile380_ 5.84444921658533375e+14 -D-D_->_3He_fusion_rate_at_point_381______________________________________ fusrat_plasma_dd_helion_profile381_ 5.73295984525823125e+14 -D-D_->_3He_fusion_rate_at_point_382______________________________________ fusrat_plasma_dd_helion_profile382_ 5.62289271334475250e+14 -D-D_->_3He_fusion_rate_at_point_383______________________________________ fusrat_plasma_dd_helion_profile383_ 5.51424523385515375e+14 -D-D_->_3He_fusion_rate_at_point_384______________________________________ fusrat_plasma_dd_helion_profile384_ 5.40701462235598000e+14 -D-D_->_3He_fusion_rate_at_point_385______________________________________ fusrat_plasma_dd_helion_profile385_ 5.30119789682116500e+14 -D-D_->_3He_fusion_rate_at_point_386______________________________________ fusrat_plasma_dd_helion_profile386_ 5.19679187754728125e+14 -D-D_->_3He_fusion_rate_at_point_387______________________________________ fusrat_plasma_dd_helion_profile387_ 5.09379318713592750e+14 -D-D_->_3He_fusion_rate_at_point_388______________________________________ fusrat_plasma_dd_helion_profile388_ 4.99219825054538625e+14 -D-D_->_3He_fusion_rate_at_point_389______________________________________ fusrat_plasma_dd_helion_profile389_ 4.89200329521484375e+14 -D-D_->_3He_fusion_rate_at_point_390______________________________________ fusrat_plasma_dd_helion_profile390_ 4.79320435126369250e+14 -D-D_->_3He_fusion_rate_at_point_391______________________________________ fusrat_plasma_dd_helion_profile391_ 4.69579725176914188e+14 -D-D_->_3He_fusion_rate_at_point_392______________________________________ fusrat_plasma_dd_helion_profile392_ 4.59977763312523562e+14 -D-D_->_3He_fusion_rate_at_point_393______________________________________ fusrat_plasma_dd_helion_profile393_ 4.50514093548641250e+14 -D-D_->_3He_fusion_rate_at_point_394______________________________________ fusrat_plasma_dd_helion_profile394_ 4.41188240329919062e+14 -D-D_->_3He_fusion_rate_at_point_395______________________________________ fusrat_plasma_dd_helion_profile395_ 4.31999708592534625e+14 -D-D_->_3He_fusion_rate_at_point_396______________________________________ fusrat_plasma_dd_helion_profile396_ 4.22947983836041375e+14 -D-D_->_3He_fusion_rate_at_point_397______________________________________ fusrat_plasma_dd_helion_profile397_ 4.14032532205127500e+14 -D-D_->_3He_fusion_rate_at_point_398______________________________________ fusrat_plasma_dd_helion_profile398_ 4.05252800581688375e+14 -D-D_->_3He_fusion_rate_at_point_399______________________________________ fusrat_plasma_dd_helion_profile399_ 3.96608216687644875e+14 -D-D_->_3He_fusion_rate_at_point_400______________________________________ fusrat_plasma_dd_helion_profile400_ 3.88098189198930188e+14 -D-D_->_3He_fusion_rate_at_point_401______________________________________ fusrat_plasma_dd_helion_profile401_ 3.79722107871135938e+14 -D-D_->_3He_fusion_rate_at_point_402______________________________________ fusrat_plasma_dd_helion_profile402_ 3.71479343677274375e+14 -D-D_->_3He_fusion_rate_at_point_403______________________________________ fusrat_plasma_dd_helion_profile403_ 3.63369248958210062e+14 -D-D_->_3He_fusion_rate_at_point_404______________________________________ fusrat_plasma_dd_helion_profile404_ 3.55391157586254688e+14 -D-D_->_3He_fusion_rate_at_point_405______________________________________ fusrat_plasma_dd_helion_profile405_ 3.47544385142547188e+14 -D-D_->_3He_fusion_rate_at_point_406______________________________________ fusrat_plasma_dd_helion_profile406_ 3.39828229108782875e+14 -D-D_->_3He_fusion_rate_at_point_407______________________________________ fusrat_plasma_dd_helion_profile407_ 3.32241969073965875e+14 -D-D_->_3He_fusion_rate_at_point_408______________________________________ fusrat_plasma_dd_helion_profile408_ 3.24784866956832812e+14 -D-D_->_3He_fusion_rate_at_point_409______________________________________ fusrat_plasma_dd_helion_profile409_ 3.17456167244716562e+14 -D-D_->_3He_fusion_rate_at_point_410______________________________________ fusrat_plasma_dd_helion_profile410_ 3.10255097249576938e+14 -D-D_->_3He_fusion_rate_at_point_411______________________________________ fusrat_plasma_dd_helion_profile411_ 3.03180867382067375e+14 -D-D_->_3He_fusion_rate_at_point_412______________________________________ fusrat_plasma_dd_helion_profile412_ 2.96232671444492625e+14 -D-D_->_3He_fusion_rate_at_point_413______________________________________ fusrat_plasma_dd_helion_profile413_ 2.89409686943640188e+14 -D-D_->_3He_fusion_rate_at_point_414______________________________________ fusrat_plasma_dd_helion_profile414_ 2.82711075424484812e+14 -D-D_->_3He_fusion_rate_at_point_415______________________________________ fusrat_plasma_dd_helion_profile415_ 2.76135982825905219e+14 -D-D_->_3He_fusion_rate_at_point_416______________________________________ fusrat_plasma_dd_helion_profile416_ 2.69683539859593594e+14 -D-D_->_3He_fusion_rate_at_point_417______________________________________ fusrat_plasma_dd_helion_profile417_ 2.63352862413476000e+14 -D-D_->_3He_fusion_rate_at_point_418______________________________________ fusrat_plasma_dd_helion_profile418_ 2.57143051981073969e+14 -D-D_->_3He_fusion_rate_at_point_419______________________________________ fusrat_plasma_dd_helion_profile419_ 2.51053196118355969e+14 -D-D_->_3He_fusion_rate_at_point_420______________________________________ fusrat_plasma_dd_helion_profile420_ 2.45082368929793156e+14 -D-D_->_3He_fusion_rate_at_point_421______________________________________ fusrat_plasma_dd_helion_profile421_ 2.39229631585501781e+14 -D-D_->_3He_fusion_rate_at_point_422______________________________________ fusrat_plasma_dd_helion_profile422_ 2.33494032871547031e+14 -D-D_->_3He_fusion_rate_at_point_423______________________________________ fusrat_plasma_dd_helion_profile423_ 2.27874609775702250e+14 -D-D_->_3He_fusion_rate_at_point_424______________________________________ fusrat_plasma_dd_helion_profile424_ 2.22370388111224594e+14 -D-D_->_3He_fusion_rate_at_point_425______________________________________ fusrat_plasma_dd_helion_profile425_ 2.16980383181488781e+14 -D-D_->_3He_fusion_rate_at_point_426______________________________________ fusrat_plasma_dd_helion_profile426_ 2.11703600488666312e+14 -D-D_->_3He_fusion_rate_at_point_427______________________________________ fusrat_plasma_dd_helion_profile427_ 2.06539036490017531e+14 -D-D_->_3He_fusion_rate_at_point_428______________________________________ fusrat_plasma_dd_helion_profile428_ 2.01485679405833125e+14 -D-D_->_3He_fusion_rate_at_point_429______________________________________ fusrat_plasma_dd_helion_profile429_ 1.96542510083563531e+14 -D-D_->_3He_fusion_rate_at_point_430______________________________________ fusrat_plasma_dd_helion_profile430_ 1.91708502923305406e+14 -D-D_->_3He_fusion_rate_at_point_431______________________________________ fusrat_plasma_dd_helion_profile431_ 1.86982626870516906e+14 -D-D_->_3He_fusion_rate_at_point_432______________________________________ fusrat_plasma_dd_helion_profile432_ 1.82363846482688688e+14 -D-D_->_3He_fusion_rate_at_point_433______________________________________ fusrat_plasma_dd_helion_profile433_ 1.77851123077660812e+14 -D-D_->_3He_fusion_rate_at_point_434______________________________________ fusrat_plasma_dd_helion_profile434_ 1.73443415972478469e+14 -D-D_->_3He_fusion_rate_at_point_435______________________________________ fusrat_plasma_dd_helion_profile435_ 1.69139683823039500e+14 -D-D_->_3He_fusion_rate_at_point_436______________________________________ fusrat_plasma_dd_helion_profile436_ 1.64938886076462344e+14 -D-D_->_3He_fusion_rate_at_point_437______________________________________ fusrat_plasma_dd_helion_profile437_ 1.60839984550072094e+14 -D-D_->_3He_fusion_rate_at_point_438______________________________________ fusrat_plasma_dd_helion_profile438_ 1.56841945153300000e+14 -D-D_->_3He_fusion_rate_at_point_439______________________________________ fusrat_plasma_dd_helion_profile439_ 1.52943739771662781e+14 -D-D_->_3He_fusion_rate_at_point_440______________________________________ fusrat_plasma_dd_helion_profile440_ 1.49144348335511094e+14 -D-D_->_3He_fusion_rate_at_point_441______________________________________ fusrat_plasma_dd_helion_profile441_ 1.45442761100501406e+14 -D-D_->_3He_fusion_rate_at_point_442______________________________________ fusrat_plasma_dd_helion_profile442_ 1.41837981172033188e+14 -D-D_->_3He_fusion_rate_at_point_443______________________________________ fusrat_plasma_dd_helion_profile443_ 1.38329027312396141e+14 -D-D_->_3He_fusion_rate_at_point_444______________________________________ fusrat_plasma_dd_helion_profile444_ 1.34914937077508922e+14 -D-D_->_3He_fusion_rate_at_point_445______________________________________ fusrat_plasma_dd_helion_profile445_ 1.31594770340306688e+14 -D-D_->_3He_fusion_rate_at_point_446______________________________________ fusrat_plasma_dd_helion_profile446_ 1.28367613270739750e+14 -D-D_->_3He_fusion_rate_at_point_447______________________________________ fusrat_plasma_dd_helion_profile447_ 1.25232582858767531e+14 -D-D_->_3He_fusion_rate_at_point_448______________________________________ fusrat_plasma_dd_helion_profile448_ 1.22188832087908375e+14 -D-D_->_3He_fusion_rate_at_point_449______________________________________ fusrat_plasma_dd_helion_profile449_ 1.19235555894382891e+14 -D-D_->_3He_fusion_rate_at_point_450______________________________________ fusrat_plasma_dd_helion_profile450_ 1.16371998083032719e+14 -D-D_->_3He_fusion_rate_at_point_451______________________________________ fusrat_plasma_dd_helion_profile451_ 1.13597459419182938e+14 -D-D_->_3He_fusion_rate_at_point_452______________________________________ fusrat_plasma_dd_helion_profile452_ 1.10911307180248141e+14 -D-D_->_3He_fusion_rate_at_point_453______________________________________ fusrat_plasma_dd_helion_profile453_ 1.08312986539056188e+14 -D-D_->_3He_fusion_rate_at_point_454______________________________________ fusrat_plasma_dd_helion_profile454_ 1.05802034273089500e+14 -D-D_->_3He_fusion_rate_at_point_455______________________________________ fusrat_plasma_dd_helion_profile455_ 1.03378095466131219e+14 -D-D_->_3He_fusion_rate_at_point_456______________________________________ fusrat_plasma_dd_helion_profile456_ 1.01040944116309156e+14 -D-D_->_3He_fusion_rate_at_point_457______________________________________ fusrat_plasma_dd_helion_profile457_ 9.87905089277154688e+13 -D-D_->_3He_fusion_rate_at_point_458______________________________________ fusrat_plasma_dd_helion_profile458_ 9.66269061086228281e+13 -D-D_->_3He_fusion_rate_at_point_459______________________________________ fusrat_plasma_dd_helion_profile459_ 9.45504818422882188e+13 -D-D_->_3He_fusion_rate_at_point_460______________________________________ fusrat_plasma_dd_helion_profile460_ 9.25618684395858594e+13 -D-D_->_3He_fusion_rate_at_point_461______________________________________ fusrat_plasma_dd_helion_profile461_ 9.06620604021897656e+13 -D-D_->_3He_fusion_rate_at_point_462______________________________________ fusrat_plasma_dd_helion_profile462_ 8.88525204524319375e+13 -D-D_->_3He_fusion_rate_at_point_463______________________________________ fusrat_plasma_dd_helion_profile463_ 8.71353325317733125e+13 -D-D_->_3He_fusion_rate_at_point_464______________________________________ fusrat_plasma_dd_helion_profile464_ 8.55134321842076719e+13 -D-D_->_3He_fusion_rate_at_point_465______________________________________ fusrat_plasma_dd_helion_profile465_ 8.39909727437588750e+13 -D-D_->_3He_fusion_rate_at_point_466______________________________________ fusrat_plasma_dd_helion_profile466_ 8.25739503867096406e+13 -D-D_->_3He_fusion_rate_at_point_467______________________________________ fusrat_plasma_dd_helion_profile467_ 8.12713821289994375e+13 -D-D_->_3He_fusion_rate_at_point_468______________________________________ fusrat_plasma_dd_helion_profile468_ 8.00978830958796406e+13 -D-D_->_3He_fusion_rate_at_point_469______________________________________ fusrat_plasma_dd_helion_profile469_ 7.90809835354317812e+13 -D-D_->_3He_fusion_rate_at_point_470______________________________________ fusrat_plasma_dd_helion_profile470_ 7.83064833529955625e+13 -D-D_->_3He_fusion_rate_at_point_471______________________________________ fusrat_plasma_dd_helion_profile471_ 6.89351507056756250e+13 -D-D_->_3He_fusion_rate_at_point_472______________________________________ fusrat_plasma_dd_helion_profile472_ 6.03740105551831562e+13 -D-D_->_3He_fusion_rate_at_point_473______________________________________ fusrat_plasma_dd_helion_profile473_ 5.25828944849842500e+13 -D-D_->_3He_fusion_rate_at_point_474______________________________________ fusrat_plasma_dd_helion_profile474_ 4.55219266749004844e+13 -D-D_->_3He_fusion_rate_at_point_475______________________________________ fusrat_plasma_dd_helion_profile475_ 3.91515418248035234e+13 -D-D_->_3He_fusion_rate_at_point_476______________________________________ fusrat_plasma_dd_helion_profile476_ 3.34325050457829453e+13 -D-D_->_3He_fusion_rate_at_point_477______________________________________ fusrat_plasma_dd_helion_profile477_ 2.83259340761798906e+13 -D-D_->_3He_fusion_rate_at_point_478______________________________________ fusrat_plasma_dd_helion_profile478_ 2.37933242620007188e+13 -D-D_->_3He_fusion_rate_at_point_479______________________________________ fusrat_plasma_dd_helion_profile479_ 1.97965768446117578e+13 -D-D_->_3He_fusion_rate_at_point_480______________________________________ fusrat_plasma_dd_helion_profile480_ 1.62980312291584863e+13 -D-D_->_3He_fusion_rate_at_point_481______________________________________ fusrat_plasma_dd_helion_profile481_ 1.32605020723974961e+13 -D-D_->_3He_fusion_rate_at_point_482______________________________________ fusrat_plasma_dd_helion_profile482_ 1.06473222381886504e+13 -D-D_->_3He_fusion_rate_at_point_483______________________________________ fusrat_plasma_dd_helion_profile483_ 8.42239293490833105e+12 -D-D_->_3He_fusion_rate_at_point_484______________________________________ fusrat_plasma_dd_helion_profile484_ 6.55024268656318945e+12 -D-D_->_3He_fusion_rate_at_point_485______________________________________ fusrat_plasma_dd_helion_profile485_ 4.99609721659261133e+12 -D-D_->_3He_fusion_rate_at_point_486______________________________________ fusrat_plasma_dd_helion_profile486_ 3.72596286108341992e+12 -D-D_->_3He_fusion_rate_at_point_487______________________________________ fusrat_plasma_dd_helion_profile487_ 2.70672679797985156e+12 -D-D_->_3He_fusion_rate_at_point_488______________________________________ fusrat_plasma_dd_helion_profile488_ 1.90627819800859888e+12 -D-D_->_3He_fusion_rate_at_point_489______________________________________ fusrat_plasma_dd_helion_profile489_ 1.29365537215212378e+12 -D-D_->_3He_fusion_rate_at_point_490______________________________________ fusrat_plasma_dd_helion_profile490_ 8.39225067662217651e+11 -D-D_->_3He_fusion_rate_at_point_491______________________________________ fusrat_plasma_dd_helion_profile491_ 5.14901110223710266e+11 -D-D_->_3He_fusion_rate_at_point_492______________________________________ fusrat_plasma_dd_helion_profile492_ 2.94410253356969849e+11 -D-D_->_3He_fusion_rate_at_point_493______________________________________ fusrat_plasma_dd_helion_profile493_ 1.53612586130360443e+11 -D-D_->_3He_fusion_rate_at_point_494______________________________________ fusrat_plasma_dd_helion_profile494_ 7.08804787596936646e+10 -D-D_->_3He_fusion_rate_at_point_495______________________________________ fusrat_plasma_dd_helion_profile495_ 2.75303605968534317e+10 -D-D_->_3He_fusion_rate_at_point_496______________________________________ fusrat_plasma_dd_helion_profile496_ 8.27892180966071701e+09 -D-D_->_3He_fusion_rate_at_point_497______________________________________ fusrat_plasma_dd_helion_profile497_ 1.64786112722036171e+09 -D-D_->_3He_fusion_rate_at_point_498______________________________________ fusrat_plasma_dd_helion_profile498_ 1.54049201261564344e+08 -D-D_->_3He_fusion_rate_at_point_499______________________________________ fusrat_plasma_dd_helion_profile499_ 2.53798993751224643e+06 -D-D_->_3He_fusion_rate_at_point_500______________________________________ fusrat_plasma_dd_helion_profile500_ 3.68353606092448302e+01 +Fusion_rate:_total_(reactions/sec)_______________________________________ (fusrat_total)_________________ 5.79316919431855997e+20 OP +Fusion_rate_density:_total_(reactions/m³/sec)____________________________ (fusden_total)_________________ 3.06813774889233088e+17 OP +Fusion_rate_density:_plasma_(reactions/m³/sec)___________________________ (fusden_plasma)________________ 3.06813774889233088e+17 OP +Total_fusion_power_(MW)__________________________________________________ (p_fusion_total_mw)____________ 1.62505179266176174e+03 OP +D-T_fusion_power:_total_(MW)_____________________________________________ (p_dt_total_mw)________________ 1.62310382710618933e+03 OP +DT_fusion_rate_at_point_0________________________________________________ fusrat_plasma_dt_profile0______ 1.06340800390747174e+18 +DT_fusion_rate_at_point_1________________________________________________ fusrat_plasma_dt_profile1______ 1.06339864429410918e+18 +DT_fusion_rate_at_point_2________________________________________________ fusrat_plasma_dt_profile2______ 1.06337056557165466e+18 +DT_fusion_rate_at_point_3________________________________________________ fusrat_plasma_dt_profile3______ 1.06332376809302413e+18 +DT_fusion_rate_at_point_4________________________________________________ fusrat_plasma_dt_profile4______ 1.06325825244648448e+18 +DT_fusion_rate_at_point_5________________________________________________ fusrat_plasma_dt_profile5______ 1.06317401945575539e+18 +DT_fusion_rate_at_point_6________________________________________________ fusrat_plasma_dt_profile6______ 1.06307107018015706e+18 +DT_fusion_rate_at_point_7________________________________________________ fusrat_plasma_dt_profile7______ 1.06294940591479437e+18 +DT_fusion_rate_at_point_8________________________________________________ fusrat_plasma_dt_profile8______ 1.06280902819079424e+18 +DT_fusion_rate_at_point_9________________________________________________ fusrat_plasma_dt_profile9______ 1.06264993877557658e+18 +DT_fusion_rate_at_point_10_______________________________________________ fusrat_plasma_dt_profile10_____ 1.06247213967316211e+18 +DT_fusion_rate_at_point_11_______________________________________________ fusrat_plasma_dt_profile11_____ 1.06227563312454003e+18 +DT_fusion_rate_at_point_12_______________________________________________ fusrat_plasma_dt_profile12_____ 1.06206042160805798e+18 +DT_fusion_rate_at_point_13_______________________________________________ fusrat_plasma_dt_profile13_____ 1.06182650783986701e+18 +DT_fusion_rate_at_point_14_______________________________________________ fusrat_plasma_dt_profile14_____ 1.06157389477440128e+18 +DT_fusion_rate_at_point_15_______________________________________________ fusrat_plasma_dt_profile15_____ 1.06130258560490803e+18 +DT_fusion_rate_at_point_16_______________________________________________ fusrat_plasma_dt_profile16_____ 1.06101258376400883e+18 +DT_fusion_rate_at_point_17_______________________________________________ fusrat_plasma_dt_profile17_____ 1.06070389292431744e+18 +DT_fusion_rate_at_point_18_______________________________________________ fusrat_plasma_dt_profile18_____ 1.06037651699908288e+18 +DT_fusion_rate_at_point_19_______________________________________________ fusrat_plasma_dt_profile19_____ 1.06003046014289062e+18 +DT_fusion_rate_at_point_20_______________________________________________ fusrat_plasma_dt_profile20_____ 1.05966572675239910e+18 +DT_fusion_rate_at_point_21_______________________________________________ fusrat_plasma_dt_profile21_____ 1.05928232146711194e+18 +DT_fusion_rate_at_point_22_______________________________________________ fusrat_plasma_dt_profile22_____ 1.05888024917021453e+18 +DT_fusion_rate_at_point_23_______________________________________________ fusrat_plasma_dt_profile23_____ 1.05845951498942234e+18 +DT_fusion_rate_at_point_24_______________________________________________ fusrat_plasma_dt_profile24_____ 1.05802012429790336e+18 +DT_fusion_rate_at_point_25_______________________________________________ fusrat_plasma_dt_profile25_____ 1.05756208271522061e+18 +DT_fusion_rate_at_point_26_______________________________________________ fusrat_plasma_dt_profile26_____ 1.05708539610833088e+18 +DT_fusion_rate_at_point_27_______________________________________________ fusrat_plasma_dt_profile27_____ 1.05659007059261632e+18 +DT_fusion_rate_at_point_28_______________________________________________ fusrat_plasma_dt_profile28_____ 1.05607611253296794e+18 +DT_fusion_rate_at_point_29_______________________________________________ fusrat_plasma_dt_profile29_____ 1.05554352854491341e+18 +DT_fusion_rate_at_point_30_______________________________________________ fusrat_plasma_dt_profile30_____ 1.05499232549577690e+18 +DT_fusion_rate_at_point_31_______________________________________________ fusrat_plasma_dt_profile31_____ 1.05442251050588915e+18 +DT_fusion_rate_at_point_32_______________________________________________ fusrat_plasma_dt_profile32_____ 1.05383409094985587e+18 +DT_fusion_rate_at_point_33_______________________________________________ fusrat_plasma_dt_profile33_____ 1.05322707445783526e+18 +DT_fusion_rate_at_point_34_______________________________________________ fusrat_plasma_dt_profile34_____ 1.05260146891689638e+18 +DT_fusion_rate_at_point_35_______________________________________________ fusrat_plasma_dt_profile35_____ 1.05195728247239808e+18 +DT_fusion_rate_at_point_36_______________________________________________ fusrat_plasma_dt_profile36_____ 1.05129452352941926e+18 +DT_fusion_rate_at_point_37_______________________________________________ fusrat_plasma_dt_profile37_____ 1.05061320075424013e+18 +DT_fusion_rate_at_point_38_______________________________________________ fusrat_plasma_dt_profile38_____ 1.04991332307585088e+18 +DT_fusion_rate_at_point_39_______________________________________________ fusrat_plasma_dt_profile39_____ 1.04919489968752755e+18 +DT_fusion_rate_at_point_40_______________________________________________ fusrat_plasma_dt_profile40_____ 1.04845794004842970e+18 +DT_fusion_rate_at_point_41_______________________________________________ fusrat_plasma_dt_profile41_____ 1.04770245388525952e+18 +DT_fusion_rate_at_point_42_______________________________________________ fusrat_plasma_dt_profile42_____ 1.04692845119396595e+18 +DT_fusion_rate_at_point_43_______________________________________________ fusrat_plasma_dt_profile43_____ 1.04613594224147686e+18 +DT_fusion_rate_at_point_44_______________________________________________ fusrat_plasma_dt_profile44_____ 1.04532493756749837e+18 +DT_fusion_rate_at_point_45_______________________________________________ fusrat_plasma_dt_profile45_____ 1.04449544798634790e+18 +DT_fusion_rate_at_point_46_______________________________________________ fusrat_plasma_dt_profile46_____ 1.04364748458883187e+18 +DT_fusion_rate_at_point_47_______________________________________________ fusrat_plasma_dt_profile47_____ 1.04278105874417357e+18 +DT_fusion_rate_at_point_48_______________________________________________ fusrat_plasma_dt_profile48_____ 1.04189618210199488e+18 +DT_fusion_rate_at_point_49_______________________________________________ fusrat_plasma_dt_profile49_____ 1.04099286659431872e+18 +DT_fusion_rate_at_point_50_______________________________________________ fusrat_plasma_dt_profile50_____ 1.04007112443765517e+18 +DT_fusion_rate_at_point_51_______________________________________________ fusrat_plasma_dt_profile51_____ 1.03913096813509901e+18 +DT_fusion_rate_at_point_52_______________________________________________ fusrat_plasma_dt_profile52_____ 1.03817241047849498e+18 +DT_fusion_rate_at_point_53_______________________________________________ fusrat_plasma_dt_profile53_____ 1.03719546455064640e+18 +DT_fusion_rate_at_point_54_______________________________________________ fusrat_plasma_dt_profile54_____ 1.03620014372756787e+18 +DT_fusion_rate_at_point_55_______________________________________________ fusrat_plasma_dt_profile55_____ 1.03518646168078618e+18 +DT_fusion_rate_at_point_56_______________________________________________ fusrat_plasma_dt_profile56_____ 1.03415443237969280e+18 +DT_fusion_rate_at_point_57_______________________________________________ fusrat_plasma_dt_profile57_____ 1.03310407009393664e+18 +DT_fusion_rate_at_point_58_______________________________________________ fusrat_plasma_dt_profile58_____ 1.03203538939587610e+18 +DT_fusion_rate_at_point_59_______________________________________________ fusrat_plasma_dt_profile59_____ 1.03094840516307187e+18 +DT_fusion_rate_at_point_60_______________________________________________ fusrat_plasma_dt_profile60_____ 1.02984313258082176e+18 +DT_fusion_rate_at_point_61_______________________________________________ fusrat_plasma_dt_profile61_____ 1.02871958714476621e+18 +DT_fusion_rate_at_point_62_______________________________________________ fusrat_plasma_dt_profile62_____ 1.02757778466352051e+18 +DT_fusion_rate_at_point_63_______________________________________________ fusrat_plasma_dt_profile63_____ 1.02641774126136768e+18 +DT_fusion_rate_at_point_64_______________________________________________ fusrat_plasma_dt_profile64_____ 1.02523947338099277e+18 +DT_fusion_rate_at_point_65_______________________________________________ fusrat_plasma_dt_profile65_____ 1.02404299778629005e+18 +DT_fusion_rate_at_point_66_______________________________________________ fusrat_plasma_dt_profile66_____ 1.02282833156517478e+18 +DT_fusion_rate_at_point_67_______________________________________________ fusrat_plasma_dt_profile67_____ 1.02159549213250637e+18 +DT_fusion_rate_at_point_68_______________________________________________ fusrat_plasma_dt_profile68_____ 1.02034449723300122e+18 +DT_fusion_rate_at_point_69_______________________________________________ fusrat_plasma_dt_profile69_____ 1.01907536494424077e+18 +DT_fusion_rate_at_point_70_______________________________________________ fusrat_plasma_dt_profile70_____ 1.01778811367970995e+18 +DT_fusion_rate_at_point_71_______________________________________________ fusrat_plasma_dt_profile71_____ 1.01648276219189133e+18 +DT_fusion_rate_at_point_72_______________________________________________ fusrat_plasma_dt_profile72_____ 1.01515932957540915e+18 +DT_fusion_rate_at_point_73_______________________________________________ fusrat_plasma_dt_profile73_____ 1.01381783527023232e+18 +DT_fusion_rate_at_point_74_______________________________________________ fusrat_plasma_dt_profile74_____ 1.01245829906491814e+18 +DT_fusion_rate_at_point_75_______________________________________________ fusrat_plasma_dt_profile75_____ 1.01108074109992077e+18 +DT_fusion_rate_at_point_76_______________________________________________ fusrat_plasma_dt_profile76_____ 1.00968518187094502e+18 +DT_fusion_rate_at_point_77_______________________________________________ fusrat_plasma_dt_profile77_____ 1.00827164223235238e+18 +DT_fusion_rate_at_point_78_______________________________________________ fusrat_plasma_dt_profile78_____ 1.00684014340061990e+18 +DT_fusion_rate_at_point_79_______________________________________________ fusrat_plasma_dt_profile79_____ 1.00539070695786291e+18 +DT_fusion_rate_at_point_80_______________________________________________ fusrat_plasma_dt_profile80_____ 1.00392335485540480e+18 +DT_fusion_rate_at_point_81_______________________________________________ fusrat_plasma_dt_profile81_____ 1.00243810941738419e+18 +DT_fusion_rate_at_point_82_______________________________________________ fusrat_plasma_dt_profile82_____ 1.00093499334445555e+18 +DT_fusion_rate_at_point_83_______________________________________________ fusrat_plasma_dt_profile83_____ 9.99414029717500672e+17 +DT_fusion_rate_at_point_84_______________________________________________ fusrat_plasma_dt_profile84_____ 9.97875242001433984e+17 +DT_fusion_rate_at_point_85_______________________________________________ fusrat_plasma_dt_profile85_____ 9.96318654049025152e+17 +DT_fusion_rate_at_point_86_______________________________________________ fusrat_plasma_dt_profile86_____ 9.94744290104819328e+17 +DT_fusion_rate_at_point_87_______________________________________________ fusrat_plasma_dt_profile87_____ 9.93152174809073408e+17 +DT_fusion_rate_at_point_88_______________________________________________ fusrat_plasma_dt_profile88_____ 9.91542333201773440e+17 +DT_fusion_rate_at_point_89_______________________________________________ fusrat_plasma_dt_profile89_____ 9.89914790726702080e+17 +DT_fusion_rate_at_point_90_______________________________________________ fusrat_plasma_dt_profile90_____ 9.88269573235558016e+17 +DT_fusion_rate_at_point_91_______________________________________________ fusrat_plasma_dt_profile91_____ 9.86606706992144256e+17 +DT_fusion_rate_at_point_92_______________________________________________ fusrat_plasma_dt_profile92_____ 9.84926218676595840e+17 +DT_fusion_rate_at_point_93_______________________________________________ fusrat_plasma_dt_profile93_____ 9.83228135389681024e+17 +DT_fusion_rate_at_point_94_______________________________________________ fusrat_plasma_dt_profile94_____ 9.81512484657154688e+17 +DT_fusion_rate_at_point_95_______________________________________________ fusrat_plasma_dt_profile95_____ 9.79779294434168832e+17 +DT_fusion_rate_at_point_96_______________________________________________ fusrat_plasma_dt_profile96_____ 9.78028593109744512e+17 +DT_fusion_rate_at_point_97_______________________________________________ fusrat_plasma_dt_profile97_____ 9.76260409511299072e+17 +DT_fusion_rate_at_point_98_______________________________________________ fusrat_plasma_dt_profile98_____ 9.74474772909234048e+17 +DT_fusion_rate_at_point_99_______________________________________________ fusrat_plasma_dt_profile99_____ 9.72671713021582976e+17 +DT_fusion_rate_at_point_100______________________________________________ fusrat_plasma_dt_profile100____ 9.70851260018727168e+17 +DT_fusion_rate_at_point_101______________________________________________ fusrat_plasma_dt_profile101____ 9.69013444528148736e+17 +DT_fusion_rate_at_point_102______________________________________________ fusrat_plasma_dt_profile102____ 9.67158297639268224e+17 +DT_fusion_rate_at_point_103______________________________________________ fusrat_plasma_dt_profile103____ 9.65285850908332288e+17 +DT_fusion_rate_at_point_104______________________________________________ fusrat_plasma_dt_profile104____ 9.63396136363361536e+17 +DT_fusion_rate_at_point_105______________________________________________ fusrat_plasma_dt_profile105____ 9.61489186509163392e+17 +DT_fusion_rate_at_point_106______________________________________________ fusrat_plasma_dt_profile106____ 9.59565034332399872e+17 +DT_fusion_rate_at_point_107______________________________________________ fusrat_plasma_dt_profile107____ 9.57623713306724096e+17 +DT_fusion_rate_at_point_108______________________________________________ fusrat_plasma_dt_profile108____ 9.55665257397982720e+17 +DT_fusion_rate_at_point_109______________________________________________ fusrat_plasma_dt_profile109____ 9.53689701069464320e+17 +DT_fusion_rate_at_point_110______________________________________________ fusrat_plasma_dt_profile110____ 9.51697079287229184e+17 +DT_fusion_rate_at_point_111______________________________________________ fusrat_plasma_dt_profile111____ 9.49687427525485568e+17 +DT_fusion_rate_at_point_112______________________________________________ fusrat_plasma_dt_profile112____ 9.47660781772046720e+17 +DT_fusion_rate_at_point_113______________________________________________ fusrat_plasma_dt_profile113____ 9.45617178533830272e+17 +DT_fusion_rate_at_point_114______________________________________________ fusrat_plasma_dt_profile114____ 9.43556654842446464e+17 +DT_fusion_rate_at_point_115______________________________________________ fusrat_plasma_dt_profile115____ 9.41479248259825408e+17 +DT_fusion_rate_at_point_116______________________________________________ fusrat_plasma_dt_profile116____ 9.39384996883926400e+17 +DT_fusion_rate_at_point_117______________________________________________ fusrat_plasma_dt_profile117____ 9.37273939354501120e+17 +DT_fusion_rate_at_point_118______________________________________________ fusrat_plasma_dt_profile118____ 9.35146114858931584e+17 +DT_fusion_rate_at_point_119______________________________________________ fusrat_plasma_dt_profile119____ 9.33001563138123136e+17 +DT_fusion_rate_at_point_120______________________________________________ fusrat_plasma_dt_profile120____ 9.30840324492469248e+17 +DT_fusion_rate_at_point_121______________________________________________ fusrat_plasma_dt_profile121____ 9.28662439787876736e+17 +DT_fusion_rate_at_point_122______________________________________________ fusrat_plasma_dt_profile122____ 9.26467950461863680e+17 +DT_fusion_rate_at_point_123______________________________________________ fusrat_plasma_dt_profile123____ 9.24256898529716352e+17 +DT_fusion_rate_at_point_124______________________________________________ fusrat_plasma_dt_profile124____ 9.22029326590713600e+17 +DT_fusion_rate_at_point_125______________________________________________ fusrat_plasma_dt_profile125____ 9.19785277834427520e+17 +DT_fusion_rate_at_point_126______________________________________________ fusrat_plasma_dt_profile126____ 9.17524796047069056e+17 +DT_fusion_rate_at_point_127______________________________________________ fusrat_plasma_dt_profile127____ 9.15247925617927040e+17 +DT_fusion_rate_at_point_128______________________________________________ fusrat_plasma_dt_profile128____ 9.12954711545845760e+17 +DT_fusion_rate_at_point_129______________________________________________ fusrat_plasma_dt_profile129____ 9.10645199445801600e+17 +DT_fusion_rate_at_point_130______________________________________________ fusrat_plasma_dt_profile130____ 9.08319435555513984e+17 +DT_fusion_rate_at_point_131______________________________________________ fusrat_plasma_dt_profile131____ 9.05977466742150144e+17 +DT_fusion_rate_at_point_132______________________________________________ fusrat_plasma_dt_profile132____ 9.03619340509080064e+17 +DT_fusion_rate_at_point_133______________________________________________ fusrat_plasma_dt_profile133____ 9.01245105002712960e+17 +DT_fusion_rate_at_point_134______________________________________________ fusrat_plasma_dt_profile134____ 8.98854809019382016e+17 +DT_fusion_rate_at_point_135______________________________________________ fusrat_plasma_dt_profile135____ 8.96448502012323712e+17 +DT_fusion_rate_at_point_136______________________________________________ fusrat_plasma_dt_profile136____ 8.94026234098699904e+17 +DT_fusion_rate_at_point_137______________________________________________ fusrat_plasma_dt_profile137____ 8.91588056066700928e+17 +DT_fusion_rate_at_point_138______________________________________________ fusrat_plasma_dt_profile138____ 8.89134019382718976e+17 +DT_fusion_rate_at_point_139______________________________________________ fusrat_plasma_dt_profile139____ 8.86664176198577664e+17 +DT_fusion_rate_at_point_140______________________________________________ fusrat_plasma_dt_profile140____ 8.84178579358843136e+17 +DT_fusion_rate_at_point_141______________________________________________ fusrat_plasma_dt_profile141____ 8.81677282408194688e+17 +DT_fusion_rate_at_point_142______________________________________________ fusrat_plasma_dt_profile142____ 8.79160339598863488e+17 +DT_fusion_rate_at_point_143______________________________________________ fusrat_plasma_dt_profile143____ 8.76627805898146944e+17 +DT_fusion_rate_at_point_144______________________________________________ fusrat_plasma_dt_profile144____ 8.74079736995983872e+17 +DT_fusion_rate_at_point_145______________________________________________ fusrat_plasma_dt_profile145____ 8.71516189312598528e+17 +DT_fusion_rate_at_point_146______________________________________________ fusrat_plasma_dt_profile146____ 8.68937220006214656e+17 +DT_fusion_rate_at_point_147______________________________________________ fusrat_plasma_dt_profile147____ 8.66342886980841984e+17 +DT_fusion_rate_at_point_148______________________________________________ fusrat_plasma_dt_profile148____ 8.63733248894116224e+17 +DT_fusion_rate_at_point_149______________________________________________ fusrat_plasma_dt_profile149____ 8.61108365165221632e+17 +DT_fusion_rate_at_point_150______________________________________________ fusrat_plasma_dt_profile150____ 8.58468295982877440e+17 +DT_fusion_rate_at_point_151______________________________________________ fusrat_plasma_dt_profile151____ 8.55813102313378944e+17 +DT_fusion_rate_at_point_152______________________________________________ fusrat_plasma_dt_profile152____ 8.53142845908727808e+17 +DT_fusion_rate_at_point_153______________________________________________ fusrat_plasma_dt_profile153____ 8.50457589314812672e+17 +DT_fusion_rate_at_point_154______________________________________________ fusrat_plasma_dt_profile154____ 8.47757395879656576e+17 +DT_fusion_rate_at_point_155______________________________________________ fusrat_plasma_dt_profile155____ 8.45042329761742592e+17 +DT_fusion_rate_at_point_156______________________________________________ fusrat_plasma_dt_profile156____ 8.42312455938392960e+17 +DT_fusion_rate_at_point_157______________________________________________ fusrat_plasma_dt_profile157____ 8.39567840214220288e+17 +DT_fusion_rate_at_point_158______________________________________________ fusrat_plasma_dt_profile158____ 8.36808549229640832e+17 +DT_fusion_rate_at_point_159______________________________________________ fusrat_plasma_dt_profile159____ 8.34034650469456640e+17 +DT_fusion_rate_at_point_160______________________________________________ fusrat_plasma_dt_profile160____ 8.31246212271501184e+17 +DT_fusion_rate_at_point_161______________________________________________ fusrat_plasma_dt_profile161____ 8.28443303835340544e+17 +DT_fusion_rate_at_point_162______________________________________________ fusrat_plasma_dt_profile162____ 8.25625995231051904e+17 +DT_fusion_rate_at_point_163______________________________________________ fusrat_plasma_dt_profile163____ 8.22794357408055680e+17 +DT_fusion_rate_at_point_164______________________________________________ fusrat_plasma_dt_profile164____ 8.19948462204010624e+17 +DT_fusion_rate_at_point_165______________________________________________ fusrat_plasma_dt_profile165____ 8.17088382353774720e+17 +DT_fusion_rate_at_point_166______________________________________________ fusrat_plasma_dt_profile166____ 8.14214191498422912e+17 +DT_fusion_rate_at_point_167______________________________________________ fusrat_plasma_dt_profile167____ 8.11325964194327808e+17 +DT_fusion_rate_at_point_168______________________________________________ fusrat_plasma_dt_profile168____ 8.08423775922301568e+17 +DT_fusion_rate_at_point_169______________________________________________ fusrat_plasma_dt_profile169____ 8.05507703096789248e+17 +DT_fusion_rate_at_point_170______________________________________________ fusrat_plasma_dt_profile170____ 8.02577823075128448e+17 +DT_fusion_rate_at_point_171______________________________________________ fusrat_plasma_dt_profile171____ 7.99634214166863744e+17 +DT_fusion_rate_at_point_172______________________________________________ fusrat_plasma_dt_profile172____ 7.96676955643114496e+17 +DT_fusion_rate_at_point_173______________________________________________ fusrat_plasma_dt_profile173____ 7.93706127746001152e+17 +DT_fusion_rate_at_point_174______________________________________________ fusrat_plasma_dt_profile174____ 7.90721811698125440e+17 +DT_fusion_rate_at_point_175______________________________________________ fusrat_plasma_dt_profile175____ 7.87724089712102656e+17 +DT_fusion_rate_at_point_176______________________________________________ fusrat_plasma_dt_profile176____ 7.84713045000144512e+17 +DT_fusion_rate_at_point_177______________________________________________ fusrat_plasma_dt_profile177____ 7.81688761783701760e+17 +DT_fusion_rate_at_point_178______________________________________________ fusrat_plasma_dt_profile178____ 7.78651325303140992e+17 +DT_fusion_rate_at_point_179______________________________________________ fusrat_plasma_dt_profile179____ 7.75600821827485952e+17 +DT_fusion_rate_at_point_180______________________________________________ fusrat_plasma_dt_profile180____ 7.72537338664195328e+17 +DT_fusion_rate_at_point_181______________________________________________ fusrat_plasma_dt_profile181____ 7.69460964168989824e+17 +DT_fusion_rate_at_point_182______________________________________________ fusrat_plasma_dt_profile182____ 7.66371787755726080e+17 +DT_fusion_rate_at_point_183______________________________________________ fusrat_plasma_dt_profile183____ 7.63269899906309760e+17 +DT_fusion_rate_at_point_184______________________________________________ fusrat_plasma_dt_profile184____ 7.60155392180649728e+17 +DT_fusion_rate_at_point_185______________________________________________ fusrat_plasma_dt_profile185____ 7.57028357226651648e+17 +DT_fusion_rate_at_point_186______________________________________________ fusrat_plasma_dt_profile186____ 7.53888888790255744e+17 +DT_fusion_rate_at_point_187______________________________________________ fusrat_plasma_dt_profile187____ 7.50737081725498752e+17 +DT_fusion_rate_at_point_188______________________________________________ fusrat_plasma_dt_profile188____ 7.47573032004623872e+17 +DT_fusion_rate_at_point_189______________________________________________ fusrat_plasma_dt_profile189____ 7.44396836728205952e+17 +DT_fusion_rate_at_point_190______________________________________________ fusrat_plasma_dt_profile190____ 7.41208594135325184e+17 +DT_fusion_rate_at_point_191______________________________________________ fusrat_plasma_dt_profile191____ 7.38008403613756544e+17 +DT_fusion_rate_at_point_192______________________________________________ fusrat_plasma_dt_profile192____ 7.34796365710188032e+17 +DT_fusion_rate_at_point_193______________________________________________ fusrat_plasma_dt_profile193____ 7.31572582140458752e+17 +DT_fusion_rate_at_point_194______________________________________________ fusrat_plasma_dt_profile194____ 7.28337155799829376e+17 +DT_fusion_rate_at_point_195______________________________________________ fusrat_plasma_dt_profile195____ 7.25090190773260288e+17 +DT_fusion_rate_at_point_196______________________________________________ fusrat_plasma_dt_profile196____ 7.21831792345709568e+17 +DT_fusion_rate_at_point_197______________________________________________ fusrat_plasma_dt_profile197____ 7.18562067012440704e+17 +DT_fusion_rate_at_point_198______________________________________________ fusrat_plasma_dt_profile198____ 7.15281122489352064e+17 +DT_fusion_rate_at_point_199______________________________________________ fusrat_plasma_dt_profile199____ 7.11989067723299200e+17 +DT_fusion_rate_at_point_200______________________________________________ fusrat_plasma_dt_profile200____ 7.08686012902431616e+17 +DT_fusion_rate_at_point_201______________________________________________ fusrat_plasma_dt_profile201____ 7.05372069466535424e+17 +DT_fusion_rate_at_point_202______________________________________________ fusrat_plasma_dt_profile202____ 7.02047350117356928e+17 +DT_fusion_rate_at_point_203______________________________________________ fusrat_plasma_dt_profile203____ 6.98711968828941184e+17 +DT_fusion_rate_at_point_204______________________________________________ fusrat_plasma_dt_profile204____ 6.95366040857952768e+17 +DT_fusion_rate_at_point_205______________________________________________ fusrat_plasma_dt_profile205____ 6.92009682753984512e+17 +DT_fusion_rate_at_point_206______________________________________________ fusrat_plasma_dt_profile206____ 6.88643012369856640e+17 +DT_fusion_rate_at_point_207______________________________________________ fusrat_plasma_dt_profile207____ 6.85266148871888640e+17 +DT_fusion_rate_at_point_208______________________________________________ fusrat_plasma_dt_profile208____ 6.81879212750158848e+17 +DT_fusion_rate_at_point_209______________________________________________ fusrat_plasma_dt_profile209____ 6.78482325828726272e+17 +DT_fusion_rate_at_point_210______________________________________________ fusrat_plasma_dt_profile210____ 6.75075611275832832e+17 +DT_fusion_rate_at_point_211______________________________________________ fusrat_plasma_dt_profile211____ 6.71659193614056448e+17 +DT_fusion_rate_at_point_212______________________________________________ fusrat_plasma_dt_profile212____ 6.68233198730441600e+17 +DT_fusion_rate_at_point_213______________________________________________ fusrat_plasma_dt_profile213____ 6.64797753886568960e+17 +DT_fusion_rate_at_point_214______________________________________________ fusrat_plasma_dt_profile214____ 6.61352987728585984e+17 +DT_fusion_rate_at_point_215______________________________________________ fusrat_plasma_dt_profile215____ 6.57899030297187072e+17 +DT_fusion_rate_at_point_216______________________________________________ fusrat_plasma_dt_profile216____ 6.54436013037521792e+17 +DT_fusion_rate_at_point_217______________________________________________ fusrat_plasma_dt_profile217____ 6.50964068809051264e+17 +DT_fusion_rate_at_point_218______________________________________________ fusrat_plasma_dt_profile218____ 6.47483331895330048e+17 +DT_fusion_rate_at_point_219______________________________________________ fusrat_plasma_dt_profile219____ 6.43993938013715200e+17 +DT_fusion_rate_at_point_220______________________________________________ fusrat_plasma_dt_profile220____ 6.40496024324995712e+17 +DT_fusion_rate_at_point_221______________________________________________ fusrat_plasma_dt_profile221____ 6.36989729442931072e+17 +DT_fusion_rate_at_point_222______________________________________________ fusrat_plasma_dt_profile222____ 6.33475193443707264e+17 +DT_fusion_rate_at_point_223______________________________________________ fusrat_plasma_dt_profile223____ 6.29952557875283584e+17 +DT_fusion_rate_at_point_224______________________________________________ fusrat_plasma_dt_profile224____ 6.26421965766641536e+17 +DT_fusion_rate_at_point_225______________________________________________ fusrat_plasma_dt_profile225____ 6.22883561636922624e+17 +DT_fusion_rate_at_point_226______________________________________________ fusrat_plasma_dt_profile226____ 6.19337491504447488e+17 +DT_fusion_rate_at_point_227______________________________________________ fusrat_plasma_dt_profile227____ 6.15783902895607936e+17 +DT_fusion_rate_at_point_228______________________________________________ fusrat_plasma_dt_profile228____ 6.12222944853633792e+17 +DT_fusion_rate_at_point_229______________________________________________ fusrat_plasma_dt_profile229____ 6.08654767947209344e+17 +DT_fusion_rate_at_point_230______________________________________________ fusrat_plasma_dt_profile230____ 6.05079524278958720e+17 +DT_fusion_rate_at_point_231______________________________________________ fusrat_plasma_dt_profile231____ 6.01497367493765632e+17 +DT_fusion_rate_at_point_232______________________________________________ fusrat_plasma_dt_profile232____ 5.97908452786931456e+17 +DT_fusion_rate_at_point_233______________________________________________ fusrat_plasma_dt_profile233____ 5.94312936912170496e+17 +DT_fusion_rate_at_point_234______________________________________________ fusrat_plasma_dt_profile234____ 5.90710978189421824e+17 +DT_fusion_rate_at_point_235______________________________________________ fusrat_plasma_dt_profile235____ 5.87102736512473472e+17 +DT_fusion_rate_at_point_236______________________________________________ fusrat_plasma_dt_profile236____ 5.83488373356389760e+17 +DT_fusion_rate_at_point_237______________________________________________ fusrat_plasma_dt_profile237____ 5.79868051784742656e+17 +DT_fusion_rate_at_point_238______________________________________________ fusrat_plasma_dt_profile238____ 5.76241936456618112e+17 +DT_fusion_rate_at_point_239______________________________________________ fusrat_plasma_dt_profile239____ 5.72610193633399936e+17 +DT_fusion_rate_at_point_240______________________________________________ fusrat_plasma_dt_profile240____ 5.68972991185333440e+17 +DT_fusion_rate_at_point_241______________________________________________ fusrat_plasma_dt_profile241____ 5.65330498597827392e+17 +DT_fusion_rate_at_point_242______________________________________________ fusrat_plasma_dt_profile242____ 5.61682886977515520e+17 +DT_fusion_rate_at_point_243______________________________________________ fusrat_plasma_dt_profile243____ 5.58030329058047552e+17 +DT_fusion_rate_at_point_244______________________________________________ fusrat_plasma_dt_profile244____ 5.54372999205611520e+17 +DT_fusion_rate_at_point_245______________________________________________ fusrat_plasma_dt_profile245____ 5.50711073424165312e+17 +DT_fusion_rate_at_point_246______________________________________________ fusrat_plasma_dt_profile246____ 5.47044729360373184e+17 +DT_fusion_rate_at_point_247______________________________________________ fusrat_plasma_dt_profile247____ 5.43374146308232384e+17 +DT_fusion_rate_at_point_248______________________________________________ fusrat_plasma_dt_profile248____ 5.39699505213385088e+17 +DT_fusion_rate_at_point_249______________________________________________ fusrat_plasma_dt_profile249____ 5.36020988677089920e+17 +DT_fusion_rate_at_point_250______________________________________________ fusrat_plasma_dt_profile250____ 5.32338780959858240e+17 +DT_fusion_rate_at_point_251______________________________________________ fusrat_plasma_dt_profile251____ 5.28653067984726976e+17 +DT_fusion_rate_at_point_252______________________________________________ fusrat_plasma_dt_profile252____ 5.24964037340160704e+17 +DT_fusion_rate_at_point_253______________________________________________ fusrat_plasma_dt_profile253____ 5.21271878282577408e+17 +DT_fusion_rate_at_point_254______________________________________________ fusrat_plasma_dt_profile254____ 5.17576781738471232e+17 +DT_fusion_rate_at_point_255______________________________________________ fusrat_plasma_dt_profile255____ 5.13878940306128832e+17 +DT_fusion_rate_at_point_256______________________________________________ fusrat_plasma_dt_profile256____ 5.10178548256919488e+17 +DT_fusion_rate_at_point_257______________________________________________ fusrat_plasma_dt_profile257____ 5.06475801536145728e+17 +DT_fusion_rate_at_point_258______________________________________________ fusrat_plasma_dt_profile258____ 5.02770897763446016e+17 +DT_fusion_rate_at_point_259______________________________________________ fusrat_plasma_dt_profile259____ 4.99064036232724800e+17 +DT_fusion_rate_at_point_260______________________________________________ fusrat_plasma_dt_profile260____ 4.95355417911597824e+17 +DT_fusion_rate_at_point_261______________________________________________ fusrat_plasma_dt_profile261____ 4.91645245440342400e+17 +DT_fusion_rate_at_point_262______________________________________________ fusrat_plasma_dt_profile262____ 4.87933723130334592e+17 +DT_fusion_rate_at_point_263______________________________________________ fusrat_plasma_dt_profile263____ 4.84221056961949952e+17 +DT_fusion_rate_at_point_264______________________________________________ fusrat_plasma_dt_profile264____ 4.80507454581922176e+17 +DT_fusion_rate_at_point_265______________________________________________ fusrat_plasma_dt_profile265____ 4.76793125300135232e+17 +DT_fusion_rate_at_point_266______________________________________________ fusrat_plasma_dt_profile266____ 4.73078280085840064e+17 +DT_fusion_rate_at_point_267______________________________________________ fusrat_plasma_dt_profile267____ 4.69363131563261504e+17 +DT_fusion_rate_at_point_268______________________________________________ fusrat_plasma_dt_profile268____ 4.65647894006606272e+17 +DT_fusion_rate_at_point_269______________________________________________ fusrat_plasma_dt_profile269____ 4.61932783334423744e+17 +DT_fusion_rate_at_point_270______________________________________________ fusrat_plasma_dt_profile270____ 4.58218017103322432e+17 +DT_fusion_rate_at_point_271______________________________________________ fusrat_plasma_dt_profile271____ 4.54503814501010112e+17 +DT_fusion_rate_at_point_272______________________________________________ fusrat_plasma_dt_profile272____ 4.50790396338658944e+17 +DT_fusion_rate_at_point_273______________________________________________ fusrat_plasma_dt_profile273____ 4.47077985042542080e+17 +DT_fusion_rate_at_point_274______________________________________________ fusrat_plasma_dt_profile274____ 4.43366804644963648e+17 +DT_fusion_rate_at_point_275______________________________________________ fusrat_plasma_dt_profile275____ 4.39657080774427968e+17 +DT_fusion_rate_at_point_276______________________________________________ fusrat_plasma_dt_profile276____ 4.35949040645050240e+17 +DT_fusion_rate_at_point_277______________________________________________ fusrat_plasma_dt_profile277____ 4.32242913045176640e+17 +DT_fusion_rate_at_point_278______________________________________________ fusrat_plasma_dt_profile278____ 4.28538928325198848e+17 +DT_fusion_rate_at_point_279______________________________________________ fusrat_plasma_dt_profile279____ 4.24837318384543040e+17 +DT_fusion_rate_at_point_280______________________________________________ fusrat_plasma_dt_profile280____ 4.21138316657806336e+17 +DT_fusion_rate_at_point_281______________________________________________ fusrat_plasma_dt_profile281____ 4.17442158100028096e+17 +DT_fusion_rate_at_point_282______________________________________________ fusrat_plasma_dt_profile282____ 4.13749079171068032e+17 +DT_fusion_rate_at_point_283______________________________________________ fusrat_plasma_dt_profile283____ 4.10059317819071552e+17 +DT_fusion_rate_at_point_284______________________________________________ fusrat_plasma_dt_profile284____ 4.06373113463005056e+17 +DT_fusion_rate_at_point_285______________________________________________ fusrat_plasma_dt_profile285____ 4.02690706974232576e+17 +DT_fusion_rate_at_point_286______________________________________________ fusrat_plasma_dt_profile286____ 3.99012340657110720e+17 +DT_fusion_rate_at_point_287______________________________________________ fusrat_plasma_dt_profile287____ 3.95338258228596480e+17 +DT_fusion_rate_at_point_288______________________________________________ fusrat_plasma_dt_profile288____ 3.91668704796812608e+17 +DT_fusion_rate_at_point_289______________________________________________ fusrat_plasma_dt_profile289____ 3.88003926838588672e+17 +DT_fusion_rate_at_point_290______________________________________________ fusrat_plasma_dt_profile290____ 3.84344172175919296e+17 +DT_fusion_rate_at_point_291______________________________________________ fusrat_plasma_dt_profile291____ 3.80689689951342400e+17 +DT_fusion_rate_at_point_292______________________________________________ fusrat_plasma_dt_profile292____ 3.77040730602194688e+17 +DT_fusion_rate_at_point_293______________________________________________ fusrat_plasma_dt_profile293____ 3.73397545833740864e+17 +DT_fusion_rate_at_point_294______________________________________________ fusrat_plasma_dt_profile294____ 3.69760388591136256e+17 +DT_fusion_rate_at_point_295______________________________________________ fusrat_plasma_dt_profile295____ 3.66129513030212096e+17 +DT_fusion_rate_at_point_296______________________________________________ fusrat_plasma_dt_profile296____ 3.62505174487054848e+17 +DT_fusion_rate_at_point_297______________________________________________ fusrat_plasma_dt_profile297____ 3.58887629446358080e+17 +DT_fusion_rate_at_point_298______________________________________________ fusrat_plasma_dt_profile298____ 3.55277135508522304e+17 +DT_fusion_rate_at_point_299______________________________________________ fusrat_plasma_dt_profile299____ 3.51673951355485568e+17 +DT_fusion_rate_at_point_300______________________________________________ fusrat_plasma_dt_profile300____ 3.48078336715254336e+17 +DT_fusion_rate_at_point_301______________________________________________ fusrat_plasma_dt_profile301____ 3.44490552325119424e+17 +DT_fusion_rate_at_point_302______________________________________________ fusrat_plasma_dt_profile302____ 3.40910859893530112e+17 +DT_fusion_rate_at_point_303______________________________________________ fusrat_plasma_dt_profile303____ 3.37339522060605952e+17 +DT_fusion_rate_at_point_304______________________________________________ fusrat_plasma_dt_profile304____ 3.33776802357264704e+17 +DT_fusion_rate_at_point_305______________________________________________ fusrat_plasma_dt_profile305____ 3.30222965162944768e+17 +DT_fusion_rate_at_point_306______________________________________________ fusrat_plasma_dt_profile306____ 3.26678275661902336e+17 +DT_fusion_rate_at_point_307______________________________________________ fusrat_plasma_dt_profile307____ 3.23142999798057216e+17 +DT_fusion_rate_at_point_308______________________________________________ fusrat_plasma_dt_profile308____ 3.19617404228372992e+17 +DT_fusion_rate_at_point_309______________________________________________ fusrat_plasma_dt_profile309____ 3.16101756274753280e+17 +DT_fusion_rate_at_point_310______________________________________________ fusrat_plasma_dt_profile310____ 3.12596323874420992e+17 +DT_fusion_rate_at_point_311______________________________________________ fusrat_plasma_dt_profile311____ 3.09101375528783488e+17 +DT_fusion_rate_at_point_312______________________________________________ fusrat_plasma_dt_profile312____ 3.05617180250744064e+17 +DT_fusion_rate_at_point_313______________________________________________ fusrat_plasma_dt_profile313____ 3.02144007510455424e+17 +DT_fusion_rate_at_point_314______________________________________________ fusrat_plasma_dt_profile314____ 2.98682127179493376e+17 +DT_fusion_rate_at_point_315______________________________________________ fusrat_plasma_dt_profile315____ 2.95231809473438016e+17 +DT_fusion_rate_at_point_316______________________________________________ fusrat_plasma_dt_profile316____ 2.91793324892840576e+17 +DT_fusion_rate_at_point_317______________________________________________ fusrat_plasma_dt_profile317____ 2.88366944162568640e+17 +DT_fusion_rate_at_point_318______________________________________________ fusrat_plasma_dt_profile318____ 2.84952938169511936e+17 +DT_fusion_rate_at_point_319______________________________________________ fusrat_plasma_dt_profile319____ 2.81551577898638976e+17 +DT_fusion_rate_at_point_320______________________________________________ fusrat_plasma_dt_profile320____ 2.78163134367386336e+17 +DT_fusion_rate_at_point_321______________________________________________ fusrat_plasma_dt_profile321____ 2.74787878558385184e+17 +DT_fusion_rate_at_point_322______________________________________________ fusrat_plasma_dt_profile322____ 2.71426081350495104e+17 +DT_fusion_rate_at_point_323______________________________________________ fusrat_plasma_dt_profile323____ 2.68078013448158048e+17 +DT_fusion_rate_at_point_324______________________________________________ fusrat_plasma_dt_profile324____ 2.64743945309050336e+17 +DT_fusion_rate_at_point_325______________________________________________ fusrat_plasma_dt_profile325____ 2.61424147070035680e+17 +DT_fusion_rate_at_point_326______________________________________________ fusrat_plasma_dt_profile326____ 2.58118888471414496e+17 +DT_fusion_rate_at_point_327______________________________________________ fusrat_plasma_dt_profile327____ 2.54828438779466656e+17 +DT_fusion_rate_at_point_328______________________________________________ fusrat_plasma_dt_profile328____ 2.51553066707285312e+17 +DT_fusion_rate_at_point_329______________________________________________ fusrat_plasma_dt_profile329____ 2.48293040333908288e+17 +DT_fusion_rate_at_point_330______________________________________________ fusrat_plasma_dt_profile330____ 2.45048627021745152e+17 +DT_fusion_rate_at_point_331______________________________________________ fusrat_plasma_dt_profile331____ 2.41820093332307232e+17 +DT_fusion_rate_at_point_332______________________________________________ fusrat_plasma_dt_profile332____ 2.38607704940249184e+17 +DT_fusion_rate_at_point_333______________________________________________ fusrat_plasma_dt_profile333____ 2.35411726545727840e+17 +DT_fusion_rate_at_point_334______________________________________________ fusrat_plasma_dt_profile334____ 2.32232421785091776e+17 +DT_fusion_rate_at_point_335______________________________________________ fusrat_plasma_dt_profile335____ 2.29070053139915488e+17 +DT_fusion_rate_at_point_336______________________________________________ fusrat_plasma_dt_profile336____ 2.25924881844394080e+17 +DT_fusion_rate_at_point_337______________________________________________ fusrat_plasma_dt_profile337____ 2.22797167791112672e+17 +DT_fusion_rate_at_point_338______________________________________________ fusrat_plasma_dt_profile338____ 2.19687169435219520e+17 +DT_fusion_rate_at_point_339______________________________________________ fusrat_plasma_dt_profile339____ 2.16595143697017600e+17 +DT_fusion_rate_at_point_340______________________________________________ fusrat_plasma_dt_profile340____ 2.13521345863006208e+17 +DT_fusion_rate_at_point_341______________________________________________ fusrat_plasma_dt_profile341____ 2.10466029485400672e+17 +DT_fusion_rate_at_point_342______________________________________________ fusrat_plasma_dt_profile342____ 2.07429446280159360e+17 +DT_fusion_rate_at_point_343______________________________________________ fusrat_plasma_dt_profile343____ 2.04411846023557120e+17 +DT_fusion_rate_at_point_344______________________________________________ fusrat_plasma_dt_profile344____ 2.01413476447338400e+17 +DT_fusion_rate_at_point_345______________________________________________ fusrat_plasma_dt_profile345____ 1.98434583132493760e+17 +DT_fusion_rate_at_point_346______________________________________________ fusrat_plasma_dt_profile346____ 1.95475409401704960e+17 +DT_fusion_rate_at_point_347______________________________________________ fusrat_plasma_dt_profile347____ 1.92536196210501376e+17 +DT_fusion_rate_at_point_348______________________________________________ fusrat_plasma_dt_profile348____ 1.89617182037185792e+17 +DT_fusion_rate_at_point_349______________________________________________ fusrat_plasma_dt_profile349____ 1.86718602771576128e+17 +DT_fusion_rate_at_point_350______________________________________________ fusrat_plasma_dt_profile350____ 1.83840691602630912e+17 +DT_fusion_rate_at_point_351______________________________________________ fusrat_plasma_dt_profile351____ 1.80983678905005984e+17 +DT_fusion_rate_at_point_352______________________________________________ fusrat_plasma_dt_profile352____ 1.78147792124626112e+17 +DT_fusion_rate_at_point_353______________________________________________ fusrat_plasma_dt_profile353____ 1.75333255663323104e+17 +DT_fusion_rate_at_point_354______________________________________________ fusrat_plasma_dt_profile354____ 1.72540290762626752e+17 +DT_fusion_rate_at_point_355______________________________________________ fusrat_plasma_dt_profile355____ 1.69769115386776128e+17 +DT_fusion_rate_at_point_356______________________________________________ fusrat_plasma_dt_profile356____ 1.67019944105040384e+17 +DT_fusion_rate_at_point_357______________________________________________ fusrat_plasma_dt_profile357____ 1.64292987973427328e+17 +DT_fusion_rate_at_point_358______________________________________________ fusrat_plasma_dt_profile358____ 1.61588454415873504e+17 +DT_fusion_rate_at_point_359______________________________________________ fusrat_plasma_dt_profile359____ 1.58906547105006528e+17 +DT_fusion_rate_at_point_360______________________________________________ fusrat_plasma_dt_profile360____ 1.56247465842580096e+17 +DT_fusion_rate_at_point_361______________________________________________ fusrat_plasma_dt_profile361____ 1.53611406439678400e+17 +DT_fusion_rate_at_point_362______________________________________________ fusrat_plasma_dt_profile362____ 1.50998560596802784e+17 +DT_fusion_rate_at_point_363______________________________________________ fusrat_plasma_dt_profile363____ 1.48409115783944288e+17 +DT_fusion_rate_at_point_364______________________________________________ fusrat_plasma_dt_profile364____ 1.45843255120761376e+17 +DT_fusion_rate_at_point_365______________________________________________ fusrat_plasma_dt_profile365____ 1.43301157256978544e+17 +DT_fusion_rate_at_point_366______________________________________________ fusrat_plasma_dt_profile366____ 1.40782996253132992e+17 +DT_fusion_rate_at_point_367______________________________________________ fusrat_plasma_dt_profile367____ 1.38288941461789456e+17 +DT_fusion_rate_at_point_368______________________________________________ fusrat_plasma_dt_profile368____ 1.35819157409364000e+17 +DT_fusion_rate_at_point_369______________________________________________ fusrat_plasma_dt_profile369____ 1.33373803678684160e+17 +DT_fusion_rate_at_point_370______________________________________________ fusrat_plasma_dt_profile370____ 1.30953034792432208e+17 +DT_fusion_rate_at_point_371______________________________________________ fusrat_plasma_dt_profile371____ 1.28557000097609440e+17 +DT_fusion_rate_at_point_372______________________________________________ fusrat_plasma_dt_profile372____ 1.26185843651174960e+17 +DT_fusion_rate_at_point_373______________________________________________ fusrat_plasma_dt_profile373____ 1.23839704107005328e+17 +DT_fusion_rate_at_point_374______________________________________________ fusrat_plasma_dt_profile374____ 1.21518714604339728e+17 +DT_fusion_rate_at_point_375______________________________________________ fusrat_plasma_dt_profile375____ 1.19223002657856672e+17 +DT_fusion_rate_at_point_376______________________________________________ fusrat_plasma_dt_profile376____ 1.16952690049561168e+17 +DT_fusion_rate_at_point_377______________________________________________ fusrat_plasma_dt_profile377____ 1.14707892722635600e+17 +DT_fusion_rate_at_point_378______________________________________________ fusrat_plasma_dt_profile378____ 1.12488720677434320e+17 +DT_fusion_rate_at_point_379______________________________________________ fusrat_plasma_dt_profile379____ 1.10295277869787792e+17 +DT_fusion_rate_at_point_380______________________________________________ fusrat_plasma_dt_profile380____ 1.08127662111798320e+17 +DT_fusion_rate_at_point_381______________________________________________ fusrat_plasma_dt_profile381____ 1.05985964975305392e+17 +DT_fusion_rate_at_point_382______________________________________________ fusrat_plasma_dt_profile382____ 1.03870271698198720e+17 +DT_fusion_rate_at_point_383______________________________________________ fusrat_plasma_dt_profile383____ 1.01780661093769040e+17 +DT_fusion_rate_at_point_384______________________________________________ fusrat_plasma_dt_profile384____ 9.97172054632815360e+16 +DT_fusion_rate_at_point_385______________________________________________ fusrat_plasma_dt_profile385____ 9.76799705119582080e+16 +DT_fusion_rate_at_point_386______________________________________________ fusrat_plasma_dt_profile386____ 9.56690152685638720e+16 +DT_fusion_rate_at_point_387______________________________________________ fusrat_plasma_dt_profile387____ 9.36843920087860960e+16 +DT_fusion_rate_at_point_388______________________________________________ fusrat_plasma_dt_profile388____ 9.17261461826030080e+16 +DT_fusion_rate_at_point_389______________________________________________ fusrat_plasma_dt_profile389____ 8.97943163458342720e+16 +DT_fusion_rate_at_point_390______________________________________________ fusrat_plasma_dt_profile390____ 8.78889340960691680e+16 +DT_fusion_rate_at_point_391______________________________________________ fusrat_plasma_dt_profile391____ 8.60100240131719040e+16 +DT_fusion_rate_at_point_392______________________________________________ fusrat_plasma_dt_profile392____ 8.41576036045553600e+16 +DT_fusion_rate_at_point_393______________________________________________ fusrat_plasma_dt_profile393____ 8.23316832554248640e+16 +DT_fusion_rate_at_point_394______________________________________________ fusrat_plasma_dt_profile394____ 8.05322661841841440e+16 +DT_fusion_rate_at_point_395______________________________________________ fusrat_plasma_dt_profile395____ 7.87593484032018720e+16 +DT_fusion_rate_at_point_396______________________________________________ fusrat_plasma_dt_profile396____ 7.70129186851322400e+16 +DT_fusion_rate_at_point_397______________________________________________ fusrat_plasma_dt_profile397____ 7.52929585349852800e+16 +DT_fusion_rate_at_point_398______________________________________________ fusrat_plasma_dt_profile398____ 7.35994421681352960e+16 +DT_fusion_rate_at_point_399______________________________________________ fusrat_plasma_dt_profile399____ 7.19323364944645120e+16 +DT_fusion_rate_at_point_400______________________________________________ fusrat_plasma_dt_profile400____ 7.02916011088259280e+16 +DT_fusion_rate_at_point_401______________________________________________ fusrat_plasma_dt_profile401____ 6.86771882880151440e+16 +DT_fusion_rate_at_point_402______________________________________________ fusrat_plasma_dt_profile402____ 6.70890429944345440e+16 +DT_fusion_rate_at_point_403______________________________________________ fusrat_plasma_dt_profile403____ 6.55271028866377840e+16 +DT_fusion_rate_at_point_404______________________________________________ fusrat_plasma_dt_profile404____ 6.39912983369270080e+16 +DT_fusion_rate_at_point_405______________________________________________ fusrat_plasma_dt_profile405____ 6.24815524561891440e+16 +DT_fusion_rate_at_point_406______________________________________________ fusrat_plasma_dt_profile406____ 6.09977811261419920e+16 +DT_fusion_rate_at_point_407______________________________________________ fusrat_plasma_dt_profile407____ 5.95398930391668800e+16 +DT_fusion_rate_at_point_408______________________________________________ fusrat_plasma_dt_profile408____ 5.81077897458975840e+16 +DT_fusion_rate_at_point_409______________________________________________ fusrat_plasma_dt_profile409____ 5.67013657107382400e+16 +DT_fusion_rate_at_point_410______________________________________________ fusrat_plasma_dt_profile410____ 5.53205083754755200e+16 +DT_fusion_rate_at_point_411______________________________________________ fusrat_plasma_dt_profile411____ 5.39650982311557760e+16 +DT_fusion_rate_at_point_412______________________________________________ fusrat_plasma_dt_profile412____ 5.26350088983930880e+16 +DT_fusion_rate_at_point_413______________________________________________ fusrat_plasma_dt_profile413____ 5.13301072162771440e+16 +DT_fusion_rate_at_point_414______________________________________________ fusrat_plasma_dt_profile414____ 5.00502533400496480e+16 +DT_fusion_rate_at_point_415______________________________________________ fusrat_plasma_dt_profile415____ 4.87953008477232560e+16 +DT_fusion_rate_at_point_416______________________________________________ fusrat_plasma_dt_profile416____ 4.75650968558181280e+16 +DT_fusion_rate_at_point_417______________________________________________ fusrat_plasma_dt_profile417____ 4.63594821443997440e+16 +DT_fusion_rate_at_point_418______________________________________________ fusrat_plasma_dt_profile418____ 4.51782912916085040e+16 +DT_fusion_rate_at_point_419______________________________________________ fusrat_plasma_dt_profile419____ 4.40213528178826720e+16 +DT_fusion_rate_at_point_420______________________________________________ fusrat_plasma_dt_profile420____ 4.28884893400888560e+16 +DT_fusion_rate_at_point_421______________________________________________ fusrat_plasma_dt_profile421____ 4.17795177357926400e+16 +DT_fusion_rate_at_point_422______________________________________________ fusrat_plasma_dt_profile422____ 4.06942493179219840e+16 +DT_fusion_rate_at_point_423______________________________________________ fusrat_plasma_dt_profile423____ 3.96324900201018800e+16 +DT_fusion_rate_at_point_424______________________________________________ fusrat_plasma_dt_profile424____ 3.85940405929706160e+16 +DT_fusion_rate_at_point_425______________________________________________ fusrat_plasma_dt_profile425____ 3.75786968118269840e+16 +DT_fusion_rate_at_point_426______________________________________________ fusrat_plasma_dt_profile426____ 3.65862496960014240e+16 +DT_fusion_rate_at_point_427______________________________________________ fusrat_plasma_dt_profile427____ 3.56164857404034560e+16 +DT_fusion_rate_at_point_428______________________________________________ fusrat_plasma_dt_profile428____ 3.46691871597602640e+16 +DT_fusion_rate_at_point_429______________________________________________ fusrat_plasma_dt_profile429____ 3.37441321461427440e+16 +DT_fusion_rate_at_point_430______________________________________________ fusrat_plasma_dt_profile430____ 3.28410951404722200e+16 +DT_fusion_rate_at_point_431______________________________________________ fusrat_plasma_dt_profile431____ 3.19598471188097240e+16 +DT_fusion_rate_at_point_432______________________________________________ fusrat_plasma_dt_profile432____ 3.11001558943726240e+16 +DT_fusion_rate_at_point_433______________________________________________ fusrat_plasma_dt_profile433____ 3.02617864363791240e+16 +DT_fusion_rate_at_point_434______________________________________________ fusrat_plasma_dt_profile434____ 2.94445012070217240e+16 +DT_fusion_rate_at_point_435______________________________________________ fusrat_plasma_dt_profile435____ 2.86480605181009960e+16 +DT_fusion_rate_at_point_436______________________________________________ fusrat_plasma_dt_profile436____ 2.78722229091351160e+16 +DT_fusion_rate_at_point_437______________________________________________ fusrat_plasma_dt_profile437____ 2.71167455490984960e+16 +DT_fusion_rate_at_point_438______________________________________________ fusrat_plasma_dt_profile438____ 2.63813846643557600e+16 +DT_fusion_rate_at_point_439______________________________________________ fusrat_plasma_dt_profile439____ 2.56658959958558080e+16 +DT_fusion_rate_at_point_440______________________________________________ fusrat_plasma_dt_profile440____ 2.49700352892622640e+16 +DT_fusion_rate_at_point_441______________________________________________ fusrat_plasma_dt_profile441____ 2.42935588224436920e+16 +DT_fusion_rate_at_point_442______________________________________________ fusrat_plasma_dt_profile442____ 2.36362239756690520e+16 +DT_fusion_rate_at_point_443______________________________________________ fusrat_plasma_dt_profile443____ 2.29977898509981680e+16 +DT_fusion_rate_at_point_444______________________________________________ fusrat_plasma_dt_profile444____ 2.23780179487841400e+16 +DT_fusion_rate_at_point_445______________________________________________ fusrat_plasma_dt_profile445____ 2.17766729109940400e+16 +DT_fusion_rate_at_point_446______________________________________________ fusrat_plasma_dt_profile446____ 2.11935233433284480e+16 +DT_fusion_rate_at_point_447______________________________________________ fusrat_plasma_dt_profile447____ 2.06283427310105640e+16 +DT_fusion_rate_at_point_448______________________________________________ fusrat_plasma_dt_profile448____ 2.00809104668504160e+16 +DT_fusion_rate_at_point_449______________________________________________ fusrat_plasma_dt_profile449____ 1.95510130150324480e+16 +DT_fusion_rate_at_point_450______________________________________________ fusrat_plasma_dt_profile450____ 1.90384452404513520e+16 +DT_fusion_rate_at_point_451______________________________________________ fusrat_plasma_dt_profile451____ 1.85430119418861800e+16 +DT_fusion_rate_at_point_452______________________________________________ fusrat_plasma_dt_profile452____ 1.80645296387058600e+16 +DT_fusion_rate_at_point_453______________________________________________ fusrat_plasma_dt_profile453____ 1.76028286763621800e+16 +DT_fusion_rate_at_point_454______________________________________________ fusrat_plasma_dt_profile454____ 1.71577557374991500e+16 +DT_fusion_rate_at_point_455______________________________________________ fusrat_plasma_dt_profile455____ 1.67291768759212060e+16 +DT_fusion_rate_at_point_456______________________________________________ fusrat_plasma_dt_profile456____ 1.63169812343636880e+16 +DT_fusion_rate_at_point_457______________________________________________ fusrat_plasma_dt_profile457____ 1.59210856711413360e+16 +DT_fusion_rate_at_point_458______________________________________________ fusrat_plasma_dt_profile458____ 1.55414406171515200e+16 +DT_fusion_rate_at_point_459______________________________________________ fusrat_plasma_dt_profile459____ 1.51780376336098080e+16 +DT_fusion_rate_at_point_460______________________________________________ fusrat_plasma_dt_profile460____ 1.48309193781965140e+16 +DT_fusion_rate_at_point_461______________________________________________ fusrat_plasma_dt_profile461____ 1.45001930794507220e+16 +DT_fusion_rate_at_point_462______________________________________________ fusrat_plasma_dt_profile462____ 1.41860492956042720e+16 +DT_fusion_rate_at_point_463______________________________________________ fusrat_plasma_dt_profile463____ 1.38887889616423700e+16 +DT_fusion_rate_at_point_464______________________________________________ fusrat_plasma_dt_profile464____ 1.36088640995403220e+16 +DT_fusion_rate_at_point_465______________________________________________ fusrat_plasma_dt_profile465____ 1.33469425171201900e+16 +DT_fusion_rate_at_point_466______________________________________________ fusrat_plasma_dt_profile466____ 1.31040182500506200e+16 +DT_fusion_rate_at_point_467______________________________________________ fusrat_plasma_dt_profile467____ 1.28816197425671880e+16 +DT_fusion_rate_at_point_468______________________________________________ fusrat_plasma_dt_profile468____ 1.26822654258342080e+16 +DT_fusion_rate_at_point_469______________________________________________ fusrat_plasma_dt_profile469____ 1.25107574827812540e+16 +DT_fusion_rate_at_point_470______________________________________________ fusrat_plasma_dt_profile470____ 1.23822036943037140e+16 +DT_fusion_rate_at_point_471______________________________________________ fusrat_plasma_dt_profile471____ 1.07382207239092740e+16 +DT_fusion_rate_at_point_472______________________________________________ fusrat_plasma_dt_profile472____ 9.25746698883794600e+15 +DT_fusion_rate_at_point_473______________________________________________ fusrat_plasma_dt_profile473____ 7.93016590043586500e+15 +DT_fusion_rate_at_point_474______________________________________________ fusrat_plasma_dt_profile474____ 6.74658523527063100e+15 +DT_fusion_rate_at_point_475______________________________________________ fusrat_plasma_dt_profile475____ 5.69706804044287600e+15 +DT_fusion_rate_at_point_476______________________________________________ fusrat_plasma_dt_profile476____ 4.77206441098296300e+15 +DT_fusion_rate_at_point_477______________________________________________ fusrat_plasma_dt_profile477____ 3.96216391532122800e+15 +DT_fusion_rate_at_point_478______________________________________________ fusrat_plasma_dt_profile478____ 3.25812842221331350e+15 +DT_fusion_rate_at_point_479______________________________________________ fusrat_plasma_dt_profile479____ 2.65092506348716650e+15 +DT_fusion_rate_at_point_480______________________________________________ fusrat_plasma_dt_profile480____ 2.13175905279895725e+15 +DT_fusion_rate_at_point_481______________________________________________ fusrat_plasma_dt_profile481____ 1.69210607256537175e+15 +DT_fusion_rate_at_point_482______________________________________________ fusrat_plasma_dt_profile482____ 1.32374394073306900e+15 +DT_fusion_rate_at_point_483______________________________________________ fusrat_plasma_dt_profile483____ 1.01878327735500288e+15 +DT_fusion_rate_at_point_484______________________________________________ fusrat_plasma_dt_profile484____ 7.69696909178055250e+14 +DT_fusion_rate_at_point_485______________________________________________ fusrat_plasma_dt_profile485____ 5.69347779300989375e+14 +DT_fusion_rate_at_point_486______________________________________________ fusrat_plasma_dt_profile486____ 4.11015168329606000e+14 +DT_fusion_rate_at_point_487______________________________________________ fusrat_plasma_dt_profile487____ 2.88419081775692812e+14 +DT_fusion_rate_at_point_488______________________________________________ fusrat_plasma_dt_profile488____ 1.95742711573503188e+14 +DT_fusion_rate_at_point_489______________________________________________ fusrat_plasma_dt_profile489____ 1.27652928828417875e+14 +DT_fusion_rate_at_point_490______________________________________________ fusrat_plasma_dt_profile490____ 7.93187936002859062e+13 +DT_fusion_rate_at_point_491______________________________________________ fusrat_plasma_dt_profile491____ 4.64280450716392656e+13 +DT_fusion_rate_at_point_492______________________________________________ fusrat_plasma_dt_profile492____ 2.52014071900063633e+13 +DT_fusion_rate_at_point_493______________________________________________ fusrat_plasma_dt_profile493____ 1.24042153045082207e+13 +DT_fusion_rate_at_point_494______________________________________________ fusrat_plasma_dt_profile494____ 5.35417676136815918e+12 +DT_fusion_rate_at_point_495______________________________________________ fusrat_plasma_dt_profile495____ 1.92276494496797241e+12 +DT_fusion_rate_at_point_496______________________________________________ fusrat_plasma_dt_profile496____ 5.25454708483098694e+11 +DT_fusion_rate_at_point_497______________________________________________ fusrat_plasma_dt_profile497____ 9.24438676955388489e+10 +DT_fusion_rate_at_point_498______________________________________________ fusrat_plasma_dt_profile498____ 7.26157360496385670e+09 +DT_fusion_rate_at_point_499______________________________________________ fusrat_plasma_dt_profile499____ 8.95535442630783170e+07 +DT_fusion_rate_at_point_500______________________________________________ fusrat_plasma_dt_profile500____ 6.12486477363998119e+02 +D-D_->_T_fusion_rate_at_point_0__________________________________________ fusrat_plasma_dd_triton_profile0_ 6.75198758404522500e+15 +D-D_->_T_fusion_rate_at_point_1__________________________________________ fusrat_plasma_dd_triton_profile1_ 6.75190567080852400e+15 +D-D_->_T_fusion_rate_at_point_2__________________________________________ fusrat_plasma_dd_triton_profile2_ 6.75165993509594600e+15 +D-D_->_T_fusion_rate_at_point_3__________________________________________ fusrat_plasma_dd_triton_profile3_ 6.75125038889982100e+15 +D-D_->_T_fusion_rate_at_point_4__________________________________________ fusrat_plasma_dd_triton_profile4_ 6.75067705220695400e+15 +D-D_->_T_fusion_rate_at_point_5__________________________________________ fusrat_plasma_dd_triton_profile5_ 6.74993995299770800e+15 +D-D_->_T_fusion_rate_at_point_6__________________________________________ fusrat_plasma_dd_triton_profile6_ 6.74903912724514100e+15 +D-D_->_T_fusion_rate_at_point_7__________________________________________ fusrat_plasma_dd_triton_profile7_ 6.74797461891346800e+15 +D-D_->_T_fusion_rate_at_point_8__________________________________________ fusrat_plasma_dd_triton_profile8_ 6.74674647995650200e+15 +D-D_->_T_fusion_rate_at_point_9__________________________________________ fusrat_plasma_dd_triton_profile9_ 6.74535477031570100e+15 +D-D_->_T_fusion_rate_at_point_10_________________________________________ fusrat_plasma_dd_triton_profile10_ 6.74379955791783100e+15 +D-D_->_T_fusion_rate_at_point_11_________________________________________ fusrat_plasma_dd_triton_profile11_ 6.74208091867246500e+15 +D-D_->_T_fusion_rate_at_point_12_________________________________________ fusrat_plasma_dd_triton_profile12_ 6.74019893646911600e+15 +D-D_->_T_fusion_rate_at_point_13_________________________________________ fusrat_plasma_dd_triton_profile13_ 6.73815370317399700e+15 +D-D_->_T_fusion_rate_at_point_14_________________________________________ fusrat_plasma_dd_triton_profile14_ 6.73594531862665700e+15 +D-D_->_T_fusion_rate_at_point_15_________________________________________ fusrat_plasma_dd_triton_profile15_ 6.73357389063611900e+15 +D-D_->_T_fusion_rate_at_point_16_________________________________________ fusrat_plasma_dd_triton_profile16_ 6.73103953497685800e+15 +D-D_->_T_fusion_rate_at_point_17_________________________________________ fusrat_plasma_dd_triton_profile17_ 6.72834237538439000e+15 +D-D_->_T_fusion_rate_at_point_18_________________________________________ fusrat_plasma_dd_triton_profile18_ 6.72548254355061200e+15 +D-D_->_T_fusion_rate_at_point_19_________________________________________ fusrat_plasma_dd_triton_profile19_ 6.72246017911881400e+15 +D-D_->_T_fusion_rate_at_point_20_________________________________________ fusrat_plasma_dd_triton_profile20_ 6.71927542967843100e+15 +D-D_->_T_fusion_rate_at_point_21_________________________________________ fusrat_plasma_dd_triton_profile21_ 6.71592845075938600e+15 +D-D_->_T_fusion_rate_at_point_22_________________________________________ fusrat_plasma_dd_triton_profile22_ 6.71241940582626700e+15 +D-D_->_T_fusion_rate_at_point_23_________________________________________ fusrat_plasma_dd_triton_profile23_ 6.70874846627208700e+15 +D-D_->_T_fusion_rate_at_point_24_________________________________________ fusrat_plasma_dd_triton_profile24_ 6.70491581141184100e+15 +D-D_->_T_fusion_rate_at_point_25_________________________________________ fusrat_plasma_dd_triton_profile25_ 6.70092162847567700e+15 +D-D_->_T_fusion_rate_at_point_26_________________________________________ fusrat_plasma_dd_triton_profile26_ 6.69676611260180200e+15 +D-D_->_T_fusion_rate_at_point_27_________________________________________ fusrat_plasma_dd_triton_profile27_ 6.69244946682909200e+15 +D-D_->_T_fusion_rate_at_point_28_________________________________________ fusrat_plasma_dd_triton_profile28_ 6.68797190208937300e+15 +D-D_->_T_fusion_rate_at_point_29_________________________________________ fusrat_plasma_dd_triton_profile29_ 6.68333363719942600e+15 +D-D_->_T_fusion_rate_at_point_30_________________________________________ fusrat_plasma_dd_triton_profile30_ 6.67853489885268200e+15 +D-D_->_T_fusion_rate_at_point_31_________________________________________ fusrat_plasma_dd_triton_profile31_ 6.67357592161057000e+15 +D-D_->_T_fusion_rate_at_point_32_________________________________________ fusrat_plasma_dd_triton_profile32_ 6.66845694789368500e+15 +D-D_->_T_fusion_rate_at_point_33_________________________________________ fusrat_plasma_dd_triton_profile33_ 6.66317822797245500e+15 +D-D_->_T_fusion_rate_at_point_34_________________________________________ fusrat_plasma_dd_triton_profile34_ 6.65774001995772300e+15 +D-D_->_T_fusion_rate_at_point_35_________________________________________ fusrat_plasma_dd_triton_profile35_ 6.65214258979086200e+15 +D-D_->_T_fusion_rate_at_point_36_________________________________________ fusrat_plasma_dd_triton_profile36_ 6.64638621123364100e+15 +D-D_->_T_fusion_rate_at_point_37_________________________________________ fusrat_plasma_dd_triton_profile37_ 6.64047116585782100e+15 +D-D_->_T_fusion_rate_at_point_38_________________________________________ fusrat_plasma_dd_triton_profile38_ 6.63439774303440400e+15 +D-D_->_T_fusion_rate_at_point_39_________________________________________ fusrat_plasma_dd_triton_profile39_ 6.62816623992259200e+15 +D-D_->_T_fusion_rate_at_point_40_________________________________________ fusrat_plasma_dd_triton_profile40_ 6.62177696145843500e+15 +D-D_->_T_fusion_rate_at_point_41_________________________________________ fusrat_plasma_dd_triton_profile41_ 6.61523022034316300e+15 +D-D_->_T_fusion_rate_at_point_42_________________________________________ fusrat_plasma_dd_triton_profile42_ 6.60852633703128000e+15 +D-D_->_T_fusion_rate_at_point_43_________________________________________ fusrat_plasma_dd_triton_profile43_ 6.60166563971826300e+15 +D-D_->_T_fusion_rate_at_point_44_________________________________________ fusrat_plasma_dd_triton_profile44_ 6.59464846432799700e+15 +D-D_->_T_fusion_rate_at_point_45_________________________________________ fusrat_plasma_dd_triton_profile45_ 6.58747515449993600e+15 +D-D_->_T_fusion_rate_at_point_46_________________________________________ fusrat_plasma_dd_triton_profile46_ 6.58014606157588200e+15 +D-D_->_T_fusion_rate_at_point_47_________________________________________ fusrat_plasma_dd_triton_profile47_ 6.57266154458655500e+15 +D-D_->_T_fusion_rate_at_point_48_________________________________________ fusrat_plasma_dd_triton_profile48_ 6.56502197023775600e+15 +D-D_->_T_fusion_rate_at_point_49_________________________________________ fusrat_plasma_dd_triton_profile49_ 6.55722771289632100e+15 +D-D_->_T_fusion_rate_at_point_50_________________________________________ fusrat_plasma_dd_triton_profile50_ 6.54927915457567700e+15 +D-D_->_T_fusion_rate_at_point_51_________________________________________ fusrat_plasma_dd_triton_profile51_ 6.54117668492120200e+15 +D-D_->_T_fusion_rate_at_point_52_________________________________________ fusrat_plasma_dd_triton_profile52_ 6.53292070119513900e+15 +D-D_->_T_fusion_rate_at_point_53_________________________________________ fusrat_plasma_dd_triton_profile53_ 6.52451160826133300e+15 +D-D_->_T_fusion_rate_at_point_54_________________________________________ fusrat_plasma_dd_triton_profile54_ 6.51594981856959000e+15 +D-D_->_T_fusion_rate_at_point_55_________________________________________ fusrat_plasma_dd_triton_profile55_ 6.50723575213974800e+15 +D-D_->_T_fusion_rate_at_point_56_________________________________________ fusrat_plasma_dd_triton_profile56_ 6.49836983654543700e+15 +D-D_->_T_fusion_rate_at_point_57_________________________________________ fusrat_plasma_dd_triton_profile57_ 6.48935250689752500e+15 +D-D_->_T_fusion_rate_at_point_58_________________________________________ fusrat_plasma_dd_triton_profile58_ 6.48018420582729700e+15 +D-D_->_T_fusion_rate_at_point_59_________________________________________ fusrat_plasma_dd_triton_profile59_ 6.47086538346928900e+15 +D-D_->_T_fusion_rate_at_point_60_________________________________________ fusrat_plasma_dd_triton_profile60_ 6.46139649744377400e+15 +D-D_->_T_fusion_rate_at_point_61_________________________________________ fusrat_plasma_dd_triton_profile61_ 6.45177801283901600e+15 +D-D_->_T_fusion_rate_at_point_62_________________________________________ fusrat_plasma_dd_triton_profile62_ 6.44201040219322600e+15 +D-D_->_T_fusion_rate_at_point_63_________________________________________ fusrat_plasma_dd_triton_profile63_ 6.43209414547609800e+15 +D-D_->_T_fusion_rate_at_point_64_________________________________________ fusrat_plasma_dd_triton_profile64_ 6.42202973007017000e+15 +D-D_->_T_fusion_rate_at_point_65_________________________________________ fusrat_plasma_dd_triton_profile65_ 6.41181765075174700e+15 +D-D_->_T_fusion_rate_at_point_66_________________________________________ fusrat_plasma_dd_triton_profile66_ 6.40145840967164900e+15 +D-D_->_T_fusion_rate_at_point_67_________________________________________ fusrat_plasma_dd_triton_profile67_ 6.39095251633553300e+15 +D-D_->_T_fusion_rate_at_point_68_________________________________________ fusrat_plasma_dd_triton_profile68_ 6.38030048758396600e+15 +D-D_->_T_fusion_rate_at_point_69_________________________________________ fusrat_plasma_dd_triton_profile69_ 6.36950284757218100e+15 +D-D_->_T_fusion_rate_at_point_70_________________________________________ fusrat_plasma_dd_triton_profile70_ 6.35856012774950500e+15 +D-D_->_T_fusion_rate_at_point_71_________________________________________ fusrat_plasma_dd_triton_profile71_ 6.34747286683849600e+15 +D-D_->_T_fusion_rate_at_point_72_________________________________________ fusrat_plasma_dd_triton_profile72_ 6.33624161081376000e+15 +D-D_->_T_fusion_rate_at_point_73_________________________________________ fusrat_plasma_dd_triton_profile73_ 6.32486691288044100e+15 +D-D_->_T_fusion_rate_at_point_74_________________________________________ fusrat_plasma_dd_triton_profile74_ 6.31334933345242800e+15 +D-D_->_T_fusion_rate_at_point_75_________________________________________ fusrat_plasma_dd_triton_profile75_ 6.30168944013024200e+15 +D-D_->_T_fusion_rate_at_point_76_________________________________________ fusrat_plasma_dd_triton_profile76_ 6.28988780767858000e+15 +D-D_->_T_fusion_rate_at_point_77_________________________________________ fusrat_plasma_dd_triton_profile77_ 6.27794501800360600e+15 +D-D_->_T_fusion_rate_at_point_78_________________________________________ fusrat_plasma_dd_triton_profile78_ 6.26586166012986800e+15 +D-D_->_T_fusion_rate_at_point_79_________________________________________ fusrat_plasma_dd_triton_profile79_ 6.25363833017692900e+15 +D-D_->_T_fusion_rate_at_point_80_________________________________________ fusrat_plasma_dd_triton_profile80_ 6.24127563133571400e+15 +D-D_->_T_fusion_rate_at_point_81_________________________________________ fusrat_plasma_dd_triton_profile81_ 6.22877417384444000e+15 +D-D_->_T_fusion_rate_at_point_82_________________________________________ fusrat_plasma_dd_triton_profile82_ 6.21613457496440900e+15 +D-D_->_T_fusion_rate_at_point_83_________________________________________ fusrat_plasma_dd_triton_profile83_ 6.20335745895528100e+15 +D-D_->_T_fusion_rate_at_point_84_________________________________________ fusrat_plasma_dd_triton_profile84_ 6.19044345705019400e+15 +D-D_->_T_fusion_rate_at_point_85_________________________________________ fusrat_plasma_dd_triton_profile85_ 6.17739320743047600e+15 +D-D_->_T_fusion_rate_at_point_86_________________________________________ fusrat_plasma_dd_triton_profile86_ 6.16420735520008800e+15 +D-D_->_T_fusion_rate_at_point_87_________________________________________ fusrat_plasma_dd_triton_profile87_ 6.15088655235970700e+15 +D-D_->_T_fusion_rate_at_point_88_________________________________________ fusrat_plasma_dd_triton_profile88_ 6.13743145778057200e+15 +D-D_->_T_fusion_rate_at_point_89_________________________________________ fusrat_plasma_dd_triton_profile89_ 6.12384273717789400e+15 +D-D_->_T_fusion_rate_at_point_90_________________________________________ fusrat_plasma_dd_triton_profile90_ 6.11012106308406500e+15 +D-D_->_T_fusion_rate_at_point_91_________________________________________ fusrat_plasma_dd_triton_profile91_ 6.09626711482148400e+15 +D-D_->_T_fusion_rate_at_point_92_________________________________________ fusrat_plasma_dd_triton_profile92_ 6.08228157847505800e+15 +D-D_->_T_fusion_rate_at_point_93_________________________________________ fusrat_plasma_dd_triton_profile93_ 6.06816514686443100e+15 +D-D_->_T_fusion_rate_at_point_94_________________________________________ fusrat_plasma_dd_triton_profile94_ 6.05391851951585900e+15 +D-D_->_T_fusion_rate_at_point_95_________________________________________ fusrat_plasma_dd_triton_profile95_ 6.03954240263376500e+15 +D-D_->_T_fusion_rate_at_point_96_________________________________________ fusrat_plasma_dd_triton_profile96_ 6.02503750907202600e+15 +D-D_->_T_fusion_rate_at_point_97_________________________________________ fusrat_plasma_dd_triton_profile97_ 6.01040455830481300e+15 +D-D_->_T_fusion_rate_at_point_98_________________________________________ fusrat_plasma_dd_triton_profile98_ 5.99564427639729000e+15 +D-D_->_T_fusion_rate_at_point_99_________________________________________ fusrat_plasma_dd_triton_profile99_ 5.98075739597580700e+15 +D-D_->_T_fusion_rate_at_point_100________________________________________ fusrat_plasma_dd_triton_profile100_ 5.96574465619793100e+15 +D-D_->_T_fusion_rate_at_point_101________________________________________ fusrat_plasma_dd_triton_profile101_ 5.95060680272202600e+15 +D-D_->_T_fusion_rate_at_point_102________________________________________ fusrat_plasma_dd_triton_profile102_ 5.93534458767662200e+15 +D-D_->_T_fusion_rate_at_point_103________________________________________ fusrat_plasma_dd_triton_profile103_ 5.91995876962933100e+15 +D-D_->_T_fusion_rate_at_point_104________________________________________ fusrat_plasma_dd_triton_profile104_ 5.90445011355558700e+15 +D-D_->_T_fusion_rate_at_point_105________________________________________ fusrat_plasma_dd_triton_profile105_ 5.88881939080694000e+15 +D-D_->_T_fusion_rate_at_point_106________________________________________ fusrat_plasma_dd_triton_profile106_ 5.87306737907909500e+15 +D-D_->_T_fusion_rate_at_point_107________________________________________ fusrat_plasma_dd_triton_profile107_ 5.85719486237956700e+15 +D-D_->_T_fusion_rate_at_point_108________________________________________ fusrat_plasma_dd_triton_profile108_ 5.84120263099509000e+15 +D-D_->_T_fusion_rate_at_point_109________________________________________ fusrat_plasma_dd_triton_profile109_ 5.82509148145862500e+15 +D-D_->_T_fusion_rate_at_point_110________________________________________ fusrat_plasma_dd_triton_profile110_ 5.80886221651609100e+15 +D-D_->_T_fusion_rate_at_point_111________________________________________ fusrat_plasma_dd_triton_profile111_ 5.79251564509269700e+15 +D-D_->_T_fusion_rate_at_point_112________________________________________ fusrat_plasma_dd_triton_profile112_ 5.77605258225906000e+15 +D-D_->_T_fusion_rate_at_point_113________________________________________ fusrat_plasma_dd_triton_profile113_ 5.75947384919686800e+15 +D-D_->_T_fusion_rate_at_point_114________________________________________ fusrat_plasma_dd_triton_profile114_ 5.74278027316432400e+15 +D-D_->_T_fusion_rate_at_point_115________________________________________ fusrat_plasma_dd_triton_profile115_ 5.72597268746117000e+15 +D-D_->_T_fusion_rate_at_point_116________________________________________ fusrat_plasma_dd_triton_profile116_ 5.70905193139345000e+15 +D-D_->_T_fusion_rate_at_point_117________________________________________ fusrat_plasma_dd_triton_profile117_ 5.69201885023785500e+15 +D-D_->_T_fusion_rate_at_point_118________________________________________ fusrat_plasma_dd_triton_profile118_ 5.67487429520588600e+15 +D-D_->_T_fusion_rate_at_point_119________________________________________ fusrat_plasma_dd_triton_profile119_ 5.65761912340746800e+15 +D-D_->_T_fusion_rate_at_point_120________________________________________ fusrat_plasma_dd_triton_profile120_ 5.64025419781445700e+15 +D-D_->_T_fusion_rate_at_point_121________________________________________ fusrat_plasma_dd_triton_profile121_ 5.62278038722362900e+15 +D-D_->_T_fusion_rate_at_point_122________________________________________ fusrat_plasma_dd_triton_profile122_ 5.60519856621946400e+15 +D-D_->_T_fusion_rate_at_point_123________________________________________ fusrat_plasma_dd_triton_profile123_ 5.58750961513650900e+15 +D-D_->_T_fusion_rate_at_point_124________________________________________ fusrat_plasma_dd_triton_profile124_ 5.56971442002143700e+15 +D-D_->_T_fusion_rate_at_point_125________________________________________ fusrat_plasma_dd_triton_profile125_ 5.55181387259477500e+15 +D-D_->_T_fusion_rate_at_point_126________________________________________ fusrat_plasma_dd_triton_profile126_ 5.53380887021230400e+15 +D-D_->_T_fusion_rate_at_point_127________________________________________ fusrat_plasma_dd_triton_profile127_ 5.51570031582605900e+15 +D-D_->_T_fusion_rate_at_point_128________________________________________ fusrat_plasma_dd_triton_profile128_ 5.49748911794506200e+15 +D-D_->_T_fusion_rate_at_point_129________________________________________ fusrat_plasma_dd_triton_profile129_ 5.47917619059570200e+15 +D-D_->_T_fusion_rate_at_point_130________________________________________ fusrat_plasma_dd_triton_profile130_ 5.46076245328170600e+15 +D-D_->_T_fusion_rate_at_point_131________________________________________ fusrat_plasma_dd_triton_profile131_ 5.44224883094385500e+15 +D-D_->_T_fusion_rate_at_point_132________________________________________ fusrat_plasma_dd_triton_profile132_ 5.42363625391932400e+15 +D-D_->_T_fusion_rate_at_point_133________________________________________ fusrat_plasma_dd_triton_profile133_ 5.40492565790063600e+15 +D-D_->_T_fusion_rate_at_point_134________________________________________ fusrat_plasma_dd_triton_profile134_ 5.38611798389437600e+15 +D-D_->_T_fusion_rate_at_point_135________________________________________ fusrat_plasma_dd_triton_profile135_ 5.36721417817941700e+15 +D-D_->_T_fusion_rate_at_point_136________________________________________ fusrat_plasma_dd_triton_profile136_ 5.34821519226494300e+15 +D-D_->_T_fusion_rate_at_point_137________________________________________ fusrat_plasma_dd_triton_profile137_ 5.32912198284799500e+15 +D-D_->_T_fusion_rate_at_point_138________________________________________ fusrat_plasma_dd_triton_profile138_ 5.30993551177079700e+15 +D-D_->_T_fusion_rate_at_point_139________________________________________ fusrat_plasma_dd_triton_profile139_ 5.29065674597763300e+15 +D-D_->_T_fusion_rate_at_point_140________________________________________ fusrat_plasma_dd_triton_profile140_ 5.27128665747138500e+15 +D-D_->_T_fusion_rate_at_point_141________________________________________ fusrat_plasma_dd_triton_profile141_ 5.25182622326979400e+15 +D-D_->_T_fusion_rate_at_point_142________________________________________ fusrat_plasma_dd_triton_profile142_ 5.23227642536128200e+15 +D-D_->_T_fusion_rate_at_point_143________________________________________ fusrat_plasma_dd_triton_profile143_ 5.21263825066049000e+15 +D-D_->_T_fusion_rate_at_point_144________________________________________ fusrat_plasma_dd_triton_profile144_ 5.19291269096339200e+15 +D-D_->_T_fusion_rate_at_point_145________________________________________ fusrat_plasma_dd_triton_profile145_ 5.17310074290210100e+15 +D-D_->_T_fusion_rate_at_point_146________________________________________ fusrat_plasma_dd_triton_profile146_ 5.15320340789933700e+15 +D-D_->_T_fusion_rate_at_point_147________________________________________ fusrat_plasma_dd_triton_profile147_ 5.13322169212248000e+15 +D-D_->_T_fusion_rate_at_point_148________________________________________ fusrat_plasma_dd_triton_profile148_ 5.11315660643731900e+15 +D-D_->_T_fusion_rate_at_point_149________________________________________ fusrat_plasma_dd_triton_profile149_ 5.09300916636139600e+15 +D-D_->_T_fusion_rate_at_point_150________________________________________ fusrat_plasma_dd_triton_profile150_ 5.07278039201702600e+15 +D-D_->_T_fusion_rate_at_point_151________________________________________ fusrat_plasma_dd_triton_profile151_ 5.05247130808393400e+15 +D-D_->_T_fusion_rate_at_point_152________________________________________ fusrat_plasma_dd_triton_profile152_ 5.03208294375154600e+15 +D-D_->_T_fusion_rate_at_point_153________________________________________ fusrat_plasma_dd_triton_profile153_ 5.01161633267090400e+15 +D-D_->_T_fusion_rate_at_point_154________________________________________ fusrat_plasma_dd_triton_profile154_ 4.99107251290621500e+15 +D-D_->_T_fusion_rate_at_point_155________________________________________ fusrat_plasma_dd_triton_profile155_ 4.97045252688603800e+15 +D-D_->_T_fusion_rate_at_point_156________________________________________ fusrat_plasma_dd_triton_profile156_ 4.94975742135414300e+15 +D-D_->_T_fusion_rate_at_point_157________________________________________ fusrat_plasma_dd_triton_profile157_ 4.92898824731985700e+15 +D-D_->_T_fusion_rate_at_point_158________________________________________ fusrat_plasma_dd_triton_profile158_ 4.90814606000830300e+15 +D-D_->_T_fusion_rate_at_point_159________________________________________ fusrat_plasma_dd_triton_profile159_ 4.88723191880996600e+15 +D-D_->_T_fusion_rate_at_point_160________________________________________ fusrat_plasma_dd_triton_profile160_ 4.86624688723012700e+15 +D-D_->_T_fusion_rate_at_point_161________________________________________ fusrat_plasma_dd_triton_profile161_ 4.84519203283777600e+15 +D-D_->_T_fusion_rate_at_point_162________________________________________ fusrat_plasma_dd_triton_profile162_ 4.82406842721423700e+15 +D-D_->_T_fusion_rate_at_point_163________________________________________ fusrat_plasma_dd_triton_profile163_ 4.80287714590136200e+15 +D-D_->_T_fusion_rate_at_point_164________________________________________ fusrat_plasma_dd_triton_profile164_ 4.78161926834937900e+15 +D-D_->_T_fusion_rate_at_point_165________________________________________ fusrat_plasma_dd_triton_profile165_ 4.76029587786434300e+15 +D-D_->_T_fusion_rate_at_point_166________________________________________ fusrat_plasma_dd_triton_profile166_ 4.73890806155523300e+15 +D-D_->_T_fusion_rate_at_point_167________________________________________ fusrat_plasma_dd_triton_profile167_ 4.71745691028062900e+15 +D-D_->_T_fusion_rate_at_point_168________________________________________ fusrat_plasma_dd_triton_profile168_ 4.69594351859503800e+15 +D-D_->_T_fusion_rate_at_point_169________________________________________ fusrat_plasma_dd_triton_profile169_ 4.67436898469480800e+15 +D-D_->_T_fusion_rate_at_point_170________________________________________ fusrat_plasma_dd_triton_profile170_ 4.65273441036370300e+15 +D-D_->_T_fusion_rate_at_point_171________________________________________ fusrat_plasma_dd_triton_profile171_ 4.63104090091802100e+15 +D-D_->_T_fusion_rate_at_point_172________________________________________ fusrat_plasma_dd_triton_profile172_ 4.60928956515140700e+15 +D-D_->_T_fusion_rate_at_point_173________________________________________ fusrat_plasma_dd_triton_profile173_ 4.58748151527916700e+15 +D-D_->_T_fusion_rate_at_point_174________________________________________ fusrat_plasma_dd_triton_profile174_ 4.56561786688233900e+15 +D-D_->_T_fusion_rate_at_point_175________________________________________ fusrat_plasma_dd_triton_profile175_ 4.54369973885119800e+15 +D-D_->_T_fusion_rate_at_point_176________________________________________ fusrat_plasma_dd_triton_profile176_ 4.52172825332851800e+15 +D-D_->_T_fusion_rate_at_point_177________________________________________ fusrat_plasma_dd_triton_profile177_ 4.49970453565232600e+15 +D-D_->_T_fusion_rate_at_point_178________________________________________ fusrat_plasma_dd_triton_profile178_ 4.47762971429833600e+15 +D-D_->_T_fusion_rate_at_point_179________________________________________ fusrat_plasma_dd_triton_profile179_ 4.45550492082193500e+15 +D-D_->_T_fusion_rate_at_point_180________________________________________ fusrat_plasma_dd_triton_profile180_ 4.43333128979978300e+15 +D-D_->_T_fusion_rate_at_point_181________________________________________ fusrat_plasma_dd_triton_profile181_ 4.41110995877103550e+15 +D-D_->_T_fusion_rate_at_point_182________________________________________ fusrat_plasma_dd_triton_profile182_ 4.38884206817807750e+15 +D-D_->_T_fusion_rate_at_point_183________________________________________ fusrat_plasma_dd_triton_profile183_ 4.36652876130696500e+15 +D-D_->_T_fusion_rate_at_point_184________________________________________ fusrat_plasma_dd_triton_profile184_ 4.34417118422737300e+15 +D-D_->_T_fusion_rate_at_point_185________________________________________ fusrat_plasma_dd_triton_profile185_ 4.32177048573216000e+15 +D-D_->_T_fusion_rate_at_point_186________________________________________ fusrat_plasma_dd_triton_profile186_ 4.29932781727653800e+15 +D-D_->_T_fusion_rate_at_point_187________________________________________ fusrat_plasma_dd_triton_profile187_ 4.27684433291679150e+15 +D-D_->_T_fusion_rate_at_point_188________________________________________ fusrat_plasma_dd_triton_profile188_ 4.25432118924861600e+15 +D-D_->_T_fusion_rate_at_point_189________________________________________ fusrat_plasma_dd_triton_profile189_ 4.23175954534500700e+15 +D-D_->_T_fusion_rate_at_point_190________________________________________ fusrat_plasma_dd_triton_profile190_ 4.20916056269376500e+15 +D-D_->_T_fusion_rate_at_point_191________________________________________ fusrat_plasma_dd_triton_profile191_ 4.18652540513454350e+15 +D-D_->_T_fusion_rate_at_point_192________________________________________ fusrat_plasma_dd_triton_profile192_ 4.16385523879549050e+15 +D-D_->_T_fusion_rate_at_point_193________________________________________ fusrat_plasma_dd_triton_profile193_ 4.14115123202946800e+15 +D-D_->_T_fusion_rate_at_point_194________________________________________ fusrat_plasma_dd_triton_profile194_ 4.11841455534983300e+15 +D-D_->_T_fusion_rate_at_point_195________________________________________ fusrat_plasma_dd_triton_profile195_ 4.09564638136579550e+15 +D-D_->_T_fusion_rate_at_point_196________________________________________ fusrat_plasma_dd_triton_profile196_ 4.07284788471736000e+15 +D-D_->_T_fusion_rate_at_point_197________________________________________ fusrat_plasma_dd_triton_profile197_ 4.05002024200977200e+15 +D-D_->_T_fusion_rate_at_point_198________________________________________ fusrat_plasma_dd_triton_profile198_ 4.02716463174762450e+15 +D-D_->_T_fusion_rate_at_point_199________________________________________ fusrat_plasma_dd_triton_profile199_ 4.00428223426843650e+15 +D-D_->_T_fusion_rate_at_point_200________________________________________ fusrat_plasma_dd_triton_profile200_ 3.98137423167585500e+15 +D-D_->_T_fusion_rate_at_point_201________________________________________ fusrat_plasma_dd_triton_profile201_ 3.95844180777235950e+15 +D-D_->_T_fusion_rate_at_point_202________________________________________ fusrat_plasma_dd_triton_profile202_ 3.93548614799159100e+15 +D-D_->_T_fusion_rate_at_point_203________________________________________ fusrat_plasma_dd_triton_profile203_ 3.91250843933015450e+15 +D-D_->_T_fusion_rate_at_point_204________________________________________ fusrat_plasma_dd_triton_profile204_ 3.88950987027902900e+15 +D-D_->_T_fusion_rate_at_point_205________________________________________ fusrat_plasma_dd_triton_profile205_ 3.86649163075451500e+15 +D-D_->_T_fusion_rate_at_point_206________________________________________ fusrat_plasma_dd_triton_profile206_ 3.84345491202871850e+15 +D-D_->_T_fusion_rate_at_point_207________________________________________ fusrat_plasma_dd_triton_profile207_ 3.82040090665957250e+15 +D-D_->_T_fusion_rate_at_point_208________________________________________ fusrat_plasma_dd_triton_profile208_ 3.79733080842040750e+15 +D-D_->_T_fusion_rate_at_point_209________________________________________ fusrat_plasma_dd_triton_profile209_ 3.77424581222908350e+15 +D-D_->_T_fusion_rate_at_point_210________________________________________ fusrat_plasma_dd_triton_profile210_ 3.75114711407663000e+15 +D-D_->_T_fusion_rate_at_point_211________________________________________ fusrat_plasma_dd_triton_profile211_ 3.72803591095540950e+15 +D-D_->_T_fusion_rate_at_point_212________________________________________ fusrat_plasma_dd_triton_profile212_ 3.70491340078685850e+15 +D-D_->_T_fusion_rate_at_point_213________________________________________ fusrat_plasma_dd_triton_profile213_ 3.68178078234872200e+15 +D-D_->_T_fusion_rate_at_point_214________________________________________ fusrat_plasma_dd_triton_profile214_ 3.65863925520180050e+15 +D-D_->_T_fusion_rate_at_point_215________________________________________ fusrat_plasma_dd_triton_profile215_ 3.63549001961629600e+15 +D-D_->_T_fusion_rate_at_point_216________________________________________ fusrat_plasma_dd_triton_profile216_ 3.61233427649757800e+15 +D-D_->_T_fusion_rate_at_point_217________________________________________ fusrat_plasma_dd_triton_profile217_ 3.58917322731154000e+15 +D-D_->_T_fusion_rate_at_point_218________________________________________ fusrat_plasma_dd_triton_profile218_ 3.56600807400946700e+15 +D-D_->_T_fusion_rate_at_point_219________________________________________ fusrat_plasma_dd_triton_profile219_ 3.54284001895235600e+15 +D-D_->_T_fusion_rate_at_point_220________________________________________ fusrat_plasma_dd_triton_profile220_ 3.51967026483485350e+15 +D-D_->_T_fusion_rate_at_point_221________________________________________ fusrat_plasma_dd_triton_profile221_ 3.49650001460858550e+15 +D-D_->_T_fusion_rate_at_point_222________________________________________ fusrat_plasma_dd_triton_profile222_ 3.47333047140508900e+15 +D-D_->_T_fusion_rate_at_point_223________________________________________ fusrat_plasma_dd_triton_profile223_ 3.45016283845816850e+15 +D-D_->_T_fusion_rate_at_point_224________________________________________ fusrat_plasma_dd_triton_profile224_ 3.42699831902584200e+15 +D-D_->_T_fusion_rate_at_point_225________________________________________ fusrat_plasma_dd_triton_profile225_ 3.40383811631168350e+15 +D-D_->_T_fusion_rate_at_point_226________________________________________ fusrat_plasma_dd_triton_profile226_ 3.38068343338573400e+15 +D-D_->_T_fusion_rate_at_point_227________________________________________ fusrat_plasma_dd_triton_profile227_ 3.35753547310489250e+15 +D-D_->_T_fusion_rate_at_point_228________________________________________ fusrat_plasma_dd_triton_profile228_ 3.33439543803276100e+15 +D-D_->_T_fusion_rate_at_point_229________________________________________ fusrat_plasma_dd_triton_profile229_ 3.31126453035901350e+15 +D-D_->_T_fusion_rate_at_point_230________________________________________ fusrat_plasma_dd_triton_profile230_ 3.28814395181823900e+15 +D-D_->_T_fusion_rate_at_point_231________________________________________ fusrat_plasma_dd_triton_profile231_ 3.26503490360824450e+15 +D-D_->_T_fusion_rate_at_point_232________________________________________ fusrat_plasma_dd_triton_profile232_ 3.24193858630787300e+15 +D-D_->_T_fusion_rate_at_point_233________________________________________ fusrat_plasma_dd_triton_profile233_ 3.21885619979427400e+15 +D-D_->_T_fusion_rate_at_point_234________________________________________ fusrat_plasma_dd_triton_profile234_ 3.19578894315963650e+15 +D-D_->_T_fusion_rate_at_point_235________________________________________ fusrat_plasma_dd_triton_profile235_ 3.17273801462740750e+15 +D-D_->_T_fusion_rate_at_point_236________________________________________ fusrat_plasma_dd_triton_profile236_ 3.14970461146797950e+15 +D-D_->_T_fusion_rate_at_point_237________________________________________ fusrat_plasma_dd_triton_profile237_ 3.12668992991383650e+15 +D-D_->_T_fusion_rate_at_point_238________________________________________ fusrat_plasma_dd_triton_profile238_ 3.10369516507415300e+15 +D-D_->_T_fusion_rate_at_point_239________________________________________ fusrat_plasma_dd_triton_profile239_ 3.08072151084886450e+15 +D-D_->_T_fusion_rate_at_point_240________________________________________ fusrat_plasma_dd_triton_profile240_ 3.05777015984216900e+15 +D-D_->_T_fusion_rate_at_point_241________________________________________ fusrat_plasma_dd_triton_profile241_ 3.03484230327551050e+15 +D-D_->_T_fusion_rate_at_point_242________________________________________ fusrat_plasma_dd_triton_profile242_ 3.01193913089999900e+15 +D-D_->_T_fusion_rate_at_point_243________________________________________ fusrat_plasma_dd_triton_profile243_ 2.98906183090825400e+15 +D-D_->_T_fusion_rate_at_point_244________________________________________ fusrat_plasma_dd_triton_profile244_ 2.96621158984574100e+15 +D-D_->_T_fusion_rate_at_point_245________________________________________ fusrat_plasma_dd_triton_profile245_ 2.94338959252149650e+15 +D-D_->_T_fusion_rate_at_point_246________________________________________ fusrat_plasma_dd_triton_profile246_ 2.92059702191832200e+15 +D-D_->_T_fusion_rate_at_point_247________________________________________ fusrat_plasma_dd_triton_profile247_ 2.89783505910237800e+15 +D-D_->_T_fusion_rate_at_point_248________________________________________ fusrat_plasma_dd_triton_profile248_ 2.87510488313227150e+15 +D-D_->_T_fusion_rate_at_point_249________________________________________ fusrat_plasma_dd_triton_profile249_ 2.85240767096750200e+15 +D-D_->_T_fusion_rate_at_point_250________________________________________ fusrat_plasma_dd_triton_profile250_ 2.82974459737638300e+15 +D-D_->_T_fusion_rate_at_point_251________________________________________ fusrat_plasma_dd_triton_profile251_ 2.80711683484334400e+15 +D-D_->_T_fusion_rate_at_point_252________________________________________ fusrat_plasma_dd_triton_profile252_ 2.78452555347570450e+15 +D-D_->_T_fusion_rate_at_point_253________________________________________ fusrat_plasma_dd_triton_profile253_ 2.76197192090980750e+15 +D-D_->_T_fusion_rate_at_point_254________________________________________ fusrat_plasma_dd_triton_profile254_ 2.73945710221660000e+15 +D-D_->_T_fusion_rate_at_point_255________________________________________ fusrat_plasma_dd_triton_profile255_ 2.71698225980663250e+15 +D-D_->_T_fusion_rate_at_point_256________________________________________ fusrat_plasma_dd_triton_profile256_ 2.69454855333444700e+15 +D-D_->_T_fusion_rate_at_point_257________________________________________ fusrat_plasma_dd_triton_profile257_ 2.67215713960235200e+15 +D-D_->_T_fusion_rate_at_point_258________________________________________ fusrat_plasma_dd_triton_profile258_ 2.64980917246367000e+15 +D-D_->_T_fusion_rate_at_point_259________________________________________ fusrat_plasma_dd_triton_profile259_ 2.62750580272529650e+15 +D-D_->_T_fusion_rate_at_point_260________________________________________ fusrat_plasma_dd_triton_profile260_ 2.60524817804973400e+15 +D-D_->_T_fusion_rate_at_point_261________________________________________ fusrat_plasma_dd_triton_profile261_ 2.58303744285645400e+15 +D-D_->_T_fusion_rate_at_point_262________________________________________ fusrat_plasma_dd_triton_profile262_ 2.56087473822270800e+15 +D-D_->_T_fusion_rate_at_point_263________________________________________ fusrat_plasma_dd_triton_profile263_ 2.53876120178370200e+15 +D-D_->_T_fusion_rate_at_point_264________________________________________ fusrat_plasma_dd_triton_profile264_ 2.51669796763214850e+15 +D-D_->_T_fusion_rate_at_point_265________________________________________ fusrat_plasma_dd_triton_profile265_ 2.49468616621723000e+15 +D-D_->_T_fusion_rate_at_point_266________________________________________ fusrat_plasma_dd_triton_profile266_ 2.47272692424291700e+15 +D-D_->_T_fusion_rate_at_point_267________________________________________ fusrat_plasma_dd_triton_profile267_ 2.45082136456569250e+15 +D-D_->_T_fusion_rate_at_point_268________________________________________ fusrat_plasma_dd_triton_profile268_ 2.42897060609164150e+15 +D-D_->_T_fusion_rate_at_point_269________________________________________ fusrat_plasma_dd_triton_profile269_ 2.40717576367291050e+15 +D-D_->_T_fusion_rate_at_point_270________________________________________ fusrat_plasma_dd_triton_profile270_ 2.38543794800357100e+15 +D-D_->_T_fusion_rate_at_point_271________________________________________ fusrat_plasma_dd_triton_profile271_ 2.36375826551478650e+15 +D-D_->_T_fusion_rate_at_point_272________________________________________ fusrat_plasma_dd_triton_profile272_ 2.34213781826946600e+15 +D-D_->_T_fusion_rate_at_point_273________________________________________ fusrat_plasma_dd_triton_profile273_ 2.32057770385615600e+15 +D-D_->_T_fusion_rate_at_point_274________________________________________ fusrat_plasma_dd_triton_profile274_ 2.29907901528240200e+15 +D-D_->_T_fusion_rate_at_point_275________________________________________ fusrat_plasma_dd_triton_profile275_ 2.27764284086740500e+15 +D-D_->_T_fusion_rate_at_point_276________________________________________ fusrat_plasma_dd_triton_profile276_ 2.25627026413410150e+15 +D-D_->_T_fusion_rate_at_point_277________________________________________ fusrat_plasma_dd_triton_profile277_ 2.23496236370056175e+15 +D-D_->_T_fusion_rate_at_point_278________________________________________ fusrat_plasma_dd_triton_profile278_ 2.21372021317076925e+15 +D-D_->_T_fusion_rate_at_point_279________________________________________ fusrat_plasma_dd_triton_profile279_ 2.19254488102476300e+15 +D-D_->_T_fusion_rate_at_point_280________________________________________ fusrat_plasma_dd_triton_profile280_ 2.17143743050813600e+15 +D-D_->_T_fusion_rate_at_point_281________________________________________ fusrat_plasma_dd_triton_profile281_ 2.15039891952088725e+15 +D-D_->_T_fusion_rate_at_point_282________________________________________ fusrat_plasma_dd_triton_profile282_ 2.12943040050564625e+15 +D-D_->_T_fusion_rate_at_point_283________________________________________ fusrat_plasma_dd_triton_profile283_ 2.10853292033524425e+15 +D-D_->_T_fusion_rate_at_point_284________________________________________ fusrat_plasma_dd_triton_profile284_ 2.08770752019966200e+15 +D-D_->_T_fusion_rate_at_point_285________________________________________ fusrat_plasma_dd_triton_profile285_ 2.06695523549231075e+15 +D-D_->_T_fusion_rate_at_point_286________________________________________ fusrat_plasma_dd_triton_profile286_ 2.04627709569569225e+15 +D-D_->_T_fusion_rate_at_point_287________________________________________ fusrat_plasma_dd_triton_profile287_ 2.02567412426641275e+15 +D-D_->_T_fusion_rate_at_point_288________________________________________ fusrat_plasma_dd_triton_profile288_ 2.00514733851955375e+15 +D-D_->_T_fusion_rate_at_point_289________________________________________ fusrat_plasma_dd_triton_profile289_ 1.98469774951242050e+15 +D-D_->_T_fusion_rate_at_point_290________________________________________ fusrat_plasma_dd_triton_profile290_ 1.96432636192761325e+15 +D-D_->_T_fusion_rate_at_point_291________________________________________ fusrat_plasma_dd_triton_profile291_ 1.94403417395552875e+15 +D-D_->_T_fusion_rate_at_point_292________________________________________ fusrat_plasma_dd_triton_profile292_ 1.92382217717615000e+15 +D-D_->_T_fusion_rate_at_point_293________________________________________ fusrat_plasma_dd_triton_profile293_ 1.90369135644026250e+15 +D-D_->_T_fusion_rate_at_point_294________________________________________ fusrat_plasma_dd_triton_profile294_ 1.88364268975003050e+15 +D-D_->_T_fusion_rate_at_point_295________________________________________ fusrat_plasma_dd_triton_profile295_ 1.86367714813890325e+15 +D-D_->_T_fusion_rate_at_point_296________________________________________ fusrat_plasma_dd_triton_profile296_ 1.84379569555096000e+15 +D-D_->_T_fusion_rate_at_point_297________________________________________ fusrat_plasma_dd_triton_profile297_ 1.82399928871960325e+15 +D-D_->_T_fusion_rate_at_point_298________________________________________ fusrat_plasma_dd_triton_profile298_ 1.80428887704560625e+15 +D-D_->_T_fusion_rate_at_point_299________________________________________ fusrat_plasma_dd_triton_profile299_ 1.78466540247460800e+15 +D-D_->_T_fusion_rate_at_point_300________________________________________ fusrat_plasma_dd_triton_profile300_ 1.76512979937395425e+15 +D-D_->_T_fusion_rate_at_point_301________________________________________ fusrat_plasma_dd_triton_profile301_ 1.74568299440894850e+15 +D-D_->_T_fusion_rate_at_point_302________________________________________ fusrat_plasma_dd_triton_profile302_ 1.72632590641850100e+15 +D-D_->_T_fusion_rate_at_point_303________________________________________ fusrat_plasma_dd_triton_profile303_ 1.70705944629018400e+15 +D-D_->_T_fusion_rate_at_point_304________________________________________ fusrat_plasma_dd_triton_profile304_ 1.68788451683471500e+15 +D-D_->_T_fusion_rate_at_point_305________________________________________ fusrat_plasma_dd_triton_profile305_ 1.66880201265983600e+15 +D-D_->_T_fusion_rate_at_point_306________________________________________ fusrat_plasma_dd_triton_profile306_ 1.64981282004363075e+15 +D-D_->_T_fusion_rate_at_point_307________________________________________ fusrat_plasma_dd_triton_profile307_ 1.63091781680728100e+15 +D-D_->_T_fusion_rate_at_point_308________________________________________ fusrat_plasma_dd_triton_profile308_ 1.61211787218724100e+15 +D-D_->_T_fusion_rate_at_point_309________________________________________ fusrat_plasma_dd_triton_profile309_ 1.59341384670690900e+15 +D-D_->_T_fusion_rate_at_point_310________________________________________ fusrat_plasma_dd_triton_profile310_ 1.57480659204770575e+15 +D-D_->_T_fusion_rate_at_point_311________________________________________ fusrat_plasma_dd_triton_profile311_ 1.55629695091966325e+15 +D-D_->_T_fusion_rate_at_point_312________________________________________ fusrat_plasma_dd_triton_profile312_ 1.53788575693146025e+15 +D-D_->_T_fusion_rate_at_point_313________________________________________ fusrat_plasma_dd_triton_profile313_ 1.51957383445999525e+15 +D-D_->_T_fusion_rate_at_point_314________________________________________ fusrat_plasma_dd_triton_profile314_ 1.50136199851940000e+15 +D-D_->_T_fusion_rate_at_point_315________________________________________ fusrat_plasma_dd_triton_profile315_ 1.48325105462963425e+15 +D-D_->_T_fusion_rate_at_point_316________________________________________ fusrat_plasma_dd_triton_profile316_ 1.46524179868455825e+15 +D-D_->_T_fusion_rate_at_point_317________________________________________ fusrat_plasma_dd_triton_profile317_ 1.44733501681957850e+15 +D-D_->_T_fusion_rate_at_point_318________________________________________ fusrat_plasma_dd_triton_profile318_ 1.42953148527884225e+15 +D-D_->_T_fusion_rate_at_point_319________________________________________ fusrat_plasma_dd_triton_profile319_ 1.41183197028199575e+15 +D-D_->_T_fusion_rate_at_point_320________________________________________ fusrat_plasma_dd_triton_profile320_ 1.39423722789055400e+15 +D-D_->_T_fusion_rate_at_point_321________________________________________ fusrat_plasma_dd_triton_profile321_ 1.37674800387386150e+15 +D-D_->_T_fusion_rate_at_point_322________________________________________ fusrat_plasma_dd_triton_profile322_ 1.35936503357467125e+15 +D-D_->_T_fusion_rate_at_point_323________________________________________ fusrat_plasma_dd_triton_profile323_ 1.34208904177440300e+15 +D-D_->_T_fusion_rate_at_point_324________________________________________ fusrat_plasma_dd_triton_profile324_ 1.32492074255802325e+15 +D-D_->_T_fusion_rate_at_point_325________________________________________ fusrat_plasma_dd_triton_profile325_ 1.30786083917864875e+15 +D-D_->_T_fusion_rate_at_point_326________________________________________ fusrat_plasma_dd_triton_profile326_ 1.29091002392182450e+15 +D-D_->_T_fusion_rate_at_point_327________________________________________ fusrat_plasma_dd_triton_profile327_ 1.27406897796956925e+15 +D-D_->_T_fusion_rate_at_point_328________________________________________ fusrat_plasma_dd_triton_profile328_ 1.25733837126415100e+15 +D-D_->_T_fusion_rate_at_point_329________________________________________ fusrat_plasma_dd_triton_profile329_ 1.24071886237165925e+15 +D-D_->_T_fusion_rate_at_point_330________________________________________ fusrat_plasma_dd_triton_profile330_ 1.22421109834537400e+15 +D-D_->_T_fusion_rate_at_point_331________________________________________ fusrat_plasma_dd_triton_profile331_ 1.20781571458899200e+15 +D-D_->_T_fusion_rate_at_point_332________________________________________ fusrat_plasma_dd_triton_profile332_ 1.19153333471969925e+15 +D-D_->_T_fusion_rate_at_point_333________________________________________ fusrat_plasma_dd_triton_profile333_ 1.17536457043116225e+15 +D-D_->_T_fusion_rate_at_point_334________________________________________ fusrat_plasma_dd_triton_profile334_ 1.15931002135643100e+15 +D-D_->_T_fusion_rate_at_point_335________________________________________ fusrat_plasma_dd_triton_profile335_ 1.14337027493081400e+15 +D-D_->_T_fusion_rate_at_point_336________________________________________ fusrat_plasma_dd_triton_profile336_ 1.12754590625476900e+15 +D-D_->_T_fusion_rate_at_point_337________________________________________ fusrat_plasma_dd_triton_profile337_ 1.11183747795679750e+15 +D-D_->_T_fusion_rate_at_point_338________________________________________ fusrat_plasma_dd_triton_profile338_ 1.09624554005645138e+15 +D-D_->_T_fusion_rate_at_point_339________________________________________ fusrat_plasma_dd_triton_profile339_ 1.08077062982742650e+15 +D-D_->_T_fusion_rate_at_point_340________________________________________ fusrat_plasma_dd_triton_profile340_ 1.06541327166083500e+15 +D-D_->_T_fusion_rate_at_point_341________________________________________ fusrat_plasma_dd_triton_profile341_ 1.05017397692866050e+15 +D-D_->_T_fusion_rate_at_point_342________________________________________ fusrat_plasma_dd_triton_profile342_ 1.03505324384748650e+15 +D-D_->_T_fusion_rate_at_point_343________________________________________ fusrat_plasma_dd_triton_profile343_ 1.02005155734248688e+15 +D-D_->_T_fusion_rate_at_point_344________________________________________ fusrat_plasma_dd_triton_profile344_ 1.00516938891179538e+15 +D-D_->_T_fusion_rate_at_point_345________________________________________ fusrat_plasma_dd_triton_profile345_ 9.90407196491242750e+14 +D-D_->_T_fusion_rate_at_point_346________________________________________ fusrat_plasma_dd_triton_profile346_ 9.75765424319568625e+14 +D-D_->_T_fusion_rate_at_point_347________________________________________ fusrat_plasma_dd_triton_profile347_ 9.61244502804122375e+14 +D-D_->_T_fusion_rate_at_point_348________________________________________ fusrat_plasma_dd_triton_profile348_ 9.46844848387139000e+14 +D-D_->_T_fusion_rate_at_point_349________________________________________ fusrat_plasma_dd_triton_profile349_ 9.32566863412633125e+14 +D-D_->_T_fusion_rate_at_point_350________________________________________ fusrat_plasma_dd_triton_profile350_ 9.18410935994001000e+14 +D-D_->_T_fusion_rate_at_point_351________________________________________ fusrat_plasma_dd_triton_profile351_ 9.04377439882342875e+14 +D-D_->_T_fusion_rate_at_point_352________________________________________ fusrat_plasma_dd_triton_profile352_ 8.90466734335646375e+14 +D-D_->_T_fusion_rate_at_point_353________________________________________ fusrat_plasma_dd_triton_profile353_ 8.76679163988840875e+14 +D-D_->_T_fusion_rate_at_point_354________________________________________ fusrat_plasma_dd_triton_profile354_ 8.63015058724823625e+14 +D-D_->_T_fusion_rate_at_point_355________________________________________ fusrat_plasma_dd_triton_profile355_ 8.49474733546545250e+14 +D-D_->_T_fusion_rate_at_point_356________________________________________ fusrat_plasma_dd_triton_profile356_ 8.36058488450196875e+14 +D-D_->_T_fusion_rate_at_point_357________________________________________ fusrat_plasma_dd_triton_profile357_ 8.22766608299623375e+14 +D-D_->_T_fusion_rate_at_point_358________________________________________ fusrat_plasma_dd_triton_profile358_ 8.09599362702027125e+14 +D-D_->_T_fusion_rate_at_point_359________________________________________ fusrat_plasma_dd_triton_profile359_ 7.96557005885047625e+14 +D-D_->_T_fusion_rate_at_point_360________________________________________ fusrat_plasma_dd_triton_profile360_ 7.83639776575324750e+14 +D-D_->_T_fusion_rate_at_point_361________________________________________ fusrat_plasma_dd_triton_profile361_ 7.70847897878632375e+14 +D-D_->_T_fusion_rate_at_point_362________________________________________ fusrat_plasma_dd_triton_profile362_ 7.58181577161683750e+14 +D-D_->_T_fusion_rate_at_point_363________________________________________ fusrat_plasma_dd_triton_profile363_ 7.45641005935711250e+14 +D-D_->_T_fusion_rate_at_point_364________________________________________ fusrat_plasma_dd_triton_profile364_ 7.33226359741934375e+14 +D-D_->_T_fusion_rate_at_point_365________________________________________ fusrat_plasma_dd_triton_profile365_ 7.20937798039018625e+14 +D-D_->_T_fusion_rate_at_point_366________________________________________ fusrat_plasma_dd_triton_profile366_ 7.08775464092650750e+14 +D-D_->_T_fusion_rate_at_point_367________________________________________ fusrat_plasma_dd_triton_profile367_ 6.96739484867339000e+14 +D-D_->_T_fusion_rate_at_point_368________________________________________ fusrat_plasma_dd_triton_profile368_ 6.84829970920570500e+14 +D-D_->_T_fusion_rate_at_point_369________________________________________ fusrat_plasma_dd_triton_profile369_ 6.73047016299463000e+14 +D-D_->_T_fusion_rate_at_point_370________________________________________ fusrat_plasma_dd_triton_profile370_ 6.61390698440019250e+14 +D-D_->_T_fusion_rate_at_point_371________________________________________ fusrat_plasma_dd_triton_profile371_ 6.49861078069158375e+14 +D-D_->_T_fusion_rate_at_point_372________________________________________ fusrat_plasma_dd_triton_profile372_ 6.38458199109628125e+14 +D-D_->_T_fusion_rate_at_point_373________________________________________ fusrat_plasma_dd_triton_profile373_ 6.27182088587991000e+14 +D-D_->_T_fusion_rate_at_point_374________________________________________ fusrat_plasma_dd_triton_profile374_ 6.16032756545795500e+14 +D-D_->_T_fusion_rate_at_point_375________________________________________ fusrat_plasma_dd_triton_profile375_ 6.05010195954129750e+14 +D-D_->_T_fusion_rate_at_point_376________________________________________ fusrat_plasma_dd_triton_profile376_ 5.94114382631699375e+14 +D-D_->_T_fusion_rate_at_point_377________________________________________ fusrat_plasma_dd_triton_profile377_ 5.83345275166614625e+14 +D-D_->_T_fusion_rate_at_point_378________________________________________ fusrat_plasma_dd_triton_profile378_ 5.72702814842058500e+14 +D-D_->_T_fusion_rate_at_point_379________________________________________ fusrat_plasma_dd_triton_profile379_ 5.62186925566032438e+14 +D-D_->_T_fusion_rate_at_point_380________________________________________ fusrat_plasma_dd_triton_profile380_ 5.51797513805349375e+14 +D-D_->_T_fusion_rate_at_point_381________________________________________ fusrat_plasma_dd_triton_profile381_ 5.41534468524111312e+14 +D-D_->_T_fusion_rate_at_point_382________________________________________ fusrat_plasma_dd_triton_profile382_ 5.31397661126832312e+14 +D-D_->_T_fusion_rate_at_point_383________________________________________ fusrat_plasma_dd_triton_profile383_ 5.21386945406463438e+14 +D-D_->_T_fusion_rate_at_point_384________________________________________ fusrat_plasma_dd_triton_profile384_ 5.11502157497510188e+14 +D-D_->_T_fusion_rate_at_point_385________________________________________ fusrat_plasma_dd_triton_profile385_ 5.01743115834503250e+14 +D-D_->_T_fusion_rate_at_point_386________________________________________ fusrat_plasma_dd_triton_profile386_ 4.92109621116033062e+14 +D-D_->_T_fusion_rate_at_point_387________________________________________ fusrat_plasma_dd_triton_profile387_ 4.82601456274622688e+14 +D-D_->_T_fusion_rate_at_point_388________________________________________ fusrat_plasma_dd_triton_profile388_ 4.73218386452685125e+14 +D-D_->_T_fusion_rate_at_point_389________________________________________ fusrat_plasma_dd_triton_profile389_ 4.63960158984838875e+14 +D-D_->_T_fusion_rate_at_point_390________________________________________ fusrat_plasma_dd_triton_profile390_ 4.54826503386857562e+14 +D-D_->_T_fusion_rate_at_point_391________________________________________ fusrat_plasma_dd_triton_profile391_ 4.45817131351560438e+14 +D-D_->_T_fusion_rate_at_point_392________________________________________ fusrat_plasma_dd_triton_profile392_ 4.36931736751922438e+14 +D-D_->_T_fusion_rate_at_point_393________________________________________ fusrat_plasma_dd_triton_profile393_ 4.28169995651744875e+14 +D-D_->_T_fusion_rate_at_point_394________________________________________ fusrat_plasma_dd_triton_profile394_ 4.19531566324210000e+14 +D-D_->_T_fusion_rate_at_point_395________________________________________ fusrat_plasma_dd_triton_profile395_ 4.11016089278648062e+14 +D-D_->_T_fusion_rate_at_point_396________________________________________ fusrat_plasma_dd_triton_profile396_ 4.02623187295905375e+14 +D-D_->_T_fusion_rate_at_point_397________________________________________ fusrat_plasma_dd_triton_profile397_ 3.94352465472666375e+14 +D-D_->_T_fusion_rate_at_point_398________________________________________ fusrat_plasma_dd_triton_profile398_ 3.86203511275130125e+14 +D-D_->_T_fusion_rate_at_point_399________________________________________ fusrat_plasma_dd_triton_profile399_ 3.78175894602462938e+14 +D-D_->_T_fusion_rate_at_point_400________________________________________ fusrat_plasma_dd_triton_profile400_ 3.70269167860441812e+14 +D-D_->_T_fusion_rate_at_point_401________________________________________ fusrat_plasma_dd_triton_profile401_ 3.62482866045763000e+14 +D-D_->_T_fusion_rate_at_point_402________________________________________ fusrat_plasma_dd_triton_profile402_ 3.54816506841474312e+14 +D-D_->_T_fusion_rate_at_point_403________________________________________ fusrat_plasma_dd_triton_profile403_ 3.47269590724048812e+14 +D-D_->_T_fusion_rate_at_point_404________________________________________ fusrat_plasma_dd_triton_profile404_ 3.39841601082620188e+14 +D-D_->_T_fusion_rate_at_point_405________________________________________ fusrat_plasma_dd_triton_profile405_ 3.32532004350947562e+14 +D-D_->_T_fusion_rate_at_point_406________________________________________ fusrat_plasma_dd_triton_profile406_ 3.25340250152696062e+14 +D-D_->_T_fusion_rate_at_point_407________________________________________ fusrat_plasma_dd_triton_profile407_ 3.18265771460667562e+14 +D-D_->_T_fusion_rate_at_point_408________________________________________ fusrat_plasma_dd_triton_profile408_ 3.11307984770639750e+14 +D-D_->_T_fusion_rate_at_point_409________________________________________ fusrat_plasma_dd_triton_profile409_ 3.04466290290541875e+14 +D-D_->_T_fusion_rate_at_point_410________________________________________ fusrat_plasma_dd_triton_profile410_ 2.97740072145702438e+14 +D-D_->_T_fusion_rate_at_point_411________________________________________ fusrat_plasma_dd_triton_profile411_ 2.91128698601000250e+14 +D-D_->_T_fusion_rate_at_point_412________________________________________ fusrat_plasma_dd_triton_profile412_ 2.84631522300770250e+14 +D-D_->_T_fusion_rate_at_point_413________________________________________ fusrat_plasma_dd_triton_profile413_ 2.78247880527414625e+14 +D-D_->_T_fusion_rate_at_point_414________________________________________ fusrat_plasma_dd_triton_profile414_ 2.71977095479709781e+14 +D-D_->_T_fusion_rate_at_point_415________________________________________ fusrat_plasma_dd_triton_profile415_ 2.65818474571902438e+14 +D-D_->_T_fusion_rate_at_point_416________________________________________ fusrat_plasma_dd_triton_profile416_ 2.59771310754775062e+14 +D-D_->_T_fusion_rate_at_point_417________________________________________ fusrat_plasma_dd_triton_profile417_ 2.53834882859948094e+14 +D-D_->_T_fusion_rate_at_point_418________________________________________ fusrat_plasma_dd_triton_profile418_ 2.48008455968818844e+14 +D-D_->_T_fusion_rate_at_point_419________________________________________ fusrat_plasma_dd_triton_profile419_ 2.42291281807657969e+14 +D-D_->_T_fusion_rate_at_point_420________________________________________ fusrat_plasma_dd_triton_profile420_ 2.36682599170525094e+14 +D-D_->_T_fusion_rate_at_point_421________________________________________ fusrat_plasma_dd_triton_profile421_ 2.31181634371841562e+14 +D-D_->_T_fusion_rate_at_point_422________________________________________ fusrat_plasma_dd_triton_profile422_ 2.25787601730638031e+14 +D-D_->_T_fusion_rate_at_point_423________________________________________ fusrat_plasma_dd_triton_profile423_ 2.20499704088717656e+14 +D-D_->_T_fusion_rate_at_point_424________________________________________ fusrat_plasma_dd_triton_profile424_ 2.15317133365208875e+14 +D-D_->_T_fusion_rate_at_point_425________________________________________ fusrat_plasma_dd_triton_profile425_ 2.10239071150290000e+14 +D-D_->_T_fusion_rate_at_point_426________________________________________ fusrat_plasma_dd_triton_profile426_ 2.05264689341157375e+14 +D-D_->_T_fusion_rate_at_point_427________________________________________ fusrat_plasma_dd_triton_profile427_ 2.00393150823718062e+14 +D-D_->_T_fusion_rate_at_point_428________________________________________ fusrat_plasma_dd_triton_profile428_ 1.95623610203906000e+14 +D-D_->_T_fusion_rate_at_point_429________________________________________ fusrat_plasma_dd_triton_profile429_ 1.90955214593026625e+14 +D-D_->_T_fusion_rate_at_point_430________________________________________ fusrat_plasma_dd_triton_profile430_ 1.86387104452128750e+14 +D-D_->_T_fusion_rate_at_point_431________________________________________ fusrat_plasma_dd_triton_profile431_ 1.81918414501089562e+14 +D-D_->_T_fusion_rate_at_point_432________________________________________ fusrat_plasma_dd_triton_profile432_ 1.77548274698904250e+14 +D-D_->_T_fusion_rate_at_point_433________________________________________ fusrat_plasma_dd_triton_profile433_ 1.73275811302627250e+14 +D-D_->_T_fusion_rate_at_point_434________________________________________ fusrat_plasma_dd_triton_profile434_ 1.69100148013534469e+14 +D-D_->_T_fusion_rate_at_point_435________________________________________ fusrat_plasma_dd_triton_profile435_ 1.65020407220408531e+14 +D-D_->_T_fusion_rate_at_point_436________________________________________ fusrat_plasma_dd_triton_profile436_ 1.61035711351447094e+14 +D-D_->_T_fusion_rate_at_point_437________________________________________ fusrat_plasma_dd_triton_profile437_ 1.57145184348192125e+14 +D-D_->_T_fusion_rate_at_point_438________________________________________ fusrat_plasma_dd_triton_profile438_ 1.53347953277174812e+14 +D-D_->_T_fusion_rate_at_point_439________________________________________ fusrat_plasma_dd_triton_profile439_ 1.49643150097733906e+14 +D-D_->_T_fusion_rate_at_point_440________________________________________ fusrat_plasma_dd_triton_profile440_ 1.46029913607844438e+14 +D-D_->_T_fusion_rate_at_point_441________________________________________ fusrat_plasma_dd_triton_profile441_ 1.42507391593886625e+14 +D-D_->_T_fusion_rate_at_point_442________________________________________ fusrat_plasma_dd_triton_profile442_ 1.39074743215365719e+14 +D-D_->_T_fusion_rate_at_point_443________________________________________ fusrat_plasma_dd_triton_profile443_ 1.35731141661824156e+14 +D-D_->_T_fusion_rate_at_point_444________________________________________ fusrat_plasma_dd_triton_profile444_ 1.32475777127010172e+14 +D-D_->_T_fusion_rate_at_point_445________________________________________ fusrat_plasma_dd_triton_profile445_ 1.29307860155107125e+14 +D-D_->_T_fusion_rate_at_point_446________________________________________ fusrat_plasma_dd_triton_profile446_ 1.26226625426230578e+14 +D-D_->_T_fusion_rate_at_point_447________________________________________ fusrat_plasma_dd_triton_profile447_ 1.23231336064143391e+14 +D-D_->_T_fusion_rate_at_point_448________________________________________ fusrat_plasma_dd_triton_profile448_ 1.20321288569436531e+14 +D-D_->_T_fusion_rate_at_point_449________________________________________ fusrat_plasma_dd_triton_profile449_ 1.17495818507801000e+14 +D-D_->_T_fusion_rate_at_point_450________________________________________ fusrat_plasma_dd_triton_profile450_ 1.14754307117648953e+14 +D-D_->_T_fusion_rate_at_point_451________________________________________ fusrat_plasma_dd_triton_profile451_ 1.12096189047378703e+14 +D-D_->_T_fusion_rate_at_point_452________________________________________ fusrat_plasma_dd_triton_profile452_ 1.09520961494528469e+14 +D-D_->_T_fusion_rate_at_point_453________________________________________ fusrat_plasma_dd_triton_profile453_ 1.07028195103613406e+14 +D-D_->_T_fusion_rate_at_point_454________________________________________ fusrat_plasma_dd_triton_profile454_ 1.04617547096615266e+14 +D-D_->_T_fusion_rate_at_point_455________________________________________ fusrat_plasma_dd_triton_profile455_ 1.02288777275244969e+14 +D-D_->_T_fusion_rate_at_point_456________________________________________ fusrat_plasma_dd_triton_profile456_ 1.00041767771369094e+14 +D-D_->_T_fusion_rate_at_point_457________________________________________ fusrat_plasma_dd_triton_profile457_ 9.78765477701075000e+13 +D-D_->_T_fusion_rate_at_point_458________________________________________ fusrat_plasma_dd_triton_profile458_ 9.57933249532992031e+13 +D-D_->_T_fusion_rate_at_point_459________________________________________ fusrat_plasma_dd_triton_profile459_ 9.37925262189810000e+13 +D-D_->_T_fusion_rate_at_point_460________________________________________ fusrat_plasma_dd_triton_profile460_ 9.18748515199090781e+13 +D-D_->_T_fusion_rate_at_point_461________________________________________ fusrat_plasma_dd_triton_profile461_ 9.00413467912414375e+13 +D-D_->_T_fusion_rate_at_point_462________________________________________ fusrat_plasma_dd_triton_profile462_ 8.82935056054448438e+13 +D-D_->_T_fusion_rate_at_point_463________________________________________ fusrat_plasma_dd_triton_profile463_ 8.66334158486766875e+13 +D-D_->_T_fusion_rate_at_point_464________________________________________ fusrat_plasma_dd_triton_profile464_ 8.50639805674992344e+13 +D-D_->_T_fusion_rate_at_point_465________________________________________ fusrat_plasma_dd_triton_profile465_ 8.35892689682014688e+13 +D-D_->_T_fusion_rate_at_point_466________________________________________ fusrat_plasma_dd_triton_profile466_ 8.22151154911323594e+13 +D-D_->_T_fusion_rate_at_point_467________________________________________ fusrat_plasma_dd_triton_profile467_ 8.09502487506838906e+13 +D-D_->_T_fusion_rate_at_point_468________________________________________ fusrat_plasma_dd_triton_profile468_ 7.98087612703649219e+13 +D-D_->_T_fusion_rate_at_point_469________________________________________ fusrat_plasma_dd_triton_profile469_ 7.88171206606686719e+13 +D-D_->_T_fusion_rate_at_point_470________________________________________ fusrat_plasma_dd_triton_profile470_ 7.80576250249509688e+13 +D-D_->_T_fusion_rate_at_point_471________________________________________ fusrat_plasma_dd_triton_profile471_ 6.87991457755248203e+13 +D-D_->_T_fusion_rate_at_point_472________________________________________ fusrat_plasma_dd_triton_profile472_ 6.03287333485401016e+13 +D-D_->_T_fusion_rate_at_point_473________________________________________ fusrat_plasma_dd_triton_profile473_ 5.26087477043695000e+13 +D-D_->_T_fusion_rate_at_point_474________________________________________ fusrat_plasma_dd_triton_profile474_ 4.56017099216748828e+13 +D-D_->_T_fusion_rate_at_point_475________________________________________ fusrat_plasma_dd_triton_profile475_ 3.92703181078523594e+13 +D-D_->_T_fusion_rate_at_point_476________________________________________ fusrat_plasma_dd_triton_profile476_ 3.35774653039579609e+13 +D-D_->_T_fusion_rate_at_point_477________________________________________ fusrat_plasma_dd_triton_profile477_ 2.84862597555669219e+13 +D-D_->_T_fusion_rate_at_point_478________________________________________ fusrat_plasma_dd_triton_profile478_ 2.39600480072986484e+13 +D-D_->_T_fusion_rate_at_point_479________________________________________ fusrat_plasma_dd_triton_profile479_ 1.99624413875788867e+13 +D-D_->_T_fusion_rate_at_point_480________________________________________ fusrat_plasma_dd_triton_profile480_ 1.64573465879320137e+13 +D-D_->_T_fusion_rate_at_point_481________________________________________ fusrat_plasma_dd_triton_profile481_ 1.34090012158209004e+13 +D-D_->_T_fusion_rate_at_point_482________________________________________ fusrat_plasma_dd_triton_profile482_ 1.07820154221733262e+13 +D-D_->_T_fusion_rate_at_point_483________________________________________ fusrat_plasma_dd_triton_profile483_ 8.54142098742457617e+12 +D-D_->_T_fusion_rate_at_point_484________________________________________ fusrat_plasma_dd_triton_profile484_ 6.65272960962937402e+12 +D-D_->_T_fusion_rate_at_point_485________________________________________ fusrat_plasma_dd_triton_profile485_ 5.08200259499715234e+12 +D-D_->_T_fusion_rate_at_point_486________________________________________ fusrat_plasma_dd_triton_profile486_ 3.79593472839732568e+12 +D-D_->_T_fusion_rate_at_point_487________________________________________ fusrat_plasma_dd_triton_profile487_ 2.76195582376584814e+12 +D-D_->_T_fusion_rate_at_point_488________________________________________ fusrat_plasma_dd_triton_profile488_ 1.94835434309386670e+12 +D-D_->_T_fusion_rate_at_point_489________________________________________ fusrat_plasma_dd_triton_profile489_ 1.32442853322553101e+12 +D-D_->_T_fusion_rate_at_point_490________________________________________ fusrat_plasma_dd_triton_profile490_ 8.60671724929821289e+11 +D-D_->_T_fusion_rate_at_point_491________________________________________ fusrat_plasma_dd_triton_profile491_ 5.28999632149840088e+11 +D-D_->_T_fusion_rate_at_point_492________________________________________ fusrat_plasma_dd_triton_profile492_ 3.03028327086924500e+11 +D-D_->_T_fusion_rate_at_point_493________________________________________ fusrat_plasma_dd_triton_profile493_ 1.58411236896574646e+11 +D-D_->_T_fusion_rate_at_point_494________________________________________ fusrat_plasma_dd_triton_profile494_ 7.32402598457300873e+10 +D-D_->_T_fusion_rate_at_point_495________________________________________ fusrat_plasma_dd_triton_profile495_ 2.85063235663972282e+10 +D-D_->_T_fusion_rate_at_point_496________________________________________ fusrat_plasma_dd_triton_profile496_ 8.59134259353750038e+09 +D-D_->_T_fusion_rate_at_point_497________________________________________ fusrat_plasma_dd_triton_profile497_ 1.71408681223409510e+09 +D-D_->_T_fusion_rate_at_point_498________________________________________ fusrat_plasma_dd_triton_profile498_ 1.60653212249471605e+08 +D-D_->_T_fusion_rate_at_point_499________________________________________ fusrat_plasma_dd_triton_profile499_ 2.65450094152898202e+06 +D-D_->_T_fusion_rate_at_point_500________________________________________ fusrat_plasma_dd_triton_profile500_ 3.86654838447298275e+01 +D-D_->_3He_fusion_rate_at_point_0________________________________________ fusrat_plasma_dd_helion_profile0_ 7.44868685464361500e+15 +D-D_->_3He_fusion_rate_at_point_1________________________________________ fusrat_plasma_dd_helion_profile1_ 7.44859390129149900e+15 +D-D_->_3He_fusion_rate_at_point_2________________________________________ fusrat_plasma_dd_helion_profile2_ 7.44831504598270500e+15 +D-D_->_3He_fusion_rate_at_point_3________________________________________ fusrat_plasma_dd_helion_profile3_ 7.44785030295961100e+15 +D-D_->_3He_fusion_rate_at_point_4________________________________________ fusrat_plasma_dd_helion_profile4_ 7.44719969595893700e+15 +D-D_->_3He_fusion_rate_at_point_5________________________________________ fusrat_plasma_dd_helion_profile5_ 7.44636325821062700e+15 +D-D_->_3He_fusion_rate_at_point_6________________________________________ fusrat_plasma_dd_helion_profile6_ 7.44534103243661100e+15 +D-D_->_3He_fusion_rate_at_point_7________________________________________ fusrat_plasma_dd_helion_profile7_ 7.44413307084892900e+15 +D-D_->_3He_fusion_rate_at_point_8________________________________________ fusrat_plasma_dd_helion_profile8_ 7.44273943514759700e+15 +D-D_->_3He_fusion_rate_at_point_9________________________________________ fusrat_plasma_dd_helion_profile9_ 7.44116019651805200e+15 +D-D_->_3He_fusion_rate_at_point_10_______________________________________ fusrat_plasma_dd_helion_profile10_ 7.43939543562818800e+15 +D-D_->_3He_fusion_rate_at_point_11_______________________________________ fusrat_plasma_dd_helion_profile11_ 7.43744524262501700e+15 +D-D_->_3He_fusion_rate_at_point_12_______________________________________ fusrat_plasma_dd_helion_profile12_ 7.43530971713094300e+15 +D-D_->_3He_fusion_rate_at_point_13_______________________________________ fusrat_plasma_dd_helion_profile13_ 7.43298896823956300e+15 +D-D_->_3He_fusion_rate_at_point_14_______________________________________ fusrat_plasma_dd_helion_profile14_ 7.43048311451118200e+15 +D-D_->_3He_fusion_rate_at_point_15_______________________________________ fusrat_plasma_dd_helion_profile15_ 7.42779228396791800e+15 +D-D_->_3He_fusion_rate_at_point_16_______________________________________ fusrat_plasma_dd_helion_profile16_ 7.42491661408829000e+15 +D-D_->_3He_fusion_rate_at_point_17_______________________________________ fusrat_plasma_dd_helion_profile17_ 7.42185625180159100e+15 +D-D_->_3He_fusion_rate_at_point_18_______________________________________ fusrat_plasma_dd_helion_profile18_ 7.41861135348173700e+15 +D-D_->_3He_fusion_rate_at_point_19_______________________________________ fusrat_plasma_dd_helion_profile19_ 7.41518208494077100e+15 +D-D_->_3He_fusion_rate_at_point_20_______________________________________ fusrat_plasma_dd_helion_profile20_ 7.41156862142197000e+15 +D-D_->_3He_fusion_rate_at_point_21_______________________________________ fusrat_plasma_dd_helion_profile21_ 7.40777114759253300e+15 +D-D_->_3He_fusion_rate_at_point_22_______________________________________ fusrat_plasma_dd_helion_profile22_ 7.40378985753592200e+15 +D-D_->_3He_fusion_rate_at_point_23_______________________________________ fusrat_plasma_dd_helion_profile23_ 7.39962495474377300e+15 +D-D_->_3He_fusion_rate_at_point_24_______________________________________ fusrat_plasma_dd_helion_profile24_ 7.39527665210737400e+15 +D-D_->_3He_fusion_rate_at_point_25_______________________________________ fusrat_plasma_dd_helion_profile25_ 7.39074517190884900e+15 +D-D_->_3He_fusion_rate_at_point_26_______________________________________ fusrat_plasma_dd_helion_profile26_ 7.38603074581189400e+15 +D-D_->_3He_fusion_rate_at_point_27_______________________________________ fusrat_plasma_dd_helion_profile27_ 7.38113361485205400e+15 +D-D_->_3He_fusion_rate_at_point_28_______________________________________ fusrat_plasma_dd_helion_profile28_ 7.37605402942670100e+15 +D-D_->_3He_fusion_rate_at_point_29_______________________________________ fusrat_plasma_dd_helion_profile29_ 7.37079224928459800e+15 +D-D_->_3He_fusion_rate_at_point_30_______________________________________ fusrat_plasma_dd_helion_profile30_ 7.36534854351501000e+15 +D-D_->_3He_fusion_rate_at_point_31_______________________________________ fusrat_plasma_dd_helion_profile31_ 7.35972319053648300e+15 +D-D_->_3He_fusion_rate_at_point_32_______________________________________ fusrat_plasma_dd_helion_profile32_ 7.35391647808521100e+15 +D-D_->_3He_fusion_rate_at_point_33_______________________________________ fusrat_plasma_dd_helion_profile33_ 7.34792870320295200e+15 +D-D_->_3He_fusion_rate_at_point_34_______________________________________ fusrat_plasma_dd_helion_profile34_ 7.34176017222463800e+15 +D-D_->_3He_fusion_rate_at_point_35_______________________________________ fusrat_plasma_dd_helion_profile35_ 7.33541120076555000e+15 +D-D_->_3He_fusion_rate_at_point_36_______________________________________ fusrat_plasma_dd_helion_profile36_ 7.32888211370805000e+15 +D-D_->_3He_fusion_rate_at_point_37_______________________________________ fusrat_plasma_dd_helion_profile37_ 7.32217324518798100e+15 +D-D_->_3He_fusion_rate_at_point_38_______________________________________ fusrat_plasma_dd_helion_profile38_ 7.31528493858063300e+15 +D-D_->_3He_fusion_rate_at_point_39_______________________________________ fusrat_plasma_dd_helion_profile39_ 7.30821754648636200e+15 +D-D_->_3He_fusion_rate_at_point_40_______________________________________ fusrat_plasma_dd_helion_profile40_ 7.30097143071573700e+15 +D-D_->_3He_fusion_rate_at_point_41_______________________________________ fusrat_plasma_dd_helion_profile41_ 7.29354696227433500e+15 +D-D_->_3He_fusion_rate_at_point_42_______________________________________ fusrat_plasma_dd_helion_profile42_ 7.28594452134713800e+15 +D-D_->_3He_fusion_rate_at_point_43_______________________________________ fusrat_plasma_dd_helion_profile43_ 7.27816449728250700e+15 +D-D_->_3He_fusion_rate_at_point_44_______________________________________ fusrat_plasma_dd_helion_profile44_ 7.27020728857582300e+15 +D-D_->_3He_fusion_rate_at_point_45_______________________________________ fusrat_plasma_dd_helion_profile45_ 7.26207330285263100e+15 +D-D_->_3He_fusion_rate_at_point_46_______________________________________ fusrat_plasma_dd_helion_profile46_ 7.25376295685143500e+15 +D-D_->_3He_fusion_rate_at_point_47_______________________________________ fusrat_plasma_dd_helion_profile47_ 7.24527667640616600e+15 +D-D_->_3He_fusion_rate_at_point_48_______________________________________ fusrat_plasma_dd_helion_profile48_ 7.23661489642808500e+15 +D-D_->_3He_fusion_rate_at_point_49_______________________________________ fusrat_plasma_dd_helion_profile49_ 7.22777806088748500e+15 +D-D_->_3He_fusion_rate_at_point_50_______________________________________ fusrat_plasma_dd_helion_profile50_ 7.21876662279478500e+15 +D-D_->_3He_fusion_rate_at_point_51_______________________________________ fusrat_plasma_dd_helion_profile51_ 7.20958104418142600e+15 +D-D_->_3He_fusion_rate_at_point_52_______________________________________ fusrat_plasma_dd_helion_profile52_ 7.20022179608023700e+15 +D-D_->_3He_fusion_rate_at_point_53_______________________________________ fusrat_plasma_dd_helion_profile53_ 7.19068935850537800e+15 +D-D_->_3He_fusion_rate_at_point_54_______________________________________ fusrat_plasma_dd_helion_profile54_ 7.18098422043208900e+15 +D-D_->_3He_fusion_rate_at_point_55_______________________________________ fusrat_plasma_dd_helion_profile55_ 7.17110687977573000e+15 +D-D_->_3He_fusion_rate_at_point_56_______________________________________ fusrat_plasma_dd_helion_profile56_ 7.16105784337068100e+15 +D-D_->_3He_fusion_rate_at_point_57_______________________________________ fusrat_plasma_dd_helion_profile57_ 7.15083762694870100e+15 +D-D_->_3He_fusion_rate_at_point_58_______________________________________ fusrat_plasma_dd_helion_profile58_ 7.14044675511696200e+15 +D-D_->_3He_fusion_rate_at_point_59_______________________________________ fusrat_plasma_dd_helion_profile59_ 7.12988576133561000e+15 +D-D_->_3He_fusion_rate_at_point_60_______________________________________ fusrat_plasma_dd_helion_profile60_ 7.11915518789494600e+15 +D-D_->_3He_fusion_rate_at_point_61_______________________________________ fusrat_plasma_dd_helion_profile61_ 7.10825558589228700e+15 +D-D_->_3He_fusion_rate_at_point_62_______________________________________ fusrat_plasma_dd_helion_profile62_ 7.09718751520829400e+15 +D-D_->_3He_fusion_rate_at_point_63_______________________________________ fusrat_plasma_dd_helion_profile63_ 7.08595154448297900e+15 +D-D_->_3He_fusion_rate_at_point_64_______________________________________ fusrat_plasma_dd_helion_profile64_ 7.07454825109130400e+15 +D-D_->_3He_fusion_rate_at_point_65_______________________________________ fusrat_plasma_dd_helion_profile65_ 7.06297822111833300e+15 +D-D_->_3He_fusion_rate_at_point_66_______________________________________ fusrat_plasma_dd_helion_profile66_ 7.05124204933404400e+15 +D-D_->_3He_fusion_rate_at_point_67_______________________________________ fusrat_plasma_dd_helion_profile67_ 7.03934033916766300e+15 +D-D_->_3He_fusion_rate_at_point_68_______________________________________ fusrat_plasma_dd_helion_profile68_ 7.02727370268169600e+15 +D-D_->_3He_fusion_rate_at_point_69_______________________________________ fusrat_plasma_dd_helion_profile69_ 7.01504276054540500e+15 +D-D_->_3He_fusion_rate_at_point_70_______________________________________ fusrat_plasma_dd_helion_profile70_ 7.00264814200803900e+15 +D-D_->_3He_fusion_rate_at_point_71_______________________________________ fusrat_plasma_dd_helion_profile71_ 6.99009048487157200e+15 +D-D_->_3He_fusion_rate_at_point_72_______________________________________ fusrat_plasma_dd_helion_profile72_ 6.97737043546305200e+15 +D-D_->_3He_fusion_rate_at_point_73_______________________________________ fusrat_plasma_dd_helion_profile73_ 6.96448864860651700e+15 +D-D_->_3He_fusion_rate_at_point_74_______________________________________ fusrat_plasma_dd_helion_profile74_ 6.95144578759456900e+15 +D-D_->_3He_fusion_rate_at_point_75_______________________________________ fusrat_plasma_dd_helion_profile75_ 6.93824252415948100e+15 +D-D_->_3He_fusion_rate_at_point_76_______________________________________ fusrat_plasma_dd_helion_profile76_ 6.92487953844395400e+15 +D-D_->_3He_fusion_rate_at_point_77_______________________________________ fusrat_plasma_dd_helion_profile77_ 6.91135751897139300e+15 +D-D_->_3He_fusion_rate_at_point_78_______________________________________ fusrat_plasma_dd_helion_profile78_ 6.89767716261580300e+15 +D-D_->_3He_fusion_rate_at_point_79_______________________________________ fusrat_plasma_dd_helion_profile79_ 6.88383917457139300e+15 +D-D_->_3He_fusion_rate_at_point_80_______________________________________ fusrat_plasma_dd_helion_profile80_ 6.86984426832149800e+15 +D-D_->_3He_fusion_rate_at_point_81_______________________________________ fusrat_plasma_dd_helion_profile81_ 6.85569316560743200e+15 +D-D_->_3He_fusion_rate_at_point_82_______________________________________ fusrat_plasma_dd_helion_profile82_ 6.84138659639663800e+15 +D-D_->_3He_fusion_rate_at_point_83_______________________________________ fusrat_plasma_dd_helion_profile83_ 6.82692529885061800e+15 +D-D_->_3He_fusion_rate_at_point_84_______________________________________ fusrat_plasma_dd_helion_profile84_ 6.81231001929238400e+15 +D-D_->_3He_fusion_rate_at_point_85_______________________________________ fusrat_plasma_dd_helion_profile85_ 6.79754151217346300e+15 +D-D_->_3He_fusion_rate_at_point_86_______________________________________ fusrat_plasma_dd_helion_profile86_ 6.78262054004056300e+15 +D-D_->_3He_fusion_rate_at_point_87_______________________________________ fusrat_plasma_dd_helion_profile87_ 6.76754787350175800e+15 +D-D_->_3He_fusion_rate_at_point_88_______________________________________ fusrat_plasma_dd_helion_profile88_ 6.75232429119238600e+15 +D-D_->_3He_fusion_rate_at_point_89_______________________________________ fusrat_plasma_dd_helion_profile89_ 6.73695057974030600e+15 +D-D_->_3He_fusion_rate_at_point_90_______________________________________ fusrat_plasma_dd_helion_profile90_ 6.72142753373101500e+15 +D-D_->_3He_fusion_rate_at_point_91_______________________________________ fusrat_plasma_dd_helion_profile91_ 6.70575595567214900e+15 +D-D_->_3He_fusion_rate_at_point_92_______________________________________ fusrat_plasma_dd_helion_profile92_ 6.68993665595764700e+15 +D-D_->_3He_fusion_rate_at_point_93_______________________________________ fusrat_plasma_dd_helion_profile93_ 6.67397045283151000e+15 +D-D_->_3He_fusion_rate_at_point_94_______________________________________ fusrat_plasma_dd_helion_profile94_ 6.65785817235113700e+15 +D-D_->_3He_fusion_rate_at_point_95_______________________________________ fusrat_plasma_dd_helion_profile95_ 6.64160064835020500e+15 +D-D_->_3He_fusion_rate_at_point_96_______________________________________ fusrat_plasma_dd_helion_profile96_ 6.62519872240121600e+15 +D-D_->_3He_fusion_rate_at_point_97_______________________________________ fusrat_plasma_dd_helion_profile97_ 6.60865324377753000e+15 +D-D_->_3He_fusion_rate_at_point_98_______________________________________ fusrat_plasma_dd_helion_profile98_ 6.59196506941507900e+15 +D-D_->_3He_fusion_rate_at_point_99_______________________________________ fusrat_plasma_dd_helion_profile99_ 6.57513506387358700e+15 +D-D_->_3He_fusion_rate_at_point_100______________________________________ fusrat_plasma_dd_helion_profile100_ 6.55816409929741800e+15 +D-D_->_3He_fusion_rate_at_point_101______________________________________ fusrat_plasma_dd_helion_profile101_ 6.54105305537597000e+15 +D-D_->_3He_fusion_rate_at_point_102______________________________________ fusrat_plasma_dd_helion_profile102_ 6.52380281930370900e+15 +D-D_->_3He_fusion_rate_at_point_103______________________________________ fusrat_plasma_dd_helion_profile103_ 6.50641428573971000e+15 +D-D_->_3He_fusion_rate_at_point_104______________________________________ fusrat_plasma_dd_helion_profile104_ 6.48888835676683300e+15 +D-D_->_3He_fusion_rate_at_point_105______________________________________ fusrat_plasma_dd_helion_profile105_ 6.47122594185047100e+15 +D-D_->_3He_fusion_rate_at_point_106______________________________________ fusrat_plasma_dd_helion_profile106_ 6.45342795779684300e+15 +D-D_->_3He_fusion_rate_at_point_107______________________________________ fusrat_plasma_dd_helion_profile107_ 6.43549532871091900e+15 +D-D_->_3He_fusion_rate_at_point_108______________________________________ fusrat_plasma_dd_helion_profile108_ 6.41742898595387300e+15 +D-D_->_3He_fusion_rate_at_point_109______________________________________ fusrat_plasma_dd_helion_profile109_ 6.39922986810014700e+15 +D-D_->_3He_fusion_rate_at_point_110______________________________________ fusrat_plasma_dd_helion_profile110_ 6.38089892089409400e+15 +D-D_->_3He_fusion_rate_at_point_111______________________________________ fusrat_plasma_dd_helion_profile111_ 6.36243709720616300e+15 +D-D_->_3He_fusion_rate_at_point_112______________________________________ fusrat_plasma_dd_helion_profile112_ 6.34384535698869600e+15 +D-D_->_3He_fusion_rate_at_point_113______________________________________ fusrat_plasma_dd_helion_profile113_ 6.32512466723129700e+15 +D-D_->_3He_fusion_rate_at_point_114______________________________________ fusrat_plasma_dd_helion_profile114_ 6.30627600191574400e+15 +D-D_->_3He_fusion_rate_at_point_115______________________________________ fusrat_plasma_dd_helion_profile115_ 6.28730034197051500e+15 +D-D_->_3He_fusion_rate_at_point_116______________________________________ fusrat_plasma_dd_helion_profile116_ 6.26819867522489400e+15 +D-D_->_3He_fusion_rate_at_point_117______________________________________ fusrat_plasma_dd_helion_profile117_ 6.24897199636257700e+15 +D-D_->_3He_fusion_rate_at_point_118______________________________________ fusrat_plasma_dd_helion_profile118_ 6.22962130687493700e+15 +D-D_->_3He_fusion_rate_at_point_119______________________________________ fusrat_plasma_dd_helion_profile119_ 6.21014761501381500e+15 +D-D_->_3He_fusion_rate_at_point_120______________________________________ fusrat_plasma_dd_helion_profile120_ 6.19055193574390500e+15 +D-D_->_3He_fusion_rate_at_point_121______________________________________ fusrat_plasma_dd_helion_profile121_ 6.17083529069469400e+15 +D-D_->_3He_fusion_rate_at_point_122______________________________________ fusrat_plasma_dd_helion_profile122_ 6.15099870811196800e+15 +D-D_->_3He_fusion_rate_at_point_123______________________________________ fusrat_plasma_dd_helion_profile123_ 6.13104322280888900e+15 +D-D_->_3He_fusion_rate_at_point_124______________________________________ fusrat_plasma_dd_helion_profile124_ 6.11096987611669500e+15 +D-D_->_3He_fusion_rate_at_point_125______________________________________ fusrat_plasma_dd_helion_profile125_ 6.09077971583486600e+15 +D-D_->_3He_fusion_rate_at_point_126______________________________________ fusrat_plasma_dd_helion_profile126_ 6.07047379618094600e+15 +D-D_->_3He_fusion_rate_at_point_127______________________________________ fusrat_plasma_dd_helion_profile127_ 6.05005317773989200e+15 +D-D_->_3He_fusion_rate_at_point_128______________________________________ fusrat_plasma_dd_helion_profile128_ 6.02951892741298000e+15 +D-D_->_3He_fusion_rate_at_point_129______________________________________ fusrat_plasma_dd_helion_profile129_ 6.00887211836634100e+15 +D-D_->_3He_fusion_rate_at_point_130______________________________________ fusrat_plasma_dd_helion_profile130_ 5.98811382997896800e+15 +D-D_->_3He_fusion_rate_at_point_131______________________________________ fusrat_plasma_dd_helion_profile131_ 5.96724514779036300e+15 +D-D_->_3He_fusion_rate_at_point_132______________________________________ fusrat_plasma_dd_helion_profile132_ 5.94626716344769200e+15 +D-D_->_3He_fusion_rate_at_point_133______________________________________ fusrat_plasma_dd_helion_profile133_ 5.92518097465256300e+15 +D-D_->_3He_fusion_rate_at_point_134______________________________________ fusrat_plasma_dd_helion_profile134_ 5.90398768510730100e+15 +D-D_->_3He_fusion_rate_at_point_135______________________________________ fusrat_plasma_dd_helion_profile135_ 5.88268840446084200e+15 +D-D_->_3He_fusion_rate_at_point_136______________________________________ fusrat_plasma_dd_helion_profile136_ 5.86128424825417400e+15 +D-D_->_3He_fusion_rate_at_point_137______________________________________ fusrat_plasma_dd_helion_profile137_ 5.83977633786525500e+15 +D-D_->_3He_fusion_rate_at_point_138______________________________________ fusrat_plasma_dd_helion_profile138_ 5.81816580045369300e+15 +D-D_->_3He_fusion_rate_at_point_139______________________________________ fusrat_plasma_dd_helion_profile139_ 5.79645376890469700e+15 +D-D_->_3He_fusion_rate_at_point_140______________________________________ fusrat_plasma_dd_helion_profile140_ 5.77464138177287500e+15 +D-D_->_3He_fusion_rate_at_point_141______________________________________ fusrat_plasma_dd_helion_profile141_ 5.75272978322538200e+15 +D-D_->_3He_fusion_rate_at_point_142______________________________________ fusrat_plasma_dd_helion_profile142_ 5.73072012298474100e+15 +D-D_->_3He_fusion_rate_at_point_143______________________________________ fusrat_plasma_dd_helion_profile143_ 5.70861355627114400e+15 +D-D_->_3He_fusion_rate_at_point_144______________________________________ fusrat_plasma_dd_helion_profile144_ 5.68641124374436200e+15 +D-D_->_3He_fusion_rate_at_point_145______________________________________ fusrat_plasma_dd_helion_profile145_ 5.66411435144521600e+15 +D-D_->_3He_fusion_rate_at_point_146______________________________________ fusrat_plasma_dd_helion_profile146_ 5.64172405073649400e+15 +D-D_->_3He_fusion_rate_at_point_147______________________________________ fusrat_plasma_dd_helion_profile147_ 5.61924151824359800e+15 +D-D_->_3He_fusion_rate_at_point_148______________________________________ fusrat_plasma_dd_helion_profile148_ 5.59666793579458400e+15 +D-D_->_3He_fusion_rate_at_point_149______________________________________ fusrat_plasma_dd_helion_profile149_ 5.57400449035983800e+15 +D-D_->_3He_fusion_rate_at_point_150______________________________________ fusrat_plasma_dd_helion_profile150_ 5.55125237399128100e+15 +D-D_->_3He_fusion_rate_at_point_151______________________________________ fusrat_plasma_dd_helion_profile151_ 5.52841278376110100e+15 +D-D_->_3He_fusion_rate_at_point_152______________________________________ fusrat_plasma_dd_helion_profile152_ 5.50548692170008500e+15 +D-D_->_3He_fusion_rate_at_point_153______________________________________ fusrat_plasma_dd_helion_profile153_ 5.48247599473546000e+15 +D-D_->_3He_fusion_rate_at_point_154______________________________________ fusrat_plasma_dd_helion_profile154_ 5.45938121462826100e+15 +D-D_->_3He_fusion_rate_at_point_155______________________________________ fusrat_plasma_dd_helion_profile155_ 5.43620379791030800e+15 +D-D_->_3He_fusion_rate_at_point_156______________________________________ fusrat_plasma_dd_helion_profile156_ 5.41294496582068900e+15 +D-D_->_3He_fusion_rate_at_point_157______________________________________ fusrat_plasma_dd_helion_profile157_ 5.38960594424176900e+15 +D-D_->_3He_fusion_rate_at_point_158______________________________________ fusrat_plasma_dd_helion_profile158_ 5.36618796363479700e+15 +D-D_->_3He_fusion_rate_at_point_159______________________________________ fusrat_plasma_dd_helion_profile159_ 5.34269225897499300e+15 +D-D_->_3He_fusion_rate_at_point_160______________________________________ fusrat_plasma_dd_helion_profile160_ 5.31912006968621900e+15 +D-D_->_3He_fusion_rate_at_point_161______________________________________ fusrat_plasma_dd_helion_profile161_ 5.29547263957521800e+15 +D-D_->_3He_fusion_rate_at_point_162______________________________________ fusrat_plasma_dd_helion_profile162_ 5.27175121676527300e+15 +D-D_->_3He_fusion_rate_at_point_163______________________________________ fusrat_plasma_dd_helion_profile163_ 5.24795705362957200e+15 +D-D_->_3He_fusion_rate_at_point_164______________________________________ fusrat_plasma_dd_helion_profile164_ 5.22409140672397200e+15 +D-D_->_3He_fusion_rate_at_point_165______________________________________ fusrat_plasma_dd_helion_profile165_ 5.20015553671937400e+15 +D-D_->_3He_fusion_rate_at_point_166______________________________________ fusrat_plasma_dd_helion_profile166_ 5.17615070833362700e+15 +D-D_->_3He_fusion_rate_at_point_167______________________________________ fusrat_plasma_dd_helion_profile167_ 5.15207819026291000e+15 +D-D_->_3He_fusion_rate_at_point_168______________________________________ fusrat_plasma_dd_helion_profile168_ 5.12793925511276900e+15 +D-D_->_3He_fusion_rate_at_point_169______________________________________ fusrat_plasma_dd_helion_profile169_ 5.10373517932854400e+15 +D-D_->_3He_fusion_rate_at_point_170______________________________________ fusrat_plasma_dd_helion_profile170_ 5.07946724312543700e+15 +D-D_->_3He_fusion_rate_at_point_171______________________________________ fusrat_plasma_dd_helion_profile171_ 5.05513673041804300e+15 +D-D_->_3He_fusion_rate_at_point_172______________________________________ fusrat_plasma_dd_helion_profile172_ 5.03074492874948200e+15 +D-D_->_3He_fusion_rate_at_point_173______________________________________ fusrat_plasma_dd_helion_profile173_ 5.00629312921998100e+15 +D-D_->_3He_fusion_rate_at_point_174______________________________________ fusrat_plasma_dd_helion_profile174_ 4.98178262641505200e+15 +D-D_->_3He_fusion_rate_at_point_175______________________________________ fusrat_plasma_dd_helion_profile175_ 4.95721471833316900e+15 +D-D_->_3He_fusion_rate_at_point_176______________________________________ fusrat_plasma_dd_helion_profile176_ 4.93259070631293900e+15 +D-D_->_3He_fusion_rate_at_point_177______________________________________ fusrat_plasma_dd_helion_profile177_ 4.90791189495990600e+15 +D-D_->_3He_fusion_rate_at_point_178______________________________________ fusrat_plasma_dd_helion_profile178_ 4.88317959207270700e+15 +D-D_->_3He_fusion_rate_at_point_179______________________________________ fusrat_plasma_dd_helion_profile179_ 4.85839510856895900e+15 +D-D_->_3He_fusion_rate_at_point_180______________________________________ fusrat_plasma_dd_helion_profile180_ 4.83355975841048900e+15 +D-D_->_3He_fusion_rate_at_point_181______________________________________ fusrat_plasma_dd_helion_profile181_ 4.80867485852820200e+15 +D-D_->_3He_fusion_rate_at_point_182______________________________________ fusrat_plasma_dd_helion_profile182_ 4.78374172874640500e+15 +D-D_->_3He_fusion_rate_at_point_183______________________________________ fusrat_plasma_dd_helion_profile183_ 4.75876169170669700e+15 +D-D_->_3He_fusion_rate_at_point_184______________________________________ fusrat_plasma_dd_helion_profile184_ 4.73373607279132600e+15 +D-D_->_3He_fusion_rate_at_point_185______________________________________ fusrat_plasma_dd_helion_profile185_ 4.70866620004613900e+15 +D-D_->_3He_fusion_rate_at_point_186______________________________________ fusrat_plasma_dd_helion_profile186_ 4.68355340410296000e+15 +D-D_->_3He_fusion_rate_at_point_187______________________________________ fusrat_plasma_dd_helion_profile187_ 4.65839901810157400e+15 +D-D_->_3He_fusion_rate_at_point_188______________________________________ fusrat_plasma_dd_helion_profile188_ 4.63320437761113200e+15 +D-D_->_3He_fusion_rate_at_point_189______________________________________ fusrat_plasma_dd_helion_profile189_ 4.60797082055117200e+15 +D-D_->_3He_fusion_rate_at_point_190______________________________________ fusrat_plasma_dd_helion_profile190_ 4.58269968711206900e+15 +D-D_->_3He_fusion_rate_at_point_191______________________________________ fusrat_plasma_dd_helion_profile191_ 4.55739231967503600e+15 +D-D_->_3He_fusion_rate_at_point_192______________________________________ fusrat_plasma_dd_helion_profile192_ 4.53205006273163900e+15 +D-D_->_3He_fusion_rate_at_point_193______________________________________ fusrat_plasma_dd_helion_profile193_ 4.50667426280280400e+15 +D-D_->_3He_fusion_rate_at_point_194______________________________________ fusrat_plasma_dd_helion_profile194_ 4.48126626835733900e+15 +D-D_->_3He_fusion_rate_at_point_195______________________________________ fusrat_plasma_dd_helion_profile195_ 4.45582742972999350e+15 +D-D_->_3He_fusion_rate_at_point_196______________________________________ fusrat_plasma_dd_helion_profile196_ 4.43035909903895250e+15 +D-D_->_3He_fusion_rate_at_point_197______________________________________ fusrat_plasma_dd_helion_profile197_ 4.40486263010294350e+15 +D-D_->_3He_fusion_rate_at_point_198______________________________________ fusrat_plasma_dd_helion_profile198_ 4.37933937835773750e+15 +D-D_->_3He_fusion_rate_at_point_199______________________________________ fusrat_plasma_dd_helion_profile199_ 4.35379070077221650e+15 +D-D_->_3He_fusion_rate_at_point_200______________________________________ fusrat_plasma_dd_helion_profile200_ 4.32821795576395700e+15 +D-D_->_3He_fusion_rate_at_point_201______________________________________ fusrat_plasma_dd_helion_profile201_ 4.30262250311427350e+15 +D-D_->_3He_fusion_rate_at_point_202______________________________________ fusrat_plasma_dd_helion_profile202_ 4.27700570388276650e+15 +D-D_->_3He_fusion_rate_at_point_203______________________________________ fusrat_plasma_dd_helion_profile203_ 4.25136892032141100e+15 +D-D_->_3He_fusion_rate_at_point_204______________________________________ fusrat_plasma_dd_helion_profile204_ 4.22571351578811200e+15 +D-D_->_3He_fusion_rate_at_point_205______________________________________ fusrat_plasma_dd_helion_profile205_ 4.20004085465974800e+15 +D-D_->_3He_fusion_rate_at_point_206______________________________________ fusrat_plasma_dd_helion_profile206_ 4.17435230224473350e+15 +D-D_->_3He_fusion_rate_at_point_207______________________________________ fusrat_plasma_dd_helion_profile207_ 4.14864922469508450e+15 +D-D_->_3He_fusion_rate_at_point_208______________________________________ fusrat_plasma_dd_helion_profile208_ 4.12293298891794350e+15 +D-D_->_3He_fusion_rate_at_point_209______________________________________ fusrat_plasma_dd_helion_profile209_ 4.09720496248664000e+15 +D-D_->_3He_fusion_rate_at_point_210______________________________________ fusrat_plasma_dd_helion_profile210_ 4.07146651355121900e+15 +D-D_->_3He_fusion_rate_at_point_211______________________________________ fusrat_plasma_dd_helion_profile211_ 4.04571901074844900e+15 +D-D_->_3He_fusion_rate_at_point_212______________________________________ fusrat_plasma_dd_helion_profile212_ 4.01996382311137550e+15 +D-D_->_3He_fusion_rate_at_point_213______________________________________ fusrat_plasma_dd_helion_profile213_ 3.99420231997827000e+15 +D-D_->_3He_fusion_rate_at_point_214______________________________________ fusrat_plasma_dd_helion_profile214_ 3.96843587090118850e+15 +D-D_->_3He_fusion_rate_at_point_215______________________________________ fusrat_plasma_dd_helion_profile215_ 3.94266584555390300e+15 +D-D_->_3He_fusion_rate_at_point_216______________________________________ fusrat_plasma_dd_helion_profile216_ 3.91689361363942500e+15 +D-D_->_3He_fusion_rate_at_point_217______________________________________ fusrat_plasma_dd_helion_profile217_ 3.89112054479689450e+15 +D-D_->_3He_fusion_rate_at_point_218______________________________________ fusrat_plasma_dd_helion_profile218_ 3.86534800850809300e+15 +D-D_->_3He_fusion_rate_at_point_219______________________________________ fusrat_plasma_dd_helion_profile219_ 3.83957737400330600e+15 +D-D_->_3He_fusion_rate_at_point_220______________________________________ fusrat_plasma_dd_helion_profile220_ 3.81381001016678700e+15 +D-D_->_3He_fusion_rate_at_point_221______________________________________ fusrat_plasma_dd_helion_profile221_ 3.78804728544159700e+15 +D-D_->_3He_fusion_rate_at_point_222______________________________________ fusrat_plasma_dd_helion_profile222_ 3.76229056773402350e+15 +D-D_->_3He_fusion_rate_at_point_223______________________________________ fusrat_plasma_dd_helion_profile223_ 3.73654122431741100e+15 +D-D_->_3He_fusion_rate_at_point_224______________________________________ fusrat_plasma_dd_helion_profile224_ 3.71080062173550400e+15 +D-D_->_3He_fusion_rate_at_point_225______________________________________ fusrat_plasma_dd_helion_profile225_ 3.68507012570523700e+15 +D-D_->_3He_fusion_rate_at_point_226______________________________________ fusrat_plasma_dd_helion_profile226_ 3.65935110101906500e+15 +D-D_->_3He_fusion_rate_at_point_227______________________________________ fusrat_plasma_dd_helion_profile227_ 3.63364491144669900e+15 +D-D_->_3He_fusion_rate_at_point_228______________________________________ fusrat_plasma_dd_helion_profile228_ 3.60795291963636700e+15 +D-D_->_3He_fusion_rate_at_point_229______________________________________ fusrat_plasma_dd_helion_profile229_ 3.58227648701552550e+15 +D-D_->_3He_fusion_rate_at_point_230______________________________________ fusrat_plasma_dd_helion_profile230_ 3.55661697369107750e+15 +D-D_->_3He_fusion_rate_at_point_231______________________________________ fusrat_plasma_dd_helion_profile231_ 3.53097573834899350e+15 +D-D_->_3He_fusion_rate_at_point_232______________________________________ fusrat_plasma_dd_helion_profile232_ 3.50535413815353500e+15 +D-D_->_3He_fusion_rate_at_point_233______________________________________ fusrat_plasma_dd_helion_profile233_ 3.47975352864578950e+15 +D-D_->_3He_fusion_rate_at_point_234______________________________________ fusrat_plasma_dd_helion_profile234_ 3.45417526364181050e+15 +D-D_->_3He_fusion_rate_at_point_235______________________________________ fusrat_plasma_dd_helion_profile235_ 3.42862069513017900e+15 +D-D_->_3He_fusion_rate_at_point_236______________________________________ fusrat_plasma_dd_helion_profile236_ 3.40309117316899650e+15 +D-D_->_3He_fusion_rate_at_point_237______________________________________ fusrat_plasma_dd_helion_profile237_ 3.37758804578244050e+15 +D-D_->_3He_fusion_rate_at_point_238______________________________________ fusrat_plasma_dd_helion_profile238_ 3.35211265885671750e+15 +D-D_->_3He_fusion_rate_at_point_239______________________________________ fusrat_plasma_dd_helion_profile239_ 3.32666635603548400e+15 +D-D_->_3He_fusion_rate_at_point_240______________________________________ fusrat_plasma_dd_helion_profile240_ 3.30125047861480900e+15 +D-D_->_3He_fusion_rate_at_point_241______________________________________ fusrat_plasma_dd_helion_profile241_ 3.27586636543750900e+15 +D-D_->_3He_fusion_rate_at_point_242______________________________________ fusrat_plasma_dd_helion_profile242_ 3.25051535278703900e+15 +D-D_->_3He_fusion_rate_at_point_243______________________________________ fusrat_plasma_dd_helion_profile243_ 3.22519877428077800e+15 +D-D_->_3He_fusion_rate_at_point_244______________________________________ fusrat_plasma_dd_helion_profile244_ 3.19991796076284500e+15 +D-D_->_3He_fusion_rate_at_point_245______________________________________ fusrat_plasma_dd_helion_profile245_ 3.17467424019634050e+15 +D-D_->_3He_fusion_rate_at_point_246______________________________________ fusrat_plasma_dd_helion_profile246_ 3.14946893755508550e+15 +D-D_->_3He_fusion_rate_at_point_247______________________________________ fusrat_plasma_dd_helion_profile247_ 3.12430337471478900e+15 +D-D_->_3He_fusion_rate_at_point_248______________________________________ fusrat_plasma_dd_helion_profile248_ 3.09917887034373850e+15 +D-D_->_3He_fusion_rate_at_point_249______________________________________ fusrat_plasma_dd_helion_profile249_ 3.07409673979290650e+15 +D-D_->_3He_fusion_rate_at_point_250______________________________________ fusrat_plasma_dd_helion_profile250_ 3.04905829498555500e+15 +D-D_->_3He_fusion_rate_at_point_251______________________________________ fusrat_plasma_dd_helion_profile251_ 3.02406484430629250e+15 +D-D_->_3He_fusion_rate_at_point_252______________________________________ fusrat_plasma_dd_helion_profile252_ 2.99911769248962600e+15 +D-D_->_3He_fusion_rate_at_point_253______________________________________ fusrat_plasma_dd_helion_profile253_ 2.97421814050793250e+15 +D-D_->_3He_fusion_rate_at_point_254______________________________________ fusrat_plasma_dd_helion_profile254_ 2.94936748545896350e+15 +D-D_->_3He_fusion_rate_at_point_255______________________________________ fusrat_plasma_dd_helion_profile255_ 2.92456702045275300e+15 +D-D_->_3He_fusion_rate_at_point_256______________________________________ fusrat_plasma_dd_helion_profile256_ 2.89981803449805700e+15 +D-D_->_3He_fusion_rate_at_point_257______________________________________ fusrat_plasma_dd_helion_profile257_ 2.87512181238820150e+15 +D-D_->_3He_fusion_rate_at_point_258______________________________________ fusrat_plasma_dd_helion_profile258_ 2.85047963458647050e+15 +D-D_->_3He_fusion_rate_at_point_259______________________________________ fusrat_plasma_dd_helion_profile259_ 2.82589277711090750e+15 +D-D_->_3He_fusion_rate_at_point_260______________________________________ fusrat_plasma_dd_helion_profile260_ 2.80136251141861650e+15 +D-D_->_3He_fusion_rate_at_point_261______________________________________ fusrat_plasma_dd_helion_profile261_ 2.77689010428954300e+15 +D-D_->_3He_fusion_rate_at_point_262______________________________________ fusrat_plasma_dd_helion_profile262_ 2.75247681770969800e+15 +D-D_->_3He_fusion_rate_at_point_263______________________________________ fusrat_plasma_dd_helion_profile263_ 2.72812390875392100e+15 +D-D_->_3He_fusion_rate_at_point_264______________________________________ fusrat_plasma_dd_helion_profile264_ 2.70383262946805450e+15 +D-D_->_3He_fusion_rate_at_point_265______________________________________ fusrat_plasma_dd_helion_profile265_ 2.67960422675061600e+15 +D-D_->_3He_fusion_rate_at_point_266______________________________________ fusrat_plasma_dd_helion_profile266_ 2.65543994223399350e+15 +D-D_->_3He_fusion_rate_at_point_267______________________________________ fusrat_plasma_dd_helion_profile267_ 2.63134101216504350e+15 +D-D_->_3He_fusion_rate_at_point_268______________________________________ fusrat_plasma_dd_helion_profile268_ 2.60730866728528050e+15 +D-D_->_3He_fusion_rate_at_point_269______________________________________ fusrat_plasma_dd_helion_profile269_ 2.58334413271042950e+15 +D-D_->_3He_fusion_rate_at_point_270______________________________________ fusrat_plasma_dd_helion_profile270_ 2.55944862780957600e+15 +D-D_->_3He_fusion_rate_at_point_271______________________________________ fusrat_plasma_dd_helion_profile271_ 2.53562336608373100e+15 +D-D_->_3He_fusion_rate_at_point_272______________________________________ fusrat_plasma_dd_helion_profile272_ 2.51186955504394300e+15 +D-D_->_3He_fusion_rate_at_point_273______________________________________ fusrat_plasma_dd_helion_profile273_ 2.48818839608886700e+15 +D-D_->_3He_fusion_rate_at_point_274______________________________________ fusrat_plasma_dd_helion_profile274_ 2.46458108438184650e+15 +D-D_->_3He_fusion_rate_at_point_275______________________________________ fusrat_plasma_dd_helion_profile275_ 2.44104880872750650e+15 +D-D_->_3He_fusion_rate_at_point_276______________________________________ fusrat_plasma_dd_helion_profile276_ 2.41759275144783050e+15 +D-D_->_3He_fusion_rate_at_point_277______________________________________ fusrat_plasma_dd_helion_profile277_ 2.39421408825778500e+15 +D-D_->_3He_fusion_rate_at_point_278______________________________________ fusrat_plasma_dd_helion_profile278_ 2.37091398814038450e+15 +D-D_->_3He_fusion_rate_at_point_279______________________________________ fusrat_plasma_dd_helion_profile279_ 2.34769361322134650e+15 +D-D_->_3He_fusion_rate_at_point_280______________________________________ fusrat_plasma_dd_helion_profile280_ 2.32455411864324000e+15 +D-D_->_3He_fusion_rate_at_point_281______________________________________ fusrat_plasma_dd_helion_profile281_ 2.30149665243912500e+15 +D-D_->_3He_fusion_rate_at_point_282______________________________________ fusrat_plasma_dd_helion_profile282_ 2.27852235540577100e+15 +D-D_->_3He_fusion_rate_at_point_283______________________________________ fusrat_plasma_dd_helion_profile283_ 2.25563236097636800e+15 +D-D_->_3He_fusion_rate_at_point_284______________________________________ fusrat_plasma_dd_helion_profile284_ 2.23282779509280450e+15 +D-D_->_3He_fusion_rate_at_point_285______________________________________ fusrat_plasma_dd_helion_profile285_ 2.21010977607746775e+15 +D-D_->_3He_fusion_rate_at_point_286______________________________________ fusrat_plasma_dd_helion_profile286_ 2.18747941450460050e+15 +D-D_->_3He_fusion_rate_at_point_287______________________________________ fusrat_plasma_dd_helion_profile287_ 2.16493781307120150e+15 +D-D_->_3He_fusion_rate_at_point_288______________________________________ fusrat_plasma_dd_helion_profile288_ 2.14248606646751350e+15 +D-D_->_3He_fusion_rate_at_point_289______________________________________ fusrat_plasma_dd_helion_profile289_ 2.12012526124703650e+15 +D-D_->_3He_fusion_rate_at_point_290______________________________________ fusrat_plasma_dd_helion_profile290_ 2.09785647569614575e+15 +D-D_->_3He_fusion_rate_at_point_291______________________________________ fusrat_plasma_dd_helion_profile291_ 2.07568077970328000e+15 +D-D_->_3He_fusion_rate_at_point_292______________________________________ fusrat_plasma_dd_helion_profile292_ 2.05359923462770350e+15 +D-D_->_3He_fusion_rate_at_point_293______________________________________ fusrat_plasma_dd_helion_profile293_ 2.03161289316789100e+15 +D-D_->_3He_fusion_rate_at_point_294______________________________________ fusrat_plasma_dd_helion_profile294_ 2.00972279922948150e+15 +D-D_->_3He_fusion_rate_at_point_295______________________________________ fusrat_plasma_dd_helion_profile295_ 1.98792998779285875e+15 +D-D_->_3He_fusion_rate_at_point_296______________________________________ fusrat_plasma_dd_helion_profile296_ 1.96623548478037750e+15 +D-D_->_3He_fusion_rate_at_point_297______________________________________ fusrat_plasma_dd_helion_profile297_ 1.94464030692314675e+15 +D-D_->_3He_fusion_rate_at_point_298______________________________________ fusrat_plasma_dd_helion_profile298_ 1.92314546162753525e+15 +D-D_->_3He_fusion_rate_at_point_299______________________________________ fusrat_plasma_dd_helion_profile299_ 1.90175194684127725e+15 +D-D_->_3He_fusion_rate_at_point_300______________________________________ fusrat_plasma_dd_helion_profile300_ 1.88046075091922550e+15 +D-D_->_3He_fusion_rate_at_point_301______________________________________ fusrat_plasma_dd_helion_profile301_ 1.85927285248882550e+15 +D-D_->_3He_fusion_rate_at_point_302______________________________________ fusrat_plasma_dd_helion_profile302_ 1.83818922031521250e+15 +D-D_->_3He_fusion_rate_at_point_303______________________________________ fusrat_plasma_dd_helion_profile303_ 1.81721081316603925e+15 +D-D_->_3He_fusion_rate_at_point_304______________________________________ fusrat_plasma_dd_helion_profile304_ 1.79633857967600000e+15 +D-D_->_3He_fusion_rate_at_point_305______________________________________ fusrat_plasma_dd_helion_profile305_ 1.77557345821106375e+15 +D-D_->_3He_fusion_rate_at_point_306______________________________________ fusrat_plasma_dd_helion_profile306_ 1.75491637673244325e+15 +D-D_->_3He_fusion_rate_at_point_307______________________________________ fusrat_plasma_dd_helion_profile307_ 1.73436825266032200e+15 +D-D_->_3He_fusion_rate_at_point_308______________________________________ fusrat_plasma_dd_helion_profile308_ 1.71392999273731650e+15 +D-D_->_3He_fusion_rate_at_point_309______________________________________ fusrat_plasma_dd_helion_profile309_ 1.69360249289174400e+15 +D-D_->_3He_fusion_rate_at_point_310______________________________________ fusrat_plasma_dd_helion_profile310_ 1.67338663810064350e+15 +D-D_->_3He_fusion_rate_at_point_311______________________________________ fusrat_plasma_dd_helion_profile311_ 1.65328330225265900e+15 +D-D_->_3He_fusion_rate_at_point_312______________________________________ fusrat_plasma_dd_helion_profile312_ 1.63329334801068150e+15 +D-D_->_3He_fusion_rate_at_point_313______________________________________ fusrat_plasma_dd_helion_profile313_ 1.61341762667439750e+15 +D-D_->_3He_fusion_rate_at_point_314______________________________________ fusrat_plasma_dd_helion_profile314_ 1.59365697804264775e+15 +D-D_->_3He_fusion_rate_at_point_315______________________________________ fusrat_plasma_dd_helion_profile315_ 1.57401223027570950e+15 +D-D_->_3He_fusion_rate_at_point_316______________________________________ fusrat_plasma_dd_helion_profile316_ 1.55448419975744200e+15 +D-D_->_3He_fusion_rate_at_point_317______________________________________ fusrat_plasma_dd_helion_profile317_ 1.53507369095738875e+15 +D-D_->_3He_fusion_rate_at_point_318______________________________________ fusrat_plasma_dd_helion_profile318_ 1.51578149629280275e+15 +D-D_->_3He_fusion_rate_at_point_319______________________________________ fusrat_plasma_dd_helion_profile319_ 1.49660839599063775e+15 +D-D_->_3He_fusion_rate_at_point_320______________________________________ fusrat_plasma_dd_helion_profile320_ 1.47755515794955050e+15 +D-D_->_3He_fusion_rate_at_point_321______________________________________ fusrat_plasma_dd_helion_profile321_ 1.45862253760189800e+15 +D-D_->_3He_fusion_rate_at_point_322______________________________________ fusrat_plasma_dd_helion_profile322_ 1.43981127777577300e+15 +D-D_->_3He_fusion_rate_at_point_323______________________________________ fusrat_plasma_dd_helion_profile323_ 1.42112210855713750e+15 +D-D_->_3He_fusion_rate_at_point_324______________________________________ fusrat_plasma_dd_helion_profile324_ 1.40255574715200975e+15 +D-D_->_3He_fusion_rate_at_point_325______________________________________ fusrat_plasma_dd_helion_profile325_ 1.38411289774880675e+15 +D-D_->_3He_fusion_rate_at_point_326______________________________________ fusrat_plasma_dd_helion_profile326_ 1.36579425138082125e+15 +D-D_->_3He_fusion_rate_at_point_327______________________________________ fusrat_plasma_dd_helion_profile327_ 1.34760048578889275e+15 +D-D_->_3He_fusion_rate_at_point_328______________________________________ fusrat_plasma_dd_helion_profile328_ 1.32953226528429025e+15 +D-D_->_3He_fusion_rate_at_point_329______________________________________ fusrat_plasma_dd_helion_profile329_ 1.31159024061184450e+15 +D-D_->_3He_fusion_rate_at_point_330______________________________________ fusrat_plasma_dd_helion_profile330_ 1.29377504881335925e+15 +D-D_->_3He_fusion_rate_at_point_331______________________________________ fusrat_plasma_dd_helion_profile331_ 1.27608731309135350e+15 +D-D_->_3He_fusion_rate_at_point_332______________________________________ fusrat_plasma_dd_helion_profile332_ 1.25852764267314425e+15 +D-D_->_3He_fusion_rate_at_point_333______________________________________ fusrat_plasma_dd_helion_profile333_ 1.24109663267534000e+15 +D-D_->_3He_fusion_rate_at_point_334______________________________________ fusrat_plasma_dd_helion_profile334_ 1.22379486396875975e+15 +D-D_->_3He_fusion_rate_at_point_335______________________________________ fusrat_plasma_dd_helion_profile335_ 1.20662290304382050e+15 +D-D_->_3He_fusion_rate_at_point_336______________________________________ fusrat_plasma_dd_helion_profile336_ 1.18958130187646075e+15 +D-D_->_3He_fusion_rate_at_point_337______________________________________ fusrat_plasma_dd_helion_profile337_ 1.17267059779461625e+15 +D-D_->_3He_fusion_rate_at_point_338______________________________________ fusrat_plasma_dd_helion_profile338_ 1.15589131334530050e+15 +D-D_->_3He_fusion_rate_at_point_339______________________________________ fusrat_plasma_dd_helion_profile339_ 1.13924395616235975e+15 +D-D_->_3He_fusion_rate_at_point_340______________________________________ fusrat_plasma_dd_helion_profile340_ 1.12272901883490888e+15 +D-D_->_3He_fusion_rate_at_point_341______________________________________ fusrat_plasma_dd_helion_profile341_ 1.10634697877654338e+15 +D-D_->_3He_fusion_rate_at_point_342______________________________________ fusrat_plasma_dd_helion_profile342_ 1.09009829809536275e+15 +D-D_->_3He_fusion_rate_at_point_343______________________________________ fusrat_plasma_dd_helion_profile343_ 1.07398342346483725e+15 +D-D_->_3He_fusion_rate_at_point_344______________________________________ fusrat_plasma_dd_helion_profile344_ 1.05800278599562788e+15 +D-D_->_3He_fusion_rate_at_point_345______________________________________ fusrat_plasma_dd_helion_profile345_ 1.04215680110835400e+15 +D-D_->_3He_fusion_rate_at_point_346______________________________________ fusrat_plasma_dd_helion_profile346_ 1.02644586840743612e+15 +D-D_->_3He_fusion_rate_at_point_347______________________________________ fusrat_plasma_dd_helion_profile347_ 1.01087037155601388e+15 +D-D_->_3He_fusion_rate_at_point_348______________________________________ fusrat_plasma_dd_helion_profile348_ 9.95430678152056250e+14 +D-D_->_3He_fusion_rate_at_point_349______________________________________ fusrat_plasma_dd_helion_profile349_ 9.80127139605696875e+14 +D-D_->_3He_fusion_rate_at_point_350______________________________________ fusrat_plasma_dd_helion_profile350_ 9.64960091017878625e+14 +D-D_->_3He_fusion_rate_at_point_351______________________________________ fusrat_plasma_dd_helion_profile351_ 9.49929851060383000e+14 +D-D_->_3He_fusion_rate_at_point_352______________________________________ fusrat_plasma_dd_helion_profile352_ 9.35036721857315375e+14 +D-D_->_3He_fusion_rate_at_point_353______________________________________ fusrat_plasma_dd_helion_profile353_ 9.20280988868113375e+14 +D-D_->_3He_fusion_rate_at_point_354______________________________________ fusrat_plasma_dd_helion_profile354_ 9.05662920772179000e+14 +D-D_->_3He_fusion_rate_at_point_355______________________________________ fusrat_plasma_dd_helion_profile355_ 8.91182769355198500e+14 +D-D_->_3He_fusion_rate_at_point_356______________________________________ fusrat_plasma_dd_helion_profile356_ 8.76840769397248375e+14 +D-D_->_3He_fusion_rate_at_point_357______________________________________ fusrat_plasma_dd_helion_profile357_ 8.62637138562773125e+14 +D-D_->_3He_fusion_rate_at_point_358______________________________________ fusrat_plasma_dd_helion_profile358_ 8.48572077292512500e+14 +D-D_->_3He_fusion_rate_at_point_359______________________________________ fusrat_plasma_dd_helion_profile359_ 8.34645768697504000e+14 +D-D_->_3He_fusion_rate_at_point_360______________________________________ fusrat_plasma_dd_helion_profile360_ 8.20858378455230250e+14 +D-D_->_3He_fusion_rate_at_point_361______________________________________ fusrat_plasma_dd_helion_profile361_ 8.07210054708017500e+14 +D-D_->_3He_fusion_rate_at_point_362______________________________________ fusrat_plasma_dd_helion_profile362_ 7.93700927963810625e+14 +D-D_->_3He_fusion_rate_at_point_363______________________________________ fusrat_plasma_dd_helion_profile363_ 7.80331110999399875e+14 +D-D_->_3He_fusion_rate_at_point_364______________________________________ fusrat_plasma_dd_helion_profile364_ 7.67100698766247875e+14 +D-D_->_3He_fusion_rate_at_point_365______________________________________ fusrat_plasma_dd_helion_profile365_ 7.54009768298992625e+14 +D-D_->_3He_fusion_rate_at_point_366______________________________________ fusrat_plasma_dd_helion_profile366_ 7.41058378626794750e+14 +D-D_->_3He_fusion_rate_at_point_367______________________________________ fusrat_plasma_dd_helion_profile367_ 7.28246570687598125e+14 +D-D_->_3He_fusion_rate_at_point_368______________________________________ fusrat_plasma_dd_helion_profile368_ 7.15574367245485375e+14 +D-D_->_3He_fusion_rate_at_point_369______________________________________ fusrat_plasma_dd_helion_profile369_ 7.03041772811216625e+14 +D-D_->_3He_fusion_rate_at_point_370______________________________________ fusrat_plasma_dd_helion_profile370_ 6.90648773566114875e+14 +D-D_->_3He_fusion_rate_at_point_371______________________________________ fusrat_plasma_dd_helion_profile371_ 6.78395337289430500e+14 +D-D_->_3He_fusion_rate_at_point_372______________________________________ fusrat_plasma_dd_helion_profile372_ 6.66281413289335375e+14 +D-D_->_3He_fusion_rate_at_point_373______________________________________ fusrat_plasma_dd_helion_profile373_ 6.54306932337684250e+14 +D-D_->_3He_fusion_rate_at_point_374______________________________________ fusrat_plasma_dd_helion_profile374_ 6.42471806608722875e+14 +D-D_->_3He_fusion_rate_at_point_375______________________________________ fusrat_plasma_dd_helion_profile375_ 6.30775929621887375e+14 +D-D_->_3He_fusion_rate_at_point_376______________________________________ fusrat_plasma_dd_helion_profile376_ 6.19219176188855375e+14 +D-D_->_3He_fusion_rate_at_point_377______________________________________ fusrat_plasma_dd_helion_profile377_ 6.07801402365055000e+14 +D-D_->_3He_fusion_rate_at_point_378______________________________________ fusrat_plasma_dd_helion_profile378_ 5.96522445405765875e+14 +D-D_->_3He_fusion_rate_at_point_379______________________________________ fusrat_plasma_dd_helion_profile379_ 5.85382123727036125e+14 +D-D_->_3He_fusion_rate_at_point_380______________________________________ fusrat_plasma_dd_helion_profile380_ 5.74380236871580125e+14 +D-D_->_3He_fusion_rate_at_point_381______________________________________ fusrat_plasma_dd_helion_profile381_ 5.63516565479876875e+14 +D-D_->_3He_fusion_rate_at_point_382______________________________________ fusrat_plasma_dd_helion_profile382_ 5.52790871266646938e+14 +D-D_->_3He_fusion_rate_at_point_383______________________________________ fusrat_plasma_dd_helion_profile383_ 5.42202897002955125e+14 +D-D_->_3He_fusion_rate_at_point_384______________________________________ fusrat_plasma_dd_helion_profile384_ 5.31752366504126875e+14 +D-D_->_3He_fusion_rate_at_point_385______________________________________ fusrat_plasma_dd_helion_profile385_ 5.21438984623730500e+14 +D-D_->_3He_fusion_rate_at_point_386______________________________________ fusrat_plasma_dd_helion_profile386_ 5.11262437253839875e+14 +D-D_->_3He_fusion_rate_at_point_387______________________________________ fusrat_plasma_dd_helion_profile387_ 5.01222391331852250e+14 +D-D_->_3He_fusion_rate_at_point_388______________________________________ fusrat_plasma_dd_helion_profile388_ 4.91318494854079125e+14 +D-D_->_3He_fusion_rate_at_point_389______________________________________ fusrat_plasma_dd_helion_profile389_ 4.81550376896412500e+14 +D-D_->_3He_fusion_rate_at_point_390______________________________________ fusrat_plasma_dd_helion_profile390_ 4.71917647642307875e+14 +D-D_->_3He_fusion_rate_at_point_391______________________________________ fusrat_plasma_dd_helion_profile391_ 4.62419898418395125e+14 +D-D_->_3He_fusion_rate_at_point_392______________________________________ fusrat_plasma_dd_helion_profile392_ 4.53056701737998188e+14 +D-D_->_3He_fusion_rate_at_point_393______________________________________ fusrat_plasma_dd_helion_profile393_ 4.43827611352878375e+14 +D-D_->_3He_fusion_rate_at_point_394______________________________________ fusrat_plasma_dd_helion_profile394_ 4.34732162313527250e+14 +D-D_->_3He_fusion_rate_at_point_395______________________________________ fusrat_plasma_dd_helion_profile395_ 4.25769871038339750e+14 +D-D_->_3He_fusion_rate_at_point_396______________________________________ fusrat_plasma_dd_helion_profile396_ 4.16940235392013062e+14 +D-D_->_3He_fusion_rate_at_point_397______________________________________ fusrat_plasma_dd_helion_profile397_ 4.08242734773557875e+14 +D-D_->_3He_fusion_rate_at_point_398______________________________________ fusrat_plasma_dd_helion_profile398_ 3.99676830214278375e+14 +D-D_->_3He_fusion_rate_at_point_399______________________________________ fusrat_plasma_dd_helion_profile399_ 3.91241964486146438e+14 +D-D_->_3He_fusion_rate_at_point_400______________________________________ fusrat_plasma_dd_helion_profile400_ 3.82937562220973750e+14 +D-D_->_3He_fusion_rate_at_point_401______________________________________ fusrat_plasma_dd_helion_profile401_ 3.74763030040837250e+14 +D-D_->_3He_fusion_rate_at_point_402______________________________________ fusrat_plasma_dd_helion_profile402_ 3.66717756700210812e+14 +D-D_->_3He_fusion_rate_at_point_403______________________________________ fusrat_plasma_dd_helion_profile403_ 3.58801113240305375e+14 +D-D_->_3He_fusion_rate_at_point_404______________________________________ fusrat_plasma_dd_helion_profile404_ 3.51012453156123750e+14 +D-D_->_3He_fusion_rate_at_point_405______________________________________ fusrat_plasma_dd_helion_profile405_ 3.43351112576791750e+14 +D-D_->_3He_fusion_rate_at_point_406______________________________________ fusrat_plasma_dd_helion_profile406_ 3.35816410459719000e+14 +D-D_->_3He_fusion_rate_at_point_407______________________________________ fusrat_plasma_dd_helion_profile407_ 3.28407648799239125e+14 +D-D_->_3He_fusion_rate_at_point_408______________________________________ fusrat_plasma_dd_helion_profile408_ 3.21124112850342812e+14 +D-D_->_3He_fusion_rate_at_point_409______________________________________ fusrat_plasma_dd_helion_profile409_ 3.13965071368243562e+14 +D-D_->_3He_fusion_rate_at_point_410______________________________________ fusrat_plasma_dd_helion_profile410_ 3.06929776864478812e+14 +D-D_->_3He_fusion_rate_at_point_411______________________________________ fusrat_plasma_dd_helion_profile411_ 3.00017465880377562e+14 +D-D_->_3He_fusion_rate_at_point_412______________________________________ fusrat_plasma_dd_helion_profile412_ 2.93227359278719000e+14 +D-D_->_3He_fusion_rate_at_point_413______________________________________ fusrat_plasma_dd_helion_profile413_ 2.86558662554536000e+14 +D-D_->_3He_fusion_rate_at_point_414______________________________________ fusrat_plasma_dd_helion_profile414_ 2.80010566166025875e+14 +D-D_->_3He_fusion_rate_at_point_415______________________________________ fusrat_plasma_dd_helion_profile415_ 2.73582245886662312e+14 +D-D_->_3He_fusion_rate_at_point_416______________________________________ fusrat_plasma_dd_helion_profile416_ 2.67272863179667250e+14 +D-D_->_3He_fusion_rate_at_point_417______________________________________ fusrat_plasma_dd_helion_profile417_ 2.61081565596117781e+14 +D-D_->_3He_fusion_rate_at_point_418______________________________________ fusrat_plasma_dd_helion_profile418_ 2.55007487198065000e+14 +D-D_->_3He_fusion_rate_at_point_419______________________________________ fusrat_plasma_dd_helion_profile419_ 2.49049749008188062e+14 +D-D_->_3He_fusion_rate_at_point_420______________________________________ fusrat_plasma_dd_helion_profile420_ 2.43207459487646625e+14 +D-D_->_3He_fusion_rate_at_point_421______________________________________ fusrat_plasma_dd_helion_profile421_ 2.37479715043964656e+14 +D-D_->_3He_fusion_rate_at_point_422______________________________________ fusrat_plasma_dd_helion_profile422_ 2.31865600570974188e+14 +D-D_->_3He_fusion_rate_at_point_423______________________________________ fusrat_plasma_dd_helion_profile423_ 2.26364190023066375e+14 +D-D_->_3He_fusion_rate_at_point_424______________________________________ fusrat_plasma_dd_helion_profile424_ 2.20974547026243844e+14 +D-D_->_3He_fusion_rate_at_point_425______________________________________ fusrat_plasma_dd_helion_profile425_ 2.15695725528768375e+14 +D-D_->_3He_fusion_rate_at_point_426______________________________________ fusrat_plasma_dd_helion_profile426_ 2.10526770494522000e+14 +D-D_->_3He_fusion_rate_at_point_427______________________________________ fusrat_plasma_dd_helion_profile427_ 2.05466718642584375e+14 +D-D_->_3He_fusion_rate_at_point_428______________________________________ fusrat_plasma_dd_helion_profile428_ 2.00514599236989000e+14 +D-D_->_3He_fusion_rate_at_point_429______________________________________ fusrat_plasma_dd_helion_profile429_ 1.95669434931111500e+14 +D-D_->_3He_fusion_rate_at_point_430______________________________________ fusrat_plasma_dd_helion_profile430_ 1.90930242671779281e+14 +D-D_->_3He_fusion_rate_at_point_431______________________________________ fusrat_plasma_dd_helion_profile431_ 1.86296034668873562e+14 +D-D_->_3He_fusion_rate_at_point_432______________________________________ fusrat_plasma_dd_helion_profile432_ 1.81765819437034062e+14 +D-D_->_3He_fusion_rate_at_point_433______________________________________ fusrat_plasma_dd_helion_profile433_ 1.77338602917053344e+14 +D-D_->_3He_fusion_rate_at_point_434______________________________________ fusrat_plasma_dd_helion_profile434_ 1.73013389685698875e+14 +D-D_->_3He_fusion_rate_at_point_435______________________________________ fusrat_plasma_dd_helion_profile435_ 1.68789184264070094e+14 +D-D_->_3He_fusion_rate_at_point_436______________________________________ fusrat_plasma_dd_helion_profile436_ 1.64664992536235812e+14 +D-D_->_3He_fusion_rate_at_point_437______________________________________ fusrat_plasma_dd_helion_profile437_ 1.60639823291849594e+14 +D-D_->_3He_fusion_rate_at_point_438______________________________________ fusrat_plasma_dd_helion_profile438_ 1.56712689908794656e+14 +D-D_->_3He_fusion_rate_at_point_439______________________________________ fusrat_plasma_dd_helion_profile439_ 1.52882612194746469e+14 +D-D_->_3He_fusion_rate_at_point_440______________________________________ fusrat_plasma_dd_helion_profile440_ 1.49148618410013906e+14 +D-D_->_3He_fusion_rate_at_point_441______________________________________ fusrat_plasma_dd_helion_profile441_ 1.45509747498226500e+14 +D-D_->_3He_fusion_rate_at_point_442______________________________________ fusrat_plasma_dd_helion_profile442_ 1.41965051556632875e+14 +D-D_->_3He_fusion_rate_at_point_443______________________________________ fusrat_plasma_dd_helion_profile443_ 1.38513598584210781e+14 +D-D_->_3He_fusion_rate_at_point_444______________________________________ fusrat_plasma_dd_helion_profile444_ 1.35154475553772406e+14 +D-D_->_3He_fusion_rate_at_point_445______________________________________ fusrat_plasma_dd_helion_profile445_ 1.31886791864308078e+14 +D-D_->_3He_fusion_rate_at_point_446______________________________________ fusrat_plasma_dd_helion_profile446_ 1.28709683242501562e+14 +D-D_->_3He_fusion_rate_at_point_447______________________________________ fusrat_plasma_dd_helion_profile447_ 1.25622316178540781e+14 +D-D_->_3He_fusion_rate_at_point_448______________________________________ fusrat_plasma_dd_helion_profile448_ 1.22623893002205250e+14 +D-D_->_3He_fusion_rate_at_point_449______________________________________ fusrat_plasma_dd_helion_profile449_ 1.19713657732273734e+14 +D-D_->_3He_fusion_rate_at_point_450______________________________________ fusrat_plasma_dd_helion_profile450_ 1.16890902867901984e+14 +D-D_->_3He_fusion_rate_at_point_451______________________________________ fusrat_plasma_dd_helion_profile451_ 1.14154977337878422e+14 +D-D_->_3He_fusion_rate_at_point_452______________________________________ fusrat_plasma_dd_helion_profile452_ 1.11505295887324969e+14 +D-D_->_3He_fusion_rate_at_point_453______________________________________ fusrat_plasma_dd_helion_profile453_ 1.08941350268242562e+14 +D-D_->_3He_fusion_rate_at_point_454______________________________________ fusrat_plasma_dd_helion_profile454_ 1.06462722720675047e+14 +D-D_->_3He_fusion_rate_at_point_455______________________________________ fusrat_plasma_dd_helion_profile455_ 1.04069102400929688e+14 +D-D_->_3He_fusion_rate_at_point_456______________________________________ fusrat_plasma_dd_helion_profile456_ 1.01760305657023875e+14 +D-D_->_3He_fusion_rate_at_point_457______________________________________ fusrat_plasma_dd_helion_profile457_ 9.95363014091695781e+13 +D-D_->_3He_fusion_rate_at_point_458______________________________________ fusrat_plasma_dd_helion_profile458_ 9.73972434306081719e+13 +D-D_->_3He_fusion_rate_at_point_459______________________________________ fusrat_plasma_dd_helion_profile459_ 9.53435121541693906e+13 +D-D_->_3He_fusion_rate_at_point_460______________________________________ fusrat_plasma_dd_helion_profile460_ 9.33757699526006094e+13 +D-D_->_3He_fusion_rate_at_point_461______________________________________ fusrat_plasma_dd_helion_profile461_ 9.14950360261353594e+13 +D-D_->_3He_fusion_rate_at_point_462______________________________________ fusrat_plasma_dd_helion_profile462_ 8.97027907993951094e+13 +D-D_->_3He_fusion_rate_at_point_463______________________________________ fusrat_plasma_dd_helion_profile463_ 8.80011265687560938e+13 +D-D_->_3He_fusion_rate_at_point_464______________________________________ fusrat_plasma_dd_helion_profile464_ 8.63929743492791562e+13 +D-D_->_3He_fusion_rate_at_point_465______________________________________ fusrat_plasma_dd_helion_profile465_ 8.48824644418631406e+13 +D-D_->_3He_fusion_rate_at_point_466______________________________________ fusrat_plasma_dd_helion_profile466_ 8.34755418863607344e+13 +D-D_->_3He_fusion_rate_at_point_467______________________________________ fusrat_plasma_dd_helion_profile467_ 8.21811263478927969e+13 +D-D_->_3He_fusion_rate_at_point_468______________________________________ fusrat_plasma_dd_helion_profile468_ 8.10136497041207812e+13 +D-D_->_3He_fusion_rate_at_point_469______________________________________ fusrat_plasma_dd_helion_profile469_ 8.00002602090821562e+13 +D-D_->_3He_fusion_rate_at_point_470______________________________________ fusrat_plasma_dd_helion_profile470_ 7.92254761188834219e+13 +D-D_->_3He_fusion_rate_at_point_471______________________________________ fusrat_plasma_dd_helion_profile471_ 6.97441629624044141e+13 +D-D_->_3He_fusion_rate_at_point_472______________________________________ fusrat_plasma_dd_helion_profile472_ 6.10825505964686016e+13 +D-D_->_3He_fusion_rate_at_point_473______________________________________ fusrat_plasma_dd_helion_profile473_ 5.31999991942241172e+13 +D-D_->_3He_fusion_rate_at_point_474______________________________________ fusrat_plasma_dd_helion_profile474_ 4.60561649590400781e+13 +D-D_->_3He_fusion_rate_at_point_475______________________________________ fusrat_plasma_dd_helion_profile475_ 3.96110182585511250e+13 +D-D_->_3He_fusion_rate_at_point_476______________________________________ fusrat_plasma_dd_helion_profile476_ 3.38248637492645430e+13 +D-D_->_3He_fusion_rate_at_point_477______________________________________ fusrat_plasma_dd_helion_profile477_ 2.86583628533180391e+13 +D-D_->_3He_fusion_rate_at_point_478______________________________________ fusrat_plasma_dd_helion_profile478_ 2.40725590320597148e+13 +D-D_->_3He_fusion_rate_at_point_479______________________________________ fusrat_plasma_dd_helion_profile479_ 2.00289064057226797e+13 +D-D_->_3He_fusion_rate_at_point_480______________________________________ fusrat_plasma_dd_helion_profile480_ 1.64893024005414844e+13 +D-D_->_3He_fusion_rate_at_point_481______________________________________ fusrat_plasma_dd_helion_profile481_ 1.34161252718411465e+13 +D-D_->_3He_fusion_rate_at_point_482______________________________________ fusrat_plasma_dd_helion_profile482_ 1.07722775636482773e+13 +D-D_->_3He_fusion_rate_at_point_483______________________________________ fusrat_plasma_dd_helion_profile483_ 8.52123683450926172e+12 +D-D_->_3He_fusion_rate_at_point_484______________________________________ fusrat_plasma_dd_helion_profile484_ 6.62711532067990332e+12 +D-D_->_3He_fusion_rate_at_point_485______________________________________ fusrat_plasma_dd_helion_profile485_ 5.05473064007331836e+12 +D-D_->_3He_fusion_rate_at_point_486______________________________________ fusrat_plasma_dd_helion_profile486_ 3.76969018439925439e+12 +D-D_->_3He_fusion_rate_at_point_487______________________________________ fusrat_plasma_dd_helion_profile487_ 2.73849252464855029e+12 +D-D_->_3He_fusion_rate_at_point_488______________________________________ fusrat_plasma_dd_helion_profile488_ 1.92864998382667090e+12 +D-D_->_3He_fusion_rate_at_point_489______________________________________ fusrat_plasma_dd_helion_profile489_ 1.30883751132699268e+12 +D-D_->_3He_fusion_rate_at_point_490______________________________________ fusrat_plasma_dd_helion_profile490_ 8.49074083134623291e+11 +D-D_->_3He_fusion_rate_at_point_491______________________________________ fusrat_plasma_dd_helion_profile491_ 5.20943909940690552e+11 +D-D_->_3He_fusion_rate_at_point_492______________________________________ fusrat_plasma_dd_helion_profile492_ 2.97865406512278931e+11 +D-D_->_3He_fusion_rate_at_point_493______________________________________ fusrat_plasma_dd_helion_profile493_ 1.55415359660193939e+11 +D-D_->_3He_fusion_rate_at_point_494______________________________________ fusrat_plasma_dd_helion_profile494_ 7.17123210853053284e+10 +D-D_->_3He_fusion_rate_at_point_495______________________________________ fusrat_plasma_dd_helion_profile495_ 2.78534526468021164e+10 +D-D_->_3He_fusion_rate_at_point_496______________________________________ fusrat_plasma_dd_helion_profile496_ 8.37608195434672165e+09 +D-D_->_3He_fusion_rate_at_point_497______________________________________ fusrat_plasma_dd_helion_profile497_ 1.66720017030159378e+09 +D-D_->_3He_fusion_rate_at_point_498______________________________________ fusrat_plasma_dd_helion_profile498_ 1.55857098838984519e+08 +D-D_->_3He_fusion_rate_at_point_499______________________________________ fusrat_plasma_dd_helion_profile499_ 2.56777539450890198e+06 +D-D_->_3He_fusion_rate_at_point_500______________________________________ fusrat_plasma_dd_helion_profile500_ 3.72676546988180704e+01 D-3He_fusion_rate_at_point_0_____________________________________________ fusrat_plasma_dhe3_profile0____ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_1_____________________________________________ fusrat_plasma_dhe3_profile1____ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_2_____________________________________________ fusrat_plasma_dhe3_profile2____ 0.00000000000000000e+00 @@ -15569,3637 +15566,3638 @@ D-3He_fusion_rate_at_point_497___________________________________________ fusrat D-3He_fusion_rate_at_point_498___________________________________________ fusrat_plasma_dhe3_profile498__ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_499___________________________________________ fusrat_plasma_dhe3_profile499__ 0.00000000000000000e+00 D-3He_fusion_rate_at_point_500___________________________________________ fusrat_plasma_dhe3_profile500__ 0.00000000000000000e+00 -D-T_fusion_power:_plasma_(MW)____________________________________________ (p_plasma_dt_mw)_______________ 1.64735369756583532e+03 OP +D-T_fusion_power:_plasma_(MW)____________________________________________ (p_plasma_dt_mw)_______________ 1.62310382710618933e+03 OP D-T_fusion_power:_beam_(MW)______________________________________________ (p_beam_dt_mw)_________________ 0.00000000000000000e+00 OP -D-D_fusion_power_(MW)____________________________________________________ (p_dd_total_mw)________________ 1.99374684439789274e+00 OP -D-D_branching_ratio_for_tritium_producing_reactions______________________ (f_dd_branching_trit)__________ 4.74301858763706119e-01 OP +D-D_fusion_power_(MW)____________________________________________________ (p_dd_total_mw)________________ 1.94796555557246309e+00 OP +D-D_branching_ratio_for_tritium_producing_reactions______________________ (f_dd_branching_trit)__________ 4.74775433182917816e-01 OP D-He3_fusion_power_(MW)__________________________________________________ (p_dhe3_total_mw)______________ 0.00000000000000000e+00 OP -Alpha_rate_density:_total_(particles/m³/sec)_____________________________ (fusden_alpha_total)___________ 3.09590648008595584e+17 OP -Alpha_rate_density:_plasma_(particles/m³/sec)____________________________ (fusden_plasma_alpha)__________ 3.09590648008595584e+17 OP -Alpha_power:_total_(MW)__________________________________________________ (p_alpha_total_mw)_____________ 3.31650925187060238e+02 OP -Alpha_power_density:_total_(MW/m³)_______________________________________ (pden_alpha_total_mw)__________ 1.75646643296789862e-01 OP -Alpha_power:_plasma_only_(MW)____________________________________________ (p_plasma_alpha_mw)____________ 3.31650925187060238e+02 OP -Alpha_power_density:_plasma_(MW/m³)______________________________________ (pden_plasma_alpha_mw)_________ 1.75646643296789862e-01 OP +Alpha_rate_density:_total_(particles/m³/sec)_____________________________ (fusden_alpha_total)___________ 3.05033318804660224e+17 OP +Alpha_rate_density:_plasma_(particles/m³/sec)____________________________ (fusden_plasma_alpha)__________ 3.05033318804660224e+17 OP +Alpha_power:_total_(MW)__________________________________________________ (p_alpha_total_mw)_____________ 3.26768857671449155e+02 OP +Alpha_power_density:_total_(MW/m³)_______________________________________ (pden_alpha_total_mw)__________ 1.73061036844467525e-01 OP +Alpha_power:_plasma_only_(MW)____________________________________________ (p_plasma_alpha_mw)____________ 3.26768857671449155e+02 OP +Alpha_power_density:_plasma_(MW/m³)______________________________________ (pden_plasma_alpha_mw)_________ 1.73061036844467525e-01 OP Alpha_power:_beam-plasma_(MW)____________________________________________ (p_beam_alpha_mw)______________ 0.00000000000000000e+00 OP -Alpha_power_per_unit_volume_transferred_to_electrons_(MW/m³)_____________ (f_pden_alpha_electron_mw)_____ 1.19472347848388047e-01 OP -Alpha_power_per_unit_volume_transferred_to_ions_(MW/m³)__________________ (f_pden_alpha_ions_mw)_________ 4.73919632835623147e-02 OP -Neutron_power:_total_(MW)________________________________________________ (p_neutron_total_mw)___________ 1.31643953009935831e+03 OP -Neutron_power_density:_total_(MW/m³)_____________________________________ (pden_neutron_total_mw)________ 6.97203496220420993e-01 OP -Neutron_power:_plasma_only_(MW)__________________________________________ (p_plasma_neutron_mw)__________ 1.31643953009935831e+03 OP -Neutron_power_density:_plasma_(MW/m³)____________________________________ (pden_plasma_neutron_mw)_______ 6.97203496220420993e-01 OP +Alpha_power_per_unit_volume_transferred_to_electrons_(MW/m³)_____________ (f_pden_alpha_electron_mw)_____ 1.18123088962480652e-01 OP +Alpha_power_per_unit_volume_transferred_to_ions_(MW/m³)__________________ (f_pden_alpha_ions_mw)_________ 4.62848960397634693e-02 OP +Neutron_power:_total_(MW)________________________________________________ (p_neutron_total_mw)___________ 1.29705365311273226e+03 OP +Neutron_power_density:_total_(MW/m³)_____________________________________ (pden_neutron_total_mw)________ 6.86936483636048645e-01 OP +Neutron_power:_plasma_only_(MW)__________________________________________ (p_plasma_neutron_mw)__________ 1.29705365311273226e+03 OP +Neutron_power_density:_plasma_(MW/m³)____________________________________ (pden_plasma_neutron_mw)_______ 6.86936483636048645e-01 OP Neutron_power:_beam-plasma_(MW)__________________________________________ (p_beam_neutron_mw)____________ 0.00000000000000000e+00 OP -Average_neutron_flux_at_plasma_surface_(MW/m²)___________________________ (pflux_plasma_surface_neutron_avg_mw)_ 1.12147857933474682e+00 OP -Charged_particle_power_(p,_3He,_T)_(excluding_alphas)_(MW)_______________ (p_non_alpha_charged_mw)_______ 1.25698912381439887e+00 OP -Charged_particle_power_density_(p,_3He,_T)_(excluding_alphas)_(MW)_______ (pden_non_alpha_charged_mw)____ 6.65717787863980242e-04 OP -Total_charged_particle_power_(including_alphas)_(MW)_____________________ (p_charged_particle_mw)________ 3.32907914310874617e+02 OP +Average_neutron_flux_at_plasma_surface_(MW/m²)___________________________ (pflux_plasma_surface_neutron_avg_mw)_ 1.10496369559306684e+00 OP +Charged_particle_power_(p,_3He,_T)_(excluding_alphas)_(MW)_______________ (p_non_alpha_charged_mw)_______ 1.22928187758053520e+00 OP +Charged_particle_power_density_(p,_3He,_T)_(excluding_alphas)_(MW)_______ (pden_non_alpha_charged_mw)____ 6.51043669902295766e-04 OP +Total_charged_particle_power_(including_alphas)_(MW)_____________________ (p_charged_particle_mw)________ 3.27998139549029702e+02 OP # Plasma Radiation (excluding SOL): # -Plasma_total_synchrotron_radiation_power_(Pₛₙ)_(MW)______________________ (p_plasma_sync_mw)_____________ 1.48020088195996493e+01 OP -Plasma_total_synchrotron_radiation_power_density_(MW/m³)_________________ (pden_plasma_sync_mw)__________ 7.83933637979670681e-03 OP +Plasma_total_synchrotron_radiation_power_(Pₛₙ)_(MW)______________________ (p_plasma_sync_mw)_____________ 1.38039014889703751e+01 OP +Plasma_total_synchrotron_radiation_power_density_(MW/m³)_________________ (pden_plasma_sync_mw)__________ 7.31072575643682433e-03 OP Synchrotron_wall_reflectivity_factor_____________________________________ (f_sync_reflect)_______________ 5.99999999999999978e-01 Plasma_normalised_minor_radius_defining_'core'_region_(ρᵢₙₙₑᵣ)___________ (radius_plasma_core_norm)______ 7.50000000000000000e-01 Fractional_scaling_of_radiation_power_along_core_profile_________________ (f_p_plasma_core_rad_reduction)_ 5.99999999999999978e-01 -Plasma_total_radiation_power_from_core_region_(MW)_(Pᵧ,ᵢₙₙₑᵣ)____________ (p_plasma_inner_rad_mw)________ 9.50238592612283526e+01 OP -Plasma_total_radiation_power_from_edge_region_(MW)_(Pᵧ,ₒᵤₜₑᵣ)____________ (p_plasma_outer_rad_mw)________ 1.44627763362900168e+02 OP -Plasma_total_radiation_power_from_inside_last_closed_flux_surface_(Pᵧ)_(MW)_ (p_plasma_rad_mw)______________ 2.39651622624128521e+02 OP -Separatrix_radiation_fraction_(fᵧ)_______________________________________ (f_p_plasma_separatrix_rad)____ 5.96808998298930193e-01 OP -Power_incident_on_the_divertor_targets_(MW)______________________________ (ptarmw)_______________________ 3.23806705530640571e+01 OP +Plasma_total_radiation_power_from_core_region_(MW)_(Pᵧ,ᵢₙₙₑᵣ)____________ (p_plasma_inner_rad_mw)________ 8.99028815615043300e+01 OP +Plasma_total_radiation_power_from_edge_region_(MW)_(Pᵧ,ₒᵤₜₑᵣ)____________ (p_plasma_outer_rad_mw)________ 1.36763198991777614e+02 OP +Plasma_total_radiation_power_from_inside_last_closed_flux_surface_(Pᵧ)_(MW)_ (p_plasma_rad_mw)______________ 2.26666080553281915e+02 OP +Separatrix_radiation_fraction_(fᵧ)_______________________________________ (f_p_plasma_separatrix_rad)____ 5.78998850574579338e-01 OP +Power_incident_on_the_divertor_targets_(MW)______________________________ (ptarmw)_______________________ 3.29626493572442669e+01 OP +Divertor_poloidal_angle_subtended_by_plasma_(degrees)____________________ (deg_div_poloidal_plasma)______ 2.61014530600482715e+01 OP Fraction_of_power_to_the_lower_divertor__________________________________ (f_p_div_lower)________________ 1.00000000000000000e+00 IP Outboard_side_heat_flux_decay_length_(m)_________________________________ (lambdaio)_____________________ 1.57000000000000000e-03 OP Fraction_of_power_on_the_inner_targets___________________________________ (fio)__________________________ 4.09999999999999976e-01 OP Fraction_of_power_incident_on_the_lower_inner_target_____________________ (fLI)__________________________ 4.09999999999999976e-01 OP Fraction_of_power_incident_on_the_lower_outer_target_____________________ (fLO)__________________________ 5.90000000000000080e-01 OP -Power_incident_on_the_lower_inner_target_(MW)____________________________ (pLImw)________________________ 1.32760749267562623e+01 OP -Power_incident_on_the_lower_outer_target_(MW)____________________________ (pLOmw)________________________ 1.91045956263077947e+01 OP -Ohmic_heating_power_(MW)_________________________________________________ (p_plasma_ohmic_mw)____________ 6.26262020444869449e-01 OP +Power_incident_on_the_lower_inner_target_(MW)____________________________ (pLImw)________________________ 1.35146862364701494e+01 OP +Power_incident_on_the_lower_outer_target_(MW)____________________________ (pLOmw)________________________ 1.94479631207741193e+01 OP +Ohmic_heating_power_(MW)_________________________________________________ (p_plasma_ohmic_mw)____________ 6.20394683971129401e-01 OP Fraction_of_alpha_power_deposited_in_plasma______________________________ (f_p_alpha_plasma_deposited)___ 9.49999999999999956e-01 IP -Fraction_of_alpha_power_to_electrons_____________________________________ (f_alpha_electron)_____________ 7.15985024226741706e-01 OP -Fraction_of_alpha_power_to_ions__________________________________________ (f_alpha_ion)__________________ 2.84014975773258294e-01 OP -Ion_transport_(MW)_______________________________________________________ (p_ion_transport_loss_mw)______ 1.43777400026142971e+02 OP -Electron_transport_(MW)__________________________________________________ (p_electron_transport_loss_mw)_ 1.62753716141113443e+02 OP +Fraction_of_alpha_power_to_electrons_____________________________________ (f_alpha_electron)_____________ 7.18475376733485938e-01 OP +Fraction_of_alpha_power_to_ions__________________________________________ (f_alpha_ion)__________________ 2.81524623266514062e-01 OP +Ion_transport_(MW)_______________________________________________________ (p_ion_transport_loss_mw)______ 1.42290362646802834e+02 OP +Electron_transport_(MW)__________________________________________________ (p_electron_transport_loss_mw)_ 1.59286083131907333e+02 OP Injection_power_to_ions_(MW)_____________________________________________ (p_hcd_injected_ions_mw)_______ 0.00000000000000000e+00 OP -Injection_power_to_electrons_(MW)________________________________________ (p_hcd_injected_electrons_mw)__ 8.46033453174823507e+01 OP +Injection_power_to_electrons_(MW)________________________________________ (p_hcd_injected_electrons_mw)__ 7.91992359900749534e+01 OP # Plasma Exhaust # -Plasma_separatrix_power_(Pₛₑₚ)_(MW)______________________________________ (p_plasma_separatrix_mw)_______ 1.61903352765320307e+02 OP -Plasma_separatrix_power_over_major_radius_(Pₛₑₚ_/_R₀)_(MW/m)_____________ (p_plasma_separatrix_rmajor_mw)_ 2.02379190953010486e+01 OP -EU-DEMO_divertor_protection_re-attachment_metric_(PₛₑₚBₜ_/_q₉₅AR₀)_(MWT/m)_ (p_div_bt_q_aspect_rmajor_mw)__ 9.99986150178709643e+00 OP +Plasma_separatrix_power_(Pₛₑₚ)_(MW)______________________________________ (p_plasma_separatrix_mw)_______ 1.64813246786221384e+02 OP +Plasma_separatrix_power_over_major_radius_(Pₛₑₚ_/_R₀)_(MW/m)_____________ (p_plasma_separatrix_rmajor_mw)_ 2.06016558478333316e+01 OP +EU-DEMO_divertor_protection_re-attachment_metric_(PₛₑₚBₜ_/_q₉₅AR₀)_(MWT/m)_ (p_div_bt_q_aspect_rmajor_mw)__ 9.99990064166419046e+00 OP # H-mode Power Threshold Scalings : # L-H_threshold_scaling_switch_____________________________________________ (i_l_h_threshold)______________ 19 -L-H_threshold_power_(MW)_________________________________________________ (p_l_h_threshold_mw)___________ 9.24460896412625033e+01 OP -ITER_1996_scaling:_nominal_(MW)__________________________________________ (l_h_threshold_powers(1))______ 1.32663013868510404e+02 OP -ITER_1996_scaling:_upper_bound_(MW)______________________________________ (l_h_threshold_powers(2))______ 3.21615244054883476e+02 OP -ITER_1996_scaling:_lower_bound_(MW)______________________________________ (l_h_threshold_powers(3))______ 5.47221426084695892e+01 OP -ITER_1997_scaling_(1)_(MW)_______________________________________________ (l_h_threshold_powers(4))______ 2.05087259844955611e+02 OP -ITER_1997_scaling_(2)_(MW)_______________________________________________ (l_h_threshold_powers(5))______ 1.63954179660424472e+02 OP -Martin_2008_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(6))______ 9.24460896412625033e+01 OP -Martin_2008_scaling:_95%_upper_bound_(MW)________________________________ (l_h_threshold_powers(7))______ 1.17405253357792517e+02 OP -Martin_2008_scaling:_95%_lower_bound_(MW)________________________________ (l_h_threshold_powers(8))______ 7.27929904914317660e+01 OP -Snipes_2000_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(9))______ 6.42010285164580665e+01 OP -Snipes_2000_scaling:_upper_bound_(MW)____________________________________ (l_h_threshold_powers(10))_____ 9.40278844076016753e+01 OP -Snipes_2000_scaling:_lower_bound_(MW)____________________________________ (l_h_threshold_powers(11))_____ 4.34849981886140000e+01 OP -Snipes_2000_scaling_(closed_divertor):_nominal_(MW)______________________ (l_h_threshold_powers(12))_____ 2.98667790122970871e+01 OP -Snipes_2000_scaling_(closed_divertor):_upper_bound_(MW)__________________ (l_h_threshold_powers(13))_____ 4.14310016235071359e+01 OP -Snipes_2000_scaling_(closed_divertor):_lower_bound_(MW)__________________ (l_h_threshold_powers(14))_____ 2.13793473086700736e+01 OP -Hubbard_2012_L-I_threshold_-_nominal_(MW)________________________________ (l_h_threshold_powers(15))_____ 2.78535950938565371e+01 OP -Hubbard_2012_L-I_threshold_-_lower_bound_(MW)____________________________ (l_h_threshold_powers(16))_____ 1.44349957519900922e+01 OP -Hubbard_2012_L-I_threshold_-_upper_bound_(MW)____________________________ (l_h_threshold_powers(17))_____ 5.37459638355314269e+01 OP -Hubbard_2017_L-I_threshold_______________________________________________ (l_h_threshold_powers(18))_____ 2.59764987291037244e+02 OP -Martin_2008_aspect_ratio_corrected_scaling:_nominal_(MW)_________________ (l_h_threshold_powers(19))_____ 9.24460896412625033e+01 OP -Martin_2008_aspect_ratio_corrected_scaling:_95%_upper_bound_(MW)_________ (l_h_threshold_powers(20))_____ 1.17405253357792517e+02 OP -Martin_2008_aspect_ratio_corrected_scaling:_95%_lower_bound_(MW)_________ (l_h_threshold_powers(21))_____ 7.27929904914317660e+01 OP +L-H_threshold_power_(MW)_________________________________________________ (p_l_h_threshold_mw)___________ 9.17007273294534997e+01 OP +ITER_1996_scaling:_nominal_(MW)__________________________________________ (l_h_threshold_powers(1))______ 1.30479780531968260e+02 OP +ITER_1996_scaling:_upper_bound_(MW)______________________________________ (l_h_threshold_powers(2))______ 3.14917244599324874e+02 OP +ITER_1996_scaling:_lower_bound_(MW)______________________________________ (l_h_threshold_powers(3))______ 5.40617366026862598e+01 OP +ITER_1997_scaling_(1)_(MW)_______________________________________________ (l_h_threshold_powers(4))______ 2.01157733739017061e+02 OP +ITER_1997_scaling_(2)_(MW)_______________________________________________ (l_h_threshold_powers(5))______ 1.61164633350474588e+02 OP +Martin_2008_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(6))______ 9.17007273294534997e+01 OP +Martin_2008_scaling:_95%_upper_bound_(MW)________________________________ (l_h_threshold_powers(7))______ 1.16374030598953340e+02 OP +Martin_2008_scaling:_95%_lower_bound_(MW)________________________________ (l_h_threshold_powers(8))______ 7.22585902611350122e+01 OP +Snipes_2000_scaling:_nominal_(MW)________________________________________ (l_h_threshold_powers(9))______ 6.38354461615172823e+01 OP +Snipes_2000_scaling:_upper_bound_(MW)____________________________________ (l_h_threshold_powers(10))_____ 9.34248254122491346e+01 OP +Snipes_2000_scaling:_lower_bound_(MW)____________________________________ (l_h_threshold_powers(11))_____ 4.32686804745179217e+01 OP +Snipes_2000_scaling_(closed_divertor):_nominal_(MW)______________________ (l_h_threshold_powers(12))_____ 2.97669802884392816e+01 OP +Snipes_2000_scaling_(closed_divertor):_upper_bound_(MW)__________________ (l_h_threshold_powers(13))_____ 4.12399842763666413e+01 OP +Snipes_2000_scaling_(closed_divertor):_lower_bound_(MW)__________________ (l_h_threshold_powers(14))_____ 2.13350746543547771e+01 OP +Hubbard_2012_L-I_threshold_-_nominal_(MW)________________________________ (l_h_threshold_powers(15))_____ 2.70759406837413472e+01 OP +Hubbard_2012_L-I_threshold_-_lower_bound_(MW)____________________________ (l_h_threshold_powers(16))_____ 1.41373302444704940e+01 OP +Hubbard_2012_L-I_threshold_-_upper_bound_(MW)____________________________ (l_h_threshold_powers(17))_____ 5.18560825298834871e+01 OP +Hubbard_2017_L-I_threshold_______________________________________________ (l_h_threshold_powers(18))_____ 2.54965187167333056e+02 OP +Martin_2008_aspect_ratio_corrected_scaling:_nominal_(MW)_________________ (l_h_threshold_powers(19))_____ 9.17007273294534997e+01 OP +Martin_2008_aspect_ratio_corrected_scaling:_95%_upper_bound_(MW)_________ (l_h_threshold_powers(20))_____ 1.16374030598953340e+02 OP +Martin_2008_aspect_ratio_corrected_scaling:_95%_lower_bound_(MW)_________ (l_h_threshold_powers(21))_____ 7.22585902611350122e+01 OP # Plasma Energy Confinement # Confinement_scaling_law__________________________________________________ (tauelaw)______________________ "IPB98(y,2)" -Confinement_H_factor_____________________________________________________ (hfact)________________________ 1.19999574841169188e+00 -Global_thermal_energy_confinement_time,_from_scaling_(τₑ)_(s)____________ (t_energy_confinement)_________ 3.17540007130566426e+00 OP -Directly_calculated_total_energy_confinement_time_(τₑᵦ)_(s)______________ (t_energy_confinement_beta)____ 3.62856351119345133e+00 OP -Ion_energy_confinement_time,_from_scaling_(s)____________________________ (t_ion_energy_confinement)_____ 3.17540007130566471e+00 OP -Electron_energy_confinement_time,_from_scaling_(s)_______________________ (t_electron_energy_confinement)_ 3.17540007130566426e+00 OP -Fusion_double_product_(nτ)_(s/m³)________________________________________ (ntau)_________________________ 2.57923824191297389e+20 OP -Lawson_Triple_product_(nTτ)_(keV_s/m³)___________________________________ (nTtau)________________________ 3.26909432066725537e+21 OP -Transport_loss_power_assumed_in_scaling_law_(MW)_________________________ (p_plasma_loss_mw)_____________ 3.06531116128220447e+02 OP +Confinement_H_factor_____________________________________________________ (hfact)________________________ 1.19999713327972768e+00 +Global_thermal_energy_confinement_time,_from_scaling_(τₑ)_(s)____________ (t_energy_confinement)_________ 3.13405866279800271e+00 OP +Directly_calculated_total_energy_confinement_time_(τₑᵦ)_(s)______________ (t_energy_confinement_beta)____ 3.59562669716488070e+00 OP +Ion_energy_confinement_time,_from_scaling_(s)____________________________ (t_ion_energy_confinement)_____ 3.13405866279800271e+00 OP +Electron_energy_confinement_time,_from_scaling_(s)_______________________ (t_electron_energy_confinement)_ 3.13405866279800271e+00 OP +Fusion_double_product_(nτ)_(s/m³)________________________________________ (ntau)_________________________ 2.50072466708771504e+20 OP +Lawson_Triple_product_(nTτ)_(keV_s/m³)___________________________________ (nTtau)________________________ 3.11918998538316730e+21 OP +Transport_loss_power_assumed_in_scaling_law_(MW)_________________________ (p_plasma_loss_mw)_____________ 3.01576445777998970e+02 OP Switch_for_radiation_loss_term_usage_in_power_balance____________________ (i_rad_loss)___________________ 1 -Radiation_power_subtracted_from_plasma_heating_power_balance_(MW)________ _______________________________ 9.50238592612283526e+01 ITV -H*_non-radiation_corrected_______________________________________________ (hstar)________________________ 1.40629666185013247e+00 OP -Alpha_particle_confinement_time_(τ_α)_(s)________________________________ (t_alpha_confinement)__________ 2.28277369282385791e+01 OP -Alpha_particle_to_energy_confinement_time_ratio_(τ_α/τₑ)_________________ (f_alpha_energy_confinement)___ 7.18893254885273336e+00 OP +Radiation_power_subtracted_from_plasma_heating_power_balance_(MW)________ _______________________________ 8.99028815615043300e+01 ITV +H*_non-radiation_corrected_______________________________________________ (hstar)________________________ 1.41633752669338220e+00 OP +Alpha_particle_confinement_time_(τ_α)_(s)________________________________ (t_alpha_confinement)__________ 2.03803719777290411e+01 OP +Alpha_particle_to_energy_confinement_time_ratio_(τ_α/τₑ)_________________ (f_alpha_energy_confinement)___ 6.50286869855014071e+00 OP Lower_limit_on_f_alpha_energy_confinement_((τ_α/τₑ)>)____________________ (f_alpha_energy_confinement_min)_ 5.00000000000000000e+00 # Energy confinement times, and required H-factors : # -Normalized_plasma_pressure_beta_as_defined_by_McDonald_et_al_____________ (beta_mcdonald)________________ 3.96849240352809274e-02 OP -Normalized_ion_Larmor_radius_____________________________________________ (rho_star)_____________________ 2.10347060009622019e-03 OP -Normalized_collisionality________________________________________________ (nu_star)______________________ 3.42851586889692883e-03 OP +Normalized_plasma_pressure_beta_as_defined_by_McDonald_et_al_____________ (beta_mcdonald)________________ 3.89403914328839487e-02 OP +Normalized_ion_Larmor_radius_____________________________________________ (rho_star)_____________________ 2.09465052879505287e-03 OP +Normalized_collisionality________________________________________________ (nu_star)______________________ 3.46843248208375489e-03 OP # Plasma Volt-Second Requirements: # -Total_plasma_volt-seconds_required_for_pulse_(Wb)________________________ (vs_plasma_total_required)_____ 5.30057912550384231e+02 OP -Total_plasma_inductive_flux_consumption_for_plasma_current_ramp-up_(Wb)__ (vs_plasma_ind_ramp)___________ 2.09919812494905983e+02 OP -Plasma_resistive_flux_consumption_for_plasma_current_ramp-up_(Wb)________ (vs_plasma_res_ramp)___________ 5.05062413495299722e+01 OP -Total_flux_consumption_for_plasma_current_ramp-up_(Wb)___________________ (vs_plasma_ramp_required)______ 2.60426053844435955e+02 OP +Total_plasma_volt-seconds_required_for_pulse_(Wb)________________________ (vs_plasma_total_required)_____ 5.27733672835846505e+02 OP +Total_plasma_inductive_flux_consumption_for_plasma_current_ramp-up_(Wb)__ (vs_plasma_ind_ramp)___________ 2.06214337399072065e+02 OP +Plasma_resistive_flux_consumption_for_plasma_current_ramp-up_(Wb)________ (vs_plasma_res_ramp)___________ 4.96147122590616547e+01 OP +Total_flux_consumption_for_plasma_current_ramp-up_(Wb)___________________ (vs_plasma_ramp_required)______ 2.55829049658133727e+02 OP Ejima_coefficient_(Cₑⱼᵢₘₐ)_______________________________________________ (ejima_coeff)__________________ 2.99999999999999989e-01 -Internal_plasma_V-s______________________________________________________ (vs_plasma_internal)___________ 7.57593620242949584e+01 -Plasma_volt-seconds_needed_for_flat-top_(heat_+_burn_times)_(Wb)_________ (vs_plasma_burn_required)______ 2.69631858705948275e+02 OP -Plasma_loop_voltage_during_burn_(Vₗₒₒₚ)_(V)______________________________ (v_plasma_loop_burn)___________ 3.73966010251366235e-02 OP +Internal_plasma_V-s______________________________________________________ (vs_plasma_internal)___________ 7.44220683885924785e+01 +Plasma_volt-seconds_needed_for_flat-top_(heat_+_burn_times)_(Wb)_________ (vs_plasma_burn_required)______ 2.71904623177712779e+02 OP +Plasma_loop_voltage_during_burn_(Vₗₒₒₚ)_(V)______________________________ (v_plasma_loop_burn)___________ 3.77119245868201072e-02 OP Coefficient_for_sawtooth_effects_on_burn_V-s_requirement_________________ (csawth)_______________________ 1.00000000000000000e+00 -Plasma_resistance_(Ω)_(ohm)______________________________________________ (res_plasma)___________________ 4.04804239727848516e-09 OP -Plasma_resistive_diffusion_time_(τᵣₑₛ)_(s)_______________________________ (t_plasma_res_diffusion)_______ 3.00698380231480769e+03 OP -Plasma_inductance_(H)____________________________________________________ (ind_plasma)___________________ 1.25351485781733693e-05 OP -Plasma_magnetic_energy_stored_(J)________________________________________ (e_plasma_magnetic_stored)_____ 1.75771062477178335e+09 OP +Plasma_resistance_(Ω)_(ohm)______________________________________________ (res_plasma)___________________ 4.05611558478647318e-09 OP +Plasma_resistive_diffusion_time_(τᵣₑₛ)_(s)_______________________________ (t_plasma_res_diffusion)_______ 3.00099877957112358e+03 OP +Plasma_inductance_(H)____________________________________________________ (ind_plasma)___________________ 1.25351485782182824e-05 OP +Plasma_magnetic_energy_stored_(J)________________________________________ (e_plasma_magnetic_stored)_____ 1.69620458359906626e+09 OP Normalised_internal_inductance_model_used________________________________ (i_ind_plasma_internal_norm)___ 0 Plasma_normalised_internal_inductance_(lᵢ)_______________________________ (ind_plasma_internal_norm)_____ 9.00000000000000022e-01 OP J._Wesson_plasma_normalised_internal_inductance__________________________ (ind_plasma_internal_norm_wesson)_ 9.32164081030445235e-01 OP J._Menard_plasma_normalised_internal_inductance__________________________ (ind_plasma_internal_norm_menard)_ 1.54999999999999982e+00 OP -ITER_lᵢ(3)_plasma_normalised_internal_inductance_________________________ (ind_plasma_internal_norm_iter_3)_ 8.13990037192072413e-01 OP +ITER_lᵢ(3)_plasma_normalised_internal_inductance_________________________ (ind_plasma_internal_norm_iter_3)_ 8.13990037192073301e-01 OP # Plasma Bootstrap Current Fraction # Plasma_bootstrap_current_fraction_scaling_used___________________________ (i_bootstrap_current)__________ 4 Bootstrap_current_fraction_multiplier____________________________________ (cboot)________________________ 1.00000000000000000e+00 -Bootstrap_fraction_(ITER_IPDG89_scaling)_________________________________ (f_c_plasma_bootstrap_iter89)__ 3.86390265141005551e-01 OP -Bootstrap_fraction_(Nevins_scaling)______________________________________ (f_c_plasma_bootstrap_nevins)__ 3.98516078405339647e-01 OP -Bootstrap_fraction_(Wilson_scaling)______________________________________ (f_c_plasma_bootstrap_wilson)__ 5.15206125427977502e-01 OP -Bootstrap_fraction_(Sauter_scaling)______________________________________ (f_c_plasma_bootstrap_sauter)__ 4.21875565216539794e-01 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_0________________ (j_plasma_bootstrap_sauter_profile0)_ 2.60534132480913149e+03 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_1________________ (j_plasma_bootstrap_sauter_profile1)_ 6.07412369481573114e+03 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_2________________ (j_plasma_bootstrap_sauter_profile2)_ 9.27571969490804804e+03 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_3________________ (j_plasma_bootstrap_sauter_profile3)_ 1.21358500331953692e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_4________________ (j_plasma_bootstrap_sauter_profile4)_ 1.46936389590412928e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_5________________ (j_plasma_bootstrap_sauter_profile5)_ 1.69994637295914727e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_6________________ (j_plasma_bootstrap_sauter_profile6)_ 1.90977432599935491e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_7________________ (j_plasma_bootstrap_sauter_profile7)_ 2.10247716574596598e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_8________________ (j_plasma_bootstrap_sauter_profile8)_ 2.28096176429631741e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_9________________ (j_plasma_bootstrap_sauter_profile9)_ 2.44754932065454886e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_10_______________ (j_plasma_bootstrap_sauter_profile10)_ 2.60409938213517562e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_11_______________ (j_plasma_bootstrap_sauter_profile11)_ 2.75211026243536216e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_12_______________ (j_plasma_bootstrap_sauter_profile12)_ 2.89279743199611039e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_13_______________ (j_plasma_bootstrap_sauter_profile13)_ 3.02715399303053964e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_14_______________ (j_plasma_bootstrap_sauter_profile14)_ 3.15599724336826730e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_15_______________ (j_plasma_bootstrap_sauter_profile15)_ 3.28000461795605297e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_16_______________ (j_plasma_bootstrap_sauter_profile16)_ 3.39974155722170253e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_17_______________ (j_plasma_bootstrap_sauter_profile17)_ 3.51568323577918272e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_18_______________ (j_plasma_bootstrap_sauter_profile18)_ 3.62823160500682425e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_19_______________ (j_plasma_bootstrap_sauter_profile19)_ 3.73772884248637638e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_20_______________ (j_plasma_bootstrap_sauter_profile20)_ 3.84446803073629853e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_21_______________ (j_plasma_bootstrap_sauter_profile21)_ 3.94870168746008785e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_22_______________ (j_plasma_bootstrap_sauter_profile22)_ 4.05064861987787881e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_23_______________ (j_plasma_bootstrap_sauter_profile23)_ 4.15049946419071930e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_24_______________ (j_plasma_bootstrap_sauter_profile24)_ 4.24842118746754131e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_25_______________ (j_plasma_bootstrap_sauter_profile25)_ 4.34456076610734308e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_26_______________ (j_plasma_bootstrap_sauter_profile26)_ 4.43904820731237196e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_27_______________ (j_plasma_bootstrap_sauter_profile27)_ 4.53199904360844303e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_28_______________ (j_plasma_bootstrap_sauter_profile28)_ 4.62351640225189767e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_29_______________ (j_plasma_bootstrap_sauter_profile29)_ 4.71369273036329832e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_30_______________ (j_plasma_bootstrap_sauter_profile30)_ 4.80261123944834835e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_31_______________ (j_plasma_bootstrap_sauter_profile31)_ 4.89034712063388943e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_32_______________ (j_plasma_bootstrap_sauter_profile32)_ 4.97696857103005968e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_33_______________ (j_plasma_bootstrap_sauter_profile33)_ 5.06253766459042090e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_34_______________ (j_plasma_bootstrap_sauter_profile34)_ 5.14711109370349513e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_35_______________ (j_plasma_bootstrap_sauter_profile35)_ 5.23074080338160129e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_36_______________ (j_plasma_bootstrap_sauter_profile36)_ 5.31347453551669241e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_37_______________ (j_plasma_bootstrap_sauter_profile37)_ 5.39535629774782574e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_38_______________ (j_plasma_bootstrap_sauter_profile38)_ 5.47642676880198414e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_39_______________ (j_plasma_bootstrap_sauter_profile39)_ 5.55672365014640236e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_40_______________ (j_plasma_bootstrap_sauter_profile40)_ 5.63628197200892828e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_41_______________ (j_plasma_bootstrap_sauter_profile41)_ 5.71513436067257644e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_42_______________ (j_plasma_bootstrap_sauter_profile42)_ 5.79331127255795145e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_43_______________ (j_plasma_bootstrap_sauter_profile43)_ 5.87084119993694985e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_44_______________ (j_plasma_bootstrap_sauter_profile44)_ 5.94775085218459717e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_45_______________ (j_plasma_bootstrap_sauter_profile45)_ 6.02406531602727773e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_46_______________ (j_plasma_bootstrap_sauter_profile46)_ 6.09980819749491347e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_47_______________ (j_plasma_bootstrap_sauter_profile47)_ 6.17500174808801457e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_48_______________ (j_plasma_bootstrap_sauter_profile48)_ 6.24966697723336911e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_49_______________ (j_plasma_bootstrap_sauter_profile49)_ 6.32382375268795513e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_50_______________ (j_plasma_bootstrap_sauter_profile50)_ 6.39749089046660520e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_51_______________ (j_plasma_bootstrap_sauter_profile51)_ 6.47068623556027451e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_52_______________ (j_plasma_bootstrap_sauter_profile52)_ 6.54342673458617573e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_53_______________ (j_plasma_bootstrap_sauter_profile53)_ 6.61572850125137920e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_54_______________ (j_plasma_bootstrap_sauter_profile54)_ 6.68760687557081983e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_55_______________ (j_plasma_bootstrap_sauter_profile55)_ 6.75907647746535949e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_56_______________ (j_plasma_bootstrap_sauter_profile56)_ 6.83015125540335575e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_57_______________ (j_plasma_bootstrap_sauter_profile57)_ 6.90084453066280694e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_58_______________ (j_plasma_bootstrap_sauter_profile58)_ 6.97116903765996976e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_59_______________ (j_plasma_bootstrap_sauter_profile59)_ 7.04113696069625876e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_60_______________ (j_plasma_bootstrap_sauter_profile60)_ 7.11075996767206088e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_61_______________ (j_plasma_bootstrap_sauter_profile61)_ 7.18004924090845161e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_62_______________ (j_plasma_bootstrap_sauter_profile62)_ 7.24901550544324564e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_63_______________ (j_plasma_bootstrap_sauter_profile63)_ 7.31766905502255249e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_64_______________ (j_plasma_bootstrap_sauter_profile64)_ 7.38601977613473282e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_65_______________ (j_plasma_bootstrap_sauter_profile65)_ 7.45407717002343124e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_66_______________ (j_plasma_bootstrap_sauter_profile66)_ 7.52185037314719084e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_67_______________ (j_plasma_bootstrap_sauter_profile67)_ 7.58934817604580167e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_68_______________ (j_plasma_bootstrap_sauter_profile68)_ 7.65657904082202149e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_69_______________ (j_plasma_bootstrap_sauter_profile69)_ 7.72355111739097920e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_70_______________ (j_plasma_bootstrap_sauter_profile70)_ 7.79027225853131240e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_71_______________ (j_plasma_bootstrap_sauter_profile71)_ 7.85675003390686616e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_72_______________ (j_plasma_bootstrap_sauter_profile72)_ 7.92299174313590192e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_73_______________ (j_plasma_bootstrap_sauter_profile73)_ 7.98900442796791467e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_74_______________ (j_plasma_bootstrap_sauter_profile74)_ 8.05479488362072589e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_75_______________ (j_plasma_bootstrap_sauter_profile75)_ 8.12036966946432076e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_76_______________ (j_plasma_bootstrap_sauter_profile76)_ 8.18573511890748341e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_77_______________ (j_plasma_bootstrap_sauter_profile77)_ 8.25089734876283619e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_78_______________ (j_plasma_bootstrap_sauter_profile78)_ 8.31586226792902016e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_79_______________ (j_plasma_bootstrap_sauter_profile79)_ 8.38063558565105341e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_80_______________ (j_plasma_bootstrap_sauter_profile80)_ 8.44522281917030487e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_81_______________ (j_plasma_bootstrap_sauter_profile81)_ 8.50962930103071558e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_82_______________ (j_plasma_bootstrap_sauter_profile82)_ 8.57386018584426783e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_83_______________ (j_plasma_bootstrap_sauter_profile83)_ 8.63792045678500726e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_84_______________ (j_plasma_bootstrap_sauter_profile84)_ 8.70181493159701349e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_85_______________ (j_plasma_bootstrap_sauter_profile85)_ 8.76554826838324807e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_86_______________ (j_plasma_bootstrap_sauter_profile86)_ 8.82912497095787839e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_87_______________ (j_plasma_bootstrap_sauter_profile87)_ 8.89254939400096337e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_88_______________ (j_plasma_bootstrap_sauter_profile88)_ 8.95582574790422514e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_89_______________ (j_plasma_bootstrap_sauter_profile89)_ 9.01895810333781410e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_90_______________ (j_plasma_bootstrap_sauter_profile90)_ 9.08195039560647710e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_91_______________ (j_plasma_bootstrap_sauter_profile91)_ 9.14480642877567007e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_92_______________ (j_plasma_bootstrap_sauter_profile92)_ 9.20752987959959282e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_93_______________ (j_plasma_bootstrap_sauter_profile93)_ 9.27012430121183279e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_94_______________ (j_plasma_bootstrap_sauter_profile94)_ 9.33259312668202183e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_95_______________ (j_plasma_bootstrap_sauter_profile95)_ 9.39493967236831959e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_96_______________ (j_plasma_bootstrap_sauter_profile96)_ 9.45716714112470945e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_97_______________ (j_plasma_bootstrap_sauter_profile97)_ 9.51927862533357838e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_98_______________ (j_plasma_bootstrap_sauter_profile98)_ 9.58127710983293655e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_99_______________ (j_plasma_bootstrap_sauter_profile99)_ 9.64316547465776239e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_100______________ (j_plasma_bootstrap_sauter_profile100)_ 9.70494649770782853e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_101______________ (j_plasma_bootstrap_sauter_profile101)_ 9.76662285725142865e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_102______________ (j_plasma_bootstrap_sauter_profile102)_ 9.82819713433354191e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_103______________ (j_plasma_bootstrap_sauter_profile103)_ 9.88967181509620859e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_104______________ (j_plasma_bootstrap_sauter_profile104)_ 9.95104929296179325e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_105______________ (j_plasma_bootstrap_sauter_profile105)_ 1.00123318707371262e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_106______________ (j_plasma_bootstrap_sauter_profile106)_ 1.00735217626440994e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_107______________ (j_plasma_bootstrap_sauter_profile107)_ 1.01346210962303579e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_108______________ (j_plasma_bootstrap_sauter_profile108)_ 1.01956319142401961e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_109______________ (j_plasma_bootstrap_sauter_profile109)_ 1.02565561763544320e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_110______________ (j_plasma_bootstrap_sauter_profile110)_ 1.03173957609226301e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_111______________ (j_plasma_bootstrap_sauter_profile111)_ 1.03781524665822988e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_112______________ (j_plasma_bootstrap_sauter_profile112)_ 1.04388280137998430e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_113______________ (j_plasma_bootstrap_sauter_profile113)_ 1.04994240464238028e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_114______________ (j_plasma_bootstrap_sauter_profile114)_ 1.05599421330648140e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_115______________ (j_plasma_bootstrap_sauter_profile115)_ 1.06203837685421764e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_116______________ (j_plasma_bootstrap_sauter_profile116)_ 1.06807503751617813e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_117______________ (j_plasma_bootstrap_sauter_profile117)_ 1.07410433040701799e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_118______________ (j_plasma_bootstrap_sauter_profile118)_ 1.08012638363936101e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_119______________ (j_plasma_bootstrap_sauter_profile119)_ 1.08614131845167765e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_120______________ (j_plasma_bootstrap_sauter_profile120)_ 1.09214924931705042e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_121______________ (j_plasma_bootstrap_sauter_profile121)_ 1.09815028405549499e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_122______________ (j_plasma_bootstrap_sauter_profile122)_ 1.10414452393860964e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_123______________ (j_plasma_bootstrap_sauter_profile123)_ 1.11013206379512572e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_124______________ (j_plasma_bootstrap_sauter_profile124)_ 1.11611299210591198e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_125______________ (j_plasma_bootstrap_sauter_profile125)_ 1.12208739109998904e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_126______________ (j_plasma_bootstrap_sauter_profile126)_ 1.12805533684965849e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_127______________ (j_plasma_bootstrap_sauter_profile127)_ 1.13401689935431423e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_128______________ (j_plasma_bootstrap_sauter_profile128)_ 1.13997214262985130e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_129______________ (j_plasma_bootstrap_sauter_profile129)_ 1.14592112479020274e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_130______________ (j_plasma_bootstrap_sauter_profile130)_ 1.15186389812623078e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_131______________ (j_plasma_bootstrap_sauter_profile131)_ 1.15780050918406894e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_132______________ (j_plasma_bootstrap_sauter_profile132)_ 1.16373099883996823e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_133______________ (j_plasma_bootstrap_sauter_profile133)_ 1.16965540237312569e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_134______________ (j_plasma_bootstrap_sauter_profile134)_ 1.17557374953416438e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_135______________ (j_plasma_bootstrap_sauter_profile135)_ 1.18148606461304720e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_136______________ (j_plasma_bootstrap_sauter_profile136)_ 1.18739236650665538e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_137______________ (j_plasma_bootstrap_sauter_profile137)_ 1.19329266877872433e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_138______________ (j_plasma_bootstrap_sauter_profile138)_ 1.19918697972581824e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_139______________ (j_plasma_bootstrap_sauter_profile139)_ 1.20507530243246278e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_140______________ (j_plasma_bootstrap_sauter_profile140)_ 1.21095763483194562e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_141______________ (j_plasma_bootstrap_sauter_profile141)_ 1.21683396976130243e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_142______________ (j_plasma_bootstrap_sauter_profile142)_ 1.22270429501529317e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_143______________ (j_plasma_bootstrap_sauter_profile143)_ 1.22856859340142153e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_144______________ (j_plasma_bootstrap_sauter_profile144)_ 1.23442684278683693e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_145______________ (j_plasma_bootstrap_sauter_profile145)_ 1.24027901615127819e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_146______________ (j_plasma_bootstrap_sauter_profile146)_ 1.24612508163585779e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_147______________ (j_plasma_bootstrap_sauter_profile147)_ 1.25196500258739063e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_148______________ (j_plasma_bootstrap_sauter_profile148)_ 1.25779873760539427e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_149______________ (j_plasma_bootstrap_sauter_profile149)_ 1.26362624058584843e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_150______________ (j_plasma_bootstrap_sauter_profile150)_ 1.26944746076674390e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_151______________ (j_plasma_bootstrap_sauter_profile151)_ 1.27526234276434756e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_152______________ (j_plasma_bootstrap_sauter_profile152)_ 1.28107082662021174e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_153______________ (j_plasma_bootstrap_sauter_profile153)_ 1.28687284783675772e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_154______________ (j_plasma_bootstrap_sauter_profile154)_ 1.29266833741761322e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_155______________ (j_plasma_bootstrap_sauter_profile155)_ 1.29845722190410699e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_156______________ (j_plasma_bootstrap_sauter_profile156)_ 1.30423942341401053e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_157______________ (j_plasma_bootstrap_sauter_profile157)_ 1.31001485967287910e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_158______________ (j_plasma_bootstrap_sauter_profile158)_ 1.31578344405438285e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_159______________ (j_plasma_bootstrap_sauter_profile159)_ 1.32154508561048307e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_160______________ (j_plasma_bootstrap_sauter_profile160)_ 1.32729968910487398e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_161______________ (j_plasma_bootstrap_sauter_profile161)_ 1.33304715504599648e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_162______________ (j_plasma_bootstrap_sauter_profile162)_ 1.33878737971914699e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_163______________ (j_plasma_bootstrap_sauter_profile163)_ 1.34452025521510164e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_164______________ (j_plasma_bootstrap_sauter_profile164)_ 1.35024566946111299e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_165______________ (j_plasma_bootstrap_sauter_profile165)_ 1.35596350625256717e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_166______________ (j_plasma_bootstrap_sauter_profile166)_ 1.36167364527675556e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_167______________ (j_plasma_bootstrap_sauter_profile167)_ 1.36737596214530990e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_168______________ (j_plasma_bootstrap_sauter_profile168)_ 1.37307032841774693e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_169______________ (j_plasma_bootstrap_sauter_profile169)_ 1.37875661163191224e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_170______________ (j_plasma_bootstrap_sauter_profile170)_ 1.38443467532766517e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_171______________ (j_plasma_bootstrap_sauter_profile171)_ 1.39010437907296524e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_172______________ (j_plasma_bootstrap_sauter_profile172)_ 1.39576557848842465e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_173______________ (j_plasma_bootstrap_sauter_profile173)_ 1.40141812527339149e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_174______________ (j_plasma_bootstrap_sauter_profile174)_ 1.40706186722841288e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_175______________ (j_plasma_bootstrap_sauter_profile175)_ 1.41269664827897650e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_176______________ (j_plasma_bootstrap_sauter_profile176)_ 1.41832230849935440e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_177______________ (j_plasma_bootstrap_sauter_profile177)_ 1.42393868413461256e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_178______________ (j_plasma_bootstrap_sauter_profile178)_ 1.42954560762173234e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_179______________ (j_plasma_bootstrap_sauter_profile179)_ 1.43514290761282522e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_180______________ (j_plasma_bootstrap_sauter_profile180)_ 1.44073040899710264e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_181______________ (j_plasma_bootstrap_sauter_profile181)_ 1.44630793291834474e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_182______________ (j_plasma_bootstrap_sauter_profile182)_ 1.45187529680001317e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_183______________ (j_plasma_bootstrap_sauter_profile183)_ 1.45743231436056580e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_184______________ (j_plasma_bootstrap_sauter_profile184)_ 1.46297879563747440e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_185______________ (j_plasma_bootstrap_sauter_profile185)_ 1.46851454700439645e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_186______________ (j_plasma_bootstrap_sauter_profile186)_ 1.47403937119071692e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_187______________ (j_plasma_bootstrap_sauter_profile187)_ 1.47955306729937060e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_188______________ (j_plasma_bootstrap_sauter_profile188)_ 1.48505543082815479e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_189______________ (j_plasma_bootstrap_sauter_profile189)_ 1.49054625368521694e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_190______________ (j_plasma_bootstrap_sauter_profile190)_ 1.49602532420701202e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_191______________ (j_plasma_bootstrap_sauter_profile191)_ 1.50149242717672896e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_192______________ (j_plasma_bootstrap_sauter_profile192)_ 1.50694734384356125e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_193______________ (j_plasma_bootstrap_sauter_profile193)_ 1.51238985193520726e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_194______________ (j_plasma_bootstrap_sauter_profile194)_ 1.51781972567859862e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_195______________ (j_plasma_bootstrap_sauter_profile195)_ 1.52323673581386771e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_196______________ (j_plasma_bootstrap_sauter_profile196)_ 1.52864064961406431e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_197______________ (j_plasma_bootstrap_sauter_profile197)_ 1.53403123089717614e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_198______________ (j_plasma_bootstrap_sauter_profile198)_ 1.53940824004392460e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_199______________ (j_plasma_bootstrap_sauter_profile199)_ 1.54477143401428009e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_200______________ (j_plasma_bootstrap_sauter_profile200)_ 1.55012056636221561e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_201______________ (j_plasma_bootstrap_sauter_profile201)_ 1.55545538724970102e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_202______________ (j_plasma_bootstrap_sauter_profile202)_ 1.56077564346334839e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_203______________ (j_plasma_bootstrap_sauter_profile203)_ 1.56608107842917991e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_204______________ (j_plasma_bootstrap_sauter_profile204)_ 1.57137143222620798e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_205______________ (j_plasma_bootstrap_sauter_profile205)_ 1.57664644160184427e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_206______________ (j_plasma_bootstrap_sauter_profile206)_ 1.58190583998641581e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_207______________ (j_plasma_bootstrap_sauter_profile207)_ 1.58714935750750592e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_208______________ (j_plasma_bootstrap_sauter_profile208)_ 1.59237672100149706e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_209______________ (j_plasma_bootstrap_sauter_profile209)_ 1.59758765403150697e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_210______________ (j_plasma_bootstrap_sauter_profile210)_ 1.60278187689709303e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_211______________ (j_plasma_bootstrap_sauter_profile211)_ 1.60795910665157222e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_212______________ (j_plasma_bootstrap_sauter_profile212)_ 1.61311905711262632e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_213______________ (j_plasma_bootstrap_sauter_profile213)_ 1.61826143887588318e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_214______________ (j_plasma_bootstrap_sauter_profile214)_ 1.62338595932971890e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_215______________ (j_plasma_bootstrap_sauter_profile215)_ 1.62849232266754319e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_216______________ (j_plasma_bootstrap_sauter_profile216)_ 1.63358022989885241e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_217______________ (j_plasma_bootstrap_sauter_profile217)_ 1.63864937886459025e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_218______________ (j_plasma_bootstrap_sauter_profile218)_ 1.64369946424953319e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_219______________ (j_plasma_bootstrap_sauter_profile219)_ 1.64873017759273149e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_220______________ (j_plasma_bootstrap_sauter_profile220)_ 1.65374120730173920e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_221______________ (j_plasma_bootstrap_sauter_profile221)_ 1.65873223866445245e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_222______________ (j_plasma_bootstrap_sauter_profile222)_ 1.66370295386204438e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_223______________ (j_plasma_bootstrap_sauter_profile223)_ 1.66865303197867994e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_224______________ (j_plasma_bootstrap_sauter_profile224)_ 1.67358214901678060e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_225______________ (j_plasma_bootstrap_sauter_profile225)_ 1.67848997790616530e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_226______________ (j_plasma_bootstrap_sauter_profile226)_ 1.68337618851762672e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_227______________ (j_plasma_bootstrap_sauter_profile227)_ 1.68824044767299347e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_228______________ (j_plasma_bootstrap_sauter_profile228)_ 1.69308241915907129e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_229______________ (j_plasma_bootstrap_sauter_profile229)_ 1.69790176373590162e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_230______________ (j_plasma_bootstrap_sauter_profile230)_ 1.70269813915243460e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_231______________ (j_plasma_bootstrap_sauter_profile231)_ 1.70747120015251741e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_232______________ (j_plasma_bootstrap_sauter_profile232)_ 1.71222059849081503e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_233______________ (j_plasma_bootstrap_sauter_profile233)_ 1.71694598294095340e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_234______________ (j_plasma_bootstrap_sauter_profile234)_ 1.72164699930886913e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_235______________ (j_plasma_bootstrap_sauter_profile235)_ 1.72632329044146376e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_236______________ (j_plasma_bootstrap_sauter_profile236)_ 1.73097449623834196e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_237______________ (j_plasma_bootstrap_sauter_profile237)_ 1.73560025366371410e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_238______________ (j_plasma_bootstrap_sauter_profile238)_ 1.74020019675537391e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_239______________ (j_plasma_bootstrap_sauter_profile239)_ 1.74477395663514180e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_240______________ (j_plasma_bootstrap_sauter_profile240)_ 1.74932116152164439e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_241______________ (j_plasma_bootstrap_sauter_profile241)_ 1.75384143673792132e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_242______________ (j_plasma_bootstrap_sauter_profile242)_ 1.75833440472365357e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_243______________ (j_plasma_bootstrap_sauter_profile243)_ 1.76279968504380056e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_244______________ (j_plasma_bootstrap_sauter_profile244)_ 1.76723689439995389e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_245______________ (j_plasma_bootstrap_sauter_profile245)_ 1.77164564664031612e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_246______________ (j_plasma_bootstrap_sauter_profile246)_ 1.77602555276841274e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_247______________ (j_plasma_bootstrap_sauter_profile247)_ 1.78037622095425148e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_248______________ (j_plasma_bootstrap_sauter_profile248)_ 1.78469725654200243e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_249______________ (j_plasma_bootstrap_sauter_profile249)_ 1.78898826206292259e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_250______________ (j_plasma_bootstrap_sauter_profile250)_ 1.79324883724106767e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_251______________ (j_plasma_bootstrap_sauter_profile251)_ 1.79747857900557225e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_252______________ (j_plasma_bootstrap_sauter_profile252)_ 1.80167708149832062e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_253______________ (j_plasma_bootstrap_sauter_profile253)_ 1.80584393608337676e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_254______________ (j_plasma_bootstrap_sauter_profile254)_ 1.80997873135636823e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_255______________ (j_plasma_bootstrap_sauter_profile255)_ 1.81408105315290770e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_256______________ (j_plasma_bootstrap_sauter_profile256)_ 1.81815048455803597e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_257______________ (j_plasma_bootstrap_sauter_profile257)_ 1.82218660591344611e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_258______________ (j_plasma_bootstrap_sauter_profile258)_ 1.82618899482795503e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_259______________ (j_plasma_bootstrap_sauter_profile259)_ 1.83015722618435335e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_260______________ (j_plasma_bootstrap_sauter_profile260)_ 1.83409087214816682e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_261______________ (j_plasma_bootstrap_sauter_profile261)_ 1.83798950217548467e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_262______________ (j_plasma_bootstrap_sauter_profile262)_ 1.84185268302124110e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_263______________ (j_plasma_bootstrap_sauter_profile263)_ 1.84567997874610301e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_264______________ (j_plasma_bootstrap_sauter_profile264)_ 1.84947095072658441e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_265______________ (j_plasma_bootstrap_sauter_profile265)_ 1.85322515765810094e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_266______________ (j_plasma_bootstrap_sauter_profile266)_ 1.85694215556593001e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_267______________ (j_plasma_bootstrap_sauter_profile267)_ 1.86062149781067448e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_268______________ (j_plasma_bootstrap_sauter_profile268)_ 1.86426273509624822e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_269______________ (j_plasma_bootstrap_sauter_profile269)_ 1.86786541547449364e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_270______________ (j_plasma_bootstrap_sauter_profile270)_ 1.87142908435389807e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_271______________ (j_plasma_bootstrap_sauter_profile271)_ 1.87495328450329078e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_272______________ (j_plasma_bootstrap_sauter_profile272)_ 1.87843755606077350e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_273______________ (j_plasma_bootstrap_sauter_profile273)_ 1.88188143653730658e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_274______________ (j_plasma_bootstrap_sauter_profile274)_ 1.88528446082312206e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_275______________ (j_plasma_bootstrap_sauter_profile275)_ 1.88864616119256883e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_276______________ (j_plasma_bootstrap_sauter_profile276)_ 1.89196606730925967e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_277______________ (j_plasma_bootstrap_sauter_profile277)_ 1.89524370623088325e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_278______________ (j_plasma_bootstrap_sauter_profile278)_ 1.89847860241367365e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_279______________ (j_plasma_bootstrap_sauter_profile279)_ 1.90167027771676425e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_280______________ (j_plasma_bootstrap_sauter_profile280)_ 1.90481825140462490e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_281______________ (j_plasma_bootstrap_sauter_profile281)_ 1.90792204015276016e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_282______________ (j_plasma_bootstrap_sauter_profile282)_ 1.91098115804879548e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_283______________ (j_plasma_bootstrap_sauter_profile283)_ 1.91399511659678305e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_284______________ (j_plasma_bootstrap_sauter_profile284)_ 1.91696342471843789e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_285______________ (j_plasma_bootstrap_sauter_profile285)_ 1.91988558875594230e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_286______________ (j_plasma_bootstrap_sauter_profile286)_ 1.92276111247362191e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_287______________ (j_plasma_bootstrap_sauter_profile287)_ 1.92558949705832143e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_288______________ (j_plasma_bootstrap_sauter_profile288)_ 1.92837024112116982e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_289______________ (j_plasma_bootstrap_sauter_profile289)_ 1.93110284069673769e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_290______________ (j_plasma_bootstrap_sauter_profile290)_ 1.93378678924430336e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_291______________ (j_plasma_bootstrap_sauter_profile291)_ 1.93642157764621399e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_292______________ (j_plasma_bootstrap_sauter_profile292)_ 1.93900669420658494e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_293______________ (j_plasma_bootstrap_sauter_profile293)_ 1.94154162465033936e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_294______________ (j_plasma_bootstrap_sauter_profile294)_ 1.94402585211998143e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_295______________ (j_plasma_bootstrap_sauter_profile295)_ 1.94645885717359430e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_296______________ (j_plasma_bootstrap_sauter_profile296)_ 1.94884011778065964e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_297______________ (j_plasma_bootstrap_sauter_profile297)_ 1.95116910931814316e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_298______________ (j_plasma_bootstrap_sauter_profile298)_ 1.95344530456615641e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_299______________ (j_plasma_bootstrap_sauter_profile299)_ 1.95566817370130681e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_300______________ (j_plasma_bootstrap_sauter_profile300)_ 1.95783718429163448e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_301______________ (j_plasma_bootstrap_sauter_profile301)_ 1.95995180128874053e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_302______________ (j_plasma_bootstrap_sauter_profile302)_ 1.96201148702029896e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_303______________ (j_plasma_bootstrap_sauter_profile303)_ 1.96401570118170173e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_304______________ (j_plasma_bootstrap_sauter_profile304)_ 1.96596390082608646e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_305______________ (j_plasma_bootstrap_sauter_profile305)_ 1.96785554035398382e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_306______________ (j_plasma_bootstrap_sauter_profile306)_ 1.96969007150197082e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_307______________ (j_plasma_bootstrap_sauter_profile307)_ 1.97146694333081396e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_308______________ (j_plasma_bootstrap_sauter_profile308)_ 1.97318560221117019e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_309______________ (j_plasma_bootstrap_sauter_profile309)_ 1.97484549180911301e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_310______________ (j_plasma_bootstrap_sauter_profile310)_ 1.97644605307246704e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_311______________ (j_plasma_bootstrap_sauter_profile311)_ 1.97798672421147872e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_312______________ (j_plasma_bootstrap_sauter_profile312)_ 1.97946694068159792e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_313______________ (j_plasma_bootstrap_sauter_profile313)_ 1.98088613516500511e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_314______________ (j_plasma_bootstrap_sauter_profile314)_ 1.98224373754997534e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_315______________ (j_plasma_bootstrap_sauter_profile315)_ 1.98353917490706808e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_316______________ (j_plasma_bootstrap_sauter_profile316)_ 1.98477187146752811e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_317______________ (j_plasma_bootstrap_sauter_profile317)_ 1.98594124859741336e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_318______________ (j_plasma_bootstrap_sauter_profile318)_ 1.98704672477137821e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_319______________ (j_plasma_bootstrap_sauter_profile319)_ 1.98808771554359584e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_320______________ (j_plasma_bootstrap_sauter_profile320)_ 1.98906363351852400e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_321______________ (j_plasma_bootstrap_sauter_profile321)_ 1.98997388831827004e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_322______________ (j_plasma_bootstrap_sauter_profile322)_ 1.99081788654966396e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_323______________ (j_plasma_bootstrap_sauter_profile323)_ 1.99159503176762752e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_324______________ (j_plasma_bootstrap_sauter_profile324)_ 1.99230472443737643e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_325______________ (j_plasma_bootstrap_sauter_profile325)_ 1.99294636189498822e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_326______________ (j_plasma_bootstrap_sauter_profile326)_ 1.99351933830396069e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_327______________ (j_plasma_bootstrap_sauter_profile327)_ 1.99402304461112828e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_328______________ (j_plasma_bootstrap_sauter_profile328)_ 1.99445686849909340e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_329______________ (j_plasma_bootstrap_sauter_profile329)_ 1.99482019433691254e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_330______________ (j_plasma_bootstrap_sauter_profile330)_ 1.99511240312594018e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_331______________ (j_plasma_bootstrap_sauter_profile331)_ 1.99533287244549836e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_332______________ (j_plasma_bootstrap_sauter_profile332)_ 1.99548097639406886e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_333______________ (j_plasma_bootstrap_sauter_profile333)_ 1.99555608552705875e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_334______________ (j_plasma_bootstrap_sauter_profile334)_ 1.99555756679192738e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_335______________ (j_plasma_bootstrap_sauter_profile335)_ 1.99548478345990763e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_336______________ (j_plasma_bootstrap_sauter_profile336)_ 1.99533709505292791e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_337______________ (j_plasma_bootstrap_sauter_profile337)_ 1.99511385726895503e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_338______________ (j_plasma_bootstrap_sauter_profile338)_ 1.99481442190082482e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_339______________ (j_plasma_bootstrap_sauter_profile339)_ 1.99443813675180834e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_340______________ (j_plasma_bootstrap_sauter_profile340)_ 1.99398434554784559e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_341______________ (j_plasma_bootstrap_sauter_profile341)_ 1.99345238784384157e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_342______________ (j_plasma_bootstrap_sauter_profile342)_ 1.99284159892560914e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_343______________ (j_plasma_bootstrap_sauter_profile343)_ 1.99215130970563070e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_344______________ (j_plasma_bootstrap_sauter_profile344)_ 1.99138084661659406e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_345______________ (j_plasma_bootstrap_sauter_profile345)_ 1.99052953149474517e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_346______________ (j_plasma_bootstrap_sauter_profile346)_ 1.98959668146141426e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_347______________ (j_plasma_bootstrap_sauter_profile347)_ 1.98858160879583826e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_348______________ (j_plasma_bootstrap_sauter_profile348)_ 1.98748362080226449e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_349______________ (j_plasma_bootstrap_sauter_profile349)_ 1.98630201967059664e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_350______________ (j_plasma_bootstrap_sauter_profile350)_ 1.98503610232926003e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_351______________ (j_plasma_bootstrap_sauter_profile351)_ 1.98368516029046470e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_352______________ (j_plasma_bootstrap_sauter_profile352)_ 1.98224847948722803e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_353______________ (j_plasma_bootstrap_sauter_profile353)_ 1.98072534010299190e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_354______________ (j_plasma_bootstrap_sauter_profile354)_ 1.97911501639177382e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_355______________ (j_plasma_bootstrap_sauter_profile355)_ 1.97741677648796584e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_356______________ (j_plasma_bootstrap_sauter_profile356)_ 1.97562988220817788e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_357______________ (j_plasma_bootstrap_sauter_profile357)_ 1.97375358884175890e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_358______________ (j_plasma_bootstrap_sauter_profile358)_ 1.97178714492932137e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_359______________ (j_plasma_bootstrap_sauter_profile359)_ 1.96972979203208350e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_360______________ (j_plasma_bootstrap_sauter_profile360)_ 1.96758076448649837e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_361______________ (j_plasma_bootstrap_sauter_profile361)_ 1.96533928914830612e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_362______________ (j_plasma_bootstrap_sauter_profile362)_ 1.96300458512118610e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_363______________ (j_plasma_bootstrap_sauter_profile363)_ 1.96057586347179109e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_364______________ (j_plasma_bootstrap_sauter_profile364)_ 1.95805232692967664e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_365______________ (j_plasma_bootstrap_sauter_profile365)_ 1.95543316957140720e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_366______________ (j_plasma_bootstrap_sauter_profile366)_ 1.95271757648667379e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_367______________ (j_plasma_bootstrap_sauter_profile367)_ 1.94990472342766152e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_368______________ (j_plasma_bootstrap_sauter_profile368)_ 1.94699377643888525e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_369______________ (j_plasma_bootstrap_sauter_profile369)_ 1.94398389146647474e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_370______________ (j_plasma_bootstrap_sauter_profile370)_ 1.94087421394647594e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_371______________ (j_plasma_bootstrap_sauter_profile371)_ 1.93766387837146642e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_372______________ (j_plasma_bootstrap_sauter_profile372)_ 1.93435200783098204e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_373______________ (j_plasma_bootstrap_sauter_profile373)_ 1.93093771352822223e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_374______________ (j_plasma_bootstrap_sauter_profile374)_ 1.92742009426956763e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_375______________ (j_plasma_bootstrap_sauter_profile375)_ 1.92379823592466855e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_376______________ (j_plasma_bootstrap_sauter_profile376)_ 1.92007121085646213e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_377______________ (j_plasma_bootstrap_sauter_profile377)_ 1.91623807731789071e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_378______________ (j_plasma_bootstrap_sauter_profile378)_ 1.91229787881613302e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_379______________ (j_plasma_bootstrap_sauter_profile379)_ 1.90824964343738684e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_380______________ (j_plasma_bootstrap_sauter_profile380)_ 1.90409238313415262e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_381______________ (j_plasma_bootstrap_sauter_profile381)_ 1.89982509297070268e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_382______________ (j_plasma_bootstrap_sauter_profile382)_ 1.89544675032305619e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_383______________ (j_plasma_bootstrap_sauter_profile383)_ 1.89095631403200794e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_384______________ (j_plasma_bootstrap_sauter_profile384)_ 1.88635272350547748e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_385______________ (j_plasma_bootstrap_sauter_profile385)_ 1.88163489776662347e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_386______________ (j_plasma_bootstrap_sauter_profile386)_ 1.87680173444323707e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_387______________ (j_plasma_bootstrap_sauter_profile387)_ 1.87185210869554954e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_388______________ (j_plasma_bootstrap_sauter_profile388)_ 1.86678487207801954e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_389______________ (j_plasma_bootstrap_sauter_profile389)_ 1.86159885132852069e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_390______________ (j_plasma_bootstrap_sauter_profile390)_ 1.85629284708274674e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_391______________ (j_plasma_bootstrap_sauter_profile391)_ 1.85086563250466977e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_392______________ (j_plasma_bootstrap_sauter_profile392)_ 1.84531595183048630e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_393______________ (j_plasma_bootstrap_sauter_profile393)_ 1.83964251881749165e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_394______________ (j_plasma_bootstrap_sauter_profile394)_ 1.83384401508967072e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_395______________ (j_plasma_bootstrap_sauter_profile395)_ 1.82791908837570780e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_396______________ (j_plasma_bootstrap_sauter_profile396)_ 1.82186635062678572e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_397______________ (j_plasma_bootstrap_sauter_profile397)_ 1.81568437600726116e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_398______________ (j_plasma_bootstrap_sauter_profile398)_ 1.80937169874831743e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_399______________ (j_plasma_bootstrap_sauter_profile399)_ 1.80292681085103017e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_400______________ (j_plasma_bootstrap_sauter_profile400)_ 1.79634815962980530e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_401______________ (j_plasma_bootstrap_sauter_profile401)_ 1.78963414507972047e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_402______________ (j_plasma_bootstrap_sauter_profile402)_ 1.78278311705544591e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_403______________ (j_plasma_bootstrap_sauter_profile403)_ 1.77579337224453979e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_404______________ (j_plasma_bootstrap_sauter_profile404)_ 1.76866315091684810e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_405______________ (j_plasma_bootstrap_sauter_profile405)_ 1.76139063343146234e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_406______________ (j_plasma_bootstrap_sauter_profile406)_ 1.75397393647829449e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_407______________ (j_plasma_bootstrap_sauter_profile407)_ 1.74641110903177643e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_408______________ (j_plasma_bootstrap_sauter_profile408)_ 1.73870012798877433e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_409______________ (j_plasma_bootstrap_sauter_profile409)_ 1.73083889346227836e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_410______________ (j_plasma_bootstrap_sauter_profile410)_ 1.72282522369675920e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_411______________ (j_plasma_bootstrap_sauter_profile411)_ 1.71465684957086836e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_412______________ (j_plasma_bootstrap_sauter_profile412)_ 1.70633140864537563e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_413______________ (j_plasma_bootstrap_sauter_profile413)_ 1.69784643871026288e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_414______________ (j_plasma_bootstrap_sauter_profile414)_ 1.68919937078344199e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_415______________ (j_plasma_bootstrap_sauter_profile415)_ 1.68038752150064305e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_416______________ (j_plasma_bootstrap_sauter_profile416)_ 1.67140808483486471e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_417______________ (j_plasma_bootstrap_sauter_profile417)_ 1.66225812307297339e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_418______________ (j_plasma_bootstrap_sauter_profile418)_ 1.65293455696831137e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_419______________ (j_plasma_bootstrap_sauter_profile419)_ 1.64343415497826645e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_420______________ (j_plasma_bootstrap_sauter_profile420)_ 1.63375352148247126e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_421______________ (j_plasma_bootstrap_sauter_profile421)_ 1.62388908386418509e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_422______________ (j_plasma_bootstrap_sauter_profile422)_ 1.61383707832134387e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_423______________ (j_plasma_bootstrap_sauter_profile423)_ 1.60359353425353474e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_424______________ (j_plasma_bootstrap_sauter_profile424)_ 1.59315425705039117e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_425______________ (j_plasma_bootstrap_sauter_profile425)_ 1.58251480908066529e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_426______________ (j_plasma_bootstrap_sauter_profile426)_ 1.57167048864952463e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_427______________ (j_plasma_bootstrap_sauter_profile427)_ 1.56061630666052399e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_428______________ (j_plasma_bootstrap_sauter_profile428)_ 1.54934696066920180e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_429______________ (j_plasma_bootstrap_sauter_profile429)_ 1.53785680597214261e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_430______________ (j_plasma_bootstrap_sauter_profile430)_ 1.52613982331260340e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_431______________ (j_plasma_bootstrap_sauter_profile431)_ 1.51418958271183918e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_432______________ (j_plasma_bootstrap_sauter_profile432)_ 1.50199920285175904e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_433______________ (j_plasma_bootstrap_sauter_profile433)_ 1.48956130533001531e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_434______________ (j_plasma_bootstrap_sauter_profile434)_ 1.47686796298392321e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_435______________ (j_plasma_bootstrap_sauter_profile435)_ 1.46391064132664149e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_436______________ (j_plasma_bootstrap_sauter_profile436)_ 1.45068013195236883e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_437______________ (j_plasma_bootstrap_sauter_profile437)_ 1.43716647653723601e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_438______________ (j_plasma_bootstrap_sauter_profile438)_ 1.42335887977749720e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_439______________ (j_plasma_bootstrap_sauter_profile439)_ 1.40924560924969614e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_440______________ (j_plasma_bootstrap_sauter_profile440)_ 1.39481387973112112e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_441______________ (j_plasma_bootstrap_sauter_profile441)_ 1.38004971895552648e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_442______________ (j_plasma_bootstrap_sauter_profile442)_ 1.36493781105653063e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_443______________ (j_plasma_bootstrap_sauter_profile443)_ 1.34946131302829541e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_444______________ (j_plasma_bootstrap_sauter_profile444)_ 1.33360163833573606e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_445______________ (j_plasma_bootstrap_sauter_profile445)_ 1.31733820023922541e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_446______________ (j_plasma_bootstrap_sauter_profile446)_ 1.30064810533149022e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_447______________ (j_plasma_bootstrap_sauter_profile447)_ 1.28350578502233155e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_448______________ (j_plasma_bootstrap_sauter_profile448)_ 1.26588254897897496e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_449______________ (j_plasma_bootstrap_sauter_profile449)_ 1.24774603943032445e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_450______________ (j_plasma_bootstrap_sauter_profile450)_ 1.22905955817042370e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_451______________ (j_plasma_bootstrap_sauter_profile451)_ 1.20978122814520451e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_452______________ (j_plasma_bootstrap_sauter_profile452)_ 1.18986293726505915e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_453______________ (j_plasma_bootstrap_sauter_profile453)_ 1.16924899133089813e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_454______________ (j_plasma_bootstrap_sauter_profile454)_ 1.14787437210388307e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_455______________ (j_plasma_bootstrap_sauter_profile455)_ 1.12566244961912467e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_456______________ (j_plasma_bootstrap_sauter_profile456)_ 1.10252192463849206e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_457______________ (j_plasma_bootstrap_sauter_profile457)_ 1.07834265962330319e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_458______________ (j_plasma_bootstrap_sauter_profile458)_ 1.05298986166468239e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_459______________ (j_plasma_bootstrap_sauter_profile459)_ 1.02629574490640138e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_460______________ (j_plasma_bootstrap_sauter_profile460)_ 9.98047194919484027e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_461______________ (j_plasma_bootstrap_sauter_profile461)_ 9.67966808386318153e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_462______________ (j_plasma_bootstrap_sauter_profile462)_ 9.35682354892153526e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_463______________ (j_plasma_bootstrap_sauter_profile463)_ 9.00674606993382768e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_464______________ (j_plasma_bootstrap_sauter_profile464)_ 8.62181099320568901e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_465______________ (j_plasma_bootstrap_sauter_profile465)_ 8.18998866120701714e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_466______________ (j_plasma_bootstrap_sauter_profile466)_ 7.69011780499484594e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_467______________ (j_plasma_bootstrap_sauter_profile467)_ 7.07709919789032283e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_468______________ (j_plasma_bootstrap_sauter_profile468)_ 6.17928961893871456e+04 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_469______________ (j_plasma_bootstrap_sauter_profile469)_ 3.05484217551151058e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_470______________ (j_plasma_bootstrap_sauter_profile470)_ 5.37309128126560245e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_471______________ (j_plasma_bootstrap_sauter_profile471)_ 5.25767115690207342e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_472______________ (j_plasma_bootstrap_sauter_profile472)_ 5.14179177756871912e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_473______________ (j_plasma_bootstrap_sauter_profile473)_ 5.02544049366062274e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_474______________ (j_plasma_bootstrap_sauter_profile474)_ 4.90860203057311475e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_475______________ (j_plasma_bootstrap_sauter_profile475)_ 4.79125779464053106e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_476______________ (j_plasma_bootstrap_sauter_profile476)_ 4.67338496632923663e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_477______________ (j_plasma_bootstrap_sauter_profile477)_ 4.55495530576171936e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_478______________ (j_plasma_bootstrap_sauter_profile478)_ 4.43593356564545771e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_479______________ (j_plasma_bootstrap_sauter_profile479)_ 4.31627536311755015e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_480______________ (j_plasma_bootstrap_sauter_profile480)_ 4.19592429804655840e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_481______________ (j_plasma_bootstrap_sauter_profile481)_ 4.07480801022332278e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_482______________ (j_plasma_bootstrap_sauter_profile482)_ 3.95283272464176582e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_483______________ (j_plasma_bootstrap_sauter_profile483)_ 3.82987561537642323e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_484______________ (j_plasma_bootstrap_sauter_profile484)_ 3.70577397981705144e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_485______________ (j_plasma_bootstrap_sauter_profile485)_ 3.58030968231162289e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_486______________ (j_plasma_bootstrap_sauter_profile486)_ 3.45318647521039122e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_487______________ (j_plasma_bootstrap_sauter_profile487)_ 3.32399642351045273e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_488______________ (j_plasma_bootstrap_sauter_profile488)_ 3.19216937945660786e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_489______________ (j_plasma_bootstrap_sauter_profile489)_ 3.05689563546367630e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_490______________ (j_plasma_bootstrap_sauter_profile490)_ 2.91700541682107549e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_491______________ (j_plasma_bootstrap_sauter_profile491)_ 2.77077789788838010e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_492______________ (j_plasma_bootstrap_sauter_profile492)_ 2.61563419917346997e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_493______________ (j_plasma_bootstrap_sauter_profile493)_ 2.44764141368236160e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_494______________ (j_plasma_bootstrap_sauter_profile494)_ 2.26072995517659932e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_495______________ (j_plasma_bootstrap_sauter_profile495)_ 2.04560930992909358e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_496______________ (j_plasma_bootstrap_sauter_profile496)_ 1.78923702770872653e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_497______________ (j_plasma_bootstrap_sauter_profile497)_ 1.48123047425760247e+05 OP -Sauter_et_al_bootstrap_current_density_profile_at_point_498______________ (j_plasma_bootstrap_sauter_profile498)_ 1.14009244151090199e+05 OP -Bootstrap_fraction_(Sakai_scaling)_______________________________________ (f_c_plasma_bootstrap_sakai)___ 3.73035161129384896e-01 OP -Bootstrap_fraction_(Aries_scaling)_______________________________________ (f_c_plasma_bootstrap_aries)___ 5.67946220974501870e-01 OP -Bootstrap_fraction_(Andrade_scaling)_____________________________________ (f_c_plasma_bootstrap_andrade)_ 3.59319533495350008e-01 OP -Bootstrap_fraction_(Hoang_scaling)_______________________________________ (f_c_plasma_bootstrap_hoang)___ 3.82088523520709822e-01 OP -Bootstrap_fraction_(Wong_scaling)________________________________________ (f_c_plasma_bootstrap_wong)____ 7.19056999579733458e-01 OP -Bootstrap_fraction_(GI_1_scaling)________________________________________ (bscf_gi_i)____________________ 8.17940604977133723e-01 OP -Bootstrap_fraction_(GI_2_scaling)________________________________________ (bscf_gi_ii)___________________ 9.05388950788549973e-01 OP -Bootstrap_fraction_(Sugiyama_L_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_l)_ 5.88487806614859110e-01 OP -Bootstrap_fraction_(Sugiyama_H_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_h)_ 6.06163691636279256e-01 OP -Pfirsch-Schlueter_fraction_(SCENE)_______________________________________ (f_c_plasma_pfirsch_schluter_scene)_ -3.46524163214243517e-03 OP -Bootstrap_fraction_(enforced)____________________________________________ (f_c_plasma_bootstrap.)________ 4.21875565216539794e-01 OP +Bootstrap_fraction_(ITER_IPDG89_scaling)_________________________________ (f_c_plasma_bootstrap_iter89)__ 3.88681575552250358e-01 OP +Bootstrap_fraction_(Nevins_scaling)______________________________________ (f_c_plasma_bootstrap_nevins)__ 3.96908811108281689e-01 OP +Bootstrap_fraction_(Wilson_scaling)______________________________________ (f_c_plasma_bootstrap_wilson)__ 5.18362322446408119e-01 OP +Bootstrap_fraction_(Sauter_scaling)______________________________________ (f_c_plasma_bootstrap_sauter)__ 4.22833658317523231e-01 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_0________________ (j_plasma_bootstrap_sauter_profile0)_ 2.50767124426135297e+03 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_1________________ (j_plasma_bootstrap_sauter_profile1)_ 5.86260035191923816e+03 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_2________________ (j_plasma_bootstrap_sauter_profile2)_ 8.96210191408743594e+03 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_3________________ (j_plasma_bootstrap_sauter_profile3)_ 1.17308428395833998e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_4________________ (j_plasma_bootstrap_sauter_profile4)_ 1.42060528546346377e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_5________________ (j_plasma_bootstrap_sauter_profile5)_ 1.64365655188396595e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_6________________ (j_plasma_bootstrap_sauter_profile6)_ 1.84655901615454313e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_7________________ (j_plasma_bootstrap_sauter_profile7)_ 2.03284616617574939e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_8________________ (j_plasma_bootstrap_sauter_profile8)_ 2.20534768154987723e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_9________________ (j_plasma_bootstrap_sauter_profile9)_ 2.36632191901051629e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_10_______________ (j_plasma_bootstrap_sauter_profile10)_ 2.51757681415038751e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_11_______________ (j_plasma_bootstrap_sauter_profile11)_ 2.66056799554376958e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_12_______________ (j_plasma_bootstrap_sauter_profile12)_ 2.79647542189310152e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_13_______________ (j_plasma_bootstrap_sauter_profile13)_ 2.92626249470581097e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_14_______________ (j_plasma_bootstrap_sauter_profile14)_ 3.05072154809367275e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_15_______________ (j_plasma_bootstrap_sauter_profile15)_ 3.17050893469397051e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_16_______________ (j_plasma_bootstrap_sauter_profile16)_ 3.28617220785159734e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_17_______________ (j_plasma_bootstrap_sauter_profile17)_ 3.39817129659965067e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_18_______________ (j_plasma_bootstrap_sauter_profile18)_ 3.50689509955592075e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_19_______________ (j_plasma_bootstrap_sauter_profile19)_ 3.61267456906331427e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_20_______________ (j_plasma_bootstrap_sauter_profile20)_ 3.71579309157190728e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_21_______________ (j_plasma_bootstrap_sauter_profile21)_ 3.81649477320727092e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_22_______________ (j_plasma_bootstrap_sauter_profile22)_ 3.91499109274869334e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_23_______________ (j_plasma_bootstrap_sauter_profile23)_ 4.01146627480818934e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_24_______________ (j_plasma_bootstrap_sauter_profile24)_ 4.10608165385567991e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_25_______________ (j_plasma_bootstrap_sauter_profile25)_ 4.19897923815650720e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_26_______________ (j_plasma_bootstrap_sauter_profile26)_ 4.29028463555722847e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_27_______________ (j_plasma_bootstrap_sauter_profile27)_ 4.38010946789720911e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_28_______________ (j_plasma_bootstrap_sauter_profile28)_ 4.46855337313827331e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_29_______________ (j_plasma_bootstrap_sauter_profile29)_ 4.55570567372456644e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_30_______________ (j_plasma_bootstrap_sauter_profile30)_ 4.64164677318634494e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_31_______________ (j_plasma_bootstrap_sauter_profile31)_ 4.72644933049893370e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_32_______________ (j_plasma_bootstrap_sauter_profile32)_ 4.81017925189338712e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_33_______________ (j_plasma_bootstrap_sauter_profile33)_ 4.89289653201123219e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_34_______________ (j_plasma_bootstrap_sauter_profile34)_ 4.97465597011599675e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_35_______________ (j_plasma_bootstrap_sauter_profile35)_ 5.05550778245052134e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_36_______________ (j_plasma_bootstrap_sauter_profile36)_ 5.13549812768729098e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_37_______________ (j_plasma_bootstrap_sauter_profile37)_ 5.21466955953419601e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_38_______________ (j_plasma_bootstrap_sauter_profile38)_ 5.29306141792946073e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_39_______________ (j_plasma_bootstrap_sauter_profile39)_ 5.37071016843589241e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_40_______________ (j_plasma_bootstrap_sauter_profile40)_ 5.44764969756556384e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_41_______________ (j_plasma_bootstrap_sauter_profile41)_ 5.52391157068743123e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_42_______________ (j_plasma_bootstrap_sauter_profile42)_ 5.59952525789318170e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_43_______________ (j_plasma_bootstrap_sauter_profile43)_ 5.67451833250774871e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_44_______________ (j_plasma_bootstrap_sauter_profile44)_ 5.74891664598190837e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_45_______________ (j_plasma_bootstrap_sauter_profile45)_ 5.82274448246072643e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_46_______________ (j_plasma_bootstrap_sauter_profile46)_ 5.89602469579649696e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_47_______________ (j_plasma_bootstrap_sauter_profile47)_ 5.96877883127796376e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_48_______________ (j_plasma_bootstrap_sauter_profile48)_ 6.04102723413102940e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_49_______________ (j_plasma_bootstrap_sauter_profile49)_ 6.11278914639641371e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_50_______________ (j_plasma_bootstrap_sauter_profile50)_ 6.18408279372808029e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_51_______________ (j_plasma_bootstrap_sauter_profile51)_ 6.25492546328783064e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_52_______________ (j_plasma_bootstrap_sauter_profile52)_ 6.32533357382816466e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_53_______________ (j_plasma_bootstrap_sauter_profile53)_ 6.39532273890574288e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_54_______________ (j_plasma_bootstrap_sauter_profile54)_ 6.46490782403237536e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_55_______________ (j_plasma_bootstrap_sauter_profile55)_ 6.53410299840239895e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_56_______________ (j_plasma_bootstrap_sauter_profile56)_ 6.60292178186800738e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_57_______________ (j_plasma_bootstrap_sauter_profile57)_ 6.67137708763154078e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_58_______________ (j_plasma_bootstrap_sauter_profile58)_ 6.73948126120586967e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_59_______________ (j_plasma_bootstrap_sauter_profile59)_ 6.80724611591673020e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_60_______________ (j_plasma_bootstrap_sauter_profile60)_ 6.87468296541912423e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_61_______________ (j_plasma_bootstrap_sauter_profile61)_ 6.94180265346111846e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_62_______________ (j_plasma_bootstrap_sauter_profile62)_ 7.00861558122948190e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_63_______________ (j_plasma_bootstrap_sauter_profile63)_ 7.07513173248725943e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_64_______________ (j_plasma_bootstrap_sauter_profile64)_ 7.14136069668505370e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_65_______________ (j_plasma_bootstrap_sauter_profile65)_ 7.20731169035290804e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_66_______________ (j_plasma_bootstrap_sauter_profile66)_ 7.27299357674658822e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_67_______________ (j_plasma_bootstrap_sauter_profile67)_ 7.33841488415877684e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_68_______________ (j_plasma_bootstrap_sauter_profile68)_ 7.40358382278616627e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_69_______________ (j_plasma_bootstrap_sauter_profile69)_ 7.46850830039760040e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_70_______________ (j_plasma_bootstrap_sauter_profile70)_ 7.53319593692058261e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_71_______________ (j_plasma_bootstrap_sauter_profile71)_ 7.59765407796864893e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_72_______________ (j_plasma_bootstrap_sauter_profile72)_ 7.66188980749082839e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_73_______________ (j_plasma_bootstrap_sauter_profile73)_ 7.72590995950603829e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_74_______________ (j_plasma_bootstrap_sauter_profile74)_ 7.78972112911188742e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_75_______________ (j_plasma_bootstrap_sauter_profile75)_ 7.85332968275434105e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_76_______________ (j_plasma_bootstrap_sauter_profile76)_ 7.91674176783265575e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_77_______________ (j_plasma_bootstrap_sauter_profile77)_ 7.97996332171963877e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_78_______________ (j_plasma_bootstrap_sauter_profile78)_ 8.04300008017347573e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_79_______________ (j_plasma_bootstrap_sauter_profile79)_ 8.10585758531891188e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_80_______________ (j_plasma_bootstrap_sauter_profile80)_ 8.16854119305932545e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_81_______________ (j_plasma_bootstrap_sauter_profile81)_ 8.23105608008793206e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_82_______________ (j_plasma_bootstrap_sauter_profile82)_ 8.29340725050783949e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_83_______________ (j_plasma_bootstrap_sauter_profile83)_ 8.35559954204374517e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_84_______________ (j_plasma_bootstrap_sauter_profile84)_ 8.41763763189684832e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_85_______________ (j_plasma_bootstrap_sauter_profile85)_ 8.47952604231218138e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_86_______________ (j_plasma_bootstrap_sauter_profile86)_ 8.54126914577443822e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_87_______________ (j_plasma_bootstrap_sauter_profile87)_ 8.60287116998029815e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_88_______________ (j_plasma_bootstrap_sauter_profile88)_ 8.66433620254238922e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_89_______________ (j_plasma_bootstrap_sauter_profile89)_ 8.72566819538995624e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_90_______________ (j_plasma_bootstrap_sauter_profile90)_ 8.78687096897911542e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_91_______________ (j_plasma_bootstrap_sauter_profile91)_ 8.84794821630672377e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_92_______________ (j_plasma_bootstrap_sauter_profile92)_ 8.90890350667986495e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_93_______________ (j_plasma_bootstrap_sauter_profile93)_ 8.96974028931804351e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_94_______________ (j_plasma_bootstrap_sauter_profile94)_ 9.03046189675980568e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_95_______________ (j_plasma_bootstrap_sauter_profile95)_ 9.09107154812751978e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_96_______________ (j_plasma_bootstrap_sauter_profile96)_ 9.15157235223200987e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_97_______________ (j_plasma_bootstrap_sauter_profile97)_ 9.21196731049930822e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_98_______________ (j_plasma_bootstrap_sauter_profile98)_ 9.27225931978121080e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_99_______________ (j_plasma_bootstrap_sauter_profile99)_ 9.33245117504505324e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_100______________ (j_plasma_bootstrap_sauter_profile100)_ 9.39254557194768422e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_101______________ (j_plasma_bootstrap_sauter_profile101)_ 9.45254510922747577e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_102______________ (j_plasma_bootstrap_sauter_profile102)_ 9.51245229105832987e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_103______________ (j_plasma_bootstrap_sauter_profile103)_ 9.57226952929923573e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_104______________ (j_plasma_bootstrap_sauter_profile104)_ 9.63199914557588054e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_105______________ (j_plasma_bootstrap_sauter_profile105)_ 9.69164337337140896e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_106______________ (j_plasma_bootstrap_sauter_profile106)_ 9.75120435992558196e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_107______________ (j_plasma_bootstrap_sauter_profile107)_ 9.81068416813415097e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_108______________ (j_plasma_bootstrap_sauter_profile108)_ 9.87008477832921053e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_109______________ (j_plasma_bootstrap_sauter_profile109)_ 9.92940808997697750e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_110______________ (j_plasma_bootstrap_sauter_profile110)_ 9.98865592334338435e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_111______________ (j_plasma_bootstrap_sauter_profile111)_ 1.00478300210732676e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_112______________ (j_plasma_bootstrap_sauter_profile112)_ 1.01069320496859829e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_113______________ (j_plasma_bootstrap_sauter_profile113)_ 1.01659636010370756e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_114______________ (j_plasma_bootstrap_sauter_profile114)_ 1.02249261937122836e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_115______________ (j_plasma_bootstrap_sauter_profile115)_ 1.02838212743750526e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_116______________ (j_plasma_bootstrap_sauter_profile116)_ 1.03426502190513638e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_117______________ (j_plasma_bootstrap_sauter_profile117)_ 1.04014143343800868e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_118______________ (j_plasma_bootstrap_sauter_profile118)_ 1.04601148587840900e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_119______________ (j_plasma_bootstrap_sauter_profile119)_ 1.05187529636461142e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_120______________ (j_plasma_bootstrap_sauter_profile120)_ 1.05773297544003392e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_121______________ (j_plasma_bootstrap_sauter_profile121)_ 1.06358462716016526e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_122______________ (j_plasma_bootstrap_sauter_profile122)_ 1.06943034919538884e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_123______________ (j_plasma_bootstrap_sauter_profile123)_ 1.07527023292952043e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_124______________ (j_plasma_bootstrap_sauter_profile124)_ 1.08110436355591228e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_125______________ (j_plasma_bootstrap_sauter_profile125)_ 1.08693282016917015e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_126______________ (j_plasma_bootstrap_sauter_profile126)_ 1.09275567585476791e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_127______________ (j_plasma_bootstrap_sauter_profile127)_ 1.09857299777332693e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_128______________ (j_plasma_bootstrap_sauter_profile128)_ 1.10438484724590264e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_129______________ (j_plasma_bootstrap_sauter_profile129)_ 1.11019127983055441e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_130______________ (j_plasma_bootstrap_sauter_profile130)_ 1.11599234540389021e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_131______________ (j_plasma_bootstrap_sauter_profile131)_ 1.12178808823215848e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_132______________ (j_plasma_bootstrap_sauter_profile132)_ 1.12757854704638739e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_133______________ (j_plasma_bootstrap_sauter_profile133)_ 1.13336375510972095e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_134______________ (j_plasma_bootstrap_sauter_profile134)_ 1.13914374028780425e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_135______________ (j_plasma_bootstrap_sauter_profile135)_ 1.14491852511171339e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_136______________ (j_plasma_bootstrap_sauter_profile136)_ 1.15068812684339413e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_137______________ (j_plasma_bootstrap_sauter_profile137)_ 1.15645255753595688e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_138______________ (j_plasma_bootstrap_sauter_profile138)_ 1.16221182409389803e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_139______________ (j_plasma_bootstrap_sauter_profile139)_ 1.16796592832965034e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_140______________ (j_plasma_bootstrap_sauter_profile140)_ 1.17371486702176480e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_141______________ (j_plasma_bootstrap_sauter_profile141)_ 1.17945863196506019e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_142______________ (j_plasma_bootstrap_sauter_profile142)_ 1.18519721002834573e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_143______________ (j_plasma_bootstrap_sauter_profile143)_ 1.19093058320191441e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_144______________ (j_plasma_bootstrap_sauter_profile144)_ 1.19665872864782359e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_145______________ (j_plasma_bootstrap_sauter_profile145)_ 1.20238161874772966e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_146______________ (j_plasma_bootstrap_sauter_profile146)_ 1.20809922115118912e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_147______________ (j_plasma_bootstrap_sauter_profile147)_ 1.21381149881919133e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_148______________ (j_plasma_bootstrap_sauter_profile148)_ 1.21951841006887305e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_149______________ (j_plasma_bootstrap_sauter_profile149)_ 1.22521990861635597e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_150______________ (j_plasma_bootstrap_sauter_profile150)_ 1.23091594361946947e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_151______________ (j_plasma_bootstrap_sauter_profile151)_ 1.23660645971585574e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_152______________ (j_plasma_bootstrap_sauter_profile152)_ 1.24229139706419941e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_153______________ (j_plasma_bootstrap_sauter_profile153)_ 1.24797069138404317e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_154______________ (j_plasma_bootstrap_sauter_profile154)_ 1.25364427398818050e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_155______________ (j_plasma_bootstrap_sauter_profile155)_ 1.25931207182403334e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_156______________ (j_plasma_bootstrap_sauter_profile156)_ 1.26497400750700588e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_157______________ (j_plasma_bootstrap_sauter_profile157)_ 1.27062999935623753e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_158______________ (j_plasma_bootstrap_sauter_profile158)_ 1.27627996142505697e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_159______________ (j_plasma_bootstrap_sauter_profile159)_ 1.28192380353702247e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_160______________ (j_plasma_bootstrap_sauter_profile160)_ 1.28756143131748759e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_161______________ (j_plasma_bootstrap_sauter_profile161)_ 1.29319274622305253e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_162______________ (j_plasma_bootstrap_sauter_profile162)_ 1.29881764557386050e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_163______________ (j_plasma_bootstrap_sauter_profile163)_ 1.30443602258219151e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_164______________ (j_plasma_bootstrap_sauter_profile164)_ 1.31004776638167561e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_165______________ (j_plasma_bootstrap_sauter_profile165)_ 1.31565276205718255e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_166______________ (j_plasma_bootstrap_sauter_profile166)_ 1.32125089066896529e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_167______________ (j_plasma_bootstrap_sauter_profile167)_ 1.32684202928363695e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_168______________ (j_plasma_bootstrap_sauter_profile168)_ 1.33242605099831620e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_169______________ (j_plasma_bootstrap_sauter_profile169)_ 1.33800282496715692e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_170______________ (j_plasma_bootstrap_sauter_profile170)_ 1.34357221642633231e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_171______________ (j_plasma_bootstrap_sauter_profile171)_ 1.34913408671976271e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_172______________ (j_plasma_bootstrap_sauter_profile172)_ 1.35468829332129273e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_173______________ (j_plasma_bootstrap_sauter_profile173)_ 1.36023468986107095e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_174______________ (j_plasma_bootstrap_sauter_profile174)_ 1.36577312614702940e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_175______________ (j_plasma_bootstrap_sauter_profile175)_ 1.37130344818816084e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_176______________ (j_plasma_bootstrap_sauter_profile176)_ 1.37682549821598397e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_177______________ (j_plasma_bootstrap_sauter_profile177)_ 1.38233911470841180e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_178______________ (j_plasma_bootstrap_sauter_profile178)_ 1.38784413240851631e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_179______________ (j_plasma_bootstrap_sauter_profile179)_ 1.39334038234845590e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_180______________ (j_plasma_bootstrap_sauter_profile180)_ 1.39882769186798047e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_181______________ (j_plasma_bootstrap_sauter_profile181)_ 1.40430588463504799e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_182______________ (j_plasma_bootstrap_sauter_profile182)_ 1.40977478066627460e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_183______________ (j_plasma_bootstrap_sauter_profile183)_ 1.41523419634588936e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_184______________ (j_plasma_bootstrap_sauter_profile184)_ 1.42068394444622856e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_185______________ (j_plasma_bootstrap_sauter_profile185)_ 1.42612383414453332e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_186______________ (j_plasma_bootstrap_sauter_profile186)_ 1.43155367104185687e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_187______________ (j_plasma_bootstrap_sauter_profile187)_ 1.43697325718434964e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_188______________ (j_plasma_bootstrap_sauter_profile188)_ 1.44238239107603760e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_189______________ (j_plasma_bootstrap_sauter_profile189)_ 1.44778086770052323e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_190______________ (j_plasma_bootstrap_sauter_profile190)_ 1.45316847853685933e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_191______________ (j_plasma_bootstrap_sauter_profile191)_ 1.45854501157665480e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_192______________ (j_plasma_bootstrap_sauter_profile192)_ 1.46391025134069234e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_193______________ (j_plasma_bootstrap_sauter_profile193)_ 1.46926397889581422e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_194______________ (j_plasma_bootstrap_sauter_profile194)_ 1.47460597187106352e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_195______________ (j_plasma_bootstrap_sauter_profile195)_ 1.47993600447426288e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_196______________ (j_plasma_bootstrap_sauter_profile196)_ 1.48525384750701138e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_197______________ (j_plasma_bootstrap_sauter_profile197)_ 1.49055926838096435e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_198______________ (j_plasma_bootstrap_sauter_profile198)_ 1.49585203113254218e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_199______________ (j_plasma_bootstrap_sauter_profile199)_ 1.50113189643961116e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_200______________ (j_plasma_bootstrap_sauter_profile200)_ 1.50639862163430924e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_201______________ (j_plasma_bootstrap_sauter_profile201)_ 1.51165196072019869e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_202______________ (j_plasma_bootstrap_sauter_profile202)_ 1.51689166438464366e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_203______________ (j_plasma_bootstrap_sauter_profile203)_ 1.52211748001544096e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_204______________ (j_plasma_bootstrap_sauter_profile204)_ 1.52732915171255561e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_205______________ (j_plasma_bootstrap_sauter_profile205)_ 1.53252642030536663e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_206______________ (j_plasma_bootstrap_sauter_profile206)_ 1.53770902336422965e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_207______________ (j_plasma_bootstrap_sauter_profile207)_ 1.54287669521425734e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_208______________ (j_plasma_bootstrap_sauter_profile208)_ 1.54802916694975342e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_209______________ (j_plasma_bootstrap_sauter_profile209)_ 1.55316616644938011e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_210______________ (j_plasma_bootstrap_sauter_profile210)_ 1.55828741838570160e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_211______________ (j_plasma_bootstrap_sauter_profile211)_ 1.56339264424049325e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_212______________ (j_plasma_bootstrap_sauter_profile212)_ 1.56848156231817353e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_213______________ (j_plasma_bootstrap_sauter_profile213)_ 1.57355388775835105e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_214______________ (j_plasma_bootstrap_sauter_profile214)_ 1.57860933254825533e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_215______________ (j_plasma_bootstrap_sauter_profile215)_ 1.58364760553524829e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_216______________ (j_plasma_bootstrap_sauter_profile216)_ 1.58866841244007373e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_217______________ (j_plasma_bootstrap_sauter_profile217)_ 1.59367145586921863e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_218______________ (j_plasma_bootstrap_sauter_profile218)_ 1.59865643532666320e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_219______________ (j_plasma_bootstrap_sauter_profile219)_ 1.60362304722572444e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_220______________ (j_plasma_bootstrap_sauter_profile220)_ 1.60857098490254430e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_221______________ (j_plasma_bootstrap_sauter_profile221)_ 1.61349993862851523e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_222______________ (j_plasma_bootstrap_sauter_profile222)_ 1.61840959561729862e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_223______________ (j_plasma_bootstrap_sauter_profile223)_ 1.62329964004393085e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_224______________ (j_plasma_bootstrap_sauter_profile224)_ 1.62816975305146800e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_225______________ (j_plasma_bootstrap_sauter_profile225)_ 1.63301961276372604e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_226______________ (j_plasma_bootstrap_sauter_profile226)_ 1.63784889429712348e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_227______________ (j_plasma_bootstrap_sauter_profile227)_ 1.64265726977127575e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_228______________ (j_plasma_bootstrap_sauter_profile228)_ 1.64744440832192166e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_229______________ (j_plasma_bootstrap_sauter_profile229)_ 1.65220997611115919e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_230______________ (j_plasma_bootstrap_sauter_profile230)_ 1.65695363633723697e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_231______________ (j_plasma_bootstrap_sauter_profile231)_ 1.66167504924741312e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_232______________ (j_plasma_bootstrap_sauter_profile232)_ 1.66637387214858696e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_233______________ (j_plasma_bootstrap_sauter_profile233)_ 1.67104975941817247e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_234______________ (j_plasma_bootstrap_sauter_profile234)_ 1.67570236251309369e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_235______________ (j_plasma_bootstrap_sauter_profile235)_ 1.68033132998268498e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_236______________ (j_plasma_bootstrap_sauter_profile236)_ 1.68493630747857416e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_237______________ (j_plasma_bootstrap_sauter_profile237)_ 1.68951693776485190e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_238______________ (j_plasma_bootstrap_sauter_profile238)_ 1.69407286072808201e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_239______________ (j_plasma_bootstrap_sauter_profile239)_ 1.69860371338871948e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_240______________ (j_plasma_bootstrap_sauter_profile240)_ 1.70310912991091667e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_241______________ (j_plasma_bootstrap_sauter_profile241)_ 1.70758874161107786e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_242______________ (j_plasma_bootstrap_sauter_profile242)_ 1.71204217697042943e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_243______________ (j_plasma_bootstrap_sauter_profile243)_ 1.71646906164380925e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_244______________ (j_plasma_bootstrap_sauter_profile244)_ 1.72086901846944558e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_245______________ (j_plasma_bootstrap_sauter_profile245)_ 1.72524166747737792e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_246______________ (j_plasma_bootstrap_sauter_profile246)_ 1.72958662590237975e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_247______________ (j_plasma_bootstrap_sauter_profile247)_ 1.73390350819069630e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_248______________ (j_plasma_bootstrap_sauter_profile248)_ 1.73819192600981420e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_249______________ (j_plasma_bootstrap_sauter_profile249)_ 1.74245148825934506e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_250______________ (j_plasma_bootstrap_sauter_profile250)_ 1.74668180107877764e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_251______________ (j_plasma_bootstrap_sauter_profile251)_ 1.75088246785710449e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_252______________ (j_plasma_bootstrap_sauter_profile252)_ 1.75505308924247947e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_253______________ (j_plasma_bootstrap_sauter_profile253)_ 1.75919326314973441e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_254______________ (j_plasma_bootstrap_sauter_profile254)_ 1.76330258477022260e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_255______________ (j_plasma_bootstrap_sauter_profile255)_ 1.76738064658099669e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_256______________ (j_plasma_bootstrap_sauter_profile256)_ 1.77142703835129127e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_257______________ (j_plasma_bootstrap_sauter_profile257)_ 1.77544134715305991e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_258______________ (j_plasma_bootstrap_sauter_profile258)_ 1.77942315736827353e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_259______________ (j_plasma_bootstrap_sauter_profile259)_ 1.78337205069747375e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_260______________ (j_plasma_bootstrap_sauter_profile260)_ 1.78728760616773827e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_261______________ (j_plasma_bootstrap_sauter_profile261)_ 1.79116940013954591e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_262______________ (j_plasma_bootstrap_sauter_profile262)_ 1.79501700631578162e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_263______________ (j_plasma_bootstrap_sauter_profile263)_ 1.79882999574962887e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_264______________ (j_plasma_bootstrap_sauter_profile264)_ 1.80260793685021083e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_265______________ (j_plasma_bootstrap_sauter_profile265)_ 1.80635039539128426e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_266______________ (j_plasma_bootstrap_sauter_profile266)_ 1.81005693451723258e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_267______________ (j_plasma_bootstrap_sauter_profile267)_ 1.81372711475145567e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_268______________ (j_plasma_bootstrap_sauter_profile268)_ 1.81736049400121876e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_269______________ (j_plasma_bootstrap_sauter_profile269)_ 1.82095662756538775e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_270______________ (j_plasma_bootstrap_sauter_profile270)_ 1.82451506814069959e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_271______________ (j_plasma_bootstrap_sauter_profile271)_ 1.82803536582685920e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_272______________ (j_plasma_bootstrap_sauter_profile272)_ 1.83151706813332799e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_273______________ (j_plasma_bootstrap_sauter_profile273)_ 1.83495971998448862e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_274______________ (j_plasma_bootstrap_sauter_profile274)_ 1.83836286372550268e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_275______________ (j_plasma_bootstrap_sauter_profile275)_ 1.84172603912616818e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_276______________ (j_plasma_bootstrap_sauter_profile276)_ 1.84504878338740411e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_277______________ (j_plasma_bootstrap_sauter_profile277)_ 1.84833063114549324e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_278______________ (j_plasma_bootstrap_sauter_profile278)_ 1.85157111447456758e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_279______________ (j_plasma_bootstrap_sauter_profile279)_ 1.85476976289346843e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_280______________ (j_plasma_bootstrap_sauter_profile280)_ 1.85792610336699145e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_281______________ (j_plasma_bootstrap_sauter_profile281)_ 1.86103966031112068e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_282______________ (j_plasma_bootstrap_sauter_profile282)_ 1.86410995559429226e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_283______________ (j_plasma_bootstrap_sauter_profile283)_ 1.86713650854208099e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_284______________ (j_plasma_bootstrap_sauter_profile284)_ 1.87011883593726059e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_285______________ (j_plasma_bootstrap_sauter_profile285)_ 1.87305645202399639e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_286______________ (j_plasma_bootstrap_sauter_profile286)_ 1.87594886850791750e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_287______________ (j_plasma_bootstrap_sauter_profile287)_ 1.87879559455775394e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_288______________ (j_plasma_bootstrap_sauter_profile288)_ 1.88159613680578361e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_289______________ (j_plasma_bootstrap_sauter_profile289)_ 1.88434999934851803e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_290______________ (j_plasma_bootstrap_sauter_profile290)_ 1.88705668374596513e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_291______________ (j_plasma_bootstrap_sauter_profile291)_ 1.88971568902153987e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_292______________ (j_plasma_bootstrap_sauter_profile292)_ 1.89232651166018710e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_293______________ (j_plasma_bootstrap_sauter_profile293)_ 1.89488864560709044e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_294______________ (j_plasma_bootstrap_sauter_profile294)_ 1.89740158226529427e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_295______________ (j_plasma_bootstrap_sauter_profile295)_ 1.89986481049249036e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_296______________ (j_plasma_bootstrap_sauter_profile296)_ 1.90227781659814384e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_297______________ (j_plasma_bootstrap_sauter_profile297)_ 1.90464008433843672e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_298______________ (j_plasma_bootstrap_sauter_profile298)_ 1.90695109491252078e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_299______________ (j_plasma_bootstrap_sauter_profile299)_ 1.90921032695644040e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_300______________ (j_plasma_bootstrap_sauter_profile300)_ 1.91141725653699250e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_301______________ (j_plasma_bootstrap_sauter_profile301)_ 1.91357135714455886e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_302______________ (j_plasma_bootstrap_sauter_profile302)_ 1.91567209968644282e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_303______________ (j_plasma_bootstrap_sauter_profile303)_ 1.91771895247624401e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_304______________ (j_plasma_bootstrap_sauter_profile304)_ 1.91971138122689270e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_305______________ (j_plasma_bootstrap_sauter_profile305)_ 1.92164884903857543e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_306______________ (j_plasma_bootstrap_sauter_profile306)_ 1.92353081638832722e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_307______________ (j_plasma_bootstrap_sauter_profile307)_ 1.92535674111774802e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_308______________ (j_plasma_bootstrap_sauter_profile308)_ 1.92712607841895951e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_309______________ (j_plasma_bootstrap_sauter_profile309)_ 1.92883828082174383e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_310______________ (j_plasma_bootstrap_sauter_profile310)_ 1.93049279817692674e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_311______________ (j_plasma_bootstrap_sauter_profile311)_ 1.93208907764095056e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_312______________ (j_plasma_bootstrap_sauter_profile312)_ 1.93362656365640840e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_313______________ (j_plasma_bootstrap_sauter_profile313)_ 1.93510469793566765e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_314______________ (j_plasma_bootstrap_sauter_profile314)_ 1.93652291943717137e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_315______________ (j_plasma_bootstrap_sauter_profile315)_ 1.93788066434686043e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_316______________ (j_plasma_bootstrap_sauter_profile316)_ 1.93917736605302780e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_317______________ (j_plasma_bootstrap_sauter_profile317)_ 1.94041245512248017e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_318______________ (j_plasma_bootstrap_sauter_profile318)_ 1.94158535927380668e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_319______________ (j_plasma_bootstrap_sauter_profile319)_ 1.94269550335020991e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_320______________ (j_plasma_bootstrap_sauter_profile320)_ 1.94374230928940611e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_321______________ (j_plasma_bootstrap_sauter_profile321)_ 1.94472519609164970e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_322______________ (j_plasma_bootstrap_sauter_profile322)_ 1.94564357978775952e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_323______________ (j_plasma_bootstrap_sauter_profile323)_ 1.94649687340250093e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_324______________ (j_plasma_bootstrap_sauter_profile324)_ 1.94728448691879952e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_325______________ (j_plasma_bootstrap_sauter_profile325)_ 1.94800582723636762e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_326______________ (j_plasma_bootstrap_sauter_profile326)_ 1.94866029813180387e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_327______________ (j_plasma_bootstrap_sauter_profile327)_ 1.94924730021302472e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_328______________ (j_plasma_bootstrap_sauter_profile328)_ 1.94976623087334883e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_329______________ (j_plasma_bootstrap_sauter_profile329)_ 1.95021648424264451e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_330______________ (j_plasma_bootstrap_sauter_profile330)_ 1.95059745113517478e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_331______________ (j_plasma_bootstrap_sauter_profile331)_ 1.95090851899499481e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_332______________ (j_plasma_bootstrap_sauter_profile332)_ 1.95114907183750736e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_333______________ (j_plasma_bootstrap_sauter_profile333)_ 1.95131849018994137e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_334______________ (j_plasma_bootstrap_sauter_profile334)_ 1.95141615102648473e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_335______________ (j_plasma_bootstrap_sauter_profile335)_ 1.95144142770129489e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_336______________ (j_plasma_bootstrap_sauter_profile336)_ 1.95139368987717608e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_337______________ (j_plasma_bootstrap_sauter_profile337)_ 1.95127230345069984e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_338______________ (j_plasma_bootstrap_sauter_profile338)_ 1.95107663047364797e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_339______________ (j_plasma_bootstrap_sauter_profile339)_ 1.95080602907095541e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_340______________ (j_plasma_bootstrap_sauter_profile340)_ 1.95045985335111356e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_341______________ (j_plasma_bootstrap_sauter_profile341)_ 1.95003745331739658e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_342______________ (j_plasma_bootstrap_sauter_profile342)_ 1.94953817477015080e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_343______________ (j_plasma_bootstrap_sauter_profile343)_ 1.94896135920393921e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_344______________ (j_plasma_bootstrap_sauter_profile344)_ 1.94830634370335611e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_345______________ (j_plasma_bootstrap_sauter_profile345)_ 1.94757246082828904e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_346______________ (j_plasma_bootstrap_sauter_profile346)_ 1.94675903849751136e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_347______________ (j_plasma_bootstrap_sauter_profile347)_ 1.94586539986381278e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_348______________ (j_plasma_bootstrap_sauter_profile348)_ 1.94489086318302638e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_349______________ (j_plasma_bootstrap_sauter_profile349)_ 1.94383474167752487e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_350______________ (j_plasma_bootstrap_sauter_profile350)_ 1.94269634339141281e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_351______________ (j_plasma_bootstrap_sauter_profile351)_ 1.94147497103820235e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_352______________ (j_plasma_bootstrap_sauter_profile352)_ 1.94016992184142029e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_353______________ (j_plasma_bootstrap_sauter_profile353)_ 1.93878048736693570e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_354______________ (j_plasma_bootstrap_sauter_profile354)_ 1.93730595334528218e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_355______________ (j_plasma_bootstrap_sauter_profile355)_ 1.93574559948682436e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_356______________ (j_plasma_bootstrap_sauter_profile356)_ 1.93409869928505272e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_357______________ (j_plasma_bootstrap_sauter_profile357)_ 1.93236451981238090e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_358______________ (j_plasma_bootstrap_sauter_profile358)_ 1.93054232150196069e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_359______________ (j_plasma_bootstrap_sauter_profile359)_ 1.92863135792084708e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_360______________ (j_plasma_bootstrap_sauter_profile360)_ 1.92663087552971556e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_361______________ (j_plasma_bootstrap_sauter_profile361)_ 1.92454011343140941e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_362______________ (j_plasma_bootstrap_sauter_profile362)_ 1.92235830310371850e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_363______________ (j_plasma_bootstrap_sauter_profile363)_ 1.92008466812074766e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_364______________ (j_plasma_bootstrap_sauter_profile364)_ 1.91771842385790980e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_365______________ (j_plasma_bootstrap_sauter_profile365)_ 1.91525877718101372e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_366______________ (j_plasma_bootstrap_sauter_profile366)_ 1.91270492611993570e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_367______________ (j_plasma_bootstrap_sauter_profile367)_ 1.91005605952299025e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_368______________ (j_plasma_bootstrap_sauter_profile368)_ 1.90731135669481213e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_369______________ (j_plasma_bootstrap_sauter_profile369)_ 1.90446998701198958e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_370______________ (j_plasma_bootstrap_sauter_profile370)_ 1.90153110951990122e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_371______________ (j_plasma_bootstrap_sauter_profile371)_ 1.89849387250600528e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_372______________ (j_plasma_bootstrap_sauter_profile372)_ 1.89535741305084492e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_373______________ (j_plasma_bootstrap_sauter_profile373)_ 1.89212085655193107e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_374______________ (j_plasma_bootstrap_sauter_profile374)_ 1.88878331622406462e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_375______________ (j_plasma_bootstrap_sauter_profile375)_ 1.88534389256909111e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_376______________ (j_plasma_bootstrap_sauter_profile376)_ 1.88180167281654169e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_377______________ (j_plasma_bootstrap_sauter_profile377)_ 1.87815573033293011e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_378______________ (j_plasma_bootstrap_sauter_profile378)_ 1.87440512399631174e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_379______________ (j_plasma_bootstrap_sauter_profile379)_ 1.87054889753557160e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_380______________ (j_plasma_bootstrap_sauter_profile380)_ 1.86658607883083052e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_381______________ (j_plasma_bootstrap_sauter_profile381)_ 1.86251567917277192e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_382______________ (j_plasma_bootstrap_sauter_profile382)_ 1.85833669247870595e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_383______________ (j_plasma_bootstrap_sauter_profile383)_ 1.85404809446240339e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_384______________ (j_plasma_bootstrap_sauter_profile384)_ 1.84964884175291692e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_385______________ (j_plasma_bootstrap_sauter_profile385)_ 1.84513787096161541e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_386______________ (j_plasma_bootstrap_sauter_profile386)_ 1.84051409769160789e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_387______________ (j_plasma_bootstrap_sauter_profile387)_ 1.83577641548560379e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_388______________ (j_plasma_bootstrap_sauter_profile388)_ 1.83092369471153099e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_389______________ (j_plasma_bootstrap_sauter_profile389)_ 1.82595478137414553e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_390______________ (j_plasma_bootstrap_sauter_profile390)_ 1.82086849585498887e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_391______________ (j_plasma_bootstrap_sauter_profile391)_ 1.81566363157099171e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_392______________ (j_plasma_bootstrap_sauter_profile392)_ 1.81033895354664855e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_393______________ (j_plasma_bootstrap_sauter_profile393)_ 1.80489319689297758e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_394______________ (j_plasma_bootstrap_sauter_profile394)_ 1.79932506518783892e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_395______________ (j_plasma_bootstrap_sauter_profile395)_ 1.79363322874737525e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_396______________ (j_plasma_bootstrap_sauter_profile396)_ 1.78781632278293691e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_397______________ (j_plasma_bootstrap_sauter_profile397)_ 1.78187294543149765e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_398______________ (j_plasma_bootstrap_sauter_profile398)_ 1.77580165565268660e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_399______________ (j_plasma_bootstrap_sauter_profile399)_ 1.76960097097862337e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_400______________ (j_plasma_bootstrap_sauter_profile400)_ 1.76326936510652740e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_401______________ (j_plasma_bootstrap_sauter_profile401)_ 1.75680526532026910e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_402______________ (j_plasma_bootstrap_sauter_profile402)_ 1.75020704972601292e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_403______________ (j_plasma_bootstrap_sauter_profile403)_ 1.74347304428843956e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_404______________ (j_plasma_bootstrap_sauter_profile404)_ 1.73660151964500023e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_405______________ (j_plasma_bootstrap_sauter_profile405)_ 1.72959068768631201e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_406______________ (j_plasma_bootstrap_sauter_profile406)_ 1.72243869787404226e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_407______________ (j_plasma_bootstrap_sauter_profile407)_ 1.71514363327857311e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_408______________ (j_plasma_bootstrap_sauter_profile408)_ 1.70770350630695728e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_409______________ (j_plasma_bootstrap_sauter_profile409)_ 1.70011625409340078e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_410______________ (j_plasma_bootstrap_sauter_profile410)_ 1.69237973352146917e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_411______________ (j_plasma_bootstrap_sauter_profile411)_ 1.68449171584059746e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_412______________ (j_plasma_bootstrap_sauter_profile412)_ 1.67644988083784410e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_413______________ (j_plasma_bootstrap_sauter_profile413)_ 1.66825181052108383e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_414______________ (j_plasma_bootstrap_sauter_profile414)_ 1.65989498226326687e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_415______________ (j_plasma_bootstrap_sauter_profile415)_ 1.65137676135251881e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_416______________ (j_plasma_bootstrap_sauter_profile416)_ 1.64269439288658439e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_417______________ (j_plasma_bootstrap_sauter_profile417)_ 1.63384499293878063e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_418______________ (j_plasma_bootstrap_sauter_profile418)_ 1.62482553891911841e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_419______________ (j_plasma_bootstrap_sauter_profile419)_ 1.61563285904045857e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_420______________ (j_plasma_bootstrap_sauter_profile420)_ 1.60626362078571809e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_421______________ (j_plasma_bootstrap_sauter_profile421)_ 1.59671431826472282e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_422______________ (j_plasma_bootstrap_sauter_profile422)_ 1.58698125832740479e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_423______________ (j_plasma_bootstrap_sauter_profile423)_ 1.57706054528429057e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_424______________ (j_plasma_bootstrap_sauter_profile424)_ 1.56694806406231772e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_425______________ (j_plasma_bootstrap_sauter_profile425)_ 1.55663946160216990e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_426______________ (j_plasma_bootstrap_sauter_profile426)_ 1.54613012626662821e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_427______________ (j_plasma_bootstrap_sauter_profile427)_ 1.53541516500458325e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_428______________ (j_plasma_bootstrap_sauter_profile428)_ 1.52448937796303333e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_429______________ (j_plasma_bootstrap_sauter_profile429)_ 1.51334723020045232e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_430______________ (j_plasma_bootstrap_sauter_profile430)_ 1.50198282008944050e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_431______________ (j_plasma_bootstrap_sauter_profile431)_ 1.49038984393100283e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_432______________ (j_plasma_bootstrap_sauter_profile432)_ 1.47856155621709739e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_433______________ (j_plasma_bootstrap_sauter_profile433)_ 1.46649072487813421e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_434______________ (j_plasma_bootstrap_sauter_profile434)_ 1.45416958072971407e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_435______________ (j_plasma_bootstrap_sauter_profile435)_ 1.44158976018236048e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_436______________ (j_plasma_bootstrap_sauter_profile436)_ 1.42874224009717349e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_437______________ (j_plasma_bootstrap_sauter_profile437)_ 1.41561726344359457e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_438______________ (j_plasma_bootstrap_sauter_profile438)_ 1.40220425413737947e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_439______________ (j_plasma_bootstrap_sauter_profile439)_ 1.38849171908794320e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_440______________ (j_plasma_bootstrap_sauter_profile440)_ 1.37446713504867570e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_441______________ (j_plasma_bootstrap_sauter_profile441)_ 1.36011681730955257e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_442______________ (j_plasma_bootstrap_sauter_profile442)_ 1.34542576656913297e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_443______________ (j_plasma_bootstrap_sauter_profile443)_ 1.33037748941739264e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_444______________ (j_plasma_bootstrap_sauter_profile444)_ 1.31495378669067548e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_445______________ (j_plasma_bootstrap_sauter_profile445)_ 1.29913450242833977e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_446______________ (j_plasma_bootstrap_sauter_profile446)_ 1.28289722413671305e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_447______________ (j_plasma_bootstrap_sauter_profile447)_ 1.26621692236784322e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_448______________ (j_plasma_bootstrap_sauter_profile448)_ 1.24906551397143077e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_449______________ (j_plasma_bootstrap_sauter_profile449)_ 1.23141132839359518e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_450______________ (j_plasma_bootstrap_sauter_profile450)_ 1.21321844947800215e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_451______________ (j_plasma_bootstrap_sauter_profile451)_ 1.19444589549388518e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_452______________ (j_plasma_bootstrap_sauter_profile452)_ 1.17504658618504109e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_453______________ (j_plasma_bootstrap_sauter_profile453)_ 1.15496602534083271e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_454______________ (j_plasma_bootstrap_sauter_profile454)_ 1.13414059720964462e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_455______________ (j_plasma_bootstrap_sauter_profile455)_ 1.11249532918060810e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_456______________ (j_plasma_bootstrap_sauter_profile456)_ 1.08994090157079307e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_457______________ (j_plasma_bootstrap_sauter_profile457)_ 1.06636957042918933e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_458______________ (j_plasma_bootstrap_sauter_profile458)_ 1.04164947863014662e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_459______________ (j_plasma_bootstrap_sauter_profile459)_ 1.01561650203426296e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_460______________ (j_plasma_bootstrap_sauter_profile460)_ 9.88062185774563695e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_461______________ (j_plasma_bootstrap_sauter_profile461)_ 9.58715201986744942e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_462______________ (j_plasma_bootstrap_sauter_profile462)_ 9.27211485107280605e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_463______________ (j_plasma_bootstrap_sauter_profile463)_ 8.93043212861376378e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_464______________ (j_plasma_bootstrap_sauter_profile464)_ 8.55464689196261315e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_465______________ (j_plasma_bootstrap_sauter_profile465)_ 8.13299436429951311e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_466______________ (j_plasma_bootstrap_sauter_profile466)_ 7.64477972310370533e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_467______________ (j_plasma_bootstrap_sauter_profile467)_ 7.04589885315022548e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_468______________ (j_plasma_bootstrap_sauter_profile468)_ 6.16850028826366688e+04 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_469______________ (j_plasma_bootstrap_sauter_profile469)_ 3.07226357641311595e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_470______________ (j_plasma_bootstrap_sauter_profile470)_ 5.40685156481491984e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_471______________ (j_plasma_bootstrap_sauter_profile471)_ 5.29091855300626135e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_472______________ (j_plasma_bootstrap_sauter_profile472)_ 5.17452097657891514e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_473______________ (j_plasma_bootstrap_sauter_profile473)_ 5.05764653213584563e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_474______________ (j_plasma_bootstrap_sauter_profile474)_ 4.94028036860291031e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_475______________ (j_plasma_bootstrap_sauter_profile475)_ 4.82240441171358689e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_476______________ (j_plasma_bootstrap_sauter_profile476)_ 4.70399648062232300e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_477______________ (j_plasma_bootstrap_sauter_profile477)_ 4.58502912309702660e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_478______________ (j_plasma_bootstrap_sauter_profile478)_ 4.46546806614002388e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_479______________ (j_plasma_bootstrap_sauter_profile479)_ 4.34527013581948122e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_480______________ (j_plasma_bootstrap_sauter_profile480)_ 4.22438043675312889e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_481______________ (j_plasma_bootstrap_sauter_profile481)_ 4.10272848731069767e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_482______________ (j_plasma_bootstrap_sauter_profile482)_ 3.98022286417870841e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_483______________ (j_plasma_bootstrap_sauter_profile483)_ 3.85674369198245986e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_484______________ (j_plasma_bootstrap_sauter_profile484)_ 3.73213197525365802e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_485______________ (j_plasma_bootstrap_sauter_profile485)_ 3.60617423648386495e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_486______________ (j_plasma_bootstrap_sauter_profile486)_ 3.47858006930388568e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_487______________ (j_plasma_bootstrap_sauter_profile487)_ 3.34894882414759544e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_488______________ (j_plasma_bootstrap_sauter_profile488)_ 3.21671934078543389e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_489______________ (j_plasma_bootstrap_sauter_profile489)_ 3.08109277365522983e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_490______________ (j_plasma_bootstrap_sauter_profile490)_ 2.94091198367442004e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_491______________ (j_plasma_bootstrap_sauter_profile491)_ 2.79446978154233366e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_492______________ (j_plasma_bootstrap_sauter_profile492)_ 2.63919968489872641e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_493______________ (j_plasma_bootstrap_sauter_profile493)_ 2.47117480364067713e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_494______________ (j_plasma_bootstrap_sauter_profile494)_ 2.28431520245781896e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_495______________ (j_plasma_bootstrap_sauter_profile495)_ 2.06928965037532384e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_496______________ (j_plasma_bootstrap_sauter_profile496)_ 1.81299151603984617e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_497______________ (j_plasma_bootstrap_sauter_profile497)_ 1.50510536472751468e+05 OP +Sauter_et_al_bootstrap_current_density_profile_at_point_498______________ (j_plasma_bootstrap_sauter_profile498)_ 1.16357639709117240e+05 OP +Bootstrap_fraction_(Sakai_scaling)_______________________________________ (f_c_plasma_bootstrap_sakai)___ 3.80509783339279206e-01 OP +Bootstrap_fraction_(Aries_scaling)_______________________________________ (f_c_plasma_bootstrap_aries)___ 5.73771772529541813e-01 OP +Bootstrap_fraction_(Andrade_scaling)_____________________________________ (f_c_plasma_bootstrap_andrade)_ 3.61653729310356720e-01 OP +Bootstrap_fraction_(Hoang_scaling)_______________________________________ (f_c_plasma_bootstrap_hoang)___ 3.85613892353003196e-01 OP +Bootstrap_fraction_(Wong_scaling)________________________________________ (f_c_plasma_bootstrap_wong)____ 7.26432361341551425e-01 OP +Bootstrap_fraction_(GI_1_scaling)________________________________________ (bscf_gi_i)____________________ 8.21323296892831456e-01 OP +Bootstrap_fraction_(GI_2_scaling)________________________________________ (bscf_gi_ii)___________________ 9.10896977574958799e-01 OP +Bootstrap_fraction_(Sugiyama_L_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_l)_ 5.89552150611453496e-01 OP +Bootstrap_fraction_(Sugiyama_H_Mode_scaling)_____________________________ (f_c_plasma_bootstrap_sugiyama_h)_ 6.07797034438144590e-01 OP +Pfirsch-Schlueter_fraction_(SCENE)_______________________________________ (f_c_plasma_pfirsch_schluter_scene)_ -3.40314194334631658e-03 OP +Bootstrap_fraction_(enforced)____________________________________________ (f_c_plasma_bootstrap.)________ 4.22833658317523231e-01 OP Diamagnetic_fraction_(enforced)__________________________________________ (f_c_plasma_diamagnetic.)______ 0.00000000000000000e+00 OP Pfirsch-Schlueter_fraction_(enforced)____________________________________ (f_c_plasma_pfirsch_schluter.)_ 0.00000000000000000e+00 OP Plasma_diamagnetic_current_fraction_scaling_law_used_____________________ (i_diamagnetic_current)________ 0 -Diamagnetic_fraction_(Hender)____________________________________________ (f_c_plasma_diamagnetic_hender)_ 1.37509588577080771e-02 OP -Diamagnetic_fraction_(SCENE)_____________________________________________ (f_c_plasma_diamagnetic_scene)_ 1.23763979702474023e-02 OP +Diamagnetic_fraction_(Hender)____________________________________________ (f_c_plasma_diamagnetic_hender)_ 1.35045315212155431e-02 OP +Diamagnetic_fraction_(SCENE)_____________________________________________ (f_c_plasma_diamagnetic_scene)_ 1.22319113831964848e-02 OP # Plasma Fuelling # Ratio_of_He_and_pellet_particle_confinement_times________________________ (tauratio)_____________________ 1.00000000000000000e+00 -Fuelling_rate_(nucleus-pairs/s)__________________________________________ (molflow_plasma_fuelling_required)_ 3.27617146143213617e+21 OP -Fuel_burn-up_rate_(reactions/s)__________________________________________ (rndfuel)______________________ 5.88001517663528616e+20 OP -Burn-up_fraction_________________________________________________________ (burnup)_______________________ 1.79478249104365051e-01 OP +Fuelling_rate_(nucleus-pairs/s)__________________________________________ (molflow_plasma_fuelling_required)_ 3.60776185302221534e+21 OP +Fuel_burn-up_rate_(reactions/s)__________________________________________ (rndfuel)______________________ 5.79316919431855997e+20 OP +Burn-up_fraction_________________________________________________________ (burnup)_______________________ 1.60575155188406704e-01 OP # Times # Initial_charge_time_for_CS_from_zero_current_(s)_________________________ (t_plant_pulse_coil_precharge)_ 5.00000000000000000e+02 -Plasma_current_ramp-up_time_(s)__________________________________________ (t_plant_pulse_plasma_current_ramp_up)_ 1.67464957583690364e+02 +Plasma_current_ramp-up_time_(s)__________________________________________ (t_plant_pulse_plasma_current_ramp_up)_ 1.64508889633267444e+02 Heating_time_(s)_________________________________________________________ (t_plant_pulse_fusion_ramp)____ 1.00000000000000000e+01 -Burn_time_(s)____________________________________________________________ (t_plant_pulse_burn)___________ 7.20006324945712640e+03 OP -Reset_time_to_zero_current_for_CS_(s)____________________________________ (t_plant_pulse_plasma_current_ramp_down)_ 1.67464957583690364e+02 +Burn_time_(s)____________________________________________________________ (t_plant_pulse_burn)___________ 7.20004367071577053e+03 OP +Reset_time_to_zero_current_for_CS_(s)____________________________________ (t_plant_pulse_plasma_current_ramp_down)_ 1.64508889633267444e+02 Time_between_pulses_(s)__________________________________________________ (t_plant_pulse_dwell)__________ 1.80000000000000000e+03 -Total_plant_cycle_time_(s)_______________________________________________ (t_plant_pulse_total)__________ 9.84499316462450588e+03 OP +Total_plant_cycle_time_(s)_______________________________________________ (t_plant_pulse_total)__________ 9.83906144998230593e+03 OP # Detailed Plasma # -Plasma_volume_averaged_electron_Debye_length_(⟨λ_D⟩)_(m)_________________ (len_plasma_debye_electron_vol_avg)_ 9.28625615667206215e-05 OP -Plasma_electron_Debye_length_at_point_0__________________________________ (len_plasma_debye_electron_profile0)_ 1.16577980834620614e-04 -Plasma_electron_Debye_length_at_point_1__________________________________ (len_plasma_debye_electron_profile1)_ 1.16577784818091827e-04 -Plasma_electron_Debye_length_at_point_2__________________________________ (len_plasma_debye_electron_profile2)_ 1.16577196765927748e-04 -Plasma_electron_Debye_length_at_point_3__________________________________ (len_plasma_debye_electron_profile3)_ 1.16576216670395130e-04 -Plasma_electron_Debye_length_at_point_4__________________________________ (len_plasma_debye_electron_profile4)_ 1.16574844518604990e-04 -Plasma_electron_Debye_length_at_point_5__________________________________ (len_plasma_debye_electron_profile5)_ 1.16573080292512287e-04 -Plasma_electron_Debye_length_at_point_6__________________________________ (len_plasma_debye_electron_profile6)_ 1.16570923968915393e-04 -Plasma_electron_Debye_length_at_point_7__________________________________ (len_plasma_debye_electron_profile7)_ 1.16568375519455442e-04 -Plasma_electron_Debye_length_at_point_8__________________________________ (len_plasma_debye_electron_profile8)_ 1.16565434910615570e-04 -Plasma_electron_Debye_length_at_point_9__________________________________ (len_plasma_debye_electron_profile9)_ 1.16562102103720037e-04 -Plasma_electron_Debye_length_at_point_10_________________________________ (len_plasma_debye_electron_profile10)_ 1.16558377054933071e-04 -Plasma_electron_Debye_length_at_point_11_________________________________ (len_plasma_debye_electron_profile11)_ 1.16554259715257746e-04 -Plasma_electron_Debye_length_at_point_12_________________________________ (len_plasma_debye_electron_profile12)_ 1.16549750030534599e-04 -Plasma_electron_Debye_length_at_point_13_________________________________ (len_plasma_debye_electron_profile13)_ 1.16544847941440141e-04 -Plasma_electron_Debye_length_at_point_14_________________________________ (len_plasma_debye_electron_profile14)_ 1.16539553383485279e-04 -Plasma_electron_Debye_length_at_point_15_________________________________ (len_plasma_debye_electron_profile15)_ 1.16533866287013441e-04 -Plasma_electron_Debye_length_at_point_16_________________________________ (len_plasma_debye_electron_profile16)_ 1.16527786577198819e-04 -Plasma_electron_Debye_length_at_point_17_________________________________ (len_plasma_debye_electron_profile17)_ 1.16521314174044126e-04 -Plasma_electron_Debye_length_at_point_18_________________________________ (len_plasma_debye_electron_profile18)_ 1.16514448992378626e-04 -Plasma_electron_Debye_length_at_point_19_________________________________ (len_plasma_debye_electron_profile19)_ 1.16507190941855630e-04 -Plasma_electron_Debye_length_at_point_20_________________________________ (len_plasma_debye_electron_profile20)_ 1.16499539926950043e-04 -Plasma_electron_Debye_length_at_point_21_________________________________ (len_plasma_debye_electron_profile21)_ 1.16491495846955895e-04 -Plasma_electron_Debye_length_at_point_22_________________________________ (len_plasma_debye_electron_profile22)_ 1.16483058595983374e-04 -Plasma_electron_Debye_length_at_point_23_________________________________ (len_plasma_debye_electron_profile23)_ 1.16474228062956131e-04 -Plasma_electron_Debye_length_at_point_24_________________________________ (len_plasma_debye_electron_profile24)_ 1.16465004131608118e-04 -Plasma_electron_Debye_length_at_point_25_________________________________ (len_plasma_debye_electron_profile25)_ 1.16455386680480464e-04 -Plasma_electron_Debye_length_at_point_26_________________________________ (len_plasma_debye_electron_profile26)_ 1.16445375582918133e-04 -Plasma_electron_Debye_length_at_point_27_________________________________ (len_plasma_debye_electron_profile27)_ 1.16434970707066584e-04 -Plasma_electron_Debye_length_at_point_28_________________________________ (len_plasma_debye_electron_profile28)_ 1.16424171915868011e-04 -Plasma_electron_Debye_length_at_point_29_________________________________ (len_plasma_debye_electron_profile29)_ 1.16412979067057756e-04 -Plasma_electron_Debye_length_at_point_30_________________________________ (len_plasma_debye_electron_profile30)_ 1.16401392013160349e-04 -Plasma_electron_Debye_length_at_point_31_________________________________ (len_plasma_debye_electron_profile31)_ 1.16389410601485605e-04 -Plasma_electron_Debye_length_at_point_32_________________________________ (len_plasma_debye_electron_profile32)_ 1.16377034674124399e-04 -Plasma_electron_Debye_length_at_point_33_________________________________ (len_plasma_debye_electron_profile33)_ 1.16364264067944390e-04 -Plasma_electron_Debye_length_at_point_34_________________________________ (len_plasma_debye_electron_profile34)_ 1.16351098614585652e-04 -Plasma_electron_Debye_length_at_point_35_________________________________ (len_plasma_debye_electron_profile35)_ 1.16337538140456100e-04 -Plasma_electron_Debye_length_at_point_36_________________________________ (len_plasma_debye_electron_profile36)_ 1.16323582466726792e-04 -Plasma_electron_Debye_length_at_point_37_________________________________ (len_plasma_debye_electron_profile37)_ 1.16309231409327099e-04 -Plasma_electron_Debye_length_at_point_38_________________________________ (len_plasma_debye_electron_profile38)_ 1.16294484778939764e-04 -Plasma_electron_Debye_length_at_point_39_________________________________ (len_plasma_debye_electron_profile39)_ 1.16279342380995858e-04 -Plasma_electron_Debye_length_at_point_40_________________________________ (len_plasma_debye_electron_profile40)_ 1.16263804015669372e-04 -Plasma_electron_Debye_length_at_point_41_________________________________ (len_plasma_debye_electron_profile41)_ 1.16247869477872066e-04 -Plasma_electron_Debye_length_at_point_42_________________________________ (len_plasma_debye_electron_profile42)_ 1.16231538557247835e-04 -Plasma_electron_Debye_length_at_point_43_________________________________ (len_plasma_debye_electron_profile43)_ 1.16214811038167082e-04 -Plasma_electron_Debye_length_at_point_44_________________________________ (len_plasma_debye_electron_profile44)_ 1.16197686699721065e-04 -Plasma_electron_Debye_length_at_point_45_________________________________ (len_plasma_debye_electron_profile45)_ 1.16180165315715831e-04 -Plasma_electron_Debye_length_at_point_46_________________________________ (len_plasma_debye_electron_profile46)_ 1.16162246654666313e-04 -Plasma_electron_Debye_length_at_point_47_________________________________ (len_plasma_debye_electron_profile47)_ 1.16143930479790076e-04 -Plasma_electron_Debye_length_at_point_48_________________________________ (len_plasma_debye_electron_profile48)_ 1.16125216549001147e-04 -Plasma_electron_Debye_length_at_point_49_________________________________ (len_plasma_debye_electron_profile49)_ 1.16106104614903453e-04 -Plasma_electron_Debye_length_at_point_50_________________________________ (len_plasma_debye_electron_profile50)_ 1.16086594424784324e-04 -Plasma_electron_Debye_length_at_point_51_________________________________ (len_plasma_debye_electron_profile51)_ 1.16066685720607815e-04 -Plasma_electron_Debye_length_at_point_52_________________________________ (len_plasma_debye_electron_profile52)_ 1.16046378239007884e-04 -Plasma_electron_Debye_length_at_point_53_________________________________ (len_plasma_debye_electron_profile53)_ 1.16025671711281515e-04 -Plasma_electron_Debye_length_at_point_54_________________________________ (len_plasma_debye_electron_profile54)_ 1.16004565863381471e-04 -Plasma_electron_Debye_length_at_point_55_________________________________ (len_plasma_debye_electron_profile55)_ 1.15983060415909299e-04 -Plasma_electron_Debye_length_at_point_56_________________________________ (len_plasma_debye_electron_profile56)_ 1.15961155084107892e-04 -Plasma_electron_Debye_length_at_point_57_________________________________ (len_plasma_debye_electron_profile57)_ 1.15938849577854058e-04 -Plasma_electron_Debye_length_at_point_58_________________________________ (len_plasma_debye_electron_profile58)_ 1.15916143601651003e-04 -Plasma_electron_Debye_length_at_point_59_________________________________ (len_plasma_debye_electron_profile59)_ 1.15893036854620548e-04 -Plasma_electron_Debye_length_at_point_60_________________________________ (len_plasma_debye_electron_profile60)_ 1.15869529030495367e-04 -Plasma_electron_Debye_length_at_point_61_________________________________ (len_plasma_debye_electron_profile61)_ 1.15845619817611013e-04 -Plasma_electron_Debye_length_at_point_62_________________________________ (len_plasma_debye_electron_profile62)_ 1.15821308898897944e-04 -Plasma_electron_Debye_length_at_point_63_________________________________ (len_plasma_debye_electron_profile63)_ 1.15796595951873164e-04 -Plasma_electron_Debye_length_at_point_64_________________________________ (len_plasma_debye_electron_profile64)_ 1.15771480648632088e-04 -Plasma_electron_Debye_length_at_point_65_________________________________ (len_plasma_debye_electron_profile65)_ 1.15745962655840036e-04 -Plasma_electron_Debye_length_at_point_66_________________________________ (len_plasma_debye_electron_profile66)_ 1.15720041634723714e-04 -Plasma_electron_Debye_length_at_point_67_________________________________ (len_plasma_debye_electron_profile67)_ 1.15693717241062541e-04 -Plasma_electron_Debye_length_at_point_68_________________________________ (len_plasma_debye_electron_profile68)_ 1.15666989125179874e-04 -Plasma_electron_Debye_length_at_point_69_________________________________ (len_plasma_debye_electron_profile69)_ 1.15639856931934194e-04 -Plasma_electron_Debye_length_at_point_70_________________________________ (len_plasma_debye_electron_profile70)_ 1.15612320300709923e-04 -Plasma_electron_Debye_length_at_point_71_________________________________ (len_plasma_debye_electron_profile71)_ 1.15584378865408565e-04 -Plasma_electron_Debye_length_at_point_72_________________________________ (len_plasma_debye_electron_profile72)_ 1.15556032254439221e-04 -Plasma_electron_Debye_length_at_point_73_________________________________ (len_plasma_debye_electron_profile73)_ 1.15527280090709490e-04 -Plasma_electron_Debye_length_at_point_74_________________________________ (len_plasma_debye_electron_profile74)_ 1.15498121991615822e-04 -Plasma_electron_Debye_length_at_point_75_________________________________ (len_plasma_debye_electron_profile75)_ 1.15468557569034047e-04 -Plasma_electron_Debye_length_at_point_76_________________________________ (len_plasma_debye_electron_profile76)_ 1.15438586429309791e-04 -Plasma_electron_Debye_length_at_point_77_________________________________ (len_plasma_debye_electron_profile77)_ 1.15408208173248581e-04 -Plasma_electron_Debye_length_at_point_78_________________________________ (len_plasma_debye_electron_profile78)_ 1.15377422396106024e-04 -Plasma_electron_Debye_length_at_point_79_________________________________ (len_plasma_debye_electron_profile79)_ 1.15346228687577897e-04 -Plasma_electron_Debye_length_at_point_80_________________________________ (len_plasma_debye_electron_profile80)_ 1.15314626631790010e-04 -Plasma_electron_Debye_length_at_point_81_________________________________ (len_plasma_debye_electron_profile81)_ 1.15282615807288041e-04 -Plasma_electron_Debye_length_at_point_82_________________________________ (len_plasma_debye_electron_profile82)_ 1.15250195787027225e-04 -Plasma_electron_Debye_length_at_point_83_________________________________ (len_plasma_debye_electron_profile83)_ 1.15217366138362120e-04 -Plasma_electron_Debye_length_at_point_84_________________________________ (len_plasma_debye_electron_profile84)_ 1.15184126423036035e-04 -Plasma_electron_Debye_length_at_point_85_________________________________ (len_plasma_debye_electron_profile85)_ 1.15150476197170502e-04 -Plasma_electron_Debye_length_at_point_86_________________________________ (len_plasma_debye_electron_profile86)_ 1.15116415011254637e-04 -Plasma_electron_Debye_length_at_point_87_________________________________ (len_plasma_debye_electron_profile87)_ 1.15081942410134432e-04 -Plasma_electron_Debye_length_at_point_88_________________________________ (len_plasma_debye_electron_profile88)_ 1.15047057933001845e-04 -Plasma_electron_Debye_length_at_point_89_________________________________ (len_plasma_debye_electron_profile89)_ 1.15011761113384043e-04 -Plasma_electron_Debye_length_at_point_90_________________________________ (len_plasma_debye_electron_profile90)_ 1.14976051479132296e-04 -Plasma_electron_Debye_length_at_point_91_________________________________ (len_plasma_debye_electron_profile91)_ 1.14939928552410924e-04 -Plasma_electron_Debye_length_at_point_92_________________________________ (len_plasma_debye_electron_profile92)_ 1.14903391849686156e-04 -Plasma_electron_Debye_length_at_point_93_________________________________ (len_plasma_debye_electron_profile93)_ 1.14866440881714960e-04 -Plasma_electron_Debye_length_at_point_94_________________________________ (len_plasma_debye_electron_profile94)_ 1.14829075153533605e-04 -Plasma_electron_Debye_length_at_point_95_________________________________ (len_plasma_debye_electron_profile95)_ 1.14791294164446415e-04 -Plasma_electron_Debye_length_at_point_96_________________________________ (len_plasma_debye_electron_profile96)_ 1.14753097408014276e-04 -Plasma_electron_Debye_length_at_point_97_________________________________ (len_plasma_debye_electron_profile97)_ 1.14714484372043112e-04 -Plasma_electron_Debye_length_at_point_98_________________________________ (len_plasma_debye_electron_profile98)_ 1.14675454538572277e-04 -Plasma_electron_Debye_length_at_point_99_________________________________ (len_plasma_debye_electron_profile99)_ 1.14636007383863003e-04 -Plasma_electron_Debye_length_at_point_100________________________________ (len_plasma_debye_electron_profile100)_ 1.14596142378386586e-04 -Plasma_electron_Debye_length_at_point_101________________________________ (len_plasma_debye_electron_profile101)_ 1.14555858986812700e-04 -Plasma_electron_Debye_length_at_point_102________________________________ (len_plasma_debye_electron_profile102)_ 1.14515156667997528e-04 -Plasma_electron_Debye_length_at_point_103________________________________ (len_plasma_debye_electron_profile103)_ 1.14474034874971972e-04 -Plasma_electron_Debye_length_at_point_104________________________________ (len_plasma_debye_electron_profile104)_ 1.14432493054929667e-04 -Plasma_electron_Debye_length_at_point_105________________________________ (len_plasma_debye_electron_profile105)_ 1.14390530649214952e-04 -Plasma_electron_Debye_length_at_point_106________________________________ (len_plasma_debye_electron_profile106)_ 1.14348147093311066e-04 -Plasma_electron_Debye_length_at_point_107________________________________ (len_plasma_debye_electron_profile107)_ 1.14305341816827892e-04 -Plasma_electron_Debye_length_at_point_108________________________________ (len_plasma_debye_electron_profile108)_ 1.14262114243489978e-04 -Plasma_electron_Debye_length_at_point_109________________________________ (len_plasma_debye_electron_profile109)_ 1.14218463791124398e-04 -Plasma_electron_Debye_length_at_point_110________________________________ (len_plasma_debye_electron_profile110)_ 1.14174389871648618e-04 -Plasma_electron_Debye_length_at_point_111________________________________ (len_plasma_debye_electron_profile111)_ 1.14129891891058245e-04 -Plasma_electron_Debye_length_at_point_112________________________________ (len_plasma_debye_electron_profile112)_ 1.14084969249415009e-04 -Plasma_electron_Debye_length_at_point_113________________________________ (len_plasma_debye_electron_profile113)_ 1.14039621340834344e-04 -Plasma_electron_Debye_length_at_point_114________________________________ (len_plasma_debye_electron_profile114)_ 1.13993847553473264e-04 -Plasma_electron_Debye_length_at_point_115________________________________ (len_plasma_debye_electron_profile115)_ 1.13947647269518120e-04 -Plasma_electron_Debye_length_at_point_116________________________________ (len_plasma_debye_electron_profile116)_ 1.13901019865172325e-04 -Plasma_electron_Debye_length_at_point_117________________________________ (len_plasma_debye_electron_profile117)_ 1.13853964710644128e-04 -Plasma_electron_Debye_length_at_point_118________________________________ (len_plasma_debye_electron_profile118)_ 1.13806481170134323e-04 -Plasma_electron_Debye_length_at_point_119________________________________ (len_plasma_debye_electron_profile119)_ 1.13758568601824090e-04 -Plasma_electron_Debye_length_at_point_120________________________________ (len_plasma_debye_electron_profile120)_ 1.13710226357862664e-04 -Plasma_electron_Debye_length_at_point_121________________________________ (len_plasma_debye_electron_profile121)_ 1.13661453784355193e-04 -Plasma_electron_Debye_length_at_point_122________________________________ (len_plasma_debye_electron_profile122)_ 1.13612250221350512e-04 -Plasma_electron_Debye_length_at_point_123________________________________ (len_plasma_debye_electron_profile123)_ 1.13562615002828958e-04 -Plasma_electron_Debye_length_at_point_124________________________________ (len_plasma_debye_electron_profile124)_ 1.13512547456690285e-04 -Plasma_electron_Debye_length_at_point_125________________________________ (len_plasma_debye_electron_profile125)_ 1.13462046904741503e-04 -Plasma_electron_Debye_length_at_point_126________________________________ (len_plasma_debye_electron_profile126)_ 1.13411112662684821e-04 -Plasma_electron_Debye_length_at_point_127________________________________ (len_plasma_debye_electron_profile127)_ 1.13359744040105687e-04 -Plasma_electron_Debye_length_at_point_128________________________________ (len_plasma_debye_electron_profile128)_ 1.13307940340460803e-04 -Plasma_electron_Debye_length_at_point_129________________________________ (len_plasma_debye_electron_profile129)_ 1.13255700861066122e-04 -Plasma_electron_Debye_length_at_point_130________________________________ (len_plasma_debye_electron_profile130)_ 1.13203024893085186e-04 -Plasma_electron_Debye_length_at_point_131________________________________ (len_plasma_debye_electron_profile131)_ 1.13149911721517195e-04 -Plasma_electron_Debye_length_at_point_132________________________________ (len_plasma_debye_electron_profile132)_ 1.13096360625185424e-04 -Plasma_electron_Debye_length_at_point_133________________________________ (len_plasma_debye_electron_profile133)_ 1.13042370876725564e-04 -Plasma_electron_Debye_length_at_point_134________________________________ (len_plasma_debye_electron_profile134)_ 1.12987941742574162e-04 -Plasma_electron_Debye_length_at_point_135________________________________ (len_plasma_debye_electron_profile135)_ 1.12933072482957351e-04 -Plasma_electron_Debye_length_at_point_136________________________________ (len_plasma_debye_electron_profile136)_ 1.12877762351879375e-04 -Plasma_electron_Debye_length_at_point_137________________________________ (len_plasma_debye_electron_profile137)_ 1.12822010597111443e-04 -Plasma_electron_Debye_length_at_point_138________________________________ (len_plasma_debye_electron_profile138)_ 1.12765816460180641e-04 -Plasma_electron_Debye_length_at_point_139________________________________ (len_plasma_debye_electron_profile139)_ 1.12709179176359060e-04 -Plasma_electron_Debye_length_at_point_140________________________________ (len_plasma_debye_electron_profile140)_ 1.12652097974652769e-04 -Plasma_electron_Debye_length_at_point_141________________________________ (len_plasma_debye_electron_profile141)_ 1.12594572077791361e-04 -Plasma_electron_Debye_length_at_point_142________________________________ (len_plasma_debye_electron_profile142)_ 1.12536600702217306e-04 -Plasma_electron_Debye_length_at_point_143________________________________ (len_plasma_debye_electron_profile143)_ 1.12478183058075577e-04 -Plasma_electron_Debye_length_at_point_144________________________________ (len_plasma_debye_electron_profile144)_ 1.12419318349203534e-04 -Plasma_electron_Debye_length_at_point_145________________________________ (len_plasma_debye_electron_profile145)_ 1.12360005773120807e-04 -Plasma_electron_Debye_length_at_point_146________________________________ (len_plasma_debye_electron_profile146)_ 1.12300244521019540e-04 -Plasma_electron_Debye_length_at_point_147________________________________ (len_plasma_debye_electron_profile147)_ 1.12240033777754759e-04 -Plasma_electron_Debye_length_at_point_148________________________________ (len_plasma_debye_electron_profile148)_ 1.12179372721834866e-04 -Plasma_electron_Debye_length_at_point_149________________________________ (len_plasma_debye_electron_profile149)_ 1.12118260525412495e-04 -Plasma_electron_Debye_length_at_point_150________________________________ (len_plasma_debye_electron_profile150)_ 1.12056696354275552e-04 -Plasma_electron_Debye_length_at_point_151________________________________ (len_plasma_debye_electron_profile151)_ 1.11994679367838446e-04 -Plasma_electron_Debye_length_at_point_152________________________________ (len_plasma_debye_electron_profile152)_ 1.11932208719133541e-04 -Plasma_electron_Debye_length_at_point_153________________________________ (len_plasma_debye_electron_profile153)_ 1.11869283554803074e-04 -Plasma_electron_Debye_length_at_point_154________________________________ (len_plasma_debye_electron_profile154)_ 1.11805903015091025e-04 -Plasma_electron_Debye_length_at_point_155________________________________ (len_plasma_debye_electron_profile155)_ 1.11742066233835584e-04 -Plasma_electron_Debye_length_at_point_156________________________________ (len_plasma_debye_electron_profile156)_ 1.11677772338461708e-04 -Plasma_electron_Debye_length_at_point_157________________________________ (len_plasma_debye_electron_profile157)_ 1.11613020449974034e-04 -Plasma_electron_Debye_length_at_point_158________________________________ (len_plasma_debye_electron_profile158)_ 1.11547809682950239e-04 -Plasma_electron_Debye_length_at_point_159________________________________ (len_plasma_debye_electron_profile159)_ 1.11482139145534546e-04 -Plasma_electron_Debye_length_at_point_160________________________________ (len_plasma_debye_electron_profile160)_ 1.11416007939431697e-04 -Plasma_electron_Debye_length_at_point_161________________________________ (len_plasma_debye_electron_profile161)_ 1.11349415159901283e-04 -Plasma_electron_Debye_length_at_point_162________________________________ (len_plasma_debye_electron_profile162)_ 1.11282359895752410e-04 -Plasma_electron_Debye_length_at_point_163________________________________ (len_plasma_debye_electron_profile163)_ 1.11214841229338748e-04 -Plasma_electron_Debye_length_at_point_164________________________________ (len_plasma_debye_electron_profile164)_ 1.11146858236554140e-04 -Plasma_electron_Debye_length_at_point_165________________________________ (len_plasma_debye_electron_profile165)_ 1.11078409986828391e-04 -Plasma_electron_Debye_length_at_point_166________________________________ (len_plasma_debye_electron_profile166)_ 1.11009495543123754e-04 -Plasma_electron_Debye_length_at_point_167________________________________ (len_plasma_debye_electron_profile167)_ 1.10940113961931599e-04 -Plasma_electron_Debye_length_at_point_168________________________________ (len_plasma_debye_electron_profile168)_ 1.10870264293269860e-04 -Plasma_electron_Debye_length_at_point_169________________________________ (len_plasma_debye_electron_profile169)_ 1.10799945580680712e-04 -Plasma_electron_Debye_length_at_point_170________________________________ (len_plasma_debye_electron_profile170)_ 1.10729156861228884e-04 -Plasma_electron_Debye_length_at_point_171________________________________ (len_plasma_debye_electron_profile171)_ 1.10657897165500577e-04 -Plasma_electron_Debye_length_at_point_172________________________________ (len_plasma_debye_electron_profile172)_ 1.10586165517602731e-04 -Plasma_electron_Debye_length_at_point_173________________________________ (len_plasma_debye_electron_profile173)_ 1.10513960935162988e-04 -Plasma_electron_Debye_length_at_point_174________________________________ (len_plasma_debye_electron_profile174)_ 1.10441282429330284e-04 -Plasma_electron_Debye_length_at_point_175________________________________ (len_plasma_debye_electron_profile175)_ 1.10368129004775962e-04 -Plasma_electron_Debye_length_at_point_176________________________________ (len_plasma_debye_electron_profile176)_ 1.10294499659695493e-04 -Plasma_electron_Debye_length_at_point_177________________________________ (len_plasma_debye_electron_profile177)_ 1.10220393385810999e-04 -Plasma_electron_Debye_length_at_point_178________________________________ (len_plasma_debye_electron_profile178)_ 1.10145809168374229e-04 -Plasma_electron_Debye_length_at_point_179________________________________ (len_plasma_debye_electron_profile179)_ 1.10070745986170522e-04 -Plasma_electron_Debye_length_at_point_180________________________________ (len_plasma_debye_electron_profile180)_ 1.09995202811523197e-04 -Plasma_electron_Debye_length_at_point_181________________________________ (len_plasma_debye_electron_profile181)_ 1.09919178610298835e-04 -Plasma_electron_Debye_length_at_point_182________________________________ (len_plasma_debye_electron_profile182)_ 1.09842672341913382e-04 -Plasma_electron_Debye_length_at_point_183________________________________ (len_plasma_debye_electron_profile183)_ 1.09765682959338948e-04 -Plasma_electron_Debye_length_at_point_184________________________________ (len_plasma_debye_electron_profile184)_ 1.09688209409111454e-04 -Plasma_electron_Debye_length_at_point_185________________________________ (len_plasma_debye_electron_profile185)_ 1.09610250631339199e-04 -Plasma_electron_Debye_length_at_point_186________________________________ (len_plasma_debye_electron_profile186)_ 1.09531805559712203e-04 -Plasma_electron_Debye_length_at_point_187________________________________ (len_plasma_debye_electron_profile187)_ 1.09452873121512544e-04 -Plasma_electron_Debye_length_at_point_188________________________________ (len_plasma_debye_electron_profile188)_ 1.09373452237625574e-04 -Plasma_electron_Debye_length_at_point_189________________________________ (len_plasma_debye_electron_profile189)_ 1.09293541822552155e-04 -Plasma_electron_Debye_length_at_point_190________________________________ (len_plasma_debye_electron_profile190)_ 1.09213140784421840e-04 -Plasma_electron_Debye_length_at_point_191________________________________ (len_plasma_debye_electron_profile191)_ 1.09132248025007160e-04 -Plasma_electron_Debye_length_at_point_192________________________________ (len_plasma_debye_electron_profile192)_ 1.09050862439738936e-04 -Plasma_electron_Debye_length_at_point_193________________________________ (len_plasma_debye_electron_profile193)_ 1.08968982917722614e-04 -Plasma_electron_Debye_length_at_point_194________________________________ (len_plasma_debye_electron_profile194)_ 1.08886608341755918e-04 -Plasma_electron_Debye_length_at_point_195________________________________ (len_plasma_debye_electron_profile195)_ 1.08803737588347463e-04 -Plasma_electron_Debye_length_at_point_196________________________________ (len_plasma_debye_electron_profile196)_ 1.08720369527736795e-04 -Plasma_electron_Debye_length_at_point_197________________________________ (len_plasma_debye_electron_profile197)_ 1.08636503023915485e-04 -Plasma_electron_Debye_length_at_point_198________________________________ (len_plasma_debye_electron_profile198)_ 1.08552136934649587e-04 -Plasma_electron_Debye_length_at_point_199________________________________ (len_plasma_debye_electron_profile199)_ 1.08467270111503467e-04 -Plasma_electron_Debye_length_at_point_200________________________________ (len_plasma_debye_electron_profile200)_ 1.08381901399864951e-04 -Plasma_electron_Debye_length_at_point_201________________________________ (len_plasma_debye_electron_profile201)_ 1.08296029638971881e-04 -Plasma_electron_Debye_length_at_point_202________________________________ (len_plasma_debye_electron_profile202)_ 1.08209653661940121e-04 -Plasma_electron_Debye_length_at_point_203________________________________ (len_plasma_debye_electron_profile203)_ 1.08122772295793078e-04 -Plasma_electron_Debye_length_at_point_204________________________________ (len_plasma_debye_electron_profile204)_ 1.08035384361492793e-04 -Plasma_electron_Debye_length_at_point_205________________________________ (len_plasma_debye_electron_profile205)_ 1.07947488673972586e-04 -Plasma_electron_Debye_length_at_point_206________________________________ (len_plasma_debye_electron_profile206)_ 1.07859084042171414e-04 -Plasma_electron_Debye_length_at_point_207________________________________ (len_plasma_debye_electron_profile207)_ 1.07770169269069688e-04 -Plasma_electron_Debye_length_at_point_208________________________________ (len_plasma_debye_electron_profile208)_ 1.07680743151727275e-04 -Plasma_electron_Debye_length_at_point_209________________________________ (len_plasma_debye_electron_profile209)_ 1.07590804481322817e-04 -Plasma_electron_Debye_length_at_point_210________________________________ (len_plasma_debye_electron_profile210)_ 1.07500352043195306e-04 -Plasma_electron_Debye_length_at_point_211________________________________ (len_plasma_debye_electron_profile211)_ 1.07409384616887195e-04 -Plasma_electron_Debye_length_at_point_212________________________________ (len_plasma_debye_electron_profile212)_ 1.07317900976189884e-04 -Plasma_electron_Debye_length_at_point_213________________________________ (len_plasma_debye_electron_profile213)_ 1.07225899889190824e-04 -Plasma_electron_Debye_length_at_point_214________________________________ (len_plasma_debye_electron_profile214)_ 1.07133380118323122e-04 -Plasma_electron_Debye_length_at_point_215________________________________ (len_plasma_debye_electron_profile215)_ 1.07040340420416877e-04 -Plasma_electron_Debye_length_at_point_216________________________________ (len_plasma_debye_electron_profile216)_ 1.06946779546753133e-04 -Plasma_electron_Debye_length_at_point_217________________________________ (len_plasma_debye_electron_profile217)_ 1.06852696243119771e-04 -Plasma_electron_Debye_length_at_point_218________________________________ (len_plasma_debye_electron_profile218)_ 1.06758089249870091e-04 -Plasma_electron_Debye_length_at_point_219________________________________ (len_plasma_debye_electron_profile219)_ 1.06662957301983442e-04 -Plasma_electron_Debye_length_at_point_220________________________________ (len_plasma_debye_electron_profile220)_ 1.06567299129128800e-04 -Plasma_electron_Debye_length_at_point_221________________________________ (len_plasma_debye_electron_profile221)_ 1.06471113455730465e-04 -Plasma_electron_Debye_length_at_point_222________________________________ (len_plasma_debye_electron_profile222)_ 1.06374399001036741e-04 -Plasma_electron_Debye_length_at_point_223________________________________ (len_plasma_debye_electron_profile223)_ 1.06277154479191211e-04 -Plasma_electron_Debye_length_at_point_224________________________________ (len_plasma_debye_electron_profile224)_ 1.06179378599306813e-04 -Plasma_electron_Debye_length_at_point_225________________________________ (len_plasma_debye_electron_profile225)_ 1.06081070065542902e-04 -Plasma_electron_Debye_length_at_point_226________________________________ (len_plasma_debye_electron_profile226)_ 1.05982227577185208e-04 -Plasma_electron_Debye_length_at_point_227________________________________ (len_plasma_debye_electron_profile227)_ 1.05882849828728900e-04 -Plasma_electron_Debye_length_at_point_228________________________________ (len_plasma_debye_electron_profile228)_ 1.05782935509964862e-04 -Plasma_electron_Debye_length_at_point_229________________________________ (len_plasma_debye_electron_profile229)_ 1.05682483306069165e-04 -Plasma_electron_Debye_length_at_point_230________________________________ (len_plasma_debye_electron_profile230)_ 1.05581491897695866e-04 -Plasma_electron_Debye_length_at_point_231________________________________ (len_plasma_debye_electron_profile231)_ 1.05479959961073493e-04 -Plasma_electron_Debye_length_at_point_232________________________________ (len_plasma_debye_electron_profile232)_ 1.05377886168104735e-04 -Plasma_electron_Debye_length_at_point_233________________________________ (len_plasma_debye_electron_profile233)_ 1.05275269186470122e-04 -Plasma_electron_Debye_length_at_point_234________________________________ (len_plasma_debye_electron_profile234)_ 1.05172107679735302e-04 -Plasma_electron_Debye_length_at_point_235________________________________ (len_plasma_debye_electron_profile235)_ 1.05068400307462340e-04 -Plasma_electron_Debye_length_at_point_236________________________________ (len_plasma_debye_electron_profile236)_ 1.04964145725324799e-04 -Plasma_electron_Debye_length_at_point_237________________________________ (len_plasma_debye_electron_profile237)_ 1.04859342585227310e-04 -Plasma_electron_Debye_length_at_point_238________________________________ (len_plasma_debye_electron_profile238)_ 1.04753989535429052e-04 -Plasma_electron_Debye_length_at_point_239________________________________ (len_plasma_debye_electron_profile239)_ 1.04648085220671738e-04 -Plasma_electron_Debye_length_at_point_240________________________________ (len_plasma_debye_electron_profile240)_ 1.04541628282312272e-04 -Plasma_electron_Debye_length_at_point_241________________________________ (len_plasma_debye_electron_profile241)_ 1.04434617358459720e-04 -Plasma_electron_Debye_length_at_point_242________________________________ (len_plasma_debye_electron_profile242)_ 1.04327051084117397e-04 -Plasma_electron_Debye_length_at_point_243________________________________ (len_plasma_debye_electron_profile243)_ 1.04218928091329629e-04 -Plasma_electron_Debye_length_at_point_244________________________________ (len_plasma_debye_electron_profile244)_ 1.04110247009333849e-04 -Plasma_electron_Debye_length_at_point_245________________________________ (len_plasma_debye_electron_profile245)_ 1.04001006464717565e-04 -Plasma_electron_Debye_length_at_point_246________________________________ (len_plasma_debye_electron_profile246)_ 1.03891205081581137e-04 -Plasma_electron_Debye_length_at_point_247________________________________ (len_plasma_debye_electron_profile247)_ 1.03780841481705645e-04 -Plasma_electron_Debye_length_at_point_248________________________________ (len_plasma_debye_electron_profile248)_ 1.03669914284726947e-04 -Plasma_electron_Debye_length_at_point_249________________________________ (len_plasma_debye_electron_profile249)_ 1.03558422108315220e-04 -Plasma_electron_Debye_length_at_point_250________________________________ (len_plasma_debye_electron_profile250)_ 1.03446363568360759e-04 -Plasma_electron_Debye_length_at_point_251________________________________ (len_plasma_debye_electron_profile251)_ 1.03333737279166045e-04 -Plasma_electron_Debye_length_at_point_252________________________________ (len_plasma_debye_electron_profile252)_ 1.03220541853644044e-04 -Plasma_electron_Debye_length_at_point_253________________________________ (len_plasma_debye_electron_profile253)_ 1.03106775903523409e-04 -Plasma_electron_Debye_length_at_point_254________________________________ (len_plasma_debye_electron_profile254)_ 1.02992438039560224e-04 -Plasma_electron_Debye_length_at_point_255________________________________ (len_plasma_debye_electron_profile255)_ 1.02877526871757090e-04 -Plasma_electron_Debye_length_at_point_256________________________________ (len_plasma_debye_electron_profile256)_ 1.02762041009589065e-04 -Plasma_electron_Debye_length_at_point_257________________________________ (len_plasma_debye_electron_profile257)_ 1.02645979062237401e-04 -Plasma_electron_Debye_length_at_point_258________________________________ (len_plasma_debye_electron_profile258)_ 1.02529339638830847e-04 -Plasma_electron_Debye_length_at_point_259________________________________ (len_plasma_debye_electron_profile259)_ 1.02412121348694759e-04 -Plasma_electron_Debye_length_at_point_260________________________________ (len_plasma_debye_electron_profile260)_ 1.02294322801608557e-04 -Plasma_electron_Debye_length_at_point_261________________________________ (len_plasma_debye_electron_profile261)_ 1.02175942608071462e-04 -Plasma_electron_Debye_length_at_point_262________________________________ (len_plasma_debye_electron_profile262)_ 1.02056979379576909e-04 -Plasma_electron_Debye_length_at_point_263________________________________ (len_plasma_debye_electron_profile263)_ 1.01937431728895902e-04 -Plasma_electron_Debye_length_at_point_264________________________________ (len_plasma_debye_electron_profile264)_ 1.01817298270369562e-04 -Plasma_electron_Debye_length_at_point_265________________________________ (len_plasma_debye_electron_profile265)_ 1.01696577620211153e-04 -Plasma_electron_Debye_length_at_point_266________________________________ (len_plasma_debye_electron_profile266)_ 1.01575268396817794e-04 -Plasma_electron_Debye_length_at_point_267________________________________ (len_plasma_debye_electron_profile267)_ 1.01453369221092332e-04 -Plasma_electron_Debye_length_at_point_268________________________________ (len_plasma_debye_electron_profile268)_ 1.01330878716775633e-04 -Plasma_electron_Debye_length_at_point_269________________________________ (len_plasma_debye_electron_profile269)_ 1.01207795510789236e-04 -Plasma_electron_Debye_length_at_point_270________________________________ (len_plasma_debye_electron_profile270)_ 1.01084118233589446e-04 -Plasma_electron_Debye_length_at_point_271________________________________ (len_plasma_debye_electron_profile271)_ 1.00959845519532502e-04 -Plasma_electron_Debye_length_at_point_272________________________________ (len_plasma_debye_electron_profile272)_ 1.00834976007251490e-04 -Plasma_electron_Debye_length_at_point_273________________________________ (len_plasma_debye_electron_profile273)_ 1.00709508340045338e-04 -Plasma_electron_Debye_length_at_point_274________________________________ (len_plasma_debye_electron_profile274)_ 1.00583441166280342e-04 -Plasma_electron_Debye_length_at_point_275________________________________ (len_plasma_debye_electron_profile275)_ 1.00456773139804146e-04 -Plasma_electron_Debye_length_at_point_276________________________________ (len_plasma_debye_electron_profile276)_ 1.00329502920373472e-04 -Plasma_electron_Debye_length_at_point_277________________________________ (len_plasma_debye_electron_profile277)_ 1.00201629174094970e-04 -Plasma_electron_Debye_length_at_point_278________________________________ (len_plasma_debye_electron_profile278)_ 1.00073150573880406e-04 -Plasma_electron_Debye_length_at_point_279________________________________ (len_plasma_debye_electron_profile279)_ 9.99440657999161111e-05 -Plasma_electron_Debye_length_at_point_280________________________________ (len_plasma_debye_electron_profile280)_ 9.98143735401476695e-05 -Plasma_electron_Debye_length_at_point_281________________________________ (len_plasma_debye_electron_profile281)_ 9.96840724907795632e-05 -Plasma_electron_Debye_length_at_point_282________________________________ (len_plasma_debye_electron_profile282)_ 9.95531613567910746e-05 -Plasma_electron_Debye_length_at_point_283________________________________ (len_plasma_debye_electron_profile283)_ 9.94216388524682908e-05 -Plasma_electron_Debye_length_at_point_284________________________________ (len_plasma_debye_electron_profile284)_ 9.92895037019531985e-05 -Plasma_electron_Debye_length_at_point_285________________________________ (len_plasma_debye_electron_profile285)_ 9.91567546398100161e-05 -Plasma_electron_Debye_length_at_point_286________________________________ (len_plasma_debye_electron_profile286)_ 9.90233904116094712e-05 -Plasma_electron_Debye_length_at_point_287________________________________ (len_plasma_debye_electron_profile287)_ 9.88894097745318331e-05 -Plasma_electron_Debye_length_at_point_288________________________________ (len_plasma_debye_electron_profile288)_ 9.87548114979886897e-05 -Plasma_electron_Debye_length_at_point_289________________________________ (len_plasma_debye_electron_profile289)_ 9.86195943642648220e-05 -Plasma_electron_Debye_length_at_point_290________________________________ (len_plasma_debye_electron_profile290)_ 9.84837571691800416e-05 -Plasma_electron_Debye_length_at_point_291________________________________ (len_plasma_debye_electron_profile291)_ 9.83472987227722930e-05 -Plasma_electron_Debye_length_at_point_292________________________________ (len_plasma_debye_electron_profile292)_ 9.82102178500022350e-05 -Plasma_electron_Debye_length_at_point_293________________________________ (len_plasma_debye_electron_profile293)_ 9.80725133914801990e-05 -Plasma_electron_Debye_length_at_point_294________________________________ (len_plasma_debye_electron_profile294)_ 9.79341842042162804e-05 -Plasma_electron_Debye_length_at_point_295________________________________ (len_plasma_debye_electron_profile295)_ 9.77952291623940522e-05 -Plasma_electron_Debye_length_at_point_296________________________________ (len_plasma_debye_electron_profile296)_ 9.76556471581689178e-05 -Plasma_electron_Debye_length_at_point_297________________________________ (len_plasma_debye_electron_profile297)_ 9.75154371024919008e-05 -Plasma_electron_Debye_length_at_point_298________________________________ (len_plasma_debye_electron_profile298)_ 9.73745979259594023e-05 -Plasma_electron_Debye_length_at_point_299________________________________ (len_plasma_debye_electron_profile299)_ 9.72331285796899681e-05 -Plasma_electron_Debye_length_at_point_300________________________________ (len_plasma_debye_electron_profile300)_ 9.70910280362292043e-05 -Plasma_electron_Debye_length_at_point_301________________________________ (len_plasma_debye_electron_profile301)_ 9.69482952904831538e-05 -Plasma_electron_Debye_length_at_point_302________________________________ (len_plasma_debye_electron_profile302)_ 9.68049293606814060e-05 -Plasma_electron_Debye_length_at_point_303________________________________ (len_plasma_debye_electron_profile303)_ 9.66609292893711889e-05 -Plasma_electron_Debye_length_at_point_304________________________________ (len_plasma_debye_electron_profile304)_ 9.65162941444427258e-05 -Plasma_electron_Debye_length_at_point_305________________________________ (len_plasma_debye_electron_profile305)_ 9.63710230201877147e-05 -Plasma_electron_Debye_length_at_point_306________________________________ (len_plasma_debye_electron_profile306)_ 9.62251150383912693e-05 -Plasma_electron_Debye_length_at_point_307________________________________ (len_plasma_debye_electron_profile307)_ 9.60785693494589605e-05 -Plasma_electron_Debye_length_at_point_308________________________________ (len_plasma_debye_electron_profile308)_ 9.59313851335798267e-05 -Plasma_electron_Debye_length_at_point_309________________________________ (len_plasma_debye_electron_profile309)_ 9.57835616019268019e-05 -Plasma_electron_Debye_length_at_point_310________________________________ (len_plasma_debye_electron_profile310)_ 9.56350979978953092e-05 -Plasma_electron_Debye_length_at_point_311________________________________ (len_plasma_debye_electron_profile311)_ 9.54859935983820086e-05 -Plasma_electron_Debye_length_at_point_312________________________________ (len_plasma_debye_electron_profile312)_ 9.53362477151042172e-05 -Plasma_electron_Debye_length_at_point_313________________________________ (len_plasma_debye_electron_profile313)_ 9.51858596959623179e-05 -Plasma_electron_Debye_length_at_point_314________________________________ (len_plasma_debye_electron_profile314)_ 9.50348289264453999e-05 -Plasma_electron_Debye_length_at_point_315________________________________ (len_plasma_debye_electron_profile315)_ 9.48831548310829652e-05 -Plasma_electron_Debye_length_at_point_316________________________________ (len_plasma_debye_electron_profile316)_ 9.47308368749429569e-05 -Plasma_electron_Debye_length_at_point_317________________________________ (len_plasma_debye_electron_profile317)_ 9.45778745651785769e-05 -Plasma_electron_Debye_length_at_point_318________________________________ (len_plasma_debye_electron_profile318)_ 9.44242674526251399e-05 -Plasma_electron_Debye_length_at_point_319________________________________ (len_plasma_debye_electron_profile319)_ 9.42700151334486836e-05 -Plasma_electron_Debye_length_at_point_320________________________________ (len_plasma_debye_electron_profile320)_ 9.41151172508483696e-05 -Plasma_electron_Debye_length_at_point_321________________________________ (len_plasma_debye_electron_profile321)_ 9.39595734968140430e-05 -Plasma_electron_Debye_length_at_point_322________________________________ (len_plasma_debye_electron_profile322)_ 9.38033836139413088e-05 -Plasma_electron_Debye_length_at_point_323________________________________ (len_plasma_debye_electron_profile323)_ 9.36465473973057918e-05 -Plasma_electron_Debye_length_at_point_324________________________________ (len_plasma_debye_electron_profile324)_ 9.34890646963988312e-05 -Plasma_electron_Debye_length_at_point_325________________________________ (len_plasma_debye_electron_profile325)_ 9.33309354171265861e-05 -Plasma_electron_Debye_length_at_point_326________________________________ (len_plasma_debye_electron_profile326)_ 9.31721595238747363e-05 -Plasma_electron_Debye_length_at_point_327________________________________ (len_plasma_debye_electron_profile327)_ 9.30127370416412841e-05 -Plasma_electron_Debye_length_at_point_328________________________________ (len_plasma_debye_electron_profile328)_ 9.28526680582394769e-05 -Plasma_electron_Debye_length_at_point_329________________________________ (len_plasma_debye_electron_profile329)_ 9.26919527265737913e-05 -Plasma_electron_Debye_length_at_point_330________________________________ (len_plasma_debye_electron_profile330)_ 9.25305912669909718e-05 -Plasma_electron_Debye_length_at_point_331________________________________ (len_plasma_debye_electron_profile331)_ 9.23685839697092800e-05 -Plasma_electron_Debye_length_at_point_332________________________________ (len_plasma_debye_electron_profile332)_ 9.22059311973283825e-05 -Plasma_electron_Debye_length_at_point_333________________________________ (len_plasma_debye_electron_profile333)_ 9.20426333874229112e-05 -Plasma_electron_Debye_length_at_point_334________________________________ (len_plasma_debye_electron_profile334)_ 9.18786910552227336e-05 -Plasma_electron_Debye_length_at_point_335________________________________ (len_plasma_debye_electron_profile335)_ 9.17141047963826548e-05 -Plasma_electron_Debye_length_at_point_336________________________________ (len_plasma_debye_electron_profile336)_ 9.15488752898453896e-05 -Plasma_electron_Debye_length_at_point_337________________________________ (len_plasma_debye_electron_profile337)_ 9.13830033008005126e-05 -Plasma_electron_Debye_length_at_point_338________________________________ (len_plasma_debye_electron_profile338)_ 9.12164896837433043e-05 -Plasma_electron_Debye_length_at_point_339________________________________ (len_plasma_debye_electron_profile339)_ 9.10493353856369213e-05 -Plasma_electron_Debye_length_at_point_340________________________________ (len_plasma_debye_electron_profile340)_ 9.08815414491817136e-05 -Plasma_electron_Debye_length_at_point_341________________________________ (len_plasma_debye_electron_profile341)_ 9.07131090161954413e-05 -Plasma_electron_Debye_length_at_point_342________________________________ (len_plasma_debye_electron_profile342)_ 9.05440393311088509e-05 -Plasma_electron_Debye_length_at_point_343________________________________ (len_plasma_debye_electron_profile343)_ 9.03743337445803244e-05 -Plasma_electron_Debye_length_at_point_344________________________________ (len_plasma_debye_electron_profile344)_ 9.02039937172344653e-05 -Plasma_electron_Debye_length_at_point_345________________________________ (len_plasma_debye_electron_profile345)_ 9.00330208235288653e-05 -Plasma_electron_Debye_length_at_point_346________________________________ (len_plasma_debye_electron_profile346)_ 8.98614167557541463e-05 -Plasma_electron_Debye_length_at_point_347________________________________ (len_plasma_debye_electron_profile347)_ 8.96891833281720211e-05 -Plasma_electron_Debye_length_at_point_348________________________________ (len_plasma_debye_electron_profile348)_ 8.95163224812965371e-05 -Plasma_electron_Debye_length_at_point_349________________________________ (len_plasma_debye_electron_profile349)_ 8.93428362863242070e-05 -Plasma_electron_Debye_length_at_point_350________________________________ (len_plasma_debye_electron_profile350)_ 8.91687269497182060e-05 -Plasma_electron_Debye_length_at_point_351________________________________ (len_plasma_debye_electron_profile351)_ 8.89939968179527860e-05 -Plasma_electron_Debye_length_at_point_352________________________________ (len_plasma_debye_electron_profile352)_ 8.88186483824242507e-05 -Plasma_electron_Debye_length_at_point_353________________________________ (len_plasma_debye_electron_profile353)_ 8.86426842845340884e-05 -Plasma_electron_Debye_length_at_point_354________________________________ (len_plasma_debye_electron_profile354)_ 8.84661073209517840e-05 -Plasma_electron_Debye_length_at_point_355________________________________ (len_plasma_debye_electron_profile355)_ 8.82889204490637080e-05 -Plasma_electron_Debye_length_at_point_356________________________________ (len_plasma_debye_electron_profile356)_ 8.81111267926155614e-05 -Plasma_electron_Debye_length_at_point_357________________________________ (len_plasma_debye_electron_profile357)_ 8.79327296475556432e-05 -Plasma_electron_Debye_length_at_point_358________________________________ (len_plasma_debye_electron_profile358)_ 8.77537324880873137e-05 -Plasma_electron_Debye_length_at_point_359________________________________ (len_plasma_debye_electron_profile359)_ 8.75741389729383128e-05 -Plasma_electron_Debye_length_at_point_360________________________________ (len_plasma_debye_electron_profile360)_ 8.73939529518560383e-05 -Plasma_electron_Debye_length_at_point_361________________________________ (len_plasma_debye_electron_profile361)_ 8.72131784723372981e-05 -Plasma_electron_Debye_length_at_point_362________________________________ (len_plasma_debye_electron_profile362)_ 8.70318197866024127e-05 -Plasma_electron_Debye_length_at_point_363________________________________ (len_plasma_debye_electron_profile363)_ 8.68498813588230360e-05 -Plasma_electron_Debye_length_at_point_364________________________________ (len_plasma_debye_electron_profile364)_ 8.66673678726142497e-05 -Plasma_electron_Debye_length_at_point_365________________________________ (len_plasma_debye_electron_profile365)_ 8.64842842388015569e-05 -Plasma_electron_Debye_length_at_point_366________________________________ (len_plasma_debye_electron_profile366)_ 8.63006356034739028e-05 -Plasma_electron_Debye_length_at_point_367________________________________ (len_plasma_debye_electron_profile367)_ 8.61164273563347143e-05 -Plasma_electron_Debye_length_at_point_368________________________________ (len_plasma_debye_electron_profile368)_ 8.59316651393630628e-05 -Plasma_electron_Debye_length_at_point_369________________________________ (len_plasma_debye_electron_profile369)_ 8.57463548557978243e-05 -Plasma_electron_Debye_length_at_point_370________________________________ (len_plasma_debye_electron_profile370)_ 8.55605026794585652e-05 -Plasma_electron_Debye_length_at_point_371________________________________ (len_plasma_debye_electron_profile371)_ 8.53741150644168970e-05 -Plasma_electron_Debye_length_at_point_372________________________________ (len_plasma_debye_electron_profile372)_ 8.51871987550335727e-05 -Plasma_electron_Debye_length_at_point_373________________________________ (len_plasma_debye_electron_profile373)_ 8.49997607963765852e-05 -Plasma_electron_Debye_length_at_point_374________________________________ (len_plasma_debye_electron_profile374)_ 8.48118085450366672e-05 -Plasma_electron_Debye_length_at_point_375________________________________ (len_plasma_debye_electron_profile375)_ 8.46233496803572538e-05 -Plasma_electron_Debye_length_at_point_376________________________________ (len_plasma_debye_electron_profile376)_ 8.44343922160970689e-05 -Plasma_electron_Debye_length_at_point_377________________________________ (len_plasma_debye_electron_profile377)_ 8.42449445125439706e-05 -Plasma_electron_Debye_length_at_point_378________________________________ (len_plasma_debye_electron_profile378)_ 8.40550152891002207e-05 -Plasma_electron_Debye_length_at_point_379________________________________ (len_plasma_debye_electron_profile379)_ 8.38646136373596301e-05 -Plasma_electron_Debye_length_at_point_380________________________________ (len_plasma_debye_electron_profile380)_ 8.36737490346988865e-05 -Plasma_electron_Debye_length_at_point_381________________________________ (len_plasma_debye_electron_profile381)_ 8.34824313584061592e-05 -Plasma_electron_Debye_length_at_point_382________________________________ (len_plasma_debye_electron_profile382)_ 8.32906709003709540e-05 -Plasma_electron_Debye_length_at_point_383________________________________ (len_plasma_debye_electron_profile383)_ 8.30984783823612811e-05 -Plasma_electron_Debye_length_at_point_384________________________________ (len_plasma_debye_electron_profile384)_ 8.29058649719148873e-05 -Plasma_electron_Debye_length_at_point_385________________________________ (len_plasma_debye_electron_profile385)_ 8.27128422988730820e-05 -Plasma_electron_Debye_length_at_point_386________________________________ (len_plasma_debye_electron_profile386)_ 8.25194224725872284e-05 -Plasma_electron_Debye_length_at_point_387________________________________ (len_plasma_debye_electron_profile387)_ 8.23256180998297100e-05 -Plasma_electron_Debye_length_at_point_388________________________________ (len_plasma_debye_electron_profile388)_ 8.21314423034428306e-05 -Plasma_electron_Debye_length_at_point_389________________________________ (len_plasma_debye_electron_profile389)_ 8.19369087417610905e-05 -Plasma_electron_Debye_length_at_point_390________________________________ (len_plasma_debye_electron_profile390)_ 8.17420316288442692e-05 -Plasma_electron_Debye_length_at_point_391________________________________ (len_plasma_debye_electron_profile391)_ 8.15468257555614442e-05 -Plasma_electron_Debye_length_at_point_392________________________________ (len_plasma_debye_electron_profile392)_ 8.13513065115672269e-05 -Plasma_electron_Debye_length_at_point_393________________________________ (len_plasma_debye_electron_profile393)_ 8.11554899082157387e-05 -Plasma_electron_Debye_length_at_point_394________________________________ (len_plasma_debye_electron_profile394)_ 8.09593926024588254e-05 -Plasma_electron_Debye_length_at_point_395________________________________ (len_plasma_debye_electron_profile395)_ 8.07630319217792381e-05 -Plasma_electron_Debye_length_at_point_396________________________________ (len_plasma_debye_electron_profile396)_ 8.05664258902122576e-05 -Plasma_electron_Debye_length_at_point_397________________________________ (len_plasma_debye_electron_profile397)_ 8.03695932555119385e-05 -Plasma_electron_Debye_length_at_point_398________________________________ (len_plasma_debye_electron_profile398)_ 8.01725535175233650e-05 -Plasma_electron_Debye_length_at_point_399________________________________ (len_plasma_debye_electron_profile399)_ 7.99753269578246714e-05 -Plasma_electron_Debye_length_at_point_400________________________________ (len_plasma_debye_electron_profile400)_ 7.97779346707077524e-05 -Plasma_electron_Debye_length_at_point_401________________________________ (len_plasma_debye_electron_profile401)_ 7.95803985955713649e-05 -Plasma_electron_Debye_length_at_point_402________________________________ (len_plasma_debye_electron_profile402)_ 7.93827415508047363e-05 -Plasma_electron_Debye_length_at_point_403________________________________ (len_plasma_debye_electron_profile403)_ 7.91849872692460032e-05 -Plasma_electron_Debye_length_at_point_404________________________________ (len_plasma_debye_electron_profile404)_ 7.89871604353051585e-05 -Plasma_electron_Debye_length_at_point_405________________________________ (len_plasma_debye_electron_profile405)_ 7.87892867238483118e-05 -Plasma_electron_Debye_length_at_point_406________________________________ (len_plasma_debye_electron_profile406)_ 7.85913928409467640e-05 -Plasma_electron_Debye_length_at_point_407________________________________ (len_plasma_debye_electron_profile407)_ 7.83935065666025956e-05 -Plasma_electron_Debye_length_at_point_408________________________________ (len_plasma_debye_electron_profile408)_ 7.81956567995704797e-05 -Plasma_electron_Debye_length_at_point_409________________________________ (len_plasma_debye_electron_profile409)_ 7.79978736044056181e-05 -Plasma_electron_Debye_length_at_point_410________________________________ (len_plasma_debye_electron_profile410)_ 7.78001882608772588e-05 -Plasma_electron_Debye_length_at_point_411________________________________ (len_plasma_debye_electron_profile411)_ 7.76026333158992825e-05 -Plasma_electron_Debye_length_at_point_412________________________________ (len_plasma_debye_electron_profile412)_ 7.74052426381413854e-05 -Plasma_electron_Debye_length_at_point_413________________________________ (len_plasma_debye_electron_profile413)_ 7.72080514754988818e-05 -Plasma_electron_Debye_length_at_point_414________________________________ (len_plasma_debye_electron_profile414)_ 7.70110965156141028e-05 -Plasma_electron_Debye_length_at_point_415________________________________ (len_plasma_debye_electron_profile415)_ 7.68144159496595899e-05 -Plasma_electron_Debye_length_at_point_416________________________________ (len_plasma_debye_electron_profile416)_ 7.66180495396128131e-05 -Plasma_electron_Debye_length_at_point_417________________________________ (len_plasma_debye_electron_profile417)_ 7.64220386892727272e-05 -Plasma_electron_Debye_length_at_point_418________________________________ (len_plasma_debye_electron_profile418)_ 7.62264265192927831e-05 -Plasma_electron_Debye_length_at_point_419________________________________ (len_plasma_debye_electron_profile419)_ 7.60312579465315162e-05 -Plasma_electron_Debye_length_at_point_420________________________________ (len_plasma_debye_electron_profile420)_ 7.58365797680519098e-05 -Plasma_electron_Debye_length_at_point_421________________________________ (len_plasma_debye_electron_profile421)_ 7.56424407501340946e-05 -Plasma_electron_Debye_length_at_point_422________________________________ (len_plasma_debye_electron_profile422)_ 7.54488917227046421e-05 -Plasma_electron_Debye_length_at_point_423________________________________ (len_plasma_debye_electron_profile423)_ 7.52559856796284504e-05 -Plasma_electron_Debye_length_at_point_424________________________________ (len_plasma_debye_electron_profile424)_ 7.50637778853581201e-05 -Plasma_electron_Debye_length_at_point_425________________________________ (len_plasma_debye_electron_profile425)_ 7.48723259884919351e-05 -Plasma_electron_Debye_length_at_point_426________________________________ (len_plasma_debye_electron_profile426)_ 7.46816901428546201e-05 -Plasma_electron_Debye_length_at_point_427________________________________ (len_plasma_debye_electron_profile427)_ 7.44919331367884495e-05 -Plasma_electron_Debye_length_at_point_428________________________________ (len_plasma_debye_electron_profile428)_ 7.43031205314259011e-05 -Plasma_electron_Debye_length_at_point_429________________________________ (len_plasma_debye_electron_profile429)_ 7.41153208088113238e-05 -Plasma_electron_Debye_length_at_point_430________________________________ (len_plasma_debye_electron_profile430)_ 7.39286055308513326e-05 -Plasma_electron_Debye_length_at_point_431________________________________ (len_plasma_debye_electron_profile431)_ 7.37430495102025802e-05 -Plasma_electron_Debye_length_at_point_432________________________________ (len_plasma_debye_electron_profile432)_ 7.35587309943574010e-05 -Plasma_electron_Debye_length_at_point_433________________________________ (len_plasma_debye_electron_profile433)_ 7.33757318643633779e-05 -Plasma_electron_Debye_length_at_point_434________________________________ (len_plasma_debye_electron_profile434)_ 7.31941378498215549e-05 -Plasma_electron_Debye_length_at_point_435________________________________ (len_plasma_debye_electron_profile435)_ 7.30140387620512428e-05 -Plasma_electron_Debye_length_at_point_436________________________________ (len_plasma_debye_electron_profile436)_ 7.28355287476001502e-05 -Plasma_electron_Debye_length_at_point_437________________________________ (len_plasma_debye_electron_profile437)_ 7.26587065646223430e-05 -Plasma_electron_Debye_length_at_point_438________________________________ (len_plasma_debye_electron_profile438)_ 7.24836758850596480e-05 -Plasma_electron_Debye_length_at_point_439________________________________ (len_plasma_debye_electron_profile439)_ 7.23105456260562761e-05 -Plasma_electron_Debye_length_at_point_440________________________________ (len_plasma_debye_electron_profile440)_ 7.21394303146364577e-05 -Plasma_electron_Debye_length_at_point_441________________________________ (len_plasma_debye_electron_profile441)_ 7.19704504904014288e-05 -Plasma_electron_Debye_length_at_point_442________________________________ (len_plasma_debye_electron_profile442)_ 7.18037331518931078e-05 -Plasma_electron_Debye_length_at_point_443________________________________ (len_plasma_debye_electron_profile443)_ 7.16394122533661927e-05 -Plasma_electron_Debye_length_at_point_444________________________________ (len_plasma_debye_electron_profile444)_ 7.14776292600694869e-05 -Plasma_electron_Debye_length_at_point_445________________________________ (len_plasma_debye_electron_profile445)_ 7.13185337718317311e-05 -Plasma_electron_Debye_length_at_point_446________________________________ (len_plasma_debye_electron_profile446)_ 7.11622842268820957e-05 -Plasma_electron_Debye_length_at_point_447________________________________ (len_plasma_debye_electron_profile447)_ 7.10090487005440288e-05 -Plasma_electron_Debye_length_at_point_448________________________________ (len_plasma_debye_electron_profile448)_ 7.08590058169120091e-05 -Plasma_electron_Debye_length_at_point_449________________________________ (len_plasma_debye_electron_profile449)_ 7.07123457961104110e-05 -Plasma_electron_Debye_length_at_point_450________________________________ (len_plasma_debye_electron_profile450)_ 7.05692716656062922e-05 -Plasma_electron_Debye_length_at_point_451________________________________ (len_plasma_debye_electron_profile451)_ 7.04300006718169331e-05 -Plasma_electron_Debye_length_at_point_452________________________________ (len_plasma_debye_electron_profile452)_ 7.02947659386647623e-05 -Plasma_electron_Debye_length_at_point_453________________________________ (len_plasma_debye_electron_profile453)_ 7.01638184338808872e-05 -Plasma_electron_Debye_length_at_point_454________________________________ (len_plasma_debye_electron_profile454)_ 7.00374293233827194e-05 -Plasma_electron_Debye_length_at_point_455________________________________ (len_plasma_debye_electron_profile455)_ 6.99158928214575640e-05 -Plasma_electron_Debye_length_at_point_456________________________________ (len_plasma_debye_electron_profile456)_ 6.97995296836881871e-05 -Plasma_electron_Debye_length_at_point_457________________________________ (len_plasma_debye_electron_profile457)_ 6.96886915468424695e-05 -Plasma_electron_Debye_length_at_point_458________________________________ (len_plasma_debye_electron_profile458)_ 6.95837664056842242e-05 -Plasma_electron_Debye_length_at_point_459________________________________ (len_plasma_debye_electron_profile459)_ 6.94851856485187100e-05 -Plasma_electron_Debye_length_at_point_460________________________________ (len_plasma_debye_electron_profile460)_ 6.93934332825188905e-05 -Plasma_electron_Debye_length_at_point_461________________________________ (len_plasma_debye_electron_profile461)_ 6.93090583241735852e-05 -Plasma_electron_Debye_length_at_point_462________________________________ (len_plasma_debye_electron_profile462)_ 6.92326919214694377e-05 -Plasma_electron_Debye_length_at_point_463________________________________ (len_plasma_debye_electron_profile463)_ 6.91650718430245504e-05 -Plasma_electron_Debye_length_at_point_464________________________________ (len_plasma_debye_electron_profile464)_ 6.91070790246962522e-05 -Plasma_electron_Debye_length_at_point_465________________________________ (len_plasma_debye_electron_profile465)_ 6.90597951370453759e-05 -Plasma_electron_Debye_length_at_point_466________________________________ (len_plasma_debye_electron_profile466)_ 6.90245999596896849e-05 -Plasma_electron_Debye_length_at_point_467________________________________ (len_plasma_debye_electron_profile467)_ 6.90033532272855998e-05 -Plasma_electron_Debye_length_at_point_468________________________________ (len_plasma_debye_electron_profile468)_ 6.89987888179042038e-05 -Plasma_electron_Debye_length_at_point_469________________________________ (len_plasma_debye_electron_profile469)_ 6.90156232037711430e-05 -Plasma_electron_Debye_length_at_point_470________________________________ (len_plasma_debye_electron_profile470)_ 6.90673425992584190e-05 -Plasma_electron_Debye_length_at_point_471________________________________ (len_plasma_debye_electron_profile471)_ 6.83987733990311695e-05 -Plasma_electron_Debye_length_at_point_472________________________________ (len_plasma_debye_electron_profile472)_ 6.77044494938571889e-05 -Plasma_electron_Debye_length_at_point_473________________________________ (len_plasma_debye_electron_profile473)_ 6.69827384222933942e-05 -Plasma_electron_Debye_length_at_point_474________________________________ (len_plasma_debye_electron_profile474)_ 6.62318550493058104e-05 -Plasma_electron_Debye_length_at_point_475________________________________ (len_plasma_debye_electron_profile475)_ 6.54498417717006324e-05 -Plasma_electron_Debye_length_at_point_476________________________________ (len_plasma_debye_electron_profile476)_ 6.46345453220490508e-05 -Plasma_electron_Debye_length_at_point_477________________________________ (len_plasma_debye_electron_profile477)_ 6.37835894238101707e-05 -Plasma_electron_Debye_length_at_point_478________________________________ (len_plasma_debye_electron_profile478)_ 6.28943423464881513e-05 -Plasma_electron_Debye_length_at_point_479________________________________ (len_plasma_debye_electron_profile479)_ 6.19638781382965105e-05 -Plasma_electron_Debye_length_at_point_480________________________________ (len_plasma_debye_electron_profile480)_ 6.09889299482946391e-05 -Plasma_electron_Debye_length_at_point_481________________________________ (len_plasma_debye_electron_profile481)_ 5.99658333512791911e-05 -Plasma_electron_Debye_length_at_point_482________________________________ (len_plasma_debye_electron_profile482)_ 5.88904568987327494e-05 -Plasma_electron_Debye_length_at_point_483________________________________ (len_plasma_debye_electron_profile483)_ 5.77581161497306466e-05 -Plasma_electron_Debye_length_at_point_484________________________________ (len_plasma_debye_electron_profile484)_ 5.65634660506043183e-05 -Plasma_electron_Debye_length_at_point_485________________________________ (len_plasma_debye_electron_profile485)_ 5.53003645159692370e-05 -Plasma_electron_Debye_length_at_point_486________________________________ (len_plasma_debye_electron_profile486)_ 5.39616970677597699e-05 -Plasma_electron_Debye_length_at_point_487________________________________ (len_plasma_debye_electron_profile487)_ 5.25391478333605769e-05 -Plasma_electron_Debye_length_at_point_488________________________________ (len_plasma_debye_electron_profile488)_ 5.10228950953374430e-05 -Plasma_electron_Debye_length_at_point_489________________________________ (len_plasma_debye_electron_profile489)_ 4.94011981629616226e-05 -Plasma_electron_Debye_length_at_point_490________________________________ (len_plasma_debye_electron_profile490)_ 4.76598233568572679e-05 -Plasma_electron_Debye_length_at_point_491________________________________ (len_plasma_debye_electron_profile491)_ 4.57812241201833233e-05 -Plasma_electron_Debye_length_at_point_492________________________________ (len_plasma_debye_electron_profile492)_ 4.37433310422662494e-05 -Plasma_electron_Debye_length_at_point_493________________________________ (len_plasma_debye_electron_profile493)_ 4.15176946657215749e-05 -Plasma_electron_Debye_length_at_point_494________________________________ (len_plasma_debye_electron_profile494)_ 3.90664942779882915e-05 -Plasma_electron_Debye_length_at_point_495________________________________ (len_plasma_debye_electron_profile495)_ 3.63374198134213457e-05 -Plasma_electron_Debye_length_at_point_496________________________________ (len_plasma_debye_electron_profile496)_ 3.32541992221823272e-05 -Plasma_electron_Debye_length_at_point_497________________________________ (len_plasma_debye_electron_profile497)_ 2.96970944839207183e-05 -Plasma_electron_Debye_length_at_point_498________________________________ (len_plasma_debye_electron_profile498)_ 2.54560245848832641e-05 -Plasma_electron_Debye_length_at_point_499________________________________ (len_plasma_debye_electron_profile499)_ 2.00856697568761105e-05 -Plasma_electron_Debye_length_at_point_500________________________________ (len_plasma_debye_electron_profile500)_ 1.21427166971733408e-05 -Volume_averaged_deuteron_isotropic_toroidal_Larmor_radius_(m)____________ (radius_plasma_deuteron_toroidal_larmor_isotropic_vol_avg)_ 6.52230653681552374e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_0_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile0)_ 3.86228337691311074e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_1_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1)_ 6.46929213669677409e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_2_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile2)_ 8.30022458807640889e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_3_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile3)_ 9.80017121949164653e-04 -Plasma_deuteron_isotropic_Larmor_radius_at_point_4_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile4)_ 1.11040886488865485e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_5_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile5)_ 1.22746150752264718e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_6_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile6)_ 1.33468980778145545e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_7_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile7)_ 1.43429942654176436e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_8_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile8)_ 1.52778180624757996e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_9_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile9)_ 1.61620100770613439e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_10______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile10)_ 1.70034755313787670e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_11______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile11)_ 1.78082766374554032e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_12______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile12)_ 1.85811824261686775e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_13______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile13)_ 1.93260242046393955e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_14______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile14)_ 2.00459345298761643e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_15______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile15)_ 2.07435132015947434e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_16______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile16)_ 2.14209457910943118e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_17______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile17)_ 2.20800903032874118e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_18______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile18)_ 2.27225418559277035e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_19______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile19)_ 2.33496818183915895e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_20______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile20)_ 2.39627157586044413e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_21______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile21)_ 2.45627031405879371e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_22______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile22)_ 2.51505808867260065e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_23______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile23)_ 2.57271822657023554e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_24______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile24)_ 2.62932522041503525e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_25______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile25)_ 2.68494598109459293e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_26______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile26)_ 2.73964087064132835e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_27______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile27)_ 2.79346456196625246e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_28______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile28)_ 2.84646675802697558e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_29______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile29)_ 2.89869279927071214e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_30______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile30)_ 2.95018417845109397e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_31______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile31)_ 2.95507579516153616e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_32______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile32)_ 2.96144715395276923e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_33______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile33)_ 2.96872882319410220e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_34______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile34)_ 2.97672401462934638e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_35______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile35)_ 2.98531969661473915e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_36______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile36)_ 2.99443958418772445e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_37______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile37)_ 3.00402746912634654e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_38______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile38)_ 3.01403954926445427e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_39______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile39)_ 3.02444033412680108e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_40______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile40)_ 3.03520022947915925e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_41______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile41)_ 3.04629400952153130e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_42______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile42)_ 3.05769979557193221e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_43______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile43)_ 3.06939834444582135e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_44______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile44)_ 3.08137253478704600e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_45______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile45)_ 3.09360698653596451e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_46______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile46)_ 3.10608777072995512e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_47______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile47)_ 3.11880218563667872e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_48______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile48)_ 3.13173857843615684e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_49______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile49)_ 3.14488620382845753e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_50______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile50)_ 3.15823510806853992e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_51______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile51)_ 3.17177603378040627e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_52______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile52)_ 3.18550034081445865e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_53______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile53)_ 3.19939993995830164e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_54______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile54)_ 3.21346723617356791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_55______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile55)_ 3.22769508095947441e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_56______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile56)_ 3.24207673022404571e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_57______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile57)_ 3.25660580897411348e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_58______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile58)_ 3.27127627933841139e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_59______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile59)_ 3.28608241340102572e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_60______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile60)_ 3.30101876852977472e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_61______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile61)_ 3.31608016643090931e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_62______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile62)_ 3.33126167297577045e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_63______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile63)_ 3.34655858190690192e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_64______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile64)_ 3.36196639892376173e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_65______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile65)_ 3.37748082764804339e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_66______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile66)_ 3.39309775706128072e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_67______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile67)_ 3.40881325032485125e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_68______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile68)_ 3.42462353362500693e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_69______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile69)_ 3.44052498742744746e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_70______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile70)_ 3.45651413668526548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_71______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile71)_ 3.47258764392837033e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_72______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile72)_ 3.48874230058341664e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_73______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile73)_ 3.50497502100380635e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_74______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile74)_ 3.52128283570491774e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_75______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile75)_ 3.53766288552511809e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_76______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile76)_ 3.55411241601700763e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_77______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile77)_ 3.57062877247267063e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_78______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile78)_ 3.58720939494601475e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_79______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile79)_ 3.60385181395324241e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_80______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile80)_ 3.62055364599122480e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_81______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile81)_ 3.63731259027720751e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_82______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile82)_ 3.65412642397747959e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_83______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile83)_ 3.67099299962807182e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_84______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile84)_ 3.68791024173878174e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_85______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile85)_ 3.70487614301753679e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_86______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile86)_ 3.72188876246314646e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_87______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile87)_ 3.73894622180804409e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_88______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile88)_ 3.75604670325584882e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_89______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile89)_ 3.77318844692857381e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_90______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile90)_ 3.79036974873594263e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_91______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile91)_ 3.80758895768898041e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_92______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile92)_ 3.82484447429113673e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_93______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile93)_ 3.84213474822517548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_94______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile94)_ 3.85945827645736272e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_95______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile95)_ 3.87681360179982894e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_96______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile96)_ 3.89419931039044348e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_97______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile97)_ 3.91161403116826317e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_98______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile98)_ 3.92905643299610446e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_99______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile99)_ 3.94652522436882494e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_100_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile100)_ 3.96401915110998482e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_101_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile101)_ 3.98153699561605914e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_102_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile102)_ 3.99907757512120345e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_103_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile103)_ 4.01663974038802413e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_104_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile104)_ 4.03422237519226404e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_105_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile105)_ 4.05182439436467534e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_106_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile106)_ 4.06944474314650893e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_107_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile107)_ 4.08708239588003331e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_108_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile108)_ 4.10473635546244539e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_109_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile109)_ 4.12240565188216543e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_110_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile110)_ 4.14008934130928336e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_111_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile111)_ 4.15778650559233288e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_112_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile112)_ 4.17549625118877887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_113_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile113)_ 4.19321770820417408e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_114_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile114)_ 4.21095002974408890e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_115_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile115)_ 4.22869239116267608e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_116_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile116)_ 4.24644398957399992e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_117_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile117)_ 4.26420404244047015e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_118_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile118)_ 4.28197178765605917e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_119_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile119)_ 4.29974648258984408e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_120_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile120)_ 4.31752740323485505e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_121_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile121)_ 4.33531384413564369e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_122_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile122)_ 4.35310511735302087e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_123_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile123)_ 4.37090055209443835e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_124_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile124)_ 4.38869949406054619e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_125_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile125)_ 4.40650130513683697e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_126_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile126)_ 4.42430536271292991e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_127_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile127)_ 4.44211105939007651e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_128_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile128)_ 4.45991780202976713e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_129_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile129)_ 4.47772501216481354e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_130_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile130)_ 4.49553212466447579e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_131_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile131)_ 4.51333858789308446e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_132_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile132)_ 4.53114386303381158e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_133_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile133)_ 4.54894742399248025e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_134_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile134)_ 4.56674875658270429e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_135_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile135)_ 4.58454735848659502e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_136_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile136)_ 4.60234273893446368e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_137_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile137)_ 4.62013441806421402e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_138_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile138)_ 4.63792192707073586e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_139_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile139)_ 4.65570480740293887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_140_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile140)_ 4.67348261066310219e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_141_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile141)_ 4.69125489820716030e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_142_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile142)_ 4.70902124135334516e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_143_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile143)_ 4.72678122025919738e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_144_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile144)_ 4.74453442444105946e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_145_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile145)_ 4.76228045194211549e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_146_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile146)_ 4.78001890953549859e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_147_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile147)_ 4.79774941213854597e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_148_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile148)_ 4.81547158272384052e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_149_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile149)_ 4.83318505212644665e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_150_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile150)_ 4.85088945864289248e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_151_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile151)_ 4.86858444818515177e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_152_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile152)_ 4.88626967359056912e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_153_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile153)_ 4.90394479484567228e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_154_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile154)_ 4.92160947861530230e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_155_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile155)_ 4.93926339830224291e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_156_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile156)_ 4.95690623356304701e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_157_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile157)_ 4.97453767020621107e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_158_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile158)_ 4.99215740048865927e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_159_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile159)_ 5.00976512216098121e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_160_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile160)_ 5.02736053895763788e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_161_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile161)_ 5.04494336000421619e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_162_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile162)_ 5.06251330008079727e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_163_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile163)_ 5.08007007901525517e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_164_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile164)_ 5.09761342207421583e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_165_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile165)_ 5.11514305925898048e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_166_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile166)_ 5.13265872549377705e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_167_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile167)_ 5.15016016048437317e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_168_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile168)_ 5.16764710878382487e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_169_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile169)_ 5.18511931889665666e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_170_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile170)_ 5.20257654425155397e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_171_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile171)_ 5.22001854220731105e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_172_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile172)_ 5.23744507443342413e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_173_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile173)_ 5.25485590643382829e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_174_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile174)_ 5.27225080796890015e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_175_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile175)_ 5.28962955227851427e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_176_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile176)_ 5.30699191662813412e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_177_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile177)_ 5.32433768173936478e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_178_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile178)_ 5.34166663193231476e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_179_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile179)_ 5.35897855500541264e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_180_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile180)_ 5.37627324203644903e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_181_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile181)_ 5.39355048742690135e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_182_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile182)_ 5.41081008870581727e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_183_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile183)_ 5.42805184671626972e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_184_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile184)_ 5.44527556504116345e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_185_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile185)_ 5.46248105049235155e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_186_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile186)_ 5.47966811245999101e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_187_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile187)_ 5.49683656342220966e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_188_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile188)_ 5.51398621841750567e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_189_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile189)_ 5.53111689529597970e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_190_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile190)_ 5.54822841423570703e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_191_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile191)_ 5.56532059829251136e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_192_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile192)_ 5.58239327272043711e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_193_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile193)_ 5.59944626522569568e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_194_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile194)_ 5.61647940610061989e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_195_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile195)_ 5.63349252755010639e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_196_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile196)_ 5.65048546439950606e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_197_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile197)_ 5.66745805330558152e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_198_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile198)_ 5.68441013320892131e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_199_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile199)_ 5.70134154507840208e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_200_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile200)_ 5.71825213195120089e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_201_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile201)_ 5.73514173883615287e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_202_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile202)_ 5.75201021255966095e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_203_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile203)_ 5.76885740202201600e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_204_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile204)_ 5.78568315767407151e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_205_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile205)_ 5.80248733193057011e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_206_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile206)_ 5.81926977897917475e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_207_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile207)_ 5.83603035451368650e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_208_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile208)_ 5.85276891608879808e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_209_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile209)_ 5.86948532279592955e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_210_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile210)_ 5.88617943521194033e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_211_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile211)_ 5.90285111554132106e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_212_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile212)_ 5.91950022748788298e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_213_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile213)_ 5.93612663618530920e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_214_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile214)_ 5.95273020818606891e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_215_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile215)_ 5.96931081146979178e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_216_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile216)_ 5.98586831539426288e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_217_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile217)_ 6.00240259051287167e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_218_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile218)_ 6.01891350891006500e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_219_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile219)_ 6.03540094365559096e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_220_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile220)_ 6.05186476925528589e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_221_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile221)_ 6.06830486127900477e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_222_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile222)_ 6.08472109663890561e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_223_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile223)_ 6.10111335314288909e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_224_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile224)_ 6.11748150994459883e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_225_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile225)_ 6.13382544719305936e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_226_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile226)_ 6.15014504614001725e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_227_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile227)_ 6.16644018890558521e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_228_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile228)_ 6.18271075890816646e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_229_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile229)_ 6.19895664027046624e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_230_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile230)_ 6.21517771834413212e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_231_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile231)_ 6.23137387924972610e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_232_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile232)_ 6.24754501004190586e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_233_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile233)_ 6.26369099862881390e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_234_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile234)_ 6.27981173395560175e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_235_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile235)_ 6.29590710571683535e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_236_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile236)_ 6.31197700440888632e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_237_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile237)_ 6.32802132138208292e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_238_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile238)_ 6.34403994878018126e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_239_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile239)_ 6.36003277953647601e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_240_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile240)_ 6.37599970725771618e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_241_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile241)_ 6.39194062642667489e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_242_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile242)_ 6.40785543213659610e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_243_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile243)_ 6.42374402020051780e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_244_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile244)_ 6.43960628714818680e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_245_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile245)_ 6.45544213011126165e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_246_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile246)_ 6.47125144689538086e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_247_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile247)_ 6.48703413599614753e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_248_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile248)_ 6.50279009659652033e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_249_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile249)_ 6.51851922824845699e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_250_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile250)_ 6.53422143118734602e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_251_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile251)_ 6.54989660638526615e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_252_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile252)_ 6.56554465515931177e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_253_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile253)_ 6.58116547959663317e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_254_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile254)_ 6.59675898201534522e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_255_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile255)_ 6.61232506555586852e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_256_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile256)_ 6.62786363362411791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_257_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile257)_ 6.64337459031576465e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_258_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile258)_ 6.65885784008226397e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_259_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile259)_ 6.67431328784086082e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_260_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile260)_ 6.68974083913941812e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_261_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile261)_ 6.70514039978675411e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_262_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile262)_ 6.72051187605485646e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_263_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile263)_ 6.73585517471485609e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_264_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile264)_ 6.75117020281568777e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_265_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile265)_ 6.76645686794105031e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_266_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile266)_ 6.78171507809840687e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_267_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile267)_ 6.79694474160850211e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_268_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile268)_ 6.81214576699537468e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_269_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile269)_ 6.82731806349930713e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_270_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile270)_ 6.84246154038021994e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_271_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile271)_ 6.85757610748549771e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_272_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile272)_ 6.87266167488367365e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_273_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile273)_ 6.88771815288309348e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_274_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile274)_ 6.90274545236077564e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_275_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile275)_ 6.91774348425104688e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_276_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile276)_ 6.93271215992931171e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_277_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile277)_ 6.94765139095681553e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_278_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile278)_ 6.96256108937258998e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_279_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile279)_ 6.97744116722006681e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_280_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile280)_ 6.99229153700297017e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_281_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile281)_ 7.00711211148522927e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_282_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile282)_ 7.02190280360063656e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_283_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile283)_ 7.03666352658070295e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_284_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile284)_ 7.05139419386433680e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_285_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile285)_ 7.06609471906225091e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_286_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile286)_ 7.08076501621156870e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_287_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile287)_ 7.09540499944981765e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_288_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile288)_ 7.11001458301594239e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_289_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile289)_ 7.12459368152284535e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_290_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile290)_ 7.13914220977681594e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_291_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile291)_ 7.15366008259750701e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_292_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile292)_ 7.16814721516262181e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_293_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile293)_ 7.18260352282771349e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_294_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile294)_ 7.19702892109094772e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_295_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile295)_ 7.21142332559409314e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_296_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile296)_ 7.22578665217763795e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_297_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile297)_ 7.24011881673739498e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_298_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile298)_ 7.25441973556822418e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_299_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile299)_ 7.26868932484192685e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_300_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile300)_ 7.28292750098709796e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_301_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile301)_ 7.29713418070793065e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_302_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile302)_ 7.31130928064303506e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_303_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile303)_ 7.32545271758279926e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_304_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile304)_ 7.33956440852438254e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_305_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile305)_ 7.35364427056478531e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_306_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile306)_ 7.36769222093794883e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_307_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile307)_ 7.38170817692602836e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_308_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile308)_ 7.39569205591452360e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_309_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile309)_ 7.40964377546522723e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_310_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile310)_ 7.42356325315577520e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_311_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile311)_ 7.43745040677825427e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_312_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile312)_ 7.45130515403536961e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_313_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile313)_ 7.46512741293628868e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_314_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile314)_ 7.47891710133156019e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_315_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile315)_ 7.49267413738048151e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_316_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile316)_ 7.50639843915796700e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_317_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile317)_ 7.52008992487083854e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_318_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile318)_ 7.53374851280527637e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_319_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile319)_ 7.54737412134592368e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_320_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile320)_ 7.56096666870876340e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_321_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile321)_ 7.57452607351491534e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_322_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile322)_ 7.58805225421930931e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_323_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile323)_ 7.60154512939822252e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_324_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile324)_ 7.61500461758958264e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_325_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile325)_ 7.62843063749086246e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_326_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile326)_ 7.64182310779942895e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_327_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile327)_ 7.65518194717816451e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_328_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile328)_ 7.66850707447098556e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_329_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile329)_ 7.68179840840055566e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_330_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile330)_ 7.69505586787302704e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_331_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile331)_ 7.70827937176508330e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_332_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile332)_ 7.72146883881820803e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_333_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile333)_ 7.73462418799674648e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_334_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile334)_ 7.74774533827503244e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_335_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile335)_ 7.76083220851384557e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_336_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile336)_ 7.77388471760435268e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_337_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile337)_ 7.78690278464754318e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_338_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile338)_ 7.79988632854550831e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_339_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile339)_ 7.81283526823444568e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_340_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile340)_ 7.82574952281051527e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_341_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile341)_ 7.83862901101455706e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_342_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile342)_ 7.85147365199916417e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_343_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile343)_ 7.86428336474213896e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_344_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile344)_ 7.87705806813683573e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_345_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile345)_ 7.88979768113580449e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_346_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile346)_ 7.90250212273414104e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_347_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile347)_ 7.91517131182832914e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_348_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile348)_ 7.92780516735980441e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_349_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile349)_ 7.94040360822716000e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_350_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile350)_ 7.95296655325178348e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_351_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile351)_ 7.96549392146361952e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_352_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile352)_ 7.97798563147980068e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_353_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile353)_ 7.99044160232396591e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_354_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile354)_ 8.00286175259153770e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_355_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile355)_ 8.01524600119777643e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_356_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile356)_ 8.02759426684543018e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_357_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile357)_ 8.03990646811483453e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_358_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile358)_ 8.05218252383835091e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_359_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile359)_ 8.06442235249705056e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_360_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile360)_ 8.07662587277292732e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_361_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile361)_ 8.08879300312335438e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_362_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile362)_ 8.10092366226210052e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_363_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile363)_ 8.11301776839614720e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_364_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile364)_ 8.12507524007989763e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_365_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile365)_ 8.13709599575411675e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_366_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile366)_ 8.14907995364039239e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_367_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile367)_ 8.16102703204429035e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_368_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile368)_ 8.17293714926754615e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_369_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile369)_ 8.18481022334251879e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_370_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile370)_ 8.19664617247752199e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_371_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile371)_ 8.20844491479122591e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_372_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile372)_ 8.22020636829594135e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_373_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile373)_ 8.23193045080969875e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_374_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile374)_ 8.24361708038381588e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_375_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile375)_ 8.25526617480621359e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_376_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile376)_ 8.26687765178011312e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_377_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile377)_ 8.27845142903164272e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_378_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile378)_ 8.28998742436412063e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_379_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile379)_ 8.30148555509012918e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_380_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile380)_ 8.31294573893909781e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_381_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile381)_ 8.32436789324040791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_382_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile382)_ 8.33575193545769283e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_383_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile383)_ 8.34709778276297200e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_384_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile384)_ 8.35840535246430705e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_385_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile385)_ 8.36967456175774852e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_386_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile386)_ 8.38090532762142924e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_387_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile387)_ 8.39209756706544435e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_388_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile388)_ 8.40325119711494116e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_389_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile389)_ 8.41436613449068373e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_390_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile390)_ 8.42544229607248944e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_391_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile391)_ 8.43647959841957798e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_392_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile392)_ 8.44747795825187726e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_393_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile393)_ 8.45843729202366314e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_394_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile394)_ 8.46935751619131393e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_395_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile395)_ 8.48023854708946680e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_396_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile396)_ 8.49108030096737930e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_397_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile397)_ 8.50188269402528569e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_398_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile398)_ 8.51264564236172382e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_399_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile399)_ 8.52336906195639774e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_400_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile400)_ 8.53405286868870634e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_401_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile401)_ 8.54469697849888701e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_402_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile402)_ 8.55530130688953762e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_403_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile403)_ 8.56586576969288471e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_404_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile404)_ 8.57639028232263720e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_405_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile405)_ 8.58687476029172843e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_406_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile406)_ 8.59731911882056186e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_407_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile407)_ 8.60772327330150931e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_408_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile408)_ 8.61808713879992291e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_409_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile409)_ 8.62841063032235289e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_410_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile410)_ 8.63869366290649122e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_411_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile411)_ 8.64893615138965371e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_412_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile412)_ 8.65913801048070857e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_413_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile413)_ 8.66929915479635639e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_414_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile414)_ 8.67941949884380899e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_415_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile415)_ 8.68949895711072957e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_416_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile416)_ 8.69953744390487317e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_417_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile417)_ 8.70953487353343277e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_418_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile418)_ 8.71949115992782554e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_419_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile419)_ 8.72940621721669981e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_420_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile420)_ 8.73927995929704889e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_421_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile421)_ 8.74911229979868574e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_422_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile422)_ 8.75890315262197600e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_423_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile423)_ 8.76865243115025096e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_424_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile424)_ 8.77836004891297678e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_425_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile425)_ 8.78802591919199474e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_426_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile426)_ 8.79764995527289491e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_427_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile427)_ 8.80723207023023300e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_428_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile428)_ 8.81677217705343144e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_429_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile429)_ 8.82627018852148899e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_430_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile430)_ 8.83572601756241367e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_431_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile431)_ 8.84513957667906053e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_432_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile432)_ 8.85451077848813280e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_433_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile433)_ 8.86383953532535879e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_434_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile434)_ 8.87312575942538449e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_435_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile435)_ 8.88236936310200786e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_436_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile436)_ 8.89157025822685625e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_437_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile437)_ 8.90072835673324549e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_438_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile438)_ 8.90984357058072739e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_439_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile439)_ 8.91891581119705346e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_440_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile440)_ 8.92794499027075791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_441_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile441)_ 8.93693101915703052e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_442_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile442)_ 8.94587380925637721e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_443_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile443)_ 8.95477327160006283e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_444_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile444)_ 8.96362931721090758e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_445_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile445)_ 8.97244185708562583e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_446_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile446)_ 8.98121080199643443e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_447_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile447)_ 8.98993606259948508e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_448_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile448)_ 8.99861754930842903e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_449_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile449)_ 9.00725517261993791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_450_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile450)_ 9.01584884271611903e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_451_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile451)_ 9.02439846984443364e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_452_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile452)_ 9.03290396377481181e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_453_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile453)_ 9.04136523457819974e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_454_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile454)_ 9.04978219190239429e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_455_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile455)_ 9.05815474531607330e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_456_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile456)_ 9.06648280418192835e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_457_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile457)_ 9.07476627800148268e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_458_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile458)_ 9.08300507579816972e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_459_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile459)_ 9.09119910669806304e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_460_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile460)_ 9.09934827958497686e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_461_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile461)_ 9.10745250324572833e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_462_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile462)_ 9.11551168620641263e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_463_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile463)_ 9.12352573698695449e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_464_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile464)_ 9.13149456399208609e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_465_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile465)_ 9.13941807538376158e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_466_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile466)_ 9.14729617924492193e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_467_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile467)_ 9.15512878345186090e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_468_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile468)_ 9.16291579580171857e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_469_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile469)_ 9.17065712384815962e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_470_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile470)_ 9.17835267522987448e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_471_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile471)_ 9.18600235714086936e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_472_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile472)_ 9.19360607678680435e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_473_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile473)_ 9.20116374123882731e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_474_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile474)_ 9.20867525748833744e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_475_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile475)_ 9.21614053213555551e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_476_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile476)_ 9.22355947190186577e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_477_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile477)_ 9.23093198317185074e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_478_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile478)_ 9.23825797226778683e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_479_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile479)_ 9.24553734530273938e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_480_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile480)_ 9.25277000834550528e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_481_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile481)_ 9.25995586729194339e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_482_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile482)_ 9.26709482768071913e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_483_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile483)_ 9.27418679517089811e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_484_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile484)_ 9.28123167515571695e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_485_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile485)_ 9.28822937285408816e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_486_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile486)_ 9.29517979332860830e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_487_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile487)_ 9.30208284161434217e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_488_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile488)_ 9.30893842234969439e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_489_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile489)_ 9.31574644027397154e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_490_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile490)_ 9.32250679976575139e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_491_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile491)_ 9.32921940519322590e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_492_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile492)_ 9.33588416065518623e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_493_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile493)_ 9.34250097020243586e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_494_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile494)_ 9.34906973757830724e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_495_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile495)_ 9.35559036651439219e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_496_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile496)_ 9.36206276061924032e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_497_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile497)_ 9.36848682306239480e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_498_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile498)_ 9.37486245718605234e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_499_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile499)_ 9.38118956589220274e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_500_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile500)_ 9.38746805214343664e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_501_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile501)_ 9.39372219474979286e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_502_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile502)_ 9.39995194502398455e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_503_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile503)_ 9.40613284563563898e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_504_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile504)_ 9.41226479887109779e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_505_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile505)_ 9.41834770707586887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_506_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile506)_ 9.42438147215052952e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_507_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile507)_ 9.43036599616594445e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_508_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile508)_ 9.43630118074663578e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_509_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile509)_ 9.44218692738736480e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_510_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile510)_ 9.44802313756498875e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_511_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile511)_ 9.45380971243850975e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_512_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile512)_ 9.45954655311041434e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_513_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile513)_ 9.46523356040123408e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_514_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile514)_ 9.47087063511137597e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_515_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile515)_ 9.47645767766386489e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_516_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile516)_ 9.48199458857311786e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_517_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile517)_ 9.48748126793695634e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_518_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile518)_ 9.49291761581171935e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_519_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile519)_ 9.49830353208003242e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_520_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile520)_ 9.50363891643120524e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_521_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile521)_ 9.50892366826593810e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_522_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile522)_ 9.51415768709194115e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_523_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile523)_ 9.51934087203252371e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_524_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile524)_ 9.52447312201425665e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_525_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile525)_ 9.52955433589860838e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_526_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile526)_ 9.53458441231096882e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_527_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile527)_ 9.53956324979131007e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_528_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile528)_ 9.54449074650893375e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_529_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile529)_ 9.54936680073578507e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_530_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile530)_ 9.55419131031431425e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_531_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile531)_ 9.55896417297903873e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_532_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile532)_ 9.56368528629879776e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_533_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile533)_ 9.56835454782834459e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_534_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile534)_ 9.57297185463120391e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_535_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile535)_ 9.57753710383108317e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_536_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile536)_ 9.58205019226796538e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_537_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile537)_ 9.58651101666882152e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_538_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile538)_ 9.59091947351292662e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_539_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile539)_ 9.59527545916464240e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_540_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile540)_ 9.59957886970018263e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_541_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile541)_ 9.60382960104040791e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_542_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile542)_ 9.60802754906514393e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_543_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile543)_ 9.61217260934364194e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_544_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile544)_ 9.61626467730609426e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_545_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile545)_ 9.62030364808871830e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_546_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile546)_ 9.62428941689832604e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_547_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile547)_ 9.62822187839512678e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_548_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile548)_ 9.63210092734637958e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_549_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile549)_ 9.63592645825943513e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_550_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile550)_ 9.63969836551564589e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_551_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile551)_ 9.64341654300166461e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_552_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile552)_ 9.64708088488190618e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_553_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile553)_ 9.65069128476555953e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_554_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile554)_ 9.65424763628604937e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_555_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile555)_ 9.65774983269278124e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_556_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile556)_ 9.66119776727684433e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_557_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile557)_ 9.66459133302048114e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_558_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile558)_ 9.66793042273164649e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_559_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile559)_ 9.67121492892581043e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_560_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile560)_ 9.67444474403891808e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_561_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile561)_ 9.67761976044616452e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_562_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile562)_ 9.68073987007013470e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_563_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile563)_ 9.68380496482853202e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_564_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile564)_ 9.68681493622220412e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_565_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile565)_ 9.68976967597999506e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_566_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile566)_ 9.69266907519557470e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_567_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile567)_ 9.69551302493310008e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_568_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile568)_ 9.69830141626603325e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_569_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile569)_ 9.70103413972530845e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_570_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile570)_ 9.70371108586787906e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_571_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile571)_ 9.70633214507904754e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_572_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile572)_ 9.70889720737364015e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_573_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile573)_ 9.71140616282862440e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_574_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile574)_ 9.71385890098922997e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_575_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile575)_ 9.71625531149970800e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_576_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile576)_ 9.71859528370671612e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_577_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile577)_ 9.72087870679626438e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_578_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile578)_ 9.72310546965326518e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_579_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile579)_ 9.72527546109818765e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_580_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile580)_ 9.72738856960739945e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_581_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile581)_ 9.72944468374942195e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_582_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile582)_ 9.73144369144650183e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_583_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile583)_ 9.73338548084966629e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_584_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile584)_ 9.73526993973941601e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_585_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile585)_ 9.73709695556325416e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_586_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile586)_ 9.73886641591435211e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_587_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile587)_ 9.74057820788973294e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_588_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile588)_ 9.74223221850877528e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_589_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile589)_ 9.74382833451120298e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_590_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile590)_ 9.74536644253607733e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_591_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile591)_ 9.74684642901993935e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_592_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile592)_ 9.74826818021525335e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_593_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile593)_ 9.74963158214838671e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_594_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile594)_ 9.75093652053686880e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_595_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile595)_ 9.75218288105018927e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_596_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile596)_ 9.75337054920760380e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_597_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile597)_ 9.75449941007229364e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_598_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile598)_ 9.75556934881689590e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_599_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile599)_ 9.75658025019476849e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_600_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile600)_ 9.75753199898482179e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_601_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile601)_ 9.75842447939993286e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_602_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile602)_ 9.75925757594007202e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_603_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile603)_ 9.76003117251479646e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_604_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile604)_ 9.76074515301186135e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_605_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile605)_ 9.76139940111210407e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_606_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile606)_ 9.76199380026703152e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_607_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile607)_ 9.76252823371729674e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_608_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile608)_ 9.76300258455242362e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_609_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile609)_ 9.76341673566799920e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_610_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile610)_ 9.76377056972265768e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_611_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile611)_ 9.76406396928026880e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_612_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile612)_ 9.76429681649890364e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_613_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile613)_ 9.76446899362383956e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_614_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile614)_ 9.76458038242845362e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_615_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile615)_ 9.76463086477017371e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_616_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile616)_ 9.76462032205070544e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_617_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile617)_ 9.76454863558646156e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_618_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile618)_ 9.76441568662806889e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_619_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile619)_ 9.76422135606757821e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_620_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile620)_ 9.76396552456056631e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_621_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile621)_ 9.76364807281623198e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_622_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile622)_ 9.76326888109512944e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_623_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile623)_ 9.76282782970799672e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_624_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile624)_ 9.76232479838636848e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_625_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile625)_ 9.76175966724362153e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_626_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile626)_ 9.76113231570473194e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_627_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile627)_ 9.76044262317444025e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_628_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile628)_ 9.75969046897306840e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_629_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile629)_ 9.75887573220858215e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_630_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile630)_ 9.75799829156303797e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_631_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile631)_ 9.75705802588133775e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_632_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile632)_ 9.75605481366301729e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_633_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile633)_ 9.75498853316520732e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_634_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile634)_ 9.75385906242135295e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_635_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile635)_ 9.75266627955792380e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_636_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile636)_ 9.75141006226170649e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_637_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile637)_ 9.75009028809587473e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_638_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile638)_ 9.74870683460504761e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_639_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile639)_ 9.74725957895073054e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_640_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile640)_ 9.74574839803628648e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_641_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile641)_ 9.74417316906182711e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_642_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile642)_ 9.74253376849459896e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_643_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile643)_ 9.74083007298767213e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_644_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile644)_ 9.73906195879889469e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_645_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile645)_ 9.73722930230477152e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_646_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile646)_ 9.73533197933092696e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_647_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile647)_ 9.73336986588254835e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_648_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile648)_ 9.73134283768996994e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_649_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile649)_ 9.72925077009731583e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_650_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile650)_ 9.72709353871038275e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_651_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile651)_ 9.72487101848404367e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_652_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile652)_ 9.72258308474036742e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_653_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile653)_ 9.72022961216687659e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_654_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile654)_ 9.71781047557558272e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_655_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile655)_ 9.71532554955288792e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_656_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile656)_ 9.71277470850076367e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_657_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile657)_ 9.71015782674414414e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_658_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile658)_ 9.70747477835357669e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_659_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile659)_ 9.70472543731840283e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_660_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile660)_ 9.70190967756719667e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_661_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile661)_ 9.69902737278976503e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_662_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile662)_ 9.69607839632379530e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_663_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile663)_ 9.69306262188179661e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_664_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile664)_ 9.68997992259951722e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_665_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile665)_ 9.68683017167453267e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_666_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile666)_ 9.68361324221001310e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_667_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile667)_ 9.68032900692341290e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_668_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile668)_ 9.67697733865559989e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_669_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile669)_ 9.67355811014734140e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_670_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile670)_ 9.67007119385844896e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_671_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile671)_ 9.66651646212149211e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_672_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile672)_ 9.66289378740911760e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_673_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile673)_ 9.65920304188444545e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_674_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile674)_ 9.65544409753270154e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_675_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile675)_ 9.65161682642942664e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_676_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile676)_ 9.64772110035608949e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_677_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile677)_ 9.64375679118137374e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_678_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile678)_ 9.63972377058883341e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_679_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile679)_ 9.63562191011975953e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_680_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile680)_ 9.63145108137562073e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_681_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile681)_ 9.62721115576694805e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_682_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile682)_ 9.62290200471605309e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_683_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile683)_ 9.61852349929043574e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_684_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile684)_ 9.61407551093123106e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_685_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile685)_ 9.60955791072158790e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_686_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile686)_ 9.60497056972710664e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_687_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile687)_ 9.60031335897161206e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_688_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile688)_ 9.59558614950486305e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_689_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile689)_ 9.59078881212473318e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_690_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile690)_ 9.58592121788264147e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_691_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile691)_ 9.58098323748250887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_692_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile692)_ 9.57597474187987102e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_693_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile693)_ 9.57089560177173428e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_694_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile694)_ 9.56574568798900481e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_695_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile695)_ 9.56052487124006180e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_696_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile696)_ 9.55523302231886876e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_697_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile697)_ 9.54987001201103823e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_698_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile698)_ 9.54443571102237681e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_699_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile699)_ 9.53892999009452007e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_700_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile700)_ 9.53335271995713572e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_701_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile701)_ 9.52770377146813438e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_702_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile702)_ 9.52198301554292408e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_703_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile703)_ 9.51619032287009427e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_704_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile704)_ 9.51032556435844195e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_705_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile705)_ 9.50438861111414617e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_706_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile706)_ 9.49837933394221887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_707_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile707)_ 9.49229760403346584e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_708_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile708)_ 9.48614329251356962e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_709_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile709)_ 9.47991627063270170e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_710_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile710)_ 9.47361640969375529e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_711_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile711)_ 9.46724358105182837e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_712_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile712)_ 9.46079765616172907e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_713_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile713)_ 9.45427850681872066e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_714_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile714)_ 9.44768600470220418e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_715_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile715)_ 9.44102002161542782e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_716_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile716)_ 9.43428042972774793e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_717_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile717)_ 9.42746710121317687e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_718_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile718)_ 9.42057990824940288e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_719_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile719)_ 9.41361872345525784e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_720_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile720)_ 9.40658341955232305e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_721_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile721)_ 9.39947386941382933e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_722_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile722)_ 9.39228994618763677e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_723_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile723)_ 9.38503152312614858e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_724_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile724)_ 9.37769847370931685e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_725_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile725)_ 9.37029067191698373e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_726_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile726)_ 9.36280799161563933e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_727_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile727)_ 9.35525030719954256e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_728_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile728)_ 9.34761749319848109e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_729_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile729)_ 9.33990942462588694e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_730_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile730)_ 9.33212597646021318e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_731_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile731)_ 9.32426702434189028e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_732_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile732)_ 9.31633244412937052e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_733_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile733)_ 9.30832211187547671e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_734_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile734)_ 9.30023590433024655e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_735_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile735)_ 9.29207369816798141e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_736_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile736)_ 9.28383537094281883e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_737_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile737)_ 9.27552080039024777e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_738_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile738)_ 9.26712986458001070e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_739_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile739)_ 9.25866244207082523e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_740_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile740)_ 9.25011841206714591e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_741_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile741)_ 9.24149765406888542e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_742_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile742)_ 9.23280004817985528e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_743_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile743)_ 9.22402547506232483e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_744_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile744)_ 9.21517381566057912e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_745_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile745)_ 9.20624495171655510e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_746_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile746)_ 9.19723876554625827e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_747_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile747)_ 9.18815513989069271e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_748_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile748)_ 9.17899395838477766e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_749_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile749)_ 9.16975510497110291e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_750_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile750)_ 9.16043846468098978e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_751_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile751)_ 9.15104392281392877e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_752_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile752)_ 9.14157136569563461e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_753_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile753)_ 9.13202068008830796e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_754_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile754)_ 9.12239175374458290e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_755_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile755)_ 9.11268447533944599e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_756_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile756)_ 9.10289873403329584e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_757_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile757)_ 9.09303441992491066e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_758_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile758)_ 9.08309142406166399e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_759_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile759)_ 9.07306963842350114e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_760_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile760)_ 9.06296895582719454e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_761_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile761)_ 9.05278927009516184e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_762_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile762)_ 9.04253047606677976e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_763_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile763)_ 9.03219246944974956e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_764_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile764)_ 9.02177514720466263e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_765_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile765)_ 9.01127840726442461e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_766_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile766)_ 9.00070214870683609e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_767_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile767)_ 8.99004627176801935e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_768_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile768)_ 8.97931067793709264e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_769_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile769)_ 8.96849526988983785e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_770_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile770)_ 8.95759995142147991e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_771_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile771)_ 8.94662462786823855e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_772_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile772)_ 8.93556920585328145e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_773_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile773)_ 8.92443359341178397e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_774_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile774)_ 8.91321769976173919e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_775_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile775)_ 8.90192143597772455e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_776_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile776)_ 8.89054471424312147e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_777_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile777)_ 8.87908744871958831e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_778_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile778)_ 8.86754955493562064e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_779_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile779)_ 8.85593095013675197e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_780_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile780)_ 8.84423155314067837e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_781_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile781)_ 8.83245128485906326e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_782_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile782)_ 8.82059006765403310e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_783_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile783)_ 8.80864782600127537e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_784_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile784)_ 8.79662448609644897e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_785_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile785)_ 8.78451997641261674e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_786_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile786)_ 8.77233422705305660e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_787_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile787)_ 8.76006717056517642e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_788_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile788)_ 8.74771874146253528e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_789_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile789)_ 8.73528887650726164e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_790_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile790)_ 8.72277751479744526e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_791_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile791)_ 8.71018459777027007e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_792_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile792)_ 8.69751006923396783e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_793_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile793)_ 8.68475387548660153e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_794_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile794)_ 8.67191596552323134e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_795_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile795)_ 8.65899629084225173e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_796_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile796)_ 8.64599480553833628e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_797_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile797)_ 8.63291146680330267e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_798_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile798)_ 8.61974623441661390e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_799_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile799)_ 8.60649907116158713e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_800_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile800)_ 8.59316994313137281e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_801_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile801)_ 8.57975881913077693e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_802_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile802)_ 8.56626567148029670e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_803_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile803)_ 8.55269047565378887e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_804_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile804)_ 8.53903321053136287e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_805_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile805)_ 8.52529385856767678e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_806_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile806)_ 8.51147240575505191e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_807_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile807)_ 8.49756884203340876e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_808_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile808)_ 8.48358316063088994e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_809_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile809)_ 8.46951535928247394e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_810_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile810)_ 8.45536543918434108e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_811_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile811)_ 8.44113340604122665e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_812_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile812)_ 8.42681926989210725e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_813_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile813)_ 8.41242304475134720e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_814_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile814)_ 8.39794474967281955e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_815_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile815)_ 8.38338440794215815e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_816_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile816)_ 8.36874204784536328e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_817_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile817)_ 8.35401770231631452e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_818_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile818)_ 8.33921140977778204e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_819_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile819)_ 8.32432321339356650e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_820_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile820)_ 8.30935316210184953e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_821_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile821)_ 8.29430130989873733e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_822_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile822)_ 8.27916771675836147e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_823_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile823)_ 8.26395244838383329e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_824_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile824)_ 8.24865557654867569e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_825_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile825)_ 8.23327717906794342e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_826_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile826)_ 8.21781734014697708e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_827_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile827)_ 8.20227615061033984e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_828_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile828)_ 8.18665370772357105e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_829_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile829)_ 8.17095011612375445e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_830_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile830)_ 8.15516548701500366e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_831_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile831)_ 8.13929993942685316e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_832_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile832)_ 8.12335359960475976e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_833_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile833)_ 8.10732660180456255e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_834_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile834)_ 8.09121908774728012e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_835_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile835)_ 8.07503120823185178e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_836_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile836)_ 8.05876312166273201e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_837_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile837)_ 8.04241499551279840e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_838_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile838)_ 8.02598700627925495e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_839_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile839)_ 8.00947933976669385e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_840_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile840)_ 7.99289219085005075e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_841_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile841)_ 7.97622576465113579e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_842_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile842)_ 7.95948027598507475e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_843_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile843)_ 7.94265595038920469e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_844_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile844)_ 7.92575302377414304e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_845_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile845)_ 7.90877174343766927e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_846_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile846)_ 7.89171236735661252e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_847_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile847)_ 7.87457516578448334e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_848_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile848)_ 7.85736042085757869e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_849_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile849)_ 7.84006842683655780e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_850_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile850)_ 7.82269949096416062e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_851_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile851)_ 7.80525393345493992e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_852_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile852)_ 7.78773208833939516e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_853_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile853)_ 7.77013430319408067e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_854_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile854)_ 7.75246094034582126e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_855_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile855)_ 7.73471237672003833e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_856_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile856)_ 7.71688900458682853e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_857_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile857)_ 7.69899123197509503e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_858_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile858)_ 7.68101948292119422e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_859_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile859)_ 7.66297419852775274e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_860_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile860)_ 7.64485583674564401e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_861_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile861)_ 7.62666487384285052e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_862_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile862)_ 7.60840180367690962e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_863_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile863)_ 7.59006713964868220e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_864_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile864)_ 7.57166141449012314e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_865_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile865)_ 7.55318518104811359e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_866_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile866)_ 7.53463901258316290e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_867_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile867)_ 7.51602350422598230e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_868_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile868)_ 7.49733927287649614e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_869_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile869)_ 7.47858695840531752e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_870_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile870)_ 7.45976722433565505e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_871_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile871)_ 7.44088075806534008e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_872_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile872)_ 7.42192827237583667e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_873_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile873)_ 7.40291050576065771e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_874_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile874)_ 7.38382822372020582e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_875_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile875)_ 7.36468221867742166e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_876_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile876)_ 7.34547331238174367e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_877_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile877)_ 7.32620235541840258e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_878_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile878)_ 7.30687022899061209e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_879_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile879)_ 7.28747784561324836e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_880_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile880)_ 7.26802615046269473e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_881_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile881)_ 7.24851612211239744e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_882_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile882)_ 7.22894877385417411e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_883_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile883)_ 7.20932515455229364e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_884_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile884)_ 7.18964635062637088e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_885_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile885)_ 7.16991348642485697e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_886_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile886)_ 7.15012772591753533e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_887_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile887)_ 7.13029027458012520e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_888_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile888)_ 7.11040237953113313e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_889_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile889)_ 7.09046533220735863e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_890_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile890)_ 7.07048046949199527e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_891_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile891)_ 7.05044917529897702e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_892_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile892)_ 7.03037288199363872e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_893_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile893)_ 7.01025307235876496e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_894_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile894)_ 6.99009128176233171e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_895_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile895)_ 6.96988909937288140e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_896_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile896)_ 6.94964817008118362e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_897_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile897)_ 6.92937019738906583e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_898_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile898)_ 6.90905694474352843e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_899_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile899)_ 6.88871023819608713e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_900_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile900)_ 6.86833196793659555e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_901_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile901)_ 6.84792409210825508e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_902_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile902)_ 6.82748863815806680e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_903_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile903)_ 6.80702770557286771e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_904_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile904)_ 6.78654346937662949e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_905_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile905)_ 6.76603818195458968e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_906_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile906)_ 6.74551417758419061e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_907_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile907)_ 6.72497387349830708e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_908_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile908)_ 6.70441977546787794e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_909_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile909)_ 6.68385447931936667e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_910_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile910)_ 6.66328067595571560e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_911_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile911)_ 6.64270115452165154e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_912_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile912)_ 6.62211880639849548e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_913_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile913)_ 6.60153662996482409e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_914_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile914)_ 6.58095773415662277e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_915_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile915)_ 6.56038534395527850e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_916_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile916)_ 6.53982280493979433e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_917_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile917)_ 6.51927358862210236e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_918_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile918)_ 6.49874129731205577e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_919_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile919)_ 6.47822967131741340e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_920_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile920)_ 6.45774259327403996e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_921_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile921)_ 6.43728409583268438e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_922_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile922)_ 6.41685836873341197e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_923_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile923)_ 6.39646976448205069e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_924_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile924)_ 6.37612280798690971e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_925_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile925)_ 6.35582220357358996e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_926_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile926)_ 6.33557284424433355e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_927_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile927)_ 6.31537982068751738e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_928_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile928)_ 6.29524843157946035e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_929_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile929)_ 6.27518419396644322e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_930_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile930)_ 6.25519285487470284e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_931_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile931)_ 6.23528040343224264e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_932_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile932)_ 6.21545308476378899e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_933_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile933)_ 6.19571741256385623e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_934_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile934)_ 6.17608018668406970e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_935_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile935)_ 6.15654850765758044e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_936_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile936)_ 6.13712979657998065e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_937_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile937)_ 6.11783181325281644e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_938_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile938)_ 6.09866267886981315e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_939_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile939)_ 6.07963089893978625e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_940_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile940)_ 6.06074538892880776e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_941_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile941)_ 6.04201550281321335e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_942_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile942)_ 6.02345106531904963e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_943_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile943)_ 6.00506240513113288e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_944_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile944)_ 5.98686039551479202e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_945_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile945)_ 5.96885649670387142e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_946_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile946)_ 5.95106280551902997e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_947_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile947)_ 5.93349211001526974e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_948_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile948)_ 5.91615795349025638e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_949_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile949)_ 5.89907470521195895e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_950_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile950)_ 5.88225764439693176e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_951_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile951)_ 5.86572305513776218e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_952_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile952)_ 5.84948833912093003e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_953_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile953)_ 5.83357214705838845e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_954_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile954)_ 5.81799453522872760e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_955_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile955)_ 5.80277715334077612e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_956_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile956)_ 5.78794347289759373e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_957_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile957)_ 5.77351906517993736e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_958_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile958)_ 5.75953195092850870e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_959_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile959)_ 5.74601303865866515e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_960_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile960)_ 5.73299669162353424e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_961_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile961)_ 5.72052146996936562e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_962_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile962)_ 5.70863113066433572e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_963_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile963)_ 5.69737601035167143e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_964_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile964)_ 5.68681500658311211e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_965_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile965)_ 5.67701853665676485e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_966_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile966)_ 5.66807320776176616e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_967_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile967)_ 5.66008972057058333e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_968_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile968)_ 5.65321765267813060e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_969_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile969)_ 5.64767753464371323e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_970_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile970)_ 5.64385115529397914e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_971_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile971)_ 5.64283530543701044e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_972_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile972)_ 5.55254455627292656e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_973_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile973)_ 5.46056888274562471e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_974_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile974)_ 5.36682150766862581e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_975_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile975)_ 5.27120775110736638e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_976_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile976)_ 5.17362398111501955e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_977_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile977)_ 5.07395637656677008e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_978_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile978)_ 4.97207946326415524e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_979_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile979)_ 4.86785436517277615e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_980_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile980)_ 4.76112670464820878e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_981_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile981)_ 4.65172405813457212e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_982_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile982)_ 4.53945284763436398e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_983_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile983)_ 4.42409450855353863e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_984_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile984)_ 4.30540071237971514e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_985_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile985)_ 4.18308734917534775e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_986_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile986)_ 4.05682684365834233e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_987_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile987)_ 3.92623821136884807e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_988_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile988)_ 3.79087397860234298e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_989_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile989)_ 3.65020266812198088e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_990_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile990)_ 3.50358486019502991e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_991_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile991)_ 3.35023968926869385e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_992_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile992)_ 3.18919664193893565e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_993_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile993)_ 3.01922390649918054e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_994_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile994)_ 2.83871761503057480e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_995_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile995)_ 2.64552220092530675e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_996_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile996)_ 2.43662090509217354e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_997_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile997)_ 2.20755911646520640e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_998_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile998)_ 1.95124922985695222e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_999_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile999)_ 1.65507967857954287e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_1000____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1000)_ 1.29192151352597252e-03 -Plasma_deuteron_isotropic_Larmor_radius_at_point_1001____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1001)_ 7.72456675382621823e-04 -Volume_averaged_triton_isotropic_toroidal_Larmor_radius_(m)______________ (radius_plasma_triton_toroidal_larmor_isotropic_vol_avg)_ 7.98178636675054426e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_0_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile0)_ 4.72652874303060723e-04 -Plasma_triton_isotropic_Larmor_radius_at_point_1_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1)_ 7.91689603514136820e-04 -Plasma_triton_isotropic_Larmor_radius_at_point_2_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile2)_ 1.01575281019454619e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_3_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile3)_ 1.19931112575048467e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_4_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile4)_ 1.35888007268964253e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_5_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile5)_ 1.50212509561190315e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_6_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile6)_ 1.63334743332052318e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_7_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile7)_ 1.75524629741726705e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_8_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile8)_ 1.86964686245665187e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_9_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile9)_ 1.97785128971770651e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_10________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile10)_ 2.08082699192518351e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_11________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile11)_ 2.17931584158977858e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_12________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile12)_ 2.27390145652395237e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_13________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile13)_ 2.36505269852110411e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_14________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile14)_ 2.45315291913731108e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_15________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile15)_ 2.53852027217093840e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_16________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile16)_ 2.62142222053165933e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_17________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile17)_ 2.70208614043420401e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_18________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile18)_ 2.78070723693577210e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_19________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile19)_ 2.85745455660426544e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_20________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile20)_ 2.93247563295915333e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_21________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile21)_ 3.00590011944028073e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_22________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile22)_ 3.07784267331305105e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_23________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile23)_ 3.14840526731682314e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_24________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile24)_ 3.21767906240459471e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_25________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile25)_ 3.28574594211296324e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_26________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile26)_ 3.35267977540165988e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_27________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile27)_ 3.41854746875792535e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_28________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile28)_ 3.48340984756798869e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_29________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile29)_ 3.54732239715316137e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_30________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile30)_ 3.61033589509478312e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_31________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile31)_ 3.61632209435404275e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_32________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile32)_ 3.62411915444324799e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_33________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile33)_ 3.63303022369866353e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_34________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile34)_ 3.64281447877524934e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_35________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile35)_ 3.65333359472704098e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_36________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile36)_ 3.66449421721317314e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_37________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile37)_ 3.67622755970263212e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_38________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile38)_ 3.68848001911792562e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_39________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile39)_ 3.70120816289259058e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_40________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile40)_ 3.71437577468258047e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_41________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile41)_ 3.72795198418157279e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_42________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile42)_ 3.74191001679378661e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_43________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile43)_ 3.75622632328684054e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_44________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile44)_ 3.77087995145301618e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_45________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile45)_ 3.78585207918242031e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_46________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile46)_ 3.80112566119789660e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_47________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile47)_ 3.81668515284601427e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_48________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile48)_ 3.83251629434521639e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_49________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile49)_ 3.84860593601882989e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_50________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile50)_ 3.86494189620919474e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_51________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile51)_ 3.88151284648368278e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_52________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile52)_ 3.89830821322200219e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_53________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile53)_ 3.91531809715023847e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_54________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile54)_ 3.93253320375063897e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_55________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile55)_ 3.94994478469397683e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_56________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile56)_ 3.96754458713161322e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_57________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile57)_ 3.98532480933709576e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_58________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile58)_ 4.00327806241837763e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_59________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile59)_ 4.02139733655097493e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_60________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile60)_ 4.03967597155958404e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_61________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile61)_ 4.05810763002764988e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_62________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile62)_ 4.07668627413270302e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_63________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile63)_ 4.09540614444265597e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_64________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile64)_ 4.11426174061797854e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_65________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile65)_ 4.13324780525213976e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_66________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile66)_ 4.15235930733397554e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_67________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile67)_ 4.17159142906583982e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_68________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile68)_ 4.19093955243578144e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_69________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile69)_ 4.21039924745397493e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_70________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile70)_ 4.22996626184619830e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_71________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile71)_ 4.24963651105970171e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_72________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile72)_ 4.26940606886695023e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_73________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile73)_ 4.28927115907901373e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_74________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile74)_ 4.30922814760941689e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_75________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile75)_ 4.32927353558614034e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_76________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile76)_ 4.34940395206085025e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_77________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile77)_ 4.36961614854776848e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_78________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile78)_ 4.38990699218105070e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_79________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile79)_ 4.41027346069401173e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_80________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile80)_ 4.43071263749286130e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_81________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile81)_ 4.45122170700964527e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_82________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile82)_ 4.47179794855422693e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_83________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile83)_ 4.49243873478961421e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_84________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile84)_ 4.51314152504150509e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_85________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile85)_ 4.53390386367197046e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_86________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile86)_ 4.55472337462946384e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_87________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile87)_ 4.57559775976000126e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_88________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile88)_ 4.59652479444132029e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_89________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile89)_ 4.61750232488608928e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_90________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile90)_ 4.63852826579040905e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_91________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile91)_ 4.65960059672095289e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_92________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile92)_ 4.68071736001621306e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_93________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile93)_ 4.70187665880282893e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_94________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile94)_ 4.72307665371375467e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_95________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile95)_ 4.74431556123788064e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_96________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile96)_ 4.76559165134524381e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_97________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile97)_ 4.78690324610919066e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_98________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile98)_ 4.80824871651334106e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_99________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile99)_ 4.82962648178847809e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_100_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile100)_ 4.85103500762847691e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_101_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile101)_ 4.87247280378268373e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_102_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile102)_ 4.89393842237592289e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_103_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile103)_ 4.91543045767603611e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_104_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile104)_ 4.93694754341418227e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_105_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile105)_ 4.95848835156117301e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_106_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile106)_ 4.98005159120819621e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_107_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile107)_ 5.00163600750761113e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_108_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile108)_ 5.02324038003462876e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_109_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile109)_ 5.04486352159895339e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_110_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile110)_ 5.06650427749869882e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_111_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile111)_ 5.08816152385725522e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_112_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile112)_ 5.10983416733451663e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_113_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile113)_ 5.13152114324644769e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_114_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile114)_ 5.15322141526525397e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_115_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile115)_ 5.17493397433074417e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_116_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile116)_ 5.19665783762089314e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_117_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile117)_ 5.21839204783043457e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_118_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile118)_ 5.24013567208779941e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_119_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile119)_ 5.26188780159377641e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_120_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile120)_ 5.28364755048173554e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_121_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile121)_ 5.30541405519075436e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_122_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile122)_ 5.32718647401407997e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_123_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile123)_ 5.34896398595793594e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_124_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile124)_ 5.37074579047825372e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_125_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile125)_ 5.39253110648739691e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_126_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile126)_ 5.41431917235507109e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_127_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile127)_ 5.43610924424315235e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_128_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile128)_ 5.45790059690056360e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_129_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile129)_ 5.47969252201927111e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_130_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile130)_ 5.50148432798821304e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_131_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile131)_ 5.52327533989439498e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_132_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile132)_ 5.54506489819800354e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_133_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile133)_ 5.56685235923359487e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_134_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile134)_ 5.58863709370334850e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_135_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile135)_ 5.61041848687081346e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_136_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile136)_ 5.63219593823531452e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_137_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile137)_ 5.65396886045591105e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_138_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile138)_ 5.67573667976070586e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_139_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile139)_ 5.69749883504440391e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_140_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile140)_ 5.71925477769104351e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_141_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile141)_ 5.74100397080832409e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_142_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile142)_ 5.76274588977338225e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_143_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile143)_ 5.78448002080723771e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_144_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile144)_ 5.80620586149124904e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_145_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile145)_ 5.82792292014299839e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_146_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile146)_ 5.84963071527937715e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_147_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile147)_ 5.87132877578983286e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_148_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile148)_ 5.89301664029128532e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_149_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile149)_ 5.91469385684185653e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_150_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile150)_ 5.93635998324118508e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_151_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile151)_ 5.95801458554768432e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_152_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile152)_ 5.97965723924190080e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_153_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile153)_ 6.00128752833369028e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_154_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile154)_ 6.02290504482730533e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_155_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile155)_ 6.04450938884696504e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_156_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile156)_ 6.06610016849378365e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_157_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile157)_ 6.08767699936088331e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_158_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile158)_ 6.10923950459006139e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_159_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile159)_ 6.13078731458565479e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_160_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile160)_ 6.15232006658026579e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_161_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile161)_ 6.17383740477648810e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_162_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile162)_ 6.19533897999483517e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_163_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile163)_ 6.21682444944009205e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_164_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile164)_ 6.23829347677365333e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_165_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile165)_ 6.25974573169534466e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_166_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile166)_ 6.28118088986969261e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_167_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile167)_ 6.30259863274104833e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_168_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile168)_ 6.32399864738903382e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_169_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile169)_ 6.34538062649886436e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_170_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile170)_ 6.36674426799588560e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_171_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile171)_ 6.38808927513313200e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_172_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile172)_ 6.40941535601909085e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_173_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile173)_ 6.43072222400776355e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_174_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile174)_ 6.45200959700707299e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_175_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile175)_ 6.47327719779736566e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_176_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile176)_ 6.49452475353190246e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_177_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile177)_ 6.51575199602022394e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_178_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile178)_ 6.53695866138121959e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_179_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile179)_ 6.55814448977390385e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_180_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile180)_ 6.57930922561041076e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_181_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile181)_ 6.60045261717898298e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_182_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile182)_ 6.62157441689555960e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_183_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile183)_ 6.64267438093012457e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_184_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile184)_ 6.66375226883700409e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_185_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile185)_ 6.68480784424967719e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_186_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile186)_ 6.70584087396311392e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_187_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile187)_ 6.72685112851988468e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_188_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile188)_ 6.74783838144434218e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_189_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile189)_ 6.76880240982939436e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_190_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile190)_ 6.78974299353885848e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_191_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile191)_ 6.81065991633901437e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_192_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile192)_ 6.83155296408790007e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_193_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile193)_ 6.85242192623100946e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_194_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile194)_ 6.87326659457652631e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_195_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile195)_ 6.89408676435315261e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_196_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile196)_ 6.91488223291868327e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_197_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile197)_ 6.93565280074545307e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_198_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile198)_ 6.95639827053038881e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_199_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile199)_ 6.97711844789099950e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_200_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile200)_ 6.99781314040817930e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_201_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile201)_ 7.01848215864488492e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_202_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile202)_ 7.03912531519175488e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_203_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile203)_ 7.05974242471981567e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_204_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile204)_ 7.08033330471035012e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_205_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile205)_ 7.10089777436393160e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_206_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile206)_ 7.12143565518917436e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_207_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile207)_ 7.14194677062852425e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_208_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile208)_ 7.16243094621916467e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_209_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile209)_ 7.18288800985939554e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_210_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile210)_ 7.20331779044549279e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_211_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile211)_ 7.22372011987652482e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_212_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile212)_ 7.24409483098512053e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_213_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile213)_ 7.26444175883316813e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_214_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile214)_ 7.28476074013188757e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_215_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile215)_ 7.30505161333463039e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_216_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile216)_ 7.32531421834272355e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_217_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile217)_ 7.34554839716136838e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_218_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile218)_ 7.36575399279806343e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_219_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile219)_ 7.38593085027024979e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_220_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile220)_ 7.40607881568208174e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_221_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile221)_ 7.42619773702011491e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_222_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile222)_ 7.44628746354742462e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_223_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile223)_ 7.46634784575988999e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_224_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile224)_ 7.48637873579589309e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_225_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile225)_ 7.50637998686902626e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_226_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile226)_ 7.52635145364336042e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_227_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile227)_ 7.54629299208552096e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_228_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile228)_ 7.56620445921375208e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_229_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile229)_ 7.58608571343797472e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_230_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile230)_ 7.60593661444777542e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_231_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile231)_ 7.62575702268604438e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_232_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile232)_ 7.64554680003559205e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_233_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile233)_ 7.66530580953504910e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_234_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile234)_ 7.68503391499308647e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_235_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile235)_ 7.70473098139764709e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_236_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile236)_ 7.72439687494425736e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_237_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile237)_ 7.74403146258266506e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_238_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile238)_ 7.76363461245979398e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_239_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile239)_ 7.78320619319280201e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_240_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile240)_ 7.80274607486168472e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_241_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile241)_ 7.82225412828266471e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_242_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile242)_ 7.84173022490216101e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_243_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile243)_ 7.86117423751254638e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_244_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile244)_ 7.88058603932327052e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_245_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile245)_ 7.89996550430080262e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_246_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile246)_ 7.91931250781407504e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_247_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile247)_ 7.93862692519651733e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_248_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile248)_ 7.95790863314359102e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_249_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile249)_ 7.97715750882232316e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_250_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile250)_ 7.99637343038010241e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_251_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile251)_ 8.01555627622738999e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_252_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile252)_ 8.03470592575047764e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_253_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile253)_ 8.05382225896883117e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_254_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile254)_ 8.07290515680456414e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_255_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile255)_ 8.09195450013082233e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_256_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile256)_ 8.11097017122874159e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_257_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile257)_ 8.12995205242945766e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_258_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile258)_ 8.14890002685859580e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_259_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile259)_ 8.16781397826527381e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_260_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile260)_ 8.18669379085192224e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_261_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile261)_ 8.20553934954348571e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_262_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile262)_ 8.22435053954756294e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_263_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile263)_ 8.24312724675870315e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_264_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile264)_ 8.26186935752138904e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_265_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile265)_ 8.28057675876416911e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_266_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile266)_ 8.29924933762891774e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_267_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile267)_ 8.31788698210968007e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_268_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile268)_ 8.33648958041302915e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_269_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile269)_ 8.35505702105925410e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_270_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile270)_ 8.37358919341909917e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_271_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile271)_ 8.39208598697503520e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_272_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile272)_ 8.41054729152311900e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_273_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile273)_ 8.42897299764193940e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_274_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile274)_ 8.44736299598903249e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_275_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile275)_ 8.46571717760290048e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_276_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile276)_ 8.48403543417049558e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_277_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile277)_ 8.50231765732548106e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_278_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile278)_ 8.52056373938398122e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_279_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile279)_ 8.53877357287707514e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_280_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile280)_ 8.55694705061831387e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_281_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile281)_ 8.57508406580432397e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_282_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile282)_ 8.59318451194861568e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_283_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile283)_ 8.61124828288221608e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_284_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile284)_ 8.62927527258799607e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_285_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile285)_ 8.64726537553422471e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_286_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile286)_ 8.66521848627609462e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_287_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile287)_ 8.68313449975593489e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_288_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile288)_ 8.70101331127056017e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_289_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile289)_ 8.71885481600749232e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_290_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile290)_ 8.73665890994209347e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_291_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile291)_ 8.75442548857778037e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_292_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile292)_ 8.77215444850572984e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_293_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile293)_ 8.78984568578141182e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_294_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile294)_ 8.80749909718511921e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_295_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile295)_ 8.82511457929561864e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_296_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile296)_ 8.84269202915355032e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_297_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile297)_ 8.86023134419591449e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_298_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile298)_ 8.87773242139783952e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_299_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile299)_ 8.89519515859616729e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_300_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile300)_ 8.91261945339991146e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_301_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile301)_ 8.93000520378631202e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_302_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile302)_ 8.94735230780486362e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_303_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile303)_ 8.96466066380960380e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_304_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile304)_ 8.98193016986692863e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_305_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile305)_ 8.99916072481200986e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_306_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile306)_ 9.01635222709634872e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_307_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile307)_ 9.03350457558021493e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_308_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile308)_ 9.05061766933610255e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_309_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile309)_ 9.06769140738680930e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_310_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile310)_ 9.08472568874007201e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_311_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile311)_ 9.10172041281757244e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_312_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile312)_ 9.11867547912725840e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_313_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile313)_ 9.13559078700204238e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_314_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile314)_ 9.15246623612716095e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_315_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile315)_ 9.16930172621295905e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_316_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile316)_ 9.18609715716058386e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_317_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile317)_ 9.20285242870240786e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_318_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile318)_ 9.21956744096153608e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_319_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile319)_ 9.23624209396097830e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_320_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile320)_ 9.25287628775656006e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_321_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile321)_ 9.26946992256957175e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_322_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile322)_ 9.28602289855882945e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_323_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile323)_ 9.30253511644470177e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_324_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile324)_ 9.31900647606914712e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_325_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile325)_ 9.33543687839547519e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_326_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile326)_ 9.35182622361017783e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_327_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile327)_ 9.36817441220534619e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_328_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile328)_ 9.38448134504528755e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_329_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile329)_ 9.40074692245189761e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_330_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile330)_ 9.41697104535134562e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_331_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile331)_ 9.43315361409804466e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_332_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile332)_ 9.44929452975157812e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_333_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile333)_ 9.46539369290105848e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_334_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile334)_ 9.48145100432066720e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_335_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile335)_ 9.49746636477495111e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_336_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile336)_ 9.51343967524905139e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_337_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile337)_ 9.52937083629693156e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_338_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile338)_ 9.54525974889213966e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_339_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile339)_ 9.56110631380877388e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_340_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile340)_ 9.57691043204745088e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_341_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile341)_ 9.59267200418393792e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_342_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile342)_ 9.60839093125199876e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_343_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile343)_ 9.62406711402677938e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_344_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile344)_ 9.63970045345054725e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_345_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile345)_ 9.65529085011221019e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_346_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile346)_ 9.67083820493385392e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_347_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile347)_ 9.68634241874808885e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_348_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile348)_ 9.70180339229956279e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_349_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile349)_ 9.71722102637684673e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_350_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile350)_ 9.73259522158568917e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_351_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile351)_ 9.74792587877424191e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_352_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile352)_ 9.76321289851290672e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_353_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile353)_ 9.77845618151952298e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_354_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile354)_ 9.79365562830226098e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_355_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile355)_ 9.80881113964985132e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_356_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile356)_ 9.82392261585092290e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_357_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile357)_ 9.83898995754258973e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_358_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile358)_ 9.85401306515791033e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_359_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile359)_ 9.86899183922048014e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_360_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile360)_ 9.88392617988970677e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_361_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile361)_ 9.89881598764628078e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_362_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile362)_ 9.91366116273970262e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_363_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile363)_ 9.92846160525479894e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_364_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile364)_ 9.94321721553646613e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_365_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile365)_ 9.95792789370238476e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_366_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile366)_ 9.97259353964434665e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_367_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile367)_ 9.98721405342038043e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_368_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile368)_ 1.00017893349954503e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_369_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile369)_ 1.00163192843078872e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_370_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile370)_ 1.00308038009449037e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_371_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile371)_ 1.00452427848604208e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_372_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile372)_ 1.00596361356271400e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_373_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile373)_ 1.00739837528937906e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_374_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile374)_ 1.00882855359954206e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_375_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile375)_ 1.01025413845735289e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_376_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile376)_ 1.01167511978931691e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_377_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile377)_ 1.01309148753001826e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_378_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile378)_ 1.01450323160268783e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_379_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile379)_ 1.01591034190302836e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_380_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile380)_ 1.01731280837426812e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_381_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile381)_ 1.01871062087693729e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_382_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile382)_ 1.02010376929650235e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_383_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile383)_ 1.02149224354674984e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_384_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile384)_ 1.02287603346885685e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_385_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile385)_ 1.02425512893253266e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_386_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile386)_ 1.02562951978071373e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_387_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile387)_ 1.02699919587204945e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_388_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile388)_ 1.02836414703862417e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_389_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile389)_ 1.02972436308931149e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_390_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile390)_ 1.03107983384900879e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_391_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile391)_ 1.03243054912286521e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_392_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile392)_ 1.03377649869311316e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_393_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile393)_ 1.03511767235178465e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_394_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile394)_ 1.03645405987145001e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_395_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile395)_ 1.03778565101509488e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_396_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile396)_ 1.03911243554274495e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_397_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile397)_ 1.04043440317564285e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_398_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile398)_ 1.04175154366816358e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_399_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile399)_ 1.04306384672627969e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_400_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile400)_ 1.04437130205008825e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_401_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile401)_ 1.04567389935676849e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_402_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile402)_ 1.04697162832513777e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_403_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile403)_ 1.04826447862512596e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_404_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile404)_ 1.04955243991458873e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_405_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile405)_ 1.05083550184920001e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_406_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile406)_ 1.05211365408907492e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_407_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile407)_ 1.05338688623671465e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_408_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile408)_ 1.05465518792537457e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_409_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile409)_ 1.05591854873409493e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_410_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile410)_ 1.05717695827283655e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_411_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile411)_ 1.05843040612366400e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_412_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile412)_ 1.05967888184079831e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_413_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile413)_ 1.06092237497359895e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_414_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile414)_ 1.06216087507318910e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_415_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile415)_ 1.06339437167287890e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_416_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile416)_ 1.06462285427510704e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_417_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile417)_ 1.06584631239083159e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_418_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile418)_ 1.06706473550025761e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_419_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile419)_ 1.06827811308240327e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_420_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile420)_ 1.06948643459548066e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_421_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile421)_ 1.07068968950320732e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_422_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile422)_ 1.07188786723548153e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_423_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile423)_ 1.07308095718840826e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_424_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile424)_ 1.07426894880974771e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_425_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile425)_ 1.07545183146102591e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_426_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile426)_ 1.07662959454897927e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_427_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile427)_ 1.07780222741387949e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_428_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile428)_ 1.07896971940844993e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_429_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile429)_ 1.08013205989795531e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_430_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile430)_ 1.08128923818786374e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_431_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile431)_ 1.08244124358638401e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_432_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile432)_ 1.08358806537159329e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_433_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile433)_ 1.08472969284746645e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_434_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile434)_ 1.08586611529124105e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_435_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile435)_ 1.08699732190727233e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_436_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile436)_ 1.08812330196880296e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_437_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile437)_ 1.08924404467295420e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_438_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile438)_ 1.09035953923967976e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_439_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile439)_ 1.09146977485242210e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_440_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile440)_ 1.09257474069113913e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_441_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile441)_ 1.09367442589930267e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_442_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile442)_ 1.09476881965331514e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_443_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile443)_ 1.09585791103363472e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_444_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile444)_ 1.09694168920000737e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_445_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile445)_ 1.09802014322285865e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_446_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile446)_ 1.09909326218251158e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_447_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile447)_ 1.10016103514606507e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_448_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile448)_ 1.10122345117735897e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_449_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile449)_ 1.10228049930386120e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_450_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile450)_ 1.10333216852327234e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_451_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile451)_ 1.10437844785328410e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_452_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile452)_ 1.10541932628518916e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_453_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile453)_ 1.10645479278055001e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_454_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile454)_ 1.10748483627781981e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_455_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile455)_ 1.10850944573555165e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_456_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile456)_ 1.10952861005266454e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_457_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile457)_ 1.11054231814820548e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_458_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile458)_ 1.11155055889153032e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_459_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile459)_ 1.11255332116550441e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_460_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile460)_ 1.11355059380659656e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_461_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile461)_ 1.11454236565481091e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_462_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile462)_ 1.11552862553371979e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_463_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile463)_ 1.11650936223377413e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_464_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile464)_ 1.11748456455232244e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_465_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile465)_ 1.11845422123353529e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_466_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile466)_ 1.11941832104851032e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_467_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile467)_ 1.12037685271847189e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_468_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile468)_ 1.12132980494812663e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_469_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile469)_ 1.12227716645912027e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_470_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile470)_ 1.12321892588965154e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_471_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile471)_ 1.12415507192829816e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_472_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile472)_ 1.12508559321025953e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_473_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile473)_ 1.12601047835748768e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_474_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile474)_ 1.12692971597867977e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_475_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile475)_ 1.12784329467262179e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_476_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile476)_ 1.12875120299123256e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_477_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile477)_ 1.12965342949660034e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_478_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile478)_ 1.13054996271394672e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_479_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile479)_ 1.13144079118202168e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_480_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile480)_ 1.13232590335551782e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_481_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile481)_ 1.13320528776319276e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_482_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile482)_ 1.13407893282269738e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_483_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile483)_ 1.13494682699205422e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_484_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile484)_ 1.13580895869891639e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_485_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile485)_ 1.13666531634387322e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_486_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile486)_ 1.13751588830376324e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_487_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile487)_ 1.13836066294513948e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_488_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile488)_ 1.13919962862425363e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_489_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile489)_ 1.14003277367010873e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_490_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile490)_ 1.14086008637422857e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_491_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile491)_ 1.14168155504477918e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_492_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile492)_ 1.14249716794897517e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_493_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile493)_ 1.14330691331635814e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_494_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile494)_ 1.14411077940319642e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_495_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile495)_ 1.14490875441443391e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_496_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile496)_ 1.14570082655112582e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_497_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile497)_ 1.14648698396961016e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_498_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile498)_ 1.14726721481200195e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_499_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile499)_ 1.14804150724022013e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_500_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile500)_ 1.14880984935082937e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_501_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile501)_ 1.14957521234173594e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_502_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile502)_ 1.15033759025470056e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_503_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile503)_ 1.15109399004486388e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_504_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile504)_ 1.15184439978255181e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_505_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile505)_ 1.15258880747227520e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_506_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile506)_ 1.15332720113806974e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_507_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile507)_ 1.15405956878931130e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_508_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile508)_ 1.15478589838981550e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_509_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile509)_ 1.15550617789882994e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_510_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile510)_ 1.15622039522296337e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_511_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile511)_ 1.15692853829499256e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_512_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile512)_ 1.15763059500864074e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_513_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile513)_ 1.15832655321498994e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_514_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile514)_ 1.15901640078083755e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_515_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile515)_ 1.15970012553362756e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_516_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile516)_ 1.16037771527163890e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_517_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile517)_ 1.16104915778111432e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_518_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile518)_ 1.16171444083620640e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_519_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile519)_ 1.16237355218509770e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_520_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile520)_ 1.16302647954643467e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_521_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile521)_ 1.16367321060573767e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_522_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile522)_ 1.16431373308798578e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_523_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile523)_ 1.16494803460179472e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_524_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile524)_ 1.16557610282971309e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_525_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile525)_ 1.16619792536534917e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_526_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile526)_ 1.16681348981374899e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_527_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile527)_ 1.16742278373926974e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_528_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile528)_ 1.16802579471411046e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_529_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile529)_ 1.16862251025912911e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_530_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile530)_ 1.16921291788194635e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_531_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile531)_ 1.16979700507338288e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_532_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile532)_ 1.17037475930736844e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_533_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile533)_ 1.17094616799892880e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_534_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile534)_ 1.17151121861229848e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_535_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile535)_ 1.17206989852113967e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_536_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile536)_ 1.17262219511319477e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_537_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile537)_ 1.17316809575527085e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_538_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile538)_ 1.17370758775804541e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_539_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile539)_ 1.17424065845654676e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_540_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile540)_ 1.17476729512589837e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_541_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile541)_ 1.17528748504433390e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_542_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile542)_ 1.17580121545094035e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_543_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile543)_ 1.17630847356307265e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_544_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile544)_ 1.17680924659737795e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_545_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile545)_ 1.17730352171682862e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_546_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile546)_ 1.17779128609402338e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_547_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile547)_ 1.17827252684403090e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_548_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile548)_ 1.17874723109839888e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_549_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile549)_ 1.17921538592019523e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_550_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile550)_ 1.17967697838873512e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_551_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile551)_ 1.18013199555349318e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_552_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile552)_ 1.18058042442682493e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_553_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile553)_ 1.18102225198731224e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_554_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile554)_ 1.18145746522937221e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_555_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile555)_ 1.18188605110987419e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_556_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile556)_ 1.18230799654079587e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_557_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile557)_ 1.18272328842464469e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_558_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile558)_ 1.18313191364365442e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_559_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile559)_ 1.18353385908466502e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_560_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile560)_ 1.18392911153176929e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_561_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile561)_ 1.18431765784840996e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_562_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile562)_ 1.18469948478773304e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_563_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile563)_ 1.18507457913193809e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_564_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile564)_ 1.18544292761694967e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_565_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile565)_ 1.18580451696808972e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_566_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile566)_ 1.18615933386399443e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_567_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile567)_ 1.18650736500116108e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_568_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile568)_ 1.18684859698582629e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_569_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile569)_ 1.18718301649225529e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_570_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile570)_ 1.18751061010768828e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_571_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile571)_ 1.18783136438247502e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_572_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile572)_ 1.18814526588775088e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_573_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile573)_ 1.18845230115388386e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_574_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile574)_ 1.18875245670648465e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_575_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile575)_ 1.18904571899733115e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_576_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile576)_ 1.18933207448389741e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_577_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile577)_ 1.18961150962932083e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_578_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile578)_ 1.18988401081495544e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_579_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile579)_ 1.19014956446385142e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_580_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile580)_ 1.19040815689491607e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_581_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile581)_ 1.19065977447575660e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_582_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile582)_ 1.19090440352777761e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_583_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile583)_ 1.19114203032586897e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_584_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile584)_ 1.19137264114207893e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_585_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile585)_ 1.19159622221617512e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_586_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile586)_ 1.19181275977744226e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_587_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile587)_ 1.19202224001146613e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_588_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile588)_ 1.19222464910399457e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_589_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile589)_ 1.19241997319665238e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_590_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile590)_ 1.19260819840138060e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_591_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile591)_ 1.19278931082236403e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_592_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile592)_ 1.19296329654852012e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_593_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile593)_ 1.19313014162742859e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_594_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile594)_ 1.19328983206502832e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_595_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile595)_ 1.19344235389208485e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_596_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile596)_ 1.19358769306769034e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_597_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile597)_ 1.19372583557545413e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_598_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile598)_ 1.19385676732306021e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_599_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile599)_ 1.19398047421255885e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_600_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile600)_ 1.19409694213280081e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_601_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile601)_ 1.19420615694806661e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_602_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile602)_ 1.19430810450159020e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_603_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile603)_ 1.19440277058165383e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_604_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile604)_ 1.19449014098491173e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_605_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile605)_ 1.19457020149008452e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_606_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile606)_ 1.19464293780892402e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_607_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile607)_ 1.19470833567977847e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_608_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile608)_ 1.19476638078480774e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_609_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile609)_ 1.19481705879103516e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_610_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile610)_ 1.19486035534262652e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_611_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile611)_ 1.19489625604931871e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_612_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile612)_ 1.19492474652018715e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_613_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile613)_ 1.19494581232565816e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_614_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile614)_ 1.19495943900097944e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_615_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile615)_ 1.19496561208769555e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_616_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile616)_ 1.19496431708795495e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_617_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile617)_ 1.19495553946036871e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_618_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile618)_ 1.19493926466921092e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_619_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile619)_ 1.19491547813473115e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_620_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile620)_ 1.19488416529776788e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_621_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile621)_ 1.19484531150113142e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_622_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile622)_ 1.19479890210769189e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_623_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile623)_ 1.19474492249656613e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_624_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile624)_ 1.19468335793634205e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_625_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile625)_ 1.19461419373814767e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_626_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile626)_ 1.19453741516723326e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_627_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile627)_ 1.19445300746185788e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_628_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile628)_ 1.19436095585618487e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_629_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile629)_ 1.19426124552601907e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_630_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile630)_ 1.19415386166963136e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_631_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile631)_ 1.19403878943414171e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_632_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile632)_ 1.19391601396166263e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_633_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile633)_ 1.19378552033473830e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_634_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile634)_ 1.19364729366537390e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_635_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile635)_ 1.19350131900937476e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_636_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile636)_ 1.19334758140489054e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_637_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile637)_ 1.19318606586437583e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_638_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile638)_ 1.19301675740561691e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_639_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile639)_ 1.19283964100463050e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_640_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile640)_ 1.19265470159526724e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_641_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile641)_ 1.19246192412776602e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_642_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile642)_ 1.19226129351759167e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_643_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile643)_ 1.19205279463720417e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_644_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile644)_ 1.19183641238273588e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_645_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile645)_ 1.19161213159105512e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_646_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile646)_ 1.19137993709463891e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_647_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile647)_ 1.19113981368576521e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_648_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile648)_ 1.19089174618358176e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_649_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile649)_ 1.19063571933084242e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_650_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile650)_ 1.19037171788877773e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_651_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile651)_ 1.19009972657731725e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_652_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile652)_ 1.18981973011858758e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_653_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile653)_ 1.18953171318483888e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_654_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile654)_ 1.18923566046202460e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_655_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile655)_ 1.18893155659765878e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_656_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile656)_ 1.18861938622852412e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_657_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile657)_ 1.18829913396438693e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_658_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile658)_ 1.18797078438768067e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_659_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile659)_ 1.18763432210560807e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_660_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile660)_ 1.18728973166538875e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_661_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile661)_ 1.18693699761840861e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_662_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile662)_ 1.18657610446746206e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_663_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile663)_ 1.18620703675552785e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_664_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile664)_ 1.18582977895623203e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_665_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile665)_ 1.18544431555459399e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_666_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile666)_ 1.18505063099399975e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_667_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile667)_ 1.18464870975332360e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_668_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile668)_ 1.18423853624076963e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_669_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile669)_ 1.18382009487510362e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_670_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile670)_ 1.18339337005689427e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_671_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile671)_ 1.18295834619289685e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_672_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile672)_ 1.18251500761368585e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_673_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile673)_ 1.18206333872128005e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_674_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile674)_ 1.18160332382861114e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_675_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile675)_ 1.18113494730751056e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_676_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile676)_ 1.18065819344413351e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_677_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile677)_ 1.18017304655426668e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_678_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile678)_ 1.17967949097512494e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_679_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile679)_ 1.17917751092810521e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_680_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile680)_ 1.17866709075941344e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_681_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile681)_ 1.17814821468633837e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_682_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile682)_ 1.17762086698002481e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_683_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile683)_ 1.17708503188621895e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_684_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile684)_ 1.17654069365429100e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_685_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile685)_ 1.17598783652032961e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_686_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile686)_ 1.17542644469006523e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_687_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile687)_ 1.17485650240172195e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_688_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile688)_ 1.17427799385437185e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_689_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile689)_ 1.17369090325400369e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_690_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile690)_ 1.17309521479226457e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_691_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile691)_ 1.17249091268864982e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_692_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile692)_ 1.17187798112258559e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_693_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile693)_ 1.17125640426702492e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_694_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile694)_ 1.17062616633092260e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_695_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile695)_ 1.16998725150385657e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_696_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile696)_ 1.16933964395145324e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_697_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile697)_ 1.16868332784935223e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_698_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile698)_ 1.16801828740893555e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_699_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile699)_ 1.16734450677423388e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_700_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile700)_ 1.16666197017208269e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_701_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile701)_ 1.16597066177453121e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_702_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile702)_ 1.16527056577609769e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_703_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile703)_ 1.16456166636350385e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_704_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile704)_ 1.16384394775454793e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_705_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile705)_ 1.16311739411996563e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_706_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile706)_ 1.16238198972666868e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_707_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile707)_ 1.16163771876387559e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_708_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile708)_ 1.16088456545598365e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_709_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile709)_ 1.16012251407152326e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_710_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile710)_ 1.15935154883564859e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_711_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile711)_ 1.15857165405273931e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_712_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile712)_ 1.15778281393959931e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_713_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile713)_ 1.15698501284078707e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_714_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile714)_ 1.15617823502184996e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_715_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile715)_ 1.15536246483681267e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_716_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile716)_ 1.15453768660904055e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_717_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile717)_ 1.15370388469308773e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_718_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile718)_ 1.15286104347932499e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_719_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile719)_ 1.15200914735398459e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_720_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile720)_ 1.15114818075267109e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_721_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile721)_ 1.15027812811590441e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_722_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile722)_ 1.14939897391149997e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_723_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile723)_ 1.14851070263471342e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_724_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile724)_ 1.14761329881740669e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_725_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile725)_ 1.14670674701474358e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_726_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile726)_ 1.14579103179625452e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_727_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile727)_ 1.14486613780933680e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_728_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile728)_ 1.14393204967997708e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_729_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile729)_ 1.14298875210801214e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_730_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile730)_ 1.14203622983127199e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_731_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile731)_ 1.14107446758472692e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_732_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile732)_ 1.14010345019651058e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_733_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile733)_ 1.13912316252452253e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_734_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile734)_ 1.13813358942904536e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_735_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile735)_ 1.13713471587401707e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_736_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile736)_ 1.13612652685413599e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_737_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile737)_ 1.13510900738119924e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_738_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile738)_ 1.13408214257226126e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_739_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile739)_ 1.13304591756237215e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_740_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile740)_ 1.13200031755588022e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_741_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile741)_ 1.13094532780840962e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_742_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile742)_ 1.12988093366002962e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_743_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile743)_ 1.12880712047985603e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_744_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile744)_ 1.12772387372729738e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_745_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile745)_ 1.12663117891530495e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_746_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile746)_ 1.12552902163443845e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_747_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile747)_ 1.12441738757724109e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_748_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile748)_ 1.12329626243512608e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_749_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile749)_ 1.12216563208805548e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_750_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile750)_ 1.12102548240208943e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_751_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile751)_ 1.11987579936258467e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_752_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile752)_ 1.11871656903724231e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_753_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile753)_ 1.11754777762480845e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_754_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile754)_ 1.11636941135575991e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_755_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile755)_ 1.11518145659354594e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_756_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile756)_ 1.11398389976376470e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_757_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile757)_ 1.11277672748034597e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_758_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile758)_ 1.11155992634924157e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_759_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile759)_ 1.11033348317198764e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_760_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile760)_ 1.10909738485553740e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_761_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile761)_ 1.10785161836472919e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_762_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile762)_ 1.10659617085475098e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_763_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile763)_ 1.10533102957054690e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_764_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile764)_ 1.10405618186255258e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_765_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile765)_ 1.10277161529115271e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_766_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile766)_ 1.10147731748621719e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_767_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile767)_ 1.10017327625164165e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_768_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile768)_ 1.09885947950303878e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_769_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile769)_ 1.09753591533357630e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_770_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile770)_ 1.09620257201111862e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_771_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile771)_ 1.09485943792050795e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_772_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile772)_ 1.09350650161996153e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_773_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile773)_ 1.09214375188325385e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_774_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile774)_ 1.09077117760193829e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_775_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile775)_ 1.08938876786231539e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_776_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile776)_ 1.08799651196299033e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_777_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile777)_ 1.08659439936694673e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_778_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile778)_ 1.08518241973912140e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_779_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile779)_ 1.08376056296928952e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_780_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile780)_ 1.08232881911888932e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_781_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile781)_ 1.08088717850495248e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_782_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile782)_ 1.07943563164195518e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_783_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile783)_ 1.07797416924952771e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_784_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile784)_ 1.07650278234261466e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_785_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile785)_ 1.07502146211668915e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_786_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile786)_ 1.07353020008462054e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_787_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile787)_ 1.07202898793051973e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_788_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile788)_ 1.07051781767319078e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_789_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile789)_ 1.06899668157158789e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_790_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile790)_ 1.06746557216987250e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_791_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile791)_ 1.06592448228557575e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_792_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile792)_ 1.06437340509734687e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_793_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile793)_ 1.06281233395510190e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_794_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile794)_ 1.06124126268859250e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_795_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile795)_ 1.05966018531232480e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_796_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile796)_ 1.05806909622984946e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_797_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile797)_ 1.05646799019661498e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_798_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile798)_ 1.05485686229825140e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_799_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile799)_ 1.05323570800874167e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_800_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile800)_ 1.05160452310477832e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_801_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile801)_ 1.04996330383143547e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_802_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile802)_ 1.04831204679562227e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_803_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile803)_ 1.04665074896053562e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_804_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile804)_ 1.04497940779178147e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_805_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile805)_ 1.04329802110702929e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_806_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile806)_ 1.04160658722292198e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_807_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile807)_ 1.03990510485308454e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_808_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile808)_ 1.03819357324555217e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_809_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile809)_ 1.03647199203680609e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_810_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile810)_ 1.03474036145049936e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_811_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile811)_ 1.03299868214042061e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_812_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile812)_ 1.03124695537988968e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_813_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile813)_ 1.02948518283768158e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_814_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile814)_ 1.02771336685720423e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_815_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile815)_ 1.02593151028786914e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_816_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile816)_ 1.02413961661059552e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_817_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile817)_ 1.02233768985195515e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_818_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile818)_ 1.02052573470539695e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_819_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile819)_ 1.01870375644547064e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_820_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile820)_ 1.01687176107300558e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_821_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile821)_ 1.01502975521271539e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_822_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile822)_ 1.01317774617439189e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_823_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile823)_ 1.01131574201521121e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_824_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile824)_ 1.00944375150568005e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_825_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile825)_ 1.00756178419279929e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_826_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile826)_ 1.00566985037209081e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_827_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile827)_ 1.00376796113437698e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_828_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile828)_ 1.00185612842505975e-02 -Plasma_triton_isotropic_Larmor_radius_at_point_829_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile829)_ 9.99934365005535758e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_830_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile830)_ 9.98002684536583758e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_831_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile831)_ 9.96061101534454450e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_832_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile832)_ 9.94109631484821690e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_833_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile833)_ 9.92148290787979968e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_834_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile834)_ 9.90177096839025932e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_835_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile835)_ 9.88196068020630140e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_836_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile836)_ 9.86205223767096413e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_837_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile837)_ 9.84204584575963486e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_838_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile838)_ 9.82194172037829070e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_839_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile839)_ 9.80174008872785815e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_840_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile840)_ 9.78144118949527547e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_841_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile841)_ 9.76104527359246237e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_842_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile842)_ 9.74055260412185972e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_843_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile843)_ 9.71996345682836493e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_844_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile844)_ 9.69927812074337405e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_845_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile845)_ 9.67849689804626059e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_846_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile846)_ 9.65762010484458831e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_847_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile847)_ 9.63664807172368888e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_848_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile848)_ 9.61558114375129537e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_849_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile849)_ 9.59441968135083673e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_850_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile850)_ 9.57316406063260690e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_851_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile851)_ 9.55181467329511459e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_852_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile852)_ 9.53037192758952878e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_853_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile853)_ 9.50883624986948763e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_854_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile854)_ 9.48720808283113129e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_855_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile855)_ 9.46548788801963685e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_856_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile856)_ 9.44367614546731682e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_857_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile857)_ 9.42177335428011700e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_858_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile858)_ 9.39978003381176062e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_859_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile859)_ 9.37769672351573824e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_860_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile860)_ 9.35552398395297219e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_861_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile861)_ 9.33326239794979827e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_862_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile862)_ 9.31091256990151245e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_863_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile863)_ 9.28847512824754543e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_864_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile864)_ 9.26595072473661990e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_865_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile865)_ 9.24334003583737046e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_866_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile866)_ 9.22064376319349163e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_867_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile867)_ 9.19786263527564221e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_868_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile868)_ 9.17499740688499689e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_869_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile869)_ 9.15204886110350044e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_870_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile870)_ 9.12901781001979919e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_871_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile871)_ 9.10590509460118026e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_872_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile872)_ 9.08271158738238431e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_873_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile873)_ 9.05943819184380425e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_874_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile874)_ 9.03608584481906986e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_875_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile875)_ 9.01265551671527436e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_876_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile876)_ 8.98914821214639656e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_877_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile877)_ 8.96556497290502789e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_878_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile878)_ 8.94190687688163621e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_879_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile879)_ 8.91817504109213705e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_880_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile880)_ 8.89437062193743945e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_881_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile881)_ 8.87049481713347680e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_882_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile882)_ 8.84654886642953671e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_883_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile883)_ 8.82253405381002061e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_884_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile884)_ 8.79845170855131191e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_885_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile885)_ 8.77430320658281401e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_886_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile886)_ 8.75008997272590759e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_887_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile887)_ 8.72581348163300151e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_888_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile888)_ 8.70147525995739260e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_889_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile889)_ 8.67707688792653670e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_890_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile890)_ 8.65262000145149840e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_891_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile891)_ 8.62810629435421979e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_892_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile892)_ 8.60353751926740476e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_893_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile893)_ 8.57891549124038463e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_894_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile894)_ 8.55424208865245873e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_895_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile895)_ 8.52951925648666107e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_896_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile896)_ 8.50474900805745296e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_897_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile897)_ 8.47993342751141889e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_898_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile898)_ 8.45507467312209444e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_899_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile899)_ 8.43017497961400832e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_900_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile900)_ 8.40523666060878465e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_901_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile901)_ 8.38026211127099012e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_902_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile902)_ 8.35525381349406723e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_903_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile903)_ 8.33021433688935393e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_904_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile904)_ 8.30514634229326774e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_905_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile905)_ 8.28005258656703234e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_906_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile906)_ 8.25493592635094704e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_907_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile907)_ 8.22979931989574649e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_908_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile908)_ 8.20464583332230178e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_909_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile909)_ 8.17947864376117502e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_910_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile910)_ 8.15430104426166993e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_911_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile911)_ 8.12911644747136598e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_912_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile912)_ 8.10392839220833681e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_913_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile913)_ 8.07874054780595603e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_914_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile914)_ 8.05355671869522304e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_915_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile915)_ 8.02838085169278043e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_916_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile916)_ 8.00321704112262090e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_917_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile917)_ 7.97806953458949850e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_918_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile918)_ 7.95294274175393709e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_919_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile919)_ 7.92784123843408468e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_920_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile920)_ 7.90276977741730634e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_921_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile921)_ 7.87773329256362398e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_922_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile922)_ 7.85273691195794744e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_923_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile923)_ 7.82778596196139279e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_924_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile924)_ 7.80288597954958453e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_925_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile925)_ 7.77804272206982211e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_926_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile926)_ 7.75326217757852255e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_927_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile927)_ 7.72855057543344378e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_928_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile928)_ 7.70391440024526669e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_929_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile929)_ 7.67936040346059098e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_930_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile930)_ 7.65489561833608383e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_931_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile931)_ 7.63052737431078702e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_932_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile932)_ 7.60626331339115096e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_933_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile933)_ 7.58211140730664142e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_934_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile934)_ 7.55807997681872540e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_935_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile935)_ 7.53417771227607967e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_936_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile936)_ 7.51041369490937621e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_937_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile937)_ 7.48679742095553248e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_938_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile938)_ 7.46333882901720723e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_939_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile939)_ 7.44004832720361435e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_940_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile940)_ 7.41693682663245504e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_941_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile941)_ 7.39401577452281685e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_942_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile942)_ 7.37129719331938021e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_943_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile943)_ 7.34879372364620042e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_944_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile944)_ 7.32651867122934876e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_945_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile945)_ 7.30448606107674415e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_946_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile946)_ 7.28271069677951903e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_947_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile947)_ 7.26120822834715098e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_948_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile948)_ 7.23999522898084898e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_949_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile949)_ 7.21908928374444606e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_950_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile950)_ 7.19850909076964404e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_951_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile951)_ 7.17827457792611420e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_952_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile952)_ 7.15840704099502279e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_953_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile953)_ 7.13892930328937150e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_954_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile954)_ 7.11986591012782333e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_955_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile955)_ 7.10124335559033856e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_956_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile956)_ 7.08309036229445160e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_957_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile957)_ 7.06543822482775564e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_958_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile958)_ 7.04832123306410076e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_959_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile959)_ 7.03177721276684615e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_960_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile960)_ 7.01584821591176924e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_961_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile961)_ 7.00058143124612960e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_962_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile962)_ 6.98603040745976196e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_963_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile963)_ 6.97225674451164810e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_964_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile964)_ 6.95933251909024164e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_965_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile965)_ 6.94734390650057678e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_966_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile966)_ 6.93639689269120400e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_967_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile967)_ 6.92662695094656104e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_968_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile968)_ 6.91821712810702927e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_969_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile969)_ 6.91143730324607700e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_970_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile970)_ 6.90675469764710868e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_971_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile971)_ 6.90551152776616023e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_972_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile972)_ 6.79501659182833641e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_973_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile973)_ 6.68245970757940563e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_974_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile974)_ 6.56773467976352280e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_975_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile975)_ 6.45072564381078944e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_976_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile976)_ 6.33130577734632161e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_977_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile977)_ 6.20933579066954879e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_978_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile978)_ 6.08466213283202252e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_979_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile979)_ 5.95711485157364700e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_980_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile980)_ 5.82650502603835035e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_981_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile981)_ 5.69262164987761107e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_982_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile982)_ 5.55522782916299720e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_983_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile983)_ 5.41405609232637006e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_984_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile984)_ 5.26880254298810798e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_985_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile985)_ 5.11911949850135054e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_986_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile986)_ 4.96460608346816282e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_987_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile987)_ 4.80479606231031930e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_988_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile988)_ 4.63914183171447274e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_989_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile989)_ 4.46699298961763559e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_990_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile990)_ 4.28756703617119359e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_991_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile991)_ 4.09990837578136976e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_992_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile992)_ 3.90282932713602749e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_993_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile993)_ 3.69482244176269842e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_994_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile994)_ 3.47392496363834033e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_995_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile995)_ 3.23749898401962501e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_996_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile996)_ 2.98185269973853979e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_997_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile997)_ 2.70153471167552690e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_998_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile998)_ 2.38787145455699075e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_999_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile999)_ 2.02542933239191611e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_1000______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1000)_ 1.58100887887403958e-03 -Plasma_triton_isotropic_Larmor_radius_at_point_1001______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1001)_ 9.45305748606121120e-04 -Volume_averaged_electron_thermal_velocity_(m/s)__________________________ (vel_plasma_electron_vol_avg)__ 6.55585714550692216e+07 -Plasma_electron_thermal_velocity_at_point_0______________________________ (vel_plasma_electron_profile0)_ 9.26029937538009435e+07 -Plasma_electron_thermal_velocity_at_point_1______________________________ (vel_plasma_electron_profile1)_ 9.26027709296452850e+07 -Plasma_electron_thermal_velocity_at_point_2______________________________ (vel_plasma_electron_profile2)_ 9.26021024556669146e+07 -Plasma_electron_thermal_velocity_at_point_3______________________________ (vel_plasma_electron_profile3)_ 9.26009883273312598e+07 -Plasma_electron_thermal_velocity_at_point_4______________________________ (vel_plasma_electron_profile4)_ 9.25994285370816141e+07 -Plasma_electron_thermal_velocity_at_point_5______________________________ (vel_plasma_electron_profile5)_ 9.25974230743380189e+07 -Plasma_electron_thermal_velocity_at_point_6______________________________ (vel_plasma_electron_profile6)_ 9.25949719254974127e+07 -Plasma_electron_thermal_velocity_at_point_7______________________________ (vel_plasma_electron_profile7)_ 9.25920750739351958e+07 -Plasma_electron_thermal_velocity_at_point_8______________________________ (vel_plasma_electron_profile8)_ 9.25887325000034124e+07 -Plasma_electron_thermal_velocity_at_point_9______________________________ (vel_plasma_electron_profile9)_ 9.25849441810322404e+07 -Plasma_electron_thermal_velocity_at_point_10_____________________________ (vel_plasma_electron_profile10)_ 9.25807100913292170e+07 -Plasma_electron_thermal_velocity_at_point_11_____________________________ (vel_plasma_electron_profile11)_ 9.25760302021801770e+07 -Plasma_electron_thermal_velocity_at_point_12_____________________________ (vel_plasma_electron_profile12)_ 9.25709044818492532e+07 -Plasma_electron_thermal_velocity_at_point_13_____________________________ (vel_plasma_electron_profile13)_ 9.25653328955786973e+07 -Plasma_electron_thermal_velocity_at_point_14_____________________________ (vel_plasma_electron_profile14)_ 9.25593154055897444e+07 -Plasma_electron_thermal_velocity_at_point_15_____________________________ (vel_plasma_electron_profile15)_ 9.25528519710822701e+07 -Plasma_electron_thermal_velocity_at_point_16_____________________________ (vel_plasma_electron_profile16)_ 9.25459425482355505e+07 -Plasma_electron_thermal_velocity_at_point_17_____________________________ (vel_plasma_electron_profile17)_ 9.25385870902084708e+07 -Plasma_electron_thermal_velocity_at_point_18_____________________________ (vel_plasma_electron_profile18)_ 9.25307855471399277e+07 -Plasma_electron_thermal_velocity_at_point_19_____________________________ (vel_plasma_electron_profile19)_ 9.25225378661484569e+07 -Plasma_electron_thermal_velocity_at_point_20_____________________________ (vel_plasma_electron_profile20)_ 9.25138439913338721e+07 -Plasma_electron_thermal_velocity_at_point_21_____________________________ (vel_plasma_electron_profile21)_ 9.25047038637768477e+07 -Plasma_electron_thermal_velocity_at_point_22_____________________________ (vel_plasma_electron_profile22)_ 9.24951174215396047e+07 -Plasma_electron_thermal_velocity_at_point_23_____________________________ (vel_plasma_electron_profile23)_ 9.24850845996662080e+07 -Plasma_electron_thermal_velocity_at_point_24_____________________________ (vel_plasma_electron_profile24)_ 9.24746053301828504e+07 -Plasma_electron_thermal_velocity_at_point_25_____________________________ (vel_plasma_electron_profile25)_ 9.24636795420992970e+07 -Plasma_electron_thermal_velocity_at_point_26_____________________________ (vel_plasma_electron_profile26)_ 9.24523071614085138e+07 -Plasma_electron_thermal_velocity_at_point_27_____________________________ (vel_plasma_electron_profile27)_ 9.24404881110872626e+07 -Plasma_electron_thermal_velocity_at_point_28_____________________________ (vel_plasma_electron_profile28)_ 9.24282223110974282e+07 -Plasma_electron_thermal_velocity_at_point_29_____________________________ (vel_plasma_electron_profile29)_ 9.24155096783856750e+07 -Plasma_electron_thermal_velocity_at_point_30_____________________________ (vel_plasma_electron_profile30)_ 9.24023501268849820e+07 -Plasma_electron_thermal_velocity_at_point_31_____________________________ (vel_plasma_electron_profile31)_ 9.23887435675144494e+07 -Plasma_electron_thermal_velocity_at_point_32_____________________________ (vel_plasma_electron_profile32)_ 9.23746899081809223e+07 -Plasma_electron_thermal_velocity_at_point_33_____________________________ (vel_plasma_electron_profile33)_ 9.23601890537790805e+07 -Plasma_electron_thermal_velocity_at_point_34_____________________________ (vel_plasma_electron_profile34)_ 9.23452409061919749e+07 -Plasma_electron_thermal_velocity_at_point_35_____________________________ (vel_plasma_electron_profile35)_ 9.23298453642929047e+07 -Plasma_electron_thermal_velocity_at_point_36_____________________________ (vel_plasma_electron_profile36)_ 9.23140023239450157e+07 -Plasma_electron_thermal_velocity_at_point_37_____________________________ (vel_plasma_electron_profile37)_ 9.22977116780031919e+07 -Plasma_electron_thermal_velocity_at_point_38_____________________________ (vel_plasma_electron_profile38)_ 9.22809733163140565e+07 -Plasma_electron_thermal_velocity_at_point_39_____________________________ (vel_plasma_electron_profile39)_ 9.22637871257172227e+07 -Plasma_electron_thermal_velocity_at_point_40_____________________________ (vel_plasma_electron_profile40)_ 9.22461529900467694e+07 -Plasma_electron_thermal_velocity_at_point_41_____________________________ (vel_plasma_electron_profile41)_ 9.22280707901315391e+07 -Plasma_electron_thermal_velocity_at_point_42_____________________________ (vel_plasma_electron_profile42)_ 9.22095404037962854e+07 -Plasma_electron_thermal_velocity_at_point_43_____________________________ (vel_plasma_electron_profile43)_ 9.21905617058631182e+07 -Plasma_electron_thermal_velocity_at_point_44_____________________________ (vel_plasma_electron_profile44)_ 9.21711345681522191e+07 -Plasma_electron_thermal_velocity_at_point_45_____________________________ (vel_plasma_electron_profile45)_ 9.21512588594829738e+07 -Plasma_electron_thermal_velocity_at_point_46_____________________________ (vel_plasma_electron_profile46)_ 9.21309344456755966e+07 -Plasma_electron_thermal_velocity_at_point_47_____________________________ (vel_plasma_electron_profile47)_ 9.21101611895520240e+07 -Plasma_electron_thermal_velocity_at_point_48_____________________________ (vel_plasma_electron_profile48)_ 9.20889389509368837e+07 -Plasma_electron_thermal_velocity_at_point_49_____________________________ (vel_plasma_electron_profile49)_ 9.20672675866593570e+07 -Plasma_electron_thermal_velocity_at_point_50_____________________________ (vel_plasma_electron_profile50)_ 9.20451469505541474e+07 -Plasma_electron_thermal_velocity_at_point_51_____________________________ (vel_plasma_electron_profile51)_ 9.20225768934632689e+07 -Plasma_electron_thermal_velocity_at_point_52_____________________________ (vel_plasma_electron_profile52)_ 9.19995572632369846e+07 -Plasma_electron_thermal_velocity_at_point_53_____________________________ (vel_plasma_electron_profile53)_ 9.19760879047354311e+07 -Plasma_electron_thermal_velocity_at_point_54_____________________________ (vel_plasma_electron_profile54)_ 9.19521686598303169e+07 -Plasma_electron_thermal_velocity_at_point_55_____________________________ (vel_plasma_electron_profile55)_ 9.19277993674065322e+07 -Plasma_electron_thermal_velocity_at_point_56_____________________________ (vel_plasma_electron_profile56)_ 9.19029798633633107e+07 -Plasma_electron_thermal_velocity_at_point_57_____________________________ (vel_plasma_electron_profile57)_ 9.18777099806167185e+07 -Plasma_electron_thermal_velocity_at_point_58_____________________________ (vel_plasma_electron_profile58)_ 9.18519895491005033e+07 -Plasma_electron_thermal_velocity_at_point_59_____________________________ (vel_plasma_electron_profile59)_ 9.18258183957682401e+07 -Plasma_electron_thermal_velocity_at_point_60_____________________________ (vel_plasma_electron_profile60)_ 9.17991963445955366e+07 -Plasma_electron_thermal_velocity_at_point_61_____________________________ (vel_plasma_electron_profile61)_ 9.17721232165811658e+07 -Plasma_electron_thermal_velocity_at_point_62_____________________________ (vel_plasma_electron_profile62)_ 9.17445988297495544e+07 -Plasma_electron_thermal_velocity_at_point_63_____________________________ (vel_plasma_electron_profile63)_ 9.17166229991528839e+07 -Plasma_electron_thermal_velocity_at_point_64_____________________________ (vel_plasma_electron_profile64)_ 9.16881955368723720e+07 -Plasma_electron_thermal_velocity_at_point_65_____________________________ (vel_plasma_electron_profile65)_ 9.16593162520213723e+07 -Plasma_electron_thermal_velocity_at_point_66_____________________________ (vel_plasma_electron_profile66)_ 9.16299849507469237e+07 -Plasma_electron_thermal_velocity_at_point_67_____________________________ (vel_plasma_electron_profile67)_ 9.16002014362324774e+07 -Plasma_electron_thermal_velocity_at_point_68_____________________________ (vel_plasma_electron_profile68)_ 9.15699655086995810e+07 -Plasma_electron_thermal_velocity_at_point_69_____________________________ (vel_plasma_electron_profile69)_ 9.15392769654103667e+07 -Plasma_electron_thermal_velocity_at_point_70_____________________________ (vel_plasma_electron_profile70)_ 9.15081356006710976e+07 -Plasma_electron_thermal_velocity_at_point_71_____________________________ (vel_plasma_electron_profile71)_ 9.14765412058328539e+07 -Plasma_electron_thermal_velocity_at_point_72_____________________________ (vel_plasma_electron_profile72)_ 9.14444935692955405e+07 -Plasma_electron_thermal_velocity_at_point_73_____________________________ (vel_plasma_electron_profile73)_ 9.14119924765101373e+07 -Plasma_electron_thermal_velocity_at_point_74_____________________________ (vel_plasma_electron_profile74)_ 9.13790377099813968e+07 -Plasma_electron_thermal_velocity_at_point_75_____________________________ (vel_plasma_electron_profile75)_ 9.13456290492702276e+07 -Plasma_electron_thermal_velocity_at_point_76_____________________________ (vel_plasma_electron_profile76)_ 9.13117662709978521e+07 -Plasma_electron_thermal_velocity_at_point_77_____________________________ (vel_plasma_electron_profile77)_ 9.12774491488471627e+07 -Plasma_electron_thermal_velocity_at_point_78_____________________________ (vel_plasma_electron_profile78)_ 9.12426774535667449e+07 -Plasma_electron_thermal_velocity_at_point_79_____________________________ (vel_plasma_electron_profile79)_ 9.12074509529742599e+07 -Plasma_electron_thermal_velocity_at_point_80_____________________________ (vel_plasma_electron_profile80)_ 9.11717694119585454e+07 -Plasma_electron_thermal_velocity_at_point_81_____________________________ (vel_plasma_electron_profile81)_ 9.11356325924846381e+07 -Plasma_electron_thermal_velocity_at_point_82_____________________________ (vel_plasma_electron_profile82)_ 9.10990402535949200e+07 -Plasma_electron_thermal_velocity_at_point_83_____________________________ (vel_plasma_electron_profile83)_ 9.10619921514150351e+07 -Plasma_electron_thermal_velocity_at_point_84_____________________________ (vel_plasma_electron_profile84)_ 9.10244880391554534e+07 -Plasma_electron_thermal_velocity_at_point_85_____________________________ (vel_plasma_electron_profile85)_ 9.09865276671170145e+07 -Plasma_electron_thermal_velocity_at_point_86_____________________________ (vel_plasma_electron_profile86)_ 9.09481107826927453e+07 -Plasma_electron_thermal_velocity_at_point_87_____________________________ (vel_plasma_electron_profile87)_ 9.09092371303733438e+07 -Plasma_electron_thermal_velocity_at_point_88_____________________________ (vel_plasma_electron_profile88)_ 9.08699064517506361e+07 -Plasma_electron_thermal_velocity_at_point_89_____________________________ (vel_plasma_electron_profile89)_ 9.08301184855213314e+07 -Plasma_electron_thermal_velocity_at_point_90_____________________________ (vel_plasma_electron_profile90)_ 9.07898729674919546e+07 -Plasma_electron_thermal_velocity_at_point_91_____________________________ (vel_plasma_electron_profile91)_ 9.07491696305825412e+07 -Plasma_electron_thermal_velocity_at_point_92_____________________________ (vel_plasma_electron_profile92)_ 9.07080082048312724e+07 -Plasma_electron_thermal_velocity_at_point_93_____________________________ (vel_plasma_electron_profile93)_ 9.06663884173992425e+07 -Plasma_electron_thermal_velocity_at_point_94_____________________________ (vel_plasma_electron_profile94)_ 9.06243099925750792e+07 -Plasma_electron_thermal_velocity_at_point_95_____________________________ (vel_plasma_electron_profile95)_ 9.05817726517793387e+07 -Plasma_electron_thermal_velocity_at_point_96_____________________________ (vel_plasma_electron_profile96)_ 9.05387761135701090e+07 -Plasma_electron_thermal_velocity_at_point_97_____________________________ (vel_plasma_electron_profile97)_ 9.04953200936476439e+07 -Plasma_electron_thermal_velocity_at_point_98_____________________________ (vel_plasma_electron_profile98)_ 9.04514043048595786e+07 -Plasma_electron_thermal_velocity_at_point_99_____________________________ (vel_plasma_electron_profile99)_ 9.04070284572061896e+07 -Plasma_electron_thermal_velocity_at_point_100____________________________ (vel_plasma_electron_profile100)_ 9.03621922578462213e+07 -Plasma_electron_thermal_velocity_at_point_101____________________________ (vel_plasma_electron_profile101)_ 9.03168954111023247e+07 -Plasma_electron_thermal_velocity_at_point_102____________________________ (vel_plasma_electron_profile102)_ 9.02711376184664369e+07 -Plasma_electron_thermal_velocity_at_point_103____________________________ (vel_plasma_electron_profile103)_ 9.02249185786060989e+07 -Plasma_electron_thermal_velocity_at_point_104____________________________ (vel_plasma_electron_profile104)_ 9.01782379873707294e+07 -Plasma_electron_thermal_velocity_at_point_105____________________________ (vel_plasma_electron_profile105)_ 9.01310955377969593e+07 -Plasma_electron_thermal_velocity_at_point_106____________________________ (vel_plasma_electron_profile106)_ 9.00834909201158434e+07 -Plasma_electron_thermal_velocity_at_point_107____________________________ (vel_plasma_electron_profile107)_ 9.00354238217592686e+07 -Plasma_electron_thermal_velocity_at_point_108____________________________ (vel_plasma_electron_profile108)_ 8.99868939273657948e+07 -Plasma_electron_thermal_velocity_at_point_109____________________________ (vel_plasma_electron_profile109)_ 8.99379009187892526e+07 -Plasma_electron_thermal_velocity_at_point_110____________________________ (vel_plasma_electron_profile110)_ 8.98884444751035869e+07 -Plasma_electron_thermal_velocity_at_point_111____________________________ (vel_plasma_electron_profile111)_ 8.98385242726121098e+07 -Plasma_electron_thermal_velocity_at_point_112____________________________ (vel_plasma_electron_profile112)_ 8.97881399848532230e+07 -Plasma_electron_thermal_velocity_at_point_113____________________________ (vel_plasma_electron_profile113)_ 8.97372912826093286e+07 -Plasma_electron_thermal_velocity_at_point_114____________________________ (vel_plasma_electron_profile114)_ 8.96859778339135647e+07 -Plasma_electron_thermal_velocity_at_point_115____________________________ (vel_plasma_electron_profile115)_ 8.96341993040589988e+07 -Plasma_electron_thermal_velocity_at_point_116____________________________ (vel_plasma_electron_profile116)_ 8.95819553556049317e+07 -Plasma_electron_thermal_velocity_at_point_117____________________________ (vel_plasma_electron_profile117)_ 8.95292456483874023e+07 -Plasma_electron_thermal_velocity_at_point_118____________________________ (vel_plasma_electron_profile118)_ 8.94760698395260274e+07 -Plasma_electron_thermal_velocity_at_point_119____________________________ (vel_plasma_electron_profile119)_ 8.94224275834341496e+07 -Plasma_electron_thermal_velocity_at_point_120____________________________ (vel_plasma_electron_profile120)_ 8.93683185318261385e+07 -Plasma_electron_thermal_velocity_at_point_121____________________________ (vel_plasma_electron_profile121)_ 8.93137423337288499e+07 -Plasma_electron_thermal_velocity_at_point_122____________________________ (vel_plasma_electron_profile122)_ 8.92586986354891360e+07 -Plasma_electron_thermal_velocity_at_point_123____________________________ (vel_plasma_electron_profile123)_ 8.92031870807847083e+07 -Plasma_electron_thermal_velocity_at_point_124____________________________ (vel_plasma_electron_profile124)_ 8.91472073106333613e+07 -Plasma_electron_thermal_velocity_at_point_125____________________________ (vel_plasma_electron_profile125)_ 8.90907589634035677e+07 -Plasma_electron_thermal_velocity_at_point_126____________________________ (vel_plasma_electron_profile126)_ 8.90338416748249680e+07 -Plasma_electron_thermal_velocity_at_point_127____________________________ (vel_plasma_electron_profile127)_ 8.89764550779985487e+07 -Plasma_electron_thermal_velocity_at_point_128____________________________ (vel_plasma_electron_profile128)_ 8.89185988034081608e+07 -Plasma_electron_thermal_velocity_at_point_129____________________________ (vel_plasma_electron_profile129)_ 8.88602724789312333e+07 -Plasma_electron_thermal_velocity_at_point_130____________________________ (vel_plasma_electron_profile130)_ 8.88014757298504561e+07 -Plasma_electron_thermal_velocity_at_point_131____________________________ (vel_plasma_electron_profile131)_ 8.87422081788660735e+07 -Plasma_electron_thermal_velocity_at_point_132____________________________ (vel_plasma_electron_profile132)_ 8.86824694461063147e+07 -Plasma_electron_thermal_velocity_at_point_133____________________________ (vel_plasma_electron_profile133)_ 8.86222591491422951e+07 -Plasma_electron_thermal_velocity_at_point_134____________________________ (vel_plasma_electron_profile134)_ 8.85615769029977918e+07 -Plasma_electron_thermal_velocity_at_point_135____________________________ (vel_plasma_electron_profile135)_ 8.85004223201644570e+07 -Plasma_electron_thermal_velocity_at_point_136____________________________ (vel_plasma_electron_profile136)_ 8.84387950106137544e+07 -Plasma_electron_thermal_velocity_at_point_137____________________________ (vel_plasma_electron_profile137)_ 8.83766945818113238e+07 -Plasma_electron_thermal_velocity_at_point_138____________________________ (vel_plasma_electron_profile138)_ 8.83141206387297213e+07 -Plasma_electron_thermal_velocity_at_point_139____________________________ (vel_plasma_electron_profile139)_ 8.82510727838640958e+07 -Plasma_electron_thermal_velocity_at_point_140____________________________ (vel_plasma_electron_profile140)_ 8.81875506172462106e+07 -Plasma_electron_thermal_velocity_at_point_141____________________________ (vel_plasma_electron_profile141)_ 8.81235537364588231e+07 -Plasma_electron_thermal_velocity_at_point_142____________________________ (vel_plasma_electron_profile142)_ 8.80590817366511375e+07 -Plasma_electron_thermal_velocity_at_point_143____________________________ (vel_plasma_electron_profile143)_ 8.79941342105555534e+07 -Plasma_electron_thermal_velocity_at_point_144____________________________ (vel_plasma_electron_profile144)_ 8.79287107485020459e+07 -Plasma_electron_thermal_velocity_at_point_145____________________________ (vel_plasma_electron_profile145)_ 8.78628109384355694e+07 -Plasma_electron_thermal_velocity_at_point_146____________________________ (vel_plasma_electron_profile146)_ 8.77964343659325093e+07 -Plasma_electron_thermal_velocity_at_point_147____________________________ (vel_plasma_electron_profile147)_ 8.77295806142183393e+07 -Plasma_electron_thermal_velocity_at_point_148____________________________ (vel_plasma_electron_profile148)_ 8.76622492641843259e+07 -Plasma_electron_thermal_velocity_at_point_149____________________________ (vel_plasma_electron_profile149)_ 8.75944398944063783e+07 -Plasma_electron_thermal_velocity_at_point_150____________________________ (vel_plasma_electron_profile150)_ 8.75261520811628997e+07 -Plasma_electron_thermal_velocity_at_point_151____________________________ (vel_plasma_electron_profile151)_ 8.74573853984542489e+07 -Plasma_electron_thermal_velocity_at_point_152____________________________ (vel_plasma_electron_profile152)_ 8.73881394180214405e+07 -Plasma_electron_thermal_velocity_at_point_153____________________________ (vel_plasma_electron_profile153)_ 8.73184137093663961e+07 -Plasma_electron_thermal_velocity_at_point_154____________________________ (vel_plasma_electron_profile154)_ 8.72482078397720903e+07 -Plasma_electron_thermal_velocity_at_point_155____________________________ (vel_plasma_electron_profile155)_ 8.71775213743229359e+07 -Plasma_electron_thermal_velocity_at_point_156____________________________ (vel_plasma_electron_profile156)_ 8.71063538759263158e+07 -Plasma_electron_thermal_velocity_at_point_157____________________________ (vel_plasma_electron_profile157)_ 8.70347049053344727e+07 -Plasma_electron_thermal_velocity_at_point_158____________________________ (vel_plasma_electron_profile158)_ 8.69625740211662501e+07 -Plasma_electron_thermal_velocity_at_point_159____________________________ (vel_plasma_electron_profile159)_ 8.68899607799303383e+07 -Plasma_electron_thermal_velocity_at_point_160____________________________ (vel_plasma_electron_profile160)_ 8.68168647360481918e+07 -Plasma_electron_thermal_velocity_at_point_161____________________________ (vel_plasma_electron_profile161)_ 8.67432854418778718e+07 -Plasma_electron_thermal_velocity_at_point_162____________________________ (vel_plasma_electron_profile162)_ 8.66692224477387071e+07 -Plasma_electron_thermal_velocity_at_point_163____________________________ (vel_plasma_electron_profile163)_ 8.65946753019359559e+07 -Plasma_electron_thermal_velocity_at_point_164____________________________ (vel_plasma_electron_profile164)_ 8.65196435507866293e+07 -Plasma_electron_thermal_velocity_at_point_165____________________________ (vel_plasma_electron_profile165)_ 8.64441267386454046e+07 -Plasma_electron_thermal_velocity_at_point_166____________________________ (vel_plasma_electron_profile166)_ 8.63681244079316407e+07 -Plasma_electron_thermal_velocity_at_point_167____________________________ (vel_plasma_electron_profile167)_ 8.62916360991563499e+07 -Plasma_electron_thermal_velocity_at_point_168____________________________ (vel_plasma_electron_profile168)_ 8.62146613509504646e+07 -Plasma_electron_thermal_velocity_at_point_169____________________________ (vel_plasma_electron_profile169)_ 8.61371997000940889e+07 -Plasma_electron_thermal_velocity_at_point_170____________________________ (vel_plasma_electron_profile170)_ 8.60592506815443188e+07 -Plasma_electron_thermal_velocity_at_point_171____________________________ (vel_plasma_electron_profile171)_ 8.59808138284671903e+07 -Plasma_electron_thermal_velocity_at_point_172____________________________ (vel_plasma_electron_profile172)_ 8.59018886722667962e+07 -Plasma_electron_thermal_velocity_at_point_173____________________________ (vel_plasma_electron_profile173)_ 8.58224747426181287e+07 -Plasma_electron_thermal_velocity_at_point_174____________________________ (vel_plasma_electron_profile174)_ 8.57425715674978048e+07 -Plasma_electron_thermal_velocity_at_point_175____________________________ (vel_plasma_electron_profile175)_ 8.56621786732180715e+07 -Plasma_electron_thermal_velocity_at_point_176____________________________ (vel_plasma_electron_profile176)_ 8.55812955844605118e+07 -Plasma_electron_thermal_velocity_at_point_177____________________________ (vel_plasma_electron_profile177)_ 8.54999218243098706e+07 -Plasma_electron_thermal_velocity_at_point_178____________________________ (vel_plasma_electron_profile178)_ 8.54180569142897725e+07 -Plasma_electron_thermal_velocity_at_point_179____________________________ (vel_plasma_electron_profile179)_ 8.53357003743989617e+07 -Plasma_electron_thermal_velocity_at_point_180____________________________ (vel_plasma_electron_profile180)_ 8.52528517231481522e+07 -Plasma_electron_thermal_velocity_at_point_181____________________________ (vel_plasma_electron_profile181)_ 8.51695104775978178e+07 -Plasma_electron_thermal_velocity_at_point_182____________________________ (vel_plasma_electron_profile182)_ 8.50856761533965468e+07 -Plasma_electron_thermal_velocity_at_point_183____________________________ (vel_plasma_electron_profile183)_ 8.50013482648215592e+07 -Plasma_electron_thermal_velocity_at_point_184____________________________ (vel_plasma_electron_profile184)_ 8.49165263248180896e+07 -Plasma_electron_thermal_velocity_at_point_185____________________________ (vel_plasma_electron_profile185)_ 8.48312098450420052e+07 -Plasma_electron_thermal_velocity_at_point_186____________________________ (vel_plasma_electron_profile186)_ 8.47453983359017223e+07 -Plasma_electron_thermal_velocity_at_point_187____________________________ (vel_plasma_electron_profile187)_ 8.46590913066011220e+07 -Plasma_electron_thermal_velocity_at_point_188____________________________ (vel_plasma_electron_profile188)_ 8.45722882651852816e+07 -Plasma_electron_thermal_velocity_at_point_189____________________________ (vel_plasma_electron_profile189)_ 8.44849887185843438e+07 -Plasma_electron_thermal_velocity_at_point_190____________________________ (vel_plasma_electron_profile190)_ 8.43971921726616025e+07 -Plasma_electron_thermal_velocity_at_point_191____________________________ (vel_plasma_electron_profile191)_ 8.43088981322603226e+07 -Plasma_electron_thermal_velocity_at_point_192____________________________ (vel_plasma_electron_profile192)_ 8.42201061012523770e+07 -Plasma_electron_thermal_velocity_at_point_193____________________________ (vel_plasma_electron_profile193)_ 8.41308155825884193e+07 -Plasma_electron_thermal_velocity_at_point_194____________________________ (vel_plasma_electron_profile194)_ 8.40410260783491135e+07 -Plasma_electron_thermal_velocity_at_point_195____________________________ (vel_plasma_electron_profile195)_ 8.39507370897966325e+07 -Plasma_electron_thermal_velocity_at_point_196____________________________ (vel_plasma_electron_profile196)_ 8.38599481174294800e+07 -Plasma_electron_thermal_velocity_at_point_197____________________________ (vel_plasma_electron_profile197)_ 8.37686586610350162e+07 -Plasma_electron_thermal_velocity_at_point_198____________________________ (vel_plasma_electron_profile198)_ 8.36768682197481245e+07 -Plasma_electron_thermal_velocity_at_point_199____________________________ (vel_plasma_electron_profile199)_ 8.35845762921059877e+07 -Plasma_electron_thermal_velocity_at_point_200____________________________ (vel_plasma_electron_profile200)_ 8.34917823761082143e+07 -Plasma_electron_thermal_velocity_at_point_201____________________________ (vel_plasma_electron_profile201)_ 8.33984859692768306e+07 -Plasma_electron_thermal_velocity_at_point_202____________________________ (vel_plasma_electron_profile202)_ 8.33046865687166601e+07 -Plasma_electron_thermal_velocity_at_point_203____________________________ (vel_plasma_electron_profile203)_ 8.32103836711789668e+07 -Plasma_electron_thermal_velocity_at_point_204____________________________ (vel_plasma_electron_profile204)_ 8.31155767731258571e+07 -Plasma_electron_thermal_velocity_at_point_205____________________________ (vel_plasma_electron_profile205)_ 8.30202653707955331e+07 -Plasma_electron_thermal_velocity_at_point_206____________________________ (vel_plasma_electron_profile206)_ 8.29244489602700621e+07 -Plasma_electron_thermal_velocity_at_point_207____________________________ (vel_plasma_electron_profile207)_ 8.28281270375440419e+07 -Plasma_electron_thermal_velocity_at_point_208____________________________ (vel_plasma_electron_profile208)_ 8.27312990985951424e+07 -Plasma_electron_thermal_velocity_at_point_209____________________________ (vel_plasma_electron_profile209)_ 8.26339646394571066e+07 -Plasma_electron_thermal_velocity_at_point_210____________________________ (vel_plasma_electron_profile210)_ 8.25361231562921405e+07 -Plasma_electron_thermal_velocity_at_point_211____________________________ (vel_plasma_electron_profile211)_ 8.24377741454681456e+07 -Plasma_electron_thermal_velocity_at_point_212____________________________ (vel_plasma_electron_profile212)_ 8.23389171036349833e+07 -Plasma_electron_thermal_velocity_at_point_213____________________________ (vel_plasma_electron_profile213)_ 8.22395515278040022e+07 -Plasma_electron_thermal_velocity_at_point_214____________________________ (vel_plasma_electron_profile214)_ 8.21396769154296666e+07 -Plasma_electron_thermal_velocity_at_point_215____________________________ (vel_plasma_electron_profile215)_ 8.20392927644922137e+07 -Plasma_electron_thermal_velocity_at_point_216____________________________ (vel_plasma_electron_profile216)_ 8.19383985735822022e+07 -Plasma_electron_thermal_velocity_at_point_217____________________________ (vel_plasma_electron_profile217)_ 8.18369938419882655e+07 -Plasma_electron_thermal_velocity_at_point_218____________________________ (vel_plasma_electron_profile218)_ 8.17350780697854012e+07 -Plasma_electron_thermal_velocity_at_point_219____________________________ (vel_plasma_electron_profile219)_ 8.16326507579272538e+07 -Plasma_electron_thermal_velocity_at_point_220____________________________ (vel_plasma_electron_profile220)_ 8.15297114083379358e+07 -Plasma_electron_thermal_velocity_at_point_221____________________________ (vel_plasma_electron_profile221)_ 8.14262595240085572e+07 -Plasma_electron_thermal_velocity_at_point_222____________________________ (vel_plasma_electron_profile222)_ 8.13222946090947092e+07 -Plasma_electron_thermal_velocity_at_point_223____________________________ (vel_plasma_electron_profile223)_ 8.12178161690167934e+07 -Plasma_electron_thermal_velocity_at_point_224____________________________ (vel_plasma_electron_profile224)_ 8.11128237105622888e+07 -Plasma_electron_thermal_velocity_at_point_225____________________________ (vel_plasma_electron_profile225)_ 8.10073167419901937e+07 -Plasma_electron_thermal_velocity_at_point_226____________________________ (vel_plasma_electron_profile226)_ 8.09012947731394768e+07 -Plasma_electron_thermal_velocity_at_point_227____________________________ (vel_plasma_electron_profile227)_ 8.07947573155384809e+07 -Plasma_electron_thermal_velocity_at_point_228____________________________ (vel_plasma_electron_profile228)_ 8.06877038825170100e+07 -Plasma_electron_thermal_velocity_at_point_229____________________________ (vel_plasma_electron_profile229)_ 8.05801339893229753e+07 -Plasma_electron_thermal_velocity_at_point_230____________________________ (vel_plasma_electron_profile230)_ 8.04720471532392502e+07 -Plasma_electron_thermal_velocity_at_point_231____________________________ (vel_plasma_electron_profile231)_ 8.03634428937046230e+07 -Plasma_electron_thermal_velocity_at_point_232____________________________ (vel_plasma_electron_profile232)_ 8.02543207324388623e+07 -Plasma_electron_thermal_velocity_at_point_233____________________________ (vel_plasma_electron_profile233)_ 8.01446801935668737e+07 -Plasma_electron_thermal_velocity_at_point_234____________________________ (vel_plasma_electron_profile234)_ 8.00345208037517369e+07 -Plasma_electron_thermal_velocity_at_point_235____________________________ (vel_plasma_electron_profile235)_ 7.99238420923250467e+07 -Plasma_electron_thermal_velocity_at_point_236____________________________ (vel_plasma_electron_profile236)_ 7.98126435914241970e+07 -Plasma_electron_thermal_velocity_at_point_237____________________________ (vel_plasma_electron_profile237)_ 7.97009248361315578e+07 -Plasma_electron_thermal_velocity_at_point_238____________________________ (vel_plasma_electron_profile238)_ 7.95886853646171242e+07 -Plasma_electron_thermal_velocity_at_point_239____________________________ (vel_plasma_electron_profile239)_ 7.94759247182845920e+07 -Plasma_electron_thermal_velocity_at_point_240____________________________ (vel_plasma_electron_profile240)_ 7.93626424419219047e+07 -Plasma_electron_thermal_velocity_at_point_241____________________________ (vel_plasma_electron_profile241)_ 7.92488380838536322e+07 -Plasma_electron_thermal_velocity_at_point_242____________________________ (vel_plasma_electron_profile242)_ 7.91345111960986108e+07 -Plasma_electron_thermal_velocity_at_point_243____________________________ (vel_plasma_electron_profile243)_ 7.90196613345308006e+07 -Plasma_electron_thermal_velocity_at_point_244____________________________ (vel_plasma_electron_profile244)_ 7.89042880590439141e+07 -Plasma_electron_thermal_velocity_at_point_245____________________________ (vel_plasma_electron_profile245)_ 7.87883909337205738e+07 -Plasma_electron_thermal_velocity_at_point_246____________________________ (vel_plasma_electron_profile246)_ 7.86719695270052701e+07 -Plasma_electron_thermal_velocity_at_point_247____________________________ (vel_plasma_electron_profile247)_ 7.85550234118815064e+07 -Plasma_electron_thermal_velocity_at_point_248____________________________ (vel_plasma_electron_profile248)_ 7.84375521660535485e+07 -Plasma_electron_thermal_velocity_at_point_249____________________________ (vel_plasma_electron_profile249)_ 7.83195553721318394e+07 -Plasma_electron_thermal_velocity_at_point_250____________________________ (vel_plasma_electron_profile250)_ 7.82010326178240180e+07 -Plasma_electron_thermal_velocity_at_point_251____________________________ (vel_plasma_electron_profile251)_ 7.80819834961305857e+07 -Plasma_electron_thermal_velocity_at_point_252____________________________ (vel_plasma_electron_profile252)_ 7.79624076055445224e+07 -Plasma_electron_thermal_velocity_at_point_253____________________________ (vel_plasma_electron_profile253)_ 7.78423045502558947e+07 -Plasma_electron_thermal_velocity_at_point_254____________________________ (vel_plasma_electron_profile254)_ 7.77216739403635114e+07 -Plasma_electron_thermal_velocity_at_point_255____________________________ (vel_plasma_electron_profile255)_ 7.76005153920878619e+07 -Plasma_electron_thermal_velocity_at_point_256____________________________ (vel_plasma_electron_profile256)_ 7.74788285279944837e+07 -Plasma_electron_thermal_velocity_at_point_257____________________________ (vel_plasma_electron_profile257)_ 7.73566129772173613e+07 -Plasma_electron_thermal_velocity_at_point_258____________________________ (vel_plasma_electron_profile258)_ 7.72338683756935000e+07 -Plasma_electron_thermal_velocity_at_point_259____________________________ (vel_plasma_electron_profile259)_ 7.71105943663979918e+07 -Plasma_electron_thermal_velocity_at_point_260____________________________ (vel_plasma_electron_profile260)_ 7.69867905995889008e+07 -Plasma_electron_thermal_velocity_at_point_261____________________________ (vel_plasma_electron_profile261)_ 7.68624567330564857e+07 -Plasma_electron_thermal_velocity_at_point_262____________________________ (vel_plasma_electron_profile262)_ 7.67375924323796630e+07 -Plasma_electron_thermal_velocity_at_point_263____________________________ (vel_plasma_electron_profile263)_ 7.66121973711871803e+07 -Plasma_electron_thermal_velocity_at_point_264____________________________ (vel_plasma_electron_profile264)_ 7.64862712314270288e+07 -Plasma_electron_thermal_velocity_at_point_265____________________________ (vel_plasma_electron_profile265)_ 7.63598137036423087e+07 -Plasma_electron_thermal_velocity_at_point_266____________________________ (vel_plasma_electron_profile266)_ 7.62328244872538000e+07 -Plasma_electron_thermal_velocity_at_point_267____________________________ (vel_plasma_electron_profile267)_ 7.61053032908495218e+07 -Plasma_electron_thermal_velocity_at_point_268____________________________ (vel_plasma_electron_profile268)_ 7.59772498324825019e+07 -Plasma_electron_thermal_velocity_at_point_269____________________________ (vel_plasma_electron_profile269)_ 7.58486638399742395e+07 -Plasma_electron_thermal_velocity_at_point_270____________________________ (vel_plasma_electron_profile270)_ 7.57195450512288809e+07 -Plasma_electron_thermal_velocity_at_point_271____________________________ (vel_plasma_electron_profile271)_ 7.55898932145523280e+07 -Plasma_electron_thermal_velocity_at_point_272____________________________ (vel_plasma_electron_profile272)_ 7.54597080889811367e+07 -Plasma_electron_thermal_velocity_at_point_273____________________________ (vel_plasma_electron_profile273)_ 7.53289894446205497e+07 -Plasma_electron_thermal_velocity_at_point_274____________________________ (vel_plasma_electron_profile274)_ 7.51977370629884452e+07 -Plasma_electron_thermal_velocity_at_point_275____________________________ (vel_plasma_electron_profile275)_ 7.50659507373719960e+07 -Plasma_electron_thermal_velocity_at_point_276____________________________ (vel_plasma_electron_profile276)_ 7.49336302731902450e+07 -Plasma_electron_thermal_velocity_at_point_277____________________________ (vel_plasma_electron_profile277)_ 7.48007754883671403e+07 -Plasma_electron_thermal_velocity_at_point_278____________________________ (vel_plasma_electron_profile278)_ 7.46673862137154341e+07 -Plasma_electron_thermal_velocity_at_point_279____________________________ (vel_plasma_electron_profile279)_ 7.45334622933285981e+07 -Plasma_electron_thermal_velocity_at_point_280____________________________ (vel_plasma_electron_profile280)_ 7.43990035849837661e+07 -Plasma_electron_thermal_velocity_at_point_281____________________________ (vel_plasma_electron_profile281)_ 7.42640099605563134e+07 -Plasma_electron_thermal_velocity_at_point_282____________________________ (vel_plasma_electron_profile282)_ 7.41284813064437360e+07 -Plasma_electron_thermal_velocity_at_point_283____________________________ (vel_plasma_electron_profile283)_ 7.39924175240000337e+07 -Plasma_electron_thermal_velocity_at_point_284____________________________ (vel_plasma_electron_profile284)_ 7.38558185299846977e+07 -Plasma_electron_thermal_velocity_at_point_285____________________________ (vel_plasma_electron_profile285)_ 7.37186842570192814e+07 -Plasma_electron_thermal_velocity_at_point_286____________________________ (vel_plasma_electron_profile286)_ 7.35810146540604532e+07 -Plasma_electron_thermal_velocity_at_point_287____________________________ (vel_plasma_electron_profile287)_ 7.34428096868807971e+07 -Plasma_electron_thermal_velocity_at_point_288____________________________ (vel_plasma_electron_profile288)_ 7.33040693385669589e+07 -Plasma_electron_thermal_velocity_at_point_289____________________________ (vel_plasma_electron_profile289)_ 7.31647936100276113e+07 -Plasma_electron_thermal_velocity_at_point_290____________________________ (vel_plasma_electron_profile290)_ 7.30249825205172896e+07 -Plasma_electron_thermal_velocity_at_point_291____________________________ (vel_plasma_electron_profile291)_ 7.28846361081719846e+07 -Plasma_electron_thermal_velocity_at_point_292____________________________ (vel_plasma_electron_profile292)_ 7.27437544305616319e+07 -Plasma_electron_thermal_velocity_at_point_293____________________________ (vel_plasma_electron_profile293)_ 7.26023375652549267e+07 -Plasma_electron_thermal_velocity_at_point_294____________________________ (vel_plasma_electron_profile294)_ 7.24603856104016453e+07 -Plasma_electron_thermal_velocity_at_point_295____________________________ (vel_plasma_electron_profile295)_ 7.23178986853282452e+07 -Plasma_electron_thermal_velocity_at_point_296____________________________ (vel_plasma_electron_profile296)_ 7.21748769311522841e+07 -Plasma_electron_thermal_velocity_at_point_297____________________________ (vel_plasma_electron_profile297)_ 7.20313205114107877e+07 -Plasma_electron_thermal_velocity_at_point_298____________________________ (vel_plasma_electron_profile298)_ 7.18872296127082705e+07 -Plasma_electron_thermal_velocity_at_point_299____________________________ (vel_plasma_electron_profile299)_ 7.17426044453803301e+07 -Plasma_electron_thermal_velocity_at_point_300____________________________ (vel_plasma_electron_profile300)_ 7.15974452441765070e+07 -Plasma_electron_thermal_velocity_at_point_301____________________________ (vel_plasma_electron_profile301)_ 7.14517522689612657e+07 -Plasma_electron_thermal_velocity_at_point_302____________________________ (vel_plasma_electron_profile302)_ 7.13055258054357916e+07 -Plasma_electron_thermal_velocity_at_point_303____________________________ (vel_plasma_electron_profile303)_ 7.11587661658765376e+07 -Plasma_electron_thermal_velocity_at_point_304____________________________ (vel_plasma_electron_profile304)_ 7.10114736898977160e+07 -Plasma_electron_thermal_velocity_at_point_305____________________________ (vel_plasma_electron_profile305)_ 7.08636487452331781e+07 -Plasma_electron_thermal_velocity_at_point_306____________________________ (vel_plasma_electron_profile306)_ 7.07152917285390198e+07 -Plasma_electron_thermal_velocity_at_point_307____________________________ (vel_plasma_electron_profile307)_ 7.05664030662208050e+07 -Plasma_electron_thermal_velocity_at_point_308____________________________ (vel_plasma_electron_profile308)_ 7.04169832152826190e+07 -Plasma_electron_thermal_velocity_at_point_309____________________________ (vel_plasma_electron_profile309)_ 7.02670326641999334e+07 -Plasma_electron_thermal_velocity_at_point_310____________________________ (vel_plasma_electron_profile310)_ 7.01165519338170737e+07 -Plasma_electron_thermal_velocity_at_point_311____________________________ (vel_plasma_electron_profile311)_ 6.99655415782704949e+07 -Plasma_electron_thermal_velocity_at_point_312____________________________ (vel_plasma_electron_profile312)_ 6.98140021859382689e+07 -Plasma_electron_thermal_velocity_at_point_313____________________________ (vel_plasma_electron_profile313)_ 6.96619343804140389e+07 -Plasma_electron_thermal_velocity_at_point_314____________________________ (vel_plasma_electron_profile314)_ 6.95093388215132654e+07 -Plasma_electron_thermal_velocity_at_point_315____________________________ (vel_plasma_electron_profile315)_ 6.93562162063039243e+07 -Plasma_electron_thermal_velocity_at_point_316____________________________ (vel_plasma_electron_profile316)_ 6.92025672701684982e+07 -Plasma_electron_thermal_velocity_at_point_317____________________________ (vel_plasma_electron_profile317)_ 6.90483927878977656e+07 -Plasma_electron_thermal_velocity_at_point_318____________________________ (vel_plasma_electron_profile318)_ 6.88936935748121887e+07 -Plasma_electron_thermal_velocity_at_point_319____________________________ (vel_plasma_electron_profile319)_ 6.87384704879203141e+07 -Plasma_electron_thermal_velocity_at_point_320____________________________ (vel_plasma_electron_profile320)_ 6.85827244271078706e+07 -Plasma_electron_thermal_velocity_at_point_321____________________________ (vel_plasma_electron_profile321)_ 6.84264563363615870e+07 -Plasma_electron_thermal_velocity_at_point_322____________________________ (vel_plasma_electron_profile322)_ 6.82696672050306648e+07 -Plasma_electron_thermal_velocity_at_point_323____________________________ (vel_plasma_electron_profile323)_ 6.81123580691218674e+07 -Plasma_electron_thermal_velocity_at_point_324____________________________ (vel_plasma_electron_profile324)_ 6.79545300126359761e+07 -Plasma_electron_thermal_velocity_at_point_325____________________________ (vel_plasma_electron_profile325)_ 6.77961841689423472e+07 -Plasma_electron_thermal_velocity_at_point_326____________________________ (vel_plasma_electron_profile326)_ 6.76373217221918106e+07 -Plasma_electron_thermal_velocity_at_point_327____________________________ (vel_plasma_electron_profile327)_ 6.74779439087759852e+07 -Plasma_electron_thermal_velocity_at_point_328____________________________ (vel_plasma_electron_profile328)_ 6.73180520188262314e+07 -Plasma_electron_thermal_velocity_at_point_329____________________________ (vel_plasma_electron_profile329)_ 6.71576473977585733e+07 -Plasma_electron_thermal_velocity_at_point_330____________________________ (vel_plasma_electron_profile330)_ 6.69967314478653893e+07 -Plasma_electron_thermal_velocity_at_point_331____________________________ (vel_plasma_electron_profile331)_ 6.68353056299541444e+07 -Plasma_electron_thermal_velocity_at_point_332____________________________ (vel_plasma_electron_profile332)_ 6.66733714650362357e+07 -Plasma_electron_thermal_velocity_at_point_333____________________________ (vel_plasma_electron_profile333)_ 6.65109305360661224e+07 -Plasma_electron_thermal_velocity_at_point_334____________________________ (vel_plasma_electron_profile334)_ 6.63479844897336811e+07 -Plasma_electron_thermal_velocity_at_point_335____________________________ (vel_plasma_electron_profile335)_ 6.61845350383114815e+07 -Plasma_electron_thermal_velocity_at_point_336____________________________ (vel_plasma_electron_profile336)_ 6.60205839615580812e+07 -Plasma_electron_thermal_velocity_at_point_337____________________________ (vel_plasma_electron_profile337)_ 6.58561331086801663e+07 -Plasma_electron_thermal_velocity_at_point_338____________________________ (vel_plasma_electron_profile338)_ 6.56911844003542587e+07 -Plasma_electron_thermal_velocity_at_point_339____________________________ (vel_plasma_electron_profile339)_ 6.55257398308122456e+07 -Plasma_electron_thermal_velocity_at_point_340____________________________ (vel_plasma_electron_profile340)_ 6.53598014699897915e+07 -Plasma_electron_thermal_velocity_at_point_341____________________________ (vel_plasma_electron_profile341)_ 6.51933714657445848e+07 -Plasma_electron_thermal_velocity_at_point_342____________________________ (vel_plasma_electron_profile342)_ 6.50264520461399779e+07 -Plasma_electron_thermal_velocity_at_point_343____________________________ (vel_plasma_electron_profile343)_ 6.48590455218040347e+07 -Plasma_electron_thermal_velocity_at_point_344____________________________ (vel_plasma_electron_profile344)_ 6.46911542883605585e+07 -Plasma_electron_thermal_velocity_at_point_345____________________________ (vel_plasma_electron_profile345)_ 6.45227808289381787e+07 -Plasma_electron_thermal_velocity_at_point_346____________________________ (vel_plasma_electron_profile346)_ 6.43539277167576700e+07 -Plasma_electron_thermal_velocity_at_point_347____________________________ (vel_plasma_electron_profile347)_ 6.41845976178042442e+07 -Plasma_electron_thermal_velocity_at_point_348____________________________ (vel_plasma_electron_profile348)_ 6.40147932935819775e+07 -Plasma_electron_thermal_velocity_at_point_349____________________________ (vel_plasma_electron_profile349)_ 6.38445176039603278e+07 -Plasma_electron_thermal_velocity_at_point_350____________________________ (vel_plasma_electron_profile350)_ 6.36737735101106763e+07 -Plasma_electron_thermal_velocity_at_point_351____________________________ (vel_plasma_electron_profile351)_ 6.35025640775353983e+07 -Plasma_electron_thermal_velocity_at_point_352____________________________ (vel_plasma_electron_profile352)_ 6.33308924792024344e+07 -Plasma_electron_thermal_velocity_at_point_353____________________________ (vel_plasma_electron_profile353)_ 6.31587619987742826e+07 -Plasma_electron_thermal_velocity_at_point_354____________________________ (vel_plasma_electron_profile354)_ 6.29861760339490920e+07 -Plasma_electron_thermal_velocity_at_point_355____________________________ (vel_plasma_electron_profile355)_ 6.28131380999076217e+07 -Plasma_electron_thermal_velocity_at_point_356____________________________ (vel_plasma_electron_profile356)_ 6.26396518328772634e+07 -Plasma_electron_thermal_velocity_at_point_357____________________________ (vel_plasma_electron_profile357)_ 6.24657209938124344e+07 -Plasma_electron_thermal_velocity_at_point_358____________________________ (vel_plasma_electron_profile358)_ 6.22913494721995443e+07 -Plasma_electron_thermal_velocity_at_point_359____________________________ (vel_plasma_electron_profile359)_ 6.21165412899880260e+07 -Plasma_electron_thermal_velocity_at_point_360____________________________ (vel_plasma_electron_profile360)_ 6.19413006056546196e+07 -Plasma_electron_thermal_velocity_at_point_361____________________________ (vel_plasma_electron_profile361)_ 6.17656317184052840e+07 -Plasma_electron_thermal_velocity_at_point_362____________________________ (vel_plasma_electron_profile362)_ 6.15895390725197941e+07 -Plasma_electron_thermal_velocity_at_point_363____________________________ (vel_plasma_electron_profile363)_ 6.14130272618441209e+07 -Plasma_electron_thermal_velocity_at_point_364____________________________ (vel_plasma_electron_profile364)_ 6.12361010344392732e+07 -Plasma_electron_thermal_velocity_at_point_365____________________________ (vel_plasma_electron_profile365)_ 6.10587652973863184e+07 -Plasma_electron_thermal_velocity_at_point_366____________________________ (vel_plasma_electron_profile366)_ 6.08810251217640862e+07 -Plasma_electron_thermal_velocity_at_point_367____________________________ (vel_plasma_electron_profile367)_ 6.07028857477927357e+07 -Plasma_electron_thermal_velocity_at_point_368____________________________ (vel_plasma_electron_profile368)_ 6.05243525901648849e+07 -Plasma_electron_thermal_velocity_at_point_369____________________________ (vel_plasma_electron_profile369)_ 6.03454312435590401e+07 -Plasma_electron_thermal_velocity_at_point_370____________________________ (vel_plasma_electron_profile370)_ 6.01661274883509725e+07 -Plasma_electron_thermal_velocity_at_point_371____________________________ (vel_plasma_electron_profile371)_ 5.99864472965270728e+07 -Plasma_electron_thermal_velocity_at_point_372____________________________ (vel_plasma_electron_profile372)_ 5.98063968378088698e+07 -Plasma_electron_thermal_velocity_at_point_373____________________________ (vel_plasma_electron_profile373)_ 5.96259824859992266e+07 -Plasma_electron_thermal_velocity_at_point_374____________________________ (vel_plasma_electron_profile374)_ 5.94452108255559653e+07 -Plasma_electron_thermal_velocity_at_point_375____________________________ (vel_plasma_electron_profile375)_ 5.92640886584070027e+07 -Plasma_electron_thermal_velocity_at_point_376____________________________ (vel_plasma_electron_profile376)_ 5.90826230110130012e+07 -Plasma_electron_thermal_velocity_at_point_377____________________________ (vel_plasma_electron_profile377)_ 5.89008211416887268e+07 -Plasma_electron_thermal_velocity_at_point_378____________________________ (vel_plasma_electron_profile378)_ 5.87186905481989756e+07 -Plasma_electron_thermal_velocity_at_point_379____________________________ (vel_plasma_electron_profile379)_ 5.85362389756347835e+07 -Plasma_electron_thermal_velocity_at_point_380____________________________ (vel_plasma_electron_profile380)_ 5.83534744245835915e+07 -Plasma_electron_thermal_velocity_at_point_381____________________________ (vel_plasma_electron_profile381)_ 5.81704051596104875e+07 -Plasma_electron_thermal_velocity_at_point_382____________________________ (vel_plasma_electron_profile382)_ 5.79870397180592716e+07 -Plasma_electron_thermal_velocity_at_point_383____________________________ (vel_plasma_electron_profile383)_ 5.78033869191907644e+07 -Plasma_electron_thermal_velocity_at_point_384____________________________ (vel_plasma_electron_profile384)_ 5.76194558736703321e+07 -Plasma_electron_thermal_velocity_at_point_385____________________________ (vel_plasma_electron_profile385)_ 5.74352559934258759e+07 -Plasma_electron_thermal_velocity_at_point_386____________________________ (vel_plasma_electron_profile386)_ 5.72507970018870085e+07 -Plasma_electron_thermal_velocity_at_point_387____________________________ (vel_plasma_electron_profile387)_ 5.70660889446304366e+07 -Plasma_electron_thermal_velocity_at_point_388____________________________ (vel_plasma_electron_profile388)_ 5.68811422004402131e+07 -Plasma_electron_thermal_velocity_at_point_389____________________________ (vel_plasma_electron_profile389)_ 5.66959674928150252e+07 -Plasma_electron_thermal_velocity_at_point_390____________________________ (vel_plasma_electron_profile390)_ 5.65105759019344673e+07 -Plasma_electron_thermal_velocity_at_point_391____________________________ (vel_plasma_electron_profile391)_ 5.63249788771096990e+07 -Plasma_electron_thermal_velocity_at_point_392____________________________ (vel_plasma_electron_profile392)_ 5.61391882497427091e+07 -Plasma_electron_thermal_velocity_at_point_393____________________________ (vel_plasma_electron_profile393)_ 5.59532162468185052e+07 -Plasma_electron_thermal_velocity_at_point_394____________________________ (vel_plasma_electron_profile394)_ 5.57670755049580410e+07 -Plasma_electron_thermal_velocity_at_point_395____________________________ (vel_plasma_electron_profile395)_ 5.55807790850570723e+07 -Plasma_electron_thermal_velocity_at_point_396____________________________ (vel_plasma_electron_profile396)_ 5.53943404875473157e+07 -Plasma_electron_thermal_velocity_at_point_397____________________________ (vel_plasma_electron_profile397)_ 5.52077736683025062e+07 -Plasma_electron_thermal_velocity_at_point_398____________________________ (vel_plasma_electron_profile398)_ 5.50210930552336946e+07 -Plasma_electron_thermal_velocity_at_point_399____________________________ (vel_plasma_electron_profile399)_ 5.48343135656028539e+07 -Plasma_electron_thermal_velocity_at_point_400____________________________ (vel_plasma_electron_profile400)_ 5.46474506240974888e+07 -Plasma_electron_thermal_velocity_at_point_401____________________________ (vel_plasma_electron_profile401)_ 5.44605201817064062e+07 -Plasma_electron_thermal_velocity_at_point_402____________________________ (vel_plasma_electron_profile402)_ 5.42735387354407310e+07 -Plasma_electron_thermal_velocity_at_point_403____________________________ (vel_plasma_electron_profile403)_ 5.40865233489490747e+07 -Plasma_electron_thermal_velocity_at_point_404____________________________ (vel_plasma_electron_profile404)_ 5.38994916740774512e+07 -Plasma_electron_thermal_velocity_at_point_405____________________________ (vel_plasma_electron_profile405)_ 5.37124619734265208e+07 -Plasma_electron_thermal_velocity_at_point_406____________________________ (vel_plasma_electron_profile406)_ 5.35254531439719647e+07 -Plasma_electron_thermal_velocity_at_point_407____________________________ (vel_plasma_electron_profile407)_ 5.33384847418008968e+07 -Plasma_electron_thermal_velocity_at_point_408____________________________ (vel_plasma_electron_profile408)_ 5.31515770080438107e+07 -Plasma_electron_thermal_velocity_at_point_409____________________________ (vel_plasma_electron_profile409)_ 5.29647508960664719e+07 -Plasma_electron_thermal_velocity_at_point_410____________________________ (vel_plasma_electron_profile410)_ 5.27780281000096053e+07 -Plasma_electron_thermal_velocity_at_point_411____________________________ (vel_plasma_electron_profile411)_ 5.25914310847581923e+07 -Plasma_electron_thermal_velocity_at_point_412____________________________ (vel_plasma_electron_profile412)_ 5.24049831174351349e+07 -Plasma_electron_thermal_velocity_at_point_413____________________________ (vel_plasma_electron_profile413)_ 5.22187083005201370e+07 -Plasma_electron_thermal_velocity_at_point_414____________________________ (vel_plasma_electron_profile414)_ 5.20326316067113727e+07 -Plasma_electron_thermal_velocity_at_point_415____________________________ (vel_plasma_electron_profile415)_ 5.18467789156424254e+07 -Plasma_electron_thermal_velocity_at_point_416____________________________ (vel_plasma_electron_profile416)_ 5.16611770525894687e+07 -Plasma_electron_thermal_velocity_at_point_417____________________________ (vel_plasma_electron_profile417)_ 5.14758538293193728e+07 -Plasma_electron_thermal_velocity_at_point_418____________________________ (vel_plasma_electron_profile418)_ 5.12908380872298405e+07 -Plasma_electron_thermal_velocity_at_point_419____________________________ (vel_plasma_electron_profile419)_ 5.11061597429588810e+07 -Plasma_electron_thermal_velocity_at_point_420____________________________ (vel_plasma_electron_profile420)_ 5.09218498366591781e+07 -Plasma_electron_thermal_velocity_at_point_421____________________________ (vel_plasma_electron_profile421)_ 5.07379405831453800e+07 -Plasma_electron_thermal_velocity_at_point_422____________________________ (vel_plasma_electron_profile422)_ 5.05544654261500612e+07 -Plasma_electron_thermal_velocity_at_point_423____________________________ (vel_plasma_electron_profile423)_ 5.03714590959527791e+07 -Plasma_electron_thermal_velocity_at_point_424____________________________ (vel_plasma_electron_profile424)_ 5.01889576706662551e+07 -Plasma_electron_thermal_velocity_at_point_425____________________________ (vel_plasma_electron_profile425)_ 5.00069986415060237e+07 -Plasma_electron_thermal_velocity_at_point_426____________________________ (vel_plasma_electron_profile426)_ 4.98256209824058935e+07 -Plasma_electron_thermal_velocity_at_point_427____________________________ (vel_plasma_electron_profile427)_ 4.96448652243771553e+07 -Plasma_electron_thermal_velocity_at_point_428____________________________ (vel_plasma_electron_profile428)_ 4.94647735350760818e+07 -Plasma_electron_thermal_velocity_at_point_429____________________________ (vel_plasma_electron_profile429)_ 4.92853898040834963e+07 -Plasma_electron_thermal_velocity_at_point_430____________________________ (vel_plasma_electron_profile430)_ 4.91067597344793081e+07 -Plasma_electron_thermal_velocity_at_point_431____________________________ (vel_plasma_electron_profile431)_ 4.89289309413705394e+07 -Plasma_electron_thermal_velocity_at_point_432____________________________ (vel_plasma_electron_profile432)_ 4.87519530581186861e+07 -Plasma_electron_thermal_velocity_at_point_433____________________________ (vel_plasma_electron_profile433)_ 4.85758778511232659e+07 -Plasma_electron_thermal_velocity_at_point_434____________________________ (vel_plasma_electron_profile434)_ 4.84007593441391960e+07 -Plasma_electron_thermal_velocity_at_point_435____________________________ (vel_plasma_electron_profile435)_ 4.82266539532549530e+07 -Plasma_electron_thermal_velocity_at_point_436____________________________ (vel_plasma_electron_profile436)_ 4.80536206338371336e+07 -Plasma_electron_thermal_velocity_at_point_437____________________________ (vel_plasma_electron_profile437)_ 4.78817210409472659e+07 -Plasma_electron_thermal_velocity_at_point_438____________________________ (vel_plasma_electron_profile438)_ 4.77110197049961612e+07 -Plasma_electron_thermal_velocity_at_point_439____________________________ (vel_plasma_electron_profile439)_ 4.75415842246900722e+07 -Plasma_electron_thermal_velocity_at_point_440____________________________ (vel_plasma_electron_profile440)_ 4.73734854796995521e+07 -Plasma_electron_thermal_velocity_at_point_441____________________________ (vel_plasma_electron_profile441)_ 4.72067978659106866e+07 -Plasma_electron_thermal_velocity_at_point_442____________________________ (vel_plasma_electron_profile442)_ 4.70415995566692278e+07 -Plasma_electron_thermal_velocity_at_point_443____________________________ (vel_plasma_electron_profile443)_ 4.68779727940872312e+07 -Plasma_electron_thermal_velocity_at_point_444____________________________ (vel_plasma_electron_profile444)_ 4.67160042153133601e+07 -Plasma_electron_thermal_velocity_at_point_445____________________________ (vel_plasma_electron_profile445)_ 4.65557852197006047e+07 -Plasma_electron_thermal_velocity_at_point_446____________________________ (vel_plasma_electron_profile446)_ 4.63974123841041401e+07 -Plasma_electron_thermal_velocity_at_point_447____________________________ (vel_plasma_electron_profile447)_ 4.62409879351956397e+07 -Plasma_electron_thermal_velocity_at_point_448____________________________ (vel_plasma_electron_profile448)_ 4.60866202898082659e+07 -Plasma_electron_thermal_velocity_at_point_449____________________________ (vel_plasma_electron_profile449)_ 4.59344246770508513e+07 -Plasma_electron_thermal_velocity_at_point_450____________________________ (vel_plasma_electron_profile450)_ 4.57845238595529646e+07 -Plasma_electron_thermal_velocity_at_point_451____________________________ (vel_plasma_electron_profile451)_ 4.56370489759259522e+07 -Plasma_electron_thermal_velocity_at_point_452____________________________ (vel_plasma_electron_profile452)_ 4.54921405329281464e+07 -Plasma_electron_thermal_velocity_at_point_453____________________________ (vel_plasma_electron_profile453)_ 4.53499495844883472e+07 -Plasma_electron_thermal_velocity_at_point_454____________________________ (vel_plasma_electron_profile454)_ 4.52106391467129886e+07 -Plasma_electron_thermal_velocity_at_point_455____________________________ (vel_plasma_electron_profile455)_ 4.50743859148454368e+07 -Plasma_electron_thermal_velocity_at_point_456____________________________ (vel_plasma_electron_profile456)_ 4.49413823722184747e+07 -Plasma_electron_thermal_velocity_at_point_457____________________________ (vel_plasma_electron_profile457)_ 4.48118394164734185e+07 -Plasma_electron_thermal_velocity_at_point_458____________________________ (vel_plasma_electron_profile458)_ 4.46859896810627729e+07 -Plasma_electron_thermal_velocity_at_point_459____________________________ (vel_plasma_electron_profile459)_ 4.45640918112467676e+07 -Plasma_electron_thermal_velocity_at_point_460____________________________ (vel_plasma_electron_profile460)_ 4.44464360827021301e+07 -Plasma_electron_thermal_velocity_at_point_461____________________________ (vel_plasma_electron_profile461)_ 4.43333519631478637e+07 -Plasma_electron_thermal_velocity_at_point_462____________________________ (vel_plasma_electron_profile462)_ 4.42252185822026357e+07 -Plasma_electron_thermal_velocity_at_point_463____________________________ (vel_plasma_electron_profile463)_ 4.41224797344696075e+07 -Plasma_electron_thermal_velocity_at_point_464____________________________ (vel_plasma_electron_profile464)_ 4.40256663107143641e+07 -Plasma_electron_thermal_velocity_at_point_465____________________________ (vel_plasma_electron_profile465)_ 4.39354316938530207e+07 -Plasma_electron_thermal_velocity_at_point_466____________________________ (vel_plasma_electron_profile466)_ 4.38526117339265049e+07 -Plasma_electron_thermal_velocity_at_point_467____________________________ (vel_plasma_electron_profile467)_ 4.37783369394538999e+07 -Plasma_electron_thermal_velocity_at_point_468____________________________ (vel_plasma_electron_profile468)_ 4.37142760793513879e+07 -Plasma_electron_thermal_velocity_at_point_469____________________________ (vel_plasma_electron_profile469)_ 4.36633223491819501e+07 +Plasma_volume_averaged_electron_Debye_length_(⟨λ_D⟩)_(m)_________________ (len_plasma_debye_electron_vol_avg)_ 9.29453708426404622e-05 OP +Plasma_electron_Debye_length_at_point_0__________________________________ (len_plasma_debye_electron_profile0)_ 1.16363293726887794e-04 +Plasma_electron_Debye_length_at_point_1__________________________________ (len_plasma_debye_electron_profile1)_ 1.16363099808564635e-04 +Plasma_electron_Debye_length_at_point_2__________________________________ (len_plasma_debye_electron_profile2)_ 1.16362518051073930e-04 +Plasma_electron_Debye_length_at_point_3__________________________________ (len_plasma_debye_electron_profile3)_ 1.16361548446851945e-04 +Plasma_electron_Debye_length_at_point_4__________________________________ (len_plasma_debye_electron_profile4)_ 1.16360190983292173e-04 +Plasma_electron_Debye_length_at_point_5__________________________________ (len_plasma_debye_electron_profile5)_ 1.16358445642745104e-04 +Plasma_electron_Debye_length_at_point_6__________________________________ (len_plasma_debye_electron_profile6)_ 1.16356312402517682e-04 +Plasma_electron_Debye_length_at_point_7__________________________________ (len_plasma_debye_electron_profile7)_ 1.16353791234872735e-04 +Plasma_electron_Debye_length_at_point_8__________________________________ (len_plasma_debye_electron_profile8)_ 1.16350882107028219e-04 +Plasma_electron_Debye_length_at_point_9__________________________________ (len_plasma_debye_electron_profile9)_ 1.16347584981156373e-04 +Plasma_electron_Debye_length_at_point_10_________________________________ (len_plasma_debye_electron_profile10)_ 1.16343899814382775e-04 +Plasma_electron_Debye_length_at_point_11_________________________________ (len_plasma_debye_electron_profile11)_ 1.16339826558785092e-04 +Plasma_electron_Debye_length_at_point_12_________________________________ (len_plasma_debye_electron_profile12)_ 1.16335365161391864e-04 +Plasma_electron_Debye_length_at_point_13_________________________________ (len_plasma_debye_electron_profile13)_ 1.16330515564181197e-04 +Plasma_electron_Debye_length_at_point_14_________________________________ (len_plasma_debye_electron_profile14)_ 1.16325277704079074e-04 +Plasma_electron_Debye_length_at_point_15_________________________________ (len_plasma_debye_electron_profile15)_ 1.16319651512957850e-04 +Plasma_electron_Debye_length_at_point_16_________________________________ (len_plasma_debye_electron_profile16)_ 1.16313636917634365e-04 +Plasma_electron_Debye_length_at_point_17_________________________________ (len_plasma_debye_electron_profile17)_ 1.16307233839868038e-04 +Plasma_electron_Debye_length_at_point_18_________________________________ (len_plasma_debye_electron_profile18)_ 1.16300442196358734e-04 +Plasma_electron_Debye_length_at_point_19_________________________________ (len_plasma_debye_electron_profile19)_ 1.16293261898744790e-04 +Plasma_electron_Debye_length_at_point_20_________________________________ (len_plasma_debye_electron_profile20)_ 1.16285692853600463e-04 +Plasma_electron_Debye_length_at_point_21_________________________________ (len_plasma_debye_electron_profile21)_ 1.16277734962433590e-04 +Plasma_electron_Debye_length_at_point_22_________________________________ (len_plasma_debye_electron_profile22)_ 1.16269388121682953e-04 +Plasma_electron_Debye_length_at_point_23_________________________________ (len_plasma_debye_electron_profile23)_ 1.16260652222715630e-04 +Plasma_electron_Debye_length_at_point_24_________________________________ (len_plasma_debye_electron_profile24)_ 1.16251527151824073e-04 +Plasma_electron_Debye_length_at_point_25_________________________________ (len_plasma_debye_electron_profile25)_ 1.16242012790223215e-04 +Plasma_electron_Debye_length_at_point_26_________________________________ (len_plasma_debye_electron_profile26)_ 1.16232109014047268e-04 +Plasma_electron_Debye_length_at_point_27_________________________________ (len_plasma_debye_electron_profile27)_ 1.16221815694346538e-04 +Plasma_electron_Debye_length_at_point_28_________________________________ (len_plasma_debye_electron_profile28)_ 1.16211132697084050e-04 +Plasma_electron_Debye_length_at_point_29_________________________________ (len_plasma_debye_electron_profile29)_ 1.16200059883132096e-04 +Plasma_electron_Debye_length_at_point_30_________________________________ (len_plasma_debye_electron_profile30)_ 1.16188597108268489e-04 +Plasma_electron_Debye_length_at_point_31_________________________________ (len_plasma_debye_electron_profile31)_ 1.16176744223172950e-04 +Plasma_electron_Debye_length_at_point_32_________________________________ (len_plasma_debye_electron_profile32)_ 1.16164501073423077e-04 +Plasma_electron_Debye_length_at_point_33_________________________________ (len_plasma_debye_electron_profile33)_ 1.16151867499490475e-04 +Plasma_electron_Debye_length_at_point_34_________________________________ (len_plasma_debye_electron_profile34)_ 1.16138843336736523e-04 +Plasma_electron_Debye_length_at_point_35_________________________________ (len_plasma_debye_electron_profile35)_ 1.16125428415408147e-04 +Plasma_electron_Debye_length_at_point_36_________________________________ (len_plasma_debye_electron_profile36)_ 1.16111622560633376e-04 +Plasma_electron_Debye_length_at_point_37_________________________________ (len_plasma_debye_electron_profile37)_ 1.16097425592416882e-04 +Plasma_electron_Debye_length_at_point_38_________________________________ (len_plasma_debye_electron_profile38)_ 1.16082837325635305e-04 +Plasma_electron_Debye_length_at_point_39_________________________________ (len_plasma_debye_electron_profile39)_ 1.16067857570032455e-04 +Plasma_electron_Debye_length_at_point_40_________________________________ (len_plasma_debye_electron_profile40)_ 1.16052486130214418e-04 +Plasma_electron_Debye_length_at_point_41_________________________________ (len_plasma_debye_electron_profile41)_ 1.16036722805644573e-04 +Plasma_electron_Debye_length_at_point_42_________________________________ (len_plasma_debye_electron_profile42)_ 1.16020567390638397e-04 +Plasma_electron_Debye_length_at_point_43_________________________________ (len_plasma_debye_electron_profile43)_ 1.16004019674358221e-04 +Plasma_electron_Debye_length_at_point_44_________________________________ (len_plasma_debye_electron_profile44)_ 1.15987079440807745e-04 +Plasma_electron_Debye_length_at_point_45_________________________________ (len_plasma_debye_electron_profile45)_ 1.15969746468826693e-04 +Plasma_electron_Debye_length_at_point_46_________________________________ (len_plasma_debye_electron_profile46)_ 1.15952020532084974e-04 +Plasma_electron_Debye_length_at_point_47_________________________________ (len_plasma_debye_electron_profile47)_ 1.15933901399077073e-04 +Plasma_electron_Debye_length_at_point_48_________________________________ (len_plasma_debye_electron_profile48)_ 1.15915388833115991e-04 +Plasma_electron_Debye_length_at_point_49_________________________________ (len_plasma_debye_electron_profile49)_ 1.15896482592327445e-04 +Plasma_electron_Debye_length_at_point_50_________________________________ (len_plasma_debye_electron_profile50)_ 1.15877182429643591e-04 +Plasma_electron_Debye_length_at_point_51_________________________________ (len_plasma_debye_electron_profile51)_ 1.15857488092796810e-04 +Plasma_electron_Debye_length_at_point_52_________________________________ (len_plasma_debye_electron_profile52)_ 1.15837399324313371e-04 +Plasma_electron_Debye_length_at_point_53_________________________________ (len_plasma_debye_electron_profile53)_ 1.15816915861506890e-04 +Plasma_electron_Debye_length_at_point_54_________________________________ (len_plasma_debye_electron_profile54)_ 1.15796037436471797e-04 +Plasma_electron_Debye_length_at_point_55_________________________________ (len_plasma_debye_electron_profile55)_ 1.15774763776076557e-04 +Plasma_electron_Debye_length_at_point_56_________________________________ (len_plasma_debye_electron_profile56)_ 1.15753094601956912e-04 +Plasma_electron_Debye_length_at_point_57_________________________________ (len_plasma_debye_electron_profile57)_ 1.15731029630508774e-04 +Plasma_electron_Debye_length_at_point_58_________________________________ (len_plasma_debye_electron_profile58)_ 1.15708568572881347e-04 +Plasma_electron_Debye_length_at_point_59_________________________________ (len_plasma_debye_electron_profile59)_ 1.15685711134969827e-04 +Plasma_electron_Debye_length_at_point_60_________________________________ (len_plasma_debye_electron_profile60)_ 1.15662457017408189e-04 +Plasma_electron_Debye_length_at_point_61_________________________________ (len_plasma_debye_electron_profile61)_ 1.15638805915561723e-04 +Plasma_electron_Debye_length_at_point_62_________________________________ (len_plasma_debye_electron_profile62)_ 1.15614757519519492e-04 +Plasma_electron_Debye_length_at_point_63_________________________________ (len_plasma_debye_electron_profile63)_ 1.15590311514086847e-04 +Plasma_electron_Debye_length_at_point_64_________________________________ (len_plasma_debye_electron_profile64)_ 1.15565467578777545e-04 +Plasma_electron_Debye_length_at_point_65_________________________________ (len_plasma_debye_electron_profile65)_ 1.15540225387805948e-04 +Plasma_electron_Debye_length_at_point_66_________________________________ (len_plasma_debye_electron_profile66)_ 1.15514584610079156e-04 +Plasma_electron_Debye_length_at_point_67_________________________________ (len_plasma_debye_electron_profile67)_ 1.15488544909188900e-04 +Plasma_electron_Debye_length_at_point_68_________________________________ (len_plasma_debye_electron_profile68)_ 1.15462105943403302e-04 +Plasma_electron_Debye_length_at_point_69_________________________________ (len_plasma_debye_electron_profile69)_ 1.15435267365658755e-04 +Plasma_electron_Debye_length_at_point_70_________________________________ (len_plasma_debye_electron_profile70)_ 1.15408028823551473e-04 +Plasma_electron_Debye_length_at_point_71_________________________________ (len_plasma_debye_electron_profile71)_ 1.15380389959329052e-04 +Plasma_electron_Debye_length_at_point_72_________________________________ (len_plasma_debye_electron_profile72)_ 1.15352350409881900e-04 +Plasma_electron_Debye_length_at_point_73_________________________________ (len_plasma_debye_electron_profile73)_ 1.15323909806734555e-04 +Plasma_electron_Debye_length_at_point_74_________________________________ (len_plasma_debye_electron_profile74)_ 1.15295067776037007e-04 +Plasma_electron_Debye_length_at_point_75_________________________________ (len_plasma_debye_electron_profile75)_ 1.15265823938555690e-04 +Plasma_electron_Debye_length_at_point_76_________________________________ (len_plasma_debye_electron_profile76)_ 1.15236177909664667e-04 +Plasma_electron_Debye_length_at_point_77_________________________________ (len_plasma_debye_electron_profile77)_ 1.15206129299336531e-04 +Plasma_electron_Debye_length_at_point_78_________________________________ (len_plasma_debye_electron_profile78)_ 1.15175677712133314e-04 +Plasma_electron_Debye_length_at_point_79_________________________________ (len_plasma_debye_electron_profile79)_ 1.15144822747197120e-04 +Plasma_electron_Debye_length_at_point_80_________________________________ (len_plasma_debye_electron_profile80)_ 1.15113563998241021e-04 +Plasma_electron_Debye_length_at_point_81_________________________________ (len_plasma_debye_electron_profile81)_ 1.15081901053539471e-04 +Plasma_electron_Debye_length_at_point_82_________________________________ (len_plasma_debye_electron_profile82)_ 1.15049833495918920e-04 +Plasma_electron_Debye_length_at_point_83_________________________________ (len_plasma_debye_electron_profile83)_ 1.15017360902748252e-04 +Plasma_electron_Debye_length_at_point_84_________________________________ (len_plasma_debye_electron_profile84)_ 1.14984482845929047e-04 +Plasma_electron_Debye_length_at_point_85_________________________________ (len_plasma_debye_electron_profile85)_ 1.14951198891885889e-04 +Plasma_electron_Debye_length_at_point_86_________________________________ (len_plasma_debye_electron_profile86)_ 1.14917508601556674e-04 +Plasma_electron_Debye_length_at_point_87_________________________________ (len_plasma_debye_electron_profile87)_ 1.14883411530382462e-04 +Plasma_electron_Debye_length_at_point_88_________________________________ (len_plasma_debye_electron_profile88)_ 1.14848907228297771e-04 +Plasma_electron_Debye_length_at_point_89_________________________________ (len_plasma_debye_electron_profile89)_ 1.14813995239720443e-04 +Plasma_electron_Debye_length_at_point_90_________________________________ (len_plasma_debye_electron_profile90)_ 1.14778675103541488e-04 +Plasma_electron_Debye_length_at_point_91_________________________________ (len_plasma_debye_electron_profile91)_ 1.14742946353115033e-04 +Plasma_electron_Debye_length_at_point_92_________________________________ (len_plasma_debye_electron_profile92)_ 1.14706808516247926e-04 +Plasma_electron_Debye_length_at_point_93_________________________________ (len_plasma_debye_electron_profile93)_ 1.14670261115189622e-04 +Plasma_electron_Debye_length_at_point_94_________________________________ (len_plasma_debye_electron_profile94)_ 1.14633303666621686e-04 +Plasma_electron_Debye_length_at_point_95_________________________________ (len_plasma_debye_electron_profile95)_ 1.14595935681647420e-04 +Plasma_electron_Debye_length_at_point_96_________________________________ (len_plasma_debye_electron_profile96)_ 1.14558156665781378e-04 +Plasma_electron_Debye_length_at_point_97_________________________________ (len_plasma_debye_electron_profile97)_ 1.14519966118938843e-04 +Plasma_electron_Debye_length_at_point_98_________________________________ (len_plasma_debye_electron_profile98)_ 1.14481363535425250e-04 +Plasma_electron_Debye_length_at_point_99_________________________________ (len_plasma_debye_electron_profile99)_ 1.14442348403925528e-04 +Plasma_electron_Debye_length_at_point_100________________________________ (len_plasma_debye_electron_profile100)_ 1.14402920207493463e-04 +Plasma_electron_Debye_length_at_point_101________________________________ (len_plasma_debye_electron_profile101)_ 1.14363078423540979e-04 +Plasma_electron_Debye_length_at_point_102________________________________ (len_plasma_debye_electron_profile102)_ 1.14322822523827349e-04 +Plasma_electron_Debye_length_at_point_103________________________________ (len_plasma_debye_electron_profile103)_ 1.14282151974448421e-04 +Plasma_electron_Debye_length_at_point_104________________________________ (len_plasma_debye_electron_profile104)_ 1.14241066235825763e-04 +Plasma_electron_Debye_length_at_point_105________________________________ (len_plasma_debye_electron_profile105)_ 1.14199564762695860e-04 +Plasma_electron_Debye_length_at_point_106________________________________ (len_plasma_debye_electron_profile106)_ 1.14157647004099207e-04 +Plasma_electron_Debye_length_at_point_107________________________________ (len_plasma_debye_electron_profile107)_ 1.14115312403369356e-04 +Plasma_electron_Debye_length_at_point_108________________________________ (len_plasma_debye_electron_profile108)_ 1.14072560398122019e-04 +Plasma_electron_Debye_length_at_point_109________________________________ (len_plasma_debye_electron_profile109)_ 1.14029390420244137e-04 +Plasma_electron_Debye_length_at_point_110________________________________ (len_plasma_debye_electron_profile110)_ 1.13985801895882908e-04 +Plasma_electron_Debye_length_at_point_111________________________________ (len_plasma_debye_electron_profile111)_ 1.13941794245434787e-04 +Plasma_electron_Debye_length_at_point_112________________________________ (len_plasma_debye_electron_profile112)_ 1.13897366883534563e-04 +Plasma_electron_Debye_length_at_point_113________________________________ (len_plasma_debye_electron_profile113)_ 1.13852519219044313e-04 +Plasma_electron_Debye_length_at_point_114________________________________ (len_plasma_debye_electron_profile114)_ 1.13807250655042529e-04 +Plasma_electron_Debye_length_at_point_115________________________________ (len_plasma_debye_electron_profile115)_ 1.13761560588813038e-04 +Plasma_electron_Debye_length_at_point_116________________________________ (len_plasma_debye_electron_profile116)_ 1.13715448411834104e-04 +Plasma_electron_Debye_length_at_point_117________________________________ (len_plasma_debye_electron_profile117)_ 1.13668913509767502e-04 +Plasma_electron_Debye_length_at_point_118________________________________ (len_plasma_debye_electron_profile118)_ 1.13621955262447569e-04 +Plasma_electron_Debye_length_at_point_119________________________________ (len_plasma_debye_electron_profile119)_ 1.13574573043870230e-04 +Plasma_electron_Debye_length_at_point_120________________________________ (len_plasma_debye_electron_profile120)_ 1.13526766222182338e-04 +Plasma_electron_Debye_length_at_point_121________________________________ (len_plasma_debye_electron_profile121)_ 1.13478534159670611e-04 +Plasma_electron_Debye_length_at_point_122________________________________ (len_plasma_debye_electron_profile122)_ 1.13429876212750957e-04 +Plasma_electron_Debye_length_at_point_123________________________________ (len_plasma_debye_electron_profile123)_ 1.13380791731957734e-04 +Plasma_electron_Debye_length_at_point_124________________________________ (len_plasma_debye_electron_profile124)_ 1.13331280061932958e-04 +Plasma_electron_Debye_length_at_point_125________________________________ (len_plasma_debye_electron_profile125)_ 1.13281340541415774e-04 +Plasma_electron_Debye_length_at_point_126________________________________ (len_plasma_debye_electron_profile126)_ 1.13230972503231765e-04 +Plasma_electron_Debye_length_at_point_127________________________________ (len_plasma_debye_electron_profile127)_ 1.13180175274282512e-04 +Plasma_electron_Debye_length_at_point_128________________________________ (len_plasma_debye_electron_profile128)_ 1.13128948175535095e-04 +Plasma_electron_Debye_length_at_point_129________________________________ (len_plasma_debye_electron_profile129)_ 1.13077290522011831e-04 +Plasma_electron_Debye_length_at_point_130________________________________ (len_plasma_debye_electron_profile130)_ 1.13025201622779734e-04 +Plasma_electron_Debye_length_at_point_131________________________________ (len_plasma_debye_electron_profile131)_ 1.12972680780940723e-04 +Plasma_electron_Debye_length_at_point_132________________________________ (len_plasma_debye_electron_profile132)_ 1.12919727293621169e-04 +Plasma_electron_Debye_length_at_point_133________________________________ (len_plasma_debye_electron_profile133)_ 1.12866340451962059e-04 +Plasma_electron_Debye_length_at_point_134________________________________ (len_plasma_debye_electron_profile134)_ 1.12812519541109180e-04 +Plasma_electron_Debye_length_at_point_135________________________________ (len_plasma_debye_electron_profile135)_ 1.12758263840203259e-04 +Plasma_electron_Debye_length_at_point_136________________________________ (len_plasma_debye_electron_profile136)_ 1.12703572622370360e-04 +Plasma_electron_Debye_length_at_point_137________________________________ (len_plasma_debye_electron_profile137)_ 1.12648445154712431e-04 +Plasma_electron_Debye_length_at_point_138________________________________ (len_plasma_debye_electron_profile138)_ 1.12592880698297949e-04 +Plasma_electron_Debye_length_at_point_139________________________________ (len_plasma_debye_electron_profile139)_ 1.12536878508152625e-04 +Plasma_electron_Debye_length_at_point_140________________________________ (len_plasma_debye_electron_profile140)_ 1.12480437833250470e-04 +Plasma_electron_Debye_length_at_point_141________________________________ (len_plasma_debye_electron_profile141)_ 1.12423557916504883e-04 +Plasma_electron_Debye_length_at_point_142________________________________ (len_plasma_debye_electron_profile142)_ 1.12366237994759955e-04 +Plasma_electron_Debye_length_at_point_143________________________________ (len_plasma_debye_electron_profile143)_ 1.12308477298781888e-04 +Plasma_electron_Debye_length_at_point_144________________________________ (len_plasma_debye_electron_profile144)_ 1.12250275053250823e-04 +Plasma_electron_Debye_length_at_point_145________________________________ (len_plasma_debye_electron_profile145)_ 1.12191630476752535e-04 +Plasma_electron_Debye_length_at_point_146________________________________ (len_plasma_debye_electron_profile146)_ 1.12132542781770623e-04 +Plasma_electron_Debye_length_at_point_147________________________________ (len_plasma_debye_electron_profile147)_ 1.12073011174678894e-04 +Plasma_electron_Debye_length_at_point_148________________________________ (len_plasma_debye_electron_profile148)_ 1.12013034855733723e-04 +Plasma_electron_Debye_length_at_point_149________________________________ (len_plasma_debye_electron_profile149)_ 1.11952613019067056e-04 +Plasma_electron_Debye_length_at_point_150________________________________ (len_plasma_debye_electron_profile150)_ 1.11891744852679267e-04 +Plasma_electron_Debye_length_at_point_151________________________________ (len_plasma_debye_electron_profile151)_ 1.11830429538432660e-04 +Plasma_electron_Debye_length_at_point_152________________________________ (len_plasma_debye_electron_profile152)_ 1.11768666252044845e-04 +Plasma_electron_Debye_length_at_point_153________________________________ (len_plasma_debye_electron_profile153)_ 1.11706454163082770e-04 +Plasma_electron_Debye_length_at_point_154________________________________ (len_plasma_debye_electron_profile154)_ 1.11643792434956902e-04 +Plasma_electron_Debye_length_at_point_155________________________________ (len_plasma_debye_electron_profile155)_ 1.11580680224915592e-04 +Plasma_electron_Debye_length_at_point_156________________________________ (len_plasma_debye_electron_profile156)_ 1.11517116684039963e-04 +Plasma_electron_Debye_length_at_point_157________________________________ (len_plasma_debye_electron_profile157)_ 1.11453100957239115e-04 +Plasma_electron_Debye_length_at_point_158________________________________ (len_plasma_debye_electron_profile158)_ 1.11388632183245583e-04 +Plasma_electron_Debye_length_at_point_159________________________________ (len_plasma_debye_electron_profile159)_ 1.11323709494611070e-04 +Plasma_electron_Debye_length_at_point_160________________________________ (len_plasma_debye_electron_profile160)_ 1.11258332017703028e-04 +Plasma_electron_Debye_length_at_point_161________________________________ (len_plasma_debye_electron_profile161)_ 1.11192498872700923e-04 +Plasma_electron_Debye_length_at_point_162________________________________ (len_plasma_debye_electron_profile162)_ 1.11126209173593600e-04 +Plasma_electron_Debye_length_at_point_163________________________________ (len_plasma_debye_electron_profile163)_ 1.11059462028176550e-04 +Plasma_electron_Debye_length_at_point_164________________________________ (len_plasma_debye_electron_profile164)_ 1.10992256538049928e-04 +Plasma_electron_Debye_length_at_point_165________________________________ (len_plasma_debye_electron_profile165)_ 1.10924591798616917e-04 +Plasma_electron_Debye_length_at_point_166________________________________ (len_plasma_debye_electron_profile166)_ 1.10856466899082558e-04 +Plasma_electron_Debye_length_at_point_167________________________________ (len_plasma_debye_electron_profile167)_ 1.10787880922453061e-04 +Plasma_electron_Debye_length_at_point_168________________________________ (len_plasma_debye_electron_profile168)_ 1.10718832945535725e-04 +Plasma_electron_Debye_length_at_point_169________________________________ (len_plasma_debye_electron_profile169)_ 1.10649322038939248e-04 +Plasma_electron_Debye_length_at_point_170________________________________ (len_plasma_debye_electron_profile170)_ 1.10579347267074647e-04 +Plasma_electron_Debye_length_at_point_171________________________________ (len_plasma_debye_electron_profile171)_ 1.10508907688156754e-04 +Plasma_electron_Debye_length_at_point_172________________________________ (len_plasma_debye_electron_profile172)_ 1.10438002354206296e-04 +Plasma_electron_Debye_length_at_point_173________________________________ (len_plasma_debye_electron_profile173)_ 1.10366630311052436e-04 +Plasma_electron_Debye_length_at_point_174________________________________ (len_plasma_debye_electron_profile174)_ 1.10294790598336240e-04 +Plasma_electron_Debye_length_at_point_175________________________________ (len_plasma_debye_electron_profile175)_ 1.10222482249514467e-04 +Plasma_electron_Debye_length_at_point_176________________________________ (len_plasma_debye_electron_profile176)_ 1.10149704291864255e-04 +Plasma_electron_Debye_length_at_point_177________________________________ (len_plasma_debye_electron_profile177)_ 1.10076455746488326e-04 +Plasma_electron_Debye_length_at_point_178________________________________ (len_plasma_debye_electron_profile178)_ 1.10002735628321029e-04 +Plasma_electron_Debye_length_at_point_179________________________________ (len_plasma_debye_electron_profile179)_ 1.09928542946135082e-04 +Plasma_electron_Debye_length_at_point_180________________________________ (len_plasma_debye_electron_profile180)_ 1.09853876702549025e-04 +Plasma_electron_Debye_length_at_point_181________________________________ (len_plasma_debye_electron_profile181)_ 1.09778735894035519e-04 +Plasma_electron_Debye_length_at_point_182________________________________ (len_plasma_debye_electron_profile182)_ 1.09703119510930438e-04 +Plasma_electron_Debye_length_at_point_183________________________________ (len_plasma_debye_electron_profile183)_ 1.09627026537442720e-04 +Plasma_electron_Debye_length_at_point_184________________________________ (len_plasma_debye_electron_profile184)_ 1.09550455951665292e-04 +Plasma_electron_Debye_length_at_point_185________________________________ (len_plasma_debye_electron_profile185)_ 1.09473406725586655e-04 +Plasma_electron_Debye_length_at_point_186________________________________ (len_plasma_debye_electron_profile186)_ 1.09395877825103411e-04 +Plasma_electron_Debye_length_at_point_187________________________________ (len_plasma_debye_electron_profile187)_ 1.09317868210033974e-04 +Plasma_electron_Debye_length_at_point_188________________________________ (len_plasma_debye_electron_profile188)_ 1.09239376834132938e-04 +Plasma_electron_Debye_length_at_point_189________________________________ (len_plasma_debye_electron_profile189)_ 1.09160402645106769e-04 +Plasma_electron_Debye_length_at_point_190________________________________ (len_plasma_debye_electron_profile190)_ 1.09080944584630178e-04 +Plasma_electron_Debye_length_at_point_191________________________________ (len_plasma_debye_electron_profile191)_ 1.09001001588363998e-04 +Plasma_electron_Debye_length_at_point_192________________________________ (len_plasma_debye_electron_profile192)_ 1.08920572585973773e-04 +Plasma_electron_Debye_length_at_point_193________________________________ (len_plasma_debye_electron_profile193)_ 1.08839656501149741e-04 +Plasma_electron_Debye_length_at_point_194________________________________ (len_plasma_debye_electron_profile194)_ 1.08758252251627916e-04 +Plasma_electron_Debye_length_at_point_195________________________________ (len_plasma_debye_electron_profile195)_ 1.08676358749212372e-04 +Plasma_electron_Debye_length_at_point_196________________________________ (len_plasma_debye_electron_profile196)_ 1.08593974899798783e-04 +Plasma_electron_Debye_length_at_point_197________________________________ (len_plasma_debye_electron_profile197)_ 1.08511099603399318e-04 +Plasma_electron_Debye_length_at_point_198________________________________ (len_plasma_debye_electron_profile198)_ 1.08427731754168744e-04 +Plasma_electron_Debye_length_at_point_199________________________________ (len_plasma_debye_electron_profile199)_ 1.08343870240432073e-04 +Plasma_electron_Debye_length_at_point_200________________________________ (len_plasma_debye_electron_profile200)_ 1.08259513944713388e-04 +Plasma_electron_Debye_length_at_point_201________________________________ (len_plasma_debye_electron_profile201)_ 1.08174661743766417e-04 +Plasma_electron_Debye_length_at_point_202________________________________ (len_plasma_debye_electron_profile202)_ 1.08089312508606329e-04 +Plasma_electron_Debye_length_at_point_203________________________________ (len_plasma_debye_electron_profile203)_ 1.08003465104543328e-04 +Plasma_electron_Debye_length_at_point_204________________________________ (len_plasma_debye_electron_profile204)_ 1.07917118391217596e-04 +Plasma_electron_Debye_length_at_point_205________________________________ (len_plasma_debye_electron_profile205)_ 1.07830271222636082e-04 +Plasma_electron_Debye_length_at_point_206________________________________ (len_plasma_debye_electron_profile206)_ 1.07742922447210873e-04 +Plasma_electron_Debye_length_at_point_207________________________________ (len_plasma_debye_electron_profile207)_ 1.07655070907799379e-04 +Plasma_electron_Debye_length_at_point_208________________________________ (len_plasma_debye_electron_profile208)_ 1.07566715441746245e-04 +Plasma_electron_Debye_length_at_point_209________________________________ (len_plasma_debye_electron_profile209)_ 1.07477854880927103e-04 +Plasma_electron_Debye_length_at_point_210________________________________ (len_plasma_debye_electron_profile210)_ 1.07388488051794395e-04 +Plasma_electron_Debye_length_at_point_211________________________________ (len_plasma_debye_electron_profile211)_ 1.07298613775424896e-04 +Plasma_electron_Debye_length_at_point_212________________________________ (len_plasma_debye_electron_profile212)_ 1.07208230867569481e-04 +Plasma_electron_Debye_length_at_point_213________________________________ (len_plasma_debye_electron_profile213)_ 1.07117338138704873e-04 +Plasma_electron_Debye_length_at_point_214________________________________ (len_plasma_debye_electron_profile214)_ 1.07025934394087535e-04 +Plasma_electron_Debye_length_at_point_215________________________________ (len_plasma_debye_electron_profile215)_ 1.06934018433809874e-04 +Plasma_electron_Debye_length_at_point_216________________________________ (len_plasma_debye_electron_profile216)_ 1.06841589052858454e-04 +Plasma_electron_Debye_length_at_point_217________________________________ (len_plasma_debye_electron_profile217)_ 1.06748645041174976e-04 +Plasma_electron_Debye_length_at_point_218________________________________ (len_plasma_debye_electron_profile218)_ 1.06655185183719217e-04 +Plasma_electron_Debye_length_at_point_219________________________________ (len_plasma_debye_electron_profile219)_ 1.06561208260534725e-04 +Plasma_electron_Debye_length_at_point_220________________________________ (len_plasma_debye_electron_profile220)_ 1.06466713046817073e-04 +Plasma_electron_Debye_length_at_point_221________________________________ (len_plasma_debye_electron_profile221)_ 1.06371698312984574e-04 +Plasma_electron_Debye_length_at_point_222________________________________ (len_plasma_debye_electron_profile222)_ 1.06276162824751847e-04 +Plasma_electron_Debye_length_at_point_223________________________________ (len_plasma_debye_electron_profile223)_ 1.06180105343206234e-04 +Plasma_electron_Debye_length_at_point_224________________________________ (len_plasma_debye_electron_profile224)_ 1.06083524624886794e-04 +Plasma_electron_Debye_length_at_point_225________________________________ (len_plasma_debye_electron_profile225)_ 1.05986419421866593e-04 +Plasma_electron_Debye_length_at_point_226________________________________ (len_plasma_debye_electron_profile226)_ 1.05888788481837954e-04 +Plasma_electron_Debye_length_at_point_227________________________________ (len_plasma_debye_electron_profile227)_ 1.05790630548200542e-04 +Plasma_electron_Debye_length_at_point_228________________________________ (len_plasma_debye_electron_profile228)_ 1.05691944360153216e-04 +Plasma_electron_Debye_length_at_point_229________________________________ (len_plasma_debye_electron_profile229)_ 1.05592728652788715e-04 +Plasma_electron_Debye_length_at_point_230________________________________ (len_plasma_debye_electron_profile230)_ 1.05492982157192095e-04 +Plasma_electron_Debye_length_at_point_231________________________________ (len_plasma_debye_electron_profile231)_ 1.05392703600542327e-04 +Plasma_electron_Debye_length_at_point_232________________________________ (len_plasma_debye_electron_profile232)_ 1.05291891706218093e-04 +Plasma_electron_Debye_length_at_point_233________________________________ (len_plasma_debye_electron_profile233)_ 1.05190545193906650e-04 +Plasma_electron_Debye_length_at_point_234________________________________ (len_plasma_debye_electron_profile234)_ 1.05088662779716994e-04 +Plasma_electron_Debye_length_at_point_235________________________________ (len_plasma_debye_electron_profile235)_ 1.04986243176296930e-04 +Plasma_electron_Debye_length_at_point_236________________________________ (len_plasma_debye_electron_profile236)_ 1.04883285092953943e-04 +Plasma_electron_Debye_length_at_point_237________________________________ (len_plasma_debye_electron_profile237)_ 1.04779787235780573e-04 +Plasma_electron_Debye_length_at_point_238________________________________ (len_plasma_debye_electron_profile238)_ 1.04675748307784007e-04 +Plasma_electron_Debye_length_at_point_239________________________________ (len_plasma_debye_electron_profile239)_ 1.04571167009019948e-04 +Plasma_electron_Debye_length_at_point_240________________________________ (len_plasma_debye_electron_profile240)_ 1.04466042036731367e-04 +Plasma_electron_Debye_length_at_point_241________________________________ (len_plasma_debye_electron_profile241)_ 1.04360372085491701e-04 +Plasma_electron_Debye_length_at_point_242________________________________ (len_plasma_debye_electron_profile242)_ 1.04254155847353043e-04 +Plasma_electron_Debye_length_at_point_243________________________________ (len_plasma_debye_electron_profile243)_ 1.04147392011999282e-04 +Plasma_electron_Debye_length_at_point_244________________________________ (len_plasma_debye_electron_profile244)_ 1.04040079266904387e-04 +Plasma_electron_Debye_length_at_point_245________________________________ (len_plasma_debye_electron_profile245)_ 1.03932216297495926e-04 +Plasma_electron_Debye_length_at_point_246________________________________ (len_plasma_debye_electron_profile246)_ 1.03823801787324290e-04 +Plasma_electron_Debye_length_at_point_247________________________________ (len_plasma_debye_electron_profile247)_ 1.03714834418237064e-04 +Plasma_electron_Debye_length_at_point_248________________________________ (len_plasma_debye_electron_profile248)_ 1.03605312870559669e-04 +Plasma_electron_Debye_length_at_point_249________________________________ (len_plasma_debye_electron_profile249)_ 1.03495235823281514e-04 +Plasma_electron_Debye_length_at_point_250________________________________ (len_plasma_debye_electron_profile250)_ 1.03384601954248788e-04 +Plasma_electron_Debye_length_at_point_251________________________________ (len_plasma_debye_electron_profile251)_ 1.03273409940362958e-04 +Plasma_electron_Debye_length_at_point_252________________________________ (len_plasma_debye_electron_profile252)_ 1.03161658457786299e-04 +Plasma_electron_Debye_length_at_point_253________________________________ (len_plasma_debye_electron_profile253)_ 1.03049346182153631e-04 +Plasma_electron_Debye_length_at_point_254________________________________ (len_plasma_debye_electron_profile254)_ 1.02936471788791497e-04 +Plasma_electron_Debye_length_at_point_255________________________________ (len_plasma_debye_electron_profile255)_ 1.02823033952943851e-04 +Plasma_electron_Debye_length_at_point_256________________________________ (len_plasma_debye_electron_profile256)_ 1.02709031350005500e-04 +Plasma_electron_Debye_length_at_point_257________________________________ (len_plasma_debye_electron_profile257)_ 1.02594462655762782e-04 +Plasma_electron_Debye_length_at_point_258________________________________ (len_plasma_debye_electron_profile258)_ 1.02479326546642285e-04 +Plasma_electron_Debye_length_at_point_259________________________________ (len_plasma_debye_electron_profile259)_ 1.02363621699967070e-04 +Plasma_electron_Debye_length_at_point_260________________________________ (len_plasma_debye_electron_profile260)_ 1.02247346794221675e-04 +Plasma_electron_Debye_length_at_point_261________________________________ (len_plasma_debye_electron_profile261)_ 1.02130500509325188e-04 +Plasma_electron_Debye_length_at_point_262________________________________ (len_plasma_debye_electron_profile262)_ 1.02013081526913178e-04 +Plasma_electron_Debye_length_at_point_263________________________________ (len_plasma_debye_electron_profile263)_ 1.01895088530628615e-04 +Plasma_electron_Debye_length_at_point_264________________________________ (len_plasma_debye_electron_profile264)_ 1.01776520206421975e-04 +Plasma_electron_Debye_length_at_point_265________________________________ (len_plasma_debye_electron_profile265)_ 1.01657375242860946e-04 +Plasma_electron_Debye_length_at_point_266________________________________ (len_plasma_debye_electron_profile266)_ 1.01537652331449925e-04 +Plasma_electron_Debye_length_at_point_267________________________________ (len_plasma_debye_electron_profile267)_ 1.01417350166959537e-04 +Plasma_electron_Debye_length_at_point_268________________________________ (len_plasma_debye_electron_profile268)_ 1.01296467447766883e-04 +Plasma_electron_Debye_length_at_point_269________________________________ (len_plasma_debye_electron_profile269)_ 1.01175002876205899e-04 +Plasma_electron_Debye_length_at_point_270________________________________ (len_plasma_debye_electron_profile270)_ 1.01052955158929646e-04 +Plasma_electron_Debye_length_at_point_271________________________________ (len_plasma_debye_electron_profile271)_ 1.00930323007283082e-04 +Plasma_electron_Debye_length_at_point_272________________________________ (len_plasma_debye_electron_profile272)_ 1.00807105137688349e-04 +Plasma_electron_Debye_length_at_point_273________________________________ (len_plasma_debye_electron_profile273)_ 1.00683300272041591e-04 +Plasma_electron_Debye_length_at_point_274________________________________ (len_plasma_debye_electron_profile274)_ 1.00558907138122603e-04 +Plasma_electron_Debye_length_at_point_275________________________________ (len_plasma_debye_electron_profile275)_ 1.00433924470017146e-04 +Plasma_electron_Debye_length_at_point_276________________________________ (len_plasma_debye_electron_profile276)_ 1.00308351008552535e-04 +Plasma_electron_Debye_length_at_point_277________________________________ (len_plasma_debye_electron_profile277)_ 1.00182185501746990e-04 +Plasma_electron_Debye_length_at_point_278________________________________ (len_plasma_debye_electron_profile278)_ 1.00055426705272831e-04 +Plasma_electron_Debye_length_at_point_279________________________________ (len_plasma_debye_electron_profile279)_ 9.99280733829343822e-05 +Plasma_electron_Debye_length_at_point_280________________________________ (len_plasma_debye_electron_profile280)_ 9.98001243071607697e-05 +Plasma_electron_Debye_length_at_point_281________________________________ (len_plasma_debye_electron_profile281)_ 9.96715782595139911e-05 +Plasma_electron_Debye_length_at_point_282________________________________ (len_plasma_debye_electron_profile282)_ 9.95424340312130732e-05 +Plasma_electron_Debye_length_at_point_283________________________________ (len_plasma_debye_electron_profile283)_ 9.94126904236744796e-05 +Plasma_electron_Debye_length_at_point_284________________________________ (len_plasma_debye_electron_profile284)_ 9.92823462490693628e-05 +Plasma_electron_Debye_length_at_point_285________________________________ (len_plasma_debye_electron_profile285)_ 9.91514003308984902e-05 +Plasma_electron_Debye_length_at_point_286________________________________ (len_plasma_debye_electron_profile286)_ 9.90198515045846652e-05 +Plasma_electron_Debye_length_at_point_287________________________________ (len_plasma_debye_electron_profile287)_ 9.88876986180841765e-05 +Plasma_electron_Debye_length_at_point_288________________________________ (len_plasma_debye_electron_profile288)_ 9.87549405325168422e-05 +Plasma_electron_Debye_length_at_point_289________________________________ (len_plasma_debye_electron_profile289)_ 9.86215761228161780e-05 +Plasma_electron_Debye_length_at_point_290________________________________ (len_plasma_debye_electron_profile290)_ 9.84876042783995159e-05 +Plasma_electron_Debye_length_at_point_291________________________________ (len_plasma_debye_electron_profile291)_ 9.83530239038594132e-05 +Plasma_electron_Debye_length_at_point_292________________________________ (len_plasma_debye_electron_profile292)_ 9.82178339196762448e-05 +Plasma_electron_Debye_length_at_point_293________________________________ (len_plasma_debye_electron_profile293)_ 9.80820332629535492e-05 +Plasma_electron_Debye_length_at_point_294________________________________ (len_plasma_debye_electron_profile294)_ 9.79456208881759676e-05 +Plasma_electron_Debye_length_at_point_295________________________________ (len_plasma_debye_electron_profile295)_ 9.78085957679911296e-05 +Plasma_electron_Debye_length_at_point_296________________________________ (len_plasma_debye_electron_profile296)_ 9.76709568940160286e-05 +Plasma_electron_Debye_length_at_point_297________________________________ (len_plasma_debye_electron_profile297)_ 9.75327032776684966e-05 +Plasma_electron_Debye_length_at_point_298________________________________ (len_plasma_debye_electron_profile298)_ 9.73938339510248350e-05 +Plasma_electron_Debye_length_at_point_299________________________________ (len_plasma_debye_electron_profile299)_ 9.72543479677043883e-05 +Plasma_electron_Debye_length_at_point_300________________________________ (len_plasma_debye_electron_profile300)_ 9.71142444037818050e-05 +Plasma_electron_Debye_length_at_point_301________________________________ (len_plasma_debye_electron_profile301)_ 9.69735223587279901e-05 +Plasma_electron_Debye_length_at_point_302________________________________ (len_plasma_debye_electron_profile302)_ 9.68321809563805330e-05 +Plasma_electron_Debye_length_at_point_303________________________________ (len_plasma_debye_electron_profile303)_ 9.66902193459449015e-05 +Plasma_electron_Debye_length_at_point_304________________________________ (len_plasma_debye_electron_profile304)_ 9.65476367030269265e-05 +Plasma_electron_Debye_length_at_point_305________________________________ (len_plasma_debye_electron_profile305)_ 9.64044322306978552e-05 +Plasma_electron_Debye_length_at_point_306________________________________ (len_plasma_debye_electron_profile306)_ 9.62606051605932031e-05 +Plasma_electron_Debye_length_at_point_307________________________________ (len_plasma_debye_electron_profile307)_ 9.61161547540460842e-05 +Plasma_electron_Debye_length_at_point_308________________________________ (len_plasma_debye_electron_profile308)_ 9.59710803032563878e-05 +Plasma_electron_Debye_length_at_point_309________________________________ (len_plasma_debye_electron_profile309)_ 9.58253811324972647e-05 +Plasma_electron_Debye_length_at_point_310________________________________ (len_plasma_debye_electron_profile310)_ 9.56790565993593443e-05 +Plasma_electron_Debye_length_at_point_311________________________________ (len_plasma_debye_electron_profile311)_ 9.55321060960349450e-05 +Plasma_electron_Debye_length_at_point_312________________________________ (len_plasma_debye_electron_profile312)_ 9.53845290506426436e-05 +Plasma_electron_Debye_length_at_point_313________________________________ (len_plasma_debye_electron_profile313)_ 9.52363249285944008e-05 +Plasma_electron_Debye_length_at_point_314________________________________ (len_plasma_debye_electron_profile314)_ 9.50874932340058229e-05 +Plasma_electron_Debye_length_at_point_315________________________________ (len_plasma_debye_electron_profile315)_ 9.49380335111517170e-05 +Plasma_electron_Debye_length_at_point_316________________________________ (len_plasma_debye_electron_profile316)_ 9.47879453459680771e-05 +Plasma_electron_Debye_length_at_point_317________________________________ (len_plasma_debye_electron_profile317)_ 9.46372283676020321e-05 +Plasma_electron_Debye_length_at_point_318________________________________ (len_plasma_debye_electron_profile318)_ 9.44858822500115866e-05 +Plasma_electron_Debye_length_at_point_319________________________________ (len_plasma_debye_electron_profile319)_ 9.43339067136166298e-05 +Plasma_electron_Debye_length_at_point_320________________________________ (len_plasma_debye_electron_profile320)_ 9.41813015270031120e-05 +Plasma_electron_Debye_length_at_point_321________________________________ (len_plasma_debye_electron_profile321)_ 9.40280665086820269e-05 +Plasma_electron_Debye_length_at_point_322________________________________ (len_plasma_debye_electron_profile322)_ 9.38742015289051253e-05 +Plasma_electron_Debye_length_at_point_323________________________________ (len_plasma_debye_electron_profile323)_ 9.37197065115395273e-05 +Plasma_electron_Debye_length_at_point_324________________________________ (len_plasma_debye_electron_profile324)_ 9.35645814360026846e-05 +Plasma_electron_Debye_length_at_point_325________________________________ (len_plasma_debye_electron_profile325)_ 9.34088263392604160e-05 +Plasma_electron_Debye_length_at_point_326________________________________ (len_plasma_debye_electron_profile326)_ 9.32524413178896700e-05 +Plasma_electron_Debye_length_at_point_327________________________________ (len_plasma_debye_electron_profile327)_ 9.30954265302087785e-05 +Plasma_electron_Debye_length_at_point_328________________________________ (len_plasma_debye_electron_profile328)_ 9.29377821984767608e-05 +Plasma_electron_Debye_length_at_point_329________________________________ (len_plasma_debye_electron_profile329)_ 9.27795086111649851e-05 +Plasma_electron_Debye_length_at_point_330________________________________ (len_plasma_debye_electron_profile330)_ 9.26206061253029750e-05 +Plasma_electron_Debye_length_at_point_331________________________________ (len_plasma_debye_electron_profile331)_ 9.24610751689014526e-05 +Plasma_electron_Debye_length_at_point_332________________________________ (len_plasma_debye_electron_profile332)_ 9.23009162434549886e-05 +Plasma_electron_Debye_length_at_point_333________________________________ (len_plasma_debye_electron_profile333)_ 9.21401299265272011e-05 +Plasma_electron_Debye_length_at_point_334________________________________ (len_plasma_debye_electron_profile334)_ 9.19787168744215928e-05 +Plasma_electron_Debye_length_at_point_335________________________________ (len_plasma_debye_electron_profile335)_ 9.18166778249406154e-05 +Plasma_electron_Debye_length_at_point_336________________________________ (len_plasma_debye_electron_profile336)_ 9.16540136002366192e-05 +Plasma_electron_Debye_length_at_point_337________________________________ (len_plasma_debye_electron_profile337)_ 9.14907251097576990e-05 +Plasma_electron_Debye_length_at_point_338________________________________ (len_plasma_debye_electron_profile338)_ 9.13268133532916452e-05 +Plasma_electron_Debye_length_at_point_339________________________________ (len_plasma_debye_electron_profile339)_ 9.11622794241119874e-05 +Plasma_electron_Debye_length_at_point_340________________________________ (len_plasma_debye_electron_profile340)_ 9.09971245122295975e-05 +Plasma_electron_Debye_length_at_point_341________________________________ (len_plasma_debye_electron_profile341)_ 9.08313499077534320e-05 +Plasma_electron_Debye_length_at_point_342________________________________ (len_plasma_debye_electron_profile342)_ 9.06649570043648175e-05 +Plasma_electron_Debye_length_at_point_343________________________________ (len_plasma_debye_electron_profile343)_ 9.04979473029091276e-05 +Plasma_electron_Debye_length_at_point_344________________________________ (len_plasma_debye_electron_profile344)_ 9.03303224151093379e-05 +Plasma_electron_Debye_length_at_point_345________________________________ (len_plasma_debye_electron_profile345)_ 9.01620840674056739e-05 +Plasma_electron_Debye_length_at_point_346________________________________ (len_plasma_debye_electron_profile346)_ 8.99932341049264475e-05 +Plasma_electron_Debye_length_at_point_347________________________________ (len_plasma_debye_electron_profile347)_ 8.98237744955944994e-05 +Plasma_electron_Debye_length_at_point_348________________________________ (len_plasma_debye_electron_profile348)_ 8.96537073343745748e-05 +Plasma_electron_Debye_length_at_point_349________________________________ (len_plasma_debye_electron_profile349)_ 8.94830348476667413e-05 +Plasma_electron_Debye_length_at_point_350________________________________ (len_plasma_debye_electron_profile350)_ 8.93117593978515672e-05 +Plasma_electron_Debye_length_at_point_351________________________________ (len_plasma_debye_electron_profile351)_ 8.91398834879925778e-05 +Plasma_electron_Debye_length_at_point_352________________________________ (len_plasma_debye_electron_profile352)_ 8.89674097667019105e-05 +Plasma_electron_Debye_length_at_point_353________________________________ (len_plasma_debye_electron_profile353)_ 8.87943410331755667e-05 +Plasma_electron_Debye_length_at_point_354________________________________ (len_plasma_debye_electron_profile354)_ 8.86206802424047108e-05 +Plasma_electron_Debye_length_at_point_355________________________________ (len_plasma_debye_electron_profile355)_ 8.84464305105695761e-05 +Plasma_electron_Debye_length_at_point_356________________________________ (len_plasma_debye_electron_profile356)_ 8.82715951206233497e-05 +Plasma_electron_Debye_length_at_point_357________________________________ (len_plasma_debye_electron_profile357)_ 8.80961775280729898e-05 +Plasma_electron_Debye_length_at_point_358________________________________ (len_plasma_debye_electron_profile358)_ 8.79201813669651730e-05 +Plasma_electron_Debye_length_at_point_359________________________________ (len_plasma_debye_electron_profile359)_ 8.77436104560847874e-05 +Plasma_electron_Debye_length_at_point_360________________________________ (len_plasma_debye_electron_profile360)_ 8.75664688053748319e-05 +Plasma_electron_Debye_length_at_point_361________________________________ (len_plasma_debye_electron_profile361)_ 8.73887606225862888e-05 +Plasma_electron_Debye_length_at_point_362________________________________ (len_plasma_debye_electron_profile362)_ 8.72104903201670773e-05 +Plasma_electron_Debye_length_at_point_363________________________________ (len_plasma_debye_electron_profile363)_ 8.70316625223995318e-05 +Plasma_electron_Debye_length_at_point_364________________________________ (len_plasma_debye_electron_profile364)_ 8.68522820727967213e-05 +Plasma_electron_Debye_length_at_point_365________________________________ (len_plasma_debye_electron_profile365)_ 8.66723540417677855e-05 +Plasma_electron_Debye_length_at_point_366________________________________ (len_plasma_debye_electron_profile366)_ 8.64918837345630905e-05 +Plasma_electron_Debye_length_at_point_367________________________________ (len_plasma_debye_electron_profile367)_ 8.63108766995110616e-05 +Plasma_electron_Debye_length_at_point_368________________________________ (len_plasma_debye_electron_profile368)_ 8.61293387365582680e-05 +Plasma_electron_Debye_length_at_point_369________________________________ (len_plasma_debye_electron_profile369)_ 8.59472759061254431e-05 +Plasma_electron_Debye_length_at_point_370________________________________ (len_plasma_debye_electron_profile370)_ 8.57646945382924255e-05 +Plasma_electron_Debye_length_at_point_371________________________________ (len_plasma_debye_electron_profile371)_ 8.55816012423260872e-05 +Plasma_electron_Debye_length_at_point_372________________________________ (len_plasma_debye_electron_profile372)_ 8.53980029165653026e-05 +Plasma_electron_Debye_length_at_point_373________________________________ (len_plasma_debye_electron_profile373)_ 8.52139067586781245e-05 +Plasma_electron_Debye_length_at_point_374________________________________ (len_plasma_debye_electron_profile374)_ 8.50293202763074030e-05 +Plasma_electron_Debye_length_at_point_375________________________________ (len_plasma_debye_electron_profile375)_ 8.48442512981207973e-05 +Plasma_electron_Debye_length_at_point_376________________________________ (len_plasma_debye_electron_profile376)_ 8.46587079852834649e-05 +Plasma_electron_Debye_length_at_point_377________________________________ (len_plasma_debye_electron_profile377)_ 8.44726988433708406e-05 +Plasma_electron_Debye_length_at_point_378________________________________ (len_plasma_debye_electron_profile378)_ 8.42862327347417695e-05 +Plasma_electron_Debye_length_at_point_379________________________________ (len_plasma_debye_electron_profile379)_ 8.40993188913914517e-05 +Plasma_electron_Debye_length_at_point_380________________________________ (len_plasma_debye_electron_profile380)_ 8.39119669283059949e-05 +Plasma_electron_Debye_length_at_point_381________________________________ (len_plasma_debye_electron_profile381)_ 8.37241868573408254e-05 +Plasma_electron_Debye_length_at_point_382________________________________ (len_plasma_debye_electron_profile382)_ 8.35359891016464992e-05 +Plasma_electron_Debye_length_at_point_383________________________________ (len_plasma_debye_electron_profile383)_ 8.33473845106671215e-05 +Plasma_electron_Debye_length_at_point_384________________________________ (len_plasma_debye_electron_profile384)_ 8.31583843757371097e-05 +Plasma_electron_Debye_length_at_point_385________________________________ (len_plasma_debye_electron_profile385)_ 8.29690004463044090e-05 +Plasma_electron_Debye_length_at_point_386________________________________ (len_plasma_debye_electron_profile386)_ 8.27792449468091617e-05 +Plasma_electron_Debye_length_at_point_387________________________________ (len_plasma_debye_electron_profile387)_ 8.25891305942484736e-05 +Plasma_electron_Debye_length_at_point_388________________________________ (len_plasma_debye_electron_profile388)_ 8.23986706164601832e-05 +Plasma_electron_Debye_length_at_point_389________________________________ (len_plasma_debye_electron_profile389)_ 8.22078787711598652e-05 +Plasma_electron_Debye_length_at_point_390________________________________ (len_plasma_debye_electron_profile390)_ 8.20167693657672842e-05 +Plasma_electron_Debye_length_at_point_391________________________________ (len_plasma_debye_electron_profile391)_ 8.18253572780613535e-05 +Plasma_electron_Debye_length_at_point_392________________________________ (len_plasma_debye_electron_profile392)_ 8.16336579777039609e-05 +Plasma_electron_Debye_length_at_point_393________________________________ (len_plasma_debye_electron_profile393)_ 8.14416875486762584e-05 +Plasma_electron_Debye_length_at_point_394________________________________ (len_plasma_debye_electron_profile394)_ 8.12494627126731842e-05 +Plasma_electron_Debye_length_at_point_395________________________________ (len_plasma_debye_electron_profile395)_ 8.10570008535053022e-05 +Plasma_electron_Debye_length_at_point_396________________________________ (len_plasma_debye_electron_profile396)_ 8.08643200425594472e-05 +Plasma_electron_Debye_length_at_point_397________________________________ (len_plasma_debye_electron_profile397)_ 8.06714390653737401e-05 +Plasma_electron_Debye_length_at_point_398________________________________ (len_plasma_debye_electron_profile398)_ 8.04783774493854516e-05 +Plasma_electron_Debye_length_at_point_399________________________________ (len_plasma_debye_electron_profile399)_ 8.02851554929147896e-05 +Plasma_electron_Debye_length_at_point_400________________________________ (len_plasma_debye_electron_profile400)_ 8.00917942954506364e-05 +Plasma_electron_Debye_length_at_point_401________________________________ (len_plasma_debye_electron_profile401)_ 7.98983157893107027e-05 +Plasma_electron_Debye_length_at_point_402________________________________ (len_plasma_debye_electron_profile402)_ 7.97047427727513267e-05 +Plasma_electron_Debye_length_at_point_403________________________________ (len_plasma_debye_electron_profile403)_ 7.95110989446096042e-05 +Plasma_electron_Debye_length_at_point_404________________________________ (len_plasma_debye_electron_profile404)_ 7.93174089405646114e-05 +Plasma_electron_Debye_length_at_point_405________________________________ (len_plasma_debye_electron_profile405)_ 7.91236983711119789e-05 +Plasma_electron_Debye_length_at_point_406________________________________ (len_plasma_debye_electron_profile406)_ 7.89299938613528378e-05 +Plasma_electron_Debye_length_at_point_407________________________________ (len_plasma_debye_electron_profile407)_ 7.87363230927055842e-05 +Plasma_electron_Debye_length_at_point_408________________________________ (len_plasma_debye_electron_profile408)_ 7.85427148466568927e-05 +Plasma_electron_Debye_length_at_point_409________________________________ (len_plasma_debye_electron_profile409)_ 7.83491990506792374e-05 +Plasma_electron_Debye_length_at_point_410________________________________ (len_plasma_debye_electron_profile410)_ 7.81558068264496717e-05 +Plasma_electron_Debye_length_at_point_411________________________________ (len_plasma_debye_electron_profile411)_ 7.79625705405185534e-05 +Plasma_electron_Debye_length_at_point_412________________________________ (len_plasma_debye_electron_profile412)_ 7.77695238575868602e-05 +Plasma_electron_Debye_length_at_point_413________________________________ (len_plasma_debye_electron_profile413)_ 7.75767017965662176e-05 +Plasma_electron_Debye_length_at_point_414________________________________ (len_plasma_debye_electron_profile414)_ 7.73841407896094254e-05 +Plasma_electron_Debye_length_at_point_415________________________________ (len_plasma_debye_electron_profile415)_ 7.71918787443170448e-05 +Plasma_electron_Debye_length_at_point_416________________________________ (len_plasma_debye_electron_profile416)_ 7.69999551093437592e-05 +Plasma_electron_Debye_length_at_point_417________________________________ (len_plasma_debye_electron_profile417)_ 7.68084109436493627e-05 +Plasma_electron_Debye_length_at_point_418________________________________ (len_plasma_debye_electron_profile418)_ 7.66172889896621313e-05 +Plasma_electron_Debye_length_at_point_419________________________________ (len_plasma_debye_electron_profile419)_ 7.64266337506493203e-05 +Plasma_electron_Debye_length_at_point_420________________________________ (len_plasma_debye_electron_profile420)_ 7.62364915726176196e-05 +Plasma_electron_Debye_length_at_point_421________________________________ (len_plasma_debye_electron_profile421)_ 7.60469107311009226e-05 +Plasma_electron_Debye_length_at_point_422________________________________ (len_plasma_debye_electron_profile422)_ 7.58579415232288226e-05 +Plasma_electron_Debye_length_at_point_423________________________________ (len_plasma_debye_electron_profile423)_ 7.56696363655127855e-05 +Plasma_electron_Debye_length_at_point_424________________________________ (len_plasma_debye_electron_profile424)_ 7.54820498978336880e-05 +Plasma_electron_Debye_length_at_point_425________________________________ (len_plasma_debye_electron_profile425)_ 7.52952390941703689e-05 +Plasma_electron_Debye_length_at_point_426________________________________ (len_plasma_debye_electron_profile426)_ 7.51092633806704790e-05 +Plasma_electron_Debye_length_at_point_427________________________________ (len_plasma_debye_electron_profile427)_ 7.49241847617367426e-05 +Plasma_electron_Debye_length_at_point_428________________________________ (len_plasma_debye_electron_profile428)_ 7.47400679548840355e-05 +Plasma_electron_Debye_length_at_point_429________________________________ (len_plasma_debye_electron_profile429)_ 7.45569805352172527e-05 +Plasma_electron_Debye_length_at_point_430________________________________ (len_plasma_debye_electron_profile430)_ 7.43749930904899590e-05 +Plasma_electron_Debye_length_at_point_431________________________________ (len_plasma_debye_electron_profile431)_ 7.41941793878304244e-05 +Plasma_electron_Debye_length_at_point_432________________________________ (len_plasma_debye_electron_profile432)_ 7.40146165533708171e-05 +Plasma_electron_Debye_length_at_point_433________________________________ (len_plasma_debye_electron_profile433)_ 7.38363852661877293e-05 +Plasma_electron_Debye_length_at_point_434________________________________ (len_plasma_debye_electron_profile434)_ 7.36595699681668280e-05 +Plasma_electron_Debye_length_at_point_435________________________________ (len_plasma_debye_electron_profile435)_ 7.34842590916437319e-05 +Plasma_electron_Debye_length_at_point_436________________________________ (len_plasma_debye_electron_profile436)_ 7.33105453069583893e-05 +Plasma_electron_Debye_length_at_point_437________________________________ (len_plasma_debye_electron_profile437)_ 7.31385257923977293e-05 +Plasma_electron_Debye_length_at_point_438________________________________ (len_plasma_debye_electron_profile438)_ 7.29683025294074737e-05 +Plasma_electron_Debye_length_at_point_439________________________________ (len_plasma_debye_electron_profile439)_ 7.27999826264389761e-05 +Plasma_electron_Debye_length_at_point_440________________________________ (len_plasma_debye_electron_profile440)_ 7.26336786753858357e-05 +Plasma_electron_Debye_length_at_point_441________________________________ (len_plasma_debye_electron_profile441)_ 7.24695091452793363e-05 +Plasma_electron_Debye_length_at_point_442________________________________ (len_plasma_debye_electron_profile442)_ 7.23075988187857062e-05 +Plasma_electron_Debye_length_at_point_443________________________________ (len_plasma_debye_electron_profile443)_ 7.21480792781236042e-05 +Plasma_electron_Debye_length_at_point_444________________________________ (len_plasma_debye_electron_profile444)_ 7.19910894483543994e-05 +Plasma_electron_Debye_length_at_point_445________________________________ (len_plasma_debye_electron_profile445)_ 7.18367762076615492e-05 +Plasma_electron_Debye_length_at_point_446________________________________ (len_plasma_debye_electron_profile446)_ 7.16852950763319691e-05 +Plasma_electron_Debye_length_at_point_447________________________________ (len_plasma_debye_electron_profile447)_ 7.15368109988114969e-05 +Plasma_electron_Debye_length_at_point_448________________________________ (len_plasma_debye_electron_profile448)_ 7.13914992366143777e-05 +Plasma_electron_Debye_length_at_point_449________________________________ (len_plasma_debye_electron_profile449)_ 7.12495463942754143e-05 +Plasma_electron_Debye_length_at_point_450________________________________ (len_plasma_debye_electron_profile450)_ 7.11111516062985235e-05 +Plasma_electron_Debye_length_at_point_451________________________________ (len_plasma_debye_electron_profile451)_ 7.09765279206840216e-05 +Plasma_electron_Debye_length_at_point_452________________________________ (len_plasma_debye_electron_profile452)_ 7.08459039248391444e-05 +Plasma_electron_Debye_length_at_point_453________________________________ (len_plasma_debye_electron_profile453)_ 7.07195256735669841e-05 +Plasma_electron_Debye_length_at_point_454________________________________ (len_plasma_debye_electron_profile454)_ 7.05976589979987504e-05 +Plasma_electron_Debye_length_at_point_455________________________________ (len_plasma_debye_electron_profile455)_ 7.04805923012405140e-05 +Plasma_electron_Debye_length_at_point_456________________________________ (len_plasma_debye_electron_profile456)_ 7.03686399849964497e-05 +Plasma_electron_Debye_length_at_point_457________________________________ (len_plasma_debye_electron_profile457)_ 7.02621467076721328e-05 +Plasma_electron_Debye_length_at_point_458________________________________ (len_plasma_debye_electron_profile458)_ 7.01614927586346988e-05 +Plasma_electron_Debye_length_at_point_459________________________________ (len_plasma_debye_electron_profile459)_ 7.00671009627597372e-05 +Plasma_electron_Debye_length_at_point_460________________________________ (len_plasma_debye_electron_profile460)_ 6.99794457348147555e-05 +Plasma_electron_Debye_length_at_point_461________________________________ (len_plasma_debye_electron_profile461)_ 6.98990652412500950e-05 +Plasma_electron_Debye_length_at_point_462________________________________ (len_plasma_debye_electron_profile462)_ 6.98265782074655820e-05 +Plasma_electron_Debye_length_at_point_463________________________________ (len_plasma_debye_electron_profile463)_ 6.97627079577592299e-05 +Plasma_electron_Debye_length_at_point_464________________________________ (len_plasma_debye_electron_profile464)_ 6.97083182930304863e-05 +Plasma_electron_Debye_length_at_point_465________________________________ (len_plasma_debye_electron_profile465)_ 6.96644700063507361e-05 +Plasma_electron_Debye_length_at_point_466________________________________ (len_plasma_debye_electron_profile466)_ 6.96325164803026042e-05 +Plasma_electron_Debye_length_at_point_467________________________________ (len_plasma_debye_electron_profile467)_ 6.96142822175492717e-05 +Plasma_electron_Debye_length_at_point_468________________________________ (len_plasma_debye_electron_profile468)_ 6.96124498475658243e-05 +Plasma_electron_Debye_length_at_point_469________________________________ (len_plasma_debye_electron_profile469)_ 6.96316483943264957e-05 +Plasma_electron_Debye_length_at_point_470________________________________ (len_plasma_debye_electron_profile470)_ 6.96851169104052064e-05 +Plasma_electron_Debye_length_at_point_471________________________________ (len_plasma_debye_electron_profile471)_ 6.90105676787827976e-05 +Plasma_electron_Debye_length_at_point_472________________________________ (len_plasma_debye_electron_profile472)_ 6.83100333787088561e-05 +Plasma_electron_Debye_length_at_point_473________________________________ (len_plasma_debye_electron_profile473)_ 6.75818669471542994e-05 +Plasma_electron_Debye_length_at_point_474________________________________ (len_plasma_debye_electron_profile474)_ 6.68242672819070114e-05 +Plasma_electron_Debye_length_at_point_475________________________________ (len_plasma_debye_electron_profile475)_ 6.60352592699498431e-05 +Plasma_electron_Debye_length_at_point_476________________________________ (len_plasma_debye_electron_profile476)_ 6.52126703839077946e-05 +Plasma_electron_Debye_length_at_point_477________________________________ (len_plasma_debye_electron_profile477)_ 6.43541030925840173e-05 +Plasma_electron_Debye_length_at_point_478________________________________ (len_plasma_debye_electron_profile478)_ 6.34569021259134781e-05 +Plasma_electron_Debye_length_at_point_479________________________________ (len_plasma_debye_electron_profile479)_ 6.25181153608718156e-05 +Plasma_electron_Debye_length_at_point_480________________________________ (len_plasma_debye_electron_profile480)_ 6.15344467261008784e-05 +Plasma_electron_Debye_length_at_point_481________________________________ (len_plasma_debye_electron_profile481)_ 6.05021990198683797e-05 +Plasma_electron_Debye_length_at_point_482________________________________ (len_plasma_debye_electron_profile482)_ 5.94172038398279554e-05 +Plasma_electron_Debye_length_at_point_483________________________________ (len_plasma_debye_electron_profile483)_ 5.82747348449737349e-05 +Plasma_electron_Debye_length_at_point_484________________________________ (len_plasma_debye_electron_profile484)_ 5.70693991726911969e-05 +Plasma_electron_Debye_length_at_point_485________________________________ (len_plasma_debye_electron_profile485)_ 5.57949997995827926e-05 +Plasma_electron_Debye_length_at_point_486________________________________ (len_plasma_debye_electron_profile486)_ 5.44443586119829122e-05 +Plasma_electron_Debye_length_at_point_487________________________________ (len_plasma_debye_electron_profile487)_ 5.30090853557771747e-05 +Plasma_electron_Debye_length_at_point_488________________________________ (len_plasma_debye_electron_profile488)_ 5.14792704629713952e-05 +Plasma_electron_Debye_length_at_point_489________________________________ (len_plasma_debye_electron_profile489)_ 4.98430682279795442e-05 +Plasma_electron_Debye_length_at_point_490________________________________ (len_plasma_debye_electron_profile490)_ 4.80861176579786223e-05 +Plasma_electron_Debye_length_at_point_491________________________________ (len_plasma_debye_electron_profile491)_ 4.61907152505776475e-05 +Plasma_electron_Debye_length_at_point_492________________________________ (len_plasma_debye_electron_profile492)_ 4.41345941947911296e-05 +Plasma_electron_Debye_length_at_point_493________________________________ (len_plasma_debye_electron_profile493)_ 4.18890505664594448e-05 +Plasma_electron_Debye_length_at_point_494________________________________ (len_plasma_debye_electron_profile494)_ 3.94159253648557201e-05 +Plasma_electron_Debye_length_at_point_495________________________________ (len_plasma_debye_electron_profile495)_ 3.66624406358429807e-05 +Plasma_electron_Debye_length_at_point_496________________________________ (len_plasma_debye_electron_profile496)_ 3.35516421126149216e-05 +Plasma_electron_Debye_length_at_point_497________________________________ (len_plasma_debye_electron_profile497)_ 2.99627207755577474e-05 +Plasma_electron_Debye_length_at_point_498________________________________ (len_plasma_debye_electron_profile498)_ 2.56837165368338083e-05 +Plasma_electron_Debye_length_at_point_499________________________________ (len_plasma_debye_electron_profile499)_ 2.02653264561351484e-05 +Plasma_electron_Debye_length_at_point_500________________________________ (len_plasma_debye_electron_profile500)_ 1.22513274842796539e-05 +Volume_averaged_deuteron_isotropic_toroidal_Larmor_radius_(m)____________ (radius_plasma_deuteron_toroidal_larmor_isotropic_vol_avg)_ 6.49123362592319859e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_0_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile0)_ 3.87480770795317923e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_1_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1)_ 6.49027028573659326e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_2_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile2)_ 8.32713995142581411e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_3_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile3)_ 9.83195050045687722e-04 +Plasma_deuteron_isotropic_Larmor_radius_at_point_4_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile4)_ 1.11400961782584821e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_5_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile5)_ 1.23144183023823277e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_6_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile6)_ 1.33901784261400577e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_7_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile7)_ 1.43895046818618777e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_8_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile8)_ 1.53273598573964282e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_9_______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile9)_ 1.62144190654043489e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_10______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile10)_ 1.70586131625685570e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_11______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile11)_ 1.78660240190157038e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_12______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile12)_ 1.86414361302889714e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_13______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile13)_ 1.93886932273926540e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_14______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile14)_ 2.01109380253629115e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_15______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile15)_ 2.08107787543565558e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_16______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile16)_ 2.14904080728840589e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_17______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile17)_ 2.21516900108609163e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_18______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile18)_ 2.27962248585723446e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_19______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile19)_ 2.34253984647987039e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_20______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile20)_ 2.40404203067931576e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_21______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile21)_ 2.46423532841301071e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_22______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile22)_ 2.52321373573770975e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_23______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile23)_ 2.58106084972807787e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_24______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile24)_ 2.63785140460683293e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_25______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile25)_ 2.69365252823531741e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_26______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile26)_ 2.74852477838355034e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_27______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile27)_ 2.80252300525187350e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_28______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile28)_ 2.85569707297102585e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_29______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile29)_ 2.90809246901492079e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_30______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile30)_ 2.95975082068686496e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_31______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile31)_ 2.96460353910183837e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_32______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile32)_ 2.97090096988885614e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_33______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile33)_ 2.97808728539111084e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_34______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile34)_ 2.98597044738840639e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_35______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile35)_ 2.99444018127197282e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_36______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile36)_ 3.00342208242399379e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_37______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile37)_ 3.01286134179145704e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_38______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile38)_ 3.02271525900886170e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_39______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile39)_ 3.03294924400917014e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_40______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile40)_ 3.04353445982039538e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_41______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile41)_ 3.05444633119187356e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_42______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile42)_ 3.06566354714672001e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_43______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile43)_ 3.07716736675236937e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_44______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile44)_ 3.08894111812528602e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_45______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile45)_ 3.10096982578090315e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_46______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile46)_ 3.11323992894505745e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_47______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile47)_ 3.12573906187300693e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_48______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile48)_ 3.13845588062218548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_49______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile49)_ 3.15137992476939533e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_50______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile50)_ 3.16450150432608665e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_51______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile51)_ 3.17781160688897658e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_52______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile52)_ 3.19130182092871488e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_53______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile53)_ 3.20496427001033639e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_54______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile54)_ 3.21879155897765662e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_55______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile55)_ 3.23277672625141808e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_56______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile56)_ 3.24691320335322676e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_57______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile57)_ 3.26119478056064241e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_58______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile58)_ 3.27561557554979874e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_59______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile59)_ 3.29017000704886521e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_60______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile60)_ 3.30485277103906424e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_61______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile61)_ 3.31965881960038199e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_62______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile62)_ 3.33458334259723651e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_63______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile63)_ 3.34962175057137903e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_64______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile64)_ 3.36476966000008896e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_65______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile65)_ 3.38002287908696457e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_66______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile66)_ 3.39537739665619204e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_67______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile67)_ 3.41082936951695890e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_68______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile68)_ 3.42637511367306418e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_69______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile69)_ 3.44201109407665014e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_70______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile70)_ 3.45773391632745418e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_71______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile71)_ 3.47354031930966574e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_72______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile72)_ 3.48942716708382488e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_73______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile73)_ 3.50539144290406982e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_74______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile74)_ 3.52143024286964918e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_75______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile75)_ 3.53754076991244460e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_76______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile76)_ 3.55372032885763276e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_77______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile77)_ 3.56996632124671190e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_78______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile78)_ 3.58627624051386209e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_79______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile79)_ 3.60264766814393129e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_80______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile80)_ 3.61907826893297004e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_81______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile81)_ 3.63556578795836164e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_82______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile82)_ 3.65210804622280926e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_83______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile83)_ 3.66870293782265832e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_84______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile84)_ 3.68534842659576367e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_85______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile85)_ 3.70204254318003047e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_86______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile86)_ 3.71878338193136395e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_87______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile87)_ 3.73556909889171448e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_88______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile88)_ 3.75239790837306793e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_89______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile89)_ 3.76926808145445743e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_90______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile90)_ 3.78617794294907077e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_91______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile91)_ 3.80312586983012554e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_92______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile92)_ 3.82011028899172708e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_93______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile93)_ 3.83712967511192719e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_94______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile94)_ 3.85418254917501346e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_95______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile95)_ 3.87126747635889185e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_96______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile96)_ 3.88838306462741890e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_97______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile97)_ 3.90552796295602850e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_98______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile98)_ 3.92270086006235499e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_99______________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile99)_ 3.93990048245936291e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_100_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile100)_ 3.95712559382679560e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_101_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile101)_ 3.97437499274614064e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_102_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile102)_ 3.99164751227577309e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_103_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile103)_ 4.00894201834594167e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_104_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile104)_ 4.02625740869785517e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_105_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile105)_ 4.04359261153162518e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_106_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile106)_ 4.06094658478633672e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_107_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile107)_ 4.07831831498486810e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_108_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile108)_ 4.09570681618978520e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_109_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile109)_ 4.11311112911532436e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_110_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile110)_ 4.13053032036956192e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_111_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile111)_ 4.14796348122008825e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_112_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile112)_ 4.16540972714396669e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_113_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile113)_ 4.18286819696863602e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_114_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile114)_ 4.20033805193384662e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_115_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile115)_ 4.21781847497545558e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_116_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile116)_ 4.23530867025037443e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_117_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile117)_ 4.25280786205053940e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_118_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile118)_ 4.27031529480843917e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_119_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile119)_ 4.28783023152939837e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_120_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile120)_ 4.30535195415947865e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_121_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile121)_ 4.32287976222335384e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_122_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile122)_ 4.34041297281952555e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_123_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile123)_ 4.35795091987084462e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_124_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile124)_ 4.37549295325132242e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_125_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile125)_ 4.39303843887169174e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_126_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile126)_ 4.41058675793423900e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_127_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile127)_ 4.42813730640078361e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_128_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile128)_ 4.44568949451390645e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_129_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile129)_ 4.46324274666074026e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_130_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile130)_ 4.48079650046063430e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_131_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile131)_ 4.49835020693272521e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_132_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile132)_ 4.51590332948765237e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_133_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile133)_ 4.53345534417272204e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_134_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile134)_ 4.55100573874515912e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_135_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile135)_ 4.56855401286020667e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_136_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile136)_ 4.58609967711489860e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_137_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile137)_ 4.60364225324616950e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_138_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile138)_ 4.62118127353956885e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_139_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile139)_ 4.63871628066182557e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_140_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile140)_ 4.65624682719145699e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_141_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile141)_ 4.67377247559172624e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_142_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile142)_ 4.69129279757697030e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_143_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile143)_ 4.70880737411649188e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_144_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile144)_ 4.72631579518003383e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_145_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile145)_ 4.74381765920670832e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_146_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile146)_ 4.76131257324954697e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_147_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile147)_ 4.77880015245265785e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_148_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile148)_ 4.79628001985764503e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_149_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile149)_ 4.81375180629911581e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_150_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile150)_ 4.83121515017413423e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_151_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile151)_ 4.84866969698053395e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_152_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile152)_ 4.86611509947946531e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_153_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile153)_ 4.88355101741049392e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_154_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile154)_ 4.90097711693483762e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_155_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile155)_ 4.91839307120900231e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_156_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile156)_ 4.93579855921836425e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_157_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile157)_ 4.95319326639823490e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_158_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile158)_ 4.97057688430054857e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_159_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile159)_ 4.98794911007565712e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_160_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile160)_ 5.00530964682173451e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_161_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile161)_ 5.02265820288290421e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_162_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile162)_ 5.03999449218126439e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_163_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile163)_ 5.05731823398206971e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_164_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile164)_ 5.07462915243264787e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_165_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile165)_ 5.09192697671080260e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_166_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile166)_ 5.10921144096454331e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_167_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile167)_ 5.12648228381724479e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_168_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile168)_ 5.14373924889397708e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_169_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile169)_ 5.16098208377085456e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_170_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile170)_ 5.17821054067058549e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_171_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile171)_ 5.19542437610007179e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_172_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile172)_ 5.21262335051283533e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_173_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile173)_ 5.22980722850977832e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_174_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile174)_ 5.24697577858711673e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_175_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile175)_ 5.26412877301027718e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_176_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile176)_ 5.28126598773046713e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_177_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile177)_ 5.29838720254778572e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_178_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile178)_ 5.31549220043703481e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_179_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile179)_ 5.33258076814305954e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_180_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile180)_ 5.34965269544930393e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_181_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile181)_ 5.36670777575310766e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_182_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile182)_ 5.38374580533866262e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_183_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile183)_ 5.40076658377050631e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_184_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile184)_ 5.41776991351575459e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_185_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile185)_ 5.43475560011519396e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_186_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile186)_ 5.45172345184936381e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_187_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile187)_ 5.46867327991122035e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_188_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile188)_ 5.48560489827622493e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_189_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile189)_ 5.50251812327284644e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_190_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile190)_ 5.51941277423957915e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_191_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile191)_ 5.53628867281560130e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_192_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile192)_ 5.55314564297737078e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_193_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile193)_ 5.56998351155447383e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_194_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile194)_ 5.58680210730606776e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_195_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile195)_ 5.60360126147864488e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_196_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile196)_ 5.62038080738523540e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_197_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile197)_ 5.63714058080257065e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_198_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile198)_ 5.65388041939356763e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_199_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile199)_ 5.67060016298643037e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_200_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile200)_ 5.68729965341663139e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_201_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile201)_ 5.70397873446923474e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_202_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile202)_ 5.72063725190087059e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_203_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile203)_ 5.73727505334357263e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_204_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile204)_ 5.75389198828837357e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_205_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile205)_ 5.77048790789232938e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_206_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile206)_ 5.78706266521923293e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_207_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile207)_ 5.80361611487084216e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_208_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile208)_ 5.82014811336540976e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_209_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile209)_ 5.83665851845716500e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_210_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile210)_ 5.85314718984845678e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_211_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile211)_ 5.86961398870633651e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_212_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile212)_ 5.88605877747519577e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_213_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile213)_ 5.90248142039212411e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_214_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile214)_ 5.91888178283159639e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_215_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile215)_ 5.93525973184028631e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_216_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile216)_ 5.95161513569786305e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_217_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile217)_ 5.96794786394631502e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_218_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile218)_ 5.98425778761292604e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_219_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile219)_ 6.00054477887090095e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_220_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile220)_ 6.01680871110822114e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_221_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile221)_ 6.03304945909280584e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_222_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile222)_ 6.04926689863528877e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_223_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile223)_ 6.06546090665872895e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_224_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile224)_ 6.08163136136425069e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_225_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile225)_ 6.09777814193436692e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_226_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile226)_ 6.11390112871846615e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_227_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile227)_ 6.13000020312950977e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_228_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile228)_ 6.14607524734974570e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_229_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile229)_ 6.16212614493848523e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_230_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile230)_ 6.17815278013533406e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_231_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile231)_ 6.19415503833365723e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_232_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile232)_ 6.21013280567296252e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_233_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile233)_ 6.22608596937784201e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_234_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile234)_ 6.24201441746606144e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_235_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile235)_ 6.25791803885834223e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_236_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile236)_ 6.27379672324030781e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_237_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile237)_ 6.28965036115338751e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_238_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile238)_ 6.30547884408533092e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_239_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile239)_ 6.32128206404804216e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_240_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile240)_ 6.33705991410564006e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_241_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile241)_ 6.35281228778230948e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_242_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile242)_ 6.36853907964665678e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_243_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile243)_ 6.38424018468301650e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_244_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile244)_ 6.39991549878070245e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_245_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile245)_ 6.41556491839028516e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_246_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile246)_ 6.43118834070982234e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_247_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile247)_ 6.44678566343674826e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_248_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile248)_ 6.46235678512367163e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_249_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile249)_ 6.47790160477988274e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_250_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile250)_ 6.49342002213287774e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_251_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile251)_ 6.50891193726879473e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_252_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile252)_ 6.52437725113805180e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_253_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile253)_ 6.53981586498957740e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_254_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile254)_ 6.55522768091354284e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_255_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile255)_ 6.57061260122047876e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_256_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile256)_ 6.58597052887130701e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_257_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile257)_ 6.60130136749407289e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_258_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile258)_ 6.61660502089610279e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_259_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile259)_ 6.63188139354939886e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_260_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile260)_ 6.64713039051416984e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_261_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile261)_ 6.66235191695248741e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_262_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile262)_ 6.67754587887393978e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_263_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile263)_ 6.69271218246295010e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_264_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile264)_ 6.70785073446966348e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_265_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile265)_ 6.72296144181819613e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_266_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile266)_ 6.73804421231300257e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_267_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile267)_ 6.75309895348524553e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_268_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile268)_ 6.76812557394937397e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_269_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile269)_ 6.78312398223189939e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_270_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile270)_ 6.79809408727298850e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_271_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile271)_ 6.81303579855571141e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_272_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile272)_ 6.82794902579048329e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_273_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile273)_ 6.84283367900778532e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_274_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile274)_ 6.85768966865058123e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_275_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile275)_ 6.87251690531528753e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_276_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile276)_ 6.88731530006626066e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_277_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile277)_ 6.90208476430620183e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_278_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile278)_ 6.91682520955477689e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_279_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile279)_ 6.93153654774433282e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_280_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile280)_ 6.94621869109073985e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_281_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile281)_ 6.96087155205682168e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_282_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile282)_ 6.97549504320547561e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_283_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile283)_ 6.99008907775240489e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_284_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile284)_ 7.00465356873798510e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_285_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile285)_ 7.01918842967207569e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_286_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile286)_ 7.03369357429510511e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_287_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile287)_ 7.04816891657860344e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_288_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile288)_ 7.06261437061562330e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_289_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile289)_ 7.07702985074998726e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_290_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile290)_ 7.09141527163180060e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_291_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile291)_ 7.10577054796133079e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_292_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile292)_ 7.12009559491131368e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_293_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile293)_ 7.13439032739471030e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_294_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile294)_ 7.14865466107294199e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_295_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile295)_ 7.16288851118475085e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_296_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile296)_ 7.17709179368186938e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_297_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile297)_ 7.19126442442454168e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_298_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile298)_ 7.20540631929253526e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_299_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile299)_ 7.21951739471581987e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_300_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile300)_ 7.23359756692628069e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_301_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile301)_ 7.24764675252494769e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_302_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile302)_ 7.26166486806297494e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_303_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile303)_ 7.27565183046227984e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_304_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile304)_ 7.28960755659687366e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_305_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile305)_ 7.30353196356745872e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_306_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile306)_ 7.31742496844725501e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_307_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile307)_ 7.33128648875659272e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_308_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile308)_ 7.34511644168083910e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_309_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile309)_ 7.35891474494539122e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_310_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile310)_ 7.37268131608857617e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_311_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile311)_ 7.38641607284494951e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_312_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile312)_ 7.40011893314619900e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_313_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile313)_ 7.41378981488588582e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_314_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile314)_ 7.42742863615682841e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_315_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile315)_ 7.44103531499783720e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_316_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile316)_ 7.45460976966730044e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_317_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile317)_ 7.46815191844445517e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_318_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile318)_ 7.48166167970317451e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_319_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile319)_ 7.49513897184049538e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_320_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile320)_ 7.50858371342286342e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_321_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile321)_ 7.52199582296962134e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_322_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile322)_ 7.53537521911735748e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_323_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile323)_ 7.54872182060288208e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_324_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile324)_ 7.56203554608318122e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_325_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile325)_ 7.57531631448076469e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_326_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile326)_ 7.58856404460440948e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_327_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile327)_ 7.60177865531337822e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_328_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile328)_ 7.61496006564521717e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_329_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile329)_ 7.62810819445498747e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_330_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile330)_ 7.64122296083259451e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_331_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile331)_ 7.65430428385061642e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_332_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile332)_ 7.66735208260165262e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_333_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile333)_ 7.68036627614527602e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_334_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile334)_ 7.69334678361766316e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_335_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile335)_ 7.70629352432304193e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_336_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile336)_ 7.71920641728310840e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_337_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile337)_ 7.73208538178026244e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_338_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile338)_ 7.74493033706964012e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_339_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile339)_ 7.75774120236222275e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_340_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile340)_ 7.77051789682603727e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_341_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile341)_ 7.78326033987612916e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_342_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile342)_ 7.79596845067019768e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_343_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile343)_ 7.80864214843473257e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_344_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile344)_ 7.82128135255630644e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_345_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile345)_ 7.83388598220375286e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_346_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile346)_ 7.84645595674429534e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_347_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile347)_ 7.85899119525758881e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_348_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile348)_ 7.87149161727637020e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_349_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile349)_ 7.88395714170539962e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_350_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile350)_ 7.89638768810303933e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_351_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile351)_ 7.90878317545606543e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_352_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile352)_ 7.92114352304632702e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_353_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile353)_ 7.93346865012724105e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_354_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile354)_ 7.94575847574462667e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_355_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile355)_ 7.95801291911633381e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_356_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile356)_ 7.97023189938094422e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_357_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile357)_ 7.98241533552676054e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_358_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile358)_ 7.99456314675330883e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_359_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile359)_ 8.00667525202182657e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_360_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile360)_ 8.01875157036268174e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_361_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile361)_ 8.03079202080431327e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_362_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile362)_ 8.04279652219407233e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_363_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile363)_ 8.05476499352357489e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_364_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile364)_ 8.06669735365943968e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_365_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile365)_ 8.07859352130826242e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_366_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile366)_ 8.09045341546804110e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_367_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile367)_ 8.10227695474451635e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_368_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile368)_ 8.11406405778455214e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_369_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile369)_ 8.12581464347530980e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_370_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile370)_ 8.13752863018847410e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_371_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile371)_ 8.14920593668208744e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_372_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile372)_ 8.16084648130871275e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_373_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile373)_ 8.17245018264699946e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_374_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile374)_ 8.18401695907019014e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_375_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile375)_ 8.19554672892719091e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_376_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile376)_ 8.20703941043538117e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_377_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile377)_ 8.21849492200590719e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_378_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile378)_ 8.22991318175797862e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_379_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile379)_ 8.24129410773600038e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_380_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile380)_ 8.25263761809069858e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_381_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile381)_ 8.26394363084567880e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_382_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile382)_ 8.27521206380810864e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_383_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile383)_ 8.28644283505635716e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_384_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile384)_ 8.29763586212946963e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_385_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile385)_ 8.30879106294755976e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_386_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile386)_ 8.31990835518155863e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_387_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile387)_ 8.33098765643430945e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_388_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile388)_ 8.34202888407901792e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_389_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile389)_ 8.35303195569294527e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_390_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile390)_ 8.36399678869746525e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_391_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile391)_ 8.37492330039486983e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_392_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile392)_ 8.38581140789689157e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_393_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile393)_ 8.39666102845031820e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_394_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile394)_ 8.40747207907677034e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_395_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile395)_ 8.41824447691642309e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_396_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile396)_ 8.42897813870509445e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_397_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile397)_ 8.43967298137081497e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_398_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile398)_ 8.45032892161918549e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_399_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile399)_ 8.46094587618693821e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_400_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile400)_ 8.47152376164389369e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_401_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile401)_ 8.48206249439353681e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_402_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile402)_ 8.49256199092673393e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_403_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile403)_ 8.50302216758743422e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_404_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile404)_ 8.51344294062750771e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_405_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile405)_ 8.52382422609879870e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_406_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile406)_ 8.53416594010697818e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_407_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile407)_ 8.54446799859506952e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_408_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile408)_ 8.55473031752500106e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_409_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile409)_ 8.56495281260670135e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_410_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile410)_ 8.57513539947959459e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_411_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile411)_ 8.58527799383997092e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_412_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile412)_ 8.59538051104308601e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_413_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile413)_ 8.60544286655650151e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_414_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile414)_ 8.61546497576142802e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_415_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile415)_ 8.62544675371753645e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_416_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile416)_ 8.63538811558031867e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_417_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile417)_ 8.64528897632971423e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_418_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile418)_ 8.65514925087933033e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_419_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile419)_ 8.66496885398622754e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_420_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile420)_ 8.67474770045100103e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_421_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile421)_ 8.68448570471886359e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_422_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile422)_ 8.69418278133390898e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_423_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile423)_ 8.70383884464904709e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_424_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile424)_ 8.71345380897171375e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_425_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile425)_ 8.72302758852798975e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_426_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile426)_ 8.73256009713560544e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_427_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile427)_ 8.74205124900445489e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_428_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile428)_ 8.75150095780947816e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_429_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile429)_ 8.76090913729114448e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_430_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile430)_ 8.77027570109218703e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_431_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile431)_ 8.77960056270327312e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_432_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile432)_ 8.78888363555439117e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_433_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile433)_ 8.79812483281467578e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_434_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile434)_ 8.80732406766603429e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_435_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile435)_ 8.81648125326715132e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_436_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile436)_ 8.82559630238889149e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_437_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile437)_ 8.83466912796180767e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_438_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile438)_ 8.84369964260201154e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_439_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile439)_ 8.85268775899473830e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_440_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile440)_ 8.86163338941967776e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_441_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile441)_ 8.87053644635407354e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_442_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile442)_ 8.87939684192473599e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_443_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile443)_ 8.88821448825547963e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_444_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile444)_ 8.89698929733939887e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_445_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile445)_ 8.90572118109393164e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_446_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile446)_ 8.91441005110461121e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_447_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile447)_ 8.92305581900970646e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_448_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile448)_ 8.93165839631732301e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_449_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile449)_ 8.94021769442387287e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_450_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile450)_ 8.94873362450407037e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_451_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile451)_ 8.95720609758428842e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_452_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile452)_ 8.96563502487321244e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_453_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile453)_ 8.97402031689887268e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_454_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile454)_ 8.98236188466574638e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_455_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile455)_ 8.99065963853416805e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_456_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile456)_ 8.99891348915766824e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_457_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile457)_ 9.00712334672915810e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_458_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile458)_ 9.01528912147749398e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_459_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile459)_ 9.02341072350199176e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_460_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile460)_ 9.03148806266183130e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_461_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile461)_ 9.03952104887086744e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_462_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile462)_ 9.04750959165518190e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_463_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile463)_ 9.05545360065089684e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_464_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile464)_ 9.06335298517985111e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_465_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile465)_ 9.07120765454479984e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_466_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile466)_ 9.07901751793717231e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_467_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile467)_ 9.08678248421501862e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_468_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile468)_ 9.09450246232813841e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_469_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile469)_ 9.10217736083704723e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_470_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile470)_ 9.10980708850511051e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_471_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile471)_ 9.11739155365044913e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_472_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile472)_ 9.12493066466433557e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_473_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile473)_ 9.13242432958474848e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_474_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile474)_ 9.13987245648555276e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_475_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile475)_ 9.14727495321670733e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_476_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile476)_ 9.15463172747816266e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_477_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile477)_ 9.16194268687544992e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_478_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile478)_ 9.16920773897540037e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_479_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile479)_ 9.17642679093380251e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_480_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile480)_ 9.18359974990428339e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_481_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile481)_ 9.19072652294523548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_482_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile482)_ 9.19780701687046912e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_483_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile483)_ 9.20484113841658902e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_484_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile484)_ 9.21182879420558674e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_485_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile485)_ 9.21876989059511667e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_486_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile486)_ 9.22566433388349698e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_487_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile487)_ 9.23251203021608659e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_488_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile488)_ 9.23931288551008492e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_489_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile489)_ 9.24606680569738451e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_490_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile490)_ 9.25277369631241457e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_491_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile491)_ 9.25943346295982420e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_492_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile492)_ 9.26604601097697975e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_493_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile493)_ 9.27261124565855605e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_494_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile494)_ 9.27912907210611503e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_495_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile495)_ 9.28559939507717265e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_496_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile496)_ 9.29202211945443987e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_497_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile497)_ 9.29839714981330404e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_498_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile498)_ 9.30472439055271376e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_499_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile499)_ 9.31100374606429367e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_500_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile500)_ 9.31723512044937800e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_501_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile501)_ 9.32344247229511397e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_502_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile502)_ 9.32962575355642150e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_503_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile503)_ 9.33576082948051229e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_504_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile504)_ 9.34184760378439609e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_505_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile505)_ 9.34788597989204273e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_506_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile506)_ 9.35387586121744739e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_507_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile507)_ 9.35981715099399453e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_508_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile508)_ 9.36570975214106975e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_509_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile509)_ 9.37155356769942167e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_510_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile510)_ 9.37734850035676533e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_511_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile511)_ 9.38309445259850709e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_512_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile512)_ 9.38879132685915656e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_513_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile513)_ 9.39443902529366916e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_514_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile514)_ 9.40003745011920057e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_515_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile515)_ 9.40558650313879155e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_516_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile516)_ 9.41108608615934782e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_517_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile517)_ 9.41653610074348960e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_518_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile518)_ 9.42193644828490107e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_519_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile519)_ 9.42728703010324229e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_520_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile520)_ 9.43258774723326927e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_521_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile521)_ 9.43783850057685475e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_522_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile522)_ 9.44303919094066115e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_523_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile523)_ 9.44818971886309152e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_524_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile524)_ 9.45328998476661561e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_525_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile525)_ 9.45833988905326987e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_526_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile526)_ 9.46333933168151328e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_527_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile527)_ 9.46828821254910510e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_528_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile528)_ 9.47318643143492227e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_529_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile529)_ 9.47803388794054950e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_530_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile530)_ 9.48283048141225320e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_531_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile531)_ 9.48757611120994333e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_532_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile532)_ 9.49227067630149454e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_533_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile533)_ 9.49691407570549262e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_534_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile534)_ 9.50150620794962784e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_535_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile535)_ 9.50604697174608181e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_536_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile536)_ 9.51053626537200561e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_537_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile537)_ 9.51497398717174661e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_538_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile538)_ 9.51936003511046590e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_539_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile539)_ 9.52369430700545500e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_540_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile540)_ 9.52797670062244077e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_541_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile541)_ 9.53220711336382094e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_542_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile542)_ 9.53638544271477769e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_543_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile543)_ 9.54051158571710481e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_544_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile544)_ 9.54458543943522038e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_545_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile545)_ 9.54860690064362160e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_546_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile546)_ 9.55257586594255616e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_547_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile547)_ 9.55649223193304025e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_548_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile548)_ 9.56035589468799858e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_549_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile549)_ 9.56416675055297809e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_550_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile550)_ 9.56792469514685523e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_551_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile551)_ 9.57162962455569873e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_552_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile552)_ 9.57528143409674092e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_553_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile553)_ 9.57888001923886713e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_554_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile554)_ 9.58242527524868354e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_555_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile555)_ 9.58591709711041975e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_556_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile556)_ 9.58935537964263757e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_557_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile557)_ 9.59274001747735874e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_558_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile558)_ 9.59607090525643573e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_559_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile559)_ 9.59934793721593099e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_560_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile560)_ 9.60257100746096312e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_561_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile561)_ 9.60574000990529857e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_562_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile562)_ 9.60885483840887185e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_563_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile563)_ 9.61191538639996276e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_564_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile564)_ 9.61492154746886735e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_565_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile565)_ 9.61787321471190351e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_566_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile566)_ 9.62077028124625790e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_567_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile567)_ 9.62361263979117851e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_568_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile568)_ 9.62640018318425619e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_569_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile569)_ 9.62913280378255125e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_570_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile570)_ 9.63181039385952766e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_571_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile571)_ 9.63443284564425087e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_572_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile572)_ 9.63700005102026067e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_573_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile573)_ 9.63951190174396066e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_574_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile574)_ 9.64196828934314916e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_575_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile575)_ 9.64436910517569267e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_576_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile576)_ 9.64671424060914093e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_577_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile577)_ 9.64900358635604333e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_578_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile578)_ 9.65123703349778268e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_579_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile579)_ 9.65341447259843687e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_580_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile580)_ 9.65553579406506698e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_581_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile581)_ 9.65760088818682846e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_582_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile582)_ 9.65960964497196775e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_583_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile583)_ 9.66156195446995179e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_584_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile584)_ 9.66345770626417244e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_585_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile585)_ 9.66529678991558810e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_586_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile586)_ 9.66707909473851074e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_587_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile587)_ 9.66880450990045652e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_588_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile588)_ 9.67047292429864223e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_589_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile589)_ 9.67208422686377002e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_590_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile590)_ 9.67363830609022264e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_591_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile591)_ 9.67513505029873530e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_592_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile592)_ 9.67657434785991130e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_593_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile593)_ 9.67795608668193912e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_594_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile594)_ 9.67928015465847891e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_595_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile595)_ 9.68054643952433527e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_596_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile596)_ 9.68175482864849606e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_597_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile597)_ 9.68290520934004043e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_598_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile598)_ 9.68399746864124361e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_599_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile599)_ 9.68503149357289803e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_600_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile600)_ 9.68600717084454506e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_601_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile601)_ 9.68692438697610347e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_602_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile602)_ 9.68778302823404373e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_603_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile603)_ 9.68858298089862562e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_604_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile604)_ 9.68932413097293305e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_605_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile605)_ 9.69000636418066233e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_606_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile606)_ 9.69062956619247233e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_607_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile607)_ 9.69119362233365235e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_608_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile608)_ 9.69169841806066280e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_609_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile609)_ 9.69214383827278828e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_610_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile610)_ 9.69252976791388880e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_611_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile611)_ 9.69285609157463299e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_612_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile612)_ 9.69312269390842918e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_613_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile613)_ 9.69332945925380392e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_614_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile614)_ 9.69347627171571191e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_615_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile615)_ 9.69356301512140466e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_616_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile616)_ 9.69358957343881972e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_617_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile617)_ 9.69355583027110661e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_618_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile618)_ 9.69346166904352935e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_619_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile619)_ 9.69330697279041122e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_620_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile620)_ 9.69309162489207128e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_621_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile621)_ 9.69281550799645786e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_622_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile622)_ 9.69247850496777683e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_623_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile623)_ 9.69208049831396523e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_624_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile624)_ 9.69162137028998540e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_625_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile625)_ 9.69110100317206215e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_626_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile626)_ 9.69051927904399611e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_627_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile627)_ 9.68987607953910625e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_628_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile628)_ 9.68917128641336688e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_629_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile629)_ 9.68840478116038059e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_630_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile630)_ 9.68757644513737817e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_631_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile631)_ 9.68668615934907898e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_632_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile632)_ 9.68573380495998601e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_633_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile633)_ 9.68471926254197042e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_634_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile634)_ 9.68364241301702261e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_635_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile635)_ 9.68250313658062384e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_636_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile636)_ 9.68130131360294723e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_637_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile637)_ 9.68003682439132727e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_638_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile638)_ 9.67870954866945771e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_639_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile639)_ 9.67731936639639259e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_640_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile640)_ 9.67586615722458056e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_641_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile641)_ 9.67434980054042784e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_642_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile642)_ 9.67277017578813299e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_643_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile643)_ 9.67112716207685005e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_644_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile644)_ 9.66942063839581860e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_645_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile645)_ 9.66765048370009719e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_646_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile646)_ 9.66581657653731684e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_647_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile647)_ 9.66391879559199037e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_648_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile648)_ 9.66195701924654586e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_649_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile649)_ 9.65993112566625352e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_650_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile650)_ 9.65784099310500362e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_651_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile651)_ 9.65568649944206249e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_652_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile652)_ 9.65346752239927899e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_653_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile653)_ 9.65118393993707850e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_654_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile654)_ 9.64883562919236458e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_655_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile655)_ 9.64642246797962032e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_656_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile656)_ 9.64394433321814210e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_657_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile657)_ 9.64140110225900245e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_658_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile658)_ 9.63879265197412419e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_659_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile659)_ 9.63611885935408002e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_660_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile660)_ 9.63337960099422408e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_661_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile661)_ 9.63057475356068372e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_662_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile662)_ 9.62770419367789225e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_663_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile663)_ 9.62476779752343727e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_664_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile664)_ 9.62176544145301738e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_665_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile665)_ 9.61869700164073339e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_666_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile666)_ 9.61556235407672912e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_667_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile667)_ 9.61236137458746330e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_668_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile668)_ 9.60909393919525193e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_669_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile669)_ 9.60575992343943100e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_670_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile670)_ 9.60235920293872267e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_671_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile671)_ 9.59889165327731074e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_672_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile672)_ 9.59535714986706027e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_673_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile673)_ 9.59175556801361399e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_674_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile674)_ 9.58808678286890599e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_675_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile675)_ 9.58435066974905152e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_676_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile676)_ 9.58054710360802843e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_677_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile677)_ 9.57667595949251299e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_678_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile678)_ 9.57273711238084725e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_679_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile679)_ 9.56873043697442464e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_680_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile680)_ 9.56465580817846689e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_681_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile681)_ 9.56051310066408783e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_682_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile682)_ 9.55630218909663508e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_683_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile683)_ 9.55202294815780430e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_684_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile684)_ 9.54767525233604468e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_685_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile685)_ 9.54325897620278592e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_686_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile686)_ 9.53877399422595196e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_687_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile687)_ 9.53422018086138613e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_688_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile688)_ 9.52959741045834169e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_689_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile689)_ 9.52490555751491115e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_690_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile690)_ 9.52014449632683502e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_691_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile691)_ 9.51531410131340599e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_692_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile692)_ 9.51041424671187144e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_693_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile693)_ 9.50544480688108803e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_694_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile694)_ 9.50040565630154779e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_695_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile695)_ 9.49529666907922634e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_696_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile696)_ 9.49011771988819350e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_697_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile697)_ 9.48486868283639553e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_698_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile698)_ 9.47954943248114669e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_699_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile699)_ 9.47415984321339950e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_700_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile700)_ 9.46869978958904401e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_701_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile701)_ 9.46316914597120085e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_702_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile702)_ 9.45756778707772597e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_703_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile703)_ 9.45189558743224356e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_704_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile704)_ 9.44615242191359714e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_705_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile705)_ 9.44033816501254480e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_706_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile706)_ 9.43445269181510116e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_707_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile707)_ 9.42849587730701724e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_708_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile708)_ 9.42246759622686163e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_709_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile709)_ 9.41636772412865301e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_710_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile710)_ 9.41019613588377733e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_711_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile711)_ 9.40395270722978009e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_712_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile712)_ 9.39763731343777609e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_713_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile713)_ 9.39124983028330473e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_714_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile714)_ 9.38479013348781678e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_715_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile715)_ 9.37825809906014246e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_716_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile716)_ 9.37165360322469304e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_717_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile717)_ 9.36497652225047432e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_718_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile718)_ 9.35822673259843231e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_719_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile719)_ 9.35140411092238305e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_720_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile720)_ 9.34450853439141443e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_721_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile721)_ 9.33753987982689597e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_722_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile722)_ 9.33049802481522236e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_723_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile723)_ 9.32338284696828529e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_724_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile724)_ 9.31619422412221891e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_725_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile725)_ 9.30893203438869915e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_726_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile726)_ 9.30159615633189933e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_727_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile727)_ 9.29418646857114485e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_728_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile728)_ 9.28670285008199523e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_729_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile729)_ 9.27914518037512535e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_730_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile730)_ 9.27151333907227926e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_731_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile731)_ 9.26380720626028380e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_732_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile732)_ 9.25602666236840892e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_733_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile733)_ 9.24817158804430023e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_734_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile734)_ 9.24024186458745865e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_735_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile735)_ 9.23223737377693206e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_736_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile736)_ 9.22415799718657829e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_737_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile737)_ 9.21600361779310526e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_738_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile738)_ 9.20777411811951781e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_739_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile739)_ 9.19946938182158135e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_740_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile740)_ 9.19108929272130157e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_741_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile741)_ 9.18263373534947309e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_742_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile742)_ 9.17410259441000381e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_743_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile743)_ 9.16549575571310761e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_744_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile744)_ 9.15681310514877313e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_745_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile745)_ 9.14805452936301271e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_746_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile746)_ 9.13921991586956646e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_747_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile747)_ 9.13030915237997807e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_748_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile748)_ 9.12132212748546431e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_749_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile749)_ 9.11225873063973776e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_750_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile750)_ 9.10311885156362723e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_751_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile751)_ 9.09390238111654897e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_752_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile752)_ 9.08460921054330892e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_753_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile753)_ 9.07523923227135376e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_754_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile754)_ 9.06579233920792871e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_755_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile755)_ 9.05626842524975828e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_756_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile756)_ 9.04666738492113445e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_757_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile757)_ 9.03698911394094570e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_758_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile758)_ 9.02723350872783499e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_759_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile759)_ 9.01740046675632984e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_760_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile760)_ 9.00748988630004077e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_761_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile761)_ 8.99750166692517284e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_762_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile762)_ 8.98743570880378845e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_763_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile763)_ 8.97729191361301346e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_764_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile764)_ 8.96707018371222138e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_765_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile765)_ 8.95677042299303575e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_766_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile766)_ 8.94639253613486486e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_767_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile767)_ 8.93593642921457210e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_768_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile768)_ 8.92540200958622486e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_769_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile769)_ 8.91478918575924241e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_770_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile770)_ 8.90409786760463021e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_771_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile771)_ 8.89332796620618225e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_772_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile772)_ 8.88247939428937761e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_773_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile773)_ 8.87155206574324548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_774_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile774)_ 8.86054589621733044e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_775_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile775)_ 8.84946080244824670e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_776_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile776)_ 8.83829670327681421e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_777_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile777)_ 8.82705351878011746e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_778_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile778)_ 8.81573117070741895e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_779_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile779)_ 8.80432958264171575e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_780_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile780)_ 8.79284867974164212e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_781_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile781)_ 8.78128838918497412e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_782_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile782)_ 8.76964863994001385e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_783_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile783)_ 8.75792936267552440e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_784_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile784)_ 8.74613049026615012e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_785_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile785)_ 8.73425195756481927e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_786_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile786)_ 8.72229370131463039e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_787_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile787)_ 8.71025566066081953e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_788_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile788)_ 8.69813777683814751e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_789_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile789)_ 8.68593999314147026e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_790_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile790)_ 8.67366225558832346e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_791_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile791)_ 8.66130451214569379e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_792_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile792)_ 8.64886671371380318e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_793_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile793)_ 8.63634881338093234e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_794_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile794)_ 8.62375076671619174e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_795_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile795)_ 8.61107253250517277e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_796_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile796)_ 8.59831407171021168e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_797_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile797)_ 8.58547534849999662e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_798_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile798)_ 8.57255632970522347e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_799_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile799)_ 8.55955698538783671e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_800_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile800)_ 8.54647728850174010e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_801_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile801)_ 8.53331721520130676e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_802_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile802)_ 8.52007674488711175e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_803_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile803)_ 8.50675586037197458e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_804_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile804)_ 8.49335454787031666e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_805_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile805)_ 8.47987279710754951e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_806_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile806)_ 8.46631060158186712e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_807_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile807)_ 8.45266795816683979e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_808_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile808)_ 8.43894486800841372e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_809_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile809)_ 8.42514133595058216e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_810_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile810)_ 8.41125737119887036e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_811_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile811)_ 8.39729298650052081e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_812_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile812)_ 8.38324819957451256e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_813_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile813)_ 8.36912303235750644e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_814_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile814)_ 8.35491751097547537e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_815_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile815)_ 8.34063166685631609e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_816_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile816)_ 8.32626553575827044e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_817_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile817)_ 8.31181915845708233e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_818_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile818)_ 8.29729258097850787e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_819_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile819)_ 8.28268585436717393e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_820_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile820)_ 8.26799903523384866e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_821_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile821)_ 8.25323218552805223e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_822_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile822)_ 8.23838537315660889e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_823_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile823)_ 8.22345867141404188e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_824_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile824)_ 8.20845216014406791e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_825_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile825)_ 8.19336592489025919e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_826_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile826)_ 8.17820005806953708e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_827_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile827)_ 8.16295465809127943e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_828_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile828)_ 8.14762983044666628e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_829_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile829)_ 8.13222568750084258e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_830_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile830)_ 8.11674234866828492e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_831_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile831)_ 8.10117994065628899e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_832_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile832)_ 8.08553859790767625e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_833_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile833)_ 8.06981846233665971e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_834_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile834)_ 8.05401968390808722e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_835_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile835)_ 8.03814242126041356e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_836_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile836)_ 8.02218684066702097e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_837_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile837)_ 8.00615311774352696e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_838_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile838)_ 7.99004143667785688e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_839_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile839)_ 7.97385199106924111e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_840_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile840)_ 7.95758498408556669e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_841_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile841)_ 7.94124062829081566e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_842_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile842)_ 7.92481914643916943e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_843_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile843)_ 7.90832077191562857e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_844_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile844)_ 7.89174574827698067e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_845_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile845)_ 7.87509433043828873e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_846_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile846)_ 7.85836678418947061e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_847_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile847)_ 7.84156338709574192e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_848_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile848)_ 7.82468442910918757e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_849_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile849)_ 7.80773021165395535e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_850_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile850)_ 7.79070104957549359e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_851_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile851)_ 7.77359727030625409e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_852_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile852)_ 7.75641921484544316e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_853_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile853)_ 7.73916723830816045e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_854_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile854)_ 7.72184170975581848e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_855_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile855)_ 7.70444301303501149e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_856_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile856)_ 7.68697154724856495e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_857_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile857)_ 7.66942772702576808e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_858_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile858)_ 7.65181198293930082e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_859_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile859)_ 7.63412476246121130e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_860_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile860)_ 7.61636652983905919e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_861_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile861)_ 7.59853776707317737e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_862_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile862)_ 7.58063897444998403e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_863_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile863)_ 7.56267067065650479e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_864_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile864)_ 7.54463339394034239e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_865_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile865)_ 7.52652770228355496e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_866_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile866)_ 7.50835417430458299e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_867_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile867)_ 7.49011340967044737e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_868_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile868)_ 7.47180603021059802e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_869_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile869)_ 7.45343267973690334e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_870_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile870)_ 7.43499402576954915e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_871_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile871)_ 7.41649075938312016e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_872_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile872)_ 7.39792359689873426e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_873_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile873)_ 7.37929327964487441e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_874_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile874)_ 7.36060057579917496e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_875_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile875)_ 7.34184628028805141e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_876_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile876)_ 7.32303121648504932e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_877_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile877)_ 7.30415623662754136e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_878_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile878)_ 7.28522222280900307e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_879_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile879)_ 7.26623008806830638e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_880_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile880)_ 7.24718077784503468e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_881_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile881)_ 7.22807527005186502e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_882_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile882)_ 7.20891457675880247e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_883_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile883)_ 7.18969974568284178e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_884_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile884)_ 7.17043186043405095e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_885_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile885)_ 7.15111204305479611e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_886_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile886)_ 7.13174145365473664e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_887_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile887)_ 7.11232129331937531e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_888_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile888)_ 7.09285280437500255e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_889_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile889)_ 7.07333727250862229e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_890_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile890)_ 7.05377602786617496e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_891_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile891)_ 7.03417044656994700e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_892_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile892)_ 7.01452195262640583e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_893_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile893)_ 6.99483201971456709e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_894_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile894)_ 6.97510217228910438e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_895_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile895)_ 6.95533398803513739e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_896_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile896)_ 6.93552909952576280e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_897_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile897)_ 6.91568919611631940e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_898_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile898)_ 6.89581602612223277e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_899_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile899)_ 6.87591139920577538e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_900_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile900)_ 6.85597718803123042e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_901_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile901)_ 6.83601533102503548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_902_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile902)_ 6.81602783465469920e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_903_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile903)_ 6.79601677666854045e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_904_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile904)_ 6.77598430731442096e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_905_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile905)_ 6.75593265376468657e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_906_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile906)_ 6.73586412173030145e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_907_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile907)_ 6.71578109938440835e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_908_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile908)_ 6.69568606013589470e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_909_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile909)_ 6.67558156630759358e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_910_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile910)_ 6.65547027220271970e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_911_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile911)_ 6.63535492843137040e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_912_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile912)_ 6.61523838515814654e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_913_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile913)_ 6.59512359653448548e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_914_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile914)_ 6.57501362534709116e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_915_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile915)_ 6.55491164653219417e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_916_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile916)_ 6.53482095329292832e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_917_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile917)_ 6.51474496056283527e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_918_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile918)_ 6.49468721188347156e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_919_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile919)_ 6.47465138388531296e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_920_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile920)_ 6.45464129266914381e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_921_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile921)_ 6.43466089998998188e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_922_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile922)_ 6.41471432022294469e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_923_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile923)_ 6.39480582645845456e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_924_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile924)_ 6.37493985936913189e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_925_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile925)_ 6.35512103377883133e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_926_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile926)_ 6.33535414834691599e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_927_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile927)_ 6.31564419372342666e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_928_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile928)_ 6.29599636253440603e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_929_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile929)_ 6.27641606008554065e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_930_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile930)_ 6.25690891472664712e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_931_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile931)_ 6.23748079023776075e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_932_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile932)_ 6.21813779892538797e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_933_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile933)_ 6.19888631416623623e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_934_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile934)_ 6.17973298690572843e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_935_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile935)_ 6.16068476094319434e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_936_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile936)_ 6.14174889004826495e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_937_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile937)_ 6.12293295876072553e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_938_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile938)_ 6.10424490071231549e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_939_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile939)_ 6.08569302411913603e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_940_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile940)_ 6.06728603469335569e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_941_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile941)_ 6.04903306442777094e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_942_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile942)_ 6.03094370159994956e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_943_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile943)_ 6.01302802537186879e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_944_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile944)_ 5.99529664290212629e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_945_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile945)_ 5.97776073200130542e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_946_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile946)_ 5.96043208902605291e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_947_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile947)_ 5.94332318188481052e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_948_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile948)_ 5.92644721276104972e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_949_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile949)_ 5.90981818690502776e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_950_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile950)_ 5.89345099338440745e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_951_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile951)_ 5.87736149994721579e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_952_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile952)_ 5.86156666007107540e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_953_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile953)_ 5.84608464321806614e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_954_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile954)_ 5.83093498660470447e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_955_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile955)_ 5.81613877843030827e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_956_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile956)_ 5.80171888054801729e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_957_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile957)_ 5.78770020027685218e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_958_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile958)_ 5.77411003014165983e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_959_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile959)_ 5.76097847785961032e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_960_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile960)_ 5.74833901676320962e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_961_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile961)_ 5.73622921245688523e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_962_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile962)_ 5.72469169806730932e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_963_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile963)_ 5.71377552328527875e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_964_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile964)_ 5.70353808922949377e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_965_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile965)_ 5.69404803668811452e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_966_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile966)_ 5.68538980363124651e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_967_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile967)_ 5.67767134343998611e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_968_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile968)_ 5.67103855409584103e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_969_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile969)_ 5.66570659310846898e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_970_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile970)_ 5.66204803834275804e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_971_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile971)_ 5.66113348049902994e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_972_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile972)_ 5.57054994307421350e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_973_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile973)_ 5.47827601753625437e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_974_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile974)_ 5.38422464530394131e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_975_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile975)_ 5.28830083942151506e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_976_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile976)_ 5.19040063189202955e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_977_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile977)_ 5.09040983249982055e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_978_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile978)_ 4.98820256016783894e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_979_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile979)_ 4.88363948852459963e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_980_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile980)_ 4.77656573932111125e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_981_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile981)_ 4.66680832987894766e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_982_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile982)_ 4.55417305447998466e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_983_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile983)_ 4.43844063978484325e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_984_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile984)_ 4.31936195201954032e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_985_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile985)_ 4.19665195995553176e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_986_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile986)_ 4.06998202607347301e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_987_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile987)_ 3.93896993048487454e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_988_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile988)_ 3.80316674845009809e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_989_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile989)_ 3.66203927929664979e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_990_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile990)_ 3.51494602982809065e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_991_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile991)_ 3.36110360235772256e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_992_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile992)_ 3.19953833637137437e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_993_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile993)_ 3.02901442573324945e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_994_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile994)_ 2.84792280161849784e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_995_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile995)_ 2.65410090750502117e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_996_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile996)_ 2.44452220177510029e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_997_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile997)_ 2.21471762827467203e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_998_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile998)_ 1.95757659864674322e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_999_____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile999)_ 1.66044665033416076e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_1000____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1000)_ 1.29611086245099067e-03 +Plasma_deuteron_isotropic_Larmor_radius_at_point_1001____________________ (radius_plasma_deuteron_toroidal_larmor_isotropic_profile1001)_ 7.74961541590635846e-04 +Volume_averaged_triton_isotropic_toroidal_Larmor_radius_(m)______________ (radius_plasma_triton_toroidal_larmor_isotropic_vol_avg)_ 7.94376013758837235e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_0_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile0)_ 4.74185558595517349e-04 +Plasma_triton_isotropic_Larmor_radius_at_point_1_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1)_ 7.94256836859743090e-04 +Plasma_triton_isotropic_Larmor_radius_at_point_2_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile2)_ 1.01904661937638917e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_3_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile3)_ 1.20320016445974202e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_4_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile4)_ 1.36328654995017937e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_5_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile5)_ 1.50699607739265373e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_6_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile6)_ 1.63864393333412435e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_7_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile7)_ 1.76093808218301265e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_8_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile8)_ 1.87570961703685752e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_9_________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile9)_ 1.98426492172837669e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_10________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile10)_ 2.08757454603780051e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_11________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile11)_ 2.18638276816592991e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_12________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile12)_ 2.28127509843853438e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_13________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile13)_ 2.37272191903986369e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_14________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile14)_ 2.46110782463048166e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_15________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile15)_ 2.54675200069470189e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_16________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile16)_ 2.62992277745142814e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_17________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile17)_ 2.71084826843440976e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_18________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile18)_ 2.78972431169757654e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_19________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile19)_ 2.86672050198071970e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_20________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile20)_ 2.94198485121425438e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_21________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile21)_ 3.01564743326874964e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_22________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile22)_ 3.08782327721183374e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_23________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile23)_ 3.15861468645263184e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_24________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile24)_ 3.22811311755423535e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_25________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile25)_ 3.29640071957920753e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_26________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile26)_ 3.36355160102415817e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_27________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile27)_ 3.42963288533580787e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_28________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile28)_ 3.49470559514051485e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_29________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile29)_ 3.55882539568334877e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_30________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile30)_ 3.62204322920348489e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_31________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile31)_ 3.62798182607852087e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_32________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile32)_ 3.63568841561028901e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_33________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile33)_ 3.64448279373485659e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_34________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile34)_ 3.65412995067332987e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_35________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile35)_ 3.66449493563457797e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_36________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile36)_ 3.67548669437268083e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_37________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile37)_ 3.68703815366945922e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_38________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile38)_ 3.69909705837383673e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_39________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile39)_ 3.71162107758579588e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_40________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile40)_ 3.72457492218577308e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_41________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile41)_ 3.73792851763994410e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_42________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile42)_ 3.75165578413736789e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_43________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile43)_ 3.76573378735099501e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_44________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile44)_ 3.78014212443449548e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_45________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile45)_ 3.79486246908169404e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_46________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile46)_ 3.80987822603503189e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_47________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile47)_ 3.82517426242119001e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_48________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile48)_ 3.84073669624469859e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_49________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile49)_ 3.85655272568792042e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_50________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile50)_ 3.87261049327747775e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_51________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile51)_ 3.88889896956294686e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_52________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile52)_ 3.90540786052420924e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_53________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile53)_ 3.92212752767431231e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_54________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile54)_ 3.93904892066253634e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_55________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile55)_ 3.95616352052592830e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_56________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile56)_ 3.97346328874543728e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_57________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile57)_ 3.99094062616953908e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_58________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile58)_ 4.00858833422008606e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_59________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile59)_ 4.02639958265011647e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_60________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile60)_ 4.04436788047952619e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_61________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile61)_ 4.06248705038804708e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_62________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile62)_ 4.08075120600879995e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_63________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile63)_ 4.09915473084649512e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_64________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile64)_ 4.11769226002388529e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_65________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile65)_ 4.13635866434872070e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_66________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile66)_ 4.15514903457047703e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_67________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile67)_ 4.17405866837579180e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_68________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile68)_ 4.19308305636904594e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_69________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile69)_ 4.21221787311058284e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_70________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile70)_ 4.23145896473644048e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_71________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile71)_ 4.25080233980892203e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_72________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile72)_ 4.27024416113042701e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_73________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile73)_ 4.28978073677055167e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_74________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile74)_ 4.30940851314384494e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_75________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile75)_ 4.32912406720571425e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_76________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile76)_ 4.34892410063561583e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_77________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile77)_ 4.36880543374184097e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_78________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile78)_ 4.38876499877315779e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_79________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile79)_ 4.40879983617060295e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_80________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile80)_ 4.42890708821489822e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_81________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile81)_ 4.44908399523204386e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_82________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile82)_ 4.46932789100648511e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_83________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile83)_ 4.48963619815223331e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_84________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile84)_ 4.51000642481528581e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_85________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile85)_ 4.53043616095407005e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_86________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile86)_ 4.55092307484379014e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_87________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile87)_ 4.57146490939466452e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_88________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile88)_ 4.59205947987057113e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_89________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile89)_ 4.61270467005459994e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_90________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile90)_ 4.63339843021742803e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_91________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile91)_ 4.65413877389804671e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_92________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile92)_ 4.67492377615754025e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_93________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile93)_ 4.69575157033691806e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_94________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile94)_ 4.71662034632706114e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_95________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile95)_ 4.73752834823914799e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_96________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile96)_ 4.75847387268178712e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_97________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile97)_ 4.77945526644303533e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_98________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile98)_ 4.80047092442491274e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_99________________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile99)_ 4.82151928852890196e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_100_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile100)_ 4.84259884563659378e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_101_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile101)_ 4.86370812544461434e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_102_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile102)_ 4.88484569998681121e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_103_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile103)_ 4.90601018142416360e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_104_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile104)_ 4.92720022082114052e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_105_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile105)_ 4.94841450655083247e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_106_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile106)_ 4.96965176324151280e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_107_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile107)_ 4.99091075086813708e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_108_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile108)_ 5.01219026256984838e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_109_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile109)_ 5.03348912481268833e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_110_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile110)_ 5.05480619494481052e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_111_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile111)_ 5.07614036108955738e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_112_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile112)_ 5.09749054085077008e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_113_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile113)_ 5.11885568016524472e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_114_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile114)_ 5.14023475284992870e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_115_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile115)_ 5.16162675859517268e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_116_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile116)_ 5.18303072389375390e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_117_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile117)_ 5.20444569930305582e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_118_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile118)_ 5.22587076001687807e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_119_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile119)_ 5.24730500438171446e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_120_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile120)_ 5.26874755347849291e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_121_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile121)_ 5.29019755025387714e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_122_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile122)_ 5.31165415899761788e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_123_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile123)_ 5.33311656429002676e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_124_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile124)_ 5.35458397083393798e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_125_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile125)_ 5.37605560246556553e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_126_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile126)_ 5.39753070212733391e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_127_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile127)_ 5.41900853028197405e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_128_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile128)_ 5.44048836556275481e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_129_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile129)_ 5.46196950337208761e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_130_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile130)_ 5.48345125552052517e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_131_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile131)_ 5.50493295015730758e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_132_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile132)_ 5.52641393068771265e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_133_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile133)_ 5.54789355580093298e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_134_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile134)_ 5.56937119877097282e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_135_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile135)_ 5.59084624717196780e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_136_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile136)_ 5.61231810191373075e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_137_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile137)_ 5.63378617822136996e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_138_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile138)_ 5.65524990331355438e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_139_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile139)_ 5.67670871759549597e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_140_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile140)_ 5.69816207356063555e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_141_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile141)_ 5.71960943586411613e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_142_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile142)_ 5.74105028008318422e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_143_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile143)_ 5.76248409379846813e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_144_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile144)_ 5.78391037480879226e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_145_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile145)_ 5.80532863225773250e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_146_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile146)_ 5.82673838466735410e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_147_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile147)_ 5.84813916150513178e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_148_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile148)_ 5.86953050111394155e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_149_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile149)_ 5.89091195200565701e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_150_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile150)_ 5.91228307155401960e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_151_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile151)_ 5.93364342579924976e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_152_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile152)_ 5.95499259011536986e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_153_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile153)_ 5.97633014780519101e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_154_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile154)_ 5.99765569057996578e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_155_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile155)_ 6.01896881806387053e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_156_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile156)_ 6.04026913761531066e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_157_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile157)_ 6.06155626449960804e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_158_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile158)_ 6.08282982097925473e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_159_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile159)_ 6.10408943661053510e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_160_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile160)_ 6.12533474776808754e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_161_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile161)_ 6.14656539782888756e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_162_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile162)_ 6.16778103662637966e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_163_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile163)_ 6.18898132056240960e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_164_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile164)_ 6.21016591183955278e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_165_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile165)_ 6.23133447957261236e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_166_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile166)_ 6.25248669780315014e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_167_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile167)_ 6.27362224730119988e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_168_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile168)_ 6.29474081370373726e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_169_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile169)_ 6.31584208832676377e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_170_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile170)_ 6.33692576809952949e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_171_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile171)_ 6.35799155508448479e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_172_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile172)_ 6.37903915570081203e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_173_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile173)_ 6.40006828232974560e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_174_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile174)_ 6.42107865136942214e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_175_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile175)_ 6.44206998438861655e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_176_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile176)_ 6.46304200705788770e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_177_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile177)_ 6.48399444970141573e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_178_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile178)_ 6.50492704694714645e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_179_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile179)_ 6.52583953779146617e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_180_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile180)_ 6.54673166517939602e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_181_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile181)_ 6.56760317592418059e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_182_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile182)_ 6.58845382077682517e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_183_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile183)_ 6.60928335460696150e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_184_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile184)_ 6.63009153573048890e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_185_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile185)_ 6.65087812576165872e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_186_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile186)_ 6.67164289064931058e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_187_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile187)_ 6.69238559904831217e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_188_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile188)_ 6.71310602313706425e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_189_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile189)_ 6.73380393843522797e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_190_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile190)_ 6.75447912369693364e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_191_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile191)_ 6.77513136062197607e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_192_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile192)_ 6.79576043404613635e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_193_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile193)_ 6.81636613165477814e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_194_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile194)_ 6.83694824406457305e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_195_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile195)_ 6.85750656494157895e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_196_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile196)_ 6.87804089006182565e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_197_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile197)_ 6.89855101845445601e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_198_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile198)_ 6.91903675153698883e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_199_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile199)_ 6.93949789338315411e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_200_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile200)_ 6.95993425030013834e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_201_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile201)_ 6.98034563109746226e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_202_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile202)_ 7.00073184720950096e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_203_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile203)_ 7.02109271180604861e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_204_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile204)_ 7.04142804100231414e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_205_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile205)_ 7.06173765261007384e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_206_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile206)_ 7.08202136669776414e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_207_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile207)_ 7.10227900535601551e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_208_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile208)_ 7.12251039300369326e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_209_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile209)_ 7.14271535583144244e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_210_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile210)_ 7.16289372171507663e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_211_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile211)_ 7.18304532098852384e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_212_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile212)_ 7.20316998513894149e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_213_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile213)_ 7.22326754811691580e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_214_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile214)_ 7.24333784546294778e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_215_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile215)_ 7.26338071400999159e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_216_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile216)_ 7.28339599261992703e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_217_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile217)_ 7.30338352199139465e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_218_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile218)_ 7.32334314407865478e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_219_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile219)_ 7.34327470225916174e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_220_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile220)_ 7.36317804196070982e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_221_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile221)_ 7.38305300962171108e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_222_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile222)_ 7.40289945335497867e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_223_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile223)_ 7.42271722258350860e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_224_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile224)_ 7.44250616820784673e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_225_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile225)_ 7.46226614245545754e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_226_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile226)_ 7.48199699890723241e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_227_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile227)_ 7.50169859213715377e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_228_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile228)_ 7.52137077819749981e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_229_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile229)_ 7.54101341468013230e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_230_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile230)_ 7.56062635990097359e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_231_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile231)_ 7.58020947324548021e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_232_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile232)_ 7.59976261582715092e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_233_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile233)_ 7.61928564939426921e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_234_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile234)_ 7.63877843705941181e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_235_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile235)_ 7.65824084273373888e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_236_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile236)_ 7.67767273140137693e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_237_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile237)_ 7.69707396921823911e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_238_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile238)_ 7.71644442315797853e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_239_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile239)_ 7.73578396152931926e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_240_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile240)_ 7.75509245296207572e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_241_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile241)_ 7.77436976744668752e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_242_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile242)_ 7.79361577591173877e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_243_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile243)_ 7.81283034976912490e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_244_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile244)_ 7.83201336156967229e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_245_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile245)_ 7.85116468485978249e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_246_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile246)_ 7.87028419345130702e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_247_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile247)_ 7.88937176252569976e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_248_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile248)_ 7.90842726766213810e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_249_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile249)_ 7.92745058538778420e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_250_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile250)_ 7.94644159279515871e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_251_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile251)_ 7.96540016791884298e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_252_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile252)_ 7.98432618931926852e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_253_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile253)_ 8.00321953618413247e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_254_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile254)_ 8.02208008870426009e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_255_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile255)_ 8.04090772734942713e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_256_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile256)_ 8.05970233338231153e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_257_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile257)_ 8.07846378878753109e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_258_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile258)_ 8.09719197592712048e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_259_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile259)_ 8.11588677791623761e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_260_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile260)_ 8.13454807841596655e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_261_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile261)_ 8.15317576163208067e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_262_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile262)_ 8.17176971217729170e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_263_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile263)_ 8.19032981554842533e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_264_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile264)_ 8.20885595733980913e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_265_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile265)_ 8.22734802392545775e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_266_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile266)_ 8.24580590238922773e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_267_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile267)_ 8.26422947957037614e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_268_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile268)_ 8.28261864345996093e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_269_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile269)_ 8.30097328228025788e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_270_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile270)_ 8.31929328479081610e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_271_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile271)_ 8.33757853984646267e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_272_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile272)_ 8.35582893694095108e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_273_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile273)_ 8.37404436620609559e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_274_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile274)_ 8.39222471793652121e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_275_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile275)_ 8.41036988289514675e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_276_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile276)_ 8.42847975207604294e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_277_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile277)_ 8.44655421704324123e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_278_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile278)_ 8.46459316949075939e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_279_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile279)_ 8.48259650164897433e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_280_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile280)_ 8.50056410611549698e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_281_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile281)_ 8.51849587582168867e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_282_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile282)_ 8.53639170372939675e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_283_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile283)_ 8.55425148364142782e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_284_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile284)_ 8.57207510898740609e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_285_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile285)_ 8.58986247424077531e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_286_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile286)_ 8.60761347353715574e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_287_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile287)_ 8.62532800165238117e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_288_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile288)_ 8.64300595343051037e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_289_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile289)_ 8.66064722432290622e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_290_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile290)_ 8.67825170951456656e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_291_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile291)_ 8.69581930493367253e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_292_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile292)_ 8.71334990641204829e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_293_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile293)_ 8.73084341012300182e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_294_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile294)_ 8.74829971268257893e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_295_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile295)_ 8.76571871047956974e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_296_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile296)_ 8.78310030054865916e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_297_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile297)_ 8.80044437993409388e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_298_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile298)_ 8.81775084585852652e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_299_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile299)_ 8.83501959575758687e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_300_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile300)_ 8.85225052734778424e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_301_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile301)_ 8.86944353846025324e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_302_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile302)_ 8.88659852707541185e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_303_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile303)_ 8.90371539129076323e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_304_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile304)_ 8.92079402955592120e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_305_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile305)_ 8.93783434037299582e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_306_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile306)_ 8.95483622243144900e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_307_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile307)_ 8.97179957440910961e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_308_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile308)_ 8.98872429534053677e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_309_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile309)_ 9.00561028428450115e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_310_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile310)_ 9.02245744042542812e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_311_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile311)_ 9.03926566327459616e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_312_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile312)_ 9.05603485203829162e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_313_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile313)_ 9.07276490638558863e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_314_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile314)_ 9.08945572608298689e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_315_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile315)_ 9.10610721079611884e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_316_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile316)_ 9.12271926069015138e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_317_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile317)_ 9.13929177543294606e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_318_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile318)_ 9.15582465536080893e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_319_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile319)_ 9.17231780051523324e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_320_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile320)_ 9.18877111117643967e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_321_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile321)_ 9.20518448786450567e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_322_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile322)_ 9.22155783070962090e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_323_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile323)_ 9.23789104051643550e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_324_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile324)_ 9.25418401750347820e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_325_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile325)_ 9.27043666256625702e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_326_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile326)_ 9.28664887648174980e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_327_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile327)_ 9.30282055967787160e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_328_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile328)_ 9.31895161319694701e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_329_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile329)_ 9.33504193783453971e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_330_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile330)_ 9.35109143447264771e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_331_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile331)_ 9.36710000398165328e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_332_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile332)_ 9.38306754758622304e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_333_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile333)_ 9.39899396600517995e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_334_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile334)_ 9.41487916031450572e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_335_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile335)_ 9.43072303178288211e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_336_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile336)_ 9.44652548150878325e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_337_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile337)_ 9.46228641045517016e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_338_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile338)_ 9.47800571988123911e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_339_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile339)_ 9.49368331078110153e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_340_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile340)_ 9.50931908458015410e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_341_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile341)_ 9.52491294227609565e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_342_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile342)_ 9.54046478516829173e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_343_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile343)_ 9.55597451429675109e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_344_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile344)_ 9.57144203103889486e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_345_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile345)_ 9.58686723658168545e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_346_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile346)_ 9.60225003208845310e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_347_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile347)_ 9.61759031876636625e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_348_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile348)_ 9.63288799766945543e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_349_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile349)_ 9.64814297012966254e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_350_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile350)_ 9.66335513729544605e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_351_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile351)_ 9.67852440003405361e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_352_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile352)_ 9.69365065992413948e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_353_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile353)_ 9.70873381767108079e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_354_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile354)_ 9.72377377449602266e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_355_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile355)_ 9.73877043157546710e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_356_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile356)_ 9.75372368967927610e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_357_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile357)_ 9.76863344999776180e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_358_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile358)_ 9.78349961341629278e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_359_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile359)_ 9.79832208081384513e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_360_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile360)_ 9.81310075316337536e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_361_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile361)_ 9.82783553120280401e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_362_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile362)_ 9.84252631589861531e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_363_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile363)_ 9.85717300778665879e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_364_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile364)_ 9.87177550779894109e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_365_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile365)_ 9.88633371650532618e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_366_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile366)_ 9.90084753451105949e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_367_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile367)_ 9.91531686229282436e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_368_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile368)_ 9.92974160056321262e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_369_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile369)_ 9.94412164977656263e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_370_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile370)_ 9.95845690999808304e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_371_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile371)_ 9.97274728199469725e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_372_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile372)_ 9.98699266584932542e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_373_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile373)_ 1.00011929615894026e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_374_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile374)_ 1.00153480697494600e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_375_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile375)_ 1.00294578902163992e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_376_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile376)_ 1.00435223227919659e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_377_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile377)_ 1.00575412678214522e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_378_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile378)_ 1.00715146249396800e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_379_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile379)_ 1.00854422941290597e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_380_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile380)_ 1.00993241748947946e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_381_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile381)_ 1.01131601669927299e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_382_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile382)_ 1.01269501699018175e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_383_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile383)_ 1.01406940832216158e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_384_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile384)_ 1.01543918065081454e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_385_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile385)_ 1.01680432387791612e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_386_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile386)_ 1.01816482794404653e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_387_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile387)_ 1.01952068275267572e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_388_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile388)_ 1.02087187823307005e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_389_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile389)_ 1.02221840426434726e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_390_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile390)_ 1.02356025075492334e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_391_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile391)_ 1.02489740756324561e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_392_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile392)_ 1.02622986457394320e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_393_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile393)_ 1.02755761164169887e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_394_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile394)_ 1.02888063861779414e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_395_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile395)_ 1.03019893535682364e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_396_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile396)_ 1.03151249167376061e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_397_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile397)_ 1.03282129740361033e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_398_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile398)_ 1.03412534235185118e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_399_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile399)_ 1.03542461632430971e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_400_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile400)_ 1.03671910910406069e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_401_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile401)_ 1.03800881048131868e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_402_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile402)_ 1.03929371024027595e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_403_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile403)_ 1.04057379810615930e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_404_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile404)_ 1.04184906384802017e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_405_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile405)_ 1.04311949720592243e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_406_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile406)_ 1.04438508790094704e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_407_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile407)_ 1.04564582566510980e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_408_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile408)_ 1.04690170016183224e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_409_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile409)_ 1.04815270113195694e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_410_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile410)_ 1.04939881822796125e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_411_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile411)_ 1.05064004113345141e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_412_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile412)_ 1.05187635950350755e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_413_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile413)_ 1.05310776298133540e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_414_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile414)_ 1.05433424119168381e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_415_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile415)_ 1.05555578376416385e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_416_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile416)_ 1.05677238031005889e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_417_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile417)_ 1.05798402043900432e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_418_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile418)_ 1.05919069370916837e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_419_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile419)_ 1.06039238972373585e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_420_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile420)_ 1.06158909801456897e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_421_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile421)_ 1.06278080814204232e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_422_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile422)_ 1.06396750964187683e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_423_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile423)_ 1.06514919202184526e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_424_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile424)_ 1.06632584481177236e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_425_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile425)_ 1.06749745748698551e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_426_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile426)_ 1.06866401954497300e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_427_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile427)_ 1.06982552044212528e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_428_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile428)_ 1.07098194964043610e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_429_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile429)_ 1.07213329657754146e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_430_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile430)_ 1.07327955067676069e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_431_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile431)_ 1.07442070136716649e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_432_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile432)_ 1.07555673803355518e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_433_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile433)_ 1.07668765007657430e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_434_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile434)_ 1.07781342685933108e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_435_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile435)_ 1.07893405773413376e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_436_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile436)_ 1.08004953205925527e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_437_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile437)_ 1.08115983915550024e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_438_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile438)_ 1.08226496833632047e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_439_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile439)_ 1.08336490890785526e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_440_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile440)_ 1.08445965015222280e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_441_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile441)_ 1.08554918134763437e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_442_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile442)_ 1.08663349174497222e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_443_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile443)_ 1.08771257060132683e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_444_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile444)_ 1.08878640712302011e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_445_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile445)_ 1.08985499052597374e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_446_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile446)_ 1.09091831000555414e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_447_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile447)_ 1.09197635476009219e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_448_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile448)_ 1.09302911395733338e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_449_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile449)_ 1.09407657672096932e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_450_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile450)_ 1.09511873220794979e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_451_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile451)_ 1.09615556955139585e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_452_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile452)_ 1.09718707782356043e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_453_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile453)_ 1.09821324613340651e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_454_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile454)_ 1.09923406355597244e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_455_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile455)_ 1.10024951912896657e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_456_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile456)_ 1.10125960192691552e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_457_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile457)_ 1.10226430096006956e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_458_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile458)_ 1.10326360522829976e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_459_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile459)_ 1.10425750373799661e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_460_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile460)_ 1.10524598546157780e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_461_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile461)_ 1.10622903937800717e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_462_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile462)_ 1.10720665439505844e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_463_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile463)_ 1.10817881946760569e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_464_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile464)_ 1.10914552350636492e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_465_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile465)_ 1.11010675539136745e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_466_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile466)_ 1.11106250403291123e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_467_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile467)_ 1.11201275825300108e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_468_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile468)_ 1.11295750692084160e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_469_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile469)_ 1.11389673887492442e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_470_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile470)_ 1.11483044289581376e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_471_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile471)_ 1.11575860779435394e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_472_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile472)_ 1.11668122235398914e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_473_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile473)_ 1.11759827532391179e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_474_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile474)_ 1.11850975545642831e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_475_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile475)_ 1.11941565146953855e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_476_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile476)_ 1.12031595206730228e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_477_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile477)_ 1.12121064594664348e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_478_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile478)_ 1.12209972178370521e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_479_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile479)_ 1.12298316822698908e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_480_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile480)_ 1.12386097390412502e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_481_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile481)_ 1.12473312746624136e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_482_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile482)_ 1.12559961748891907e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_483_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile483)_ 1.12646043257459919e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_484_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile484)_ 1.12731556126369637e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_485_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile485)_ 1.12816499211319064e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_486_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile486)_ 1.12900871367613408e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_487_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile487)_ 1.12984671444679441e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_488_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile488)_ 1.13067898291195068e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_489_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile489)_ 1.13150550755431265e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_490_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile490)_ 1.13232627682504240e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_491_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile491)_ 1.13314127918147326e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_492_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile492)_ 1.13395050301491503e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_493_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile493)_ 1.13475393675025495e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_494_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile494)_ 1.13555156877375510e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_495_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile495)_ 1.13634338741226710e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_496_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile496)_ 1.13712938105027007e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_497_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile497)_ 1.13790953800241082e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_498_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile498)_ 1.13868384657196953e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_499_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile499)_ 1.13945229503700802e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_500_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile500)_ 1.14021487168485779e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_501_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile501)_ 1.14097450850809898e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_502_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile502)_ 1.14173119962708222e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_503_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile503)_ 1.14248199149048889e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_504_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile504)_ 1.14322687229214195e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_505_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile505)_ 1.14396583023494130e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_506_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile506)_ 1.14469885349618127e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_507_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile507)_ 1.14542593024135296e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_508_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile508)_ 1.14614704856501621e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_509_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile509)_ 1.14686219661923709e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_510_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile510)_ 1.14757136249544634e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_511_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile511)_ 1.14827453424511342e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_512_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile512)_ 1.14897169995280199e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_513_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile513)_ 1.14966284763511999e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_514_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile514)_ 1.15034796531377232e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_515_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile515)_ 1.15102704097714836e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_516_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile516)_ 1.15170006260814986e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_517_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile517)_ 1.15236701818066719e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_518_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile518)_ 1.15302789560701880e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_519_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile519)_ 1.15368268279376733e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_520_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile520)_ 1.15433136766272138e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_521_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile521)_ 1.15497393807027608e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_522_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile522)_ 1.15561038189844895e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_523_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile523)_ 1.15624068694953810e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_524_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile524)_ 1.15686484104778851e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_525_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile525)_ 1.15748283199370583e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_526_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile526)_ 1.15809464755690095e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_527_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile527)_ 1.15870027548299857e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_528_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile528)_ 1.15929970350763956e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_529_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile529)_ 1.15989291934935727e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_530_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile530)_ 1.16047991068828505e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_531_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile531)_ 1.16106066520488532e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_532_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile532)_ 1.16163517054099288e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_533_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile533)_ 1.16220341430671985e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_534_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile534)_ 1.16276538414056985e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_535_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile535)_ 1.16332106761728171e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_536_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile536)_ 1.16387045227594257e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_537_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile537)_ 1.16441352570156240e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_538_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile538)_ 1.16495027538295413e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_539_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile539)_ 1.16548068883690382e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_540_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile540)_ 1.16600475354412397e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_541_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile541)_ 1.16652245693480722e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_542_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile542)_ 1.16703378648474587e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_543_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile543)_ 1.16753872959046955e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_544_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile544)_ 1.16803727365110254e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_545_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile545)_ 1.16852940602540263e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_546_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile546)_ 1.16901511407452724e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_547_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile547)_ 1.16949438514408598e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_548_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile548)_ 1.16996720650663459e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_549_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile549)_ 1.17043356546904249e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_550_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile550)_ 1.17089344929353668e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_551_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile551)_ 1.17134684520106003e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_552_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile552)_ 1.17179374044666575e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_553_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile553)_ 1.17223412221511142e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_554_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile554)_ 1.17266797766018196e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_555_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile555)_ 1.17309529396588952e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_556_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile556)_ 1.17351605826344525e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_557_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile557)_ 1.17393025764544311e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_558_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile558)_ 1.17433787920184791e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_559_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile559)_ 1.17473890999456460e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_560_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile560)_ 1.17513333708991492e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_561_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile561)_ 1.17552114749324924e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_562_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile562)_ 1.17590232821040107e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_563_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile563)_ 1.17627686621126146e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_564_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile564)_ 1.17664474845504737e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_565_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile565)_ 1.17700596186833279e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_566_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile566)_ 1.17736049336308324e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_567_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile567)_ 1.17770832983653730e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_568_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile568)_ 1.17804945813817629e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_569_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile569)_ 1.17838386511701452e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_570_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile570)_ 1.17871153760322530e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_571_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile571)_ 1.17903246237866400e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_572_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile572)_ 1.17934662623529595e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_573_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile573)_ 1.17965401590905978e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_574_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile574)_ 1.17995461813469715e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_575_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile575)_ 1.18024841962360016e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_576_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile576)_ 1.18053540705257750e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_577_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile577)_ 1.18081556709682574e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_578_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile578)_ 1.18108888637815535e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_579_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile579)_ 1.18135535153490196e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_580_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile580)_ 1.18161494913682774e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_581_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile581)_ 1.18186766576991401e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_582_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile582)_ 1.18211348798075589e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_583_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile583)_ 1.18235240228000190e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_584_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile584)_ 1.18258439520156685e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_585_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile585)_ 1.18280945319107524e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_586_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile586)_ 1.18302756273568326e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_587_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile587)_ 1.18323871025610861e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_588_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile588)_ 1.18344288216219364e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_589_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile589)_ 1.18364006483409577e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_590_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile590)_ 1.18383024464824450e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_591_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile591)_ 1.18401340795103796e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_592_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile592)_ 1.18418954106610450e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_593_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile593)_ 1.18435863027534418e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_594_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile594)_ 1.18452066188625745e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_595_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile595)_ 1.18467562209659677e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_596_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile596)_ 1.18482349718197610e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_597_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile597)_ 1.18496427333034601e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_598_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile598)_ 1.18509793673201476e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_599_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile599)_ 1.18522447354557463e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_600_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile600)_ 1.18534386988629909e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_601_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile601)_ 1.18545611190914030e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_602_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile602)_ 1.18556118569133409e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_603_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile603)_ 1.18565907729261608e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_604_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile604)_ 1.18574977277023930e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_605_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile605)_ 1.18583325814463833e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_606_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile606)_ 1.18590951942579900e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_607_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile607)_ 1.18597854257879061e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_608_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile608)_ 1.18604031358069857e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_609_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile609)_ 1.18609481835179383e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_610_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile610)_ 1.18614204280487693e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_611_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile611)_ 1.18618197283748145e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_612_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile612)_ 1.18621459430100131e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_613_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile613)_ 1.18623989306564093e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_614_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile614)_ 1.18625785493196804e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_615_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile615)_ 1.18626846572283950e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_616_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile616)_ 1.18627171119090220e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_617_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile617)_ 1.18626757710687224e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_618_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile618)_ 1.18625604918611224e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_619_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile619)_ 1.18623711317721956e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_620_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile620)_ 1.18621075475363377e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_621_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile621)_ 1.18617695957127824e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_622_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile622)_ 1.18613571328778748e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_623_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile623)_ 1.18608700151573918e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_624_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile624)_ 1.18603080988460511e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_625_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile625)_ 1.18596712395495525e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_626_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile626)_ 1.18589592931555819e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_627_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile627)_ 1.18581721145833638e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_628_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile628)_ 1.18573095592642945e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_629_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile629)_ 1.18563714823994200e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_630_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile630)_ 1.18553577382896156e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_631_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile631)_ 1.18542681817044998e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_632_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile632)_ 1.18531026672154243e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_633_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile633)_ 1.18518610484443301e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_634_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile634)_ 1.18505431797140178e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_635_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile635)_ 1.18491489147476859e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_636_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile636)_ 1.18476781068222684e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_637_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile637)_ 1.18461306093587283e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_638_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile638)_ 1.18445062754855852e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_639_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile639)_ 1.18428049582345787e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_640_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile640)_ 1.18410265100615270e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_641_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile641)_ 1.18391707837577232e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_642_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile642)_ 1.18372376314537873e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_643_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile643)_ 1.18352269054130856e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_644_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile644)_ 1.18331384574715190e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_645_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile645)_ 1.18309721394341105e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_646_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile646)_ 1.18287278029533868e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_647_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile647)_ 1.18264052991656436e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_648_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile648)_ 1.18240044795713591e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_649_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile649)_ 1.18215251950294416e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_650_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile650)_ 1.18189672961954324e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_651_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile651)_ 1.18163306342058301e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_652_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile652)_ 1.18136150589809898e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_653_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile653)_ 1.18108204211603250e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_654_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile654)_ 1.18079465708889712e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_655_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile655)_ 1.18049933579350234e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_656_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile656)_ 1.18019606322554618e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_657_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile657)_ 1.17988482434665358e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_658_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile658)_ 1.17956560410850553e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_659_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile659)_ 1.17923838744447979e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_660_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile660)_ 1.17890315924892627e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_661_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile661)_ 1.17855990444237259e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_662_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile662)_ 1.17820860789768448e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_663_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile663)_ 1.17784925450951337e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_664_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile664)_ 1.17748182910372631e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_665_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile665)_ 1.17710631654402691e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_666_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile666)_ 1.17672270164536387e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_667_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile667)_ 1.17633096924378983e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_668_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile668)_ 1.17593110414262701e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_669_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile669)_ 1.17552309110795158e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_670_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile670)_ 1.17510691491391431e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_671_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile671)_ 1.17468256036350610e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_672_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile672)_ 1.17425001218023940e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_673_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile673)_ 1.17380925511600398e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_674_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile674)_ 1.17336027390515345e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_675_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile675)_ 1.17290305327682077e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_676_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile676)_ 1.17243757791279136e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_677_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile677)_ 1.17196383255628988e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_678_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile678)_ 1.17148180189026417e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_679_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile679)_ 1.17099147056630090e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_680_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile680)_ 1.17049282330561524e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_681_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile681)_ 1.16998584473874158e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_682_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile682)_ 1.16947051956569244e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_683_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile683)_ 1.16894683242059119e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_684_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile684)_ 1.16841476795178402e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_685_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile685)_ 1.16787431082183736e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_686_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile686)_ 1.16732544563928984e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_687_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile687)_ 1.16676815708198350e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_688_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile688)_ 1.16620242974773674e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_689_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile689)_ 1.16562824828215610e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_690_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile690)_ 1.16504559730162653e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_691_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile691)_ 1.16445446141875113e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_692_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile692)_ 1.16385482528959232e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_693_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile693)_ 1.16324667351465801e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_694_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile694)_ 1.16262999072044692e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_695_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile695)_ 1.16200476153356831e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_696_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile696)_ 1.16137097056760921e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_697_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile697)_ 1.16072860246635712e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_698_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile698)_ 1.16007764185605891e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_699_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile699)_ 1.15941807337131258e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_700_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile700)_ 1.15874988163754914e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_701_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile701)_ 1.15807305131021762e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_702_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile702)_ 1.15738756704424420e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_703_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile703)_ 1.15669341349830136e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_704_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile704)_ 1.15599057533032606e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_705_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile705)_ 1.15527903721943052e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_706_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile706)_ 1.15455878385714739e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_707_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile707)_ 1.15382979994299983e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_708_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile708)_ 1.15309207016230375e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_709_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile709)_ 1.15234557927027127e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_710_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile710)_ 1.15159031197689752e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_711_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile711)_ 1.15082625303554939e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_712_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile712)_ 1.15005338722985618e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_713_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile713)_ 1.14927169931574053e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_714_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile714)_ 1.14848117413306160e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_715_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile715)_ 1.14768179647162082e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_716_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile716)_ 1.14687355118751264e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_717_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile717)_ 1.14605642313154611e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_718_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile718)_ 1.14523039722582709e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_719_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile719)_ 1.14439545833316930e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_720_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile720)_ 1.14355159144220973e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_721_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile721)_ 1.14269878147782115e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_722_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile722)_ 1.14183701346415485e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_723_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile723)_ 1.14096627241611175e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_724_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile724)_ 1.14008654338024987e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_725_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile725)_ 1.13919781143956567e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_726_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile726)_ 1.13830006173667089e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_727_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile727)_ 1.13739327941916185e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_728_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile728)_ 1.13647744969939887e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_729_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile729)_ 1.13555255780894322e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_730_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile730)_ 1.13461858903099264e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_731_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile731)_ 1.13367552865914212e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_732_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile732)_ 1.13272336206233729e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_733_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile733)_ 1.13176207468554547e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_734_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile734)_ 1.13079165197591501e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_735_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile735)_ 1.12981207944338590e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_736_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile736)_ 1.12882334261915629e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_737_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile737)_ 1.12782542718233934e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_738_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile738)_ 1.12681831876888534e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_739_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile739)_ 1.12580200310281008e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_740_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile740)_ 1.12477646600645416e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_741_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile741)_ 1.12374169330694829e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_742_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile742)_ 1.12269767094507981e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_743_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile743)_ 1.12164438490999947e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_744_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile744)_ 1.12058182125868381e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_745_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile745)_ 1.11950996611658860e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_746_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile746)_ 1.11842880570696239e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_747_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile747)_ 1.11733832629920694e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_748_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile748)_ 1.11623851425726086e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_749_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile749)_ 1.11512935605017714e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_750_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile750)_ 1.11401083818098209e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_751_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile751)_ 1.11288294728833885e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_752_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile752)_ 1.11174567009478288e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_753_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile753)_ 1.11059899339306586e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_754_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile754)_ 1.10944290410517656e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_755_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile755)_ 1.10827738923019239e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_756_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile756)_ 1.10710243589876734e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_757_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile757)_ 1.10591803129634451e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_758_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile758)_ 1.10472416280095586e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_759_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile759)_ 1.10352081782821090e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_760_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile760)_ 1.10230798393507433e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_761_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile761)_ 1.10108564884119076e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_762_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile762)_ 1.09985380033678967e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_763_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile763)_ 1.09861242634791550e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_764_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile764)_ 1.09736151499759248e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_765_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile765)_ 1.09610105445875784e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_766_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile766)_ 1.09483103309955671e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_767_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile767)_ 1.09355143941061057e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_768_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile768)_ 1.09226226205660169e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_769_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile769)_ 1.09096348986326541e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_770_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile770)_ 1.08965511177903755e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_771_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile771)_ 1.08833711695731292e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_772_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile772)_ 1.08700949465267271e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_773_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile773)_ 1.08567223437936265e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_774_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile774)_ 1.08432532581787047e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_775_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile775)_ 1.08296875876603450e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_776_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile776)_ 1.08160252325802241e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_777_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile777)_ 1.08022660955702492e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_778_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile778)_ 1.07884100808627974e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_779_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile779)_ 1.07744570948257283e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_780_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile780)_ 1.07604070459380256e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_781_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile781)_ 1.07462598450237395e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_782_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile782)_ 1.07320154050230196e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_783_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile783)_ 1.07176736415392302e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_784_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile784)_ 1.07032344718839406e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_785_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile785)_ 1.06886978166139627e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_786_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile786)_ 1.06740635986314596e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_787_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile787)_ 1.06593317429528826e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_788_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile788)_ 1.06445021775792119e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_789_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile789)_ 1.06295748337994263e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_790_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile790)_ 1.06145496451241304e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_791_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile791)_ 1.05994265477402268e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_792_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile792)_ 1.05842054818229576e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_793_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile793)_ 1.05688863896183875e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_794_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile794)_ 1.05534692173957362e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_795_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile795)_ 1.05379539143240983e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_796_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile796)_ 1.05223404326204844e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_797_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile797)_ 1.05066287284001341e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_798_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile798)_ 1.04908187612450850e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_799_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile799)_ 1.04749104945778080e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_800_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile800)_ 1.04589038948473632e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_801_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile801)_ 1.04427989334228560e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_802_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile802)_ 1.04265955848081900e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_803_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile803)_ 1.04102938280006101e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_804_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile804)_ 1.03938936463358039e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_805_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile805)_ 1.03773950271108268e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_806_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile806)_ 1.03607979622486936e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_807_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile807)_ 1.03441024479236417e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_808_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile808)_ 1.03273084858990765e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_809_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile809)_ 1.03104160818302693e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_810_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile810)_ 1.02934252467167756e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_811_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile811)_ 1.02763359967580591e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_812_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile812)_ 1.02591483532630812e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_813_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile813)_ 1.02418623431208070e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_814_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile814)_ 1.02244779985460298e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_815_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile815)_ 1.02069953575561513e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_816_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile816)_ 1.01894144641727965e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_817_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile817)_ 1.01717353687409539e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_818_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile818)_ 1.01539581267145809e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_819_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile819)_ 1.01360828011951148e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_820_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile820)_ 1.01181094613857284e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_821_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile821)_ 1.01000381828593236e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_822_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile822)_ 1.00818690486388501e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_823_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile823)_ 1.00636021489665800e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_824_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile824)_ 1.00452375812437097e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_825_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile825)_ 1.00267754502019590e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_826_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile826)_ 1.00082158686037436e-02 +Plasma_triton_isotropic_Larmor_radius_at_point_827_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile827)_ 9.98955895719430553e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_828_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile828)_ 9.97080484529907010e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_829_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile829)_ 9.95195367001916811e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_830_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile830)_ 9.93300557795195709e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_831_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile831)_ 9.91396072344862683e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_832_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile832)_ 9.89481927171193161e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_833_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile833)_ 9.87558139634957775e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_834_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile834)_ 9.85624728064872155e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_835_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile835)_ 9.83681711839467544e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_836_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile836)_ 9.81729111404364488e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_837_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile837)_ 9.79766948151167272e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_838_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile838)_ 9.77795244717720967e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_839_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile839)_ 9.75814024711310277e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_840_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile840)_ 9.73823313029516767e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_841_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile841)_ 9.71823135692404666e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_842_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile842)_ 9.69813519971829061e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_843_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile843)_ 9.67794494381859181e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_844_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile844)_ 9.65766088773901445e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_845_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile845)_ 9.63728334316150785e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_846_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile846)_ 9.61681263578198324e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_847_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile847)_ 9.59624910492794421e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_848_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile848)_ 9.57559310510554262e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_849_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile849)_ 9.55484500582257958e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_850_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile850)_ 9.53400519197431656e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_851_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile851)_ 9.51307406474200326e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_852_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile852)_ 9.49205204092737342e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_853_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile853)_ 9.47093955532223551e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_854_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile854)_ 9.44973705974914632e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_855_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile855)_ 9.42844502348963269e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_856_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile856)_ 9.40706393551711019e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_857_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile857)_ 9.38559430252815588e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_858_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile858)_ 9.36403665242251278e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_859_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile859)_ 9.34239153189389375e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_860_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile860)_ 9.32065950975754891e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_861_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile861)_ 9.29884117525846265e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_862_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile862)_ 9.27693714112316770e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_863_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile863)_ 9.25494804194597689e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_864_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile864)_ 9.23287453636455029e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_865_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile865)_ 9.21071730709852564e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_866_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile866)_ 9.18847706291379095e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_867_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile867)_ 9.16615453683187510e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_868_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile868)_ 9.14375049011635459e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_869_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile869)_ 9.12126571084379695e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_870_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile870)_ 9.09870101567519622e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_871_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile871)_ 9.07605725051673258e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_872_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile872)_ 9.05333529187249929e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_873_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile873)_ 9.03053604700142232e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_874_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile874)_ 9.00766045592083647e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_875_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile875)_ 8.98470949173991312e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_876_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile876)_ 8.96168416148123217e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_877_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile877)_ 8.93858550864545277e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_878_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile878)_ 8.91541461236740329e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_879_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile879)_ 8.89217259030767627e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_880_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile880)_ 8.86886059895502891e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_881_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile881)_ 8.84547983554551630e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_882_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile882)_ 8.82203153861676158e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_883_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile883)_ 8.79851699005522805e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_884_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile884)_ 8.77493751626678108e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_885_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile885)_ 8.75129448994057743e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_886_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile886)_ 8.72758933106549534e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_887_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile887)_ 8.70382350975844668e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_888_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile888)_ 8.67999854563029222e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_889_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile889)_ 8.65611601276545899e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_890_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile890)_ 8.63217753850751071e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_891_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile891)_ 8.60818480723274729e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_892_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile892)_ 8.58413956150488530e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_893_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile893)_ 8.56004360442497170e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_894_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile894)_ 8.53589880225191430e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_895_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile895)_ 8.51170708500985709e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_896_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile896)_ 8.48747045110933955e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_897_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile897)_ 8.46319096752807740e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_898_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile898)_ 8.43887077402580461e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_899_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile899)_ 8.41451208519940382e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_900_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile900)_ 8.39011719280418483e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_901_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile901)_ 8.36568846902888477e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_902_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile902)_ 8.34122836915500258e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_903_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile903)_ 8.31673943594634681e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_904_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile904)_ 8.29222430106920164e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_905_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile905)_ 8.26768568945441228e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_906_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile906)_ 8.24312642344165840e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_907_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile907)_ 8.21854942538085241e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_908_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile908)_ 8.19395772191332424e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_909_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile909)_ 8.16935444872909575e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_910_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile910)_ 8.14474285432158218e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_911_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile911)_ 8.12012630483567761e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_912_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile912)_ 8.09550828790316611e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_913_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile913)_ 8.07089241916645987e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_914_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile914)_ 8.04628244622314706e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_915_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile915)_ 8.02168225519843923e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_916_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile916)_ 7.99709587527527854e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_917_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile917)_ 7.97252748644766696e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_918_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile918)_ 7.94798142458868866e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_919_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile919)_ 7.92346218904196875e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_920_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile920)_ 7.89897444994524557e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_921_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile921)_ 7.87452305601206090e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_922_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile922)_ 7.85011304162599143e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_923_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile923)_ 7.82574963636659821e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_924_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile924)_ 7.80143827453900433e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_925_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile925)_ 7.77718460336508481e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_926_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile926)_ 7.75299449582287411e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_927_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile927)_ 7.72887405892217026e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_928_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile928)_ 7.70482964732811457e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_929_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile929)_ 7.68086787603143323e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_930_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile930)_ 7.65699563262222781e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_931_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile931)_ 7.63322009325005050e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_932_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile932)_ 7.60954873712407168e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_933_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile933)_ 7.58598936484353257e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_934_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile934)_ 7.56255011545614326e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_935_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile935)_ 7.53923948540622703e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_936_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile936)_ 7.51606635351170001e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_937_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile937)_ 7.49303999993078916e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_938_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile938)_ 7.47017013450315334e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_939_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile939)_ 7.44746692347796318e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_940_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile940)_ 7.42494102147194229e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_941_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile941)_ 7.40260360404452512e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_942_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile942)_ 7.38046640480111236e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_943_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile943)_ 7.35854175800174440e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_944_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile944)_ 7.33684264451772532e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_945_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile945)_ 7.31538274351808872e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_946_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile946)_ 7.29417649096968275e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_947_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile947)_ 7.27323914450295900e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_948_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile948)_ 7.25258686094614434e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_949_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile949)_ 7.23223677874853740e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_950_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile950)_ 7.21220711940809191e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_951_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile951)_ 7.19251730054960934e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_952_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile952)_ 7.17318806977953159e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_953_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile953)_ 7.15424166297630275e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_954_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile954)_ 7.13570198762731624e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_955_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile955)_ 7.11759485207690869e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_956_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile956)_ 7.09994823326278845e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_957_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile957)_ 7.08279261209831916e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_958_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile958)_ 7.06616138833390892e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_959_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile959)_ 7.05009140643263893e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_960_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile960)_ 7.03462363060645968e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_961_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile961)_ 7.01980403201583805e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_962_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile962)_ 7.00568478394319148e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_963_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile963)_ 6.99232591207528051e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_964_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile964)_ 6.97979766084825485e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_965_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile965)_ 6.96818403195438064e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_966_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile966)_ 6.95758835752240731e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_967_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile967)_ 6.94814274678754937e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_968_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile968)_ 6.94002574551637677e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_969_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile969)_ 6.93350065706899513e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_970_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile970)_ 6.92902342945810826e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_971_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile971)_ 6.92790421725438931e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_972_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile972)_ 6.81705097639150135e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_973_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile973)_ 6.70412910088180602e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_974_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile974)_ 6.58903205110721989e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_975_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile975)_ 6.47164358678065967e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_976_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile976)_ 6.35183647427689426e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_977_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile977)_ 6.22947097221685734e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_978_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile978)_ 6.10439303172828109e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_979_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile979)_ 5.97643214944226005e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_980_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile980)_ 5.84539879188394809e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_981_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile981)_ 5.71108126846880861e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_982_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile982)_ 5.57324191708604734e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_983_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile983)_ 5.43161239883021858e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_984_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile984)_ 5.28588783186866810e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_985_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile985)_ 5.13571940611459027e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_986_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile986)_ 4.98070494624052416e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_987_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile987)_ 4.82037670479349561e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_988_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile988)_ 4.65418530273204161e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_989_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile989)_ 4.48147822891676716e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_990_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile990)_ 4.30147044606558112e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_991_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile991)_ 4.11320325984896110e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_992_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile992)_ 3.91548513762837204e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_993_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile993)_ 3.70680374268730992e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_994_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile994)_ 3.48518995432054628e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_995_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile995)_ 3.24799730976654648e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_996_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile996)_ 2.99152203434704727e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_997_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile997)_ 2.71029505154274548e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_998_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile998)_ 2.39561467007472608e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_999_______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile999)_ 2.03199724701174375e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_1000______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1000)_ 1.58613565923787047e-03 +Plasma_triton_isotropic_Larmor_radius_at_point_1001______________________ (radius_plasma_triton_toroidal_larmor_isotropic_profile1001)_ 9.48371117191034699e-04 +Volume_averaged_electron_thermal_velocity_(m/s)__________________________ (vel_plasma_electron_vol_avg)__ 6.50540459436968490e+07 +Plasma_electron_thermal_velocity_at_point_0______________________________ (vel_plasma_electron_profile0)_ 9.16840087363297343e+07 +Plasma_electron_thermal_velocity_at_point_1______________________________ (vel_plasma_electron_profile1)_ 9.16837890471011251e+07 +Plasma_electron_thermal_velocity_at_point_2______________________________ (vel_plasma_electron_profile2)_ 9.16831299779644907e+07 +Plasma_electron_thermal_velocity_at_point_3______________________________ (vel_plasma_electron_profile3)_ 9.16820315245672017e+07 +Plasma_electron_thermal_velocity_at_point_4______________________________ (vel_plasma_electron_profile4)_ 9.16804936796544939e+07 +Plasma_electron_thermal_velocity_at_point_5______________________________ (vel_plasma_electron_profile5)_ 9.16785164330704063e+07 +Plasma_electron_thermal_velocity_at_point_6______________________________ (vel_plasma_electron_profile6)_ 9.16760997717570215e+07 +Plasma_electron_thermal_velocity_at_point_7______________________________ (vel_plasma_electron_profile7)_ 9.16732436797547191e+07 +Plasma_electron_thermal_velocity_at_point_8______________________________ (vel_plasma_electron_profile8)_ 9.16699481382032931e+07 +Plasma_electron_thermal_velocity_at_point_9______________________________ (vel_plasma_electron_profile9)_ 9.16662131253404021e+07 +Plasma_electron_thermal_velocity_at_point_10_____________________________ (vel_plasma_electron_profile10)_ 9.16620386165031344e+07 +Plasma_electron_thermal_velocity_at_point_11_____________________________ (vel_plasma_electron_profile11)_ 9.16574245841281414e+07 +Plasma_electron_thermal_velocity_at_point_12_____________________________ (vel_plasma_electron_profile12)_ 9.16523709977506995e+07 +Plasma_electron_thermal_velocity_at_point_13_____________________________ (vel_plasma_electron_profile13)_ 9.16468778240063936e+07 +Plasma_electron_thermal_velocity_at_point_14_____________________________ (vel_plasma_electron_profile14)_ 9.16409450266306698e+07 +Plasma_electron_thermal_velocity_at_point_15_____________________________ (vel_plasma_electron_profile15)_ 9.16345725664591491e+07 +Plasma_electron_thermal_velocity_at_point_16_____________________________ (vel_plasma_electron_profile16)_ 9.16277604014285803e+07 +Plasma_electron_thermal_velocity_at_point_17_____________________________ (vel_plasma_electron_profile17)_ 9.16205084865761250e+07 +Plasma_electron_thermal_velocity_at_point_18_____________________________ (vel_plasma_electron_profile18)_ 9.16128167740410119e+07 +Plasma_electron_thermal_velocity_at_point_19_____________________________ (vel_plasma_electron_profile19)_ 9.16046852130639702e+07 +Plasma_electron_thermal_velocity_at_point_20_____________________________ (vel_plasma_electron_profile20)_ 9.15961137499882430e+07 +Plasma_electron_thermal_velocity_at_point_21_____________________________ (vel_plasma_electron_profile21)_ 9.15871023282597363e+07 +Plasma_electron_thermal_velocity_at_point_22_____________________________ (vel_plasma_electron_profile22)_ 9.15776508884279579e+07 +Plasma_electron_thermal_velocity_at_point_23_____________________________ (vel_plasma_electron_profile23)_ 9.15677593681461215e+07 +Plasma_electron_thermal_velocity_at_point_24_____________________________ (vel_plasma_electron_profile24)_ 9.15574277021719813e+07 +Plasma_electron_thermal_velocity_at_point_25_____________________________ (vel_plasma_electron_profile25)_ 9.15466558223686814e+07 +Plasma_electron_thermal_velocity_at_point_26_____________________________ (vel_plasma_electron_profile26)_ 9.15354436577044725e+07 +Plasma_electron_thermal_velocity_at_point_27_____________________________ (vel_plasma_electron_profile27)_ 9.15237911342540532e+07 +Plasma_electron_thermal_velocity_at_point_28_____________________________ (vel_plasma_electron_profile28)_ 9.15116981752000153e+07 +Plasma_electron_thermal_velocity_at_point_29_____________________________ (vel_plasma_electron_profile29)_ 9.14991647008316219e+07 +Plasma_electron_thermal_velocity_at_point_30_____________________________ (vel_plasma_electron_profile30)_ 9.14861906285474300e+07 +Plasma_electron_thermal_velocity_at_point_31_____________________________ (vel_plasma_electron_profile31)_ 9.14727758728552610e+07 +Plasma_electron_thermal_velocity_at_point_32_____________________________ (vel_plasma_electron_profile32)_ 9.14589203453727812e+07 +Plasma_electron_thermal_velocity_at_point_33_____________________________ (vel_plasma_electron_profile33)_ 9.14446239548290670e+07 +Plasma_electron_thermal_velocity_at_point_34_____________________________ (vel_plasma_electron_profile34)_ 9.14298866070649475e+07 +Plasma_electron_thermal_velocity_at_point_35_____________________________ (vel_plasma_electron_profile35)_ 9.14147082050340772e+07 +Plasma_electron_thermal_velocity_at_point_36_____________________________ (vel_plasma_electron_profile36)_ 9.13990886488039047e+07 +Plasma_electron_thermal_velocity_at_point_37_____________________________ (vel_plasma_electron_profile37)_ 9.13830278355570436e+07 +Plasma_electron_thermal_velocity_at_point_38_____________________________ (vel_plasma_electron_profile38)_ 9.13665256595917642e+07 +Plasma_electron_thermal_velocity_at_point_39_____________________________ (vel_plasma_electron_profile39)_ 9.13495820123230815e+07 +Plasma_electron_thermal_velocity_at_point_40_____________________________ (vel_plasma_electron_profile40)_ 9.13321967822842151e+07 +Plasma_electron_thermal_velocity_at_point_41_____________________________ (vel_plasma_electron_profile41)_ 9.13143698551275879e+07 +Plasma_electron_thermal_velocity_at_point_42_____________________________ (vel_plasma_electron_profile42)_ 9.12961011136264205e+07 +Plasma_electron_thermal_velocity_at_point_43_____________________________ (vel_plasma_electron_profile43)_ 9.12773904376745969e+07 +Plasma_electron_thermal_velocity_at_point_44_____________________________ (vel_plasma_electron_profile44)_ 9.12582377042900175e+07 +Plasma_electron_thermal_velocity_at_point_45_____________________________ (vel_plasma_electron_profile45)_ 9.12386427876141816e+07 +Plasma_electron_thermal_velocity_at_point_46_____________________________ (vel_plasma_electron_profile46)_ 9.12186055589143187e+07 +Plasma_electron_thermal_velocity_at_point_47_____________________________ (vel_plasma_electron_profile47)_ 9.11981258865846097e+07 +Plasma_electron_thermal_velocity_at_point_48_____________________________ (vel_plasma_electron_profile48)_ 9.11772036361479610e+07 +Plasma_electron_thermal_velocity_at_point_49_____________________________ (vel_plasma_electron_profile49)_ 9.11558386702568084e+07 +Plasma_electron_thermal_velocity_at_point_50_____________________________ (vel_plasma_electron_profile50)_ 9.11340308486954570e+07 +Plasma_electron_thermal_velocity_at_point_51_____________________________ (vel_plasma_electron_profile51)_ 9.11117800283810645e+07 +Plasma_electron_thermal_velocity_at_point_52_____________________________ (vel_plasma_electron_profile52)_ 9.10890860633654147e+07 +Plasma_electron_thermal_velocity_at_point_53_____________________________ (vel_plasma_electron_profile53)_ 9.10659488048374206e+07 +Plasma_electron_thermal_velocity_at_point_54_____________________________ (vel_plasma_electron_profile54)_ 9.10423681011233479e+07 +Plasma_electron_thermal_velocity_at_point_55_____________________________ (vel_plasma_electron_profile55)_ 9.10183437976896614e+07 +Plasma_electron_thermal_velocity_at_point_56_____________________________ (vel_plasma_electron_profile56)_ 9.09938757371449322e+07 +Plasma_electron_thermal_velocity_at_point_57_____________________________ (vel_plasma_electron_profile57)_ 9.09689637592409551e+07 +Plasma_electron_thermal_velocity_at_point_58_____________________________ (vel_plasma_electron_profile58)_ 9.09436077008760273e+07 +Plasma_electron_thermal_velocity_at_point_59_____________________________ (vel_plasma_electron_profile59)_ 9.09178073960952312e+07 +Plasma_electron_thermal_velocity_at_point_60_____________________________ (vel_plasma_electron_profile60)_ 9.08915626760938913e+07 +Plasma_electron_thermal_velocity_at_point_61_____________________________ (vel_plasma_electron_profile61)_ 9.08648733692192733e+07 +Plasma_electron_thermal_velocity_at_point_62_____________________________ (vel_plasma_electron_profile62)_ 9.08377393009724617e+07 +Plasma_electron_thermal_velocity_at_point_63_____________________________ (vel_plasma_electron_profile63)_ 9.08101602940115184e+07 +Plasma_electron_thermal_velocity_at_point_64_____________________________ (vel_plasma_electron_profile64)_ 9.07821361681526303e+07 +Plasma_electron_thermal_velocity_at_point_65_____________________________ (vel_plasma_electron_profile65)_ 9.07536667403731197e+07 +Plasma_electron_thermal_velocity_at_point_66_____________________________ (vel_plasma_electron_profile66)_ 9.07247518248142153e+07 +Plasma_electron_thermal_velocity_at_point_67_____________________________ (vel_plasma_electron_profile67)_ 9.06953912327828556e+07 +Plasma_electron_thermal_velocity_at_point_68_____________________________ (vel_plasma_electron_profile68)_ 9.06655847727552056e+07 +Plasma_electron_thermal_velocity_at_point_69_____________________________ (vel_plasma_electron_profile69)_ 9.06353322503781617e+07 +Plasma_electron_thermal_velocity_at_point_70_____________________________ (vel_plasma_electron_profile70)_ 9.06046334684728831e+07 +Plasma_electron_thermal_velocity_at_point_71_____________________________ (vel_plasma_electron_profile71)_ 9.05734882270376533e+07 +Plasma_electron_thermal_velocity_at_point_72_____________________________ (vel_plasma_electron_profile72)_ 9.05418963232500702e+07 +Plasma_electron_thermal_velocity_at_point_73_____________________________ (vel_plasma_electron_profile73)_ 9.05098575514711887e+07 +Plasma_electron_thermal_velocity_at_point_74_____________________________ (vel_plasma_electron_profile74)_ 9.04773717032475919e+07 +Plasma_electron_thermal_velocity_at_point_75_____________________________ (vel_plasma_electron_profile75)_ 9.04444385673140734e+07 +Plasma_electron_thermal_velocity_at_point_76_____________________________ (vel_plasma_electron_profile76)_ 9.04110579295989573e+07 +Plasma_electron_thermal_velocity_at_point_77_____________________________ (vel_plasma_electron_profile77)_ 9.03772295732252002e+07 +Plasma_electron_thermal_velocity_at_point_78_____________________________ (vel_plasma_electron_profile78)_ 9.03429532785145640e+07 +Plasma_electron_thermal_velocity_at_point_79_____________________________ (vel_plasma_electron_profile79)_ 9.03082288229912668e+07 +Plasma_electron_thermal_velocity_at_point_80_____________________________ (vel_plasma_electron_profile80)_ 9.02730559813858420e+07 +Plasma_electron_thermal_velocity_at_point_81_____________________________ (vel_plasma_electron_profile81)_ 9.02374345256380588e+07 +Plasma_electron_thermal_velocity_at_point_82_____________________________ (vel_plasma_electron_profile82)_ 9.02013642249006480e+07 +Plasma_electron_thermal_velocity_at_point_83_____________________________ (vel_plasma_electron_profile83)_ 9.01648448455443084e+07 +Plasma_electron_thermal_velocity_at_point_84_____________________________ (vel_plasma_electron_profile84)_ 9.01278761511607021e+07 +Plasma_electron_thermal_velocity_at_point_85_____________________________ (vel_plasma_electron_profile85)_ 9.00904579025661945e+07 +Plasma_electron_thermal_velocity_at_point_86_____________________________ (vel_plasma_electron_profile86)_ 9.00525898578069508e+07 +Plasma_electron_thermal_velocity_at_point_87_____________________________ (vel_plasma_electron_profile87)_ 9.00142717721629888e+07 +Plasma_electron_thermal_velocity_at_point_88_____________________________ (vel_plasma_electron_profile88)_ 8.99755033981520236e+07 +Plasma_electron_thermal_velocity_at_point_89_____________________________ (vel_plasma_electron_profile89)_ 8.99362844855347723e+07 +Plasma_electron_thermal_velocity_at_point_90_____________________________ (vel_plasma_electron_profile90)_ 8.98966147813183367e+07 +Plasma_electron_thermal_velocity_at_point_91_____________________________ (vel_plasma_electron_profile91)_ 8.98564940297624171e+07 +Plasma_electron_thermal_velocity_at_point_92_____________________________ (vel_plasma_electron_profile92)_ 8.98159219723832309e+07 +Plasma_electron_thermal_velocity_at_point_93_____________________________ (vel_plasma_electron_profile93)_ 8.97748983479589969e+07 +Plasma_electron_thermal_velocity_at_point_94_____________________________ (vel_plasma_electron_profile94)_ 8.97334228925341517e+07 +Plasma_electron_thermal_velocity_at_point_95_____________________________ (vel_plasma_electron_profile95)_ 8.96914953394255638e+07 +Plasma_electron_thermal_velocity_at_point_96_____________________________ (vel_plasma_electron_profile96)_ 8.96491154192277193e+07 +Plasma_electron_thermal_velocity_at_point_97_____________________________ (vel_plasma_electron_profile97)_ 8.96062828598174453e+07 +Plasma_electron_thermal_velocity_at_point_98_____________________________ (vel_plasma_electron_profile98)_ 8.95629973863605261e+07 +Plasma_electron_thermal_velocity_at_point_99_____________________________ (vel_plasma_electron_profile99)_ 8.95192587213171721e+07 +Plasma_electron_thermal_velocity_at_point_100____________________________ (vel_plasma_electron_profile100)_ 8.94750665844472200e+07 +Plasma_electron_thermal_velocity_at_point_101____________________________ (vel_plasma_electron_profile101)_ 8.94304206928173602e+07 +Plasma_electron_thermal_velocity_at_point_102____________________________ (vel_plasma_electron_profile102)_ 8.93853207608064264e+07 +Plasma_electron_thermal_velocity_at_point_103____________________________ (vel_plasma_electron_profile103)_ 8.93397665001125485e+07 +Plasma_electron_thermal_velocity_at_point_104____________________________ (vel_plasma_electron_profile104)_ 8.92937576197586507e+07 +Plasma_electron_thermal_velocity_at_point_105____________________________ (vel_plasma_electron_profile105)_ 8.92472938260999918e+07 +Plasma_electron_thermal_velocity_at_point_106____________________________ (vel_plasma_electron_profile106)_ 8.92003748228311092e+07 +Plasma_electron_thermal_velocity_at_point_107____________________________ (vel_plasma_electron_profile107)_ 8.91530003109916449e+07 +Plasma_electron_thermal_velocity_at_point_108____________________________ (vel_plasma_electron_profile108)_ 8.91051699889752567e+07 +Plasma_electron_thermal_velocity_at_point_109____________________________ (vel_plasma_electron_profile109)_ 8.90568835525355339e+07 +Plasma_electron_thermal_velocity_at_point_110____________________________ (vel_plasma_electron_profile110)_ 8.90081406947940290e+07 +Plasma_electron_thermal_velocity_at_point_111____________________________ (vel_plasma_electron_profile111)_ 8.89589411062483191e+07 +Plasma_electron_thermal_velocity_at_point_112____________________________ (vel_plasma_electron_profile112)_ 8.89092844747797251e+07 +Plasma_electron_thermal_velocity_at_point_113____________________________ (vel_plasma_electron_profile113)_ 8.88591704856611341e+07 +Plasma_electron_thermal_velocity_at_point_114____________________________ (vel_plasma_electron_profile114)_ 8.88085988215654492e+07 +Plasma_electron_thermal_velocity_at_point_115____________________________ (vel_plasma_electron_profile115)_ 8.87575691625742912e+07 +Plasma_electron_thermal_velocity_at_point_116____________________________ (vel_plasma_electron_profile116)_ 8.87060811861862242e+07 +Plasma_electron_thermal_velocity_at_point_117____________________________ (vel_plasma_electron_profile117)_ 8.86541345673267394e+07 +Plasma_electron_thermal_velocity_at_point_118____________________________ (vel_plasma_electron_profile118)_ 8.86017289783560038e+07 +Plasma_electron_thermal_velocity_at_point_119____________________________ (vel_plasma_electron_profile119)_ 8.85488640890789926e+07 +Plasma_electron_thermal_velocity_at_point_120____________________________ (vel_plasma_electron_profile120)_ 8.84955395667548031e+07 +Plasma_electron_thermal_velocity_at_point_121____________________________ (vel_plasma_electron_profile121)_ 8.84417550761071742e+07 +Plasma_electron_thermal_velocity_at_point_122____________________________ (vel_plasma_electron_profile122)_ 8.83875102793333083e+07 +Plasma_electron_thermal_velocity_at_point_123____________________________ (vel_plasma_electron_profile123)_ 8.83328048361149877e+07 +Plasma_electron_thermal_velocity_at_point_124____________________________ (vel_plasma_electron_profile124)_ 8.82776384036289901e+07 +Plasma_electron_thermal_velocity_at_point_125____________________________ (vel_plasma_electron_profile125)_ 8.82220106365574002e+07 +Plasma_electron_thermal_velocity_at_point_126____________________________ (vel_plasma_electron_profile126)_ 8.81659211870995313e+07 +Plasma_electron_thermal_velocity_at_point_127____________________________ (vel_plasma_electron_profile127)_ 8.81093697049819380e+07 +Plasma_electron_thermal_velocity_at_point_128____________________________ (vel_plasma_electron_profile128)_ 8.80523558374716043e+07 +Plasma_electron_thermal_velocity_at_point_129____________________________ (vel_plasma_electron_profile129)_ 8.79948792293861806e+07 +Plasma_electron_thermal_velocity_at_point_130____________________________ (vel_plasma_electron_profile130)_ 8.79369395231069475e+07 +Plasma_electron_thermal_velocity_at_point_131____________________________ (vel_plasma_electron_profile131)_ 8.78785363585911244e+07 +Plasma_electron_thermal_velocity_at_point_132____________________________ (vel_plasma_electron_profile132)_ 8.78196693733844161e+07 +Plasma_electron_thermal_velocity_at_point_133____________________________ (vel_plasma_electron_profile133)_ 8.77603382026339620e+07 +Plasma_electron_thermal_velocity_at_point_134____________________________ (vel_plasma_electron_profile134)_ 8.77005424791018963e+07 +Plasma_electron_thermal_velocity_at_point_135____________________________ (vel_plasma_electron_profile135)_ 8.76402818331784457e+07 +Plasma_electron_thermal_velocity_at_point_136____________________________ (vel_plasma_electron_profile136)_ 8.75795558928966820e+07 +Plasma_electron_thermal_velocity_at_point_137____________________________ (vel_plasma_electron_profile137)_ 8.75183642839457244e+07 +Plasma_electron_thermal_velocity_at_point_138____________________________ (vel_plasma_electron_profile138)_ 8.74567066296860725e+07 +Plasma_electron_thermal_velocity_at_point_139____________________________ (vel_plasma_electron_profile139)_ 8.73945825511645228e+07 +Plasma_electron_thermal_velocity_at_point_140____________________________ (vel_plasma_electron_profile140)_ 8.73319916671285182e+07 +Plasma_electron_thermal_velocity_at_point_141____________________________ (vel_plasma_electron_profile141)_ 8.72689335940431505e+07 +Plasma_electron_thermal_velocity_at_point_142____________________________ (vel_plasma_electron_profile142)_ 8.72054079461060762e+07 +Plasma_electron_thermal_velocity_at_point_143____________________________ (vel_plasma_electron_profile143)_ 8.71414143352643698e+07 +Plasma_electron_thermal_velocity_at_point_144____________________________ (vel_plasma_electron_profile144)_ 8.70769523712311387e+07 +Plasma_electron_thermal_velocity_at_point_145____________________________ (vel_plasma_electron_profile145)_ 8.70120216615025401e+07 +Plasma_electron_thermal_velocity_at_point_146____________________________ (vel_plasma_electron_profile146)_ 8.69466218113756627e+07 +Plasma_electron_thermal_velocity_at_point_147____________________________ (vel_plasma_electron_profile147)_ 8.68807524239660800e+07 +Plasma_electron_thermal_velocity_at_point_148____________________________ (vel_plasma_electron_profile148)_ 8.68144131002258211e+07 +Plasma_electron_thermal_velocity_at_point_149____________________________ (vel_plasma_electron_profile149)_ 8.67476034389633685e+07 +Plasma_electron_thermal_velocity_at_point_150____________________________ (vel_plasma_electron_profile150)_ 8.66803230368619263e+07 +Plasma_electron_thermal_velocity_at_point_151____________________________ (vel_plasma_electron_profile151)_ 8.66125714884990007e+07 +Plasma_electron_thermal_velocity_at_point_152____________________________ (vel_plasma_electron_profile152)_ 8.65443483863672912e+07 +Plasma_electron_thermal_velocity_at_point_153____________________________ (vel_plasma_electron_profile153)_ 8.64756533208941668e+07 +Plasma_electron_thermal_velocity_at_point_154____________________________ (vel_plasma_electron_profile154)_ 8.64064858804635406e+07 +Plasma_electron_thermal_velocity_at_point_155____________________________ (vel_plasma_electron_profile155)_ 8.63368456514372975e+07 +Plasma_electron_thermal_velocity_at_point_156____________________________ (vel_plasma_electron_profile156)_ 8.62667322181766629e+07 +Plasma_electron_thermal_velocity_at_point_157____________________________ (vel_plasma_electron_profile157)_ 8.61961451630658060e+07 +Plasma_electron_thermal_velocity_at_point_158____________________________ (vel_plasma_electron_profile158)_ 8.61250840665340871e+07 +Plasma_electron_thermal_velocity_at_point_159____________________________ (vel_plasma_electron_profile159)_ 8.60535485070794076e+07 +Plasma_electron_thermal_velocity_at_point_160____________________________ (vel_plasma_electron_profile160)_ 8.59815380612933785e+07 +Plasma_electron_thermal_velocity_at_point_161____________________________ (vel_plasma_electron_profile161)_ 8.59090523038851321e+07 +Plasma_electron_thermal_velocity_at_point_162____________________________ (vel_plasma_electron_profile162)_ 8.58360908077066243e+07 +Plasma_electron_thermal_velocity_at_point_163____________________________ (vel_plasma_electron_profile163)_ 8.57626531437791735e+07 +Plasma_electron_thermal_velocity_at_point_164____________________________ (vel_plasma_electron_profile164)_ 8.56887388813185394e+07 +Plasma_electron_thermal_velocity_at_point_165____________________________ (vel_plasma_electron_profile165)_ 8.56143475877632946e+07 +Plasma_electron_thermal_velocity_at_point_166____________________________ (vel_plasma_electron_profile166)_ 8.55394788288018256e+07 +Plasma_electron_thermal_velocity_at_point_167____________________________ (vel_plasma_electron_profile167)_ 8.54641321684006006e+07 +Plasma_electron_thermal_velocity_at_point_168____________________________ (vel_plasma_electron_profile168)_ 8.53883071688331366e+07 +Plasma_electron_thermal_velocity_at_point_169____________________________ (vel_plasma_electron_profile169)_ 8.53120033907093555e+07 +Plasma_electron_thermal_velocity_at_point_170____________________________ (vel_plasma_electron_profile170)_ 8.52352203930067271e+07 +Plasma_electron_thermal_velocity_at_point_171____________________________ (vel_plasma_electron_profile171)_ 8.51579577330999225e+07 +Plasma_electron_thermal_velocity_at_point_172____________________________ (vel_plasma_electron_profile172)_ 8.50802149667935967e+07 +Plasma_electron_thermal_velocity_at_point_173____________________________ (vel_plasma_electron_profile173)_ 8.50019916483539343e+07 +Plasma_electron_thermal_velocity_at_point_174____________________________ (vel_plasma_electron_profile174)_ 8.49232873305422515e+07 +Plasma_electron_thermal_velocity_at_point_175____________________________ (vel_plasma_electron_profile175)_ 8.48441015646490902e+07 +Plasma_electron_thermal_velocity_at_point_176____________________________ (vel_plasma_electron_profile176)_ 8.47644339005281031e+07 +Plasma_electron_thermal_velocity_at_point_177____________________________ (vel_plasma_electron_profile177)_ 8.46842838866323084e+07 +Plasma_electron_thermal_velocity_at_point_178____________________________ (vel_plasma_electron_profile178)_ 8.46036510700494796e+07 +Plasma_electron_thermal_velocity_at_point_179____________________________ (vel_plasma_electron_profile179)_ 8.45225349965404421e+07 +Plasma_electron_thermal_velocity_at_point_180____________________________ (vel_plasma_electron_profile180)_ 8.44409352105759084e+07 +Plasma_electron_thermal_velocity_at_point_181____________________________ (vel_plasma_electron_profile181)_ 8.43588512553756535e+07 +Plasma_electron_thermal_velocity_at_point_182____________________________ (vel_plasma_electron_profile182)_ 8.42762826729485691e+07 +Plasma_electron_thermal_velocity_at_point_183____________________________ (vel_plasma_electron_profile183)_ 8.41932290041329712e+07 +Plasma_electron_thermal_velocity_at_point_184____________________________ (vel_plasma_electron_profile184)_ 8.41096897886375487e+07 +Plasma_electron_thermal_velocity_at_point_185____________________________ (vel_plasma_electron_profile185)_ 8.40256645650852621e+07 +Plasma_electron_thermal_velocity_at_point_186____________________________ (vel_plasma_electron_profile186)_ 8.39411528710554093e+07 +Plasma_electron_thermal_velocity_at_point_187____________________________ (vel_plasma_electron_profile187)_ 8.38561542431289107e+07 +Plasma_electron_thermal_velocity_at_point_188____________________________ (vel_plasma_electron_profile188)_ 8.37706682169333249e+07 +Plasma_electron_thermal_velocity_at_point_189____________________________ (vel_plasma_electron_profile189)_ 8.36846943271894604e+07 +Plasma_electron_thermal_velocity_at_point_190____________________________ (vel_plasma_electron_profile190)_ 8.35982321077596545e+07 +Plasma_electron_thermal_velocity_at_point_191____________________________ (vel_plasma_electron_profile191)_ 8.35112810916954726e+07 +Plasma_electron_thermal_velocity_at_point_192____________________________ (vel_plasma_electron_profile192)_ 8.34238408112874329e+07 +Plasma_electron_thermal_velocity_at_point_193____________________________ (vel_plasma_electron_profile193)_ 8.33359107981170267e+07 +Plasma_electron_thermal_velocity_at_point_194____________________________ (vel_plasma_electron_profile194)_ 8.32474905831076652e+07 +Plasma_electron_thermal_velocity_at_point_195____________________________ (vel_plasma_electron_profile195)_ 8.31585796965792328e+07 +Plasma_electron_thermal_velocity_at_point_196____________________________ (vel_plasma_electron_profile196)_ 8.30691776683009565e+07 +Plasma_electron_thermal_velocity_at_point_197____________________________ (vel_plasma_electron_profile197)_ 8.29792840275485367e+07 +Plasma_electron_thermal_velocity_at_point_198____________________________ (vel_plasma_electron_profile198)_ 8.28888983031606227e+07 +Plasma_electron_thermal_velocity_at_point_199____________________________ (vel_plasma_electron_profile199)_ 8.27980200235974938e+07 +Plasma_electron_thermal_velocity_at_point_200____________________________ (vel_plasma_electron_profile200)_ 8.27066487170003653e+07 +Plasma_electron_thermal_velocity_at_point_201____________________________ (vel_plasma_electron_profile201)_ 8.26147839112524986e+07 +Plasma_electron_thermal_velocity_at_point_202____________________________ (vel_plasma_electron_profile202)_ 8.25224251340419501e+07 +Plasma_electron_thermal_velocity_at_point_203____________________________ (vel_plasma_electron_profile203)_ 8.24295719129260331e+07 +Plasma_electron_thermal_velocity_at_point_204____________________________ (vel_plasma_electron_profile204)_ 8.23362237753953934e+07 +Plasma_electron_thermal_velocity_at_point_205____________________________ (vel_plasma_electron_profile205)_ 8.22423802489419132e+07 +Plasma_electron_thermal_velocity_at_point_206____________________________ (vel_plasma_electron_profile206)_ 8.21480408611268848e+07 +Plasma_electron_thermal_velocity_at_point_207____________________________ (vel_plasma_electron_profile207)_ 8.20532051396507472e+07 +Plasma_electron_thermal_velocity_at_point_208____________________________ (vel_plasma_electron_profile208)_ 8.19578726124258041e+07 +Plasma_electron_thermal_velocity_at_point_209____________________________ (vel_plasma_electron_profile209)_ 8.18620428076483905e+07 +Plasma_electron_thermal_velocity_at_point_210____________________________ (vel_plasma_electron_profile210)_ 8.17657152538740933e+07 +Plasma_electron_thermal_velocity_at_point_211____________________________ (vel_plasma_electron_profile211)_ 8.16688894800951332e+07 +Plasma_electron_thermal_velocity_at_point_212____________________________ (vel_plasma_electron_profile212)_ 8.15715650158181489e+07 +Plasma_electron_thermal_velocity_at_point_213____________________________ (vel_plasma_electron_profile213)_ 8.14737413911456615e+07 +Plasma_electron_thermal_velocity_at_point_214____________________________ (vel_plasma_electron_profile214)_ 8.13754181368563324e+07 +Plasma_electron_thermal_velocity_at_point_215____________________________ (vel_plasma_electron_profile215)_ 8.12765947844915539e+07 +Plasma_electron_thermal_velocity_at_point_216____________________________ (vel_plasma_electron_profile216)_ 8.11772708664395511e+07 +Plasma_electron_thermal_velocity_at_point_217____________________________ (vel_plasma_electron_profile217)_ 8.10774459160246104e+07 +Plasma_electron_thermal_velocity_at_point_218____________________________ (vel_plasma_electron_profile218)_ 8.09771194675967991e+07 +Plasma_electron_thermal_velocity_at_point_219____________________________ (vel_plasma_electron_profile219)_ 8.08762910566240251e+07 +Plasma_electron_thermal_velocity_at_point_220____________________________ (vel_plasma_electron_profile220)_ 8.07749602197878212e+07 +Plasma_electron_thermal_velocity_at_point_221____________________________ (vel_plasma_electron_profile221)_ 8.06731264950774312e+07 +Plasma_electron_thermal_velocity_at_point_222____________________________ (vel_plasma_electron_profile222)_ 8.05707894218912572e+07 +Plasma_electron_thermal_velocity_at_point_223____________________________ (vel_plasma_electron_profile223)_ 8.04679485411366075e+07 +Plasma_electron_thermal_velocity_at_point_224____________________________ (vel_plasma_electron_profile224)_ 8.03646033953337669e+07 +Plasma_electron_thermal_velocity_at_point_225____________________________ (vel_plasma_electron_profile225)_ 8.02607535287214369e+07 +Plasma_electron_thermal_velocity_at_point_226____________________________ (vel_plasma_electron_profile226)_ 8.01563984873667210e+07 +Plasma_electron_thermal_velocity_at_point_227____________________________ (vel_plasma_electron_profile227)_ 8.00515378192742616e+07 +Plasma_electron_thermal_velocity_at_point_228____________________________ (vel_plasma_electron_profile228)_ 7.99461710745010823e+07 +Plasma_electron_thermal_velocity_at_point_229____________________________ (vel_plasma_electron_profile229)_ 7.98402978052728027e+07 +Plasma_electron_thermal_velocity_at_point_230____________________________ (vel_plasma_electron_profile230)_ 7.97339175661028326e+07 +Plasma_electron_thermal_velocity_at_point_231____________________________ (vel_plasma_electron_profile231)_ 7.96270299139137268e+07 +Plasma_electron_thermal_velocity_at_point_232____________________________ (vel_plasma_electron_profile232)_ 7.95196344081627280e+07 +Plasma_electron_thermal_velocity_at_point_233____________________________ (vel_plasma_electron_profile233)_ 7.94117306109686047e+07 +Plasma_electron_thermal_velocity_at_point_234____________________________ (vel_plasma_electron_profile234)_ 7.93033180872438699e+07 +Plasma_electron_thermal_velocity_at_point_235____________________________ (vel_plasma_electron_profile235)_ 7.91943964048275501e+07 +Plasma_electron_thermal_velocity_at_point_236____________________________ (vel_plasma_electron_profile236)_ 7.90849651346222609e+07 +Plasma_electron_thermal_velocity_at_point_237____________________________ (vel_plasma_electron_profile237)_ 7.89750238507354707e+07 +Plasma_electron_thermal_velocity_at_point_238____________________________ (vel_plasma_electron_profile238)_ 7.88645721306222826e+07 +Plasma_electron_thermal_velocity_at_point_239____________________________ (vel_plasma_electron_profile239)_ 7.87536095552332550e+07 +Plasma_electron_thermal_velocity_at_point_240____________________________ (vel_plasma_electron_profile240)_ 7.86421357091647238e+07 +Plasma_electron_thermal_velocity_at_point_241____________________________ (vel_plasma_electron_profile241)_ 7.85301501808132529e+07 +Plasma_electron_thermal_velocity_at_point_242____________________________ (vel_plasma_electron_profile242)_ 7.84176525625333339e+07 +Plasma_electron_thermal_velocity_at_point_243____________________________ (vel_plasma_electron_profile243)_ 7.83046424508000612e+07 +Plasma_electron_thermal_velocity_at_point_244____________________________ (vel_plasma_electron_profile244)_ 7.81911194463729262e+07 +Plasma_electron_thermal_velocity_at_point_245____________________________ (vel_plasma_electron_profile245)_ 7.80770831544682831e+07 +Plasma_electron_thermal_velocity_at_point_246____________________________ (vel_plasma_electron_profile246)_ 7.79625331849306524e+07 +Plasma_electron_thermal_velocity_at_point_247____________________________ (vel_plasma_electron_profile247)_ 7.78474691524116248e+07 +Plasma_electron_thermal_velocity_at_point_248____________________________ (vel_plasma_electron_profile248)_ 7.77318906765530407e+07 +Plasma_electron_thermal_velocity_at_point_249____________________________ (vel_plasma_electron_profile249)_ 7.76157973821717352e+07 +Plasma_electron_thermal_velocity_at_point_250____________________________ (vel_plasma_electron_profile250)_ 7.74991888994524926e+07 +Plasma_electron_thermal_velocity_at_point_251____________________________ (vel_plasma_electron_profile251)_ 7.73820648641437292e+07 +Plasma_electron_thermal_velocity_at_point_252____________________________ (vel_plasma_electron_profile252)_ 7.72644249177576154e+07 +Plasma_electron_thermal_velocity_at_point_253____________________________ (vel_plasma_electron_profile253)_ 7.71462687077754587e+07 +Plasma_electron_thermal_velocity_at_point_254____________________________ (vel_plasma_electron_profile254)_ 7.70275958878597915e+07 +Plasma_electron_thermal_velocity_at_point_255____________________________ (vel_plasma_electron_profile255)_ 7.69084061180678159e+07 +Plasma_electron_thermal_velocity_at_point_256____________________________ (vel_plasma_electron_profile256)_ 7.67886990650754124e+07 +Plasma_electron_thermal_velocity_at_point_257____________________________ (vel_plasma_electron_profile257)_ 7.66684744024012089e+07 +Plasma_electron_thermal_velocity_at_point_258____________________________ (vel_plasma_electron_profile258)_ 7.65477318106396347e+07 +Plasma_electron_thermal_velocity_at_point_259____________________________ (vel_plasma_electron_profile259)_ 7.64264709776992053e+07 +Plasma_electron_thermal_velocity_at_point_260____________________________ (vel_plasma_electron_profile260)_ 7.63046915990453660e+07 +Plasma_electron_thermal_velocity_at_point_261____________________________ (vel_plasma_electron_profile261)_ 7.61823933779510111e+07 +Plasma_electron_thermal_velocity_at_point_262____________________________ (vel_plasma_electron_profile262)_ 7.60595760257521421e+07 +Plasma_electron_thermal_velocity_at_point_263____________________________ (vel_plasma_electron_profile263)_ 7.59362392621098608e+07 +Plasma_electron_thermal_velocity_at_point_264____________________________ (vel_plasma_electron_profile264)_ 7.58123828152801096e+07 +Plasma_electron_thermal_velocity_at_point_265____________________________ (vel_plasma_electron_profile265)_ 7.56880064223890007e+07 +Plasma_electron_thermal_velocity_at_point_266____________________________ (vel_plasma_electron_profile266)_ 7.55631098297142237e+07 +Plasma_electron_thermal_velocity_at_point_267____________________________ (vel_plasma_electron_profile267)_ 7.54376927929759920e+07 +Plasma_electron_thermal_velocity_at_point_268____________________________ (vel_plasma_electron_profile268)_ 7.53117550776334405e+07 +Plasma_electron_thermal_velocity_at_point_269____________________________ (vel_plasma_electron_profile269)_ 7.51852964591892511e+07 +Plasma_electron_thermal_velocity_at_point_270____________________________ (vel_plasma_electron_profile270)_ 7.50583167235004753e+07 +Plasma_electron_thermal_velocity_at_point_271____________________________ (vel_plasma_electron_profile271)_ 7.49308156671003252e+07 +Plasma_electron_thermal_velocity_at_point_272____________________________ (vel_plasma_electron_profile272)_ 7.48027930975241214e+07 +Plasma_electron_thermal_velocity_at_point_273____________________________ (vel_plasma_electron_profile273)_ 7.46742488336471617e+07 +Plasma_electron_thermal_velocity_at_point_274____________________________ (vel_plasma_electron_profile274)_ 7.45451827060291469e+07 +Plasma_electron_thermal_velocity_at_point_275____________________________ (vel_plasma_electron_profile275)_ 7.44155945572671443e+07 +Plasma_electron_thermal_velocity_at_point_276____________________________ (vel_plasma_electron_profile276)_ 7.42854842423600107e+07 +Plasma_electron_thermal_velocity_at_point_277____________________________ (vel_plasma_electron_profile277)_ 7.41548516290785372e+07 +Plasma_electron_thermal_velocity_at_point_278____________________________ (vel_plasma_electron_profile278)_ 7.40236965983472764e+07 +Plasma_electron_thermal_velocity_at_point_279____________________________ (vel_plasma_electron_profile279)_ 7.38920190446375906e+07 +Plasma_electron_thermal_velocity_at_point_280____________________________ (vel_plasma_electron_profile280)_ 7.37598188763672411e+07 +Plasma_electron_thermal_velocity_at_point_281____________________________ (vel_plasma_electron_profile281)_ 7.36270960163127929e+07 +Plasma_electron_thermal_velocity_at_point_282____________________________ (vel_plasma_electron_profile282)_ 7.34938504020320028e+07 +Plasma_electron_thermal_velocity_at_point_283____________________________ (vel_plasma_electron_profile283)_ 7.33600819862981886e+07 +Plasma_electron_thermal_velocity_at_point_284____________________________ (vel_plasma_electron_profile284)_ 7.32257907375434786e+07 +Plasma_electron_thermal_velocity_at_point_285____________________________ (vel_plasma_electron_profile285)_ 7.30909766403163671e+07 +Plasma_electron_thermal_velocity_at_point_286____________________________ (vel_plasma_electron_profile286)_ 7.29556396957490295e+07 +Plasma_electron_thermal_velocity_at_point_287____________________________ (vel_plasma_electron_profile287)_ 7.28197799220385998e+07 +Plasma_electron_thermal_velocity_at_point_288____________________________ (vel_plasma_electron_profile288)_ 7.26833973549401462e+07 +Plasma_electron_thermal_velocity_at_point_289____________________________ (vel_plasma_electron_profile289)_ 7.25464920482724905e+07 +Plasma_electron_thermal_velocity_at_point_290____________________________ (vel_plasma_electron_profile290)_ 7.24090640744378120e+07 +Plasma_electron_thermal_velocity_at_point_291____________________________ (vel_plasma_electron_profile291)_ 7.22711135249554366e+07 +Plasma_electron_thermal_velocity_at_point_292____________________________ (vel_plasma_electron_profile292)_ 7.21326405110086948e+07 +Plasma_electron_thermal_velocity_at_point_293____________________________ (vel_plasma_electron_profile293)_ 7.19936451640070677e+07 +Plasma_electron_thermal_velocity_at_point_294____________________________ (vel_plasma_electron_profile294)_ 7.18541276361626685e+07 +Plasma_electron_thermal_velocity_at_point_295____________________________ (vel_plasma_electron_profile295)_ 7.17140881010835618e+07 +Plasma_electron_thermal_velocity_at_point_296____________________________ (vel_plasma_electron_profile296)_ 7.15735267543812841e+07 +Plasma_electron_thermal_velocity_at_point_297____________________________ (vel_plasma_electron_profile297)_ 7.14324438142959625e+07 +Plasma_electron_thermal_velocity_at_point_298____________________________ (vel_plasma_electron_profile298)_ 7.12908395223372579e+07 +Plasma_electron_thermal_velocity_at_point_299____________________________ (vel_plasma_electron_profile299)_ 7.11487141439430565e+07 +Plasma_electron_thermal_velocity_at_point_300____________________________ (vel_plasma_electron_profile300)_ 7.10060679691569954e+07 +Plasma_electron_thermal_velocity_at_point_301____________________________ (vel_plasma_electron_profile301)_ 7.08629013133224100e+07 +Plasma_electron_thermal_velocity_at_point_302____________________________ (vel_plasma_electron_profile302)_ 7.07192145177970529e+07 +Plasma_electron_thermal_velocity_at_point_303____________________________ (vel_plasma_electron_profile303)_ 7.05750079506853670e+07 +Plasma_electron_thermal_velocity_at_point_304____________________________ (vel_plasma_electron_profile304)_ 7.04302820075942129e+07 +Plasma_electron_thermal_velocity_at_point_305____________________________ (vel_plasma_electron_profile305)_ 7.02850371124041080e+07 +Plasma_electron_thermal_velocity_at_point_306____________________________ (vel_plasma_electron_profile306)_ 7.01392737180672437e+07 +Plasma_electron_thermal_velocity_at_point_307____________________________ (vel_plasma_electron_profile307)_ 6.99929923074239641e+07 +Plasma_electron_thermal_velocity_at_point_308____________________________ (vel_plasma_electron_profile308)_ 6.98461933940430135e+07 +Plasma_electron_thermal_velocity_at_point_309____________________________ (vel_plasma_electron_profile309)_ 6.96988775230852067e+07 +Plasma_electron_thermal_velocity_at_point_310____________________________ (vel_plasma_electron_profile310)_ 6.95510452721902132e+07 +Plasma_electron_thermal_velocity_at_point_311____________________________ (vel_plasma_electron_profile311)_ 6.94026972523904890e+07 +Plasma_electron_thermal_velocity_at_point_312____________________________ (vel_plasma_electron_profile312)_ 6.92538341090475172e+07 +Plasma_electron_thermal_velocity_at_point_313____________________________ (vel_plasma_electron_profile313)_ 6.91044565228173435e+07 +Plasma_electron_thermal_velocity_at_point_314____________________________ (vel_plasma_electron_profile314)_ 6.89545652106413990e+07 +Plasma_electron_thermal_velocity_at_point_315____________________________ (vel_plasma_electron_profile315)_ 6.88041609267665893e+07 +Plasma_electron_thermal_velocity_at_point_316____________________________ (vel_plasma_electron_profile316)_ 6.86532444637925327e+07 +Plasma_electron_thermal_velocity_at_point_317____________________________ (vel_plasma_electron_profile317)_ 6.85018166537512988e+07 +Plasma_electron_thermal_velocity_at_point_318____________________________ (vel_plasma_electron_profile318)_ 6.83498783692160547e+07 +Plasma_electron_thermal_velocity_at_point_319____________________________ (vel_plasma_electron_profile319)_ 6.81974305244406909e+07 +Plasma_electron_thermal_velocity_at_point_320____________________________ (vel_plasma_electron_profile320)_ 6.80444740765358806e+07 +Plasma_electron_thermal_velocity_at_point_321____________________________ (vel_plasma_electron_profile321)_ 6.78910100266730040e+07 +Plasma_electron_thermal_velocity_at_point_322____________________________ (vel_plasma_electron_profile322)_ 6.77370394213301390e+07 +Plasma_electron_thermal_velocity_at_point_323____________________________ (vel_plasma_electron_profile323)_ 6.75825633535674214e+07 +Plasma_electron_thermal_velocity_at_point_324____________________________ (vel_plasma_electron_profile324)_ 6.74275829643443227e+07 +Plasma_electron_thermal_velocity_at_point_325____________________________ (vel_plasma_electron_profile325)_ 6.72720994438726157e+07 +Plasma_electron_thermal_velocity_at_point_326____________________________ (vel_plasma_electron_profile326)_ 6.71161140330104530e+07 +Plasma_electron_thermal_velocity_at_point_327____________________________ (vel_plasma_electron_profile327)_ 6.69596280246962905e+07 +Plasma_electron_thermal_velocity_at_point_328____________________________ (vel_plasma_electron_profile328)_ 6.68026427654257938e+07 +Plasma_electron_thermal_velocity_at_point_329____________________________ (vel_plasma_electron_profile329)_ 6.66451596567733958e+07 +Plasma_electron_thermal_velocity_at_point_330____________________________ (vel_plasma_electron_profile330)_ 6.64871801569558531e+07 +Plasma_electron_thermal_velocity_at_point_331____________________________ (vel_plasma_electron_profile331)_ 6.63287057824459970e+07 +Plasma_electron_thermal_velocity_at_point_332____________________________ (vel_plasma_electron_profile332)_ 6.61697381096326932e+07 +Plasma_electron_thermal_velocity_at_point_333____________________________ (vel_plasma_electron_profile333)_ 6.60102787765302211e+07 +Plasma_electron_thermal_velocity_at_point_334____________________________ (vel_plasma_electron_profile334)_ 6.58503294845421165e+07 +Plasma_electron_thermal_velocity_at_point_335____________________________ (vel_plasma_electron_profile335)_ 6.56898920002728552e+07 +Plasma_electron_thermal_velocity_at_point_336____________________________ (vel_plasma_electron_profile336)_ 6.55289681574006602e+07 +Plasma_electron_thermal_velocity_at_point_337____________________________ (vel_plasma_electron_profile337)_ 6.53675598586021960e+07 +Plasma_electron_thermal_velocity_at_point_338____________________________ (vel_plasma_electron_profile338)_ 6.52056690775394291e+07 +Plasma_electron_thermal_velocity_at_point_339____________________________ (vel_plasma_electron_profile339)_ 6.50432978609055132e+07 +Plasma_electron_thermal_velocity_at_point_340____________________________ (vel_plasma_electron_profile340)_ 6.48804483305338323e+07 +Plasma_electron_thermal_velocity_at_point_341____________________________ (vel_plasma_electron_profile341)_ 6.47171226855732277e+07 +Plasma_electron_thermal_velocity_at_point_342____________________________ (vel_plasma_electron_profile342)_ 6.45533232047297582e+07 +Plasma_electron_thermal_velocity_at_point_343____________________________ (vel_plasma_electron_profile343)_ 6.43890522485770658e+07 +Plasma_electron_thermal_velocity_at_point_344____________________________ (vel_plasma_electron_profile344)_ 6.42243122619427294e+07 +Plasma_electron_thermal_velocity_at_point_345____________________________ (vel_plasma_electron_profile345)_ 6.40591057763647884e+07 +Plasma_electron_thermal_velocity_at_point_346____________________________ (vel_plasma_electron_profile346)_ 6.38934354126273766e+07 +Plasma_electron_thermal_velocity_at_point_347____________________________ (vel_plasma_electron_profile347)_ 6.37273038833791018e+07 +Plasma_electron_thermal_velocity_at_point_348____________________________ (vel_plasma_electron_profile348)_ 6.35607139958298281e+07 +Plasma_electron_thermal_velocity_at_point_349____________________________ (vel_plasma_electron_profile349)_ 6.33936686545375288e+07 +Plasma_electron_thermal_velocity_at_point_350____________________________ (vel_plasma_electron_profile350)_ 6.32261708642807081e+07 +Plasma_electron_thermal_velocity_at_point_351____________________________ (vel_plasma_electron_profile351)_ 6.30582237330269143e+07 +Plasma_electron_thermal_velocity_at_point_352____________________________ (vel_plasma_electron_profile352)_ 6.28898304749927595e+07 +Plasma_electron_thermal_velocity_at_point_353____________________________ (vel_plasma_electron_profile353)_ 6.27209944138075933e+07 +Plasma_electron_thermal_velocity_at_point_354____________________________ (vel_plasma_electron_profile354)_ 6.25517189857754633e+07 +Plasma_electron_thermal_velocity_at_point_355____________________________ (vel_plasma_electron_profile355)_ 6.23820077432477474e+07 +Plasma_electron_thermal_velocity_at_point_356____________________________ (vel_plasma_electron_profile356)_ 6.22118643581036329e+07 +Plasma_electron_thermal_velocity_at_point_357____________________________ (vel_plasma_electron_profile357)_ 6.20412926253468692e+07 +Plasma_electron_thermal_velocity_at_point_358____________________________ (vel_plasma_electron_profile358)_ 6.18702964668207392e+07 +Plasma_electron_thermal_velocity_at_point_359____________________________ (vel_plasma_electron_profile359)_ 6.16988799350472465e+07 +Plasma_electron_thermal_velocity_at_point_360____________________________ (vel_plasma_electron_profile360)_ 6.15270472171932235e+07 +Plasma_electron_thermal_velocity_at_point_361____________________________ (vel_plasma_electron_profile361)_ 6.13548026391731948e+07 +Plasma_electron_thermal_velocity_at_point_362____________________________ (vel_plasma_electron_profile362)_ 6.11821506698841602e+07 +Plasma_electron_thermal_velocity_at_point_363____________________________ (vel_plasma_electron_profile363)_ 6.10090959255911633e+07 +Plasma_electron_thermal_velocity_at_point_364____________________________ (vel_plasma_electron_profile364)_ 6.08356431744565517e+07 +Plasma_electron_thermal_velocity_at_point_365____________________________ (vel_plasma_electron_profile365)_ 6.06617973412281945e+07 +Plasma_electron_thermal_velocity_at_point_366____________________________ (vel_plasma_electron_profile366)_ 6.04875635120857507e+07 +Plasma_electron_thermal_velocity_at_point_367____________________________ (vel_plasma_electron_profile367)_ 6.03129469396560490e+07 +Plasma_electron_thermal_velocity_at_point_368____________________________ (vel_plasma_electron_profile368)_ 6.01379530482028797e+07 +Plasma_electron_thermal_velocity_at_point_369____________________________ (vel_plasma_electron_profile369)_ 5.99625874389978275e+07 +Plasma_electron_thermal_velocity_at_point_370____________________________ (vel_plasma_electron_profile370)_ 5.97868558958785012e+07 +Plasma_electron_thermal_velocity_at_point_371____________________________ (vel_plasma_electron_profile371)_ 5.96107643910050988e+07 +Plasma_electron_thermal_velocity_at_point_372____________________________ (vel_plasma_electron_profile372)_ 5.94343190908185840e+07 +Plasma_electron_thermal_velocity_at_point_373____________________________ (vel_plasma_electron_profile373)_ 5.92575263622146174e+07 +Plasma_electron_thermal_velocity_at_point_374____________________________ (vel_plasma_electron_profile374)_ 5.90803927789358869e+07 +Plasma_electron_thermal_velocity_at_point_375____________________________ (vel_plasma_electron_profile375)_ 5.89029251281962842e+07 +Plasma_electron_thermal_velocity_at_point_376____________________________ (vel_plasma_electron_profile376)_ 5.87251304175484180e+07 +Plasma_electron_thermal_velocity_at_point_377____________________________ (vel_plasma_electron_profile377)_ 5.85470158819957674e+07 +Plasma_electron_thermal_velocity_at_point_378____________________________ (vel_plasma_electron_profile378)_ 5.83685889913720861e+07 +Plasma_electron_thermal_velocity_at_point_379____________________________ (vel_plasma_electron_profile379)_ 5.81898574579904079e+07 +Plasma_electron_thermal_velocity_at_point_380____________________________ (vel_plasma_electron_profile380)_ 5.80108292445769906e+07 +Plasma_electron_thermal_velocity_at_point_381____________________________ (vel_plasma_electron_profile381)_ 5.78315125725033134e+07 +Plasma_electron_thermal_velocity_at_point_382____________________________ (vel_plasma_electron_profile382)_ 5.76519159303271845e+07 +Plasma_electron_thermal_velocity_at_point_383____________________________ (vel_plasma_electron_profile383)_ 5.74720480826579630e+07 +Plasma_electron_thermal_velocity_at_point_384____________________________ (vel_plasma_electron_profile384)_ 5.72919180793608651e+07 +Plasma_electron_thermal_velocity_at_point_385____________________________ (vel_plasma_electron_profile385)_ 5.71115352651150748e+07 +Plasma_electron_thermal_velocity_at_point_386____________________________ (vel_plasma_electron_profile386)_ 5.69309092893413827e+07 +Plasma_electron_thermal_velocity_at_point_387____________________________ (vel_plasma_electron_profile387)_ 5.67500501165188849e+07 +Plasma_electron_thermal_velocity_at_point_388____________________________ (vel_plasma_electron_profile388)_ 5.65689680369050875e+07 +Plasma_electron_thermal_velocity_at_point_389____________________________ (vel_plasma_electron_profile389)_ 5.63876736776818633e+07 +Plasma_electron_thermal_velocity_at_point_390____________________________ (vel_plasma_electron_profile390)_ 5.62061780145462155e+07 +Plasma_electron_thermal_velocity_at_point_391____________________________ (vel_plasma_electron_profile391)_ 5.60244923837674335e+07 +Plasma_electron_thermal_velocity_at_point_392____________________________ (vel_plasma_electron_profile392)_ 5.58426284947327152e+07 +Plasma_electron_thermal_velocity_at_point_393____________________________ (vel_plasma_electron_profile393)_ 5.56605984430065602e+07 +Plasma_electron_thermal_velocity_at_point_394____________________________ (vel_plasma_electron_profile394)_ 5.54784147239308283e+07 +Plasma_electron_thermal_velocity_at_point_395____________________________ (vel_plasma_electron_profile395)_ 5.52960902467868850e+07 +Plasma_electron_thermal_velocity_at_point_396____________________________ (vel_plasma_electron_profile396)_ 5.51136383495565653e+07 +Plasma_electron_thermal_velocity_at_point_397____________________________ (vel_plasma_electron_profile397)_ 5.49310728143087104e+07 +Plasma_electron_thermal_velocity_at_point_398____________________________ (vel_plasma_electron_profile398)_ 5.47484078832425699e+07 +Plasma_electron_thermal_velocity_at_point_399____________________________ (vel_plasma_electron_profile399)_ 5.45656582754256651e+07 +Plasma_electron_thermal_velocity_at_point_400____________________________ (vel_plasma_electron_profile400)_ 5.43828392042660415e+07 +Plasma_electron_thermal_velocity_at_point_401____________________________ (vel_plasma_electron_profile401)_ 5.41999663957508802e+07 +Plasma_electron_thermal_velocity_at_point_402____________________________ (vel_plasma_electron_profile402)_ 5.40170561075034440e+07 +Plasma_electron_thermal_velocity_at_point_403____________________________ (vel_plasma_electron_profile403)_ 5.38341251486992016e+07 +Plasma_electron_thermal_velocity_at_point_404____________________________ (vel_plasma_electron_profile404)_ 5.36511909008878097e+07 +Plasma_electron_thermal_velocity_at_point_405____________________________ (vel_plasma_electron_profile405)_ 5.34682713397838771e+07 +Plasma_electron_thermal_velocity_at_point_406____________________________ (vel_plasma_electron_profile406)_ 5.32853850580701455e+07 +Plasma_electron_thermal_velocity_at_point_407____________________________ (vel_plasma_electron_profile407)_ 5.31025512892859876e+07 +Plasma_electron_thermal_velocity_at_point_408____________________________ (vel_plasma_electron_profile408)_ 5.29197899328584895e+07 +Plasma_electron_thermal_velocity_at_point_409____________________________ (vel_plasma_electron_profile409)_ 5.27371215803550780e+07 +Plasma_electron_thermal_velocity_at_point_410____________________________ (vel_plasma_electron_profile410)_ 5.25545675430267155e+07 +Plasma_electron_thermal_velocity_at_point_411____________________________ (vel_plasma_electron_profile411)_ 5.23721498807338625e+07 +Plasma_electron_thermal_velocity_at_point_412____________________________ (vel_plasma_electron_profile412)_ 5.21898914323392808e+07 +Plasma_electron_thermal_velocity_at_point_413____________________________ (vel_plasma_electron_profile413)_ 5.20078158476691768e+07 +Plasma_electron_thermal_velocity_at_point_414____________________________ (vel_plasma_electron_profile414)_ 5.18259476211502329e+07 +Plasma_electron_thermal_velocity_at_point_415____________________________ (vel_plasma_electron_profile415)_ 5.16443121272381991e+07 +Plasma_electron_thermal_velocity_at_point_416____________________________ (vel_plasma_electron_profile416)_ 5.14629356577685028e+07 +Plasma_electron_thermal_velocity_at_point_417____________________________ (vel_plasma_electron_profile417)_ 5.12818454613659531e+07 +Plasma_electron_thermal_velocity_at_point_418____________________________ (vel_plasma_electron_profile418)_ 5.11010697850714624e+07 +Plasma_electron_thermal_velocity_at_point_419____________________________ (vel_plasma_electron_profile419)_ 5.09206379183493033e+07 +Plasma_electron_thermal_velocity_at_point_420____________________________ (vel_plasma_electron_profile420)_ 5.07405802396677434e+07 +Plasma_electron_thermal_velocity_at_point_421____________________________ (vel_plasma_electron_profile421)_ 5.05609282658535317e+07 +Plasma_electron_thermal_velocity_at_point_422____________________________ (vel_plasma_electron_profile422)_ 5.03817147044501826e+07 +Plasma_electron_thermal_velocity_at_point_423____________________________ (vel_plasma_electron_profile423)_ 5.02029735093351379e+07 +Plasma_electron_thermal_velocity_at_point_424____________________________ (vel_plasma_electron_profile424)_ 5.00247399398713782e+07 +Plasma_electron_thermal_velocity_at_point_425____________________________ (vel_plasma_electron_profile425)_ 4.98470506239112243e+07 +Plasma_electron_thermal_velocity_at_point_426____________________________ (vel_plasma_electron_profile426)_ 4.96699436250015348e+07 +Plasma_electron_thermal_velocity_at_point_427____________________________ (vel_plasma_electron_profile427)_ 4.94934585141820833e+07 +Plasma_electron_thermal_velocity_at_point_428____________________________ (vel_plasma_electron_profile428)_ 4.93176364468203336e+07 +Plasma_electron_thermal_velocity_at_point_429____________________________ (vel_plasma_electron_profile429)_ 4.91425202449788824e+07 +Plasma_electron_thermal_velocity_at_point_430____________________________ (vel_plasma_electron_profile430)_ 4.89681544858783260e+07 +Plasma_electron_thermal_velocity_at_point_431____________________________ (vel_plasma_electron_profile431)_ 4.87945855970958769e+07 +Plasma_electron_thermal_velocity_at_point_432____________________________ (vel_plasma_electron_profile432)_ 4.86218619592267349e+07 +Plasma_electron_thermal_velocity_at_point_433____________________________ (vel_plasma_electron_profile433)_ 4.84500340168372691e+07 +Plasma_electron_thermal_velocity_at_point_434____________________________ (vel_plasma_electron_profile434)_ 4.82791543986647725e+07 +Plasma_electron_thermal_velocity_at_point_435____________________________ (vel_plasma_electron_profile435)_ 4.81092780481560230e+07 +Plasma_electron_thermal_velocity_at_point_436____________________________ (vel_plasma_electron_profile436)_ 4.79404623656185940e+07 +Plasma_electron_thermal_velocity_at_point_437____________________________ (vel_plasma_electron_profile437)_ 4.77727673634435907e+07 +Plasma_electron_thermal_velocity_at_point_438____________________________ (vel_plasma_electron_profile438)_ 4.76062558361229897e+07 +Plasma_electron_thermal_velocity_at_point_439____________________________ (vel_plasma_electron_profile439)_ 4.74409935470580906e+07 +Plasma_electron_thermal_velocity_at_point_440____________________________ (vel_plasma_electron_profile440)_ 4.72770494345218241e+07 +Plasma_electron_thermal_velocity_at_point_441____________________________ (vel_plasma_electron_profile441)_ 4.71144958395593241e+07 +Plasma_electron_thermal_velocity_at_point_442____________________________ (vel_plasma_electron_profile442)_ 4.69534087591473311e+07 +Plasma_electron_thermal_velocity_at_point_443____________________________ (vel_plasma_electron_profile443)_ 4.67938681285664365e+07 +Plasma_electron_thermal_velocity_at_point_444____________________________ (vel_plasma_electron_profile444)_ 4.66359581377628744e+07 +Plasma_electron_thermal_velocity_at_point_445____________________________ (vel_plasma_electron_profile445)_ 4.64797675874706730e+07 +Plasma_electron_thermal_velocity_at_point_446____________________________ (vel_plasma_electron_profile446)_ 4.63253902921265513e+07 +Plasma_electron_thermal_velocity_at_point_447____________________________ (vel_plasma_electron_profile447)_ 4.61729255382426903e+07 +Plasma_electron_thermal_velocity_at_point_448____________________________ (vel_plasma_electron_profile448)_ 4.60224786089277118e+07 +Plasma_electron_thermal_velocity_at_point_449____________________________ (vel_plasma_electron_profile449)_ 4.58741613879626542e+07 +Plasma_electron_thermal_velocity_at_point_450____________________________ (vel_plasma_electron_profile450)_ 4.57280930602880791e+07 +Plasma_electron_thermal_velocity_at_point_451____________________________ (vel_plasma_electron_profile451)_ 4.55844009304260910e+07 +Plasma_electron_thermal_velocity_at_point_452____________________________ (vel_plasma_electron_profile452)_ 4.54432213865410313e+07 +Plasma_electron_thermal_velocity_at_point_453____________________________ (vel_plasma_electron_profile453)_ 4.53047010463028252e+07 +Plasma_electron_thermal_velocity_at_point_454____________________________ (vel_plasma_electron_profile454)_ 4.51689981323547810e+07 +Plasma_electron_thermal_velocity_at_point_455____________________________ (vel_plasma_electron_profile455)_ 4.50362841415830106e+07 +Plasma_electron_thermal_velocity_at_point_456____________________________ (vel_plasma_electron_profile456)_ 4.49067458958014250e+07 +Plasma_electron_thermal_velocity_at_point_457____________________________ (vel_plasma_electron_profile457)_ 4.47805880957604796e+07 +Plasma_electron_thermal_velocity_at_point_458____________________________ (vel_plasma_electron_profile458)_ 4.46580365517034680e+07 +Plasma_electron_thermal_velocity_at_point_459____________________________ (vel_plasma_electron_profile459)_ 4.45393423426995650e+07 +Plasma_electron_thermal_velocity_at_point_460____________________________ (vel_plasma_electron_profile460)_ 4.44247872824289501e+07 +Plasma_electron_thermal_velocity_at_point_461____________________________ (vel_plasma_electron_profile461)_ 4.43146912756539956e+07 +Plasma_electron_thermal_velocity_at_point_462____________________________ (vel_plasma_electron_profile462)_ 4.42094225046086982e+07 +Plasma_electron_thermal_velocity_at_point_463____________________________ (vel_plasma_electron_profile463)_ 4.41094120265436098e+07 +Plasma_electron_thermal_velocity_at_point_464____________________________ (vel_plasma_electron_profile464)_ 4.40151755993608534e+07 +Plasma_electron_thermal_velocity_at_point_465____________________________ (vel_plasma_electron_profile465)_ 4.39273481230030358e+07 +Plasma_electron_thermal_velocity_at_point_466____________________________ (vel_plasma_electron_profile466)_ 4.38467419981624484e+07 +Plasma_electron_thermal_velocity_at_point_467____________________________ (vel_plasma_electron_profile467)_ 4.37744562958880886e+07 +Plasma_electron_thermal_velocity_at_point_468____________________________ (vel_plasma_electron_profile468)_ 4.37121138012497276e+07 +Plasma_electron_thermal_velocity_at_point_469____________________________ (vel_plasma_electron_profile469)_ 4.36625287132988200e+07 Plasma_electron_thermal_velocity_at_point_470____________________________ (vel_plasma_electron_profile470)_ 4.36338039400826097e+07 Plasma_electron_thermal_velocity_at_point_471____________________________ (vel_plasma_electron_profile471)_ 4.29250571041083783e+07 Plasma_electron_thermal_velocity_at_point_472____________________________ (vel_plasma_electron_profile472)_ 4.22036492837272659e+07 @@ -19231,477 +19229,477 @@ Plasma_electron_thermal_velocity_at_point_497____________________________ (vel_p Plasma_electron_thermal_velocity_at_point_498____________________________ (vel_plasma_electron_profile498)_ 1.27119317703267932e+07 Plasma_electron_thermal_velocity_at_point_499____________________________ (vel_plasma_electron_profile499)_ 9.92033394094543532e+06 Plasma_electron_thermal_velocity_at_point_500____________________________ (vel_plasma_electron_profile500)_ 5.93009924760969263e+06 -Volume_averaged_deuteron_thermal_velocity_(m/s)__________________________ (vel_plasma_deuteron_vol_avg)__ 1.10212254097169754e+06 -Plasma_deuteron_thermal_velocity_at_point_0______________________________ (vel_plasma_deuteron_profile0)_ 1.58679855052359076e+06 -Plasma_deuteron_thermal_velocity_at_point_1______________________________ (vel_plasma_deuteron_profile1)_ 1.58679443288372294e+06 -Plasma_deuteron_thermal_velocity_at_point_2______________________________ (vel_plasma_deuteron_profile2)_ 1.58678207995031634e+06 -Plasma_deuteron_thermal_velocity_at_point_3______________________________ (vel_plasma_deuteron_profile3)_ 1.58676149166623526e+06 -Plasma_deuteron_thermal_velocity_at_point_4______________________________ (vel_plasma_deuteron_profile4)_ 1.58673266798446304e+06 -Plasma_deuteron_thermal_velocity_at_point_5______________________________ (vel_plasma_deuteron_profile5)_ 1.58669560878320038e+06 -Plasma_deuteron_thermal_velocity_at_point_6______________________________ (vel_plasma_deuteron_profile6)_ 1.58665031396962004e+06 -Plasma_deuteron_thermal_velocity_at_point_7______________________________ (vel_plasma_deuteron_profile7)_ 1.58659678337609465e+06 -Plasma_deuteron_thermal_velocity_at_point_8______________________________ (vel_plasma_deuteron_profile8)_ 1.58653501681363722e+06 -Plasma_deuteron_thermal_velocity_at_point_9______________________________ (vel_plasma_deuteron_profile9)_ 1.58646501409075642e+06 -Plasma_deuteron_thermal_velocity_at_point_10_____________________________ (vel_plasma_deuteron_profile10)_ 1.58638677496312698e+06 -Plasma_deuteron_thermal_velocity_at_point_11_____________________________ (vel_plasma_deuteron_profile11)_ 1.58630029917759588e+06 -Plasma_deuteron_thermal_velocity_at_point_12_____________________________ (vel_plasma_deuteron_profile12)_ 1.58620558643442532e+06 -Plasma_deuteron_thermal_velocity_at_point_13_____________________________ (vel_plasma_deuteron_profile13)_ 1.58610263643130031e+06 -Plasma_deuteron_thermal_velocity_at_point_14_____________________________ (vel_plasma_deuteron_profile14)_ 1.58599144880354381e+06 -Plasma_deuteron_thermal_velocity_at_point_15_____________________________ (vel_plasma_deuteron_profile15)_ 1.58587202320272569e+06 -Plasma_deuteron_thermal_velocity_at_point_16_____________________________ (vel_plasma_deuteron_profile16)_ 1.58574435921170446e+06 -Plasma_deuteron_thermal_velocity_at_point_17_____________________________ (vel_plasma_deuteron_profile17)_ 1.58560845640750718e+06 -Plasma_deuteron_thermal_velocity_at_point_18_____________________________ (vel_plasma_deuteron_profile18)_ 1.58546431433927943e+06 -Plasma_deuteron_thermal_velocity_at_point_19_____________________________ (vel_plasma_deuteron_profile19)_ 1.58531193252510205e+06 -Plasma_deuteron_thermal_velocity_at_point_20_____________________________ (vel_plasma_deuteron_profile20)_ 1.58515131043621479e+06 -Plasma_deuteron_thermal_velocity_at_point_21_____________________________ (vel_plasma_deuteron_profile21)_ 1.58498244756306987e+06 -Plasma_deuteron_thermal_velocity_at_point_22_____________________________ (vel_plasma_deuteron_profile22)_ 1.58480534333346318e+06 -Plasma_deuteron_thermal_velocity_at_point_23_____________________________ (vel_plasma_deuteron_profile23)_ 1.58461999714395776e+06 -Plasma_deuteron_thermal_velocity_at_point_24_____________________________ (vel_plasma_deuteron_profile24)_ 1.58442640838187467e+06 -Plasma_deuteron_thermal_velocity_at_point_25_____________________________ (vel_plasma_deuteron_profile25)_ 1.58422457639691443e+06 -Plasma_deuteron_thermal_velocity_at_point_26_____________________________ (vel_plasma_deuteron_profile26)_ 1.58401450052629597e+06 -Plasma_deuteron_thermal_velocity_at_point_27_____________________________ (vel_plasma_deuteron_profile27)_ 1.58379618004746456e+06 -Plasma_deuteron_thermal_velocity_at_point_28_____________________________ (vel_plasma_deuteron_profile28)_ 1.58356961425677547e+06 -Plasma_deuteron_thermal_velocity_at_point_29_____________________________ (vel_plasma_deuteron_profile29)_ 1.58333480238124519e+06 -Plasma_deuteron_thermal_velocity_at_point_30_____________________________ (vel_plasma_deuteron_profile30)_ 1.58309174363203440e+06 -Plasma_deuteron_thermal_velocity_at_point_31_____________________________ (vel_plasma_deuteron_profile31)_ 1.58284043719494040e+06 -Plasma_deuteron_thermal_velocity_at_point_32_____________________________ (vel_plasma_deuteron_profile32)_ 1.58258088225555490e+06 -Plasma_deuteron_thermal_velocity_at_point_33_____________________________ (vel_plasma_deuteron_profile33)_ 1.58231307792039611e+06 -Plasma_deuteron_thermal_velocity_at_point_34_____________________________ (vel_plasma_deuteron_profile34)_ 1.58203702330824989e+06 -Plasma_deuteron_thermal_velocity_at_point_35_____________________________ (vel_plasma_deuteron_profile35)_ 1.58175271749336040e+06 -Plasma_deuteron_thermal_velocity_at_point_36_____________________________ (vel_plasma_deuteron_profile36)_ 1.58146015953373606e+06 -Plasma_deuteron_thermal_velocity_at_point_37_____________________________ (vel_plasma_deuteron_profile37)_ 1.58115934844899760e+06 -Plasma_deuteron_thermal_velocity_at_point_38_____________________________ (vel_plasma_deuteron_profile38)_ 1.58085028324238188e+06 -Plasma_deuteron_thermal_velocity_at_point_39_____________________________ (vel_plasma_deuteron_profile39)_ 1.58053296287226863e+06 -Plasma_deuteron_thermal_velocity_at_point_40_____________________________ (vel_plasma_deuteron_profile40)_ 1.58020738627417875e+06 -Plasma_deuteron_thermal_velocity_at_point_41_____________________________ (vel_plasma_deuteron_profile41)_ 1.57987355237964517e+06 -Plasma_deuteron_thermal_velocity_at_point_42_____________________________ (vel_plasma_deuteron_profile42)_ 1.57953146007193299e+06 -Plasma_deuteron_thermal_velocity_at_point_43_____________________________ (vel_plasma_deuteron_profile43)_ 1.57918110821436299e+06 -Plasma_deuteron_thermal_velocity_at_point_44_____________________________ (vel_plasma_deuteron_profile44)_ 1.57882249562494992e+06 -Plasma_deuteron_thermal_velocity_at_point_45_____________________________ (vel_plasma_deuteron_profile45)_ 1.57845562113634590e+06 -Plasma_deuteron_thermal_velocity_at_point_46_____________________________ (vel_plasma_deuteron_profile46)_ 1.57808048349462682e+06 -Plasma_deuteron_thermal_velocity_at_point_47_____________________________ (vel_plasma_deuteron_profile47)_ 1.57769708146664384e+06 -Plasma_deuteron_thermal_velocity_at_point_48_____________________________ (vel_plasma_deuteron_profile48)_ 1.57730541377988481e+06 -Plasma_deuteron_thermal_velocity_at_point_49_____________________________ (vel_plasma_deuteron_profile49)_ 1.57690547914450755e+06 -Plasma_deuteron_thermal_velocity_at_point_50_____________________________ (vel_plasma_deuteron_profile50)_ 1.57649727619312145e+06 -Plasma_deuteron_thermal_velocity_at_point_51_____________________________ (vel_plasma_deuteron_profile51)_ 1.57608080360723706e+06 -Plasma_deuteron_thermal_velocity_at_point_52_____________________________ (vel_plasma_deuteron_profile52)_ 1.57565605998110818e+06 -Plasma_deuteron_thermal_velocity_at_point_53_____________________________ (vel_plasma_deuteron_profile53)_ 1.57522304391655815e+06 -Plasma_deuteron_thermal_velocity_at_point_54_____________________________ (vel_plasma_deuteron_profile54)_ 1.57478175395638729e+06 -Plasma_deuteron_thermal_velocity_at_point_55_____________________________ (vel_plasma_deuteron_profile55)_ 1.57433218865393288e+06 -Plasma_deuteron_thermal_velocity_at_point_56_____________________________ (vel_plasma_deuteron_profile56)_ 1.57387434651594888e+06 -Plasma_deuteron_thermal_velocity_at_point_57_____________________________ (vel_plasma_deuteron_profile57)_ 1.57340822602465772e+06 -Plasma_deuteron_thermal_velocity_at_point_58_____________________________ (vel_plasma_deuteron_profile58)_ 1.57293382561860303e+06 -Plasma_deuteron_thermal_velocity_at_point_59_____________________________ (vel_plasma_deuteron_profile59)_ 1.57245114372740407e+06 -Plasma_deuteron_thermal_velocity_at_point_60_____________________________ (vel_plasma_deuteron_profile60)_ 1.57196017877483275e+06 -Plasma_deuteron_thermal_velocity_at_point_61_____________________________ (vel_plasma_deuteron_profile61)_ 1.57146092911522579e+06 -Plasma_deuteron_thermal_velocity_at_point_62_____________________________ (vel_plasma_deuteron_profile62)_ 1.57095339310633391e+06 -Plasma_deuteron_thermal_velocity_at_point_63_____________________________ (vel_plasma_deuteron_profile63)_ 1.57043756904252572e+06 -Plasma_deuteron_thermal_velocity_at_point_64_____________________________ (vel_plasma_deuteron_profile64)_ 1.56991345525946701e+06 -Plasma_deuteron_thermal_velocity_at_point_65_____________________________ (vel_plasma_deuteron_profile65)_ 1.56938104999422468e+06 -Plasma_deuteron_thermal_velocity_at_point_66_____________________________ (vel_plasma_deuteron_profile66)_ 1.56884035148359183e+06 -Plasma_deuteron_thermal_velocity_at_point_67_____________________________ (vel_plasma_deuteron_profile67)_ 1.56829135797035741e+06 -Plasma_deuteron_thermal_velocity_at_point_68_____________________________ (vel_plasma_deuteron_profile68)_ 1.56773406761411508e+06 -Plasma_deuteron_thermal_velocity_at_point_69_____________________________ (vel_plasma_deuteron_profile69)_ 1.56716847858334566e+06 -Plasma_deuteron_thermal_velocity_at_point_70_____________________________ (vel_plasma_deuteron_profile70)_ 1.56659458902348531e+06 -Plasma_deuteron_thermal_velocity_at_point_71_____________________________ (vel_plasma_deuteron_profile71)_ 1.56601239702492999e+06 -Plasma_deuteron_thermal_velocity_at_point_72_____________________________ (vel_plasma_deuteron_profile72)_ 1.56542190069294721e+06 -Plasma_deuteron_thermal_velocity_at_point_73_____________________________ (vel_plasma_deuteron_profile73)_ 1.56482309805195406e+06 -Plasma_deuteron_thermal_velocity_at_point_74_____________________________ (vel_plasma_deuteron_profile74)_ 1.56421598714732681e+06 -Plasma_deuteron_thermal_velocity_at_point_75_____________________________ (vel_plasma_deuteron_profile75)_ 1.56360056598151848e+06 -Plasma_deuteron_thermal_velocity_at_point_76_____________________________ (vel_plasma_deuteron_profile76)_ 1.56297683253621659e+06 -Plasma_deuteron_thermal_velocity_at_point_77_____________________________ (vel_plasma_deuteron_profile77)_ 1.56234478474983922e+06 -Plasma_deuteron_thermal_velocity_at_point_78_____________________________ (vel_plasma_deuteron_profile78)_ 1.56170442055567657e+06 -Plasma_deuteron_thermal_velocity_at_point_79_____________________________ (vel_plasma_deuteron_profile79)_ 1.56105573783702450e+06 -Plasma_deuteron_thermal_velocity_at_point_80_____________________________ (vel_plasma_deuteron_profile80)_ 1.56039873449731292e+06 -Plasma_deuteron_thermal_velocity_at_point_81_____________________________ (vel_plasma_deuteron_profile81)_ 1.55973340834168228e+06 -Plasma_deuteron_thermal_velocity_at_point_82_____________________________ (vel_plasma_deuteron_profile82)_ 1.55905975721746357e+06 -Plasma_deuteron_thermal_velocity_at_point_83_____________________________ (vel_plasma_deuteron_profile83)_ 1.55837777891810820e+06 -Plasma_deuteron_thermal_velocity_at_point_84_____________________________ (vel_plasma_deuteron_profile84)_ 1.55768747118936083e+06 -Plasma_deuteron_thermal_velocity_at_point_85_____________________________ (vel_plasma_deuteron_profile85)_ 1.55698883180593676e+06 -Plasma_deuteron_thermal_velocity_at_point_86_____________________________ (vel_plasma_deuteron_profile86)_ 1.55628185846888297e+06 -Plasma_deuteron_thermal_velocity_at_point_87_____________________________ (vel_plasma_deuteron_profile87)_ 1.55556654887264105e+06 -Plasma_deuteron_thermal_velocity_at_point_88_____________________________ (vel_plasma_deuteron_profile88)_ 1.55484290067282226e+06 -Plasma_deuteron_thermal_velocity_at_point_89_____________________________ (vel_plasma_deuteron_profile89)_ 1.55411091151488363e+06 -Plasma_deuteron_thermal_velocity_at_point_90_____________________________ (vel_plasma_deuteron_profile90)_ 1.55337057901791902e+06 -Plasma_deuteron_thermal_velocity_at_point_91_____________________________ (vel_plasma_deuteron_profile91)_ 1.55262190077768383e+06 -Plasma_deuteron_thermal_velocity_at_point_92_____________________________ (vel_plasma_deuteron_profile92)_ 1.55186487435997790e+06 -Plasma_deuteron_thermal_velocity_at_point_93_____________________________ (vel_plasma_deuteron_profile93)_ 1.55109949728757865e+06 -Plasma_deuteron_thermal_velocity_at_point_94_____________________________ (vel_plasma_deuteron_profile94)_ 1.55032576708183601e+06 -Plasma_deuteron_thermal_velocity_at_point_95_____________________________ (vel_plasma_deuteron_profile95)_ 1.54954368124643783e+06 -Plasma_deuteron_thermal_velocity_at_point_96_____________________________ (vel_plasma_deuteron_profile96)_ 1.54875323721891013e+06 -Plasma_deuteron_thermal_velocity_at_point_97_____________________________ (vel_plasma_deuteron_profile97)_ 1.54795443246055581e+06 -Plasma_deuteron_thermal_velocity_at_point_98_____________________________ (vel_plasma_deuteron_profile98)_ 1.54714726437253808e+06 -Plasma_deuteron_thermal_velocity_at_point_99_____________________________ (vel_plasma_deuteron_profile99)_ 1.54633173036656249e+06 -Plasma_deuteron_thermal_velocity_at_point_100____________________________ (vel_plasma_deuteron_profile100)_ 1.54550782777115074e+06 -Plasma_deuteron_thermal_velocity_at_point_101____________________________ (vel_plasma_deuteron_profile101)_ 1.54467555396693037e+06 -Plasma_deuteron_thermal_velocity_at_point_102____________________________ (vel_plasma_deuteron_profile102)_ 1.54383490624767146e+06 -Plasma_deuteron_thermal_velocity_at_point_103____________________________ (vel_plasma_deuteron_profile103)_ 1.54298588191044074e+06 -Plasma_deuteron_thermal_velocity_at_point_104____________________________ (vel_plasma_deuteron_profile104)_ 1.54212847822634829e+06 -Plasma_deuteron_thermal_velocity_at_point_105____________________________ (vel_plasma_deuteron_profile105)_ 1.54126269243708905e+06 -Plasma_deuteron_thermal_velocity_at_point_106____________________________ (vel_plasma_deuteron_profile106)_ 1.54038852175795031e+06 -Plasma_deuteron_thermal_velocity_at_point_107____________________________ (vel_plasma_deuteron_profile107)_ 1.53950596338730888e+06 -Plasma_deuteron_thermal_velocity_at_point_108____________________________ (vel_plasma_deuteron_profile108)_ 1.53861501449994300e+06 -Plasma_deuteron_thermal_velocity_at_point_109____________________________ (vel_plasma_deuteron_profile109)_ 1.53771567224032409e+06 -Plasma_deuteron_thermal_velocity_at_point_110____________________________ (vel_plasma_deuteron_profile110)_ 1.53680793374509620e+06 -Plasma_deuteron_thermal_velocity_at_point_111____________________________ (vel_plasma_deuteron_profile111)_ 1.53589179609417147e+06 -Plasma_deuteron_thermal_velocity_at_point_112____________________________ (vel_plasma_deuteron_profile112)_ 1.53496725638841046e+06 -Plasma_deuteron_thermal_velocity_at_point_113____________________________ (vel_plasma_deuteron_profile113)_ 1.53403431166171446e+06 -Plasma_deuteron_thermal_velocity_at_point_114____________________________ (vel_plasma_deuteron_profile114)_ 1.53309295896852552e+06 -Plasma_deuteron_thermal_velocity_at_point_115____________________________ (vel_plasma_deuteron_profile115)_ 1.53214319529906474e+06 -Plasma_deuteron_thermal_velocity_at_point_116____________________________ (vel_plasma_deuteron_profile116)_ 1.53118501763761928e+06 -Plasma_deuteron_thermal_velocity_at_point_117____________________________ (vel_plasma_deuteron_profile117)_ 1.53021842296561785e+06 -Plasma_deuteron_thermal_velocity_at_point_118____________________________ (vel_plasma_deuteron_profile118)_ 1.52924340821578237e+06 -Plasma_deuteron_thermal_velocity_at_point_119____________________________ (vel_plasma_deuteron_profile119)_ 1.52825997029139125e+06 -Plasma_deuteron_thermal_velocity_at_point_120____________________________ (vel_plasma_deuteron_profile120)_ 1.52726810611174884e+06 -Plasma_deuteron_thermal_velocity_at_point_121____________________________ (vel_plasma_deuteron_profile121)_ 1.52626781253361423e+06 -Plasma_deuteron_thermal_velocity_at_point_122____________________________ (vel_plasma_deuteron_profile122)_ 1.52525908642932982e+06 -Plasma_deuteron_thermal_velocity_at_point_123____________________________ (vel_plasma_deuteron_profile123)_ 1.52424192458850308e+06 -Plasma_deuteron_thermal_velocity_at_point_124____________________________ (vel_plasma_deuteron_profile124)_ 1.52321632386822067e+06 -Plasma_deuteron_thermal_velocity_at_point_125____________________________ (vel_plasma_deuteron_profile125)_ 1.52218228102594567e+06 -Plasma_deuteron_thermal_velocity_at_point_126____________________________ (vel_plasma_deuteron_profile126)_ 1.52113979282395355e+06 -Plasma_deuteron_thermal_velocity_at_point_127____________________________ (vel_plasma_deuteron_profile127)_ 1.52008885601932369e+06 -Plasma_deuteron_thermal_velocity_at_point_128____________________________ (vel_plasma_deuteron_profile128)_ 1.51902946734403563e+06 -Plasma_deuteron_thermal_velocity_at_point_129____________________________ (vel_plasma_deuteron_profile129)_ 1.51796162347183120e+06 -Plasma_deuteron_thermal_velocity_at_point_130____________________________ (vel_plasma_deuteron_profile130)_ 1.51688532110992027e+06 -Plasma_deuteron_thermal_velocity_at_point_131____________________________ (vel_plasma_deuteron_profile131)_ 1.51580055691992189e+06 -Plasma_deuteron_thermal_velocity_at_point_132____________________________ (vel_plasma_deuteron_profile132)_ 1.51470732753398316e+06 -Plasma_deuteron_thermal_velocity_at_point_133____________________________ (vel_plasma_deuteron_profile133)_ 1.51360562955778278e+06 -Plasma_deuteron_thermal_velocity_at_point_134____________________________ (vel_plasma_deuteron_profile134)_ 1.51249545961972326e+06 -Plasma_deuteron_thermal_velocity_at_point_135____________________________ (vel_plasma_deuteron_profile135)_ 1.51137681428830023e+06 -Plasma_deuteron_thermal_velocity_at_point_136____________________________ (vel_plasma_deuteron_profile136)_ 1.51024969012124091e+06 -Plasma_deuteron_thermal_velocity_at_point_137____________________________ (vel_plasma_deuteron_profile137)_ 1.50911408368180133e+06 -Plasma_deuteron_thermal_velocity_at_point_138____________________________ (vel_plasma_deuteron_profile138)_ 1.50796999148234958e+06 -Plasma_deuteron_thermal_velocity_at_point_139____________________________ (vel_plasma_deuteron_profile139)_ 1.50681741000384302e+06 -Plasma_deuteron_thermal_velocity_at_point_140____________________________ (vel_plasma_deuteron_profile140)_ 1.50565633578166435e+06 -Plasma_deuteron_thermal_velocity_at_point_141____________________________ (vel_plasma_deuteron_profile141)_ 1.50448676524645905e+06 -Plasma_deuteron_thermal_velocity_at_point_142____________________________ (vel_plasma_deuteron_profile142)_ 1.50330869486623514e+06 -Plasma_deuteron_thermal_velocity_at_point_143____________________________ (vel_plasma_deuteron_profile143)_ 1.50212212105663237e+06 -Plasma_deuteron_thermal_velocity_at_point_144____________________________ (vel_plasma_deuteron_profile144)_ 1.50092704026028933e+06 -Plasma_deuteron_thermal_velocity_at_point_145____________________________ (vel_plasma_deuteron_profile145)_ 1.49972344884362235e+06 -Plasma_deuteron_thermal_velocity_at_point_146____________________________ (vel_plasma_deuteron_profile146)_ 1.49851134320951230e+06 -Plasma_deuteron_thermal_velocity_at_point_147____________________________ (vel_plasma_deuteron_profile147)_ 1.49729071972727473e+06 -Plasma_deuteron_thermal_velocity_at_point_148____________________________ (vel_plasma_deuteron_profile148)_ 1.49606157471564179e+06 -Plasma_deuteron_thermal_velocity_at_point_149____________________________ (vel_plasma_deuteron_profile149)_ 1.49482390454247384e+06 -Plasma_deuteron_thermal_velocity_at_point_150____________________________ (vel_plasma_deuteron_profile150)_ 1.49357770548445918e+06 -Plasma_deuteron_thermal_velocity_at_point_151____________________________ (vel_plasma_deuteron_profile151)_ 1.49232297388365190e+06 -Plasma_deuteron_thermal_velocity_at_point_152____________________________ (vel_plasma_deuteron_profile152)_ 1.49105970599361975e+06 -Plasma_deuteron_thermal_velocity_at_point_153____________________________ (vel_plasma_deuteron_profile153)_ 1.48978789809606643e+06 -Plasma_deuteron_thermal_velocity_at_point_154____________________________ (vel_plasma_deuteron_profile154)_ 1.48850754644711199e+06 -Plasma_deuteron_thermal_velocity_at_point_155____________________________ (vel_plasma_deuteron_profile155)_ 1.48721864728367468e+06 -Plasma_deuteron_thermal_velocity_at_point_156____________________________ (vel_plasma_deuteron_profile156)_ 1.48592119683996146e+06 -Plasma_deuteron_thermal_velocity_at_point_157____________________________ (vel_plasma_deuteron_profile157)_ 1.48461519132035528e+06 -Plasma_deuteron_thermal_velocity_at_point_158____________________________ (vel_plasma_deuteron_profile158)_ 1.48330062692597322e+06 -Plasma_deuteron_thermal_velocity_at_point_159____________________________ (vel_plasma_deuteron_profile159)_ 1.48197749985779845e+06 -Plasma_deuteron_thermal_velocity_at_point_160____________________________ (vel_plasma_deuteron_profile160)_ 1.48064580628950638e+06 -Plasma_deuteron_thermal_velocity_at_point_161____________________________ (vel_plasma_deuteron_profile161)_ 1.47930554235025519e+06 -Plasma_deuteron_thermal_velocity_at_point_162____________________________ (vel_plasma_deuteron_profile162)_ 1.47795670423565898e+06 -Plasma_deuteron_thermal_velocity_at_point_163____________________________ (vel_plasma_deuteron_profile163)_ 1.47659928806258179e+06 -Plasma_deuteron_thermal_velocity_at_point_164____________________________ (vel_plasma_deuteron_profile164)_ 1.47523328996662656e+06 -Plasma_deuteron_thermal_velocity_at_point_165____________________________ (vel_plasma_deuteron_profile165)_ 1.47385870607830118e+06 -Plasma_deuteron_thermal_velocity_at_point_166____________________________ (vel_plasma_deuteron_profile166)_ 1.47247553247872135e+06 -Plasma_deuteron_thermal_velocity_at_point_167____________________________ (vel_plasma_deuteron_profile167)_ 1.47108376527715591e+06 -Plasma_deuteron_thermal_velocity_at_point_168____________________________ (vel_plasma_deuteron_profile168)_ 1.46968340057698428e+06 -Plasma_deuteron_thermal_velocity_at_point_169____________________________ (vel_plasma_deuteron_profile169)_ 1.46827443444825546e+06 -Plasma_deuteron_thermal_velocity_at_point_170____________________________ (vel_plasma_deuteron_profile170)_ 1.46685686295111012e+06 -Plasma_deuteron_thermal_velocity_at_point_171____________________________ (vel_plasma_deuteron_profile171)_ 1.46543068217635388e+06 -Plasma_deuteron_thermal_velocity_at_point_172____________________________ (vel_plasma_deuteron_profile172)_ 1.46399588817721815e+06 -Plasma_deuteron_thermal_velocity_at_point_173____________________________ (vel_plasma_deuteron_profile173)_ 1.46255247698941454e+06 -Plasma_deuteron_thermal_velocity_at_point_174____________________________ (vel_plasma_deuteron_profile174)_ 1.46110044467178732e+06 -Plasma_deuteron_thermal_velocity_at_point_175____________________________ (vel_plasma_deuteron_profile175)_ 1.45963978724809131e+06 -Plasma_deuteron_thermal_velocity_at_point_176____________________________ (vel_plasma_deuteron_profile176)_ 1.45817050076474482e+06 -Plasma_deuteron_thermal_velocity_at_point_177____________________________ (vel_plasma_deuteron_profile177)_ 1.45669258124961145e+06 -Plasma_deuteron_thermal_velocity_at_point_178____________________________ (vel_plasma_deuteron_profile178)_ 1.45520602471852652e+06 -Plasma_deuteron_thermal_velocity_at_point_179____________________________ (vel_plasma_deuteron_profile179)_ 1.45371082720588846e+06 -Plasma_deuteron_thermal_velocity_at_point_180____________________________ (vel_plasma_deuteron_profile180)_ 1.45220698472672491e+06 -Plasma_deuteron_thermal_velocity_at_point_181____________________________ (vel_plasma_deuteron_profile181)_ 1.45069449330730992e+06 -Plasma_deuteron_thermal_velocity_at_point_182____________________________ (vel_plasma_deuteron_profile182)_ 1.44917334892989974e+06 -Plasma_deuteron_thermal_velocity_at_point_183____________________________ (vel_plasma_deuteron_profile183)_ 1.44764354764254787e+06 -Plasma_deuteron_thermal_velocity_at_point_184____________________________ (vel_plasma_deuteron_profile184)_ 1.44610508544881199e+06 -Plasma_deuteron_thermal_velocity_at_point_185____________________________ (vel_plasma_deuteron_profile185)_ 1.44455795835908642e+06 -Plasma_deuteron_thermal_velocity_at_point_186____________________________ (vel_plasma_deuteron_profile186)_ 1.44300216238693986e+06 -Plasma_deuteron_thermal_velocity_at_point_187____________________________ (vel_plasma_deuteron_profile187)_ 1.44143769355927827e+06 -Plasma_deuteron_thermal_velocity_at_point_188____________________________ (vel_plasma_deuteron_profile188)_ 1.43986454787459574e+06 -Plasma_deuteron_thermal_velocity_at_point_189____________________________ (vel_plasma_deuteron_profile189)_ 1.43828272137889406e+06 -Plasma_deuteron_thermal_velocity_at_point_190____________________________ (vel_plasma_deuteron_profile190)_ 1.43669221007541404e+06 -Plasma_deuteron_thermal_velocity_at_point_191____________________________ (vel_plasma_deuteron_profile191)_ 1.43509301001454773e+06 -Plasma_deuteron_thermal_velocity_at_point_192____________________________ (vel_plasma_deuteron_profile192)_ 1.43348511721729208e+06 -Plasma_deuteron_thermal_velocity_at_point_193____________________________ (vel_plasma_deuteron_profile193)_ 1.43186852773407637e+06 -Plasma_deuteron_thermal_velocity_at_point_194____________________________ (vel_plasma_deuteron_profile194)_ 1.43024323760631634e+06 -Plasma_deuteron_thermal_velocity_at_point_195____________________________ (vel_plasma_deuteron_profile195)_ 1.42860924289755290e+06 -Plasma_deuteron_thermal_velocity_at_point_196____________________________ (vel_plasma_deuteron_profile196)_ 1.42696653967935336e+06 -Plasma_deuteron_thermal_velocity_at_point_197____________________________ (vel_plasma_deuteron_profile197)_ 1.42531512402061536e+06 -Plasma_deuteron_thermal_velocity_at_point_198____________________________ (vel_plasma_deuteron_profile198)_ 1.42365499200483365e+06 -Plasma_deuteron_thermal_velocity_at_point_199____________________________ (vel_plasma_deuteron_profile199)_ 1.42198613972292817e+06 -Plasma_deuteron_thermal_velocity_at_point_200____________________________ (vel_plasma_deuteron_profile200)_ 1.42030856329412269e+06 -Plasma_deuteron_thermal_velocity_at_point_201____________________________ (vel_plasma_deuteron_profile201)_ 1.41862225885532284e+06 -Plasma_deuteron_thermal_velocity_at_point_202____________________________ (vel_plasma_deuteron_profile202)_ 1.41692722251872974e+06 -Plasma_deuteron_thermal_velocity_at_point_203____________________________ (vel_plasma_deuteron_profile203)_ 1.41522345043843426e+06 -Plasma_deuteron_thermal_velocity_at_point_204____________________________ (vel_plasma_deuteron_profile204)_ 1.41351093880689982e+06 -Plasma_deuteron_thermal_velocity_at_point_205____________________________ (vel_plasma_deuteron_profile205)_ 1.41178968378074816e+06 -Plasma_deuteron_thermal_velocity_at_point_206____________________________ (vel_plasma_deuteron_profile206)_ 1.41005968158291094e+06 -Plasma_deuteron_thermal_velocity_at_point_207____________________________ (vel_plasma_deuteron_profile207)_ 1.40832092843549163e+06 -Plasma_deuteron_thermal_velocity_at_point_208____________________________ (vel_plasma_deuteron_profile208)_ 1.40657342058790126e+06 -Plasma_deuteron_thermal_velocity_at_point_209____________________________ (vel_plasma_deuteron_profile209)_ 1.40481715430613863e+06 -Plasma_deuteron_thermal_velocity_at_point_210____________________________ (vel_plasma_deuteron_profile210)_ 1.40305212587266206e+06 -Plasma_deuteron_thermal_velocity_at_point_211____________________________ (vel_plasma_deuteron_profile211)_ 1.40127833159338008e+06 -Plasma_deuteron_thermal_velocity_at_point_212____________________________ (vel_plasma_deuteron_profile212)_ 1.39949576783321728e+06 -Plasma_deuteron_thermal_velocity_at_point_213____________________________ (vel_plasma_deuteron_profile213)_ 1.39770443094843975e+06 -Plasma_deuteron_thermal_velocity_at_point_214____________________________ (vel_plasma_deuteron_profile214)_ 1.39590431732211332e+06 -Plasma_deuteron_thermal_velocity_at_point_215____________________________ (vel_plasma_deuteron_profile215)_ 1.39409542339983396e+06 -Plasma_deuteron_thermal_velocity_at_point_216____________________________ (vel_plasma_deuteron_profile216)_ 1.39227774563615792e+06 -Plasma_deuteron_thermal_velocity_at_point_217____________________________ (vel_plasma_deuteron_profile217)_ 1.39045128049443546e+06 -Plasma_deuteron_thermal_velocity_at_point_218____________________________ (vel_plasma_deuteron_profile218)_ 1.38861602451131539e+06 -Plasma_deuteron_thermal_velocity_at_point_219____________________________ (vel_plasma_deuteron_profile219)_ 1.38677197424664348e+06 -Plasma_deuteron_thermal_velocity_at_point_220____________________________ (vel_plasma_deuteron_profile220)_ 1.38491912629060028e+06 -Plasma_deuteron_thermal_velocity_at_point_221____________________________ (vel_plasma_deuteron_profile221)_ 1.38305747728172410e+06 -Plasma_deuteron_thermal_velocity_at_point_222____________________________ (vel_plasma_deuteron_profile222)_ 1.38118702388173668e+06 -Plasma_deuteron_thermal_velocity_at_point_223____________________________ (vel_plasma_deuteron_profile223)_ 1.37930776279357006e+06 -Plasma_deuteron_thermal_velocity_at_point_224____________________________ (vel_plasma_deuteron_profile224)_ 1.37741969080128078e+06 -Plasma_deuteron_thermal_velocity_at_point_225____________________________ (vel_plasma_deuteron_profile225)_ 1.37552280467971927e+06 -Plasma_deuteron_thermal_velocity_at_point_226____________________________ (vel_plasma_deuteron_profile226)_ 1.37361710128869559e+06 -Plasma_deuteron_thermal_velocity_at_point_227____________________________ (vel_plasma_deuteron_profile227)_ 1.37170257751517068e+06 -Plasma_deuteron_thermal_velocity_at_point_228____________________________ (vel_plasma_deuteron_profile228)_ 1.36977923032423458e+06 -Plasma_deuteron_thermal_velocity_at_point_229____________________________ (vel_plasma_deuteron_profile229)_ 1.36784705668286397e+06 -Plasma_deuteron_thermal_velocity_at_point_230____________________________ (vel_plasma_deuteron_profile230)_ 1.36590605366201117e+06 -Plasma_deuteron_thermal_velocity_at_point_231____________________________ (vel_plasma_deuteron_profile231)_ 1.36395621837131004e+06 -Plasma_deuteron_thermal_velocity_at_point_232____________________________ (vel_plasma_deuteron_profile232)_ 1.36199754795550252e+06 -Plasma_deuteron_thermal_velocity_at_point_233____________________________ (vel_plasma_deuteron_profile233)_ 1.36003003966786992e+06 -Plasma_deuteron_thermal_velocity_at_point_234____________________________ (vel_plasma_deuteron_profile234)_ 1.35805369075695472e+06 -Plasma_deuteron_thermal_velocity_at_point_235____________________________ (vel_plasma_deuteron_profile235)_ 1.35606849860614957e+06 -Plasma_deuteron_thermal_velocity_at_point_236____________________________ (vel_plasma_deuteron_profile236)_ 1.35407446063134680e+06 -Plasma_deuteron_thermal_velocity_at_point_237____________________________ (vel_plasma_deuteron_profile237)_ 1.35207157430314505e+06 -Plasma_deuteron_thermal_velocity_at_point_238____________________________ (vel_plasma_deuteron_profile238)_ 1.35005983716926281e+06 -Plasma_deuteron_thermal_velocity_at_point_239____________________________ (vel_plasma_deuteron_profile239)_ 1.34803924687715527e+06 -Plasma_deuteron_thermal_velocity_at_point_240____________________________ (vel_plasma_deuteron_profile240)_ 1.34600980112271197e+06 -Plasma_deuteron_thermal_velocity_at_point_241____________________________ (vel_plasma_deuteron_profile241)_ 1.34397149769501784e+06 -Plasma_deuteron_thermal_velocity_at_point_242____________________________ (vel_plasma_deuteron_profile242)_ 1.34192433446947346e+06 -Plasma_deuteron_thermal_velocity_at_point_243____________________________ (vel_plasma_deuteron_profile243)_ 1.33986830936735380e+06 -Plasma_deuteron_thermal_velocity_at_point_244____________________________ (vel_plasma_deuteron_profile244)_ 1.33780342043060740e+06 -Plasma_deuteron_thermal_velocity_at_point_245____________________________ (vel_plasma_deuteron_profile245)_ 1.33572966578903864e+06 -Plasma_deuteron_thermal_velocity_at_point_246____________________________ (vel_plasma_deuteron_profile246)_ 1.33364704363841889e+06 -Plasma_deuteron_thermal_velocity_at_point_247____________________________ (vel_plasma_deuteron_profile247)_ 1.33155555230832263e+06 -Plasma_deuteron_thermal_velocity_at_point_248____________________________ (vel_plasma_deuteron_profile248)_ 1.32945519017674937e+06 -Plasma_deuteron_thermal_velocity_at_point_249____________________________ (vel_plasma_deuteron_profile249)_ 1.32734595578316064e+06 -Plasma_deuteron_thermal_velocity_at_point_250____________________________ (vel_plasma_deuteron_profile250)_ 1.32522784770918894e+06 -Plasma_deuteron_thermal_velocity_at_point_251____________________________ (vel_plasma_deuteron_profile251)_ 1.32310086468823114e+06 -Plasma_deuteron_thermal_velocity_at_point_252____________________________ (vel_plasma_deuteron_profile252)_ 1.32096500551971351e+06 -Plasma_deuteron_thermal_velocity_at_point_253____________________________ (vel_plasma_deuteron_profile253)_ 1.31882026914898446e+06 -Plasma_deuteron_thermal_velocity_at_point_254____________________________ (vel_plasma_deuteron_profile254)_ 1.31666665465706168e+06 -Plasma_deuteron_thermal_velocity_at_point_255____________________________ (vel_plasma_deuteron_profile255)_ 1.31450416119715315e+06 -Plasma_deuteron_thermal_velocity_at_point_256____________________________ (vel_plasma_deuteron_profile256)_ 1.31233278805982135e+06 -Plasma_deuteron_thermal_velocity_at_point_257____________________________ (vel_plasma_deuteron_profile257)_ 1.31015253467406938e+06 -Plasma_deuteron_thermal_velocity_at_point_258____________________________ (vel_plasma_deuteron_profile258)_ 1.30796340060463548e+06 -Plasma_deuteron_thermal_velocity_at_point_259____________________________ (vel_plasma_deuteron_profile259)_ 1.30576538553781551e+06 -Plasma_deuteron_thermal_velocity_at_point_260____________________________ (vel_plasma_deuteron_profile260)_ 1.30355848930542404e+06 -Plasma_deuteron_thermal_velocity_at_point_261____________________________ (vel_plasma_deuteron_profile261)_ 1.30134271188601293e+06 -Plasma_deuteron_thermal_velocity_at_point_262____________________________ (vel_plasma_deuteron_profile262)_ 1.29911805338307377e+06 -Plasma_deuteron_thermal_velocity_at_point_263____________________________ (vel_plasma_deuteron_profile263)_ 1.29688451407996938e+06 -Plasma_deuteron_thermal_velocity_at_point_264____________________________ (vel_plasma_deuteron_profile264)_ 1.29464209439910948e+06 -Plasma_deuteron_thermal_velocity_at_point_265____________________________ (vel_plasma_deuteron_profile265)_ 1.29239079492634349e+06 -Plasma_deuteron_thermal_velocity_at_point_266____________________________ (vel_plasma_deuteron_profile266)_ 1.29013061641241983e+06 -Plasma_deuteron_thermal_velocity_at_point_267____________________________ (vel_plasma_deuteron_profile267)_ 1.28786155978610250e+06 -Plasma_deuteron_thermal_velocity_at_point_268____________________________ (vel_plasma_deuteron_profile268)_ 1.28558362614415656e+06 -Plasma_deuteron_thermal_velocity_at_point_269____________________________ (vel_plasma_deuteron_profile269)_ 1.28329681674124650e+06 -Plasma_deuteron_thermal_velocity_at_point_270____________________________ (vel_plasma_deuteron_profile270)_ 1.28100113304984756e+06 -Plasma_deuteron_thermal_velocity_at_point_271____________________________ (vel_plasma_deuteron_profile271)_ 1.27869657672327780e+06 -Plasma_deuteron_thermal_velocity_at_point_272____________________________ (vel_plasma_deuteron_profile272)_ 1.27638314961307542e+06 -Plasma_deuteron_thermal_velocity_at_point_273____________________________ (vel_plasma_deuteron_profile273)_ 1.27406085373567627e+06 -Plasma_deuteron_thermal_velocity_at_point_274____________________________ (vel_plasma_deuteron_profile274)_ 1.27172969136820990e+06 -Plasma_deuteron_thermal_velocity_at_point_275____________________________ (vel_plasma_deuteron_profile275)_ 1.26938966494099190e+06 -Plasma_deuteron_thermal_velocity_at_point_276____________________________ (vel_plasma_deuteron_profile276)_ 1.26704077716117143e+06 -Plasma_deuteron_thermal_velocity_at_point_277____________________________ (vel_plasma_deuteron_profile277)_ 1.26468303092474653e+06 -Plasma_deuteron_thermal_velocity_at_point_278____________________________ (vel_plasma_deuteron_profile278)_ 1.26231642936595366e+06 -Plasma_deuteron_thermal_velocity_at_point_279____________________________ (vel_plasma_deuteron_profile279)_ 1.25994097583595733e+06 -Plasma_deuteron_thermal_velocity_at_point_280____________________________ (vel_plasma_deuteron_profile280)_ 1.25755667397653917e+06 -Plasma_deuteron_thermal_velocity_at_point_281____________________________ (vel_plasma_deuteron_profile281)_ 1.25516352762770792e+06 -Plasma_deuteron_thermal_velocity_at_point_282____________________________ (vel_plasma_deuteron_profile282)_ 1.25276154092145455e+06 -Plasma_deuteron_thermal_velocity_at_point_283____________________________ (vel_plasma_deuteron_profile283)_ 1.25035071822498553e+06 -Plasma_deuteron_thermal_velocity_at_point_284____________________________ (vel_plasma_deuteron_profile284)_ 1.24793106421925570e+06 -Plasma_deuteron_thermal_velocity_at_point_285____________________________ (vel_plasma_deuteron_profile285)_ 1.24550258380620112e+06 -Plasma_deuteron_thermal_velocity_at_point_286____________________________ (vel_plasma_deuteron_profile286)_ 1.24306528222361626e+06 -Plasma_deuteron_thermal_velocity_at_point_287____________________________ (vel_plasma_deuteron_profile287)_ 1.24061916497642873e+06 -Plasma_deuteron_thermal_velocity_at_point_288____________________________ (vel_plasma_deuteron_profile288)_ 1.23816423787598335e+06 -Plasma_deuteron_thermal_velocity_at_point_289____________________________ (vel_plasma_deuteron_profile289)_ 1.23570050705156592e+06 -Plasma_deuteron_thermal_velocity_at_point_290____________________________ (vel_plasma_deuteron_profile290)_ 1.23322797894996079e+06 -Plasma_deuteron_thermal_velocity_at_point_291____________________________ (vel_plasma_deuteron_profile291)_ 1.23074666033908655e+06 -Plasma_deuteron_thermal_velocity_at_point_292____________________________ (vel_plasma_deuteron_profile292)_ 1.22825655832390185e+06 -Plasma_deuteron_thermal_velocity_at_point_293____________________________ (vel_plasma_deuteron_profile293)_ 1.22575768037474598e+06 -Plasma_deuteron_thermal_velocity_at_point_294____________________________ (vel_plasma_deuteron_profile294)_ 1.22325003429896478e+06 -Plasma_deuteron_thermal_velocity_at_point_295____________________________ (vel_plasma_deuteron_profile295)_ 1.22073362825309718e+06 -Plasma_deuteron_thermal_velocity_at_point_296____________________________ (vel_plasma_deuteron_profile296)_ 1.21820847081257962e+06 -Plasma_deuteron_thermal_velocity_at_point_297____________________________ (vel_plasma_deuteron_profile297)_ 1.21567457089872751e+06 -Plasma_deuteron_thermal_velocity_at_point_298____________________________ (vel_plasma_deuteron_profile298)_ 1.21313193783643842e+06 -Plasma_deuteron_thermal_velocity_at_point_299____________________________ (vel_plasma_deuteron_profile299)_ 1.21058058139618183e+06 -Plasma_deuteron_thermal_velocity_at_point_300____________________________ (vel_plasma_deuteron_profile300)_ 1.20802051170853525e+06 -Plasma_deuteron_thermal_velocity_at_point_301____________________________ (vel_plasma_deuteron_profile301)_ 1.20545173937633354e+06 -Plasma_deuteron_thermal_velocity_at_point_302____________________________ (vel_plasma_deuteron_profile302)_ 1.20287427542239707e+06 -Plasma_deuteron_thermal_velocity_at_point_303____________________________ (vel_plasma_deuteron_profile303)_ 1.20028813132392080e+06 -Plasma_deuteron_thermal_velocity_at_point_304____________________________ (vel_plasma_deuteron_profile304)_ 1.19769331903485605e+06 -Plasma_deuteron_thermal_velocity_at_point_305____________________________ (vel_plasma_deuteron_profile305)_ 1.19508985097941384e+06 -Plasma_deuteron_thermal_velocity_at_point_306____________________________ (vel_plasma_deuteron_profile306)_ 1.19247774010829045e+06 -Plasma_deuteron_thermal_velocity_at_point_307____________________________ (vel_plasma_deuteron_profile307)_ 1.18985699980473379e+06 -Plasma_deuteron_thermal_velocity_at_point_308____________________________ (vel_plasma_deuteron_profile308)_ 1.18722764405416744e+06 -Plasma_deuteron_thermal_velocity_at_point_309____________________________ (vel_plasma_deuteron_profile309)_ 1.18458968729603640e+06 -Plasma_deuteron_thermal_velocity_at_point_310____________________________ (vel_plasma_deuteron_profile310)_ 1.18194314456920675e+06 -Plasma_deuteron_thermal_velocity_at_point_311____________________________ (vel_plasma_deuteron_profile311)_ 1.17928803148591937e+06 -Plasma_deuteron_thermal_velocity_at_point_312____________________________ (vel_plasma_deuteron_profile312)_ 1.17662436418001517e+06 -Plasma_deuteron_thermal_velocity_at_point_313____________________________ (vel_plasma_deuteron_profile313)_ 1.17395215945425350e+06 -Plasma_deuteron_thermal_velocity_at_point_314____________________________ (vel_plasma_deuteron_profile314)_ 1.17127143466561800e+06 -Plasma_deuteron_thermal_velocity_at_point_315____________________________ (vel_plasma_deuteron_profile315)_ 1.16858220783111500e+06 -Plasma_deuteron_thermal_velocity_at_point_316____________________________ (vel_plasma_deuteron_profile316)_ 1.16588449757676735e+06 -Plasma_deuteron_thermal_velocity_at_point_317____________________________ (vel_plasma_deuteron_profile317)_ 1.16317832325324439e+06 -Plasma_deuteron_thermal_velocity_at_point_318____________________________ (vel_plasma_deuteron_profile318)_ 1.16046370482961810e+06 -Plasma_deuteron_thermal_velocity_at_point_319____________________________ (vel_plasma_deuteron_profile319)_ 1.15774066303563910e+06 -Plasma_deuteron_thermal_velocity_at_point_320____________________________ (vel_plasma_deuteron_profile320)_ 1.15500921925988095e+06 -Plasma_deuteron_thermal_velocity_at_point_321____________________________ (vel_plasma_deuteron_profile321)_ 1.15226939567599073e+06 -Plasma_deuteron_thermal_velocity_at_point_322____________________________ (vel_plasma_deuteron_profile322)_ 1.14952121520589362e+06 -Plasma_deuteron_thermal_velocity_at_point_323____________________________ (vel_plasma_deuteron_profile323)_ 1.14676470156520931e+06 -Plasma_deuteron_thermal_velocity_at_point_324____________________________ (vel_plasma_deuteron_profile324)_ 1.14399987925706990e+06 -Plasma_deuteron_thermal_velocity_at_point_325____________________________ (vel_plasma_deuteron_profile325)_ 1.14122677361839102e+06 -Plasma_deuteron_thermal_velocity_at_point_326____________________________ (vel_plasma_deuteron_profile326)_ 1.13844541084937239e+06 -Plasma_deuteron_thermal_velocity_at_point_327____________________________ (vel_plasma_deuteron_profile327)_ 1.13565581798640778e+06 -Plasma_deuteron_thermal_velocity_at_point_328____________________________ (vel_plasma_deuteron_profile328)_ 1.13285802302882005e+06 -Plasma_deuteron_thermal_velocity_at_point_329____________________________ (vel_plasma_deuteron_profile329)_ 1.13005205482475040e+06 -Plasma_deuteron_thermal_velocity_at_point_330____________________________ (vel_plasma_deuteron_profile330)_ 1.12723794324312056e+06 -Plasma_deuteron_thermal_velocity_at_point_331____________________________ (vel_plasma_deuteron_profile331)_ 1.12441571908648405e+06 -Plasma_deuteron_thermal_velocity_at_point_332____________________________ (vel_plasma_deuteron_profile332)_ 1.12158541419838602e+06 -Plasma_deuteron_thermal_velocity_at_point_333____________________________ (vel_plasma_deuteron_profile333)_ 1.11874706138514495e+06 -Plasma_deuteron_thermal_velocity_at_point_334____________________________ (vel_plasma_deuteron_profile334)_ 1.11590069463609741e+06 -Plasma_deuteron_thermal_velocity_at_point_335____________________________ (vel_plasma_deuteron_profile335)_ 1.11304634891701443e+06 -Plasma_deuteron_thermal_velocity_at_point_336____________________________ (vel_plasma_deuteron_profile336)_ 1.11018406036938773e+06 -Plasma_deuteron_thermal_velocity_at_point_337____________________________ (vel_plasma_deuteron_profile337)_ 1.10731386630114890e+06 -Plasma_deuteron_thermal_velocity_at_point_338____________________________ (vel_plasma_deuteron_profile338)_ 1.10443580522252969e+06 -Plasma_deuteron_thermal_velocity_at_point_339____________________________ (vel_plasma_deuteron_profile339)_ 1.10154991681013186e+06 -Plasma_deuteron_thermal_velocity_at_point_340____________________________ (vel_plasma_deuteron_profile340)_ 1.09865624206581339e+06 -Plasma_deuteron_thermal_velocity_at_point_341____________________________ (vel_plasma_deuteron_profile341)_ 1.09575482323689107e+06 -Plasma_deuteron_thermal_velocity_at_point_342____________________________ (vel_plasma_deuteron_profile342)_ 1.09284570395432785e+06 -Plasma_deuteron_thermal_velocity_at_point_343____________________________ (vel_plasma_deuteron_profile343)_ 1.08992892918100092e+06 -Plasma_deuteron_thermal_velocity_at_point_344____________________________ (vel_plasma_deuteron_profile344)_ 1.08700454534744401e+06 -Plasma_deuteron_thermal_velocity_at_point_345____________________________ (vel_plasma_deuteron_profile345)_ 1.08407260025060247e+06 -Plasma_deuteron_thermal_velocity_at_point_346____________________________ (vel_plasma_deuteron_profile346)_ 1.08113314326948160e+06 -Plasma_deuteron_thermal_velocity_at_point_347____________________________ (vel_plasma_deuteron_profile347)_ 1.07818622530681943e+06 -Plasma_deuteron_thermal_velocity_at_point_348____________________________ (vel_plasma_deuteron_profile348)_ 1.07523189881809615e+06 -Plasma_deuteron_thermal_velocity_at_point_349____________________________ (vel_plasma_deuteron_profile349)_ 1.07227021792491339e+06 -Plasma_deuteron_thermal_velocity_at_point_350____________________________ (vel_plasma_deuteron_profile350)_ 1.06930123840908520e+06 -Plasma_deuteron_thermal_velocity_at_point_351____________________________ (vel_plasma_deuteron_profile351)_ 1.06632501782374363e+06 -Plasma_deuteron_thermal_velocity_at_point_352____________________________ (vel_plasma_deuteron_profile352)_ 1.06334161545162392e+06 -Plasma_deuteron_thermal_velocity_at_point_353____________________________ (vel_plasma_deuteron_profile353)_ 1.06035109246511292e+06 -Plasma_deuteron_thermal_velocity_at_point_354____________________________ (vel_plasma_deuteron_profile354)_ 1.05735351190042263e+06 -Plasma_deuteron_thermal_velocity_at_point_355____________________________ (vel_plasma_deuteron_profile355)_ 1.05434893875450804e+06 -Plasma_deuteron_thermal_velocity_at_point_356____________________________ (vel_plasma_deuteron_profile356)_ 1.05133744003634364e+06 -Plasma_deuteron_thermal_velocity_at_point_357____________________________ (vel_plasma_deuteron_profile357)_ 1.04831908479544451e+06 -Plasma_deuteron_thermal_velocity_at_point_358____________________________ (vel_plasma_deuteron_profile358)_ 1.04529394426081656e+06 -Plasma_deuteron_thermal_velocity_at_point_359____________________________ (vel_plasma_deuteron_profile359)_ 1.04226209180537355e+06 -Plasma_deuteron_thermal_velocity_at_point_360____________________________ (vel_plasma_deuteron_profile360)_ 1.03922360314033180e+06 -Plasma_deuteron_thermal_velocity_at_point_361____________________________ (vel_plasma_deuteron_profile361)_ 1.03617855620984721e+06 -Plasma_deuteron_thermal_velocity_at_point_362____________________________ (vel_plasma_deuteron_profile362)_ 1.03312703145096882e+06 -Plasma_deuteron_thermal_velocity_at_point_363____________________________ (vel_plasma_deuteron_profile363)_ 1.03006911175807763e+06 -Plasma_deuteron_thermal_velocity_at_point_364____________________________ (vel_plasma_deuteron_profile364)_ 1.02700488258288440e+06 -Plasma_deuteron_thermal_velocity_at_point_365____________________________ (vel_plasma_deuteron_profile365)_ 1.02393443196816987e+06 -Plasma_deuteron_thermal_velocity_at_point_366____________________________ (vel_plasma_deuteron_profile366)_ 1.02085785073869047e+06 -Plasma_deuteron_thermal_velocity_at_point_367____________________________ (vel_plasma_deuteron_profile367)_ 1.01777523248002341e+06 -Plasma_deuteron_thermal_velocity_at_point_368____________________________ (vel_plasma_deuteron_profile368)_ 1.01468667369420361e+06 -Plasma_deuteron_thermal_velocity_at_point_369____________________________ (vel_plasma_deuteron_profile369)_ 1.01159227388439514e+06 -Plasma_deuteron_thermal_velocity_at_point_370____________________________ (vel_plasma_deuteron_profile370)_ 1.00849213557697413e+06 -Plasma_deuteron_thermal_velocity_at_point_371____________________________ (vel_plasma_deuteron_profile371)_ 1.00538636451786628e+06 -Plasma_deuteron_thermal_velocity_at_point_372____________________________ (vel_plasma_deuteron_profile372)_ 1.00227506970842322e+06 -Plasma_deuteron_thermal_velocity_at_point_373____________________________ (vel_plasma_deuteron_profile373)_ 9.99158363571954309e+05 -Plasma_deuteron_thermal_velocity_at_point_374____________________________ (vel_plasma_deuteron_profile374)_ 9.96036361933199689e+05 -Plasma_deuteron_thermal_velocity_at_point_375____________________________ (vel_plasma_deuteron_profile375)_ 9.92909184334217338e+05 -Plasma_deuteron_thermal_velocity_at_point_376____________________________ (vel_plasma_deuteron_profile376)_ 9.89776953958194354e+05 -Plasma_deuteron_thermal_velocity_at_point_377____________________________ (vel_plasma_deuteron_profile377)_ 9.86639797860402730e+05 -Plasma_deuteron_thermal_velocity_at_point_378____________________________ (vel_plasma_deuteron_profile378)_ 9.83497847051519318e+05 -Plasma_deuteron_thermal_velocity_at_point_379____________________________ (vel_plasma_deuteron_profile379)_ 9.80351236669187085e+05 -Plasma_deuteron_thermal_velocity_at_point_380____________________________ (vel_plasma_deuteron_profile380)_ 9.77200106066212640e+05 -Plasma_deuteron_thermal_velocity_at_point_381____________________________ (vel_plasma_deuteron_profile381)_ 9.74044598977410467e+05 -Plasma_deuteron_thermal_velocity_at_point_382____________________________ (vel_plasma_deuteron_profile382)_ 9.70884863622991135e+05 -Plasma_deuteron_thermal_velocity_at_point_383____________________________ (vel_plasma_deuteron_profile383)_ 9.67721052963563474e+05 -Plasma_deuteron_thermal_velocity_at_point_384____________________________ (vel_plasma_deuteron_profile384)_ 9.64553324737807387e+05 -Plasma_deuteron_thermal_velocity_at_point_385____________________________ (vel_plasma_deuteron_profile385)_ 9.61381841677385266e+05 -Plasma_deuteron_thermal_velocity_at_point_386____________________________ (vel_plasma_deuteron_profile386)_ 9.58206771746978047e+05 -Plasma_deuteron_thermal_velocity_at_point_387____________________________ (vel_plasma_deuteron_profile387)_ 9.55028288148818770e+05 -Plasma_deuteron_thermal_velocity_at_point_388____________________________ (vel_plasma_deuteron_profile388)_ 9.51846569668001612e+05 -Plasma_deuteron_thermal_velocity_at_point_389____________________________ (vel_plasma_deuteron_profile389)_ 9.48661800809083041e+05 -Plasma_deuteron_thermal_velocity_at_point_390____________________________ (vel_plasma_deuteron_profile390)_ 9.45474171993426979e+05 -Plasma_deuteron_thermal_velocity_at_point_391____________________________ (vel_plasma_deuteron_profile391)_ 9.42283879733990994e+05 -Plasma_deuteron_thermal_velocity_at_point_392____________________________ (vel_plasma_deuteron_profile392)_ 9.39091126882614684e+05 -Plasma_deuteron_thermal_velocity_at_point_393____________________________ (vel_plasma_deuteron_profile393)_ 9.35896122903530719e+05 -Plasma_deuteron_thermal_velocity_at_point_394____________________________ (vel_plasma_deuteron_profile394)_ 9.32699084018568858e+05 -Plasma_deuteron_thermal_velocity_at_point_395____________________________ (vel_plasma_deuteron_profile395)_ 9.29500233446359285e+05 -Plasma_deuteron_thermal_velocity_at_point_396____________________________ (vel_plasma_deuteron_profile396)_ 9.26299801770074875e+05 -Plasma_deuteron_thermal_velocity_at_point_397____________________________ (vel_plasma_deuteron_profile397)_ 9.23098027096286183e+05 -Plasma_deuteron_thermal_velocity_at_point_398____________________________ (vel_plasma_deuteron_profile398)_ 9.19895155390281929e+05 -Plasma_deuteron_thermal_velocity_at_point_399____________________________ (vel_plasma_deuteron_profile399)_ 9.16691440660114633e+05 -Plasma_deuteron_thermal_velocity_at_point_400____________________________ (vel_plasma_deuteron_profile400)_ 9.13487145444364636e+05 -Plasma_deuteron_thermal_velocity_at_point_401____________________________ (vel_plasma_deuteron_profile401)_ 9.10282540969776106e+05 -Plasma_deuteron_thermal_velocity_at_point_402____________________________ (vel_plasma_deuteron_profile402)_ 9.07077907493037870e+05 -Plasma_deuteron_thermal_velocity_at_point_403____________________________ (vel_plasma_deuteron_profile403)_ 9.03873534742870950e+05 -Plasma_deuteron_thermal_velocity_at_point_404____________________________ (vel_plasma_deuteron_profile404)_ 9.00669722138005309e+05 -Plasma_deuteron_thermal_velocity_at_point_405____________________________ (vel_plasma_deuteron_profile405)_ 8.97466779364596470e+05 -Plasma_deuteron_thermal_velocity_at_point_406____________________________ (vel_plasma_deuteron_profile406)_ 8.94265026490705437e+05 -Plasma_deuteron_thermal_velocity_at_point_407____________________________ (vel_plasma_deuteron_profile407)_ 8.91064794681076775e+05 -Plasma_deuteron_thermal_velocity_at_point_408____________________________ (vel_plasma_deuteron_profile408)_ 8.87866426369666471e+05 -Plasma_deuteron_thermal_velocity_at_point_409____________________________ (vel_plasma_deuteron_profile409)_ 8.84670275896776933e+05 -Plasma_deuteron_thermal_velocity_at_point_410____________________________ (vel_plasma_deuteron_profile410)_ 8.81476709897954948e+05 -Plasma_deuteron_thermal_velocity_at_point_411____________________________ (vel_plasma_deuteron_profile411)_ 8.78286107801681967e+05 -Plasma_deuteron_thermal_velocity_at_point_412____________________________ (vel_plasma_deuteron_profile412)_ 8.75098862427028595e+05 -Plasma_deuteron_thermal_velocity_at_point_413____________________________ (vel_plasma_deuteron_profile413)_ 8.71915380420378176e+05 -Plasma_deuteron_thermal_velocity_at_point_414____________________________ (vel_plasma_deuteron_profile414)_ 8.68736082946072682e+05 -Plasma_deuteron_thermal_velocity_at_point_415____________________________ (vel_plasma_deuteron_profile415)_ 8.65561406251041335e+05 -Plasma_deuteron_thermal_velocity_at_point_416____________________________ (vel_plasma_deuteron_profile416)_ 8.62391802331257379e+05 -Plasma_deuteron_thermal_velocity_at_point_417____________________________ (vel_plasma_deuteron_profile417)_ 8.59227739533923799e+05 -Plasma_deuteron_thermal_velocity_at_point_418____________________________ (vel_plasma_deuteron_profile418)_ 8.56069703466340201e+05 -Plasma_deuteron_thermal_velocity_at_point_419____________________________ (vel_plasma_deuteron_profile419)_ 8.52918197522896924e+05 -Plasma_deuteron_thermal_velocity_at_point_420____________________________ (vel_plasma_deuteron_profile420)_ 8.49773743853518390e+05 -Plasma_deuteron_thermal_velocity_at_point_421____________________________ (vel_plasma_deuteron_profile421)_ 8.46636884248296148e+05 -Plasma_deuteron_thermal_velocity_at_point_422____________________________ (vel_plasma_deuteron_profile422)_ 8.43508180835004314e+05 -Plasma_deuteron_thermal_velocity_at_point_423____________________________ (vel_plasma_deuteron_profile423)_ 8.40388217296419549e+05 -Plasma_deuteron_thermal_velocity_at_point_424____________________________ (vel_plasma_deuteron_profile424)_ 8.37277599738448043e+05 -Plasma_deuteron_thermal_velocity_at_point_425____________________________ (vel_plasma_deuteron_profile425)_ 8.34176957851086627e+05 -Plasma_deuteron_thermal_velocity_at_point_426____________________________ (vel_plasma_deuteron_profile426)_ 8.31086946032882319e+05 -Plasma_deuteron_thermal_velocity_at_point_427____________________________ (vel_plasma_deuteron_profile427)_ 8.28008244681875920e+05 -Plasma_deuteron_thermal_velocity_at_point_428____________________________ (vel_plasma_deuteron_profile428)_ 8.24941561493074521e+05 -Plasma_deuteron_thermal_velocity_at_point_429____________________________ (vel_plasma_deuteron_profile429)_ 8.21887632913243608e+05 -Plasma_deuteron_thermal_velocity_at_point_430____________________________ (vel_plasma_deuteron_profile430)_ 8.18847225658388925e+05 -Plasma_deuteron_thermal_velocity_at_point_431____________________________ (vel_plasma_deuteron_profile431)_ 8.15821138459273381e+05 -Plasma_deuteron_thermal_velocity_at_point_432____________________________ (vel_plasma_deuteron_profile432)_ 8.12810203628093004e+05 -Plasma_deuteron_thermal_velocity_at_point_433____________________________ (vel_plasma_deuteron_profile433)_ 8.09815289277778706e+05 -Plasma_deuteron_thermal_velocity_at_point_434____________________________ (vel_plasma_deuteron_profile434)_ 8.06837301133008441e+05 -Plasma_deuteron_thermal_velocity_at_point_435____________________________ (vel_plasma_deuteron_profile435)_ 8.03877185037239571e+05 -Plasma_deuteron_thermal_velocity_at_point_436____________________________ (vel_plasma_deuteron_profile436)_ 8.00935929224520107e+05 -Plasma_deuteron_thermal_velocity_at_point_437____________________________ (vel_plasma_deuteron_profile437)_ 7.98014567178687896e+05 -Plasma_deuteron_thermal_velocity_at_point_438____________________________ (vel_plasma_deuteron_profile438)_ 7.95114180514681269e+05 -Plasma_deuteron_thermal_velocity_at_point_439____________________________ (vel_plasma_deuteron_profile439)_ 7.92235902206392842e+05 -Plasma_deuteron_thermal_velocity_at_point_440____________________________ (vel_plasma_deuteron_profile440)_ 7.89380920184848947e+05 -Plasma_deuteron_thermal_velocity_at_point_441____________________________ (vel_plasma_deuteron_profile441)_ 7.86550481406655745e+05 -Plasma_deuteron_thermal_velocity_at_point_442____________________________ (vel_plasma_deuteron_profile442)_ 7.83745896036440390e+05 -Plasma_deuteron_thermal_velocity_at_point_443____________________________ (vel_plasma_deuteron_profile443)_ 7.80968542583347880e+05 -Plasma_deuteron_thermal_velocity_at_point_444____________________________ (vel_plasma_deuteron_profile444)_ 7.78219873251992161e+05 -Plasma_deuteron_thermal_velocity_at_point_445____________________________ (vel_plasma_deuteron_profile445)_ 7.75501420219113817e+05 -Plasma_deuteron_thermal_velocity_at_point_446____________________________ (vel_plasma_deuteron_profile446)_ 7.72814802545947256e+05 -Plasma_deuteron_thermal_velocity_at_point_447____________________________ (vel_plasma_deuteron_profile447)_ 7.70161734287887579e+05 -Plasma_deuteron_thermal_velocity_at_point_448____________________________ (vel_plasma_deuteron_profile448)_ 7.67544033453475568e+05 -Plasma_deuteron_thermal_velocity_at_point_449____________________________ (vel_plasma_deuteron_profile449)_ 7.64963632659018738e+05 -Plasma_deuteron_thermal_velocity_at_point_450____________________________ (vel_plasma_deuteron_profile450)_ 7.62422591173632303e+05 -Plasma_deuteron_thermal_velocity_at_point_451____________________________ (vel_plasma_deuteron_profile451)_ 7.59923109238472302e+05 -Plasma_deuteron_thermal_velocity_at_point_452____________________________ (vel_plasma_deuteron_profile452)_ 7.57467544771909597e+05 -Plasma_deuteron_thermal_velocity_at_point_453____________________________ (vel_plasma_deuteron_profile453)_ 7.55058433282150538e+05 -Plasma_deuteron_thermal_velocity_at_point_454____________________________ (vel_plasma_deuteron_profile454)_ 7.52698511781720445e+05 -Plasma_deuteron_thermal_velocity_at_point_455____________________________ (vel_plasma_deuteron_profile455)_ 7.50390747879389208e+05 -Plasma_deuteron_thermal_velocity_at_point_456____________________________ (vel_plasma_deuteron_profile456)_ 7.48138375212690560e+05 -Plasma_deuteron_thermal_velocity_at_point_457____________________________ (vel_plasma_deuteron_profile457)_ 7.45944938057974679e+05 -Plasma_deuteron_thermal_velocity_at_point_458____________________________ (vel_plasma_deuteron_profile458)_ 7.43814347277266206e+05 -Plasma_deuteron_thermal_velocity_at_point_459____________________________ (vel_plasma_deuteron_profile459)_ 7.41750952738827677e+05 -Plasma_deuteron_thermal_velocity_at_point_460____________________________ (vel_plasma_deuteron_profile460)_ 7.39759638171554892e+05 -Plasma_deuteron_thermal_velocity_at_point_461____________________________ (vel_plasma_deuteron_profile461)_ 7.37845949046910391e+05 -Plasma_deuteron_thermal_velocity_at_point_462____________________________ (vel_plasma_deuteron_profile462)_ 7.36016269538303488e+05 -Plasma_deuteron_thermal_velocity_at_point_463____________________________ (vel_plasma_deuteron_profile463)_ 7.34278076202644268e+05 -Plasma_deuteron_thermal_velocity_at_point_464____________________________ (vel_plasma_deuteron_profile464)_ 7.32640317051162594e+05 -Plasma_deuteron_thermal_velocity_at_point_465____________________________ (vel_plasma_deuteron_profile465)_ 7.31114010202158126e+05 -Plasma_deuteron_thermal_velocity_at_point_466____________________________ (vel_plasma_deuteron_profile466)_ 7.29713257572934846e+05 -Plasma_deuteron_thermal_velocity_at_point_467____________________________ (vel_plasma_deuteron_profile467)_ 7.28457141999783111e+05 -Plasma_deuteron_thermal_velocity_at_point_468____________________________ (vel_plasma_deuteron_profile468)_ 7.27373845723198610e+05 -Plasma_deuteron_thermal_velocity_at_point_469____________________________ (vel_plasma_deuteron_profile469)_ 7.26512251974986633e+05 +Volume_averaged_deuteron_thermal_velocity_(m/s)__________________________ (vel_plasma_deuteron_vol_avg)__ 1.09332656092300592e+06 +Plasma_deuteron_thermal_velocity_at_point_0______________________________ (vel_plasma_deuteron_profile0)_ 1.56983626689690491e+06 +Plasma_deuteron_thermal_velocity_at_point_1______________________________ (vel_plasma_deuteron_profile1)_ 1.56983221670454904e+06 +Plasma_deuteron_thermal_velocity_at_point_2______________________________ (vel_plasma_deuteron_profile2)_ 1.56982006610927777e+06 +Plasma_deuteron_thermal_velocity_at_point_3______________________________ (vel_plasma_deuteron_profile3)_ 1.56979981507872464e+06 +Plasma_deuteron_thermal_velocity_at_point_4______________________________ (vel_plasma_deuteron_profile4)_ 1.56977146353139845e+06 +Plasma_deuteron_thermal_velocity_at_point_5______________________________ (vel_plasma_deuteron_profile5)_ 1.56973501138435025e+06 +Plasma_deuteron_thermal_velocity_at_point_6______________________________ (vel_plasma_deuteron_profile6)_ 1.56969045852456288e+06 +Plasma_deuteron_thermal_velocity_at_point_7______________________________ (vel_plasma_deuteron_profile7)_ 1.56963780478669330e+06 +Plasma_deuteron_thermal_velocity_at_point_8______________________________ (vel_plasma_deuteron_profile8)_ 1.56957705002616299e+06 +Plasma_deuteron_thermal_velocity_at_point_9______________________________ (vel_plasma_deuteron_profile9)_ 1.56950819403968798e+06 +Plasma_deuteron_thermal_velocity_at_point_10_____________________________ (vel_plasma_deuteron_profile10)_ 1.56943123659068509e+06 +Plasma_deuteron_thermal_velocity_at_point_11_____________________________ (vel_plasma_deuteron_profile11)_ 1.56934617743468727e+06 +Plasma_deuteron_thermal_velocity_at_point_12_____________________________ (vel_plasma_deuteron_profile12)_ 1.56925301628117636e+06 +Plasma_deuteron_thermal_velocity_at_point_13_____________________________ (vel_plasma_deuteron_profile13)_ 1.56915175285078748e+06 +Plasma_deuteron_thermal_velocity_at_point_14_____________________________ (vel_plasma_deuteron_profile14)_ 1.56904238679580507e+06 +Plasma_deuteron_thermal_velocity_at_point_15_____________________________ (vel_plasma_deuteron_profile15)_ 1.56892491777008004e+06 +Plasma_deuteron_thermal_velocity_at_point_16_____________________________ (vel_plasma_deuteron_profile16)_ 1.56879934538767254e+06 +Plasma_deuteron_thermal_velocity_at_point_17_____________________________ (vel_plasma_deuteron_profile17)_ 1.56866566923553683e+06 +Plasma_deuteron_thermal_velocity_at_point_18_____________________________ (vel_plasma_deuteron_profile18)_ 1.56852388888939423e+06 +Plasma_deuteron_thermal_velocity_at_point_19_____________________________ (vel_plasma_deuteron_profile19)_ 1.56837400387871312e+06 +Plasma_deuteron_thermal_velocity_at_point_20_____________________________ (vel_plasma_deuteron_profile20)_ 1.56821601371211698e+06 +Plasma_deuteron_thermal_velocity_at_point_21_____________________________ (vel_plasma_deuteron_profile21)_ 1.56804991788371047e+06 +Plasma_deuteron_thermal_velocity_at_point_22_____________________________ (vel_plasma_deuteron_profile22)_ 1.56787571584440884e+06 +Plasma_deuteron_thermal_velocity_at_point_23_____________________________ (vel_plasma_deuteron_profile23)_ 1.56769340702734422e+06 +Plasma_deuteron_thermal_velocity_at_point_24_____________________________ (vel_plasma_deuteron_profile24)_ 1.56750299086374347e+06 +Plasma_deuteron_thermal_velocity_at_point_25_____________________________ (vel_plasma_deuteron_profile25)_ 1.56730446671286388e+06 +Plasma_deuteron_thermal_velocity_at_point_26_____________________________ (vel_plasma_deuteron_profile26)_ 1.56709783392559062e+06 +Plasma_deuteron_thermal_velocity_at_point_27_____________________________ (vel_plasma_deuteron_profile27)_ 1.56688309183484502e+06 +Plasma_deuteron_thermal_velocity_at_point_28_____________________________ (vel_plasma_deuteron_profile28)_ 1.56666023974598572e+06 +Plasma_deuteron_thermal_velocity_at_point_29_____________________________ (vel_plasma_deuteron_profile29)_ 1.56642927692401223e+06 +Plasma_deuteron_thermal_velocity_at_point_30_____________________________ (vel_plasma_deuteron_profile30)_ 1.56619020263809524e+06 +Plasma_deuteron_thermal_velocity_at_point_31_____________________________ (vel_plasma_deuteron_profile31)_ 1.56594301609463827e+06 +Plasma_deuteron_thermal_velocity_at_point_32_____________________________ (vel_plasma_deuteron_profile32)_ 1.56568771651047468e+06 +Plasma_deuteron_thermal_velocity_at_point_33_____________________________ (vel_plasma_deuteron_profile33)_ 1.56542430302360118e+06 +Plasma_deuteron_thermal_velocity_at_point_34_____________________________ (vel_plasma_deuteron_profile34)_ 1.56515277480463334e+06 +Plasma_deuteron_thermal_velocity_at_point_35_____________________________ (vel_plasma_deuteron_profile35)_ 1.56487313095476828e+06 +Plasma_deuteron_thermal_velocity_at_point_36_____________________________ (vel_plasma_deuteron_profile36)_ 1.56458537058858713e+06 +Plasma_deuteron_thermal_velocity_at_point_37_____________________________ (vel_plasma_deuteron_profile37)_ 1.56428949276066362e+06 +Plasma_deuteron_thermal_velocity_at_point_38_____________________________ (vel_plasma_deuteron_profile38)_ 1.56398549650374171e+06 +Plasma_deuteron_thermal_velocity_at_point_39_____________________________ (vel_plasma_deuteron_profile39)_ 1.56367338084461610e+06 +Plasma_deuteron_thermal_velocity_at_point_40_____________________________ (vel_plasma_deuteron_profile40)_ 1.56335314475301653e+06 +Plasma_deuteron_thermal_velocity_at_point_41_____________________________ (vel_plasma_deuteron_profile41)_ 1.56302478721491131e+06 +Plasma_deuteron_thermal_velocity_at_point_42_____________________________ (vel_plasma_deuteron_profile42)_ 1.56268830714627099e+06 +Plasma_deuteron_thermal_velocity_at_point_43_____________________________ (vel_plasma_deuteron_profile43)_ 1.56234370346957794e+06 +Plasma_deuteron_thermal_velocity_at_point_44_____________________________ (vel_plasma_deuteron_profile44)_ 1.56199097506267275e+06 +Plasma_deuteron_thermal_velocity_at_point_45_____________________________ (vel_plasma_deuteron_profile45)_ 1.56163012077781488e+06 +Plasma_deuteron_thermal_velocity_at_point_46_____________________________ (vel_plasma_deuteron_profile46)_ 1.56126113947035442e+06 +Plasma_deuteron_thermal_velocity_at_point_47_____________________________ (vel_plasma_deuteron_profile47)_ 1.56088402991237538e+06 +Plasma_deuteron_thermal_velocity_at_point_48_____________________________ (vel_plasma_deuteron_profile48)_ 1.56049879092361475e+06 +Plasma_deuteron_thermal_velocity_at_point_49_____________________________ (vel_plasma_deuteron_profile49)_ 1.56010542120836442e+06 +Plasma_deuteron_thermal_velocity_at_point_50_____________________________ (vel_plasma_deuteron_profile50)_ 1.55970391955038533e+06 +Plasma_deuteron_thermal_velocity_at_point_51_____________________________ (vel_plasma_deuteron_profile51)_ 1.55929428461136878e+06 +Plasma_deuteron_thermal_velocity_at_point_52_____________________________ (vel_plasma_deuteron_profile52)_ 1.55887651508113230e+06 +Plasma_deuteron_thermal_velocity_at_point_53_____________________________ (vel_plasma_deuteron_profile53)_ 1.55845060961996322e+06 +Plasma_deuteron_thermal_velocity_at_point_54_____________________________ (vel_plasma_deuteron_profile54)_ 1.55801656684570061e+06 +Plasma_deuteron_thermal_velocity_at_point_55_____________________________ (vel_plasma_deuteron_profile55)_ 1.55757438535282295e+06 +Plasma_deuteron_thermal_velocity_at_point_56_____________________________ (vel_plasma_deuteron_profile56)_ 1.55712406370914006e+06 +Plasma_deuteron_thermal_velocity_at_point_57_____________________________ (vel_plasma_deuteron_profile57)_ 1.55666560048772790e+06 +Plasma_deuteron_thermal_velocity_at_point_58_____________________________ (vel_plasma_deuteron_profile58)_ 1.55619899419953860e+06 +Plasma_deuteron_thermal_velocity_at_point_59_____________________________ (vel_plasma_deuteron_profile59)_ 1.55572424333812622e+06 +Plasma_deuteron_thermal_velocity_at_point_60_____________________________ (vel_plasma_deuteron_profile60)_ 1.55524134636991937e+06 +Plasma_deuteron_thermal_velocity_at_point_61_____________________________ (vel_plasma_deuteron_profile61)_ 1.55475030175656150e+06 +Plasma_deuteron_thermal_velocity_at_point_62_____________________________ (vel_plasma_deuteron_profile62)_ 1.55425110789383319e+06 +Plasma_deuteron_thermal_velocity_at_point_63_____________________________ (vel_plasma_deuteron_profile63)_ 1.55374376320779463e+06 +Plasma_deuteron_thermal_velocity_at_point_64_____________________________ (vel_plasma_deuteron_profile64)_ 1.55322826604875317e+06 +Plasma_deuteron_thermal_velocity_at_point_65_____________________________ (vel_plasma_deuteron_profile65)_ 1.55270461477459525e+06 +Plasma_deuteron_thermal_velocity_at_point_66_____________________________ (vel_plasma_deuteron_profile66)_ 1.55217280768321268e+06 +Plasma_deuteron_thermal_velocity_at_point_67_____________________________ (vel_plasma_deuteron_profile67)_ 1.55163284309591237e+06 +Plasma_deuteron_thermal_velocity_at_point_68_____________________________ (vel_plasma_deuteron_profile68)_ 1.55108471926087257e+06 +Plasma_deuteron_thermal_velocity_at_point_69_____________________________ (vel_plasma_deuteron_profile69)_ 1.55052843441727664e+06 +Plasma_deuteron_thermal_velocity_at_point_70_____________________________ (vel_plasma_deuteron_profile70)_ 1.54996398680164199e+06 +Plasma_deuteron_thermal_velocity_at_point_71_____________________________ (vel_plasma_deuteron_profile71)_ 1.54939137459942256e+06 +Plasma_deuteron_thermal_velocity_at_point_72_____________________________ (vel_plasma_deuteron_profile72)_ 1.54881059598025307e+06 +Plasma_deuteron_thermal_velocity_at_point_73_____________________________ (vel_plasma_deuteron_profile73)_ 1.54822164908171096e+06 +Plasma_deuteron_thermal_velocity_at_point_74_____________________________ (vel_plasma_deuteron_profile74)_ 1.54762453201883007e+06 +Plasma_deuteron_thermal_velocity_at_point_75_____________________________ (vel_plasma_deuteron_profile75)_ 1.54701924291298119e+06 +Plasma_deuteron_thermal_velocity_at_point_76_____________________________ (vel_plasma_deuteron_profile76)_ 1.54640577978532040e+06 +Plasma_deuteron_thermal_velocity_at_point_77_____________________________ (vel_plasma_deuteron_profile77)_ 1.54578414072109177e+06 +Plasma_deuteron_thermal_velocity_at_point_78_____________________________ (vel_plasma_deuteron_profile78)_ 1.54515432372758514e+06 +Plasma_deuteron_thermal_velocity_at_point_79_____________________________ (vel_plasma_deuteron_profile79)_ 1.54451632679201523e+06 +Plasma_deuteron_thermal_velocity_at_point_80_____________________________ (vel_plasma_deuteron_profile80)_ 1.54387014788783831e+06 +Plasma_deuteron_thermal_velocity_at_point_81_____________________________ (vel_plasma_deuteron_profile81)_ 1.54321578494875296e+06 +Plasma_deuteron_thermal_velocity_at_point_82_____________________________ (vel_plasma_deuteron_profile82)_ 1.54255323592025600e+06 +Plasma_deuteron_thermal_velocity_at_point_83_____________________________ (vel_plasma_deuteron_profile83)_ 1.54188249867866514e+06 +Plasma_deuteron_thermal_velocity_at_point_84_____________________________ (vel_plasma_deuteron_profile84)_ 1.54120357110207481e+06 +Plasma_deuteron_thermal_velocity_at_point_85_____________________________ (vel_plasma_deuteron_profile85)_ 1.54051645103462390e+06 +Plasma_deuteron_thermal_velocity_at_point_86_____________________________ (vel_plasma_deuteron_profile86)_ 1.53982113630250422e+06 +Plasma_deuteron_thermal_velocity_at_point_87_____________________________ (vel_plasma_deuteron_profile87)_ 1.53911762469435763e+06 +Plasma_deuteron_thermal_velocity_at_point_88_____________________________ (vel_plasma_deuteron_profile88)_ 1.53840591400971753e+06 +Plasma_deuteron_thermal_velocity_at_point_89_____________________________ (vel_plasma_deuteron_profile89)_ 1.53768600198429241e+06 +Plasma_deuteron_thermal_velocity_at_point_90_____________________________ (vel_plasma_deuteron_profile90)_ 1.53695788633189630e+06 +Plasma_deuteron_thermal_velocity_at_point_91_____________________________ (vel_plasma_deuteron_profile91)_ 1.53622156477999920e+06 +Plasma_deuteron_thermal_velocity_at_point_92_____________________________ (vel_plasma_deuteron_profile92)_ 1.53547703498840868e+06 +Plasma_deuteron_thermal_velocity_at_point_93_____________________________ (vel_plasma_deuteron_profile93)_ 1.53472429462049808e+06 +Plasma_deuteron_thermal_velocity_at_point_94_____________________________ (vel_plasma_deuteron_profile94)_ 1.53396334132032562e+06 +Plasma_deuteron_thermal_velocity_at_point_95_____________________________ (vel_plasma_deuteron_profile95)_ 1.53319417267991812e+06 +Plasma_deuteron_thermal_velocity_at_point_96_____________________________ (vel_plasma_deuteron_profile96)_ 1.53241678628785047e+06 +Plasma_deuteron_thermal_velocity_at_point_97_____________________________ (vel_plasma_deuteron_profile97)_ 1.53163117969653127e+06 +Plasma_deuteron_thermal_velocity_at_point_98_____________________________ (vel_plasma_deuteron_profile98)_ 1.53083735046109115e+06 +Plasma_deuteron_thermal_velocity_at_point_99_____________________________ (vel_plasma_deuteron_profile99)_ 1.53003529609360546e+06 +Plasma_deuteron_thermal_velocity_at_point_100____________________________ (vel_plasma_deuteron_profile100)_ 1.52922501408242434e+06 +Plasma_deuteron_thermal_velocity_at_point_101____________________________ (vel_plasma_deuteron_profile101)_ 1.52840650188218290e+06 +Plasma_deuteron_thermal_velocity_at_point_102____________________________ (vel_plasma_deuteron_profile102)_ 1.52757975695603294e+06 +Plasma_deuteron_thermal_velocity_at_point_103____________________________ (vel_plasma_deuteron_profile103)_ 1.52674477672977885e+06 +Plasma_deuteron_thermal_velocity_at_point_104____________________________ (vel_plasma_deuteron_profile104)_ 1.52590155859163869e+06 +Plasma_deuteron_thermal_velocity_at_point_105____________________________ (vel_plasma_deuteron_profile105)_ 1.52505009992798488e+06 +Plasma_deuteron_thermal_velocity_at_point_106____________________________ (vel_plasma_deuteron_profile106)_ 1.52419039807737339e+06 +Plasma_deuteron_thermal_velocity_at_point_107____________________________ (vel_plasma_deuteron_profile107)_ 1.52332245040559303e+06 +Plasma_deuteron_thermal_velocity_at_point_108____________________________ (vel_plasma_deuteron_profile108)_ 1.52244625419745757e+06 +Plasma_deuteron_thermal_velocity_at_point_109____________________________ (vel_plasma_deuteron_profile109)_ 1.52156180675151851e+06 +Plasma_deuteron_thermal_velocity_at_point_110____________________________ (vel_plasma_deuteron_profile110)_ 1.52066910531762033e+06 +Plasma_deuteron_thermal_velocity_at_point_111____________________________ (vel_plasma_deuteron_profile111)_ 1.51976814716226514e+06 +Plasma_deuteron_thermal_velocity_at_point_112____________________________ (vel_plasma_deuteron_profile112)_ 1.51885892950938852e+06 +Plasma_deuteron_thermal_velocity_at_point_113____________________________ (vel_plasma_deuteron_profile113)_ 1.51794144955322845e+06 +Plasma_deuteron_thermal_velocity_at_point_114____________________________ (vel_plasma_deuteron_profile114)_ 1.51701570445150579e+06 +Plasma_deuteron_thermal_velocity_at_point_115____________________________ (vel_plasma_deuteron_profile115)_ 1.51608169139097515e+06 +Plasma_deuteron_thermal_velocity_at_point_116____________________________ (vel_plasma_deuteron_profile116)_ 1.51513940750833228e+06 +Plasma_deuteron_thermal_velocity_at_point_117____________________________ (vel_plasma_deuteron_profile117)_ 1.51418884991955571e+06 +Plasma_deuteron_thermal_velocity_at_point_118____________________________ (vel_plasma_deuteron_profile118)_ 1.51323001568671782e+06 +Plasma_deuteron_thermal_velocity_at_point_119____________________________ (vel_plasma_deuteron_profile119)_ 1.51226290193311917e+06 +Plasma_deuteron_thermal_velocity_at_point_120____________________________ (vel_plasma_deuteron_profile120)_ 1.51128750567496638e+06 +Plasma_deuteron_thermal_velocity_at_point_121____________________________ (vel_plasma_deuteron_profile121)_ 1.51030382396951457e+06 +Plasma_deuteron_thermal_velocity_at_point_122____________________________ (vel_plasma_deuteron_profile122)_ 1.50931185382579081e+06 +Plasma_deuteron_thermal_velocity_at_point_123____________________________ (vel_plasma_deuteron_profile123)_ 1.50831159222081024e+06 +Plasma_deuteron_thermal_velocity_at_point_124____________________________ (vel_plasma_deuteron_profile124)_ 1.50730303614233364e+06 +Plasma_deuteron_thermal_velocity_at_point_125____________________________ (vel_plasma_deuteron_profile125)_ 1.50628618255561637e+06 +Plasma_deuteron_thermal_velocity_at_point_126____________________________ (vel_plasma_deuteron_profile126)_ 1.50526102836339106e+06 +Plasma_deuteron_thermal_velocity_at_point_127____________________________ (vel_plasma_deuteron_profile127)_ 1.50422757049503806e+06 +Plasma_deuteron_thermal_velocity_at_point_128____________________________ (vel_plasma_deuteron_profile128)_ 1.50318580584676424e+06 +Plasma_deuteron_thermal_velocity_at_point_129____________________________ (vel_plasma_deuteron_profile129)_ 1.50213573130124412e+06 +Plasma_deuteron_thermal_velocity_at_point_130____________________________ (vel_plasma_deuteron_profile130)_ 1.50107734369416465e+06 +Plasma_deuteron_thermal_velocity_at_point_131____________________________ (vel_plasma_deuteron_profile131)_ 1.50001063989371108e+06 +Plasma_deuteron_thermal_velocity_at_point_132____________________________ (vel_plasma_deuteron_profile132)_ 1.49893561668401095e+06 +Plasma_deuteron_thermal_velocity_at_point_133____________________________ (vel_plasma_deuteron_profile133)_ 1.49785227091121487e+06 +Plasma_deuteron_thermal_velocity_at_point_134____________________________ (vel_plasma_deuteron_profile134)_ 1.49676059931687941e+06 +Plasma_deuteron_thermal_velocity_at_point_135____________________________ (vel_plasma_deuteron_profile135)_ 1.49566059867750807e+06 +Plasma_deuteron_thermal_velocity_at_point_136____________________________ (vel_plasma_deuteron_profile136)_ 1.49455226576777827e+06 +Plasma_deuteron_thermal_velocity_at_point_137____________________________ (vel_plasma_deuteron_profile137)_ 1.49343559728017868e+06 +Plasma_deuteron_thermal_velocity_at_point_138____________________________ (vel_plasma_deuteron_profile138)_ 1.49231058995156130e+06 +Plasma_deuteron_thermal_velocity_at_point_139____________________________ (vel_plasma_deuteron_profile139)_ 1.49117724047948141e+06 +Plasma_deuteron_thermal_velocity_at_point_140____________________________ (vel_plasma_deuteron_profile140)_ 1.49003554552856041e+06 +Plasma_deuteron_thermal_velocity_at_point_141____________________________ (vel_plasma_deuteron_profile141)_ 1.48888550178043754e+06 +Plasma_deuteron_thermal_velocity_at_point_142____________________________ (vel_plasma_deuteron_profile142)_ 1.48772710587328579e+06 +Plasma_deuteron_thermal_velocity_at_point_143____________________________ (vel_plasma_deuteron_profile143)_ 1.48656035443501640e+06 +Plasma_deuteron_thermal_velocity_at_point_144____________________________ (vel_plasma_deuteron_profile144)_ 1.48538524409648380e+06 +Plasma_deuteron_thermal_velocity_at_point_145____________________________ (vel_plasma_deuteron_profile145)_ 1.48420177143416344e+06 +Plasma_deuteron_thermal_velocity_at_point_146____________________________ (vel_plasma_deuteron_profile146)_ 1.48300993305384670e+06 +Plasma_deuteron_thermal_velocity_at_point_147____________________________ (vel_plasma_deuteron_profile147)_ 1.48180972552322922e+06 +Plasma_deuteron_thermal_velocity_at_point_148____________________________ (vel_plasma_deuteron_profile148)_ 1.48060114538504160e+06 +Plasma_deuteron_thermal_velocity_at_point_149____________________________ (vel_plasma_deuteron_profile149)_ 1.47938418920396641e+06 +Plasma_deuteron_thermal_velocity_at_point_150____________________________ (vel_plasma_deuteron_profile150)_ 1.47815885349565418e+06 +Plasma_deuteron_thermal_velocity_at_point_151____________________________ (vel_plasma_deuteron_profile151)_ 1.47692513476010342e+06 +Plasma_deuteron_thermal_velocity_at_point_152____________________________ (vel_plasma_deuteron_profile152)_ 1.47568302954225405e+06 +Plasma_deuteron_thermal_velocity_at_point_153____________________________ (vel_plasma_deuteron_profile153)_ 1.47443253426955733e+06 +Plasma_deuteron_thermal_velocity_at_point_154____________________________ (vel_plasma_deuteron_profile154)_ 1.47317364548156946e+06 +Plasma_deuteron_thermal_velocity_at_point_155____________________________ (vel_plasma_deuteron_profile155)_ 1.47190635958957253e+06 +Plasma_deuteron_thermal_velocity_at_point_156____________________________ (vel_plasma_deuteron_profile156)_ 1.47063067307936912e+06 +Plasma_deuteron_thermal_velocity_at_point_157____________________________ (vel_plasma_deuteron_profile157)_ 1.46934658237219043e+06 +Plasma_deuteron_thermal_velocity_at_point_158____________________________ (vel_plasma_deuteron_profile158)_ 1.46805408391596773e+06 +Plasma_deuteron_thermal_velocity_at_point_159____________________________ (vel_plasma_deuteron_profile159)_ 1.46675317410701257e+06 +Plasma_deuteron_thermal_velocity_at_point_160____________________________ (vel_plasma_deuteron_profile160)_ 1.46544384936107695e+06 +Plasma_deuteron_thermal_velocity_at_point_161____________________________ (vel_plasma_deuteron_profile161)_ 1.46412610609619576e+06 +Plasma_deuteron_thermal_velocity_at_point_162____________________________ (vel_plasma_deuteron_profile162)_ 1.46279994067109912e+06 +Plasma_deuteron_thermal_velocity_at_point_163____________________________ (vel_plasma_deuteron_profile163)_ 1.46146534948032093e+06 +Plasma_deuteron_thermal_velocity_at_point_164____________________________ (vel_plasma_deuteron_profile164)_ 1.46012232889948273e+06 +Plasma_deuteron_thermal_velocity_at_point_165____________________________ (vel_plasma_deuteron_profile165)_ 1.45877087528499705e+06 +Plasma_deuteron_thermal_velocity_at_point_166____________________________ (vel_plasma_deuteron_profile166)_ 1.45741098497719341e+06 +Plasma_deuteron_thermal_velocity_at_point_167____________________________ (vel_plasma_deuteron_profile167)_ 1.45604265435485356e+06 +Plasma_deuteron_thermal_velocity_at_point_168____________________________ (vel_plasma_deuteron_profile168)_ 1.45466587973228958e+06 +Plasma_deuteron_thermal_velocity_at_point_169____________________________ (vel_plasma_deuteron_profile169)_ 1.45328065744465194e+06 +Plasma_deuteron_thermal_velocity_at_point_170____________________________ (vel_plasma_deuteron_profile170)_ 1.45188698383063334e+06 +Plasma_deuteron_thermal_velocity_at_point_171____________________________ (vel_plasma_deuteron_profile171)_ 1.45048485521163396e+06 +Plasma_deuteron_thermal_velocity_at_point_172____________________________ (vel_plasma_deuteron_profile172)_ 1.44907426790179382e+06 +Plasma_deuteron_thermal_velocity_at_point_173____________________________ (vel_plasma_deuteron_profile173)_ 1.44765521820084914e+06 +Plasma_deuteron_thermal_velocity_at_point_174____________________________ (vel_plasma_deuteron_profile174)_ 1.44622770244214102e+06 +Plasma_deuteron_thermal_velocity_at_point_175____________________________ (vel_plasma_deuteron_profile175)_ 1.44479171691314410e+06 +Plasma_deuteron_thermal_velocity_at_point_176____________________________ (vel_plasma_deuteron_profile176)_ 1.44334725792415417e+06 +Plasma_deuteron_thermal_velocity_at_point_177____________________________ (vel_plasma_deuteron_profile177)_ 1.44189432178396336e+06 +Plasma_deuteron_thermal_velocity_at_point_178____________________________ (vel_plasma_deuteron_profile178)_ 1.44043290476846369e+06 +Plasma_deuteron_thermal_velocity_at_point_179____________________________ (vel_plasma_deuteron_profile179)_ 1.43896300319307251e+06 +Plasma_deuteron_thermal_velocity_at_point_180____________________________ (vel_plasma_deuteron_profile180)_ 1.43748461334677017e+06 +Plasma_deuteron_thermal_velocity_at_point_181____________________________ (vel_plasma_deuteron_profile181)_ 1.43599773152649077e+06 +Plasma_deuteron_thermal_velocity_at_point_182____________________________ (vel_plasma_deuteron_profile182)_ 1.43450235404041968e+06 +Plasma_deuteron_thermal_velocity_at_point_183____________________________ (vel_plasma_deuteron_profile183)_ 1.43299847717650142e+06 +Plasma_deuteron_thermal_velocity_at_point_184____________________________ (vel_plasma_deuteron_profile184)_ 1.43148609724393440e+06 +Plasma_deuteron_thermal_velocity_at_point_185____________________________ (vel_plasma_deuteron_profile185)_ 1.42996521054515289e+06 +Plasma_deuteron_thermal_velocity_at_point_186____________________________ (vel_plasma_deuteron_profile186)_ 1.42843581338954158e+06 +Plasma_deuteron_thermal_velocity_at_point_187____________________________ (vel_plasma_deuteron_profile187)_ 1.42689790207926580e+06 +Plasma_deuteron_thermal_velocity_at_point_188____________________________ (vel_plasma_deuteron_profile188)_ 1.42535147294751671e+06 +Plasma_deuteron_thermal_velocity_at_point_189____________________________ (vel_plasma_deuteron_profile189)_ 1.42379652230589627e+06 +Plasma_deuteron_thermal_velocity_at_point_190____________________________ (vel_plasma_deuteron_profile190)_ 1.42223304649319127e+06 +Plasma_deuteron_thermal_velocity_at_point_191____________________________ (vel_plasma_deuteron_profile191)_ 1.42066104182964819e+06 +Plasma_deuteron_thermal_velocity_at_point_192____________________________ (vel_plasma_deuteron_profile192)_ 1.41908050466235518e+06 +Plasma_deuteron_thermal_velocity_at_point_193____________________________ (vel_plasma_deuteron_profile193)_ 1.41749143136516958e+06 +Plasma_deuteron_thermal_velocity_at_point_194____________________________ (vel_plasma_deuteron_profile194)_ 1.41589381826465484e+06 +Plasma_deuteron_thermal_velocity_at_point_195____________________________ (vel_plasma_deuteron_profile195)_ 1.41428766178069566e+06 +Plasma_deuteron_thermal_velocity_at_point_196____________________________ (vel_plasma_deuteron_profile196)_ 1.41267295825729123e+06 +Plasma_deuteron_thermal_velocity_at_point_197____________________________ (vel_plasma_deuteron_profile197)_ 1.41104970411393722e+06 +Plasma_deuteron_thermal_velocity_at_point_198____________________________ (vel_plasma_deuteron_profile198)_ 1.40941789575380692e+06 +Plasma_deuteron_thermal_velocity_at_point_199____________________________ (vel_plasma_deuteron_profile199)_ 1.40777752961305249e+06 +Plasma_deuteron_thermal_velocity_at_point_200____________________________ (vel_plasma_deuteron_profile200)_ 1.40612860210755793e+06 +Plasma_deuteron_thermal_velocity_at_point_201____________________________ (vel_plasma_deuteron_profile201)_ 1.40447110971430689e+06 +Plasma_deuteron_thermal_velocity_at_point_202____________________________ (vel_plasma_deuteron_profile202)_ 1.40280504888972454e+06 +Plasma_deuteron_thermal_velocity_at_point_203____________________________ (vel_plasma_deuteron_profile203)_ 1.40113041615123791e+06 +Plasma_deuteron_thermal_velocity_at_point_204____________________________ (vel_plasma_deuteron_profile204)_ 1.39944720796691044e+06 +Plasma_deuteron_thermal_velocity_at_point_205____________________________ (vel_plasma_deuteron_profile205)_ 1.39775542090127151e+06 +Plasma_deuteron_thermal_velocity_at_point_206____________________________ (vel_plasma_deuteron_profile206)_ 1.39605505151204928e+06 +Plasma_deuteron_thermal_velocity_at_point_207____________________________ (vel_plasma_deuteron_profile207)_ 1.39434609632845200e+06 +Plasma_deuteron_thermal_velocity_at_point_208____________________________ (vel_plasma_deuteron_profile208)_ 1.39262855200840626e+06 +Plasma_deuteron_thermal_velocity_at_point_209____________________________ (vel_plasma_deuteron_profile209)_ 1.39090241511675343e+06 +Plasma_deuteron_thermal_velocity_at_point_210____________________________ (vel_plasma_deuteron_profile210)_ 1.38916768235431146e+06 +Plasma_deuteron_thermal_velocity_at_point_211____________________________ (vel_plasma_deuteron_profile211)_ 1.38742435036074044e+06 +Plasma_deuteron_thermal_velocity_at_point_212____________________________ (vel_plasma_deuteron_profile212)_ 1.38567241585797071e+06 +Plasma_deuteron_thermal_velocity_at_point_213____________________________ (vel_plasma_deuteron_profile213)_ 1.38391187556760083e+06 +Plasma_deuteron_thermal_velocity_at_point_214____________________________ (vel_plasma_deuteron_profile214)_ 1.38214272626122599e+06 +Plasma_deuteron_thermal_velocity_at_point_215____________________________ (vel_plasma_deuteron_profile215)_ 1.38036496474971436e+06 +Plasma_deuteron_thermal_velocity_at_point_216____________________________ (vel_plasma_deuteron_profile216)_ 1.37857858785792510e+06 +Plasma_deuteron_thermal_velocity_at_point_217____________________________ (vel_plasma_deuteron_profile217)_ 1.37678359244634281e+06 +Plasma_deuteron_thermal_velocity_at_point_218____________________________ (vel_plasma_deuteron_profile218)_ 1.37497997541111358e+06 +Plasma_deuteron_thermal_velocity_at_point_219____________________________ (vel_plasma_deuteron_profile219)_ 1.37316773373131361e+06 +Plasma_deuteron_thermal_velocity_at_point_220____________________________ (vel_plasma_deuteron_profile220)_ 1.37134686434197240e+06 +Plasma_deuteron_thermal_velocity_at_point_221____________________________ (vel_plasma_deuteron_profile221)_ 1.36951736429752153e+06 +Plasma_deuteron_thermal_velocity_at_point_222____________________________ (vel_plasma_deuteron_profile222)_ 1.36767923066296778e+06 +Plasma_deuteron_thermal_velocity_at_point_223____________________________ (vel_plasma_deuteron_profile223)_ 1.36583246054300060e+06 +Plasma_deuteron_thermal_velocity_at_point_224____________________________ (vel_plasma_deuteron_profile224)_ 1.36397705108939135e+06 +Plasma_deuteron_thermal_velocity_at_point_225____________________________ (vel_plasma_deuteron_profile225)_ 1.36211299952677218e+06 +Plasma_deuteron_thermal_velocity_at_point_226____________________________ (vel_plasma_deuteron_profile226)_ 1.36024030309427110e+06 +Plasma_deuteron_thermal_velocity_at_point_227____________________________ (vel_plasma_deuteron_profile227)_ 1.35835895908951014e+06 +Plasma_deuteron_thermal_velocity_at_point_228____________________________ (vel_plasma_deuteron_profile228)_ 1.35646896489458415e+06 +Plasma_deuteron_thermal_velocity_at_point_229____________________________ (vel_plasma_deuteron_profile229)_ 1.35457031791386474e+06 +Plasma_deuteron_thermal_velocity_at_point_230____________________________ (vel_plasma_deuteron_profile230)_ 1.35266301562562841e+06 +Plasma_deuteron_thermal_velocity_at_point_231____________________________ (vel_plasma_deuteron_profile231)_ 1.35074705556394556e+06 +Plasma_deuteron_thermal_velocity_at_point_232____________________________ (vel_plasma_deuteron_profile232)_ 1.34882243530042260e+06 +Plasma_deuteron_thermal_velocity_at_point_233____________________________ (vel_plasma_deuteron_profile233)_ 1.34688915250728396e+06 +Plasma_deuteron_thermal_velocity_at_point_234____________________________ (vel_plasma_deuteron_profile234)_ 1.34494720493197511e+06 +Plasma_deuteron_thermal_velocity_at_point_235____________________________ (vel_plasma_deuteron_profile235)_ 1.34299659029725636e+06 +Plasma_deuteron_thermal_velocity_at_point_236____________________________ (vel_plasma_deuteron_profile236)_ 1.34103730653525842e+06 +Plasma_deuteron_thermal_velocity_at_point_237____________________________ (vel_plasma_deuteron_profile237)_ 1.33906935151688871e+06 +Plasma_deuteron_thermal_velocity_at_point_238____________________________ (vel_plasma_deuteron_profile238)_ 1.33709272328258795e+06 +Plasma_deuteron_thermal_velocity_at_point_239____________________________ (vel_plasma_deuteron_profile239)_ 1.33510741990144923e+06 +Plasma_deuteron_thermal_velocity_at_point_240____________________________ (vel_plasma_deuteron_profile240)_ 1.33311343954989826e+06 +Plasma_deuteron_thermal_velocity_at_point_241____________________________ (vel_plasma_deuteron_profile241)_ 1.33111078043366456e+06 +Plasma_deuteron_thermal_velocity_at_point_242____________________________ (vel_plasma_deuteron_profile242)_ 1.32909944092301885e+06 +Plasma_deuteron_thermal_velocity_at_point_243____________________________ (vel_plasma_deuteron_profile243)_ 1.32707941940352926e+06 +Plasma_deuteron_thermal_velocity_at_point_244____________________________ (vel_plasma_deuteron_profile244)_ 1.32505071437396901e+06 +Plasma_deuteron_thermal_velocity_at_point_245____________________________ (vel_plasma_deuteron_profile245)_ 1.32301332446216326e+06 +Plasma_deuteron_thermal_velocity_at_point_246____________________________ (vel_plasma_deuteron_profile246)_ 1.32096724832769437e+06 +Plasma_deuteron_thermal_velocity_at_point_247____________________________ (vel_plasma_deuteron_profile247)_ 1.31891248476040876e+06 +Plasma_deuteron_thermal_velocity_at_point_248____________________________ (vel_plasma_deuteron_profile248)_ 1.31684903267756081e+06 +Plasma_deuteron_thermal_velocity_at_point_249____________________________ (vel_plasma_deuteron_profile249)_ 1.31477689103745949e+06 +Plasma_deuteron_thermal_velocity_at_point_250____________________________ (vel_plasma_deuteron_profile250)_ 1.31269605896514491e+06 +Plasma_deuteron_thermal_velocity_at_point_251____________________________ (vel_plasma_deuteron_profile251)_ 1.31060653564325278e+06 +Plasma_deuteron_thermal_velocity_at_point_252____________________________ (vel_plasma_deuteron_profile252)_ 1.30850832042680262e+06 +Plasma_deuteron_thermal_velocity_at_point_253____________________________ (vel_plasma_deuteron_profile253)_ 1.30640141274142172e+06 +Plasma_deuteron_thermal_velocity_at_point_254____________________________ (vel_plasma_deuteron_profile254)_ 1.30428581215655268e+06 +Plasma_deuteron_thermal_velocity_at_point_255____________________________ (vel_plasma_deuteron_profile255)_ 1.30216151833294821e+06 +Plasma_deuteron_thermal_velocity_at_point_256____________________________ (vel_plasma_deuteron_profile256)_ 1.30002853110398375e+06 +Plasma_deuteron_thermal_velocity_at_point_257____________________________ (vel_plasma_deuteron_profile257)_ 1.29788685040402086e+06 +Plasma_deuteron_thermal_velocity_at_point_258____________________________ (vel_plasma_deuteron_profile258)_ 1.29573647631929186e+06 +Plasma_deuteron_thermal_velocity_at_point_259____________________________ (vel_plasma_deuteron_profile259)_ 1.29357740905059222e+06 +Plasma_deuteron_thermal_velocity_at_point_260____________________________ (vel_plasma_deuteron_profile260)_ 1.29140964898378751e+06 +Plasma_deuteron_thermal_velocity_at_point_261____________________________ (vel_plasma_deuteron_profile261)_ 1.28923319659077562e+06 +Plasma_deuteron_thermal_velocity_at_point_262____________________________ (vel_plasma_deuteron_profile262)_ 1.28704805255816155e+06 +Plasma_deuteron_thermal_velocity_at_point_263____________________________ (vel_plasma_deuteron_profile263)_ 1.28485421766875125e+06 +Plasma_deuteron_thermal_velocity_at_point_264____________________________ (vel_plasma_deuteron_profile264)_ 1.28265169292300241e+06 +Plasma_deuteron_thermal_velocity_at_point_265____________________________ (vel_plasma_deuteron_profile265)_ 1.28044047943185898e+06 +Plasma_deuteron_thermal_velocity_at_point_266____________________________ (vel_plasma_deuteron_profile266)_ 1.27822057850364759e+06 +Plasma_deuteron_thermal_velocity_at_point_267____________________________ (vel_plasma_deuteron_profile267)_ 1.27599199162632669e+06 +Plasma_deuteron_thermal_velocity_at_point_268____________________________ (vel_plasma_deuteron_profile268)_ 1.27375472044957057e+06 +Plasma_deuteron_thermal_velocity_at_point_269____________________________ (vel_plasma_deuteron_profile269)_ 1.27150876681376388e+06 +Plasma_deuteron_thermal_velocity_at_point_270____________________________ (vel_plasma_deuteron_profile270)_ 1.26925413272822415e+06 +Plasma_deuteron_thermal_velocity_at_point_271____________________________ (vel_plasma_deuteron_profile271)_ 1.26699082043190487e+06 +Plasma_deuteron_thermal_velocity_at_point_272____________________________ (vel_plasma_deuteron_profile272)_ 1.26471883232458681e+06 +Plasma_deuteron_thermal_velocity_at_point_273____________________________ (vel_plasma_deuteron_profile273)_ 1.26243817105147662e+06 +Plasma_deuteron_thermal_velocity_at_point_274____________________________ (vel_plasma_deuteron_profile274)_ 1.26014883940662327e+06 +Plasma_deuteron_thermal_velocity_at_point_275____________________________ (vel_plasma_deuteron_profile275)_ 1.25785084047724935e+06 +Plasma_deuteron_thermal_velocity_at_point_276____________________________ (vel_plasma_deuteron_profile276)_ 1.25554417751947907e+06 +Plasma_deuteron_thermal_velocity_at_point_277____________________________ (vel_plasma_deuteron_profile277)_ 1.25322885401982861e+06 +Plasma_deuteron_thermal_velocity_at_point_278____________________________ (vel_plasma_deuteron_profile278)_ 1.25090487371751177e+06 +Plasma_deuteron_thermal_velocity_at_point_279____________________________ (vel_plasma_deuteron_profile279)_ 1.24857224056708487e+06 +Plasma_deuteron_thermal_velocity_at_point_280____________________________ (vel_plasma_deuteron_profile280)_ 1.24623095880078012e+06 +Plasma_deuteron_thermal_velocity_at_point_281____________________________ (vel_plasma_deuteron_profile281)_ 1.24388103289530380e+06 +Plasma_deuteron_thermal_velocity_at_point_282____________________________ (vel_plasma_deuteron_profile282)_ 1.24152246755837998e+06 +Plasma_deuteron_thermal_velocity_at_point_283____________________________ (vel_plasma_deuteron_profile283)_ 1.23915526779971528e+06 +Plasma_deuteron_thermal_velocity_at_point_284____________________________ (vel_plasma_deuteron_profile284)_ 1.23677943889792147e+06 +Plasma_deuteron_thermal_velocity_at_point_285____________________________ (vel_plasma_deuteron_profile285)_ 1.23439498638729705e+06 +Plasma_deuteron_thermal_velocity_at_point_286____________________________ (vel_plasma_deuteron_profile286)_ 1.23200191612952249e+06 +Plasma_deuteron_thermal_velocity_at_point_287____________________________ (vel_plasma_deuteron_profile287)_ 1.22960023426855635e+06 +Plasma_deuteron_thermal_velocity_at_point_288____________________________ (vel_plasma_deuteron_profile288)_ 1.22718994722568686e+06 +Plasma_deuteron_thermal_velocity_at_point_289____________________________ (vel_plasma_deuteron_profile289)_ 1.22477106179231964e+06 +Plasma_deuteron_thermal_velocity_at_point_290____________________________ (vel_plasma_deuteron_profile290)_ 1.22234358501982014e+06 +Plasma_deuteron_thermal_velocity_at_point_291____________________________ (vel_plasma_deuteron_profile291)_ 1.21990752435755054e+06 +Plasma_deuteron_thermal_velocity_at_point_292____________________________ (vel_plasma_deuteron_profile292)_ 1.21746288754671509e+06 +Plasma_deuteron_thermal_velocity_at_point_293____________________________ (vel_plasma_deuteron_profile293)_ 1.21500968266079249e+06 +Plasma_deuteron_thermal_velocity_at_point_294____________________________ (vel_plasma_deuteron_profile294)_ 1.21254791820820188e+06 +Plasma_deuteron_thermal_velocity_at_point_295____________________________ (vel_plasma_deuteron_profile295)_ 1.21007760298476694e+06 +Plasma_deuteron_thermal_velocity_at_point_296____________________________ (vel_plasma_deuteron_profile296)_ 1.20759874621773511e+06 +Plasma_deuteron_thermal_velocity_at_point_297____________________________ (vel_plasma_deuteron_profile297)_ 1.20511135748805595e+06 +Plasma_deuteron_thermal_velocity_at_point_298____________________________ (vel_plasma_deuteron_profile298)_ 1.20261544680937938e+06 +Plasma_deuteron_thermal_velocity_at_point_299____________________________ (vel_plasma_deuteron_profile299)_ 1.20011102457920788e+06 +Plasma_deuteron_thermal_velocity_at_point_300____________________________ (vel_plasma_deuteron_profile300)_ 1.19759810162113025e+06 +Plasma_deuteron_thermal_velocity_at_point_301____________________________ (vel_plasma_deuteron_profile301)_ 1.19507668919005431e+06 +Plasma_deuteron_thermal_velocity_at_point_302____________________________ (vel_plasma_deuteron_profile302)_ 1.19254679899428925e+06 +Plasma_deuteron_thermal_velocity_at_point_303____________________________ (vel_plasma_deuteron_profile303)_ 1.19000844319279795e+06 +Plasma_deuteron_thermal_velocity_at_point_304____________________________ (vel_plasma_deuteron_profile304)_ 1.18746163440926722e+06 +Plasma_deuteron_thermal_velocity_at_point_305____________________________ (vel_plasma_deuteron_profile305)_ 1.18490638576746196e+06 +Plasma_deuteron_thermal_velocity_at_point_306____________________________ (vel_plasma_deuteron_profile306)_ 1.18234271083425288e+06 +Plasma_deuteron_thermal_velocity_at_point_307____________________________ (vel_plasma_deuteron_profile307)_ 1.17977062374379276e+06 +Plasma_deuteron_thermal_velocity_at_point_308____________________________ (vel_plasma_deuteron_profile308)_ 1.17719013911570422e+06 +Plasma_deuteron_thermal_velocity_at_point_309____________________________ (vel_plasma_deuteron_profile309)_ 1.17460127214638959e+06 +Plasma_deuteron_thermal_velocity_at_point_310____________________________ (vel_plasma_deuteron_profile310)_ 1.17200403849301999e+06 +Plasma_deuteron_thermal_velocity_at_point_311____________________________ (vel_plasma_deuteron_profile311)_ 1.16939845447174320e+06 +Plasma_deuteron_thermal_velocity_at_point_312____________________________ (vel_plasma_deuteron_profile312)_ 1.16678453695073584e+06 +Plasma_deuteron_thermal_velocity_at_point_313____________________________ (vel_plasma_deuteron_profile313)_ 1.16416230334473448e+06 +Plasma_deuteron_thermal_velocity_at_point_314____________________________ (vel_plasma_deuteron_profile314)_ 1.16153177176847099e+06 +Plasma_deuteron_thermal_velocity_at_point_315____________________________ (vel_plasma_deuteron_profile315)_ 1.15889296089952043e+06 +Plasma_deuteron_thermal_velocity_at_point_316____________________________ (vel_plasma_deuteron_profile316)_ 1.15624589007234015e+06 +Plasma_deuteron_thermal_velocity_at_point_317____________________________ (vel_plasma_deuteron_profile317)_ 1.15359057930879155e+06 +Plasma_deuteron_thermal_velocity_at_point_318____________________________ (vel_plasma_deuteron_profile318)_ 1.15092704928413359e+06 +Plasma_deuteron_thermal_velocity_at_point_319____________________________ (vel_plasma_deuteron_profile319)_ 1.14825532140123192e+06 +Plasma_deuteron_thermal_velocity_at_point_320____________________________ (vel_plasma_deuteron_profile320)_ 1.14557541775700124e+06 +Plasma_deuteron_thermal_velocity_at_point_321____________________________ (vel_plasma_deuteron_profile321)_ 1.14288736122631072e+06 +Plasma_deuteron_thermal_velocity_at_point_322____________________________ (vel_plasma_deuteron_profile322)_ 1.14019117538087536e+06 +Plasma_deuteron_thermal_velocity_at_point_323____________________________ (vel_plasma_deuteron_profile323)_ 1.13748688464830257e+06 +Plasma_deuteron_thermal_velocity_at_point_324____________________________ (vel_plasma_deuteron_profile324)_ 1.13477451419211226e+06 +Plasma_deuteron_thermal_velocity_at_point_325____________________________ (vel_plasma_deuteron_profile325)_ 1.13205409007216571e+06 +Plasma_deuteron_thermal_velocity_at_point_326____________________________ (vel_plasma_deuteron_profile326)_ 1.12932563912034128e+06 +Plasma_deuteron_thermal_velocity_at_point_327____________________________ (vel_plasma_deuteron_profile327)_ 1.12658918908905284e+06 +Plasma_deuteron_thermal_velocity_at_point_328____________________________ (vel_plasma_deuteron_profile328)_ 1.12384476862001047e+06 +Plasma_deuteron_thermal_velocity_at_point_329____________________________ (vel_plasma_deuteron_profile329)_ 1.12109240726601356e+06 +Plasma_deuteron_thermal_velocity_at_point_330____________________________ (vel_plasma_deuteron_profile330)_ 1.11833213552207686e+06 +Plasma_deuteron_thermal_velocity_at_point_331____________________________ (vel_plasma_deuteron_profile331)_ 1.11556398488394311e+06 +Plasma_deuteron_thermal_velocity_at_point_332____________________________ (vel_plasma_deuteron_profile332)_ 1.11278798780892789e+06 +Plasma_deuteron_thermal_velocity_at_point_333____________________________ (vel_plasma_deuteron_profile333)_ 1.11000417779313424e+06 +Plasma_deuteron_thermal_velocity_at_point_334____________________________ (vel_plasma_deuteron_profile334)_ 1.10721258945443155e+06 +Plasma_deuteron_thermal_velocity_at_point_335____________________________ (vel_plasma_deuteron_profile335)_ 1.10441325838641217e+06 +Plasma_deuteron_thermal_velocity_at_point_336____________________________ (vel_plasma_deuteron_profile336)_ 1.10160622139064851e+06 +Plasma_deuteron_thermal_velocity_at_point_337____________________________ (vel_plasma_deuteron_profile337)_ 1.09879151636753301e+06 +Plasma_deuteron_thermal_velocity_at_point_338____________________________ (vel_plasma_deuteron_profile338)_ 1.09596918242860469e+06 +Plasma_deuteron_thermal_velocity_at_point_339____________________________ (vel_plasma_deuteron_profile339)_ 1.09313925991487829e+06 +Plasma_deuteron_thermal_velocity_at_point_340____________________________ (vel_plasma_deuteron_profile340)_ 1.09030179036981356e+06 +Plasma_deuteron_thermal_velocity_at_point_341____________________________ (vel_plasma_deuteron_profile341)_ 1.08745681664502062e+06 +Plasma_deuteron_thermal_velocity_at_point_342____________________________ (vel_plasma_deuteron_profile342)_ 1.08460438295714417e+06 +Plasma_deuteron_thermal_velocity_at_point_343____________________________ (vel_plasma_deuteron_profile343)_ 1.08174453482124233e+06 +Plasma_deuteron_thermal_velocity_at_point_344____________________________ (vel_plasma_deuteron_profile344)_ 1.07887731920981826e+06 +Plasma_deuteron_thermal_velocity_at_point_345____________________________ (vel_plasma_deuteron_profile345)_ 1.07600278448268049e+06 +Plasma_deuteron_thermal_velocity_at_point_346____________________________ (vel_plasma_deuteron_profile346)_ 1.07312098050641734e+06 +Plasma_deuteron_thermal_velocity_at_point_347____________________________ (vel_plasma_deuteron_profile347)_ 1.07023195873397123e+06 +Plasma_deuteron_thermal_velocity_at_point_348____________________________ (vel_plasma_deuteron_profile348)_ 1.06733577207529196e+06 +Plasma_deuteron_thermal_velocity_at_point_349____________________________ (vel_plasma_deuteron_profile349)_ 1.06443247515972587e+06 +Plasma_deuteron_thermal_velocity_at_point_350____________________________ (vel_plasma_deuteron_profile350)_ 1.06152212421744573e+06 +Plasma_deuteron_thermal_velocity_at_point_351____________________________ (vel_plasma_deuteron_profile351)_ 1.05860477720884723e+06 +Plasma_deuteron_thermal_velocity_at_point_352____________________________ (vel_plasma_deuteron_profile352)_ 1.05568049389479007e+06 +Plasma_deuteron_thermal_velocity_at_point_353____________________________ (vel_plasma_deuteron_profile353)_ 1.05274933580862754e+06 +Plasma_deuteron_thermal_velocity_at_point_354____________________________ (vel_plasma_deuteron_profile354)_ 1.04981136636573286e+06 +Plasma_deuteron_thermal_velocity_at_point_355____________________________ (vel_plasma_deuteron_profile355)_ 1.04686665092258435e+06 +Plasma_deuteron_thermal_velocity_at_point_356____________________________ (vel_plasma_deuteron_profile356)_ 1.04391525680832448e+06 +Plasma_deuteron_thermal_velocity_at_point_357____________________________ (vel_plasma_deuteron_profile357)_ 1.04095725337617367e+06 +Plasma_deuteron_thermal_velocity_at_point_358____________________________ (vel_plasma_deuteron_profile358)_ 1.03799271212796809e+06 +Plasma_deuteron_thermal_velocity_at_point_359____________________________ (vel_plasma_deuteron_profile359)_ 1.03502170669155905e+06 +Plasma_deuteron_thermal_velocity_at_point_360____________________________ (vel_plasma_deuteron_profile360)_ 1.03204431294783519e+06 +Plasma_deuteron_thermal_velocity_at_point_361____________________________ (vel_plasma_deuteron_profile361)_ 1.02906060909707262e+06 +Plasma_deuteron_thermal_velocity_at_point_362____________________________ (vel_plasma_deuteron_profile362)_ 1.02607067566825089e+06 +Plasma_deuteron_thermal_velocity_at_point_363____________________________ (vel_plasma_deuteron_profile363)_ 1.02307459567010496e+06 +Plasma_deuteron_thermal_velocity_at_point_364____________________________ (vel_plasma_deuteron_profile364)_ 1.02007245460804796e+06 +Plasma_deuteron_thermal_velocity_at_point_365____________________________ (vel_plasma_deuteron_profile365)_ 1.01706434059965517e+06 +Plasma_deuteron_thermal_velocity_at_point_366____________________________ (vel_plasma_deuteron_profile366)_ 1.01405034442347987e+06 +Plasma_deuteron_thermal_velocity_at_point_367____________________________ (vel_plasma_deuteron_profile367)_ 1.01103055966265197e+06 +Plasma_deuteron_thermal_velocity_at_point_368____________________________ (vel_plasma_deuteron_profile368)_ 1.00800508267303370e+06 +Plasma_deuteron_thermal_velocity_at_point_369____________________________ (vel_plasma_deuteron_profile369)_ 1.00497401280909695e+06 +Plasma_deuteron_thermal_velocity_at_point_370____________________________ (vel_plasma_deuteron_profile370)_ 1.00193745239512087e+06 +Plasma_deuteron_thermal_velocity_at_point_371____________________________ (vel_plasma_deuteron_profile371)_ 9.98895506945740897e+05 +Plasma_deuteron_thermal_velocity_at_point_372____________________________ (vel_plasma_deuteron_profile372)_ 9.95848285125161638e+05 +Plasma_deuteron_thermal_velocity_at_point_373____________________________ (vel_plasma_deuteron_profile373)_ 9.92795898987177759e+05 +Plasma_deuteron_thermal_velocity_at_point_374____________________________ (vel_plasma_deuteron_profile374)_ 9.89738463952608057e+05 +Plasma_deuteron_thermal_velocity_at_point_375____________________________ (vel_plasma_deuteron_profile375)_ 9.86676099029156147e+05 +Plasma_deuteron_thermal_velocity_at_point_376____________________________ (vel_plasma_deuteron_profile376)_ 9.83608926857974380e+05 +Plasma_deuteron_thermal_velocity_at_point_377____________________________ (vel_plasma_deuteron_profile377)_ 9.80537073837548494e+05 +Plasma_deuteron_thermal_velocity_at_point_378____________________________ (vel_plasma_deuteron_profile378)_ 9.77460670260237530e+05 +Plasma_deuteron_thermal_velocity_at_point_379____________________________ (vel_plasma_deuteron_profile379)_ 9.74379850497589796e+05 +Plasma_deuteron_thermal_velocity_at_point_380____________________________ (vel_plasma_deuteron_profile380)_ 9.71294752999231452e+05 +Plasma_deuteron_thermal_velocity_at_point_381____________________________ (vel_plasma_deuteron_profile381)_ 9.68205520508243120e+05 +Plasma_deuteron_thermal_velocity_at_point_382____________________________ (vel_plasma_deuteron_profile382)_ 9.65112300249728840e+05 +Plasma_deuteron_thermal_velocity_at_point_383____________________________ (vel_plasma_deuteron_profile383)_ 9.62015243951944867e+05 +Plasma_deuteron_thermal_velocity_at_point_384____________________________ (vel_plasma_deuteron_profile384)_ 9.58914508174852934e+05 +Plasma_deuteron_thermal_velocity_at_point_385____________________________ (vel_plasma_deuteron_profile385)_ 9.55810254248397774e+05 +Plasma_deuteron_thermal_velocity_at_point_386____________________________ (vel_plasma_deuteron_profile386)_ 9.52702648649480892e+05 +Plasma_deuteron_thermal_velocity_at_point_387____________________________ (vel_plasma_deuteron_profile387)_ 9.49591863023804617e+05 +Plasma_deuteron_thermal_velocity_at_point_388____________________________ (vel_plasma_deuteron_profile388)_ 9.46478074455866124e+05 +Plasma_deuteron_thermal_velocity_at_point_389____________________________ (vel_plasma_deuteron_profile389)_ 9.43361465601449716e+05 +Plasma_deuteron_thermal_velocity_at_point_390____________________________ (vel_plasma_deuteron_profile390)_ 9.40242224875734537e+05 +Plasma_deuteron_thermal_velocity_at_point_391____________________________ (vel_plasma_deuteron_profile391)_ 9.37120546692960546e+05 +Plasma_deuteron_thermal_velocity_at_point_392____________________________ (vel_plasma_deuteron_profile392)_ 9.33996631689389586e+05 +Plasma_deuteron_thermal_velocity_at_point_393____________________________ (vel_plasma_deuteron_profile393)_ 9.30870686854102532e+05 +Plasma_deuteron_thermal_velocity_at_point_394____________________________ (vel_plasma_deuteron_profile394)_ 9.27742925839681411e+05 +Plasma_deuteron_thermal_velocity_at_point_395____________________________ (vel_plasma_deuteron_profile395)_ 9.24613569165620371e+05 +Plasma_deuteron_thermal_velocity_at_point_396____________________________ (vel_plasma_deuteron_profile396)_ 9.21482844452638179e+05 +Plasma_deuteron_thermal_velocity_at_point_397____________________________ (vel_plasma_deuteron_profile397)_ 9.18350986694014748e+05 +Plasma_deuteron_thermal_velocity_at_point_398____________________________ (vel_plasma_deuteron_profile398)_ 9.15218238553879666e+05 +Plasma_deuteron_thermal_velocity_at_point_399____________________________ (vel_plasma_deuteron_profile399)_ 9.12084850567231653e+05 +Plasma_deuteron_thermal_velocity_at_point_400____________________________ (vel_plasma_deuteron_profile400)_ 9.08951081486249692e+05 +Plasma_deuteron_thermal_velocity_at_point_401____________________________ (vel_plasma_deuteron_profile401)_ 9.05817198561559431e+05 +Plasma_deuteron_thermal_velocity_at_point_402____________________________ (vel_plasma_deuteron_profile402)_ 9.02683477950236760e+05 +Plasma_deuteron_thermal_velocity_at_point_403____________________________ (vel_plasma_deuteron_profile403)_ 8.99550204854223994e+05 +Plasma_deuteron_thermal_velocity_at_point_404____________________________ (vel_plasma_deuteron_profile404)_ 8.96417674083729507e+05 +Plasma_deuteron_thermal_velocity_at_point_405____________________________ (vel_plasma_deuteron_profile405)_ 8.93286190246098558e+05 +Plasma_deuteron_thermal_velocity_at_point_406____________________________ (vel_plasma_deuteron_profile406)_ 8.90156068240193767e+05 +Plasma_deuteron_thermal_velocity_at_point_407____________________________ (vel_plasma_deuteron_profile407)_ 8.87027633596873959e+05 +Plasma_deuteron_thermal_velocity_at_point_408____________________________ (vel_plasma_deuteron_profile408)_ 8.83901222938188119e+05 +Plasma_deuteron_thermal_velocity_at_point_409____________________________ (vel_plasma_deuteron_profile409)_ 8.80777184354162193e+05 +Plasma_deuteron_thermal_velocity_at_point_410____________________________ (vel_plasma_deuteron_profile410)_ 8.77655877945074928e+05 +Plasma_deuteron_thermal_velocity_at_point_411____________________________ (vel_plasma_deuteron_profile411)_ 8.74537676219405024e+05 +Plasma_deuteron_thermal_velocity_at_point_412____________________________ (vel_plasma_deuteron_profile412)_ 8.71422964647064917e+05 +Plasma_deuteron_thermal_velocity_at_point_413____________________________ (vel_plasma_deuteron_profile413)_ 8.68312142239443725e+05 +Plasma_deuteron_thermal_velocity_at_point_414____________________________ (vel_plasma_deuteron_profile414)_ 8.65205621977928095e+05 +Plasma_deuteron_thermal_velocity_at_point_415____________________________ (vel_plasma_deuteron_profile415)_ 8.62103831584497355e+05 +Plasma_deuteron_thermal_velocity_at_point_416____________________________ (vel_plasma_deuteron_profile416)_ 8.59007213939980255e+05 +Plasma_deuteron_thermal_velocity_at_point_417____________________________ (vel_plasma_deuteron_profile417)_ 8.55916227950938512e+05 +Plasma_deuteron_thermal_velocity_at_point_418____________________________ (vel_plasma_deuteron_profile418)_ 8.52831349098151550e+05 +Plasma_deuteron_thermal_velocity_at_point_419____________________________ (vel_plasma_deuteron_profile419)_ 8.49753070233583916e+05 +Plasma_deuteron_thermal_velocity_at_point_420____________________________ (vel_plasma_deuteron_profile420)_ 8.46681902348888223e+05 +Plasma_deuteron_thermal_velocity_at_point_421____________________________ (vel_plasma_deuteron_profile421)_ 8.43618375444339821e+05 +Plasma_deuteron_thermal_velocity_at_point_422____________________________ (vel_plasma_deuteron_profile422)_ 8.40563039280620287e+05 +Plasma_deuteron_thermal_velocity_at_point_423____________________________ (vel_plasma_deuteron_profile423)_ 8.37516464492392843e+05 +Plasma_deuteron_thermal_velocity_at_point_424____________________________ (vel_plasma_deuteron_profile424)_ 8.34479243396679871e+05 +Plasma_deuteron_thermal_velocity_at_point_425____________________________ (vel_plasma_deuteron_profile425)_ 8.31451991207567975e+05 +Plasma_deuteron_thermal_velocity_at_point_426____________________________ (vel_plasma_deuteron_profile426)_ 8.28435347046556300e+05 +Plasma_deuteron_thermal_velocity_at_point_427____________________________ (vel_plasma_deuteron_profile427)_ 8.25429975189705612e+05 +Plasma_deuteron_thermal_velocity_at_point_428____________________________ (vel_plasma_deuteron_profile428)_ 8.22436566405031015e+05 +Plasma_deuteron_thermal_velocity_at_point_429____________________________ (vel_plasma_deuteron_profile429)_ 8.19455839241325855e+05 +Plasma_deuteron_thermal_velocity_at_point_430____________________________ (vel_plasma_deuteron_profile430)_ 8.16488541577605880e+05 +Plasma_deuteron_thermal_velocity_at_point_431____________________________ (vel_plasma_deuteron_profile431)_ 8.13535452260662569e+05 +Plasma_deuteron_thermal_velocity_at_point_432____________________________ (vel_plasma_deuteron_profile432)_ 8.10597382665280253e+05 +Plasma_deuteron_thermal_velocity_at_point_433____________________________ (vel_plasma_deuteron_profile433)_ 8.07675178766498808e+05 +Plasma_deuteron_thermal_velocity_at_point_434____________________________ (vel_plasma_deuteron_profile434)_ 8.04769723046957166e+05 +Plasma_deuteron_thermal_velocity_at_point_435____________________________ (vel_plasma_deuteron_profile435)_ 8.01881936637413455e+05 +Plasma_deuteron_thermal_velocity_at_point_436____________________________ (vel_plasma_deuteron_profile436)_ 7.99012781931312988e+05 +Plasma_deuteron_thermal_velocity_at_point_437____________________________ (vel_plasma_deuteron_profile437)_ 7.96163264868059894e+05 +Plasma_deuteron_thermal_velocity_at_point_438____________________________ (vel_plasma_deuteron_profile438)_ 7.93334438143987674e+05 +Plasma_deuteron_thermal_velocity_at_point_439____________________________ (vel_plasma_deuteron_profile439)_ 7.90527404077160289e+05 +Plasma_deuteron_thermal_velocity_at_point_440____________________________ (vel_plasma_deuteron_profile440)_ 7.87743318228119286e+05 +Plasma_deuteron_thermal_velocity_at_point_441____________________________ (vel_plasma_deuteron_profile441)_ 7.84983393168190029e+05 +Plasma_deuteron_thermal_velocity_at_point_442____________________________ (vel_plasma_deuteron_profile442)_ 7.82248902833999600e+05 +Plasma_deuteron_thermal_velocity_at_point_443____________________________ (vel_plasma_deuteron_profile443)_ 7.79541187195254024e+05 +Plasma_deuteron_thermal_velocity_at_point_444____________________________ (vel_plasma_deuteron_profile444)_ 7.76861657628511777e+05 +Plasma_deuteron_thermal_velocity_at_point_445____________________________ (vel_plasma_deuteron_profile445)_ 7.74211802954856539e+05 +Plasma_deuteron_thermal_velocity_at_point_446____________________________ (vel_plasma_deuteron_profile446)_ 7.71593196122599300e+05 +Plasma_deuteron_thermal_velocity_at_point_447____________________________ (vel_plasma_deuteron_profile447)_ 7.69007502130336012e+05 +Plasma_deuteron_thermal_velocity_at_point_448____________________________ (vel_plasma_deuteron_profile448)_ 7.66456486712665646e+05 +Plasma_deuteron_thermal_velocity_at_point_449____________________________ (vel_plasma_deuteron_profile449)_ 7.63942026549371192e+05 +Plasma_deuteron_thermal_velocity_at_point_450____________________________ (vel_plasma_deuteron_profile450)_ 7.61466121271603275e+05 +Plasma_deuteron_thermal_velocity_at_point_451____________________________ (vel_plasma_deuteron_profile451)_ 7.59030907009213581e+05 +Plasma_deuteron_thermal_velocity_at_point_452____________________________ (vel_plasma_deuteron_profile452)_ 7.56638672899913508e+05 +Plasma_deuteron_thermal_velocity_at_point_453____________________________ (vel_plasma_deuteron_profile453)_ 7.54291880330970977e+05 +Plasma_deuteron_thermal_velocity_at_point_454____________________________ (vel_plasma_deuteron_profile454)_ 7.51993186189269763e+05 +Plasma_deuteron_thermal_velocity_at_point_455____________________________ (vel_plasma_deuteron_profile455)_ 7.49745471137187444e+05 +Plasma_deuteron_thermal_velocity_at_point_456____________________________ (vel_plasma_deuteron_profile456)_ 7.47551874148990493e+05 +Plasma_deuteron_thermal_velocity_at_point_457____________________________ (vel_plasma_deuteron_profile457)_ 7.45415835710685235e+05 +Plasma_deuteron_thermal_velocity_at_point_458____________________________ (vel_plasma_deuteron_profile458)_ 7.43341152532169363e+05 +Plasma_deuteron_thermal_velocity_at_point_459____________________________ (vel_plasma_deuteron_profile459)_ 7.41332047624026309e+05 +Plasma_deuteron_thermal_velocity_at_point_460____________________________ (vel_plasma_deuteron_profile460)_ 7.39393262876318418e+05 +Plasma_deuteron_thermal_velocity_at_point_461____________________________ (vel_plasma_deuteron_profile461)_ 7.37530183381530805e+05 +Plasma_deuteron_thermal_velocity_at_point_462____________________________ (vel_plasma_deuteron_profile462)_ 7.35749009509937954e+05 +Plasma_deuteron_thermal_velocity_at_point_463____________________________ (vel_plasma_deuteron_profile463)_ 7.34057003856028896e+05 +Plasma_deuteron_thermal_velocity_at_point_464____________________________ (vel_plasma_deuteron_profile464)_ 7.32462860070533236e+05 +Plasma_deuteron_thermal_velocity_at_point_465____________________________ (vel_plasma_deuteron_profile465)_ 7.30977285187524511e+05 +Plasma_deuteron_thermal_velocity_at_point_466____________________________ (vel_plasma_deuteron_profile466)_ 7.29613986346707796e+05 +Plasma_deuteron_thermal_velocity_at_point_467____________________________ (vel_plasma_deuteron_profile467)_ 7.28391516468618531e+05 +Plasma_deuteron_thermal_velocity_at_point_468____________________________ (vel_plasma_deuteron_profile468)_ 7.27337282021684689e+05 +Plasma_deuteron_thermal_velocity_at_point_469____________________________ (vel_plasma_deuteron_profile469)_ 7.26498832500973018e+05 Plasma_deuteron_thermal_velocity_at_point_470____________________________ (vel_plasma_deuteron_profile470)_ 7.26013137740840088e+05 Plasma_deuteron_thermal_velocity_at_point_471____________________________ (vel_plasma_deuteron_profile471)_ 7.14034148508016602e+05 Plasma_deuteron_thermal_velocity_at_point_472____________________________ (vel_plasma_deuteron_profile472)_ 7.01850731537436019e+05 @@ -19733,477 +19731,477 @@ Plasma_deuteron_thermal_velocity_at_point_497____________________________ (vel_p Plasma_deuteron_thermal_velocity_at_point_498____________________________ (vel_plasma_deuteron_profile498)_ 2.09963075698110653e+05 Plasma_deuteron_thermal_velocity_at_point_499____________________________ (vel_plasma_deuteron_profile499)_ 1.63810998299460305e+05 Plasma_deuteron_thermal_velocity_at_point_500____________________________ (vel_plasma_deuteron_profile500)_ 9.78958029331109428e+04 -Volume_averaged_triton_thermal_velocity_(m/s)____________________________ (vel_plasma_triton_vol_avg)____ 9.00601060080267140e+05 -Plasma_triton_thermal_velocity_at_point_0________________________________ (vel_plasma_triton_profile0)___ 1.29665711904768762e+06 -Plasma_triton_thermal_velocity_at_point_1________________________________ (vel_plasma_triton_profile1)___ 1.29665375428541866e+06 -Plasma_triton_thermal_velocity_at_point_2________________________________ (vel_plasma_triton_profile2)___ 1.29664365997315617e+06 -Plasma_triton_thermal_velocity_at_point_3________________________________ (vel_plasma_triton_profile3)___ 1.29662683609609725e+06 -Plasma_triton_thermal_velocity_at_point_4________________________________ (vel_plasma_triton_profile4)___ 1.29660328256543819e+06 -Plasma_triton_thermal_velocity_at_point_5________________________________ (vel_plasma_triton_profile5)___ 1.29657299931456405e+06 -Plasma_triton_thermal_velocity_at_point_6________________________________ (vel_plasma_triton_profile6)___ 1.29653598626056453e+06 -Plasma_triton_thermal_velocity_at_point_7________________________________ (vel_plasma_triton_profile7)___ 1.29649224326959788e+06 -Plasma_triton_thermal_velocity_at_point_8________________________________ (vel_plasma_triton_profile8)___ 1.29644177020305279e+06 -Plasma_triton_thermal_velocity_at_point_9________________________________ (vel_plasma_triton_profile9)___ 1.29638456686366489e+06 -Plasma_triton_thermal_velocity_at_point_10_______________________________ (vel_plasma_triton_profile10)__ 1.29632063308401126e+06 -Plasma_triton_thermal_velocity_at_point_11_______________________________ (vel_plasma_triton_profile11)__ 1.29624996865338320e+06 -Plasma_triton_thermal_velocity_at_point_12_______________________________ (vel_plasma_triton_profile12)__ 1.29617257331391214e+06 -Plasma_triton_thermal_velocity_at_point_13_______________________________ (vel_plasma_triton_profile13)__ 1.29608844682598440e+06 -Plasma_triton_thermal_velocity_at_point_14_______________________________ (vel_plasma_triton_profile14)__ 1.29599758890664019e+06 -Plasma_triton_thermal_velocity_at_point_15_______________________________ (vel_plasma_triton_profile15)__ 1.29589999924109364e+06 -Plasma_triton_thermal_velocity_at_point_16_______________________________ (vel_plasma_triton_profile16)__ 1.29579567750195693e+06 -Plasma_triton_thermal_velocity_at_point_17_______________________________ (vel_plasma_triton_profile17)__ 1.29568462334921863e+06 -Plasma_triton_thermal_velocity_at_point_18_______________________________ (vel_plasma_triton_profile18)__ 1.29556683641481702e+06 -Plasma_triton_thermal_velocity_at_point_19_______________________________ (vel_plasma_triton_profile19)__ 1.29544231629875838e+06 -Plasma_triton_thermal_velocity_at_point_20_______________________________ (vel_plasma_triton_profile20)__ 1.29531106256522867e+06 -Plasma_triton_thermal_velocity_at_point_21_______________________________ (vel_plasma_triton_profile21)__ 1.29517307482344890e+06 -Plasma_triton_thermal_velocity_at_point_22_______________________________ (vel_plasma_triton_profile22)__ 1.29502835255431291e+06 -Plasma_triton_thermal_velocity_at_point_23_______________________________ (vel_plasma_triton_profile23)__ 1.29487689532220736e+06 -Plasma_triton_thermal_velocity_at_point_24_______________________________ (vel_plasma_triton_profile24)__ 1.29471870259392099e+06 -Plasma_triton_thermal_velocity_at_point_25_______________________________ (vel_plasma_triton_profile25)__ 1.29455377385032759e+06 -Plasma_triton_thermal_velocity_at_point_26_______________________________ (vel_plasma_triton_profile26)__ 1.29438210852854699e+06 -Plasma_triton_thermal_velocity_at_point_27_______________________________ (vel_plasma_triton_profile27)__ 1.29420370607586042e+06 -Plasma_triton_thermal_velocity_at_point_28_______________________________ (vel_plasma_triton_profile28)__ 1.29401856588414381e+06 -Plasma_triton_thermal_velocity_at_point_29_______________________________ (vel_plasma_triton_profile29)__ 1.29382668733221409e+06 -Plasma_triton_thermal_velocity_at_point_30_______________________________ (vel_plasma_triton_profile30)__ 1.29362806978193182e+06 -Plasma_triton_thermal_velocity_at_point_31_______________________________ (vel_plasma_triton_profile31)__ 1.29342271257815510e+06 -Plasma_triton_thermal_velocity_at_point_32_______________________________ (vel_plasma_triton_profile32)__ 1.29321061500239675e+06 -Plasma_triton_thermal_velocity_at_point_33_______________________________ (vel_plasma_triton_profile33)__ 1.29299177639235300e+06 -Plasma_triton_thermal_velocity_at_point_34_______________________________ (vel_plasma_triton_profile34)__ 1.29276619598754542e+06 -Plasma_triton_thermal_velocity_at_point_35_______________________________ (vel_plasma_triton_profile35)__ 1.29253387304499513e+06 -Plasma_triton_thermal_velocity_at_point_36_______________________________ (vel_plasma_triton_profile36)__ 1.29229480680059409e+06 -Plasma_triton_thermal_velocity_at_point_37_______________________________ (vel_plasma_triton_profile37)__ 1.29204899643043149e+06 -Plasma_triton_thermal_velocity_at_point_38_______________________________ (vel_plasma_triton_profile38)__ 1.29179644113952573e+06 -Plasma_triton_thermal_velocity_at_point_39_______________________________ (vel_plasma_triton_profile39)__ 1.29153714006909821e+06 -Plasma_triton_thermal_velocity_at_point_40_______________________________ (vel_plasma_triton_profile40)__ 1.29127109236601600e+06 -Plasma_triton_thermal_velocity_at_point_41_______________________________ (vel_plasma_triton_profile41)__ 1.29099829713637568e+06 -Plasma_triton_thermal_velocity_at_point_42_______________________________ (vel_plasma_triton_profile42)__ 1.29071875346474349e+06 -Plasma_triton_thermal_velocity_at_point_43_______________________________ (vel_plasma_triton_profile43)__ 1.29043246043728082e+06 -Plasma_triton_thermal_velocity_at_point_44_______________________________ (vel_plasma_triton_profile44)__ 1.29013941708369227e+06 -Plasma_triton_thermal_velocity_at_point_45_______________________________ (vel_plasma_triton_profile45)__ 1.28983962244673609e+06 -Plasma_triton_thermal_velocity_at_point_46_______________________________ (vel_plasma_triton_profile46)__ 1.28953307550867880e+06 -Plasma_triton_thermal_velocity_at_point_47_______________________________ (vel_plasma_triton_profile47)__ 1.28921977527244017e+06 -Plasma_triton_thermal_velocity_at_point_48_______________________________ (vel_plasma_triton_profile48)__ 1.28889972066866350e+06 -Plasma_triton_thermal_velocity_at_point_49_______________________________ (vel_plasma_triton_profile49)__ 1.28857291064849729e+06 -Plasma_triton_thermal_velocity_at_point_50_______________________________ (vel_plasma_triton_profile50)__ 1.28823934413321735e+06 -Plasma_triton_thermal_velocity_at_point_51_______________________________ (vel_plasma_triton_profile51)__ 1.28789902000638703e+06 -Plasma_triton_thermal_velocity_at_point_52_______________________________ (vel_plasma_triton_profile52)__ 1.28755193711762154e+06 -Plasma_triton_thermal_velocity_at_point_53_______________________________ (vel_plasma_triton_profile53)__ 1.28719809433674836e+06 -Plasma_triton_thermal_velocity_at_point_54_______________________________ (vel_plasma_triton_profile54)__ 1.28683749049561843e+06 -Plasma_triton_thermal_velocity_at_point_55_______________________________ (vel_plasma_triton_profile55)__ 1.28647012438023696e+06 -Plasma_triton_thermal_velocity_at_point_56_______________________________ (vel_plasma_triton_profile56)__ 1.28609599476942793e+06 -Plasma_triton_thermal_velocity_at_point_57_______________________________ (vel_plasma_triton_profile57)__ 1.28571510042311694e+06 -Plasma_triton_thermal_velocity_at_point_58_______________________________ (vel_plasma_triton_profile58)__ 1.28532744010941219e+06 -Plasma_triton_thermal_velocity_at_point_59_______________________________ (vel_plasma_triton_profile59)__ 1.28493301248806552e+06 -Plasma_triton_thermal_velocity_at_point_60_______________________________ (vel_plasma_triton_profile60)__ 1.28453181630832446e+06 -Plasma_triton_thermal_velocity_at_point_61_______________________________ (vel_plasma_triton_profile61)__ 1.28412385020308499e+06 -Plasma_triton_thermal_velocity_at_point_62_______________________________ (vel_plasma_triton_profile62)__ 1.28370911284021125e+06 -Plasma_triton_thermal_velocity_at_point_63_______________________________ (vel_plasma_triton_profile63)__ 1.28328760284087714e+06 -Plasma_triton_thermal_velocity_at_point_64_______________________________ (vel_plasma_triton_profile64)__ 1.28285931881830981e+06 -Plasma_triton_thermal_velocity_at_point_65_______________________________ (vel_plasma_triton_profile65)__ 1.28242425933879847e+06 -Plasma_triton_thermal_velocity_at_point_66_______________________________ (vel_plasma_triton_profile66)__ 1.28198242299159174e+06 -Plasma_triton_thermal_velocity_at_point_67_______________________________ (vel_plasma_triton_profile67)__ 1.28153380827207025e+06 -Plasma_triton_thermal_velocity_at_point_68_______________________________ (vel_plasma_triton_profile68)__ 1.28107841375285923e+06 -Plasma_triton_thermal_velocity_at_point_69_______________________________ (vel_plasma_triton_profile69)__ 1.28061623791636876e+06 -Plasma_triton_thermal_velocity_at_point_70_______________________________ (vel_plasma_triton_profile70)__ 1.28014727920911368e+06 -Plasma_triton_thermal_velocity_at_point_71_______________________________ (vel_plasma_triton_profile71)__ 1.27967153610394546e+06 -Plasma_triton_thermal_velocity_at_point_72_______________________________ (vel_plasma_triton_profile72)__ 1.27918900703371782e+06 -Plasma_triton_thermal_velocity_at_point_73_______________________________ (vel_plasma_triton_profile73)__ 1.27869969043014501e+06 -Plasma_triton_thermal_velocity_at_point_74_______________________________ (vel_plasma_triton_profile74)__ 1.27820358464955469e+06 -Plasma_triton_thermal_velocity_at_point_75_______________________________ (vel_plasma_triton_profile75)__ 1.27770068805856281e+06 -Plasma_triton_thermal_velocity_at_point_76_______________________________ (vel_plasma_triton_profile76)__ 1.27719099903400498e+06 -Plasma_triton_thermal_velocity_at_point_77_______________________________ (vel_plasma_triton_profile77)__ 1.27667451586908102e+06 -Plasma_triton_thermal_velocity_at_point_78_______________________________ (vel_plasma_triton_profile78)__ 1.27615123690602044e+06 -Plasma_triton_thermal_velocity_at_point_79_______________________________ (vel_plasma_triton_profile79)__ 1.27562116037964914e+06 -Plasma_triton_thermal_velocity_at_point_80_______________________________ (vel_plasma_triton_profile80)__ 1.27508428458140953e+06 -Plasma_triton_thermal_velocity_at_point_81_______________________________ (vel_plasma_triton_profile81)__ 1.27454060775761330e+06 -Plasma_triton_thermal_velocity_at_point_82_______________________________ (vel_plasma_triton_profile82)__ 1.27399012810925185e+06 -Plasma_triton_thermal_velocity_at_point_83_______________________________ (vel_plasma_triton_profile83)__ 1.27343284383881767e+06 -Plasma_triton_thermal_velocity_at_point_84_______________________________ (vel_plasma_triton_profile84)__ 1.27286875311885588e+06 -Plasma_triton_thermal_velocity_at_point_85_______________________________ (vel_plasma_triton_profile85)__ 1.27229785411532666e+06 -Plasma_triton_thermal_velocity_at_point_86_______________________________ (vel_plasma_triton_profile86)__ 1.27172014495218708e+06 -Plasma_triton_thermal_velocity_at_point_87_______________________________ (vel_plasma_triton_profile87)__ 1.27113562375829369e+06 -Plasma_triton_thermal_velocity_at_point_88_______________________________ (vel_plasma_triton_profile88)__ 1.27054428862019209e+06 -Plasma_triton_thermal_velocity_at_point_89_______________________________ (vel_plasma_triton_profile89)__ 1.26994613759763329e+06 -Plasma_triton_thermal_velocity_at_point_90_______________________________ (vel_plasma_triton_profile90)__ 1.26934116874698712e+06 -Plasma_triton_thermal_velocity_at_point_91_______________________________ (vel_plasma_triton_profile91)__ 1.26872938011326781e+06 -Plasma_triton_thermal_velocity_at_point_92_______________________________ (vel_plasma_triton_profile92)__ 1.26811076970245992e+06 -Plasma_triton_thermal_velocity_at_point_93_______________________________ (vel_plasma_triton_profile93)__ 1.26748533548131795e+06 -Plasma_triton_thermal_velocity_at_point_94_______________________________ (vel_plasma_triton_profile94)__ 1.26685307544804760e+06 -Plasma_triton_thermal_velocity_at_point_95_______________________________ (vel_plasma_triton_profile95)__ 1.26621398752983171e+06 -Plasma_triton_thermal_velocity_at_point_96_______________________________ (vel_plasma_triton_profile96)__ 1.26556806968503678e+06 -Plasma_triton_thermal_velocity_at_point_97_______________________________ (vel_plasma_triton_profile97)__ 1.26491531979669002e+06 -Plasma_triton_thermal_velocity_at_point_98_______________________________ (vel_plasma_triton_profile98)__ 1.26425573574714782e+06 -Plasma_triton_thermal_velocity_at_point_99_______________________________ (vel_plasma_triton_profile99)__ 1.26358931541008712e+06 -Plasma_triton_thermal_velocity_at_point_100______________________________ (vel_plasma_triton_profile100)_ 1.26291605663851323e+06 -Plasma_triton_thermal_velocity_at_point_101______________________________ (vel_plasma_triton_profile101)_ 1.26223595726854261e+06 -Plasma_triton_thermal_velocity_at_point_102______________________________ (vel_plasma_triton_profile102)_ 1.26154901508364826e+06 -Plasma_triton_thermal_velocity_at_point_103______________________________ (vel_plasma_triton_profile103)_ 1.26085522788166394e+06 -Plasma_triton_thermal_velocity_at_point_104______________________________ (vel_plasma_triton_profile104)_ 1.26015459344699048e+06 -Plasma_triton_thermal_velocity_at_point_105______________________________ (vel_plasma_triton_profile105)_ 1.25944710949894134e+06 -Plasma_triton_thermal_velocity_at_point_106______________________________ (vel_plasma_triton_profile106)_ 1.25873277379052667e+06 -Plasma_triton_thermal_velocity_at_point_107______________________________ (vel_plasma_triton_profile107)_ 1.25801158402117691e+06 -Plasma_triton_thermal_velocity_at_point_108______________________________ (vel_plasma_triton_profile108)_ 1.25728353788011405e+06 -Plasma_triton_thermal_velocity_at_point_109______________________________ (vel_plasma_triton_profile109)_ 1.25654863303825702e+06 -Plasma_triton_thermal_velocity_at_point_110______________________________ (vel_plasma_triton_profile110)_ 1.25580686713612149e+06 -Plasma_triton_thermal_velocity_at_point_111______________________________ (vel_plasma_triton_profile111)_ 1.25505823781937896e+06 -Plasma_triton_thermal_velocity_at_point_112______________________________ (vel_plasma_triton_profile112)_ 1.25430274269896816e+06 -Plasma_triton_thermal_velocity_at_point_113______________________________ (vel_plasma_triton_profile113)_ 1.25354037935483945e+06 -Plasma_triton_thermal_velocity_at_point_114______________________________ (vel_plasma_triton_profile114)_ 1.25277114537953632e+06 -Plasma_triton_thermal_velocity_at_point_115______________________________ (vel_plasma_triton_profile115)_ 1.25199503833028185e+06 -Plasma_triton_thermal_velocity_at_point_116______________________________ (vel_plasma_triton_profile116)_ 1.25121205572475004e+06 -Plasma_triton_thermal_velocity_at_point_117______________________________ (vel_plasma_triton_profile117)_ 1.25042219509267411e+06 -Plasma_triton_thermal_velocity_at_point_118______________________________ (vel_plasma_triton_profile118)_ 1.24962545392384683e+06 -Plasma_triton_thermal_velocity_at_point_119______________________________ (vel_plasma_triton_profile119)_ 1.24882182973577199e+06 -Plasma_triton_thermal_velocity_at_point_120______________________________ (vel_plasma_triton_profile120)_ 1.24801131994968862e+06 -Plasma_triton_thermal_velocity_at_point_121______________________________ (vel_plasma_triton_profile121)_ 1.24719392201412725e+06 -Plasma_triton_thermal_velocity_at_point_122______________________________ (vel_plasma_triton_profile122)_ 1.24636963340085349e+06 -Plasma_triton_thermal_velocity_at_point_123______________________________ (vel_plasma_triton_profile123)_ 1.24553845147262188e+06 -Plasma_triton_thermal_velocity_at_point_124______________________________ (vel_plasma_triton_profile124)_ 1.24470037364299898e+06 -Plasma_triton_thermal_velocity_at_point_125______________________________ (vel_plasma_triton_profile125)_ 1.24385539728413685e+06 -Plasma_triton_thermal_velocity_at_point_126______________________________ (vel_plasma_triton_profile126)_ 1.24300351974655711e+06 -Plasma_triton_thermal_velocity_at_point_127______________________________ (vel_plasma_triton_profile127)_ 1.24214473838302772e+06 -Plasma_triton_thermal_velocity_at_point_128______________________________ (vel_plasma_triton_profile128)_ 1.24127905049215513e+06 -Plasma_triton_thermal_velocity_at_point_129______________________________ (vel_plasma_triton_profile129)_ 1.24040645340250968e+06 -Plasma_triton_thermal_velocity_at_point_130______________________________ (vel_plasma_triton_profile130)_ 1.23952694439610722e+06 -Plasma_triton_thermal_velocity_at_point_131______________________________ (vel_plasma_triton_profile131)_ 1.23864052075642836e+06 -Plasma_triton_thermal_velocity_at_point_132______________________________ (vel_plasma_triton_profile132)_ 1.23774717971183965e+06 -Plasma_triton_thermal_velocity_at_point_133______________________________ (vel_plasma_triton_profile133)_ 1.23684691852801805e+06 -Plasma_triton_thermal_velocity_at_point_134______________________________ (vel_plasma_triton_profile134)_ 1.23593973441912467e+06 -Plasma_triton_thermal_velocity_at_point_135______________________________ (vel_plasma_triton_profile135)_ 1.23502562458785903e+06 -Plasma_triton_thermal_velocity_at_point_136______________________________ (vel_plasma_triton_profile136)_ 1.23410458621717268e+06 -Plasma_triton_thermal_velocity_at_point_137______________________________ (vel_plasma_triton_profile137)_ 1.23317661650240445e+06 -Plasma_triton_thermal_velocity_at_point_138______________________________ (vel_plasma_triton_profile138)_ 1.23224171260258439e+06 -Plasma_triton_thermal_velocity_at_point_139______________________________ (vel_plasma_triton_profile139)_ 1.23129987164013553e+06 -Plasma_triton_thermal_velocity_at_point_140______________________________ (vel_plasma_triton_profile140)_ 1.23035109076139843e+06 -Plasma_triton_thermal_velocity_at_point_141______________________________ (vel_plasma_triton_profile141)_ 1.22939536708380585e+06 -Plasma_triton_thermal_velocity_at_point_142______________________________ (vel_plasma_triton_profile142)_ 1.22843269768748526e+06 -Plasma_triton_thermal_velocity_at_point_143______________________________ (vel_plasma_triton_profile143)_ 1.22746307968404540e+06 -Plasma_triton_thermal_velocity_at_point_144______________________________ (vel_plasma_triton_profile144)_ 1.22648651013111393e+06 -Plasma_triton_thermal_velocity_at_point_145______________________________ (vel_plasma_triton_profile145)_ 1.22550298608894995e+06 -Plasma_triton_thermal_velocity_at_point_146______________________________ (vel_plasma_triton_profile146)_ 1.22451250458362047e+06 -Plasma_triton_thermal_velocity_at_point_147______________________________ (vel_plasma_triton_profile147)_ 1.22351506267601182e+06 -Plasma_triton_thermal_velocity_at_point_148______________________________ (vel_plasma_triton_profile148)_ 1.22251065735569969e+06 -Plasma_triton_thermal_velocity_at_point_149______________________________ (vel_plasma_triton_profile149)_ 1.22149928563850932e+06 -Plasma_triton_thermal_velocity_at_point_150______________________________ (vel_plasma_triton_profile150)_ 1.22048094450513902e+06 -Plasma_triton_thermal_velocity_at_point_151______________________________ (vel_plasma_triton_profile151)_ 1.21945563094584248e+06 -Plasma_triton_thermal_velocity_at_point_152______________________________ (vel_plasma_triton_profile152)_ 1.21842334190706746e+06 -Plasma_triton_thermal_velocity_at_point_153______________________________ (vel_plasma_triton_profile153)_ 1.21738407435666653e+06 -Plasma_triton_thermal_velocity_at_point_154______________________________ (vel_plasma_triton_profile154)_ 1.21633782523049298e+06 -Plasma_triton_thermal_velocity_at_point_155______________________________ (vel_plasma_triton_profile155)_ 1.21528459146082331e+06 -Plasma_triton_thermal_velocity_at_point_156______________________________ (vel_plasma_triton_profile156)_ 1.21422436995973065e+06 -Plasma_triton_thermal_velocity_at_point_157______________________________ (vel_plasma_triton_profile157)_ 1.21315715761881927e+06 -Plasma_triton_thermal_velocity_at_point_158______________________________ (vel_plasma_triton_profile158)_ 1.21208295136246504e+06 -Plasma_triton_thermal_velocity_at_point_159______________________________ (vel_plasma_triton_profile159)_ 1.21100174806126743e+06 -Plasma_triton_thermal_velocity_at_point_160______________________________ (vel_plasma_triton_profile160)_ 1.20991354459760501e+06 -Plasma_triton_thermal_velocity_at_point_161______________________________ (vel_plasma_triton_profile161)_ 1.20881833781185374e+06 -Plasma_triton_thermal_velocity_at_point_162______________________________ (vel_plasma_triton_profile162)_ 1.20771612459289678e+06 -Plasma_triton_thermal_velocity_at_point_163______________________________ (vel_plasma_triton_profile163)_ 1.20660690176652395e+06 -Plasma_triton_thermal_velocity_at_point_164______________________________ (vel_plasma_triton_profile164)_ 1.20549066617773194e+06 -Plasma_triton_thermal_velocity_at_point_165______________________________ (vel_plasma_triton_profile165)_ 1.20436741463677702e+06 -Plasma_triton_thermal_velocity_at_point_166______________________________ (vel_plasma_triton_profile166)_ 1.20323714399760822e+06 -Plasma_triton_thermal_velocity_at_point_167______________________________ (vel_plasma_triton_profile167)_ 1.20209985104997992e+06 -Plasma_triton_thermal_velocity_at_point_168______________________________ (vel_plasma_triton_profile168)_ 1.20095553260204871e+06 -Plasma_triton_thermal_velocity_at_point_169______________________________ (vel_plasma_triton_profile169)_ 1.19980418545116414e+06 -Plasma_triton_thermal_velocity_at_point_170______________________________ (vel_plasma_triton_profile170)_ 1.19864580640860461e+06 -Plasma_triton_thermal_velocity_at_point_171______________________________ (vel_plasma_triton_profile171)_ 1.19748039221612946e+06 -Plasma_triton_thermal_velocity_at_point_172______________________________ (vel_plasma_triton_profile172)_ 1.19630793969558598e+06 -Plasma_triton_thermal_velocity_at_point_173______________________________ (vel_plasma_triton_profile173)_ 1.19512844558630697e+06 -Plasma_triton_thermal_velocity_at_point_174______________________________ (vel_plasma_triton_profile174)_ 1.19394190669494378e+06 -Plasma_triton_thermal_velocity_at_point_175______________________________ (vel_plasma_triton_profile175)_ 1.19274831974921329e+06 -Plasma_triton_thermal_velocity_at_point_176______________________________ (vel_plasma_triton_profile176)_ 1.19154768151454651e+06 -Plasma_triton_thermal_velocity_at_point_177______________________________ (vel_plasma_triton_profile177)_ 1.19033998878570576e+06 -Plasma_triton_thermal_velocity_at_point_178______________________________ (vel_plasma_triton_profile178)_ 1.18912523824828677e+06 -Plasma_triton_thermal_velocity_at_point_179______________________________ (vel_plasma_triton_profile179)_ 1.18790342672156147e+06 -Plasma_triton_thermal_velocity_at_point_180______________________________ (vel_plasma_triton_profile180)_ 1.18667455090251425e+06 -Plasma_triton_thermal_velocity_at_point_181______________________________ (vel_plasma_triton_profile181)_ 1.18543860755019402e+06 -Plasma_triton_thermal_velocity_at_point_182______________________________ (vel_plasma_triton_profile182)_ 1.18419559340579621e+06 -Plasma_triton_thermal_velocity_at_point_183______________________________ (vel_plasma_triton_profile183)_ 1.18294550522189541e+06 -Plasma_triton_thermal_velocity_at_point_184______________________________ (vel_plasma_triton_profile184)_ 1.18168833974542469e+06 -Plasma_triton_thermal_velocity_at_point_185______________________________ (vel_plasma_triton_profile185)_ 1.18042409370054374e+06 -Plasma_triton_thermal_velocity_at_point_186______________________________ (vel_plasma_triton_profile186)_ 1.17915276385178650e+06 -Plasma_triton_thermal_velocity_at_point_187______________________________ (vel_plasma_triton_profile187)_ 1.17787434693207825e+06 -Plasma_triton_thermal_velocity_at_point_188______________________________ (vel_plasma_triton_profile188)_ 1.17658883968901006e+06 -Plasma_triton_thermal_velocity_at_point_189______________________________ (vel_plasma_triton_profile189)_ 1.17529623886349867e+06 -Plasma_triton_thermal_velocity_at_point_190______________________________ (vel_plasma_triton_profile190)_ 1.17399654123204877e+06 -Plasma_triton_thermal_velocity_at_point_191______________________________ (vel_plasma_triton_profile191)_ 1.17268974353868444e+06 -Plasma_triton_thermal_velocity_at_point_192______________________________ (vel_plasma_triton_profile192)_ 1.17137584252864448e+06 -Plasma_triton_thermal_velocity_at_point_193______________________________ (vel_plasma_triton_profile193)_ 1.17005483499083179e+06 -Plasma_triton_thermal_velocity_at_point_194______________________________ (vel_plasma_triton_profile194)_ 1.16872671770236874e+06 -Plasma_triton_thermal_velocity_at_point_195______________________________ (vel_plasma_triton_profile195)_ 1.16739148742406024e+06 -Plasma_triton_thermal_velocity_at_point_196______________________________ (vel_plasma_triton_profile196)_ 1.16604914093433344e+06 -Plasma_triton_thermal_velocity_at_point_197______________________________ (vel_plasma_triton_profile197)_ 1.16469967505484191e+06 -Plasma_triton_thermal_velocity_at_point_198______________________________ (vel_plasma_triton_profile198)_ 1.16334308654759568e+06 -Plasma_triton_thermal_velocity_at_point_199______________________________ (vel_plasma_triton_profile199)_ 1.16197937226469256e+06 -Plasma_triton_thermal_velocity_at_point_200______________________________ (vel_plasma_triton_profile200)_ 1.16060852901109355e+06 -Plasma_triton_thermal_velocity_at_point_201______________________________ (vel_plasma_triton_profile201)_ 1.15923055362161784e+06 -Plasma_triton_thermal_velocity_at_point_202______________________________ (vel_plasma_triton_profile202)_ 1.15784544293076103e+06 -Plasma_triton_thermal_velocity_at_point_203______________________________ (vel_plasma_triton_profile203)_ 1.15645319381132629e+06 -Plasma_triton_thermal_velocity_at_point_204______________________________ (vel_plasma_triton_profile204)_ 1.15505380309671164e+06 -Plasma_triton_thermal_velocity_at_point_205______________________________ (vel_plasma_triton_profile205)_ 1.15364726772318897e+06 -Plasma_triton_thermal_velocity_at_point_206______________________________ (vel_plasma_triton_profile206)_ 1.15223358455714164e+06 -Plasma_triton_thermal_velocity_at_point_207______________________________ (vel_plasma_triton_profile207)_ 1.15081275050716009e+06 -Plasma_triton_thermal_velocity_at_point_208______________________________ (vel_plasma_triton_profile208)_ 1.14938476253279019e+06 -Plasma_triton_thermal_velocity_at_point_209______________________________ (vel_plasma_triton_profile209)_ 1.14794961755773751e+06 -Plasma_triton_thermal_velocity_at_point_210______________________________ (vel_plasma_triton_profile210)_ 1.14650731259129569e+06 -Plasma_triton_thermal_velocity_at_point_211______________________________ (vel_plasma_triton_profile211)_ 1.14505784456312726e+06 -Plasma_triton_thermal_velocity_at_point_212______________________________ (vel_plasma_triton_profile212)_ 1.14360121053633792e+06 -Plasma_triton_thermal_velocity_at_point_213______________________________ (vel_plasma_triton_profile213)_ 1.14213740750283236e+06 -Plasma_triton_thermal_velocity_at_point_214______________________________ (vel_plasma_triton_profile214)_ 1.14066643254887708e+06 -Plasma_triton_thermal_velocity_at_point_215______________________________ (vel_plasma_triton_profile215)_ 1.13918828273727675e+06 -Plasma_triton_thermal_velocity_at_point_216______________________________ (vel_plasma_triton_profile216)_ 1.13770295516842953e+06 -Plasma_triton_thermal_velocity_at_point_217______________________________ (vel_plasma_triton_profile217)_ 1.13621044698478072e+06 -Plasma_triton_thermal_velocity_at_point_218______________________________ (vel_plasma_triton_profile218)_ 1.13471075533134514e+06 -Plasma_triton_thermal_velocity_at_point_219______________________________ (vel_plasma_triton_profile219)_ 1.13320387740837480e+06 -Plasma_triton_thermal_velocity_at_point_220______________________________ (vel_plasma_triton_profile220)_ 1.13168981042746222e+06 -Plasma_triton_thermal_velocity_at_point_221______________________________ (vel_plasma_triton_profile221)_ 1.13016855163351144e+06 -Plasma_triton_thermal_velocity_at_point_222______________________________ (vel_plasma_triton_profile222)_ 1.12864009830478462e+06 -Plasma_triton_thermal_velocity_at_point_223______________________________ (vel_plasma_triton_profile223)_ 1.12710444776180713e+06 -Plasma_triton_thermal_velocity_at_point_224______________________________ (vel_plasma_triton_profile224)_ 1.12556159735418647e+06 -Plasma_triton_thermal_velocity_at_point_225______________________________ (vel_plasma_triton_profile225)_ 1.12401154445176199e+06 -Plasma_triton_thermal_velocity_at_point_226______________________________ (vel_plasma_triton_profile226)_ 1.12245428650680440e+06 -Plasma_triton_thermal_velocity_at_point_227______________________________ (vel_plasma_triton_profile227)_ 1.12088982095649862e+06 -Plasma_triton_thermal_velocity_at_point_228______________________________ (vel_plasma_triton_profile228)_ 1.11931814531627600e+06 -Plasma_triton_thermal_velocity_at_point_229______________________________ (vel_plasma_triton_profile229)_ 1.11773925714449491e+06 -Plasma_triton_thermal_velocity_at_point_230______________________________ (vel_plasma_triton_profile230)_ 1.11615315400235425e+06 -Plasma_triton_thermal_velocity_at_point_231______________________________ (vel_plasma_triton_profile231)_ 1.11455983354775887e+06 -Plasma_triton_thermal_velocity_at_point_232______________________________ (vel_plasma_triton_profile232)_ 1.11295929347309819e+06 -Plasma_triton_thermal_velocity_at_point_233______________________________ (vel_plasma_triton_profile233)_ 1.11135153147840896e+06 -Plasma_triton_thermal_velocity_at_point_234______________________________ (vel_plasma_triton_profile234)_ 1.10973654537018551e+06 -Plasma_triton_thermal_velocity_at_point_235______________________________ (vel_plasma_triton_profile235)_ 1.10811433298997395e+06 -Plasma_triton_thermal_velocity_at_point_236______________________________ (vel_plasma_triton_profile236)_ 1.10648489220095868e+06 -Plasma_triton_thermal_velocity_at_point_237______________________________ (vel_plasma_triton_profile237)_ 1.10484822097377921e+06 -Plasma_triton_thermal_velocity_at_point_238______________________________ (vel_plasma_triton_profile238)_ 1.10320431730126520e+06 -Plasma_triton_thermal_velocity_at_point_239______________________________ (vel_plasma_triton_profile239)_ 1.10155317924829083e+06 -Plasma_triton_thermal_velocity_at_point_240______________________________ (vel_plasma_triton_profile240)_ 1.09989480493404181e+06 -Plasma_triton_thermal_velocity_at_point_241______________________________ (vel_plasma_triton_profile241)_ 1.09822919256409933e+06 -Plasma_triton_thermal_velocity_at_point_242______________________________ (vel_plasma_triton_profile242)_ 1.09655634037637804e+06 -Plasma_triton_thermal_velocity_at_point_243______________________________ (vel_plasma_triton_profile243)_ 1.09487624670049292e+06 -Plasma_triton_thermal_velocity_at_point_244______________________________ (vel_plasma_triton_profile244)_ 1.09318890992184076e+06 -Plasma_triton_thermal_velocity_at_point_245______________________________ (vel_plasma_triton_profile245)_ 1.09149432850477565e+06 -Plasma_triton_thermal_velocity_at_point_246______________________________ (vel_plasma_triton_profile246)_ 1.08979250101600913e+06 -Plasma_triton_thermal_velocity_at_point_247______________________________ (vel_plasma_triton_profile247)_ 1.08808342602443649e+06 -Plasma_triton_thermal_velocity_at_point_248______________________________ (vel_plasma_triton_profile248)_ 1.08636710228475719e+06 -Plasma_triton_thermal_velocity_at_point_249______________________________ (vel_plasma_triton_profile249)_ 1.08464352854106575e+06 -Plasma_triton_thermal_velocity_at_point_250______________________________ (vel_plasma_triton_profile250)_ 1.08291270365568274e+06 -Plasma_triton_thermal_velocity_at_point_251______________________________ (vel_plasma_triton_profile251)_ 1.08117462657310511e+06 -Plasma_triton_thermal_velocity_at_point_252______________________________ (vel_plasma_triton_profile252)_ 1.07942929636681266e+06 -Plasma_triton_thermal_velocity_at_point_253______________________________ (vel_plasma_triton_profile253)_ 1.07767671214302815e+06 -Plasma_triton_thermal_velocity_at_point_254______________________________ (vel_plasma_triton_profile254)_ 1.07591687313829944e+06 -Plasma_triton_thermal_velocity_at_point_255______________________________ (vel_plasma_triton_profile255)_ 1.07414977865084191e+06 -Plasma_triton_thermal_velocity_at_point_256______________________________ (vel_plasma_triton_profile256)_ 1.07237542816195800e+06 -Plasma_triton_thermal_velocity_at_point_257______________________________ (vel_plasma_triton_profile257)_ 1.07059382114644861e+06 -Plasma_triton_thermal_velocity_at_point_258______________________________ (vel_plasma_triton_profile258)_ 1.06880495726857567e+06 -Plasma_triton_thermal_velocity_at_point_259______________________________ (vel_plasma_triton_profile259)_ 1.06700883629478165e+06 -Plasma_triton_thermal_velocity_at_point_260______________________________ (vel_plasma_triton_profile260)_ 1.06520545804769476e+06 -Plasma_triton_thermal_velocity_at_point_261______________________________ (vel_plasma_triton_profile261)_ 1.06339482253326569e+06 -Plasma_triton_thermal_velocity_at_point_262______________________________ (vel_plasma_triton_profile262)_ 1.06157692984363297e+06 -Plasma_triton_thermal_velocity_at_point_263______________________________ (vel_plasma_triton_profile263)_ 1.05975178017198620e+06 -Plasma_triton_thermal_velocity_at_point_264______________________________ (vel_plasma_triton_profile264)_ 1.05791937391248578e+06 -Plasma_triton_thermal_velocity_at_point_265______________________________ (vel_plasma_triton_profile265)_ 1.05607971152502322e+06 -Plasma_triton_thermal_velocity_at_point_266______________________________ (vel_plasma_triton_profile266)_ 1.05423279363520676e+06 -Plasma_triton_thermal_velocity_at_point_267______________________________ (vel_plasma_triton_profile267)_ 1.05237862097422197e+06 -Plasma_triton_thermal_velocity_at_point_268______________________________ (vel_plasma_triton_profile268)_ 1.05051719444155041e+06 -Plasma_triton_thermal_velocity_at_point_269______________________________ (vel_plasma_triton_profile269)_ 1.04864851510176109e+06 -Plasma_triton_thermal_velocity_at_point_270______________________________ (vel_plasma_triton_profile270)_ 1.04677258412885922e+06 -Plasma_triton_thermal_velocity_at_point_271______________________________ (vel_plasma_triton_profile271)_ 1.04488940285986790e+06 -Plasma_triton_thermal_velocity_at_point_272______________________________ (vel_plasma_triton_profile272)_ 1.04299897283465450e+06 -Plasma_triton_thermal_velocity_at_point_273______________________________ (vel_plasma_triton_profile273)_ 1.04110129570202983e+06 -Plasma_triton_thermal_velocity_at_point_274______________________________ (vel_plasma_triton_profile274)_ 1.03919637329286768e+06 -Plasma_triton_thermal_velocity_at_point_275______________________________ (vel_plasma_triton_profile275)_ 1.03728420763632783e+06 -Plasma_triton_thermal_velocity_at_point_276______________________________ (vel_plasma_triton_profile276)_ 1.03536480091363471e+06 -Plasma_triton_thermal_velocity_at_point_277______________________________ (vel_plasma_triton_profile277)_ 1.03343815549343103e+06 -Plasma_triton_thermal_velocity_at_point_278______________________________ (vel_plasma_triton_profile278)_ 1.03150427395303478e+06 -Plasma_triton_thermal_velocity_at_point_279______________________________ (vel_plasma_triton_profile279)_ 1.02956315902726830e+06 -Plasma_triton_thermal_velocity_at_point_280______________________________ (vel_plasma_triton_profile280)_ 1.02761481368781358e+06 -Plasma_triton_thermal_velocity_at_point_281______________________________ (vel_plasma_triton_profile281)_ 1.02565924108729174e+06 -Plasma_triton_thermal_velocity_at_point_282______________________________ (vel_plasma_triton_profile282)_ 1.02369644456608070e+06 -Plasma_triton_thermal_velocity_at_point_283______________________________ (vel_plasma_triton_profile283)_ 1.02172642773736001e+06 -Plasma_triton_thermal_velocity_at_point_284______________________________ (vel_plasma_triton_profile284)_ 1.01974919437746459e+06 -Plasma_triton_thermal_velocity_at_point_285______________________________ (vel_plasma_triton_profile285)_ 1.01776474855518457e+06 -Plasma_triton_thermal_velocity_at_point_286______________________________ (vel_plasma_triton_profile286)_ 1.01577309449246293e+06 -Plasma_triton_thermal_velocity_at_point_287______________________________ (vel_plasma_triton_profile287)_ 1.01377423671875568e+06 -Plasma_triton_thermal_velocity_at_point_288______________________________ (vel_plasma_triton_profile288)_ 1.01176817998069082e+06 -Plasma_triton_thermal_velocity_at_point_289______________________________ (vel_plasma_triton_profile289)_ 1.00975492928408331e+06 -Plasma_triton_thermal_velocity_at_point_290______________________________ (vel_plasma_triton_profile290)_ 1.00773448988202051e+06 -Plasma_triton_thermal_velocity_at_point_291______________________________ (vel_plasma_triton_profile291)_ 1.00570686735708441e+06 -Plasma_triton_thermal_velocity_at_point_292______________________________ (vel_plasma_triton_profile292)_ 1.00367206744114717e+06 -Plasma_triton_thermal_velocity_at_point_293______________________________ (vel_plasma_triton_profile293)_ 1.00163009630618989e+06 -Plasma_triton_thermal_velocity_at_point_294______________________________ (vel_plasma_triton_profile294)_ 9.99580960284726811e+05 -Plasma_triton_thermal_velocity_at_point_295______________________________ (vel_plasma_triton_profile295)_ 9.97524666061960394e+05 -Plasma_triton_thermal_velocity_at_point_296______________________________ (vel_plasma_triton_profile296)_ 9.95461220639796345e+05 -Plasma_triton_thermal_velocity_at_point_297______________________________ (vel_plasma_triton_profile297)_ 9.93390631315515377e+05 -Plasma_triton_thermal_velocity_at_point_298______________________________ (vel_plasma_triton_profile298)_ 9.91312905735700857e+05 -Plasma_triton_thermal_velocity_at_point_299______________________________ (vel_plasma_triton_profile299)_ 9.89228051814709208e+05 -Plasma_triton_thermal_velocity_at_point_300______________________________ (vel_plasma_triton_profile300)_ 9.87136077889681677e+05 -Plasma_triton_thermal_velocity_at_point_301______________________________ (vel_plasma_triton_profile301)_ 9.85036992619260447e+05 -Plasma_triton_thermal_velocity_at_point_302______________________________ (vel_plasma_triton_profile302)_ 9.82930804977484047e+05 -Plasma_triton_thermal_velocity_at_point_303______________________________ (vel_plasma_triton_profile303)_ 9.80817524390066741e+05 -Plasma_triton_thermal_velocity_at_point_304______________________________ (vel_plasma_triton_profile304)_ 9.78697160592108732e+05 -Plasma_triton_thermal_velocity_at_point_305______________________________ (vel_plasma_triton_profile305)_ 9.76569723764979281e+05 -Plasma_triton_thermal_velocity_at_point_306______________________________ (vel_plasma_triton_profile306)_ 9.74435224439511192e+05 -Plasma_triton_thermal_velocity_at_point_307______________________________ (vel_plasma_triton_profile307)_ 9.72293673623740906e+05 -Plasma_triton_thermal_velocity_at_point_308______________________________ (vel_plasma_triton_profile308)_ 9.70145082664964721e+05 -Plasma_triton_thermal_velocity_at_point_309______________________________ (vel_plasma_triton_profile309)_ 9.67989463434709935e+05 -Plasma_triton_thermal_velocity_at_point_310______________________________ (vel_plasma_triton_profile310)_ 9.65826828180462820e+05 -Plasma_triton_thermal_velocity_at_point_311______________________________ (vel_plasma_triton_profile311)_ 9.63657189701614785e+05 -Plasma_triton_thermal_velocity_at_point_312______________________________ (vel_plasma_triton_profile312)_ 9.61480561138665187e+05 -Plasma_triton_thermal_velocity_at_point_313______________________________ (vel_plasma_triton_profile313)_ 9.59296956232876517e+05 -Plasma_triton_thermal_velocity_at_point_314______________________________ (vel_plasma_triton_profile314)_ 9.57106389167301124e+05 -Plasma_triton_thermal_velocity_at_point_315______________________________ (vel_plasma_triton_profile315)_ 9.54908874682586640e+05 -Plasma_triton_thermal_velocity_at_point_316______________________________ (vel_plasma_triton_profile316)_ 9.52704427995437058e+05 -Plasma_triton_thermal_velocity_at_point_317______________________________ (vel_plasma_triton_profile317)_ 9.50493064910205547e+05 -Plasma_triton_thermal_velocity_at_point_318______________________________ (vel_plasma_triton_profile318)_ 9.48274801737438655e+05 -Plasma_triton_thermal_velocity_at_point_319______________________________ (vel_plasma_triton_profile319)_ 9.46049655427549616e+05 -Plasma_triton_thermal_velocity_at_point_320______________________________ (vel_plasma_triton_profile320)_ 9.43817643473854172e+05 -Plasma_triton_thermal_velocity_at_point_321______________________________ (vel_plasma_triton_profile321)_ 9.41578783967949334e+05 -Plasma_triton_thermal_velocity_at_point_322______________________________ (vel_plasma_triton_profile322)_ 9.39333095655945479e+05 -Plasma_triton_thermal_velocity_at_point_323______________________________ (vel_plasma_triton_profile323)_ 9.37080597905059112e+05 -Plasma_triton_thermal_velocity_at_point_324______________________________ (vel_plasma_triton_profile324)_ 9.34821310760519002e+05 -Plasma_triton_thermal_velocity_at_point_325______________________________ (vel_plasma_triton_profile325)_ 9.32555254917766317e+05 -Plasma_triton_thermal_velocity_at_point_326______________________________ (vel_plasma_triton_profile326)_ 9.30282451764036203e+05 -Plasma_triton_thermal_velocity_at_point_327______________________________ (vel_plasma_triton_profile327)_ 9.28002923431370989e+05 -Plasma_triton_thermal_velocity_at_point_328______________________________ (vel_plasma_triton_profile328)_ 9.25716692758868448e+05 -Plasma_triton_thermal_velocity_at_point_329______________________________ (vel_plasma_triton_profile329)_ 9.23423783367903437e+05 -Plasma_triton_thermal_velocity_at_point_330______________________________ (vel_plasma_triton_profile330)_ 9.21124219619388576e+05 -Plasma_triton_thermal_velocity_at_point_331______________________________ (vel_plasma_triton_profile331)_ 9.18818026717077126e+05 -Plasma_triton_thermal_velocity_at_point_332______________________________ (vel_plasma_triton_profile332)_ 9.16505230654640123e+05 -Plasma_triton_thermal_velocity_at_point_333______________________________ (vel_plasma_triton_profile333)_ 9.14185858287542826e+05 -Plasma_triton_thermal_velocity_at_point_334______________________________ (vel_plasma_triton_profile334)_ 9.11859937324028462e+05 -Plasma_triton_thermal_velocity_at_point_335______________________________ (vel_plasma_triton_profile335)_ 9.09527496381874080e+05 -Plasma_triton_thermal_velocity_at_point_336______________________________ (vel_plasma_triton_profile336)_ 9.07188564996611327e+05 -Plasma_triton_thermal_velocity_at_point_337______________________________ (vel_plasma_triton_profile337)_ 9.04843173646506271e+05 -Plasma_triton_thermal_velocity_at_point_338______________________________ (vel_plasma_triton_profile338)_ 9.02491353783546481e+05 -Plasma_triton_thermal_velocity_at_point_339______________________________ (vel_plasma_triton_profile339)_ 9.00133137848378043e+05 -Plasma_triton_thermal_velocity_at_point_340______________________________ (vel_plasma_triton_profile340)_ 8.97768559335587313e+05 -Plasma_triton_thermal_velocity_at_point_341______________________________ (vel_plasma_triton_profile341)_ 8.95397652787677711e+05 -Plasma_triton_thermal_velocity_at_point_342______________________________ (vel_plasma_triton_profile342)_ 8.93020453833744745e+05 -Plasma_triton_thermal_velocity_at_point_343______________________________ (vel_plasma_triton_profile343)_ 8.90636999245675281e+05 -Plasma_triton_thermal_velocity_at_point_344______________________________ (vel_plasma_triton_profile344)_ 8.88247326922335662e+05 -Plasma_triton_thermal_velocity_at_point_345______________________________ (vel_plasma_triton_profile345)_ 8.85851475958088646e+05 -Plasma_triton_thermal_velocity_at_point_346______________________________ (vel_plasma_triton_profile346)_ 8.83449486689940910e+05 -Plasma_triton_thermal_velocity_at_point_347______________________________ (vel_plasma_triton_profile347)_ 8.81041400694607990e+05 -Plasma_triton_thermal_velocity_at_point_348______________________________ (vel_plasma_triton_profile348)_ 8.78627260865136283e+05 -Plasma_triton_thermal_velocity_at_point_349______________________________ (vel_plasma_triton_profile349)_ 8.76207111437659827e+05 -Plasma_triton_thermal_velocity_at_point_350______________________________ (vel_plasma_triton_profile350)_ 8.73780997978748172e+05 -Plasma_triton_thermal_velocity_at_point_351______________________________ (vel_plasma_triton_profile351)_ 8.71348967469996656e+05 -Plasma_triton_thermal_velocity_at_point_352______________________________ (vel_plasma_triton_profile352)_ 8.68911068445827696e+05 -Plasma_triton_thermal_velocity_at_point_353______________________________ (vel_plasma_triton_profile353)_ 8.66467350828570663e+05 -Plasma_triton_thermal_velocity_at_point_354______________________________ (vel_plasma_triton_profile354)_ 8.64017866153519135e+05 -Plasma_triton_thermal_velocity_at_point_355______________________________ (vel_plasma_triton_profile355)_ 8.61562667531571700e+05 -Plasma_triton_thermal_velocity_at_point_356______________________________ (vel_plasma_triton_profile356)_ 8.59101809698471799e+05 -Plasma_triton_thermal_velocity_at_point_357______________________________ (vel_plasma_triton_profile357)_ 8.56635349117438309e+05 -Plasma_triton_thermal_velocity_at_point_358______________________________ (vel_plasma_triton_profile358)_ 8.54163343961043865e+05 -Plasma_triton_thermal_velocity_at_point_359______________________________ (vel_plasma_triton_profile359)_ 8.51685854198352667e+05 -Plasma_triton_thermal_velocity_at_point_360______________________________ (vel_plasma_triton_profile360)_ 8.49202941695460584e+05 -Plasma_triton_thermal_velocity_at_point_361______________________________ (vel_plasma_triton_profile361)_ 8.46714670147065422e+05 -Plasma_triton_thermal_velocity_at_point_362______________________________ (vel_plasma_triton_profile362)_ 8.44221105296532623e+05 -Plasma_triton_thermal_velocity_at_point_363______________________________ (vel_plasma_triton_profile363)_ 8.41722314863646636e+05 -Plasma_triton_thermal_velocity_at_point_364______________________________ (vel_plasma_triton_profile364)_ 8.39218368667389732e+05 -Plasma_triton_thermal_velocity_at_point_365______________________________ (vel_plasma_triton_profile365)_ 8.36709338661618531e+05 -Plasma_triton_thermal_velocity_at_point_366______________________________ (vel_plasma_triton_profile366)_ 8.34195299079172313e+05 -Plasma_triton_thermal_velocity_at_point_367______________________________ (vel_plasma_triton_profile367)_ 8.31676326380771701e+05 -Plasma_triton_thermal_velocity_at_point_368______________________________ (vel_plasma_triton_profile368)_ 8.29152499425752088e+05 -Plasma_triton_thermal_velocity_at_point_369______________________________ (vel_plasma_triton_profile369)_ 8.26623899531384814e+05 -Plasma_triton_thermal_velocity_at_point_370______________________________ (vel_plasma_triton_profile370)_ 8.24090610454723239e+05 -Plasma_triton_thermal_velocity_at_point_371______________________________ (vel_plasma_triton_profile371)_ 8.21552718629298848e+05 -Plasma_triton_thermal_velocity_at_point_372______________________________ (vel_plasma_triton_profile372)_ 8.19010313101767097e+05 -Plasma_triton_thermal_velocity_at_point_373______________________________ (vel_plasma_triton_profile373)_ 8.16463485742477700e+05 -Plasma_triton_thermal_velocity_at_point_374______________________________ (vel_plasma_triton_profile374)_ 8.13912331257838290e+05 -Plasma_triton_thermal_velocity_at_point_375______________________________ (vel_plasma_triton_profile375)_ 8.11356947239931207e+05 -Plasma_triton_thermal_velocity_at_point_376______________________________ (vel_plasma_triton_profile376)_ 8.08797434426914318e+05 -Plasma_triton_thermal_velocity_at_point_377______________________________ (vel_plasma_triton_profile377)_ 8.06233896597207524e+05 -Plasma_triton_thermal_velocity_at_point_378______________________________ (vel_plasma_triton_profile378)_ 8.03666440834237263e+05 -Plasma_triton_thermal_velocity_at_point_379______________________________ (vel_plasma_triton_profile379)_ 8.01095177541028941e+05 -Plasma_triton_thermal_velocity_at_point_380______________________________ (vel_plasma_triton_profile380)_ 7.98520220605126931e+05 -Plasma_triton_thermal_velocity_at_point_381______________________________ (vel_plasma_triton_profile381)_ 7.95941687453974038e+05 -Plasma_triton_thermal_velocity_at_point_382______________________________ (vel_plasma_triton_profile382)_ 7.93359699243505835e+05 -Plasma_triton_thermal_velocity_at_point_383______________________________ (vel_plasma_triton_profile383)_ 7.90774380943250144e+05 -Plasma_triton_thermal_velocity_at_point_384______________________________ (vel_plasma_triton_profile384)_ 7.88185861448476906e+05 -Plasma_triton_thermal_velocity_at_point_385______________________________ (vel_plasma_triton_profile385)_ 7.85594273770812084e+05 -Plasma_triton_thermal_velocity_at_point_386______________________________ (vel_plasma_triton_profile386)_ 7.82999755111601320e+05 -Plasma_triton_thermal_velocity_at_point_387______________________________ (vel_plasma_triton_profile387)_ 7.80402447045426583e+05 -Plasma_triton_thermal_velocity_at_point_388______________________________ (vel_plasma_triton_profile388)_ 7.77802495649562567e+05 -Plasma_triton_thermal_velocity_at_point_389______________________________ (vel_plasma_triton_profile389)_ 7.75200051681060460e+05 -Plasma_triton_thermal_velocity_at_point_390______________________________ (vel_plasma_triton_profile390)_ 7.72595270763817593e+05 -Plasma_triton_thermal_velocity_at_point_391______________________________ (vel_plasma_triton_profile391)_ 7.69988313456261181e+05 -Plasma_triton_thermal_velocity_at_point_392______________________________ (vel_plasma_triton_profile392)_ 7.67379345560863148e+05 -Plasma_triton_thermal_velocity_at_point_393______________________________ (vel_plasma_triton_profile393)_ 7.64768538191958098e+05 -Plasma_triton_thermal_velocity_at_point_394______________________________ (vel_plasma_triton_profile394)_ 7.62156068054264644e+05 -Plasma_triton_thermal_velocity_at_point_395______________________________ (vel_plasma_triton_profile395)_ 7.59542117582444451e+05 -Plasma_triton_thermal_velocity_at_point_396______________________________ (vel_plasma_triton_profile396)_ 7.56926875149225350e+05 -Plasma_triton_thermal_velocity_at_point_397______________________________ (vel_plasma_triton_profile397)_ 7.54310535343709169e+05 -Plasma_triton_thermal_velocity_at_point_398______________________________ (vel_plasma_triton_profile398)_ 7.51693299162240699e+05 -Plasma_triton_thermal_velocity_at_point_399______________________________ (vel_plasma_triton_profile399)_ 7.49075374209553236e+05 -Plasma_triton_thermal_velocity_at_point_400______________________________ (vel_plasma_triton_profile400)_ 7.46456974917070009e+05 -Plasma_triton_thermal_velocity_at_point_401______________________________ (vel_plasma_triton_profile401)_ 7.43838322986651328e+05 -Plasma_triton_thermal_velocity_at_point_402______________________________ (vel_plasma_triton_profile402)_ 7.41219647459507803e+05 -Plasma_triton_thermal_velocity_at_point_403______________________________ (vel_plasma_triton_profile403)_ 7.38601185008837841e+05 -Plasma_triton_thermal_velocity_at_point_404______________________________ (vel_plasma_triton_profile404)_ 7.35983180346438661e+05 -Plasma_triton_thermal_velocity_at_point_405______________________________ (vel_plasma_triton_profile405)_ 7.33365886535156984e+05 -Plasma_triton_thermal_velocity_at_point_406______________________________ (vel_plasma_triton_profile406)_ 7.30749565129617229e+05 -Plasma_triton_thermal_velocity_at_point_407______________________________ (vel_plasma_triton_profile407)_ 7.28134486709507299e+05 -Plasma_triton_thermal_velocity_at_point_408______________________________ (vel_plasma_triton_profile408)_ 7.25520931134431274e+05 -Plasma_triton_thermal_velocity_at_point_409______________________________ (vel_plasma_triton_profile409)_ 7.22909187954835361e+05 -Plasma_triton_thermal_velocity_at_point_410______________________________ (vel_plasma_triton_profile410)_ 7.20299556712699588e+05 -Plasma_triton_thermal_velocity_at_point_411______________________________ (vel_plasma_triton_profile411)_ 7.17692347497464390e+05 -Plasma_triton_thermal_velocity_at_point_412______________________________ (vel_plasma_triton_profile412)_ 7.15087881303058355e+05 -Plasma_triton_thermal_velocity_at_point_413______________________________ (vel_plasma_triton_profile413)_ 7.12486490404817276e+05 -Plasma_triton_thermal_velocity_at_point_414______________________________ (vel_plasma_triton_profile414)_ 7.09888518974468927e+05 -Plasma_triton_thermal_velocity_at_point_415______________________________ (vel_plasma_triton_profile415)_ 7.07294323501740582e+05 -Plasma_triton_thermal_velocity_at_point_416______________________________ (vel_plasma_triton_profile416)_ 7.04704273272215389e+05 -Plasma_triton_thermal_velocity_at_point_417______________________________ (vel_plasma_triton_profile417)_ 7.02118751108685043e+05 -Plasma_triton_thermal_velocity_at_point_418______________________________ (vel_plasma_triton_profile418)_ 6.99538153697837610e+05 -Plasma_triton_thermal_velocity_at_point_419______________________________ (vel_plasma_triton_profile419)_ 6.96962892507670913e+05 -Plasma_triton_thermal_velocity_at_point_420______________________________ (vel_plasma_triton_profile420)_ 6.94393394110742025e+05 -Plasma_triton_thermal_velocity_at_point_421______________________________ (vel_plasma_triton_profile421)_ 6.91830101303613745e+05 -Plasma_triton_thermal_velocity_at_point_422______________________________ (vel_plasma_triton_profile422)_ 6.89273473421427771e+05 -Plasma_triton_thermal_velocity_at_point_423______________________________ (vel_plasma_triton_profile423)_ 6.86723987380831270e+05 -Plasma_triton_thermal_velocity_at_point_424______________________________ (vel_plasma_triton_profile424)_ 6.84182138492603553e+05 -Plasma_triton_thermal_velocity_at_point_425______________________________ (vel_plasma_triton_profile425)_ 6.81648441322775790e+05 -Plasma_triton_thermal_velocity_at_point_426______________________________ (vel_plasma_triton_profile426)_ 6.79123430573452264e+05 -Plasma_triton_thermal_velocity_at_point_427______________________________ (vel_plasma_triton_profile427)_ 6.76607662255937466e+05 -Plasma_triton_thermal_velocity_at_point_428______________________________ (vel_plasma_triton_profile428)_ 6.74101714652296854e+05 -Plasma_triton_thermal_velocity_at_point_429______________________________ (vel_plasma_triton_profile429)_ 6.71606189571455005e+05 -Plasma_triton_thermal_velocity_at_point_430______________________________ (vel_plasma_triton_profile430)_ 6.69121713548617903e+05 -Plasma_triton_thermal_velocity_at_point_431______________________________ (vel_plasma_triton_profile431)_ 6.66648939217375824e+05 -Plasma_triton_thermal_velocity_at_point_432______________________________ (vel_plasma_triton_profile432)_ 6.64188546745052328e+05 -Plasma_triton_thermal_velocity_at_point_433______________________________ (vel_plasma_triton_profile433)_ 6.61741245452140109e+05 -Plasma_triton_thermal_velocity_at_point_434______________________________ (vel_plasma_triton_profile434)_ 6.59307775535771507e+05 -Plasma_triton_thermal_velocity_at_point_435______________________________ (vel_plasma_triton_profile435)_ 6.56888909852539422e+05 -Plasma_triton_thermal_velocity_at_point_436______________________________ (vel_plasma_triton_profile436)_ 6.54485455943143694e+05 -Plasma_triton_thermal_velocity_at_point_437______________________________ (vel_plasma_triton_profile437)_ 6.52098258333449834e+05 -Plasma_triton_thermal_velocity_at_point_438______________________________ (vel_plasma_triton_profile438)_ 6.49728200809332426e+05 -Plasma_triton_thermal_velocity_at_point_439______________________________ (vel_plasma_triton_profile439)_ 6.47376209239706979e+05 -Plasma_triton_thermal_velocity_at_point_440______________________________ (vel_plasma_triton_profile440)_ 6.45043254355158075e+05 -Plasma_triton_thermal_velocity_at_point_441______________________________ (vel_plasma_triton_profile441)_ 6.42730355043876451e+05 -Plasma_triton_thermal_velocity_at_point_442______________________________ (vel_plasma_triton_profile442)_ 6.40438581971168634e+05 -Plasma_triton_thermal_velocity_at_point_443______________________________ (vel_plasma_triton_profile443)_ 6.38169061533502419e+05 -Plasma_triton_thermal_velocity_at_point_444______________________________ (vel_plasma_triton_profile444)_ 6.35922980432168231e+05 -Plasma_triton_thermal_velocity_at_point_445______________________________ (vel_plasma_triton_profile445)_ 6.33701590678492561e+05 -Plasma_triton_thermal_velocity_at_point_446______________________________ (vel_plasma_triton_profile446)_ 6.31506215325816884e+05 -Plasma_triton_thermal_velocity_at_point_447______________________________ (vel_plasma_triton_profile447)_ 6.29338254960787715e+05 -Plasma_triton_thermal_velocity_at_point_448______________________________ (vel_plasma_triton_profile448)_ 6.27199195208340418e+05 -Plasma_triton_thermal_velocity_at_point_449______________________________ (vel_plasma_triton_profile449)_ 6.25090615302033373e+05 -Plasma_triton_thermal_velocity_at_point_450______________________________ (vel_plasma_triton_profile450)_ 6.23014197970262263e+05 -Plasma_triton_thermal_velocity_at_point_451______________________________ (vel_plasma_triton_profile451)_ 6.20971741157460376e+05 -Plasma_triton_thermal_velocity_at_point_452______________________________ (vel_plasma_triton_profile452)_ 6.18965171568810707e+05 -Plasma_triton_thermal_velocity_at_point_453______________________________ (vel_plasma_triton_profile453)_ 6.16996561193732778e+05 -Plasma_triton_thermal_velocity_at_point_454______________________________ (vel_plasma_triton_profile454)_ 6.15068146574750775e+05 -Plasma_triton_thermal_velocity_at_point_455______________________________ (vel_plasma_triton_profile455)_ 6.13182352607270586e+05 -Plasma_triton_thermal_velocity_at_point_456______________________________ (vel_plasma_triton_profile456)_ 6.11341821774326963e+05 -Plasma_triton_thermal_velocity_at_point_457______________________________ (vel_plasma_triton_profile457)_ 6.09549450200251536e+05 -Plasma_triton_thermal_velocity_at_point_458______________________________ (vel_plasma_triton_profile458)_ 6.07808433731961297e+05 -Plasma_triton_thermal_velocity_at_point_459______________________________ (vel_plasma_triton_profile459)_ 6.06122326814027620e+05 -Plasma_triton_thermal_velocity_at_point_460______________________________ (vel_plasma_triton_profile460)_ 6.04495120200933889e+05 -Plasma_triton_thermal_velocity_at_point_461______________________________ (vel_plasma_triton_profile461)_ 6.02931345411869464e+05 -Plasma_triton_thermal_velocity_at_point_462______________________________ (vel_plasma_triton_profile462)_ 6.01436219250136986e+05 -Plasma_triton_thermal_velocity_at_point_463______________________________ (vel_plasma_triton_profile463)_ 6.00015851176412776e+05 -Plasma_triton_thermal_velocity_at_point_464______________________________ (vel_plasma_triton_profile464)_ 5.98677553149517975e+05 -Plasma_triton_thermal_velocity_at_point_465______________________________ (vel_plasma_triton_profile465)_ 5.97430328545353026e+05 -Plasma_triton_thermal_velocity_at_point_466______________________________ (vel_plasma_triton_profile466)_ 5.96285700887467014e+05 -Plasma_triton_thermal_velocity_at_point_467______________________________ (vel_plasma_triton_profile467)_ 5.95259263627338456e+05 -Plasma_triton_thermal_velocity_at_point_468______________________________ (vel_plasma_triton_profile468)_ 5.94374046006526449e+05 -Plasma_triton_thermal_velocity_at_point_469______________________________ (vel_plasma_triton_profile469)_ 5.93669993077032268e+05 +Volume_averaged_triton_thermal_velocity_(m/s)____________________________ (vel_plasma_triton_vol_avg)____ 8.93413388100569951e+05 +Plasma_triton_thermal_velocity_at_point_0________________________________ (vel_plasma_triton_profile0)___ 1.28279624369168957e+06 +Plasma_triton_thermal_velocity_at_point_1________________________________ (vel_plasma_triton_profile1)___ 1.28279293404349103e+06 +Plasma_triton_thermal_velocity_at_point_2________________________________ (vel_plasma_triton_profile2)___ 1.28278300509044295e+06 +Plasma_triton_thermal_velocity_at_point_3________________________________ (vel_plasma_triton_profile3)___ 1.28276645677996194e+06 +Plasma_triton_thermal_velocity_at_point_4________________________________ (vel_plasma_triton_profile4)___ 1.28274328906978178e+06 +Plasma_triton_thermal_velocity_at_point_5________________________________ (vel_plasma_triton_profile5)___ 1.28271350188905536e+06 +Plasma_triton_thermal_velocity_at_point_6________________________________ (vel_plasma_triton_profile6)___ 1.28267709515390778e+06 +Plasma_triton_thermal_velocity_at_point_7________________________________ (vel_plasma_triton_profile7)___ 1.28263406870130636e+06 +Plasma_triton_thermal_velocity_at_point_8________________________________ (vel_plasma_triton_profile8)___ 1.28258442243296304e+06 +Plasma_triton_thermal_velocity_at_point_9________________________________ (vel_plasma_triton_profile9)___ 1.28252815618308284e+06 +Plasma_triton_thermal_velocity_at_point_10_______________________________ (vel_plasma_triton_profile10)__ 1.28246526974168024e+06 +Plasma_triton_thermal_velocity_at_point_11_______________________________ (vel_plasma_triton_profile11)__ 1.28239576293625962e+06 +Plasma_triton_thermal_velocity_at_point_12_______________________________ (vel_plasma_triton_profile12)__ 1.28231963551898557e+06 +Plasma_triton_thermal_velocity_at_point_13_______________________________ (vel_plasma_triton_profile13)__ 1.28223688724835892e+06 +Plasma_triton_thermal_velocity_at_point_14_______________________________ (vel_plasma_triton_profile14)__ 1.28214751784640434e+06 +Plasma_triton_thermal_velocity_at_point_15_______________________________ (vel_plasma_triton_profile15)__ 1.28205152702977392e+06 +Plasma_triton_thermal_velocity_at_point_16_______________________________ (vel_plasma_triton_profile16)__ 1.28194891450584005e+06 +Plasma_triton_thermal_velocity_at_point_17_______________________________ (vel_plasma_triton_profile17)__ 1.28183967991429521e+06 +Plasma_triton_thermal_velocity_at_point_18_______________________________ (vel_plasma_triton_profile18)__ 1.28172382288938528e+06 +Plasma_triton_thermal_velocity_at_point_19_______________________________ (vel_plasma_triton_profile19)__ 1.28160134308324591e+06 +Plasma_triton_thermal_velocity_at_point_20_______________________________ (vel_plasma_triton_profile20)__ 1.28147224007634772e+06 +Plasma_triton_thermal_velocity_at_point_21_______________________________ (vel_plasma_triton_profile21)__ 1.28133651347867516e+06 +Plasma_triton_thermal_velocity_at_point_22_______________________________ (vel_plasma_triton_profile22)__ 1.28119416281289957e+06 +Plasma_triton_thermal_velocity_at_point_23_______________________________ (vel_plasma_triton_profile23)__ 1.28104518762724870e+06 +Plasma_triton_thermal_velocity_at_point_24_______________________________ (vel_plasma_triton_profile24)__ 1.28088958744486305e+06 +Plasma_triton_thermal_velocity_at_point_25_______________________________ (vel_plasma_triton_profile25)__ 1.28072736175596598e+06 +Plasma_triton_thermal_velocity_at_point_26_______________________________ (vel_plasma_triton_profile26)__ 1.28055851002560789e+06 +Plasma_triton_thermal_velocity_at_point_27_______________________________ (vel_plasma_triton_profile27)__ 1.28038303170921095e+06 +Plasma_triton_thermal_velocity_at_point_28_______________________________ (vel_plasma_triton_profile28)__ 1.28020092624473851e+06 +Plasma_triton_thermal_velocity_at_point_29_______________________________ (vel_plasma_triton_profile29)__ 1.28001219302926911e+06 +Plasma_triton_thermal_velocity_at_point_30_______________________________ (vel_plasma_triton_profile30)__ 1.27981683146181563e+06 +Plasma_triton_thermal_velocity_at_point_31_______________________________ (vel_plasma_triton_profile31)__ 1.27961484090041043e+06 +Plasma_triton_thermal_velocity_at_point_32_______________________________ (vel_plasma_triton_profile32)__ 1.27940622066983720e+06 +Plasma_triton_thermal_velocity_at_point_33_______________________________ (vel_plasma_triton_profile33)__ 1.27919097012787429e+06 +Plasma_triton_thermal_velocity_at_point_34_______________________________ (vel_plasma_triton_profile34)__ 1.27896908856386598e+06 +Plasma_triton_thermal_velocity_at_point_35_______________________________ (vel_plasma_triton_profile35)__ 1.27874057522983942e+06 +Plasma_triton_thermal_velocity_at_point_36_______________________________ (vel_plasma_triton_profile36)__ 1.27850542943018698e+06 +Plasma_triton_thermal_velocity_at_point_37_______________________________ (vel_plasma_triton_profile37)__ 1.27826365036555566e+06 +Plasma_triton_thermal_velocity_at_point_38_______________________________ (vel_plasma_triton_profile38)__ 1.27801523726934288e+06 +Plasma_triton_thermal_velocity_at_point_39_______________________________ (vel_plasma_triton_profile39)__ 1.27776018933740491e+06 +Plasma_triton_thermal_velocity_at_point_40_______________________________ (vel_plasma_triton_profile40)__ 1.27749850571235805e+06 +Plasma_triton_thermal_velocity_at_point_41_______________________________ (vel_plasma_triton_profile41)__ 1.27723018558894680e+06 +Plasma_triton_thermal_velocity_at_point_42_______________________________ (vel_plasma_triton_profile42)__ 1.27695522807731014e+06 +Plasma_triton_thermal_velocity_at_point_43_______________________________ (vel_plasma_triton_profile43)__ 1.27667363229272841e+06 +Plasma_triton_thermal_velocity_at_point_44_______________________________ (vel_plasma_triton_profile44)__ 1.27638539730867627e+06 +Plasma_triton_thermal_velocity_at_point_45_______________________________ (vel_plasma_triton_profile45)__ 1.27609052220364567e+06 +Plasma_triton_thermal_velocity_at_point_46_______________________________ (vel_plasma_triton_profile46)__ 1.27578900604154868e+06 +Plasma_triton_thermal_velocity_at_point_47_______________________________ (vel_plasma_triton_profile47)__ 1.27548084780907072e+06 +Plasma_triton_thermal_velocity_at_point_48_______________________________ (vel_plasma_triton_profile48)__ 1.27516604653289751e+06 +Plasma_triton_thermal_velocity_at_point_49_______________________________ (vel_plasma_triton_profile49)__ 1.27484460119361943e+06 +Plasma_triton_thermal_velocity_at_point_50_______________________________ (vel_plasma_triton_profile50)__ 1.27451651072953339e+06 +Plasma_triton_thermal_velocity_at_point_51_______________________________ (vel_plasma_triton_profile51)__ 1.27418177411876130e+06 +Plasma_triton_thermal_velocity_at_point_52_______________________________ (vel_plasma_triton_profile52)__ 1.27384039026566781e+06 +Plasma_triton_thermal_velocity_at_point_53_______________________________ (vel_plasma_triton_profile53)__ 1.27349235804379941e+06 +Plasma_triton_thermal_velocity_at_point_54_______________________________ (vel_plasma_triton_profile54)__ 1.27313767636240344e+06 +Plasma_triton_thermal_velocity_at_point_55_______________________________ (vel_plasma_triton_profile55)__ 1.27277634407626232e+06 +Plasma_triton_thermal_velocity_at_point_56_______________________________ (vel_plasma_triton_profile56)__ 1.27240836000124319e+06 +Plasma_triton_thermal_velocity_at_point_57_______________________________ (vel_plasma_triton_profile57)__ 1.27203372295340127e+06 +Plasma_triton_thermal_velocity_at_point_58_______________________________ (vel_plasma_triton_profile58)__ 1.27165243172145495e+06 +Plasma_triton_thermal_velocity_at_point_59_______________________________ (vel_plasma_triton_profile59)__ 1.27126448510200321e+06 +Plasma_triton_thermal_velocity_at_point_60_______________________________ (vel_plasma_triton_profile60)__ 1.27086988182881009e+06 +Plasma_triton_thermal_velocity_at_point_61_______________________________ (vel_plasma_triton_profile61)__ 1.27046862063940335e+06 +Plasma_triton_thermal_velocity_at_point_62_______________________________ (vel_plasma_triton_profile62)__ 1.27006070023572911e+06 +Plasma_triton_thermal_velocity_at_point_63_______________________________ (vel_plasma_triton_profile63)__ 1.26964611931153527e+06 +Plasma_triton_thermal_velocity_at_point_64_______________________________ (vel_plasma_triton_profile64)__ 1.26922487652870570e+06 +Plasma_triton_thermal_velocity_at_point_65_______________________________ (vel_plasma_triton_profile65)__ 1.26879697053679684e+06 +Plasma_triton_thermal_velocity_at_point_66_______________________________ (vel_plasma_triton_profile66)__ 1.26836239997294825e+06 +Plasma_triton_thermal_velocity_at_point_67_______________________________ (vel_plasma_triton_profile67)__ 1.26792116342637478e+06 +Plasma_triton_thermal_velocity_at_point_68_______________________________ (vel_plasma_triton_profile68)__ 1.26747325948938262e+06 +Plasma_triton_thermal_velocity_at_point_69_______________________________ (vel_plasma_triton_profile69)__ 1.26701868673761096e+06 +Plasma_triton_thermal_velocity_at_point_70_______________________________ (vel_plasma_triton_profile70)__ 1.26655744369841623e+06 +Plasma_triton_thermal_velocity_at_point_71_______________________________ (vel_plasma_triton_profile71)__ 1.26608952891375544e+06 +Plasma_triton_thermal_velocity_at_point_72_______________________________ (vel_plasma_triton_profile72)__ 1.26561494086918072e+06 +Plasma_triton_thermal_velocity_at_point_73_______________________________ (vel_plasma_triton_profile73)__ 1.26513367805280630e+06 +Plasma_triton_thermal_velocity_at_point_74_______________________________ (vel_plasma_triton_profile74)__ 1.26464573893156508e+06 +Plasma_triton_thermal_velocity_at_point_75_______________________________ (vel_plasma_triton_profile75)__ 1.26415112193924631e+06 +Plasma_triton_thermal_velocity_at_point_76_______________________________ (vel_plasma_triton_profile76)__ 1.26364982551188255e+06 +Plasma_triton_thermal_velocity_at_point_77_______________________________ (vel_plasma_triton_profile77)__ 1.26314184803237510e+06 +Plasma_triton_thermal_velocity_at_point_78_______________________________ (vel_plasma_triton_profile78)__ 1.26262718790537957e+06 +Plasma_triton_thermal_velocity_at_point_79_______________________________ (vel_plasma_triton_profile79)__ 1.26210584346634452e+06 +Plasma_triton_thermal_velocity_at_point_80_______________________________ (vel_plasma_triton_profile80)__ 1.26157781307223975e+06 +Plasma_triton_thermal_velocity_at_point_81_______________________________ (vel_plasma_triton_profile81)__ 1.26104309504217049e+06 +Plasma_triton_thermal_velocity_at_point_82_______________________________ (vel_plasma_triton_profile82)__ 1.26050168766116444e+06 +Plasma_triton_thermal_velocity_at_point_83_______________________________ (vel_plasma_triton_profile83)__ 1.25995358924336568e+06 +Plasma_triton_thermal_velocity_at_point_84_______________________________ (vel_plasma_triton_profile84)__ 1.25939879801316280e+06 +Plasma_triton_thermal_velocity_at_point_85_______________________________ (vel_plasma_triton_profile85)__ 1.25883731224361318e+06 +Plasma_triton_thermal_velocity_at_point_86_______________________________ (vel_plasma_triton_profile86)__ 1.25826913014147221e+06 +Plasma_triton_thermal_velocity_at_point_87_______________________________ (vel_plasma_triton_profile87)__ 1.25769424990645144e+06 +Plasma_triton_thermal_velocity_at_point_88_______________________________ (vel_plasma_triton_profile88)__ 1.25711266971126548e+06 +Plasma_triton_thermal_velocity_at_point_89_______________________________ (vel_plasma_triton_profile89)__ 1.25652438772926456e+06 +Plasma_triton_thermal_velocity_at_point_90_______________________________ (vel_plasma_triton_profile90)__ 1.25592940210653353e+06 +Plasma_triton_thermal_velocity_at_point_91_______________________________ (vel_plasma_triton_profile91)__ 1.25532771096967557e+06 +Plasma_triton_thermal_velocity_at_point_92_______________________________ (vel_plasma_triton_profile92)__ 1.25471931240578601e+06 +Plasma_triton_thermal_velocity_at_point_93_______________________________ (vel_plasma_triton_profile93)__ 1.25410420453386242e+06 +Plasma_triton_thermal_velocity_at_point_94_______________________________ (vel_plasma_triton_profile94)__ 1.25348238536149566e+06 +Plasma_triton_thermal_velocity_at_point_95_______________________________ (vel_plasma_triton_profile95)__ 1.25285385298359767e+06 +Plasma_triton_thermal_velocity_at_point_96_______________________________ (vel_plasma_triton_profile96)__ 1.25221860540721077e+06 +Plasma_triton_thermal_velocity_at_point_97_______________________________ (vel_plasma_triton_profile97)__ 1.25157664064685209e+06 +Plasma_triton_thermal_velocity_at_point_98_______________________________ (vel_plasma_triton_profile98)__ 1.25092795668852958e+06 +Plasma_triton_thermal_velocity_at_point_99_______________________________ (vel_plasma_triton_profile99)__ 1.25027255147758964e+06 +Plasma_triton_thermal_velocity_at_point_100______________________________ (vel_plasma_triton_profile100)_ 1.24961042300633667e+06 +Plasma_triton_thermal_velocity_at_point_101______________________________ (vel_plasma_triton_profile101)_ 1.24894156919021369e+06 +Plasma_triton_thermal_velocity_at_point_102______________________________ (vel_plasma_triton_profile102)_ 1.24826598793143523e+06 +Plasma_triton_thermal_velocity_at_point_103______________________________ (vel_plasma_triton_profile103)_ 1.24758367713483586e+06 +Plasma_triton_thermal_velocity_at_point_104______________________________ (vel_plasma_triton_profile104)_ 1.24689463467175094e+06 +Plasma_triton_thermal_velocity_at_point_105______________________________ (vel_plasma_triton_profile105)_ 1.24619885840783641e+06 +Plasma_triton_thermal_velocity_at_point_106______________________________ (vel_plasma_triton_profile106)_ 1.24549634616688546e+06 +Plasma_triton_thermal_velocity_at_point_107______________________________ (vel_plasma_triton_profile107)_ 1.24478709579071356e+06 +Plasma_triton_thermal_velocity_at_point_108______________________________ (vel_plasma_triton_profile108)_ 1.24407110506690666e+06 +Plasma_triton_thermal_velocity_at_point_109______________________________ (vel_plasma_triton_profile109)_ 1.24334837178071239e+06 +Plasma_triton_thermal_velocity_at_point_110______________________________ (vel_plasma_triton_profile110)_ 1.24261889370688144e+06 +Plasma_triton_thermal_velocity_at_point_111______________________________ (vel_plasma_triton_profile111)_ 1.24188266857737792e+06 +Plasma_triton_thermal_velocity_at_point_112______________________________ (vel_plasma_triton_profile112)_ 1.24113969414946646e+06 +Plasma_triton_thermal_velocity_at_point_113______________________________ (vel_plasma_triton_profile113)_ 1.24038996811315464e+06 +Plasma_triton_thermal_velocity_at_point_114______________________________ (vel_plasma_triton_profile114)_ 1.23963348818745790e+06 +Plasma_triton_thermal_velocity_at_point_115______________________________ (vel_plasma_triton_profile115)_ 1.23887025202371087e+06 +Plasma_triton_thermal_velocity_at_point_116______________________________ (vel_plasma_triton_profile116)_ 1.23810025729791424e+06 +Plasma_triton_thermal_velocity_at_point_117______________________________ (vel_plasma_triton_profile117)_ 1.23732350163407391e+06 +Plasma_triton_thermal_velocity_at_point_118______________________________ (vel_plasma_triton_profile118)_ 1.23653998269670573e+06 +Plasma_triton_thermal_velocity_at_point_119______________________________ (vel_plasma_triton_profile119)_ 1.23574969807779323e+06 +Plasma_triton_thermal_velocity_at_point_120______________________________ (vel_plasma_triton_profile120)_ 1.23495264535702136e+06 +Plasma_triton_thermal_velocity_at_point_121______________________________ (vel_plasma_triton_profile121)_ 1.23414882212181971e+06 +Plasma_triton_thermal_velocity_at_point_122______________________________ (vel_plasma_triton_profile122)_ 1.23333822591871023e+06 +Plasma_triton_thermal_velocity_at_point_123______________________________ (vel_plasma_triton_profile123)_ 1.23252085431780829e+06 +Plasma_triton_thermal_velocity_at_point_124______________________________ (vel_plasma_triton_profile124)_ 1.23169670482364995e+06 +Plasma_triton_thermal_velocity_at_point_125______________________________ (vel_plasma_triton_profile125)_ 1.23086577497617365e+06 +Plasma_triton_thermal_velocity_at_point_126______________________________ (vel_plasma_triton_profile126)_ 1.23002806222090498e+06 +Plasma_triton_thermal_velocity_at_point_127______________________________ (vel_plasma_triton_profile127)_ 1.22918356406273716e+06 +Plasma_triton_thermal_velocity_at_point_128______________________________ (vel_plasma_triton_profile128)_ 1.22833227798882080e+06 +Plasma_triton_thermal_velocity_at_point_129______________________________ (vel_plasma_triton_profile129)_ 1.22747420139926882e+06 +Plasma_triton_thermal_velocity_at_point_130______________________________ (vel_plasma_triton_profile130)_ 1.22660933174906811e+06 +Plasma_triton_thermal_velocity_at_point_131______________________________ (vel_plasma_triton_profile131)_ 1.22573766647893679e+06 +Plasma_triton_thermal_velocity_at_point_132______________________________ (vel_plasma_triton_profile132)_ 1.22485920293774037e+06 +Plasma_triton_thermal_velocity_at_point_133______________________________ (vel_plasma_triton_profile133)_ 1.22397393855321524e+06 +Plasma_triton_thermal_velocity_at_point_134______________________________ (vel_plasma_triton_profile134)_ 1.22308187069749925e+06 +Plasma_triton_thermal_velocity_at_point_135______________________________ (vel_plasma_triton_profile135)_ 1.22218299670311110e+06 +Plasma_triton_thermal_velocity_at_point_136______________________________ (vel_plasma_triton_profile136)_ 1.22127731392393587e+06 +Plasma_triton_thermal_velocity_at_point_137______________________________ (vel_plasma_triton_profile137)_ 1.22036481969018350e+06 +Plasma_triton_thermal_velocity_at_point_138______________________________ (vel_plasma_triton_profile138)_ 1.21944551132861129e+06 +Plasma_triton_thermal_velocity_at_point_139______________________________ (vel_plasma_triton_profile139)_ 1.21851938611322595e+06 +Plasma_triton_thermal_velocity_at_point_140______________________________ (vel_plasma_triton_profile140)_ 1.21758644135917630e+06 +Plasma_triton_thermal_velocity_at_point_141______________________________ (vel_plasma_triton_profile141)_ 1.21664667432024283e+06 +Plasma_triton_thermal_velocity_at_point_142______________________________ (vel_plasma_triton_profile142)_ 1.21570008227052423e+06 +Plasma_triton_thermal_velocity_at_point_143______________________________ (vel_plasma_triton_profile143)_ 1.21474666244686441e+06 +Plasma_triton_thermal_velocity_at_point_144______________________________ (vel_plasma_triton_profile144)_ 1.21378641208965494e+06 +Plasma_triton_thermal_velocity_at_point_145______________________________ (vel_plasma_triton_profile145)_ 1.21281932843035343e+06 +Plasma_triton_thermal_velocity_at_point_146______________________________ (vel_plasma_triton_profile146)_ 1.21184540865423880e+06 +Plasma_triton_thermal_velocity_at_point_147______________________________ (vel_plasma_triton_profile147)_ 1.21086464999071416e+06 +Plasma_triton_thermal_velocity_at_point_148______________________________ (vel_plasma_triton_profile148)_ 1.20987704961023666e+06 +Plasma_triton_thermal_velocity_at_point_149______________________________ (vel_plasma_triton_profile149)_ 1.20888260466931690e+06 +Plasma_triton_thermal_velocity_at_point_150______________________________ (vel_plasma_triton_profile150)_ 1.20788131238051690e+06 +Plasma_triton_thermal_velocity_at_point_151______________________________ (vel_plasma_triton_profile151)_ 1.20687316983890045e+06 +Plasma_triton_thermal_velocity_at_point_152______________________________ (vel_plasma_triton_profile152)_ 1.20585817421997245e+06 +Plasma_triton_thermal_velocity_at_point_153______________________________ (vel_plasma_triton_profile153)_ 1.20483632265563053e+06 +Plasma_triton_thermal_velocity_at_point_154______________________________ (vel_plasma_triton_profile154)_ 1.20380761224625004e+06 +Plasma_triton_thermal_velocity_at_point_155______________________________ (vel_plasma_triton_profile155)_ 1.20277204011845728e+06 +Plasma_triton_thermal_velocity_at_point_156______________________________ (vel_plasma_triton_profile156)_ 1.20172960337110586e+06 +Plasma_triton_thermal_velocity_at_point_157______________________________ (vel_plasma_triton_profile157)_ 1.20068029909992358e+06 +Plasma_triton_thermal_velocity_at_point_158______________________________ (vel_plasma_triton_profile158)_ 1.19962412438901514e+06 +Plasma_triton_thermal_velocity_at_point_159______________________________ (vel_plasma_triton_profile159)_ 1.19856107628983050e+06 +Plasma_triton_thermal_velocity_at_point_160______________________________ (vel_plasma_triton_profile160)_ 1.19749115188751207e+06 +Plasma_triton_thermal_velocity_at_point_161______________________________ (vel_plasma_triton_profile161)_ 1.19641434822581708e+06 +Plasma_triton_thermal_velocity_at_point_162______________________________ (vel_plasma_triton_profile162)_ 1.19533066237771674e+06 +Plasma_triton_thermal_velocity_at_point_163______________________________ (vel_plasma_triton_profile163)_ 1.19424009135345183e+06 +Plasma_triton_thermal_velocity_at_point_164______________________________ (vel_plasma_triton_profile164)_ 1.19314263220879226e+06 +Plasma_triton_thermal_velocity_at_point_165______________________________ (vel_plasma_triton_profile165)_ 1.19203828195718490e+06 +Plasma_triton_thermal_velocity_at_point_166______________________________ (vel_plasma_triton_profile166)_ 1.19092703764060210e+06 +Plasma_triton_thermal_velocity_at_point_167______________________________ (vel_plasma_triton_profile167)_ 1.18980889627499087e+06 +Plasma_triton_thermal_velocity_at_point_168______________________________ (vel_plasma_triton_profile168)_ 1.18868385484578181e+06 +Plasma_triton_thermal_velocity_at_point_169______________________________ (vel_plasma_triton_profile169)_ 1.18755191035378235e+06 +Plasma_triton_thermal_velocity_at_point_170______________________________ (vel_plasma_triton_profile170)_ 1.18641305983610172e+06 +Plasma_triton_thermal_velocity_at_point_171______________________________ (vel_plasma_triton_profile171)_ 1.18526730025671073e+06 +Plasma_triton_thermal_velocity_at_point_172______________________________ (vel_plasma_triton_profile172)_ 1.18411462861546013e+06 +Plasma_triton_thermal_velocity_at_point_173______________________________ (vel_plasma_triton_profile173)_ 1.18295504190168669e+06 +Plasma_triton_thermal_velocity_at_point_174______________________________ (vel_plasma_triton_profile174)_ 1.18178853710665135e+06 +Plasma_triton_thermal_velocity_at_point_175______________________________ (vel_plasma_triton_profile175)_ 1.18061511118111340e+06 +Plasma_triton_thermal_velocity_at_point_176______________________________ (vel_plasma_triton_profile176)_ 1.17943476114493306e+06 +Plasma_triton_thermal_velocity_at_point_177______________________________ (vel_plasma_triton_profile177)_ 1.17824748396444484e+06 +Plasma_triton_thermal_velocity_at_point_178______________________________ (vel_plasma_triton_profile178)_ 1.17705327658168226e+06 +Plasma_triton_thermal_velocity_at_point_179______________________________ (vel_plasma_triton_profile179)_ 1.17585213601590367e+06 +Plasma_triton_thermal_velocity_at_point_180______________________________ (vel_plasma_triton_profile180)_ 1.17464405920241284e+06 +Plasma_triton_thermal_velocity_at_point_181______________________________ (vel_plasma_triton_profile181)_ 1.17342904315351229e+06 +Plasma_triton_thermal_velocity_at_point_182______________________________ (vel_plasma_triton_profile182)_ 1.17220708482252713e+06 +Plasma_triton_thermal_velocity_at_point_183______________________________ (vel_plasma_triton_profile183)_ 1.17097818118426926e+06 +Plasma_triton_thermal_velocity_at_point_184______________________________ (vel_plasma_triton_profile184)_ 1.16974232923497097e+06 +Plasma_triton_thermal_velocity_at_point_185______________________________ (vel_plasma_triton_profile185)_ 1.16849952592390450e+06 +Plasma_triton_thermal_velocity_at_point_186______________________________ (vel_plasma_triton_profile186)_ 1.16724976827690308e+06 +Plasma_triton_thermal_velocity_at_point_187______________________________ (vel_plasma_triton_profile187)_ 1.16599305324683455e+06 +Plasma_triton_thermal_velocity_at_point_188______________________________ (vel_plasma_triton_profile188)_ 1.16472937784153013e+06 +Plasma_triton_thermal_velocity_at_point_189______________________________ (vel_plasma_triton_profile189)_ 1.16345873904671683e+06 +Plasma_triton_thermal_velocity_at_point_190______________________________ (vel_plasma_triton_profile190)_ 1.16218113385147345e+06 +Plasma_triton_thermal_velocity_at_point_191______________________________ (vel_plasma_triton_profile191)_ 1.16089655929534184e+06 +Plasma_triton_thermal_velocity_at_point_192______________________________ (vel_plasma_triton_profile192)_ 1.15960501236947277e+06 +Plasma_triton_thermal_velocity_at_point_193______________________________ (vel_plasma_triton_profile193)_ 1.15830649009801215e+06 +Plasma_triton_thermal_velocity_at_point_194______________________________ (vel_plasma_triton_profile194)_ 1.15700098951223516e+06 +Plasma_triton_thermal_velocity_at_point_195______________________________ (vel_plasma_triton_profile195)_ 1.15568850763745443e+06 +Plasma_triton_thermal_velocity_at_point_196______________________________ (vel_plasma_triton_profile196)_ 1.15436904153602663e+06 +Plasma_triton_thermal_velocity_at_point_197______________________________ (vel_plasma_triton_profile197)_ 1.15304258825978963e+06 +Plasma_triton_thermal_velocity_at_point_198______________________________ (vel_plasma_triton_profile198)_ 1.15170914487581444e+06 +Plasma_triton_thermal_velocity_at_point_199______________________________ (vel_plasma_triton_profile199)_ 1.15036870844896743e+06 +Plasma_triton_thermal_velocity_at_point_200______________________________ (vel_plasma_triton_profile200)_ 1.14902127608079626e+06 +Plasma_triton_thermal_velocity_at_point_201______________________________ (vel_plasma_triton_profile201)_ 1.14766684487913921e+06 +Plasma_triton_thermal_velocity_at_point_202______________________________ (vel_plasma_triton_profile202)_ 1.14630541196233593e+06 +Plasma_triton_thermal_velocity_at_point_203______________________________ (vel_plasma_triton_profile203)_ 1.14493697445475706e+06 +Plasma_triton_thermal_velocity_at_point_204______________________________ (vel_plasma_triton_profile204)_ 1.14356152950847778e+06 +Plasma_triton_thermal_velocity_at_point_205______________________________ (vel_plasma_triton_profile205)_ 1.14217907429453218e+06 +Plasma_triton_thermal_velocity_at_point_206______________________________ (vel_plasma_triton_profile206)_ 1.14078960599848162e+06 +Plasma_triton_thermal_velocity_at_point_207______________________________ (vel_plasma_triton_profile207)_ 1.13939312179843499e+06 +Plasma_triton_thermal_velocity_at_point_208______________________________ (vel_plasma_triton_profile208)_ 1.13798961894812784e+06 +Plasma_triton_thermal_velocity_at_point_209______________________________ (vel_plasma_triton_profile209)_ 1.13657909466308914e+06 +Plasma_triton_thermal_velocity_at_point_210______________________________ (vel_plasma_triton_profile210)_ 1.13516154620813392e+06 +Plasma_triton_thermal_velocity_at_point_211______________________________ (vel_plasma_triton_profile211)_ 1.13373697088429774e+06 +Plasma_triton_thermal_velocity_at_point_212______________________________ (vel_plasma_triton_profile212)_ 1.13230536597161763e+06 +Plasma_triton_thermal_velocity_at_point_213______________________________ (vel_plasma_triton_profile213)_ 1.13086672883912269e+06 +Plasma_triton_thermal_velocity_at_point_214______________________________ (vel_plasma_triton_profile214)_ 1.12942105681271409e+06 +Plasma_triton_thermal_velocity_at_point_215______________________________ (vel_plasma_triton_profile215)_ 1.12796834728972288e+06 +Plasma_triton_thermal_velocity_at_point_216______________________________ (vel_plasma_triton_profile216)_ 1.12650859766834462e+06 +Plasma_triton_thermal_velocity_at_point_217______________________________ (vel_plasma_triton_profile217)_ 1.12504180542286951e+06 +Plasma_triton_thermal_velocity_at_point_218______________________________ (vel_plasma_triton_profile218)_ 1.12356796797524812e+06 +Plasma_triton_thermal_velocity_at_point_219______________________________ (vel_plasma_triton_profile219)_ 1.12208708287688368e+06 +Plasma_triton_thermal_velocity_at_point_220______________________________ (vel_plasma_triton_profile220)_ 1.12059914762233756e+06 +Plasma_triton_thermal_velocity_at_point_221______________________________ (vel_plasma_triton_profile221)_ 1.11910415980928927e+06 +Plasma_triton_thermal_velocity_at_point_222______________________________ (vel_plasma_triton_profile222)_ 1.11760211703193001e+06 +Plasma_triton_thermal_velocity_at_point_223______________________________ (vel_plasma_triton_profile223)_ 1.11609301692102221e+06 +Plasma_triton_thermal_velocity_at_point_224______________________________ (vel_plasma_triton_profile224)_ 1.11457685714846896e+06 +Plasma_triton_thermal_velocity_at_point_225______________________________ (vel_plasma_triton_profile225)_ 1.11305363544985862e+06 +Plasma_triton_thermal_velocity_at_point_226______________________________ (vel_plasma_triton_profile226)_ 1.11152334957089275e+06 +Plasma_triton_thermal_velocity_at_point_227______________________________ (vel_plasma_triton_profile227)_ 1.10998599732574332e+06 +Plasma_triton_thermal_velocity_at_point_228______________________________ (vel_plasma_triton_profile228)_ 1.10844157655237662e+06 +Plasma_triton_thermal_velocity_at_point_229______________________________ (vel_plasma_triton_profile229)_ 1.10689008514413168e+06 +Plasma_triton_thermal_velocity_at_point_230______________________________ (vel_plasma_triton_profile230)_ 1.10533152100934833e+06 +Plasma_triton_thermal_velocity_at_point_231______________________________ (vel_plasma_triton_profile231)_ 1.10376588213462033e+06 +Plasma_triton_thermal_velocity_at_point_232______________________________ (vel_plasma_triton_profile232)_ 1.10219316658522002e+06 +Plasma_triton_thermal_velocity_at_point_233______________________________ (vel_plasma_triton_profile233)_ 1.10061337243300397e+06 +Plasma_triton_thermal_velocity_at_point_234______________________________ (vel_plasma_triton_profile234)_ 1.09902649781535147e+06 +Plasma_triton_thermal_velocity_at_point_235______________________________ (vel_plasma_triton_profile235)_ 1.09743254089459940e+06 +Plasma_triton_thermal_velocity_at_point_236______________________________ (vel_plasma_triton_profile236)_ 1.09583149998103059e+06 +Plasma_triton_thermal_velocity_at_point_237______________________________ (vel_plasma_triton_profile237)_ 1.09422337334690290e+06 +Plasma_triton_thermal_velocity_at_point_238______________________________ (vel_plasma_triton_profile238)_ 1.09260815935391234e+06 +Plasma_triton_thermal_velocity_at_point_239______________________________ (vel_plasma_triton_profile239)_ 1.09098585646289284e+06 +Plasma_triton_thermal_velocity_at_point_240______________________________ (vel_plasma_triton_profile240)_ 1.08935646314285323e+06 +Plasma_triton_thermal_velocity_at_point_241______________________________ (vel_plasma_triton_profile241)_ 1.08771997797643323e+06 +Plasma_triton_thermal_velocity_at_point_242______________________________ (vel_plasma_triton_profile242)_ 1.08607639959635306e+06 +Plasma_triton_thermal_velocity_at_point_243______________________________ (vel_plasma_triton_profile243)_ 1.08442572670410317e+06 +Plasma_triton_thermal_velocity_at_point_244______________________________ (vel_plasma_triton_profile244)_ 1.08276795807038178e+06 +Plasma_triton_thermal_velocity_at_point_245______________________________ (vel_plasma_triton_profile245)_ 1.08110309256323124e+06 +Plasma_triton_thermal_velocity_at_point_246______________________________ (vel_plasma_triton_profile246)_ 1.07943112909787009e+06 +Plasma_triton_thermal_velocity_at_point_247______________________________ (vel_plasma_triton_profile247)_ 1.07775206668327656e+06 +Plasma_triton_thermal_velocity_at_point_248______________________________ (vel_plasma_triton_profile248)_ 1.07606590443212539e+06 +Plasma_triton_thermal_velocity_at_point_249______________________________ (vel_plasma_triton_profile249)_ 1.07437264149188343e+06 +Plasma_triton_thermal_velocity_at_point_250______________________________ (vel_plasma_triton_profile250)_ 1.07267227714269911e+06 +Plasma_triton_thermal_velocity_at_point_251______________________________ (vel_plasma_triton_profile251)_ 1.07096481074715988e+06 +Plasma_triton_thermal_velocity_at_point_252______________________________ (vel_plasma_triton_profile252)_ 1.06925024173690868e+06 +Plasma_triton_thermal_velocity_at_point_253______________________________ (vel_plasma_triton_profile253)_ 1.06752856966923899e+06 +Plasma_triton_thermal_velocity_at_point_254______________________________ (vel_plasma_triton_profile254)_ 1.06579979417658504e+06 +Plasma_triton_thermal_velocity_at_point_255______________________________ (vel_plasma_triton_profile255)_ 1.06406391501868074e+06 +Plasma_triton_thermal_velocity_at_point_256______________________________ (vel_plasma_triton_profile256)_ 1.06232093200843595e+06 +Plasma_triton_thermal_velocity_at_point_257______________________________ (vel_plasma_triton_profile257)_ 1.06057084514407767e+06 +Plasma_triton_thermal_velocity_at_point_258______________________________ (vel_plasma_triton_profile258)_ 1.05881365445989044e+06 +Plasma_triton_thermal_velocity_at_point_259______________________________ (vel_plasma_triton_profile259)_ 1.05704936012563412e+06 +Plasma_triton_thermal_velocity_at_point_260______________________________ (vel_plasma_triton_profile260)_ 1.05527796246659523e+06 +Plasma_triton_thermal_velocity_at_point_261______________________________ (vel_plasma_triton_profile261)_ 1.05349946187493042e+06 +Plasma_triton_thermal_velocity_at_point_262______________________________ (vel_plasma_triton_profile262)_ 1.05171385887192655e+06 +Plasma_triton_thermal_velocity_at_point_263______________________________ (vel_plasma_triton_profile263)_ 1.04992115416615177e+06 +Plasma_triton_thermal_velocity_at_point_264______________________________ (vel_plasma_triton_profile264)_ 1.04812134851229773e+06 +Plasma_triton_thermal_velocity_at_point_265______________________________ (vel_plasma_triton_profile265)_ 1.04631444284990535e+06 +Plasma_triton_thermal_velocity_at_point_266______________________________ (vel_plasma_triton_profile266)_ 1.04450043823337310e+06 +Plasma_triton_thermal_velocity_at_point_267______________________________ (vel_plasma_triton_profile267)_ 1.04267933588087314e+06 +Plasma_triton_thermal_velocity_at_point_268______________________________ (vel_plasma_triton_profile268)_ 1.04085113716148096e+06 +Plasma_triton_thermal_velocity_at_point_269______________________________ (vel_plasma_triton_profile269)_ 1.03901584355817863e+06 +Plasma_triton_thermal_velocity_at_point_270______________________________ (vel_plasma_triton_profile270)_ 1.03717345674592291e+06 +Plasma_triton_thermal_velocity_at_point_271______________________________ (vel_plasma_triton_profile271)_ 1.03532397849226720e+06 +Plasma_triton_thermal_velocity_at_point_272______________________________ (vel_plasma_triton_profile272)_ 1.03346741080795962e+06 +Plasma_triton_thermal_velocity_at_point_273______________________________ (vel_plasma_triton_profile273)_ 1.03160375585737382e+06 +Plasma_triton_thermal_velocity_at_point_274______________________________ (vel_plasma_triton_profile274)_ 1.02973301591159252e+06 +Plasma_triton_thermal_velocity_at_point_275______________________________ (vel_plasma_triton_profile275)_ 1.02785519346116972e+06 +Plasma_triton_thermal_velocity_at_point_276______________________________ (vel_plasma_triton_profile276)_ 1.02597029120857932e+06 +Plasma_triton_thermal_velocity_at_point_277______________________________ (vel_plasma_triton_profile277)_ 1.02407831200213905e+06 +Plasma_triton_thermal_velocity_at_point_278______________________________ (vel_plasma_triton_profile278)_ 1.02217925888636138e+06 +Plasma_triton_thermal_velocity_at_point_279______________________________ (vel_plasma_triton_profile279)_ 1.02027313509909273e+06 +Plasma_triton_thermal_velocity_at_point_280______________________________ (vel_plasma_triton_profile280)_ 1.01835994409313903e+06 +Plasma_triton_thermal_velocity_at_point_281______________________________ (vel_plasma_triton_profile281)_ 1.01643968951397843e+06 +Plasma_triton_thermal_velocity_at_point_282______________________________ (vel_plasma_triton_profile282)_ 1.01451237525100913e+06 +Plasma_triton_thermal_velocity_at_point_283______________________________ (vel_plasma_triton_profile283)_ 1.01257800534651906e+06 +Plasma_triton_thermal_velocity_at_point_284______________________________ (vel_plasma_triton_profile284)_ 1.01063658414058574e+06 +Plasma_triton_thermal_velocity_at_point_285______________________________ (vel_plasma_triton_profile285)_ 1.00868811618520587e+06 +Plasma_triton_thermal_velocity_at_point_286______________________________ (vel_plasma_triton_profile286)_ 1.00673260622187855e+06 +Plasma_triton_thermal_velocity_at_point_287______________________________ (vel_plasma_triton_profile287)_ 1.00477005926322134e+06 +Plasma_triton_thermal_velocity_at_point_288______________________________ (vel_plasma_triton_profile288)_ 1.00280048062084196e+06 +Plasma_triton_thermal_velocity_at_point_289______________________________ (vel_plasma_triton_profile289)_ 1.00082387580395781e+06 +Plasma_triton_thermal_velocity_at_point_290______________________________ (vel_plasma_triton_profile290)_ 9.98840250561691471e+05 +Plasma_triton_thermal_velocity_at_point_291______________________________ (vel_plasma_triton_profile291)_ 9.96849611005970743e+05 +Plasma_triton_thermal_velocity_at_point_292______________________________ (vel_plasma_triton_profile292)_ 9.94851963430024916e+05 +Plasma_triton_thermal_velocity_at_point_293______________________________ (vel_plasma_triton_profile293)_ 9.92847314491548343e+05 +Plasma_triton_thermal_velocity_at_point_294______________________________ (vel_plasma_triton_profile294)_ 9.90835671106069232e+05 +Plasma_triton_thermal_velocity_at_point_295______________________________ (vel_plasma_triton_profile295)_ 9.88817040460144635e+05 +Plasma_triton_thermal_velocity_at_point_296______________________________ (vel_plasma_triton_profile296)_ 9.86791430090469192e+05 +Plasma_triton_thermal_velocity_at_point_297______________________________ (vel_plasma_triton_profile297)_ 9.84758847842402174e+05 +Plasma_triton_thermal_velocity_at_point_298______________________________ (vel_plasma_triton_profile298)_ 9.82719301904166234e+05 +Plasma_triton_thermal_velocity_at_point_299______________________________ (vel_plasma_triton_profile299)_ 9.80672800729583600e+05 +Plasma_triton_thermal_velocity_at_point_300______________________________ (vel_plasma_triton_profile300)_ 9.78619353214780451e+05 +Plasma_triton_thermal_velocity_at_point_301______________________________ (vel_plasma_triton_profile301)_ 9.76558968529752921e+05 +Plasma_triton_thermal_velocity_at_point_302______________________________ (vel_plasma_triton_profile302)_ 9.74491656244779355e+05 +Plasma_triton_thermal_velocity_at_point_303______________________________ (vel_plasma_triton_profile303)_ 9.72417426314819953e+05 +Plasma_triton_thermal_velocity_at_point_304______________________________ (vel_plasma_triton_profile304)_ 9.70336289043192402e+05 +Plasma_triton_thermal_velocity_at_point_305______________________________ (vel_plasma_triton_profile305)_ 9.68248255142718088e+05 +Plasma_triton_thermal_velocity_at_point_306______________________________ (vel_plasma_triton_profile306)_ 9.66153335699587013e+05 +Plasma_triton_thermal_velocity_at_point_307______________________________ (vel_plasma_triton_profile307)_ 9.64051542297222069e+05 +Plasma_triton_thermal_velocity_at_point_308______________________________ (vel_plasma_triton_profile308)_ 9.61942886856553494e+05 +Plasma_triton_thermal_velocity_at_point_309______________________________ (vel_plasma_triton_profile309)_ 9.59827381770516047e+05 +Plasma_triton_thermal_velocity_at_point_310______________________________ (vel_plasma_triton_profile310)_ 9.57705039889293839e+05 +Plasma_triton_thermal_velocity_at_point_311______________________________ (vel_plasma_triton_profile311)_ 9.55575874510639231e+05 +Plasma_triton_thermal_velocity_at_point_312______________________________ (vel_plasma_triton_profile312)_ 9.53439899422435905e+05 +Plasma_triton_thermal_velocity_at_point_313______________________________ (vel_plasma_triton_profile313)_ 9.51297128877704614e+05 +Plasma_triton_thermal_velocity_at_point_314______________________________ (vel_plasma_triton_profile314)_ 9.49147577637653216e+05 +Plasma_triton_thermal_velocity_at_point_315______________________________ (vel_plasma_triton_profile315)_ 9.46991260989020811e+05 +Plasma_triton_thermal_velocity_at_point_316______________________________ (vel_plasma_triton_profile316)_ 9.44828194772273651e+05 +Plasma_triton_thermal_velocity_at_point_317______________________________ (vel_plasma_triton_profile317)_ 9.42658395267343614e+05 +Plasma_triton_thermal_velocity_at_point_318______________________________ (vel_plasma_triton_profile318)_ 9.40481879427957931e+05 +Plasma_triton_thermal_velocity_at_point_319______________________________ (vel_plasma_triton_profile319)_ 9.38298664736445295e+05 +Plasma_triton_thermal_velocity_at_point_320______________________________ (vel_plasma_triton_profile320)_ 9.36108769227123936e+05 +Plasma_triton_thermal_velocity_at_point_321______________________________ (vel_plasma_triton_profile321)_ 9.33912211584861041e+05 +Plasma_triton_thermal_velocity_at_point_322______________________________ (vel_plasma_triton_profile322)_ 9.31709011121927178e+05 +Plasma_triton_thermal_velocity_at_point_323______________________________ (vel_plasma_triton_profile323)_ 9.29499187770689605e+05 +Plasma_triton_thermal_velocity_at_point_324______________________________ (vel_plasma_triton_profile324)_ 9.27282762097784434e+05 +Plasma_triton_thermal_velocity_at_point_325______________________________ (vel_plasma_triton_profile325)_ 9.25059755367096048e+05 +Plasma_triton_thermal_velocity_at_point_326______________________________ (vel_plasma_triton_profile326)_ 9.22830189533429104e+05 +Plasma_triton_thermal_velocity_at_point_327______________________________ (vel_plasma_triton_profile327)_ 9.20594087295773556e+05 +Plasma_triton_thermal_velocity_at_point_328______________________________ (vel_plasma_triton_profile328)_ 9.18351472021033987e+05 +Plasma_triton_thermal_velocity_at_point_329______________________________ (vel_plasma_triton_profile329)_ 9.16102367900886456e+05 +Plasma_triton_thermal_velocity_at_point_330______________________________ (vel_plasma_triton_profile330)_ 9.13846799788918230e+05 +Plasma_triton_thermal_velocity_at_point_331______________________________ (vel_plasma_triton_profile331)_ 9.11584793484208290e+05 +Plasma_triton_thermal_velocity_at_point_332______________________________ (vel_plasma_triton_profile332)_ 9.09316375503471005e+05 +Plasma_triton_thermal_velocity_at_point_333______________________________ (vel_plasma_triton_profile333)_ 9.07041573196391226e+05 +Plasma_triton_thermal_velocity_at_point_334______________________________ (vel_plasma_triton_profile334)_ 9.04760414818656282e+05 +Plasma_triton_thermal_velocity_at_point_335______________________________ (vel_plasma_triton_profile335)_ 9.02472929545369931e+05 +Plasma_triton_thermal_velocity_at_point_336______________________________ (vel_plasma_triton_profile336)_ 9.00179147357282229e+05 +Plasma_triton_thermal_velocity_at_point_337______________________________ (vel_plasma_triton_profile337)_ 8.97879099314317340e+05 +Plasma_triton_thermal_velocity_at_point_338______________________________ (vel_plasma_triton_profile338)_ 8.95572817298600334e+05 +Plasma_triton_thermal_velocity_at_point_339______________________________ (vel_plasma_triton_profile339)_ 8.93260334306536592e+05 +Plasma_triton_thermal_velocity_at_point_340______________________________ (vel_plasma_triton_profile340)_ 8.90941684291942162e+05 +Plasma_triton_thermal_velocity_at_point_341______________________________ (vel_plasma_triton_profile341)_ 8.88616902281924733e+05 +Plasma_triton_thermal_velocity_at_point_342______________________________ (vel_plasma_triton_profile342)_ 8.86286024365206249e+05 +Plasma_triton_thermal_velocity_at_point_343______________________________ (vel_plasma_triton_profile343)_ 8.83949087776308996e+05 +Plasma_triton_thermal_velocity_at_point_344______________________________ (vel_plasma_triton_profile344)_ 8.81606130873654736e+05 +Plasma_triton_thermal_velocity_at_point_345______________________________ (vel_plasma_triton_profile345)_ 8.79257193213877734e+05 +Plasma_triton_thermal_velocity_at_point_346______________________________ (vel_plasma_triton_profile346)_ 8.76902315513643436e+05 +Plasma_triton_thermal_velocity_at_point_347______________________________ (vel_plasma_triton_profile347)_ 8.74541539787803427e+05 +Plasma_triton_thermal_velocity_at_point_348______________________________ (vel_plasma_triton_profile348)_ 8.72174909329729737e+05 +Plasma_triton_thermal_velocity_at_point_349______________________________ (vel_plasma_triton_profile349)_ 8.69802468743061647e+05 +Plasma_triton_thermal_velocity_at_point_350______________________________ (vel_plasma_triton_profile350)_ 8.67424264020095463e+05 +Plasma_triton_thermal_velocity_at_point_351______________________________ (vel_plasma_triton_profile351)_ 8.65040342477390077e+05 +Plasma_triton_thermal_velocity_at_point_352______________________________ (vel_plasma_triton_profile352)_ 8.62650752968025161e+05 +Plasma_triton_thermal_velocity_at_point_353______________________________ (vel_plasma_triton_profile353)_ 8.60255545790129923e+05 +Plasma_triton_thermal_velocity_at_point_354______________________________ (vel_plasma_triton_profile354)_ 8.57854772721951012e+05 +Plasma_triton_thermal_velocity_at_point_355______________________________ (vel_plasma_triton_profile355)_ 8.55448487220920622e+05 +Plasma_triton_thermal_velocity_at_point_356______________________________ (vel_plasma_triton_profile356)_ 8.53036744240206783e+05 +Plasma_triton_thermal_velocity_at_point_357______________________________ (vel_plasma_triton_profile357)_ 8.50619600540809100e+05 +Plasma_triton_thermal_velocity_at_point_358______________________________ (vel_plasma_triton_profile358)_ 8.48197114467967302e+05 +Plasma_triton_thermal_velocity_at_point_359______________________________ (vel_plasma_triton_profile359)_ 8.45769346248853370e+05 +Plasma_triton_thermal_velocity_at_point_360______________________________ (vel_plasma_triton_profile360)_ 8.43336357834084309e+05 +Plasma_triton_thermal_velocity_at_point_361______________________________ (vel_plasma_triton_profile361)_ 8.40898213169724680e+05 +Plasma_triton_thermal_velocity_at_point_362______________________________ (vel_plasma_triton_profile362)_ 8.38454978045733995e+05 +Plasma_triton_thermal_velocity_at_point_363______________________________ (vel_plasma_triton_profile363)_ 8.36006720288014505e+05 +Plasma_triton_thermal_velocity_at_point_364______________________________ (vel_plasma_triton_profile364)_ 8.33553509756451240e+05 +Plasma_triton_thermal_velocity_at_point_365______________________________ (vel_plasma_triton_profile365)_ 8.31095418517132523e+05 +Plasma_triton_thermal_velocity_at_point_366______________________________ (vel_plasma_triton_profile366)_ 8.28632520674572443e+05 +Plasma_triton_thermal_velocity_at_point_367______________________________ (vel_plasma_triton_profile367)_ 8.26164892726439633e+05 +Plasma_triton_thermal_velocity_at_point_368______________________________ (vel_plasma_triton_profile368)_ 8.23692613428109325e+05 +Plasma_triton_thermal_velocity_at_point_369______________________________ (vel_plasma_triton_profile369)_ 8.21215763946512598e+05 +Plasma_triton_thermal_velocity_at_point_370______________________________ (vel_plasma_triton_profile370)_ 8.18734427913301624e+05 +Plasma_triton_thermal_velocity_at_point_371______________________________ (vel_plasma_triton_profile371)_ 8.16248691540231346e+05 +Plasma_triton_thermal_velocity_at_point_372______________________________ (vel_plasma_triton_profile372)_ 8.13758643626416451e+05 +Plasma_triton_thermal_velocity_at_point_373______________________________ (vel_plasma_triton_profile373)_ 8.11264375731881009e+05 +Plasma_triton_thermal_velocity_at_point_374______________________________ (vel_plasma_triton_profile374)_ 8.08765982200213824e+05 +Plasma_triton_thermal_velocity_at_point_375______________________________ (vel_plasma_triton_profile375)_ 8.06263560225069174e+05 +Plasma_triton_thermal_velocity_at_point_376______________________________ (vel_plasma_triton_profile376)_ 8.03757210073192720e+05 +Plasma_triton_thermal_velocity_at_point_377______________________________ (vel_plasma_triton_profile377)_ 8.01247035000400618e+05 +Plasma_triton_thermal_velocity_at_point_378______________________________ (vel_plasma_triton_profile378)_ 7.98733141503366176e+05 +Plasma_triton_thermal_velocity_at_point_379______________________________ (vel_plasma_triton_profile379)_ 7.96215639338152600e+05 +Plasma_triton_thermal_velocity_at_point_380______________________________ (vel_plasma_triton_profile380)_ 7.93694641683754977e+05 +Plasma_triton_thermal_velocity_at_point_381______________________________ (vel_plasma_triton_profile381)_ 7.91170265182720032e+05 +Plasma_triton_thermal_velocity_at_point_382______________________________ (vel_plasma_triton_profile382)_ 7.88642630115457578e+05 +Plasma_triton_thermal_velocity_at_point_383______________________________ (vel_plasma_triton_profile383)_ 7.86111860495456960e+05 +Plasma_triton_thermal_velocity_at_point_384______________________________ (vel_plasma_triton_profile384)_ 7.83578084217326599e+05 +Plasma_triton_thermal_velocity_at_point_385______________________________ (vel_plasma_triton_profile385)_ 7.81041433137471671e+05 +Plasma_triton_thermal_velocity_at_point_386______________________________ (vel_plasma_triton_profile386)_ 7.78502043316576863e+05 +Plasma_triton_thermal_velocity_at_point_387______________________________ (vel_plasma_triton_profile387)_ 7.75960054951792117e+05 +Plasma_triton_thermal_velocity_at_point_388______________________________ (vel_plasma_triton_profile388)_ 7.73415612810714985e+05 +Plasma_triton_thermal_velocity_at_point_389______________________________ (vel_plasma_triton_profile389)_ 7.70868866110854200e+05 +Plasma_triton_thermal_velocity_at_point_390______________________________ (vel_plasma_triton_profile390)_ 7.68319968844682095e+05 +Plasma_triton_thermal_velocity_at_point_391______________________________ (vel_plasma_triton_profile391)_ 7.65769079870026908e+05 +Plasma_triton_thermal_velocity_at_point_392______________________________ (vel_plasma_triton_profile392)_ 7.63216363106749603e+05 +Plasma_triton_thermal_velocity_at_point_393______________________________ (vel_plasma_triton_profile393)_ 7.60661987756909220e+05 +Plasma_triton_thermal_velocity_at_point_394______________________________ (vel_plasma_triton_profile394)_ 7.58106128344932105e+05 +Plasma_triton_thermal_velocity_at_point_395______________________________ (vel_plasma_triton_profile395)_ 7.55548965114955092e+05 +Plasma_triton_thermal_velocity_at_point_396______________________________ (vel_plasma_triton_profile396)_ 7.52990684031841694e+05 +Plasma_triton_thermal_velocity_at_point_397______________________________ (vel_plasma_triton_profile397)_ 7.50431477140927920e+05 +Plasma_triton_thermal_velocity_at_point_398______________________________ (vel_plasma_triton_profile398)_ 7.47871542734678020e+05 +Plasma_triton_thermal_velocity_at_point_399______________________________ (vel_plasma_triton_profile399)_ 7.45311085542456945e+05 +Plasma_triton_thermal_velocity_at_point_400______________________________ (vel_plasma_triton_profile400)_ 7.42750317004381330e+05 +Plasma_triton_thermal_velocity_at_point_401______________________________ (vel_plasma_triton_profile401)_ 7.40189455489673070e+05 +Plasma_triton_thermal_velocity_at_point_402______________________________ (vel_plasma_triton_profile402)_ 7.37628726667781477e+05 +Plasma_triton_thermal_velocity_at_point_403______________________________ (vel_plasma_triton_profile403)_ 7.35068363615112961e+05 +Plasma_triton_thermal_velocity_at_point_404______________________________ (vel_plasma_triton_profile404)_ 7.32508607182077598e+05 +Plasma_triton_thermal_velocity_at_point_405______________________________ (vel_plasma_triton_profile405)_ 7.29949706339692697e+05 +Plasma_triton_thermal_velocity_at_point_406______________________________ (vel_plasma_triton_profile406)_ 7.27391918388540391e+05 +Plasma_triton_thermal_velocity_at_point_407______________________________ (vel_plasma_triton_profile407)_ 7.24835509315664764e+05 +Plasma_triton_thermal_velocity_at_point_408______________________________ (vel_plasma_triton_profile408)_ 7.22280754192440072e+05 +Plasma_triton_thermal_velocity_at_point_409______________________________ (vel_plasma_triton_profile409)_ 7.19727937482593115e+05 +Plasma_triton_thermal_velocity_at_point_410______________________________ (vel_plasma_triton_profile410)_ 7.17177353445829591e+05 +Plasma_triton_thermal_velocity_at_point_411______________________________ (vel_plasma_triton_profile411)_ 7.14629306450802018e+05 +Plasma_triton_thermal_velocity_at_point_412______________________________ (vel_plasma_triton_profile412)_ 7.12084111524280161e+05 +Plasma_triton_thermal_velocity_at_point_413______________________________ (vel_plasma_triton_profile413)_ 7.09542094671165221e+05 +Plasma_triton_thermal_velocity_at_point_414______________________________ (vel_plasma_triton_profile414)_ 7.07003593425113591e+05 +Plasma_triton_thermal_velocity_at_point_415______________________________ (vel_plasma_triton_profile415)_ 7.04468957217527903e+05 +Plasma_triton_thermal_velocity_at_point_416______________________________ (vel_plasma_triton_profile416)_ 7.01938548029178288e+05 +Plasma_triton_thermal_velocity_at_point_417______________________________ (vel_plasma_triton_profile417)_ 6.99412740803486085e+05 +Plasma_triton_thermal_velocity_at_point_418______________________________ (vel_plasma_triton_profile418)_ 6.96891924080458703e+05 +Plasma_triton_thermal_velocity_at_point_419______________________________ (vel_plasma_triton_profile419)_ 6.94376500605093315e+05 +Plasma_triton_thermal_velocity_at_point_420______________________________ (vel_plasma_triton_profile420)_ 6.91866887974133948e+05 +Plasma_triton_thermal_velocity_at_point_421______________________________ (vel_plasma_triton_profile421)_ 6.89363519220441696e+05 +Plasma_triton_thermal_velocity_at_point_422______________________________ (vel_plasma_triton_profile422)_ 6.86866843608972500e+05 +Plasma_triton_thermal_velocity_at_point_423______________________________ (vel_plasma_triton_profile423)_ 6.84377327430593781e+05 +Plasma_triton_thermal_velocity_at_point_424______________________________ (vel_plasma_triton_profile424)_ 6.81895454676079331e+05 +Plasma_triton_thermal_velocity_at_point_425______________________________ (vel_plasma_triton_profile425)_ 6.79421728115344653e+05 +Plasma_triton_thermal_velocity_at_point_426______________________________ (vel_plasma_triton_profile426)_ 6.76956669973589829e+05 +Plasma_triton_thermal_velocity_at_point_427______________________________ (vel_plasma_triton_profile427)_ 6.74500823073514737e+05 +Plasma_triton_thermal_velocity_at_point_428______________________________ (vel_plasma_triton_profile428)_ 6.72054751890568295e+05 +Plasma_triton_thermal_velocity_at_point_429______________________________ (vel_plasma_triton_profile429)_ 6.69619043570250156e+05 +Plasma_triton_thermal_velocity_at_point_430______________________________ (vel_plasma_triton_profile430)_ 6.67194309264455922e+05 +Plasma_triton_thermal_velocity_at_point_431______________________________ (vel_plasma_triton_profile431)_ 6.64781185336138471e+05 +Plasma_triton_thermal_velocity_at_point_432______________________________ (vel_plasma_triton_profile432)_ 6.62380334894675179e+05 +Plasma_triton_thermal_velocity_at_point_433______________________________ (vel_plasma_triton_profile433)_ 6.59992449215461151e+05 +Plasma_triton_thermal_velocity_at_point_434______________________________ (vel_plasma_triton_profile434)_ 6.57618249319940805e+05 +Plasma_triton_thermal_velocity_at_point_435______________________________ (vel_plasma_triton_profile435)_ 6.55258488076340640e+05 +Plasma_triton_thermal_velocity_at_point_436______________________________ (vel_plasma_triton_profile436)_ 6.52913951770191779e+05 +Plasma_triton_thermal_velocity_at_point_437______________________________ (vel_plasma_triton_profile437)_ 6.50585462486417615e+05 +Plasma_triton_thermal_velocity_at_point_438______________________________ (vel_plasma_triton_profile438)_ 6.48273880343646277e+05 +Plasma_triton_thermal_velocity_at_point_439______________________________ (vel_plasma_triton_profile439)_ 6.45980106176629546e+05 +Plasma_triton_thermal_velocity_at_point_440______________________________ (vel_plasma_triton_profile440)_ 6.43705084264036966e+05 +Plasma_triton_thermal_velocity_at_point_441______________________________ (vel_plasma_triton_profile441)_ 6.41449805441370467e+05 +Plasma_triton_thermal_velocity_at_point_442______________________________ (vel_plasma_triton_profile442)_ 6.39215310682514450e+05 +Plasma_triton_thermal_velocity_at_point_443______________________________ (vel_plasma_triton_profile443)_ 6.37002694960908615e+05 +Plasma_triton_thermal_velocity_at_point_444______________________________ (vel_plasma_triton_profile444)_ 6.34813111596046947e+05 +Plasma_triton_thermal_velocity_at_point_445______________________________ (vel_plasma_triton_profile445)_ 6.32647777177542099e+05 +Plasma_triton_thermal_velocity_at_point_446______________________________ (vel_plasma_triton_profile446)_ 6.30507977025864064e+05 +Plasma_triton_thermal_velocity_at_point_447______________________________ (vel_plasma_triton_profile447)_ 6.28395071733906865e+05 +Plasma_triton_thermal_velocity_at_point_448______________________________ (vel_plasma_triton_profile448)_ 6.26310504111826536e+05 +Plasma_triton_thermal_velocity_at_point_449______________________________ (vel_plasma_triton_profile449)_ 6.24255807755445829e+05 +Plasma_triton_thermal_velocity_at_point_450______________________________ (vel_plasma_triton_profile450)_ 6.22232616596227395e+05 +Plasma_triton_thermal_velocity_at_point_451______________________________ (vel_plasma_triton_profile451)_ 6.20242676218395936e+05 +Plasma_triton_thermal_velocity_at_point_452______________________________ (vel_plasma_triton_profile452)_ 6.18287857253091759e+05 +Plasma_triton_thermal_velocity_at_point_453______________________________ (vel_plasma_triton_profile453)_ 6.16370170894901617e+05 +Plasma_triton_thermal_velocity_at_point_454______________________________ (vel_plasma_triton_profile454)_ 6.14491788334485376e+05 +Plasma_triton_thermal_velocity_at_point_455______________________________ (vel_plasma_triton_profile455)_ 6.12655063452792354e+05 +Plasma_triton_thermal_velocity_at_point_456______________________________ (vel_plasma_triton_profile456)_ 6.10862561279921792e+05 +Plasma_triton_thermal_velocity_at_point_457______________________________ (vel_plasma_triton_profile457)_ 6.09117093218073598e+05 +Plasma_triton_thermal_velocity_at_point_458______________________________ (vel_plasma_triton_profile458)_ 6.07421761721440358e+05 +Plasma_triton_thermal_velocity_at_point_459______________________________ (vel_plasma_triton_profile459)_ 6.05780017684214981e+05 +Plasma_triton_thermal_velocity_at_point_460______________________________ (vel_plasma_triton_profile460)_ 6.04195735914044664e+05 +Plasma_triton_thermal_velocity_at_point_461______________________________ (vel_plasma_triton_profile461)_ 6.02673316868650843e+05 +Plasma_triton_thermal_velocity_at_point_462______________________________ (vel_plasma_triton_profile462)_ 6.01217827213060344e+05 +Plasma_triton_thermal_velocity_at_point_463______________________________ (vel_plasma_triton_profile463)_ 5.99835201485195546e+05 +Plasma_triton_thermal_velocity_at_point_464______________________________ (vel_plasma_triton_profile464)_ 5.98532543828896945e+05 +Plasma_triton_thermal_velocity_at_point_465______________________________ (vel_plasma_triton_profile465)_ 5.97318603486110573e+05 +Plasma_triton_thermal_velocity_at_point_466______________________________ (vel_plasma_triton_profile466)_ 5.96204581214881735e+05 +Plasma_triton_thermal_velocity_at_point_467______________________________ (vel_plasma_triton_profile467)_ 5.95205637610219186e+05 +Plasma_triton_thermal_velocity_at_point_468______________________________ (vel_plasma_triton_profile468)_ 5.94344167960023042e+05 +Plasma_triton_thermal_velocity_at_point_469______________________________ (vel_plasma_triton_profile469)_ 5.93659027348720352e+05 Plasma_triton_thermal_velocity_at_point_470______________________________ (vel_plasma_triton_profile470)_ 5.93262140923878527e+05 Plasma_triton_thermal_velocity_at_point_471______________________________ (vel_plasma_triton_profile471)_ 5.83473487588352757e+05 Plasma_triton_thermal_velocity_at_point_472______________________________ (vel_plasma_triton_profile472)_ 5.73517786453278386e+05 @@ -20235,477 +20233,477 @@ Plasma_triton_thermal_velocity_at_point_497______________________________ (vel_p Plasma_triton_thermal_velocity_at_point_498______________________________ (vel_plasma_triton_profile498)_ 1.71571358569546166e+05 Plasma_triton_thermal_velocity_at_point_499______________________________ (vel_plasma_triton_profile499)_ 1.33858178501936316e+05 Plasma_triton_thermal_velocity_at_point_500______________________________ (vel_plasma_triton_profile500)_ 7.99955661718523770e+04 -Volume_averaged_alpha_thermal_velocity_(m/s)_____________________________ (vel_plasma_alpha_thermal_vol_avg)_ 7.81809220324956696e+05 -Plasma_alpha_thermal_velocity_at_point_0_________________________________ (vel_plasma_alpha_thermal_profile0)_ 1.12562536646250030e+06 -Plasma_alpha_thermal_velocity_at_point_1_________________________________ (vel_plasma_alpha_thermal_profile1)_ 1.12562244550250703e+06 -Plasma_alpha_thermal_velocity_at_point_2_________________________________ (vel_plasma_alpha_thermal_profile2)_ 1.12561368261250644e+06 -Plasma_alpha_thermal_velocity_at_point_3_________________________________ (vel_plasma_alpha_thermal_profile3)_ 1.12559907777573355e+06 -Plasma_alpha_thermal_velocity_at_point_4_________________________________ (vel_plasma_alpha_thermal_profile4)_ 1.12557863095094659e+06 -Plasma_alpha_thermal_velocity_at_point_5_________________________________ (vel_plasma_alpha_thermal_profile5)_ 1.12555234204139770e+06 -Plasma_alpha_thermal_velocity_at_point_6_________________________________ (vel_plasma_alpha_thermal_profile6)_ 1.12552021095687803e+06 -Plasma_alpha_thermal_velocity_at_point_7_________________________________ (vel_plasma_alpha_thermal_profile7)_ 1.12548223763587954e+06 -Plasma_alpha_thermal_velocity_at_point_8_________________________________ (vel_plasma_alpha_thermal_profile8)_ 1.12543842191260564e+06 -Plasma_alpha_thermal_velocity_at_point_9_________________________________ (vel_plasma_alpha_thermal_profile9)_ 1.12538876363664051e+06 -Plasma_alpha_thermal_velocity_at_point_10________________________________ (vel_plasma_alpha_thermal_profile10)_ 1.12533326267737849e+06 -Plasma_alpha_thermal_velocity_at_point_11________________________________ (vel_plasma_alpha_thermal_profile11)_ 1.12527191880874662e+06 -Plasma_alpha_thermal_velocity_at_point_12________________________________ (vel_plasma_alpha_thermal_profile12)_ 1.12520473184661963e+06 -Plasma_alpha_thermal_velocity_at_point_13________________________________ (vel_plasma_alpha_thermal_profile13)_ 1.12513170156900864e+06 -Plasma_alpha_thermal_velocity_at_point_14________________________________ (vel_plasma_alpha_thermal_profile14)_ 1.12505282770716585e+06 -Plasma_alpha_thermal_velocity_at_point_15________________________________ (vel_plasma_alpha_thermal_profile15)_ 1.12496811003425601e+06 -Plasma_alpha_thermal_velocity_at_point_16________________________________ (vel_plasma_alpha_thermal_profile16)_ 1.12487754823230021e+06 -Plasma_alpha_thermal_velocity_at_point_17________________________________ (vel_plasma_alpha_thermal_profile17)_ 1.12478114202519460e+06 -Plasma_alpha_thermal_velocity_at_point_18________________________________ (vel_plasma_alpha_thermal_profile18)_ 1.12467889107224764e+06 -Plasma_alpha_thermal_velocity_at_point_19________________________________ (vel_plasma_alpha_thermal_profile19)_ 1.12457079503024556e+06 -Plasma_alpha_thermal_velocity_at_point_20________________________________ (vel_plasma_alpha_thermal_profile20)_ 1.12445685356674390e+06 -Plasma_alpha_thermal_velocity_at_point_21________________________________ (vel_plasma_alpha_thermal_profile21)_ 1.12433706627130834e+06 -Plasma_alpha_thermal_velocity_at_point_22________________________________ (vel_plasma_alpha_thermal_profile22)_ 1.12421143274864811e+06 -Plasma_alpha_thermal_velocity_at_point_23________________________________ (vel_plasma_alpha_thermal_profile23)_ 1.12407995257865894e+06 -Plasma_alpha_thermal_velocity_at_point_24________________________________ (vel_plasma_alpha_thermal_profile24)_ 1.12394262532526441e+06 -Plasma_alpha_thermal_velocity_at_point_25________________________________ (vel_plasma_alpha_thermal_profile25)_ 1.12379945053194533e+06 -Plasma_alpha_thermal_velocity_at_point_26________________________________ (vel_plasma_alpha_thermal_profile26)_ 1.12365042771726288e+06 -Plasma_alpha_thermal_velocity_at_point_27________________________________ (vel_plasma_alpha_thermal_profile27)_ 1.12349555637925840e+06 -Plasma_alpha_thermal_velocity_at_point_28________________________________ (vel_plasma_alpha_thermal_profile28)_ 1.12333483599541313e+06 -Plasma_alpha_thermal_velocity_at_point_29________________________________ (vel_plasma_alpha_thermal_profile29)_ 1.12316826604037639e+06 -Plasma_alpha_thermal_velocity_at_point_30________________________________ (vel_plasma_alpha_thermal_profile30)_ 1.12299584598149150e+06 -Plasma_alpha_thermal_velocity_at_point_31________________________________ (vel_plasma_alpha_thermal_profile31)_ 1.12281757518545329e+06 -Plasma_alpha_thermal_velocity_at_point_32________________________________ (vel_plasma_alpha_thermal_profile32)_ 1.12263345310929324e+06 -Plasma_alpha_thermal_velocity_at_point_33________________________________ (vel_plasma_alpha_thermal_profile33)_ 1.12244347909151507e+06 -Plasma_alpha_thermal_velocity_at_point_34________________________________ (vel_plasma_alpha_thermal_profile34)_ 1.12224765256090835e+06 -Plasma_alpha_thermal_velocity_at_point_35________________________________ (vel_plasma_alpha_thermal_profile35)_ 1.12204597278759372e+06 -Plasma_alpha_thermal_velocity_at_point_36________________________________ (vel_plasma_alpha_thermal_profile36)_ 1.12183843917191867e+06 -Plasma_alpha_thermal_velocity_at_point_37________________________________ (vel_plasma_alpha_thermal_profile37)_ 1.12162505097320955e+06 -Plasma_alpha_thermal_velocity_at_point_38________________________________ (vel_plasma_alpha_thermal_profile38)_ 1.12140580749200890e+06 -Plasma_alpha_thermal_velocity_at_point_39________________________________ (vel_plasma_alpha_thermal_profile39)_ 1.12118070799888182e+06 -Plasma_alpha_thermal_velocity_at_point_40________________________________ (vel_plasma_alpha_thermal_profile40)_ 1.12094975175215025e+06 -Plasma_alpha_thermal_velocity_at_point_41________________________________ (vel_plasma_alpha_thermal_profile41)_ 1.12071293796222936e+06 -Plasma_alpha_thermal_velocity_at_point_42________________________________ (vel_plasma_alpha_thermal_profile42)_ 1.12047026584942103e+06 -Plasma_alpha_thermal_velocity_at_point_43________________________________ (vel_plasma_alpha_thermal_profile43)_ 1.12022173462606966e+06 -Plasma_alpha_thermal_velocity_at_point_44________________________________ (vel_plasma_alpha_thermal_profile44)_ 1.11996734341632691e+06 -Plasma_alpha_thermal_velocity_at_point_45________________________________ (vel_plasma_alpha_thermal_profile45)_ 1.11970709144314867e+06 -Plasma_alpha_thermal_velocity_at_point_46________________________________ (vel_plasma_alpha_thermal_profile46)_ 1.11944097776987427e+06 -Plasma_alpha_thermal_velocity_at_point_47________________________________ (vel_plasma_alpha_thermal_profile47)_ 1.11916900154963066e+06 -Plasma_alpha_thermal_velocity_at_point_48________________________________ (vel_plasma_alpha_thermal_profile48)_ 1.11889116187825031e+06 -Plasma_alpha_thermal_velocity_at_point_49________________________________ (vel_plasma_alpha_thermal_profile49)_ 1.11860745780753298e+06 -Plasma_alpha_thermal_velocity_at_point_50________________________________ (vel_plasma_alpha_thermal_profile50)_ 1.11831788841652335e+06 -Plasma_alpha_thermal_velocity_at_point_51________________________________ (vel_plasma_alpha_thermal_profile51)_ 1.11802245273563312e+06 -Plasma_alpha_thermal_velocity_at_point_52________________________________ (vel_plasma_alpha_thermal_profile52)_ 1.11772114978670306e+06 -Plasma_alpha_thermal_velocity_at_point_53________________________________ (vel_plasma_alpha_thermal_profile53)_ 1.11741397855614801e+06 -Plasma_alpha_thermal_velocity_at_point_54________________________________ (vel_plasma_alpha_thermal_profile54)_ 1.11710093805291830e+06 -Plasma_alpha_thermal_velocity_at_point_55________________________________ (vel_plasma_alpha_thermal_profile55)_ 1.11678202720125904e+06 -Plasma_alpha_thermal_velocity_at_point_56________________________________ (vel_plasma_alpha_thermal_profile56)_ 1.11645724497012747e+06 -Plasma_alpha_thermal_velocity_at_point_57________________________________ (vel_plasma_alpha_thermal_profile57)_ 1.11612659027039306e+06 -Plasma_alpha_thermal_velocity_at_point_58________________________________ (vel_plasma_alpha_thermal_profile58)_ 1.11579006200835155e+06 -Plasma_alpha_thermal_velocity_at_point_59________________________________ (vel_plasma_alpha_thermal_profile59)_ 1.11544765906329616e+06 -Plasma_alpha_thermal_velocity_at_point_60________________________________ (vel_plasma_alpha_thermal_profile60)_ 1.11509938030531467e+06 -Plasma_alpha_thermal_velocity_at_point_61________________________________ (vel_plasma_alpha_thermal_profile61)_ 1.11474522459521727e+06 -Plasma_alpha_thermal_velocity_at_point_62________________________________ (vel_plasma_alpha_thermal_profile62)_ 1.11438519073968963e+06 -Plasma_alpha_thermal_velocity_at_point_63________________________________ (vel_plasma_alpha_thermal_profile63)_ 1.11401927755384403e+06 -Plasma_alpha_thermal_velocity_at_point_64________________________________ (vel_plasma_alpha_thermal_profile64)_ 1.11364748381189024e+06 -Plasma_alpha_thermal_velocity_at_point_65________________________________ (vel_plasma_alpha_thermal_profile65)_ 1.11326980831870763e+06 -Plasma_alpha_thermal_velocity_at_point_66________________________________ (vel_plasma_alpha_thermal_profile66)_ 1.11288624982017209e+06 -Plasma_alpha_thermal_velocity_at_point_67________________________________ (vel_plasma_alpha_thermal_profile67)_ 1.11249680702092848e+06 -Plasma_alpha_thermal_velocity_at_point_68________________________________ (vel_plasma_alpha_thermal_profile68)_ 1.11210147864705813e+06 -Plasma_alpha_thermal_velocity_at_point_69________________________________ (vel_plasma_alpha_thermal_profile69)_ 1.11170026342360862e+06 -Plasma_alpha_thermal_velocity_at_point_70________________________________ (vel_plasma_alpha_thermal_profile70)_ 1.11129315997575736e+06 -Plasma_alpha_thermal_velocity_at_point_71________________________________ (vel_plasma_alpha_thermal_profile71)_ 1.11088016700820299e+06 -Plasma_alpha_thermal_velocity_at_point_72________________________________ (vel_plasma_alpha_thermal_profile72)_ 1.11046128312553000e+06 -Plasma_alpha_thermal_velocity_at_point_73________________________________ (vel_plasma_alpha_thermal_profile73)_ 1.11003650697577326e+06 -Plasma_alpha_thermal_velocity_at_point_74________________________________ (vel_plasma_alpha_thermal_profile74)_ 1.10960583714251756e+06 -Plasma_alpha_thermal_velocity_at_point_75________________________________ (vel_plasma_alpha_thermal_profile75)_ 1.10916927221666835e+06 -Plasma_alpha_thermal_velocity_at_point_76________________________________ (vel_plasma_alpha_thermal_profile76)_ 1.10872681076039141e+06 -Plasma_alpha_thermal_velocity_at_point_77________________________________ (vel_plasma_alpha_thermal_profile77)_ 1.10827845132498699e+06 -Plasma_alpha_thermal_velocity_at_point_78________________________________ (vel_plasma_alpha_thermal_profile78)_ 1.10782419242376951e+06 -Plasma_alpha_thermal_velocity_at_point_79________________________________ (vel_plasma_alpha_thermal_profile79)_ 1.10736403256795532e+06 -Plasma_alpha_thermal_velocity_at_point_80________________________________ (vel_plasma_alpha_thermal_profile80)_ 1.10689797028911440e+06 -Plasma_alpha_thermal_velocity_at_point_81________________________________ (vel_plasma_alpha_thermal_profile81)_ 1.10642600399033120e+06 -Plasma_alpha_thermal_velocity_at_point_82________________________________ (vel_plasma_alpha_thermal_profile82)_ 1.10594813216689532e+06 -Plasma_alpha_thermal_velocity_at_point_83________________________________ (vel_plasma_alpha_thermal_profile83)_ 1.10546435327102360e+06 -Plasma_alpha_thermal_velocity_at_point_84________________________________ (vel_plasma_alpha_thermal_profile84)_ 1.10497466568459431e+06 -Plasma_alpha_thermal_velocity_at_point_85________________________________ (vel_plasma_alpha_thermal_profile85)_ 1.10447906780924834e+06 -Plasma_alpha_thermal_velocity_at_point_86________________________________ (vel_plasma_alpha_thermal_profile86)_ 1.10397755804827204e+06 -Plasma_alpha_thermal_velocity_at_point_87________________________________ (vel_plasma_alpha_thermal_profile87)_ 1.10347013476582314e+06 -Plasma_alpha_thermal_velocity_at_point_88________________________________ (vel_plasma_alpha_thermal_profile88)_ 1.10295679627318378e+06 -Plasma_alpha_thermal_velocity_at_point_89________________________________ (vel_plasma_alpha_thermal_profile89)_ 1.10243754091905872e+06 -Plasma_alpha_thermal_velocity_at_point_90________________________________ (vel_plasma_alpha_thermal_profile90)_ 1.10191236701713176e+06 -Plasma_alpha_thermal_velocity_at_point_91________________________________ (vel_plasma_alpha_thermal_profile91)_ 1.10138127285042102e+06 -Plasma_alpha_thermal_velocity_at_point_92________________________________ (vel_plasma_alpha_thermal_profile92)_ 1.10084425667111459e+06 -Plasma_alpha_thermal_velocity_at_point_93________________________________ (vel_plasma_alpha_thermal_profile93)_ 1.10030131677748519e+06 -Plasma_alpha_thermal_velocity_at_point_94________________________________ (vel_plasma_alpha_thermal_profile94)_ 1.09975245136874053e+06 -Plasma_alpha_thermal_velocity_at_point_95________________________________ (vel_plasma_alpha_thermal_profile95)_ 1.09919765869900235e+06 -Plasma_alpha_thermal_velocity_at_point_96________________________________ (vel_plasma_alpha_thermal_profile96)_ 1.09863693693657382e+06 -Plasma_alpha_thermal_velocity_at_point_97________________________________ (vel_plasma_alpha_thermal_profile97)_ 1.09807028427721187e+06 -Plasma_alpha_thermal_velocity_at_point_98________________________________ (vel_plasma_alpha_thermal_profile98)_ 1.09749769889863976e+06 -Plasma_alpha_thermal_velocity_at_point_99________________________________ (vel_plasma_alpha_thermal_profile99)_ 1.09691917892856523e+06 -Plasma_alpha_thermal_velocity_at_point_100_______________________________ (vel_plasma_alpha_thermal_profile100)_ 1.09633472253091144e+06 -Plasma_alpha_thermal_velocity_at_point_101_______________________________ (vel_plasma_alpha_thermal_profile101)_ 1.09574432778287772e+06 -Plasma_alpha_thermal_velocity_at_point_102_______________________________ (vel_plasma_alpha_thermal_profile102)_ 1.09514799277938413e+06 -Plasma_alpha_thermal_velocity_at_point_103_______________________________ (vel_plasma_alpha_thermal_profile103)_ 1.09454571565124788e+06 -Plasma_alpha_thermal_velocity_at_point_104_______________________________ (vel_plasma_alpha_thermal_profile104)_ 1.09393749441011669e+06 -Plasma_alpha_thermal_velocity_at_point_105_______________________________ (vel_plasma_alpha_thermal_profile105)_ 1.09332332711230987e+06 -Plasma_alpha_thermal_velocity_at_point_106_______________________________ (vel_plasma_alpha_thermal_profile106)_ 1.09270321179947932e+06 -Plasma_alpha_thermal_velocity_at_point_107_______________________________ (vel_plasma_alpha_thermal_profile107)_ 1.09207714647562173e+06 -Plasma_alpha_thermal_velocity_at_point_108_______________________________ (vel_plasma_alpha_thermal_profile108)_ 1.09144512913428759e+06 -Plasma_alpha_thermal_velocity_at_point_109_______________________________ (vel_plasma_alpha_thermal_profile109)_ 1.09080715773557359e+06 -Plasma_alpha_thermal_velocity_at_point_110_______________________________ (vel_plasma_alpha_thermal_profile110)_ 1.09016323027456109e+06 -Plasma_alpha_thermal_velocity_at_point_111_______________________________ (vel_plasma_alpha_thermal_profile111)_ 1.08951334468056727e+06 -Plasma_alpha_thermal_velocity_at_point_112_______________________________ (vel_plasma_alpha_thermal_profile112)_ 1.08885749888098380e+06 -Plasma_alpha_thermal_velocity_at_point_113_______________________________ (vel_plasma_alpha_thermal_profile113)_ 1.08819569077364961e+06 -Plasma_alpha_thermal_velocity_at_point_114_______________________________ (vel_plasma_alpha_thermal_profile114)_ 1.08752791827710951e+06 -Plasma_alpha_thermal_velocity_at_point_115_______________________________ (vel_plasma_alpha_thermal_profile115)_ 1.08685417922957474e+06 -Plasma_alpha_thermal_velocity_at_point_116_______________________________ (vel_plasma_alpha_thermal_profile116)_ 1.08617447154932143e+06 -Plasma_alpha_thermal_velocity_at_point_117_______________________________ (vel_plasma_alpha_thermal_profile117)_ 1.08548879303259193e+06 -Plasma_alpha_thermal_velocity_at_point_118_______________________________ (vel_plasma_alpha_thermal_profile118)_ 1.08479714154625637e+06 -Plasma_alpha_thermal_velocity_at_point_119_______________________________ (vel_plasma_alpha_thermal_profile119)_ 1.08409951488525164e+06 -Plasma_alpha_thermal_velocity_at_point_120_______________________________ (vel_plasma_alpha_thermal_profile120)_ 1.08339591085512238e+06 -Plasma_alpha_thermal_velocity_at_point_121_______________________________ (vel_plasma_alpha_thermal_profile121)_ 1.08268632723506982e+06 -Plasma_alpha_thermal_velocity_at_point_122_______________________________ (vel_plasma_alpha_thermal_profile122)_ 1.08197076177313155e+06 -Plasma_alpha_thermal_velocity_at_point_123_______________________________ (vel_plasma_alpha_thermal_profile123)_ 1.08124921226439672e+06 -Plasma_alpha_thermal_velocity_at_point_124_______________________________ (vel_plasma_alpha_thermal_profile124)_ 1.08052167640790227e+06 -Plasma_alpha_thermal_velocity_at_point_125_______________________________ (vel_plasma_alpha_thermal_profile125)_ 1.07978815192631725e+06 -Plasma_alpha_thermal_velocity_at_point_126_______________________________ (vel_plasma_alpha_thermal_profile126)_ 1.07904863656127173e+06 -Plasma_alpha_thermal_velocity_at_point_127_______________________________ (vel_plasma_alpha_thermal_profile127)_ 1.07830312797150598e+06 -Plasma_alpha_thermal_velocity_at_point_128_______________________________ (vel_plasma_alpha_thermal_profile128)_ 1.07755162382505718e+06 -Plasma_alpha_thermal_velocity_at_point_129_______________________________ (vel_plasma_alpha_thermal_profile129)_ 1.07679412179916119e+06 -Plasma_alpha_thermal_velocity_at_point_130_______________________________ (vel_plasma_alpha_thermal_profile130)_ 1.07603061955697252e+06 -Plasma_alpha_thermal_velocity_at_point_131_______________________________ (vel_plasma_alpha_thermal_profile131)_ 1.07526111470098537e+06 -Plasma_alpha_thermal_velocity_at_point_132_______________________________ (vel_plasma_alpha_thermal_profile132)_ 1.07448560487483628e+06 -Plasma_alpha_thermal_velocity_at_point_133_______________________________ (vel_plasma_alpha_thermal_profile133)_ 1.07370408765644557e+06 -Plasma_alpha_thermal_velocity_at_point_134_______________________________ (vel_plasma_alpha_thermal_profile134)_ 1.07291656064599729e+06 -Plasma_alpha_thermal_velocity_at_point_135_______________________________ (vel_plasma_alpha_thermal_profile135)_ 1.07212302142865607e+06 -Plasma_alpha_thermal_velocity_at_point_136_______________________________ (vel_plasma_alpha_thermal_profile136)_ 1.07132346755575016e+06 -Plasma_alpha_thermal_velocity_at_point_137_______________________________ (vel_plasma_alpha_thermal_profile137)_ 1.07051789655848849e+06 -Plasma_alpha_thermal_velocity_at_point_138_______________________________ (vel_plasma_alpha_thermal_profile138)_ 1.06970630602703569e+06 -Plasma_alpha_thermal_velocity_at_point_139_______________________________ (vel_plasma_alpha_thermal_profile139)_ 1.06888869341456005e+06 -Plasma_alpha_thermal_velocity_at_point_140_______________________________ (vel_plasma_alpha_thermal_profile140)_ 1.06806505626545707e+06 -Plasma_alpha_thermal_velocity_at_point_141_______________________________ (vel_plasma_alpha_thermal_profile141)_ 1.06723539207064104e+06 -Plasma_alpha_thermal_velocity_at_point_142_______________________________ (vel_plasma_alpha_thermal_profile142)_ 1.06639969832333899e+06 -Plasma_alpha_thermal_velocity_at_point_143_______________________________ (vel_plasma_alpha_thermal_profile143)_ 1.06555797247213568e+06 -Plasma_alpha_thermal_velocity_at_point_144_______________________________ (vel_plasma_alpha_thermal_profile144)_ 1.06471021200031438e+06 -Plasma_alpha_thermal_velocity_at_point_145_______________________________ (vel_plasma_alpha_thermal_profile145)_ 1.06385641432736861e+06 -Plasma_alpha_thermal_velocity_at_point_146_______________________________ (vel_plasma_alpha_thermal_profile146)_ 1.06299657688369602e+06 -Plasma_alpha_thermal_velocity_at_point_147_______________________________ (vel_plasma_alpha_thermal_profile147)_ 1.06213069711049669e+06 -Plasma_alpha_thermal_velocity_at_point_148_______________________________ (vel_plasma_alpha_thermal_profile148)_ 1.06125877241736068e+06 -Plasma_alpha_thermal_velocity_at_point_149_______________________________ (vel_plasma_alpha_thermal_profile149)_ 1.06038080020081182e+06 -Plasma_alpha_thermal_velocity_at_point_150_______________________________ (vel_plasma_alpha_thermal_profile150)_ 1.05949677782997768e+06 -Plasma_alpha_thermal_velocity_at_point_151_______________________________ (vel_plasma_alpha_thermal_profile151)_ 1.05860670269816858e+06 -Plasma_alpha_thermal_velocity_at_point_152_______________________________ (vel_plasma_alpha_thermal_profile152)_ 1.05771057215207582e+06 -Plasma_alpha_thermal_velocity_at_point_153_______________________________ (vel_plasma_alpha_thermal_profile153)_ 1.05680838356695767e+06 -Plasma_alpha_thermal_velocity_at_point_154_______________________________ (vel_plasma_alpha_thermal_profile154)_ 1.05590013428518525e+06 -Plasma_alpha_thermal_velocity_at_point_155_______________________________ (vel_plasma_alpha_thermal_profile155)_ 1.05498582163959555e+06 -Plasma_alpha_thermal_velocity_at_point_156_______________________________ (vel_plasma_alpha_thermal_profile156)_ 1.05406544294382934e+06 -Plasma_alpha_thermal_velocity_at_point_157_______________________________ (vel_plasma_alpha_thermal_profile157)_ 1.05313899551104358e+06 -Plasma_alpha_thermal_velocity_at_point_158_______________________________ (vel_plasma_alpha_thermal_profile158)_ 1.05220647665375401e+06 -Plasma_alpha_thermal_velocity_at_point_159_______________________________ (vel_plasma_alpha_thermal_profile159)_ 1.05126788368842262e+06 -Plasma_alpha_thermal_velocity_at_point_160_______________________________ (vel_plasma_alpha_thermal_profile160)_ 1.05032321386406966e+06 -Plasma_alpha_thermal_velocity_at_point_161_______________________________ (vel_plasma_alpha_thermal_profile161)_ 1.04937246447591716e+06 -Plasma_alpha_thermal_velocity_at_point_162_______________________________ (vel_plasma_alpha_thermal_profile162)_ 1.04841563280357723e+06 -Plasma_alpha_thermal_velocity_at_point_163_______________________________ (vel_plasma_alpha_thermal_profile163)_ 1.04745271608700778e+06 -Plasma_alpha_thermal_velocity_at_point_164_______________________________ (vel_plasma_alpha_thermal_profile164)_ 1.04648371160721791e+06 -Plasma_alpha_thermal_velocity_at_point_165_______________________________ (vel_plasma_alpha_thermal_profile165)_ 1.04550861659563286e+06 -Plasma_alpha_thermal_velocity_at_point_166_______________________________ (vel_plasma_alpha_thermal_profile166)_ 1.04452742829579464e+06 -Plasma_alpha_thermal_velocity_at_point_167_______________________________ (vel_plasma_alpha_thermal_profile167)_ 1.04354014393935399e+06 -Plasma_alpha_thermal_velocity_at_point_168_______________________________ (vel_plasma_alpha_thermal_profile168)_ 1.04254676075542357e+06 -Plasma_alpha_thermal_velocity_at_point_169_______________________________ (vel_plasma_alpha_thermal_profile169)_ 1.04154727595124301e+06 -Plasma_alpha_thermal_velocity_at_point_170_______________________________ (vel_plasma_alpha_thermal_profile170)_ 1.04054168677424185e+06 -Plasma_alpha_thermal_velocity_at_point_171_______________________________ (vel_plasma_alpha_thermal_profile171)_ 1.03952999038728816e+06 -Plasma_alpha_thermal_velocity_at_point_172_______________________________ (vel_plasma_alpha_thermal_profile172)_ 1.03851218404586229e+06 -Plasma_alpha_thermal_velocity_at_point_173_______________________________ (vel_plasma_alpha_thermal_profile173)_ 1.03748826489156845e+06 -Plasma_alpha_thermal_velocity_at_point_174_______________________________ (vel_plasma_alpha_thermal_profile174)_ 1.03645823018245911e+06 -Plasma_alpha_thermal_velocity_at_point_175_______________________________ (vel_plasma_alpha_thermal_profile175)_ 1.03542207705252839e+06 -Plasma_alpha_thermal_velocity_at_point_176_______________________________ (vel_plasma_alpha_thermal_profile176)_ 1.03437980272314884e+06 -Plasma_alpha_thermal_velocity_at_point_177_______________________________ (vel_plasma_alpha_thermal_profile177)_ 1.03333140437298419e+06 -Plasma_alpha_thermal_velocity_at_point_178_______________________________ (vel_plasma_alpha_thermal_profile178)_ 1.03227687917143852e+06 -Plasma_alpha_thermal_velocity_at_point_179_______________________________ (vel_plasma_alpha_thermal_profile179)_ 1.03121622430746921e+06 -Plasma_alpha_thermal_velocity_at_point_180_______________________________ (vel_plasma_alpha_thermal_profile180)_ 1.03014943695561856e+06 -Plasma_alpha_thermal_velocity_at_point_181_______________________________ (vel_plasma_alpha_thermal_profile181)_ 1.02907651428061840e+06 -Plasma_alpha_thermal_velocity_at_point_182_______________________________ (vel_plasma_alpha_thermal_profile182)_ 1.02799745347114385e+06 -Plasma_alpha_thermal_velocity_at_point_183_______________________________ (vel_plasma_alpha_thermal_profile183)_ 1.02691225169118575e+06 -Plasma_alpha_thermal_velocity_at_point_184_______________________________ (vel_plasma_alpha_thermal_profile184)_ 1.02582090610406920e+06 -Plasma_alpha_thermal_velocity_at_point_185_______________________________ (vel_plasma_alpha_thermal_profile185)_ 1.02472341392583644e+06 -Plasma_alpha_thermal_velocity_at_point_186_______________________________ (vel_plasma_alpha_thermal_profile186)_ 1.02361977227914031e+06 -Plasma_alpha_thermal_velocity_at_point_187_______________________________ (vel_plasma_alpha_thermal_profile187)_ 1.02250997833894915e+06 -Plasma_alpha_thermal_velocity_at_point_188_______________________________ (vel_plasma_alpha_thermal_profile188)_ 1.02139402932288952e+06 -Plasma_alpha_thermal_velocity_at_point_189_______________________________ (vel_plasma_alpha_thermal_profile189)_ 1.02027192237395141e+06 -Plasma_alpha_thermal_velocity_at_point_190_______________________________ (vel_plasma_alpha_thermal_profile190)_ 1.01914365469208208e+06 -Plasma_alpha_thermal_velocity_at_point_191_______________________________ (vel_plasma_alpha_thermal_profile191)_ 1.01800922345591744e+06 -Plasma_alpha_thermal_velocity_at_point_192_______________________________ (vel_plasma_alpha_thermal_profile192)_ 1.01686862583721150e+06 -Plasma_alpha_thermal_velocity_at_point_193_______________________________ (vel_plasma_alpha_thermal_profile193)_ 1.01572185906448110e+06 -Plasma_alpha_thermal_velocity_at_point_194_______________________________ (vel_plasma_alpha_thermal_profile194)_ 1.01456892031497206e+06 -Plasma_alpha_thermal_velocity_at_point_195_______________________________ (vel_plasma_alpha_thermal_profile195)_ 1.01340980680281285e+06 -Plasma_alpha_thermal_velocity_at_point_196_______________________________ (vel_plasma_alpha_thermal_profile196)_ 1.01224451570019475e+06 -Plasma_alpha_thermal_velocity_at_point_197_______________________________ (vel_plasma_alpha_thermal_profile197)_ 1.01107304428499239e+06 -Plasma_alpha_thermal_velocity_at_point_198_______________________________ (vel_plasma_alpha_thermal_profile198)_ 1.00989538971889776e+06 -Plasma_alpha_thermal_velocity_at_point_199_______________________________ (vel_plasma_alpha_thermal_profile199)_ 1.00871154928892525e+06 -Plasma_alpha_thermal_velocity_at_point_200_______________________________ (vel_plasma_alpha_thermal_profile200)_ 1.00752152018514520e+06 -Plasma_alpha_thermal_velocity_at_point_201_______________________________ (vel_plasma_alpha_thermal_profile201)_ 1.00632529970816511e+06 -Plasma_alpha_thermal_velocity_at_point_202_______________________________ (vel_plasma_alpha_thermal_profile202)_ 1.00512288507603540e+06 -Plasma_alpha_thermal_velocity_at_point_203_______________________________ (vel_plasma_alpha_thermal_profile203)_ 1.00391427356770507e+06 -Plasma_alpha_thermal_velocity_at_point_204_______________________________ (vel_plasma_alpha_thermal_profile204)_ 1.00269946250331611e+06 -Plasma_alpha_thermal_velocity_at_point_205_______________________________ (vel_plasma_alpha_thermal_profile205)_ 1.00147844911974319e+06 -Plasma_alpha_thermal_velocity_at_point_206_______________________________ (vel_plasma_alpha_thermal_profile206)_ 1.00025123077940615e+06 -Plasma_alpha_thermal_velocity_at_point_207_______________________________ (vel_plasma_alpha_thermal_profile207)_ 9.99017804771112977e+05 -Plasma_alpha_thermal_velocity_at_point_208_______________________________ (vel_plasma_alpha_thermal_profile208)_ 9.97778168444444193e+05 -Plasma_alpha_thermal_velocity_at_point_209_______________________________ (vel_plasma_alpha_thermal_profile209)_ 9.96532319139873958e+05 -Plasma_alpha_thermal_velocity_at_point_210_______________________________ (vel_plasma_alpha_thermal_profile210)_ 9.95280254243686446e+05 -Plasma_alpha_thermal_velocity_at_point_211_______________________________ (vel_plasma_alpha_thermal_profile211)_ 9.94021971137910266e+05 -Plasma_alpha_thermal_velocity_at_point_212_______________________________ (vel_plasma_alpha_thermal_profile212)_ 9.92757467220227816e+05 -Plasma_alpha_thermal_velocity_at_point_213_______________________________ (vel_plasma_alpha_thermal_profile213)_ 9.91486739919008571e+05 -Plasma_alpha_thermal_velocity_at_point_214_______________________________ (vel_plasma_alpha_thermal_profile214)_ 9.90209786668150336e+05 -Plasma_alpha_thermal_velocity_at_point_215_______________________________ (vel_plasma_alpha_thermal_profile215)_ 9.88926604952358990e+05 -Plasma_alpha_thermal_velocity_at_point_216_______________________________ (vel_plasma_alpha_thermal_profile216)_ 9.87637192221440724e+05 -Plasma_alpha_thermal_velocity_at_point_217_______________________________ (vel_plasma_alpha_thermal_profile217)_ 9.86341546041660360e+05 -Plasma_alpha_thermal_velocity_at_point_218_______________________________ (vel_plasma_alpha_thermal_profile218)_ 9.85039663878560299e+05 -Plasma_alpha_thermal_velocity_at_point_219_______________________________ (vel_plasma_alpha_thermal_profile219)_ 9.83731543329429696e+05 -Plasma_alpha_thermal_velocity_at_point_220_______________________________ (vel_plasma_alpha_thermal_profile220)_ 9.82417181997065316e+05 -Plasma_alpha_thermal_velocity_at_point_221_______________________________ (vel_plasma_alpha_thermal_profile221)_ 9.81096577443889691e+05 -Plasma_alpha_thermal_velocity_at_point_222_______________________________ (vel_plasma_alpha_thermal_profile222)_ 9.79769727349379100e+05 -Plasma_alpha_thermal_velocity_at_point_223_______________________________ (vel_plasma_alpha_thermal_profile223)_ 9.78436629357734811e+05 -Plasma_alpha_thermal_velocity_at_point_224_______________________________ (vel_plasma_alpha_thermal_profile224)_ 9.77097281169401482e+05 -Plasma_alpha_thermal_velocity_at_point_225_______________________________ (vel_plasma_alpha_thermal_profile225)_ 9.75751680531077669e+05 -Plasma_alpha_thermal_velocity_at_point_226_______________________________ (vel_plasma_alpha_thermal_profile226)_ 9.74399825194928213e+05 -Plasma_alpha_thermal_velocity_at_point_227_______________________________ (vel_plasma_alpha_thermal_profile227)_ 9.73041712974877562e+05 -Plasma_alpha_thermal_velocity_at_point_228_______________________________ (vel_plasma_alpha_thermal_profile228)_ 9.71677341659612721e+05 -Plasma_alpha_thermal_velocity_at_point_229_______________________________ (vel_plasma_alpha_thermal_profile229)_ 9.70306709192224545e+05 -Plasma_alpha_thermal_velocity_at_point_230_______________________________ (vel_plasma_alpha_thermal_profile230)_ 9.68929813408560236e+05 -Plasma_alpha_thermal_velocity_at_point_231_______________________________ (vel_plasma_alpha_thermal_profile231)_ 9.67546652304458548e+05 -Plasma_alpha_thermal_velocity_at_point_232_______________________________ (vel_plasma_alpha_thermal_profile232)_ 9.66157223840532009e+05 -Plasma_alpha_thermal_velocity_at_point_233_______________________________ (vel_plasma_alpha_thermal_profile233)_ 9.64761526071066735e+05 -Plasma_alpha_thermal_velocity_at_point_234_______________________________ (vel_plasma_alpha_thermal_profile234)_ 9.63359557051350828e+05 -Plasma_alpha_thermal_velocity_at_point_235_______________________________ (vel_plasma_alpha_thermal_profile235)_ 9.61951314941284247e+05 -Plasma_alpha_thermal_velocity_at_point_236_______________________________ (vel_plasma_alpha_thermal_profile236)_ 9.60536797845005756e+05 -Plasma_alpha_thermal_velocity_at_point_237_______________________________ (vel_plasma_alpha_thermal_profile237)_ 9.59116004049640149e+05 -Plasma_alpha_thermal_velocity_at_point_238_______________________________ (vel_plasma_alpha_thermal_profile238)_ 9.57688931745224632e+05 -Plasma_alpha_thermal_velocity_at_point_239_______________________________ (vel_plasma_alpha_thermal_profile239)_ 9.56255579331689747e+05 -Plasma_alpha_thermal_velocity_at_point_240_______________________________ (vel_plasma_alpha_thermal_profile240)_ 9.54815945117262308e+05 -Plasma_alpha_thermal_velocity_at_point_241_______________________________ (vel_plasma_alpha_thermal_profile241)_ 9.53370027579319896e+05 -Plasma_alpha_thermal_velocity_at_point_242_______________________________ (vel_plasma_alpha_thermal_profile242)_ 9.51917825161167188e+05 -Plasma_alpha_thermal_velocity_at_point_243_______________________________ (vel_plasma_alpha_thermal_profile243)_ 9.50459336434396566e+05 -Plasma_alpha_thermal_velocity_at_point_244_______________________________ (vel_plasma_alpha_thermal_profile244)_ 9.48994559989373898e+05 -Plasma_alpha_thermal_velocity_at_point_245_______________________________ (vel_plasma_alpha_thermal_profile245)_ 9.47523494503738126e+05 -Plasma_alpha_thermal_velocity_at_point_246_______________________________ (vel_plasma_alpha_thermal_profile246)_ 9.46046138684981037e+05 -Plasma_alpha_thermal_velocity_at_point_247_______________________________ (vel_plasma_alpha_thermal_profile247)_ 9.44562491365666967e+05 -Plasma_alpha_thermal_velocity_at_point_248_______________________________ (vel_plasma_alpha_thermal_profile248)_ 9.43072551398529205e+05 -Plasma_alpha_thermal_velocity_at_point_249_______________________________ (vel_plasma_alpha_thermal_profile249)_ 9.41576317746630288e+05 -Plasma_alpha_thermal_velocity_at_point_250_______________________________ (vel_plasma_alpha_thermal_profile250)_ 9.40073789404559415e+05 -Plasma_alpha_thermal_velocity_at_point_251_______________________________ (vel_plasma_alpha_thermal_profile251)_ 9.38564965446457732e+05 -Plasma_alpha_thermal_velocity_at_point_252_______________________________ (vel_plasma_alpha_thermal_profile252)_ 9.37049845063862973e+05 -Plasma_alpha_thermal_velocity_at_point_253_______________________________ (vel_plasma_alpha_thermal_profile253)_ 9.35528427470610128e+05 -Plasma_alpha_thermal_velocity_at_point_254_______________________________ (vel_plasma_alpha_thermal_profile254)_ 9.34000712052524323e+05 -Plasma_alpha_thermal_velocity_at_point_255_______________________________ (vel_plasma_alpha_thermal_profile255)_ 9.32466698176168022e+05 -Plasma_alpha_thermal_velocity_at_point_256_______________________________ (vel_plasma_alpha_thermal_profile256)_ 9.30926385344058392e+05 -Plasma_alpha_thermal_velocity_at_point_257_______________________________ (vel_plasma_alpha_thermal_profile257)_ 9.29379773179651354e+05 -Plasma_alpha_thermal_velocity_at_point_258_______________________________ (vel_plasma_alpha_thermal_profile258)_ 9.27826861358416500e+05 -Plasma_alpha_thermal_velocity_at_point_259_______________________________ (vel_plasma_alpha_thermal_profile259)_ 9.26267649651339394e+05 -Plasma_alpha_thermal_velocity_at_point_260_______________________________ (vel_plasma_alpha_thermal_profile260)_ 9.24702137947288924e+05 -Plasma_alpha_thermal_velocity_at_point_261_______________________________ (vel_plasma_alpha_thermal_profile261)_ 9.23130326210769126e+05 -Plasma_alpha_thermal_velocity_at_point_262_______________________________ (vel_plasma_alpha_thermal_profile262)_ 9.21552214558352600e+05 -Plasma_alpha_thermal_velocity_at_point_263_______________________________ (vel_plasma_alpha_thermal_profile263)_ 9.19967803162371041e+05 -Plasma_alpha_thermal_velocity_at_point_264_______________________________ (vel_plasma_alpha_thermal_profile264)_ 9.18377092300298857e+05 -Plasma_alpha_thermal_velocity_at_point_265_______________________________ (vel_plasma_alpha_thermal_profile265)_ 9.16780082442752668e+05 -Plasma_alpha_thermal_velocity_at_point_266_______________________________ (vel_plasma_alpha_thermal_profile266)_ 9.15176774086205172e+05 -Plasma_alpha_thermal_velocity_at_point_267_______________________________ (vel_plasma_alpha_thermal_profile267)_ 9.13567167928001145e+05 -Plasma_alpha_thermal_velocity_at_point_268_______________________________ (vel_plasma_alpha_thermal_profile268)_ 9.11951264687635237e+05 -Plasma_alpha_thermal_velocity_at_point_269_______________________________ (vel_plasma_alpha_thermal_profile269)_ 9.10329065293335589e+05 -Plasma_alpha_thermal_velocity_at_point_270_______________________________ (vel_plasma_alpha_thermal_profile270)_ 9.08700570790648693e+05 -Plasma_alpha_thermal_velocity_at_point_271_______________________________ (vel_plasma_alpha_thermal_profile271)_ 9.07065782343560364e+05 -Plasma_alpha_thermal_velocity_at_point_272_______________________________ (vel_plasma_alpha_thermal_profile272)_ 9.05424701252172701e+05 -Plasma_alpha_thermal_velocity_at_point_273_______________________________ (vel_plasma_alpha_thermal_profile273)_ 9.03777328987147077e+05 -Plasma_alpha_thermal_velocity_at_point_274_______________________________ (vel_plasma_alpha_thermal_profile274)_ 9.02123667119463673e+05 -Plasma_alpha_thermal_velocity_at_point_275_______________________________ (vel_plasma_alpha_thermal_profile275)_ 9.00463717421178357e+05 -Plasma_alpha_thermal_velocity_at_point_276_______________________________ (vel_plasma_alpha_thermal_profile276)_ 8.98797481750829378e+05 -Plasma_alpha_thermal_velocity_at_point_277_______________________________ (vel_plasma_alpha_thermal_profile277)_ 8.97124962237886502e+05 -Plasma_alpha_thermal_velocity_at_point_278_______________________________ (vel_plasma_alpha_thermal_profile278)_ 8.95446161045842571e+05 -Plasma_alpha_thermal_velocity_at_point_279_______________________________ (vel_plasma_alpha_thermal_profile279)_ 8.93761080584803247e+05 -Plasma_alpha_thermal_velocity_at_point_280_______________________________ (vel_plasma_alpha_thermal_profile280)_ 8.92069723424495081e+05 -Plasma_alpha_thermal_velocity_at_point_281_______________________________ (vel_plasma_alpha_thermal_profile281)_ 8.90372092284749728e+05 -Plasma_alpha_thermal_velocity_at_point_282_______________________________ (vel_plasma_alpha_thermal_profile282)_ 8.88668190110108349e+05 -Plasma_alpha_thermal_velocity_at_point_283_______________________________ (vel_plasma_alpha_thermal_profile283)_ 8.86958020021555596e+05 -Plasma_alpha_thermal_velocity_at_point_284_______________________________ (vel_plasma_alpha_thermal_profile284)_ 8.85241585267716087e+05 -Plasma_alpha_thermal_velocity_at_point_285_______________________________ (vel_plasma_alpha_thermal_profile285)_ 8.83518889401372522e+05 -Plasma_alpha_thermal_velocity_at_point_286_______________________________ (vel_plasma_alpha_thermal_profile286)_ 8.81789936107282410e+05 -Plasma_alpha_thermal_velocity_at_point_287_______________________________ (vel_plasma_alpha_thermal_profile287)_ 8.80054729311444564e+05 -Plasma_alpha_thermal_velocity_at_point_288_______________________________ (vel_plasma_alpha_thermal_profile288)_ 8.78313273087187787e+05 -Plasma_alpha_thermal_velocity_at_point_289_______________________________ (vel_plasma_alpha_thermal_profile289)_ 8.76565571821976802e+05 -Plasma_alpha_thermal_velocity_at_point_290_______________________________ (vel_plasma_alpha_thermal_profile290)_ 8.74811630106791854e+05 -Plasma_alpha_thermal_velocity_at_point_291_______________________________ (vel_plasma_alpha_thermal_profile291)_ 8.73051452692776802e+05 -Plasma_alpha_thermal_velocity_at_point_292_______________________________ (vel_plasma_alpha_thermal_profile292)_ 8.71285044653523946e+05 -Plasma_alpha_thermal_velocity_at_point_293_______________________________ (vel_plasma_alpha_thermal_profile293)_ 8.69512411308371578e+05 -Plasma_alpha_thermal_velocity_at_point_294_______________________________ (vel_plasma_alpha_thermal_profile294)_ 8.67733558127544471e+05 -Plasma_alpha_thermal_velocity_at_point_295_______________________________ (vel_plasma_alpha_thermal_profile295)_ 8.65948490958787035e+05 -Plasma_alpha_thermal_velocity_at_point_296_______________________________ (vel_plasma_alpha_thermal_profile296)_ 8.64157215864241356e+05 -Plasma_alpha_thermal_velocity_at_point_297_______________________________ (vel_plasma_alpha_thermal_profile297)_ 8.62359739163601422e+05 -Plasma_alpha_thermal_velocity_at_point_298_______________________________ (vel_plasma_alpha_thermal_profile298)_ 8.60556067518413998e+05 -Plasma_alpha_thermal_velocity_at_point_299_______________________________ (vel_plasma_alpha_thermal_profile299)_ 8.58746207796703558e+05 -Plasma_alpha_thermal_velocity_at_point_300_______________________________ (vel_plasma_alpha_thermal_profile300)_ 8.56930167238659109e+05 -Plasma_alpha_thermal_velocity_at_point_301_______________________________ (vel_plasma_alpha_thermal_profile301)_ 8.55107953315234743e+05 -Plasma_alpha_thermal_velocity_at_point_302_______________________________ (vel_plasma_alpha_thermal_profile302)_ 8.53279573877319694e+05 -Plasma_alpha_thermal_velocity_at_point_303_______________________________ (vel_plasma_alpha_thermal_profile303)_ 8.51445037084199488e+05 -Plasma_alpha_thermal_velocity_at_point_304_______________________________ (vel_plasma_alpha_thermal_profile304)_ 8.49604351389848627e+05 -Plasma_alpha_thermal_velocity_at_point_305_______________________________ (vel_plasma_alpha_thermal_profile305)_ 8.47757525617352920e+05 -Plasma_alpha_thermal_velocity_at_point_306_______________________________ (vel_plasma_alpha_thermal_profile306)_ 8.45904568951771478e+05 -Plasma_alpha_thermal_velocity_at_point_307_______________________________ (vel_plasma_alpha_thermal_profile307)_ 8.44045490873832256e+05 -Plasma_alpha_thermal_velocity_at_point_308_______________________________ (vel_plasma_alpha_thermal_profile308)_ 8.42180301288279239e+05 -Plasma_alpha_thermal_velocity_at_point_309_______________________________ (vel_plasma_alpha_thermal_profile309)_ 8.40309010499597876e+05 -Plasma_alpha_thermal_velocity_at_point_310_______________________________ (vel_plasma_alpha_thermal_profile310)_ 8.38431629163656849e+05 -Plasma_alpha_thermal_velocity_at_point_311_______________________________ (vel_plasma_alpha_thermal_profile311)_ 8.36548168304343009e+05 -Plasma_alpha_thermal_velocity_at_point_312_______________________________ (vel_plasma_alpha_thermal_profile312)_ 8.34658639408164192e+05 -Plasma_alpha_thermal_velocity_at_point_313_______________________________ (vel_plasma_alpha_thermal_profile313)_ 8.32763054382391507e+05 -Plasma_alpha_thermal_velocity_at_point_314_______________________________ (vel_plasma_alpha_thermal_profile314)_ 8.30861425572721055e+05 -Plasma_alpha_thermal_velocity_at_point_315_______________________________ (vel_plasma_alpha_thermal_profile315)_ 8.28953765690947068e+05 -Plasma_alpha_thermal_velocity_at_point_316_______________________________ (vel_plasma_alpha_thermal_profile316)_ 8.27040088013137458e+05 -Plasma_alpha_thermal_velocity_at_point_317_______________________________ (vel_plasma_alpha_thermal_profile317)_ 8.25120406242010416e+05 -Plasma_alpha_thermal_velocity_at_point_318_______________________________ (vel_plasma_alpha_thermal_profile318)_ 8.23194734549257439e+05 -Plasma_alpha_thermal_velocity_at_point_319_______________________________ (vel_plasma_alpha_thermal_profile319)_ 8.21263087618509424e+05 -Plasma_alpha_thermal_velocity_at_point_320_______________________________ (vel_plasma_alpha_thermal_profile320)_ 8.19325480670691351e+05 -Plasma_alpha_thermal_velocity_at_point_321_______________________________ (vel_plasma_alpha_thermal_profile321)_ 8.17381929398238659e+05 -Plasma_alpha_thermal_velocity_at_point_322_______________________________ (vel_plasma_alpha_thermal_profile322)_ 8.15432450057500391e+05 -Plasma_alpha_thermal_velocity_at_point_323_______________________________ (vel_plasma_alpha_thermal_profile323)_ 8.13477059476662427e+05 -Plasma_alpha_thermal_velocity_at_point_324_______________________________ (vel_plasma_alpha_thermal_profile324)_ 8.11515775076139369e+05 -Plasma_alpha_thermal_velocity_at_point_325_______________________________ (vel_plasma_alpha_thermal_profile325)_ 8.09548614772228058e+05 -Plasma_alpha_thermal_velocity_at_point_326_______________________________ (vel_plasma_alpha_thermal_profile326)_ 8.07575597182127996e+05 -Plasma_alpha_thermal_velocity_at_point_327_______________________________ (vel_plasma_alpha_thermal_profile327)_ 8.05596741509992513e+05 -Plasma_alpha_thermal_velocity_at_point_328_______________________________ (vel_plasma_alpha_thermal_profile328)_ 8.03612067549324012e+05 -Plasma_alpha_thermal_velocity_at_point_329_______________________________ (vel_plasma_alpha_thermal_profile329)_ 8.01621595828608959e+05 -Plasma_alpha_thermal_velocity_at_point_330_______________________________ (vel_plasma_alpha_thermal_profile330)_ 7.99625347509623622e+05 -Plasma_alpha_thermal_velocity_at_point_331_______________________________ (vel_plasma_alpha_thermal_profile331)_ 7.97623344446909963e+05 -Plasma_alpha_thermal_velocity_at_point_332_______________________________ (vel_plasma_alpha_thermal_profile332)_ 7.95615609216863639e+05 -Plasma_alpha_thermal_velocity_at_point_333_______________________________ (vel_plasma_alpha_thermal_profile333)_ 7.93602165134758456e+05 -Plasma_alpha_thermal_velocity_at_point_334_______________________________ (vel_plasma_alpha_thermal_profile334)_ 7.91583036272104364e+05 -Plasma_alpha_thermal_velocity_at_point_335_______________________________ (vel_plasma_alpha_thermal_profile335)_ 7.89558247404838679e+05 -Plasma_alpha_thermal_velocity_at_point_336_______________________________ (vel_plasma_alpha_thermal_profile336)_ 7.87527824258539942e+05 -Plasma_alpha_thermal_velocity_at_point_337_______________________________ (vel_plasma_alpha_thermal_profile337)_ 7.85491793249400449e+05 -Plasma_alpha_thermal_velocity_at_point_338_______________________________ (vel_plasma_alpha_thermal_profile338)_ 7.83450181641537230e+05 -Plasma_alpha_thermal_velocity_at_point_339_______________________________ (vel_plasma_alpha_thermal_profile339)_ 7.81403017674916075e+05 -Plasma_alpha_thermal_velocity_at_point_340_______________________________ (vel_plasma_alpha_thermal_profile340)_ 7.79350330388103146e+05 -Plasma_alpha_thermal_velocity_at_point_341_______________________________ (vel_plasma_alpha_thermal_profile341)_ 7.77292149765638635e+05 -Plasma_alpha_thermal_velocity_at_point_342_______________________________ (vel_plasma_alpha_thermal_profile342)_ 7.75228506746256026e+05 -Plasma_alpha_thermal_velocity_at_point_343_______________________________ (vel_plasma_alpha_thermal_profile343)_ 7.73159433257133467e+05 -Plasma_alpha_thermal_velocity_at_point_344_______________________________ (vel_plasma_alpha_thermal_profile344)_ 7.71084962138791103e+05 -Plasma_alpha_thermal_velocity_at_point_345_______________________________ (vel_plasma_alpha_thermal_profile345)_ 7.69005127438663505e+05 -Plasma_alpha_thermal_velocity_at_point_346_______________________________ (vel_plasma_alpha_thermal_profile346)_ 7.66919964072015486e+05 -Plasma_alpha_thermal_velocity_at_point_347_______________________________ (vel_plasma_alpha_thermal_profile347)_ 7.64829508201478282e+05 -Plasma_alpha_thermal_velocity_at_point_348_______________________________ (vel_plasma_alpha_thermal_profile348)_ 7.62733797021139413e+05 -Plasma_alpha_thermal_velocity_at_point_349_______________________________ (vel_plasma_alpha_thermal_profile349)_ 7.60632868950391305e+05 -Plasma_alpha_thermal_velocity_at_point_350_______________________________ (vel_plasma_alpha_thermal_profile350)_ 7.58526763515385450e+05 -Plasma_alpha_thermal_velocity_at_point_351_______________________________ (vel_plasma_alpha_thermal_profile351)_ 7.56415521564989700e+05 -Plasma_alpha_thermal_velocity_at_point_352_______________________________ (vel_plasma_alpha_thermal_profile352)_ 7.54299185166375828e+05 -Plasma_alpha_thermal_velocity_at_point_353_______________________________ (vel_plasma_alpha_thermal_profile353)_ 7.52177797711205785e+05 -Plasma_alpha_thermal_velocity_at_point_354_______________________________ (vel_plasma_alpha_thermal_profile354)_ 7.50051403870735085e+05 -Plasma_alpha_thermal_velocity_at_point_355_______________________________ (vel_plasma_alpha_thermal_profile355)_ 7.47920049810410943e+05 -Plasma_alpha_thermal_velocity_at_point_356_______________________________ (vel_plasma_alpha_thermal_profile356)_ 7.45783783040325041e+05 -Plasma_alpha_thermal_velocity_at_point_357_______________________________ (vel_plasma_alpha_thermal_profile357)_ 7.43642652531562257e+05 -Plasma_alpha_thermal_velocity_at_point_358_______________________________ (vel_plasma_alpha_thermal_profile358)_ 7.41496708807758172e+05 -Plasma_alpha_thermal_velocity_at_point_359_______________________________ (vel_plasma_alpha_thermal_profile359)_ 7.39346003984381910e+05 -Plasma_alpha_thermal_velocity_at_point_360_______________________________ (vel_plasma_alpha_thermal_profile360)_ 7.37190591680237674e+05 -Plasma_alpha_thermal_velocity_at_point_361_______________________________ (vel_plasma_alpha_thermal_profile361)_ 7.35030527239752002e+05 -Plasma_alpha_thermal_velocity_at_point_362_______________________________ (vel_plasma_alpha_thermal_profile362)_ 7.32865867707421770e+05 -Plasma_alpha_thermal_velocity_at_point_363_______________________________ (vel_plasma_alpha_thermal_profile363)_ 7.30696671883863281e+05 -Plasma_alpha_thermal_velocity_at_point_364_______________________________ (vel_plasma_alpha_thermal_profile364)_ 7.28523000369282323e+05 -Plasma_alpha_thermal_velocity_at_point_365_______________________________ (vel_plasma_alpha_thermal_profile365)_ 7.26344915669662296e+05 -Plasma_alpha_thermal_velocity_at_point_366_______________________________ (vel_plasma_alpha_thermal_profile366)_ 7.24162482167195645e+05 -Plasma_alpha_thermal_velocity_at_point_367_______________________________ (vel_plasma_alpha_thermal_profile367)_ 7.21975766269966611e+05 -Plasma_alpha_thermal_velocity_at_point_368_______________________________ (vel_plasma_alpha_thermal_profile368)_ 7.19784836460508639e+05 -Plasma_alpha_thermal_velocity_at_point_369_______________________________ (vel_plasma_alpha_thermal_profile369)_ 7.17589763234128244e+05 -Plasma_alpha_thermal_velocity_at_point_370_______________________________ (vel_plasma_alpha_thermal_profile370)_ 7.15390619398852694e+05 -Plasma_alpha_thermal_velocity_at_point_371_______________________________ (vel_plasma_alpha_thermal_profile371)_ 7.13187479975303635e+05 -Plasma_alpha_thermal_velocity_at_point_372_______________________________ (vel_plasma_alpha_thermal_profile372)_ 7.10980422235169564e+05 -Plasma_alpha_thermal_velocity_at_point_373_______________________________ (vel_plasma_alpha_thermal_profile373)_ 7.08769525916482438e+05 -Plasma_alpha_thermal_velocity_at_point_374_______________________________ (vel_plasma_alpha_thermal_profile374)_ 7.06554873273574747e+05 -Plasma_alpha_thermal_velocity_at_point_375_______________________________ (vel_plasma_alpha_thermal_profile375)_ 7.04336549000588595e+05 -Plasma_alpha_thermal_velocity_at_point_376_______________________________ (vel_plasma_alpha_thermal_profile376)_ 7.02114640551558812e+05 -Plasma_alpha_thermal_velocity_at_point_377_______________________________ (vel_plasma_alpha_thermal_profile377)_ 6.99889238053244073e+05 -Plasma_alpha_thermal_velocity_at_point_378_______________________________ (vel_plasma_alpha_thermal_profile378)_ 6.97660434388012276e+05 -Plasma_alpha_thermal_velocity_at_point_379_______________________________ (vel_plasma_alpha_thermal_profile379)_ 6.95428325443410082e+05 -Plasma_alpha_thermal_velocity_at_point_380_______________________________ (vel_plasma_alpha_thermal_profile380)_ 6.93193010100336047e+05 -Plasma_alpha_thermal_velocity_at_point_381_______________________________ (vel_plasma_alpha_thermal_profile381)_ 6.90954590286047314e+05 -Plasma_alpha_thermal_velocity_at_point_382_______________________________ (vel_plasma_alpha_thermal_profile382)_ 6.88713171173146111e+05 -Plasma_alpha_thermal_velocity_at_point_383_______________________________ (vel_plasma_alpha_thermal_profile383)_ 6.86468861222629319e+05 -Plasma_alpha_thermal_velocity_at_point_384_______________________________ (vel_plasma_alpha_thermal_profile384)_ 6.84221772380956099e+05 -Plasma_alpha_thermal_velocity_at_point_385_______________________________ (vel_plasma_alpha_thermal_profile385)_ 6.81972020061578951e+05 -Plasma_alpha_thermal_velocity_at_point_386_______________________________ (vel_plasma_alpha_thermal_profile386)_ 6.79719723390366300e+05 -Plasma_alpha_thermal_velocity_at_point_387_______________________________ (vel_plasma_alpha_thermal_profile387)_ 6.77465005257091136e+05 -Plasma_alpha_thermal_velocity_at_point_388_______________________________ (vel_plasma_alpha_thermal_profile388)_ 6.75207992508335621e+05 -Plasma_alpha_thermal_velocity_at_point_389_______________________________ (vel_plasma_alpha_thermal_profile389)_ 6.72948815981150139e+05 -Plasma_alpha_thermal_velocity_at_point_390_______________________________ (vel_plasma_alpha_thermal_profile390)_ 6.70687610760510201e+05 -Plasma_alpha_thermal_velocity_at_point_391_______________________________ (vel_plasma_alpha_thermal_profile391)_ 6.68424516300120973e+05 -Plasma_alpha_thermal_velocity_at_point_392_______________________________ (vel_plasma_alpha_thermal_profile392)_ 6.66159676418274874e+05 -Plasma_alpha_thermal_velocity_at_point_393_______________________________ (vel_plasma_alpha_thermal_profile393)_ 6.63893239759435877e+05 -Plasma_alpha_thermal_velocity_at_point_394_______________________________ (vel_plasma_alpha_thermal_profile394)_ 6.61625359676992986e+05 -Plasma_alpha_thermal_velocity_at_point_395_______________________________ (vel_plasma_alpha_thermal_profile395)_ 6.59356194544719765e+05 -Plasma_alpha_thermal_velocity_at_point_396_______________________________ (vel_plasma_alpha_thermal_profile396)_ 6.57085907892251271e+05 -Plasma_alpha_thermal_velocity_at_point_397_______________________________ (vel_plasma_alpha_thermal_profile397)_ 6.54814668649797677e+05 -Plasma_alpha_thermal_velocity_at_point_398_______________________________ (vel_plasma_alpha_thermal_profile398)_ 6.52542651275351760e+05 -Plasma_alpha_thermal_velocity_at_point_399_______________________________ (vel_plasma_alpha_thermal_profile399)_ 6.50270035991641693e+05 -Plasma_alpha_thermal_velocity_at_point_400_______________________________ (vel_plasma_alpha_thermal_profile400)_ 6.47997009004587075e+05 -Plasma_alpha_thermal_velocity_at_point_401_______________________________ (vel_plasma_alpha_thermal_profile401)_ 6.45723762702751090e+05 -Plasma_alpha_thermal_velocity_at_point_402_______________________________ (vel_plasma_alpha_thermal_profile402)_ 6.43450495938058011e+05 -Plasma_alpha_thermal_velocity_at_point_403_______________________________ (vel_plasma_alpha_thermal_profile403)_ 6.41177414195199497e+05 -Plasma_alpha_thermal_velocity_at_point_404_______________________________ (vel_plasma_alpha_thermal_profile404)_ 6.38904729873344302e+05 -Plasma_alpha_thermal_velocity_at_point_405_______________________________ (vel_plasma_alpha_thermal_profile405)_ 6.36632662675041822e+05 -Plasma_alpha_thermal_velocity_at_point_406_______________________________ (vel_plasma_alpha_thermal_profile406)_ 6.34361439633037895e+05 -Plasma_alpha_thermal_velocity_at_point_407_______________________________ (vel_plasma_alpha_thermal_profile407)_ 6.32091295649816399e+05 -Plasma_alpha_thermal_velocity_at_point_408_______________________________ (vel_plasma_alpha_thermal_profile408)_ 6.29822473699264927e+05 -Plasma_alpha_thermal_velocity_at_point_409_______________________________ (vel_plasma_alpha_thermal_profile409)_ 6.27555225063401507e+05 -Plasma_alpha_thermal_velocity_at_point_410_______________________________ (vel_plasma_alpha_thermal_profile410)_ 6.25289809852273669e+05 -Plasma_alpha_thermal_velocity_at_point_411_______________________________ (vel_plasma_alpha_thermal_profile411)_ 6.23026497237536241e+05 -Plasma_alpha_thermal_velocity_at_point_412_______________________________ (vel_plasma_alpha_thermal_profile412)_ 6.20765565818207222e+05 -Plasma_alpha_thermal_velocity_at_point_413_______________________________ (vel_plasma_alpha_thermal_profile413)_ 6.18507304146022303e+05 -Plasma_alpha_thermal_velocity_at_point_414_______________________________ (vel_plasma_alpha_thermal_profile414)_ 6.16252010896160500e+05 -Plasma_alpha_thermal_velocity_at_point_415_______________________________ (vel_plasma_alpha_thermal_profile415)_ 6.13999995535333874e+05 -Plasma_alpha_thermal_velocity_at_point_416_______________________________ (vel_plasma_alpha_thermal_profile416)_ 6.11751578725078725e+05 -Plasma_alpha_thermal_velocity_at_point_417_______________________________ (vel_plasma_alpha_thermal_profile417)_ 6.09507092731457669e+05 -Plasma_alpha_thermal_velocity_at_point_418_______________________________ (vel_plasma_alpha_thermal_profile418)_ 6.07266881956103141e+05 -Plasma_alpha_thermal_velocity_at_point_419_______________________________ (vel_plasma_alpha_thermal_profile419)_ 6.05031303492500330e+05 -Plasma_alpha_thermal_velocity_at_point_420_______________________________ (vel_plasma_alpha_thermal_profile420)_ 6.02800727798888693e+05 -Plasma_alpha_thermal_velocity_at_point_421_______________________________ (vel_plasma_alpha_thermal_profile421)_ 6.00575539158156491e+05 -Plasma_alpha_thermal_velocity_at_point_422_______________________________ (vel_plasma_alpha_thermal_profile422)_ 5.98356136344027007e+05 -Plasma_alpha_thermal_velocity_at_point_423_______________________________ (vel_plasma_alpha_thermal_profile423)_ 5.96142933372962521e+05 -Plasma_alpha_thermal_velocity_at_point_424_______________________________ (vel_plasma_alpha_thermal_profile424)_ 5.93936360225932440e+05 -Plasma_alpha_thermal_velocity_at_point_425_______________________________ (vel_plasma_alpha_thermal_profile425)_ 5.91736863589306246e+05 -Plasma_alpha_thermal_velocity_at_point_426_______________________________ (vel_plasma_alpha_thermal_profile426)_ 5.89544907631713664e+05 -Plasma_alpha_thermal_velocity_at_point_427_______________________________ (vel_plasma_alpha_thermal_profile427)_ 5.87360975004039705e+05 -Plasma_alpha_thermal_velocity_at_point_428_______________________________ (vel_plasma_alpha_thermal_profile428)_ 5.85185567786314175e+05 -Plasma_alpha_thermal_velocity_at_point_429_______________________________ (vel_plasma_alpha_thermal_profile429)_ 5.83019208336497308e+05 -Plasma_alpha_thermal_velocity_at_point_430_______________________________ (vel_plasma_alpha_thermal_profile430)_ 5.80862440587427234e+05 -Plasma_alpha_thermal_velocity_at_point_431_______________________________ (vel_plasma_alpha_thermal_profile431)_ 5.78715831026753411e+05 -Plasma_alpha_thermal_velocity_at_point_432_______________________________ (vel_plasma_alpha_thermal_profile432)_ 5.76579970198445837e+05 -Plasma_alpha_thermal_velocity_at_point_433_______________________________ (vel_plasma_alpha_thermal_profile433)_ 5.74455473808946204e+05 -Plasma_alpha_thermal_velocity_at_point_434_______________________________ (vel_plasma_alpha_thermal_profile434)_ 5.72342984420006396e+05 -Plasma_alpha_thermal_velocity_at_point_435_______________________________ (vel_plasma_alpha_thermal_profile435)_ 5.70243172919502831e+05 -Plasma_alpha_thermal_velocity_at_point_436_______________________________ (vel_plasma_alpha_thermal_profile436)_ 5.68156740386152407e+05 -Plasma_alpha_thermal_velocity_at_point_437_______________________________ (vel_plasma_alpha_thermal_profile437)_ 5.66084419924490037e+05 -Plasma_alpha_thermal_velocity_at_point_438_______________________________ (vel_plasma_alpha_thermal_profile438)_ 5.64026978732451797e+05 -Plasma_alpha_thermal_velocity_at_point_439_______________________________ (vel_plasma_alpha_thermal_profile439)_ 5.61985220609214273e+05 -Plasma_alpha_thermal_velocity_at_point_440_______________________________ (vel_plasma_alpha_thermal_profile440)_ 5.59959988163208356e+05 -Plasma_alpha_thermal_velocity_at_point_441_______________________________ (vel_plasma_alpha_thermal_profile441)_ 5.57952165961247170e+05 -Plasma_alpha_thermal_velocity_at_point_442_______________________________ (vel_plasma_alpha_thermal_profile442)_ 5.55962683391523897e+05 -Plasma_alpha_thermal_velocity_at_point_443_______________________________ (vel_plasma_alpha_thermal_profile443)_ 5.53992518327584374e+05 -Plasma_alpha_thermal_velocity_at_point_444_______________________________ (vel_plasma_alpha_thermal_profile444)_ 5.52042700894437265e+05 -Plasma_alpha_thermal_velocity_at_point_445_______________________________ (vel_plasma_alpha_thermal_profile445)_ 5.50114317986515816e+05 -Plasma_alpha_thermal_velocity_at_point_446_______________________________ (vel_plasma_alpha_thermal_profile446)_ 5.48208518094319501e+05 -Plasma_alpha_thermal_velocity_at_point_447_______________________________ (vel_plasma_alpha_thermal_profile447)_ 5.46326517133464920e+05 -Plasma_alpha_thermal_velocity_at_point_448_______________________________ (vel_plasma_alpha_thermal_profile448)_ 5.44469604732280481e+05 -Plasma_alpha_thermal_velocity_at_point_449_______________________________ (vel_plasma_alpha_thermal_profile449)_ 5.42639151796284365e+05 -Plasma_alpha_thermal_velocity_at_point_450_______________________________ (vel_plasma_alpha_thermal_profile450)_ 5.40836619173202547e+05 -Plasma_alpha_thermal_velocity_at_point_451_______________________________ (vel_plasma_alpha_thermal_profile451)_ 5.39063567576754140e+05 -Plasma_alpha_thermal_velocity_at_point_452_______________________________ (vel_plasma_alpha_thermal_profile452)_ 5.37321669624487520e+05 -Plasma_alpha_thermal_velocity_at_point_453_______________________________ (vel_plasma_alpha_thermal_profile453)_ 5.35612723968401202e+05 -Plasma_alpha_thermal_velocity_at_point_454_______________________________ (vel_plasma_alpha_thermal_profile454)_ 5.33938672144278185e+05 -Plasma_alpha_thermal_velocity_at_point_455_______________________________ (vel_plasma_alpha_thermal_profile455)_ 5.32301619242409710e+05 -Plasma_alpha_thermal_velocity_at_point_456_______________________________ (vel_plasma_alpha_thermal_profile456)_ 5.30703859152589692e+05 -Plasma_alpha_thermal_velocity_at_point_457_______________________________ (vel_plasma_alpha_thermal_profile457)_ 5.29147905979349045e+05 -Plasma_alpha_thermal_velocity_at_point_458_______________________________ (vel_plasma_alpha_thermal_profile458)_ 5.27636534055249649e+05 -Plasma_alpha_thermal_velocity_at_point_459_______________________________ (vel_plasma_alpha_thermal_profile459)_ 5.26172829008922912e+05 -Plasma_alpha_thermal_velocity_at_point_460_______________________________ (vel_plasma_alpha_thermal_profile460)_ 5.24760255137048895e+05 -Plasma_alpha_thermal_velocity_at_point_461_______________________________ (vel_plasma_alpha_thermal_profile461)_ 5.23402746274603473e+05 -Plasma_alpha_thermal_velocity_at_point_462_______________________________ (vel_plasma_alpha_thermal_profile462)_ 5.22104831139167421e+05 -Plasma_alpha_thermal_velocity_at_point_463_______________________________ (vel_plasma_alpha_thermal_profile463)_ 5.20871813319984241e+05 -Plasma_alpha_thermal_velocity_at_point_464_______________________________ (vel_plasma_alpha_thermal_profile464)_ 5.19710040293209779e+05 -Plasma_alpha_thermal_velocity_at_point_465_______________________________ (vel_plasma_alpha_thermal_profile465)_ 5.18627327888803324e+05 -Plasma_alpha_thermal_velocity_at_point_466_______________________________ (vel_plasma_alpha_thermal_profile466)_ 5.17633679554602189e+05 -Plasma_alpha_thermal_velocity_at_point_467_______________________________ (vel_plasma_alpha_thermal_profile467)_ 5.16742632098249800e+05 -Plasma_alpha_thermal_velocity_at_point_468_______________________________ (vel_plasma_alpha_thermal_profile468)_ 5.15974176979609707e+05 -Plasma_alpha_thermal_velocity_at_point_469_______________________________ (vel_plasma_alpha_thermal_profile469)_ 5.15362990502029890e+05 +Volume_averaged_alpha_thermal_velocity_(m/s)_____________________________ (vel_plasma_alpha_thermal_vol_avg)_ 7.75569612425962929e+05 +Plasma_alpha_thermal_velocity_at_point_0_________________________________ (vel_plasma_alpha_thermal_profile0)_ 1.11359272824976500e+06 +Plasma_alpha_thermal_velocity_at_point_1_________________________________ (vel_plasma_alpha_thermal_profile1)_ 1.11358985515281116e+06 +Plasma_alpha_thermal_velocity_at_point_2_________________________________ (vel_plasma_alpha_thermal_profile2)_ 1.11358123580403253e+06 +Plasma_alpha_thermal_velocity_at_point_3_________________________________ (vel_plasma_alpha_thermal_profile3)_ 1.11356687020440469e+06 +Plasma_alpha_thermal_velocity_at_point_4_________________________________ (vel_plasma_alpha_thermal_profile4)_ 1.11354675829730765e+06 +Plasma_alpha_thermal_velocity_at_point_5_________________________________ (vel_plasma_alpha_thermal_profile5)_ 1.11352090003124694e+06 +Plasma_alpha_thermal_velocity_at_point_6_________________________________ (vel_plasma_alpha_thermal_profile6)_ 1.11348929528368125e+06 +Plasma_alpha_thermal_velocity_at_point_7_________________________________ (vel_plasma_alpha_thermal_profile7)_ 1.11345194400439039e+06 +Plasma_alpha_thermal_velocity_at_point_8_________________________________ (vel_plasma_alpha_thermal_profile8)_ 1.11340884603624837e+06 +Plasma_alpha_thermal_velocity_at_point_9_________________________________ (vel_plasma_alpha_thermal_profile9)_ 1.11336000124962837e+06 +Plasma_alpha_thermal_velocity_at_point_10________________________________ (vel_plasma_alpha_thermal_profile10)_ 1.11330540948862792e+06 +Plasma_alpha_thermal_velocity_at_point_11________________________________ (vel_plasma_alpha_thermal_profile11)_ 1.11324507057105261e+06 +Plasma_alpha_thermal_velocity_at_point_12________________________________ (vel_plasma_alpha_thermal_profile12)_ 1.11317898428840167e+06 +Plasma_alpha_thermal_velocity_at_point_13________________________________ (vel_plasma_alpha_thermal_profile13)_ 1.11310715044170758e+06 +Plasma_alpha_thermal_velocity_at_point_14________________________________ (vel_plasma_alpha_thermal_profile14)_ 1.11302956880118488e+06 +Plasma_alpha_thermal_velocity_at_point_15________________________________ (vel_plasma_alpha_thermal_profile15)_ 1.11294623910172726e+06 +Plasma_alpha_thermal_velocity_at_point_16________________________________ (vel_plasma_alpha_thermal_profile16)_ 1.11285716106977966e+06 +Plasma_alpha_thermal_velocity_at_point_17________________________________ (vel_plasma_alpha_thermal_profile17)_ 1.11276233442332060e+06 +Plasma_alpha_thermal_velocity_at_point_18________________________________ (vel_plasma_alpha_thermal_profile18)_ 1.11266175884942547e+06 +Plasma_alpha_thermal_velocity_at_point_19________________________________ (vel_plasma_alpha_thermal_profile19)_ 1.11255543403562717e+06 +Plasma_alpha_thermal_velocity_at_point_20________________________________ (vel_plasma_alpha_thermal_profile20)_ 1.11244335960711283e+06 +Plasma_alpha_thermal_velocity_at_point_21________________________________ (vel_plasma_alpha_thermal_profile21)_ 1.11232553522983636e+06 +Plasma_alpha_thermal_velocity_at_point_22________________________________ (vel_plasma_alpha_thermal_profile22)_ 1.11220196048940532e+06 +Plasma_alpha_thermal_velocity_at_point_23________________________________ (vel_plasma_alpha_thermal_profile23)_ 1.11207263501214748e+06 +Plasma_alpha_thermal_velocity_at_point_24________________________________ (vel_plasma_alpha_thermal_profile24)_ 1.11193755837088986e+06 +Plasma_alpha_thermal_velocity_at_point_25________________________________ (vel_plasma_alpha_thermal_profile25)_ 1.11179673010285595e+06 +Plasma_alpha_thermal_velocity_at_point_26________________________________ (vel_plasma_alpha_thermal_profile26)_ 1.11165014978591516e+06 +Plasma_alpha_thermal_velocity_at_point_27________________________________ (vel_plasma_alpha_thermal_profile27)_ 1.11149781691739522e+06 +Plasma_alpha_thermal_velocity_at_point_28________________________________ (vel_plasma_alpha_thermal_profile28)_ 1.11133973101725476e+06 +Plasma_alpha_thermal_velocity_at_point_29________________________________ (vel_plasma_alpha_thermal_profile29)_ 1.11117589155623596e+06 +Plasma_alpha_thermal_velocity_at_point_30________________________________ (vel_plasma_alpha_thermal_profile30)_ 1.11100629802316148e+06 +Plasma_alpha_thermal_velocity_at_point_31________________________________ (vel_plasma_alpha_thermal_profile31)_ 1.11083094984856783e+06 +Plasma_alpha_thermal_velocity_at_point_32________________________________ (vel_plasma_alpha_thermal_profile32)_ 1.11064984645404527e+06 +Plasma_alpha_thermal_velocity_at_point_33________________________________ (vel_plasma_alpha_thermal_profile33)_ 1.11046298727915669e+06 +Plasma_alpha_thermal_velocity_at_point_34________________________________ (vel_plasma_alpha_thermal_profile34)_ 1.11027037171401945e+06 +Plasma_alpha_thermal_velocity_at_point_35________________________________ (vel_plasma_alpha_thermal_profile35)_ 1.11007199911721027e+06 +Plasma_alpha_thermal_velocity_at_point_36________________________________ (vel_plasma_alpha_thermal_profile36)_ 1.10986786883368529e+06 +Plasma_alpha_thermal_velocity_at_point_37________________________________ (vel_plasma_alpha_thermal_profile37)_ 1.10965798023519781e+06 +Plasma_alpha_thermal_velocity_at_point_38________________________________ (vel_plasma_alpha_thermal_profile38)_ 1.10944233263934660e+06 +Plasma_alpha_thermal_velocity_at_point_39________________________________ (vel_plasma_alpha_thermal_profile39)_ 1.10922092531398544e+06 +Plasma_alpha_thermal_velocity_at_point_40________________________________ (vel_plasma_alpha_thermal_profile40)_ 1.10899375755361770e+06 +Plasma_alpha_thermal_velocity_at_point_41________________________________ (vel_plasma_alpha_thermal_profile41)_ 1.10876082865688624e+06 +Plasma_alpha_thermal_velocity_at_point_42________________________________ (vel_plasma_alpha_thermal_profile42)_ 1.10852213780052238e+06 +Plasma_alpha_thermal_velocity_at_point_43________________________________ (vel_plasma_alpha_thermal_profile43)_ 1.10827768427776452e+06 +Plasma_alpha_thermal_velocity_at_point_44________________________________ (vel_plasma_alpha_thermal_profile44)_ 1.10802746725980286e+06 +Plasma_alpha_thermal_velocity_at_point_45________________________________ (vel_plasma_alpha_thermal_profile45)_ 1.10777148596674530e+06 +Plasma_alpha_thermal_velocity_at_point_46________________________________ (vel_plasma_alpha_thermal_profile46)_ 1.10750973953248677e+06 +Plasma_alpha_thermal_velocity_at_point_47________________________________ (vel_plasma_alpha_thermal_profile47)_ 1.10724222713072901e+06 +Plasma_alpha_thermal_velocity_at_point_48________________________________ (vel_plasma_alpha_thermal_profile48)_ 1.10696894788033934e+06 +Plasma_alpha_thermal_velocity_at_point_49________________________________ (vel_plasma_alpha_thermal_profile49)_ 1.10668990091736661e+06 +Plasma_alpha_thermal_velocity_at_point_50________________________________ (vel_plasma_alpha_thermal_profile50)_ 1.10640508534992626e+06 +Plasma_alpha_thermal_velocity_at_point_51________________________________ (vel_plasma_alpha_thermal_profile51)_ 1.10611450024458580e+06 +Plasma_alpha_thermal_velocity_at_point_52________________________________ (vel_plasma_alpha_thermal_profile52)_ 1.10581814464882133e+06 +Plasma_alpha_thermal_velocity_at_point_53________________________________ (vel_plasma_alpha_thermal_profile53)_ 1.10551601760899532e+06 +Plasma_alpha_thermal_velocity_at_point_54________________________________ (vel_plasma_alpha_thermal_profile54)_ 1.10520811817481811e+06 +Plasma_alpha_thermal_velocity_at_point_55________________________________ (vel_plasma_alpha_thermal_profile55)_ 1.10489444531802600e+06 +Plasma_alpha_thermal_velocity_at_point_56________________________________ (vel_plasma_alpha_thermal_profile56)_ 1.10457499805868650e+06 +Plasma_alpha_thermal_velocity_at_point_57________________________________ (vel_plasma_alpha_thermal_profile57)_ 1.10424977535226522e+06 +Plasma_alpha_thermal_velocity_at_point_58________________________________ (vel_plasma_alpha_thermal_profile58)_ 1.10391877614370990e+06 +Plasma_alpha_thermal_velocity_at_point_59________________________________ (vel_plasma_alpha_thermal_profile59)_ 1.10358199939450528e+06 +Plasma_alpha_thermal_velocity_at_point_60________________________________ (vel_plasma_alpha_thermal_profile60)_ 1.10323944399219844e+06 +Plasma_alpha_thermal_velocity_at_point_61________________________________ (vel_plasma_alpha_thermal_profile61)_ 1.10289110883617774e+06 +Plasma_alpha_thermal_velocity_at_point_62________________________________ (vel_plasma_alpha_thermal_profile62)_ 1.10253699282405758e+06 +Plasma_alpha_thermal_velocity_at_point_63________________________________ (vel_plasma_alpha_thermal_profile63)_ 1.10217709482445871e+06 +Plasma_alpha_thermal_velocity_at_point_64________________________________ (vel_plasma_alpha_thermal_profile64)_ 1.10181141364973295e+06 +Plasma_alpha_thermal_velocity_at_point_65________________________________ (vel_plasma_alpha_thermal_profile65)_ 1.10143994814640307e+06 +Plasma_alpha_thermal_velocity_at_point_66________________________________ (vel_plasma_alpha_thermal_profile66)_ 1.10106269710453297e+06 +Plasma_alpha_thermal_velocity_at_point_67________________________________ (vel_plasma_alpha_thermal_profile67)_ 1.10067965933462791e+06 +Plasma_alpha_thermal_velocity_at_point_68________________________________ (vel_plasma_alpha_thermal_profile68)_ 1.10029083360865852e+06 +Plasma_alpha_thermal_velocity_at_point_69________________________________ (vel_plasma_alpha_thermal_profile69)_ 1.09989621865993086e+06 +Plasma_alpha_thermal_velocity_at_point_70________________________________ (vel_plasma_alpha_thermal_profile70)_ 1.09949581325101410e+06 +Plasma_alpha_thermal_velocity_at_point_71________________________________ (vel_plasma_alpha_thermal_profile71)_ 1.09908961606478621e+06 +Plasma_alpha_thermal_velocity_at_point_72________________________________ (vel_plasma_alpha_thermal_profile72)_ 1.09867762585861189e+06 +Plasma_alpha_thermal_velocity_at_point_73________________________________ (vel_plasma_alpha_thermal_profile73)_ 1.09825984125999361e+06 +Plasma_alpha_thermal_velocity_at_point_74________________________________ (vel_plasma_alpha_thermal_profile74)_ 1.09783626095257676e+06 +Plasma_alpha_thermal_velocity_at_point_75________________________________ (vel_plasma_alpha_thermal_profile75)_ 1.09740688358981139e+06 +Plasma_alpha_thermal_velocity_at_point_76________________________________ (vel_plasma_alpha_thermal_profile76)_ 1.09697170779481973e+06 +Plasma_alpha_thermal_velocity_at_point_77________________________________ (vel_plasma_alpha_thermal_profile77)_ 1.09653073219211539e+06 +Plasma_alpha_thermal_velocity_at_point_78________________________________ (vel_plasma_alpha_thermal_profile78)_ 1.09608395537111768e+06 +Plasma_alpha_thermal_velocity_at_point_79________________________________ (vel_plasma_alpha_thermal_profile79)_ 1.09563137589966925e+06 +Plasma_alpha_thermal_velocity_at_point_80________________________________ (vel_plasma_alpha_thermal_profile80)_ 1.09517299234669120e+06 +Plasma_alpha_thermal_velocity_at_point_81________________________________ (vel_plasma_alpha_thermal_profile81)_ 1.09470880325020989e+06 +Plasma_alpha_thermal_velocity_at_point_82________________________________ (vel_plasma_alpha_thermal_profile82)_ 1.09423880714456900e+06 +Plasma_alpha_thermal_velocity_at_point_83________________________________ (vel_plasma_alpha_thermal_profile83)_ 1.09376300251473160e+06 +Plasma_alpha_thermal_velocity_at_point_84________________________________ (vel_plasma_alpha_thermal_profile84)_ 1.09328138787823357e+06 +Plasma_alpha_thermal_velocity_at_point_85________________________________ (vel_plasma_alpha_thermal_profile85)_ 1.09279396170756384e+06 +Plasma_alpha_thermal_velocity_at_point_86________________________________ (vel_plasma_alpha_thermal_profile86)_ 1.09230072241628170e+06 +Plasma_alpha_thermal_velocity_at_point_87________________________________ (vel_plasma_alpha_thermal_profile87)_ 1.09180166851416603e+06 +Plasma_alpha_thermal_velocity_at_point_88________________________________ (vel_plasma_alpha_thermal_profile88)_ 1.09129679836048116e+06 +Plasma_alpha_thermal_velocity_at_point_89________________________________ (vel_plasma_alpha_thermal_profile89)_ 1.09078611039223871e+06 +Plasma_alpha_thermal_velocity_at_point_90________________________________ (vel_plasma_alpha_thermal_profile90)_ 1.09026960297786049e+06 +Plasma_alpha_thermal_velocity_at_point_91________________________________ (vel_plasma_alpha_thermal_profile91)_ 1.08974727449476090e+06 +Plasma_alpha_thermal_velocity_at_point_92________________________________ (vel_plasma_alpha_thermal_profile92)_ 1.08921912332470040e+06 +Plasma_alpha_thermal_velocity_at_point_93________________________________ (vel_plasma_alpha_thermal_profile93)_ 1.08868514775747410e+06 +Plasma_alpha_thermal_velocity_at_point_94________________________________ (vel_plasma_alpha_thermal_profile94)_ 1.08814534615106951e+06 +Plasma_alpha_thermal_velocity_at_point_95________________________________ (vel_plasma_alpha_thermal_profile95)_ 1.08759971679412946e+06 +Plasma_alpha_thermal_velocity_at_point_96________________________________ (vel_plasma_alpha_thermal_profile96)_ 1.08704825796076166e+06 +Plasma_alpha_thermal_velocity_at_point_97________________________________ (vel_plasma_alpha_thermal_profile97)_ 1.08649096794714662e+06 +Plasma_alpha_thermal_velocity_at_point_98________________________________ (vel_plasma_alpha_thermal_profile98)_ 1.08592784499339759e+06 +Plasma_alpha_thermal_velocity_at_point_99________________________________ (vel_plasma_alpha_thermal_profile99)_ 1.08535888734308071e+06 +Plasma_alpha_thermal_velocity_at_point_100_______________________________ (vel_plasma_alpha_thermal_profile100)_ 1.08478409319713619e+06 +Plasma_alpha_thermal_velocity_at_point_101_______________________________ (vel_plasma_alpha_thermal_profile101)_ 1.08420346078269626e+06 +Plasma_alpha_thermal_velocity_at_point_102_______________________________ (vel_plasma_alpha_thermal_profile102)_ 1.08361698828859953e+06 +Plasma_alpha_thermal_velocity_at_point_103_______________________________ (vel_plasma_alpha_thermal_profile103)_ 1.08302467386519141e+06 +Plasma_alpha_thermal_velocity_at_point_104_______________________________ (vel_plasma_alpha_thermal_profile104)_ 1.08242651571169496e+06 +Plasma_alpha_thermal_velocity_at_point_105_______________________________ (vel_plasma_alpha_thermal_profile105)_ 1.08182251190561219e+06 +Plasma_alpha_thermal_velocity_at_point_106_______________________________ (vel_plasma_alpha_thermal_profile106)_ 1.08121266063300008e+06 +Plasma_alpha_thermal_velocity_at_point_107_______________________________ (vel_plasma_alpha_thermal_profile107)_ 1.08059695994397742e+06 +Plasma_alpha_thermal_velocity_at_point_108_______________________________ (vel_plasma_alpha_thermal_profile108)_ 1.07997540800169553e+06 +Plasma_alpha_thermal_velocity_at_point_109_______________________________ (vel_plasma_alpha_thermal_profile109)_ 1.07934800280522043e+06 +Plasma_alpha_thermal_velocity_at_point_110_______________________________ (vel_plasma_alpha_thermal_profile110)_ 1.07871474247570569e+06 +Plasma_alpha_thermal_velocity_at_point_111_______________________________ (vel_plasma_alpha_thermal_profile111)_ 1.07807562503913813e+06 +Plasma_alpha_thermal_velocity_at_point_112_______________________________ (vel_plasma_alpha_thermal_profile112)_ 1.07743064850930264e+06 +Plasma_alpha_thermal_velocity_at_point_113_______________________________ (vel_plasma_alpha_thermal_profile113)_ 1.07677981091543660e+06 +Plasma_alpha_thermal_velocity_at_point_114_______________________________ (vel_plasma_alpha_thermal_profile114)_ 1.07612311027898872e+06 +Plasma_alpha_thermal_velocity_at_point_115_______________________________ (vel_plasma_alpha_thermal_profile115)_ 1.07546054453926254e+06 +Plasma_alpha_thermal_velocity_at_point_116_______________________________ (vel_plasma_alpha_thermal_profile116)_ 1.07479211169231101e+06 +Plasma_alpha_thermal_velocity_at_point_117_______________________________ (vel_plasma_alpha_thermal_profile117)_ 1.07411780970275030e+06 +Plasma_alpha_thermal_velocity_at_point_118_______________________________ (vel_plasma_alpha_thermal_profile118)_ 1.07343763649425493e+06 +Plasma_alpha_thermal_velocity_at_point_119_______________________________ (vel_plasma_alpha_thermal_profile119)_ 1.07275159000512469e+06 +Plasma_alpha_thermal_velocity_at_point_120_______________________________ (vel_plasma_alpha_thermal_profile120)_ 1.07205966811375716e+06 +Plasma_alpha_thermal_velocity_at_point_121_______________________________ (vel_plasma_alpha_thermal_profile121)_ 1.07136186875941744e+06 +Plasma_alpha_thermal_velocity_at_point_122_______________________________ (vel_plasma_alpha_thermal_profile122)_ 1.07065818979320559e+06 +Plasma_alpha_thermal_velocity_at_point_123_______________________________ (vel_plasma_alpha_thermal_profile123)_ 1.06994862908956199e+06 +Plasma_alpha_thermal_velocity_at_point_124_______________________________ (vel_plasma_alpha_thermal_profile124)_ 1.06923318450423260e+06 +Plasma_alpha_thermal_velocity_at_point_125_______________________________ (vel_plasma_alpha_thermal_profile125)_ 1.06851185388342687e+06 +Plasma_alpha_thermal_velocity_at_point_126_______________________________ (vel_plasma_alpha_thermal_profile126)_ 1.06778463503096136e+06 +Plasma_alpha_thermal_velocity_at_point_127_______________________________ (vel_plasma_alpha_thermal_profile127)_ 1.06705152578280377e+06 +Plasma_alpha_thermal_velocity_at_point_128_______________________________ (vel_plasma_alpha_thermal_profile128)_ 1.06631252392752375e+06 +Plasma_alpha_thermal_velocity_at_point_129_______________________________ (vel_plasma_alpha_thermal_profile129)_ 1.06556762722941721e+06 +Plasma_alpha_thermal_velocity_at_point_130_______________________________ (vel_plasma_alpha_thermal_profile130)_ 1.06481683350795088e+06 +Plasma_alpha_thermal_velocity_at_point_131_______________________________ (vel_plasma_alpha_thermal_profile131)_ 1.06406014046435105e+06 +Plasma_alpha_thermal_velocity_at_point_132_______________________________ (vel_plasma_alpha_thermal_profile132)_ 1.06329754588281945e+06 +Plasma_alpha_thermal_velocity_at_point_133_______________________________ (vel_plasma_alpha_thermal_profile133)_ 1.06252904747105739e+06 +Plasma_alpha_thermal_velocity_at_point_134_______________________________ (vel_plasma_alpha_thermal_profile134)_ 1.06175464296794101e+06 +Plasma_alpha_thermal_velocity_at_point_135_______________________________ (vel_plasma_alpha_thermal_profile135)_ 1.06097433005416091e+06 +Plasma_alpha_thermal_velocity_at_point_136_______________________________ (vel_plasma_alpha_thermal_profile136)_ 1.06018810645541106e+06 +Plasma_alpha_thermal_velocity_at_point_137_______________________________ (vel_plasma_alpha_thermal_profile137)_ 1.05939596981998277e+06 +Plasma_alpha_thermal_velocity_at_point_138_______________________________ (vel_plasma_alpha_thermal_profile138)_ 1.05859791783145699e+06 +Plasma_alpha_thermal_velocity_at_point_139_______________________________ (vel_plasma_alpha_thermal_profile139)_ 1.05779394817569060e+06 +Plasma_alpha_thermal_velocity_at_point_140_______________________________ (vel_plasma_alpha_thermal_profile140)_ 1.05698405843685288e+06 +Plasma_alpha_thermal_velocity_at_point_141_______________________________ (vel_plasma_alpha_thermal_profile141)_ 1.05616824630475021e+06 +Plasma_alpha_thermal_velocity_at_point_142_______________________________ (vel_plasma_alpha_thermal_profile142)_ 1.05534650936236489e+06 +Plasma_alpha_thermal_velocity_at_point_143_______________________________ (vel_plasma_alpha_thermal_profile143)_ 1.05451884524616599e+06 +Plasma_alpha_thermal_velocity_at_point_144_______________________________ (vel_plasma_alpha_thermal_profile144)_ 1.05368525155622256e+06 +Plasma_alpha_thermal_velocity_at_point_145_______________________________ (vel_plasma_alpha_thermal_profile145)_ 1.05284572585118678e+06 +Plasma_alpha_thermal_velocity_at_point_146_______________________________ (vel_plasma_alpha_thermal_profile146)_ 1.05200026576181035e+06 +Plasma_alpha_thermal_velocity_at_point_147_______________________________ (vel_plasma_alpha_thermal_profile147)_ 1.05114886880124756e+06 +Plasma_alpha_thermal_velocity_at_point_148_______________________________ (vel_plasma_alpha_thermal_profile148)_ 1.05029153254019772e+06 +Plasma_alpha_thermal_velocity_at_point_149_______________________________ (vel_plasma_alpha_thermal_profile149)_ 1.04942825456421426e+06 +Plasma_alpha_thermal_velocity_at_point_150_______________________________ (vel_plasma_alpha_thermal_profile150)_ 1.04855903237371019e+06 +Plasma_alpha_thermal_velocity_at_point_151_______________________________ (vel_plasma_alpha_thermal_profile151)_ 1.04768386349299131e+06 +Plasma_alpha_thermal_velocity_at_point_152_______________________________ (vel_plasma_alpha_thermal_profile152)_ 1.04680274545591697e+06 +Plasma_alpha_thermal_velocity_at_point_153_______________________________ (vel_plasma_alpha_thermal_profile153)_ 1.04591567578195035e+06 +Plasma_alpha_thermal_velocity_at_point_154_______________________________ (vel_plasma_alpha_thermal_profile154)_ 1.04502265196163242e+06 +Plasma_alpha_thermal_velocity_at_point_155_______________________________ (vel_plasma_alpha_thermal_profile155)_ 1.04412367148020852e+06 +Plasma_alpha_thermal_velocity_at_point_156_______________________________ (vel_plasma_alpha_thermal_profile156)_ 1.04321873182702647e+06 +Plasma_alpha_thermal_velocity_at_point_157_______________________________ (vel_plasma_alpha_thermal_profile157)_ 1.04230783046669152e+06 +Plasma_alpha_thermal_velocity_at_point_158_______________________________ (vel_plasma_alpha_thermal_profile158)_ 1.04139096488193062e+06 +Plasma_alpha_thermal_velocity_at_point_159_______________________________ (vel_plasma_alpha_thermal_profile159)_ 1.04046813253516727e+06 +Plasma_alpha_thermal_velocity_at_point_160_______________________________ (vel_plasma_alpha_thermal_profile160)_ 1.03953933085388842e+06 +Plasma_alpha_thermal_velocity_at_point_161_______________________________ (vel_plasma_alpha_thermal_profile161)_ 1.03860455731200322e+06 +Plasma_alpha_thermal_velocity_at_point_162_______________________________ (vel_plasma_alpha_thermal_profile162)_ 1.03766380934336165e+06 +Plasma_alpha_thermal_velocity_at_point_163_______________________________ (vel_plasma_alpha_thermal_profile163)_ 1.03671708435586328e+06 +Plasma_alpha_thermal_velocity_at_point_164_______________________________ (vel_plasma_alpha_thermal_profile164)_ 1.03576437980344181e+06 +Plasma_alpha_thermal_velocity_at_point_165_______________________________ (vel_plasma_alpha_thermal_profile165)_ 1.03480569308488176e+06 +Plasma_alpha_thermal_velocity_at_point_166_______________________________ (vel_plasma_alpha_thermal_profile166)_ 1.03384102162062679e+06 +Plasma_alpha_thermal_velocity_at_point_167_______________________________ (vel_plasma_alpha_thermal_profile167)_ 1.03287036284306971e+06 +Plasma_alpha_thermal_velocity_at_point_168_______________________________ (vel_plasma_alpha_thermal_profile168)_ 1.03189371414327563e+06 +Plasma_alpha_thermal_velocity_at_point_169_______________________________ (vel_plasma_alpha_thermal_profile169)_ 1.03091107288999401e+06 +Plasma_alpha_thermal_velocity_at_point_170_______________________________ (vel_plasma_alpha_thermal_profile170)_ 1.02992243652143853e+06 +Plasma_alpha_thermal_velocity_at_point_171_______________________________ (vel_plasma_alpha_thermal_profile171)_ 1.02892780240485328e+06 +Plasma_alpha_thermal_velocity_at_point_172_______________________________ (vel_plasma_alpha_thermal_profile172)_ 1.02792716793794290e+06 +Plasma_alpha_thermal_velocity_at_point_173_______________________________ (vel_plasma_alpha_thermal_profile173)_ 1.02692053048085107e+06 +Plasma_alpha_thermal_velocity_at_point_174_______________________________ (vel_plasma_alpha_thermal_profile174)_ 1.02590788745794899e+06 +Plasma_alpha_thermal_velocity_at_point_175_______________________________ (vel_plasma_alpha_thermal_profile175)_ 1.02488923622169672e+06 +Plasma_alpha_thermal_velocity_at_point_176_______________________________ (vel_plasma_alpha_thermal_profile176)_ 1.02386457416908036e+06 +Plasma_alpha_thermal_velocity_at_point_177_______________________________ (vel_plasma_alpha_thermal_profile177)_ 1.02283389866363688e+06 +Plasma_alpha_thermal_velocity_at_point_178_______________________________ (vel_plasma_alpha_thermal_profile178)_ 1.02179720705466229e+06 +Plasma_alpha_thermal_velocity_at_point_179_______________________________ (vel_plasma_alpha_thermal_profile179)_ 1.02075449676496105e+06 +Plasma_alpha_thermal_velocity_at_point_180_______________________________ (vel_plasma_alpha_thermal_profile180)_ 1.01970576513450209e+06 +Plasma_alpha_thermal_velocity_at_point_181_______________________________ (vel_plasma_alpha_thermal_profile181)_ 1.01865100953738333e+06 +Plasma_alpha_thermal_velocity_at_point_182_______________________________ (vel_plasma_alpha_thermal_profile182)_ 1.01759022736224090e+06 +Plasma_alpha_thermal_velocity_at_point_183_______________________________ (vel_plasma_alpha_thermal_profile183)_ 1.01652341599253775e+06 +Plasma_alpha_thermal_velocity_at_point_184_______________________________ (vel_plasma_alpha_thermal_profile184)_ 1.01545057278672862e+06 +Plasma_alpha_thermal_velocity_at_point_185_______________________________ (vel_plasma_alpha_thermal_profile185)_ 1.01437169511240034e+06 +Plasma_alpha_thermal_velocity_at_point_186_______________________________ (vel_plasma_alpha_thermal_profile186)_ 1.01328678039540001e+06 +Plasma_alpha_thermal_velocity_at_point_187_______________________________ (vel_plasma_alpha_thermal_profile187)_ 1.01219582598690956e+06 +Plasma_alpha_thermal_velocity_at_point_188_______________________________ (vel_plasma_alpha_thermal_profile188)_ 1.01109882927637699e+06 +Plasma_alpha_thermal_velocity_at_point_189_______________________________ (vel_plasma_alpha_thermal_profile189)_ 1.00999578765698825e+06 +Plasma_alpha_thermal_velocity_at_point_190_______________________________ (vel_plasma_alpha_thermal_profile190)_ 1.00888669852058624e+06 +Plasma_alpha_thermal_velocity_at_point_191_______________________________ (vel_plasma_alpha_thermal_profile191)_ 1.00777155928226095e+06 +Plasma_alpha_thermal_velocity_at_point_192_______________________________ (vel_plasma_alpha_thermal_profile192)_ 1.00665036735058436e+06 +Plasma_alpha_thermal_velocity_at_point_193_______________________________ (vel_plasma_alpha_thermal_profile193)_ 1.00552312012245727e+06 +Plasma_alpha_thermal_velocity_at_point_194_______________________________ (vel_plasma_alpha_thermal_profile194)_ 1.00438981503752712e+06 +Plasma_alpha_thermal_velocity_at_point_195_______________________________ (vel_plasma_alpha_thermal_profile195)_ 1.00325044951859862e+06 +Plasma_alpha_thermal_velocity_at_point_196_______________________________ (vel_plasma_alpha_thermal_profile196)_ 1.00210502098133997e+06 +Plasma_alpha_thermal_velocity_at_point_197_______________________________ (vel_plasma_alpha_thermal_profile197)_ 1.00095352688392857e+06 +Plasma_alpha_thermal_velocity_at_point_198_______________________________ (vel_plasma_alpha_thermal_profile198)_ 9.99795964687220287e+05 +Plasma_alpha_thermal_velocity_at_point_199_______________________________ (vel_plasma_alpha_thermal_profile199)_ 9.98632331854610355e+05 +Plasma_alpha_thermal_velocity_at_point_200_______________________________ (vel_plasma_alpha_thermal_profile200)_ 9.97462625856895000e+05 +Plasma_alpha_thermal_velocity_at_point_201_______________________________ (vel_plasma_alpha_thermal_profile201)_ 9.96286844187184470e+05 +Plasma_alpha_thermal_velocity_at_point_202_______________________________ (vel_plasma_alpha_thermal_profile202)_ 9.95104984325784841e+05 +Plasma_alpha_thermal_velocity_at_point_203_______________________________ (vel_plasma_alpha_thermal_profile203)_ 9.93917043800204294e+05 +Plasma_alpha_thermal_velocity_at_point_204_______________________________ (vel_plasma_alpha_thermal_profile204)_ 9.92723020119949360e+05 +Plasma_alpha_thermal_velocity_at_point_205_______________________________ (vel_plasma_alpha_thermal_profile205)_ 9.91522910846707760e+05 +Plasma_alpha_thermal_velocity_at_point_206_______________________________ (vel_plasma_alpha_thermal_profile206)_ 9.90316713539097342e+05 +Plasma_alpha_thermal_velocity_at_point_207_______________________________ (vel_plasma_alpha_thermal_profile207)_ 9.89104425722232671e+05 +Plasma_alpha_thermal_velocity_at_point_208_______________________________ (vel_plasma_alpha_thermal_profile208)_ 9.87886045013624942e+05 +Plasma_alpha_thermal_velocity_at_point_209_______________________________ (vel_plasma_alpha_thermal_profile209)_ 9.86661569037640584e+05 +Plasma_alpha_thermal_velocity_at_point_210_______________________________ (vel_plasma_alpha_thermal_profile210)_ 9.85430995379832224e+05 +Plasma_alpha_thermal_velocity_at_point_211_______________________________ (vel_plasma_alpha_thermal_profile211)_ 9.84194321723415749e+05 +Plasma_alpha_thermal_velocity_at_point_212_______________________________ (vel_plasma_alpha_thermal_profile212)_ 9.82951545697468915e+05 +Plasma_alpha_thermal_velocity_at_point_213_______________________________ (vel_plasma_alpha_thermal_profile213)_ 9.81702664967921213e+05 +Plasma_alpha_thermal_velocity_at_point_214_______________________________ (vel_plasma_alpha_thermal_profile214)_ 9.80447677308881655e+05 +Plasma_alpha_thermal_velocity_at_point_215_______________________________ (vel_plasma_alpha_thermal_profile215)_ 9.79186580379004590e+05 +Plasma_alpha_thermal_velocity_at_point_216_______________________________ (vel_plasma_alpha_thermal_profile216)_ 9.77919371990993619e+05 +Plasma_alpha_thermal_velocity_at_point_217_______________________________ (vel_plasma_alpha_thermal_profile217)_ 9.76646049897908000e+05 +Plasma_alpha_thermal_velocity_at_point_218_______________________________ (vel_plasma_alpha_thermal_profile218)_ 9.75366611869360204e+05 +Plasma_alpha_thermal_velocity_at_point_219_______________________________ (vel_plasma_alpha_thermal_profile219)_ 9.74081055814408930e+05 +Plasma_alpha_thermal_velocity_at_point_220_______________________________ (vel_plasma_alpha_thermal_profile220)_ 9.72789379505396588e+05 +Plasma_alpha_thermal_velocity_at_point_221_______________________________ (vel_plasma_alpha_thermal_profile221)_ 9.71491580895306775e+05 +Plasma_alpha_thermal_velocity_at_point_222_______________________________ (vel_plasma_alpha_thermal_profile222)_ 9.70187657866858994e+05 +Plasma_alpha_thermal_velocity_at_point_223_______________________________ (vel_plasma_alpha_thermal_profile223)_ 9.68877608417281066e+05 +Plasma_alpha_thermal_velocity_at_point_224_______________________________ (vel_plasma_alpha_thermal_profile224)_ 9.67561430478481809e+05 +Plasma_alpha_thermal_velocity_at_point_225_______________________________ (vel_plasma_alpha_thermal_profile225)_ 9.66239122092033038e+05 +Plasma_alpha_thermal_velocity_at_point_226_______________________________ (vel_plasma_alpha_thermal_profile226)_ 9.64910681327064405e+05 +Plasma_alpha_thermal_velocity_at_point_227_______________________________ (vel_plasma_alpha_thermal_profile227)_ 9.63576106249263743e+05 +Plasma_alpha_thermal_velocity_at_point_228_______________________________ (vel_plasma_alpha_thermal_profile228)_ 9.62235394993318827e+05 +Plasma_alpha_thermal_velocity_at_point_229_______________________________ (vel_plasma_alpha_thermal_profile229)_ 9.60888545706163161e+05 +Plasma_alpha_thermal_velocity_at_point_230_______________________________ (vel_plasma_alpha_thermal_profile230)_ 9.59535556630135165e+05 +Plasma_alpha_thermal_velocity_at_point_231_______________________________ (vel_plasma_alpha_thermal_profile231)_ 9.58176426009812159e+05 +Plasma_alpha_thermal_velocity_at_point_232_______________________________ (vel_plasma_alpha_thermal_profile232)_ 9.56811152144056978e+05 +Plasma_alpha_thermal_velocity_at_point_233_______________________________ (vel_plasma_alpha_thermal_profile233)_ 9.55439733334076707e+05 +Plasma_alpha_thermal_velocity_at_point_234_______________________________ (vel_plasma_alpha_thermal_profile234)_ 9.54062167998374673e+05 +Plasma_alpha_thermal_velocity_at_point_235_______________________________ (vel_plasma_alpha_thermal_profile235)_ 9.52678454542570631e+05 +Plasma_alpha_thermal_velocity_at_point_236_______________________________ (vel_plasma_alpha_thermal_profile236)_ 9.51288591458850540e+05 +Plasma_alpha_thermal_velocity_at_point_237_______________________________ (vel_plasma_alpha_thermal_profile237)_ 9.49892577305490500e+05 +Plasma_alpha_thermal_velocity_at_point_238_______________________________ (vel_plasma_alpha_thermal_profile238)_ 9.48490410628347076e+05 +Plasma_alpha_thermal_velocity_at_point_239_______________________________ (vel_plasma_alpha_thermal_profile239)_ 9.47082090087100165e+05 +Plasma_alpha_thermal_velocity_at_point_240_______________________________ (vel_plasma_alpha_thermal_profile240)_ 9.45667614387423964e+05 +Plasma_alpha_thermal_velocity_at_point_241_______________________________ (vel_plasma_alpha_thermal_profile241)_ 9.44246982260112651e+05 +Plasma_alpha_thermal_velocity_at_point_242_______________________________ (vel_plasma_alpha_thermal_profile242)_ 9.42820192529976019e+05 +Plasma_alpha_thermal_velocity_at_point_243_______________________________ (vel_plasma_alpha_thermal_profile243)_ 9.41387244074074901e+05 +Plasma_alpha_thermal_velocity_at_point_244_______________________________ (vel_plasma_alpha_thermal_profile244)_ 9.39948135822044569e+05 +Plasma_alpha_thermal_velocity_at_point_245_______________________________ (vel_plasma_alpha_thermal_profile245)_ 9.38502866798953153e+05 +Plasma_alpha_thermal_velocity_at_point_246_______________________________ (vel_plasma_alpha_thermal_profile246)_ 9.37051436046107090e+05 +Plasma_alpha_thermal_velocity_at_point_247_______________________________ (vel_plasma_alpha_thermal_profile247)_ 9.35593842711766716e+05 +Plasma_alpha_thermal_velocity_at_point_248_______________________________ (vel_plasma_alpha_thermal_profile248)_ 9.34130086041238741e+05 +Plasma_alpha_thermal_velocity_at_point_249_______________________________ (vel_plasma_alpha_thermal_profile249)_ 9.32660165270599187e+05 +Plasma_alpha_thermal_velocity_at_point_250_______________________________ (vel_plasma_alpha_thermal_profile250)_ 9.31184079808734590e+05 +Plasma_alpha_thermal_velocity_at_point_251_______________________________ (vel_plasma_alpha_thermal_profile251)_ 9.29701829061579891e+05 +Plasma_alpha_thermal_velocity_at_point_252_______________________________ (vel_plasma_alpha_thermal_profile252)_ 9.28213412566429586e+05 +Plasma_alpha_thermal_velocity_at_point_253_______________________________ (vel_plasma_alpha_thermal_profile253)_ 9.26718829933736939e+05 +Plasma_alpha_thermal_velocity_at_point_254_______________________________ (vel_plasma_alpha_thermal_profile254)_ 9.25218080826107995e+05 +Plasma_alpha_thermal_velocity_at_point_255_______________________________ (vel_plasma_alpha_thermal_profile255)_ 9.23711165045118658e+05 +Plasma_alpha_thermal_velocity_at_point_256_______________________________ (vel_plasma_alpha_thermal_profile256)_ 9.22198082456692238e+05 +Plasma_alpha_thermal_velocity_at_point_257_______________________________ (vel_plasma_alpha_thermal_profile257)_ 9.20678832991616800e+05 +Plasma_alpha_thermal_velocity_at_point_258_______________________________ (vel_plasma_alpha_thermal_profile258)_ 9.19153416732922313e+05 +Plasma_alpha_thermal_velocity_at_point_259_______________________________ (vel_plasma_alpha_thermal_profile259)_ 9.17621833846464171e+05 +Plasma_alpha_thermal_velocity_at_point_260_______________________________ (vel_plasma_alpha_thermal_profile260)_ 9.16084084554394474e+05 +Plasma_alpha_thermal_velocity_at_point_261_______________________________ (vel_plasma_alpha_thermal_profile261)_ 9.14540169239298790e+05 +Plasma_alpha_thermal_velocity_at_point_262_______________________________ (vel_plasma_alpha_thermal_profile262)_ 9.12990088347210898e+05 +Plasma_alpha_thermal_velocity_at_point_263_______________________________ (vel_plasma_alpha_thermal_profile263)_ 9.11433842475763056e+05 +Plasma_alpha_thermal_velocity_at_point_264_______________________________ (vel_plasma_alpha_thermal_profile264)_ 9.09871432298751199e+05 +Plasma_alpha_thermal_velocity_at_point_265_______________________________ (vel_plasma_alpha_thermal_profile265)_ 9.08302858638239093e+05 +Plasma_alpha_thermal_velocity_at_point_266_______________________________ (vel_plasma_alpha_thermal_profile266)_ 9.06728122383357491e+05 +Plasma_alpha_thermal_velocity_at_point_267_______________________________ (vel_plasma_alpha_thermal_profile267)_ 9.05147224634255399e+05 +Plasma_alpha_thermal_velocity_at_point_268_______________________________ (vel_plasma_alpha_thermal_profile268)_ 9.03560166543887462e+05 +Plasma_alpha_thermal_velocity_at_point_269_______________________________ (vel_plasma_alpha_thermal_profile269)_ 9.01966949384931708e+05 +Plasma_alpha_thermal_velocity_at_point_270_______________________________ (vel_plasma_alpha_thermal_profile270)_ 9.00367574634049786e+05 +Plasma_alpha_thermal_velocity_at_point_271_______________________________ (vel_plasma_alpha_thermal_profile271)_ 8.98762043840569910e+05 +Plasma_alpha_thermal_velocity_at_point_272_______________________________ (vel_plasma_alpha_thermal_profile272)_ 8.97150358744023019e+05 +Plasma_alpha_thermal_velocity_at_point_273_______________________________ (vel_plasma_alpha_thermal_profile273)_ 8.95532521214685519e+05 +Plasma_alpha_thermal_velocity_at_point_274_______________________________ (vel_plasma_alpha_thermal_profile274)_ 8.93908533204655279e+05 +Plasma_alpha_thermal_velocity_at_point_275_______________________________ (vel_plasma_alpha_thermal_profile275)_ 8.92278396916470840e+05 +Plasma_alpha_thermal_velocity_at_point_276_______________________________ (vel_plasma_alpha_thermal_profile276)_ 8.90642114671105868e+05 +Plasma_alpha_thermal_velocity_at_point_277_______________________________ (vel_plasma_alpha_thermal_profile277)_ 8.88999688954112469e+05 +Plasma_alpha_thermal_velocity_at_point_278_______________________________ (vel_plasma_alpha_thermal_profile278)_ 8.87351122394819744e+05 +Plasma_alpha_thermal_velocity_at_point_279_______________________________ (vel_plasma_alpha_thermal_profile279)_ 8.85696417812914005e+05 +Plasma_alpha_thermal_velocity_at_point_280_______________________________ (vel_plasma_alpha_thermal_profile280)_ 8.84035578192191198e+05 +Plasma_alpha_thermal_velocity_at_point_281_______________________________ (vel_plasma_alpha_thermal_profile281)_ 8.82368606716228649e+05 +Plasma_alpha_thermal_velocity_at_point_282_______________________________ (vel_plasma_alpha_thermal_profile282)_ 8.80695506759160664e+05 +Plasma_alpha_thermal_velocity_at_point_283_______________________________ (vel_plasma_alpha_thermal_profile283)_ 8.79016281836638227e+05 +Plasma_alpha_thermal_velocity_at_point_284_______________________________ (vel_plasma_alpha_thermal_profile284)_ 8.77330935692725005e+05 +Plasma_alpha_thermal_velocity_at_point_285_______________________________ (vel_plasma_alpha_thermal_profile285)_ 8.75639472273860243e+05 +Plasma_alpha_thermal_velocity_at_point_286_______________________________ (vel_plasma_alpha_thermal_profile286)_ 8.73941895725377719e+05 +Plasma_alpha_thermal_velocity_at_point_287_______________________________ (vel_plasma_alpha_thermal_profile287)_ 8.72238210410884814e+05 +Plasma_alpha_thermal_velocity_at_point_288_______________________________ (vel_plasma_alpha_thermal_profile288)_ 8.70528420897503733e+05 +Plasma_alpha_thermal_velocity_at_point_289_______________________________ (vel_plasma_alpha_thermal_profile289)_ 8.68812531969672418e+05 +Plasma_alpha_thermal_velocity_at_point_290_______________________________ (vel_plasma_alpha_thermal_profile290)_ 8.67090548694916419e+05 +Plasma_alpha_thermal_velocity_at_point_291_______________________________ (vel_plasma_alpha_thermal_profile291)_ 8.65362476259817486e+05 +Plasma_alpha_thermal_velocity_at_point_292_______________________________ (vel_plasma_alpha_thermal_profile292)_ 8.63628320248858421e+05 +Plasma_alpha_thermal_velocity_at_point_293_______________________________ (vel_plasma_alpha_thermal_profile293)_ 8.61888086353588849e+05 +Plasma_alpha_thermal_velocity_at_point_294_______________________________ (vel_plasma_alpha_thermal_profile294)_ 8.60141780577118276e+05 +Plasma_alpha_thermal_velocity_at_point_295_______________________________ (vel_plasma_alpha_thermal_profile295)_ 8.58389409220262780e+05 +Plasma_alpha_thermal_velocity_at_point_296_______________________________ (vel_plasma_alpha_thermal_profile296)_ 8.56630978803487844e+05 +Plasma_alpha_thermal_velocity_at_point_297_______________________________ (vel_plasma_alpha_thermal_profile297)_ 8.54866496122148354e+05 +Plasma_alpha_thermal_velocity_at_point_298_______________________________ (vel_plasma_alpha_thermal_profile298)_ 8.53095968267347314e+05 +Plasma_alpha_thermal_velocity_at_point_299_______________________________ (vel_plasma_alpha_thermal_profile299)_ 8.51319402617784333e+05 +Plasma_alpha_thermal_velocity_at_point_300_______________________________ (vel_plasma_alpha_thermal_profile300)_ 8.49536806866768165e+05 +Plasma_alpha_thermal_velocity_at_point_301_______________________________ (vel_plasma_alpha_thermal_profile301)_ 8.47748189002520754e+05 +Plasma_alpha_thermal_velocity_at_point_302_______________________________ (vel_plasma_alpha_thermal_profile302)_ 8.45953557323647197e+05 +Plasma_alpha_thermal_velocity_at_point_303_______________________________ (vel_plasma_alpha_thermal_profile303)_ 8.44152920448927791e+05 +Plasma_alpha_thermal_velocity_at_point_304_______________________________ (vel_plasma_alpha_thermal_profile304)_ 8.42346287356879096e+05 +Plasma_alpha_thermal_velocity_at_point_305_______________________________ (vel_plasma_alpha_thermal_profile305)_ 8.40533667313085520e+05 +Plasma_alpha_thermal_velocity_at_point_306_______________________________ (vel_plasma_alpha_thermal_profile306)_ 8.38715069986974937e+05 +Plasma_alpha_thermal_velocity_at_point_307_______________________________ (vel_plasma_alpha_thermal_profile307)_ 8.36890505373421940e+05 +Plasma_alpha_thermal_velocity_at_point_308_______________________________ (vel_plasma_alpha_thermal_profile308)_ 8.35059983868701500e+05 +Plasma_alpha_thermal_velocity_at_point_309_______________________________ (vel_plasma_alpha_thermal_profile309)_ 8.33223516209762427e+05 +Plasma_alpha_thermal_velocity_at_point_310_______________________________ (vel_plasma_alpha_thermal_profile310)_ 8.31381113568761270e+05 +Plasma_alpha_thermal_velocity_at_point_311_______________________________ (vel_plasma_alpha_thermal_profile311)_ 8.29532787486507907e+05 +Plasma_alpha_thermal_velocity_at_point_312_______________________________ (vel_plasma_alpha_thermal_profile312)_ 8.27678549919589772e+05 +Plasma_alpha_thermal_velocity_at_point_313_______________________________ (vel_plasma_alpha_thermal_profile313)_ 8.25818413251922582e+05 +Plasma_alpha_thermal_velocity_at_point_314_______________________________ (vel_plasma_alpha_thermal_profile314)_ 8.23952390300447354e+05 +Plasma_alpha_thermal_velocity_at_point_315_______________________________ (vel_plasma_alpha_thermal_profile315)_ 8.22080494333084323e+05 +Plasma_alpha_thermal_velocity_at_point_316_______________________________ (vel_plasma_alpha_thermal_profile316)_ 8.20202739038318512e+05 +Plasma_alpha_thermal_velocity_at_point_317_______________________________ (vel_plasma_alpha_thermal_profile317)_ 8.18319138671216904e+05 +Plasma_alpha_thermal_velocity_at_point_318_______________________________ (vel_plasma_alpha_thermal_profile318)_ 8.16429707865416887e+05 +Plasma_alpha_thermal_velocity_at_point_319_______________________________ (vel_plasma_alpha_thermal_profile319)_ 8.14534461816180497e+05 +Plasma_alpha_thermal_velocity_at_point_320_______________________________ (vel_plasma_alpha_thermal_profile320)_ 8.12633416183642228e+05 +Plasma_alpha_thermal_velocity_at_point_321_______________________________ (vel_plasma_alpha_thermal_profile321)_ 8.10726587185518118e+05 +Plasma_alpha_thermal_velocity_at_point_322_______________________________ (vel_plasma_alpha_thermal_profile322)_ 8.08813991604819894e+05 +Plasma_alpha_thermal_velocity_at_point_323_______________________________ (vel_plasma_alpha_thermal_profile323)_ 8.06895646692622802e+05 +Plasma_alpha_thermal_velocity_at_point_324_______________________________ (vel_plasma_alpha_thermal_profile324)_ 8.04971570360796526e+05 +Plasma_alpha_thermal_velocity_at_point_325_______________________________ (vel_plasma_alpha_thermal_profile325)_ 8.03041781029645586e+05 +Plasma_alpha_thermal_velocity_at_point_326_______________________________ (vel_plasma_alpha_thermal_profile326)_ 8.01106297797254054e+05 +Plasma_alpha_thermal_velocity_at_point_327_______________________________ (vel_plasma_alpha_thermal_profile327)_ 7.99165140349143650e+05 +Plasma_alpha_thermal_velocity_at_point_328_______________________________ (vel_plasma_alpha_thermal_profile328)_ 7.97218328935519443e+05 +Plasma_alpha_thermal_velocity_at_point_329_______________________________ (vel_plasma_alpha_thermal_profile329)_ 7.95265884586627479e+05 +Plasma_alpha_thermal_velocity_at_point_330_______________________________ (vel_plasma_alpha_thermal_profile330)_ 7.93307828922575573e+05 +Plasma_alpha_thermal_velocity_at_point_331_______________________________ (vel_plasma_alpha_thermal_profile331)_ 7.91344184256714419e+05 +Plasma_alpha_thermal_velocity_at_point_332_______________________________ (vel_plasma_alpha_thermal_profile332)_ 7.89374973650060361e+05 +Plasma_alpha_thermal_velocity_at_point_333_______________________________ (vel_plasma_alpha_thermal_profile333)_ 7.87400220871563070e+05 +Plasma_alpha_thermal_velocity_at_point_334_______________________________ (vel_plasma_alpha_thermal_profile334)_ 7.85419950402307673e+05 +Plasma_alpha_thermal_velocity_at_point_335_______________________________ (vel_plasma_alpha_thermal_profile335)_ 7.83434187592688017e+05 +Plasma_alpha_thermal_velocity_at_point_336_______________________________ (vel_plasma_alpha_thermal_profile336)_ 7.81442958470904268e+05 +Plasma_alpha_thermal_velocity_at_point_337_______________________________ (vel_plasma_alpha_thermal_profile337)_ 7.79446289990256657e+05 +Plasma_alpha_thermal_velocity_at_point_338_______________________________ (vel_plasma_alpha_thermal_profile338)_ 7.77444209831111482e+05 +Plasma_alpha_thermal_velocity_at_point_339_______________________________ (vel_plasma_alpha_thermal_profile339)_ 7.75436746637386153e+05 +Plasma_alpha_thermal_velocity_at_point_340_______________________________ (vel_plasma_alpha_thermal_profile340)_ 7.73423929889103980e+05 +Plasma_alpha_thermal_velocity_at_point_341_______________________________ (vel_plasma_alpha_thermal_profile341)_ 7.71405789999403059e+05 +Plasma_alpha_thermal_velocity_at_point_342_______________________________ (vel_plasma_alpha_thermal_profile342)_ 7.69382358289944590e+05 +Plasma_alpha_thermal_velocity_at_point_343_______________________________ (vel_plasma_alpha_thermal_profile343)_ 7.67353667057039682e+05 +Plasma_alpha_thermal_velocity_at_point_344_______________________________ (vel_plasma_alpha_thermal_profile344)_ 7.65319749645431177e+05 +Plasma_alpha_thermal_velocity_at_point_345_______________________________ (vel_plasma_alpha_thermal_profile345)_ 7.63280640333787887e+05 +Plasma_alpha_thermal_velocity_at_point_346_______________________________ (vel_plasma_alpha_thermal_profile346)_ 7.61236374546146020e+05 +Plasma_alpha_thermal_velocity_at_point_347_______________________________ (vel_plasma_alpha_thermal_profile347)_ 7.59186988718556589e+05 +Plasma_alpha_thermal_velocity_at_point_348_______________________________ (vel_plasma_alpha_thermal_profile348)_ 7.57132520427241223e+05 +Plasma_alpha_thermal_velocity_at_point_349_______________________________ (vel_plasma_alpha_thermal_profile349)_ 7.55073008399996441e+05 +Plasma_alpha_thermal_velocity_at_point_350_______________________________ (vel_plasma_alpha_thermal_profile350)_ 7.53008492547757342e+05 +Plasma_alpha_thermal_velocity_at_point_351_______________________________ (vel_plasma_alpha_thermal_profile351)_ 7.50939013976848335e+05 +Plasma_alpha_thermal_velocity_at_point_352_______________________________ (vel_plasma_alpha_thermal_profile352)_ 7.48864615074817673e+05 +Plasma_alpha_thermal_velocity_at_point_353_______________________________ (vel_plasma_alpha_thermal_profile353)_ 7.46785339510951890e+05 +Plasma_alpha_thermal_velocity_at_point_354_______________________________ (vel_plasma_alpha_thermal_profile354)_ 7.44701232236901764e+05 +Plasma_alpha_thermal_velocity_at_point_355_______________________________ (vel_plasma_alpha_thermal_profile355)_ 7.42612339635220123e+05 +Plasma_alpha_thermal_velocity_at_point_356_______________________________ (vel_plasma_alpha_thermal_profile356)_ 7.40518709461662220e+05 +Plasma_alpha_thermal_velocity_at_point_357_______________________________ (vel_plasma_alpha_thermal_profile357)_ 7.38420390908225207e+05 +Plasma_alpha_thermal_velocity_at_point_358_______________________________ (vel_plasma_alpha_thermal_profile358)_ 7.36317434714800329e+05 +Plasma_alpha_thermal_velocity_at_point_359_______________________________ (vel_plasma_alpha_thermal_profile359)_ 7.34209893106176285e+05 +Plasma_alpha_thermal_velocity_at_point_360_______________________________ (vel_plasma_alpha_thermal_profile360)_ 7.32097819905248121e+05 +Plasma_alpha_thermal_velocity_at_point_361_______________________________ (vel_plasma_alpha_thermal_profile361)_ 7.29981270579949371e+05 +Plasma_alpha_thermal_velocity_at_point_362_______________________________ (vel_plasma_alpha_thermal_profile362)_ 7.27860302270553075e+05 +Plasma_alpha_thermal_velocity_at_point_363_______________________________ (vel_plasma_alpha_thermal_profile363)_ 7.25734973845056025e+05 +Plasma_alpha_thermal_velocity_at_point_364_______________________________ (vel_plasma_alpha_thermal_profile364)_ 7.23605345955649274e+05 +Plasma_alpha_thermal_velocity_at_point_365_______________________________ (vel_plasma_alpha_thermal_profile365)_ 7.21471481165449601e+05 +Plasma_alpha_thermal_velocity_at_point_366_______________________________ (vel_plasma_alpha_thermal_profile366)_ 7.19333443786297110e+05 +Plasma_alpha_thermal_velocity_at_point_367_______________________________ (vel_plasma_alpha_thermal_profile367)_ 7.17191300235492992e+05 +Plasma_alpha_thermal_velocity_at_point_368_______________________________ (vel_plasma_alpha_thermal_profile368)_ 7.15045118910642224e+05 +Plasma_alpha_thermal_velocity_at_point_369_______________________________ (vel_plasma_alpha_thermal_profile369)_ 7.12894970223311801e+05 +Plasma_alpha_thermal_velocity_at_point_370_______________________________ (vel_plasma_alpha_thermal_profile370)_ 7.10740926787833450e+05 +Plasma_alpha_thermal_velocity_at_point_371_______________________________ (vel_plasma_alpha_thermal_profile371)_ 7.08583063465791522e+05 +Plasma_alpha_thermal_velocity_at_point_372_______________________________ (vel_plasma_alpha_thermal_profile372)_ 7.06421457340810332e+05 +Plasma_alpha_thermal_velocity_at_point_373_______________________________ (vel_plasma_alpha_thermal_profile373)_ 7.04256187848827452e+05 +Plasma_alpha_thermal_velocity_at_point_374_______________________________ (vel_plasma_alpha_thermal_profile374)_ 7.02087336946403608e+05 +Plasma_alpha_thermal_velocity_at_point_375_______________________________ (vel_plasma_alpha_thermal_profile375)_ 6.99914988968621590e+05 +Plasma_alpha_thermal_velocity_at_point_376_______________________________ (vel_plasma_alpha_thermal_profile376)_ 6.97739230992094032e+05 +Plasma_alpha_thermal_velocity_at_point_377_______________________________ (vel_plasma_alpha_thermal_profile377)_ 6.95560152631051722e+05 +Plasma_alpha_thermal_velocity_at_point_378_______________________________ (vel_plasma_alpha_thermal_profile378)_ 6.93377846347731771e+05 +Plasma_alpha_thermal_velocity_at_point_379_______________________________ (vel_plasma_alpha_thermal_profile379)_ 6.91192407436686684e+05 +Plasma_alpha_thermal_velocity_at_point_380_______________________________ (vel_plasma_alpha_thermal_profile380)_ 6.89003934074035264e+05 +Plasma_alpha_thermal_velocity_at_point_381_______________________________ (vel_plasma_alpha_thermal_profile381)_ 6.86812527600166737e+05 +Plasma_alpha_thermal_velocity_at_point_382_______________________________ (vel_plasma_alpha_thermal_profile382)_ 6.84618292399831815e+05 +Plasma_alpha_thermal_velocity_at_point_383_______________________________ (vel_plasma_alpha_thermal_profile383)_ 6.82421336101644905e+05 +Plasma_alpha_thermal_velocity_at_point_384_______________________________ (vel_plasma_alpha_thermal_profile384)_ 6.80221769788817503e+05 +Plasma_alpha_thermal_velocity_at_point_385_______________________________ (vel_plasma_alpha_thermal_profile385)_ 6.78019707882890245e+05 +Plasma_alpha_thermal_velocity_at_point_386_______________________________ (vel_plasma_alpha_thermal_profile386)_ 6.75815268475525663e+05 +Plasma_alpha_thermal_velocity_at_point_387_______________________________ (vel_plasma_alpha_thermal_profile387)_ 6.73608573340918985e+05 +Plasma_alpha_thermal_velocity_at_point_388_______________________________ (vel_plasma_alpha_thermal_profile388)_ 6.71399748089623172e+05 +Plasma_alpha_thermal_velocity_at_point_389_______________________________ (vel_plasma_alpha_thermal_profile389)_ 6.69188922288102447e+05 +Plasma_alpha_thermal_velocity_at_point_390_______________________________ (vel_plasma_alpha_thermal_profile390)_ 6.66976229625486769e+05 +Plasma_alpha_thermal_velocity_at_point_391_______________________________ (vel_plasma_alpha_thermal_profile391)_ 6.64761807993515977e+05 +Plasma_alpha_thermal_velocity_at_point_392_______________________________ (vel_plasma_alpha_thermal_profile392)_ 6.62545799688467639e+05 +Plasma_alpha_thermal_velocity_at_point_393_______________________________ (vel_plasma_alpha_thermal_profile393)_ 6.60328351586799603e+05 +Plasma_alpha_thermal_velocity_at_point_394_______________________________ (vel_plasma_alpha_thermal_profile394)_ 6.58109615195310442e+05 +Plasma_alpha_thermal_velocity_at_point_395_______________________________ (vel_plasma_alpha_thermal_profile395)_ 6.55889746991181746e+05 +Plasma_alpha_thermal_velocity_at_point_396_______________________________ (vel_plasma_alpha_thermal_profile396)_ 6.53668908425266156e+05 +Plasma_alpha_thermal_velocity_at_point_397_______________________________ (vel_plasma_alpha_thermal_profile397)_ 6.51447266185572604e+05 +Plasma_alpha_thermal_velocity_at_point_398_______________________________ (vel_plasma_alpha_thermal_profile398)_ 6.49224992412066669e+05 +Plasma_alpha_thermal_velocity_at_point_399_______________________________ (vel_plasma_alpha_thermal_profile399)_ 6.47002264815309900e+05 +Plasma_alpha_thermal_velocity_at_point_400_______________________________ (vel_plasma_alpha_thermal_profile400)_ 6.44779266975123202e+05 +Plasma_alpha_thermal_velocity_at_point_401_______________________________ (vel_plasma_alpha_thermal_profile401)_ 6.42556188489715685e+05 +Plasma_alpha_thermal_velocity_at_point_402_______________________________ (vel_plasma_alpha_thermal_profile402)_ 6.40333225181949907e+05 +Plasma_alpha_thermal_velocity_at_point_403_______________________________ (vel_plasma_alpha_thermal_profile403)_ 6.38110579418809852e+05 +Plasma_alpha_thermal_velocity_at_point_404_______________________________ (vel_plasma_alpha_thermal_profile404)_ 6.35888460311391507e+05 +Plasma_alpha_thermal_velocity_at_point_405_______________________________ (vel_plasma_alpha_thermal_profile405)_ 6.33667083918384160e+05 +Plasma_alpha_thermal_velocity_at_point_406_______________________________ (vel_plasma_alpha_thermal_profile406)_ 6.31446673674274003e+05 +Plasma_alpha_thermal_velocity_at_point_407_______________________________ (vel_plasma_alpha_thermal_profile407)_ 6.29227460492704995e+05 +Plasma_alpha_thermal_velocity_at_point_408_______________________________ (vel_plasma_alpha_thermal_profile408)_ 6.27009683109748526e+05 +Plasma_alpha_thermal_velocity_at_point_409_______________________________ (vel_plasma_alpha_thermal_profile409)_ 6.24793588473306852e+05 +Plasma_alpha_thermal_velocity_at_point_410_______________________________ (vel_plasma_alpha_thermal_profile410)_ 6.22579432035432896e+05 +Plasma_alpha_thermal_velocity_at_point_411_______________________________ (vel_plasma_alpha_thermal_profile411)_ 6.20367478017383721e+05 +Plasma_alpha_thermal_velocity_at_point_412_______________________________ (vel_plasma_alpha_thermal_profile412)_ 6.18157999920994160e+05 +Plasma_alpha_thermal_velocity_at_point_413_______________________________ (vel_plasma_alpha_thermal_profile413)_ 6.15951280725405901e+05 +Plasma_alpha_thermal_velocity_at_point_414_______________________________ (vel_plasma_alpha_thermal_profile414)_ 6.13747613427627599e+05 +Plasma_alpha_thermal_velocity_at_point_415_______________________________ (vel_plasma_alpha_thermal_profile415)_ 6.11547301388812484e+05 +Plasma_alpha_thermal_velocity_at_point_416_______________________________ (vel_plasma_alpha_thermal_profile416)_ 6.09350658825004939e+05 +Plasma_alpha_thermal_velocity_at_point_417_______________________________ (vel_plasma_alpha_thermal_profile417)_ 6.07158011265004287e+05 +Plasma_alpha_thermal_velocity_at_point_418_______________________________ (vel_plasma_alpha_thermal_profile418)_ 6.04969695982503123e+05 +Plasma_alpha_thermal_velocity_at_point_419_______________________________ (vel_plasma_alpha_thermal_profile419)_ 6.02786062575374031e+05 +Plasma_alpha_thermal_velocity_at_point_420_______________________________ (vel_plasma_alpha_thermal_profile420)_ 6.00607473579253536e+05 +Plasma_alpha_thermal_velocity_at_point_421_______________________________ (vel_plasma_alpha_thermal_profile421)_ 5.98434304899181472e+05 +Plasma_alpha_thermal_velocity_at_point_422_______________________________ (vel_plasma_alpha_thermal_profile422)_ 5.96266946522845421e+05 +Plasma_alpha_thermal_velocity_at_point_423_______________________________ (vel_plasma_alpha_thermal_profile423)_ 5.94105803287083982e+05 +Plasma_alpha_thermal_velocity_at_point_424_______________________________ (vel_plasma_alpha_thermal_profile424)_ 5.91951295293978765e+05 +Plasma_alpha_thermal_velocity_at_point_425_______________________________ (vel_plasma_alpha_thermal_profile425)_ 5.89803859024431673e+05 +Plasma_alpha_thermal_velocity_at_point_426_______________________________ (vel_plasma_alpha_thermal_profile426)_ 5.87663947825156269e+05 +Plasma_alpha_thermal_velocity_at_point_427_______________________________ (vel_plasma_alpha_thermal_profile427)_ 5.85532032877111807e+05 +Plasma_alpha_thermal_velocity_at_point_428_______________________________ (vel_plasma_alpha_thermal_profile428)_ 5.83408604246578761e+05 +Plasma_alpha_thermal_velocity_at_point_429_______________________________ (vel_plasma_alpha_thermal_profile429)_ 5.81294171591049642e+05 +Plasma_alpha_thermal_velocity_at_point_430_______________________________ (vel_plasma_alpha_thermal_profile430)_ 5.79189265466409735e+05 +Plasma_alpha_thermal_velocity_at_point_431_______________________________ (vel_plasma_alpha_thermal_profile431)_ 5.77094438368034549e+05 +Plasma_alpha_thermal_velocity_at_point_432_______________________________ (vel_plasma_alpha_thermal_profile432)_ 5.75010265801592381e+05 +Plasma_alpha_thermal_velocity_at_point_433_______________________________ (vel_plasma_alpha_thermal_profile433)_ 5.72937347940478823e+05 +Plasma_alpha_thermal_velocity_at_point_434_______________________________ (vel_plasma_alpha_thermal_profile434)_ 5.70876310764827766e+05 +Plasma_alpha_thermal_velocity_at_point_435_______________________________ (vel_plasma_alpha_thermal_profile435)_ 5.68827807693606126e+05 +Plasma_alpha_thermal_velocity_at_point_436_______________________________ (vel_plasma_alpha_thermal_profile436)_ 5.66792521412595175e+05 +Plasma_alpha_thermal_velocity_at_point_437_______________________________ (vel_plasma_alpha_thermal_profile437)_ 5.64771165494920569e+05 +Plasma_alpha_thermal_velocity_at_point_438_______________________________ (vel_plasma_alpha_thermal_profile438)_ 5.62764486711057951e+05 +Plasma_alpha_thermal_velocity_at_point_439_______________________________ (vel_plasma_alpha_thermal_profile439)_ 5.60773266966696479e+05 +Plasma_alpha_thermal_velocity_at_point_440_______________________________ (vel_plasma_alpha_thermal_profile440)_ 5.58798326034932164e+05 +Plasma_alpha_thermal_velocity_at_point_441_______________________________ (vel_plasma_alpha_thermal_profile441)_ 5.56840523997424752e+05 +Plasma_alpha_thermal_velocity_at_point_442_______________________________ (vel_plasma_alpha_thermal_profile442)_ 5.54900764606493060e+05 +Plasma_alpha_thermal_velocity_at_point_443_______________________________ (vel_plasma_alpha_thermal_profile443)_ 5.52979998413840425e+05 +Plasma_alpha_thermal_velocity_at_point_444_______________________________ (vel_plasma_alpha_thermal_profile444)_ 5.51079226542635704e+05 +Plasma_alpha_thermal_velocity_at_point_445_______________________________ (vel_plasma_alpha_thermal_profile445)_ 5.49199505104127340e+05 +Plasma_alpha_thermal_velocity_at_point_446_______________________________ (vel_plasma_alpha_thermal_profile446)_ 5.47341949967113207e+05 +Plasma_alpha_thermal_velocity_at_point_447_______________________________ (vel_plasma_alpha_thermal_profile447)_ 5.45507742146419012e+05 +Plasma_alpha_thermal_velocity_at_point_448_______________________________ (vel_plasma_alpha_thermal_profile448)_ 5.43698134210929042e+05 +Plasma_alpha_thermal_velocity_at_point_449_______________________________ (vel_plasma_alpha_thermal_profile449)_ 5.41914457503756275e+05 +Plasma_alpha_thermal_velocity_at_point_450_______________________________ (vel_plasma_alpha_thermal_profile450)_ 5.40158130384173244e+05 +Plasma_alpha_thermal_velocity_at_point_451_______________________________ (vel_plasma_alpha_thermal_profile451)_ 5.38430668167126714e+05 +Plasma_alpha_thermal_velocity_at_point_452_______________________________ (vel_plasma_alpha_thermal_profile452)_ 5.36733694780847873e+05 +Plasma_alpha_thermal_velocity_at_point_453_______________________________ (vel_plasma_alpha_thermal_profile453)_ 5.35068956149529433e+05 +Plasma_alpha_thermal_velocity_at_point_454_______________________________ (vel_plasma_alpha_thermal_profile454)_ 5.33438337023647618e+05 +Plasma_alpha_thermal_velocity_at_point_455_______________________________ (vel_plasma_alpha_thermal_profile455)_ 5.31843880876696436e+05 +Plasma_alpha_thermal_velocity_at_point_456_______________________________ (vel_plasma_alpha_thermal_profile456)_ 5.30287814311411697e+05 +Plasma_alpha_thermal_velocity_at_point_457_______________________________ (vel_plasma_alpha_thermal_profile457)_ 5.28772577996580396e+05 +Plasma_alpha_thermal_velocity_at_point_458_______________________________ (vel_plasma_alpha_thermal_profile458)_ 5.27300865086060483e+05 +Plasma_alpha_thermal_velocity_at_point_459_______________________________ (vel_plasma_alpha_thermal_profile459)_ 5.25875671292808489e+05 +Plasma_alpha_thermal_velocity_at_point_460_______________________________ (vel_plasma_alpha_thermal_profile460)_ 5.24500360417788848e+05 +Plasma_alpha_thermal_velocity_at_point_461_______________________________ (vel_plasma_alpha_thermal_profile461)_ 5.23178752392333583e+05 +Plasma_alpha_thermal_velocity_at_point_462_______________________________ (vel_plasma_alpha_thermal_profile462)_ 5.21915245582326897e+05 +Plasma_alpha_thermal_velocity_at_point_463_______________________________ (vel_plasma_alpha_thermal_profile463)_ 5.20714991815914284e+05 +Plasma_alpha_thermal_velocity_at_point_464_______________________________ (vel_plasma_alpha_thermal_profile464)_ 5.19584158084984461e+05 +Plasma_alpha_thermal_velocity_at_point_465_______________________________ (vel_plasma_alpha_thermal_profile465)_ 5.18530339628311223e+05 +Plasma_alpha_thermal_velocity_at_point_466_______________________________ (vel_plasma_alpha_thermal_profile466)_ 5.17563259815094003e+05 +Plasma_alpha_thermal_velocity_at_point_467_______________________________ (vel_plasma_alpha_thermal_profile467)_ 5.16696079478398606e+05 +Plasma_alpha_thermal_velocity_at_point_468_______________________________ (vel_plasma_alpha_thermal_profile468)_ 5.15948239904165734e+05 +Plasma_alpha_thermal_velocity_at_point_469_______________________________ (vel_plasma_alpha_thermal_profile469)_ 5.15353471152008395e+05 Plasma_alpha_thermal_velocity_at_point_470_______________________________ (vel_plasma_alpha_thermal_profile470)_ 5.15008935086288897e+05 Plasma_alpha_thermal_velocity_at_point_471_______________________________ (vel_plasma_alpha_thermal_profile471)_ 5.06511430977775541e+05 Plasma_alpha_thermal_velocity_at_point_472_______________________________ (vel_plasma_alpha_thermal_profile472)_ 4.97868913406294771e+05 @@ -20738,14073 +20736,14073 @@ Plasma_alpha_thermal_velocity_at_point_498_______________________________ (vel_p Plasma_alpha_thermal_velocity_at_point_499_______________________________ (vel_plasma_alpha_thermal_profile499)_ 1.16201809437440490e+05 Plasma_alpha_thermal_velocity_at_point_500_______________________________ (vel_plasma_alpha_thermal_profile500)_ 6.94438659547848802e+04 Plasma_alpha_birth_velocity_(m/s)________________________________________ (vel_plasma_alpha_birth)_______ 1.30585645401274394e+07 -Volume_averaged_electron_plasma_frequency_(ωₚₑ)_(Hz)_____________________ (freq_plasma_electron_vol_avg)_ 8.09204272237549133e+10 -Plasma_electron_frequency_at_point_0_____________________________________ (freq_plasma_electron_profile0)_ 9.28061099563304596e+10 -Plasma_electron_frequency_at_point_1_____________________________________ (freq_plasma_electron_profile1)_ 9.28060251711748352e+10 -Plasma_electron_frequency_at_point_2_____________________________________ (freq_plasma_electron_profile2)_ 9.28057708152431946e+10 -Plasma_electron_frequency_at_point_3_____________________________________ (freq_plasma_electron_profile3)_ 9.28053468871412964e+10 -Plasma_electron_frequency_at_point_4_____________________________________ (freq_plasma_electron_profile4)_ 9.28047533845453491e+10 -Plasma_electron_frequency_at_point_5_____________________________________ (freq_plasma_electron_profile5)_ 9.28039903042019653e+10 -Plasma_electron_frequency_at_point_6_____________________________________ (freq_plasma_electron_profile6)_ 9.28030576419280090e+10 -Plasma_electron_frequency_at_point_7_____________________________________ (freq_plasma_electron_profile7)_ 9.28019553926105957e+10 -Plasma_electron_frequency_at_point_8_____________________________________ (freq_plasma_electron_profile8)_ 9.28006835502068634e+10 -Plasma_electron_frequency_at_point_9_____________________________________ (freq_plasma_electron_profile9)_ 9.27992421077438354e+10 -Plasma_electron_frequency_at_point_10____________________________________ (freq_plasma_electron_profile10)_ 9.27976310573182068e+10 -Plasma_electron_frequency_at_point_11____________________________________ (freq_plasma_electron_profile11)_ 9.27958503900961914e+10 -Plasma_electron_frequency_at_point_12____________________________________ (freq_plasma_electron_profile12)_ 9.27939000963131866e+10 -Plasma_electron_frequency_at_point_13____________________________________ (freq_plasma_electron_profile13)_ 9.27917801652736206e+10 -Plasma_electron_frequency_at_point_14____________________________________ (freq_plasma_electron_profile14)_ 9.27894905853505096e+10 -Plasma_electron_frequency_at_point_15____________________________________ (freq_plasma_electron_profile15)_ 9.27870313439852905e+10 -Plasma_electron_frequency_at_point_16____________________________________ (freq_plasma_electron_profile16)_ 9.27844024276873932e+10 -Plasma_electron_frequency_at_point_17____________________________________ (freq_plasma_electron_profile17)_ 9.27816038220338440e+10 -Plasma_electron_frequency_at_point_18____________________________________ (freq_plasma_electron_profile18)_ 9.27786355116689758e+10 -Plasma_electron_frequency_at_point_19____________________________________ (freq_plasma_electron_profile19)_ 9.27754974803038788e+10 -Plasma_electron_frequency_at_point_20____________________________________ (freq_plasma_electron_profile20)_ 9.27721897107160797e+10 -Plasma_electron_frequency_at_point_21____________________________________ (freq_plasma_electron_profile21)_ 9.27687121847489624e+10 -Plasma_electron_frequency_at_point_22____________________________________ (freq_plasma_electron_profile22)_ 9.27650648833113251e+10 -Plasma_electron_frequency_at_point_23____________________________________ (freq_plasma_electron_profile23)_ 9.27612477863768463e+10 -Plasma_electron_frequency_at_point_24____________________________________ (freq_plasma_electron_profile24)_ 9.27572608729835052e+10 -Plasma_electron_frequency_at_point_25____________________________________ (freq_plasma_electron_profile25)_ 9.27531041212330933e+10 -Plasma_electron_frequency_at_point_26____________________________________ (freq_plasma_electron_profile26)_ 9.27487775082904663e+10 -Plasma_electron_frequency_at_point_27____________________________________ (freq_plasma_electron_profile27)_ 9.27442810103830566e+10 -Plasma_electron_frequency_at_point_28____________________________________ (freq_plasma_electron_profile28)_ 9.27396146028001709e+10 -Plasma_electron_frequency_at_point_29____________________________________ (freq_plasma_electron_profile29)_ 9.27347782598922577e+10 -Plasma_electron_frequency_at_point_30____________________________________ (freq_plasma_electron_profile30)_ 9.27297719550702972e+10 -Plasma_electron_frequency_at_point_31____________________________________ (freq_plasma_electron_profile31)_ 9.27245956608049316e+10 -Plasma_electron_frequency_at_point_32____________________________________ (freq_plasma_electron_profile32)_ 9.27192493486259003e+10 -Plasma_electron_frequency_at_point_33____________________________________ (freq_plasma_electron_profile33)_ 9.27137329891210785e+10 -Plasma_electron_frequency_at_point_34____________________________________ (freq_plasma_electron_profile34)_ 9.27080465519357147e+10 -Plasma_electron_frequency_at_point_35____________________________________ (freq_plasma_electron_profile35)_ 9.27021900057716980e+10 -Plasma_electron_frequency_at_point_36____________________________________ (freq_plasma_electron_profile36)_ 9.26961633183865356e+10 -Plasma_electron_frequency_at_point_37____________________________________ (freq_plasma_electron_profile37)_ 9.26899664565925446e+10 -Plasma_electron_frequency_at_point_38____________________________________ (freq_plasma_electron_profile38)_ 9.26835993862559662e+10 -Plasma_electron_frequency_at_point_39____________________________________ (freq_plasma_electron_profile39)_ 9.26770620722959595e+10 -Plasma_electron_frequency_at_point_40____________________________________ (freq_plasma_electron_profile40)_ 9.26703544786836548e+10 -Plasma_electron_frequency_at_point_41____________________________________ (freq_plasma_electron_profile41)_ 9.26634765684411316e+10 -Plasma_electron_frequency_at_point_42____________________________________ (freq_plasma_electron_profile42)_ 9.26564283036404572e+10 -Plasma_electron_frequency_at_point_43____________________________________ (freq_plasma_electron_profile43)_ 9.26492096454026184e+10 -Plasma_electron_frequency_at_point_44____________________________________ (freq_plasma_electron_profile44)_ 9.26418205538964081e+10 -Plasma_electron_frequency_at_point_45____________________________________ (freq_plasma_electron_profile45)_ 9.26342609883372955e+10 -Plasma_electron_frequency_at_point_46____________________________________ (freq_plasma_electron_profile46)_ 9.26265309069864349e+10 -Plasma_electron_frequency_at_point_47____________________________________ (freq_plasma_electron_profile47)_ 9.26186302671493073e+10 -Plasma_electron_frequency_at_point_48____________________________________ (freq_plasma_electron_profile48)_ 9.26105590251746979e+10 -Plasma_electron_frequency_at_point_49____________________________________ (freq_plasma_electron_profile49)_ 9.26023171364534912e+10 -Plasma_electron_frequency_at_point_50____________________________________ (freq_plasma_electron_profile50)_ 9.25939045554172668e+10 -Plasma_electron_frequency_at_point_51____________________________________ (freq_plasma_electron_profile51)_ 9.25853212355371552e+10 -Plasma_electron_frequency_at_point_52____________________________________ (freq_plasma_electron_profile52)_ 9.25765671293225555e+10 -Plasma_electron_frequency_at_point_53____________________________________ (freq_plasma_electron_profile53)_ 9.25676421883197632e+10 -Plasma_electron_frequency_at_point_54____________________________________ (freq_plasma_electron_profile54)_ 9.25585463631106262e+10 -Plasma_electron_frequency_at_point_55____________________________________ (freq_plasma_electron_profile55)_ 9.25492796033112183e+10 -Plasma_electron_frequency_at_point_56____________________________________ (freq_plasma_electron_profile56)_ 9.25398418575703278e+10 -Plasma_electron_frequency_at_point_57____________________________________ (freq_plasma_electron_profile57)_ 9.25302330735681763e+10 -Plasma_electron_frequency_at_point_58____________________________________ (freq_plasma_electron_profile58)_ 9.25204531980148010e+10 -Plasma_electron_frequency_at_point_59____________________________________ (freq_plasma_electron_profile59)_ 9.25105021766486664e+10 -Plasma_electron_frequency_at_point_60____________________________________ (freq_plasma_electron_profile60)_ 9.25003799542350769e+10 -Plasma_electron_frequency_at_point_61____________________________________ (freq_plasma_electron_profile61)_ 9.24900864745647888e+10 -Plasma_electron_frequency_at_point_62____________________________________ (freq_plasma_electron_profile62)_ 9.24796216804521942e+10 -Plasma_electron_frequency_at_point_63____________________________________ (freq_plasma_electron_profile63)_ 9.24689855137338562e+10 -Plasma_electron_frequency_at_point_64____________________________________ (freq_plasma_electron_profile64)_ 9.24581779152669525e+10 -Plasma_electron_frequency_at_point_65____________________________________ (freq_plasma_electron_profile65)_ 9.24471988249274292e+10 -Plasma_electron_frequency_at_point_66____________________________________ (freq_plasma_electron_profile66)_ 9.24360481816084900e+10 -Plasma_electron_frequency_at_point_67____________________________________ (freq_plasma_electron_profile67)_ 9.24247259232187195e+10 -Plasma_electron_frequency_at_point_68____________________________________ (freq_plasma_electron_profile68)_ 9.24132319866804810e+10 -Plasma_electron_frequency_at_point_69____________________________________ (freq_plasma_electron_profile69)_ 9.24015663079280396e+10 -Plasma_electron_frequency_at_point_70____________________________________ (freq_plasma_electron_profile70)_ 9.23897288219058228e+10 -Plasma_electron_frequency_at_point_71____________________________________ (freq_plasma_electron_profile71)_ 9.23777194625664978e+10 -Plasma_electron_frequency_at_point_72____________________________________ (freq_plasma_electron_profile72)_ 9.23655381628692474e+10 -Plasma_electron_frequency_at_point_73____________________________________ (freq_plasma_electron_profile73)_ 9.23531848547777405e+10 -Plasma_electron_frequency_at_point_74____________________________________ (freq_plasma_electron_profile74)_ 9.23406594692582245e+10 -Plasma_electron_frequency_at_point_75____________________________________ (freq_plasma_electron_profile75)_ 9.23279619362777100e+10 -Plasma_electron_frequency_at_point_76____________________________________ (freq_plasma_electron_profile76)_ 9.23150921848018188e+10 -Plasma_electron_frequency_at_point_77____________________________________ (freq_plasma_electron_profile77)_ 9.23020501427928162e+10 -Plasma_electron_frequency_at_point_78____________________________________ (freq_plasma_electron_profile78)_ 9.22888357372076416e+10 -Plasma_electron_frequency_at_point_79____________________________________ (freq_plasma_electron_profile79)_ 9.22754488939957733e+10 -Plasma_electron_frequency_at_point_80____________________________________ (freq_plasma_electron_profile80)_ 9.22618895380970917e+10 -Plasma_electron_frequency_at_point_81____________________________________ (freq_plasma_electron_profile81)_ 9.22481575934397736e+10 -Plasma_electron_frequency_at_point_82____________________________________ (freq_plasma_electron_profile82)_ 9.22342529829382324e+10 -Plasma_electron_frequency_at_point_83____________________________________ (freq_plasma_electron_profile83)_ 9.22201756284907074e+10 -Plasma_electron_frequency_at_point_84____________________________________ (freq_plasma_electron_profile84)_ 9.22059254509771729e+10 -Plasma_electron_frequency_at_point_85____________________________________ (freq_plasma_electron_profile85)_ 9.21915023702571411e+10 -Plasma_electron_frequency_at_point_86____________________________________ (freq_plasma_electron_profile86)_ 9.21769063051671753e+10 -Plasma_electron_frequency_at_point_87____________________________________ (freq_plasma_electron_profile87)_ 9.21621371735187225e+10 -Plasma_electron_frequency_at_point_88____________________________________ (freq_plasma_electron_profile88)_ 9.21471948920956879e+10 -Plasma_electron_frequency_at_point_89____________________________________ (freq_plasma_electron_profile89)_ 9.21320793766521149e+10 -Plasma_electron_frequency_at_point_90____________________________________ (freq_plasma_electron_profile90)_ 9.21167905419096527e+10 -Plasma_electron_frequency_at_point_91____________________________________ (freq_plasma_electron_profile91)_ 9.21013283015552368e+10 -Plasma_electron_frequency_at_point_92____________________________________ (freq_plasma_electron_profile92)_ 9.20856925682385101e+10 -Plasma_electron_frequency_at_point_93____________________________________ (freq_plasma_electron_profile93)_ 9.20698832535693512e+10 -Plasma_electron_frequency_at_point_94____________________________________ (freq_plasma_electron_profile94)_ 9.20539002681152649e+10 -Plasma_electron_frequency_at_point_95____________________________________ (freq_plasma_electron_profile95)_ 9.20377435213989105e+10 -Plasma_electron_frequency_at_point_96____________________________________ (freq_plasma_electron_profile96)_ 9.20214129218954010e+10 -Plasma_electron_frequency_at_point_97____________________________________ (freq_plasma_electron_profile97)_ 9.20049083770296326e+10 -Plasma_electron_frequency_at_point_98____________________________________ (freq_plasma_electron_profile98)_ 9.19882297931737366e+10 -Plasma_electron_frequency_at_point_99____________________________________ (freq_plasma_electron_profile99)_ 9.19713770756441498e+10 -Plasma_electron_frequency_at_point_100___________________________________ (freq_plasma_electron_profile100)_ 9.19543501286991119e+10 -Plasma_electron_frequency_at_point_101___________________________________ (freq_plasma_electron_profile101)_ 9.19371488555356445e+10 -Plasma_electron_frequency_at_point_102___________________________________ (freq_plasma_electron_profile102)_ 9.19197731582869263e+10 -Plasma_electron_frequency_at_point_103___________________________________ (freq_plasma_electron_profile103)_ 9.19022229380193329e+10 -Plasma_electron_frequency_at_point_104___________________________________ (freq_plasma_electron_profile104)_ 9.18844980947295532e+10 -Plasma_electron_frequency_at_point_105___________________________________ (freq_plasma_electron_profile105)_ 9.18665985273417206e+10 -Plasma_electron_frequency_at_point_106___________________________________ (freq_plasma_electron_profile106)_ 9.18485241337044373e+10 -Plasma_electron_frequency_at_point_107___________________________________ (freq_plasma_electron_profile107)_ 9.18302748105876770e+10 -Plasma_electron_frequency_at_point_108___________________________________ (freq_plasma_electron_profile108)_ 9.18118504536800079e+10 -Plasma_electron_frequency_at_point_109___________________________________ (freq_plasma_electron_profile109)_ 9.17932509575852356e+10 -Plasma_electron_frequency_at_point_110___________________________________ (freq_plasma_electron_profile110)_ 9.17744762158194427e+10 -Plasma_electron_frequency_at_point_111___________________________________ (freq_plasma_electron_profile111)_ 9.17555261208079834e+10 -Plasma_electron_frequency_at_point_112___________________________________ (freq_plasma_electron_profile112)_ 9.17364005638820038e+10 -Plasma_electron_frequency_at_point_113___________________________________ (freq_plasma_electron_profile113)_ 9.17170994352755432e+10 -Plasma_electron_frequency_at_point_114___________________________________ (freq_plasma_electron_profile114)_ 9.16976226241220703e+10 -Plasma_electron_frequency_at_point_115___________________________________ (freq_plasma_electron_profile115)_ 9.16779700184513245e+10 -Plasma_electron_frequency_at_point_116___________________________________ (freq_plasma_electron_profile116)_ 9.16581415051859436e+10 -Plasma_electron_frequency_at_point_117___________________________________ (freq_plasma_electron_profile117)_ 9.16381369701380920e+10 -Plasma_electron_frequency_at_point_118___________________________________ (freq_plasma_electron_profile118)_ 9.16179562980061646e+10 -Plasma_electron_frequency_at_point_119___________________________________ (freq_plasma_electron_profile119)_ 9.15975993723711700e+10 -Plasma_electron_frequency_at_point_120___________________________________ (freq_plasma_electron_profile120)_ 9.15770660756934967e+10 -Plasma_electron_frequency_at_point_121___________________________________ (freq_plasma_electron_profile121)_ 9.15563562893092194e+10 -Plasma_electron_frequency_at_point_122___________________________________ (freq_plasma_electron_profile122)_ 9.15354698934265442e+10 -Plasma_electron_frequency_at_point_123___________________________________ (freq_plasma_electron_profile123)_ 9.15144067671223755e+10 -Plasma_electron_frequency_at_point_124___________________________________ (freq_plasma_electron_profile124)_ 9.14931667883386078e+10 -Plasma_electron_frequency_at_point_125___________________________________ (freq_plasma_electron_profile125)_ 9.14717498338784027e+10 -Plasma_electron_frequency_at_point_126___________________________________ (freq_plasma_electron_profile126)_ 9.14501557794025269e+10 -Plasma_electron_frequency_at_point_127___________________________________ (freq_plasma_electron_profile127)_ 9.14283844994256897e+10 -Plasma_electron_frequency_at_point_128___________________________________ (freq_plasma_electron_profile128)_ 9.14064358673125916e+10 -Plasma_electron_frequency_at_point_129___________________________________ (freq_plasma_electron_profile129)_ 9.13843097552742157e+10 -Plasma_electron_frequency_at_point_130___________________________________ (freq_plasma_electron_profile130)_ 9.13620060343639526e+10 -Plasma_electron_frequency_at_point_131___________________________________ (freq_plasma_electron_profile131)_ 9.13395245744736633e+10 -Plasma_electron_frequency_at_point_132___________________________________ (freq_plasma_electron_profile132)_ 9.13168652443297424e+10 -Plasma_electron_frequency_at_point_133___________________________________ (freq_plasma_electron_profile133)_ 9.12940279114890747e+10 -Plasma_electron_frequency_at_point_134___________________________________ (freq_plasma_electron_profile134)_ 9.12710124423350983e+10 -Plasma_electron_frequency_at_point_135___________________________________ (freq_plasma_electron_profile135)_ 9.12478187020736389e+10 -Plasma_electron_frequency_at_point_136___________________________________ (freq_plasma_electron_profile136)_ 9.12244465547289124e+10 -Plasma_electron_frequency_at_point_137___________________________________ (freq_plasma_electron_profile137)_ 9.12008958631391449e+10 -Plasma_electron_frequency_at_point_138___________________________________ (freq_plasma_electron_profile138)_ 9.11771664889526367e+10 -Plasma_electron_frequency_at_point_139___________________________________ (freq_plasma_electron_profile139)_ 9.11532582926232758e+10 -Plasma_electron_frequency_at_point_140___________________________________ (freq_plasma_electron_profile140)_ 9.11291711334064178e+10 -Plasma_electron_frequency_at_point_141___________________________________ (freq_plasma_electron_profile141)_ 9.11049048693544769e+10 -Plasma_electron_frequency_at_point_142___________________________________ (freq_plasma_electron_profile142)_ 9.10804593573125000e+10 -Plasma_electron_frequency_at_point_143___________________________________ (freq_plasma_electron_profile143)_ 9.10558344529138489e+10 -Plasma_electron_frequency_at_point_144___________________________________ (freq_plasma_electron_profile144)_ 9.10310300105756531e+10 -Plasma_electron_frequency_at_point_145___________________________________ (freq_plasma_electron_profile145)_ 9.10060458834943085e+10 -Plasma_electron_frequency_at_point_146___________________________________ (freq_plasma_electron_profile146)_ 9.09808819236409149e+10 -Plasma_electron_frequency_at_point_147___________________________________ (freq_plasma_electron_profile147)_ 9.09555379817566681e+10 -Plasma_electron_frequency_at_point_148___________________________________ (freq_plasma_electron_profile148)_ 9.09300139073482361e+10 -Plasma_electron_frequency_at_point_149___________________________________ (freq_plasma_electron_profile149)_ 9.09043095486830139e+10 -Plasma_electron_frequency_at_point_150___________________________________ (freq_plasma_electron_profile150)_ 9.08784247527843628e+10 -Plasma_electron_frequency_at_point_151___________________________________ (freq_plasma_electron_profile151)_ 9.08523593654268951e+10 -Plasma_electron_frequency_at_point_152___________________________________ (freq_plasma_electron_profile152)_ 9.08261132311315613e+10 -Plasma_electron_frequency_at_point_153___________________________________ (freq_plasma_electron_profile153)_ 9.07996861931607056e+10 -Plasma_electron_frequency_at_point_154___________________________________ (freq_plasma_electron_profile154)_ 9.07730780935132751e+10 -Plasma_electron_frequency_at_point_155___________________________________ (freq_plasma_electron_profile155)_ 9.07462887729197235e+10 -Plasma_electron_frequency_at_point_156___________________________________ (freq_plasma_electron_profile156)_ 9.07193180708369598e+10 -Plasma_electron_frequency_at_point_157___________________________________ (freq_plasma_electron_profile157)_ 9.06921658254432831e+10 -Plasma_electron_frequency_at_point_158___________________________________ (freq_plasma_electron_profile158)_ 9.06648318736333466e+10 -Plasma_electron_frequency_at_point_159___________________________________ (freq_plasma_electron_profile159)_ 9.06373160510127106e+10 -Plasma_electron_frequency_at_point_160___________________________________ (freq_plasma_electron_profile160)_ 9.06096181918928833e+10 -Plasma_electron_frequency_at_point_161___________________________________ (freq_plasma_electron_profile161)_ 9.05817381292858582e+10 -Plasma_electron_frequency_at_point_162___________________________________ (freq_plasma_electron_profile162)_ 9.05536756948987732e+10 -Plasma_electron_frequency_at_point_163___________________________________ (freq_plasma_electron_profile163)_ 9.05254307191286469e+10 -Plasma_electron_frequency_at_point_164___________________________________ (freq_plasma_electron_profile164)_ 9.04970030310567474e+10 -Plasma_electron_frequency_at_point_165___________________________________ (freq_plasma_electron_profile165)_ 9.04683924584431915e+10 -Plasma_electron_frequency_at_point_166___________________________________ (freq_plasma_electron_profile166)_ 9.04395988277213593e+10 -Plasma_electron_frequency_at_point_167___________________________________ (freq_plasma_electron_profile167)_ 9.04106219639923096e+10 -Plasma_electron_frequency_at_point_168___________________________________ (freq_plasma_electron_profile168)_ 9.03814616910190887e+10 -Plasma_electron_frequency_at_point_169___________________________________ (freq_plasma_electron_profile169)_ 9.03521178312210236e+10 -Plasma_electron_frequency_at_point_170___________________________________ (freq_plasma_electron_profile170)_ 9.03225902056679077e+10 -Plasma_electron_frequency_at_point_171___________________________________ (freq_plasma_electron_profile171)_ 9.02928786340742493e+10 -Plasma_electron_frequency_at_point_172___________________________________ (freq_plasma_electron_profile172)_ 9.02629829347932434e+10 -Plasma_electron_frequency_at_point_173___________________________________ (freq_plasma_electron_profile173)_ 9.02329029248109894e+10 -Plasma_electron_frequency_at_point_174___________________________________ (freq_plasma_electron_profile174)_ 9.02026384197403870e+10 -Plasma_electron_frequency_at_point_175___________________________________ (freq_plasma_electron_profile175)_ 9.01721892338150940e+10 -Plasma_electron_frequency_at_point_176___________________________________ (freq_plasma_electron_profile176)_ 9.01415551798834229e+10 -Plasma_electron_frequency_at_point_177___________________________________ (freq_plasma_electron_profile177)_ 9.01107360694021301e+10 -Plasma_electron_frequency_at_point_178___________________________________ (freq_plasma_electron_profile178)_ 9.00797317124302063e+10 -Plasma_electron_frequency_at_point_179___________________________________ (freq_plasma_electron_profile179)_ 9.00485419176225739e+10 -Plasma_electron_frequency_at_point_180___________________________________ (freq_plasma_electron_profile180)_ 9.00171664922237244e+10 -Plasma_electron_frequency_at_point_181___________________________________ (freq_plasma_electron_profile181)_ 8.99856052420613403e+10 -Plasma_electron_frequency_at_point_182___________________________________ (freq_plasma_electron_profile182)_ 8.99538579715397491e+10 -Plasma_electron_frequency_at_point_183___________________________________ (freq_plasma_electron_profile183)_ 8.99219244836333618e+10 -Plasma_electron_frequency_at_point_184___________________________________ (freq_plasma_electron_profile184)_ 8.98898045798802032e+10 -Plasma_electron_frequency_at_point_185___________________________________ (freq_plasma_electron_profile185)_ 8.98574980603751373e+10 -Plasma_electron_frequency_at_point_186___________________________________ (freq_plasma_electron_profile186)_ 8.98250047237630463e+10 -Plasma_electron_frequency_at_point_187___________________________________ (freq_plasma_electron_profile187)_ 8.97923243672323303e+10 -Plasma_electron_frequency_at_point_188___________________________________ (freq_plasma_electron_profile188)_ 8.97594567865077362e+10 -Plasma_electron_frequency_at_point_189___________________________________ (freq_plasma_electron_profile189)_ 8.97264017758435669e+10 -Plasma_electron_frequency_at_point_190___________________________________ (freq_plasma_electron_profile190)_ 8.96931591280167542e+10 -Plasma_electron_frequency_at_point_191___________________________________ (freq_plasma_electron_profile191)_ 8.96597286343196411e+10 -Plasma_electron_frequency_at_point_192___________________________________ (freq_plasma_electron_profile192)_ 8.96261100845529785e+10 -Plasma_electron_frequency_at_point_193___________________________________ (freq_plasma_electron_profile193)_ 8.95923032670187531e+10 -Plasma_electron_frequency_at_point_194___________________________________ (freq_plasma_electron_profile194)_ 8.95583079685127869e+10 -Plasma_electron_frequency_at_point_195___________________________________ (freq_plasma_electron_profile195)_ 8.95241239743175354e+10 -Plasma_electron_frequency_at_point_196___________________________________ (freq_plasma_electron_profile196)_ 8.94897510681946411e+10 -Plasma_electron_frequency_at_point_197___________________________________ (freq_plasma_electron_profile197)_ 8.94551890323774414e+10 -Plasma_electron_frequency_at_point_198___________________________________ (freq_plasma_electron_profile198)_ 8.94204376475635071e+10 -Plasma_electron_frequency_at_point_199___________________________________ (freq_plasma_electron_profile199)_ 8.93854966929069672e+10 -Plasma_electron_frequency_at_point_200___________________________________ (freq_plasma_electron_profile200)_ 8.93503659460107727e+10 -Plasma_electron_frequency_at_point_201___________________________________ (freq_plasma_electron_profile201)_ 8.93150451829190521e+10 -Plasma_electron_frequency_at_point_202___________________________________ (freq_plasma_electron_profile202)_ 8.92795341781092377e+10 -Plasma_electron_frequency_at_point_203___________________________________ (freq_plasma_electron_profile203)_ 8.92438327044841309e+10 -Plasma_electron_frequency_at_point_204___________________________________ (freq_plasma_electron_profile204)_ 8.92079405333639679e+10 -Plasma_electron_frequency_at_point_205___________________________________ (freq_plasma_electron_profile205)_ 8.91718574344783325e+10 -Plasma_electron_frequency_at_point_206___________________________________ (freq_plasma_electron_profile206)_ 8.91355831759580078e+10 -Plasma_electron_frequency_at_point_207___________________________________ (freq_plasma_electron_profile207)_ 8.90991175243267822e+10 -Plasma_electron_frequency_at_point_208___________________________________ (freq_plasma_electron_profile208)_ 8.90624602444932404e+10 -Plasma_electron_frequency_at_point_209___________________________________ (freq_plasma_electron_profile209)_ 8.90256110997422638e+10 -Plasma_electron_frequency_at_point_210___________________________________ (freq_plasma_electron_profile210)_ 8.89885698517266998e+10 -Plasma_electron_frequency_at_point_211___________________________________ (freq_plasma_electron_profile211)_ 8.89513362604587555e+10 -Plasma_electron_frequency_at_point_212___________________________________ (freq_plasma_electron_profile212)_ 8.89139100843014221e+10 -Plasma_electron_frequency_at_point_213___________________________________ (freq_plasma_electron_profile213)_ 8.88762910799598236e+10 -Plasma_electron_frequency_at_point_214___________________________________ (freq_plasma_electron_profile214)_ 8.88384790024723969e+10 -Plasma_electron_frequency_at_point_215___________________________________ (freq_plasma_electron_profile215)_ 8.88004736052020264e+10 -Plasma_electron_frequency_at_point_216___________________________________ (freq_plasma_electron_profile216)_ 8.87622746398271637e+10 -Plasma_electron_frequency_at_point_217___________________________________ (freq_plasma_electron_profile217)_ 8.87238818563328400e+10 -Plasma_electron_frequency_at_point_218___________________________________ (freq_plasma_electron_profile218)_ 8.86852950030013733e+10 -Plasma_electron_frequency_at_point_219___________________________________ (freq_plasma_electron_profile219)_ 8.86465138264033813e+10 -Plasma_electron_frequency_at_point_220___________________________________ (freq_plasma_electron_profile220)_ 8.86075380713883972e+10 -Plasma_electron_frequency_at_point_221___________________________________ (freq_plasma_electron_profile221)_ 8.85683674810755157e+10 -Plasma_electron_frequency_at_point_222___________________________________ (freq_plasma_electron_profile222)_ 8.85290017968439484e+10 -Plasma_electron_frequency_at_point_223___________________________________ (freq_plasma_electron_profile223)_ 8.84894407583234558e+10 -Plasma_electron_frequency_at_point_224___________________________________ (freq_plasma_electron_profile224)_ 8.84496841033847046e+10 -Plasma_electron_frequency_at_point_225___________________________________ (freq_plasma_electron_profile225)_ 8.84097315681295929e+10 -Plasma_electron_frequency_at_point_226___________________________________ (freq_plasma_electron_profile226)_ 8.83695828868813171e+10 -Plasma_electron_frequency_at_point_227___________________________________ (freq_plasma_electron_profile227)_ 8.83292377921745453e+10 -Plasma_electron_frequency_at_point_228___________________________________ (freq_plasma_electron_profile228)_ 8.82886960147453766e+10 -Plasma_electron_frequency_at_point_229___________________________________ (freq_plasma_electron_profile229)_ 8.82479572835212555e+10 -Plasma_electron_frequency_at_point_230___________________________________ (freq_plasma_electron_profile230)_ 8.82070213256107178e+10 -Plasma_electron_frequency_at_point_231___________________________________ (freq_plasma_electron_profile231)_ 8.81658878662930603e+10 -Plasma_electron_frequency_at_point_232___________________________________ (freq_plasma_electron_profile232)_ 8.81245566290081024e+10 -Plasma_electron_frequency_at_point_233___________________________________ (freq_plasma_electron_profile233)_ 8.80830273353455048e+10 -Plasma_electron_frequency_at_point_234___________________________________ (freq_plasma_electron_profile234)_ 8.80412997050342560e+10 -Plasma_electron_frequency_at_point_235___________________________________ (freq_plasma_electron_profile235)_ 8.79993734559319305e+10 -Plasma_electron_frequency_at_point_236___________________________________ (freq_plasma_electron_profile236)_ 8.79572483040139465e+10 -Plasma_electron_frequency_at_point_237___________________________________ (freq_plasma_electron_profile237)_ 8.79149239633625793e+10 -Plasma_electron_frequency_at_point_238___________________________________ (freq_plasma_electron_profile238)_ 8.78724001461559906e+10 -Plasma_electron_frequency_at_point_239___________________________________ (freq_plasma_electron_profile239)_ 8.78296765626571045e+10 -Plasma_electron_frequency_at_point_240___________________________________ (freq_plasma_electron_profile240)_ 8.77867529212023926e+10 -Plasma_electron_frequency_at_point_241___________________________________ (freq_plasma_electron_profile241)_ 8.77436289281904907e+10 -Plasma_electron_frequency_at_point_242___________________________________ (freq_plasma_electron_profile242)_ 8.77003042880708313e+10 -Plasma_electron_frequency_at_point_243___________________________________ (freq_plasma_electron_profile243)_ 8.76567787033319550e+10 -Plasma_electron_frequency_at_point_244___________________________________ (freq_plasma_electron_profile244)_ 8.76130518744900208e+10 -Plasma_electron_frequency_at_point_245___________________________________ (freq_plasma_electron_profile245)_ 8.75691235000769043e+10 -Plasma_electron_frequency_at_point_246___________________________________ (freq_plasma_electron_profile246)_ 8.75249932766283417e+10 -Plasma_electron_frequency_at_point_247___________________________________ (freq_plasma_electron_profile247)_ 8.74806608986719208e+10 -Plasma_electron_frequency_at_point_248___________________________________ (freq_plasma_electron_profile248)_ 8.74361260587149353e+10 -Plasma_electron_frequency_at_point_249___________________________________ (freq_plasma_electron_profile249)_ 8.73913884472321625e+10 -Plasma_electron_frequency_at_point_250___________________________________ (freq_plasma_electron_profile250)_ 8.73464477526535187e+10 -Plasma_electron_frequency_at_point_251___________________________________ (freq_plasma_electron_profile251)_ 8.73013036613515320e+10 -Plasma_electron_frequency_at_point_252___________________________________ (freq_plasma_electron_profile252)_ 8.72559558576287994e+10 -Plasma_electron_frequency_at_point_253___________________________________ (freq_plasma_electron_profile253)_ 8.72104040237051697e+10 -Plasma_electron_frequency_at_point_254___________________________________ (freq_plasma_electron_profile254)_ 8.71646478397050171e+10 -Plasma_electron_frequency_at_point_255___________________________________ (freq_plasma_electron_profile255)_ 8.71186869836441193e+10 -Plasma_electron_frequency_at_point_256___________________________________ (freq_plasma_electron_profile256)_ 8.70725211314167175e+10 -Plasma_electron_frequency_at_point_257___________________________________ (freq_plasma_electron_profile257)_ 8.70261499567821198e+10 -Plasma_electron_frequency_at_point_258___________________________________ (freq_plasma_electron_profile258)_ 8.69795731313514709e+10 -Plasma_electron_frequency_at_point_259___________________________________ (freq_plasma_electron_profile259)_ 8.69327903245742188e+10 -Plasma_electron_frequency_at_point_260___________________________________ (freq_plasma_electron_profile260)_ 8.68858012037244263e+10 -Plasma_electron_frequency_at_point_261___________________________________ (freq_plasma_electron_profile261)_ 8.68386054338871307e+10 -Plasma_electron_frequency_at_point_262___________________________________ (freq_plasma_electron_profile262)_ 8.67912026779443665e+10 -Plasma_electron_frequency_at_point_263___________________________________ (freq_plasma_electron_profile263)_ 8.67435925965611115e+10 -Plasma_electron_frequency_at_point_264___________________________________ (freq_plasma_electron_profile264)_ 8.66957748481712494e+10 -Plasma_electron_frequency_at_point_265___________________________________ (freq_plasma_electron_profile265)_ 8.66477490889630890e+10 -Plasma_electron_frequency_at_point_266___________________________________ (freq_plasma_electron_profile266)_ 8.65995149728650513e+10 -Plasma_electron_frequency_at_point_267___________________________________ (freq_plasma_electron_profile267)_ 8.65510721515310211e+10 -Plasma_electron_frequency_at_point_268___________________________________ (freq_plasma_electron_profile268)_ 8.65024202743255615e+10 -Plasma_electron_frequency_at_point_269___________________________________ (freq_plasma_electron_profile269)_ 8.64535589883091125e+10 -Plasma_electron_frequency_at_point_270___________________________________ (freq_plasma_electron_profile270)_ 8.64044879382229309e+10 -Plasma_electron_frequency_at_point_271___________________________________ (freq_plasma_electron_profile271)_ 8.63552067664738617e+10 -Plasma_electron_frequency_at_point_272___________________________________ (freq_plasma_electron_profile272)_ 8.63057151131190338e+10 -Plasma_electron_frequency_at_point_273___________________________________ (freq_plasma_electron_profile273)_ 8.62560126158504486e+10 -Plasma_electron_frequency_at_point_274___________________________________ (freq_plasma_electron_profile274)_ 8.62060989099791565e+10 -Plasma_electron_frequency_at_point_275___________________________________ (freq_plasma_electron_profile275)_ 8.61559736284196472e+10 -Plasma_electron_frequency_at_point_276___________________________________ (freq_plasma_electron_profile276)_ 8.61056364016737823e+10 -Plasma_electron_frequency_at_point_277___________________________________ (freq_plasma_electron_profile277)_ 8.60550868578146515e+10 -Plasma_electron_frequency_at_point_278___________________________________ (freq_plasma_electron_profile278)_ 8.60043246224704437e+10 -Plasma_electron_frequency_at_point_279___________________________________ (freq_plasma_electron_profile279)_ 8.59533493188078156e+10 -Plasma_electron_frequency_at_point_280___________________________________ (freq_plasma_electron_profile280)_ 8.59021605675153961e+10 -Plasma_electron_frequency_at_point_281___________________________________ (freq_plasma_electron_profile281)_ 8.58507579867869873e+10 -Plasma_electron_frequency_at_point_282___________________________________ (freq_plasma_electron_profile282)_ 8.57991411923045502e+10 -Plasma_electron_frequency_at_point_283___________________________________ (freq_plasma_electron_profile283)_ 8.57473097972212067e+10 -Plasma_electron_frequency_at_point_284___________________________________ (freq_plasma_electron_profile284)_ 8.56952634121438293e+10 -Plasma_electron_frequency_at_point_285___________________________________ (freq_plasma_electron_profile285)_ 8.56430016451156311e+10 -Plasma_electron_frequency_at_point_286___________________________________ (freq_plasma_electron_profile286)_ 8.55905241015984802e+10 -Plasma_electron_frequency_at_point_287___________________________________ (freq_plasma_electron_profile287)_ 8.55378303844551544e+10 -Plasma_electron_frequency_at_point_288___________________________________ (freq_plasma_electron_profile288)_ 8.54849200939311981e+10 -Plasma_electron_frequency_at_point_289___________________________________ (freq_plasma_electron_profile289)_ 8.54317928276368103e+10 -Plasma_electron_frequency_at_point_290___________________________________ (freq_plasma_electron_profile290)_ 8.53784481805284424e+10 -Plasma_electron_frequency_at_point_291___________________________________ (freq_plasma_electron_profile291)_ 8.53248857448902893e+10 -Plasma_electron_frequency_at_point_292___________________________________ (freq_plasma_electron_profile292)_ 8.52711051103153839e+10 -Plasma_electron_frequency_at_point_293___________________________________ (freq_plasma_electron_profile293)_ 8.52171058636867828e+10 -Plasma_electron_frequency_at_point_294___________________________________ (freq_plasma_electron_profile294)_ 8.51628875891583405e+10 -Plasma_electron_frequency_at_point_295___________________________________ (freq_plasma_electron_profile295)_ 8.51084498681353760e+10 -Plasma_electron_frequency_at_point_296___________________________________ (freq_plasma_electron_profile296)_ 8.50537922792551117e+10 -Plasma_electron_frequency_at_point_297___________________________________ (freq_plasma_electron_profile297)_ 8.49989143983669586e+10 -Plasma_electron_frequency_at_point_298___________________________________ (freq_plasma_electron_profile298)_ 8.49438157985125122e+10 -Plasma_electron_frequency_at_point_299___________________________________ (freq_plasma_electron_profile299)_ 8.48884960499054260e+10 -Plasma_electron_frequency_at_point_300___________________________________ (freq_plasma_electron_profile300)_ 8.48329547199109650e+10 -Plasma_electron_frequency_at_point_301___________________________________ (freq_plasma_electron_profile301)_ 8.47771913730255280e+10 -Plasma_electron_frequency_at_point_302___________________________________ (freq_plasma_electron_profile302)_ 8.47212055708557434e+10 -Plasma_electron_frequency_at_point_303___________________________________ (freq_plasma_electron_profile303)_ 8.46649968720974579e+10 -Plasma_electron_frequency_at_point_304___________________________________ (freq_plasma_electron_profile304)_ 8.46085648325145721e+10 -Plasma_electron_frequency_at_point_305___________________________________ (freq_plasma_electron_profile305)_ 8.45519090049174500e+10 -Plasma_electron_frequency_at_point_306___________________________________ (freq_plasma_electron_profile306)_ 8.44950289391413574e+10 -Plasma_electron_frequency_at_point_307___________________________________ (freq_plasma_electron_profile307)_ 8.44379241820244141e+10 -Plasma_electron_frequency_at_point_308___________________________________ (freq_plasma_electron_profile308)_ 8.43805942773855133e+10 -Plasma_electron_frequency_at_point_309___________________________________ (freq_plasma_electron_profile309)_ 8.43230387660018921e+10 -Plasma_electron_frequency_at_point_310___________________________________ (freq_plasma_electron_profile310)_ 8.42652571855865326e+10 -Plasma_electron_frequency_at_point_311___________________________________ (freq_plasma_electron_profile311)_ 8.42072490707653046e+10 -Plasma_electron_frequency_at_point_312___________________________________ (freq_plasma_electron_profile312)_ 8.41490139530537567e+10 -Plasma_electron_frequency_at_point_313___________________________________ (freq_plasma_electron_profile313)_ 8.40905513608338928e+10 -Plasma_electron_frequency_at_point_314___________________________________ (freq_plasma_electron_profile314)_ 8.40318608193304291e+10 -Plasma_electron_frequency_at_point_315___________________________________ (freq_plasma_electron_profile315)_ 8.39729418505870361e+10 -Plasma_electron_frequency_at_point_316___________________________________ (freq_plasma_electron_profile316)_ 8.39137939734421387e+10 -Plasma_electron_frequency_at_point_317___________________________________ (freq_plasma_electron_profile317)_ 8.38544167035046082e+10 -Plasma_electron_frequency_at_point_318___________________________________ (freq_plasma_electron_profile318)_ 8.37948095531290131e+10 -Plasma_electron_frequency_at_point_319___________________________________ (freq_plasma_electron_profile319)_ 8.37349720313908386e+10 -Plasma_electron_frequency_at_point_320___________________________________ (freq_plasma_electron_profile320)_ 8.36749036440611725e+10 -Plasma_electron_frequency_at_point_321___________________________________ (freq_plasma_electron_profile321)_ 8.36146038935813599e+10 -Plasma_electron_frequency_at_point_322___________________________________ (freq_plasma_electron_profile322)_ 8.35540722790372009e+10 -Plasma_electron_frequency_at_point_323___________________________________ (freq_plasma_electron_profile323)_ 8.34933082961329651e+10 -Plasma_electron_frequency_at_point_324___________________________________ (freq_plasma_electron_profile324)_ 8.34323114371651306e+10 -Plasma_electron_frequency_at_point_325___________________________________ (freq_plasma_electron_profile325)_ 8.33710811909956970e+10 -Plasma_electron_frequency_at_point_326___________________________________ (freq_plasma_electron_profile326)_ 8.33096170430254211e+10 -Plasma_electron_frequency_at_point_327___________________________________ (freq_plasma_electron_profile327)_ 8.32479184751665497e+10 -Plasma_electron_frequency_at_point_328___________________________________ (freq_plasma_electron_profile328)_ 8.31859849658154602e+10 -Plasma_electron_frequency_at_point_329___________________________________ (freq_plasma_electron_profile329)_ 8.31238159898247833e+10 -Plasma_electron_frequency_at_point_330___________________________________ (freq_plasma_electron_profile330)_ 8.30614110184753418e+10 -Plasma_electron_frequency_at_point_331___________________________________ (freq_plasma_electron_profile331)_ 8.29987695194477844e+10 -Plasma_electron_frequency_at_point_332___________________________________ (freq_plasma_electron_profile332)_ 8.29358909567938843e+10 -Plasma_electron_frequency_at_point_333___________________________________ (freq_plasma_electron_profile333)_ 8.28727747909074860e+10 -Plasma_electron_frequency_at_point_334___________________________________ (freq_plasma_electron_profile334)_ 8.28094204784951324e+10 -Plasma_electron_frequency_at_point_335___________________________________ (freq_plasma_electron_profile335)_ 8.27458274725464478e+10 -Plasma_electron_frequency_at_point_336___________________________________ (freq_plasma_electron_profile336)_ 8.26819952223040314e+10 -Plasma_electron_frequency_at_point_337___________________________________ (freq_plasma_electron_profile337)_ 8.26179231732331848e+10 -Plasma_electron_frequency_at_point_338___________________________________ (freq_plasma_electron_profile338)_ 8.25536107669912262e+10 -Plasma_electron_frequency_at_point_339___________________________________ (freq_plasma_electron_profile339)_ 8.24890574413963928e+10 -Plasma_electron_frequency_at_point_340___________________________________ (freq_plasma_electron_profile340)_ 8.24242626303964539e+10 -Plasma_electron_frequency_at_point_341___________________________________ (freq_plasma_electron_profile341)_ 8.23592257640370178e+10 -Plasma_electron_frequency_at_point_342___________________________________ (freq_plasma_electron_profile342)_ 8.22939462684293671e+10 -Plasma_electron_frequency_at_point_343___________________________________ (freq_plasma_electron_profile343)_ 8.22284235657180481e+10 -Plasma_electron_frequency_at_point_344___________________________________ (freq_plasma_electron_profile344)_ 8.21626570740479584e+10 -Plasma_electron_frequency_at_point_345___________________________________ (freq_plasma_electron_profile345)_ 8.20966462075311737e+10 -Plasma_electron_frequency_at_point_346___________________________________ (freq_plasma_electron_profile346)_ 8.20303903762133484e+10 -Plasma_electron_frequency_at_point_347___________________________________ (freq_plasma_electron_profile347)_ 8.19638889860397186e+10 -Plasma_electron_frequency_at_point_348___________________________________ (freq_plasma_electron_profile348)_ 8.18971414388207092e+10 -Plasma_electron_frequency_at_point_349___________________________________ (freq_plasma_electron_profile349)_ 8.18301471321971588e+10 -Plasma_electron_frequency_at_point_350___________________________________ (freq_plasma_electron_profile350)_ 8.17629054596052094e+10 -Plasma_electron_frequency_at_point_351___________________________________ (freq_plasma_electron_profile351)_ 8.16954158102406464e+10 -Plasma_electron_frequency_at_point_352___________________________________ (freq_plasma_electron_profile352)_ 8.16276775690229340e+10 -Plasma_electron_frequency_at_point_353___________________________________ (freq_plasma_electron_profile353)_ 8.15596901165587769e+10 -Plasma_electron_frequency_at_point_354___________________________________ (freq_plasma_electron_profile354)_ 8.14914528291052856e+10 -Plasma_electron_frequency_at_point_355___________________________________ (freq_plasma_electron_profile355)_ 8.14229650785327454e+10 -Plasma_electron_frequency_at_point_356___________________________________ (freq_plasma_electron_profile356)_ 8.13542262322868195e+10 -Plasma_electron_frequency_at_point_357___________________________________ (freq_plasma_electron_profile357)_ 8.12852356533504791e+10 -Plasma_electron_frequency_at_point_358___________________________________ (freq_plasma_electron_profile358)_ 8.12159927002053680e+10 -Plasma_electron_frequency_at_point_359___________________________________ (freq_plasma_electron_profile359)_ 8.11464967267926636e+10 -Plasma_electron_frequency_at_point_360___________________________________ (freq_plasma_electron_profile360)_ 8.10767470824737091e+10 -Plasma_electron_frequency_at_point_361___________________________________ (freq_plasma_electron_profile361)_ 8.10067431119898529e+10 -Plasma_electron_frequency_at_point_362___________________________________ (freq_plasma_electron_profile362)_ 8.09364841554221344e+10 -Plasma_electron_frequency_at_point_363___________________________________ (freq_plasma_electron_profile363)_ 8.08659695481501770e+10 -Plasma_electron_frequency_at_point_364___________________________________ (freq_plasma_electron_profile364)_ 8.07951986208108673e+10 -Plasma_electron_frequency_at_point_365___________________________________ (freq_plasma_electron_profile365)_ 8.07241706992563629e+10 -Plasma_electron_frequency_at_point_366___________________________________ (freq_plasma_electron_profile366)_ 8.06528851045116272e+10 -Plasma_electron_frequency_at_point_367___________________________________ (freq_plasma_electron_profile367)_ 8.05813411527314911e+10 -Plasma_electron_frequency_at_point_368___________________________________ (freq_plasma_electron_profile368)_ 8.05095381551572266e+10 -Plasma_electron_frequency_at_point_369___________________________________ (freq_plasma_electron_profile369)_ 8.04374754180724487e+10 -Plasma_electron_frequency_at_point_370___________________________________ (freq_plasma_electron_profile370)_ 8.03651522427586365e+10 -Plasma_electron_frequency_at_point_371___________________________________ (freq_plasma_electron_profile371)_ 8.02925679254500580e+10 -Plasma_electron_frequency_at_point_372___________________________________ (freq_plasma_electron_profile372)_ 8.02197217572881165e+10 -Plasma_electron_frequency_at_point_373___________________________________ (freq_plasma_electron_profile373)_ 8.01466130242751312e+10 -Plasma_electron_frequency_at_point_374___________________________________ (freq_plasma_electron_profile374)_ 8.00732410072276611e+10 -Plasma_electron_frequency_at_point_375___________________________________ (freq_plasma_electron_profile375)_ 7.99996049817290802e+10 -Plasma_electron_frequency_at_point_376___________________________________ (freq_plasma_electron_profile376)_ 7.99257042180817871e+10 -Plasma_electron_frequency_at_point_377___________________________________ (freq_plasma_electron_profile377)_ 7.98515379812585297e+10 -Plasma_electron_frequency_at_point_378___________________________________ (freq_plasma_electron_profile378)_ 7.97771055308534088e+10 -Plasma_electron_frequency_at_point_379___________________________________ (freq_plasma_electron_profile379)_ 7.97024061210321655e+10 -Plasma_electron_frequency_at_point_380___________________________________ (freq_plasma_electron_profile380)_ 7.96274390004817200e+10 -Plasma_electron_frequency_at_point_381___________________________________ (freq_plasma_electron_profile381)_ 7.95522034123593903e+10 -Plasma_electron_frequency_at_point_382___________________________________ (freq_plasma_electron_profile382)_ 7.94766985942411041e+10 -Plasma_electron_frequency_at_point_383___________________________________ (freq_plasma_electron_profile383)_ 7.94009237780692291e+10 -Plasma_electron_frequency_at_point_384___________________________________ (freq_plasma_electron_profile384)_ 7.93248781900996552e+10 -Plasma_electron_frequency_at_point_385___________________________________ (freq_plasma_electron_profile385)_ 7.92485610508481445e+10 -Plasma_electron_frequency_at_point_386___________________________________ (freq_plasma_electron_profile386)_ 7.91719715750361938e+10 -Plasma_electron_frequency_at_point_387___________________________________ (freq_plasma_electron_profile387)_ 7.90951089715359344e+10 -Plasma_electron_frequency_at_point_388___________________________________ (freq_plasma_electron_profile388)_ 7.90179724433145905e+10 -Plasma_electron_frequency_at_point_389___________________________________ (freq_plasma_electron_profile389)_ 7.89405611873780365e+10 -Plasma_electron_frequency_at_point_390___________________________________ (freq_plasma_electron_profile390)_ 7.88628743947137604e+10 -Plasma_electron_frequency_at_point_391___________________________________ (freq_plasma_electron_profile391)_ 7.87849112502330475e+10 -Plasma_electron_frequency_at_point_392___________________________________ (freq_plasma_electron_profile392)_ 7.87066709327123566e+10 -Plasma_electron_frequency_at_point_393___________________________________ (freq_plasma_electron_profile393)_ 7.86281526147340698e+10 -Plasma_electron_frequency_at_point_394___________________________________ (freq_plasma_electron_profile394)_ 7.85493554626263428e+10 -Plasma_electron_frequency_at_point_395___________________________________ (freq_plasma_electron_profile395)_ 7.84702786364023132e+10 -Plasma_electron_frequency_at_point_396___________________________________ (freq_plasma_electron_profile396)_ 7.83909212896983337e+10 -Plasma_electron_frequency_at_point_397___________________________________ (freq_plasma_electron_profile397)_ 7.83112825697115936e+10 -Plasma_electron_frequency_at_point_398___________________________________ (freq_plasma_electron_profile398)_ 7.82313616171367950e+10 -Plasma_electron_frequency_at_point_399___________________________________ (freq_plasma_electron_profile399)_ 7.81511575661020203e+10 -Plasma_electron_frequency_at_point_400___________________________________ (freq_plasma_electron_profile400)_ 7.80706695441038055e+10 -Plasma_electron_frequency_at_point_401___________________________________ (freq_plasma_electron_profile401)_ 7.79898966719413300e+10 -Plasma_electron_frequency_at_point_402___________________________________ (freq_plasma_electron_profile402)_ 7.79088380636496582e+10 -Plasma_electron_frequency_at_point_403___________________________________ (freq_plasma_electron_profile403)_ 7.78274928264322357e+10 -Plasma_electron_frequency_at_point_404___________________________________ (freq_plasma_electron_profile404)_ 7.77458600605923309e+10 -Plasma_electron_frequency_at_point_405___________________________________ (freq_plasma_electron_profile405)_ 7.76639388594637604e+10 -Plasma_electron_frequency_at_point_406___________________________________ (freq_plasma_electron_profile406)_ 7.75817283093404388e+10 -Plasma_electron_frequency_at_point_407___________________________________ (freq_plasma_electron_profile407)_ 7.74992274894052277e+10 -Plasma_electron_frequency_at_point_408___________________________________ (freq_plasma_electron_profile408)_ 7.74164354716575775e+10 -Plasma_electron_frequency_at_point_409___________________________________ (freq_plasma_electron_profile409)_ 7.73333513208404388e+10 -Plasma_electron_frequency_at_point_410___________________________________ (freq_plasma_electron_profile410)_ 7.72499740943659821e+10 -Plasma_electron_frequency_at_point_411___________________________________ (freq_plasma_electron_profile411)_ 7.71663028422404938e+10 -Plasma_electron_frequency_at_point_412___________________________________ (freq_plasma_electron_profile412)_ 7.70823366069879913e+10 -Plasma_electron_frequency_at_point_413___________________________________ (freq_plasma_electron_profile413)_ 7.69980744235731201e+10 -Plasma_electron_frequency_at_point_414___________________________________ (freq_plasma_electron_profile414)_ 7.69135153193226624e+10 -Plasma_electron_frequency_at_point_415___________________________________ (freq_plasma_electron_profile415)_ 7.68286583138462067e+10 -Plasma_electron_frequency_at_point_416___________________________________ (freq_plasma_electron_profile416)_ 7.67435024189556580e+10 -Plasma_electron_frequency_at_point_417___________________________________ (freq_plasma_electron_profile417)_ 7.66580466385835419e+10 -Plasma_electron_frequency_at_point_418___________________________________ (freq_plasma_electron_profile418)_ 7.65722899687002563e+10 -Plasma_electron_frequency_at_point_419___________________________________ (freq_plasma_electron_profile419)_ 7.64862313972302856e+10 -Plasma_electron_frequency_at_point_420___________________________________ (freq_plasma_electron_profile420)_ 7.63998699039669189e+10 -Plasma_electron_frequency_at_point_421___________________________________ (freq_plasma_electron_profile421)_ 7.63132044604860992e+10 -Plasma_electron_frequency_at_point_422___________________________________ (freq_plasma_electron_profile422)_ 7.62262340300589447e+10 -Plasma_electron_frequency_at_point_423___________________________________ (freq_plasma_electron_profile423)_ 7.61389575675629272e+10 -Plasma_electron_frequency_at_point_424___________________________________ (freq_plasma_electron_profile424)_ 7.60513740193920135e+10 -Plasma_electron_frequency_at_point_425___________________________________ (freq_plasma_electron_profile425)_ 7.59634823233653107e+10 -Plasma_electron_frequency_at_point_426___________________________________ (freq_plasma_electron_profile426)_ 7.58752814086345673e+10 -Plasma_electron_frequency_at_point_427___________________________________ (freq_plasma_electron_profile427)_ 7.57867701955902710e+10 -Plasma_electron_frequency_at_point_428___________________________________ (freq_plasma_electron_profile428)_ 7.56979475957664795e+10 -Plasma_electron_frequency_at_point_429___________________________________ (freq_plasma_electron_profile429)_ 7.56088125117441559e+10 -Plasma_electron_frequency_at_point_430___________________________________ (freq_plasma_electron_profile430)_ 7.55193638370532227e+10 -Plasma_electron_frequency_at_point_431___________________________________ (freq_plasma_electron_profile431)_ 7.54296004560731964e+10 -Plasma_electron_frequency_at_point_432___________________________________ (freq_plasma_electron_profile432)_ 7.53395212439323120e+10 -Plasma_electron_frequency_at_point_433___________________________________ (freq_plasma_electron_profile433)_ 7.52491250664051971e+10 -Plasma_electron_frequency_at_point_434___________________________________ (freq_plasma_electron_profile434)_ 7.51584107798091125e+10 -Plasma_electron_frequency_at_point_435___________________________________ (freq_plasma_electron_profile435)_ 7.50673772308986053e+10 -Plasma_electron_frequency_at_point_436___________________________________ (freq_plasma_electron_profile436)_ 7.49760232567586670e+10 -Plasma_electron_frequency_at_point_437___________________________________ (freq_plasma_electron_profile437)_ 7.48843476846962433e+10 -Plasma_electron_frequency_at_point_438___________________________________ (freq_plasma_electron_profile438)_ 7.47923493321302185e+10 -Plasma_electron_frequency_at_point_439___________________________________ (freq_plasma_electron_profile439)_ 7.47000270064797058e+10 -Plasma_electron_frequency_at_point_440___________________________________ (freq_plasma_electron_profile440)_ 7.46073795050507965e+10 -Plasma_electron_frequency_at_point_441___________________________________ (freq_plasma_electron_profile441)_ 7.45144056149213257e+10 -Plasma_electron_frequency_at_point_442___________________________________ (freq_plasma_electron_profile442)_ 7.44211041128243256e+10 -Plasma_electron_frequency_at_point_443___________________________________ (freq_plasma_electron_profile443)_ 7.43274737650293732e+10 -Plasma_electron_frequency_at_point_444___________________________________ (freq_plasma_electron_profile444)_ 7.42335133272223358e+10 -Plasma_electron_frequency_at_point_445___________________________________ (freq_plasma_electron_profile445)_ 7.41392215443831940e+10 -Plasma_electron_frequency_at_point_446___________________________________ (freq_plasma_electron_profile446)_ 7.40445971506621399e+10 -Plasma_electron_frequency_at_point_447___________________________________ (freq_plasma_electron_profile447)_ 7.39496388692536316e+10 -Plasma_electron_frequency_at_point_448___________________________________ (freq_plasma_electron_profile448)_ 7.38543454122686462e+10 -Plasma_electron_frequency_at_point_449___________________________________ (freq_plasma_electron_profile449)_ 7.37587154806048431e+10 -Plasma_electron_frequency_at_point_450___________________________________ (freq_plasma_electron_profile450)_ 7.36627477638149261e+10 -Plasma_electron_frequency_at_point_451___________________________________ (freq_plasma_electron_profile451)_ 7.35664409399727325e+10 -Plasma_electron_frequency_at_point_452___________________________________ (freq_plasma_electron_profile452)_ 7.34697936755374756e+10 -Plasma_electron_frequency_at_point_453___________________________________ (freq_plasma_electron_profile453)_ 7.33728046252156525e+10 -Plasma_electron_frequency_at_point_454___________________________________ (freq_plasma_electron_profile454)_ 7.32754724318210297e+10 -Plasma_electron_frequency_at_point_455___________________________________ (freq_plasma_electron_profile455)_ 7.31777957261321869e+10 -Plasma_electron_frequency_at_point_456___________________________________ (freq_plasma_electron_profile456)_ 7.30797731267480927e+10 -Plasma_electron_frequency_at_point_457___________________________________ (freq_plasma_electron_profile457)_ 7.29814032399411011e+10 -Plasma_electron_frequency_at_point_458___________________________________ (freq_plasma_electron_profile458)_ 7.28826846595079193e+10 -Plasma_electron_frequency_at_point_459___________________________________ (freq_plasma_electron_profile459)_ 7.27836159666179962e+10 -Plasma_electron_frequency_at_point_460___________________________________ (freq_plasma_electron_profile460)_ 7.26841957296595917e+10 -Plasma_electron_frequency_at_point_461___________________________________ (freq_plasma_electron_profile461)_ 7.25844225040832825e+10 -Plasma_electron_frequency_at_point_462___________________________________ (freq_plasma_electron_profile462)_ 7.24842948322431488e+10 -Plasma_electron_frequency_at_point_463___________________________________ (freq_plasma_electron_profile463)_ 7.23838112432351837e+10 -Plasma_electron_frequency_at_point_464___________________________________ (freq_plasma_electron_profile464)_ 7.22829702527332916e+10 -Plasma_electron_frequency_at_point_465___________________________________ (freq_plasma_electron_profile465)_ 7.21817703628223877e+10 -Plasma_electron_frequency_at_point_466___________________________________ (freq_plasma_electron_profile466)_ 7.20802100618289948e+10 -Plasma_electron_frequency_at_point_467___________________________________ (freq_plasma_electron_profile467)_ 7.19782878241490173e+10 -Plasma_electron_frequency_at_point_468___________________________________ (freq_plasma_electron_profile468)_ 7.18760021100725708e+10 -Plasma_electron_frequency_at_point_469___________________________________ (freq_plasma_electron_profile469)_ 7.17733513656060638e+10 -Plasma_electron_frequency_at_point_470___________________________________ (freq_plasma_electron_profile470)_ 7.16703340222913208e+10 -Plasma_electron_frequency_at_point_471___________________________________ (freq_plasma_electron_profile471)_ 7.11767793674148712e+10 -Plasma_electron_frequency_at_point_472___________________________________ (freq_plasma_electron_profile472)_ 7.06797783200294495e+10 -Plasma_electron_frequency_at_point_473___________________________________ (freq_plasma_electron_profile473)_ 7.01792576593636475e+10 -Plasma_electron_frequency_at_point_474___________________________________ (freq_plasma_electron_profile474)_ 6.96751415346262512e+10 -Plasma_electron_frequency_at_point_475___________________________________ (freq_plasma_electron_profile475)_ 6.91673513308197174e+10 -Plasma_electron_frequency_at_point_476___________________________________ (freq_plasma_electron_profile476)_ 6.86558055256210251e+10 -Plasma_electron_frequency_at_point_477___________________________________ (freq_plasma_electron_profile477)_ 6.81404195365918045e+10 -Plasma_electron_frequency_at_point_478___________________________________ (freq_plasma_electron_profile478)_ 6.76211055579069214e+10 -Plasma_electron_frequency_at_point_479___________________________________ (freq_plasma_electron_profile479)_ 6.70977723857091827e+10 -Plasma_electron_frequency_at_point_480___________________________________ (freq_plasma_electron_profile480)_ 6.65703252311064301e+10 -Plasma_electron_frequency_at_point_481___________________________________ (freq_plasma_electron_profile481)_ 6.60386655197251358e+10 -Plasma_electron_frequency_at_point_482___________________________________ (freq_plasma_electron_profile482)_ 6.55026906766201553e+10 -Plasma_electron_frequency_at_point_483___________________________________ (freq_plasma_electron_profile483)_ 6.49622938952114716e+10 -Plasma_electron_frequency_at_point_484___________________________________ (freq_plasma_electron_profile484)_ 6.44173638887736359e+10 -Plasma_electron_frequency_at_point_485___________________________________ (freq_plasma_electron_profile485)_ 6.38677846228403625e+10 -Plasma_electron_frequency_at_point_486___________________________________ (freq_plasma_electron_profile486)_ 6.33134350267016602e+10 -Plasma_electron_frequency_at_point_487___________________________________ (freq_plasma_electron_profile487)_ 6.27541886819614563e+10 -Plasma_electron_frequency_at_point_488___________________________________ (freq_plasma_electron_profile488)_ 6.21899134858866577e+10 -Plasma_electron_frequency_at_point_489___________________________________ (freq_plasma_electron_profile489)_ 6.16204712870074997e+10 -Plasma_electron_frequency_at_point_490___________________________________ (freq_plasma_electron_profile490)_ 6.10457174901218033e+10 -Plasma_electron_frequency_at_point_491___________________________________ (freq_plasma_electron_profile491)_ 6.04655006275033722e+10 -Plasma_electron_frequency_at_point_492___________________________________ (freq_plasma_electron_profile492)_ 5.98796618927116089e+10 -Plasma_electron_frequency_at_point_493___________________________________ (freq_plasma_electron_profile493)_ 5.92880346329367447e+10 -Plasma_electron_frequency_at_point_494___________________________________ (freq_plasma_electron_profile494)_ 5.86904437952819824e+10 -Plasma_electron_frequency_at_point_495___________________________________ (freq_plasma_electron_profile495)_ 5.80867053217687836e+10 -Plasma_electron_frequency_at_point_496___________________________________ (freq_plasma_electron_profile496)_ 5.74766254871391144e+10 -Plasma_electron_frequency_at_point_497___________________________________ (freq_plasma_electron_profile497)_ 5.68600001727022171e+10 -Plasma_electron_frequency_at_point_498___________________________________ (freq_plasma_electron_profile498)_ 5.62366140685100784e+10 -Plasma_electron_frequency_at_point_499___________________________________ (freq_plasma_electron_profile499)_ 5.56062397950211334e+10 -Plasma_electron_frequency_at_point_500___________________________________ (freq_plasma_electron_profile500)_ 5.49686369340939789e+10 -Volume_averaged_electron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_electron_vol_avg)_ 1.39600515308623993e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_electron_profile0)_ 2.09400772962935944e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_electron_profile1)_ 2.09191790155587738e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_electron_profile2)_ 2.08983224063707794e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_electron_profile3)_ 2.08775073442130402e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_electron_profile4)_ 2.08567337050645691e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_electron_profile5)_ 2.08360013653975067e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_electron_profile6)_ 2.08153102021746674e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_electron_profile7)_ 2.07946600928471100e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_electron_profile8)_ 2.07740509153517242e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_electron_profile9)_ 2.07534825481088013e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_electron_profile10)_ 2.07329548700196747e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_electron_profile11)_ 2.07124677604643219e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_electron_profile12)_ 2.06920210992990051e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_electron_profile13)_ 2.06716147668539398e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_electron_profile14)_ 2.06512486439309265e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_electron_profile15)_ 2.06309226118010742e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_electron_profile16)_ 2.06106365522024475e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_electron_profile17)_ 2.05903903473378082e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_electron_profile18)_ 2.05701838798723175e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_electron_profile19)_ 2.05500170329312683e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_electron_profile20)_ 2.05298896900978363e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_electron_profile21)_ 2.05098017354108551e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_electron_profile22)_ 2.04897530533625519e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_electron_profile23)_ 2.04697435288963776e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_electron_profile24)_ 2.04497730474047729e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_electron_profile25)_ 2.04298414947269897e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_electron_profile26)_ 2.04099487571469269e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_electron_profile27)_ 2.03900947213909424e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_electron_profile28)_ 2.03702792746257446e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_electron_profile29)_ 2.03505023044562042e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_electron_profile30)_ 2.03307636989232666e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_electron_profile31)_ 2.03110633465018341e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_electron_profile32)_ 2.02914011360986359e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_electron_profile33)_ 2.02717769570501862e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_electron_profile34)_ 2.02521906991206696e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_electron_profile35)_ 2.02326422524998962e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_electron_profile36)_ 2.02131315078012482e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_electron_profile37)_ 2.01936583560596283e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_electron_profile38)_ 2.01742226887294403e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_electron_profile39)_ 2.01548243976825867e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_electron_profile40)_ 2.01354633752064240e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_electron_profile41)_ 2.01161395140018158e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_electron_profile42)_ 2.00968527071811035e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_electron_profile43)_ 2.00776028482661804e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_electron_profile44)_ 2.00583898311864990e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_electron_profile45)_ 2.00392135502771423e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_electron_profile46)_ 2.00200739002768768e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_electron_profile47)_ 2.00009707763262329e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_electron_profile48)_ 1.99819040739655792e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_electron_profile49)_ 1.99628736891332275e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_electron_profile50)_ 1.99438795181635498e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_electron_profile51)_ 1.99249214577850677e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_electron_profile52)_ 1.99059994051186066e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_electron_profile53)_ 1.98871132576754211e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_electron_profile54)_ 1.98682629133553497e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_electron_profile55)_ 1.98494482704449738e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_electron_profile56)_ 1.98306692276157898e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_electron_profile57)_ 1.98119256839223938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_electron_profile58)_ 1.97932175388006561e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_electron_profile59)_ 1.97745446920659332e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_electron_profile60)_ 1.97559070439113007e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_electron_profile61)_ 1.97373044949057343e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_electron_profile62)_ 1.97187369459923706e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_electron_profile63)_ 1.97002042984867371e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_electron_profile64)_ 1.96817064540750153e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_electron_profile65)_ 1.96632433148122803e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_electron_profile66)_ 1.96448147831207977e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_electron_profile67)_ 1.96264207617882874e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_electron_profile68)_ 1.96080611539662231e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_electron_profile69)_ 1.95897358631681244e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_electron_profile70)_ 1.95714447932678711e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_electron_profile71)_ 1.95531878484980316e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_electron_profile72)_ 1.95349649334481750e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_electron_profile73)_ 1.95167759530632111e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_electron_profile74)_ 1.94986208126417572e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_electron_profile75)_ 1.94804994178344696e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_electron_profile76)_ 1.94624116746424255e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_electron_profile77)_ 1.94443574894154816e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_electron_profile78)_ 1.94263367688506897e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_electron_profile79)_ 1.94083494199906433e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_electron_profile80)_ 1.93903953502219147e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_electron_profile81)_ 1.93724744672734650e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_electron_profile82)_ 1.93545866792150452e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_electron_profile83)_ 1.93367318944556213e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_electron_profile84)_ 1.93189100217418365e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_electron_profile85)_ 1.93011209701564362e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_electron_profile86)_ 1.92833646491167389e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_electron_profile87)_ 1.92656409683730652e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_electron_profile88)_ 1.92479498380072479e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_electron_profile89)_ 1.92302911684310944e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_electron_profile90)_ 1.92126648703848694e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_electron_profile91)_ 1.91950708549358002e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_electron_profile92)_ 1.91775090334765686e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_electron_profile93)_ 1.91599793177238495e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_electron_profile94)_ 1.91424816197167969e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_electron_profile95)_ 1.91250158518155945e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_electron_profile96)_ 1.91075819266999939e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_electron_profile97)_ 1.90901797573678436e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_electron_profile98)_ 1.90728092571336609e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_electron_profile99)_ 1.90554703396271759e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_electron_profile100)_ 1.90381629187919098e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_electron_profile101)_ 1.90208869088837494e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_electron_profile102)_ 1.90036422244695282e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_electron_profile103)_ 1.89864287804256287e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_electron_profile104)_ 1.89692464919365540e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_electron_profile105)_ 1.89520952744935730e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_electron_profile106)_ 1.89349750438933044e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_electron_profile107)_ 1.89178857162363647e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_electron_profile108)_ 1.89008272079259613e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_electron_profile109)_ 1.88837994356665710e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_electron_profile110)_ 1.88668023164625488e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_electron_profile111)_ 1.88498357676168091e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_electron_profile112)_ 1.88328997067294617e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_electron_profile113)_ 1.88159940516964905e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_electron_profile114)_ 1.87991187207084259e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_electron_profile115)_ 1.87822736322490082e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_electron_profile116)_ 1.87654587050939056e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_electron_profile117)_ 1.87486738583093811e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_electron_profile118)_ 1.87319190112510193e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_electron_profile119)_ 1.87151940835624054e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_electron_profile120)_ 1.86984989951738556e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_electron_profile121)_ 1.86818336663011505e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_electron_profile122)_ 1.86651980174442505e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_electron_profile123)_ 1.86485919693860229e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_electron_profile124)_ 1.86320154431910126e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_electron_profile125)_ 1.86154683602041656e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_electron_profile126)_ 1.85989506420495911e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_electron_profile127)_ 1.85824622106293365e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_electron_profile128)_ 1.85660029881221344e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_electron_profile129)_ 1.85495728969822052e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_electron_profile130)_ 1.85331718599380127e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_electron_profile131)_ 1.85167997999910706e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_electron_profile132)_ 1.85004566404147339e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_electron_profile133)_ 1.84841423047529907e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_electron_profile134)_ 1.84678567168192902e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_electron_profile135)_ 1.84515998006953278e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_electron_profile136)_ 1.84353714807298920e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_electron_profile137)_ 1.84191716815376892e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_electron_profile138)_ 1.84030003279981506e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_electron_profile139)_ 1.83868573452542938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_electron_profile140)_ 1.83707426587115601e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_electron_profile141)_ 1.83546561940366852e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_electron_profile142)_ 1.83385978771565125e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_electron_profile143)_ 1.83225676342569000e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_electron_profile144)_ 1.83065653917815613e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_electron_profile145)_ 1.82905910764309662e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_electron_profile146)_ 1.82746446151611969e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_electron_profile147)_ 1.82587259351828339e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_electron_profile148)_ 1.82428349639598694e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_electron_profile149)_ 1.82269716292085999e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_electron_profile150)_ 1.82111358588965179e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_electron_profile151)_ 1.81953275812412262e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_electron_profile152)_ 1.81795467247093597e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_electron_profile153)_ 1.81637932180155060e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_electron_profile154)_ 1.81480669901211182e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_electron_profile155)_ 1.81323679702334747e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_electron_profile156)_ 1.81166960878045715e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_electron_profile157)_ 1.81010512725301300e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_electron_profile158)_ 1.80854334543484833e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_electron_profile159)_ 1.80698425634395599e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_electron_profile160)_ 1.80542785302238525e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_electron_profile161)_ 1.80387412853613525e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_electron_profile162)_ 1.80232307597505524e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_electron_profile163)_ 1.80077468845274017e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_electron_profile164)_ 1.79922895910642883e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_electron_profile165)_ 1.79768588109690308e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_electron_profile166)_ 1.79614544760838837e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_electron_profile167)_ 1.79460765184844971e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_electron_profile168)_ 1.79307248704789490e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_electron_profile169)_ 1.79153994646067444e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_electron_profile170)_ 1.79001002336378235e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_electron_profile171)_ 1.78848271105715820e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_electron_profile172)_ 1.78695800286358826e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_electron_profile173)_ 1.78543589212861115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_electron_profile174)_ 1.78391637222041656e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_electron_profile175)_ 1.78239943652975281e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_electron_profile176)_ 1.78088507846982941e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_electron_profile177)_ 1.77937329147622192e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_electron_profile178)_ 1.77786406900677643e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_electron_profile179)_ 1.77635740454151611e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_electron_profile180)_ 1.77485329158254791e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_electron_profile181)_ 1.77335172365396698e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_electron_profile182)_ 1.77185269430176605e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_electron_profile183)_ 1.77035619709374084e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_electron_profile184)_ 1.76886222561940002e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_electron_profile185)_ 1.76737077348987274e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_electron_profile186)_ 1.76588183433781708e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_electron_profile187)_ 1.76439540181733093e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_electron_profile188)_ 1.76291146960385986e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_electron_profile189)_ 1.76143003139410828e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_electron_profile190)_ 1.75995108090595245e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_electron_profile191)_ 1.75847461187834656e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_electron_profile192)_ 1.75700061807123993e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_electron_profile193)_ 1.75552909326548492e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_electron_profile194)_ 1.75406003126275269e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_electron_profile195)_ 1.75259342588544281e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_electron_profile196)_ 1.75112927097659912e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_electron_profile197)_ 1.74966756039982422e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_electron_profile198)_ 1.74820828803919037e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_electron_profile199)_ 1.74675144779915741e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_electron_profile200)_ 1.74529703360448730e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_electron_profile201)_ 1.74384503940015747e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_electron_profile202)_ 1.74239545915127960e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_electron_profile203)_ 1.74094828684301453e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_electron_profile204)_ 1.73950351648048889e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_electron_profile205)_ 1.73806114208871429e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_electron_profile206)_ 1.73662115771250153e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_electron_profile207)_ 1.73518355741638153e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_electron_profile208)_ 1.73374833528452362e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_electron_profile209)_ 1.73231548542065216e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_electron_profile210)_ 1.73088500194796814e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_electron_profile211)_ 1.72945687900906708e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_electron_profile212)_ 1.72803111076586060e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_electron_profile213)_ 1.72660769139949677e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_electron_profile214)_ 1.72518661511027893e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_electron_profile215)_ 1.72376787611759003e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_electron_profile216)_ 1.72235146865981049e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_electron_profile217)_ 1.72093738699424408e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_electron_profile218)_ 1.71952562539703796e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_electron_profile219)_ 1.71811617816310608e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_electron_profile220)_ 1.71670903960605194e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_electron_profile221)_ 1.71530420405809265e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_electron_profile222)_ 1.71390166586998260e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_electron_profile223)_ 1.71250141941093903e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_electron_profile224)_ 1.71110345906856262e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_electron_profile225)_ 1.70970777924876801e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_electron_profile226)_ 1.70831437437570435e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_electron_profile227)_ 1.70692323889168518e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_electron_profile228)_ 1.70553436725711060e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_electron_profile229)_ 1.70414775395039764e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_electron_profile230)_ 1.70276339346790344e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_electron_profile231)_ 1.70138128032385498e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_electron_profile232)_ 1.70000140905027496e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_electron_profile233)_ 1.69862377419691193e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_electron_profile234)_ 1.69724837033116516e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_electron_profile235)_ 1.69587519203801727e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_electron_profile236)_ 1.69450423391995880e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_electron_profile237)_ 1.69313549059692200e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_electron_profile238)_ 1.69176895670620605e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_electron_profile239)_ 1.69040462690241089e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_electron_profile240)_ 1.68904249585736420e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_electron_profile241)_ 1.68768255826005585e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_electron_profile242)_ 1.68632480881656433e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_electron_profile243)_ 1.68496924224999115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_electron_profile244)_ 1.68361585330039276e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_electron_profile245)_ 1.68226463672471039e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_electron_profile246)_ 1.68091558729670349e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_electron_profile247)_ 1.67956869980688263e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_electron_profile248)_ 1.67822396906244141e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_electron_profile249)_ 1.67688138988719147e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_electron_profile250)_ 1.67554095712149414e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_electron_profile251)_ 1.67420266562219574e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_electron_profile252)_ 1.67286651026256134e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_electron_profile253)_ 1.67153248593220856e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_electron_profile254)_ 1.67020058753704315e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_electron_profile255)_ 1.66887080999919525e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_electron_profile256)_ 1.66754314825695251e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_electron_profile257)_ 1.66621759726469727e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_electron_profile258)_ 1.66489415199284302e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_electron_profile259)_ 1.66357280742776917e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_electron_profile260)_ 1.66225355857175995e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_electron_profile261)_ 1.66093640044293915e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_electron_profile262)_ 1.65962132807520935e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_electron_profile263)_ 1.65830833651818756e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_electron_profile264)_ 1.65699742083714569e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_electron_profile265)_ 1.65568857611294556e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_electron_profile266)_ 1.65438179744198029e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_electron_profile267)_ 1.65307707993611145e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_electron_profile268)_ 1.65177441872260803e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_electron_profile269)_ 1.65047380894408600e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_electron_profile270)_ 1.64917524575844971e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_electron_profile271)_ 1.64787872433882782e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_electron_profile272)_ 1.64658423987351868e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_electron_profile273)_ 1.64529178756592560e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_electron_profile274)_ 1.64400136263450134e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_electron_profile275)_ 1.64271296031268738e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_electron_profile276)_ 1.64142657584885590e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_electron_profile277)_ 1.64014220450625153e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_electron_profile278)_ 1.63885984156293121e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_electron_profile279)_ 1.63757948231171021e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_electron_profile280)_ 1.63630112206010101e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_electron_profile281)_ 1.63502475613025696e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_electron_profile282)_ 1.63375037985891632e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_electron_profile283)_ 1.63247798859734375e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_electron_profile284)_ 1.63120757771127563e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_electron_profile285)_ 1.62993914258086243e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_electron_profile286)_ 1.62867267860061340e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_electron_profile287)_ 1.62740818117933960e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_electron_profile288)_ 1.62614564574010040e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_electron_profile289)_ 1.62488506772014679e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_electron_profile290)_ 1.62362644257086700e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_electron_profile291)_ 1.62236976575773132e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_electron_profile292)_ 1.62111503276023895e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_electron_profile293)_ 1.61986223907186188e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_electron_profile294)_ 1.61861138019999176e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_electron_profile295)_ 1.61736245166588684e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_electron_profile296)_ 1.61611544900461761e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_electron_profile297)_ 1.61487036776501495e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_electron_profile298)_ 1.61362720350961426e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_electron_profile299)_ 1.61238595181460724e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_electron_profile300)_ 1.61114660826978424e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_electron_profile301)_ 1.60990916847848633e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_electron_profile302)_ 1.60867362805755127e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_electron_profile303)_ 1.60743998263726196e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_electron_profile304)_ 1.60620822786129456e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_electron_profile305)_ 1.60497835938666870e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_electron_profile306)_ 1.60375037288369507e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_electron_profile307)_ 1.60252426403592438e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_electron_profile308)_ 1.60130002854009857e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_electron_profile309)_ 1.60007766210609894e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_electron_profile310)_ 1.59885716045689484e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_electron_profile311)_ 1.59763851932849792e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_electron_profile312)_ 1.59642173446990814e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_electron_profile313)_ 1.59520680164306641e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_electron_profile314)_ 1.59399371662280518e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_electron_profile315)_ 1.59278247519680023e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_electron_profile316)_ 1.59157307316551941e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_electron_profile317)_ 1.59036550634217682e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_electron_profile318)_ 1.58915977055268341e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_electron_profile319)_ 1.58795586163559814e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_electron_profile320)_ 1.58675377544208130e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_electron_profile321)_ 1.58555350783584656e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_electron_profile322)_ 1.58435505469311371e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_electron_profile323)_ 1.58315841190255981e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_electron_profile324)_ 1.58196357536527496e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_electron_profile325)_ 1.58077054099471283e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_electron_profile326)_ 1.57957930471664642e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_electron_profile327)_ 1.57838986246911865e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_electron_profile328)_ 1.57720221020239960e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_electron_profile329)_ 1.57601634387893921e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_electron_profile330)_ 1.57483225947332031e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_electron_profile331)_ 1.57364995297221436e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_electron_profile332)_ 1.57246942037433533e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_electron_profile333)_ 1.57129065769039703e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_electron_profile334)_ 1.57011366094306305e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_electron_profile335)_ 1.56893842616690765e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_electron_profile336)_ 1.56776494940836914e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_electron_profile337)_ 1.56659322672570190e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_electron_profile338)_ 1.56542325418893890e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_electron_profile339)_ 1.56425502787984283e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_electron_profile340)_ 1.56308854389186371e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_electron_profile341)_ 1.56192379833009613e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_electron_profile342)_ 1.56076078731123566e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_electron_profile343)_ 1.55959950696353363e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_electron_profile344)_ 1.55843995342675781e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_electron_profile345)_ 1.55728212285214691e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_electron_profile346)_ 1.55612601140236786e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_electron_profile347)_ 1.55497161525147583e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_electron_profile348)_ 1.55381893058486969e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_electron_profile349)_ 1.55266795359925110e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_electron_profile350)_ 1.55151868050258270e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_electron_profile351)_ 1.55037110751404541e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_electron_profile352)_ 1.54922523086399811e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_electron_profile353)_ 1.54808104679393585e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_electron_profile354)_ 1.54693855155644958e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_electron_profile355)_ 1.54579774141518402e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_electron_profile356)_ 1.54465861264479645e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_electron_profile357)_ 1.54352116153091980e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_electron_profile358)_ 1.54238538437011719e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_electron_profile359)_ 1.54125127746984528e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_electron_profile360)_ 1.54011883714841248e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_electron_profile361)_ 1.53898805973494049e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_electron_profile362)_ 1.53785894156932465e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_electron_profile363)_ 1.53673147900219147e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_electron_profile364)_ 1.53560566839486389e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_electron_profile365)_ 1.53448150611931854e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_electron_profile366)_ 1.53335898855814850e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_electron_profile367)_ 1.53223811210452423e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_electron_profile368)_ 1.53111887316215424e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_electron_profile369)_ 1.53000126814524811e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_electron_profile370)_ 1.52888529347847504e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_electron_profile371)_ 1.52777094559693085e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_electron_profile372)_ 1.52665822094609558e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_electron_profile373)_ 1.52554711598179718e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_electron_profile374)_ 1.52443762717017395e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_electron_profile375)_ 1.52332975098763763e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_electron_profile376)_ 1.52222348392083496e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_electron_profile377)_ 1.52111882246661041e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_electron_profile378)_ 1.52001576313197174e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_electron_profile379)_ 1.51891430243405029e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_electron_profile380)_ 1.51781443690006470e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_electron_profile381)_ 1.51671616306728577e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_electron_profile382)_ 1.51561947748300018e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_electron_profile383)_ 1.51452437670447205e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_electron_profile384)_ 1.51343085729890930e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_electron_profile385)_ 1.51233891584342651e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_electron_profile386)_ 1.51124854892501038e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_electron_profile387)_ 1.51015975314048218e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_electron_profile388)_ 1.50907252509646454e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_electron_profile389)_ 1.50798686140934479e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_electron_profile390)_ 1.50690275870524048e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_electron_profile391)_ 1.50582021361996368e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_electron_profile392)_ 1.50473922279898712e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_electron_profile393)_ 1.50365978289740997e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_electron_profile394)_ 1.50258189057992065e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_electron_profile395)_ 1.50150554252076599e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_electron_profile396)_ 1.50043073540371460e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_electron_profile397)_ 1.49935746592202393e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_electron_profile398)_ 1.49828573077840546e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_electron_profile399)_ 1.49721552668499207e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_electron_profile400)_ 1.49614685036330414e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_electron_profile401)_ 1.49507969854421478e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_electron_profile402)_ 1.49401406796791809e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_electron_profile403)_ 1.49294995538389557e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_electron_profile404)_ 1.49188735755088226e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_electron_profile405)_ 1.49082627123683441e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_electron_profile406)_ 1.48976669321889801e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_electron_profile407)_ 1.48870862028337311e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_electron_profile408)_ 1.48765204922568451e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_electron_profile409)_ 1.48659697685034698e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_electron_profile410)_ 1.48554339997093506e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_electron_profile411)_ 1.48449131541004913e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_electron_profile412)_ 1.48344071999928497e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_electron_profile413)_ 1.48239161057920044e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_electron_profile414)_ 1.48134398399928558e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_electron_profile415)_ 1.48029783711793030e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_electron_profile416)_ 1.47925316680239197e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_electron_profile417)_ 1.47820996992876526e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_electron_profile418)_ 1.47716824338195160e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_electron_profile419)_ 1.47612798405562622e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_electron_profile420)_ 1.47508918885220917e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_electron_profile421)_ 1.47405185468283356e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_electron_profile422)_ 1.47301597846731506e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_electron_profile423)_ 1.47198155713412170e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_electron_profile424)_ 1.47094858762034332e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_electron_profile425)_ 1.46991706687166138e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_electron_profile426)_ 1.46888699184231903e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_electron_profile427)_ 1.46785835949509064e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_electron_profile428)_ 1.46683116680125244e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_electron_profile429)_ 1.46580541074055206e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_electron_profile430)_ 1.46478108830118073e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_electron_profile431)_ 1.46375819647974121e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_electron_profile432)_ 1.46273673228122070e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_electron_profile433)_ 1.46171669271896057e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_electron_profile434)_ 1.46069807481462708e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_electron_profile435)_ 1.45968087559818176e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_electron_profile436)_ 1.45866509210785614e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_electron_profile437)_ 1.45765072139011780e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_electron_profile438)_ 1.45663776049964508e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_electron_profile439)_ 1.45562620649929810e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_electron_profile440)_ 1.45461605646008972e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_electron_profile441)_ 1.45360730746115753e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_electron_profile442)_ 1.45259995658973602e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_electron_profile443)_ 1.45159400094112823e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_electron_profile444)_ 1.45058943761867767e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_electron_profile445)_ 1.44958626373374084e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_electron_profile446)_ 1.44858447640565948e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_electron_profile447)_ 1.44758407276173279e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_electron_profile448)_ 1.44658504993719055e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_electron_profile449)_ 1.44558740507516510e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_electron_profile450)_ 1.44459113532666382e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_electron_profile451)_ 1.44359623785054382e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_electron_profile452)_ 1.44260270981348206e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_electron_profile453)_ 1.44161054838995148e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_electron_profile454)_ 1.44061975076219208e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_electron_profile455)_ 1.43963031412018494e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_electron_profile456)_ 1.43864223566162598e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_electron_profile457)_ 1.43765551259189911e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_electron_profile458)_ 1.43667014212405029e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_electron_profile459)_ 1.43568612147875977e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_electron_profile460)_ 1.43470344788431854e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_electron_profile461)_ 1.43372211857660004e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_electron_profile462)_ 1.43274213079903564e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_electron_profile463)_ 1.43176348180258820e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_electron_profile464)_ 1.43078616884572632e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_electron_profile465)_ 1.42981018919439911e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_electron_profile466)_ 1.42883554012201050e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_electron_profile467)_ 1.42786221890939331e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_electron_profile468)_ 1.42689022284478516e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_electron_profile469)_ 1.42591954922380249e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_electron_profile470)_ 1.42495019534941498e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_electron_profile471)_ 1.42398215853192200e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_electron_profile472)_ 1.42301543608892700e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_electron_profile473)_ 1.42205002534531189e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_electron_profile474)_ 1.42108592363321320e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_electron_profile475)_ 1.42012312829199829e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_electron_profile476)_ 1.41916163666823914e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_electron_profile477)_ 1.41820144611568970e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_electron_profile478)_ 1.41724255399525970e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_electron_profile479)_ 1.41628495767499298e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_electron_profile480)_ 1.41532865453003998e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_electron_profile481)_ 1.41437364194263794e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_electron_profile482)_ 1.41341991730208313e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_electron_profile483)_ 1.41246747800470978e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_electron_profile484)_ 1.41151632145386475e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_electron_profile485)_ 1.41056644505988495e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_electron_profile486)_ 1.40961784624007324e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_electron_profile487)_ 1.40867052241867554e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_electron_profile488)_ 1.40772447102685638e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_electron_profile489)_ 1.40677968950267731e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_electron_profile490)_ 1.40583617529107269e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_electron_profile491)_ 1.40489392584382660e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_electron_profile492)_ 1.40395293861955078e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_electron_profile493)_ 1.40301321108366089e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_electron_profile494)_ 1.40207474070835419e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_electron_profile495)_ 1.40113752497258667e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_electron_profile496)_ 1.40020156136205048e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_electron_profile497)_ 1.39926684736915192e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_electron_profile498)_ 1.39833338049298828e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_electron_profile499)_ 1.39740115823932617e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_electron_profile500)_ 1.39647017812057892e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_electron_profile501)_ 1.39554043765578491e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_electron_profile502)_ 1.39461193437058502e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_electron_profile503)_ 1.39368466579720032e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_electron_profile504)_ 1.39275862947441193e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_electron_profile505)_ 1.39183382294753601e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_electron_profile506)_ 1.39091024376840698e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_electron_profile507)_ 1.38998788949535095e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_electron_profile508)_ 1.38906675769316711e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_electron_profile509)_ 1.38814684593310547e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_electron_profile510)_ 1.38722815179284546e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_electron_profile511)_ 1.38631067285647430e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_electron_profile512)_ 1.38539440671446747e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_electron_profile513)_ 1.38447935096366547e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_electron_profile514)_ 1.38356550320725372e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_electron_profile515)_ 1.38265286105474243e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_electron_profile516)_ 1.38174142212194427e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_electron_profile517)_ 1.38083118403095490e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_electron_profile518)_ 1.37992214441013123e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_electron_profile519)_ 1.37901430089407227e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_electron_profile520)_ 1.37810765112359589e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_electron_profile521)_ 1.37720219274572235e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_electron_profile522)_ 1.37629792341365021e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_electron_profile523)_ 1.37539484078673859e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_electron_profile524)_ 1.37449294253048492e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_electron_profile525)_ 1.37359222631650696e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_electron_profile526)_ 1.37269268982252090e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_electron_profile527)_ 1.37179433073232285e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_electron_profile528)_ 1.37089714673576813e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_electron_profile529)_ 1.37000113552875122e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_electron_profile530)_ 1.36910629481318680e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_electron_profile531)_ 1.36821262229699051e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_electron_profile532)_ 1.36732011569405685e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_electron_profile533)_ 1.36642877272424332e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_electron_profile534)_ 1.36553859111334824e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_electron_profile535)_ 1.36464956859309204e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_electron_profile536)_ 1.36376170290109924e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_electron_profile537)_ 1.36287499178087753e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_electron_profile538)_ 1.36198943298179947e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_electron_profile539)_ 1.36110502425908417e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_electron_profile540)_ 1.36022176337377640e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_electron_profile541)_ 1.35933964809272995e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_electron_profile542)_ 1.35845867618858688e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_electron_profile543)_ 1.35757884543975983e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_electron_profile544)_ 1.35670015363041397e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_electron_profile545)_ 1.35582259855044571e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_electron_profile546)_ 1.35494617799546844e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_electron_profile547)_ 1.35407088976678894e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_electron_profile548)_ 1.35319673167139389e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_electron_profile549)_ 1.35232370152192841e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_electron_profile550)_ 1.35145179713667923e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_electron_profile551)_ 1.35058101633955505e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_electron_profile552)_ 1.34971135696007034e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_electron_profile553)_ 1.34884281683332657e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_electron_profile554)_ 1.34797539379999329e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_electron_profile555)_ 1.34710908570629135e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_electron_profile556)_ 1.34624389040397522e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_electron_profile557)_ 1.34537980575031403e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_electron_profile558)_ 1.34451682960807526e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_electron_profile559)_ 1.34365495984550598e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_electron_profile560)_ 1.34279419433631622e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_electron_profile561)_ 1.34193453095966034e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_electron_profile562)_ 1.34107596760012131e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_electron_profile563)_ 1.34021850214769150e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_electron_profile564)_ 1.33936213249775650e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_electron_profile565)_ 1.33850685655107895e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_electron_profile566)_ 1.33765267221377731e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_electron_profile567)_ 1.33679957739731491e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_electron_profile568)_ 1.33594757001847626e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_electron_profile569)_ 1.33509664799935623e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_electron_profile570)_ 1.33424680926733887e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_electron_profile571)_ 1.33339805175508224e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_electron_profile572)_ 1.33255037340050156e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_electron_profile573)_ 1.33170377214675308e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_electron_profile574)_ 1.33085824594221558e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_electron_profile575)_ 1.33001379274047531e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_electron_profile576)_ 1.32917041050031021e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_electron_profile577)_ 1.32832809718567123e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_electron_profile578)_ 1.32748685076566757e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_electron_profile579)_ 1.32664666921455017e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_electron_profile580)_ 1.32580755051169464e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_electron_profile581)_ 1.32496949264158646e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_electron_profile582)_ 1.32413249359380264e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_electron_profile583)_ 1.32329655136299850e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_electron_profile584)_ 1.32246166394888916e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_electron_profile585)_ 1.32162782935623535e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_electron_profile586)_ 1.32079504559482666e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_electron_profile587)_ 1.31996331067946396e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_electron_profile588)_ 1.31913262262994934e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_electron_profile589)_ 1.31830297947106232e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_electron_profile590)_ 1.31747437923255127e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_electron_profile591)_ 1.31664681994911392e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_electron_profile592)_ 1.31582029966038254e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_electron_profile593)_ 1.31499481641090912e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_electron_profile594)_ 1.31417036825014999e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_electron_profile595)_ 1.31334695323244949e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_electron_profile596)_ 1.31252456941702515e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_electron_profile597)_ 1.31170321486795349e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_electron_profile598)_ 1.31088288765415207e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_electron_profile599)_ 1.31006358584936844e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_electron_profile600)_ 1.30924530753216064e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_electron_profile601)_ 1.30842805078588608e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_electron_profile602)_ 1.30761181369868347e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_electron_profile603)_ 1.30679659436345993e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_electron_profile604)_ 1.30598239087787521e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_electron_profile605)_ 1.30516920134432739e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_electron_profile606)_ 1.30435702386993713e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_electron_profile607)_ 1.30354585656653595e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_electron_profile608)_ 1.30273569755064575e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_electron_profile609)_ 1.30192654494347183e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_electron_profile610)_ 1.30111839687088104e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_electron_profile611)_ 1.30031125146339294e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_electron_profile612)_ 1.29950510685616180e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_electron_profile613)_ 1.29869996118896484e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_electron_profile614)_ 1.29789581260618546e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_electron_profile615)_ 1.29709265925680023e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_electron_profile616)_ 1.29629049929436554e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_electron_profile617)_ 1.29548933087700211e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_electron_profile618)_ 1.29468915216738068e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_electron_profile619)_ 1.29388996133270966e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_electron_profile620)_ 1.29309175654471878e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_electron_profile621)_ 1.29229453597964828e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_electron_profile622)_ 1.29149829781823135e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_electron_profile623)_ 1.29070304024568329e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_electron_profile624)_ 1.28990876145168594e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_electron_profile625)_ 1.28911545963037491e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_electron_profile626)_ 1.28832313298032532e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_electron_profile627)_ 1.28753177970453857e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_electron_profile628)_ 1.28674139801042938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_electron_profile629)_ 1.28595198610980942e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_electron_profile630)_ 1.28516354221887772e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_electron_profile631)_ 1.28437606455820419e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_electron_profile632)_ 1.28358955135271881e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_electron_profile633)_ 1.28280400083169479e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_electron_profile634)_ 1.28201941122873978e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_electron_profile635)_ 1.28123578078177826e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_electron_profile636)_ 1.28045310773304169e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_electron_profile637)_ 1.27967139032905319e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_electron_profile638)_ 1.27889062682061584e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_electron_profile639)_ 1.27811081546279846e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_electron_profile640)_ 1.27733195451492355e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_electron_profile641)_ 1.27655404224055374e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_electron_profile642)_ 1.27577707690748001e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_electron_profile643)_ 1.27500105678770645e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_electron_profile644)_ 1.27422598015744049e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_electron_profile645)_ 1.27345184529707748e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_electron_profile646)_ 1.27267865049118988e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_electron_profile647)_ 1.27190639402851318e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_electron_profile648)_ 1.27113507420193390e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_electron_profile649)_ 1.27036468930847855e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_electron_profile650)_ 1.26959523764929688e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_electron_profile651)_ 1.26882671752965485e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_electron_profile652)_ 1.26805912725891647e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_electron_profile653)_ 1.26729246515053772e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_electron_profile654)_ 1.26652672952204788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_electron_profile655)_ 1.26576191869504181e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_electron_profile656)_ 1.26499803099516556e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_electron_profile657)_ 1.26423506475210464e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_electron_profile658)_ 1.26347301829957169e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_electron_profile659)_ 1.26271188997529480e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_electron_profile660)_ 1.26195167812100494e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_electron_profile661)_ 1.26119238108242432e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_electron_profile662)_ 1.26043399720925400e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_electron_profile663)_ 1.25967652485516190e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_electron_profile664)_ 1.25891996237777145e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_electron_profile665)_ 1.25816430813864914e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_electron_profile666)_ 1.25740956050329300e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_electron_profile667)_ 1.25665571784112076e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_electron_profile668)_ 1.25590277852545822e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_electron_profile669)_ 1.25515074093352646e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_electron_profile670)_ 1.25439960344643295e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_electron_profile671)_ 1.25364936444915619e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_electron_profile672)_ 1.25290002233053772e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_electron_profile673)_ 1.25215157548326721e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_electron_profile674)_ 1.25140402230387436e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_electron_profile675)_ 1.25065736119271423e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_electron_profile676)_ 1.24991159055395920e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_electron_profile677)_ 1.24916670879558350e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_electron_profile678)_ 1.24842271432935654e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_electron_profile679)_ 1.24767960557082703e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_electron_profile680)_ 1.24693738093931564e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_electron_profile681)_ 1.24619603885790100e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_electron_profile682)_ 1.24545557775341019e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_electron_profile683)_ 1.24471599605640701e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_electron_profile684)_ 1.24397729220118057e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_electron_profile685)_ 1.24323946462573517e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_electron_profile686)_ 1.24250251177177795e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_electron_profile687)_ 1.24176643208470932e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_electron_profile688)_ 1.24103122401361130e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_electron_profile689)_ 1.24029688601123627e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_electron_profile690)_ 1.23956341653399734e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_electron_profile691)_ 1.23883081404195602e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_electron_profile692)_ 1.23809907699881226e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_electron_profile693)_ 1.23736820387189468e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_electron_profile694)_ 1.23663819313214691e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_electron_profile695)_ 1.23590904325412125e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_electron_profile696)_ 1.23518075271596298e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_electron_profile697)_ 1.23445331999940460e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_electron_profile698)_ 1.23372674358975235e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_electron_profile699)_ 1.23300102197587601e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_electron_profile700)_ 1.23227615365019943e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_electron_profile701)_ 1.23155213710868927e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_electron_profile702)_ 1.23082897085084518e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_electron_profile703)_ 1.23010665337968872e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_electron_profile704)_ 1.22938518320175339e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_electron_profile705)_ 1.22866455882707458e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_electron_profile706)_ 1.22794477876917938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_electron_profile707)_ 1.22722584154507584e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_electron_profile708)_ 1.22650774567524261e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_electron_profile709)_ 1.22579048968361938e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_electron_profile710)_ 1.22507407209759766e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_electron_profile711)_ 1.22435849144800797e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_electron_profile712)_ 1.22364374626911255e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_electron_profile713)_ 1.22292983509859329e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_electron_profile714)_ 1.22221675647754486e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_electron_profile715)_ 1.22150450895045975e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_electron_profile716)_ 1.22079309106522385e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_electron_profile717)_ 1.22008250137310196e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_electron_profile718)_ 1.21937273842873123e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_electron_profile719)_ 1.21866380079011002e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_electron_profile720)_ 1.21795568701858749e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_electron_profile721)_ 1.21724839567885544e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_electron_profile722)_ 1.21654192533893738e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_electron_profile723)_ 1.21583627457017944e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_electron_profile724)_ 1.21513144194724014e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_electron_profile725)_ 1.21442742604808212e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_electron_profile726)_ 1.21372422545396027e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_electron_profile727)_ 1.21302183874941528e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_electron_profile728)_ 1.21232026452226120e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_electron_profile729)_ 1.21161950136357773e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_electron_profile730)_ 1.21091954786770065e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_electron_profile731)_ 1.21022040263221115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_electron_profile732)_ 1.20952206425792816e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_electron_profile733)_ 1.20882453134889832e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_electron_profile734)_ 1.20812780251238571e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_electron_profile735)_ 1.20743187635886490e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_electron_profile736)_ 1.20673675150200867e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_electron_profile737)_ 1.20604242655868225e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_electron_profile738)_ 1.20534890014893005e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_electron_profile739)_ 1.20465617089597092e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_electron_profile740)_ 1.20396423742618576e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_electron_profile741)_ 1.20327309836910995e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_electron_profile742)_ 1.20258275235742355e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_electron_profile743)_ 1.20189319802694366e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_electron_profile744)_ 1.20120443401661285e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_electron_profile745)_ 1.20051645896849335e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_electron_profile746)_ 1.19982927152775574e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_electron_profile747)_ 1.19914287034267151e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_electron_profile748)_ 1.19845725406460236e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_electron_profile749)_ 1.19777242134799393e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_electron_profile750)_ 1.19708837085036514e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_electron_profile751)_ 1.19640510123230011e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_electron_profile752)_ 1.19572261115743835e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_electron_profile753)_ 1.19504089929246826e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_electron_profile754)_ 1.19435996430711655e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_electron_profile755)_ 1.19367980487413956e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_electron_profile756)_ 1.19300041966931671e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_electron_profile757)_ 1.19232180737143875e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_electron_profile758)_ 1.19164396666230225e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_electron_profile759)_ 1.19096689622669846e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_electron_profile760)_ 1.19029059475240753e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_electron_profile761)_ 1.18961506093018677e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_electron_profile762)_ 1.18894029345376602e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_electron_profile763)_ 1.18826629101983521e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_electron_profile764)_ 1.18759305232803940e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_electron_profile765)_ 1.18692057608096786e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_electron_profile766)_ 1.18624886098414780e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_electron_profile767)_ 1.18557790574603485e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_electron_profile768)_ 1.18490770907800430e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_electron_profile769)_ 1.18423826969434433e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_electron_profile770)_ 1.18356958631224701e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_electron_profile771)_ 1.18290165765179993e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_electron_profile772)_ 1.18223448243597839e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_electron_profile773)_ 1.18156805939063690e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_electron_profile774)_ 1.18090238724450089e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_electron_profile775)_ 1.18023746472916077e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_electron_profile776)_ 1.17957329057905975e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_electron_profile777)_ 1.17890986353149002e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_electron_profile778)_ 1.17824718232658173e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_electron_profile779)_ 1.17758524570729752e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_electron_profile780)_ 1.17692405241942108e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_electron_profile781)_ 1.17626360121155426e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_electron_profile782)_ 1.17560389083510345e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_electron_profile783)_ 1.17494492004427658e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_electron_profile784)_ 1.17428668759607239e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_electron_profile785)_ 1.17362919225027390e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_electron_profile786)_ 1.17297243276944000e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_electron_profile787)_ 1.17231640791889786e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_electron_profile788)_ 1.17166111646673523e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_electron_profile789)_ 1.17100655718379303e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_electron_profile790)_ 1.17035272884365692e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_electron_profile791)_ 1.16969963022265030e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_electron_profile792)_ 1.16904726009982666e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_electron_profile793)_ 1.16839561725696182e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_electron_profile794)_ 1.16774470047854568e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_electron_profile795)_ 1.16709450855177567e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_electron_profile796)_ 1.16644504026654968e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_electron_profile797)_ 1.16579629441545563e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_electron_profile798)_ 1.16514826979376862e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_electron_profile799)_ 1.16450096519943832e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_electron_profile800)_ 1.16385437943308685e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_electron_profile801)_ 1.16320851129799622e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_electron_profile802)_ 1.16256335960010544e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_electron_profile803)_ 1.16191892314799850e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_electron_profile804)_ 1.16127520075290283e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_electron_profile805)_ 1.16063219122867630e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_electron_profile806)_ 1.15998989339180389e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_electron_profile807)_ 1.15934830606138779e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_electron_profile808)_ 1.15870742805914276e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_electron_profile809)_ 1.15806725820938644e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_electron_profile810)_ 1.15742779533903351e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_electron_profile811)_ 1.15678903827758804e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_electron_profile812)_ 1.15615098585713715e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_electron_profile813)_ 1.15551363691234268e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_electron_profile814)_ 1.15487699028043503e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_electron_profile815)_ 1.15424104480120575e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_electron_profile816)_ 1.15360579931700027e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_electron_profile817)_ 1.15297125267271164e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_electron_profile818)_ 1.15233740371577179e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_electron_profile819)_ 1.15170425129614807e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_electron_profile820)_ 1.15107179426633118e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_electron_profile821)_ 1.15044003148133347e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_electron_profile822)_ 1.14980896179867767e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_electron_profile823)_ 1.14917858407839355e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_electron_profile824)_ 1.14854889718300781e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_electron_profile825)_ 1.14791989997754105e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_electron_profile826)_ 1.14729159132949615e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_electron_profile827)_ 1.14666397010885635e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_electron_profile828)_ 1.14603703518807510e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_electron_profile829)_ 1.14541078544207077e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_electron_profile830)_ 1.14478521974821930e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_electron_profile831)_ 1.14416033698634781e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_electron_profile832)_ 1.14353613603872864e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_electron_profile833)_ 1.14291261579007065e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_electron_profile834)_ 1.14228977512751465e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_electron_profile835)_ 1.14166761294062607e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_electron_profile836)_ 1.14104612812138794e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_electron_profile837)_ 1.14042531956419449e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_electron_profile838)_ 1.13980518616584534e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_electron_profile839)_ 1.13918572682553757e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_electron_profile840)_ 1.13856694044486130e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_electron_profile841)_ 1.13794882592779007e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_electron_profile842)_ 1.13733138218067795e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_electron_profile843)_ 1.13671460811225006e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_electron_profile844)_ 1.13609850263359863e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_electron_profile845)_ 1.13548306465817413e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_electron_profile846)_ 1.13486829310178101e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_electron_profile847)_ 1.13425418688256989e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_electron_profile848)_ 1.13364074492103287e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_electron_profile849)_ 1.13302796613999420e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_electron_profile850)_ 1.13241584946460800e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_electron_profile851)_ 1.13180439382234848e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_electron_profile852)_ 1.13119359814300568e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_electron_profile853)_ 1.13058346135867813e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_electron_profile854)_ 1.12997398240376785e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_electron_profile855)_ 1.12936516021497269e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_electron_profile856)_ 1.12875699373128143e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_electron_profile857)_ 1.12814948189396652e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_electron_profile858)_ 1.12754262364657867e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_electron_profile859)_ 1.12693641793494064e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_electron_profile860)_ 1.12633086370714081e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_electron_profile861)_ 1.12572595991352829e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_electron_profile862)_ 1.12512170550670380e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_electron_profile863)_ 1.12451809944151810e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_electron_profile864)_ 1.12391514067506134e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_electron_profile865)_ 1.12331282816666122e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_electron_profile866)_ 1.12271116087787323e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_electron_profile867)_ 1.12211013777247833e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_electron_profile868)_ 1.12150975781647369e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_electron_profile869)_ 1.12091001997806946e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_electron_profile870)_ 1.12031092322768005e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_electron_profile871)_ 1.11971246653792175e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_electron_profile872)_ 1.11911464888360352e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_electron_profile873)_ 1.11851746924172333e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_electron_profile874)_ 1.11792092659146103e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_electron_profile875)_ 1.11732501991417343e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_electron_profile876)_ 1.11672974819338806e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_electron_profile877)_ 1.11613511041479736e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_electron_profile878)_ 1.11554110556625305e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_electron_profile879)_ 1.11494773263776031e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_electron_profile880)_ 1.11435499062147232e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_electron_profile881)_ 1.11376287851168381e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_electron_profile882)_ 1.11317139530482727e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_electron_profile883)_ 1.11258053999946335e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_electron_profile884)_ 1.11199031159628098e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_electron_profile885)_ 1.11140070909808548e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_electron_profile886)_ 1.11081173150979843e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_electron_profile887)_ 1.11022337783844788e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_electron_profile888)_ 1.10963564709316544e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_electron_profile889)_ 1.10904853828517944e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_electron_profile890)_ 1.10846205042781052e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_electron_profile891)_ 1.10787618253646378e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_electron_profile892)_ 1.10729093362862625e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_electron_profile893)_ 1.10670630272385925e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_electron_profile894)_ 1.10612228884379395e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_electron_profile895)_ 1.10553889101212524e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_electron_profile896)_ 1.10495610825460709e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_electron_profile897)_ 1.10437393959904602e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_electron_profile898)_ 1.10379238407529724e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_electron_profile899)_ 1.10321144071525772e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_electron_profile900)_ 1.10263110855286133e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_electron_profile901)_ 1.10205138662407455e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_electron_profile902)_ 1.10147227396688873e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_electron_profile903)_ 1.10089376962131805e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_electron_profile904)_ 1.10031587262939072e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_electron_profile905)_ 1.09973858203514664e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_electron_profile906)_ 1.09916189688462997e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_electron_profile907)_ 1.09858581622588547e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_electron_profile908)_ 1.09801033910895203e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_electron_profile909)_ 1.09743546458585846e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_electron_profile910)_ 1.09686119171061722e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_electron_profile911)_ 1.09628751953922058e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_electron_profile912)_ 1.09571444712963379e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_electron_profile913)_ 1.09514197354179184e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_electron_profile914)_ 1.09457009783759232e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_electron_profile915)_ 1.09399881908089218e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_electron_profile916)_ 1.09342813633750092e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_electron_profile917)_ 1.09285804867517700e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_electron_profile918)_ 1.09228855516362152e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_electron_profile919)_ 1.09171965487447372e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_electron_profile920)_ 1.09115134688130646e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_electron_profile921)_ 1.09058363025961990e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_electron_profile922)_ 1.09001650408683807e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_electron_profile923)_ 1.08944996744230194e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_electron_profile924)_ 1.08888401940726746e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_electron_profile925)_ 1.08831865906489578e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_electron_profile926)_ 1.08775388550025406e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_electron_profile927)_ 1.08718969780030563e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_electron_profile928)_ 1.08662609505390854e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_electron_profile929)_ 1.08606307635180801e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_electron_profile930)_ 1.08550064078663361e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_electron_profile931)_ 1.08493878745289307e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_electron_profile932)_ 1.08437751544696838e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_electron_profile933)_ 1.08381682386710922e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_electron_profile934)_ 1.08325671181343124e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_electron_profile935)_ 1.08269717838790771e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_electron_profile936)_ 1.08213822269436737e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_electron_profile937)_ 1.08157984383848770e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_electron_profile938)_ 1.08102204092779221e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_electron_profile939)_ 1.08046481307164398e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_electron_profile940)_ 1.07990815938124130e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_electron_profile941)_ 1.07935207896961365e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_electron_profile942)_ 1.07879657095161575e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_electron_profile943)_ 1.07824163444392471e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_electron_profile944)_ 1.07768726856503311e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_electron_profile945)_ 1.07713347243524643e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_electron_profile946)_ 1.07658024517667664e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_electron_profile947)_ 1.07602758591323914e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_electron_profile948)_ 1.07547549377064606e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_electron_profile949)_ 1.07492396787640488e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_electron_profile950)_ 1.07437300735981003e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_electron_profile951)_ 1.07382261135194138e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_electron_profile952)_ 1.07327277898565765e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_electron_profile953)_ 1.07272350939559357e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_electron_profile954)_ 1.07217480171815308e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_electron_profile955)_ 1.07162665509150787e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_electron_profile956)_ 1.07107906865558975e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_electron_profile957)_ 1.07053204155208862e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_electron_profile958)_ 1.06998557292444595e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_electron_profile959)_ 1.06943966191785172e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_electron_profile960)_ 1.06889430767923981e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_electron_profile961)_ 1.06834950935728317e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_electron_profile962)_ 1.06780526610238907e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_electron_profile963)_ 1.06726157706669540e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_electron_profile964)_ 1.06671844140406601e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_electron_profile965)_ 1.06617585827008621e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_electron_profile966)_ 1.06563382682205887e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_electron_profile967)_ 1.06509234621899857e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_electron_profile968)_ 1.06455141562162994e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_electron_profile969)_ 1.06401103419238022e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_electron_profile970)_ 1.06347120109537781e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_electron_profile971)_ 1.06293191549644470e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_electron_profile972)_ 1.06239317656309662e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_electron_profile973)_ 1.06185498346453369e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_electron_profile974)_ 1.06131733537164032e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_electron_profile975)_ 1.06078023145697845e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_electron_profile976)_ 1.06024367089478485e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_electron_profile977)_ 1.05970765286096527e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_electron_profile978)_ 1.05917217653309219e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_electron_profile979)_ 1.05863724109039856e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_electron_profile980)_ 1.05810284571377563e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_electron_profile981)_ 1.05756898958576660e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_electron_profile982)_ 1.05703567189056458e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_electron_profile983)_ 1.05650289181400681e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_electron_profile984)_ 1.05597064854357162e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_electron_profile985)_ 1.05543894126837341e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_electron_profile986)_ 1.05490776917915924e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_electron_profile987)_ 1.05437713146830460e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_electron_profile988)_ 1.05384702732980865e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_electron_profile989)_ 1.05331745595929123e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_electron_profile990)_ 1.05278841655398758e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_electron_profile991)_ 1.05225990831274582e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_electron_profile992)_ 1.05173193043602066e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_electron_profile993)_ 1.05120448212587250e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_electron_profile994)_ 1.05067756258595947e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_electron_profile995)_ 1.05015117102153793e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_electron_profile996)_ 1.04962530663945389e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_electron_profile997)_ 1.04909996864814301e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_electron_profile998)_ 1.04857515625762344e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_electron_profile999)_ 1.04805086867949478e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_electron_profile1000)_ 1.04752710512693115e+11 -Plasma_electron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_electron_profile1001)_ 1.04700386481468002e+11 -Volume_averaged_deuteron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_deuteron_vol_avg)_ 3.80332824147595316e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_deuteron_profile0)_ 5.70499236221392900e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_deuteron_profile1)_ 5.69929875706201941e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_deuteron_profile2)_ 5.69361650506096035e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_deuteron_profile3)_ 5.68794557228699550e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_deuteron_profile4)_ 5.68228592495138720e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_deuteron_profile5)_ 5.67663752939974517e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_deuteron_profile6)_ 5.67100035211136341e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_deuteron_profile7)_ 5.66537435969855413e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_deuteron_profile8)_ 5.65975951890598908e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_deuteron_profile9)_ 5.65415579661004245e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_deuteron_profile10)_ 5.64856315981814340e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_deuteron_profile11)_ 5.64298157566812634e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_deuteron_profile12)_ 5.63741101142758504e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_deuteron_profile13)_ 5.63185143449323848e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_deuteron_profile14)_ 5.62630281239028871e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_deuteron_profile15)_ 5.62076511277179495e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_deuteron_profile16)_ 5.61523830341803581e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_deuteron_profile17)_ 5.60972235223589689e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_deuteron_profile18)_ 5.60421722725823671e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_deuteron_profile19)_ 5.59872289664327800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_deuteron_profile20)_ 5.59323932867398933e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_deuteron_profile21)_ 5.58776649175747931e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_deuteron_profile22)_ 5.58230435442438275e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_deuteron_profile23)_ 5.57685288532826528e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_deuteron_profile24)_ 5.57141205324501768e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_deuteron_profile25)_ 5.56598182707226425e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_deuteron_profile26)_ 5.56056217582876682e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_deuteron_profile27)_ 5.55515306865383536e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_deuteron_profile28)_ 5.54975447480674759e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_deuteron_profile29)_ 5.54436636366615891e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_deuteron_profile30)_ 5.53898870472952724e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_deuteron_profile31)_ 5.53362146761254221e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_deuteron_profile32)_ 5.52826462204854116e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_deuteron_profile33)_ 5.52291813788795322e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_deuteron_profile34)_ 5.51758198509772345e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_deuteron_profile35)_ 5.51225613376075625e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_deuteron_profile36)_ 5.50694055407535583e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_deuteron_profile37)_ 5.50163521635466665e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_deuteron_profile38)_ 5.49634009102612361e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_deuteron_profile39)_ 5.49105514863090739e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_deuteron_profile40)_ 5.48578035982338339e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_deuteron_profile41)_ 5.48051569537057951e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_deuteron_profile42)_ 5.47526112615162358e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_deuteron_profile43)_ 5.47001662315722555e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_deuteron_profile44)_ 5.46478215748913214e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_deuteron_profile45)_ 5.45955770035960153e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_deuteron_profile46)_ 5.45434322309087217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_deuteron_profile47)_ 5.44913869711464122e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_deuteron_profile48)_ 5.44394409397153854e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_deuteron_profile49)_ 5.43875938531061187e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_deuteron_profile50)_ 5.43358454288881347e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_deuteron_profile51)_ 5.42841953857047856e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_deuteron_profile52)_ 5.42326434432682171e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_deuteron_profile53)_ 5.41811893223543018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_deuteron_profile54)_ 5.41298327447975725e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_deuteron_profile55)_ 5.40785734334862009e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_deuteron_profile56)_ 5.40274111123570800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_deuteron_profile57)_ 5.39763455063907728e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_deuteron_profile58)_ 5.39253763416066468e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_deuteron_profile59)_ 5.38745033450579494e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_deuteron_profile60)_ 5.38237262448269799e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_deuteron_profile61)_ 5.37730447700201720e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_deuteron_profile62)_ 5.37224586507633328e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_deuteron_profile63)_ 5.36719676181968302e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_deuteron_profile64)_ 5.36215714044708312e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_deuteron_profile65)_ 5.35712697427405566e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_deuteron_profile66)_ 5.35210623671616018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_deuteron_profile67)_ 5.34709490128852352e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_deuteron_profile68)_ 5.34209294160537273e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_deuteron_profile69)_ 5.33710033137957379e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_deuteron_profile70)_ 5.33211704442216903e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_deuteron_profile71)_ 5.32714305464192405e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_deuteron_profile72)_ 5.32217833604486808e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_deuteron_profile73)_ 5.31722286273383871e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_deuteron_profile74)_ 5.31227660890804008e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_deuteron_profile75)_ 5.30733954886258692e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_deuteron_profile76)_ 5.30241165698806271e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_deuteron_profile77)_ 5.29749290777007714e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_deuteron_profile78)_ 5.29258327578882650e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_deuteron_profile79)_ 5.28768273571865186e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_deuteron_profile80)_ 5.28279126232760623e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_deuteron_profile81)_ 5.27790883047702610e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_deuteron_profile82)_ 5.27303541512109265e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_deuteron_profile83)_ 5.26817099130640551e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_deuteron_profile84)_ 5.26331553417156041e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_deuteron_profile85)_ 5.25846901894672439e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_deuteron_profile86)_ 5.25363142095321417e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_deuteron_profile87)_ 5.24880271560307369e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_deuteron_profile88)_ 5.24398287839866206e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_deuteron_profile89)_ 5.23917188493224159e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_deuteron_profile90)_ 5.23436971088555828e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_deuteron_profile91)_ 5.22957633202943653e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_deuteron_profile92)_ 5.22479172422336936e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_deuteron_profile93)_ 5.22001586341512129e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_deuteron_profile94)_ 5.21524872564031333e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_deuteron_profile95)_ 5.21049028702202812e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_deuteron_profile96)_ 5.20574052377041355e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_deuteron_profile97)_ 5.20099941218227968e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_deuteron_profile98)_ 5.19626692864071280e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_deuteron_profile99)_ 5.19154304961467609e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_deuteron_profile100)_ 5.18682775165862218e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_deuteron_profile101)_ 5.18212101141210794e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_deuteron_profile102)_ 5.17742280559940413e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_deuteron_profile103)_ 5.17273311102911532e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_deuteron_profile104)_ 5.16805190459379479e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_deuteron_profile105)_ 5.16337916326956898e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_deuteron_profile106)_ 5.15871486411575675e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_deuteron_profile107)_ 5.15405898427449763e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_deuteron_profile108)_ 5.14941150097037256e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_deuteron_profile109)_ 5.14477239151003957e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_deuteron_profile110)_ 5.14014163328185752e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_deuteron_profile111)_ 5.13551920375552475e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_deuteron_profile112)_ 5.13090508048170954e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_deuteron_profile113)_ 5.12629924109169021e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_deuteron_profile114)_ 5.12170166329699010e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_deuteron_profile115)_ 5.11711232488901764e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_deuteron_profile116)_ 5.11253120373871401e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_deuteron_profile117)_ 5.10795827779619172e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_deuteron_profile118)_ 5.10339352509038746e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_deuteron_profile119)_ 5.09883692372869998e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_deuteron_profile120)_ 5.09428845189664885e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_deuteron_profile121)_ 5.08974808785752505e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_deuteron_profile122)_ 5.08521580995204225e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_deuteron_profile123)_ 5.08069159659799188e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_deuteron_profile124)_ 5.07617542628990412e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_deuteron_profile125)_ 5.07166727759870663e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_deuteron_profile126)_ 5.06716712917137817e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_deuteron_profile127)_ 5.06267495973062366e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_deuteron_profile128)_ 5.05819074807452932e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_deuteron_profile129)_ 5.05371447307623327e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_deuteron_profile130)_ 5.04924611368359327e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_deuteron_profile131)_ 5.04478564891885519e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_deuteron_profile132)_ 5.04033305787832662e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_deuteron_profile133)_ 5.03588831973204911e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_deuteron_profile134)_ 5.03145141372347474e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_deuteron_profile135)_ 5.02702231916914061e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_deuteron_profile136)_ 5.02260101545834839e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_deuteron_profile137)_ 5.01818748205284998e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_deuteron_profile138)_ 5.01378169848651737e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_deuteron_profile139)_ 5.00938364436503872e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_deuteron_profile140)_ 5.00499329936559424e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_deuteron_profile141)_ 5.00061064323655292e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_deuteron_profile142)_ 4.99623565579715073e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_deuteron_profile143)_ 4.99186831693718880e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_deuteron_profile144)_ 4.98750860661671832e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_deuteron_profile145)_ 4.98315650486574396e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_deuteron_profile146)_ 4.97881199178390875e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_deuteron_profile147)_ 4.97447504754019454e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_deuteron_profile148)_ 4.97014565237262249e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_deuteron_profile149)_ 4.96582378658795059e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_deuteron_profile150)_ 4.96150943056137636e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_deuteron_profile151)_ 4.95720256473623589e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_deuteron_profile152)_ 4.95290316962371469e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_deuteron_profile153)_ 4.94861122580255121e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_deuteron_profile154)_ 4.94432671391873881e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_deuteron_profile155)_ 4.94004961468524635e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_deuteron_profile156)_ 4.93577990888171420e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_deuteron_profile157)_ 4.93151757735418230e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_deuteron_profile158)_ 4.92726260101479217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_deuteron_profile159)_ 4.92301496084150299e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_deuteron_profile160)_ 4.91877463787781522e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_deuteron_profile161)_ 4.91454161323248148e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_deuteron_profile162)_ 4.91031586807922870e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_deuteron_profile163)_ 4.90609738365648091e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_deuteron_profile164)_ 4.90188614126707688e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_deuteron_profile165)_ 4.89768212227799594e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_deuteron_profile166)_ 4.89348530812008828e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_deuteron_profile167)_ 4.88929568028779402e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_deuteron_profile168)_ 4.88511322033887431e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_deuteron_profile169)_ 4.88093790989413932e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_deuteron_profile170)_ 4.87676973063718453e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_deuteron_profile171)_ 4.87260866431411579e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_deuteron_profile172)_ 4.86845469273328483e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_deuteron_profile173)_ 4.86430779776502922e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_deuteron_profile174)_ 4.86016796134139895e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_deuteron_profile175)_ 4.85603516545590460e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_deuteron_profile176)_ 4.85190939216324836e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_deuteron_profile177)_ 4.84779062357906923e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_deuteron_profile178)_ 4.84367884187968075e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_deuteron_profile179)_ 4.83957402930181623e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_deuteron_profile180)_ 4.83547616814237311e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_deuteron_profile181)_ 4.83138524075815827e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_deuteron_profile182)_ 4.82730122956563309e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_deuteron_profile183)_ 4.82322411704066172e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_deuteron_profile184)_ 4.81915388571826443e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_deuteron_profile185)_ 4.81509051819236353e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_deuteron_profile186)_ 4.81103399711553752e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_deuteron_profile187)_ 4.80698430519877374e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_deuteron_profile188)_ 4.80294142521122247e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_deuteron_profile189)_ 4.79890533997995183e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_deuteron_profile190)_ 4.79487603238970935e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_deuteron_profile191)_ 4.79085348538267016e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_deuteron_profile192)_ 4.78683768195820972e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_deuteron_profile193)_ 4.78282860517264903e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_deuteron_profile194)_ 4.77882623813903257e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_deuteron_profile195)_ 4.77483056402687654e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_deuteron_profile196)_ 4.77084156606194153e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_deuteron_profile197)_ 4.76685922752599642e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_deuteron_profile198)_ 4.76288353175658360e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_deuteron_profile199)_ 4.75891446214678586e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_deuteron_profile200)_ 4.75495200214499831e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_deuteron_profile201)_ 4.75099613525469527e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_deuteron_profile202)_ 4.74704684503420144e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_deuteron_profile203)_ 4.74310411509646475e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_deuteron_profile204)_ 4.73916792910883278e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_deuteron_profile205)_ 4.73523827079282254e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_deuteron_profile206)_ 4.73131512392389700e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_deuteron_profile207)_ 4.72739847233124450e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_deuteron_profile208)_ 4.72348829989755452e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_deuteron_profile209)_ 4.71958459055879563e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_deuteron_profile210)_ 4.71568732830400020e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_deuteron_profile211)_ 4.71179649717503563e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_deuteron_profile212)_ 4.70791208126639947e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_deuteron_profile213)_ 4.70403406472499445e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_deuteron_profile214)_ 4.70016243174991161e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_deuteron_profile215)_ 4.69629716659222320e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_deuteron_profile216)_ 4.69243825355476066e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_deuteron_profile217)_ 4.68858567699190751e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_deuteron_profile218)_ 4.68473942130938768e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_deuteron_profile219)_ 4.68089947096405253e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_deuteron_profile220)_ 4.67706581046367213e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_deuteron_profile221)_ 4.67323842436672971e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_deuteron_profile222)_ 4.66941729728220999e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_deuteron_profile223)_ 4.66560241386939809e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_deuteron_profile224)_ 4.66179375883766785e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_deuteron_profile225)_ 4.65799131694628373e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_deuteron_profile226)_ 4.65419507300419211e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_deuteron_profile227)_ 4.65040501186982393e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_deuteron_profile228)_ 4.64662111845088899e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_deuteron_profile229)_ 4.64284337770418152e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_deuteron_profile230)_ 4.63907177463537231e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_deuteron_profile231)_ 4.63530629429881796e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_deuteron_profile232)_ 4.63154692179735824e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_deuteron_profile233)_ 4.62779364228212684e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_deuteron_profile234)_ 4.62404644095234275e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_deuteron_profile235)_ 4.62030530305513293e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_deuteron_profile236)_ 4.61657021388532147e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_deuteron_profile237)_ 4.61284115878525302e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_deuteron_profile238)_ 4.60911812314458713e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_deuteron_profile239)_ 4.60540109240011647e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_deuteron_profile240)_ 4.60169005203557089e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_deuteron_profile241)_ 4.59798498758143634e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_deuteron_profile242)_ 4.59428588461475745e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_deuteron_profile243)_ 4.59059272875895798e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_deuteron_profile244)_ 4.58690550568364933e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_deuteron_profile245)_ 4.58322420110444948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_deuteron_profile246)_ 4.57954880078279376e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_deuteron_profile247)_ 4.57587929052575678e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_deuteron_profile248)_ 4.57221565618586391e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_deuteron_profile249)_ 4.56855788366091475e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_deuteron_profile250)_ 4.56490595889379904e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_deuteron_profile251)_ 4.56125986787231863e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_deuteron_profile252)_ 4.55761959662900493e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_deuteron_profile253)_ 4.55398513124094382e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_deuteron_profile254)_ 4.55035645782959610e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_deuteron_profile255)_ 4.54673356256062388e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_deuteron_profile256)_ 4.54311643164371029e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_deuteron_profile257)_ 4.53950505133238733e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_deuteron_profile258)_ 4.53589940792386308e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_deuteron_profile259)_ 4.53229948775884360e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_deuteron_profile260)_ 4.52870527722136676e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_deuteron_profile261)_ 4.52511676273862422e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_deuteron_profile262)_ 4.52153393078079522e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_deuteron_profile263)_ 4.51795676786087230e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_deuteron_profile264)_ 4.51438526053450108e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_deuteron_profile265)_ 4.51081939539979771e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_deuteron_profile266)_ 4.50725915909719244e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_deuteron_profile267)_ 4.50370453830926195e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_deuteron_profile268)_ 4.50015551976055503e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_deuteron_profile269)_ 4.49661209021743611e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_deuteron_profile270)_ 4.49307423648791835e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_deuteron_profile271)_ 4.48954194542149603e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_deuteron_profile272)_ 4.48601520390898958e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_deuteron_profile273)_ 4.48249399888237268e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_deuteron_profile274)_ 4.47897831731462181e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_deuteron_profile275)_ 4.47546814621954784e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_deuteron_profile276)_ 4.47196347265163884e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_deuteron_profile277)_ 4.46846428370590284e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_deuteron_profile278)_ 4.46497056651770398e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_deuteron_profile279)_ 4.46148230826261193e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_deuteron_profile280)_ 4.45799949615624025e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_deuteron_profile281)_ 4.45452211745408997e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_deuteron_profile282)_ 4.45105015945139825e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_deuteron_profile283)_ 4.44758360948297828e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_deuteron_profile284)_ 4.44412245492306948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_deuteron_profile285)_ 4.44066668318518102e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_deuteron_profile286)_ 4.43721628172194511e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_deuteron_profile287)_ 4.43377123802495673e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_deuteron_profile288)_ 4.43033153962462693e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_deuteron_profile289)_ 4.42689717409003377e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_deuteron_profile290)_ 4.42346812902877182e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_deuteron_profile291)_ 4.42004439208679795e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_deuteron_profile292)_ 4.41662595094829351e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_deuteron_profile293)_ 4.41321279333550483e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_deuteron_profile294)_ 4.40980490700860545e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_deuteron_profile295)_ 4.40640227976554260e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_deuteron_profile296)_ 4.40300489944189936e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_deuteron_profile297)_ 4.39961275391074270e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_deuteron_profile298)_ 4.39622583108248115e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_deuteron_profile299)_ 4.39284411890472621e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_deuteron_profile300)_ 4.38946760536213964e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_deuteron_profile301)_ 4.38609627847630084e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_deuteron_profile302)_ 4.38273012630555928e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_deuteron_profile303)_ 4.37936913694489598e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_deuteron_profile304)_ 4.37601329852578118e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_deuteron_profile305)_ 4.37266259921603650e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_deuteron_profile306)_ 4.36931702721969709e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_deuteron_profile307)_ 4.36597657077686787e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_deuteron_profile308)_ 4.36264121816359311e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_deuteron_profile309)_ 4.35931095769171342e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_deuteron_profile310)_ 4.35598577770872861e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_deuteron_profile311)_ 4.35266566659767032e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_deuteron_profile312)_ 4.34935061277695671e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_deuteron_profile313)_ 4.34604060470026135e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_deuteron_profile314)_ 4.34273563085638210e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_deuteron_profile315)_ 4.33943567976910621e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_deuteron_profile316)_ 4.33614073999707103e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_deuteron_profile317)_ 4.33285080013364404e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_deuteron_profile318)_ 4.32956584880678058e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_deuteron_profile319)_ 4.32628587467889711e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_deuteron_profile320)_ 4.32301086644674018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_deuteron_profile321)_ 4.31974081284125820e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_deuteron_profile322)_ 4.31647570262747109e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_deuteron_profile323)_ 4.31321552460433841e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_deuteron_profile324)_ 4.30996026760463640e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_deuteron_profile325)_ 4.30670992049482912e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_deuteron_profile326)_ 4.30346447217493951e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_deuteron_profile327)_ 4.30022391157842204e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_deuteron_profile328)_ 4.29698822767204195e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_deuteron_profile329)_ 4.29375740945574641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_deuteron_profile330)_ 4.29053144596254304e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_deuteron_profile331)_ 4.28731032625836655e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_deuteron_profile332)_ 4.28409403944196776e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_deuteron_profile333)_ 4.28088257464478612e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_deuteron_profile334)_ 4.27767592103081942e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_deuteron_profile335)_ 4.27447406779651344e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_deuteron_profile336)_ 4.27127700417063832e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_deuteron_profile337)_ 4.26808471941415742e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_deuteron_profile338)_ 4.26489720282012224e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_deuteron_profile339)_ 4.26171444371354058e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_deuteron_profile340)_ 4.25853643145126253e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_deuteron_profile341)_ 4.25536315542186573e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_deuteron_profile342)_ 4.25219460504552796e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_deuteron_profile343)_ 4.24903076977391616e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_deuteron_profile344)_ 4.24587163909007013e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_deuteron_profile345)_ 4.24271720250827968e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_deuteron_profile346)_ 4.23956744957397506e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_deuteron_profile347)_ 4.23642236986360848e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_deuteron_profile348)_ 4.23328195298453942e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_deuteron_profile349)_ 4.23014618857492059e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_deuteron_profile350)_ 4.22701506630358472e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_deuteron_profile351)_ 4.22388857586992905e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_deuteron_profile352)_ 4.22076670700380132e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_deuteron_profile353)_ 4.21764944946539402e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_deuteron_profile354)_ 4.21453679304512441e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_deuteron_profile355)_ 4.21142872756352797e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_deuteron_profile356)_ 4.20832524287114441e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_deuteron_profile357)_ 4.20522632884841189e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_deuteron_profile358)_ 4.20213197540555075e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_deuteron_profile359)_ 4.19904217248245925e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_deuteron_profile360)_ 4.19595691004859954e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_deuteron_profile361)_ 4.19287617810289487e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_deuteron_profile362)_ 4.18979996667362005e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_deuteron_profile363)_ 4.18672826581828743e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_deuteron_profile364)_ 4.18366106562354788e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_deuteron_profile365)_ 4.18059835620508343e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_deuteron_profile366)_ 4.17754012770749331e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_deuteron_profile367)_ 4.17448637030419856e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_deuteron_profile368)_ 4.17143707419732884e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_deuteron_profile369)_ 4.16839222961762398e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_deuteron_profile370)_ 4.16535182682432011e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_deuteron_profile371)_ 4.16231585610506088e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_deuteron_profile372)_ 4.15928430777577832e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_deuteron_profile373)_ 4.15625717218059897e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_deuteron_profile374)_ 4.15323443969174102e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_deuteron_profile375)_ 4.15021610070940703e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_deuteron_profile376)_ 4.14720214566168860e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_deuteron_profile377)_ 4.14419256500445828e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_deuteron_profile378)_ 4.14118734922127873e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_deuteron_profile379)_ 4.13818648882329240e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_deuteron_profile380)_ 4.13518997434912696e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_deuteron_profile381)_ 4.13219779636479244e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_deuteron_profile382)_ 4.12920994546358883e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_deuteron_profile383)_ 4.12622641226599962e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_deuteron_profile384)_ 4.12324718741959855e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_deuteron_profile385)_ 4.12027226159894913e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_deuteron_profile386)_ 4.11730162550551146e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_deuteron_profile387)_ 4.11433526986753866e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_deuteron_profile388)_ 4.11137318543998823e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_deuteron_profile389)_ 4.10841536300441995e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_deuteron_profile390)_ 4.10546179336890355e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_deuteron_profile391)_ 4.10251246736791953e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_deuteron_profile392)_ 4.09956737586227134e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_deuteron_profile393)_ 4.09662650973898396e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_deuteron_profile394)_ 4.09368985991121382e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_deuteron_profile395)_ 4.09075741731815487e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_deuteron_profile396)_ 4.08782917292494178e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_deuteron_profile397)_ 4.08490511772256345e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_deuteron_profile398)_ 4.08198524272776470e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_deuteron_profile399)_ 4.07906953898295909e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_deuteron_profile400)_ 4.07615799755613357e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_deuteron_profile401)_ 4.07325060954075903e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_deuteron_profile402)_ 4.07034736605569720e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_deuteron_profile403)_ 4.06744825824511647e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_deuteron_profile404)_ 4.06455327727839425e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_deuteron_profile405)_ 4.06166241435003132e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_deuteron_profile406)_ 4.05877566067956239e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_deuteron_profile407)_ 4.05589300751146600e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_deuteron_profile408)_ 4.05301444611507729e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_deuteron_profile409)_ 4.05013996778449863e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_deuteron_profile410)_ 4.04726956383851469e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_deuteron_profile411)_ 4.04440322562049851e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_deuteron_profile412)_ 4.04154094449833259e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_deuteron_profile413)_ 4.03868271186431646e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_deuteron_profile414)_ 4.03582851913508400e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_deuteron_profile415)_ 4.03297835775151402e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_deuteron_profile416)_ 4.03013221917864829e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_deuteron_profile417)_ 4.02729009490560219e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_deuteron_profile418)_ 4.02445197644548565e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_deuteron_profile419)_ 4.02161785533531234e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_deuteron_profile420)_ 4.01878772313592061e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_deuteron_profile421)_ 4.01596157143188715e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_deuteron_profile422)_ 4.01313939183144346e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_deuteron_profile423)_ 4.01032117596639320e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_deuteron_profile424)_ 4.00750691549203098e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_deuteron_profile425)_ 4.00469660208705738e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_deuteron_profile426)_ 4.00189022745349929e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_deuteron_profile427)_ 3.99908778331662789e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_deuteron_profile428)_ 3.99628926142487377e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_deuteron_profile429)_ 3.99349465354975089e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_deuteron_profile430)_ 3.99070395148577541e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_deuteron_profile431)_ 3.98791714705037996e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_deuteron_profile432)_ 3.98513423208384067e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_deuteron_profile433)_ 3.98235519844919443e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_deuteron_profile434)_ 3.97958003803215623e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_deuteron_profile435)_ 3.97680874274104685e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_deuteron_profile436)_ 3.97404130450671092e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_deuteron_profile437)_ 3.97127771528243646e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_deuteron_profile438)_ 3.96851796704388037e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_deuteron_profile439)_ 3.96576205178898871e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_deuteron_profile440)_ 3.96300996153792068e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_deuteron_profile441)_ 3.96026168833297044e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_deuteron_profile442)_ 3.95751722423849106e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_deuteron_profile443)_ 3.95477656134082004e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_deuteron_profile444)_ 3.95203969174819663e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_deuteron_profile445)_ 3.94930660759069398e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_deuteron_profile446)_ 3.94657730102014095e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_deuteron_profile447)_ 3.94385176421004385e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_deuteron_profile448)_ 3.94112998935551643e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_deuteron_profile449)_ 3.93841196867320240e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_deuteron_profile450)_ 3.93569769440120161e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_deuteron_profile451)_ 3.93298715879899710e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_deuteron_profile452)_ 3.93028035414738059e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_deuteron_profile453)_ 3.92757727274838015e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_deuteron_profile454)_ 3.92487790692518502e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_deuteron_profile455)_ 3.92218224902207702e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_deuteron_profile456)_ 3.91949029140435383e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_deuteron_profile457)_ 3.91680202645826042e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_deuteron_profile458)_ 3.91411744659091458e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_deuteron_profile459)_ 3.91143654423023537e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_deuteron_profile460)_ 3.90875931182487607e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_deuteron_profile461)_ 3.90608574184414744e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_deuteron_profile462)_ 3.90341582677795142e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_deuteron_profile463)_ 3.90074955913671032e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_deuteron_profile464)_ 3.89808693145129234e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_deuteron_profile465)_ 3.89542793627294898e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_deuteron_profile466)_ 3.89277256617324054e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_deuteron_profile467)_ 3.89012081374396756e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_deuteron_profile468)_ 3.88747267159710303e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_deuteron_profile469)_ 3.88482813236472383e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_deuteron_profile470)_ 3.88218718869894221e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_deuteron_profile471)_ 3.87954983327183649e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_deuteron_profile472)_ 3.87691605877538621e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_deuteron_profile473)_ 3.87428585792140067e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_deuteron_profile474)_ 3.87165922344145402e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_deuteron_profile475)_ 3.86903614808681831e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_deuteron_profile476)_ 3.86641662462839782e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_deuteron_profile477)_ 3.86380064585666060e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_deuteron_profile478)_ 3.86118820458157063e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_deuteron_profile479)_ 3.85857929363252968e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_deuteron_profile480)_ 3.85597390585830063e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_deuteron_profile481)_ 3.85337203412695229e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_deuteron_profile482)_ 3.85077367132578790e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_deuteron_profile483)_ 3.84817881036128253e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_deuteron_profile484)_ 3.84558744415901974e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_deuteron_profile485)_ 3.84299956566362306e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_deuteron_profile486)_ 3.84041516783869714e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_deuteron_profile487)_ 3.83783424366676360e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_deuteron_profile488)_ 3.83525678614918962e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_deuteron_profile489)_ 3.83268278830613643e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_deuteron_profile490)_ 3.83011224317648783e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_deuteron_profile491)_ 3.82754514381779060e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_deuteron_profile492)_ 3.82498148330619186e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_deuteron_profile493)_ 3.82242125473637432e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_deuteron_profile494)_ 3.81986445122150108e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_deuteron_profile495)_ 3.81731106589314491e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_deuteron_profile496)_ 3.81476109190123156e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_deuteron_profile497)_ 3.81221452241398171e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_deuteron_profile498)_ 3.80967135061784163e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_deuteron_profile499)_ 3.80713156971742883e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_deuteron_profile500)_ 3.80459517293547168e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_deuteron_profile501)_ 3.80206215351274535e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_deuteron_profile502)_ 3.79953250470801368e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_deuteron_profile503)_ 3.79700621979796812e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_deuteron_profile504)_ 3.79448329207717255e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_deuteron_profile505)_ 3.79196371485799700e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_deuteron_profile506)_ 3.78944748147056624e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_deuteron_profile507)_ 3.78693458526269495e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_deuteron_profile508)_ 3.78442501959983036e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_deuteron_profile509)_ 3.78191877786499560e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_deuteron_profile510)_ 3.77941585345873237e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_deuteron_profile511)_ 3.77691623979903683e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_deuteron_profile512)_ 3.77441993032131121e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_deuteron_profile513)_ 3.77192691847829819e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_deuteron_profile514)_ 3.76943719774002880e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_deuteron_profile515)_ 3.76695076159376279e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_deuteron_profile516)_ 3.76446760354393125e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_deuteron_profile517)_ 3.76198771711208448e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_deuteron_profile518)_ 3.75951109583682939e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_deuteron_profile519)_ 3.75703773327377960e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_deuteron_profile520)_ 3.75456762299549207e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_deuteron_profile521)_ 3.75210075859142244e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_deuteron_profile522)_ 3.74963713366785496e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_deuteron_profile523)_ 3.74717674184786379e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_deuteron_profile524)_ 3.74471957677124217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_deuteron_profile525)_ 3.74226563209445924e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_deuteron_profile526)_ 3.73981490149059892e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_deuteron_profile527)_ 3.73736737864930853e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_deuteron_profile528)_ 3.73492305727674589e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_deuteron_profile529)_ 3.73248193109551892e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_deuteron_profile530)_ 3.73004399384463951e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_deuteron_profile531)_ 3.72760923927946761e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_deuteron_profile532)_ 3.72517766117165238e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_deuteron_profile533)_ 3.72274925330908969e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_deuteron_profile534)_ 3.72032400949585959e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_deuteron_profile535)_ 3.71790192355217710e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_deuteron_profile536)_ 3.71548298931434229e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_deuteron_profile537)_ 3.71306720063468441e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_deuteron_profile538)_ 3.71065455138150975e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_deuteron_profile539)_ 3.70824503543905467e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_deuteron_profile540)_ 3.70583864670742601e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_deuteron_profile541)_ 3.70343537910255790e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_deuteron_profile542)_ 3.70103522655615285e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_deuteron_profile543)_ 3.69863818301563710e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_deuteron_profile544)_ 3.69624424244410694e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_deuteron_profile545)_ 3.69385339882027358e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_deuteron_profile546)_ 3.69146564613842592e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_deuteron_profile547)_ 3.68908097840836123e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_deuteron_profile548)_ 3.68669938965535387e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_deuteron_profile549)_ 3.68432087392009273e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_deuteron_profile550)_ 3.68194542525863573e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_deuteron_profile551)_ 3.67957303774236068e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_deuteron_profile552)_ 3.67720370545791611e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_deuteron_profile553)_ 3.67483742250717133e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_deuteron_profile554)_ 3.67247418300716653e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_deuteron_profile555)_ 3.67011398109006658e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_deuteron_profile556)_ 3.66775681090311110e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_deuteron_profile557)_ 3.66540266660856456e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_deuteron_profile558)_ 3.66305154238367155e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_deuteron_profile559)_ 3.66070343242060542e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_deuteron_profile560)_ 3.65835833092642203e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_deuteron_profile561)_ 3.65601623212301135e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_deuteron_profile562)_ 3.65367713024705350e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_deuteron_profile563)_ 3.65134101954996437e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_deuteron_profile564)_ 3.64900789429785460e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_deuteron_profile565)_ 3.64667774877148494e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_deuteron_profile566)_ 3.64435057726620510e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_deuteron_profile567)_ 3.64202637409192920e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_deuteron_profile568)_ 3.63970513357306793e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_deuteron_profile569)_ 3.63738685004849955e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_deuteron_profile570)_ 3.63507151787151098e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_deuteron_profile571)_ 3.63275913140976056e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_deuteron_profile572)_ 3.63044968504522741e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_deuteron_profile573)_ 3.62814317317417040e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_deuteron_profile574)_ 3.62583959020707533e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_deuteron_profile575)_ 3.62353893056861907e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_deuteron_profile576)_ 3.62124118869761825e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_deuteron_profile577)_ 3.61894635904698595e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_deuteron_profile578)_ 3.61665443608368784e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_deuteron_profile579)_ 3.61436541428869888e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_deuteron_profile580)_ 3.61207928815695345e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_deuteron_profile581)_ 3.60979605219731033e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_deuteron_profile582)_ 3.60751570093249828e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_deuteron_profile583)_ 3.60523822889908105e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_deuteron_profile584)_ 3.60296363064740971e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_deuteron_profile585)_ 3.60069190074157864e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_deuteron_profile586)_ 3.59842303375938609e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_deuteron_profile587)_ 3.59615702429228127e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_deuteron_profile588)_ 3.59389386694533974e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_deuteron_profile589)_ 3.59163355633719712e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_deuteron_profile590)_ 3.58937608710002750e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_deuteron_profile591)_ 3.58712145387948751e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_deuteron_profile592)_ 3.58486965133467913e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_deuteron_profile593)_ 3.58262067413810790e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_deuteron_profile594)_ 3.58037451697563827e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_deuteron_profile595)_ 3.57813117454645634e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_deuteron_profile596)_ 3.57589064156302065e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_deuteron_profile597)_ 3.57365291275102943e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_deuteron_profile598)_ 3.57141798284937069e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_deuteron_profile599)_ 3.56918584661009014e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_deuteron_profile600)_ 3.56695649879834056e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_deuteron_profile601)_ 3.56472993419234976e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_deuteron_profile602)_ 3.56250614758337140e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_deuteron_profile603)_ 3.56028513377565145e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_deuteron_profile604)_ 3.55806688758638278e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_deuteron_profile605)_ 3.55585140384566933e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_deuteron_profile606)_ 3.55363867739647999e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_deuteron_profile607)_ 3.55142870309461728e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_deuteron_profile608)_ 3.54922147580866516e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_deuteron_profile609)_ 3.54701699041996524e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_deuteron_profile610)_ 3.54481524182256013e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_deuteron_profile611)_ 3.54261622492316663e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_deuteron_profile612)_ 3.54041993464113027e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_deuteron_profile613)_ 3.53822636590839177e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_deuteron_profile614)_ 3.53603551366943866e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_deuteron_profile615)_ 3.53384737288127691e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_deuteron_profile616)_ 3.53166193851338476e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_deuteron_profile617)_ 3.52947920554767847e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_deuteron_profile618)_ 3.52729916897847056e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_deuteron_profile619)_ 3.52512182381243482e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_deuteron_profile620)_ 3.52294716506856456e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_deuteron_profile621)_ 3.52077518777814060e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_deuteron_profile622)_ 3.51860588698468506e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_deuteron_profile623)_ 3.51643925774393156e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_deuteron_profile624)_ 3.51427529512378126e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_deuteron_profile625)_ 3.51211399420427084e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_deuteron_profile626)_ 3.50995535007753149e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_deuteron_profile627)_ 3.50779935784775317e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_deuteron_profile628)_ 3.50564601263115034e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_deuteron_profile629)_ 3.50349530955591649e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_deuteron_profile630)_ 3.50134724376219809e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_deuteron_profile631)_ 3.49920181040204838e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_deuteron_profile632)_ 3.49705900463940278e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_deuteron_profile633)_ 3.49491882165002674e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_deuteron_profile634)_ 3.49278125662149489e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_deuteron_profile635)_ 3.49064630475314409e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_deuteron_profile636)_ 3.48851396125604361e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_deuteron_profile637)_ 3.48638422135295719e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_deuteron_profile638)_ 3.48425708027830645e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_deuteron_profile639)_ 3.48213253327813670e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_deuteron_profile640)_ 3.48001057561008185e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_deuteron_profile641)_ 3.47789120254332721e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_deuteron_profile642)_ 3.47577440935857892e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_deuteron_profile643)_ 3.47366019134801924e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_deuteron_profile644)_ 3.47154854381528571e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_deuteron_profile645)_ 3.46943946207542196e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_deuteron_profile646)_ 3.46733294145485386e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_deuteron_profile647)_ 3.46522897729135007e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_deuteron_profile648)_ 3.46312756493398622e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_deuteron_profile649)_ 3.46102869974311814e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_deuteron_profile650)_ 3.45893237709033489e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_deuteron_profile651)_ 3.45683859235844091e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_deuteron_profile652)_ 3.45474734094140530e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_deuteron_profile653)_ 3.45265861824434325e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_deuteron_profile654)_ 3.45057241968347058e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_deuteron_profile655)_ 3.44848874068607688e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_deuteron_profile656)_ 3.44640757669049129e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_deuteron_profile657)_ 3.44432892314604595e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_deuteron_profile658)_ 3.44225277551304623e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_deuteron_profile659)_ 3.44017912926273718e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_deuteron_profile660)_ 3.43810797987726927e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_deuteron_profile661)_ 3.43603932284966558e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_deuteron_profile662)_ 3.43397315368379056e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_deuteron_profile663)_ 3.43190946789431721e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_deuteron_profile664)_ 3.42984826100669354e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_deuteron_profile665)_ 3.42778952855710909e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_deuteron_profile666)_ 3.42573326609246805e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_deuteron_profile667)_ 3.42367946917034984e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_deuteron_profile668)_ 3.42162813335898444e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_deuteron_profile669)_ 3.41957925423721150e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_deuteron_profile670)_ 3.41753282739446089e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_deuteron_profile671)_ 3.41548884843070731e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_deuteron_profile672)_ 3.41344731295645237e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_deuteron_profile673)_ 3.41140821659267843e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_deuteron_profile674)_ 3.40937155497083217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_deuteron_profile675)_ 3.40733732373278216e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_deuteron_profile676)_ 3.40530551853079572e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_deuteron_profile677)_ 3.40327613502749875e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_deuteron_profile678)_ 3.40124916889585704e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_deuteron_profile679)_ 3.39922461581913307e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_deuteron_profile680)_ 3.39720247149086520e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_deuteron_profile681)_ 3.39518273161483034e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_deuteron_profile682)_ 3.39316539190501720e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_deuteron_profile683)_ 3.39115044808559641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_deuteron_profile684)_ 3.38913789589088634e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_deuteron_profile685)_ 3.38712773106532842e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_deuteron_profile686)_ 3.38511994936345220e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_deuteron_profile687)_ 3.38311454654984847e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_deuteron_profile688)_ 3.38111151839913800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_deuteron_profile689)_ 3.37911086069594324e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_deuteron_profile690)_ 3.37711256923485771e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_deuteron_profile691)_ 3.37511663982041627e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_deuteron_profile692)_ 3.37312306826706678e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_deuteron_profile693)_ 3.37113185039914101e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_deuteron_profile694)_ 3.36914298205082193e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_deuteron_profile695)_ 3.36715645906612277e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_deuteron_profile696)_ 3.36517227729884684e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_deuteron_profile697)_ 3.36319043261256963e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_deuteron_profile698)_ 3.36121092088060230e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_deuteron_profile699)_ 3.35923373798596635e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_deuteron_profile700)_ 3.35725887982136607e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_deuteron_profile701)_ 3.35528634228915609e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_deuteron_profile702)_ 3.35331612130131759e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_deuteron_profile703)_ 3.35134821277942732e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_deuteron_profile704)_ 3.34938261265463009e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_deuteron_profile705)_ 3.34741931686761081e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_deuteron_profile706)_ 3.34545832136856690e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_deuteron_profile707)_ 3.34349962211718038e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_deuteron_profile708)_ 3.34154321508258916e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_deuteron_profile709)_ 3.33958909624335878e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_deuteron_profile710)_ 3.33763726158745997e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_deuteron_profile711)_ 3.33568770711223371e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_deuteron_profile712)_ 3.33374042882436961e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_deuteron_profile713)_ 3.33179542273987308e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_deuteron_profile714)_ 3.32985268488404900e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_deuteron_profile715)_ 3.32791221129145846e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_deuteron_profile716)_ 3.32597399800590798e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_deuteron_profile717)_ 3.32403804108040929e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_deuteron_profile718)_ 3.32210433657716289e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_deuteron_profile719)_ 3.32017288056752533e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_deuteron_profile720)_ 3.31824366913198344e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_deuteron_profile721)_ 3.31631669836012982e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_deuteron_profile722)_ 3.31439196435063481e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_deuteron_profile723)_ 3.31246946321122013e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_deuteron_profile724)_ 3.31054919105863385e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_deuteron_profile725)_ 3.30863114401862398e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_deuteron_profile726)_ 3.30671531822590865e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_deuteron_profile727)_ 3.30480170982415751e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_deuteron_profile728)_ 3.30289031496595964e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_deuteron_profile729)_ 3.30098112981280014e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_deuteron_profile730)_ 3.29907415053503476e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_deuteron_profile731)_ 3.29716937331186160e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_deuteron_profile732)_ 3.29526679433130063e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_deuteron_profile733)_ 3.29336640979016423e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_deuteron_profile734)_ 3.29146821589403078e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_deuteron_profile735)_ 3.28957220885722600e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_deuteron_profile736)_ 3.28767838490278795e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_deuteron_profile737)_ 3.28578674026245400e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_deuteron_profile738)_ 3.28389727117662095e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_deuteron_profile739)_ 3.28200997389433533e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_deuteron_profile740)_ 3.28012484467325918e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_deuteron_profile741)_ 3.27824187977964655e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_deuteron_profile742)_ 3.27636107548832111e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_deuteron_profile743)_ 3.27448242808265164e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_deuteron_profile744)_ 3.27260593385452405e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_deuteron_profile745)_ 3.27073158910432048e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_deuteron_profile746)_ 3.26885939014089517e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_deuteron_profile747)_ 3.26698933328154720e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_deuteron_profile748)_ 3.26512141485199817e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_deuteron_profile749)_ 3.26325563118636794e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_deuteron_profile750)_ 3.26139197862715237e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_deuteron_profile751)_ 3.25953045352519713e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_deuteron_profile752)_ 3.25767105223967135e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_deuteron_profile753)_ 3.25581377113805227e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_deuteron_profile754)_ 3.25395860659609400e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_deuteron_profile755)_ 3.25210555499780364e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_deuteron_profile756)_ 3.25025461273542643e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_deuteron_profile757)_ 3.24840577620941065e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_deuteron_profile758)_ 3.24655904182839356e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_deuteron_profile759)_ 3.24471440600917228e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_deuteron_profile760)_ 3.24287186517668627e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_deuteron_profile761)_ 3.24103141576398611e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_deuteron_profile762)_ 3.23919305421222039e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_deuteron_profile763)_ 3.23735677697060294e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_deuteron_profile764)_ 3.23552258049639910e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_deuteron_profile765)_ 3.23369046125489436e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_deuteron_profile766)_ 3.23186041571937948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_deuteron_profile767)_ 3.23003244037112221e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_deuteron_profile768)_ 3.22820653169934675e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_deuteron_profile769)_ 3.22638268620121144e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_deuteron_profile770)_ 3.22456090038178675e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_deuteron_profile771)_ 3.22274117075403184e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_deuteron_profile772)_ 3.22092349383877292e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_deuteron_profile773)_ 3.21910786616468169e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_deuteron_profile774)_ 3.21729428426824957e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_deuteron_profile775)_ 3.21548274469377510e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_deuteron_profile776)_ 3.21367324399332777e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_deuteron_profile777)_ 3.21186577872674018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_deuteron_profile778)_ 3.21006034546157569e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_deuteron_profile779)_ 3.20825694077311493e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_deuteron_profile780)_ 3.20645556124432534e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_deuteron_profile781)_ 3.20465620346584991e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_deuteron_profile782)_ 3.20285886403597519e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_deuteron_profile783)_ 3.20106353956061900e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_deuteron_profile784)_ 3.19927022665330172e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_deuteron_profile785)_ 3.19747892193513066e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_deuteron_profile786)_ 3.19568962203477547e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_deuteron_profile787)_ 3.19390232358844727e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_deuteron_profile788)_ 3.19211702323987894e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_deuteron_profile789)_ 3.19033371764030419e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_deuteron_profile790)_ 3.18855240344843343e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_deuteron_profile791)_ 3.18677307733043768e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_deuteron_profile792)_ 3.18499573595992401e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_deuteron_profile793)_ 3.18322037601791769e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_deuteron_profile794)_ 3.18144699419283830e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_deuteron_profile795)_ 3.17967558718048036e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_deuteron_profile796)_ 3.17790615168399811e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_deuteron_profile797)_ 3.17613868441387303e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_deuteron_profile798)_ 3.17437318208790720e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_deuteron_profile799)_ 3.17260964143119082e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_deuteron_profile800)_ 3.17084805917609334e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_deuteron_profile801)_ 3.16908843206223249e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_deuteron_profile802)_ 3.16733075683646463e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_deuteron_profile803)_ 3.16557503025285155e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_deuteron_profile804)_ 3.16382124907265641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_deuteron_profile805)_ 3.16206941006430984e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_deuteron_profile806)_ 3.16031951000340059e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_deuteron_profile807)_ 3.15857154567264579e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_deuteron_profile808)_ 3.15682551386188157e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_deuteron_profile809)_ 3.15508141136803553e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_deuteron_profile810)_ 3.15333923499511033e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_deuteron_profile811)_ 3.15159898155416325e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_deuteron_profile812)_ 3.14986064786329009e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_deuteron_profile813)_ 3.14812423074759915e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_deuteron_profile814)_ 3.14638972703919820e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_deuteron_profile815)_ 3.14465713357717246e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_deuteron_profile816)_ 3.14292644720756412e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_deuteron_profile817)_ 3.14119766478335820e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_deuteron_profile818)_ 3.13947078316445462e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_deuteron_profile819)_ 3.13774579921766147e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_deuteron_profile820)_ 3.13602270981666297e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_deuteron_profile821)_ 3.13430151184201092e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_deuteron_profile822)_ 3.13258220218109936e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_deuteron_profile823)_ 3.13086477772814967e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_deuteron_profile824)_ 3.12914923538418822e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_deuteron_profile825)_ 3.12743557205703482e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_deuteron_profile826)_ 3.12572378466127217e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_deuteron_profile827)_ 3.12401387011824064e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_deuteron_profile828)_ 3.12230582535601109e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_deuteron_profile829)_ 3.12059964730936848e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_deuteron_profile830)_ 3.11889533291979469e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_deuteron_profile831)_ 3.11719287913544960e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_deuteron_profile832)_ 3.11549228291115388e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_deuteron_profile833)_ 3.11379354120836668e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_deuteron_profile834)_ 3.11209665099517405e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_deuteron_profile835)_ 3.11040160924626589e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_deuteron_profile836)_ 3.10870841294292025e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_deuteron_profile837)_ 3.10701705907298364e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_deuteron_profile838)_ 3.10532754463085607e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_deuteron_profile839)_ 3.10363986661746949e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_deuteron_profile840)_ 3.10195402204027437e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_deuteron_profile841)_ 3.10027000791321583e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_deuteron_profile842)_ 3.09858782125672512e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_deuteron_profile843)_ 3.09690745909769163e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_deuteron_profile844)_ 3.09522891846945472e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_deuteron_profile845)_ 3.09355219641177915e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_deuteron_profile846)_ 3.09187728997084163e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_deuteron_profile847)_ 3.09020419619921185e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_deuteron_profile848)_ 3.08853291215583831e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_deuteron_profile849)_ 3.08686343490602337e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_deuteron_profile850)_ 3.08519576152141765e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_deuteron_profile851)_ 3.08352988907999136e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_deuteron_profile852)_ 3.08186581466602497e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_deuteron_profile853)_ 3.08020353537008837e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_deuteron_profile854)_ 3.07854304828902632e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_deuteron_profile855)_ 3.07688435052593984e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_deuteron_profile856)_ 3.07522743919016905e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_deuteron_profile857)_ 3.07357231139727943e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_deuteron_profile858)_ 3.07191896426903978e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_deuteron_profile859)_ 3.07026739493341073e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_deuteron_profile860)_ 3.06861760052452609e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_deuteron_profile861)_ 3.06696957818267718e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_deuteron_profile862)_ 3.06532332505429052e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_deuteron_profile863)_ 3.06367883829192333e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_deuteron_profile864)_ 3.06203611505423263e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_deuteron_profile865)_ 3.06039515250597261e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_deuteron_profile866)_ 3.05875594781796671e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_deuteron_profile867)_ 3.05711849816710092e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_deuteron_profile868)_ 3.05548280073629916e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_deuteron_profile869)_ 3.05384885271451622e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_deuteron_profile870)_ 3.05221665129670948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_deuteron_profile871)_ 3.05058619368383773e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_deuteron_profile872)_ 3.04895747708283179e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_deuteron_profile873)_ 3.04733049870658703e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_deuteron_profile874)_ 3.04570525577394329e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_deuteron_profile875)_ 3.04408174550967179e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_deuteron_profile876)_ 3.04245996514445581e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_deuteron_profile877)_ 3.04083991191487983e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_deuteron_profile878)_ 3.03922158306340836e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_deuteron_profile879)_ 3.03760497583837435e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_deuteron_profile880)_ 3.03599008749396279e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_deuteron_profile881)_ 3.03437691529019289e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_deuteron_profile882)_ 3.03276545649290755e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_deuteron_profile883)_ 3.03115570837374888e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_deuteron_profile884)_ 3.02954766821015626e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_deuteron_profile885)_ 3.02794133328533582e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_deuteron_profile886)_ 3.02633670088825896e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_deuteron_profile887)_ 3.02473376831363551e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_deuteron_profile888)_ 3.02313253286190815e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_deuteron_profile889)_ 3.02153299183922932e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_deuteron_profile890)_ 3.01993514255745374e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_deuteron_profile891)_ 3.01833898233411424e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_deuteron_profile892)_ 3.01674450849241614e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_deuteron_profile893)_ 3.01515171836121641e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_deuteron_profile894)_ 3.01356060927500986e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_deuteron_profile895)_ 3.01197117857391573e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_deuteron_profile896)_ 3.01038342360366061e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_deuteron_profile897)_ 3.00879734171556570e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_deuteron_profile898)_ 3.00721293026653193e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_deuteron_profile899)_ 3.00563018661902323e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_deuteron_profile900)_ 3.00404910814105421e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_deuteron_profile901)_ 3.00246969220617525e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_deuteron_profile902)_ 3.00089193619345427e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_deuteron_profile903)_ 2.99931583748747073e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_deuteron_profile904)_ 2.99774139347829074e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_deuteron_profile905)_ 2.99616860156146102e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_deuteron_profile906)_ 2.99459745913798846e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_deuteron_profile907)_ 2.99302796361433156e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_deuteron_profile908)_ 2.99146011240238026e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_deuteron_profile909)_ 2.98989390291944742e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_deuteron_profile910)_ 2.98832933258824944e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_deuteron_profile911)_ 2.98676639883689582e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_deuteron_profile912)_ 2.98520509909887314e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_deuteron_profile913)_ 2.98364543081303239e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_deuteron_profile914)_ 2.98208739142357372e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_deuteron_profile915)_ 2.98053097838003375e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_deuteron_profile916)_ 2.97897618913726844e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_deuteron_profile917)_ 2.97742302115544565e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_deuteron_profile918)_ 2.97587147190002315e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_deuteron_profile919)_ 2.97432153884174190e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_deuteron_profile920)_ 2.97277321945660859e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_deuteron_profile921)_ 2.97122651122588143e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_deuteron_profile922)_ 2.96968141163606048e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_deuteron_profile923)_ 2.96813791817886829e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_deuteron_profile924)_ 2.96659602835124396e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_deuteron_profile925)_ 2.96505573965531848e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_deuteron_profile926)_ 2.96351704959841408e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_deuteron_profile927)_ 2.96197995569302067e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_deuteron_profile928)_ 2.96044445545678847e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_deuteron_profile929)_ 2.95891054641250968e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_deuteron_profile930)_ 2.95737822608811222e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_deuteron_profile931)_ 2.95584749201663770e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_deuteron_profile932)_ 2.95431834173623659e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_deuteron_profile933)_ 2.95279077279014662e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_deuteron_profile934)_ 2.95126478272668943e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_deuteron_profile935)_ 2.94974036909924783e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_deuteron_profile936)_ 2.94821752946625948e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_deuteron_profile937)_ 2.94669626139119901e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_deuteron_profile938)_ 2.94517656244257018e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_deuteron_profile939)_ 2.94365843019388877e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_deuteron_profile940)_ 2.94214186222367026e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_deuteron_profile941)_ 2.94062685611541942e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_deuteron_profile942)_ 2.93911340945761390e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_deuteron_profile943)_ 2.93760151984369606e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_deuteron_profile944)_ 2.93609118487205356e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_deuteron_profile945)_ 2.93458240214601457e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_deuteron_profile946)_ 2.93307516927382834e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_deuteron_profile947)_ 2.93156948386865743e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_deuteron_profile948)_ 2.93006534354855977e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_deuteron_profile949)_ 2.92856274593648426e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_deuteron_profile950)_ 2.92706168866024800e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_deuteron_profile951)_ 2.92556216935253292e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_deuteron_profile952)_ 2.92406418565086760e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_deuteron_profile953)_ 2.92256773519761786e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_deuteron_profile954)_ 2.92107281563997120e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_deuteron_profile955)_ 2.91957942462993041e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_deuteron_profile956)_ 2.91808755982429385e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_deuteron_profile957)_ 2.91659721888464987e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_deuteron_profile958)_ 2.91510839947735779e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_deuteron_profile959)_ 2.91362109927354269e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_deuteron_profile960)_ 2.91213531594907902e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_deuteron_profile961)_ 2.91065104718457907e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_deuteron_profile962)_ 2.90916829066538215e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_deuteron_profile963)_ 2.90768704408154003e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_deuteron_profile964)_ 2.90620730512780882e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_deuteron_profile965)_ 2.90472907150363401e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_deuteron_profile966)_ 2.90325234091313928e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_deuteron_profile967)_ 2.90177711106511354e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_deuteron_profile968)_ 2.90030337967300341e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_deuteron_profile969)_ 2.89883114445489496e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_deuteron_profile970)_ 2.89736040313350819e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_deuteron_profile971)_ 2.89589115343617797e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_deuteron_profile972)_ 2.89442339309485294e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_deuteron_profile973)_ 2.89295711984607093e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_deuteron_profile974)_ 2.89149233143095933e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_deuteron_profile975)_ 2.89002902559521459e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_deuteron_profile976)_ 2.88856720008909665e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_deuteron_profile977)_ 2.88710685266741365e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_deuteron_profile978)_ 2.88564798108951226e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_deuteron_profile979)_ 2.88419058311926462e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_deuteron_profile980)_ 2.88273465652506053e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_deuteron_profile981)_ 2.88128019907979034e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_deuteron_profile982)_ 2.87982720856083930e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_deuteron_profile983)_ 2.87837568275007270e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_deuteron_profile984)_ 2.87692561943382621e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_deuteron_profile985)_ 2.87547701640289240e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_deuteron_profile986)_ 2.87402987145251334e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_deuteron_profile987)_ 2.87258418238236643e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_deuteron_profile988)_ 2.87113994699655324e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_deuteron_profile989)_ 2.86969716310359016e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_deuteron_profile990)_ 2.86825582851639576e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_deuteron_profile991)_ 2.86681594105228148e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_deuteron_profile992)_ 2.86537749853293709e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_deuteron_profile993)_ 2.86394049878442585e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_deuteron_profile994)_ 2.86250493963716477e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_deuteron_profile995)_ 2.86107081892592423e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_deuteron_profile996)_ 2.85963813448980674e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_deuteron_profile997)_ 2.85820688417224474e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_deuteron_profile998)_ 2.85677706582098231e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_deuteron_profile999)_ 2.85534867728807218e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_deuteron_profile1000)_ 2.85392171642985679e+07 -Plasma_deuteron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_deuteron_profile1001)_ 2.85249618110696524e+07 -Volume_averaged_triton_toroidal_Larmor_frequency_(ωc)_(Hz)_______________ (freq_plasma_larmor_toroidal_triton_vol_avg)_ 2.53961266150983460e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_0_______________________ (freq_plasma_larmor_toroidal_triton_profile0)_ 3.80941899226475134e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_1_______________________ (freq_plasma_larmor_toroidal_triton_profile1)_ 3.80561717690321058e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_2_______________________ (freq_plasma_larmor_toroidal_triton_profile2)_ 3.80182294242972732e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_3_______________________ (freq_plasma_larmor_toroidal_triton_profile3)_ 3.79803626619224772e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_4_______________________ (freq_plasma_larmor_toroidal_triton_profile4)_ 3.79425712562887222e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_5_______________________ (freq_plasma_larmor_toroidal_triton_profile5)_ 3.79048549826741219e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_6_______________________ (freq_plasma_larmor_toroidal_triton_profile6)_ 3.78672136172494143e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_7_______________________ (freq_plasma_larmor_toroidal_triton_profile7)_ 3.78296469370735735e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_8_______________________ (freq_plasma_larmor_toroidal_triton_profile8)_ 3.77921547200893611e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_9_______________________ (freq_plasma_larmor_toroidal_triton_profile9)_ 3.77547367451189682e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_10______________________ (freq_plasma_larmor_toroidal_triton_profile10)_ 3.77173927918597087e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_11______________________ (freq_plasma_larmor_toroidal_triton_profile11)_ 3.76801226408796087e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_12______________________ (freq_plasma_larmor_toroidal_triton_profile12)_ 3.76429260736131966e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_13______________________ (freq_plasma_larmor_toroidal_triton_profile13)_ 3.76058028723571673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_14______________________ (freq_plasma_larmor_toroidal_triton_profile14)_ 3.75687528202661723e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_15______________________ (freq_plasma_larmor_toroidal_triton_profile15)_ 3.75317757013485879e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_16______________________ (freq_plasma_larmor_toroidal_triton_profile16)_ 3.74948713004622981e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_17______________________ (freq_plasma_larmor_toroidal_triton_profile17)_ 3.74580394033105746e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_18______________________ (freq_plasma_larmor_toroidal_triton_profile18)_ 3.74212797964378446e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_19______________________ (freq_plasma_larmor_toroidal_triton_profile19)_ 3.73845922672256529e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_20______________________ (freq_plasma_larmor_toroidal_triton_profile20)_ 3.73479766038885042e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_21______________________ (freq_plasma_larmor_toroidal_triton_profile21)_ 3.73114325954698324e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_22______________________ (freq_plasma_larmor_toroidal_triton_profile22)_ 3.72749600318378955e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_23______________________ (freq_plasma_larmor_toroidal_triton_profile23)_ 3.72385587036818042e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_24______________________ (freq_plasma_larmor_toroidal_triton_profile24)_ 3.72022284025074765e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_25______________________ (freq_plasma_larmor_toroidal_triton_profile25)_ 3.71659689206336886e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_26______________________ (freq_plasma_larmor_toroidal_triton_profile26)_ 3.71297800511880890e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_27______________________ (freq_plasma_larmor_toroidal_triton_profile27)_ 3.70936615881032720e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_28______________________ (freq_plasma_larmor_toroidal_triton_profile28)_ 3.70576133261128888e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_29______________________ (freq_plasma_larmor_toroidal_triton_profile29)_ 3.70216350607477352e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_30______________________ (freq_plasma_larmor_toroidal_triton_profile30)_ 3.69857265883318707e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_31______________________ (freq_plasma_larmor_toroidal_triton_profile31)_ 3.69498877059788406e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_32______________________ (freq_plasma_larmor_toroidal_triton_profile32)_ 3.69141182115877643e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_33______________________ (freq_plasma_larmor_toroidal_triton_profile33)_ 3.68784179038396180e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_34______________________ (freq_plasma_larmor_toroidal_triton_profile34)_ 3.68427865821933970e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_35______________________ (freq_plasma_larmor_toroidal_triton_profile35)_ 3.68072240468823984e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_36______________________ (freq_plasma_larmor_toroidal_triton_profile36)_ 3.67717300989104807e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_37______________________ (freq_plasma_larmor_toroidal_triton_profile37)_ 3.67363045400483310e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_38______________________ (freq_plasma_larmor_toroidal_triton_profile38)_ 3.67009471728297994e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_39______________________ (freq_plasma_larmor_toroidal_triton_profile39)_ 3.66656578005482331e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_40______________________ (freq_plasma_larmor_toroidal_triton_profile40)_ 3.66304362272527963e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_41______________________ (freq_plasma_larmor_toroidal_triton_profile41)_ 3.65952822577448785e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_42______________________ (freq_plasma_larmor_toroidal_triton_profile42)_ 3.65601956975744665e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_43______________________ (freq_plasma_larmor_toroidal_triton_profile43)_ 3.65251763530365601e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_44______________________ (freq_plasma_larmor_toroidal_triton_profile44)_ 3.64902240311676189e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_45______________________ (freq_plasma_larmor_toroidal_triton_profile45)_ 3.64553385397420302e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_46______________________ (freq_plasma_larmor_toroidal_triton_profile46)_ 3.64205196872685403e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_47______________________ (freq_plasma_larmor_toroidal_triton_profile47)_ 3.63857672829868048e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_48______________________ (freq_plasma_larmor_toroidal_triton_profile48)_ 3.63510811368638426e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_49______________________ (freq_plasma_larmor_toroidal_triton_profile49)_ 3.63164610595906302e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_50______________________ (freq_plasma_larmor_toroidal_triton_profile50)_ 3.62819068625786528e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_51______________________ (freq_plasma_larmor_toroidal_triton_profile51)_ 3.62474183579564318e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_52______________________ (freq_plasma_larmor_toroidal_triton_profile52)_ 3.62129953585661575e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_53______________________ (freq_plasma_larmor_toroidal_triton_profile53)_ 3.61786376779603139e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_54______________________ (freq_plasma_larmor_toroidal_triton_profile54)_ 3.61443451303982660e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_55______________________ (freq_plasma_larmor_toroidal_triton_profile55)_ 3.61101175308429599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_56______________________ (freq_plasma_larmor_toroidal_triton_profile56)_ 3.60759546949575841e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_57______________________ (freq_plasma_larmor_toroidal_triton_profile57)_ 3.60418564391022399e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_58______________________ (freq_plasma_larmor_toroidal_triton_profile58)_ 3.60078225803306624e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_59______________________ (freq_plasma_larmor_toroidal_triton_profile59)_ 3.59738529363869429e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_60______________________ (freq_plasma_larmor_toroidal_triton_profile60)_ 3.59399473257023171e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_61______________________ (freq_plasma_larmor_toroidal_triton_profile61)_ 3.59061055673918650e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_62______________________ (freq_plasma_larmor_toroidal_triton_profile62)_ 3.58723274812513292e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_63______________________ (freq_plasma_larmor_toroidal_triton_profile63)_ 3.58386128877539113e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_64______________________ (freq_plasma_larmor_toroidal_triton_profile64)_ 3.58049616080471054e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_65______________________ (freq_plasma_larmor_toroidal_triton_profile65)_ 3.57713734639495015e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_66______________________ (freq_plasma_larmor_toroidal_triton_profile66)_ 3.57378482779476717e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_67______________________ (freq_plasma_larmor_toroidal_triton_profile67)_ 3.57043858731930405e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_68______________________ (freq_plasma_larmor_toroidal_triton_profile68)_ 3.56709860734987482e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_69______________________ (freq_plasma_larmor_toroidal_triton_profile69)_ 3.56376487033366039e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_70______________________ (freq_plasma_larmor_toroidal_triton_profile70)_ 3.56043735878339559e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_71______________________ (freq_plasma_larmor_toroidal_triton_profile71)_ 3.55711605527706742e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_72______________________ (freq_plasma_larmor_toroidal_triton_profile72)_ 3.55380094245761111e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_73______________________ (freq_plasma_larmor_toroidal_triton_profile73)_ 3.55049200303260386e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_74______________________ (freq_plasma_larmor_toroidal_triton_profile74)_ 3.54718921977396831e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_75______________________ (freq_plasma_larmor_toroidal_triton_profile75)_ 3.54389257551767305e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_76______________________ (freq_plasma_larmor_toroidal_triton_profile76)_ 3.54060205316343233e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_77______________________ (freq_plasma_larmor_toroidal_triton_profile77)_ 3.53731763567441255e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_78______________________ (freq_plasma_larmor_toroidal_triton_profile78)_ 3.53403930607693866e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_79______________________ (freq_plasma_larmor_toroidal_triton_profile79)_ 3.53076704746020064e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_80______________________ (freq_plasma_larmor_toroidal_triton_profile80)_ 3.52750084297596291e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_81______________________ (freq_plasma_larmor_toroidal_triton_profile81)_ 3.52424067583827749e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_82______________________ (freq_plasma_larmor_toroidal_triton_profile82)_ 3.52098652932319194e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_83______________________ (freq_plasma_larmor_toroidal_triton_profile83)_ 3.51773838676846549e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_84______________________ (freq_plasma_larmor_toroidal_triton_profile84)_ 3.51449623157328740e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_85______________________ (freq_plasma_larmor_toroidal_triton_profile85)_ 3.51126004719798937e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_86______________________ (freq_plasma_larmor_toroidal_triton_profile86)_ 3.50802981716376916e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_87______________________ (freq_plasma_larmor_toroidal_triton_profile87)_ 3.50480552505240515e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_88______________________ (freq_plasma_larmor_toroidal_triton_profile88)_ 3.50158715450598374e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_89______________________ (freq_plasma_larmor_toroidal_triton_profile89)_ 3.49837468922662064e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_90______________________ (freq_plasma_larmor_toroidal_triton_profile90)_ 3.49516811297618374e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_91______________________ (freq_plasma_larmor_toroidal_triton_profile91)_ 3.49196740957602337e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_92______________________ (freq_plasma_larmor_toroidal_triton_profile92)_ 3.48877256290669367e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_93______________________ (freq_plasma_larmor_toroidal_triton_profile93)_ 3.48558355690769330e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_94______________________ (freq_plasma_larmor_toroidal_triton_profile94)_ 3.48240037557718381e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_95______________________ (freq_plasma_larmor_toroidal_triton_profile95)_ 3.47922300297173038e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_96______________________ (freq_plasma_larmor_toroidal_triton_profile96)_ 3.47605142320603132e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_97______________________ (freq_plasma_larmor_toroidal_triton_profile97)_ 3.47288562045265585e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_98______________________ (freq_plasma_larmor_toroidal_triton_profile98)_ 3.46972557894178033e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_99______________________ (freq_plasma_larmor_toroidal_triton_profile99)_ 3.46657128296092451e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_100_____________________ (freq_plasma_larmor_toroidal_triton_profile100)_ 3.46342271685469225e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_101_____________________ (freq_plasma_larmor_toroidal_triton_profile101)_ 3.46027986502451599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_102_____________________ (freq_plasma_larmor_toroidal_triton_profile102)_ 3.45714271192839146e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_103_____________________ (freq_plasma_larmor_toroidal_triton_profile103)_ 3.45401124208063111e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_104_____________________ (freq_plasma_larmor_toroidal_triton_profile104)_ 3.45088544005159885e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_105_____________________ (freq_plasma_larmor_toroidal_triton_profile105)_ 3.44776529046746492e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_106_____________________ (freq_plasma_larmor_toroidal_triton_profile106)_ 3.44465077800995111e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_107_____________________ (freq_plasma_larmor_toroidal_triton_profile107)_ 3.44154188741607964e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_108_____________________ (freq_plasma_larmor_toroidal_triton_profile108)_ 3.43843860347792283e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_109_____________________ (freq_plasma_larmor_toroidal_triton_profile109)_ 3.43534091104235724e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_110_____________________ (freq_plasma_larmor_toroidal_triton_profile110)_ 3.43224879501081631e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_111_____________________ (freq_plasma_larmor_toroidal_triton_profile111)_ 3.42916224033904374e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_112_____________________ (freq_plasma_larmor_toroidal_triton_profile112)_ 3.42608123203685209e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_113_____________________ (freq_plasma_larmor_toroidal_triton_profile113)_ 3.42300575516787767e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_114_____________________ (freq_plasma_larmor_toroidal_triton_profile114)_ 3.41993579484934211e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_115_____________________ (freq_plasma_larmor_toroidal_triton_profile115)_ 3.41687133625180721e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_116_____________________ (freq_plasma_larmor_toroidal_triton_profile116)_ 3.41381236459894031e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_117_____________________ (freq_plasma_larmor_toroidal_triton_profile117)_ 3.41075886516727731e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_118_____________________ (freq_plasma_larmor_toroidal_triton_profile118)_ 3.40771082328598425e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_119_____________________ (freq_plasma_larmor_toroidal_triton_profile119)_ 3.40466822433662266e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_120_____________________ (freq_plasma_larmor_toroidal_triton_profile120)_ 3.40163105375291407e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_121_____________________ (freq_plasma_larmor_toroidal_triton_profile121)_ 3.39859929702051356e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_122_____________________ (freq_plasma_larmor_toroidal_triton_profile122)_ 3.39557293967677355e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_123_____________________ (freq_plasma_larmor_toroidal_triton_profile123)_ 3.39255196731051281e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_124_____________________ (freq_plasma_larmor_toroidal_triton_profile124)_ 3.38953636556179151e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_125_____________________ (freq_plasma_larmor_toroidal_triton_profile125)_ 3.38652612012168467e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_126_____________________ (freq_plasma_larmor_toroidal_triton_profile126)_ 3.38352121673204675e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_127_____________________ (freq_plasma_larmor_toroidal_triton_profile127)_ 3.38052164118529856e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_128_____________________ (freq_plasma_larmor_toroidal_triton_profile128)_ 3.37752737932419553e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_129_____________________ (freq_plasma_larmor_toroidal_triton_profile129)_ 3.37453841704160795e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_130_____________________ (freq_plasma_larmor_toroidal_triton_profile130)_ 3.37155474028029814e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_131_____________________ (freq_plasma_larmor_toroidal_triton_profile131)_ 3.36857633503270000e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_132_____________________ (freq_plasma_larmor_toroidal_triton_profile132)_ 3.36560318734070361e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_133_____________________ (freq_plasma_larmor_toroidal_triton_profile133)_ 3.36263528329542875e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_134_____________________ (freq_plasma_larmor_toroidal_triton_profile134)_ 3.35967260903701931e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_135_____________________ (freq_plasma_larmor_toroidal_triton_profile135)_ 3.35671515075441599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_136_____________________ (freq_plasma_larmor_toroidal_triton_profile136)_ 3.35376289468515031e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_137_____________________ (freq_plasma_larmor_toroidal_triton_profile137)_ 3.35081582711512856e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_138_____________________ (freq_plasma_larmor_toroidal_triton_profile138)_ 3.34787393437841684e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_139_____________________ (freq_plasma_larmor_toroidal_triton_profile139)_ 3.34493720285703242e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_140_____________________ (freq_plasma_larmor_toroidal_triton_profile140)_ 3.34200561898073293e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_141_____________________ (freq_plasma_larmor_toroidal_triton_profile141)_ 3.33907916922680996e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_142_____________________ (freq_plasma_larmor_toroidal_triton_profile142)_ 3.33615784011987448e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_143_____________________ (freq_plasma_larmor_toroidal_triton_profile143)_ 3.33324161823165826e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_144_____________________ (freq_plasma_larmor_toroidal_triton_profile144)_ 3.33033049018079974e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_145_____________________ (freq_plasma_larmor_toroidal_triton_profile145)_ 3.32742444263264909e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_146_____________________ (freq_plasma_larmor_toroidal_triton_profile146)_ 3.32452346229905561e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_147_____________________ (freq_plasma_larmor_toroidal_triton_profile147)_ 3.32162753593816757e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_148_____________________ (freq_plasma_larmor_toroidal_triton_profile148)_ 3.31873665035423525e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_149_____________________ (freq_plasma_larmor_toroidal_triton_profile149)_ 3.31585079239740558e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_150_____________________ (freq_plasma_larmor_toroidal_triton_profile150)_ 3.31296994896352477e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_151_____________________ (freq_plasma_larmor_toroidal_triton_profile151)_ 3.31009410699393786e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_152_____________________ (freq_plasma_larmor_toroidal_triton_profile152)_ 3.30722325347529612e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_153_____________________ (freq_plasma_larmor_toroidal_triton_profile153)_ 3.30435737543935627e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_154_____________________ (freq_plasma_larmor_toroidal_triton_profile154)_ 3.30149645996278487e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_155_____________________ (freq_plasma_larmor_toroidal_triton_profile155)_ 3.29864049416696988e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_156_____________________ (freq_plasma_larmor_toroidal_triton_profile156)_ 3.29578946521781869e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_157_____________________ (freq_plasma_larmor_toroidal_triton_profile157)_ 3.29294336032557525e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_158_____________________ (freq_plasma_larmor_toroidal_triton_profile158)_ 3.29010216674462184e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_159_____________________ (freq_plasma_larmor_toroidal_triton_profile159)_ 3.28726587177328989e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_160_____________________ (freq_plasma_larmor_toroidal_triton_profile160)_ 3.28443446275367476e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_161_____________________ (freq_plasma_larmor_toroidal_triton_profile161)_ 3.28160792707144283e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_162_____________________ (freq_plasma_larmor_toroidal_triton_profile162)_ 3.27878625215564631e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_163_____________________ (freq_plasma_larmor_toroidal_triton_profile163)_ 3.27596942547853701e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_164_____________________ (freq_plasma_larmor_toroidal_triton_profile164)_ 3.27315743455537967e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_165_____________________ (freq_plasma_larmor_toroidal_triton_profile165)_ 3.27035026694426797e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_166_____________________ (freq_plasma_larmor_toroidal_triton_profile166)_ 3.26754791024594381e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_167_____________________ (freq_plasma_larmor_toroidal_triton_profile167)_ 3.26475035210361034e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_168_____________________ (freq_plasma_larmor_toroidal_triton_profile168)_ 3.26195758020275161e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_169_____________________ (freq_plasma_larmor_toroidal_triton_profile169)_ 3.25916958227095418e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_170_____________________ (freq_plasma_larmor_toroidal_triton_profile170)_ 3.25638634607772566e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_171_____________________ (freq_plasma_larmor_toroidal_triton_profile171)_ 3.25360785943431444e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_172_____________________ (freq_plasma_larmor_toroidal_triton_profile172)_ 3.25083411019353494e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_173_____________________ (freq_plasma_larmor_toroidal_triton_profile173)_ 3.24806508624958880e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_174_____________________ (freq_plasma_larmor_toroidal_triton_profile174)_ 3.24530077553788684e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_175_____________________ (freq_plasma_larmor_toroidal_triton_profile175)_ 3.24254116603487842e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_176_____________________ (freq_plasma_larmor_toroidal_triton_profile176)_ 3.23978624575787298e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_177_____________________ (freq_plasma_larmor_toroidal_triton_profile177)_ 3.23703600276486985e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_178_____________________ (freq_plasma_larmor_toroidal_triton_profile178)_ 3.23429042515438236e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_179_____________________ (freq_plasma_larmor_toroidal_triton_profile179)_ 3.23154950106526799e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_180_____________________ (freq_plasma_larmor_toroidal_triton_profile180)_ 3.22881321867655925e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_181_____________________ (freq_plasma_larmor_toroidal_triton_profile181)_ 3.22608156620728932e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_182_____________________ (freq_plasma_larmor_toroidal_triton_profile182)_ 3.22335453191632852e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_183_____________________ (freq_plasma_larmor_toroidal_triton_profile183)_ 3.22063210410220996e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_184_____________________ (freq_plasma_larmor_toroidal_triton_profile184)_ 3.21791427110296749e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_185_____________________ (freq_plasma_larmor_toroidal_triton_profile185)_ 3.21520102129596658e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_186_____________________ (freq_plasma_larmor_toroidal_triton_profile186)_ 3.21249234309773892e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_187_____________________ (freq_plasma_larmor_toroidal_triton_profile187)_ 3.20978822496381849e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_188_____________________ (freq_plasma_larmor_toroidal_triton_profile188)_ 3.20708865538857579e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_189_____________________ (freq_plasma_larmor_toroidal_triton_profile189)_ 3.20439362290505581e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_190_____________________ (freq_plasma_larmor_toroidal_triton_profile190)_ 3.20170311608481668e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_191_____________________ (freq_plasma_larmor_toroidal_triton_profile191)_ 3.19901712353776544e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_192_____________________ (freq_plasma_larmor_toroidal_triton_profile192)_ 3.19633563391200081e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_193_____________________ (freq_plasma_larmor_toroidal_triton_profile193)_ 3.19365863589364849e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_194_____________________ (freq_plasma_larmor_toroidal_triton_profile194)_ 3.19098611820670851e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_195_____________________ (freq_plasma_larmor_toroidal_triton_profile195)_ 3.18831806961289048e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_196_____________________ (freq_plasma_larmor_toroidal_triton_profile196)_ 3.18565447891145907e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_197_____________________ (freq_plasma_larmor_toroidal_triton_profile197)_ 3.18299533493907936e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_198_____________________ (freq_plasma_larmor_toroidal_triton_profile198)_ 3.18034062656965517e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_199_____________________ (freq_plasma_larmor_toroidal_triton_profile199)_ 3.17769034271418005e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_200_____________________ (freq_plasma_larmor_toroidal_triton_profile200)_ 3.17504447232057974e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_201_____________________ (freq_plasma_larmor_toroidal_triton_profile201)_ 3.17240300437355787e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_202_____________________ (freq_plasma_larmor_toroidal_triton_profile202)_ 3.16976592789444476e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_203_____________________ (freq_plasma_larmor_toroidal_triton_profile203)_ 3.16713323194104396e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_204_____________________ (freq_plasma_larmor_toroidal_triton_profile204)_ 3.16450490560748279e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_205_____________________ (freq_plasma_larmor_toroidal_triton_profile205)_ 3.16188093802406043e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_206_____________________ (freq_plasma_larmor_toroidal_triton_profile206)_ 3.15926131835709773e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_207_____________________ (freq_plasma_larmor_toroidal_triton_profile207)_ 3.15664603580878824e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_208_____________________ (freq_plasma_larmor_toroidal_triton_profile208)_ 3.15403507961705253e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_209_____________________ (freq_plasma_larmor_toroidal_triton_profile209)_ 3.15142843905538544e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_210_____________________ (freq_plasma_larmor_toroidal_triton_profile210)_ 3.14882610343271419e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_211_____________________ (freq_plasma_larmor_toroidal_triton_profile211)_ 3.14622806209324822e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_212_____________________ (freq_plasma_larmor_toroidal_triton_profile212)_ 3.14363430441633649e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_213_____________________ (freq_plasma_larmor_toroidal_triton_profile213)_ 3.14104481981632337e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_214_____________________ (freq_plasma_larmor_toroidal_triton_profile214)_ 3.13845959774240032e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_215_____________________ (freq_plasma_larmor_toroidal_triton_profile215)_ 3.13587862767846771e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_216_____________________ (freq_plasma_larmor_toroidal_triton_profile216)_ 3.13330189914298840e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_217_____________________ (freq_plasma_larmor_toroidal_triton_profile217)_ 3.13072940168884806e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_218_____________________ (freq_plasma_larmor_toroidal_triton_profile218)_ 3.12816112490321323e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_219_____________________ (freq_plasma_larmor_toroidal_triton_profile219)_ 3.12559705840739086e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_220_____________________ (freq_plasma_larmor_toroidal_triton_profile220)_ 3.12303719185668863e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_221_____________________ (freq_plasma_larmor_toroidal_triton_profile221)_ 3.12048151494027562e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_222_____________________ (freq_plasma_larmor_toroidal_triton_profile222)_ 3.11793001738104336e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_223_____________________ (freq_plasma_larmor_toroidal_triton_profile223)_ 3.11538268893547133e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_224_____________________ (freq_plasma_larmor_toroidal_triton_profile224)_ 3.11283951939348280e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_225_____________________ (freq_plasma_larmor_toroidal_triton_profile225)_ 3.11030049857831746e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_226_____________________ (freq_plasma_larmor_toroidal_triton_profile226)_ 3.10776561634638719e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_227_____________________ (freq_plasma_larmor_toroidal_triton_profile227)_ 3.10523486258714721e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_228_____________________ (freq_plasma_larmor_toroidal_triton_profile228)_ 3.10270822722295858e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_229_____________________ (freq_plasma_larmor_toroidal_triton_profile229)_ 3.10018570020895638e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_230_____________________ (freq_plasma_larmor_toroidal_triton_profile230)_ 3.09766727153291330e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_231_____________________ (freq_plasma_larmor_toroidal_triton_profile231)_ 3.09515293121511079e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_232_____________________ (freq_plasma_larmor_toroidal_triton_profile232)_ 3.09264266930820458e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_233_____________________ (freq_plasma_larmor_toroidal_triton_profile233)_ 3.09013647589709647e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_234_____________________ (freq_plasma_larmor_toroidal_triton_profile234)_ 3.08763434109879881e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_235_____________________ (freq_plasma_larmor_toroidal_triton_profile235)_ 3.08513625506231152e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_236_____________________ (freq_plasma_larmor_toroidal_triton_profile236)_ 3.08264220796848536e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_237_____________________ (freq_plasma_larmor_toroidal_triton_profile237)_ 3.08015219002990052e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_238_____________________ (freq_plasma_larmor_toroidal_triton_profile238)_ 3.07766619149073176e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_239_____________________ (freq_plasma_larmor_toroidal_triton_profile239)_ 3.07518420262662694e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_240_____________________ (freq_plasma_larmor_toroidal_triton_profile240)_ 3.07270621374457404e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_241_____________________ (freq_plasma_larmor_toroidal_triton_profile241)_ 3.07023221518278345e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_242_____________________ (freq_plasma_larmor_toroidal_triton_profile242)_ 3.06776219731055275e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_243_____________________ (freq_plasma_larmor_toroidal_triton_profile243)_ 3.06529615052814819e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_244_____________________ (freq_plasma_larmor_toroidal_triton_profile244)_ 3.06283406526667997e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_245_____________________ (freq_plasma_larmor_toroidal_triton_profile245)_ 3.06037593198797479e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_246_____________________ (freq_plasma_larmor_toroidal_triton_profile246)_ 3.05792174118445590e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_247_____________________ (freq_plasma_larmor_toroidal_triton_profile247)_ 3.05547148337902017e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_248_____________________ (freq_plasma_larmor_toroidal_triton_profile248)_ 3.05302514912491329e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_249_____________________ (freq_plasma_larmor_toroidal_triton_profile249)_ 3.05058272900561355e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_250_____________________ (freq_plasma_larmor_toroidal_triton_profile250)_ 3.04814421363470517e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_251_____________________ (freq_plasma_larmor_toroidal_triton_profile251)_ 3.04570959365576394e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_252_____________________ (freq_plasma_larmor_toroidal_triton_profile252)_ 3.04327885974223204e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_253_____________________ (freq_plasma_larmor_toroidal_triton_profile253)_ 3.04085200259730220e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_254_____________________ (freq_plasma_larmor_toroidal_triton_profile254)_ 3.03842901295379810e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_255_____________________ (freq_plasma_larmor_toroidal_triton_profile255)_ 3.03600988157405816e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_256_____________________ (freq_plasma_larmor_toroidal_triton_profile256)_ 3.03359459924981445e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_257_____________________ (freq_plasma_larmor_toroidal_triton_profile257)_ 3.03118315680207983e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_258_____________________ (freq_plasma_larmor_toroidal_triton_profile258)_ 3.02877554508102983e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_259_____________________ (freq_plasma_larmor_toroidal_triton_profile259)_ 3.02637175496588610e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_260_____________________ (freq_plasma_larmor_toroidal_triton_profile260)_ 3.02397177736480273e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_261_____________________ (freq_plasma_larmor_toroidal_triton_profile261)_ 3.02157560321475193e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_262_____________________ (freq_plasma_larmor_toroidal_triton_profile262)_ 3.01918322348140702e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_263_____________________ (freq_plasma_larmor_toroidal_triton_profile263)_ 3.01679462915903181e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_264_____________________ (freq_plasma_larmor_toroidal_triton_profile264)_ 3.01440981127036922e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_265_____________________ (freq_plasma_larmor_toroidal_triton_profile265)_ 3.01202876086652167e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_266_____________________ (freq_plasma_larmor_toroidal_triton_profile266)_ 3.00965146902684756e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_267_____________________ (freq_plasma_larmor_toroidal_triton_profile267)_ 3.00727792685884610e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_268_____________________ (freq_plasma_larmor_toroidal_triton_profile268)_ 3.00490812549804337e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_269_____________________ (freq_plasma_larmor_toroidal_triton_profile269)_ 3.00254205610788725e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_270_____________________ (freq_plasma_larmor_toroidal_triton_profile270)_ 3.00017970987963602e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_271_____________________ (freq_plasma_larmor_toroidal_triton_profile271)_ 2.99782107803224586e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_272_____________________ (freq_plasma_larmor_toroidal_triton_profile272)_ 2.99546615181226768e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_273_____________________ (freq_plasma_larmor_toroidal_triton_profile273)_ 2.99311492249373347e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_274_____________________ (freq_plasma_larmor_toroidal_triton_profile274)_ 2.99076738137805201e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_275_____________________ (freq_plasma_larmor_toroidal_triton_profile275)_ 2.98842351979390010e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_276_____________________ (freq_plasma_larmor_toroidal_triton_profile276)_ 2.98608332909711562e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_277_____________________ (freq_plasma_larmor_toroidal_triton_profile277)_ 2.98374680067059211e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_278_____________________ (freq_plasma_larmor_toroidal_triton_profile278)_ 2.98141392592417262e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_279_____________________ (freq_plasma_larmor_toroidal_triton_profile279)_ 2.97908469629454426e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_280_____________________ (freq_plasma_larmor_toroidal_triton_profile280)_ 2.97675910324513428e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_281_____________________ (freq_plasma_larmor_toroidal_triton_profile281)_ 2.97443713826600350e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_282_____________________ (freq_plasma_larmor_toroidal_triton_profile282)_ 2.97211879287374690e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_283_____________________ (freq_plasma_larmor_toroidal_triton_profile283)_ 2.96980405861138403e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_284_____________________ (freq_plasma_larmor_toroidal_triton_profile284)_ 2.96749292704826221e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_285_____________________ (freq_plasma_larmor_toroidal_triton_profile285)_ 2.96518538977995031e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_286_____________________ (freq_plasma_larmor_toroidal_triton_profile286)_ 2.96288143842814043e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_287_____________________ (freq_plasma_larmor_toroidal_triton_profile287)_ 2.96058106464054137e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_288_____________________ (freq_plasma_larmor_toroidal_triton_profile288)_ 2.95828426009078138e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_289_____________________ (freq_plasma_larmor_toroidal_triton_profile289)_ 2.95599101647830755e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_290_____________________ (freq_plasma_larmor_toroidal_triton_profile290)_ 2.95370132552828602e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_291_____________________ (freq_plasma_larmor_toroidal_triton_profile291)_ 2.95141517899149880e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_292_____________________ (freq_plasma_larmor_toroidal_triton_profile292)_ 2.94913256864425093e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_293_____________________ (freq_plasma_larmor_toroidal_triton_profile293)_ 2.94685348628826626e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_294_____________________ (freq_plasma_larmor_toroidal_triton_profile294)_ 2.94457792375059240e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_295_____________________ (freq_plasma_larmor_toroidal_triton_profile295)_ 2.94230587288350053e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_296_____________________ (freq_plasma_larmor_toroidal_triton_profile296)_ 2.94003732556439228e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_297_____________________ (freq_plasma_larmor_toroidal_triton_profile297)_ 2.93777227369569875e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_298_____________________ (freq_plasma_larmor_toroidal_triton_profile298)_ 2.93551070920478553e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_299_____________________ (freq_plasma_larmor_toroidal_triton_profile299)_ 2.93325262404385917e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_300_____________________ (freq_plasma_larmor_toroidal_triton_profile300)_ 2.93099801018986702e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_301_____________________ (freq_plasma_larmor_toroidal_triton_profile301)_ 2.92874685964440592e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_302_____________________ (freq_plasma_larmor_toroidal_triton_profile302)_ 2.92649916443362758e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_303_____________________ (freq_plasma_larmor_toroidal_triton_profile303)_ 2.92425491660814211e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_304_____________________ (freq_plasma_larmor_toroidal_triton_profile304)_ 2.92201410824292488e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_305_____________________ (freq_plasma_larmor_toroidal_triton_profile305)_ 2.91977673143722564e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_306_____________________ (freq_plasma_larmor_toroidal_triton_profile306)_ 2.91754277831447348e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_307_____________________ (freq_plasma_larmor_toroidal_triton_profile307)_ 2.91531224102218412e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_308_____________________ (freq_plasma_larmor_toroidal_triton_profile308)_ 2.91308511173186898e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_309_____________________ (freq_plasma_larmor_toroidal_triton_profile309)_ 2.91086138263894469e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_310_____________________ (freq_plasma_larmor_toroidal_triton_profile310)_ 2.90864104596263655e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_311_____________________ (freq_plasma_larmor_toroidal_triton_profile311)_ 2.90642409394589663e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_312_____________________ (freq_plasma_larmor_toroidal_triton_profile312)_ 2.90421051885530613e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_313_____________________ (freq_plasma_larmor_toroidal_triton_profile313)_ 2.90200031298098676e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_314_____________________ (freq_plasma_larmor_toroidal_triton_profile314)_ 2.89979346863651425e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_315_____________________ (freq_plasma_larmor_toroidal_triton_profile315)_ 2.89758997815882713e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_316_____________________ (freq_plasma_larmor_toroidal_triton_profile316)_ 2.89538983390813693e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_317_____________________ (freq_plasma_larmor_toroidal_triton_profile317)_ 2.89319302826784253e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_318_____________________ (freq_plasma_larmor_toroidal_triton_profile318)_ 2.89099955364444032e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_319_____________________ (freq_plasma_larmor_toroidal_triton_profile319)_ 2.88880940246743709e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_320_____________________ (freq_plasma_larmor_toroidal_triton_profile320)_ 2.88662256718926318e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_321_____________________ (freq_plasma_larmor_toroidal_triton_profile321)_ 2.88443904028518647e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_322_____________________ (freq_plasma_larmor_toroidal_triton_profile322)_ 2.88225881425322518e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_323_____________________ (freq_plasma_larmor_toroidal_triton_profile323)_ 2.88008188161406107e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_324_____________________ (freq_plasma_larmor_toroidal_triton_profile324)_ 2.87790823491095603e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_325_____________________ (freq_plasma_larmor_toroidal_triton_profile325)_ 2.87573786670966558e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_326_____________________ (freq_plasma_larmor_toroidal_triton_profile326)_ 2.87357076959835514e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_327_____________________ (freq_plasma_larmor_toroidal_triton_profile327)_ 2.87140693618751280e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_328_____________________ (freq_plasma_larmor_toroidal_triton_profile328)_ 2.86924635910986960e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_329_____________________ (freq_plasma_larmor_toroidal_triton_profile329)_ 2.86708903102031313e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_330_____________________ (freq_plasma_larmor_toroidal_triton_profile330)_ 2.86493494459580556e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_331_____________________ (freq_plasma_larmor_toroidal_triton_profile331)_ 2.86278409253529795e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_332_____________________ (freq_plasma_larmor_toroidal_triton_profile332)_ 2.86063646755965203e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_333_____________________ (freq_plasma_larmor_toroidal_triton_profile333)_ 2.85849206241155751e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_334_____________________ (freq_plasma_larmor_toroidal_triton_profile334)_ 2.85635086985544302e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_335_____________________ (freq_plasma_larmor_toroidal_triton_profile335)_ 2.85421288267740719e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_336_____________________ (freq_plasma_larmor_toroidal_triton_profile336)_ 2.85207809368512854e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_337_____________________ (freq_plasma_larmor_toroidal_triton_profile337)_ 2.84994649570778497e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_338_____________________ (freq_plasma_larmor_toroidal_triton_profile338)_ 2.84781808159597963e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_339_____________________ (freq_plasma_larmor_toroidal_triton_profile339)_ 2.84569284422165453e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_340_____________________ (freq_plasma_larmor_toroidal_triton_profile340)_ 2.84357077647801377e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_341_____________________ (freq_plasma_larmor_toroidal_triton_profile341)_ 2.84145187127944604e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_342_____________________ (freq_plasma_larmor_toroidal_triton_profile342)_ 2.83933612156144232e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_343_____________________ (freq_plasma_larmor_toroidal_triton_profile343)_ 2.83722352028051838e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_344_____________________ (freq_plasma_larmor_toroidal_triton_profile344)_ 2.83511406041413881e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_345_____________________ (freq_plasma_larmor_toroidal_triton_profile345)_ 2.83300773496063687e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_346_____________________ (freq_plasma_larmor_toroidal_triton_profile346)_ 2.83090453693913668e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_347_____________________ (freq_plasma_larmor_toroidal_triton_profile347)_ 2.82880445938947834e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_348_____________________ (freq_plasma_larmor_toroidal_triton_profile348)_ 2.82670749537214004e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_349_____________________ (freq_plasma_larmor_toroidal_triton_profile349)_ 2.82461363796816021e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_350_____________________ (freq_plasma_larmor_toroidal_triton_profile350)_ 2.82252288027906492e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_351_____________________ (freq_plasma_larmor_toroidal_triton_profile351)_ 2.82043521542678773e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_352_____________________ (freq_plasma_larmor_toroidal_triton_profile352)_ 2.81835063655359708e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_353_____________________ (freq_plasma_larmor_toroidal_triton_profile353)_ 2.81626913682202138e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_354_____________________ (freq_plasma_larmor_toroidal_triton_profile354)_ 2.81419070941477232e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_355_____________________ (freq_plasma_larmor_toroidal_triton_profile355)_ 2.81211534753467329e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_356_____________________ (freq_plasma_larmor_toroidal_triton_profile356)_ 2.81004304440458082e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_357_____________________ (freq_plasma_larmor_toroidal_triton_profile357)_ 2.80797379326731674e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_358_____________________ (freq_plasma_larmor_toroidal_triton_profile358)_ 2.80590758738559000e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_359_____________________ (freq_plasma_larmor_toroidal_triton_profile359)_ 2.80384442004192434e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_360_____________________ (freq_plasma_larmor_toroidal_triton_profile360)_ 2.80178428453858681e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_361_____________________ (freq_plasma_larmor_toroidal_triton_profile361)_ 2.79972717419751585e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_362_____________________ (freq_plasma_larmor_toroidal_triton_profile362)_ 2.79767308236024715e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_363_____________________ (freq_plasma_larmor_toroidal_triton_profile363)_ 2.79562200238784216e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_364_____________________ (freq_plasma_larmor_toroidal_triton_profile364)_ 2.79357392766081803e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_365_____________________ (freq_plasma_larmor_toroidal_triton_profile365)_ 2.79152885157907531e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_366_____________________ (freq_plasma_larmor_toroidal_triton_profile366)_ 2.78948676756182611e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_367_____________________ (freq_plasma_larmor_toroidal_triton_profile367)_ 2.78744766904752664e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_368_____________________ (freq_plasma_larmor_toroidal_triton_profile368)_ 2.78541154949380346e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_369_____________________ (freq_plasma_larmor_toroidal_triton_profile369)_ 2.78337840237738490e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_370_____________________ (freq_plasma_larmor_toroidal_triton_profile370)_ 2.78134822119403109e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_371_____________________ (freq_plasma_larmor_toroidal_triton_profile371)_ 2.77932099945846684e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_372_____________________ (freq_plasma_larmor_toroidal_triton_profile372)_ 2.77729673070430942e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_373_____________________ (freq_plasma_larmor_toroidal_triton_profile373)_ 2.77527540848400034e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_374_____________________ (freq_plasma_larmor_toroidal_triton_profile374)_ 2.77325702636873946e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_375_____________________ (freq_plasma_larmor_toroidal_triton_profile375)_ 2.77124157794841342e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_376_____________________ (freq_plasma_larmor_toroidal_triton_profile376)_ 2.76922905683153048e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_377_____________________ (freq_plasma_larmor_toroidal_triton_profile377)_ 2.76721945664514974e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_378_____________________ (freq_plasma_larmor_toroidal_triton_profile378)_ 2.76521277103481963e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_379_____________________ (freq_plasma_larmor_toroidal_triton_profile379)_ 2.76320899366450496e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_380_____________________ (freq_plasma_larmor_toroidal_triton_profile380)_ 2.76120811821652204e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_381_____________________ (freq_plasma_larmor_toroidal_triton_profile381)_ 2.75921013839147314e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_382_____________________ (freq_plasma_larmor_toroidal_triton_profile382)_ 2.75721504790818244e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_383_____________________ (freq_plasma_larmor_toroidal_triton_profile383)_ 2.75522284050362483e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_384_____________________ (freq_plasma_larmor_toroidal_triton_profile384)_ 2.75323350993286446e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_385_____________________ (freq_plasma_larmor_toroidal_triton_profile385)_ 2.75124704996898733e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_386_____________________ (freq_plasma_larmor_toroidal_triton_profile386)_ 2.74926345440304056e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_387_____________________ (freq_plasma_larmor_toroidal_triton_profile387)_ 2.74728271704396009e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_388_____________________ (freq_plasma_larmor_toroidal_triton_profile388)_ 2.74530483171851449e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_389_____________________ (freq_plasma_larmor_toroidal_triton_profile389)_ 2.74332979227123521e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_390_____________________ (freq_plasma_larmor_toroidal_triton_profile390)_ 2.74135759256435446e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_391_____________________ (freq_plasma_larmor_toroidal_triton_profile391)_ 2.73938822647774220e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_392_____________________ (freq_plasma_larmor_toroidal_triton_profile392)_ 2.73742168790884167e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_393_____________________ (freq_plasma_larmor_toroidal_triton_profile393)_ 2.73545797077260911e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_394_____________________ (freq_plasma_larmor_toroidal_triton_profile394)_ 2.73349706900144555e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_395_____________________ (freq_plasma_larmor_toroidal_triton_profile395)_ 2.73153897654514126e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_396_____________________ (freq_plasma_larmor_toroidal_triton_profile396)_ 2.72958368737080656e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_397_____________________ (freq_plasma_larmor_toroidal_triton_profile397)_ 2.72763119546281621e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_398_____________________ (freq_plasma_larmor_toroidal_triton_profile398)_ 2.72568149482274204e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_399_____________________ (freq_plasma_larmor_toroidal_triton_profile399)_ 2.72373457946929745e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_400_____________________ (freq_plasma_larmor_toroidal_triton_profile400)_ 2.72179044343826994e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_401_____________________ (freq_plasma_larmor_toroidal_triton_profile401)_ 2.71984908078246564e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_402_____________________ (freq_plasma_larmor_toroidal_triton_profile402)_ 2.71791048557164408e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_403_____________________ (freq_plasma_larmor_toroidal_triton_profile403)_ 2.71597465189246200e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_404_____________________ (freq_plasma_larmor_toroidal_triton_profile404)_ 2.71404157384841070e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_405_____________________ (freq_plasma_larmor_toroidal_triton_profile405)_ 2.71211124555975571e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_406_____________________ (freq_plasma_larmor_toroidal_triton_profile406)_ 2.71018366116348021e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_407_____________________ (freq_plasma_larmor_toroidal_triton_profile407)_ 2.70825881481322199e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_408_____________________ (freq_plasma_larmor_toroidal_triton_profile408)_ 2.70633670067921691e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_409_____________________ (freq_plasma_larmor_toroidal_triton_profile409)_ 2.70441731294823885e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_410_____________________ (freq_plasma_larmor_toroidal_triton_profile410)_ 2.70250064582354128e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_411_____________________ (freq_plasma_larmor_toroidal_triton_profile411)_ 2.70058669352479950e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_412_____________________ (freq_plasma_larmor_toroidal_triton_profile412)_ 2.69867545028805174e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_413_____________________ (freq_plasma_larmor_toroidal_triton_profile413)_ 2.69676691036564149e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_414_____________________ (freq_plasma_larmor_toroidal_triton_profile414)_ 2.69486106802616008e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_415_____________________ (freq_plasma_larmor_toroidal_triton_profile415)_ 2.69295791755439043e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_416_____________________ (freq_plasma_larmor_toroidal_triton_profile416)_ 2.69105745325124711e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_417_____________________ (freq_plasma_larmor_toroidal_triton_profile417)_ 2.68915966943372115e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_418_____________________ (freq_plasma_larmor_toroidal_triton_profile418)_ 2.68726456043482535e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_419_____________________ (freq_plasma_larmor_toroidal_triton_profile419)_ 2.68537212060353272e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_420_____________________ (freq_plasma_larmor_toroidal_triton_profile420)_ 2.68348234430472665e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_421_____________________ (freq_plasma_larmor_toroidal_triton_profile421)_ 2.68159522591913976e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_422_____________________ (freq_plasma_larmor_toroidal_triton_profile422)_ 2.67971075984330066e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_423_____________________ (freq_plasma_larmor_toroidal_triton_profile423)_ 2.67782894048947804e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_424_____________________ (freq_plasma_larmor_toroidal_triton_profile424)_ 2.67594976228562593e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_425_____________________ (freq_plasma_larmor_toroidal_triton_profile425)_ 2.67407321967532709e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_426_____________________ (freq_plasma_larmor_toroidal_triton_profile426)_ 2.67219930711774118e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_427_____________________ (freq_plasma_larmor_toroidal_triton_profile427)_ 2.67032801908754706e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_428_____________________ (freq_plasma_larmor_toroidal_triton_profile428)_ 2.66845935007488951e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_429_____________________ (freq_plasma_larmor_toroidal_triton_profile429)_ 2.66659329458532631e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_430_____________________ (freq_plasma_larmor_toroidal_triton_profile430)_ 2.66472984713977426e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_431_____________________ (freq_plasma_larmor_toroidal_triton_profile431)_ 2.66286900227445327e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_432_____________________ (freq_plasma_larmor_toroidal_triton_profile432)_ 2.66101075454083532e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_433_____________________ (freq_plasma_larmor_toroidal_triton_profile433)_ 2.65915509850559086e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_434_____________________ (freq_plasma_larmor_toroidal_triton_profile434)_ 2.65730202875053473e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_435_____________________ (freq_plasma_larmor_toroidal_triton_profile435)_ 2.65545153987257443e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_436_____________________ (freq_plasma_larmor_toroidal_triton_profile436)_ 2.65360362648365796e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_437_____________________ (freq_plasma_larmor_toroidal_triton_profile437)_ 2.65175828321072087e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_438_____________________ (freq_plasma_larmor_toroidal_triton_profile438)_ 2.64991550469563343e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_439_____________________ (freq_plasma_larmor_toroidal_triton_profile439)_ 2.64807528559515066e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_440_____________________ (freq_plasma_larmor_toroidal_triton_profile440)_ 2.64623762058085836e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_441_____________________ (freq_plasma_larmor_toroidal_triton_profile441)_ 2.64440250433912389e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_442_____________________ (freq_plasma_larmor_toroidal_triton_profile442)_ 2.64256993157104403e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_443_____________________ (freq_plasma_larmor_toroidal_triton_profile443)_ 2.64073989699239396e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_444_____________________ (freq_plasma_larmor_toroidal_triton_profile444)_ 2.63891239533357583e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_445_____________________ (freq_plasma_larmor_toroidal_triton_profile445)_ 2.63708742133956887e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_446_____________________ (freq_plasma_larmor_toroidal_triton_profile446)_ 2.63526496976988018e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_447_____________________ (freq_plasma_larmor_toroidal_triton_profile447)_ 2.63344503539849222e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_448_____________________ (freq_plasma_larmor_toroidal_triton_profile448)_ 2.63162761301381402e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_449_____________________ (freq_plasma_larmor_toroidal_triton_profile449)_ 2.62981269741863236e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_450_____________________ (freq_plasma_larmor_toroidal_triton_profile450)_ 2.62800028343005963e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_451_____________________ (freq_plasma_larmor_toroidal_triton_profile451)_ 2.62619036587948836e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_452_____________________ (freq_plasma_larmor_toroidal_triton_profile452)_ 2.62438293961253762e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_453_____________________ (freq_plasma_larmor_toroidal_triton_profile453)_ 2.62257799948900752e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_454_____________________ (freq_plasma_larmor_toroidal_triton_profile454)_ 2.62077554038282968e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_455_____________________ (freq_plasma_larmor_toroidal_triton_profile455)_ 2.61897555718201697e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_456_____________________ (freq_plasma_larmor_toroidal_triton_profile456)_ 2.61717804478861801e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_457_____________________ (freq_plasma_larmor_toroidal_triton_profile457)_ 2.61538299811866693e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_458_____________________ (freq_plasma_larmor_toroidal_triton_profile458)_ 2.61359041210213639e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_459_____________________ (freq_plasma_larmor_toroidal_triton_profile459)_ 2.61180028168288805e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_460_____________________ (freq_plasma_larmor_toroidal_triton_profile460)_ 2.61001260181862898e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_461_____________________ (freq_plasma_larmor_toroidal_triton_profile461)_ 2.60822736748085991e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_462_____________________ (freq_plasma_larmor_toroidal_triton_profile462)_ 2.60644457365483008e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_463_____________________ (freq_plasma_larmor_toroidal_triton_profile463)_ 2.60466421533949226e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_464_____________________ (freq_plasma_larmor_toroidal_triton_profile464)_ 2.60288628754745163e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_465_____________________ (freq_plasma_larmor_toroidal_triton_profile465)_ 2.60111078530492261e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_466_____________________ (freq_plasma_larmor_toroidal_triton_profile466)_ 2.59933770365168154e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_467_____________________ (freq_plasma_larmor_toroidal_triton_profile467)_ 2.59756703764101975e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_468_____________________ (freq_plasma_larmor_toroidal_triton_profile468)_ 2.59579878233969845e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_469_____________________ (freq_plasma_larmor_toroidal_triton_profile469)_ 2.59403293282790296e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_470_____________________ (freq_plasma_larmor_toroidal_triton_profile470)_ 2.59226948419919573e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_471_____________________ (freq_plasma_larmor_toroidal_triton_profile471)_ 2.59050843156047352e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_472_____________________ (freq_plasma_larmor_toroidal_triton_profile472)_ 2.58874977003191933e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_473_____________________ (freq_plasma_larmor_toroidal_triton_profile473)_ 2.58699349474695884e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_474_____________________ (freq_plasma_larmor_toroidal_triton_profile474)_ 2.58523960085221529e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_475_____________________ (freq_plasma_larmor_toroidal_triton_profile475)_ 2.58348808350746408e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_476_____________________ (freq_plasma_larmor_toroidal_triton_profile476)_ 2.58173893788559027e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_477_____________________ (freq_plasma_larmor_toroidal_triton_profile477)_ 2.57999215917254202e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_478_____________________ (freq_plasma_larmor_toroidal_triton_profile478)_ 2.57824774256728627e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_479_____________________ (freq_plasma_larmor_toroidal_triton_profile479)_ 2.57650568328176811e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_480_____________________ (freq_plasma_larmor_toroidal_triton_profile480)_ 2.57476597654086202e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_481_____________________ (freq_plasma_larmor_toroidal_triton_profile481)_ 2.57302861758233234e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_482_____________________ (freq_plasma_larmor_toroidal_triton_profile482)_ 2.57129360165678822e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_483_____________________ (freq_plasma_larmor_toroidal_triton_profile483)_ 2.56956092402763925e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_484_____________________ (freq_plasma_larmor_toroidal_triton_profile484)_ 2.56783057997105494e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_485_____________________ (freq_plasma_larmor_toroidal_triton_profile485)_ 2.56610256477591954e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_486_____________________ (freq_plasma_larmor_toroidal_triton_profile486)_ 2.56437687374379039e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_487_____________________ (freq_plasma_larmor_toroidal_triton_profile487)_ 2.56265350218885541e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_488_____________________ (freq_plasma_larmor_toroidal_triton_profile488)_ 2.56093244543788880e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_489_____________________ (freq_plasma_larmor_toroidal_triton_profile489)_ 2.55921369883021265e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_490_____________________ (freq_plasma_larmor_toroidal_triton_profile490)_ 2.55749725771765038e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_491_____________________ (freq_plasma_larmor_toroidal_triton_profile491)_ 2.55578311746448837e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_492_____________________ (freq_plasma_larmor_toroidal_triton_profile492)_ 2.55407127344743274e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_493_____________________ (freq_plasma_larmor_toroidal_triton_profile493)_ 2.55236172105556689e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_494_____________________ (freq_plasma_larmor_toroidal_triton_profile494)_ 2.55065445569031239e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_495_____________________ (freq_plasma_larmor_toroidal_triton_profile495)_ 2.54894947276538573e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_496_____________________ (freq_plasma_larmor_toroidal_triton_profile496)_ 2.54724676770675816e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_497_____________________ (freq_plasma_larmor_toroidal_triton_profile497)_ 2.54554633595261499e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_498_____________________ (freq_plasma_larmor_toroidal_triton_profile498)_ 2.54384817295331359e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_499_____________________ (freq_plasma_larmor_toroidal_triton_profile499)_ 2.54215227417134456e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_500_____________________ (freq_plasma_larmor_toroidal_triton_profile500)_ 2.54045863508129008e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_501_____________________ (freq_plasma_larmor_toroidal_triton_profile501)_ 2.53876725116978474e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_502_____________________ (freq_plasma_larmor_toroidal_triton_profile502)_ 2.53707811793547384e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_503_____________________ (freq_plasma_larmor_toroidal_triton_profile503)_ 2.53539123088897392e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_504_____________________ (freq_plasma_larmor_toroidal_triton_profile504)_ 2.53370658555283584e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_505_____________________ (freq_plasma_larmor_toroidal_triton_profile505)_ 2.53202417746149823e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_506_____________________ (freq_plasma_larmor_toroidal_triton_profile506)_ 2.53034400216125846e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_507_____________________ (freq_plasma_larmor_toroidal_triton_profile507)_ 2.52866605521022342e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_508_____________________ (freq_plasma_larmor_toroidal_triton_profile508)_ 2.52699033217827491e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_509_____________________ (freq_plasma_larmor_toroidal_triton_profile509)_ 2.52531682864703089e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_510_____________________ (freq_plasma_larmor_toroidal_triton_profile510)_ 2.52364554020980597e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_511_____________________ (freq_plasma_larmor_toroidal_triton_profile511)_ 2.52197646247157194e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_512_____________________ (freq_plasma_larmor_toroidal_triton_profile512)_ 2.52030959104892053e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_513_____________________ (freq_plasma_larmor_toroidal_triton_profile513)_ 2.51864492157002427e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_514_____________________ (freq_plasma_larmor_toroidal_triton_profile514)_ 2.51698244967459850e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_515_____________________ (freq_plasma_larmor_toroidal_triton_profile515)_ 2.51532217101386376e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_516_____________________ (freq_plasma_larmor_toroidal_triton_profile516)_ 2.51366408125050552e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_517_____________________ (freq_plasma_larmor_toroidal_triton_profile517)_ 2.51200817605864108e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_518_____________________ (freq_plasma_larmor_toroidal_triton_profile518)_ 2.51035445112377666e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_519_____________________ (freq_plasma_larmor_toroidal_triton_profile519)_ 2.50870290214277469e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_520_____________________ (freq_plasma_larmor_toroidal_triton_profile520)_ 2.50705352482381091e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_521_____________________ (freq_plasma_larmor_toroidal_triton_profile521)_ 2.50540631488634534e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_522_____________________ (freq_plasma_larmor_toroidal_triton_profile522)_ 2.50376126806107461e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_523_____________________ (freq_plasma_larmor_toroidal_triton_profile523)_ 2.50211838008990660e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_524_____________________ (freq_plasma_larmor_toroidal_triton_profile524)_ 2.50047764672591276e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_525_____________________ (freq_plasma_larmor_toroidal_triton_profile525)_ 2.49883906373330094e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_526_____________________ (freq_plasma_larmor_toroidal_triton_profile526)_ 2.49720262688737214e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_527_____________________ (freq_plasma_larmor_toroidal_triton_profile527)_ 2.49556833197448738e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_528_____________________ (freq_plasma_larmor_toroidal_triton_profile528)_ 2.49393617479203194e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_529_____________________ (freq_plasma_larmor_toroidal_triton_profile529)_ 2.49230615114837699e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_530_____________________ (freq_plasma_larmor_toroidal_triton_profile530)_ 2.49067825686284527e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_531_____________________ (freq_plasma_larmor_toroidal_triton_profile531)_ 2.48905248776567690e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_532_____________________ (freq_plasma_larmor_toroidal_triton_profile532)_ 2.48742883969798870e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_533_____________________ (freq_plasma_larmor_toroidal_triton_profile533)_ 2.48580730851174481e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_534_____________________ (freq_plasma_larmor_toroidal_triton_profile534)_ 2.48418789006971791e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_535_____________________ (freq_plasma_larmor_toroidal_triton_profile535)_ 2.48257058024545386e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_536_____________________ (freq_plasma_larmor_toroidal_triton_profile536)_ 2.48095537492323816e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_537_____________________ (freq_plasma_larmor_toroidal_triton_profile537)_ 2.47934226999806054e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_538_____________________ (freq_plasma_larmor_toroidal_triton_profile538)_ 2.47773126137557961e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_539_____________________ (freq_plasma_larmor_toroidal_triton_profile539)_ 2.47612234497208931e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_540_____________________ (freq_plasma_larmor_toroidal_triton_profile540)_ 2.47451551671448201e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_541_____________________ (freq_plasma_larmor_toroidal_triton_profile541)_ 2.47291077254021876e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_542_____________________ (freq_plasma_larmor_toroidal_triton_profile542)_ 2.47130810839728899e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_543_____________________ (freq_plasma_larmor_toroidal_triton_profile543)_ 2.46970752024418153e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_544_____________________ (freq_plasma_larmor_toroidal_triton_profile544)_ 2.46810900404984951e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_545_____________________ (freq_plasma_larmor_toroidal_triton_profile545)_ 2.46651255579367168e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_546_____________________ (freq_plasma_larmor_toroidal_triton_profile546)_ 2.46491817146542817e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_547_____________________ (freq_plasma_larmor_toroidal_triton_profile547)_ 2.46332584706525616e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_548_____________________ (freq_plasma_larmor_toroidal_triton_profile548)_ 2.46173557860362604e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_549_____________________ (freq_plasma_larmor_toroidal_triton_profile549)_ 2.46014736210130081e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_550_____________________ (freq_plasma_larmor_toroidal_triton_profile550)_ 2.45856119358930811e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_551_____________________ (freq_plasma_larmor_toroidal_triton_profile551)_ 2.45697706910890266e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_552_____________________ (freq_plasma_larmor_toroidal_triton_profile552)_ 2.45539498471153677e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_553_____________________ (freq_plasma_larmor_toroidal_triton_profile553)_ 2.45381493645882681e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_554_____________________ (freq_plasma_larmor_toroidal_triton_profile554)_ 2.45223692042251900e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_555_____________________ (freq_plasma_larmor_toroidal_triton_profile555)_ 2.45066093268445805e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_556_____________________ (freq_plasma_larmor_toroidal_triton_profile556)_ 2.44908696933655553e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_557_____________________ (freq_plasma_larmor_toroidal_triton_profile557)_ 2.44751502648075521e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_558_____________________ (freq_plasma_larmor_toroidal_triton_profile558)_ 2.44594510022900365e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_559_____________________ (freq_plasma_larmor_toroidal_triton_profile559)_ 2.44437718670321591e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_560_____________________ (freq_plasma_larmor_toroidal_triton_profile560)_ 2.44281128203524500e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_561_____________________ (freq_plasma_larmor_toroidal_triton_profile561)_ 2.44124738236684836e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_562_____________________ (freq_plasma_larmor_toroidal_triton_profile562)_ 2.43968548384965919e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_563_____________________ (freq_plasma_larmor_toroidal_triton_profile563)_ 2.43812558264515176e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_564_____________________ (freq_plasma_larmor_toroidal_triton_profile564)_ 2.43656767492461093e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_565_____________________ (freq_plasma_larmor_toroidal_triton_profile565)_ 2.43501175686910450e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_566_____________________ (freq_plasma_larmor_toroidal_triton_profile566)_ 2.43345782466944233e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_567_____________________ (freq_plasma_larmor_toroidal_triton_profile567)_ 2.43190587452615909e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_568_____________________ (freq_plasma_larmor_toroidal_triton_profile568)_ 2.43035590264946893e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_569_____________________ (freq_plasma_larmor_toroidal_triton_profile569)_ 2.42880790525924638e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_570_____________________ (freq_plasma_larmor_toroidal_triton_profile570)_ 2.42726187858498842e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_571_____________________ (freq_plasma_larmor_toroidal_triton_profile571)_ 2.42571781886578687e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_572_____________________ (freq_plasma_larmor_toroidal_triton_profile572)_ 2.42417572235029638e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_573_____________________ (freq_plasma_larmor_toroidal_triton_profile573)_ 2.42263558529670723e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_574_____________________ (freq_plasma_larmor_toroidal_triton_profile574)_ 2.42109740397270918e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_575_____________________ (freq_plasma_larmor_toroidal_triton_profile575)_ 2.41956117465546727e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_576_____________________ (freq_plasma_larmor_toroidal_triton_profile576)_ 2.41802689363158941e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_577_____________________ (freq_plasma_larmor_toroidal_triton_profile577)_ 2.41649455719709545e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_578_____________________ (freq_plasma_larmor_toroidal_triton_profile578)_ 2.41496416165738851e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_579_____________________ (freq_plasma_larmor_toroidal_triton_profile579)_ 2.41343570332722589e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_580_____________________ (freq_plasma_larmor_toroidal_triton_profile580)_ 2.41190917853068747e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_581_____________________ (freq_plasma_larmor_toroidal_triton_profile581)_ 2.41038458360114880e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_582_____________________ (freq_plasma_larmor_toroidal_triton_profile582)_ 2.40886191488124914e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_583_____________________ (freq_plasma_larmor_toroidal_triton_profile583)_ 2.40734116872286461e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_584_____________________ (freq_plasma_larmor_toroidal_triton_profile584)_ 2.40582234148707688e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_585_____________________ (freq_plasma_larmor_toroidal_triton_profile585)_ 2.40430542954414673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_586_____________________ (freq_plasma_larmor_toroidal_triton_profile586)_ 2.40279042927348316e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_587_____________________ (freq_plasma_larmor_toroidal_triton_profile587)_ 2.40127733706361204e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_588_____________________ (freq_plasma_larmor_toroidal_triton_profile588)_ 2.39976614931215681e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_589_____________________ (freq_plasma_larmor_toroidal_triton_profile589)_ 2.39825686242579632e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_590_____________________ (freq_plasma_larmor_toroidal_triton_profile590)_ 2.39674947282024920e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_591_____________________ (freq_plasma_larmor_toroidal_triton_profile591)_ 2.39524397692023665e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_592_____________________ (freq_plasma_larmor_toroidal_triton_profile592)_ 2.39374037115945816e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_593_____________________ (freq_plasma_larmor_toroidal_triton_profile593)_ 2.39223865198056251e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_594_____________________ (freq_plasma_larmor_toroidal_triton_profile594)_ 2.39073881583512016e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_595_____________________ (freq_plasma_larmor_toroidal_triton_profile595)_ 2.38924085918359458e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_596_____________________ (freq_plasma_larmor_toroidal_triton_profile596)_ 2.38774477849531397e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_597_____________________ (freq_plasma_larmor_toroidal_triton_profile597)_ 2.38625057024844624e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_598_____________________ (freq_plasma_larmor_toroidal_triton_profile598)_ 2.38475823092996664e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_599_____________________ (freq_plasma_larmor_toroidal_triton_profile599)_ 2.38326775703563578e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_600_____________________ (freq_plasma_larmor_toroidal_triton_profile600)_ 2.38177914506996647e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_601_____________________ (freq_plasma_larmor_toroidal_triton_profile601)_ 2.38029239154620282e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_602_____________________ (freq_plasma_larmor_toroidal_triton_profile602)_ 2.37880749298628643e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_603_____________________ (freq_plasma_larmor_toroidal_triton_profile603)_ 2.37732444592083395e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_604_____________________ (freq_plasma_larmor_toroidal_triton_profile604)_ 2.37584324688910730e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_605_____________________ (freq_plasma_larmor_toroidal_triton_profile605)_ 2.37436389243898988e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_606_____________________ (freq_plasma_larmor_toroidal_triton_profile606)_ 2.37288637912695482e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_607_____________________ (freq_plasma_larmor_toroidal_triton_profile607)_ 2.37141070351804569e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_608_____________________ (freq_plasma_larmor_toroidal_triton_profile608)_ 2.36993686218583956e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_609_____________________ (freq_plasma_larmor_toroidal_triton_profile609)_ 2.36846485171243288e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_610_____________________ (freq_plasma_larmor_toroidal_triton_profile610)_ 2.36699466868840270e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_611_____________________ (freq_plasma_larmor_toroidal_triton_profile611)_ 2.36552630971278958e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_612_____________________ (freq_plasma_larmor_toroidal_triton_profile612)_ 2.36405977139306664e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_613_____________________ (freq_plasma_larmor_toroidal_triton_profile613)_ 2.36259505034511574e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_614_____________________ (freq_plasma_larmor_toroidal_triton_profile614)_ 2.36113214319319949e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_615_____________________ (freq_plasma_larmor_toroidal_triton_profile615)_ 2.35967104656993598e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_616_____________________ (freq_plasma_larmor_toroidal_triton_profile616)_ 2.35821175711627491e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_617_____________________ (freq_plasma_larmor_toroidal_triton_profile617)_ 2.35675427148146890e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_618_____________________ (freq_plasma_larmor_toroidal_triton_profile618)_ 2.35529858632304929e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_619_____________________ (freq_plasma_larmor_toroidal_triton_profile619)_ 2.35384469830680080e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_620_____________________ (freq_plasma_larmor_toroidal_triton_profile620)_ 2.35239260410673432e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_621_____________________ (freq_plasma_larmor_toroidal_triton_profile621)_ 2.35094230040506609e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_622_____________________ (freq_plasma_larmor_toroidal_triton_profile622)_ 2.34949378389218561e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_623_____________________ (freq_plasma_larmor_toroidal_triton_profile623)_ 2.34804705126663633e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_624_____________________ (freq_plasma_larmor_toroidal_triton_profile624)_ 2.34660209923508763e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_625_____________________ (freq_plasma_larmor_toroidal_triton_profile625)_ 2.34515892451231070e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_626_____________________ (freq_plasma_larmor_toroidal_triton_profile626)_ 2.34371752382115349e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_627_____________________ (freq_plasma_larmor_toroidal_triton_profile627)_ 2.34227789389251620e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_628_____________________ (freq_plasma_larmor_toroidal_triton_profile628)_ 2.34084003146532662e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_629_____________________ (freq_plasma_larmor_toroidal_triton_profile629)_ 2.33940393328651339e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_630_____________________ (freq_plasma_larmor_toroidal_triton_profile630)_ 2.33796959611098543e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_631_____________________ (freq_plasma_larmor_toroidal_triton_profile631)_ 2.33653701670160331e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_632_____________________ (freq_plasma_larmor_toroidal_triton_profile632)_ 2.33510619182915986e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_633_____________________ (freq_plasma_larmor_toroidal_triton_profile633)_ 2.33367711827234812e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_634_____________________ (freq_plasma_larmor_toroidal_triton_profile634)_ 2.33224979281774759e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_635_____________________ (freq_plasma_larmor_toroidal_triton_profile635)_ 2.33082421225978993e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_636_____________________ (freq_plasma_larmor_toroidal_triton_profile636)_ 2.32940037340074331e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_637_____________________ (freq_plasma_larmor_toroidal_triton_profile637)_ 2.32797827305068150e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_638_____________________ (freq_plasma_larmor_toroidal_triton_profile638)_ 2.32655790802746601e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_639_____________________ (freq_plasma_larmor_toroidal_triton_profile639)_ 2.32513927515671775e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_640_____________________ (freq_plasma_larmor_toroidal_triton_profile640)_ 2.32372237127179615e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_641_____________________ (freq_plasma_larmor_toroidal_triton_profile641)_ 2.32230719321377389e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_642_____________________ (freq_plasma_larmor_toroidal_triton_profile642)_ 2.32089373783141673e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_643_____________________ (freq_plasma_larmor_toroidal_triton_profile643)_ 2.31948200198115371e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_644_____________________ (freq_plasma_larmor_toroidal_triton_profile644)_ 2.31807198252706230e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_645_____________________ (freq_plasma_larmor_toroidal_triton_profile645)_ 2.31666367634083666e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_646_____________________ (freq_plasma_larmor_toroidal_triton_profile646)_ 2.31525708030177131e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_647_____________________ (freq_plasma_larmor_toroidal_triton_profile647)_ 2.31385219129673392e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_648_____________________ (freq_plasma_larmor_toroidal_triton_profile648)_ 2.31244900622014329e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_649_____________________ (freq_plasma_larmor_toroidal_triton_profile649)_ 2.31104752197394967e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_650_____________________ (freq_plasma_larmor_toroidal_triton_profile650)_ 2.30964773546760529e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_651_____________________ (freq_plasma_larmor_toroidal_triton_profile651)_ 2.30824964361804947e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_652_____________________ (freq_plasma_larmor_toroidal_triton_profile652)_ 2.30685324334967695e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_653_____________________ (freq_plasma_larmor_toroidal_triton_profile653)_ 2.30545853159432709e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_654_____________________ (freq_plasma_larmor_toroidal_triton_profile654)_ 2.30406550529124849e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_655_____________________ (freq_plasma_larmor_toroidal_triton_profile655)_ 2.30267416138708740e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_656_____________________ (freq_plasma_larmor_toroidal_triton_profile656)_ 2.30128449683585800e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_657_____________________ (freq_plasma_larmor_toroidal_triton_profile657)_ 2.29989650859892480e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_658_____________________ (freq_plasma_larmor_toroidal_triton_profile658)_ 2.29851019364497699e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_659_____________________ (freq_plasma_larmor_toroidal_triton_profile659)_ 2.29712554895001017e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_660_____________________ (freq_plasma_larmor_toroidal_triton_profile660)_ 2.29574257149730101e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_661_____________________ (freq_plasma_larmor_toroidal_triton_profile661)_ 2.29436125827738680e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_662_____________________ (freq_plasma_larmor_toroidal_triton_profile662)_ 2.29298160628804378e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_663_____________________ (freq_plasma_larmor_toroidal_triton_profile663)_ 2.29160361253426522e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_664_____________________ (freq_plasma_larmor_toroidal_triton_profile664)_ 2.29022727402823865e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_665_____________________ (freq_plasma_larmor_toroidal_triton_profile665)_ 2.28885258778932579e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_666_____________________ (freq_plasma_larmor_toroidal_triton_profile666)_ 2.28747955084404126e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_667_____________________ (freq_plasma_larmor_toroidal_triton_profile667)_ 2.28610816022602953e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_668_____________________ (freq_plasma_larmor_toroidal_triton_profile668)_ 2.28473841297604404e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_669_____________________ (freq_plasma_larmor_toroidal_triton_profile669)_ 2.28337030614192635e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_670_____________________ (freq_plasma_larmor_toroidal_triton_profile670)_ 2.28200383677858599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_671_____________________ (freq_plasma_larmor_toroidal_triton_profile671)_ 2.28063900194797628e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_672_____________________ (freq_plasma_larmor_toroidal_triton_profile672)_ 2.27927579871907793e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_673_____________________ (freq_plasma_larmor_toroidal_triton_profile673)_ 2.27791422416787148e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_674_____________________ (freq_plasma_larmor_toroidal_triton_profile674)_ 2.27655427537732385e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_675_____________________ (freq_plasma_larmor_toroidal_triton_profile675)_ 2.27519594943736047e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_676_____________________ (freq_plasma_larmor_toroidal_triton_profile676)_ 2.27383924344485216e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_677_____________________ (freq_plasma_larmor_toroidal_triton_profile677)_ 2.27248415450358540e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_678_____________________ (freq_plasma_larmor_toroidal_triton_profile678)_ 2.27113067972425073e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_679_____________________ (freq_plasma_larmor_toroidal_triton_profile679)_ 2.26977881622441486e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_680_____________________ (freq_plasma_larmor_toroidal_triton_profile680)_ 2.26842856112850532e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_681_____________________ (freq_plasma_larmor_toroidal_triton_profile681)_ 2.26707991156778671e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_682_____________________ (freq_plasma_larmor_toroidal_triton_profile682)_ 2.26573286468034275e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_683_____________________ (freq_plasma_larmor_toroidal_triton_profile683)_ 2.26438741761105508e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_684_____________________ (freq_plasma_larmor_toroidal_triton_profile684)_ 2.26304356751158275e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_685_____________________ (freq_plasma_larmor_toroidal_triton_profile685)_ 2.26170131154034212e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_686_____________________ (freq_plasma_larmor_toroidal_triton_profile686)_ 2.26036064686248787e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_687_____________________ (freq_plasma_larmor_toroidal_triton_profile687)_ 2.25902157064989172e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_688_____________________ (freq_plasma_larmor_toroidal_triton_profile688)_ 2.25768408008112349e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_689_____________________ (freq_plasma_larmor_toroidal_triton_profile689)_ 2.25634817234143019e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_690_____________________ (freq_plasma_larmor_toroidal_triton_profile690)_ 2.25501384462271854e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_691_____________________ (freq_plasma_larmor_toroidal_triton_profile691)_ 2.25368109412353262e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_692_____________________ (freq_plasma_larmor_toroidal_triton_profile692)_ 2.25234991804903522e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_693_____________________ (freq_plasma_larmor_toroidal_triton_profile693)_ 2.25102031361098997e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_694_____________________ (freq_plasma_larmor_toroidal_triton_profile694)_ 2.24969227802773826e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_695_____________________ (freq_plasma_larmor_toroidal_triton_profile695)_ 2.24836580852418467e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_696_____________________ (freq_plasma_larmor_toroidal_triton_profile696)_ 2.24704090233177170e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_697_____________________ (freq_plasma_larmor_toroidal_triton_profile697)_ 2.24571755668846667e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_698_____________________ (freq_plasma_larmor_toroidal_triton_profile698)_ 2.24439576883873865e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_699_____________________ (freq_plasma_larmor_toroidal_triton_profile699)_ 2.24307553603353910e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_700_____________________ (freq_plasma_larmor_toroidal_triton_profile700)_ 2.24175685553028621e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_701_____________________ (freq_plasma_larmor_toroidal_triton_profile701)_ 2.24043972459284179e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_702_____________________ (freq_plasma_larmor_toroidal_triton_profile702)_ 2.23912414049149565e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_703_____________________ (freq_plasma_larmor_toroidal_triton_profile703)_ 2.23781010050294437e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_704_____________________ (freq_plasma_larmor_toroidal_triton_profile704)_ 2.23649760191027410e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_705_____________________ (freq_plasma_larmor_toroidal_triton_profile705)_ 2.23518664200294055e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_706_____________________ (freq_plasma_larmor_toroidal_triton_profile706)_ 2.23387721807675250e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_707_____________________ (freq_plasma_larmor_toroidal_triton_profile707)_ 2.23256932743385062e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_708_____________________ (freq_plasma_larmor_toroidal_triton_profile708)_ 2.23126296738269031e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_709_____________________ (freq_plasma_larmor_toroidal_triton_profile709)_ 2.22995813523802161e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_710_____________________ (freq_plasma_larmor_toroidal_triton_profile710)_ 2.22865482832087502e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_711_____________________ (freq_plasma_larmor_toroidal_triton_profile711)_ 2.22735304395853803e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_712_____________________ (freq_plasma_larmor_toroidal_triton_profile712)_ 2.22605277948454022e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_713_____________________ (freq_plasma_larmor_toroidal_triton_profile713)_ 2.22475403223863244e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_714_____________________ (freq_plasma_larmor_toroidal_triton_profile714)_ 2.22345679956677370e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_715_____________________ (freq_plasma_larmor_toroidal_triton_profile715)_ 2.22216107882110514e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_716_____________________ (freq_plasma_larmor_toroidal_triton_profile716)_ 2.22086686735993996e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_717_____________________ (freq_plasma_larmor_toroidal_triton_profile717)_ 2.21957416254773960e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_718_____________________ (freq_plasma_larmor_toroidal_triton_profile718)_ 2.21828296175509952e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_719_____________________ (freq_plasma_larmor_toroidal_triton_profile719)_ 2.21699326235873066e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_720_____________________ (freq_plasma_larmor_toroidal_triton_profile720)_ 2.21570506174143888e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_721_____________________ (freq_plasma_larmor_toroidal_triton_profile721)_ 2.21441835729211196e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_722_____________________ (freq_plasma_larmor_toroidal_triton_profile722)_ 2.21313314640569724e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_723_____________________ (freq_plasma_larmor_toroidal_triton_profile723)_ 2.21184942648318820e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_724_____________________ (freq_plasma_larmor_toroidal_triton_profile724)_ 2.21056719493160360e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_725_____________________ (freq_plasma_larmor_toroidal_triton_profile725)_ 2.20928644916397296e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_726_____________________ (freq_plasma_larmor_toroidal_triton_profile726)_ 2.20800718659931496e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_727_____________________ (freq_plasma_larmor_toroidal_triton_profile727)_ 2.20672940466262586e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_728_____________________ (freq_plasma_larmor_toroidal_triton_profile728)_ 2.20545310078485683e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_729_____________________ (freq_plasma_larmor_toroidal_triton_profile729)_ 2.20417827240290008e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_730_____________________ (freq_plasma_larmor_toroidal_triton_profile730)_ 2.20290491695957109e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_731_____________________ (freq_plasma_larmor_toroidal_triton_profile731)_ 2.20163303190358952e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_732_____________________ (freq_plasma_larmor_toroidal_triton_profile732)_ 2.20036261468956545e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_733_____________________ (freq_plasma_larmor_toroidal_triton_profile733)_ 2.19909366277798004e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_734_____________________ (freq_plasma_larmor_toroidal_triton_profile734)_ 2.19782617363516800e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_735_____________________ (freq_plasma_larmor_toroidal_triton_profile735)_ 2.19656014473330490e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_736_____________________ (freq_plasma_larmor_toroidal_triton_profile736)_ 2.19529557355038337e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_737_____________________ (freq_plasma_larmor_toroidal_triton_profile737)_ 2.19403245757020563e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_738_____________________ (freq_plasma_larmor_toroidal_triton_profile738)_ 2.19277079428235590e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_739_____________________ (freq_plasma_larmor_toroidal_triton_profile739)_ 2.19151058118219338e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_740_____________________ (freq_plasma_larmor_toroidal_triton_profile740)_ 2.19025181577083133e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_741_____________________ (freq_plasma_larmor_toroidal_triton_profile741)_ 2.18899449555511884e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_742_____________________ (freq_plasma_larmor_toroidal_triton_profile742)_ 2.18773861804762855e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_743_____________________ (freq_plasma_larmor_toroidal_triton_profile743)_ 2.18648418076663837e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_744_____________________ (freq_plasma_larmor_toroidal_triton_profile744)_ 2.18523118123611286e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_745_____________________ (freq_plasma_larmor_toroidal_triton_profile745)_ 2.18397961698569134e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_746_____________________ (freq_plasma_larmor_toroidal_triton_profile746)_ 2.18272948555066772e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_747_____________________ (freq_plasma_larmor_toroidal_triton_profile747)_ 2.18148078447197787e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_748_____________________ (freq_plasma_larmor_toroidal_triton_profile748)_ 2.18023351129617915e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_749_____________________ (freq_plasma_larmor_toroidal_triton_profile749)_ 2.17898766357543804e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_750_____________________ (freq_plasma_larmor_toroidal_triton_profile750)_ 2.17774323886751384e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_751_____________________ (freq_plasma_larmor_toroidal_triton_profile751)_ 2.17650023473574072e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_752_____________________ (freq_plasma_larmor_toroidal_triton_profile752)_ 2.17525864874901138e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_753_____________________ (freq_plasma_larmor_toroidal_triton_profile753)_ 2.17401847848176546e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_754_____________________ (freq_plasma_larmor_toroidal_triton_profile754)_ 2.17277972151397020e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_755_____________________ (freq_plasma_larmor_toroidal_triton_profile755)_ 2.17154237543110251e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_756_____________________ (freq_plasma_larmor_toroidal_triton_profile756)_ 2.17030643782414198e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_757_____________________ (freq_plasma_larmor_toroidal_triton_profile757)_ 2.16907190628954321e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_758_____________________ (freq_plasma_larmor_toroidal_triton_profile758)_ 2.16783877842923105e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_759_____________________ (freq_plasma_larmor_toroidal_triton_profile759)_ 2.16660705185057744e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_760_____________________ (freq_plasma_larmor_toroidal_triton_profile760)_ 2.16537672416639253e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_761_____________________ (freq_plasma_larmor_toroidal_triton_profile761)_ 2.16414779299490154e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_762_____________________ (freq_plasma_larmor_toroidal_triton_profile762)_ 2.16292025595973767e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_763_____________________ (freq_plasma_larmor_toroidal_triton_profile763)_ 2.16169411068991870e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_764_____________________ (freq_plasma_larmor_toroidal_triton_profile764)_ 2.16046935481983982e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_765_____________________ (freq_plasma_larmor_toroidal_triton_profile765)_ 2.15924598598925062e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_766_____________________ (freq_plasma_larmor_toroidal_triton_profile766)_ 2.15802400184324645e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_767_____________________ (freq_plasma_larmor_toroidal_triton_profile767)_ 2.15680340003224947e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_768_____________________ (freq_plasma_larmor_toroidal_triton_profile768)_ 2.15558417821199410e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_769_____________________ (freq_plasma_larmor_toroidal_triton_profile769)_ 2.15436633404351249e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_770_____________________ (freq_plasma_larmor_toroidal_triton_profile770)_ 2.15314986519312076e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_771_____________________ (freq_plasma_larmor_toroidal_triton_profile771)_ 2.15193476933240257e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_772_____________________ (freq_plasma_larmor_toroidal_triton_profile772)_ 2.15072104413819350e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_773_____________________ (freq_plasma_larmor_toroidal_triton_profile773)_ 2.14950868729256913e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_774_____________________ (freq_plasma_larmor_toroidal_triton_profile774)_ 2.14829769648282602e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_775_____________________ (freq_plasma_larmor_toroidal_triton_profile775)_ 2.14708806940147355e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_776_____________________ (freq_plasma_larmor_toroidal_triton_profile776)_ 2.14587980374621078e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_777_____________________ (freq_plasma_larmor_toroidal_triton_profile777)_ 2.14467289721991941e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_778_____________________ (freq_plasma_larmor_toroidal_triton_profile778)_ 2.14346734753064439e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_779_____________________ (freq_plasma_larmor_toroidal_triton_profile779)_ 2.14226315239158273e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_780_____________________ (freq_plasma_larmor_toroidal_triton_profile780)_ 2.14106030952106491e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_781_____________________ (freq_plasma_larmor_toroidal_triton_profile781)_ 2.13985881664254628e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_782_____________________ (freq_plasma_larmor_toroidal_triton_profile782)_ 2.13865867148458622e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_783_____________________ (freq_plasma_larmor_toroidal_triton_profile783)_ 2.13745987178083919e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_784_____________________ (freq_plasma_larmor_toroidal_triton_profile784)_ 2.13626241527003720e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_785_____________________ (freq_plasma_larmor_toroidal_triton_profile785)_ 2.13506629969597794e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_786_____________________ (freq_plasma_larmor_toroidal_triton_profile786)_ 2.13387152280750796e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_787_____________________ (freq_plasma_larmor_toroidal_triton_profile787)_ 2.13267808235851042e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_788_____________________ (freq_plasma_larmor_toroidal_triton_profile788)_ 2.13148597610789090e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_789_____________________ (freq_plasma_larmor_toroidal_triton_profile789)_ 2.13029520181956291e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_790_____________________ (freq_plasma_larmor_toroidal_triton_profile790)_ 2.12910575726243295e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_791_____________________ (freq_plasma_larmor_toroidal_triton_profile791)_ 2.12791764021038897e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_792_____________________ (freq_plasma_larmor_toroidal_triton_profile792)_ 2.12673084844228476e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_793_____________________ (freq_plasma_larmor_toroidal_triton_profile793)_ 2.12554537974192686e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_794_____________________ (freq_plasma_larmor_toroidal_triton_profile794)_ 2.12436123189805970e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_795_____________________ (freq_plasma_larmor_toroidal_triton_profile795)_ 2.12317840270435214e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_796_____________________ (freq_plasma_larmor_toroidal_triton_profile796)_ 2.12199688995938636e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_797_____________________ (freq_plasma_larmor_toroidal_triton_profile797)_ 2.12081669146663882e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_798_____________________ (freq_plasma_larmor_toroidal_triton_profile798)_ 2.11963780503447317e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_799_____________________ (freq_plasma_larmor_toroidal_triton_profile799)_ 2.11846022847612016e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_800_____________________ (freq_plasma_larmor_toroidal_triton_profile800)_ 2.11728395960967094e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_801_____________________ (freq_plasma_larmor_toroidal_triton_profile801)_ 2.11610899625805579e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_802_____________________ (freq_plasma_larmor_toroidal_triton_profile802)_ 2.11493533624903932e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_803_____________________ (freq_plasma_larmor_toroidal_triton_profile803)_ 2.11376297741519772e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_804_____________________ (freq_plasma_larmor_toroidal_triton_profile804)_ 2.11259191759391539e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_805_____________________ (freq_plasma_larmor_toroidal_triton_profile805)_ 2.11142215462736264e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_806_____________________ (freq_plasma_larmor_toroidal_triton_profile806)_ 2.11025368636248894e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_807_____________________ (freq_plasma_larmor_toroidal_triton_profile807)_ 2.10908651065100469e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_808_____________________ (freq_plasma_larmor_toroidal_triton_profile808)_ 2.10792062534937374e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_809_____________________ (freq_plasma_larmor_toroidal_triton_profile809)_ 2.10675602831879407e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_810_____________________ (freq_plasma_larmor_toroidal_triton_profile810)_ 2.10559271742518917e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_811_____________________ (freq_plasma_larmor_toroidal_triton_profile811)_ 2.10443069053919278e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_812_____________________ (freq_plasma_larmor_toroidal_triton_profile812)_ 2.10326994553613774e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_813_____________________ (freq_plasma_larmor_toroidal_triton_profile813)_ 2.10211048029604033e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_814_____________________ (freq_plasma_larmor_toroidal_triton_profile814)_ 2.10095229270359091e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_815_____________________ (freq_plasma_larmor_toroidal_triton_profile815)_ 2.09979538064813763e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_816_____________________ (freq_plasma_larmor_toroidal_triton_profile816)_ 2.09863974202367477e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_817_____________________ (freq_plasma_larmor_toroidal_triton_profile817)_ 2.09748537472883277e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_818_____________________ (freq_plasma_larmor_toroidal_triton_profile818)_ 2.09633227666685879e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_819_____________________ (freq_plasma_larmor_toroidal_triton_profile819)_ 2.09518044574561380e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_820_____________________ (freq_plasma_larmor_toroidal_triton_profile820)_ 2.09402987987754904e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_821_____________________ (freq_plasma_larmor_toroidal_triton_profile821)_ 2.09288057697970197e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_822_____________________ (freq_plasma_larmor_toroidal_triton_profile822)_ 2.09173253497367911e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_823_____________________ (freq_plasma_larmor_toroidal_triton_profile823)_ 2.09058575178564563e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_824_____________________ (freq_plasma_larmor_toroidal_triton_profile824)_ 2.08944022534631044e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_825_____________________ (freq_plasma_larmor_toroidal_triton_profile825)_ 2.08829595359091908e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_826_____________________ (freq_plasma_larmor_toroidal_triton_profile826)_ 2.08715293445923217e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_827_____________________ (freq_plasma_larmor_toroidal_triton_profile827)_ 2.08601116589552350e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_828_____________________ (freq_plasma_larmor_toroidal_triton_profile828)_ 2.08487064584856033e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_829_____________________ (freq_plasma_larmor_toroidal_triton_profile829)_ 2.08373137227159403e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_830_____________________ (freq_plasma_larmor_toroidal_triton_profile830)_ 2.08259334312234707e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_831_____________________ (freq_plasma_larmor_toroidal_triton_profile831)_ 2.08145655636300035e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_832_____________________ (freq_plasma_larmor_toroidal_triton_profile832)_ 2.08032100996018425e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_833_____________________ (freq_plasma_larmor_toroidal_triton_profile833)_ 2.07918670188496038e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_834_____________________ (freq_plasma_larmor_toroidal_triton_profile834)_ 2.07805363011281565e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_835_____________________ (freq_plasma_larmor_toroidal_triton_profile835)_ 2.07692179262364767e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_836_____________________ (freq_plasma_larmor_toroidal_triton_profile836)_ 2.07579118740175143e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_837_____________________ (freq_plasma_larmor_toroidal_triton_profile837)_ 2.07466181243580915e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_838_____________________ (freq_plasma_larmor_toroidal_triton_profile838)_ 2.07353366571887806e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_839_____________________ (freq_plasma_larmor_toroidal_triton_profile839)_ 2.07240674524837844e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_840_____________________ (freq_plasma_larmor_toroidal_triton_profile840)_ 2.07128104902608246e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_841_____________________ (freq_plasma_larmor_toroidal_triton_profile841)_ 2.07015657505809814e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_842_____________________ (freq_plasma_larmor_toroidal_triton_profile842)_ 2.06903332135486566e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_843_____________________ (freq_plasma_larmor_toroidal_triton_profile843)_ 2.06791128593113683e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_844_____________________ (freq_plasma_larmor_toroidal_triton_profile844)_ 2.06679046680597141e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_845_____________________ (freq_plasma_larmor_toroidal_triton_profile845)_ 2.06567086200271770e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_846_____________________ (freq_plasma_larmor_toroidal_triton_profile846)_ 2.06455246954900771e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_847_____________________ (freq_plasma_larmor_toroidal_triton_profile847)_ 2.06343528747674078e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_848_____________________ (freq_plasma_larmor_toroidal_triton_profile848)_ 2.06231931382207535e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_849_____________________ (freq_plasma_larmor_toroidal_triton_profile849)_ 2.06120454662541449e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_850_____________________ (freq_plasma_larmor_toroidal_triton_profile850)_ 2.06009098393139765e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_851_____________________ (freq_plasma_larmor_toroidal_triton_profile851)_ 2.05897862378888577e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_852_____________________ (freq_plasma_larmor_toroidal_triton_profile852)_ 2.05786746425095350e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_853_____________________ (freq_plasma_larmor_toroidal_triton_profile853)_ 2.05675750337487422e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_854_____________________ (freq_plasma_larmor_toroidal_triton_profile854)_ 2.05564873922211155e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_855_____________________ (freq_plasma_larmor_toroidal_triton_profile855)_ 2.05454116985830665e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_856_____________________ (freq_plasma_larmor_toroidal_triton_profile856)_ 2.05343479335326701e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_857_____________________ (freq_plasma_larmor_toroidal_triton_profile857)_ 2.05232960778095685e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_858_____________________ (freq_plasma_larmor_toroidal_triton_profile858)_ 2.05122561121948212e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_859_____________________ (freq_plasma_larmor_toroidal_triton_profile859)_ 2.05012280175108463e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_860_____________________ (freq_plasma_larmor_toroidal_triton_profile860)_ 2.04902117746212594e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_861_____________________ (freq_plasma_larmor_toroidal_triton_profile861)_ 2.04792073644308150e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_862_____________________ (freq_plasma_larmor_toroidal_triton_profile862)_ 2.04682147678852193e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_863_____________________ (freq_plasma_larmor_toroidal_triton_profile863)_ 2.04572339659711234e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_864_____________________ (freq_plasma_larmor_toroidal_triton_profile864)_ 2.04462649397159070e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_865_____________________ (freq_plasma_larmor_toroidal_triton_profile865)_ 2.04353076701876633e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_866_____________________ (freq_plasma_larmor_toroidal_triton_profile866)_ 2.04243621384950019e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_867_____________________ (freq_plasma_larmor_toroidal_triton_profile867)_ 2.04134283257870302e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_868_____________________ (freq_plasma_larmor_toroidal_triton_profile868)_ 2.04025062132531665e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_869_____________________ (freq_plasma_larmor_toroidal_triton_profile869)_ 2.03915957821230888e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_870_____________________ (freq_plasma_larmor_toroidal_triton_profile870)_ 2.03806970136665776e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_871_____________________ (freq_plasma_larmor_toroidal_triton_profile871)_ 2.03698098891934678e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_872_____________________ (freq_plasma_larmor_toroidal_triton_profile872)_ 2.03589343900534809e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_873_____________________ (freq_plasma_larmor_toroidal_triton_profile873)_ 2.03480704976361655e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_874_____________________ (freq_plasma_larmor_toroidal_triton_profile874)_ 2.03372181933707558e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_875_____________________ (freq_plasma_larmor_toroidal_triton_profile875)_ 2.03263774587261043e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_876_____________________ (freq_plasma_larmor_toroidal_triton_profile876)_ 2.03155482752105333e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_877_____________________ (freq_plasma_larmor_toroidal_triton_profile877)_ 2.03047306243717633e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_878_____________________ (freq_plasma_larmor_toroidal_triton_profile878)_ 2.02939244877967909e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_879_____________________ (freq_plasma_larmor_toroidal_triton_profile879)_ 2.02831298471117914e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_880_____________________ (freq_plasma_larmor_toroidal_triton_profile880)_ 2.02723466839820147e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_881_____________________ (freq_plasma_larmor_toroidal_triton_profile881)_ 2.02615749801116697e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_882_____________________ (freq_plasma_larmor_toroidal_triton_profile882)_ 2.02508147172438540e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_883_____________________ (freq_plasma_larmor_toroidal_triton_profile883)_ 2.02400658771603853e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_884_____________________ (freq_plasma_larmor_toroidal_triton_profile884)_ 2.02293284416817874e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_885_____________________ (freq_plasma_larmor_toroidal_triton_profile885)_ 2.02186023926671073e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_886_____________________ (freq_plasma_larmor_toroidal_triton_profile886)_ 2.02078877120138705e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_887_____________________ (freq_plasma_larmor_toroidal_triton_profile887)_ 2.01971843816579282e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_888_____________________ (freq_plasma_larmor_toroidal_triton_profile888)_ 2.01864923835734092e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_889_____________________ (freq_plasma_larmor_toroidal_triton_profile889)_ 2.01758116997725740e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_890_____________________ (freq_plasma_larmor_toroidal_triton_profile890)_ 2.01651423123057522e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_891_____________________ (freq_plasma_larmor_toroidal_triton_profile891)_ 2.01544842032611892e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_892_____________________ (freq_plasma_larmor_toroidal_triton_profile892)_ 2.01438373547650129e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_893_____________________ (freq_plasma_larmor_toroidal_triton_profile893)_ 2.01332017489810809e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_894_____________________ (freq_plasma_larmor_toroidal_triton_profile894)_ 2.01225773681109063e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_895_____________________ (freq_plasma_larmor_toroidal_triton_profile895)_ 2.01119641943935528e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_896_____________________ (freq_plasma_larmor_toroidal_triton_profile896)_ 2.01013622101055197e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_897_____________________ (freq_plasma_larmor_toroidal_triton_profile897)_ 2.00907713975606784e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_898_____________________ (freq_plasma_larmor_toroidal_triton_profile898)_ 2.00801917391101494e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_899_____________________ (freq_plasma_larmor_toroidal_triton_profile899)_ 2.00696232171421945e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_900_____________________ (freq_plasma_larmor_toroidal_triton_profile900)_ 2.00590658140821494e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_901_____________________ (freq_plasma_larmor_toroidal_triton_profile901)_ 2.00485195123923123e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_902_____________________ (freq_plasma_larmor_toroidal_triton_profile902)_ 2.00379842945718169e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_903_____________________ (freq_plasma_larmor_toroidal_triton_profile903)_ 2.00274601431566030e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_904_____________________ (freq_plasma_larmor_toroidal_triton_profile904)_ 2.00169470407192484e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_905_____________________ (freq_plasma_larmor_toroidal_triton_profile905)_ 2.00064449698689245e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_906_____________________ (freq_plasma_larmor_toroidal_triton_profile906)_ 1.99959539132512696e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_907_____________________ (freq_plasma_larmor_toroidal_triton_profile907)_ 1.99854738535483070e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_908_____________________ (freq_plasma_larmor_toroidal_triton_profile908)_ 1.99750047734783515e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_909_____________________ (freq_plasma_larmor_toroidal_triton_profile909)_ 1.99645466557959020e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_910_____________________ (freq_plasma_larmor_toroidal_triton_profile910)_ 1.99540994832915589e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_911_____________________ (freq_plasma_larmor_toroidal_triton_profile911)_ 1.99436632387919314e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_912_____________________ (freq_plasma_larmor_toroidal_triton_profile912)_ 1.99332379051595256e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_913_____________________ (freq_plasma_larmor_toroidal_triton_profile913)_ 1.99228234652926698e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_914_____________________ (freq_plasma_larmor_toroidal_triton_profile914)_ 1.99124199021254145e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_915_____________________ (freq_plasma_larmor_toroidal_triton_profile915)_ 1.99020271986274384e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_916_____________________ (freq_plasma_larmor_toroidal_triton_profile916)_ 1.98916453378039487e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_917_____________________ (freq_plasma_larmor_toroidal_triton_profile917)_ 1.98812743026956059e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_918_____________________ (freq_plasma_larmor_toroidal_triton_profile918)_ 1.98709140763784125e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_919_____________________ (freq_plasma_larmor_toroidal_triton_profile919)_ 1.98605646419636309e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_920_____________________ (freq_plasma_larmor_toroidal_triton_profile920)_ 1.98502259825976975e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_921_____________________ (freq_plasma_larmor_toroidal_triton_profile921)_ 1.98398980814621076e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_922_____________________ (freq_plasma_larmor_toroidal_triton_profile922)_ 1.98295809217733592e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_923_____________________ (freq_plasma_larmor_toroidal_triton_profile923)_ 1.98192744867828265e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_924_____________________ (freq_plasma_larmor_toroidal_triton_profile924)_ 1.98089787597767152e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_925_____________________ (freq_plasma_larmor_toroidal_triton_profile925)_ 1.97986937240758911e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_926_____________________ (freq_plasma_larmor_toroidal_triton_profile926)_ 1.97884193630358949e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_927_____________________ (freq_plasma_larmor_toroidal_triton_profile927)_ 1.97781556600467674e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_928_____________________ (freq_plasma_larmor_toroidal_triton_profile928)_ 1.97679025985330082e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_929_____________________ (freq_plasma_larmor_toroidal_triton_profile929)_ 1.97576601619534567e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_930_____________________ (freq_plasma_larmor_toroidal_triton_profile930)_ 1.97474283338012286e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_931_____________________ (freq_plasma_larmor_toroidal_triton_profile931)_ 1.97372070976036079e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_932_____________________ (freq_plasma_larmor_toroidal_triton_profile932)_ 1.97269964369219765e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_933_____________________ (freq_plasma_larmor_toroidal_triton_profile933)_ 1.97167963353516906e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_934_____________________ (freq_plasma_larmor_toroidal_triton_profile934)_ 1.97066067765220515e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_935_____________________ (freq_plasma_larmor_toroidal_triton_profile935)_ 1.96964277440961599e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_936_____________________ (freq_plasma_larmor_toroidal_triton_profile936)_ 1.96862592217708677e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_937_____________________ (freq_plasma_larmor_toroidal_triton_profile937)_ 1.96761011932766587e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_938_____________________ (freq_plasma_larmor_toroidal_triton_profile938)_ 1.96659536423776001e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_939_____________________ (freq_plasma_larmor_toroidal_triton_profile939)_ 1.96558165528712235e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_940_____________________ (freq_plasma_larmor_toroidal_triton_profile940)_ 1.96456899085884430e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_941_____________________ (freq_plasma_larmor_toroidal_triton_profile941)_ 1.96355736933934987e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_942_____________________ (freq_plasma_larmor_toroidal_triton_profile942)_ 1.96254678911838233e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_943_____________________ (freq_plasma_larmor_toroidal_triton_profile943)_ 1.96153724858900085e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_944_____________________ (freq_plasma_larmor_toroidal_triton_profile944)_ 1.96052874614756666e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_945_____________________ (freq_plasma_larmor_toroidal_triton_profile945)_ 1.95952128019373976e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_946_____________________ (freq_plasma_larmor_toroidal_triton_profile946)_ 1.95851484913046584e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_947_____________________ (freq_plasma_larmor_toroidal_triton_profile947)_ 1.95750945136397220e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_948_____________________ (freq_plasma_larmor_toroidal_triton_profile948)_ 1.95650508530375399e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_949_____________________ (freq_plasma_larmor_toroidal_triton_profile949)_ 1.95550174936257303e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_950_____________________ (freq_plasma_larmor_toroidal_triton_profile950)_ 1.95449944195644110e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_951_____________________ (freq_plasma_larmor_toroidal_triton_profile951)_ 1.95349816150461957e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_952_____________________ (freq_plasma_larmor_toroidal_triton_profile952)_ 1.95249790642960407e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_953_____________________ (freq_plasma_larmor_toroidal_triton_profile953)_ 1.95149867515712269e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_954_____________________ (freq_plasma_larmor_toroidal_triton_profile954)_ 1.95050046611612104e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_955_____________________ (freq_plasma_larmor_toroidal_triton_profile955)_ 1.94950327773876116e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_956_____________________ (freq_plasma_larmor_toroidal_triton_profile956)_ 1.94850710846040696e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_957_____________________ (freq_plasma_larmor_toroidal_triton_profile957)_ 1.94751195671962053e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_958_____________________ (freq_plasma_larmor_toroidal_triton_profile958)_ 1.94651782095815055e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_959_____________________ (freq_plasma_larmor_toroidal_triton_profile959)_ 1.94552469962092713e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_960_____________________ (freq_plasma_larmor_toroidal_triton_profile960)_ 1.94453259115605131e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_961_____________________ (freq_plasma_larmor_toroidal_triton_profile961)_ 1.94354149401478954e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_962_____________________ (freq_plasma_larmor_toroidal_triton_profile962)_ 1.94255140665156282e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_963_____________________ (freq_plasma_larmor_toroidal_triton_profile963)_ 1.94156232752393968e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_964_____________________ (freq_plasma_larmor_toroidal_triton_profile964)_ 1.94057425509262979e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_965_____________________ (freq_plasma_larmor_toroidal_triton_profile965)_ 1.93958718782147355e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_966_____________________ (freq_plasma_larmor_toroidal_triton_profile966)_ 1.93860112417743653e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_967_____________________ (freq_plasma_larmor_toroidal_triton_profile967)_ 1.93761606263059787e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_968_____________________ (freq_plasma_larmor_toroidal_triton_profile968)_ 1.93663200165414773e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_969_____________________ (freq_plasma_larmor_toroidal_triton_profile969)_ 1.93564893972437382e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_970_____________________ (freq_plasma_larmor_toroidal_triton_profile970)_ 1.93466687532065809e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_971_____________________ (freq_plasma_larmor_toroidal_triton_profile971)_ 1.93368580692546479e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_972_____________________ (freq_plasma_larmor_toroidal_triton_profile972)_ 1.93270573302433714e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_973_____________________ (freq_plasma_larmor_toroidal_triton_profile973)_ 1.93172665210588500e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_974_____________________ (freq_plasma_larmor_toroidal_triton_profile974)_ 1.93074856266178079e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_975_____________________ (freq_plasma_larmor_toroidal_triton_profile975)_ 1.92977146318674944e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_976_____________________ (freq_plasma_larmor_toroidal_triton_profile976)_ 1.92879535217856206e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_977_____________________ (freq_plasma_larmor_toroidal_triton_profile977)_ 1.92782022813802660e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_978_____________________ (freq_plasma_larmor_toroidal_triton_profile978)_ 1.92684608956898302e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_979_____________________ (freq_plasma_larmor_toroidal_triton_profile979)_ 1.92587293497829139e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_980_____________________ (freq_plasma_larmor_toroidal_triton_profile980)_ 1.92490076287582926e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_981_____________________ (freq_plasma_larmor_toroidal_triton_profile981)_ 1.92392957177447900e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_982_____________________ (freq_plasma_larmor_toroidal_triton_profile982)_ 1.92295936019012481e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_983_____________________ (freq_plasma_larmor_toroidal_triton_profile983)_ 1.92199012664164156e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_984_____________________ (freq_plasma_larmor_toroidal_triton_profile984)_ 1.92102186965089031e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_985_____________________ (freq_plasma_larmor_toroidal_triton_profile985)_ 1.92005458774270751e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_986_____________________ (freq_plasma_larmor_toroidal_triton_profile986)_ 1.91908827944490016e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_987_____________________ (freq_plasma_larmor_toroidal_triton_profile987)_ 1.91812294328823797e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_988_____________________ (freq_plasma_larmor_toroidal_triton_profile988)_ 1.91715857780644409e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_989_____________________ (freq_plasma_larmor_toroidal_triton_profile989)_ 1.91619518153618947e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_990_____________________ (freq_plasma_larmor_toroidal_triton_profile990)_ 1.91523275301708542e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_991_____________________ (freq_plasma_larmor_toroidal_triton_profile991)_ 1.91427129079167545e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_992_____________________ (freq_plasma_larmor_toroidal_triton_profile992)_ 1.91331079340542741e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_993_____________________ (freq_plasma_larmor_toroidal_triton_profile993)_ 1.91235125940672904e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_994_____________________ (freq_plasma_larmor_toroidal_triton_profile994)_ 1.91139268734687567e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_995_____________________ (freq_plasma_larmor_toroidal_triton_profile995)_ 1.91043507578006908e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_996_____________________ (freq_plasma_larmor_toroidal_triton_profile996)_ 1.90947842326340340e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_997_____________________ (freq_plasma_larmor_toroidal_triton_profile997)_ 1.90852272835686579e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_998_____________________ (freq_plasma_larmor_toroidal_triton_profile998)_ 1.90756798962332010e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_999_____________________ (freq_plasma_larmor_toroidal_triton_profile999)_ 1.90661420562850870e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_1000____________________ (freq_plasma_larmor_toroidal_triton_profile1000)_ 1.90566137494103797e+07 -Plasma_triton_toroidal_Larmor_frequency_at_point_1001____________________ (freq_plasma_larmor_toroidal_triton_profile1001)_ 1.90470949613237642e+07 -Volume_averaged_electron_upper_hybrid_frequency_(ωₕ)_(Hz)________________ (freq_plasma_upper_hybrid_vol_avg)_ 1.61358047262937500e+11 -Plasma_upper_hybrid_frequency_at_point_0_________________________________ (freq_plasma_upper_hybrid_profile0)_ 2.16495345824955994e+11 -Plasma_upper_hybrid_frequency_at_point_1_________________________________ (freq_plasma_upper_hybrid_profile1)_ 2.16456136370953583e+11 -Plasma_upper_hybrid_frequency_at_point_2_________________________________ (freq_plasma_upper_hybrid_profile2)_ 2.16417524017701569e+11 -Plasma_upper_hybrid_frequency_at_point_3_________________________________ (freq_plasma_upper_hybrid_profile3)_ 2.16379506678443634e+11 -Plasma_upper_hybrid_frequency_at_point_4_________________________________ (freq_plasma_upper_hybrid_profile4)_ 2.16342082272003876e+11 -Plasma_upper_hybrid_frequency_at_point_5_________________________________ (freq_plasma_upper_hybrid_profile5)_ 2.16305248722777618e+11 -Plasma_upper_hybrid_frequency_at_point_6_________________________________ (freq_plasma_upper_hybrid_profile6)_ 2.16269003960722107e+11 -Plasma_upper_hybrid_frequency_at_point_7_________________________________ (freq_plasma_upper_hybrid_profile7)_ 2.16233345921347473e+11 -Plasma_upper_hybrid_frequency_at_point_8_________________________________ (freq_plasma_upper_hybrid_profile8)_ 2.16198272545707550e+11 -Plasma_upper_hybrid_frequency_at_point_9_________________________________ (freq_plasma_upper_hybrid_profile9)_ 2.16163781780390472e+11 -Plasma_upper_hybrid_frequency_at_point_10________________________________ (freq_plasma_upper_hybrid_profile10)_ 2.16129871577510132e+11 -Plasma_upper_hybrid_frequency_at_point_11________________________________ (freq_plasma_upper_hybrid_profile11)_ 2.16096539894696838e+11 -Plasma_upper_hybrid_frequency_at_point_12________________________________ (freq_plasma_upper_hybrid_profile12)_ 2.16063784695088562e+11 -Plasma_upper_hybrid_frequency_at_point_13________________________________ (freq_plasma_upper_hybrid_profile13)_ 2.16031603947322052e+11 -Plasma_upper_hybrid_frequency_at_point_14________________________________ (freq_plasma_upper_hybrid_profile14)_ 2.15999995625523712e+11 -Plasma_upper_hybrid_frequency_at_point_15________________________________ (freq_plasma_upper_hybrid_profile15)_ 2.15968957709301392e+11 -Plasma_upper_hybrid_frequency_at_point_16________________________________ (freq_plasma_upper_hybrid_profile16)_ 2.15938488183734924e+11 -Plasma_upper_hybrid_frequency_at_point_17________________________________ (freq_plasma_upper_hybrid_profile17)_ 2.15908585039368073e+11 -Plasma_upper_hybrid_frequency_at_point_18________________________________ (freq_plasma_upper_hybrid_profile18)_ 2.15879246272199310e+11 -Plasma_upper_hybrid_frequency_at_point_19________________________________ (freq_plasma_upper_hybrid_profile19)_ 2.15850469883673523e+11 -Plasma_upper_hybrid_frequency_at_point_20________________________________ (freq_plasma_upper_hybrid_profile20)_ 2.15822253880673340e+11 -Plasma_upper_hybrid_frequency_at_point_21________________________________ (freq_plasma_upper_hybrid_profile21)_ 2.15794596275510681e+11 -Plasma_upper_hybrid_frequency_at_point_22________________________________ (freq_plasma_upper_hybrid_profile22)_ 2.15767495085917877e+11 -Plasma_upper_hybrid_frequency_at_point_23________________________________ (freq_plasma_upper_hybrid_profile23)_ 2.15740948335039673e+11 -Plasma_upper_hybrid_frequency_at_point_24________________________________ (freq_plasma_upper_hybrid_profile24)_ 2.15714954051424438e+11 -Plasma_upper_hybrid_frequency_at_point_25________________________________ (freq_plasma_upper_hybrid_profile25)_ 2.15689510269015930e+11 -Plasma_upper_hybrid_frequency_at_point_26________________________________ (freq_plasma_upper_hybrid_profile26)_ 2.15664615027144745e+11 -Plasma_upper_hybrid_frequency_at_point_27________________________________ (freq_plasma_upper_hybrid_profile27)_ 2.15640266370520020e+11 -Plasma_upper_hybrid_frequency_at_point_28________________________________ (freq_plasma_upper_hybrid_profile28)_ 2.15616462349221405e+11 -Plasma_upper_hybrid_frequency_at_point_29________________________________ (freq_plasma_upper_hybrid_profile29)_ 2.15593201018690247e+11 -Plasma_upper_hybrid_frequency_at_point_30________________________________ (freq_plasma_upper_hybrid_profile30)_ 2.15570480439721649e+11 -Plasma_upper_hybrid_frequency_at_point_31________________________________ (freq_plasma_upper_hybrid_profile31)_ 2.15418994967509247e+11 -Plasma_upper_hybrid_frequency_at_point_32________________________________ (freq_plasma_upper_hybrid_profile32)_ 2.15267869608851868e+11 -Plasma_upper_hybrid_frequency_at_point_33________________________________ (freq_plasma_upper_hybrid_profile33)_ 2.15117103033987335e+11 -Plasma_upper_hybrid_frequency_at_point_34________________________________ (freq_plasma_upper_hybrid_profile34)_ 2.14966693917714539e+11 -Plasma_upper_hybrid_frequency_at_point_35________________________________ (freq_plasma_upper_hybrid_profile35)_ 2.14816640939373291e+11 -Plasma_upper_hybrid_frequency_at_point_36________________________________ (freq_plasma_upper_hybrid_profile36)_ 2.14666942782824127e+11 -Plasma_upper_hybrid_frequency_at_point_37________________________________ (freq_plasma_upper_hybrid_profile37)_ 2.14517598136427917e+11 -Plasma_upper_hybrid_frequency_at_point_38________________________________ (freq_plasma_upper_hybrid_profile38)_ 2.14368605693026154e+11 -Plasma_upper_hybrid_frequency_at_point_39________________________________ (freq_plasma_upper_hybrid_profile39)_ 2.14219964149920898e+11 -Plasma_upper_hybrid_frequency_at_point_40________________________________ (freq_plasma_upper_hybrid_profile40)_ 2.14071672208854828e+11 -Plasma_upper_hybrid_frequency_at_point_41________________________________ (freq_plasma_upper_hybrid_profile41)_ 2.13923728575991882e+11 -Plasma_upper_hybrid_frequency_at_point_42________________________________ (freq_plasma_upper_hybrid_profile42)_ 2.13776131961897247e+11 -Plasma_upper_hybrid_frequency_at_point_43________________________________ (freq_plasma_upper_hybrid_profile43)_ 2.13628881081518372e+11 -Plasma_upper_hybrid_frequency_at_point_44________________________________ (freq_plasma_upper_hybrid_profile44)_ 2.13481974654165039e+11 -Plasma_upper_hybrid_frequency_at_point_45________________________________ (freq_plasma_upper_hybrid_profile45)_ 2.13335411403490723e+11 -Plasma_upper_hybrid_frequency_at_point_46________________________________ (freq_plasma_upper_hybrid_profile46)_ 2.13189190057472900e+11 -Plasma_upper_hybrid_frequency_at_point_47________________________________ (freq_plasma_upper_hybrid_profile47)_ 2.13043309348394379e+11 -Plasma_upper_hybrid_frequency_at_point_48________________________________ (freq_plasma_upper_hybrid_profile48)_ 2.12897768012824097e+11 -Plasma_upper_hybrid_frequency_at_point_49________________________________ (freq_plasma_upper_hybrid_profile49)_ 2.12752564791598358e+11 -Plasma_upper_hybrid_frequency_at_point_50________________________________ (freq_plasma_upper_hybrid_profile50)_ 2.12607698429802338e+11 -Plasma_upper_hybrid_frequency_at_point_51________________________________ (freq_plasma_upper_hybrid_profile51)_ 2.12463167676750977e+11 -Plasma_upper_hybrid_frequency_at_point_52________________________________ (freq_plasma_upper_hybrid_profile52)_ 2.12318971285970856e+11 -Plasma_upper_hybrid_frequency_at_point_53________________________________ (freq_plasma_upper_hybrid_profile53)_ 2.12175108015181580e+11 -Plasma_upper_hybrid_frequency_at_point_54________________________________ (freq_plasma_upper_hybrid_profile54)_ 2.12031576626277527e+11 -Plasma_upper_hybrid_frequency_at_point_55________________________________ (freq_plasma_upper_hybrid_profile55)_ 2.11888375885309540e+11 -Plasma_upper_hybrid_frequency_at_point_56________________________________ (freq_plasma_upper_hybrid_profile56)_ 2.11745504562466858e+11 -Plasma_upper_hybrid_frequency_at_point_57________________________________ (freq_plasma_upper_hybrid_profile57)_ 2.11602961432059143e+11 -Plasma_upper_hybrid_frequency_at_point_58________________________________ (freq_plasma_upper_hybrid_profile58)_ 2.11460745272498322e+11 -Plasma_upper_hybrid_frequency_at_point_59________________________________ (freq_plasma_upper_hybrid_profile59)_ 2.11318854866280975e+11 -Plasma_upper_hybrid_frequency_at_point_60________________________________ (freq_plasma_upper_hybrid_profile60)_ 2.11177288999970551e+11 -Plasma_upper_hybrid_frequency_at_point_61________________________________ (freq_plasma_upper_hybrid_profile61)_ 2.11036046464179688e+11 -Plasma_upper_hybrid_frequency_at_point_62________________________________ (freq_plasma_upper_hybrid_profile62)_ 2.10895126053552643e+11 -Plasma_upper_hybrid_frequency_at_point_63________________________________ (freq_plasma_upper_hybrid_profile63)_ 2.10754526566747803e+11 -Plasma_upper_hybrid_frequency_at_point_64________________________________ (freq_plasma_upper_hybrid_profile64)_ 2.10614246806420532e+11 -Plasma_upper_hybrid_frequency_at_point_65________________________________ (freq_plasma_upper_hybrid_profile65)_ 2.10474285579205658e+11 -Plasma_upper_hybrid_frequency_at_point_66________________________________ (freq_plasma_upper_hybrid_profile66)_ 2.10334641695700409e+11 -Plasma_upper_hybrid_frequency_at_point_67________________________________ (freq_plasma_upper_hybrid_profile67)_ 2.10195313970447296e+11 -Plasma_upper_hybrid_frequency_at_point_68________________________________ (freq_plasma_upper_hybrid_profile68)_ 2.10056301221917267e+11 -Plasma_upper_hybrid_frequency_at_point_69________________________________ (freq_plasma_upper_hybrid_profile69)_ 2.09917602272492554e+11 -Plasma_upper_hybrid_frequency_at_point_70________________________________ (freq_plasma_upper_hybrid_profile70)_ 2.09779215948450043e+11 -Plasma_upper_hybrid_frequency_at_point_71________________________________ (freq_plasma_upper_hybrid_profile71)_ 2.09641141079944489e+11 -Plasma_upper_hybrid_frequency_at_point_72________________________________ (freq_plasma_upper_hybrid_profile72)_ 2.09503376500991974e+11 -Plasma_upper_hybrid_frequency_at_point_73________________________________ (freq_plasma_upper_hybrid_profile73)_ 2.09365921049453156e+11 -Plasma_upper_hybrid_frequency_at_point_74________________________________ (freq_plasma_upper_hybrid_profile74)_ 2.09228773567017120e+11 -Plasma_upper_hybrid_frequency_at_point_75________________________________ (freq_plasma_upper_hybrid_profile75)_ 2.09091932899184662e+11 -Plasma_upper_hybrid_frequency_at_point_76________________________________ (freq_plasma_upper_hybrid_profile76)_ 2.08955397895252350e+11 -Plasma_upper_hybrid_frequency_at_point_77________________________________ (freq_plasma_upper_hybrid_profile77)_ 2.08819167408295990e+11 -Plasma_upper_hybrid_frequency_at_point_78________________________________ (freq_plasma_upper_hybrid_profile78)_ 2.08683240295154877e+11 -Plasma_upper_hybrid_frequency_at_point_79________________________________ (freq_plasma_upper_hybrid_profile79)_ 2.08547615416415314e+11 -Plasma_upper_hybrid_frequency_at_point_80________________________________ (freq_plasma_upper_hybrid_profile80)_ 2.08412291636395172e+11 -Plasma_upper_hybrid_frequency_at_point_81________________________________ (freq_plasma_upper_hybrid_profile81)_ 2.08277267823127777e+11 -Plasma_upper_hybrid_frequency_at_point_82________________________________ (freq_plasma_upper_hybrid_profile82)_ 2.08142542848346039e+11 -Plasma_upper_hybrid_frequency_at_point_83________________________________ (freq_plasma_upper_hybrid_profile83)_ 2.08008115587466858e+11 -Plasma_upper_hybrid_frequency_at_point_84________________________________ (freq_plasma_upper_hybrid_profile84)_ 2.07873984919575653e+11 -Plasma_upper_hybrid_frequency_at_point_85________________________________ (freq_plasma_upper_hybrid_profile85)_ 2.07740149727410614e+11 -Plasma_upper_hybrid_frequency_at_point_86________________________________ (freq_plasma_upper_hybrid_profile86)_ 2.07606608897347473e+11 -Plasma_upper_hybrid_frequency_at_point_87________________________________ (freq_plasma_upper_hybrid_profile87)_ 2.07473361319383789e+11 -Plasma_upper_hybrid_frequency_at_point_88________________________________ (freq_plasma_upper_hybrid_profile88)_ 2.07340405887123993e+11 -Plasma_upper_hybrid_frequency_at_point_89________________________________ (freq_plasma_upper_hybrid_profile89)_ 2.07207741497764191e+11 -Plasma_upper_hybrid_frequency_at_point_90________________________________ (freq_plasma_upper_hybrid_profile90)_ 2.07075367052076721e+11 -Plasma_upper_hybrid_frequency_at_point_91________________________________ (freq_plasma_upper_hybrid_profile91)_ 2.06943281454395416e+11 -Plasma_upper_hybrid_frequency_at_point_92________________________________ (freq_plasma_upper_hybrid_profile92)_ 2.06811483612600342e+11 -Plasma_upper_hybrid_frequency_at_point_93________________________________ (freq_plasma_upper_hybrid_profile93)_ 2.06679972438103302e+11 -Plasma_upper_hybrid_frequency_at_point_94________________________________ (freq_plasma_upper_hybrid_profile94)_ 2.06548746845832611e+11 -Plasma_upper_hybrid_frequency_at_point_95________________________________ (freq_plasma_upper_hybrid_profile95)_ 2.06417805754218567e+11 -Plasma_upper_hybrid_frequency_at_point_96________________________________ (freq_plasma_upper_hybrid_profile96)_ 2.06287148085178680e+11 -Plasma_upper_hybrid_frequency_at_point_97________________________________ (freq_plasma_upper_hybrid_profile97)_ 2.06156772764103149e+11 -Plasma_upper_hybrid_frequency_at_point_98________________________________ (freq_plasma_upper_hybrid_profile98)_ 2.06026678719840393e+11 -Plasma_upper_hybrid_frequency_at_point_99________________________________ (freq_plasma_upper_hybrid_profile99)_ 2.05896864884682465e+11 -Plasma_upper_hybrid_frequency_at_point_100_______________________________ (freq_plasma_upper_hybrid_profile100)_ 2.05767330194350800e+11 -Plasma_upper_hybrid_frequency_at_point_101_______________________________ (freq_plasma_upper_hybrid_profile101)_ 2.05638073587981842e+11 -Plasma_upper_hybrid_frequency_at_point_102_______________________________ (freq_plasma_upper_hybrid_profile102)_ 2.05509094008112793e+11 -Plasma_upper_hybrid_frequency_at_point_103_______________________________ (freq_plasma_upper_hybrid_profile103)_ 2.05380390400667725e+11 -Plasma_upper_hybrid_frequency_at_point_104_______________________________ (freq_plasma_upper_hybrid_profile104)_ 2.05251961714942963e+11 -Plasma_upper_hybrid_frequency_at_point_105_______________________________ (freq_plasma_upper_hybrid_profile105)_ 2.05123806903593658e+11 -Plasma_upper_hybrid_frequency_at_point_106_______________________________ (freq_plasma_upper_hybrid_profile106)_ 2.04995924922619507e+11 -Plasma_upper_hybrid_frequency_at_point_107_______________________________ (freq_plasma_upper_hybrid_profile107)_ 2.04868314731351013e+11 -Plasma_upper_hybrid_frequency_at_point_108_______________________________ (freq_plasma_upper_hybrid_profile108)_ 2.04740975292435516e+11 -Plasma_upper_hybrid_frequency_at_point_109_______________________________ (freq_plasma_upper_hybrid_profile109)_ 2.04613905571823761e+11 -Plasma_upper_hybrid_frequency_at_point_110_______________________________ (freq_plasma_upper_hybrid_profile110)_ 2.04487104538755829e+11 -Plasma_upper_hybrid_frequency_at_point_111_______________________________ (freq_plasma_upper_hybrid_profile111)_ 2.04360571165748047e+11 -Plasma_upper_hybrid_frequency_at_point_112_______________________________ (freq_plasma_upper_hybrid_profile112)_ 2.04234304428579010e+11 -Plasma_upper_hybrid_frequency_at_point_113_______________________________ (freq_plasma_upper_hybrid_profile113)_ 2.04108303306276398e+11 -Plasma_upper_hybrid_frequency_at_point_114_______________________________ (freq_plasma_upper_hybrid_profile114)_ 2.03982566781103455e+11 -Plasma_upper_hybrid_frequency_at_point_115_______________________________ (freq_plasma_upper_hybrid_profile115)_ 2.03857093838545715e+11 -Plasma_upper_hybrid_frequency_at_point_116_______________________________ (freq_plasma_upper_hybrid_profile116)_ 2.03731883467297791e+11 -Plasma_upper_hybrid_frequency_at_point_117_______________________________ (freq_plasma_upper_hybrid_profile117)_ 2.03606934659250061e+11 -Plasma_upper_hybrid_frequency_at_point_118_______________________________ (freq_plasma_upper_hybrid_profile118)_ 2.03482246409475677e+11 -Plasma_upper_hybrid_frequency_at_point_119_______________________________ (freq_plasma_upper_hybrid_profile119)_ 2.03357817716217468e+11 -Plasma_upper_hybrid_frequency_at_point_120_______________________________ (freq_plasma_upper_hybrid_profile120)_ 2.03233647580874786e+11 -Plasma_upper_hybrid_frequency_at_point_121_______________________________ (freq_plasma_upper_hybrid_profile121)_ 2.03109735007990814e+11 -Plasma_upper_hybrid_frequency_at_point_122_______________________________ (freq_plasma_upper_hybrid_profile122)_ 2.02986079005239685e+11 -Plasma_upper_hybrid_frequency_at_point_123_______________________________ (freq_plasma_upper_hybrid_profile123)_ 2.02862678583413330e+11 -Plasma_upper_hybrid_frequency_at_point_124_______________________________ (freq_plasma_upper_hybrid_profile124)_ 2.02739532756409241e+11 -Plasma_upper_hybrid_frequency_at_point_125_______________________________ (freq_plasma_upper_hybrid_profile125)_ 2.02616640541217468e+11 -Plasma_upper_hybrid_frequency_at_point_126_______________________________ (freq_plasma_upper_hybrid_profile126)_ 2.02494000957908020e+11 -Plasma_upper_hybrid_frequency_at_point_127_______________________________ (freq_plasma_upper_hybrid_profile127)_ 2.02371613029618469e+11 -Plasma_upper_hybrid_frequency_at_point_128_______________________________ (freq_plasma_upper_hybrid_profile128)_ 2.02249475782541229e+11 -Plasma_upper_hybrid_frequency_at_point_129_______________________________ (freq_plasma_upper_hybrid_profile129)_ 2.02127588245911377e+11 -Plasma_upper_hybrid_frequency_at_point_130_______________________________ (freq_plasma_upper_hybrid_profile130)_ 2.02005949451994110e+11 -Plasma_upper_hybrid_frequency_at_point_131_______________________________ (freq_plasma_upper_hybrid_profile131)_ 2.01884558436072418e+11 -Plasma_upper_hybrid_frequency_at_point_132_______________________________ (freq_plasma_upper_hybrid_profile132)_ 2.01763414236435059e+11 -Plasma_upper_hybrid_frequency_at_point_133_______________________________ (freq_plasma_upper_hybrid_profile133)_ 2.01642515894363953e+11 -Plasma_upper_hybrid_frequency_at_point_134_______________________________ (freq_plasma_upper_hybrid_profile134)_ 2.01521862454122559e+11 -Plasma_upper_hybrid_frequency_at_point_135_______________________________ (freq_plasma_upper_hybrid_profile135)_ 2.01401452962943298e+11 -Plasma_upper_hybrid_frequency_at_point_136_______________________________ (freq_plasma_upper_hybrid_profile136)_ 2.01281286471015930e+11 -Plasma_upper_hybrid_frequency_at_point_137_______________________________ (freq_plasma_upper_hybrid_profile137)_ 2.01161362031475464e+11 -Plasma_upper_hybrid_frequency_at_point_138_______________________________ (freq_plasma_upper_hybrid_profile138)_ 2.01041678700390137e+11 -Plasma_upper_hybrid_frequency_at_point_139_______________________________ (freq_plasma_upper_hybrid_profile139)_ 2.00922235536749634e+11 -Plasma_upper_hybrid_frequency_at_point_140_______________________________ (freq_plasma_upper_hybrid_profile140)_ 2.00803031602453339e+11 -Plasma_upper_hybrid_frequency_at_point_141_______________________________ (freq_plasma_upper_hybrid_profile141)_ 2.00684065962298798e+11 -Plasma_upper_hybrid_frequency_at_point_142_______________________________ (freq_plasma_upper_hybrid_profile142)_ 2.00565337683969574e+11 -Plasma_upper_hybrid_frequency_at_point_143_______________________________ (freq_plasma_upper_hybrid_profile143)_ 2.00446845838024048e+11 -Plasma_upper_hybrid_frequency_at_point_144_______________________________ (freq_plasma_upper_hybrid_profile144)_ 2.00328589497883545e+11 -Plasma_upper_hybrid_frequency_at_point_145_______________________________ (freq_plasma_upper_hybrid_profile145)_ 2.00210567739821289e+11 -Plasma_upper_hybrid_frequency_at_point_146_______________________________ (freq_plasma_upper_hybrid_profile146)_ 2.00092779642950409e+11 -Plasma_upper_hybrid_frequency_at_point_147_______________________________ (freq_plasma_upper_hybrid_profile147)_ 1.99975224289212677e+11 -Plasma_upper_hybrid_frequency_at_point_148_______________________________ (freq_plasma_upper_hybrid_profile148)_ 1.99857900763367462e+11 -Plasma_upper_hybrid_frequency_at_point_149_______________________________ (freq_plasma_upper_hybrid_profile149)_ 1.99740808152980194e+11 -Plasma_upper_hybrid_frequency_at_point_150_______________________________ (freq_plasma_upper_hybrid_profile150)_ 1.99623945548411102e+11 -Plasma_upper_hybrid_frequency_at_point_151_______________________________ (freq_plasma_upper_hybrid_profile151)_ 1.99507312042804077e+11 -Plasma_upper_hybrid_frequency_at_point_152_______________________________ (freq_plasma_upper_hybrid_profile152)_ 1.99390906732075653e+11 -Plasma_upper_hybrid_frequency_at_point_153_______________________________ (freq_plasma_upper_hybrid_profile153)_ 1.99274728714903656e+11 -Plasma_upper_hybrid_frequency_at_point_154_______________________________ (freq_plasma_upper_hybrid_profile154)_ 1.99158777092716492e+11 -Plasma_upper_hybrid_frequency_at_point_155_______________________________ (freq_plasma_upper_hybrid_profile155)_ 1.99043050969682007e+11 -Plasma_upper_hybrid_frequency_at_point_156_______________________________ (freq_plasma_upper_hybrid_profile156)_ 1.98927549452696320e+11 -Plasma_upper_hybrid_frequency_at_point_157_______________________________ (freq_plasma_upper_hybrid_profile157)_ 1.98812271651373657e+11 -Plasma_upper_hybrid_frequency_at_point_158_______________________________ (freq_plasma_upper_hybrid_profile158)_ 1.98697216678034698e+11 -Plasma_upper_hybrid_frequency_at_point_159_______________________________ (freq_plasma_upper_hybrid_profile159)_ 1.98582383647696259e+11 -Plasma_upper_hybrid_frequency_at_point_160_______________________________ (freq_plasma_upper_hybrid_profile160)_ 1.98467771678060547e+11 -Plasma_upper_hybrid_frequency_at_point_161_______________________________ (freq_plasma_upper_hybrid_profile161)_ 1.98353379889504303e+11 -Plasma_upper_hybrid_frequency_at_point_162_______________________________ (freq_plasma_upper_hybrid_profile162)_ 1.98239207405068420e+11 -Plasma_upper_hybrid_frequency_at_point_163_______________________________ (freq_plasma_upper_hybrid_profile163)_ 1.98125253350447205e+11 -Plasma_upper_hybrid_frequency_at_point_164_______________________________ (freq_plasma_upper_hybrid_profile164)_ 1.98011516853977814e+11 -Plasma_upper_hybrid_frequency_at_point_165_______________________________ (freq_plasma_upper_hybrid_profile165)_ 1.97897997046629822e+11 -Plasma_upper_hybrid_frequency_at_point_166_______________________________ (freq_plasma_upper_hybrid_profile166)_ 1.97784693061995026e+11 -Plasma_upper_hybrid_frequency_at_point_167_______________________________ (freq_plasma_upper_hybrid_profile167)_ 1.97671604036276642e+11 -Plasma_upper_hybrid_frequency_at_point_168_______________________________ (freq_plasma_upper_hybrid_profile168)_ 1.97558729108279175e+11 -Plasma_upper_hybrid_frequency_at_point_169_______________________________ (freq_plasma_upper_hybrid_profile169)_ 1.97446067419398285e+11 -Plasma_upper_hybrid_frequency_at_point_170_______________________________ (freq_plasma_upper_hybrid_profile170)_ 1.97333618113610291e+11 -Plasma_upper_hybrid_frequency_at_point_171_______________________________ (freq_plasma_upper_hybrid_profile171)_ 1.97221380337462097e+11 -Plasma_upper_hybrid_frequency_at_point_172_______________________________ (freq_plasma_upper_hybrid_profile172)_ 1.97109353240060913e+11 -Plasma_upper_hybrid_frequency_at_point_173_______________________________ (freq_plasma_upper_hybrid_profile173)_ 1.96997535973064575e+11 -Plasma_upper_hybrid_frequency_at_point_174_______________________________ (freq_plasma_upper_hybrid_profile174)_ 1.96885927690670837e+11 -Plasma_upper_hybrid_frequency_at_point_175_______________________________ (freq_plasma_upper_hybrid_profile175)_ 1.96774527549607910e+11 -Plasma_upper_hybrid_frequency_at_point_176_______________________________ (freq_plasma_upper_hybrid_profile176)_ 1.96663334709124207e+11 -Plasma_upper_hybrid_frequency_at_point_177_______________________________ (freq_plasma_upper_hybrid_profile177)_ 1.96552348330978607e+11 -Plasma_upper_hybrid_frequency_at_point_178_______________________________ (freq_plasma_upper_hybrid_profile178)_ 1.96441567579430328e+11 -Plasma_upper_hybrid_frequency_at_point_179_______________________________ (freq_plasma_upper_hybrid_profile179)_ 1.96330991621229340e+11 -Plasma_upper_hybrid_frequency_at_point_180_______________________________ (freq_plasma_upper_hybrid_profile180)_ 1.96220619625606537e+11 -Plasma_upper_hybrid_frequency_at_point_181_______________________________ (freq_plasma_upper_hybrid_profile181)_ 1.96110450764263855e+11 -Plasma_upper_hybrid_frequency_at_point_182_______________________________ (freq_plasma_upper_hybrid_profile182)_ 1.96000484211364746e+11 -Plasma_upper_hybrid_frequency_at_point_183_______________________________ (freq_plasma_upper_hybrid_profile183)_ 1.95890719143524292e+11 -Plasma_upper_hybrid_frequency_at_point_184_______________________________ (freq_plasma_upper_hybrid_profile184)_ 1.95781154739799896e+11 -Plasma_upper_hybrid_frequency_at_point_185_______________________________ (freq_plasma_upper_hybrid_profile185)_ 1.95671790181681488e+11 -Plasma_upper_hybrid_frequency_at_point_186_______________________________ (freq_plasma_upper_hybrid_profile186)_ 1.95562624653082062e+11 -Plasma_upper_hybrid_frequency_at_point_187_______________________________ (freq_plasma_upper_hybrid_profile187)_ 1.95453657340328247e+11 -Plasma_upper_hybrid_frequency_at_point_188_______________________________ (freq_plasma_upper_hybrid_profile188)_ 1.95344887432150757e+11 -Plasma_upper_hybrid_frequency_at_point_189_______________________________ (freq_plasma_upper_hybrid_profile189)_ 1.95236314119674988e+11 -Plasma_upper_hybrid_frequency_at_point_190_______________________________ (freq_plasma_upper_hybrid_profile190)_ 1.95127936596411926e+11 -Plasma_upper_hybrid_frequency_at_point_191_______________________________ (freq_plasma_upper_hybrid_profile191)_ 1.95019754058248322e+11 -Plasma_upper_hybrid_frequency_at_point_192_______________________________ (freq_plasma_upper_hybrid_profile192)_ 1.94911765703438080e+11 -Plasma_upper_hybrid_frequency_at_point_193_______________________________ (freq_plasma_upper_hybrid_profile193)_ 1.94803970732592255e+11 -Plasma_upper_hybrid_frequency_at_point_194_______________________________ (freq_plasma_upper_hybrid_profile194)_ 1.94696368348670593e+11 -Plasma_upper_hybrid_frequency_at_point_195_______________________________ (freq_plasma_upper_hybrid_profile195)_ 1.94588957756971832e+11 -Plasma_upper_hybrid_frequency_at_point_196_______________________________ (freq_plasma_upper_hybrid_profile196)_ 1.94481738165124847e+11 -Plasma_upper_hybrid_frequency_at_point_197_______________________________ (freq_plasma_upper_hybrid_profile197)_ 1.94374708783079590e+11 -Plasma_upper_hybrid_frequency_at_point_198_______________________________ (freq_plasma_upper_hybrid_profile198)_ 1.94267868823097870e+11 -Plasma_upper_hybrid_frequency_at_point_199_______________________________ (freq_plasma_upper_hybrid_profile199)_ 1.94161217499744568e+11 -Plasma_upper_hybrid_frequency_at_point_200_______________________________ (freq_plasma_upper_hybrid_profile200)_ 1.94054754029878632e+11 -Plasma_upper_hybrid_frequency_at_point_201_______________________________ (freq_plasma_upper_hybrid_profile201)_ 1.93948477632643921e+11 -Plasma_upper_hybrid_frequency_at_point_202_______________________________ (freq_plasma_upper_hybrid_profile202)_ 1.93842387529460663e+11 -Plasma_upper_hybrid_frequency_at_point_203_______________________________ (freq_plasma_upper_hybrid_profile203)_ 1.93736482944016479e+11 -Plasma_upper_hybrid_frequency_at_point_204_______________________________ (freq_plasma_upper_hybrid_profile204)_ 1.93630763102257446e+11 -Plasma_upper_hybrid_frequency_at_point_205_______________________________ (freq_plasma_upper_hybrid_profile205)_ 1.93525227232379639e+11 -Plasma_upper_hybrid_frequency_at_point_206_______________________________ (freq_plasma_upper_hybrid_profile206)_ 1.93419874564820007e+11 -Plasma_upper_hybrid_frequency_at_point_207_______________________________ (freq_plasma_upper_hybrid_profile207)_ 1.93314704332248077e+11 -Plasma_upper_hybrid_frequency_at_point_208_______________________________ (freq_plasma_upper_hybrid_profile208)_ 1.93209715769557068e+11 -Plasma_upper_hybrid_frequency_at_point_209_______________________________ (freq_plasma_upper_hybrid_profile209)_ 1.93104908113855255e+11 -Plasma_upper_hybrid_frequency_at_point_210_______________________________ (freq_plasma_upper_hybrid_profile210)_ 1.93000280604457550e+11 -Plasma_upper_hybrid_frequency_at_point_211_______________________________ (freq_plasma_upper_hybrid_profile211)_ 1.92895832482876831e+11 -Plasma_upper_hybrid_frequency_at_point_212_______________________________ (freq_plasma_upper_hybrid_profile212)_ 1.92791562992815491e+11 -Plasma_upper_hybrid_frequency_at_point_213_______________________________ (freq_plasma_upper_hybrid_profile213)_ 1.92687471380156982e+11 -Plasma_upper_hybrid_frequency_at_point_214_______________________________ (freq_plasma_upper_hybrid_profile214)_ 1.92583556892957306e+11 -Plasma_upper_hybrid_frequency_at_point_215_______________________________ (freq_plasma_upper_hybrid_profile215)_ 1.92479818781436798e+11 -Plasma_upper_hybrid_frequency_at_point_216_______________________________ (freq_plasma_upper_hybrid_profile216)_ 1.92376256297971405e+11 -Plasma_upper_hybrid_frequency_at_point_217_______________________________ (freq_plasma_upper_hybrid_profile217)_ 1.92272868697084747e+11 -Plasma_upper_hybrid_frequency_at_point_218_______________________________ (freq_plasma_upper_hybrid_profile218)_ 1.92169655235439697e+11 -Plasma_upper_hybrid_frequency_at_point_219_______________________________ (freq_plasma_upper_hybrid_profile219)_ 1.92066615171830048e+11 -Plasma_upper_hybrid_frequency_at_point_220_______________________________ (freq_plasma_upper_hybrid_profile220)_ 1.91963747767172241e+11 -Plasma_upper_hybrid_frequency_at_point_221_______________________________ (freq_plasma_upper_hybrid_profile221)_ 1.91861052284497467e+11 -Plasma_upper_hybrid_frequency_at_point_222_______________________________ (freq_plasma_upper_hybrid_profile222)_ 1.91758527988943146e+11 -Plasma_upper_hybrid_frequency_at_point_223_______________________________ (freq_plasma_upper_hybrid_profile223)_ 1.91656174147745178e+11 -Plasma_upper_hybrid_frequency_at_point_224_______________________________ (freq_plasma_upper_hybrid_profile224)_ 1.91553990030229462e+11 -Plasma_upper_hybrid_frequency_at_point_225_______________________________ (freq_plasma_upper_hybrid_profile225)_ 1.91451974907804199e+11 -Plasma_upper_hybrid_frequency_at_point_226_______________________________ (freq_plasma_upper_hybrid_profile226)_ 1.91350128053951538e+11 -Plasma_upper_hybrid_frequency_at_point_227_______________________________ (freq_plasma_upper_hybrid_profile227)_ 1.91248448744220032e+11 -Plasma_upper_hybrid_frequency_at_point_228_______________________________ (freq_plasma_upper_hybrid_profile228)_ 1.91146936256216217e+11 -Plasma_upper_hybrid_frequency_at_point_229_______________________________ (freq_plasma_upper_hybrid_profile229)_ 1.91045589869597107e+11 -Plasma_upper_hybrid_frequency_at_point_230_______________________________ (freq_plasma_upper_hybrid_profile230)_ 1.90944408866061890e+11 -Plasma_upper_hybrid_frequency_at_point_231_______________________________ (freq_plasma_upper_hybrid_profile231)_ 1.90843392529344452e+11 -Plasma_upper_hybrid_frequency_at_point_232_______________________________ (freq_plasma_upper_hybrid_profile232)_ 1.90742540145205292e+11 -Plasma_upper_hybrid_frequency_at_point_233_______________________________ (freq_plasma_upper_hybrid_profile233)_ 1.90641851001423981e+11 -Plasma_upper_hybrid_frequency_at_point_234_______________________________ (freq_plasma_upper_hybrid_profile234)_ 1.90541324387791107e+11 -Plasma_upper_hybrid_frequency_at_point_235_______________________________ (freq_plasma_upper_hybrid_profile235)_ 1.90440959596100861e+11 -Plasma_upper_hybrid_frequency_at_point_236_______________________________ (freq_plasma_upper_hybrid_profile236)_ 1.90340755920143036e+11 -Plasma_upper_hybrid_frequency_at_point_237_______________________________ (freq_plasma_upper_hybrid_profile237)_ 1.90240712655695679e+11 -Plasma_upper_hybrid_frequency_at_point_238_______________________________ (freq_plasma_upper_hybrid_profile238)_ 1.90140829100517151e+11 -Plasma_upper_hybrid_frequency_at_point_239_______________________________ (freq_plasma_upper_hybrid_profile239)_ 1.90041104554338776e+11 -Plasma_upper_hybrid_frequency_at_point_240_______________________________ (freq_plasma_upper_hybrid_profile240)_ 1.89941538318857117e+11 -Plasma_upper_hybrid_frequency_at_point_241_______________________________ (freq_plasma_upper_hybrid_profile241)_ 1.89842129697726624e+11 -Plasma_upper_hybrid_frequency_at_point_242_______________________________ (freq_plasma_upper_hybrid_profile242)_ 1.89742877996551819e+11 -Plasma_upper_hybrid_frequency_at_point_243_______________________________ (freq_plasma_upper_hybrid_profile243)_ 1.89643782522880035e+11 -Plasma_upper_hybrid_frequency_at_point_244_______________________________ (freq_plasma_upper_hybrid_profile244)_ 1.89544842586194122e+11 -Plasma_upper_hybrid_frequency_at_point_245_______________________________ (freq_plasma_upper_hybrid_profile245)_ 1.89446057497904602e+11 -Plasma_upper_hybrid_frequency_at_point_246_______________________________ (freq_plasma_upper_hybrid_profile246)_ 1.89347426571342682e+11 -Plasma_upper_hybrid_frequency_at_point_247_______________________________ (freq_plasma_upper_hybrid_profile247)_ 1.89248949121752625e+11 -Plasma_upper_hybrid_frequency_at_point_248_______________________________ (freq_plasma_upper_hybrid_profile248)_ 1.89150624466284576e+11 -Plasma_upper_hybrid_frequency_at_point_249_______________________________ (freq_plasma_upper_hybrid_profile249)_ 1.89052451923987213e+11 -Plasma_upper_hybrid_frequency_at_point_250_______________________________ (freq_plasma_upper_hybrid_profile250)_ 1.88954430815800568e+11 -Plasma_upper_hybrid_frequency_at_point_251_______________________________ (freq_plasma_upper_hybrid_profile251)_ 1.88856560464548553e+11 -Plasma_upper_hybrid_frequency_at_point_252_______________________________ (freq_plasma_upper_hybrid_profile252)_ 1.88758840194932037e+11 -Plasma_upper_hybrid_frequency_at_point_253_______________________________ (freq_plasma_upper_hybrid_profile253)_ 1.88661269333521454e+11 -Plasma_upper_hybrid_frequency_at_point_254_______________________________ (freq_plasma_upper_hybrid_profile254)_ 1.88563847208749634e+11 -Plasma_upper_hybrid_frequency_at_point_255_______________________________ (freq_plasma_upper_hybrid_profile255)_ 1.88466573150904999e+11 -Plasma_upper_hybrid_frequency_at_point_256_______________________________ (freq_plasma_upper_hybrid_profile256)_ 1.88369446492123993e+11 -Plasma_upper_hybrid_frequency_at_point_257_______________________________ (freq_plasma_upper_hybrid_profile257)_ 1.88272466566384369e+11 -Plasma_upper_hybrid_frequency_at_point_258_______________________________ (freq_plasma_upper_hybrid_profile258)_ 1.88175632709498016e+11 -Plasma_upper_hybrid_frequency_at_point_259_______________________________ (freq_plasma_upper_hybrid_profile259)_ 1.88078944259103821e+11 -Plasma_upper_hybrid_frequency_at_point_260_______________________________ (freq_plasma_upper_hybrid_profile260)_ 1.87982400554661041e+11 -Plasma_upper_hybrid_frequency_at_point_261_______________________________ (freq_plasma_upper_hybrid_profile261)_ 1.87886000937441925e+11 -Plasma_upper_hybrid_frequency_at_point_262_______________________________ (freq_plasma_upper_hybrid_profile262)_ 1.87789744750525116e+11 -Plasma_upper_hybrid_frequency_at_point_263_______________________________ (freq_plasma_upper_hybrid_profile263)_ 1.87693631338788391e+11 -Plasma_upper_hybrid_frequency_at_point_264_______________________________ (freq_plasma_upper_hybrid_profile264)_ 1.87597660048902252e+11 -Plasma_upper_hybrid_frequency_at_point_265_______________________________ (freq_plasma_upper_hybrid_profile265)_ 1.87501830229322571e+11 -Plasma_upper_hybrid_frequency_at_point_266_______________________________ (freq_plasma_upper_hybrid_profile266)_ 1.87406141230284241e+11 -Plasma_upper_hybrid_frequency_at_point_267_______________________________ (freq_plasma_upper_hybrid_profile267)_ 1.87310592403793945e+11 -Plasma_upper_hybrid_frequency_at_point_268_______________________________ (freq_plasma_upper_hybrid_profile268)_ 1.87215183103623718e+11 -Plasma_upper_hybrid_frequency_at_point_269_______________________________ (freq_plasma_upper_hybrid_profile269)_ 1.87119912685303894e+11 -Plasma_upper_hybrid_frequency_at_point_270_______________________________ (freq_plasma_upper_hybrid_profile270)_ 1.87024780506116821e+11 -Plasma_upper_hybrid_frequency_at_point_271_______________________________ (freq_plasma_upper_hybrid_profile271)_ 1.86929785925089569e+11 -Plasma_upper_hybrid_frequency_at_point_272_______________________________ (freq_plasma_upper_hybrid_profile272)_ 1.86834928302987946e+11 -Plasma_upper_hybrid_frequency_at_point_273_______________________________ (freq_plasma_upper_hybrid_profile273)_ 1.86740207002309235e+11 -Plasma_upper_hybrid_frequency_at_point_274_______________________________ (freq_plasma_upper_hybrid_profile274)_ 1.86645621387275940e+11 -Plasma_upper_hybrid_frequency_at_point_275_______________________________ (freq_plasma_upper_hybrid_profile275)_ 1.86551170823829102e+11 -Plasma_upper_hybrid_frequency_at_point_276_______________________________ (freq_plasma_upper_hybrid_profile276)_ 1.86456854679621643e+11 -Plasma_upper_hybrid_frequency_at_point_277_______________________________ (freq_plasma_upper_hybrid_profile277)_ 1.86362672324012085e+11 -Plasma_upper_hybrid_frequency_at_point_278_______________________________ (freq_plasma_upper_hybrid_profile278)_ 1.86268623128057617e+11 -Plasma_upper_hybrid_frequency_at_point_279_______________________________ (freq_plasma_upper_hybrid_profile279)_ 1.86174706464508026e+11 -Plasma_upper_hybrid_frequency_at_point_280_______________________________ (freq_plasma_upper_hybrid_profile280)_ 1.86080921707798950e+11 -Plasma_upper_hybrid_frequency_at_point_281_______________________________ (freq_plasma_upper_hybrid_profile281)_ 1.85987268234045502e+11 -Plasma_upper_hybrid_frequency_at_point_282_______________________________ (freq_plasma_upper_hybrid_profile282)_ 1.85893745421035919e+11 -Plasma_upper_hybrid_frequency_at_point_283_______________________________ (freq_plasma_upper_hybrid_profile283)_ 1.85800352648225067e+11 -Plasma_upper_hybrid_frequency_at_point_284_______________________________ (freq_plasma_upper_hybrid_profile284)_ 1.85707089296728210e+11 -Plasma_upper_hybrid_frequency_at_point_285_______________________________ (freq_plasma_upper_hybrid_profile285)_ 1.85613954749314453e+11 -Plasma_upper_hybrid_frequency_at_point_286_______________________________ (freq_plasma_upper_hybrid_profile286)_ 1.85520948390400635e+11 -Plasma_upper_hybrid_frequency_at_point_287_______________________________ (freq_plasma_upper_hybrid_profile287)_ 1.85428069606044830e+11 -Plasma_upper_hybrid_frequency_at_point_288_______________________________ (freq_plasma_upper_hybrid_profile288)_ 1.85335317783940247e+11 -Plasma_upper_hybrid_frequency_at_point_289_______________________________ (freq_plasma_upper_hybrid_profile289)_ 1.85242692313408844e+11 -Plasma_upper_hybrid_frequency_at_point_290_______________________________ (freq_plasma_upper_hybrid_profile290)_ 1.85150192585395203e+11 -Plasma_upper_hybrid_frequency_at_point_291_______________________________ (freq_plasma_upper_hybrid_profile291)_ 1.85057817992460175e+11 -Plasma_upper_hybrid_frequency_at_point_292_______________________________ (freq_plasma_upper_hybrid_profile292)_ 1.84965567928774902e+11 -Plasma_upper_hybrid_frequency_at_point_293_______________________________ (freq_plasma_upper_hybrid_profile293)_ 1.84873441790114502e+11 -Plasma_upper_hybrid_frequency_at_point_294_______________________________ (freq_plasma_upper_hybrid_profile294)_ 1.84781438973851898e+11 -Plasma_upper_hybrid_frequency_at_point_295_______________________________ (freq_plasma_upper_hybrid_profile295)_ 1.84689558878951813e+11 -Plasma_upper_hybrid_frequency_at_point_296_______________________________ (freq_plasma_upper_hybrid_profile296)_ 1.84597800905964661e+11 -Plasma_upper_hybrid_frequency_at_point_297_______________________________ (freq_plasma_upper_hybrid_profile297)_ 1.84506164457020508e+11 -Plasma_upper_hybrid_frequency_at_point_298_______________________________ (freq_plasma_upper_hybrid_profile298)_ 1.84414648935822754e+11 -Plasma_upper_hybrid_frequency_at_point_299_______________________________ (freq_plasma_upper_hybrid_profile299)_ 1.84323253747642578e+11 -Plasma_upper_hybrid_frequency_at_point_300_______________________________ (freq_plasma_upper_hybrid_profile300)_ 1.84231978299312469e+11 -Plasma_upper_hybrid_frequency_at_point_301_______________________________ (freq_plasma_upper_hybrid_profile301)_ 1.84140821999220459e+11 -Plasma_upper_hybrid_frequency_at_point_302_______________________________ (freq_plasma_upper_hybrid_profile302)_ 1.84049784257304260e+11 -Plasma_upper_hybrid_frequency_at_point_303_______________________________ (freq_plasma_upper_hybrid_profile303)_ 1.83958864485045105e+11 -Plasma_upper_hybrid_frequency_at_point_304_______________________________ (freq_plasma_upper_hybrid_profile304)_ 1.83868062095461945e+11 -Plasma_upper_hybrid_frequency_at_point_305_______________________________ (freq_plasma_upper_hybrid_profile305)_ 1.83777376503105530e+11 -Plasma_upper_hybrid_frequency_at_point_306_______________________________ (freq_plasma_upper_hybrid_profile306)_ 1.83686807124052582e+11 -Plasma_upper_hybrid_frequency_at_point_307_______________________________ (freq_plasma_upper_hybrid_profile307)_ 1.83596353375899780e+11 -Plasma_upper_hybrid_frequency_at_point_308_______________________________ (freq_plasma_upper_hybrid_profile308)_ 1.83506014677758209e+11 -Plasma_upper_hybrid_frequency_at_point_309_______________________________ (freq_plasma_upper_hybrid_profile309)_ 1.83415790450247314e+11 -Plasma_upper_hybrid_frequency_at_point_310_______________________________ (freq_plasma_upper_hybrid_profile310)_ 1.83325680115488953e+11 -Plasma_upper_hybrid_frequency_at_point_311_______________________________ (freq_plasma_upper_hybrid_profile311)_ 1.83235683097102173e+11 -Plasma_upper_hybrid_frequency_at_point_312_______________________________ (freq_plasma_upper_hybrid_profile312)_ 1.83145798820196930e+11 -Plasma_upper_hybrid_frequency_at_point_313_______________________________ (freq_plasma_upper_hybrid_profile313)_ 1.83056026711368561e+11 -Plasma_upper_hybrid_frequency_at_point_314_______________________________ (freq_plasma_upper_hybrid_profile314)_ 1.82966366198692078e+11 -Plasma_upper_hybrid_frequency_at_point_315_______________________________ (freq_plasma_upper_hybrid_profile315)_ 1.82876816711716583e+11 -Plasma_upper_hybrid_frequency_at_point_316_______________________________ (freq_plasma_upper_hybrid_profile316)_ 1.82787377681459198e+11 -Plasma_upper_hybrid_frequency_at_point_317_______________________________ (freq_plasma_upper_hybrid_profile317)_ 1.82698048540399963e+11 -Plasma_upper_hybrid_frequency_at_point_318_______________________________ (freq_plasma_upper_hybrid_profile318)_ 1.82608828722475830e+11 -Plasma_upper_hybrid_frequency_at_point_319_______________________________ (freq_plasma_upper_hybrid_profile319)_ 1.82519717663075104e+11 -Plasma_upper_hybrid_frequency_at_point_320_______________________________ (freq_plasma_upper_hybrid_profile320)_ 1.82430714799031891e+11 -Plasma_upper_hybrid_frequency_at_point_321_______________________________ (freq_plasma_upper_hybrid_profile321)_ 1.82341819568620667e+11 -Plasma_upper_hybrid_frequency_at_point_322_______________________________ (freq_plasma_upper_hybrid_profile322)_ 1.82253031411550446e+11 -Plasma_upper_hybrid_frequency_at_point_323_______________________________ (freq_plasma_upper_hybrid_profile323)_ 1.82164349768959473e+11 -Plasma_upper_hybrid_frequency_at_point_324_______________________________ (freq_plasma_upper_hybrid_profile324)_ 1.82075774083409576e+11 -Plasma_upper_hybrid_frequency_at_point_325_______________________________ (freq_plasma_upper_hybrid_profile325)_ 1.81987303798880768e+11 -Plasma_upper_hybrid_frequency_at_point_326_______________________________ (freq_plasma_upper_hybrid_profile326)_ 1.81898938360765778e+11 -Plasma_upper_hybrid_frequency_at_point_327_______________________________ (freq_plasma_upper_hybrid_profile327)_ 1.81810677215864288e+11 -Plasma_upper_hybrid_frequency_at_point_328_______________________________ (freq_plasma_upper_hybrid_profile328)_ 1.81722519812378021e+11 -Plasma_upper_hybrid_frequency_at_point_329_______________________________ (freq_plasma_upper_hybrid_profile329)_ 1.81634465599904938e+11 -Plasma_upper_hybrid_frequency_at_point_330_______________________________ (freq_plasma_upper_hybrid_profile330)_ 1.81546514029433929e+11 -Plasma_upper_hybrid_frequency_at_point_331_______________________________ (freq_plasma_upper_hybrid_profile331)_ 1.81458664553339447e+11 -Plasma_upper_hybrid_frequency_at_point_332_______________________________ (freq_plasma_upper_hybrid_profile332)_ 1.81370916625376099e+11 -Plasma_upper_hybrid_frequency_at_point_333_______________________________ (freq_plasma_upper_hybrid_profile333)_ 1.81283269700673523e+11 -Plasma_upper_hybrid_frequency_at_point_334_______________________________ (freq_plasma_upper_hybrid_profile334)_ 1.81195723235730530e+11 -Plasma_upper_hybrid_frequency_at_point_335_______________________________ (freq_plasma_upper_hybrid_profile335)_ 1.81108276688410431e+11 -Plasma_upper_hybrid_frequency_at_point_336_______________________________ (freq_plasma_upper_hybrid_profile336)_ 1.81020929517935455e+11 -Plasma_upper_hybrid_frequency_at_point_337_______________________________ (freq_plasma_upper_hybrid_profile337)_ 1.80933681184881195e+11 -Plasma_upper_hybrid_frequency_at_point_338_______________________________ (freq_plasma_upper_hybrid_profile338)_ 1.80846531151171844e+11 -Plasma_upper_hybrid_frequency_at_point_339_______________________________ (freq_plasma_upper_hybrid_profile339)_ 1.80759478880074768e+11 -Plasma_upper_hybrid_frequency_at_point_340_______________________________ (freq_plasma_upper_hybrid_profile340)_ 1.80672523836195068e+11 -Plasma_upper_hybrid_frequency_at_point_341_______________________________ (freq_plasma_upper_hybrid_profile341)_ 1.80585665485470673e+11 -Plasma_upper_hybrid_frequency_at_point_342_______________________________ (freq_plasma_upper_hybrid_profile342)_ 1.80498903295167084e+11 -Plasma_upper_hybrid_frequency_at_point_343_______________________________ (freq_plasma_upper_hybrid_profile343)_ 1.80412236733872009e+11 -Plasma_upper_hybrid_frequency_at_point_344_______________________________ (freq_plasma_upper_hybrid_profile344)_ 1.80325665271490509e+11 -Plasma_upper_hybrid_frequency_at_point_345_______________________________ (freq_plasma_upper_hybrid_profile345)_ 1.80239188379239624e+11 -Plasma_upper_hybrid_frequency_at_point_346_______________________________ (freq_plasma_upper_hybrid_profile346)_ 1.80152805529643311e+11 -Plasma_upper_hybrid_frequency_at_point_347_______________________________ (freq_plasma_upper_hybrid_profile347)_ 1.80066516196527496e+11 -Plasma_upper_hybrid_frequency_at_point_348_______________________________ (freq_plasma_upper_hybrid_profile348)_ 1.79980319855014740e+11 -Plasma_upper_hybrid_frequency_at_point_349_______________________________ (freq_plasma_upper_hybrid_profile349)_ 1.79894215981519348e+11 -Plasma_upper_hybrid_frequency_at_point_350_______________________________ (freq_plasma_upper_hybrid_profile350)_ 1.79808204053742340e+11 -Plasma_upper_hybrid_frequency_at_point_351_______________________________ (freq_plasma_upper_hybrid_profile351)_ 1.79722283550666199e+11 -Plasma_upper_hybrid_frequency_at_point_352_______________________________ (freq_plasma_upper_hybrid_profile352)_ 1.79636453952550049e+11 -Plasma_upper_hybrid_frequency_at_point_353_______________________________ (freq_plasma_upper_hybrid_profile353)_ 1.79550714740924561e+11 -Plasma_upper_hybrid_frequency_at_point_354_______________________________ (freq_plasma_upper_hybrid_profile354)_ 1.79465065398587128e+11 -Plasma_upper_hybrid_frequency_at_point_355_______________________________ (freq_plasma_upper_hybrid_profile355)_ 1.79379505409596649e+11 -Plasma_upper_hybrid_frequency_at_point_356_______________________________ (freq_plasma_upper_hybrid_profile356)_ 1.79294034259268646e+11 -Plasma_upper_hybrid_frequency_at_point_357_______________________________ (freq_plasma_upper_hybrid_profile357)_ 1.79208651434170563e+11 -Plasma_upper_hybrid_frequency_at_point_358_______________________________ (freq_plasma_upper_hybrid_profile358)_ 1.79123356422116516e+11 -Plasma_upper_hybrid_frequency_at_point_359_______________________________ (freq_plasma_upper_hybrid_profile359)_ 1.79038148712162537e+11 -Plasma_upper_hybrid_frequency_at_point_360_______________________________ (freq_plasma_upper_hybrid_profile360)_ 1.78953027794601593e+11 -Plasma_upper_hybrid_frequency_at_point_361_______________________________ (freq_plasma_upper_hybrid_profile361)_ 1.78867993160958954e+11 -Plasma_upper_hybrid_frequency_at_point_362_______________________________ (freq_plasma_upper_hybrid_profile362)_ 1.78783044303987122e+11 -Plasma_upper_hybrid_frequency_at_point_363_______________________________ (freq_plasma_upper_hybrid_profile363)_ 1.78698180717660858e+11 -Plasma_upper_hybrid_frequency_at_point_364_______________________________ (freq_plasma_upper_hybrid_profile364)_ 1.78613401897172760e+11 -Plasma_upper_hybrid_frequency_at_point_365_______________________________ (freq_plasma_upper_hybrid_profile365)_ 1.78528707338928040e+11 -Plasma_upper_hybrid_frequency_at_point_366_______________________________ (freq_plasma_upper_hybrid_profile366)_ 1.78444096540540039e+11 -Plasma_upper_hybrid_frequency_at_point_367_______________________________ (freq_plasma_upper_hybrid_profile367)_ 1.78359569000825165e+11 -Plasma_upper_hybrid_frequency_at_point_368_______________________________ (freq_plasma_upper_hybrid_profile368)_ 1.78275124219798340e+11 -Plasma_upper_hybrid_frequency_at_point_369_______________________________ (freq_plasma_upper_hybrid_profile369)_ 1.78190761698668182e+11 -Plasma_upper_hybrid_frequency_at_point_370_______________________________ (freq_plasma_upper_hybrid_profile370)_ 1.78106480939832123e+11 -Plasma_upper_hybrid_frequency_at_point_371_______________________________ (freq_plasma_upper_hybrid_profile371)_ 1.78022281446872009e+11 -Plasma_upper_hybrid_frequency_at_point_372_______________________________ (freq_plasma_upper_hybrid_profile372)_ 1.77938162724549072e+11 -Plasma_upper_hybrid_frequency_at_point_373_______________________________ (freq_plasma_upper_hybrid_profile373)_ 1.77854124278799377e+11 -Plasma_upper_hybrid_frequency_at_point_374_______________________________ (freq_plasma_upper_hybrid_profile374)_ 1.77770165616729095e+11 -Plasma_upper_hybrid_frequency_at_point_375_______________________________ (freq_plasma_upper_hybrid_profile375)_ 1.77686286246609955e+11 -Plasma_upper_hybrid_frequency_at_point_376_______________________________ (freq_plasma_upper_hybrid_profile376)_ 1.77602485677874420e+11 -Plasma_upper_hybrid_frequency_at_point_377_______________________________ (freq_plasma_upper_hybrid_profile377)_ 1.77518763421111084e+11 -Plasma_upper_hybrid_frequency_at_point_378_______________________________ (freq_plasma_upper_hybrid_profile378)_ 1.77435118988060272e+11 -Plasma_upper_hybrid_frequency_at_point_379_______________________________ (freq_plasma_upper_hybrid_profile379)_ 1.77351551891609070e+11 -Plasma_upper_hybrid_frequency_at_point_380_______________________________ (freq_plasma_upper_hybrid_profile380)_ 1.77268061645786987e+11 -Plasma_upper_hybrid_frequency_at_point_381_______________________________ (freq_plasma_upper_hybrid_profile381)_ 1.77184647765761292e+11 -Plasma_upper_hybrid_frequency_at_point_382_______________________________ (freq_plasma_upper_hybrid_profile382)_ 1.77101309767832581e+11 -Plasma_upper_hybrid_frequency_at_point_383_______________________________ (freq_plasma_upper_hybrid_profile383)_ 1.77018047169429840e+11 -Plasma_upper_hybrid_frequency_at_point_384_______________________________ (freq_plasma_upper_hybrid_profile384)_ 1.76934859489106354e+11 -Plasma_upper_hybrid_frequency_at_point_385_______________________________ (freq_plasma_upper_hybrid_profile385)_ 1.76851746246534882e+11 -Plasma_upper_hybrid_frequency_at_point_386_______________________________ (freq_plasma_upper_hybrid_profile386)_ 1.76768706962503418e+11 -Plasma_upper_hybrid_frequency_at_point_387_______________________________ (freq_plasma_upper_hybrid_profile387)_ 1.76685741158910278e+11 -Plasma_upper_hybrid_frequency_at_point_388_______________________________ (freq_plasma_upper_hybrid_profile388)_ 1.76602848358760071e+11 -Plasma_upper_hybrid_frequency_at_point_389_______________________________ (freq_plasma_upper_hybrid_profile389)_ 1.76520028086158936e+11 -Plasma_upper_hybrid_frequency_at_point_390_______________________________ (freq_plasma_upper_hybrid_profile390)_ 1.76437279866310150e+11 -Plasma_upper_hybrid_frequency_at_point_391_______________________________ (freq_plasma_upper_hybrid_profile391)_ 1.76354603225509705e+11 -Plasma_upper_hybrid_frequency_at_point_392_______________________________ (freq_plasma_upper_hybrid_profile392)_ 1.76271997691141815e+11 -Plasma_upper_hybrid_frequency_at_point_393_______________________________ (freq_plasma_upper_hybrid_profile393)_ 1.76189462791674683e+11 -Plasma_upper_hybrid_frequency_at_point_394_______________________________ (freq_plasma_upper_hybrid_profile394)_ 1.76106998056655823e+11 -Plasma_upper_hybrid_frequency_at_point_395_______________________________ (freq_plasma_upper_hybrid_profile395)_ 1.76024603016707794e+11 -Plasma_upper_hybrid_frequency_at_point_396_______________________________ (freq_plasma_upper_hybrid_profile396)_ 1.75942277203523987e+11 -Plasma_upper_hybrid_frequency_at_point_397_______________________________ (freq_plasma_upper_hybrid_profile397)_ 1.75860020149863892e+11 -Plasma_upper_hybrid_frequency_at_point_398_______________________________ (freq_plasma_upper_hybrid_profile398)_ 1.75777831389549042e+11 -Plasma_upper_hybrid_frequency_at_point_399_______________________________ (freq_plasma_upper_hybrid_profile399)_ 1.75695710457458527e+11 -Plasma_upper_hybrid_frequency_at_point_400_______________________________ (freq_plasma_upper_hybrid_profile400)_ 1.75613656889524780e+11 -Plasma_upper_hybrid_frequency_at_point_401_______________________________ (freq_plasma_upper_hybrid_profile401)_ 1.75531670222729095e+11 -Plasma_upper_hybrid_frequency_at_point_402_______________________________ (freq_plasma_upper_hybrid_profile402)_ 1.75449749995097473e+11 -Plasma_upper_hybrid_frequency_at_point_403_______________________________ (freq_plasma_upper_hybrid_profile403)_ 1.75367895745696198e+11 -Plasma_upper_hybrid_frequency_at_point_404_______________________________ (freq_plasma_upper_hybrid_profile404)_ 1.75286107014627716e+11 -Plasma_upper_hybrid_frequency_at_point_405_______________________________ (freq_plasma_upper_hybrid_profile405)_ 1.75204383343026093e+11 -Plasma_upper_hybrid_frequency_at_point_406_______________________________ (freq_plasma_upper_hybrid_profile406)_ 1.75122724273053192e+11 -Plasma_upper_hybrid_frequency_at_point_407_______________________________ (freq_plasma_upper_hybrid_profile407)_ 1.75041129347893921e+11 -Plasma_upper_hybrid_frequency_at_point_408_______________________________ (freq_plasma_upper_hybrid_profile408)_ 1.74959598111752441e+11 -Plasma_upper_hybrid_frequency_at_point_409_______________________________ (freq_plasma_upper_hybrid_profile409)_ 1.74878130109847565e+11 -Plasma_upper_hybrid_frequency_at_point_410_______________________________ (freq_plasma_upper_hybrid_profile410)_ 1.74796724888408905e+11 -Plasma_upper_hybrid_frequency_at_point_411_______________________________ (freq_plasma_upper_hybrid_profile411)_ 1.74715381994672424e+11 -Plasma_upper_hybrid_frequency_at_point_412_______________________________ (freq_plasma_upper_hybrid_profile412)_ 1.74634100976876312e+11 -Plasma_upper_hybrid_frequency_at_point_413_______________________________ (freq_plasma_upper_hybrid_profile413)_ 1.74552881384256836e+11 -Plasma_upper_hybrid_frequency_at_point_414_______________________________ (freq_plasma_upper_hybrid_profile414)_ 1.74471722767044189e+11 -Plasma_upper_hybrid_frequency_at_point_415_______________________________ (freq_plasma_upper_hybrid_profile415)_ 1.74390624676458313e+11 -Plasma_upper_hybrid_frequency_at_point_416_______________________________ (freq_plasma_upper_hybrid_profile416)_ 1.74309586664704742e+11 -Plasma_upper_hybrid_frequency_at_point_417_______________________________ (freq_plasma_upper_hybrid_profile417)_ 1.74228608284970459e+11 -Plasma_upper_hybrid_frequency_at_point_418_______________________________ (freq_plasma_upper_hybrid_profile418)_ 1.74147689091419922e+11 -Plasma_upper_hybrid_frequency_at_point_419_______________________________ (freq_plasma_upper_hybrid_profile419)_ 1.74066828639190674e+11 -Plasma_upper_hybrid_frequency_at_point_420_______________________________ (freq_plasma_upper_hybrid_profile420)_ 1.73986026484389587e+11 -Plasma_upper_hybrid_frequency_at_point_421_______________________________ (freq_plasma_upper_hybrid_profile421)_ 1.73905282184088470e+11 -Plasma_upper_hybrid_frequency_at_point_422_______________________________ (freq_plasma_upper_hybrid_profile422)_ 1.73824595296320221e+11 -Plasma_upper_hybrid_frequency_at_point_423_______________________________ (freq_plasma_upper_hybrid_profile423)_ 1.73743965380074646e+11 -Plasma_upper_hybrid_frequency_at_point_424_______________________________ (freq_plasma_upper_hybrid_profile424)_ 1.73663391995294403e+11 -Plasma_upper_hybrid_frequency_at_point_425_______________________________ (freq_plasma_upper_hybrid_profile425)_ 1.73582874702871063e+11 -Plasma_upper_hybrid_frequency_at_point_426_______________________________ (freq_plasma_upper_hybrid_profile426)_ 1.73502413064640900e+11 -Plasma_upper_hybrid_frequency_at_point_427_______________________________ (freq_plasma_upper_hybrid_profile427)_ 1.73422006643381165e+11 -Plasma_upper_hybrid_frequency_at_point_428_______________________________ (freq_plasma_upper_hybrid_profile428)_ 1.73341655002805634e+11 -Plasma_upper_hybrid_frequency_at_point_429_______________________________ (freq_plasma_upper_hybrid_profile429)_ 1.73261357707561035e+11 -Plasma_upper_hybrid_frequency_at_point_430_______________________________ (freq_plasma_upper_hybrid_profile430)_ 1.73181114323222931e+11 -Plasma_upper_hybrid_frequency_at_point_431_______________________________ (freq_plasma_upper_hybrid_profile431)_ 1.73100924416291504e+11 -Plasma_upper_hybrid_frequency_at_point_432_______________________________ (freq_plasma_upper_hybrid_profile432)_ 1.73020787554187988e+11 -Plasma_upper_hybrid_frequency_at_point_433_______________________________ (freq_plasma_upper_hybrid_profile433)_ 1.72940703305250427e+11 -Plasma_upper_hybrid_frequency_at_point_434_______________________________ (freq_plasma_upper_hybrid_profile434)_ 1.72860671238729767e+11 -Plasma_upper_hybrid_frequency_at_point_435_______________________________ (freq_plasma_upper_hybrid_profile435)_ 1.72780690924785950e+11 -Plasma_upper_hybrid_frequency_at_point_436_______________________________ (freq_plasma_upper_hybrid_profile436)_ 1.72700761934484131e+11 -Plasma_upper_hybrid_frequency_at_point_437_______________________________ (freq_plasma_upper_hybrid_profile437)_ 1.72620883839790466e+11 -Plasma_upper_hybrid_frequency_at_point_438_______________________________ (freq_plasma_upper_hybrid_profile438)_ 1.72541056213568420e+11 -Plasma_upper_hybrid_frequency_at_point_439_______________________________ (freq_plasma_upper_hybrid_profile439)_ 1.72461278629574829e+11 -Plasma_upper_hybrid_frequency_at_point_440_______________________________ (freq_plasma_upper_hybrid_profile440)_ 1.72381550662455994e+11 -Plasma_upper_hybrid_frequency_at_point_441_______________________________ (freq_plasma_upper_hybrid_profile441)_ 1.72301871887743805e+11 -Plasma_upper_hybrid_frequency_at_point_442_______________________________ (freq_plasma_upper_hybrid_profile442)_ 1.72222241881851837e+11 -Plasma_upper_hybrid_frequency_at_point_443_______________________________ (freq_plasma_upper_hybrid_profile443)_ 1.72142660222071533e+11 -Plasma_upper_hybrid_frequency_at_point_444_______________________________ (freq_plasma_upper_hybrid_profile444)_ 1.72063126486568420e+11 -Plasma_upper_hybrid_frequency_at_point_445_______________________________ (freq_plasma_upper_hybrid_profile445)_ 1.71983640254378082e+11 -Plasma_upper_hybrid_frequency_at_point_446_______________________________ (freq_plasma_upper_hybrid_profile446)_ 1.71904201105402557e+11 -Plasma_upper_hybrid_frequency_at_point_447_______________________________ (freq_plasma_upper_hybrid_profile447)_ 1.71824808620406311e+11 -Plasma_upper_hybrid_frequency_at_point_448_______________________________ (freq_plasma_upper_hybrid_profile448)_ 1.71745462381012573e+11 -Plasma_upper_hybrid_frequency_at_point_449_______________________________ (freq_plasma_upper_hybrid_profile449)_ 1.71666161969699493e+11 -Plasma_upper_hybrid_frequency_at_point_450_______________________________ (freq_plasma_upper_hybrid_profile450)_ 1.71586906969796265e+11 -Plasma_upper_hybrid_frequency_at_point_451_______________________________ (freq_plasma_upper_hybrid_profile451)_ 1.71507696965479492e+11 -Plasma_upper_hybrid_frequency_at_point_452_______________________________ (freq_plasma_upper_hybrid_profile452)_ 1.71428531541769257e+11 -Plasma_upper_hybrid_frequency_at_point_453_______________________________ (freq_plasma_upper_hybrid_profile453)_ 1.71349410284525574e+11 -Plasma_upper_hybrid_frequency_at_point_454_______________________________ (freq_plasma_upper_hybrid_profile454)_ 1.71270332780444244e+11 -Plasma_upper_hybrid_frequency_at_point_455_______________________________ (freq_plasma_upper_hybrid_profile455)_ 1.71191298617053558e+11 -Plasma_upper_hybrid_frequency_at_point_456_______________________________ (freq_plasma_upper_hybrid_profile456)_ 1.71112307382710358e+11 -Plasma_upper_hybrid_frequency_at_point_457_______________________________ (freq_plasma_upper_hybrid_profile457)_ 1.71033358666596161e+11 -Plasma_upper_hybrid_frequency_at_point_458_______________________________ (freq_plasma_upper_hybrid_profile458)_ 1.70954452058713745e+11 -Plasma_upper_hybrid_frequency_at_point_459_______________________________ (freq_plasma_upper_hybrid_profile459)_ 1.70875587149883057e+11 -Plasma_upper_hybrid_frequency_at_point_460_______________________________ (freq_plasma_upper_hybrid_profile460)_ 1.70796763531737915e+11 -Plasma_upper_hybrid_frequency_at_point_461_______________________________ (freq_plasma_upper_hybrid_profile461)_ 1.70717980796722015e+11 -Plasma_upper_hybrid_frequency_at_point_462_______________________________ (freq_plasma_upper_hybrid_profile462)_ 1.70639238538085358e+11 -Plasma_upper_hybrid_frequency_at_point_463_______________________________ (freq_plasma_upper_hybrid_profile463)_ 1.70560536349880646e+11 -Plasma_upper_hybrid_frequency_at_point_464_______________________________ (freq_plasma_upper_hybrid_profile464)_ 1.70481873826959412e+11 -Plasma_upper_hybrid_frequency_at_point_465_______________________________ (freq_plasma_upper_hybrid_profile465)_ 1.70403250564968475e+11 -Plasma_upper_hybrid_frequency_at_point_466_______________________________ (freq_plasma_upper_hybrid_profile466)_ 1.70324666160346405e+11 -Plasma_upper_hybrid_frequency_at_point_467_______________________________ (freq_plasma_upper_hybrid_profile467)_ 1.70246120210319641e+11 -Plasma_upper_hybrid_frequency_at_point_468_______________________________ (freq_plasma_upper_hybrid_profile468)_ 1.70167612312898926e+11 -Plasma_upper_hybrid_frequency_at_point_469_______________________________ (freq_plasma_upper_hybrid_profile469)_ 1.70089142066875885e+11 -Plasma_upper_hybrid_frequency_at_point_470_______________________________ (freq_plasma_upper_hybrid_profile470)_ 1.70010709071819061e+11 -Plasma_upper_hybrid_frequency_at_point_471_______________________________ (freq_plasma_upper_hybrid_profile471)_ 1.69932312928070587e+11 -Plasma_upper_hybrid_frequency_at_point_472_______________________________ (freq_plasma_upper_hybrid_profile472)_ 1.69853953236742462e+11 -Plasma_upper_hybrid_frequency_at_point_473_______________________________ (freq_plasma_upper_hybrid_profile473)_ 1.69775629599712921e+11 -Plasma_upper_hybrid_frequency_at_point_474_______________________________ (freq_plasma_upper_hybrid_profile474)_ 1.69697341619622894e+11 -Plasma_upper_hybrid_frequency_at_point_475_______________________________ (freq_plasma_upper_hybrid_profile475)_ 1.69619088899872406e+11 -Plasma_upper_hybrid_frequency_at_point_476_______________________________ (freq_plasma_upper_hybrid_profile476)_ 1.69540871044617065e+11 -Plasma_upper_hybrid_frequency_at_point_477_______________________________ (freq_plasma_upper_hybrid_profile477)_ 1.69462687658764404e+11 -Plasma_upper_hybrid_frequency_at_point_478_______________________________ (freq_plasma_upper_hybrid_profile478)_ 1.69384538347970306e+11 -Plasma_upper_hybrid_frequency_at_point_479_______________________________ (freq_plasma_upper_hybrid_profile479)_ 1.69306422718635681e+11 -Plasma_upper_hybrid_frequency_at_point_480_______________________________ (freq_plasma_upper_hybrid_profile480)_ 1.69228340377902496e+11 -Plasma_upper_hybrid_frequency_at_point_481_______________________________ (freq_plasma_upper_hybrid_profile481)_ 1.69150290933650726e+11 -Plasma_upper_hybrid_frequency_at_point_482_______________________________ (freq_plasma_upper_hybrid_profile482)_ 1.69072273994494446e+11 -Plasma_upper_hybrid_frequency_at_point_483_______________________________ (freq_plasma_upper_hybrid_profile483)_ 1.68994289169778442e+11 -Plasma_upper_hybrid_frequency_at_point_484_______________________________ (freq_plasma_upper_hybrid_profile484)_ 1.68916336069574799e+11 -Plasma_upper_hybrid_frequency_at_point_485_______________________________ (freq_plasma_upper_hybrid_profile485)_ 1.68838414304679260e+11 -Plasma_upper_hybrid_frequency_at_point_486_______________________________ (freq_plasma_upper_hybrid_profile486)_ 1.68760523486607727e+11 -Plasma_upper_hybrid_frequency_at_point_487_______________________________ (freq_plasma_upper_hybrid_profile487)_ 1.68682663227592865e+11 -Plasma_upper_hybrid_frequency_at_point_488_______________________________ (freq_plasma_upper_hybrid_profile488)_ 1.68604833140580475e+11 -Plasma_upper_hybrid_frequency_at_point_489_______________________________ (freq_plasma_upper_hybrid_profile489)_ 1.68527032839226135e+11 -Plasma_upper_hybrid_frequency_at_point_490_______________________________ (freq_plasma_upper_hybrid_profile490)_ 1.68449261937891754e+11 -Plasma_upper_hybrid_frequency_at_point_491_______________________________ (freq_plasma_upper_hybrid_profile491)_ 1.68371520051641907e+11 -Plasma_upper_hybrid_frequency_at_point_492_______________________________ (freq_plasma_upper_hybrid_profile492)_ 1.68293806796240601e+11 -Plasma_upper_hybrid_frequency_at_point_493_______________________________ (freq_plasma_upper_hybrid_profile493)_ 1.68216121788147705e+11 -Plasma_upper_hybrid_frequency_at_point_494_______________________________ (freq_plasma_upper_hybrid_profile494)_ 1.68138464644515533e+11 -Plasma_upper_hybrid_frequency_at_point_495_______________________________ (freq_plasma_upper_hybrid_profile495)_ 1.68060834983185394e+11 -Plasma_upper_hybrid_frequency_at_point_496_______________________________ (freq_plasma_upper_hybrid_profile496)_ 1.67983232422684143e+11 -Plasma_upper_hybrid_frequency_at_point_497_______________________________ (freq_plasma_upper_hybrid_profile497)_ 1.67905656582220825e+11 -Plasma_upper_hybrid_frequency_at_point_498_______________________________ (freq_plasma_upper_hybrid_profile498)_ 1.67828107081683197e+11 -Plasma_upper_hybrid_frequency_at_point_499_______________________________ (freq_plasma_upper_hybrid_profile499)_ 1.67750583541634338e+11 -Plasma_upper_hybrid_frequency_at_point_500_______________________________ (freq_plasma_upper_hybrid_profile500)_ 1.67673085583309143e+11 -Plasma_upper_hybrid_frequency_at_point_501_______________________________ (freq_plasma_upper_hybrid_profile501)_ 1.67595659778382965e+11 -Plasma_upper_hybrid_frequency_at_point_502_______________________________ (freq_plasma_upper_hybrid_profile502)_ 1.67518305814503113e+11 -Plasma_upper_hybrid_frequency_at_point_503_______________________________ (freq_plasma_upper_hybrid_profile503)_ 1.67440976386886810e+11 -Plasma_upper_hybrid_frequency_at_point_504_______________________________ (freq_plasma_upper_hybrid_profile504)_ 1.67363671119502655e+11 -Plasma_upper_hybrid_frequency_at_point_505_______________________________ (freq_plasma_upper_hybrid_profile505)_ 1.67286389636974976e+11 -Plasma_upper_hybrid_frequency_at_point_506_______________________________ (freq_plasma_upper_hybrid_profile506)_ 1.67209131564580841e+11 -Plasma_upper_hybrid_frequency_at_point_507_______________________________ (freq_plasma_upper_hybrid_profile507)_ 1.67131896528246277e+11 -Plasma_upper_hybrid_frequency_at_point_508_______________________________ (freq_plasma_upper_hybrid_profile508)_ 1.67054684154543121e+11 -Plasma_upper_hybrid_frequency_at_point_509_______________________________ (freq_plasma_upper_hybrid_profile509)_ 1.66977494070685822e+11 -Plasma_upper_hybrid_frequency_at_point_510_______________________________ (freq_plasma_upper_hybrid_profile510)_ 1.66900325904527802e+11 -Plasma_upper_hybrid_frequency_at_point_511_______________________________ (freq_plasma_upper_hybrid_profile511)_ 1.66823179284558228e+11 -Plasma_upper_hybrid_frequency_at_point_512_______________________________ (freq_plasma_upper_hybrid_profile512)_ 1.66746053839898804e+11 -Plasma_upper_hybrid_frequency_at_point_513_______________________________ (freq_plasma_upper_hybrid_profile513)_ 1.66668949200300262e+11 -Plasma_upper_hybrid_frequency_at_point_514_______________________________ (freq_plasma_upper_hybrid_profile514)_ 1.66591864996139252e+11 -Plasma_upper_hybrid_frequency_at_point_515_______________________________ (freq_plasma_upper_hybrid_profile515)_ 1.66514800858414673e+11 -Plasma_upper_hybrid_frequency_at_point_516_______________________________ (freq_plasma_upper_hybrid_profile516)_ 1.66437756418744843e+11 -Plasma_upper_hybrid_frequency_at_point_517_______________________________ (freq_plasma_upper_hybrid_profile517)_ 1.66360731309363770e+11 -Plasma_upper_hybrid_frequency_at_point_518_______________________________ (freq_plasma_upper_hybrid_profile518)_ 1.66283725163118103e+11 -Plasma_upper_hybrid_frequency_at_point_519_______________________________ (freq_plasma_upper_hybrid_profile519)_ 1.66206737613463776e+11 -Plasma_upper_hybrid_frequency_at_point_520_______________________________ (freq_plasma_upper_hybrid_profile520)_ 1.66129768294462585e+11 -Plasma_upper_hybrid_frequency_at_point_521_______________________________ (freq_plasma_upper_hybrid_profile521)_ 1.66052816840779175e+11 -Plasma_upper_hybrid_frequency_at_point_522_______________________________ (freq_plasma_upper_hybrid_profile522)_ 1.65975882887677521e+11 -Plasma_upper_hybrid_frequency_at_point_523_______________________________ (freq_plasma_upper_hybrid_profile523)_ 1.65898966071017883e+11 -Plasma_upper_hybrid_frequency_at_point_524_______________________________ (freq_plasma_upper_hybrid_profile524)_ 1.65822066027253174e+11 -Plasma_upper_hybrid_frequency_at_point_525_______________________________ (freq_plasma_upper_hybrid_profile525)_ 1.65745182393426147e+11 -Plasma_upper_hybrid_frequency_at_point_526_______________________________ (freq_plasma_upper_hybrid_profile526)_ 1.65668314807165771e+11 -Plasma_upper_hybrid_frequency_at_point_527_______________________________ (freq_plasma_upper_hybrid_profile527)_ 1.65591462906684235e+11 -Plasma_upper_hybrid_frequency_at_point_528_______________________________ (freq_plasma_upper_hybrid_profile528)_ 1.65514626330773560e+11 -Plasma_upper_hybrid_frequency_at_point_529_______________________________ (freq_plasma_upper_hybrid_profile529)_ 1.65437804718802368e+11 -Plasma_upper_hybrid_frequency_at_point_530_______________________________ (freq_plasma_upper_hybrid_profile530)_ 1.65360997710712646e+11 -Plasma_upper_hybrid_frequency_at_point_531_______________________________ (freq_plasma_upper_hybrid_profile531)_ 1.65284204947016693e+11 -Plasma_upper_hybrid_frequency_at_point_532_______________________________ (freq_plasma_upper_hybrid_profile532)_ 1.65207426068793457e+11 -Plasma_upper_hybrid_frequency_at_point_533_______________________________ (freq_plasma_upper_hybrid_profile533)_ 1.65130660717685883e+11 -Plasma_upper_hybrid_frequency_at_point_534_______________________________ (freq_plasma_upper_hybrid_profile534)_ 1.65053908535897217e+11 -Plasma_upper_hybrid_frequency_at_point_535_______________________________ (freq_plasma_upper_hybrid_profile535)_ 1.64977169166187958e+11 -Plasma_upper_hybrid_frequency_at_point_536_______________________________ (freq_plasma_upper_hybrid_profile536)_ 1.64900442251872864e+11 -Plasma_upper_hybrid_frequency_at_point_537_______________________________ (freq_plasma_upper_hybrid_profile537)_ 1.64823727436817352e+11 -Plasma_upper_hybrid_frequency_at_point_538_______________________________ (freq_plasma_upper_hybrid_profile538)_ 1.64747024365434540e+11 -Plasma_upper_hybrid_frequency_at_point_539_______________________________ (freq_plasma_upper_hybrid_profile539)_ 1.64670332682682129e+11 -Plasma_upper_hybrid_frequency_at_point_540_______________________________ (freq_plasma_upper_hybrid_profile540)_ 1.64593652034058868e+11 -Plasma_upper_hybrid_frequency_at_point_541_______________________________ (freq_plasma_upper_hybrid_profile541)_ 1.64516982065601837e+11 -Plasma_upper_hybrid_frequency_at_point_542_______________________________ (freq_plasma_upper_hybrid_profile542)_ 1.64440322423882751e+11 -Plasma_upper_hybrid_frequency_at_point_543_______________________________ (freq_plasma_upper_hybrid_profile543)_ 1.64363672756005249e+11 -Plasma_upper_hybrid_frequency_at_point_544_______________________________ (freq_plasma_upper_hybrid_profile544)_ 1.64287032709601440e+11 -Plasma_upper_hybrid_frequency_at_point_545_______________________________ (freq_plasma_upper_hybrid_profile545)_ 1.64210401932828766e+11 -Plasma_upper_hybrid_frequency_at_point_546_______________________________ (freq_plasma_upper_hybrid_profile546)_ 1.64133780074366974e+11 -Plasma_upper_hybrid_frequency_at_point_547_______________________________ (freq_plasma_upper_hybrid_profile547)_ 1.64057166783414703e+11 -Plasma_upper_hybrid_frequency_at_point_548_______________________________ (freq_plasma_upper_hybrid_profile548)_ 1.63980561709686584e+11 -Plasma_upper_hybrid_frequency_at_point_549_______________________________ (freq_plasma_upper_hybrid_profile549)_ 1.63903964503409943e+11 -Plasma_upper_hybrid_frequency_at_point_550_______________________________ (freq_plasma_upper_hybrid_profile550)_ 1.63827374815321716e+11 -Plasma_upper_hybrid_frequency_at_point_551_______________________________ (freq_plasma_upper_hybrid_profile551)_ 1.63750792296665161e+11 -Plasma_upper_hybrid_frequency_at_point_552_______________________________ (freq_plasma_upper_hybrid_profile552)_ 1.63674216599186920e+11 -Plasma_upper_hybrid_frequency_at_point_553_______________________________ (freq_plasma_upper_hybrid_profile553)_ 1.63597647375133728e+11 -Plasma_upper_hybrid_frequency_at_point_554_______________________________ (freq_plasma_upper_hybrid_profile554)_ 1.63521084277249298e+11 -Plasma_upper_hybrid_frequency_at_point_555_______________________________ (freq_plasma_upper_hybrid_profile555)_ 1.63444526958771240e+11 -Plasma_upper_hybrid_frequency_at_point_556_______________________________ (freq_plasma_upper_hybrid_profile556)_ 1.63367975073427979e+11 -Plasma_upper_hybrid_frequency_at_point_557_______________________________ (freq_plasma_upper_hybrid_profile557)_ 1.63291428275435364e+11 -Plasma_upper_hybrid_frequency_at_point_558_______________________________ (freq_plasma_upper_hybrid_profile558)_ 1.63214886219493927e+11 -Plasma_upper_hybrid_frequency_at_point_559_______________________________ (freq_plasma_upper_hybrid_profile559)_ 1.63138348560785461e+11 -Plasma_upper_hybrid_frequency_at_point_560_______________________________ (freq_plasma_upper_hybrid_profile560)_ 1.63061814954970032e+11 -Plasma_upper_hybrid_frequency_at_point_561_______________________________ (freq_plasma_upper_hybrid_profile561)_ 1.62985285058182739e+11 -Plasma_upper_hybrid_frequency_at_point_562_______________________________ (freq_plasma_upper_hybrid_profile562)_ 1.62908758527030975e+11 -Plasma_upper_hybrid_frequency_at_point_563_______________________________ (freq_plasma_upper_hybrid_profile563)_ 1.62832235018590790e+11 -Plasma_upper_hybrid_frequency_at_point_564_______________________________ (freq_plasma_upper_hybrid_profile564)_ 1.62755714190404083e+11 -Plasma_upper_hybrid_frequency_at_point_565_______________________________ (freq_plasma_upper_hybrid_profile565)_ 1.62679195700475677e+11 -Plasma_upper_hybrid_frequency_at_point_566_______________________________ (freq_plasma_upper_hybrid_profile566)_ 1.62602679207269684e+11 -Plasma_upper_hybrid_frequency_at_point_567_______________________________ (freq_plasma_upper_hybrid_profile567)_ 1.62526164369707092e+11 -Plasma_upper_hybrid_frequency_at_point_568_______________________________ (freq_plasma_upper_hybrid_profile568)_ 1.62449650847161926e+11 -Plasma_upper_hybrid_frequency_at_point_569_______________________________ (freq_plasma_upper_hybrid_profile569)_ 1.62373138299458862e+11 -Plasma_upper_hybrid_frequency_at_point_570_______________________________ (freq_plasma_upper_hybrid_profile570)_ 1.62296626386869690e+11 -Plasma_upper_hybrid_frequency_at_point_571_______________________________ (freq_plasma_upper_hybrid_profile571)_ 1.62220114770110382e+11 -Plasma_upper_hybrid_frequency_at_point_572_______________________________ (freq_plasma_upper_hybrid_profile572)_ 1.62143603110337952e+11 -Plasma_upper_hybrid_frequency_at_point_573_______________________________ (freq_plasma_upper_hybrid_profile573)_ 1.62067091069147552e+11 -Plasma_upper_hybrid_frequency_at_point_574_______________________________ (freq_plasma_upper_hybrid_profile574)_ 1.61990578308569092e+11 -Plasma_upper_hybrid_frequency_at_point_575_______________________________ (freq_plasma_upper_hybrid_profile575)_ 1.61914064491064362e+11 -Plasma_upper_hybrid_frequency_at_point_576_______________________________ (freq_plasma_upper_hybrid_profile576)_ 1.61837549279524048e+11 -Plasma_upper_hybrid_frequency_at_point_577_______________________________ (freq_plasma_upper_hybrid_profile577)_ 1.61761032337264465e+11 -Plasma_upper_hybrid_frequency_at_point_578_______________________________ (freq_plasma_upper_hybrid_profile578)_ 1.61684513328024506e+11 -Plasma_upper_hybrid_frequency_at_point_579_______________________________ (freq_plasma_upper_hybrid_profile579)_ 1.61607991915962799e+11 -Plasma_upper_hybrid_frequency_at_point_580_______________________________ (freq_plasma_upper_hybrid_profile580)_ 1.61531467765654327e+11 -Plasma_upper_hybrid_frequency_at_point_581_______________________________ (freq_plasma_upper_hybrid_profile581)_ 1.61454940542087646e+11 -Plasma_upper_hybrid_frequency_at_point_582_______________________________ (freq_plasma_upper_hybrid_profile582)_ 1.61378409910661591e+11 -Plasma_upper_hybrid_frequency_at_point_583_______________________________ (freq_plasma_upper_hybrid_profile583)_ 1.61301875537182465e+11 -Plasma_upper_hybrid_frequency_at_point_584_______________________________ (freq_plasma_upper_hybrid_profile584)_ 1.61225337087860718e+11 -Plasma_upper_hybrid_frequency_at_point_585_______________________________ (freq_plasma_upper_hybrid_profile585)_ 1.61148794229308167e+11 -Plasma_upper_hybrid_frequency_at_point_586_______________________________ (freq_plasma_upper_hybrid_profile586)_ 1.61072246628534760e+11 -Plasma_upper_hybrid_frequency_at_point_587_______________________________ (freq_plasma_upper_hybrid_profile587)_ 1.60995693952945465e+11 -Plasma_upper_hybrid_frequency_at_point_588_______________________________ (freq_plasma_upper_hybrid_profile588)_ 1.60919135870337585e+11 -Plasma_upper_hybrid_frequency_at_point_589_______________________________ (freq_plasma_upper_hybrid_profile589)_ 1.60842572048897125e+11 -Plasma_upper_hybrid_frequency_at_point_590_______________________________ (freq_plasma_upper_hybrid_profile590)_ 1.60766002157196442e+11 -Plasma_upper_hybrid_frequency_at_point_591_______________________________ (freq_plasma_upper_hybrid_profile591)_ 1.60689425864190582e+11 -Plasma_upper_hybrid_frequency_at_point_592_______________________________ (freq_plasma_upper_hybrid_profile592)_ 1.60612842839214600e+11 -Plasma_upper_hybrid_frequency_at_point_593_______________________________ (freq_plasma_upper_hybrid_profile593)_ 1.60536252751980438e+11 -Plasma_upper_hybrid_frequency_at_point_594_______________________________ (freq_plasma_upper_hybrid_profile594)_ 1.60459655272573853e+11 -Plasma_upper_hybrid_frequency_at_point_595_______________________________ (freq_plasma_upper_hybrid_profile595)_ 1.60383050071451416e+11 -Plasma_upper_hybrid_frequency_at_point_596_______________________________ (freq_plasma_upper_hybrid_profile596)_ 1.60306436819437408e+11 -Plasma_upper_hybrid_frequency_at_point_597_______________________________ (freq_plasma_upper_hybrid_profile597)_ 1.60229815187721008e+11 -Plasma_upper_hybrid_frequency_at_point_598_______________________________ (freq_plasma_upper_hybrid_profile598)_ 1.60153184847852783e+11 -Plasma_upper_hybrid_frequency_at_point_599_______________________________ (freq_plasma_upper_hybrid_profile599)_ 1.60076545471742340e+11 -Plasma_upper_hybrid_frequency_at_point_600_______________________________ (freq_plasma_upper_hybrid_profile600)_ 1.59999896731654633e+11 -Plasma_upper_hybrid_frequency_at_point_601_______________________________ (freq_plasma_upper_hybrid_profile601)_ 1.59923238300207397e+11 -Plasma_upper_hybrid_frequency_at_point_602_______________________________ (freq_plasma_upper_hybrid_profile602)_ 1.59846569850367828e+11 -Plasma_upper_hybrid_frequency_at_point_603_______________________________ (freq_plasma_upper_hybrid_profile603)_ 1.59769891055449799e+11 -Plasma_upper_hybrid_frequency_at_point_604_______________________________ (freq_plasma_upper_hybrid_profile604)_ 1.59693201589110626e+11 -Plasma_upper_hybrid_frequency_at_point_605_______________________________ (freq_plasma_upper_hybrid_profile605)_ 1.59616501125348083e+11 -Plasma_upper_hybrid_frequency_at_point_606_______________________________ (freq_plasma_upper_hybrid_profile606)_ 1.59539789338497559e+11 -Plasma_upper_hybrid_frequency_at_point_607_______________________________ (freq_plasma_upper_hybrid_profile607)_ 1.59463065903228912e+11 -Plasma_upper_hybrid_frequency_at_point_608_______________________________ (freq_plasma_upper_hybrid_profile608)_ 1.59386330494543121e+11 -Plasma_upper_hybrid_frequency_at_point_609_______________________________ (freq_plasma_upper_hybrid_profile609)_ 1.59309582787770050e+11 -Plasma_upper_hybrid_frequency_at_point_610_______________________________ (freq_plasma_upper_hybrid_profile610)_ 1.59232822458564545e+11 -Plasma_upper_hybrid_frequency_at_point_611_______________________________ (freq_plasma_upper_hybrid_profile611)_ 1.59156049182904022e+11 -Plasma_upper_hybrid_frequency_at_point_612_______________________________ (freq_plasma_upper_hybrid_profile612)_ 1.59079262637085175e+11 -Plasma_upper_hybrid_frequency_at_point_613_______________________________ (freq_plasma_upper_hybrid_profile613)_ 1.59002462497721100e+11 -Plasma_upper_hybrid_frequency_at_point_614_______________________________ (freq_plasma_upper_hybrid_profile614)_ 1.58925648441738068e+11 -Plasma_upper_hybrid_frequency_at_point_615_______________________________ (freq_plasma_upper_hybrid_profile615)_ 1.58848820146372772e+11 -Plasma_upper_hybrid_frequency_at_point_616_______________________________ (freq_plasma_upper_hybrid_profile616)_ 1.58771977289169067e+11 -Plasma_upper_hybrid_frequency_at_point_617_______________________________ (freq_plasma_upper_hybrid_profile617)_ 1.58695119547975128e+11 -Plasma_upper_hybrid_frequency_at_point_618_______________________________ (freq_plasma_upper_hybrid_profile618)_ 1.58618246600940277e+11 -Plasma_upper_hybrid_frequency_at_point_619_______________________________ (freq_plasma_upper_hybrid_profile619)_ 1.58541358126512146e+11 -Plasma_upper_hybrid_frequency_at_point_620_______________________________ (freq_plasma_upper_hybrid_profile620)_ 1.58464453803433380e+11 -Plasma_upper_hybrid_frequency_at_point_621_______________________________ (freq_plasma_upper_hybrid_profile621)_ 1.58387533310739075e+11 -Plasma_upper_hybrid_frequency_at_point_622_______________________________ (freq_plasma_upper_hybrid_profile622)_ 1.58310596327753204e+11 -Plasma_upper_hybrid_frequency_at_point_623_______________________________ (freq_plasma_upper_hybrid_profile623)_ 1.58233642534085968e+11 -Plasma_upper_hybrid_frequency_at_point_624_______________________________ (freq_plasma_upper_hybrid_profile624)_ 1.58156671609630676e+11 -Plasma_upper_hybrid_frequency_at_point_625_______________________________ (freq_plasma_upper_hybrid_profile625)_ 1.58079683234560760e+11 -Plasma_upper_hybrid_frequency_at_point_626_______________________________ (freq_plasma_upper_hybrid_profile626)_ 1.58002677089326691e+11 -Plasma_upper_hybrid_frequency_at_point_627_______________________________ (freq_plasma_upper_hybrid_profile627)_ 1.57925652854652954e+11 -Plasma_upper_hybrid_frequency_at_point_628_______________________________ (freq_plasma_upper_hybrid_profile628)_ 1.57848610211535156e+11 -Plasma_upper_hybrid_frequency_at_point_629_______________________________ (freq_plasma_upper_hybrid_profile629)_ 1.57771548841236786e+11 -Plasma_upper_hybrid_frequency_at_point_630_______________________________ (freq_plasma_upper_hybrid_profile630)_ 1.57694468425286346e+11 -Plasma_upper_hybrid_frequency_at_point_631_______________________________ (freq_plasma_upper_hybrid_profile631)_ 1.57617368645474335e+11 -Plasma_upper_hybrid_frequency_at_point_632_______________________________ (freq_plasma_upper_hybrid_profile632)_ 1.57540249183850220e+11 -Plasma_upper_hybrid_frequency_at_point_633_______________________________ (freq_plasma_upper_hybrid_profile633)_ 1.57463109722719208e+11 -Plasma_upper_hybrid_frequency_at_point_634_______________________________ (freq_plasma_upper_hybrid_profile634)_ 1.57385949944639557e+11 -Plasma_upper_hybrid_frequency_at_point_635_______________________________ (freq_plasma_upper_hybrid_profile635)_ 1.57308769532419312e+11 -Plasma_upper_hybrid_frequency_at_point_636_______________________________ (freq_plasma_upper_hybrid_profile636)_ 1.57231568169113373e+11 -Plasma_upper_hybrid_frequency_at_point_637_______________________________ (freq_plasma_upper_hybrid_profile637)_ 1.57154345538020416e+11 -Plasma_upper_hybrid_frequency_at_point_638_______________________________ (freq_plasma_upper_hybrid_profile638)_ 1.57077101322679840e+11 -Plasma_upper_hybrid_frequency_at_point_639_______________________________ (freq_plasma_upper_hybrid_profile639)_ 1.56999835206868866e+11 -Plasma_upper_hybrid_frequency_at_point_640_______________________________ (freq_plasma_upper_hybrid_profile640)_ 1.56922546874599396e+11 -Plasma_upper_hybrid_frequency_at_point_641_______________________________ (freq_plasma_upper_hybrid_profile641)_ 1.56845236010114899e+11 -Plasma_upper_hybrid_frequency_at_point_642_______________________________ (freq_plasma_upper_hybrid_profile642)_ 1.56767902297887726e+11 -Plasma_upper_hybrid_frequency_at_point_643_______________________________ (freq_plasma_upper_hybrid_profile643)_ 1.56690545422615509e+11 -Plasma_upper_hybrid_frequency_at_point_644_______________________________ (freq_plasma_upper_hybrid_profile644)_ 1.56613165069218719e+11 -Plasma_upper_hybrid_frequency_at_point_645_______________________________ (freq_plasma_upper_hybrid_profile645)_ 1.56535760922837189e+11 -Plasma_upper_hybrid_frequency_at_point_646_______________________________ (freq_plasma_upper_hybrid_profile646)_ 1.56458332668827301e+11 -Plasma_upper_hybrid_frequency_at_point_647_______________________________ (freq_plasma_upper_hybrid_profile647)_ 1.56380879992758850e+11 -Plasma_upper_hybrid_frequency_at_point_648_______________________________ (freq_plasma_upper_hybrid_profile648)_ 1.56303402580411987e+11 -Plasma_upper_hybrid_frequency_at_point_649_______________________________ (freq_plasma_upper_hybrid_profile649)_ 1.56225900117774384e+11 -Plasma_upper_hybrid_frequency_at_point_650_______________________________ (freq_plasma_upper_hybrid_profile650)_ 1.56148372291037750e+11 -Plasma_upper_hybrid_frequency_at_point_651_______________________________ (freq_plasma_upper_hybrid_profile651)_ 1.56070818786595306e+11 -Plasma_upper_hybrid_frequency_at_point_652_______________________________ (freq_plasma_upper_hybrid_profile652)_ 1.55993239291038269e+11 -Plasma_upper_hybrid_frequency_at_point_653_______________________________ (freq_plasma_upper_hybrid_profile653)_ 1.55915633491153168e+11 -Plasma_upper_hybrid_frequency_at_point_654_______________________________ (freq_plasma_upper_hybrid_profile654)_ 1.55838001073918427e+11 -Plasma_upper_hybrid_frequency_at_point_655_______________________________ (freq_plasma_upper_hybrid_profile655)_ 1.55760341726501709e+11 -Plasma_upper_hybrid_frequency_at_point_656_______________________________ (freq_plasma_upper_hybrid_profile656)_ 1.55682655136256561e+11 -Plasma_upper_hybrid_frequency_at_point_657_______________________________ (freq_plasma_upper_hybrid_profile657)_ 1.55604940990719391e+11 -Plasma_upper_hybrid_frequency_at_point_658_______________________________ (freq_plasma_upper_hybrid_profile658)_ 1.55527198977606506e+11 -Plasma_upper_hybrid_frequency_at_point_659_______________________________ (freq_plasma_upper_hybrid_profile659)_ 1.55449428784810944e+11 -Plasma_upper_hybrid_frequency_at_point_660_______________________________ (freq_plasma_upper_hybrid_profile660)_ 1.55371630100399506e+11 -Plasma_upper_hybrid_frequency_at_point_661_______________________________ (freq_plasma_upper_hybrid_profile661)_ 1.55293802612609619e+11 -Plasma_upper_hybrid_frequency_at_point_662_______________________________ (freq_plasma_upper_hybrid_profile662)_ 1.55215946009846222e+11 -Plasma_upper_hybrid_frequency_at_point_663_______________________________ (freq_plasma_upper_hybrid_profile663)_ 1.55138059980678741e+11 -Plasma_upper_hybrid_frequency_at_point_664_______________________________ (freq_plasma_upper_hybrid_profile664)_ 1.55060144213838043e+11 -Plasma_upper_hybrid_frequency_at_point_665_______________________________ (freq_plasma_upper_hybrid_profile665)_ 1.54982198398213318e+11 -Plasma_upper_hybrid_frequency_at_point_666_______________________________ (freq_plasma_upper_hybrid_profile666)_ 1.54904222222848877e+11 -Plasma_upper_hybrid_frequency_at_point_667_______________________________ (freq_plasma_upper_hybrid_profile667)_ 1.54826215376941254e+11 -Plasma_upper_hybrid_frequency_at_point_668_______________________________ (freq_plasma_upper_hybrid_profile668)_ 1.54748177549836090e+11 -Plasma_upper_hybrid_frequency_at_point_669_______________________________ (freq_plasma_upper_hybrid_profile669)_ 1.54670108431024750e+11 -Plasma_upper_hybrid_frequency_at_point_670_______________________________ (freq_plasma_upper_hybrid_profile670)_ 1.54592007710141754e+11 -Plasma_upper_hybrid_frequency_at_point_671_______________________________ (freq_plasma_upper_hybrid_profile671)_ 1.54513875076961121e+11 -Plasma_upper_hybrid_frequency_at_point_672_______________________________ (freq_plasma_upper_hybrid_profile672)_ 1.54435710221393677e+11 -Plasma_upper_hybrid_frequency_at_point_673_______________________________ (freq_plasma_upper_hybrid_profile673)_ 1.54357512833483612e+11 -Plasma_upper_hybrid_frequency_at_point_674_______________________________ (freq_plasma_upper_hybrid_profile674)_ 1.54279282603405701e+11 -Plasma_upper_hybrid_frequency_at_point_675_______________________________ (freq_plasma_upper_hybrid_profile675)_ 1.54201019221461884e+11 -Plasma_upper_hybrid_frequency_at_point_676_______________________________ (freq_plasma_upper_hybrid_profile676)_ 1.54122722378078461e+11 -Plasma_upper_hybrid_frequency_at_point_677_______________________________ (freq_plasma_upper_hybrid_profile677)_ 1.54044391763802521e+11 -Plasma_upper_hybrid_frequency_at_point_678_______________________________ (freq_plasma_upper_hybrid_profile678)_ 1.53966027069299377e+11 -Plasma_upper_hybrid_frequency_at_point_679_______________________________ (freq_plasma_upper_hybrid_profile679)_ 1.53887627985348938e+11 -Plasma_upper_hybrid_frequency_at_point_680_______________________________ (freq_plasma_upper_hybrid_profile680)_ 1.53809194202842865e+11 -Plasma_upper_hybrid_frequency_at_point_681_______________________________ (freq_plasma_upper_hybrid_profile681)_ 1.53730725412781281e+11 -Plasma_upper_hybrid_frequency_at_point_682_______________________________ (freq_plasma_upper_hybrid_profile682)_ 1.53652221306269775e+11 -Plasma_upper_hybrid_frequency_at_point_683_______________________________ (freq_plasma_upper_hybrid_profile683)_ 1.53573681574516144e+11 -Plasma_upper_hybrid_frequency_at_point_684_______________________________ (freq_plasma_upper_hybrid_profile684)_ 1.53495105908827179e+11 -Plasma_upper_hybrid_frequency_at_point_685_______________________________ (freq_plasma_upper_hybrid_profile685)_ 1.53416494000605743e+11 -Plasma_upper_hybrid_frequency_at_point_686_______________________________ (freq_plasma_upper_hybrid_profile686)_ 1.53337845541347321e+11 -Plasma_upper_hybrid_frequency_at_point_687_______________________________ (freq_plasma_upper_hybrid_profile687)_ 1.53259160222637085e+11 -Plasma_upper_hybrid_frequency_at_point_688_______________________________ (freq_plasma_upper_hybrid_profile688)_ 1.53180437736146606e+11 -Plasma_upper_hybrid_frequency_at_point_689_______________________________ (freq_plasma_upper_hybrid_profile689)_ 1.53101677773630707e+11 -Plasma_upper_hybrid_frequency_at_point_690_______________________________ (freq_plasma_upper_hybrid_profile690)_ 1.53022880026924286e+11 -Plasma_upper_hybrid_frequency_at_point_691_______________________________ (freq_plasma_upper_hybrid_profile691)_ 1.52944044187939178e+11 -Plasma_upper_hybrid_frequency_at_point_692_______________________________ (freq_plasma_upper_hybrid_profile692)_ 1.52865169948660797e+11 -Plasma_upper_hybrid_frequency_at_point_693_______________________________ (freq_plasma_upper_hybrid_profile693)_ 1.52786257001145233e+11 -Plasma_upper_hybrid_frequency_at_point_694_______________________________ (freq_plasma_upper_hybrid_profile694)_ 1.52707305037515717e+11 -Plasma_upper_hybrid_frequency_at_point_695_______________________________ (freq_plasma_upper_hybrid_profile695)_ 1.52628313749959747e+11 -Plasma_upper_hybrid_frequency_at_point_696_______________________________ (freq_plasma_upper_hybrid_profile696)_ 1.52549282830725586e+11 -Plasma_upper_hybrid_frequency_at_point_697_______________________________ (freq_plasma_upper_hybrid_profile697)_ 1.52470211972119232e+11 -Plasma_upper_hybrid_frequency_at_point_698_______________________________ (freq_plasma_upper_hybrid_profile698)_ 1.52391100866501160e+11 -Plasma_upper_hybrid_frequency_at_point_699_______________________________ (freq_plasma_upper_hybrid_profile699)_ 1.52311949206283020e+11 -Plasma_upper_hybrid_frequency_at_point_700_______________________________ (freq_plasma_upper_hybrid_profile700)_ 1.52232756683924561e+11 -Plasma_upper_hybrid_frequency_at_point_701_______________________________ (freq_plasma_upper_hybrid_profile701)_ 1.52153522991930237e+11 -Plasma_upper_hybrid_frequency_at_point_702_______________________________ (freq_plasma_upper_hybrid_profile702)_ 1.52074247822846008e+11 -Plasma_upper_hybrid_frequency_at_point_703_______________________________ (freq_plasma_upper_hybrid_profile703)_ 1.51994930869256134e+11 -Plasma_upper_hybrid_frequency_at_point_704_______________________________ (freq_plasma_upper_hybrid_profile704)_ 1.51915571823779938e+11 -Plasma_upper_hybrid_frequency_at_point_705_______________________________ (freq_plasma_upper_hybrid_profile705)_ 1.51836170379068451e+11 -Plasma_upper_hybrid_frequency_at_point_706_______________________________ (freq_plasma_upper_hybrid_profile706)_ 1.51756726227801239e+11 -Plasma_upper_hybrid_frequency_at_point_707_______________________________ (freq_plasma_upper_hybrid_profile707)_ 1.51677239062683105e+11 -Plasma_upper_hybrid_frequency_at_point_708_______________________________ (freq_plasma_upper_hybrid_profile708)_ 1.51597708576440735e+11 -Plasma_upper_hybrid_frequency_at_point_709_______________________________ (freq_plasma_upper_hybrid_profile709)_ 1.51518134461819489e+11 -Plasma_upper_hybrid_frequency_at_point_710_______________________________ (freq_plasma_upper_hybrid_profile710)_ 1.51438516411580231e+11 -Plasma_upper_hybrid_frequency_at_point_711_______________________________ (freq_plasma_upper_hybrid_profile711)_ 1.51358854118495697e+11 -Plasma_upper_hybrid_frequency_at_point_712_______________________________ (freq_plasma_upper_hybrid_profile712)_ 1.51279147275347534e+11 -Plasma_upper_hybrid_frequency_at_point_713_______________________________ (freq_plasma_upper_hybrid_profile713)_ 1.51199395574922729e+11 -Plasma_upper_hybrid_frequency_at_point_714_______________________________ (freq_plasma_upper_hybrid_profile714)_ 1.51119598710010651e+11 -Plasma_upper_hybrid_frequency_at_point_715_______________________________ (freq_plasma_upper_hybrid_profile715)_ 1.51039756373399139e+11 -Plasma_upper_hybrid_frequency_at_point_716_______________________________ (freq_plasma_upper_hybrid_profile716)_ 1.50959868257871826e+11 -Plasma_upper_hybrid_frequency_at_point_717_______________________________ (freq_plasma_upper_hybrid_profile717)_ 1.50879934056204285e+11 -Plasma_upper_hybrid_frequency_at_point_718_______________________________ (freq_plasma_upper_hybrid_profile718)_ 1.50799953461161041e+11 -Plasma_upper_hybrid_frequency_at_point_719_______________________________ (freq_plasma_upper_hybrid_profile719)_ 1.50719926165491974e+11 -Plasma_upper_hybrid_frequency_at_point_720_______________________________ (freq_plasma_upper_hybrid_profile720)_ 1.50639851861929016e+11 -Plasma_upper_hybrid_frequency_at_point_721_______________________________ (freq_plasma_upper_hybrid_profile721)_ 1.50559730243182953e+11 -Plasma_upper_hybrid_frequency_at_point_722_______________________________ (freq_plasma_upper_hybrid_profile722)_ 1.50479561001939789e+11 -Plasma_upper_hybrid_frequency_at_point_723_______________________________ (freq_plasma_upper_hybrid_profile723)_ 1.50399343830857605e+11 -Plasma_upper_hybrid_frequency_at_point_724_______________________________ (freq_plasma_upper_hybrid_profile724)_ 1.50319078422562927e+11 -Plasma_upper_hybrid_frequency_at_point_725_______________________________ (freq_plasma_upper_hybrid_profile725)_ 1.50238764469647583e+11 -Plasma_upper_hybrid_frequency_at_point_726_______________________________ (freq_plasma_upper_hybrid_profile726)_ 1.50158401664665070e+11 -Plasma_upper_hybrid_frequency_at_point_727_______________________________ (freq_plasma_upper_hybrid_profile727)_ 1.50077989700127289e+11 -Plasma_upper_hybrid_frequency_at_point_728_______________________________ (freq_plasma_upper_hybrid_profile728)_ 1.49997528268501038e+11 -Plasma_upper_hybrid_frequency_at_point_729_______________________________ (freq_plasma_upper_hybrid_profile729)_ 1.49917017062204651e+11 -Plasma_upper_hybrid_frequency_at_point_730_______________________________ (freq_plasma_upper_hybrid_profile730)_ 1.49836455773604584e+11 -Plasma_upper_hybrid_frequency_at_point_731_______________________________ (freq_plasma_upper_hybrid_profile731)_ 1.49755844095011719e+11 -Plasma_upper_hybrid_frequency_at_point_732_______________________________ (freq_plasma_upper_hybrid_profile732)_ 1.49675181718678253e+11 -Plasma_upper_hybrid_frequency_at_point_733_______________________________ (freq_plasma_upper_hybrid_profile733)_ 1.49594468336794098e+11 -Plasma_upper_hybrid_frequency_at_point_734_______________________________ (freq_plasma_upper_hybrid_profile734)_ 1.49513703641483246e+11 -Plasma_upper_hybrid_frequency_at_point_735_______________________________ (freq_plasma_upper_hybrid_profile735)_ 1.49432887324800629e+11 -Plasma_upper_hybrid_frequency_at_point_736_______________________________ (freq_plasma_upper_hybrid_profile736)_ 1.49352019078728180e+11 -Plasma_upper_hybrid_frequency_at_point_737_______________________________ (freq_plasma_upper_hybrid_profile737)_ 1.49271098595171814e+11 -Plasma_upper_hybrid_frequency_at_point_738_______________________________ (freq_plasma_upper_hybrid_profile738)_ 1.49190125565957550e+11 -Plasma_upper_hybrid_frequency_at_point_739_______________________________ (freq_plasma_upper_hybrid_profile739)_ 1.49109099682828156e+11 -Plasma_upper_hybrid_frequency_at_point_740_______________________________ (freq_plasma_upper_hybrid_profile740)_ 1.49028020637439606e+11 -Plasma_upper_hybrid_frequency_at_point_741_______________________________ (freq_plasma_upper_hybrid_profile741)_ 1.48946888121357574e+11 -Plasma_upper_hybrid_frequency_at_point_742_______________________________ (freq_plasma_upper_hybrid_profile742)_ 1.48865701826053772e+11 -Plasma_upper_hybrid_frequency_at_point_743_______________________________ (freq_plasma_upper_hybrid_profile743)_ 1.48784461442902527e+11 -Plasma_upper_hybrid_frequency_at_point_744_______________________________ (freq_plasma_upper_hybrid_profile744)_ 1.48703166663177094e+11 -Plasma_upper_hybrid_frequency_at_point_745_______________________________ (freq_plasma_upper_hybrid_profile745)_ 1.48621817178046173e+11 -Plasma_upper_hybrid_frequency_at_point_746_______________________________ (freq_plasma_upper_hybrid_profile746)_ 1.48540412678570312e+11 -Plasma_upper_hybrid_frequency_at_point_747_______________________________ (freq_plasma_upper_hybrid_profile747)_ 1.48458952855698303e+11 -Plasma_upper_hybrid_frequency_at_point_748_______________________________ (freq_plasma_upper_hybrid_profile748)_ 1.48377437400263428e+11 -Plasma_upper_hybrid_frequency_at_point_749_______________________________ (freq_plasma_upper_hybrid_profile749)_ 1.48295866002980194e+11 -Plasma_upper_hybrid_frequency_at_point_750_______________________________ (freq_plasma_upper_hybrid_profile750)_ 1.48214238354440277e+11 -Plasma_upper_hybrid_frequency_at_point_751_______________________________ (freq_plasma_upper_hybrid_profile751)_ 1.48132554145109283e+11 -Plasma_upper_hybrid_frequency_at_point_752_______________________________ (freq_plasma_upper_hybrid_profile752)_ 1.48050813065322723e+11 -Plasma_upper_hybrid_frequency_at_point_753_______________________________ (freq_plasma_upper_hybrid_profile753)_ 1.47969014805282715e+11 -Plasma_upper_hybrid_frequency_at_point_754_______________________________ (freq_plasma_upper_hybrid_profile754)_ 1.47887159055054077e+11 -Plasma_upper_hybrid_frequency_at_point_755_______________________________ (freq_plasma_upper_hybrid_profile755)_ 1.47805245504560608e+11 -Plasma_upper_hybrid_frequency_at_point_756_______________________________ (freq_plasma_upper_hybrid_profile756)_ 1.47723273843581696e+11 -Plasma_upper_hybrid_frequency_at_point_757_______________________________ (freq_plasma_upper_hybrid_profile757)_ 1.47641243761748230e+11 -Plasma_upper_hybrid_frequency_at_point_758_______________________________ (freq_plasma_upper_hybrid_profile758)_ 1.47559154948539154e+11 -Plasma_upper_hybrid_frequency_at_point_759_______________________________ (freq_plasma_upper_hybrid_profile759)_ 1.47477007093277679e+11 -Plasma_upper_hybrid_frequency_at_point_760_______________________________ (freq_plasma_upper_hybrid_profile760)_ 1.47394799885127533e+11 -Plasma_upper_hybrid_frequency_at_point_761_______________________________ (freq_plasma_upper_hybrid_profile761)_ 1.47312533013089020e+11 -Plasma_upper_hybrid_frequency_at_point_762_______________________________ (freq_plasma_upper_hybrid_profile762)_ 1.47230206165995728e+11 -Plasma_upper_hybrid_frequency_at_point_763_______________________________ (freq_plasma_upper_hybrid_profile763)_ 1.47147819032510193e+11 -Plasma_upper_hybrid_frequency_at_point_764_______________________________ (freq_plasma_upper_hybrid_profile764)_ 1.47065371301120605e+11 -Plasma_upper_hybrid_frequency_at_point_765_______________________________ (freq_plasma_upper_hybrid_profile765)_ 1.46982862660136566e+11 -Plasma_upper_hybrid_frequency_at_point_766_______________________________ (freq_plasma_upper_hybrid_profile766)_ 1.46900292797685699e+11 -Plasma_upper_hybrid_frequency_at_point_767_______________________________ (freq_plasma_upper_hybrid_profile767)_ 1.46817661401709503e+11 -Plasma_upper_hybrid_frequency_at_point_768_______________________________ (freq_plasma_upper_hybrid_profile768)_ 1.46734968159959656e+11 -Plasma_upper_hybrid_frequency_at_point_769_______________________________ (freq_plasma_upper_hybrid_profile769)_ 1.46652212759994171e+11 -Plasma_upper_hybrid_frequency_at_point_770_______________________________ (freq_plasma_upper_hybrid_profile770)_ 1.46569394889173492e+11 -Plasma_upper_hybrid_frequency_at_point_771_______________________________ (freq_plasma_upper_hybrid_profile771)_ 1.46486514234656677e+11 -Plasma_upper_hybrid_frequency_at_point_772_______________________________ (freq_plasma_upper_hybrid_profile772)_ 1.46403570483397400e+11 -Plasma_upper_hybrid_frequency_at_point_773_______________________________ (freq_plasma_upper_hybrid_profile773)_ 1.46320563322140137e+11 -Plasma_upper_hybrid_frequency_at_point_774_______________________________ (freq_plasma_upper_hybrid_profile774)_ 1.46237492437416199e+11 -Plasma_upper_hybrid_frequency_at_point_775_______________________________ (freq_plasma_upper_hybrid_profile775)_ 1.46154357515539978e+11 -Plasma_upper_hybrid_frequency_at_point_776_______________________________ (freq_plasma_upper_hybrid_profile776)_ 1.46071158242604645e+11 -Plasma_upper_hybrid_frequency_at_point_777_______________________________ (freq_plasma_upper_hybrid_profile777)_ 1.45987894304478607e+11 -Plasma_upper_hybrid_frequency_at_point_778_______________________________ (freq_plasma_upper_hybrid_profile778)_ 1.45904565386801086e+11 -Plasma_upper_hybrid_frequency_at_point_779_______________________________ (freq_plasma_upper_hybrid_profile779)_ 1.45821171174978699e+11 -Plasma_upper_hybrid_frequency_at_point_780_______________________________ (freq_plasma_upper_hybrid_profile780)_ 1.45737711354180817e+11 -Plasma_upper_hybrid_frequency_at_point_781_______________________________ (freq_plasma_upper_hybrid_profile781)_ 1.45654185609336151e+11 -Plasma_upper_hybrid_frequency_at_point_782_______________________________ (freq_plasma_upper_hybrid_profile782)_ 1.45570593625128174e+11 -Plasma_upper_hybrid_frequency_at_point_783_______________________________ (freq_plasma_upper_hybrid_profile783)_ 1.45486935085991577e+11 -Plasma_upper_hybrid_frequency_at_point_784_______________________________ (freq_plasma_upper_hybrid_profile784)_ 1.45403209676107849e+11 -Plasma_upper_hybrid_frequency_at_point_785_______________________________ (freq_plasma_upper_hybrid_profile785)_ 1.45319417079401398e+11 -Plasma_upper_hybrid_frequency_at_point_786_______________________________ (freq_plasma_upper_hybrid_profile786)_ 1.45235556979535370e+11 -Plasma_upper_hybrid_frequency_at_point_787_______________________________ (freq_plasma_upper_hybrid_profile787)_ 1.45151629059907532e+11 -Plasma_upper_hybrid_frequency_at_point_788_______________________________ (freq_plasma_upper_hybrid_profile788)_ 1.45067633003646210e+11 -Plasma_upper_hybrid_frequency_at_point_789_______________________________ (freq_plasma_upper_hybrid_profile789)_ 1.44983568493606201e+11 -Plasma_upper_hybrid_frequency_at_point_790_______________________________ (freq_plasma_upper_hybrid_profile790)_ 1.44899435212364441e+11 -Plasma_upper_hybrid_frequency_at_point_791_______________________________ (freq_plasma_upper_hybrid_profile791)_ 1.44815232842215973e+11 -Plasma_upper_hybrid_frequency_at_point_792_______________________________ (freq_plasma_upper_hybrid_profile792)_ 1.44730961065169800e+11 -Plasma_upper_hybrid_frequency_at_point_793_______________________________ (freq_plasma_upper_hybrid_profile793)_ 1.44646619562944580e+11 -Plasma_upper_hybrid_frequency_at_point_794_______________________________ (freq_plasma_upper_hybrid_profile794)_ 1.44562208016964386e+11 -Plasma_upper_hybrid_frequency_at_point_795_______________________________ (freq_plasma_upper_hybrid_profile795)_ 1.44477726108354584e+11 -Plasma_upper_hybrid_frequency_at_point_796_______________________________ (freq_plasma_upper_hybrid_profile796)_ 1.44393173517937592e+11 -Plasma_upper_hybrid_frequency_at_point_797_______________________________ (freq_plasma_upper_hybrid_profile797)_ 1.44308549926228394e+11 -Plasma_upper_hybrid_frequency_at_point_798_______________________________ (freq_plasma_upper_hybrid_profile798)_ 1.44223855013430573e+11 -Plasma_upper_hybrid_frequency_at_point_799_______________________________ (freq_plasma_upper_hybrid_profile799)_ 1.44139088459431641e+11 -Plasma_upper_hybrid_frequency_at_point_800_______________________________ (freq_plasma_upper_hybrid_profile800)_ 1.44054249943799164e+11 -Plasma_upper_hybrid_frequency_at_point_801_______________________________ (freq_plasma_upper_hybrid_profile801)_ 1.43969339145776001e+11 -Plasma_upper_hybrid_frequency_at_point_802_______________________________ (freq_plasma_upper_hybrid_profile802)_ 1.43884355744276215e+11 -Plasma_upper_hybrid_frequency_at_point_803_______________________________ (freq_plasma_upper_hybrid_profile803)_ 1.43799299417880493e+11 -Plasma_upper_hybrid_frequency_at_point_804_______________________________ (freq_plasma_upper_hybrid_profile804)_ 1.43714169844832001e+11 -Plasma_upper_hybrid_frequency_at_point_805_______________________________ (freq_plasma_upper_hybrid_profile805)_ 1.43628966703031769e+11 -Plasma_upper_hybrid_frequency_at_point_806_______________________________ (freq_plasma_upper_hybrid_profile806)_ 1.43543689670034332e+11 -Plasma_upper_hybrid_frequency_at_point_807_______________________________ (freq_plasma_upper_hybrid_profile807)_ 1.43458338423043335e+11 -Plasma_upper_hybrid_frequency_at_point_808_______________________________ (freq_plasma_upper_hybrid_profile808)_ 1.43372912638906921e+11 -Plasma_upper_hybrid_frequency_at_point_809_______________________________ (freq_plasma_upper_hybrid_profile809)_ 1.43287411994113434e+11 -Plasma_upper_hybrid_frequency_at_point_810_______________________________ (freq_plasma_upper_hybrid_profile810)_ 1.43201836164786713e+11 -Plasma_upper_hybrid_frequency_at_point_811_______________________________ (freq_plasma_upper_hybrid_profile811)_ 1.43116184826681671e+11 -Plasma_upper_hybrid_frequency_at_point_812_______________________________ (freq_plasma_upper_hybrid_profile812)_ 1.43030457655179871e+11 -Plasma_upper_hybrid_frequency_at_point_813_______________________________ (freq_plasma_upper_hybrid_profile813)_ 1.42944654325284668e+11 -Plasma_upper_hybrid_frequency_at_point_814_______________________________ (freq_plasma_upper_hybrid_profile814)_ 1.42858774511616913e+11 -Plasma_upper_hybrid_frequency_at_point_815_______________________________ (freq_plasma_upper_hybrid_profile815)_ 1.42772817888410095e+11 -Plasma_upper_hybrid_frequency_at_point_816_______________________________ (freq_plasma_upper_hybrid_profile816)_ 1.42686784129505920e+11 -Plasma_upper_hybrid_frequency_at_point_817_______________________________ (freq_plasma_upper_hybrid_profile817)_ 1.42600672908349609e+11 -Plasma_upper_hybrid_frequency_at_point_818_______________________________ (freq_plasma_upper_hybrid_profile818)_ 1.42514483897985077e+11 -Plasma_upper_hybrid_frequency_at_point_819_______________________________ (freq_plasma_upper_hybrid_profile819)_ 1.42428216771050568e+11 -Plasma_upper_hybrid_frequency_at_point_820_______________________________ (freq_plasma_upper_hybrid_profile820)_ 1.42341871199773529e+11 -Plasma_upper_hybrid_frequency_at_point_821_______________________________ (freq_plasma_upper_hybrid_profile821)_ 1.42255446855966248e+11 -Plasma_upper_hybrid_frequency_at_point_822_______________________________ (freq_plasma_upper_hybrid_profile822)_ 1.42168943411020813e+11 -Plasma_upper_hybrid_frequency_at_point_823_______________________________ (freq_plasma_upper_hybrid_profile823)_ 1.42082360535904633e+11 -Plasma_upper_hybrid_frequency_at_point_824_______________________________ (freq_plasma_upper_hybrid_profile824)_ 1.41995697901155243e+11 -Plasma_upper_hybrid_frequency_at_point_825_______________________________ (freq_plasma_upper_hybrid_profile825)_ 1.41908955176875977e+11 -Plasma_upper_hybrid_frequency_at_point_826_______________________________ (freq_plasma_upper_hybrid_profile826)_ 1.41822132032730591e+11 -Plasma_upper_hybrid_frequency_at_point_827_______________________________ (freq_plasma_upper_hybrid_profile827)_ 1.41735228137938934e+11 -Plasma_upper_hybrid_frequency_at_point_828_______________________________ (freq_plasma_upper_hybrid_profile828)_ 1.41648243161271545e+11 -Plasma_upper_hybrid_frequency_at_point_829_______________________________ (freq_plasma_upper_hybrid_profile829)_ 1.41561176771045135e+11 -Plasma_upper_hybrid_frequency_at_point_830_______________________________ (freq_plasma_upper_hybrid_profile830)_ 1.41474028635117493e+11 -Plasma_upper_hybrid_frequency_at_point_831_______________________________ (freq_plasma_upper_hybrid_profile831)_ 1.41386798420882385e+11 -Plasma_upper_hybrid_frequency_at_point_832_______________________________ (freq_plasma_upper_hybrid_profile832)_ 1.41299485795264923e+11 -Plasma_upper_hybrid_frequency_at_point_833_______________________________ (freq_plasma_upper_hybrid_profile833)_ 1.41212090424716187e+11 -Plasma_upper_hybrid_frequency_at_point_834_______________________________ (freq_plasma_upper_hybrid_profile834)_ 1.41124611975208466e+11 -Plasma_upper_hybrid_frequency_at_point_835_______________________________ (freq_plasma_upper_hybrid_profile835)_ 1.41037050112230011e+11 -Plasma_upper_hybrid_frequency_at_point_836_______________________________ (freq_plasma_upper_hybrid_profile836)_ 1.40949404500780121e+11 -Plasma_upper_hybrid_frequency_at_point_837_______________________________ (freq_plasma_upper_hybrid_profile837)_ 1.40861674805363800e+11 -Plasma_upper_hybrid_frequency_at_point_838_______________________________ (freq_plasma_upper_hybrid_profile838)_ 1.40773860689986877e+11 -Plasma_upper_hybrid_frequency_at_point_839_______________________________ (freq_plasma_upper_hybrid_profile839)_ 1.40685961818150757e+11 -Plasma_upper_hybrid_frequency_at_point_840_______________________________ (freq_plasma_upper_hybrid_profile840)_ 1.40597977852847229e+11 -Plasma_upper_hybrid_frequency_at_point_841_______________________________ (freq_plasma_upper_hybrid_profile841)_ 1.40509908456553101e+11 -Plasma_upper_hybrid_frequency_at_point_842_______________________________ (freq_plasma_upper_hybrid_profile842)_ 1.40421753291225250e+11 -Plasma_upper_hybrid_frequency_at_point_843_______________________________ (freq_plasma_upper_hybrid_profile843)_ 1.40333512018295197e+11 -Plasma_upper_hybrid_frequency_at_point_844_______________________________ (freq_plasma_upper_hybrid_profile844)_ 1.40245184298663849e+11 -Plasma_upper_hybrid_frequency_at_point_845_______________________________ (freq_plasma_upper_hybrid_profile845)_ 1.40156769792696045e+11 -Plasma_upper_hybrid_frequency_at_point_846_______________________________ (freq_plasma_upper_hybrid_profile846)_ 1.40068268160215515e+11 -Plasma_upper_hybrid_frequency_at_point_847_______________________________ (freq_plasma_upper_hybrid_profile847)_ 1.39979679060499176e+11 -Plasma_upper_hybrid_frequency_at_point_848_______________________________ (freq_plasma_upper_hybrid_profile848)_ 1.39891002152272064e+11 -Plasma_upper_hybrid_frequency_at_point_849_______________________________ (freq_plasma_upper_hybrid_profile849)_ 1.39802237093701477e+11 -Plasma_upper_hybrid_frequency_at_point_850_______________________________ (freq_plasma_upper_hybrid_profile850)_ 1.39713383542391998e+11 -Plasma_upper_hybrid_frequency_at_point_851_______________________________ (freq_plasma_upper_hybrid_profile851)_ 1.39624441155379639e+11 -Plasma_upper_hybrid_frequency_at_point_852_______________________________ (freq_plasma_upper_hybrid_profile852)_ 1.39535409589126556e+11 -Plasma_upper_hybrid_frequency_at_point_853_______________________________ (freq_plasma_upper_hybrid_profile853)_ 1.39446288499515350e+11 -Plasma_upper_hybrid_frequency_at_point_854_______________________________ (freq_plasma_upper_hybrid_profile854)_ 1.39357077541843567e+11 -Plasma_upper_hybrid_frequency_at_point_855_______________________________ (freq_plasma_upper_hybrid_profile855)_ 1.39267776370818085e+11 -Plasma_upper_hybrid_frequency_at_point_856_______________________________ (freq_plasma_upper_hybrid_profile856)_ 1.39178384640549591e+11 -Plasma_upper_hybrid_frequency_at_point_857_______________________________ (freq_plasma_upper_hybrid_profile857)_ 1.39088902004546539e+11 -Plasma_upper_hybrid_frequency_at_point_858_______________________________ (freq_plasma_upper_hybrid_profile858)_ 1.38999328115710052e+11 -Plasma_upper_hybrid_frequency_at_point_859_______________________________ (freq_plasma_upper_hybrid_profile859)_ 1.38909662626327637e+11 -Plasma_upper_hybrid_frequency_at_point_860_______________________________ (freq_plasma_upper_hybrid_profile860)_ 1.38819905188067719e+11 -Plasma_upper_hybrid_frequency_at_point_861_______________________________ (freq_plasma_upper_hybrid_profile861)_ 1.38730055451973907e+11 -Plasma_upper_hybrid_frequency_at_point_862_______________________________ (freq_plasma_upper_hybrid_profile862)_ 1.38640113068458832e+11 -Plasma_upper_hybrid_frequency_at_point_863_______________________________ (freq_plasma_upper_hybrid_profile863)_ 1.38550077687298828e+11 -Plasma_upper_hybrid_frequency_at_point_864_______________________________ (freq_plasma_upper_hybrid_profile864)_ 1.38459948957627380e+11 -Plasma_upper_hybrid_frequency_at_point_865_______________________________ (freq_plasma_upper_hybrid_profile865)_ 1.38369726527929901e+11 -Plasma_upper_hybrid_frequency_at_point_866_______________________________ (freq_plasma_upper_hybrid_profile866)_ 1.38279410046037231e+11 -Plasma_upper_hybrid_frequency_at_point_867_______________________________ (freq_plasma_upper_hybrid_profile867)_ 1.38188999159119965e+11 -Plasma_upper_hybrid_frequency_at_point_868_______________________________ (freq_plasma_upper_hybrid_profile868)_ 1.38098493513682312e+11 -Plasma_upper_hybrid_frequency_at_point_869_______________________________ (freq_plasma_upper_hybrid_profile869)_ 1.38007892755556091e+11 -Plasma_upper_hybrid_frequency_at_point_870_______________________________ (freq_plasma_upper_hybrid_profile870)_ 1.37917196529894623e+11 -Plasma_upper_hybrid_frequency_at_point_871_______________________________ (freq_plasma_upper_hybrid_profile871)_ 1.37826404481166595e+11 -Plasma_upper_hybrid_frequency_at_point_872_______________________________ (freq_plasma_upper_hybrid_profile872)_ 1.37735516253149902e+11 -Plasma_upper_hybrid_frequency_at_point_873_______________________________ (freq_plasma_upper_hybrid_profile873)_ 1.37644531488925568e+11 -Plasma_upper_hybrid_frequency_at_point_874_______________________________ (freq_plasma_upper_hybrid_profile874)_ 1.37553449830871246e+11 -Plasma_upper_hybrid_frequency_at_point_875_______________________________ (freq_plasma_upper_hybrid_profile875)_ 1.37462270920655334e+11 -Plasma_upper_hybrid_frequency_at_point_876_______________________________ (freq_plasma_upper_hybrid_profile876)_ 1.37370994399230331e+11 -Plasma_upper_hybrid_frequency_at_point_877_______________________________ (freq_plasma_upper_hybrid_profile877)_ 1.37279619906826721e+11 -Plasma_upper_hybrid_frequency_at_point_878_______________________________ (freq_plasma_upper_hybrid_profile878)_ 1.37188147082946472e+11 -Plasma_upper_hybrid_frequency_at_point_879_______________________________ (freq_plasma_upper_hybrid_profile879)_ 1.37096575566356689e+11 -Plasma_upper_hybrid_frequency_at_point_880_______________________________ (freq_plasma_upper_hybrid_profile880)_ 1.37004904995083160e+11 -Plasma_upper_hybrid_frequency_at_point_881_______________________________ (freq_plasma_upper_hybrid_profile881)_ 1.36913135006403793e+11 -Plasma_upper_hybrid_frequency_at_point_882_______________________________ (freq_plasma_upper_hybrid_profile882)_ 1.36821265236842346e+11 -Plasma_upper_hybrid_frequency_at_point_883_______________________________ (freq_plasma_upper_hybrid_profile883)_ 1.36729295322161377e+11 -Plasma_upper_hybrid_frequency_at_point_884_______________________________ (freq_plasma_upper_hybrid_profile884)_ 1.36637224897356216e+11 -Plasma_upper_hybrid_frequency_at_point_885_______________________________ (freq_plasma_upper_hybrid_profile885)_ 1.36545053596647797e+11 -Plasma_upper_hybrid_frequency_at_point_886_______________________________ (freq_plasma_upper_hybrid_profile886)_ 1.36452781053476410e+11 -Plasma_upper_hybrid_frequency_at_point_887_______________________________ (freq_plasma_upper_hybrid_profile887)_ 1.36360406900494659e+11 -Plasma_upper_hybrid_frequency_at_point_888_______________________________ (freq_plasma_upper_hybrid_profile888)_ 1.36267930769560837e+11 -Plasma_upper_hybrid_frequency_at_point_889_______________________________ (freq_plasma_upper_hybrid_profile889)_ 1.36175352291732132e+11 -Plasma_upper_hybrid_frequency_at_point_890_______________________________ (freq_plasma_upper_hybrid_profile890)_ 1.36082671097257767e+11 -Plasma_upper_hybrid_frequency_at_point_891_______________________________ (freq_plasma_upper_hybrid_profile891)_ 1.35989886815571991e+11 -Plasma_upper_hybrid_frequency_at_point_892_______________________________ (freq_plasma_upper_hybrid_profile892)_ 1.35896999075287338e+11 -Plasma_upper_hybrid_frequency_at_point_893_______________________________ (freq_plasma_upper_hybrid_profile893)_ 1.35804007504187485e+11 -Plasma_upper_hybrid_frequency_at_point_894_______________________________ (freq_plasma_upper_hybrid_profile894)_ 1.35710911729220383e+11 -Plasma_upper_hybrid_frequency_at_point_895_______________________________ (freq_plasma_upper_hybrid_profile895)_ 1.35617711376491028e+11 -Plasma_upper_hybrid_frequency_at_point_896_______________________________ (freq_plasma_upper_hybrid_profile896)_ 1.35524406071254517e+11 -Plasma_upper_hybrid_frequency_at_point_897_______________________________ (freq_plasma_upper_hybrid_profile897)_ 1.35430995437908722e+11 -Plasma_upper_hybrid_frequency_at_point_898_______________________________ (freq_plasma_upper_hybrid_profile898)_ 1.35337479099987305e+11 -Plasma_upper_hybrid_frequency_at_point_899_______________________________ (freq_plasma_upper_hybrid_profile899)_ 1.35243856680152283e+11 -Plasma_upper_hybrid_frequency_at_point_900_______________________________ (freq_plasma_upper_hybrid_profile900)_ 1.35150127800186798e+11 -Plasma_upper_hybrid_frequency_at_point_901_______________________________ (freq_plasma_upper_hybrid_profile901)_ 1.35056292080987885e+11 -Plasma_upper_hybrid_frequency_at_point_902_______________________________ (freq_plasma_upper_hybrid_profile902)_ 1.34962349142558914e+11 -Plasma_upper_hybrid_frequency_at_point_903_______________________________ (freq_plasma_upper_hybrid_profile903)_ 1.34868298604002350e+11 -Plasma_upper_hybrid_frequency_at_point_904_______________________________ (freq_plasma_upper_hybrid_profile904)_ 1.34774140083512085e+11 -Plasma_upper_hybrid_frequency_at_point_905_______________________________ (freq_plasma_upper_hybrid_profile905)_ 1.34679873198366043e+11 -Plasma_upper_hybrid_frequency_at_point_906_______________________________ (freq_plasma_upper_hybrid_profile906)_ 1.34585497564918579e+11 -Plasma_upper_hybrid_frequency_at_point_907_______________________________ (freq_plasma_upper_hybrid_profile907)_ 1.34491012798592850e+11 -Plasma_upper_hybrid_frequency_at_point_908_______________________________ (freq_plasma_upper_hybrid_profile908)_ 1.34396418513873138e+11 -Plasma_upper_hybrid_frequency_at_point_909_______________________________ (freq_plasma_upper_hybrid_profile909)_ 1.34301714324297119e+11 -Plasma_upper_hybrid_frequency_at_point_910_______________________________ (freq_plasma_upper_hybrid_profile910)_ 1.34206899842448074e+11 -Plasma_upper_hybrid_frequency_at_point_911_______________________________ (freq_plasma_upper_hybrid_profile911)_ 1.34111974679947144e+11 -Plasma_upper_hybrid_frequency_at_point_912_______________________________ (freq_plasma_upper_hybrid_profile912)_ 1.34016938447445374e+11 -Plasma_upper_hybrid_frequency_at_point_913_______________________________ (freq_plasma_upper_hybrid_profile913)_ 1.33921790754615829e+11 -Plasma_upper_hybrid_frequency_at_point_914_______________________________ (freq_plasma_upper_hybrid_profile914)_ 1.33826531210145569e+11 -Plasma_upper_hybrid_frequency_at_point_915_______________________________ (freq_plasma_upper_hybrid_profile915)_ 1.33731159421727707e+11 -Plasma_upper_hybrid_frequency_at_point_916_______________________________ (freq_plasma_upper_hybrid_profile916)_ 1.33635674996053116e+11 -Plasma_upper_hybrid_frequency_at_point_917_______________________________ (freq_plasma_upper_hybrid_profile917)_ 1.33540077538802582e+11 -Plasma_upper_hybrid_frequency_at_point_918_______________________________ (freq_plasma_upper_hybrid_profile918)_ 1.33444366654638397e+11 -Plasma_upper_hybrid_frequency_at_point_919_______________________________ (freq_plasma_upper_hybrid_profile919)_ 1.33348541947196091e+11 -Plasma_upper_hybrid_frequency_at_point_920_______________________________ (freq_plasma_upper_hybrid_profile920)_ 1.33252603019076324e+11 -Plasma_upper_hybrid_frequency_at_point_921_______________________________ (freq_plasma_upper_hybrid_profile921)_ 1.33156549471836273e+11 -Plasma_upper_hybrid_frequency_at_point_922_______________________________ (freq_plasma_upper_hybrid_profile922)_ 1.33060380905981445e+11 -Plasma_upper_hybrid_frequency_at_point_923_______________________________ (freq_plasma_upper_hybrid_profile923)_ 1.32964096920956985e+11 -Plasma_upper_hybrid_frequency_at_point_924_______________________________ (freq_plasma_upper_hybrid_profile924)_ 1.32867697115139359e+11 -Plasma_upper_hybrid_frequency_at_point_925_______________________________ (freq_plasma_upper_hybrid_profile925)_ 1.32771181085827454e+11 -Plasma_upper_hybrid_frequency_at_point_926_______________________________ (freq_plasma_upper_hybrid_profile926)_ 1.32674548429234283e+11 -Plasma_upper_hybrid_frequency_at_point_927_______________________________ (freq_plasma_upper_hybrid_profile927)_ 1.32577798740477982e+11 -Plasma_upper_hybrid_frequency_at_point_928_______________________________ (freq_plasma_upper_hybrid_profile928)_ 1.32480931613573242e+11 -Plasma_upper_hybrid_frequency_at_point_929_______________________________ (freq_plasma_upper_hybrid_profile929)_ 1.32383946641422272e+11 -Plasma_upper_hybrid_frequency_at_point_930_______________________________ (freq_plasma_upper_hybrid_profile930)_ 1.32286843415806091e+11 -Plasma_upper_hybrid_frequency_at_point_931_______________________________ (freq_plasma_upper_hybrid_profile931)_ 1.32189621527375443e+11 -Plasma_upper_hybrid_frequency_at_point_932_______________________________ (freq_plasma_upper_hybrid_profile932)_ 1.32092280565641830e+11 -Plasma_upper_hybrid_frequency_at_point_933_______________________________ (freq_plasma_upper_hybrid_profile933)_ 1.31994820118968353e+11 -Plasma_upper_hybrid_frequency_at_point_934_______________________________ (freq_plasma_upper_hybrid_profile934)_ 1.31897239774560730e+11 -Plasma_upper_hybrid_frequency_at_point_935_______________________________ (freq_plasma_upper_hybrid_profile935)_ 1.31799539118457825e+11 -Plasma_upper_hybrid_frequency_at_point_936_______________________________ (freq_plasma_upper_hybrid_profile936)_ 1.31701717735522629e+11 -Plasma_upper_hybrid_frequency_at_point_937_______________________________ (freq_plasma_upper_hybrid_profile937)_ 1.31603775209432693e+11 -Plasma_upper_hybrid_frequency_at_point_938_______________________________ (freq_plasma_upper_hybrid_profile938)_ 1.31505711122670883e+11 -Plasma_upper_hybrid_frequency_at_point_939_______________________________ (freq_plasma_upper_hybrid_profile939)_ 1.31407525056515793e+11 -Plasma_upper_hybrid_frequency_at_point_940_______________________________ (freq_plasma_upper_hybrid_profile940)_ 1.31309216591032181e+11 -Plasma_upper_hybrid_frequency_at_point_941_______________________________ (freq_plasma_upper_hybrid_profile941)_ 1.31210785305061508e+11 -Plasma_upper_hybrid_frequency_at_point_942_______________________________ (freq_plasma_upper_hybrid_profile942)_ 1.31112230776211960e+11 -Plasma_upper_hybrid_frequency_at_point_943_______________________________ (freq_plasma_upper_hybrid_profile943)_ 1.31013552580849060e+11 -Plasma_upper_hybrid_frequency_at_point_944_______________________________ (freq_plasma_upper_hybrid_profile944)_ 1.30914750294085449e+11 -Plasma_upper_hybrid_frequency_at_point_945_______________________________ (freq_plasma_upper_hybrid_profile945)_ 1.30815823489771347e+11 -Plasma_upper_hybrid_frequency_at_point_946_______________________________ (freq_plasma_upper_hybrid_profile946)_ 1.30716771740484253e+11 -Plasma_upper_hybrid_frequency_at_point_947_______________________________ (freq_plasma_upper_hybrid_profile947)_ 1.30617594617519180e+11 -Plasma_upper_hybrid_frequency_at_point_948_______________________________ (freq_plasma_upper_hybrid_profile948)_ 1.30518291690878250e+11 -Plasma_upper_hybrid_frequency_at_point_949_______________________________ (freq_plasma_upper_hybrid_profile949)_ 1.30418862529260818e+11 -Plasma_upper_hybrid_frequency_at_point_950_______________________________ (freq_plasma_upper_hybrid_profile950)_ 1.30319306700052856e+11 -Plasma_upper_hybrid_frequency_at_point_951_______________________________ (freq_plasma_upper_hybrid_profile951)_ 1.30219623769316910e+11 -Plasma_upper_hybrid_frequency_at_point_952_______________________________ (freq_plasma_upper_hybrid_profile952)_ 1.30119813301781448e+11 -Plasma_upper_hybrid_frequency_at_point_953_______________________________ (freq_plasma_upper_hybrid_profile953)_ 1.30019874860830521e+11 -Plasma_upper_hybrid_frequency_at_point_954_______________________________ (freq_plasma_upper_hybrid_profile954)_ 1.29919808008492981e+11 -Plasma_upper_hybrid_frequency_at_point_955_______________________________ (freq_plasma_upper_hybrid_profile955)_ 1.29819612305432098e+11 -Plasma_upper_hybrid_frequency_at_point_956_______________________________ (freq_plasma_upper_hybrid_profile956)_ 1.29719287310934555e+11 -Plasma_upper_hybrid_frequency_at_point_957_______________________________ (freq_plasma_upper_hybrid_profile957)_ 1.29618832582899765e+11 -Plasma_upper_hybrid_frequency_at_point_958_______________________________ (freq_plasma_upper_hybrid_profile958)_ 1.29518247677828903e+11 -Plasma_upper_hybrid_frequency_at_point_959_______________________________ (freq_plasma_upper_hybrid_profile959)_ 1.29417532150813934e+11 -Plasma_upper_hybrid_frequency_at_point_960_______________________________ (freq_plasma_upper_hybrid_profile960)_ 1.29316685555526611e+11 -Plasma_upper_hybrid_frequency_at_point_961_______________________________ (freq_plasma_upper_hybrid_profile961)_ 1.29215707444207184e+11 -Plasma_upper_hybrid_frequency_at_point_962_______________________________ (freq_plasma_upper_hybrid_profile962)_ 1.29114597367653244e+11 -Plasma_upper_hybrid_frequency_at_point_963_______________________________ (freq_plasma_upper_hybrid_profile963)_ 1.29013354875208359e+11 -Plasma_upper_hybrid_frequency_at_point_964_______________________________ (freq_plasma_upper_hybrid_profile964)_ 1.28911979514750671e+11 -Plasma_upper_hybrid_frequency_at_point_965_______________________________ (freq_plasma_upper_hybrid_profile965)_ 1.28810470832681427e+11 -Plasma_upper_hybrid_frequency_at_point_966_______________________________ (freq_plasma_upper_hybrid_profile966)_ 1.28708828373913361e+11 -Plasma_upper_hybrid_frequency_at_point_967_______________________________ (freq_plasma_upper_hybrid_profile967)_ 1.28607051681858826e+11 -Plasma_upper_hybrid_frequency_at_point_968_______________________________ (freq_plasma_upper_hybrid_profile968)_ 1.28505140298418427e+11 -Plasma_upper_hybrid_frequency_at_point_969_______________________________ (freq_plasma_upper_hybrid_profile969)_ 1.28403093763968719e+11 -Plasma_upper_hybrid_frequency_at_point_970_______________________________ (freq_plasma_upper_hybrid_profile970)_ 1.28300911617350571e+11 -Plasma_upper_hybrid_frequency_at_point_971_______________________________ (freq_plasma_upper_hybrid_profile971)_ 1.28198593395856796e+11 -Plasma_upper_hybrid_frequency_at_point_972_______________________________ (freq_plasma_upper_hybrid_profile972)_ 1.27878561679414917e+11 -Plasma_upper_hybrid_frequency_at_point_973_______________________________ (freq_plasma_upper_hybrid_profile973)_ 1.27557795224177322e+11 -Plasma_upper_hybrid_frequency_at_point_974_______________________________ (freq_plasma_upper_hybrid_profile974)_ 1.27236288334825851e+11 -Plasma_upper_hybrid_frequency_at_point_975_______________________________ (freq_plasma_upper_hybrid_profile975)_ 1.26914035245789154e+11 -Plasma_upper_hybrid_frequency_at_point_976_______________________________ (freq_plasma_upper_hybrid_profile976)_ 1.26591030120011017e+11 -Plasma_upper_hybrid_frequency_at_point_977_______________________________ (freq_plasma_upper_hybrid_profile977)_ 1.26267267047690765e+11 -Plasma_upper_hybrid_frequency_at_point_978_______________________________ (freq_plasma_upper_hybrid_profile978)_ 1.25942740044995132e+11 -Plasma_upper_hybrid_frequency_at_point_979_______________________________ (freq_plasma_upper_hybrid_profile979)_ 1.25617443052740479e+11 -Plasma_upper_hybrid_frequency_at_point_980_______________________________ (freq_plasma_upper_hybrid_profile980)_ 1.25291369935045151e+11 -Plasma_upper_hybrid_frequency_at_point_981_______________________________ (freq_plasma_upper_hybrid_profile981)_ 1.24964514477950409e+11 -Plasma_upper_hybrid_frequency_at_point_982_______________________________ (freq_plasma_upper_hybrid_profile982)_ 1.24636870388009598e+11 -Plasma_upper_hybrid_frequency_at_point_983_______________________________ (freq_plasma_upper_hybrid_profile983)_ 1.24308431290844345e+11 -Plasma_upper_hybrid_frequency_at_point_984_______________________________ (freq_plasma_upper_hybrid_profile984)_ 1.23979190729666977e+11 -Plasma_upper_hybrid_frequency_at_point_985_______________________________ (freq_plasma_upper_hybrid_profile985)_ 1.23649142163768082e+11 -Plasma_upper_hybrid_frequency_at_point_986_______________________________ (freq_plasma_upper_hybrid_profile986)_ 1.23318278966968353e+11 -Plasma_upper_hybrid_frequency_at_point_987_______________________________ (freq_plasma_upper_hybrid_profile987)_ 1.22986594426033585e+11 -Plasma_upper_hybrid_frequency_at_point_988_______________________________ (freq_plasma_upper_hybrid_profile988)_ 1.22654081739051651e+11 -Plasma_upper_hybrid_frequency_at_point_989_______________________________ (freq_plasma_upper_hybrid_profile989)_ 1.22320734013770538e+11 -Plasma_upper_hybrid_frequency_at_point_990_______________________________ (freq_plasma_upper_hybrid_profile990)_ 1.21986544265896149e+11 -Plasma_upper_hybrid_frequency_at_point_991_______________________________ (freq_plasma_upper_hybrid_profile991)_ 1.21651505417348801e+11 -Plasma_upper_hybrid_frequency_at_point_992_______________________________ (freq_plasma_upper_hybrid_profile992)_ 1.21315610294476929e+11 -Plasma_upper_hybrid_frequency_at_point_993_______________________________ (freq_plasma_upper_hybrid_profile993)_ 1.20978851626227203e+11 -Plasma_upper_hybrid_frequency_at_point_994_______________________________ (freq_plasma_upper_hybrid_profile994)_ 1.20641222042268936e+11 -Plasma_upper_hybrid_frequency_at_point_995_______________________________ (freq_plasma_upper_hybrid_profile995)_ 1.20302714071072510e+11 -Plasma_upper_hybrid_frequency_at_point_996_______________________________ (freq_plasma_upper_hybrid_profile996)_ 1.19963320137939148e+11 -Plasma_upper_hybrid_frequency_at_point_997_______________________________ (freq_plasma_upper_hybrid_profile997)_ 1.19623032562981766e+11 -Plasma_upper_hybrid_frequency_at_point_998_______________________________ (freq_plasma_upper_hybrid_profile998)_ 1.19281843559054245e+11 -Plasma_upper_hybrid_frequency_at_point_999_______________________________ (freq_plasma_upper_hybrid_profile999)_ 1.18939745229628693e+11 -Plasma_upper_hybrid_frequency_at_point_1000______________________________ (freq_plasma_upper_hybrid_profile1000)_ 1.18596729566617813e+11 -Plasma_upper_hybrid_frequency_at_point_1001______________________________ (freq_plasma_upper_hybrid_profile1001)_ 1.18252788448141922e+11 -Volume_averaged_electron-electron_Coulomb_log_(Λₑₑ)______________________ (plasma_coulomb_log_electron_electron_vol_avg)_ 1.74314164550027826e+01 OP -Electron-electron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_electron_profile0)_ 1.80042338073384407e+01 -Electron-electron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_electron_profile1)_ 1.80042297196837175e+01 -Electron-electron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_electron_profile2)_ 1.80042174566294158e+01 -Electron-electron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_electron_profile3)_ 1.80041970179051134e+01 -Electron-electron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_electron_profile4)_ 1.80041684030601097e+01 -Electron-electron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_electron_profile5)_ 1.80041316114633752e+01 -Electron-electron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_electron_profile6)_ 1.80040866423035233e+01 -Electron-electron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_electron_profile7)_ 1.80040334945887857e+01 -Electron-electron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_electron_profile8)_ 1.80039721671469195e+01 -Electron-electron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_electron_profile9)_ 1.80039026586251794e+01 -Electron-electron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_electron_profile10)_ 1.80038249674902104e+01 -Electron-electron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_electron_profile11)_ 1.80037390920279812e+01 -Electron-electron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_electron_profile12)_ 1.80036450303436908e+01 -Electron-electron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_electron_profile13)_ 1.80035427803616450e+01 -Electron-electron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_electron_profile14)_ 1.80034323398251637e+01 -Electron-electron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_electron_profile15)_ 1.80033137062964315e+01 -Electron-electron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_electron_profile16)_ 1.80031868771563737e+01 -Electron-electron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_electron_profile17)_ 1.80030518496045211e+01 -Electron-electron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_electron_profile18)_ 1.80029086206588254e+01 -Electron-electron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_electron_profile19)_ 1.80027571871555168e+01 -Electron-electron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_electron_profile20)_ 1.80025975457489196e+01 -Electron-electron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_electron_profile21)_ 1.80024296929112566e+01 -Electron-electron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_electron_profile22)_ 1.80022536249324752e+01 -Electron-electron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_electron_profile23)_ 1.80020693379200125e+01 -Electron-electron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_electron_profile24)_ 1.80018768277985828e+01 -Electron-electron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_electron_profile25)_ 1.80016760903099780e+01 -Electron-electron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_electron_profile26)_ 1.80014671210127872e+01 -Electron-electron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_electron_profile27)_ 1.80012499152821803e+01 -Electron-electron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_electron_profile28)_ 1.80010244683096374e+01 -Electron-electron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_electron_profile29)_ 1.80007907751026721e+01 -Electron-electron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_electron_profile30)_ 1.80005488304845684e+01 -Electron-electron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_electron_profile31)_ 1.80002986290940754e+01 -Electron-electron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_electron_profile32)_ 1.80000401653851156e+01 -Electron-electron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_electron_profile33)_ 1.79997734336264763e+01 -Electron-electron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_electron_profile34)_ 1.79994984279014680e+01 -Electron-electron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_electron_profile35)_ 1.79992151421076265e+01 -Electron-electron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_electron_profile36)_ 1.79989235699563466e+01 -Electron-electron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_electron_profile37)_ 1.79986237049725268e+01 -Electron-electron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_electron_profile38)_ 1.79983155404942252e+01 -Electron-electron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_electron_profile39)_ 1.79979990696722645e+01 -Electron-electron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_electron_profile40)_ 1.79976742854698628e+01 -Electron-electron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_electron_profile41)_ 1.79973411806622252e+01 -Electron-electron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_electron_profile42)_ 1.79969997478361527e+01 -Electron-electron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_electron_profile43)_ 1.79966499793896055e+01 -Electron-electron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_electron_profile44)_ 1.79962918675313013e+01 -Electron-electron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_electron_profile45)_ 1.79959254042802463e+01 -Electron-electron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_electron_profile46)_ 1.79955505814653129e+01 -Electron-electron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_electron_profile47)_ 1.79951673907247631e+01 -Electron-electron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_electron_profile48)_ 1.79947758235057762e+01 -Electron-electron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_electron_profile49)_ 1.79943758710639869e+01 -Electron-electron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_electron_profile50)_ 1.79939675244629633e+01 -Electron-electron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_electron_profile51)_ 1.79935507745737233e+01 -Electron-electron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_electron_profile52)_ 1.79931256120742127e+01 -Electron-electron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_electron_profile53)_ 1.79926920274487792e+01 -Electron-electron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_electron_profile54)_ 1.79922500109876253e+01 -Electron-electron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_electron_profile55)_ 1.79917995527862828e+01 -Electron-electron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_electron_profile56)_ 1.79913406427450226e+01 -Electron-electron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_electron_profile57)_ 1.79908732705683114e+01 -Electron-electron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_electron_profile58)_ 1.79903974257642076e+01 -Electron-electron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_electron_profile59)_ 1.79899130976437753e+01 -Electron-electron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_electron_profile60)_ 1.79894202753204802e+01 -Electron-electron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_electron_profile61)_ 1.79889189477095748e+01 -Electron-electron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_electron_profile62)_ 1.79884091035274558e+01 -Electron-electron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_electron_profile63)_ 1.79878907312910385e+01 -Electron-electron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_electron_profile64)_ 1.79873638193170997e+01 -Electron-electron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_electron_profile65)_ 1.79868283557216060e+01 -Electron-electron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_electron_profile66)_ 1.79862843284190497e+01 -Electron-electron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_electron_profile67)_ 1.79857317251217630e+01 -Electron-electron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_electron_profile68)_ 1.79851705333392040e+01 -Electron-electron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_electron_profile69)_ 1.79846007403772497e+01 -Electron-electron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_electron_profile70)_ 1.79840223333374887e+01 -Electron-electron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_electron_profile71)_ 1.79834352991164650e+01 -Electron-electron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_electron_profile72)_ 1.79828396244049422e+01 -Electron-electron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_electron_profile73)_ 1.79822352956871363e+01 -Electron-electron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_electron_profile74)_ 1.79816222992399517e+01 -Electron-electron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_electron_profile75)_ 1.79810006211321962e+01 -Electron-electron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_electron_profile76)_ 1.79803702472237745e+01 -Electron-electron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_electron_profile77)_ 1.79797311631648959e+01 -Electron-electron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_electron_profile78)_ 1.79790833543952289e+01 -Electron-electron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_electron_profile79)_ 1.79784268061430943e+01 -Electron-electron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_electron_profile80)_ 1.79777615034245954e+01 -Electron-electron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_electron_profile81)_ 1.79770874310427828e+01 -Electron-electron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_electron_profile82)_ 1.79764045735867484e+01 -Electron-electron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_electron_profile83)_ 1.79757129154307798e+01 -Electron-electron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_electron_profile84)_ 1.79750124407334226e+01 -Electron-electron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_electron_profile85)_ 1.79743031334366101e+01 -Electron-electron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_electron_profile86)_ 1.79735849772647036e+01 -Electron-electron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_electron_profile87)_ 1.79728579557235797e+01 -Electron-electron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_electron_profile88)_ 1.79721220520996674e+01 -Electron-electron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_electron_profile89)_ 1.79713772494589890e+01 -Electron-electron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_electron_profile90)_ 1.79706235306461863e+01 -Electron-electron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_electron_profile91)_ 1.79698608782835265e+01 -Electron-electron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_electron_profile92)_ 1.79690892747698925e+01 -Electron-electron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_electron_profile93)_ 1.79683087022797814e+01 -Electron-electron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_electron_profile94)_ 1.79675191427622636e+01 -Electron-electron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_electron_profile95)_ 1.79667205779399382e+01 -Electron-electron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_electron_profile96)_ 1.79659129893078777e+01 -Electron-electron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_electron_profile97)_ 1.79650963581325556e+01 -Electron-electron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_electron_profile98)_ 1.79642706654507656e+01 -Electron-electron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_electron_profile99)_ 1.79634358920685031e+01 -Electron-electron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_electron_profile100)_ 1.79625920185598744e+01 -Electron-electron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_electron_profile101)_ 1.79617390252659632e+01 -Electron-electron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_electron_profile102)_ 1.79608768922936690e+01 -Electron-electron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_electron_profile103)_ 1.79600055995145773e+01 -Electron-electron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_electron_profile104)_ 1.79591251265637730e+01 -Electron-electron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_electron_profile105)_ 1.79582354528386539e+01 -Electron-electron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_electron_profile106)_ 1.79573365574977437e+01 -Electron-electron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_electron_profile107)_ 1.79564284194594599e+01 -Electron-electron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_electron_profile108)_ 1.79555110174008981e+01 -Electron-electron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_electron_profile109)_ 1.79545843297565852e+01 -Electron-electron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_electron_profile110)_ 1.79536483347172116e+01 -Electron-electron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_electron_profile111)_ 1.79527030102283653e+01 -Electron-electron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_electron_profile112)_ 1.79517483339892401e+01 -Electron-electron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_electron_profile113)_ 1.79507842834513376e+01 -Electron-electron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_electron_profile114)_ 1.79498108358171322e+01 -Electron-electron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_electron_profile115)_ 1.79488279680387599e+01 -Electron-electron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_electron_profile116)_ 1.79478356568166326e+01 -Electron-electron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_electron_profile117)_ 1.79468338785981203e+01 -Electron-electron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_electron_profile118)_ 1.79458226095761191e+01 -Electron-electron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_electron_profile119)_ 1.79448018256877013e+01 -Electron-electron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_electron_profile120)_ 1.79437715026126590e+01 -Electron-electron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_electron_profile121)_ 1.79427316157721179e+01 -Electron-electron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_electron_profile122)_ 1.79416821403270497e+01 -Electron-electron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_electron_profile123)_ 1.79406230511768534e+01 -Electron-electron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_electron_profile124)_ 1.79395543229578500e+01 -Electron-electron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_electron_profile125)_ 1.79384759300418004e+01 -Electron-electron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_electron_profile126)_ 1.79373878465343957e+01 -Electron-electron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_electron_profile127)_ 1.79362900462737400e+01 -Electron-electron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_electron_profile128)_ 1.79351825028287912e+01 -Electron-electron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_electron_profile129)_ 1.79340651894978151e+01 -Electron-electron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_electron_profile130)_ 1.79329380793068154e+01 -Electron-electron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_electron_profile131)_ 1.79318011450079311e+01 -Electron-electron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_electron_profile132)_ 1.79306543590778276e+01 -Electron-electron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_electron_profile133)_ 1.79294976937160939e+01 -Electron-electron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_electron_profile134)_ 1.79283311208435734e+01 -Electron-electron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_electron_profile135)_ 1.79271546121007255e+01 -Electron-electron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_electron_profile136)_ 1.79259681388459349e+01 -Electron-electron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_electron_profile137)_ 1.79247716721538310e+01 -Electron-electron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_electron_profile138)_ 1.79235651828135651e+01 -Electron-electron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_electron_profile139)_ 1.79223486413271083e+01 -Electron-electron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_electron_profile140)_ 1.79211220179074822e+01 -Electron-electron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_electron_profile141)_ 1.79198852824770007e+01 -Electron-electron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_electron_profile142)_ 1.79186384046655007e+01 -Electron-electron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_electron_profile143)_ 1.79173813538085440e+01 -Electron-electron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_electron_profile144)_ 1.79161140989455951e+01 -Electron-electron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_electron_profile145)_ 1.79148366088182023e+01 -Electron-electron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_electron_profile146)_ 1.79135488518681250e+01 -Electron-electron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_electron_profile147)_ 1.79122507962354973e+01 -Electron-electron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_electron_profile148)_ 1.79109424097569168e+01 -Electron-electron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_electron_profile149)_ 1.79096236599635610e+01 -Electron-electron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_electron_profile150)_ 1.79082945140792447e+01 -Electron-electron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_electron_profile151)_ 1.79069549390185045e+01 -Electron-electron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_electron_profile152)_ 1.79056049013846241e+01 -Electron-electron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_electron_profile153)_ 1.79042443674676690e+01 -Electron-electron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_electron_profile154)_ 1.79028733032424974e+01 -Electron-electron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_electron_profile155)_ 1.79014916743667278e+01 -Electron-electron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_electron_profile156)_ 1.79000994461787322e+01 -Electron-electron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_electron_profile157)_ 1.78986965836955818e+01 -Electron-electron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_electron_profile158)_ 1.78972830516109731e+01 -Electron-electron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_electron_profile159)_ 1.78958588142931561e+01 -Electron-electron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_electron_profile160)_ 1.78944238357828240e+01 -Electron-electron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_electron_profile161)_ 1.78929780797909963e+01 -Electron-electron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_electron_profile162)_ 1.78915215096968758e+01 -Electron-electron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_electron_profile163)_ 1.78900540885456891e+01 -Electron-electron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_electron_profile164)_ 1.78885757790465298e+01 -Electron-electron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_electron_profile165)_ 1.78870865435701347e+01 -Electron-electron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_electron_profile166)_ 1.78855863441466987e+01 -Electron-electron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_electron_profile167)_ 1.78840751424636331e+01 -Electron-electron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_electron_profile168)_ 1.78825528998633061e+01 -Electron-electron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_electron_profile169)_ 1.78810195773408047e+01 -Electron-electron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_electron_profile170)_ 1.78794751355416146e+01 -Electron-electron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_electron_profile171)_ 1.78779195347593500e+01 -Electron-electron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_electron_profile172)_ 1.78763527349334126e+01 -Electron-electron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_electron_profile173)_ 1.78747746956466536e+01 -Electron-electron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_electron_profile174)_ 1.78731853761230219e+01 -Electron-electron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_electron_profile175)_ 1.78715847352251949e+01 -Electron-electron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_electron_profile176)_ 1.78699727314521688e+01 -Electron-electron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_electron_profile177)_ 1.78683493229368615e+01 -Electron-electron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_electron_profile178)_ 1.78667144674436855e+01 -Electron-electron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_electron_profile179)_ 1.78650681223660932e+01 -Electron-electron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_electron_profile180)_ 1.78634102447241219e+01 -Electron-electron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_electron_profile181)_ 1.78617407911619104e+01 -Electron-electron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_electron_profile182)_ 1.78600597179451981e+01 -Electron-electron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_electron_profile183)_ 1.78583669809588201e+01 -Electron-electron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_electron_profile184)_ 1.78566625357041673e+01 -Electron-electron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_electron_profile185)_ 1.78549463372966457e+01 -Electron-electron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_electron_profile186)_ 1.78532183404631120e+01 -Electron-electron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_electron_profile187)_ 1.78514784995392795e+01 -Electron-electron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_electron_profile188)_ 1.78497267684671463e+01 -Electron-electron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_electron_profile189)_ 1.78479631007923665e+01 -Electron-electron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_electron_profile190)_ 1.78461874496616275e+01 -Electron-electron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_electron_profile191)_ 1.78443997678200041e+01 -Electron-electron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_electron_profile192)_ 1.78426000076083042e+01 -Electron-electron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_electron_profile193)_ 1.78407881209603971e+01 -Electron-electron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_electron_profile194)_ 1.78389640594005279e+01 -Electron-electron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_electron_profile195)_ 1.78371277740406136e+01 -Electron-electron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_electron_profile196)_ 1.78352792155775326e+01 -Electron-electron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_electron_profile197)_ 1.78334183342903785e+01 -Electron-electron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_electron_profile198)_ 1.78315450800377668e+01 -Electron-electron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_electron_profile199)_ 1.78296594022550146e+01 -Electron-electron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_electron_profile200)_ 1.78277612499514397e+01 -Electron-electron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_electron_profile201)_ 1.78258505717075408e+01 -Electron-electron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_electron_profile202)_ 1.78239273156722255e+01 -Electron-electron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_electron_profile203)_ 1.78219914295600148e+01 -Electron-electron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_electron_profile204)_ 1.78200428606482291e+01 -Electron-electron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_electron_profile205)_ 1.78180815557741674e+01 -Electron-electron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_electron_profile206)_ 1.78161074613322867e+01 -Electron-electron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_electron_profile207)_ 1.78141205232713631e+01 -Electron-electron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_electron_profile208)_ 1.78121206870916424e+01 -Electron-electron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_electron_profile209)_ 1.78101078978420091e+01 -Electron-electron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_electron_profile210)_ 1.78080821001171081e+01 -Electron-electron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_electron_profile211)_ 1.78060432380544960e+01 -Electron-electron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_electron_profile212)_ 1.78039912553317627e+01 -Electron-electron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_electron_profile213)_ 1.78019260951636724e+01 -Electron-electron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_electron_profile214)_ 1.77998477002992814e+01 -Electron-electron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_electron_profile215)_ 1.77977560130190717e+01 -Electron-electron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_electron_profile216)_ 1.77956509751320553e+01 -Electron-electron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_electron_profile217)_ 1.77935325279729177e+01 -Electron-electron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_electron_profile218)_ 1.77914006123991193e+01 -Electron-electron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_electron_profile219)_ 1.77892551687880420e+01 -Electron-electron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_electron_profile220)_ 1.77870961370340979e+01 -Electron-electron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_electron_profile221)_ 1.77849234565458687e+01 -Electron-electron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_electron_profile222)_ 1.77827370662432358e+01 -Electron-electron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_electron_profile223)_ 1.77805369045545376e+01 -Electron-electron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_electron_profile224)_ 1.77783229094137099e+01 -Electron-electron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_electron_profile225)_ 1.77760950182574327e+01 -Electron-electron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_electron_profile226)_ 1.77738531680223275e+01 -Electron-electron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_electron_profile227)_ 1.77715972951421257e+01 -Electron-electron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_electron_profile228)_ 1.77693273355448618e+01 -Electron-electron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_electron_profile229)_ 1.77670432246500880e+01 -Electron-electron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_electron_profile230)_ 1.77647448973661071e+01 -Electron-electron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_electron_profile231)_ 1.77624322880872114e+01 -Electron-electron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_electron_profile232)_ 1.77601053306909620e+01 -Electron-electron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_electron_profile233)_ 1.77577639585354525e+01 -Electron-electron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_electron_profile234)_ 1.77554081044566665e+01 -Electron-electron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_electron_profile235)_ 1.77530377007657805e+01 -Electron-electron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_electron_profile236)_ 1.77506526792465458e+01 -Electron-electron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_electron_profile237)_ 1.77482529711527057e+01 -Electron-electron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_electron_profile238)_ 1.77458385072053950e+01 -Electron-electron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_electron_profile239)_ 1.77434092175906422e+01 -Electron-electron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_electron_profile240)_ 1.77409650319568684e+01 -Electron-electron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_electron_profile241)_ 1.77385058794124255e+01 -Electron-electron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_electron_profile242)_ 1.77360316885231981e+01 -Electron-electron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_electron_profile243)_ 1.77335423873102478e+01 -Electron-electron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_electron_profile244)_ 1.77310379032474863e+01 -Electron-electron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_electron_profile245)_ 1.77285181632594302e+01 -Electron-electron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_electron_profile246)_ 1.77259830937190017e+01 -Electron-electron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_electron_profile247)_ 1.77234326204453723e+01 -Electron-electron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_electron_profile248)_ 1.77208666687018912e+01 -Electron-electron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_electron_profile249)_ 1.77182851631940608e+01 -Electron-electron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_electron_profile250)_ 1.77156880280676106e+01 -Electron-electron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_electron_profile251)_ 1.77130751869066074e+01 -Electron-electron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_electron_profile252)_ 1.77104465627316863e+01 -Electron-electron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_electron_profile253)_ 1.77078020779983092e+01 -Electron-electron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_electron_profile254)_ 1.77051416545951810e+01 -Electron-electron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_electron_profile255)_ 1.77024652138426823e+01 -Electron-electron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_electron_profile256)_ 1.76997726764914667e+01 -Electron-electron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_electron_profile257)_ 1.76970639627210957e+01 -Electron-electron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_electron_profile258)_ 1.76943389921388388e+01 -Electron-electron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_electron_profile259)_ 1.76915976837785465e+01 -Electron-electron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_electron_profile260)_ 1.76888399560996419e+01 -Electron-electron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_electron_profile261)_ 1.76860657269862713e+01 -Electron-electron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_electron_profile262)_ 1.76832749137465370e+01 -Electron-electron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_electron_profile263)_ 1.76804674331118932e+01 -Electron-electron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_electron_profile264)_ 1.76776432012366769e+01 -Electron-electron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_electron_profile265)_ 1.76748021336977956e+01 -Electron-electron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_electron_profile266)_ 1.76719441454945567e+01 -Electron-electron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_electron_profile267)_ 1.76690691510486637e+01 -Electron-electron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_electron_profile268)_ 1.76661770642044011e+01 -Electron-electron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_electron_profile269)_ 1.76632677982289685e+01 -Electron-electron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_electron_profile270)_ 1.76603412658130239e+01 -Electron-electron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_electron_profile271)_ 1.76573973790714192e+01 -Electron-electron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_electron_profile272)_ 1.76544360495441239e+01 -Electron-electron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_electron_profile273)_ 1.76514571881973943e+01 -Electron-electron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_electron_profile274)_ 1.76484607054251228e+01 -Electron-electron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_electron_profile275)_ 1.76454465110504657e+01 -Electron-electron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_electron_profile276)_ 1.76424145143276938e+01 -Electron-electron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_electron_profile277)_ 1.76393646239442710e+01 -Electron-electron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_electron_profile278)_ 1.76362967480232555e+01 -Electron-electron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_electron_profile279)_ 1.76332107941259402e+01 -Electron-electron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_electron_profile280)_ 1.76301066692547757e+01 -Electron-electron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_electron_profile281)_ 1.76269842798566252e+01 -Electron-electron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_electron_profile282)_ 1.76238435318263313e+01 -Electron-electron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_electron_profile283)_ 1.76206843305105565e+01 -Electron-electron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_electron_profile284)_ 1.76175065807120745e+01 -Electron-electron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_electron_profile285)_ 1.76143101866942899e+01 -Electron-electron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_electron_profile286)_ 1.76110950521862577e+01 -Electron-electron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_electron_profile287)_ 1.76078610803879840e+01 -Electron-electron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_electron_profile288)_ 1.76046081739762101e+01 -Electron-electron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_electron_profile289)_ 1.76013362351105727e+01 -Electron-electron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_electron_profile290)_ 1.75980451654402366e+01 -Electron-electron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_electron_profile291)_ 1.75947348661109579e+01 -Electron-electron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_electron_profile292)_ 1.75914052377726513e+01 -Electron-electron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_electron_profile293)_ 1.75880561805874436e+01 -Electron-electron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_electron_profile294)_ 1.75846875942382503e+01 -Electron-electron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_electron_profile295)_ 1.75812993779378886e+01 -Electron-electron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_electron_profile296)_ 1.75778914304387648e+01 -Electron-electron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_electron_profile297)_ 1.75744636500431497e+01 -Electron-electron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_electron_profile298)_ 1.75710159346140529e+01 -Electron-electron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_electron_profile299)_ 1.75675481815867549e+01 -Electron-electron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_electron_profile300)_ 1.75640602879809826e+01 -Electron-electron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_electron_profile301)_ 1.75605521504137982e+01 -Electron-electron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_electron_profile302)_ 1.75570236651131992e+01 -Electron-electron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_electron_profile303)_ 1.75534747279324606e+01 -Electron-electron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_electron_profile304)_ 1.75499052343652764e+01 -Electron-electron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_electron_profile305)_ 1.75463150795617189e+01 -Electron-electron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_electron_profile306)_ 1.75427041583450034e+01 -Electron-electron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_electron_profile307)_ 1.75390723652292024e+01 -Electron-electron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_electron_profile308)_ 1.75354195944378262e+01 -Electron-electron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_electron_profile309)_ 1.75317457399233767e+01 -Electron-electron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_electron_profile310)_ 1.75280506953879183e+01 -Electron-electron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_electron_profile311)_ 1.75243343543046528e+01 -Electron-electron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_electron_profile312)_ 1.75205966099406112e+01 -Electron-electron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_electron_profile313)_ 1.75168373553804280e+01 -Electron-electron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_electron_profile314)_ 1.75130564835513383e+01 -Electron-electron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_electron_profile315)_ 1.75092538872493506e+01 -Electron-electron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_electron_profile316)_ 1.75054294591667130e+01 -Electron-electron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_electron_profile317)_ 1.75015830919207147e+01 -Electron-electron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_electron_profile318)_ 1.74977146780838169e+01 -Electron-electron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_electron_profile319)_ 1.74938241102152681e+01 -Electron-electron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_electron_profile320)_ 1.74899112808942014e+01 -Electron-electron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_electron_profile321)_ 1.74859760827542488e+01 -Electron-electron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_electron_profile322)_ 1.74820184085198456e+01 -Electron-electron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_electron_profile323)_ 1.74780381510441423e+01 -Electron-electron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_electron_profile324)_ 1.74740352033487234e+01 -Electron-electron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_electron_profile325)_ 1.74700094586651566e+01 -Electron-electron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_electron_profile326)_ 1.74659608104783821e+01 -Electron-electron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_electron_profile327)_ 1.74618891525721871e+01 -Electron-electron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_electron_profile328)_ 1.74577943790766490e+01 -Electron-electron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_electron_profile329)_ 1.74536763845177703e+01 -Electron-electron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_electron_profile330)_ 1.74495350638693694e+01 -Electron-electron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_electron_profile331)_ 1.74453703126072632e+01 -Electron-electron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_electron_profile332)_ 1.74411820267659117e+01 -Electron-electron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_electron_profile333)_ 1.74369701029975559e+01 -Electron-electron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_electron_profile334)_ 1.74327344386340393e+01 -Electron-electron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_electron_profile335)_ 1.74284749317513281e+01 -Electron-electron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_electron_profile336)_ 1.74241914812369281e+01 -Electron-electron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_electron_profile337)_ 1.74198839868602349e+01 -Electron-electron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_electron_profile338)_ 1.74155523493460400e+01 -Electron-electron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_electron_profile339)_ 1.74111964704512339e+01 -Electron-electron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_electron_profile340)_ 1.74068162530448660e+01 -Electron-electron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_electron_profile341)_ 1.74024116011917762e+01 -Electron-electron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_electron_profile342)_ 1.73979824202398099e+01 -Electron-electron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_electron_profile343)_ 1.73935286169108849e+01 -Electron-electron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_electron_profile344)_ 1.73890500993960266e+01 -Electron-electron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_electron_profile345)_ 1.73845467774545419e+01 -Electron-electron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_electron_profile346)_ 1.73800185625174848e+01 -Electron-electron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_electron_profile347)_ 1.73754653677956625e+01 -Electron-electron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_electron_profile348)_ 1.73708871083922780e+01 -Electron-electron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_electron_profile349)_ 1.73662837014205138e+01 -Electron-electron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_electron_profile350)_ 1.73616550661261897e+01 -Electron-electron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_electron_profile351)_ 1.73570011240156745e+01 -Electron-electron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_electron_profile352)_ 1.73523217989894682e+01 -Electron-electron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_electron_profile353)_ 1.73476170174814257e+01 -Electron-electron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_electron_profile354)_ 1.73428867086041016e+01 -Electron-electron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_electron_profile355)_ 1.73381308043003131e+01 -Electron-electron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_electron_profile356)_ 1.73333492395013202e+01 -Electron-electron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_electron_profile357)_ 1.73285419522917792e+01 -Electron-electron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_electron_profile358)_ 1.73237088840818814e+01 -Electron-electron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_electron_profile359)_ 1.73188499797869220e+01 -Electron-electron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_electron_profile360)_ 1.73139651880146062e+01 -Electron-electron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_electron_profile361)_ 1.73090544612605015e+01 -Electron-electron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_electron_profile362)_ 1.73041177561119284e+01 -Electron-electron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_electron_profile363)_ 1.72991550334606714e+01 -Electron-electron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_electron_profile364)_ 1.72941662587249603e+01 -Electron-electron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_electron_profile365)_ 1.72891514020809574e+01 -Electron-electron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_electron_profile366)_ 1.72841104387044666e+01 -Electron-electron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_electron_profile367)_ 1.72790433490229383e+01 -Electron-electron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_electron_profile368)_ 1.72739501189786004e+01 -Electron-electron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_electron_profile369)_ 1.72688307403029242e+01 -Electron-electron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_electron_profile370)_ 1.72636852108031071e+01 -Electron-electron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_electron_profile371)_ 1.72585135346610095e+01 -Electron-electron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_electron_profile372)_ 1.72533157227451568e+01 -Electron-electron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_electron_profile373)_ 1.72480917929363891e+01 -Electron-electron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_electron_profile374)_ 1.72428417704677379e+01 -Electron-electron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_electron_profile375)_ 1.72375656882792576e+01 -Electron-electron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_electron_profile376)_ 1.72322635873883812e+01 -Electron-electron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_electron_profile377)_ 1.72269355172765763e+01 -Electron-electron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_electron_profile378)_ 1.72215815362930798e+01 -Electron-electron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_electron_profile379)_ 1.72162017120764226e+01 -Electron-electron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_electron_profile380)_ 1.72107961219945693e+01 -Electron-electron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_electron_profile381)_ 1.72053648536046317e+01 -Electron-electron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_electron_profile382)_ 1.71999080051329436e+01 -Electron-electron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_electron_profile383)_ 1.71944256859765545e+01 -Electron-electron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_electron_profile384)_ 1.71889180172270208e+01 -Electron-electron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_electron_profile385)_ 1.71833851322177296e+01 -Electron-electron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_electron_profile386)_ 1.71778271770956614e+01 -Electron-electron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_electron_profile387)_ 1.71722443114189751e+01 -Electron-electron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_electron_profile388)_ 1.71666367087813825e+01 -Electron-electron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_electron_profile389)_ 1.71610045574649135e+01 -Electron-electron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_electron_profile390)_ 1.71553480611222007e+01 -Electron-electron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_electron_profile391)_ 1.71496674394898037e+01 -Electron-electron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_electron_profile392)_ 1.71439629291341511e+01 -Electron-electron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_electron_profile393)_ 1.71382347842315852e+01 -Electron-electron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_electron_profile394)_ 1.71324832773843418e+01 -Electron-electron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_electron_profile395)_ 1.71267087004741221e+01 -Electron-electron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_electron_profile396)_ 1.71209113655552763e+01 -Electron-electron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_electron_profile397)_ 1.71150916057894626e+01 -Electron-electron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_electron_profile398)_ 1.71092497764240612e+01 -Electron-electron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_electron_profile399)_ 1.71033862558164387e+01 -Electron-electron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_electron_profile400)_ 1.70975014465065875e+01 -Electron-electron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_electron_profile401)_ 1.70915957763405544e+01 -Electron-electron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_electron_profile402)_ 1.70856696996473971e+01 -Electron-electron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_electron_profile403)_ 1.70797236984725593e+01 -Electron-electron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_electron_profile404)_ 1.70737582838706174e+01 -Electron-electron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_electron_profile405)_ 1.70677739972607121e+01 -Electron-electron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_electron_profile406)_ 1.70617714118481452e+01 -Electron-electron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_electron_profile407)_ 1.70557511341156776e+01 -Electron-electron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_electron_profile408)_ 1.70497138053887021e+01 -Electron-electron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_electron_profile409)_ 1.70436601034782704e+01 -Electron-electron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_electron_profile410)_ 1.70375907444067138e+01 -Electron-electron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_electron_profile411)_ 1.70315064842205821e+01 -Electron-electron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_electron_profile412)_ 1.70254081208961523e+01 -Electron-electron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_electron_profile413)_ 1.70192964963431237e+01 -Electron-electron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_electron_profile414)_ 1.70131724985126347e+01 -Electron-electron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_electron_profile415)_ 1.70070370636160746e+01 -Electron-electron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_electron_profile416)_ 1.70008911784617496e+01 -Electron-electron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_electron_profile417)_ 1.69947358829172508e+01 -Electron-electron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_electron_profile418)_ 1.69885722725057597e+01 -Electron-electron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_electron_profile419)_ 1.69824015011453824e+01 -Electron-electron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_electron_profile420)_ 1.69762247840416265e+01 -Electron-electron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_electron_profile421)_ 1.69700434007437018e+01 -Electron-electron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_electron_profile422)_ 1.69638586983767219e+01 -Electron-electron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_electron_profile423)_ 1.69576720950629394e+01 -Electron-electron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_electron_profile424)_ 1.69514850835464408e+01 -Electron-electron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_electron_profile425)_ 1.69452992350373677e+01 -Electron-electron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_electron_profile426)_ 1.69391162032935405e+01 -Electron-electron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_electron_profile427)_ 1.69329377289590752e+01 -Electron-electron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_electron_profile428)_ 1.69267656441823569e+01 -Electron-electron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_electron_profile429)_ 1.69206018775379583e+01 -Electron-electron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_electron_profile430)_ 1.69144484592803650e+01 -Electron-electron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_electron_profile431)_ 1.69083075269609999e+01 -Electron-electron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_electron_profile432)_ 1.69021813314440728e+01 -Electron-electron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_electron_profile433)_ 1.68960722433617008e+01 -Electron-electron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_electron_profile434)_ 1.68899827600545009e+01 -Electron-electron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_electron_profile435)_ 1.68839155130505887e+01 -Electron-electron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_electron_profile436)_ 1.68778732761439549e+01 -Electron-electron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_electron_profile437)_ 1.68718589741427181e+01 -Electron-electron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_electron_profile438)_ 1.68658756923692792e+01 -Electron-electron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_electron_profile439)_ 1.68599266870079987e+01 -Electron-electron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_electron_profile440)_ 1.68540153964129544e+01 -Electron-electron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_electron_profile441)_ 1.68481454535084012e+01 -Electron-electron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_electron_profile442)_ 1.68423206994395933e+01 -Electron-electron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_electron_profile443)_ 1.68365451986621046e+01 -Electron-electron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_electron_profile444)_ 1.68308232556960640e+01 -Electron-electron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_electron_profile445)_ 1.68251594338191843e+01 -Electron-electron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_electron_profile446)_ 1.68195585760324420e+01 -Electron-electron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_electron_profile447)_ 1.68140258287086013e+01 -Electron-electron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_electron_profile448)_ 1.68085666684317268e+01 -Electron-electron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_electron_profile449)_ 1.68031869326621042e+01 -Electron-electron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_electron_profile450)_ 1.67978928550277082e+01 -Electron-electron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_electron_profile451)_ 1.67926911062624242e+01 -Electron-electron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_electron_profile452)_ 1.67875888421065902e+01 -Electron-electron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_electron_profile453)_ 1.67825937598865025e+01 -Electron-electron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_electron_profile454)_ 1.67777141660433564e+01 -Electron-electron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_electron_profile455)_ 1.67729590576608878e+01 -Electron-electron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_electron_profile456)_ 1.67683382221551192e+01 -Electron-electron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_electron_profile457)_ 1.67638623609194397e+01 -Electron-electron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_electron_profile458)_ 1.67595432451589375e+01 -Electron-electron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_electron_profile459)_ 1.67553939159043104e+01 -Electron-electron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_electron_profile460)_ 1.67514289461600185e+01 -Electron-electron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_electron_profile461)_ 1.67476647929622438e+01 -Electron-electron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_electron_profile462)_ 1.67441202839978907e+01 -Electron-electron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_electron_profile463)_ 1.67408173139535279e+01 -Electron-electron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_electron_profile464)_ 1.67377818844932911e+01 -Electron-electron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_electron_profile465)_ 1.67350457439323534e+01 -Electron-electron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_electron_profile466)_ 1.67326491636799588e+01 -Electron-electron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_electron_profile467)_ 1.67306461293070683e+01 -Electron-electron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_electron_profile468)_ 1.67291156073544904e+01 -Electron-electron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_electron_profile469)_ 1.67281932701721594e+01 -Electron-electron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_electron_profile470)_ 1.67282661017996581e+01 -Electron-electron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_electron_profile471)_ 1.67021625525954640e+01 -Electron-electron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_electron_profile472)_ 1.66750105184549717e+01 -Electron-electron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_electron_profile473)_ 1.66467310726749709e+01 -Electron-electron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_electron_profile474)_ 1.66172363468249422e+01 -Electron-electron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_electron_profile475)_ 1.65864281459216159e+01 -Electron-electron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_electron_profile476)_ 1.65541962861770422e+01 -Electron-electron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_electron_profile477)_ 1.65204165859792695e+01 -Electron-electron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_electron_profile478)_ 1.64849484196791067e+01 -Electron-electron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_electron_profile479)_ 1.64476317150118057e+01 -Electron-electron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_electron_profile480)_ 1.64082832352995780e+01 -Electron-electron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_electron_profile481)_ 1.63666919320414159e+01 -Electron-electron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_electron_profile482)_ 1.63226130745988165e+01 -Electron-electron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_electron_profile483)_ 1.62757607497603125e+01 -Electron-electron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_electron_profile484)_ 1.62257981564885618e+01 -Electron-electron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_electron_profile485)_ 1.61723248700235658e+01 -Electron-electron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_electron_profile486)_ 1.61148598645828827e+01 -Electron-electron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_electron_profile487)_ 1.60528184792083124e+01 -Electron-electron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_electron_profile488)_ 1.59854805347980840e+01 -Electron-electron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_electron_profile489)_ 1.59119451832576768e+01 -Electron-electron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_electron_profile490)_ 1.58310652597122115e+01 -Electron-electron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_electron_profile491)_ 1.57413488508530861e+01 -Electron-electron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_electron_profile492)_ 1.56408062367526615e+01 -Electron-electron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_electron_profile493)_ 1.55267012408658243e+01 -Electron-electron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_electron_profile494)_ 1.53951249965854284e+01 -Electron-electron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_electron_profile495)_ 1.52402141931822008e+01 -Electron-electron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_electron_profile496)_ 1.50525853567511962e+01 -Electron-electron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_electron_profile497)_ 1.48157991842445558e+01 -Electron-electron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_electron_profile498)_ 1.44968454230357313e+01 -Electron-electron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_electron_profile499)_ 1.40119451212949500e+01 -Electron-electron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_electron_profile500)_ 1.29941224144352816e+01 -Volume_averaged_electron-deuteron_Coulomb_log_(ΛₑD)______________________ (plasma_coulomb_log_electron_deuteron_vol_avg)_ 1.77778589280348847e+01 OP -Electron-deuteron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_deuteron_profile0)_ 1.83506817821350268e+01 -Electron-deuteron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_deuteron_profile1)_ 1.83506776944249133e+01 -Electron-deuteron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_deuteron_profile2)_ 1.83506654312044333e+01 -Electron-deuteron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_deuteron_profile3)_ 1.83506449922031685e+01 -Electron-deuteron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_deuteron_profile4)_ 1.83506163769704251e+01 -Electron-deuteron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_deuteron_profile5)_ 1.83505795848751774e+01 -Electron-deuteron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_deuteron_profile6)_ 1.83505346151060458e+01 -Electron-deuteron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_deuteron_profile7)_ 1.83504814666712655e+01 -Electron-deuteron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_deuteron_profile8)_ 1.83504201383986079e+01 -Electron-deuteron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_deuteron_profile9)_ 1.83503506289353311e+01 -Electron-deuteron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_deuteron_profile10)_ 1.83502729367480981e+01 -Electron-deuteron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_deuteron_profile11)_ 1.83501870601228951e+01 -Electron-deuteron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_deuteron_profile12)_ 1.83500929971649249e+01 -Electron-deuteron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_deuteron_profile13)_ 1.83499907457985181e+01 -Electron-deuteron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_deuteron_profile14)_ 1.83498803037670086e+01 -Electron-deuteron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_deuteron_profile15)_ 1.83497616686325991e+01 -Electron-deuteron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_deuteron_profile16)_ 1.83496348377762395e+01 -Electron-deuteron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_deuteron_profile17)_ 1.83494998083974785e+01 -Electron-deuteron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_deuteron_profile18)_ 1.83493565775142926e+01 -Electron-deuteron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_deuteron_profile19)_ 1.83492051419629369e+01 -Electron-deuteron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_deuteron_profile20)_ 1.83490454983977571e+01 -Electron-deuteron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_deuteron_profile21)_ 1.83488776432910150e+01 -Electron-deuteron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_deuteron_profile22)_ 1.83487015729326757e+01 -Electron-deuteron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_deuteron_profile23)_ 1.83485172834302084e+01 -Electron-deuteron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_deuteron_profile24)_ 1.83483247707083663e+01 -Electron-deuteron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_deuteron_profile25)_ 1.83481240305089628e+01 -Electron-deuteron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_deuteron_profile26)_ 1.83479150583906332e+01 -Electron-deuteron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_deuteron_profile27)_ 1.83476978497285792e+01 -Electron-deuteron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_deuteron_profile28)_ 1.83474723997143165e+01 -Electron-deuteron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_deuteron_profile29)_ 1.83472387033553979e+01 -Electron-deuteron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_deuteron_profile30)_ 1.83469967554751463e+01 -Electron-deuteron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_deuteron_profile31)_ 1.83467465507123535e+01 -Electron-deuteron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_deuteron_profile32)_ 1.83464880835209918e+01 -Electron-deuteron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_deuteron_profile33)_ 1.83462213481698804e+01 -Electron-deuteron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_deuteron_profile34)_ 1.83459463387423867e+01 -Electron-deuteron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_deuteron_profile35)_ 1.83456630491360890e+01 -Electron-deuteron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_deuteron_profile36)_ 1.83453714730624320e+01 -Electron-deuteron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_deuteron_profile37)_ 1.83450716040463639e+01 -Electron-deuteron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_deuteron_profile38)_ 1.83447634354259961e+01 -Electron-deuteron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_deuteron_profile39)_ 1.83444469603522009e+01 -Electron-deuteron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_deuteron_profile40)_ 1.83441221717882499e+01 -Electron-deuteron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_deuteron_profile41)_ 1.83437890625094084e+01 -Electron-deuteron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_deuteron_profile42)_ 1.83434476251025345e+01 -Electron-deuteron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_deuteron_profile43)_ 1.83430978519656485e+01 -Electron-deuteron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_deuteron_profile44)_ 1.83427397353075214e+01 -Electron-deuteron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_deuteron_profile45)_ 1.83423732671472308e+01 -Electron-deuteron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_deuteron_profile46)_ 1.83419984393136986e+01 -Electron-deuteron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_deuteron_profile47)_ 1.83416152434452648e+01 -Electron-deuteron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_deuteron_profile48)_ 1.83412236709891694e+01 -Electron-deuteron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_deuteron_profile49)_ 1.83408237132011180e+01 -Electron-deuteron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_deuteron_profile50)_ 1.83404153611447356e+01 -Electron-deuteron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_deuteron_profile51)_ 1.83399986056911288e+01 -Electron-deuteron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_deuteron_profile52)_ 1.83395734375183004e+01 -Electron-deuteron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_deuteron_profile53)_ 1.83391398471106761e+01 -Electron-deuteron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_deuteron_profile54)_ 1.83386978247585333e+01 -Electron-deuteron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_deuteron_profile55)_ 1.83382473605574781e+01 -Electron-deuteron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_deuteron_profile56)_ 1.83377884444078667e+01 -Electron-deuteron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_deuteron_profile57)_ 1.83373210660142334e+01 -Electron-deuteron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_deuteron_profile58)_ 1.83368452148847254e+01 -Electron-deuteron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_deuteron_profile59)_ 1.83363608803304814e+01 -Electron-deuteron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_deuteron_profile60)_ 1.83358680514650629e+01 -Electron-deuteron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_deuteron_profile61)_ 1.83353667172037937e+01 -Electron-deuteron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_deuteron_profile62)_ 1.83348568662631664e+01 -Electron-deuteron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_deuteron_profile63)_ 1.83343384871601742e+01 -Electron-deuteron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_deuteron_profile64)_ 1.83338115682116936e+01 -Electron-deuteron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_deuteron_profile65)_ 1.83332760975337763e+01 -Electron-deuteron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_deuteron_profile66)_ 1.83327320630410071e+01 -Electron-deuteron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_deuteron_profile67)_ 1.83321794524458141e+01 -Electron-deuteron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_deuteron_profile68)_ 1.83316182532577479e+01 -Electron-deuteron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_deuteron_profile69)_ 1.83310484527827846e+01 -Electron-deuteron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_deuteron_profile70)_ 1.83304700381226127e+01 -Electron-deuteron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_deuteron_profile71)_ 1.83298829961738683e+01 -Electron-deuteron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_deuteron_profile72)_ 1.83292873136274217e+01 -Electron-deuteron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_deuteron_profile73)_ 1.83286829769675883e+01 -Electron-deuteron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_deuteron_profile74)_ 1.83280699724713827e+01 -Electron-deuteron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_deuteron_profile75)_ 1.83274482862077086e+01 -Electron-deuteron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_deuteron_profile76)_ 1.83268179040365915e+01 -Electron-deuteron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_deuteron_profile77)_ 1.83261788116083366e+01 -Electron-deuteron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_deuteron_profile78)_ 1.83255309943627260e+01 -Electron-deuteron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_deuteron_profile79)_ 1.83248744375281944e+01 -Electron-deuteron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_deuteron_profile80)_ 1.83242091261209623e+01 -Electron-deuteron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_deuteron_profile81)_ 1.83235350449441796e+01 -Electron-deuteron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_deuteron_profile82)_ 1.83228521785870697e+01 -Electron-deuteron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_deuteron_profile83)_ 1.83221605114240305e+01 -Electron-deuteron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_deuteron_profile84)_ 1.83214600276137283e+01 -Electron-deuteron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_deuteron_profile85)_ 1.83207507110982206e+01 -Electron-deuteron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_deuteron_profile86)_ 1.83200325456019861e+01 -Electron-deuteron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_deuteron_profile87)_ 1.83193055146310257e+01 -Electron-deuteron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_deuteron_profile88)_ 1.83185696014718928e+01 -Electron-deuteron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_deuteron_profile89)_ 1.83178247891907375e+01 -Electron-deuteron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_deuteron_profile90)_ 1.83170710606323297e+01 -Electron-deuteron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_deuteron_profile91)_ 1.83163083984190678e+01 -Electron-deuteron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_deuteron_profile92)_ 1.83155367849499662e+01 -Electron-deuteron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_deuteron_profile93)_ 1.83147562023996571e+01 -Electron-deuteron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_deuteron_profile94)_ 1.83139666327173387e+01 -Electron-deuteron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_deuteron_profile95)_ 1.83131680576257487e+01 -Electron-deuteron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_deuteron_profile96)_ 1.83123604586201019e+01 -Electron-deuteron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_deuteron_profile97)_ 1.83115438169670064e+01 -Electron-deuteron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_deuteron_profile98)_ 1.83107181137033947e+01 -Electron-deuteron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_deuteron_profile99)_ 1.83098833296354080e+01 -Electron-deuteron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_deuteron_profile100)_ 1.83090394453372980e+01 -Electron-deuteron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_deuteron_profile101)_ 1.83081864411502870e+01 -Electron-deuteron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_deuteron_profile102)_ 1.83073242971814309e+01 -Electron-deuteron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_deuteron_profile103)_ 1.83064529933024538e+01 -Electron-deuteron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_deuteron_profile104)_ 1.83055725091485968e+01 -Electron-deuteron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_deuteron_profile105)_ 1.83046828241174104e+01 -Electron-deuteron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_deuteron_profile106)_ 1.83037839173675678e+01 -Electron-deuteron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_deuteron_profile107)_ 1.83028757678176461e+01 -Electron-deuteron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_deuteron_profile108)_ 1.83019583541448903e+01 -Electron-deuteron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_deuteron_profile109)_ 1.83010316547839906e+01 -Electron-deuteron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_deuteron_profile110)_ 1.83000956479257937e+01 -Electron-deuteron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_deuteron_profile111)_ 1.82991503115160512e+01 -Electron-deuteron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_deuteron_profile112)_ 1.82981956232541236e+01 -Electron-deuteron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_deuteron_profile113)_ 1.82972315605916691e+01 -Electron-deuteron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_deuteron_profile114)_ 1.82962581007313325e+01 -Electron-deuteron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_deuteron_profile115)_ 1.82952752206254168e+01 -Electron-deuteron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_deuteron_profile116)_ 1.82942828969745079e+01 -Electron-deuteron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_deuteron_profile117)_ 1.82932811062261358e+01 -Electron-deuteron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_deuteron_profile118)_ 1.82922698245733848e+01 -Electron-deuteron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_deuteron_profile119)_ 1.82912490279534872e+01 -Electron-deuteron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_deuteron_profile120)_ 1.82902186920464231e+01 -Electron-deuteron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_deuteron_profile121)_ 1.82891787922734821e+01 -Electron-deuteron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_deuteron_profile122)_ 1.82881293037958272e+01 -Electron-deuteron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_deuteron_profile123)_ 1.82870702015130320e+01 -Electron-deuteron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_deuteron_profile124)_ 1.82860014600616054e+01 -Electron-deuteron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_deuteron_profile125)_ 1.82849230538134861e+01 -Electron-deuteron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_deuteron_profile126)_ 1.82838349568745571e+01 -Electron-deuteron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_deuteron_profile127)_ 1.82827371430831036e+01 -Electron-deuteron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_deuteron_profile128)_ 1.82816295860082789e+01 -Electron-deuteron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_deuteron_profile129)_ 1.82805122589485372e+01 -Electron-deuteron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_deuteron_profile130)_ 1.82793851349300738e+01 -Electron-deuteron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_deuteron_profile131)_ 1.82782481867052304e+01 -Electron-deuteron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_deuteron_profile132)_ 1.82771013867508572e+01 -Electron-deuteron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_deuteron_profile133)_ 1.82759447072667491e+01 -Electron-deuteron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_deuteron_profile134)_ 1.82747781201739450e+01 -Electron-deuteron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_deuteron_profile135)_ 1.82736015971131032e+01 -Electron-deuteron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_deuteron_profile136)_ 1.82724151094428144e+01 -Electron-deuteron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_deuteron_profile137)_ 1.82712186282379179e+01 -Electron-deuteron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_deuteron_profile138)_ 1.82700121242877671e+01 -Electron-deuteron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_deuteron_profile139)_ 1.82687955680945358e+01 -Electron-deuteron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_deuteron_profile140)_ 1.82675689298714659e+01 -Electron-deuteron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_deuteron_profile141)_ 1.82663321795410774e+01 -Electron-deuteron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_deuteron_profile142)_ 1.82650852867334201e+01 -Electron-deuteron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_deuteron_profile143)_ 1.82638282207842764e+01 -Electron-deuteron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_deuteron_profile144)_ 1.82625609507333238e+01 -Electron-deuteron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_deuteron_profile145)_ 1.82612834453223236e+01 -Electron-deuteron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_deuteron_profile146)_ 1.82599956729932700e+01 -Electron-deuteron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_deuteron_profile147)_ 1.82586976018865101e+01 -Electron-deuteron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_deuteron_profile148)_ 1.82573891998388653e+01 -Electron-deuteron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_deuteron_profile149)_ 1.82560704343817441e+01 -Electron-deuteron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_deuteron_profile150)_ 1.82547412727391851e+01 -Electron-deuteron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_deuteron_profile151)_ 1.82534016818259595e+01 -Electron-deuteron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_deuteron_profile152)_ 1.82520516282455780e+01 -Electron-deuteron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_deuteron_profile153)_ 1.82506910782883409e+01 -Electron-deuteron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_deuteron_profile154)_ 1.82493199979293408e+01 -Electron-deuteron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_deuteron_profile155)_ 1.82479383528264378e+01 -Electron-deuteron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_deuteron_profile156)_ 1.82465461083182383e+01 -Electron-deuteron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_deuteron_profile157)_ 1.82451432294220552e+01 -Electron-deuteron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_deuteron_profile158)_ 1.82437296808318266e+01 -Electron-deuteron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_deuteron_profile159)_ 1.82423054269160509e+01 -Electron-deuteron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_deuteron_profile160)_ 1.82408704317156705e+01 -Electron-deuteron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_deuteron_profile161)_ 1.82394246589419389e+01 -Electron-deuteron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_deuteron_profile162)_ 1.82379680719743220e+01 -Electron-deuteron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_deuteron_profile163)_ 1.82365006338582987e+01 -Electron-deuteron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_deuteron_profile164)_ 1.82350223073032112e+01 -Electron-deuteron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_deuteron_profile165)_ 1.82335330546800591e+01 -Electron-deuteron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_deuteron_profile166)_ 1.82320328380192898e+01 -Electron-deuteron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_deuteron_profile167)_ 1.82305216190085702e+01 -Electron-deuteron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_deuteron_profile168)_ 1.82289993589905421e+01 -Electron-deuteron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_deuteron_profile169)_ 1.82274660189605520e+01 -Electron-deuteron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_deuteron_profile170)_ 1.82259215595643447e+01 -Electron-deuteron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_deuteron_profile171)_ 1.82243659410958116e+01 -Electron-deuteron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_deuteron_profile172)_ 1.82227991234946174e+01 -Electron-deuteron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_deuteron_profile173)_ 1.82212210663438903e+01 -Electron-deuteron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_deuteron_profile174)_ 1.82196317288678529e+01 -Electron-deuteron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_deuteron_profile175)_ 1.82180310699294523e+01 -Electron-deuteron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_deuteron_profile176)_ 1.82164190480279693e+01 -Electron-deuteron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_deuteron_profile177)_ 1.82147956212965987e+01 -Electron-deuteron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_deuteron_profile178)_ 1.82131607475000337e+01 -Electron-deuteron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_deuteron_profile179)_ 1.82115143840320144e+01 -Electron-deuteron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_deuteron_profile180)_ 1.82098564879128624e+01 -Electron-deuteron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_deuteron_profile181)_ 1.82081870157870078e+01 -Electron-deuteron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_deuteron_profile182)_ 1.82065059239204707e+01 -Electron-deuteron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_deuteron_profile183)_ 1.82048131681983882e+01 -Electron-deuteron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_deuteron_profile184)_ 1.82031087041224424e+01 -Electron-deuteron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_deuteron_profile185)_ 1.82013924868083379e+01 -Electron-deuteron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_deuteron_profile186)_ 1.81996644709832225e+01 -Electron-deuteron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_deuteron_profile187)_ 1.81979246109831223e+01 -Electron-deuteron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_deuteron_profile188)_ 1.81961728607503304e+01 -Electron-deuteron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_deuteron_profile189)_ 1.81944091738308096e+01 -Electron-deuteron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_deuteron_profile190)_ 1.81926335033715496e+01 -Electron-deuteron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_deuteron_profile191)_ 1.81908458021179378e+01 -Electron-deuteron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_deuteron_profile192)_ 1.81890460224110981e+01 -Electron-deuteron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_deuteron_profile193)_ 1.81872341161852091e+01 -Electron-deuteron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_deuteron_profile194)_ 1.81854100349648320e+01 -Electron-deuteron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_deuteron_profile195)_ 1.81835737298622000e+01 -Electron-deuteron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_deuteron_profile196)_ 1.81817251515745149e+01 -Electron-deuteron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_deuteron_profile197)_ 1.81798642503812005e+01 -Electron-deuteron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_deuteron_profile198)_ 1.81779909761411815e+01 -Electron-deuteron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_deuteron_profile199)_ 1.81761052782901196e+01 -Electron-deuteron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_deuteron_profile200)_ 1.81742071058376453e+01 -Electron-deuteron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_deuteron_profile201)_ 1.81722964073646018e+01 -Electron-deuteron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_deuteron_profile202)_ 1.81703731310202272e+01 -Electron-deuteron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_deuteron_profile203)_ 1.81684372245193764e+01 -Electron-deuteron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_deuteron_profile204)_ 1.81664886351397143e+01 -Electron-deuteron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_deuteron_profile205)_ 1.81645273097188742e+01 -Electron-deuteron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_deuteron_profile206)_ 1.81625531946516645e+01 -Electron-deuteron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_deuteron_profile207)_ 1.81605662358871989e+01 -Electron-deuteron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_deuteron_profile208)_ 1.81585663789260821e+01 -Electron-deuteron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_deuteron_profile209)_ 1.81565535688175430e+01 -Electron-deuteron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_deuteron_profile210)_ 1.81545277501565820e+01 -Electron-deuteron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_deuteron_profile211)_ 1.81524888670811002e+01 -Electron-deuteron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_deuteron_profile212)_ 1.81504368632690642e+01 -Electron-deuteron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_deuteron_profile213)_ 1.81483716819355898e+01 -Electron-deuteron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_deuteron_profile214)_ 1.81462932658300922e+01 -Electron-deuteron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_deuteron_profile215)_ 1.81442015572334299e+01 -Electron-deuteron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_deuteron_profile216)_ 1.81420964979549773e+01 -Electron-deuteron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_deuteron_profile217)_ 1.81399780293297859e+01 -Electron-deuteron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_deuteron_profile218)_ 1.81378460922156961e+01 -Electron-deuteron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_deuteron_profile219)_ 1.81357006269904630e+01 -Electron-deuteron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_deuteron_profile220)_ 1.81335415735488752e+01 -Electron-deuteron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_deuteron_profile221)_ 1.81313688712999017e+01 -Electron-deuteron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_deuteron_profile222)_ 1.81291824591638004e+01 -Electron-deuteron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_deuteron_profile223)_ 1.81269822755693006e+01 -Electron-deuteron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_deuteron_profile224)_ 1.81247682584507217e+01 -Electron-deuteron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_deuteron_profile225)_ 1.81225403452451417e+01 -Electron-deuteron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_deuteron_profile226)_ 1.81202984728895764e+01 -Electron-deuteron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_deuteron_profile227)_ 1.81180425778181515e+01 -Electron-deuteron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_deuteron_profile228)_ 1.81157725959592995e+01 -Electron-deuteron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_deuteron_profile229)_ 1.81134884627329740e+01 -Electron-deuteron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_deuteron_profile230)_ 1.81111901130478898e+01 -Electron-deuteron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_deuteron_profile231)_ 1.81088774812987410e+01 -Electron-deuteron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_deuteron_profile232)_ 1.81065505013635004e+01 -Electron-deuteron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_deuteron_profile233)_ 1.81042091066006812e+01 -Electron-deuteron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_deuteron_profile234)_ 1.81018532298466752e+01 -Electron-deuteron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_deuteron_profile235)_ 1.80994828034130784e+01 -Electron-deuteron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_deuteron_profile236)_ 1.80970977590840754e+01 -Electron-deuteron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_deuteron_profile237)_ 1.80946980281138217e+01 -Electron-deuteron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_deuteron_profile238)_ 1.80922835412238889e+01 -Electron-deuteron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_deuteron_profile239)_ 1.80898542286007284e+01 -Electron-deuteron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_deuteron_profile240)_ 1.80874100198932020e+01 -Electron-deuteron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_deuteron_profile241)_ 1.80849508442100912e+01 -Electron-deuteron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_deuteron_profile242)_ 1.80824766301177355e+01 -Electron-deuteron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_deuteron_profile243)_ 1.80799873056376228e+01 -Electron-deuteron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_deuteron_profile244)_ 1.80774827982441160e+01 -Electron-deuteron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_deuteron_profile245)_ 1.80749630348621899e+01 -Electron-deuteron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_deuteron_profile246)_ 1.80724279418652038e+01 -Electron-deuteron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_deuteron_profile247)_ 1.80698774450727946e+01 -Electron-deuteron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_deuteron_profile248)_ 1.80673114697487662e+01 -Electron-deuteron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_deuteron_profile249)_ 1.80647299405990900e+01 -Electron-deuteron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_deuteron_profile250)_ 1.80621327817699466e+01 -Electron-deuteron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_deuteron_profile251)_ 1.80595199168458862e+01 -Electron-deuteron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_deuteron_profile252)_ 1.80568912688480019e+01 -Electron-deuteron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_deuteron_profile253)_ 1.80542467602322354e+01 -Electron-deuteron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_deuteron_profile254)_ 1.80515863128877783e+01 -Electron-deuteron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_deuteron_profile255)_ 1.80489098481354802e+01 -Electron-deuteron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_deuteron_profile256)_ 1.80462172867264847e+01 -Electron-deuteron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_deuteron_profile257)_ 1.80435085488408369e+01 -Electron-deuteron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_deuteron_profile258)_ 1.80407835540863069e+01 -Electron-deuteron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_deuteron_profile259)_ 1.80380422214972320e+01 -Electron-deuteron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_deuteron_profile260)_ 1.80352844695335399e+01 -Electron-deuteron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_deuteron_profile261)_ 1.80325102160798743e+01 -Electron-deuteron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_deuteron_profile262)_ 1.80297193784448417e+01 -Electron-deuteron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_deuteron_profile263)_ 1.80269118733604152e+01 -Electron-deuteron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_deuteron_profile264)_ 1.80240876169814364e+01 -Electron-deuteron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_deuteron_profile265)_ 1.80212465248853277e+01 -Electron-deuteron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_deuteron_profile266)_ 1.80183885120719189e+01 -Electron-deuteron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_deuteron_profile267)_ 1.80155134929634393e+01 -Electron-deuteron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_deuteron_profile268)_ 1.80126213814047063e+01 -Electron-deuteron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_deuteron_profile269)_ 1.80097120906634345e+01 -Electron-deuteron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_deuteron_profile270)_ 1.80067855334308291e+01 -Electron-deuteron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_deuteron_profile271)_ 1.80038416218222821e+01 -Electron-deuteron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_deuteron_profile272)_ 1.80008802673783066e+01 -Electron-deuteron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_deuteron_profile273)_ 1.79979013810656951e+01 -Electron-deuteron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_deuteron_profile274)_ 1.79949048732789016e+01 -Electron-deuteron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_deuteron_profile275)_ 1.79918906538416294e+01 -Electron-deuteron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_deuteron_profile276)_ 1.79888586320087143e+01 -Electron-deuteron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_deuteron_profile277)_ 1.79858087164681812e+01 -Electron-deuteron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_deuteron_profile278)_ 1.79827408153436608e+01 -Electron-deuteron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_deuteron_profile279)_ 1.79796548361970032e+01 -Electron-deuteron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_deuteron_profile280)_ 1.79765506860312492e+01 -Electron-deuteron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_deuteron_profile281)_ 1.79734282712938338e+01 -Electron-deuteron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_deuteron_profile282)_ 1.79702874978801823e+01 -Electron-deuteron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_deuteron_profile283)_ 1.79671282711375540e+01 -Electron-deuteron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_deuteron_profile284)_ 1.79639504958693053e+01 -Electron-deuteron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_deuteron_profile285)_ 1.79607540763394482e+01 -Electron-deuteron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_deuteron_profile286)_ 1.79575389162776311e+01 -Electron-deuteron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_deuteron_profile287)_ 1.79543049188844712e+01 -Electron-deuteron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_deuteron_profile288)_ 1.79510519868373173e+01 -Electron-deuteron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_deuteron_profile289)_ 1.79477800222964241e+01 -Electron-deuteron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_deuteron_profile290)_ 1.79444889269115748e+01 -Electron-deuteron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_deuteron_profile291)_ 1.79411786018291508e+01 -Electron-deuteron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_deuteron_profile292)_ 1.79378489476996954e+01 -Electron-deuteron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_deuteron_profile293)_ 1.79344998646859715e+01 -Electron-deuteron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_deuteron_profile294)_ 1.79311312524715376e+01 -Electron-deuteron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_deuteron_profile295)_ 1.79277430102698467e+01 -Electron-deuteron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_deuteron_profile296)_ 1.79243350368339662e+01 -Electron-deuteron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_deuteron_profile297)_ 1.79209072304668062e+01 -Electron-deuteron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_deuteron_profile298)_ 1.79174594890320478e+01 -Electron-deuteron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_deuteron_profile299)_ 1.79139917099656323e+01 -Electron-deuteron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_deuteron_profile300)_ 1.79105037902879545e+01 -Electron-deuteron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_deuteron_profile301)_ 1.79069956266167551e+01 -Electron-deuteron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_deuteron_profile302)_ 1.79034671151807139e+01 -Electron-deuteron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_deuteron_profile303)_ 1.78999181518337842e+01 -Electron-deuteron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_deuteron_profile304)_ 1.78963486320703566e+01 -Electron-deuteron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_deuteron_profile305)_ 1.78927584510411961e+01 -Electron-deuteron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_deuteron_profile306)_ 1.78891475035702356e+01 -Electron-deuteron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_deuteron_profile307)_ 1.78855156841722405e+01 -Electron-deuteron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_deuteron_profile308)_ 1.78818628870714420e+01 -Electron-deuteron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_deuteron_profile309)_ 1.78781890062210564e+01 -Electron-deuteron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_deuteron_profile310)_ 1.78744939353238799e+01 -Electron-deuteron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_deuteron_profile311)_ 1.78707775678538425e+01 -Electron-deuteron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_deuteron_profile312)_ 1.78670397970787178e+01 -Electron-deuteron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_deuteron_profile313)_ 1.78632805160838792e+01 -Electron-deuteron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_deuteron_profile314)_ 1.78594996177973186e+01 -Electron-deuteron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_deuteron_profile315)_ 1.78556969950157978e+01 -Electron-deuteron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_deuteron_profile316)_ 1.78518725404323249e+01 -Electron-deuteron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_deuteron_profile317)_ 1.78480261466649672e+01 -Electron-deuteron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_deuteron_profile318)_ 1.78441577062869534e+01 -Electron-deuteron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_deuteron_profile319)_ 1.78402671118583243e+01 -Electron-deuteron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_deuteron_profile320)_ 1.78363542559589909e+01 -Electron-deuteron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_deuteron_profile321)_ 1.78324190312233917e+01 -Electron-deuteron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_deuteron_profile322)_ 1.78284613303767614e+01 -Electron-deuteron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_deuteron_profile323)_ 1.78244810462730641e+01 -Electron-deuteron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_deuteron_profile324)_ 1.78204780719347049e+01 -Electron-deuteron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_deuteron_profile325)_ 1.78164523005940687e+01 -Electron-deuteron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_deuteron_profile326)_ 1.78124036257369376e+01 -Electron-deuteron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_deuteron_profile327)_ 1.78083319411479266e+01 -Electron-deuteron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_deuteron_profile328)_ 1.78042371409579694e+01 -Electron-deuteron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_deuteron_profile329)_ 1.78001191196939210e+01 -Electron-deuteron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_deuteron_profile330)_ 1.77959777723304704e+01 -Electron-deuteron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_deuteron_profile331)_ 1.77918129943442942e+01 -Electron-deuteron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_deuteron_profile332)_ 1.77876246817707369e+01 -Electron-deuteron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_deuteron_profile333)_ 1.77834127312629242e+01 -Electron-deuteron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_deuteron_profile334)_ 1.77791770401536091e+01 -Electron-deuteron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_deuteron_profile335)_ 1.77749175065196496e+01 -Electron-deuteron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_deuteron_profile336)_ 1.77706340292494573e+01 -Electron-deuteron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_deuteron_profile337)_ 1.77663265081133623e+01 -Electron-deuteron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_deuteron_profile338)_ 1.77619948438370905e+01 -Electron-deuteron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_deuteron_profile339)_ 1.77576389381784558e+01 -Electron-deuteron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_deuteron_profile340)_ 1.77532586940074708e+01 -Electron-deuteron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_deuteron_profile341)_ 1.77488540153899237e+01 -Electron-deuteron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_deuteron_profile342)_ 1.77444248076746334e+01 -Electron-deuteron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_deuteron_profile343)_ 1.77399709775844912e+01 -Electron-deuteron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_deuteron_profile344)_ 1.77354924333115171e+01 -Electron-deuteron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_deuteron_profile345)_ 1.77309890846160059e+01 -Electron-deuteron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_deuteron_profile346)_ 1.77264608429300203e+01 -Electron-deuteron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_deuteron_profile347)_ 1.77219076214653946e+01 -Electron-deuteron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_deuteron_profile348)_ 1.77173293353263475e+01 -Electron-deuteron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_deuteron_profile349)_ 1.77127259016271132e+01 -Electron-deuteron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_deuteron_profile350)_ 1.77080972396145455e+01 -Electron-deuteron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_deuteron_profile351)_ 1.77034432707960896e+01 -Electron-deuteron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_deuteron_profile352)_ 1.76987639190733042e+01 -Electron-deuteron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_deuteron_profile353)_ 1.76940591108811418e+01 -Electron-deuteron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_deuteron_profile354)_ 1.76893287753332409e+01 -Electron-deuteron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_deuteron_profile355)_ 1.76845728443735375e+01 -Electron-deuteron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_deuteron_profile356)_ 1.76797912529344039e+01 -Electron-deuteron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_deuteron_profile357)_ 1.76749839391016259e+01 -Electron-deuteron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_deuteron_profile358)_ 1.76701508442865531e+01 -Electron-deuteron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_deuteron_profile359)_ 1.76652919134056212e+01 -Electron-deuteron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_deuteron_profile360)_ 1.76604070950677219e+01 -Electron-deuteron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_deuteron_profile361)_ 1.76554963417695987e+01 -Electron-deuteron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_deuteron_profile362)_ 1.76505596100997728e+01 -Electron-deuteron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_deuteron_profile363)_ 1.76455968609512475e+01 -Electron-deuteron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_deuteron_profile364)_ 1.76406080597434709e+01 -Electron-deuteron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_deuteron_profile365)_ 1.76355931766538561e+01 -Electron-deuteron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_deuteron_profile366)_ 1.76305521868594539e+01 -Electron-deuteron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_deuteron_profile367)_ 1.76254850707889901e+01 -Electron-deuteron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_deuteron_profile368)_ 1.76203918143859823e+01 -Electron-deuteron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_deuteron_profile369)_ 1.76152724093832092e+01 -Electron-deuteron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_deuteron_profile370)_ 1.76101268535891826e+01 -Electron-deuteron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_deuteron_profile371)_ 1.76049551511871023e+01 -Electron-deuteron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_deuteron_profile372)_ 1.75997573130468474e+01 -Electron-deuteron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_deuteron_profile373)_ 1.75945333570506364e+01 -Electron-deuteron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_deuteron_profile374)_ 1.75892833084328757e+01 -Electron-deuteron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_deuteron_profile375)_ 1.75840072001350372e+01 -Electron-deuteron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_deuteron_profile376)_ 1.75787050731759820e+01 -Electron-deuteron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_deuteron_profile377)_ 1.75733769770386203e+01 -Electron-deuteron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_deuteron_profile378)_ 1.75680229700736561e+01 -Electron-deuteron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_deuteron_profile379)_ 1.75626431199211055e+01 -Electron-deuteron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_deuteron_profile380)_ 1.75572375039504429e+01 -Electron-deuteron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_deuteron_profile381)_ 1.75518062097203078e+01 -Electron-deuteron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_deuteron_profile382)_ 1.75463493354585829e+01 -Electron-deuteron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_deuteron_profile383)_ 1.75408669905638881e+01 -Electron-deuteron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_deuteron_profile384)_ 1.75353592961293820e+01 -Electron-deuteron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_deuteron_profile385)_ 1.75298263854900576e+01 -Electron-deuteron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_deuteron_profile386)_ 1.75242684047945652e+01 -Electron-deuteron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_deuteron_profile387)_ 1.75186855136027049e+01 -Electron-deuteron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_deuteron_profile388)_ 1.75130778855098939e+01 -Electron-deuteron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_deuteron_profile389)_ 1.75074457087998852e+01 -Electron-deuteron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_deuteron_profile390)_ 1.75017891871270557e+01 -Electron-deuteron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_deuteron_profile391)_ 1.74961085402297449e+01 -Electron-deuteron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_deuteron_profile392)_ 1.74904040046761722e+01 -Electron-deuteron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_deuteron_profile393)_ 1.74846758346445341e+01 -Electron-deuteron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_deuteron_profile394)_ 1.74789243027389318e+01 -Electron-deuteron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_deuteron_profile395)_ 1.74731497008429386e+01 -Electron-deuteron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_deuteron_profile396)_ 1.74673523410128553e+01 -Electron-deuteron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_deuteron_profile397)_ 1.74615325564122976e+01 -Electron-deuteron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_deuteron_profile398)_ 1.74556907022906422e+01 -Electron-deuteron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_deuteron_profile399)_ 1.74498271570072809e+01 -Electron-deuteron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_deuteron_profile400)_ 1.74439423231042845e+01 -Electron-deuteron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_deuteron_profile401)_ 1.74380366284298134e+01 -Electron-deuteron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_deuteron_profile402)_ 1.74321105273150643e+01 -Electron-deuteron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_deuteron_profile403)_ 1.74261645018076727e+01 -Electron-deuteron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_deuteron_profile404)_ 1.74201990629644392e+01 -Electron-deuteron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_deuteron_profile405)_ 1.74142147522067958e+01 -Electron-deuteron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_deuteron_profile406)_ 1.74082121427423395e+01 -Electron-deuteron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_deuteron_profile407)_ 1.74021918410562222e+01 -Electron-deuteron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_deuteron_profile408)_ 1.73961544884762347e+01 -Electron-deuteron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_deuteron_profile409)_ 1.73901007628159050e+01 -Electron-deuteron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_deuteron_profile410)_ 1.73840313801000867e+01 -Electron-deuteron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_deuteron_profile411)_ 1.73779470963778948e+01 -Electron-deuteron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_deuteron_profile412)_ 1.73718487096282530e+01 -Electron-deuteron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_deuteron_profile413)_ 1.73657370617635358e+01 -Electron-deuteron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_deuteron_profile414)_ 1.73596130407376492e+01 -Electron-deuteron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_deuteron_profile415)_ 1.73534775827647891e+01 -Electron-deuteron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_deuteron_profile416)_ 1.73473316746561572e+01 -Electron-deuteron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_deuteron_profile417)_ 1.73411763562822898e+01 -Electron-deuteron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_deuteron_profile418)_ 1.73350127231694096e+01 -Electron-deuteron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_deuteron_profile419)_ 1.73288419292387204e+01 -Electron-deuteron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_deuteron_profile420)_ 1.73226651896989097e+01 -Electron-deuteron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_deuteron_profile421)_ 1.73164837841024877e+01 -Electron-deuteron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_deuteron_profile422)_ 1.73102990595779040e+01 -Electron-deuteron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_deuteron_profile423)_ 1.73041124342508716e+01 -Electron-deuteron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_deuteron_profile424)_ 1.72979254008690297e+01 -Electron-deuteron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_deuteron_profile425)_ 1.72917395306461792e+01 -Electron-deuteron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_deuteron_profile426)_ 1.72855564773438992e+01 -Electron-deuteron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_deuteron_profile427)_ 1.72793779816101889e+01 -Electron-deuteron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_deuteron_profile428)_ 1.72732058755974336e+01 -Electron-deuteron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_deuteron_profile429)_ 1.72670420878843274e+01 -Electron-deuteron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_deuteron_profile430)_ 1.72608886487296189e+01 -Electron-deuteron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_deuteron_profile431)_ 1.72547476956891614e+01 -Electron-deuteron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_deuteron_profile432)_ 1.72486214796316979e+01 -Electron-deuteron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_deuteron_profile433)_ 1.72425123711940955e+01 -Electron-deuteron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_deuteron_profile434)_ 1.72364228677218492e+01 -Electron-deuteron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_deuteron_profile435)_ 1.72303556007481760e+01 -Electron-deuteron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_deuteron_profile436)_ 1.72243133440723284e+01 -Electron-deuteron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_deuteron_profile437)_ 1.72182990225079351e+01 -Electron-deuteron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_deuteron_profile438)_ 1.72123157213831242e+01 -Electron-deuteron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_deuteron_profile439)_ 1.72063666968882139e+01 -Electron-deuteron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_deuteron_profile440)_ 1.72004553873835171e+01 -Electron-deuteron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_deuteron_profile441)_ 1.71945854257998327e+01 -Electron-deuteron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_deuteron_profile442)_ 1.71887606532892221e+01 -Electron-deuteron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_deuteron_profile443)_ 1.71829851343144462e+01 -Electron-deuteron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_deuteron_profile444)_ 1.71772631734031798e+01 -Electron-deuteron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_deuteron_profile445)_ 1.71715993338410833e+01 -Electron-deuteron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_deuteron_profile446)_ 1.71659984586375103e+01 -Electron-deuteron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_deuteron_profile447)_ 1.71604656941741283e+01 -Electron-deuteron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_deuteron_profile448)_ 1.71550065170444093e+01 -Electron-deuteron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_deuteron_profile449)_ 1.71496267647186791e+01 -Electron-deuteron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_deuteron_profile450)_ 1.71443326708356167e+01 -Electron-deuteron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_deuteron_profile451)_ 1.71391309061405757e+01 -Electron-deuteron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_deuteron_profile452)_ 1.71340286263862112e+01 -Electron-deuteron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_deuteron_profile453)_ 1.71290335289121103e+01 -Electron-deuteron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_deuteron_profile454)_ 1.71241539201738782e+01 -Electron-deuteron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_deuteron_profile455)_ 1.71193987972709714e+01 -Electron-deuteron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_deuteron_profile456)_ 1.71147779476365969e+01 -Electron-deuteron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_deuteron_profile457)_ 1.71103020726831261e+01 -Electron-deuteron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_deuteron_profile458)_ 1.71059829436367181e+01 -Electron-deuteron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_deuteron_profile459)_ 1.71018336015516965e+01 -Electron-deuteron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_deuteron_profile460)_ 1.70978686194592555e+01 -Electron-deuteron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_deuteron_profile461)_ 1.70941044544261906e+01 -Electron-deuteron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_deuteron_profile462)_ 1.70905599341749834e+01 -Electron-deuteron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_deuteron_profile463)_ 1.70872569534342773e+01 -Electron-deuteron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_deuteron_profile464)_ 1.70842215139190330e+01 -Electron-deuteron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_deuteron_profile465)_ 1.70814853640077224e+01 -Electron-deuteron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_deuteron_profile466)_ 1.70790887751913836e+01 -Electron-deuteron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_deuteron_profile467)_ 1.70770857331529058e+01 -Electron-deuteron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_deuteron_profile468)_ 1.70755552046000716e+01 -Electron-deuteron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_deuteron_profile469)_ 1.70746328621753207e+01 -Electron-deuteron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_deuteron_profile470)_ 1.70747056907688020e+01 -Electron-deuteron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_deuteron_profile471)_ 1.70486020693763400e+01 -Electron-deuteron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_deuteron_profile472)_ 1.70214499630558755e+01 -Electron-deuteron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_deuteron_profile473)_ 1.69931704451041945e+01 -Electron-deuteron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_deuteron_profile474)_ 1.69636756470907706e+01 -Electron-deuteron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_deuteron_profile475)_ 1.69328673740323659e+01 -Electron-deuteron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_deuteron_profile476)_ 1.69006354421410023e+01 -Electron-deuteron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_deuteron_profile477)_ 1.68668556698047603e+01 -Electron-deuteron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_deuteron_profile478)_ 1.68313874313744343e+01 -Electron-deuteron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_deuteron_profile479)_ 1.67940706545852869e+01 -Electron-deuteron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_deuteron_profile480)_ 1.67547221027595405e+01 -Electron-deuteron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_deuteron_profile481)_ 1.67131307273961838e+01 -Electron-deuteron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_deuteron_profile482)_ 1.66690517978567350e+01 -Electron-deuteron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_deuteron_profile483)_ 1.66221994009297056e+01 -Electron-deuteron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_deuteron_profile484)_ 1.65722367355777749e+01 -Electron-deuteron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_deuteron_profile485)_ 1.65187633770409370e+01 -Electron-deuteron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_deuteron_profile486)_ 1.64612982995367538e+01 -Electron-deuteron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_deuteron_profile487)_ 1.63992568421070395e+01 -Electron-deuteron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_deuteron_profile488)_ 1.63319188256500318e+01 -Electron-deuteron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_deuteron_profile489)_ 1.62583834020711997e+01 -Electron-deuteron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_deuteron_profile490)_ 1.61775034064956635e+01 -Electron-deuteron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_deuteron_profile491)_ 1.60877869256148607e+01 -Electron-deuteron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_deuteron_profile492)_ 1.59872442395011216e+01 -Electron-deuteron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_deuteron_profile493)_ 1.58731391716093544e+01 -Electron-deuteron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_deuteron_profile494)_ 1.57415628553324698e+01 -Electron-deuteron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_deuteron_profile495)_ 1.55866519799410739e+01 -Electron-deuteron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_deuteron_profile496)_ 1.53990230715303174e+01 -Electron-deuteron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_deuteron_profile497)_ 1.51622368270522792e+01 -Electron-deuteron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_deuteron_profile498)_ 1.48432829938805160e+01 -Electron-deuteron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_deuteron_profile499)_ 1.43583826201851199e+01 -Electron-deuteron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_deuteron_profile500)_ 1.33405598413794220e+01 -Volume_averaged_electron-triton_Coulomb_log_(ΛₑT)________________________ (plasma_coulomb_log_electron_triton_vol_avg)_ 1.77779024903161513e+01 OP -Electron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_electron_triton_profile0)_ 1.83507235170867631e+01 -Electron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_electron_triton_profile1)_ 1.83507194293950455e+01 -Electron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_electron_triton_profile2)_ 1.83507071662297570e+01 -Electron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_electron_triton_profile3)_ 1.83506867273204861e+01 -Electron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_electron_triton_profile4)_ 1.83506581122165215e+01 -Electron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_electron_triton_profile5)_ 1.83506213202868445e+01 -Electron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_electron_triton_profile6)_ 1.83505763507200719e+01 -Electron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_electron_triton_profile7)_ 1.83505232025244425e+01 -Electron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_electron_triton_profile8)_ 1.83504618745277170e+01 -Electron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_electron_triton_profile9)_ 1.83503923653771537e+01 -Electron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_electron_triton_profile10)_ 1.83503146735394118e+01 -Electron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_electron_triton_profile11)_ 1.83502287973004670e+01 -Electron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_electron_triton_profile12)_ 1.83501347347655290e+01 -Electron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_electron_triton_profile13)_ 1.83500324838589144e+01 -Electron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_electron_triton_profile14)_ 1.83499220423239500e+01 -Electron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_electron_triton_profile15)_ 1.83498034077228382e+01 -Electron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_electron_triton_profile16)_ 1.83496765774365151e+01 -Electron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_electron_triton_profile17)_ 1.83495415486645292e+01 -Electron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_electron_triton_profile18)_ 1.83493983184248464e+01 -Electron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_electron_triton_profile19)_ 1.83492468835537110e+01 -Electron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_electron_triton_profile20)_ 1.83490872407054653e+01 -Electron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_electron_triton_profile21)_ 1.83489193863523603e+01 -Electron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_electron_triton_profile22)_ 1.83487433167843434e+01 -Electron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_electron_triton_profile23)_ 1.83485590281088875e+01 -Electron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_electron_triton_profile24)_ 1.83483665162507243e+01 -Electron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_electron_triton_profile25)_ 1.83481657769516637e+01 -Electron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_electron_triton_profile26)_ 1.83479568057703233e+01 -Electron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_electron_triton_profile27)_ 1.83477395980818976e+01 -Electron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_electron_triton_profile28)_ 1.83475141490778846e+01 -Electron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_electron_triton_profile29)_ 1.83472804537658298e+01 -Electron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_electron_triton_profile30)_ 1.83470385069690458e+01 -Electron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_electron_triton_profile31)_ 1.83467883033263028e+01 -Electron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_electron_triton_profile32)_ 1.83465298372915520e+01 -Electron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_electron_triton_profile33)_ 1.83462631031336159e+01 -Electron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_electron_triton_profile34)_ 1.83459880949358372e+01 -Electron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_electron_triton_profile35)_ 1.83457048065957800e+01 -Electron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_electron_triton_profile36)_ 1.83454132318248675e+01 -Electron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_electron_triton_profile37)_ 1.83451133641480375e+01 -Electron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_electron_triton_profile38)_ 1.83448051969033834e+01 -Electron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_electron_triton_profile39)_ 1.83444887232417564e+01 -Electron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_electron_triton_profile40)_ 1.83441639361264137e+01 -Electron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_electron_triton_profile41)_ 1.83438308283326066e+01 -Electron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_electron_triton_profile42)_ 1.83434893924471574e+01 -Electron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_electron_triton_profile43)_ 1.83431396208680866e+01 -Electron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_electron_triton_profile44)_ 1.83427815058041332e+01 -Electron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_electron_triton_profile45)_ 1.83424150392743535e+01 -Electron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_electron_triton_profile46)_ 1.83420402131076585e+01 -Electron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_electron_triton_profile47)_ 1.83416570189423602e+01 -Electron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_electron_triton_profile48)_ 1.83412654482256769e+01 -Electron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_electron_triton_profile49)_ 1.83408654922132861e+01 -Electron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_electron_triton_profile50)_ 1.83404571419688089e+01 -Electron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_electron_triton_profile51)_ 1.83400403883633061e+01 -Electron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_electron_triton_profile52)_ 1.83396152220747659e+01 -Electron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_electron_triton_profile53)_ 1.83391816335875895e+01 -Electron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_electron_triton_profile54)_ 1.83387396131920362e+01 -Electron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_electron_triton_profile55)_ 1.83382891509836803e+01 -Electron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_electron_triton_profile56)_ 1.83378302368628425e+01 -Electron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_electron_triton_profile57)_ 1.83373628605340500e+01 -Electron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_electron_triton_profile58)_ 1.83368870115054108e+01 -Electron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_electron_triton_profile59)_ 1.83364026790880423e+01 -Electron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_electron_triton_profile60)_ 1.83359098523954742e+01 -Electron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_electron_triton_profile61)_ 1.83354085203430017e+01 -Electron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_electron_triton_profile62)_ 1.83348986716470890e+01 -Electron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_electron_triton_profile63)_ 1.83343802948247117e+01 -Electron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_electron_triton_profile64)_ 1.83338533781926962e+01 -Electron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_electron_triton_profile65)_ 1.83333179098670804e+01 -Electron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_electron_triton_profile66)_ 1.83327738777624134e+01 -Electron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_electron_triton_profile67)_ 1.83322212695910878e+01 -Electron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_electron_triton_profile68)_ 1.83316600728626291e+01 -Electron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_electron_triton_profile69)_ 1.83310902748829783e+01 -Electron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_electron_triton_profile70)_ 1.83305118627537880e+01 -Electron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_electron_triton_profile71)_ 1.83299248233716696e+01 -Electron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_electron_triton_profile72)_ 1.83293291434274508e+01 -Electron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_electron_triton_profile73)_ 1.83287248094054220e+01 -Electron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_electron_triton_profile74)_ 1.83281118075825589e+01 -Electron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_electron_triton_profile75)_ 1.83274901240277259e+01 -Electron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_electron_triton_profile76)_ 1.83268597446009167e+01 -Electron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_electron_triton_profile77)_ 1.83262206549523974e+01 -Electron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_electron_triton_profile78)_ 1.83255728405219251e+01 -Electron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_electron_triton_profile79)_ 1.83249162865378814e+01 -Electron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_electron_triton_profile80)_ 1.83242509780164546e+01 -Electron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_electron_triton_profile81)_ 1.83235768997607700e+01 -Electron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_electron_triton_profile82)_ 1.83228940363599939e+01 -Electron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_electron_triton_profile83)_ 1.83222023721884923e+01 -Electron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_electron_triton_profile84)_ 1.83215018914048926e+01 -Electron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_electron_triton_profile85)_ 1.83207925779512095e+01 -Electron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_electron_triton_profile86)_ 1.83200744155518862e+01 -Electron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_electron_triton_profile87)_ 1.83193473877128774e+01 -Electron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_electron_triton_profile88)_ 1.83186114777207010e+01 -Electron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_electron_triton_profile89)_ 1.83178666686414608e+01 -Electron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_electron_triton_profile90)_ 1.83171129433198843e+01 -Electron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_electron_triton_profile91)_ 1.83163502843783270e+01 -Electron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_electron_triton_profile92)_ 1.83155786742157574e+01 -Electron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_electron_triton_profile93)_ 1.83147980950067648e+01 -Electron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_electron_triton_profile94)_ 1.83140085287005050e+01 -Electron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_electron_triton_profile95)_ 1.83132099570196694e+01 -Electron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_electron_triton_profile96)_ 1.83124023614594300e+01 -Electron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_electron_triton_profile97)_ 1.83115857232863455e+01 -Electron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_electron_triton_profile98)_ 1.83107600235372985e+01 -Electron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_electron_triton_profile99)_ 1.83099252430183874e+01 -Electron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_electron_triton_profile100)_ 1.83090813623038144e+01 -Electron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_electron_triton_profile101)_ 1.83082283617347557e+01 -Electron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_electron_triton_profile102)_ 1.83073662214182136e+01 -Electron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_electron_triton_profile103)_ 1.83064949212258696e+01 -Electron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_electron_triton_profile104)_ 1.83056144407929118e+01 -Electron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_electron_triton_profile105)_ 1.83047247595168372e+01 -Electron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_electron_triton_profile106)_ 1.83038258565562728e+01 -Electron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_electron_triton_profile107)_ 1.83029177108297390e+01 -Electron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_electron_triton_profile108)_ 1.83020003010144379e+01 -Electron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_electron_triton_profile109)_ 1.83010736055449996e+01 -Electron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_electron_triton_profile110)_ 1.83001376026122173e+01 -Electron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_electron_triton_profile111)_ 1.82991922701617966e+01 -Electron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_electron_triton_profile112)_ 1.82982375858930340e+01 -Electron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_electron_triton_profile113)_ 1.82972735272575378e+01 -Electron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_electron_triton_profile114)_ 1.82963000714578996e+01 -Electron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_electron_triton_profile115)_ 1.82953171954463620e+01 -Electron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_electron_triton_profile116)_ 1.82943248759234578e+01 -Electron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_electron_triton_profile117)_ 1.82933230893366634e+01 -Electron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_electron_triton_profile118)_ 1.82923118118789958e+01 -Electron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_electron_triton_profile119)_ 1.82912910194876446e+01 -Electron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_electron_triton_profile120)_ 1.82902606878425118e+01 -Electron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_electron_triton_profile121)_ 1.82892207923648407e+01 -Electron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_electron_triton_profile122)_ 1.82881713082157411e+01 -Electron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_electron_triton_profile123)_ 1.82871122102947119e+01 -Electron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_electron_triton_profile124)_ 1.82860434732382053e+01 -Electron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_electron_triton_profile125)_ 1.82849650714181031e+01 -Electron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_electron_triton_profile126)_ 1.82838769789402278e+01 -Electron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_electron_triton_profile127)_ 1.82827791696427973e+01 -Electron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_electron_triton_profile128)_ 1.82816716170949007e+01 -Electron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_electron_triton_profile129)_ 1.82805542945949355e+01 -Electron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_electron_triton_profile130)_ 1.82794271751690260e+01 -Electron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_electron_triton_profile131)_ 1.82782902315694535e+01 -Electron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_electron_triton_profile132)_ 1.82771434362730005e+01 -Electron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_electron_triton_profile133)_ 1.82759867614794018e+01 -Electron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_electron_triton_profile134)_ 1.82748201791096214e+01 -Electron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_electron_triton_profile135)_ 1.82736436608042574e+01 -Electron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_electron_triton_profile136)_ 1.82724571779218330e+01 -Electron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_electron_triton_profile137)_ 1.82712607015371127e+01 -Electron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_electron_triton_profile138)_ 1.82700542024393897e+01 -Electron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_electron_triton_profile139)_ 1.82688376511307666e+01 -Electron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_electron_triton_profile140)_ 1.82676110178244073e+01 -Electron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_electron_triton_profile141)_ 1.82663742724427713e+01 -Electron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_electron_triton_profile142)_ 1.82651273846158340e+01 -Electron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_electron_triton_profile143)_ 1.82638703236793063e+01 -Electron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_electron_triton_profile144)_ 1.82626030586727950e+01 -Electron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_electron_triton_profile145)_ 1.82613255583379903e+01 -Electron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_electron_triton_profile146)_ 1.82600377911168010e+01 -Electron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_electron_triton_profile147)_ 1.82587397251495176e+01 -Electron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_electron_triton_profile148)_ 1.82574313282728795e+01 -Electron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_electron_triton_profile149)_ 1.82561125680182137e+01 -Electron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_electron_triton_profile150)_ 1.82547834116094911e+01 -Electron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_electron_triton_profile151)_ 1.82534438259614014e+01 -Electron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_electron_triton_profile152)_ 1.82520937776773842e+01 -Electron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_electron_triton_profile153)_ 1.82507332330476615e+01 -Electron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_electron_triton_profile154)_ 1.82493621580472443e+01 -Electron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_electron_triton_profile155)_ 1.82479805183339145e+01 -Electron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_electron_triton_profile156)_ 1.82465882792462004e+01 -Electron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_electron_triton_profile157)_ 1.82451854058013332e+01 -Electron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_electron_triton_profile158)_ 1.82437718626931726e+01 -Electron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_electron_triton_profile159)_ 1.82423476142901357e+01 -Electron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_electron_triton_profile160)_ 1.82409126246330793e+01 -Electron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_electron_triton_profile161)_ 1.82394668574331789e+01 -Electron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_electron_triton_profile162)_ 1.82380102760698186e+01 -Electron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_electron_triton_profile163)_ 1.82365428435883885e+01 -Electron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_electron_triton_profile164)_ 1.82350645226981456e+01 -Electron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_electron_triton_profile165)_ 1.82335752757700043e+01 -Electron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_electron_triton_profile166)_ 1.82320750648343335e+01 -Electron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_electron_triton_profile167)_ 1.82305638515787116e+01 -Electron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_electron_triton_profile168)_ 1.82290415973456881e+01 -Electron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_electron_triton_profile169)_ 1.82275082631305203e+01 -Electron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_electron_triton_profile170)_ 1.82259638095788823e+01 -Electron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_electron_triton_profile171)_ 1.82244081969845517e+01 -Electron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_electron_triton_profile172)_ 1.82228413852871185e+01 -Electron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_electron_triton_profile173)_ 1.82212633340696186e+01 -Electron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_electron_triton_profile174)_ 1.82196740025561823e+01 -Electron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_electron_triton_profile175)_ 1.82180733496096643e+01 -Electron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_electron_triton_profile176)_ 1.82164613337292529e+01 -Electron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_electron_triton_profile177)_ 1.82148379130480613e+01 -Electron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_electron_triton_profile178)_ 1.82132030453306690e+01 -Electron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_electron_triton_profile179)_ 1.82115566879707345e+01 -Electron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_electron_triton_profile180)_ 1.82098987979884832e+01 -Electron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_electron_triton_profile181)_ 1.82082293320282425e+01 -Electron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_electron_triton_profile182)_ 1.82065482463559469e+01 -Electron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_electron_triton_profile183)_ 1.82048554968566272e+01 -Electron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_electron_triton_profile184)_ 1.82031510390318729e+01 -Electron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_electron_triton_profile185)_ 1.82014348279972857e+01 -Electron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_electron_triton_profile186)_ 1.81997068184799247e+01 -Electron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_electron_triton_profile187)_ 1.81979669648157021e+01 -Electron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_electron_triton_profile188)_ 1.81962152209468222e+01 -Electron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_electron_triton_profile189)_ 1.81944515404191307e+01 -Electron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_electron_triton_profile190)_ 1.81926758763795355e+01 -Electron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_electron_triton_profile191)_ 1.81908881815733068e+01 -Electron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_electron_triton_profile192)_ 1.81890884083414690e+01 -Electron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_electron_triton_profile193)_ 1.81872765086180941e+01 -Electron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_electron_triton_profile194)_ 1.81854524339276509e+01 -Electron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_electron_triton_profile195)_ 1.81836161353822519e+01 -Electron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_electron_triton_profile196)_ 1.81817675636789957e+01 -Electron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_electron_triton_profile197)_ 1.81799066690972033e+01 -Electron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_electron_triton_profile198)_ 1.81780334014956857e+01 -Electron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_electron_triton_profile199)_ 1.81761477103099978e+01 -Electron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_electron_triton_profile200)_ 1.81742495445496672e+01 -Electron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_electron_triton_profile201)_ 1.81723388527954199e+01 -Electron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_electron_triton_profile202)_ 1.81704155831963838e+01 -Electron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_electron_triton_profile203)_ 1.81684796834673037e+01 -Electron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_electron_triton_profile204)_ 1.81665311008857273e+01 -Electron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_electron_triton_profile205)_ 1.81645697822891812e+01 -Electron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_electron_triton_profile206)_ 1.81625956740723566e+01 -Electron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_electron_triton_profile207)_ 1.81606087221842536e+01 -Electron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_electron_triton_profile208)_ 1.81586088721253560e+01 -Electron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_electron_triton_profile209)_ 1.81565960689447827e+01 -Electron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_electron_triton_profile210)_ 1.81545702572374132e+01 -Electron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_electron_triton_profile211)_ 1.81525313811410349e+01 -Electron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_electron_triton_profile212)_ 1.81504793843334866e+01 -Electron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_electron_triton_profile213)_ 1.81484142100297667e+01 -Electron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_electron_triton_profile214)_ 1.81463358009791840e+01 -Electron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_electron_triton_profile215)_ 1.81442440994624548e+01 -Electron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_electron_triton_profile216)_ 1.81421390472888397e+01 -Electron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_electron_triton_profile217)_ 1.81400205857932733e+01 -Electron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_electron_triton_profile218)_ 1.81378886558334642e+01 -Electron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_electron_triton_profile219)_ 1.81357431977870469e+01 -Electron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_electron_triton_profile220)_ 1.81335841515486855e+01 -Electron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_electron_triton_profile221)_ 1.81314114565272142e+01 -Electron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_electron_triton_profile222)_ 1.81292250516427700e+01 -Electron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_electron_triton_profile223)_ 1.81270248753239542e+01 -Electron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_electron_triton_profile224)_ 1.81248108655049585e+01 -Electron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_electron_triton_profile225)_ 1.81225829596227221e+01 -Electron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_electron_triton_profile226)_ 1.81203410946141368e+01 -Electron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_electron_triton_profile227)_ 1.81180852069131966e+01 -Electron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_electron_triton_profile228)_ 1.81158152324481989e+01 -Electron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_electron_triton_profile229)_ 1.81135311066389697e+01 -Electron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_electron_triton_profile230)_ 1.81112327643940780e+01 -Electron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_electron_triton_profile231)_ 1.81089201401080899e+01 -Electron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_electron_triton_profile232)_ 1.81065931676588470e+01 -Electron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_electron_triton_profile233)_ 1.81042517804047094e+01 -Electron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_electron_triton_profile234)_ 1.81018959111819413e+01 -Electron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_electron_triton_profile235)_ 1.80995254923020070e+01 -Electron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_electron_triton_profile236)_ 1.80971404555489315e+01 -Electron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_electron_triton_profile237)_ 1.80947407321767422e+01 -Electron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_electron_triton_profile238)_ 1.80923262529068651e+01 -Electron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_electron_triton_profile239)_ 1.80898969479256131e+01 -Electron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_electron_triton_profile240)_ 1.80874527468816986e+01 -Electron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_electron_triton_profile241)_ 1.80849935788837612e+01 -Electron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_electron_triton_profile242)_ 1.80825193724979876e+01 -Electron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_electron_triton_profile243)_ 1.80800300557457270e+01 -Electron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_electron_triton_profile244)_ 1.80775255561011932e+01 -Electron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_electron_triton_profile245)_ 1.80750058004892011e+01 -Electron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_electron_triton_profile246)_ 1.80724707152829751e+01 -Electron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_electron_triton_profile247)_ 1.80699202263019885e+01 -Electron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_electron_triton_profile248)_ 1.80673542588099032e+01 -Electron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_electron_triton_profile249)_ 1.80647727375125271e+01 -Electron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_electron_triton_profile250)_ 1.80621755865558953e+01 -Electron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_electron_triton_profile251)_ 1.80595627295243943e+01 -Electron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_electron_triton_profile252)_ 1.80569340894389718e+01 -Electron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_electron_triton_profile253)_ 1.80542895887554025e+01 -Electron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_electron_triton_profile254)_ 1.80516291493627179e+01 -Electron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_electron_triton_profile255)_ 1.80489526925816151e+01 -Electron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_electron_triton_profile256)_ 1.80462601391630741e+01 -Electron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_electron_triton_profile257)_ 1.80435514092869731e+01 -Electron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_electron_triton_profile258)_ 1.80408264225609258e+01 -Electron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_electron_triton_profile259)_ 1.80380850980191028e+01 -Electron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_electron_triton_profile260)_ 1.80353273541212644e+01 -Electron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_electron_triton_profile261)_ 1.80325531087518875e+01 -Electron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_electron_triton_profile262)_ 1.80297622792194154e+01 -Electron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_electron_triton_profile263)_ 1.80269547822556397e+01 -Electron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_electron_triton_profile264)_ 1.80241305340152458e+01 -Electron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_electron_triton_profile265)_ 1.80212894500754821e+01 -Electron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_electron_triton_profile266)_ 1.80184314454360042e+01 -Electron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_electron_triton_profile267)_ 1.80155564345188637e+01 -Electron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_electron_triton_profile268)_ 1.80126643311687005e+01 -Electron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_electron_triton_profile269)_ 1.80097550486530658e+01 -Electron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_electron_triton_profile270)_ 1.80068284996629799e+01 -Electron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_electron_triton_profile271)_ 1.80038845963136431e+01 -Electron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_electron_triton_profile272)_ 1.80009232501454051e+01 -Electron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_electron_triton_profile273)_ 1.79979443721248735e+01 -Electron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_electron_triton_profile274)_ 1.79949478726463106e+01 -Electron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_electron_triton_profile275)_ 1.79919336615332526e+01 -Electron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_electron_triton_profile276)_ 1.79889016480403292e+01 -Electron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_electron_triton_profile277)_ 1.79858517408553915e+01 -Electron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_electron_triton_profile278)_ 1.79827838481018780e+01 -Electron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_electron_triton_profile279)_ 1.79796978773414544e+01 -Electron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_electron_triton_profile280)_ 1.79765937355769552e+01 -Electron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_electron_triton_profile281)_ 1.79734713292556449e+01 -Electron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_electron_triton_profile282)_ 1.79703305642727358e+01 -Electron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_electron_triton_profile283)_ 1.79671713459753022e+01 -Electron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_electron_triton_profile284)_ 1.79639935791664946e+01 -Electron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_electron_triton_profile285)_ 1.79607971681101368e+01 -Electron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_electron_triton_profile286)_ 1.79575820165356745e+01 -Electron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_electron_triton_profile287)_ 1.79543480276435190e+01 -Electron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_electron_triton_profile288)_ 1.79510951041108200e+01 -Electron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_electron_triton_profile289)_ 1.79478231480976262e+01 -Electron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_electron_triton_profile290)_ 1.79445320612535149e+01 -Electron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_electron_triton_profile291)_ 1.79412217447246682e+01 -Electron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_electron_triton_profile292)_ 1.79378920991614059e+01 -Electron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_electron_triton_profile293)_ 1.79345430247262918e+01 -Electron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_electron_triton_profile294)_ 1.79311744211026642e+01 -Electron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_electron_triton_profile295)_ 1.79277861875037665e+01 -Electron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_electron_triton_profile296)_ 1.79243782226824422e+01 -Electron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_electron_triton_profile297)_ 1.79209504249413989e+01 -Electron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_electron_triton_profile298)_ 1.79175026921440903e+01 -Electron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_electron_triton_profile299)_ 1.79140349217262340e+01 -Electron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_electron_triton_profile300)_ 1.79105470107080080e+01 -Electron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_electron_triton_profile301)_ 1.79070388557069258e+01 -Electron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_electron_triton_profile302)_ 1.79035103529514359e+01 -Electron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_electron_triton_profile303)_ 1.78999613982952788e+01 -Electron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_electron_triton_profile304)_ 1.78963918872326033e+01 -Electron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_electron_triton_profile305)_ 1.78928017149139507e+01 -Electron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_electron_triton_profile306)_ 1.78891907761630087e+01 -Electron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_electron_triton_profile307)_ 1.78855589654943188e+01 -Electron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_electron_triton_profile308)_ 1.78819061771318601e+01 -Electron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_electron_triton_profile309)_ 1.78782323050286323e+01 -Electron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_electron_triton_profile310)_ 1.78745372428871683e+01 -Electron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_electron_triton_profile311)_ 1.78708208841811746e+01 -Electron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_electron_triton_profile312)_ 1.78670831221781654e+01 -Electron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_electron_triton_profile313)_ 1.78633238499632725e+01 -Electron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_electron_triton_profile314)_ 1.78595429604642320e+01 -Electron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_electron_triton_profile315)_ 1.78557403464775639e+01 -Electron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_electron_triton_profile316)_ 1.78519159006960244e+01 -Electron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_electron_triton_profile317)_ 1.78480695157374143e+01 -Electron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_electron_triton_profile318)_ 1.78442010841747063e+01 -Electron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_electron_triton_profile319)_ 1.78403104985676855e+01 -Electron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_electron_triton_profile320)_ 1.78363976514960036e+01 -Electron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_electron_triton_profile321)_ 1.78324624355938290e+01 -Electron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_electron_triton_profile322)_ 1.78285047435861337e+01 -Electron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_electron_triton_profile323)_ 1.78245244683266009e+01 -Electron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_electron_triton_profile324)_ 1.78205215028373765e+01 -Electron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_electron_triton_profile325)_ 1.78164957403505682e+01 -Electron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_electron_triton_profile326)_ 1.78124470743516774e+01 -Electron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_electron_triton_profile327)_ 1.78083753986250493e+01 -Electron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_electron_triton_profile328)_ 1.78042806073013260e+01 -Electron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_electron_triton_profile329)_ 1.78001625949070892e+01 -Electron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_electron_triton_profile330)_ 1.77960212564167257e+01 -Electron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_electron_triton_profile331)_ 1.77918564873066387e+01 -Electron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_electron_triton_profile332)_ 1.77876681836118671e+01 -Electron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_electron_triton_profile333)_ 1.77834562419852595e+01 -Electron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_electron_triton_profile334)_ 1.77792205597592456e+01 -Electron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_electron_triton_profile335)_ 1.77749610350104028e+01 -Electron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_electron_triton_profile336)_ 1.77706775666268371e+01 -Electron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_electron_triton_profile337)_ 1.77663700543785730e+01 -Electron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_electron_triton_profile338)_ 1.77620383989910167e+01 -Electron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_electron_triton_profile339)_ 1.77576825022216802e+01 -Electron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_electron_triton_profile340)_ 1.77533022669402563e+01 -Electron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_electron_triton_profile341)_ 1.77488975972122205e+01 -Electron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_electron_triton_profile342)_ 1.77444683983860614e+01 -Electron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_electron_triton_profile343)_ 1.77400145771843576e+01 -Electron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_electron_triton_profile344)_ 1.77355360417987917e+01 -Electron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_electron_triton_profile345)_ 1.77310327019893279e+01 -Electron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_electron_triton_profile346)_ 1.77265044691876987e+01 -Electron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_electron_triton_profile347)_ 1.77219512566053936e+01 -Electron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_electron_triton_profile348)_ 1.77173729793462975e+01 -Electron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_electron_triton_profile349)_ 1.77127695545242965e+01 -Electron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_electron_triton_profile350)_ 1.77081409013858995e+01 -Electron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_electron_triton_profile351)_ 1.77034869414381859e+01 -Electron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_electron_triton_profile352)_ 1.76988075985823805e+01 -Electron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_electron_triton_profile353)_ 1.76941027992530522e+01 -Electron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_electron_triton_profile354)_ 1.76893724725634911e+01 -Electron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_electron_triton_profile355)_ 1.76846165504572603e+01 -Electron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_electron_triton_profile356)_ 1.76798349678663556e+01 -Electron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_electron_triton_profile357)_ 1.76750276628761966e+01 -Electron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_electron_triton_profile358)_ 1.76701945768977460e+01 -Electron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_electron_triton_profile359)_ 1.76653356548470555e+01 -Electron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_electron_triton_profile360)_ 1.76604508453326297e+01 -Electron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_electron_triton_profile361)_ 1.76555401008508142e+01 -Electron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_electron_triton_profile362)_ 1.76506033779897429e+01 -Electron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_electron_triton_profile363)_ 1.76456406376420034e+01 -Electron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_electron_triton_profile364)_ 1.76406518452266425e+01 -Electron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_electron_triton_profile365)_ 1.76356369709206540e+01 -Electron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_electron_triton_profile366)_ 1.76305959899006837e+01 -Electron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_electron_triton_profile367)_ 1.76255288825950274e+01 -Electron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_electron_triton_profile368)_ 1.76204356349467730e+01 -Electron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_electron_triton_profile369)_ 1.76153162386882727e+01 -Electron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_electron_triton_profile370)_ 1.76101706916275944e+01 -Electron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_electron_triton_profile371)_ 1.76049989979474937e+01 -Electron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_electron_triton_profile372)_ 1.75998011685173985e+01 -Electron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_electron_triton_profile373)_ 1.75945772212190690e+01 -Electron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_electron_triton_profile374)_ 1.75893271812864711e+01 -Electron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_electron_triton_profile375)_ 1.75840510816605864e+01 -Electron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_electron_triton_profile376)_ 1.75787489633598106e+01 -Electron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_electron_triton_profile377)_ 1.75734208758665709e+01 -Electron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_electron_triton_profile378)_ 1.75680668775310878e+01 -Electron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_electron_triton_profile379)_ 1.75626870359928837e+01 -Electron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_electron_triton_profile380)_ 1.75572814286209287e+01 -Electron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_electron_triton_profile381)_ 1.75518501429733540e+01 -Electron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_electron_triton_profile382)_ 1.75463932772775273e+01 -Electron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_electron_triton_profile383)_ 1.75409109409315533e+01 -Electron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_electron_triton_profile384)_ 1.75354032550280508e+01 -Electron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_electron_triton_profile385)_ 1.75298703529014901e+01 -Electron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_electron_triton_profile386)_ 1.75243123806999535e+01 -Electron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_electron_triton_profile387)_ 1.75187294979827080e+01 -Electron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_electron_triton_profile388)_ 1.75131218783445988e+01 -Electron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_electron_triton_profile389)_ 1.75074897100688034e+01 -Electron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_electron_triton_profile390)_ 1.75018331968091232e+01 -Electron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_electron_triton_profile391)_ 1.74961525583033044e+01 -Electron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_electron_triton_profile392)_ 1.74904480311189801e+01 -Electron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_electron_triton_profile393)_ 1.74847198694337145e+01 -Electron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_electron_triton_profile394)_ 1.74789683458510012e+01 -Electron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_electron_triton_profile395)_ 1.74731937522537955e+01 -Electron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_electron_triton_profile396)_ 1.74673964006977371e+01 -Electron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_electron_triton_profile397)_ 1.74615766243457990e+01 -Electron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_electron_triton_profile398)_ 1.74557347784466970e+01 -Electron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_electron_triton_profile399)_ 1.74498712413591548e+01 -Electron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_electron_triton_profile400)_ 1.74439864156245363e+01 -Electron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_electron_triton_profile401)_ 1.74380807290903057e+01 -Electron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_electron_triton_profile402)_ 1.74321546360869668e+01 -Electron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_electron_triton_profile403)_ 1.74262086186613985e+01 -Electron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_electron_triton_profile404)_ 1.74202431878696800e+01 -Electron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_electron_triton_profile405)_ 1.74142588851324831e+01 -Electron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_electron_triton_profile406)_ 1.74082562836566375e+01 -Electron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_electron_triton_profile407)_ 1.74022359899264991e+01 -Electron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_electron_triton_profile408)_ 1.73961986452690702e+01 -Electron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_electron_triton_profile409)_ 1.73901449274970581e+01 -Electron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_electron_triton_profile410)_ 1.73840755526344601e+01 -Electron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_electron_triton_profile411)_ 1.73779912767295563e+01 -Electron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_electron_triton_profile412)_ 1.73718928977603859e+01 -Electron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_electron_triton_profile413)_ 1.73657812576384316e+01 -Electron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_electron_triton_profile414)_ 1.73596572443166828e+01 -Electron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_electron_triton_profile415)_ 1.73535217940084152e+01 -Electron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_electron_triton_profile416)_ 1.73473758935238394e+01 -Electron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_electron_triton_profile417)_ 1.73412205827325501e+01 -Electron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_electron_triton_profile418)_ 1.73350569571597219e+01 -Electron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_electron_triton_profile419)_ 1.73288861707255677e+01 -Electron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_electron_triton_profile420)_ 1.73227094386376876e+01 -Electron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_electron_triton_profile421)_ 1.73165280404475119e+01 -Electron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_electron_triton_profile422)_ 1.73103433232823853e+01 -Electron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_electron_triton_profile423)_ 1.73041567052668555e+01 -Electron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_electron_triton_profile424)_ 1.72979696791473927e+01 -Electron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_electron_triton_profile425)_ 1.72917838161365900e+01 -Electron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_electron_triton_profile426)_ 1.72856007699947583e+01 -Electron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_electron_triton_profile427)_ 1.72794222813686176e+01 -Electron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_electron_triton_profile428)_ 1.72732501824092246e+01 -Electron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_electron_triton_profile429)_ 1.72670864016939056e+01 -Electron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_electron_triton_profile430)_ 1.72609329694799989e+01 -Electron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_electron_triton_profile431)_ 1.72547920233218726e+01 -Electron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_electron_triton_profile432)_ 1.72486658140867739e+01 -Electron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_electron_triton_profile433)_ 1.72425567124099750e+01 -Electron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_electron_triton_profile434)_ 1.72364672156353791e+01 -Electron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_electron_triton_profile435)_ 1.72303999552944909e+01 -Electron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_electron_triton_profile436)_ 1.72243577051848256e+01 -Electron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_electron_triton_profile437)_ 1.72183433901181751e+01 -Electron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_electron_triton_profile438)_ 1.72123600954207525e+01 -Electron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_electron_triton_profile439)_ 1.72064110772809151e+01 -Electron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_electron_triton_profile440)_ 1.72004997740569046e+01 -Electron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_electron_triton_profile441)_ 1.71946298186773348e+01 -Electron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_electron_triton_profile442)_ 1.71888050522920182e+01 -Electron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_electron_triton_profile443)_ 1.71830295393613177e+01 -Electron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_electron_triton_profile444)_ 1.71773075844104071e+01 -Electron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_electron_triton_profile445)_ 1.71716437507223034e+01 -Electron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_electron_triton_profile446)_ 1.71660428813035928e+01 -Electron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_electron_triton_profile447)_ 1.71605101225329655e+01 -Electron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_electron_triton_profile448)_ 1.71550509510007814e+01 -Electron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_electron_triton_profile449)_ 1.71496712041740267e+01 -Electron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_electron_triton_profile450)_ 1.71443771156878313e+01 -Electron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_electron_triton_profile451)_ 1.71391753562837330e+01 -Electron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_electron_triton_profile452)_ 1.71340730817102838e+01 -Electron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_electron_triton_profile453)_ 1.71290779893026794e+01 -Electron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_electron_triton_profile454)_ 1.71241983855117361e+01 -Electron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_electron_triton_profile455)_ 1.71194432674316666e+01 -Electron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_electron_triton_profile456)_ 1.71148224224899970e+01 -Electron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_electron_triton_profile457)_ 1.71103465520927713e+01 -Electron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_electron_triton_profile458)_ 1.71060274274591748e+01 -Electron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_electron_triton_profile459)_ 1.71018780896356652e+01 -Electron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_electron_triton_profile460)_ 1.70979131116445622e+01 -Electron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_electron_triton_profile461)_ 1.70941489505425039e+01 -Electron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_electron_triton_profile462)_ 1.70906044340401344e+01 -Electron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_electron_triton_profile463)_ 1.70873014568521278e+01 -Electron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_electron_triton_profile464)_ 1.70842660206765764e+01 -Electron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_electron_triton_profile465)_ 1.70815298738709096e+01 -Electron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_electron_triton_profile466)_ 1.70791332878990296e+01 -Electron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_electron_triton_profile467)_ 1.70771302484066041e+01 -Electron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_electron_triton_profile468)_ 1.70755997220459896e+01 -Electron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_electron_triton_profile469)_ 1.70746773813624770e+01 -Electron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_electron_triton_profile470)_ 1.70747502109636784e+01 -Electron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_electron_triton_profile471)_ 1.70486466135479908e+01 -Electron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_electron_triton_profile472)_ 1.70214945312015438e+01 -Electron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_electron_triton_profile473)_ 1.69932150372211161e+01 -Electron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_electron_triton_profile474)_ 1.69637202631762278e+01 -Electron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_electron_triton_profile475)_ 1.69329120140835911e+01 -Electron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_electron_triton_profile476)_ 1.69006801061552530e+01 -Electron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_electron_triton_profile477)_ 1.68669003577792793e+01 -Electron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_electron_triton_profile478)_ 1.68314321433064578e+01 -Electron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_electron_triton_profile479)_ 1.67941153904720686e+01 -Electron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_electron_triton_profile480)_ 1.67547668625983199e+01 -Electron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_electron_triton_profile481)_ 1.67131755111842075e+01 -Electron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_electron_triton_profile482)_ 1.66690966055912320e+01 -Electron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_electron_triton_profile483)_ 1.66222442326079012e+01 -Electron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_electron_triton_profile484)_ 1.65722815911969157e+01 -Electron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_electron_triton_profile485)_ 1.65188082565982697e+01 -Electron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_electron_triton_profile486)_ 1.64613432030295179e+01 -Electron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_electron_triton_profile487)_ 1.63993017695324355e+01 -Electron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_electron_triton_profile488)_ 1.63319637770053099e+01 -Electron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_electron_triton_profile489)_ 1.62584283773535923e+01 -Electron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_electron_triton_profile490)_ 1.61775484057024279e+01 -Electron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_electron_triton_profile491)_ 1.60878319487431973e+01 -Electron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_electron_triton_profile492)_ 1.59872892865482203e+01 -Electron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_electron_triton_profile493)_ 1.58731842425724743e+01 -Electron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_electron_triton_profile494)_ 1.57416079502087811e+01 -Electron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_electron_triton_profile495)_ 1.55866970987278659e+01 -Electron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_electron_triton_profile496)_ 1.53990682142247923e+01 -Electron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_electron_triton_profile497)_ 1.51622819936516162e+01 -Electron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_electron_triton_profile498)_ 1.48433281843819511e+01 -Electron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_electron_triton_profile499)_ 1.43584278345859637e+01 -Electron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_electron_triton_profile500)_ 1.33406050796768145e+01 -Volume_averaged_deuteron-triton_Coulomb_log_(Λ_DT)_______________________ (plasma_coulomb_log_deuteron_triton_vol_avg)_ 2.05216078166018576e+01 OP -Deuteron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_deuteron_triton_profile0)_ 2.14780102943463120e+01 -Deuteron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_deuteron_triton_profile1)_ 2.14780034230345791e+01 -Deuteron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_deuteron_triton_profile2)_ 2.14779828089533495e+01 -Deuteron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_deuteron_triton_profile3)_ 2.14779484516906543e+01 -Deuteron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_deuteron_triton_profile4)_ 2.14779003505566699e+01 -Deuteron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_deuteron_triton_profile5)_ 2.14778385045789371e+01 -Deuteron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_deuteron_triton_profile6)_ 2.14777629125569405e+01 -Deuteron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_deuteron_triton_profile7)_ 2.14776735729622175e+01 -Deuteron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_deuteron_triton_profile8)_ 2.14775704840071811e+01 -Deuteron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_deuteron_triton_profile9)_ 2.14774536436259780e+01 -Deuteron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_deuteron_triton_profile10)_ 2.14773230494909981e+01 -Deuteron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_deuteron_triton_profile11)_ 2.14771786990008273e+01 -Deuteron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_deuteron_triton_profile12)_ 2.14770205892491681e+01 -Deuteron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_deuteron_triton_profile13)_ 2.14768487170983562e+01 -Deuteron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_deuteron_triton_profile14)_ 2.14766630790959177e+01 -Deuteron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_deuteron_triton_profile15)_ 2.14764636715409267e+01 -Deuteron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_deuteron_triton_profile16)_ 2.14762504904314326e+01 -Deuteron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_deuteron_triton_profile17)_ 2.14760235315117676e+01 -Deuteron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_deuteron_triton_profile18)_ 2.14757827902460932e+01 -Deuteron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_deuteron_triton_profile19)_ 2.14755282618133414e+01 -Deuteron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_deuteron_triton_profile20)_ 2.14752599410925740e+01 -Deuteron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_deuteron_triton_profile21)_ 2.14749778227626820e+01 -Deuteron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_deuteron_triton_profile22)_ 2.14746819011329357e+01 -Deuteron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_deuteron_triton_profile23)_ 2.14743721702974035e+01 -Deuteron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_deuteron_triton_profile24)_ 2.14740486240392876e+01 -Deuteron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_deuteron_triton_profile25)_ 2.14737112558781469e+01 -Deuteron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_deuteron_triton_profile26)_ 2.14733600590527764e+01 -Deuteron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_deuteron_triton_profile27)_ 2.14729950265183902e+01 -Deuteron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_deuteron_triton_profile28)_ 2.14726161509652052e+01 -Deuteron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_deuteron_triton_profile29)_ 2.14722234247774075e+01 -Deuteron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_deuteron_triton_profile30)_ 2.14718168400708045e+01 -Deuteron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_deuteron_triton_profile31)_ 2.14713963886851289e+01 -Deuteron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_deuteron_triton_profile32)_ 2.14709620621739710e+01 -Deuteron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_deuteron_triton_profile33)_ 2.14705138518185095e+01 -Deuteron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_deuteron_triton_profile34)_ 2.14700517486006710e+01 -Deuteron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_deuteron_triton_profile35)_ 2.14695757432311645e+01 -Deuteron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_deuteron_triton_profile36)_ 2.14690858261464967e+01 -Deuteron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_deuteron_triton_profile37)_ 2.14685819874676724e+01 -Deuteron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_deuteron_triton_profile38)_ 2.14680642170712552e+01 -Deuteron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_deuteron_triton_profile39)_ 2.14675325045097587e+01 -Deuteron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_deuteron_triton_profile40)_ 2.14669868390707528e+01 -Deuteron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_deuteron_triton_profile41)_ 2.14664272097617932e+01 -Deuteron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_deuteron_triton_profile42)_ 2.14658536052881068e+01 -Deuteron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_deuteron_triton_profile43)_ 2.14652660140877956e+01 -Deuteron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_deuteron_triton_profile44)_ 2.14646644242758882e+01 -Deuteron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_deuteron_triton_profile45)_ 2.14640488237322877e+01 -Deuteron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_deuteron_triton_profile46)_ 2.14634191999785706e+01 -Deuteron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_deuteron_triton_profile47)_ 2.14627755403091740e+01 -Deuteron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_deuteron_triton_profile48)_ 2.14621178316872623e+01 -Deuteron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_deuteron_triton_profile49)_ 2.14614460608183570e+01 -Deuteron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_deuteron_triton_profile50)_ 2.14607602140724509e+01 -Deuteron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_deuteron_triton_profile51)_ 2.14600602775745273e+01 -Deuteron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_deuteron_triton_profile52)_ 2.14593462371025190e+01 -Deuteron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_deuteron_triton_profile53)_ 2.14586180781922735e+01 -Deuteron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_deuteron_triton_profile54)_ 2.14578757860498932e+01 -Deuteron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_deuteron_triton_profile55)_ 2.14571193455988762e+01 -Deuteron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_deuteron_triton_profile56)_ 2.14563487414598271e+01 -Deuteron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_deuteron_triton_profile57)_ 2.14555639579590505e+01 -Deuteron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_deuteron_triton_profile58)_ 2.14547649791299122e+01 -Deuteron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_deuteron_triton_profile59)_ 2.14539517886657904e+01 -Deuteron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_deuteron_triton_profile60)_ 2.14531243700447476e+01 -Deuteron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_deuteron_triton_profile61)_ 2.14522827063517845e+01 -Deuteron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_deuteron_triton_profile62)_ 2.14514267804277345e+01 -Deuteron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_deuteron_triton_profile63)_ 2.14505565747663596e+01 -Deuteron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_deuteron_triton_profile64)_ 2.14496720716174032e+01 -Deuteron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_deuteron_triton_profile65)_ 2.14487732528543980e+01 -Deuteron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_deuteron_triton_profile66)_ 2.14478601000922957e+01 -Deuteron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_deuteron_triton_profile67)_ 2.14469325946182501e+01 -Deuteron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_deuteron_triton_profile68)_ 2.14459907174292219e+01 -Deuteron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_deuteron_triton_profile69)_ 2.14450344491966156e+01 -Deuteron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_deuteron_triton_profile70)_ 2.14440637702746564e+01 -Deuteron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_deuteron_triton_profile71)_ 2.14430786607136490e+01 -Deuteron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_deuteron_triton_profile72)_ 2.14420791002708349e+01 -Deuteron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_deuteron_triton_profile73)_ 2.14410650683602029e+01 -Deuteron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_deuteron_triton_profile74)_ 2.14400365440827478e+01 -Deuteron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_deuteron_triton_profile75)_ 2.14389935062299344e+01 -Deuteron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_deuteron_triton_profile76)_ 2.14379359332993893e+01 -Deuteron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_deuteron_triton_profile77)_ 2.14368638034175376e+01 -Deuteron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_deuteron_triton_profile78)_ 2.14357770944506996e+01 -Deuteron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_deuteron_triton_profile79)_ 2.14346757838712492e+01 -Deuteron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_deuteron_triton_profile80)_ 2.14335598489129922e+01 -Deuteron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_deuteron_triton_profile81)_ 2.14324292664150100e+01 -Deuteron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_deuteron_triton_profile82)_ 2.14312840129280424e+01 -Deuteron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_deuteron_triton_profile83)_ 2.14301240646686857e+01 -Deuteron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_deuteron_triton_profile84)_ 2.14289493975029046e+01 -Deuteron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_deuteron_triton_profile85)_ 2.14277599870182733e+01 -Deuteron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_deuteron_triton_profile86)_ 2.14265558084212451e+01 -Deuteron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_deuteron_triton_profile87)_ 2.14253368366167720e+01 -Deuteron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_deuteron_triton_profile88)_ 2.14241030461522364e+01 -Deuteron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_deuteron_triton_profile89)_ 2.14228544112477941e+01 -Deuteron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_deuteron_triton_profile90)_ 2.14215909057970428e+01 -Deuteron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_deuteron_triton_profile91)_ 2.14203125033628012e+01 -Deuteron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_deuteron_triton_profile92)_ 2.14190191771528937e+01 -Deuteron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_deuteron_triton_profile93)_ 2.14177109000082631e+01 -Deuteron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_deuteron_triton_profile94)_ 2.14163876444781138e+01 -Deuteron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_deuteron_triton_profile95)_ 2.14150493827409605e+01 -Deuteron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_deuteron_triton_profile96)_ 2.14136960866300008e+01 -Deuteron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_deuteron_triton_profile97)_ 2.14123277276336061e+01 -Deuteron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_deuteron_triton_profile98)_ 2.14109442768758491e+01 -Deuteron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_deuteron_triton_profile99)_ 2.14095457051644082e+01 -Deuteron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_deuteron_triton_profile100)_ 2.14081319829085466e+01 -Deuteron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_deuteron_triton_profile101)_ 2.14067030802245810e+01 -Deuteron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_deuteron_triton_profile102)_ 2.14052589668035722e+01 -Deuteron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_deuteron_triton_profile103)_ 2.14037996120218850e+01 -Deuteron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_deuteron_triton_profile104)_ 2.14023249848989856e+01 -Deuteron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_deuteron_triton_profile105)_ 2.14008350540600070e+01 -Deuteron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_deuteron_triton_profile106)_ 2.13993297877988802e+01 -Deuteron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_deuteron_triton_profile107)_ 2.13978091540283053e+01 -Deuteron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_deuteron_triton_profile108)_ 2.13962731203001049e+01 -Deuteron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_deuteron_triton_profile109)_ 2.13947216537928178e+01 -Deuteron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_deuteron_triton_profile110)_ 2.13931547213194797e+01 -Deuteron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_deuteron_triton_profile111)_ 2.13915722893100479e+01 -Deuteron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_deuteron_triton_profile112)_ 2.13899743238444913e+01 -Deuteron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_deuteron_triton_profile113)_ 2.13883607905843967e+01 -Deuteron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_deuteron_triton_profile114)_ 2.13867316548669919e+01 -Deuteron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_deuteron_triton_profile115)_ 2.13850868816061350e+01 -Deuteron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_deuteron_triton_profile116)_ 2.13834264353328969e+01 -Deuteron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_deuteron_triton_profile117)_ 2.13817502802288040e+01 -Deuteron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_deuteron_triton_profile118)_ 2.13800583800543755e+01 -Deuteron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_deuteron_triton_profile119)_ 2.13783506982052316e+01 -Deuteron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_deuteron_triton_profile120)_ 2.13766271976659858e+01 -Deuteron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_deuteron_triton_profile121)_ 2.13748878410254228e+01 -Deuteron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_deuteron_triton_profile122)_ 2.13731325905329363e+01 -Deuteron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_deuteron_triton_profile123)_ 2.13713614079339074e+01 -Deuteron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_deuteron_triton_profile124)_ 2.13695742546879970e+01 -Deuteron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_deuteron_triton_profile125)_ 2.13677710917760457e+01 -Deuteron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_deuteron_triton_profile126)_ 2.13659518797923731e+01 -Deuteron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_deuteron_triton_profile127)_ 2.13641165789498082e+01 -Deuteron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_deuteron_triton_profile128)_ 2.13622651490251094e+01 -Deuteron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_deuteron_triton_profile129)_ 2.13603975493844160e+01 -Deuteron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_deuteron_triton_profile130)_ 2.13585137390036657e+01 -Deuteron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_deuteron_triton_profile131)_ 2.13566136764345558e+01 -Deuteron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_deuteron_triton_profile132)_ 2.13546973197779479e+01 -Deuteron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_deuteron_triton_profile133)_ 2.13527646267432800e+01 -Deuteron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_deuteron_triton_profile134)_ 2.13508155546273493e+01 -Deuteron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_deuteron_triton_profile135)_ 2.13488500602719888e+01 -Deuteron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_deuteron_triton_profile136)_ 2.13468681000947882e+01 -Deuteron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_deuteron_triton_profile137)_ 2.13448696301200691e+01 -Deuteron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_deuteron_triton_profile138)_ 2.13428546058996318e+01 -Deuteron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_deuteron_triton_profile139)_ 2.13408229825250189e+01 -Deuteron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_deuteron_triton_profile140)_ 2.13387747147322102e+01 -Deuteron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_deuteron_triton_profile141)_ 2.13367097567376938e+01 -Deuteron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_deuteron_triton_profile142)_ 2.13346280623430324e+01 -Deuteron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_deuteron_triton_profile143)_ 2.13325295849051635e+01 -Deuteron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_deuteron_triton_profile144)_ 2.13304142773409282e+01 -Deuteron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_deuteron_triton_profile145)_ 2.13282820920784424e+01 -Deuteron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_deuteron_triton_profile146)_ 2.13261329811199118e+01 -Deuteron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_deuteron_triton_profile147)_ 2.13239668960276134e+01 -Deuteron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_deuteron_triton_profile148)_ 2.13217837878375889e+01 -Deuteron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_deuteron_triton_profile149)_ 2.13195836072000660e+01 -Deuteron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_deuteron_triton_profile150)_ 2.13173663042235617e+01 -Deuteron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_deuteron_triton_profile151)_ 2.13151318286263560e+01 -Deuteron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_deuteron_triton_profile152)_ 2.13128801295746442e+01 -Deuteron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_deuteron_triton_profile153)_ 2.13106111558155646e+01 -Deuteron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_deuteron_triton_profile154)_ 2.13083248555955471e+01 -Deuteron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_deuteron_triton_profile155)_ 2.13060211766805914e+01 -Deuteron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_deuteron_triton_profile156)_ 2.13037000663551055e+01 -Deuteron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_deuteron_triton_profile157)_ 2.13013614713962731e+01 -Deuteron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_deuteron_triton_profile158)_ 2.12990053381270030e+01 -Deuteron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_deuteron_triton_profile159)_ 2.12966316123577499e+01 -Deuteron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_deuteron_triton_profile160)_ 2.12942402394041430e+01 -Deuteron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_deuteron_triton_profile161)_ 2.12918311640336704e+01 -Deuteron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_deuteron_triton_profile162)_ 2.12894043306117737e+01 -Deuteron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_deuteron_triton_profile163)_ 2.12869596829065060e+01 -Deuteron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_deuteron_triton_profile164)_ 2.12844971642181910e+01 -Deuteron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_deuteron_triton_profile165)_ 2.12820167173204737e+01 -Deuteron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_deuteron_triton_profile166)_ 2.12795182844724451e+01 -Deuteron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_deuteron_triton_profile167)_ 2.12770018074060303e+01 -Deuteron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_deuteron_triton_profile168)_ 2.12744672273492519e+01 -Deuteron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_deuteron_triton_profile169)_ 2.12719144849803428e+01 -Deuteron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_deuteron_triton_profile170)_ 2.12693435204592269e+01 -Deuteron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_deuteron_triton_profile171)_ 2.12667542734008350e+01 -Deuteron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_deuteron_triton_profile172)_ 2.12641466829151113e+01 -Deuteron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_deuteron_triton_profile173)_ 2.12615206875104370e+01 -Deuteron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_deuteron_triton_profile174)_ 2.12588762252229202e+01 -Deuteron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_deuteron_triton_profile175)_ 2.12562132334664220e+01 -Deuteron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_deuteron_triton_profile176)_ 2.12535316491537110e+01 -Deuteron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_deuteron_triton_profile177)_ 2.12508314086527363e+01 -Deuteron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_deuteron_triton_profile178)_ 2.12481124476943499e+01 -Deuteron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_deuteron_triton_profile179)_ 2.12453747015563437e+01 -Deuteron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_deuteron_triton_profile180)_ 2.12426181048554348e+01 -Deuteron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_deuteron_triton_profile181)_ 2.12398425916920139e+01 -Deuteron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_deuteron_triton_profile182)_ 2.12370480955460224e+01 -Deuteron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_deuteron_triton_profile183)_ 2.12342345493828013e+01 -Deuteron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_deuteron_triton_profile184)_ 2.12314018855456794e+01 -Deuteron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_deuteron_triton_profile185)_ 2.12285500357819821e+01 -Deuteron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_deuteron_triton_profile186)_ 2.12256789312780150e+01 -Deuteron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_deuteron_triton_profile187)_ 2.12227885026138310e+01 -Deuteron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_deuteron_triton_profile188)_ 2.12198786797549879e+01 -Deuteron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_deuteron_triton_profile189)_ 2.12169493920962537e+01 -Deuteron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_deuteron_triton_profile190)_ 2.12140005684102135e+01 -Deuteron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_deuteron_triton_profile191)_ 2.12110321368707879e+01 -Deuteron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_deuteron_triton_profile192)_ 2.12080440250071689e+01 -Deuteron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_deuteron_triton_profile193)_ 2.12050361597768102e+01 -Deuteron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_deuteron_triton_profile194)_ 2.12020084674902307e+01 -Deuteron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_deuteron_triton_profile195)_ 2.11989608738286677e+01 -Deuteron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_deuteron_triton_profile196)_ 2.11958933038501698e+01 -Deuteron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_deuteron_triton_profile197)_ 2.11928056819929047e+01 -Deuteron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_deuteron_triton_profile198)_ 2.11896979320135550e+01 -Deuteron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_deuteron_triton_profile199)_ 2.11865699770787366e+01 -Deuteron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_deuteron_triton_profile200)_ 2.11834217396827569e+01 -Deuteron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_deuteron_triton_profile201)_ 2.11802531416860873e+01 -Deuteron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_deuteron_triton_profile202)_ 2.11770641042531302e+01 -Deuteron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_deuteron_triton_profile203)_ 2.11738545479294622e+01 -Deuteron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_deuteron_triton_profile204)_ 2.11706243925795157e+01 -Deuteron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_deuteron_triton_profile205)_ 2.11673735574164255e+01 -Deuteron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_deuteron_triton_profile206)_ 2.11641019609631158e+01 -Deuteron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_deuteron_triton_profile207)_ 2.11608095210671614e+01 -Deuteron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_deuteron_triton_profile208)_ 2.11574961549249529e+01 -Deuteron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_deuteron_triton_profile209)_ 2.11541617790062126e+01 -Deuteron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_deuteron_triton_profile210)_ 2.11508063091324203e+01 -Deuteron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_deuteron_triton_profile211)_ 2.11474296603614249e+01 -Deuteron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_deuteron_triton_profile212)_ 2.11440317471605717e+01 -Deuteron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_deuteron_triton_profile213)_ 2.11406124831996678e+01 -Deuteron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_deuteron_triton_profile214)_ 2.11371717814908209e+01 -Deuteron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_deuteron_triton_profile215)_ 2.11337095543304159e+01 -Deuteron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_deuteron_triton_profile216)_ 2.11302257132895832e+01 -Deuteron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_deuteron_triton_profile217)_ 2.11267201692107491e+01 -Deuteron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_deuteron_triton_profile218)_ 2.11231928322290088e+01 -Deuteron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_deuteron_triton_profile219)_ 2.11196436117596527e+01 -Deuteron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_deuteron_triton_profile220)_ 2.11160724164668139e+01 -Deuteron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_deuteron_triton_profile221)_ 2.11124791542879748e+01 -Deuteron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_deuteron_triton_profile222)_ 2.11088637324055881e+01 -Deuteron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_deuteron_triton_profile223)_ 2.11052260572623176e+01 -Deuteron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_deuteron_triton_profile224)_ 2.11015660345797293e+01 -Deuteron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_deuteron_triton_profile225)_ 2.10978835692666777e+01 -Deuteron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_deuteron_triton_profile226)_ 2.10941785655386695e+01 -Deuteron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_deuteron_triton_profile227)_ 2.10904509267912488e+01 -Deuteron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_deuteron_triton_profile228)_ 2.10867005557041125e+01 -Deuteron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_deuteron_triton_profile229)_ 2.10829273541423596e+01 -Deuteron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_deuteron_triton_profile230)_ 2.10791312232100729e+01 -Deuteron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_deuteron_triton_profile231)_ 2.10753120632534205e+01 -Deuteron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_deuteron_triton_profile232)_ 2.10714697738058128e+01 -Deuteron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_deuteron_triton_profile233)_ 2.10676042536259942e+01 -Deuteron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_deuteron_triton_profile234)_ 2.10637154006622467e+01 -Deuteron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_deuteron_triton_profile235)_ 2.10598031121168923e+01 -Deuteron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_deuteron_triton_profile236)_ 2.10558672843390795e+01 -Deuteron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_deuteron_triton_profile237)_ 2.10519078128990067e+01 -Deuteron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_deuteron_triton_profile238)_ 2.10479245925388057e+01 -Deuteron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_deuteron_triton_profile239)_ 2.10439175172214199e+01 -Deuteron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_deuteron_triton_profile240)_ 2.10398864800648404e+01 -Deuteron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_deuteron_triton_profile241)_ 2.10358313733978086e+01 -Deuteron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_deuteron_triton_profile242)_ 2.10317520887069662e+01 -Deuteron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_deuteron_triton_profile243)_ 2.10276485166364679e+01 -Deuteron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_deuteron_triton_profile244)_ 2.10235205470211000e+01 -Deuteron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_deuteron_triton_profile245)_ 2.10193680688664415e+01 -Deuteron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_deuteron_triton_profile246)_ 2.10151909703388711e+01 -Deuteron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_deuteron_triton_profile247)_ 2.10109891387453445e+01 -Deuteron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_deuteron_triton_profile248)_ 2.10067624605839853e+01 -Deuteron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_deuteron_triton_profile249)_ 2.10025108214938854e+01 -Deuteron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_deuteron_triton_profile250)_ 2.09982341062346762e+01 -Deuteron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_deuteron_triton_profile251)_ 2.09939321987513061e+01 -Deuteron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_deuteron_triton_profile252)_ 2.09896049821235735e+01 -Deuteron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_deuteron_triton_profile253)_ 2.09852523385595511e+01 -Deuteron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_deuteron_triton_profile254)_ 2.09808741494510791e+01 -Deuteron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_deuteron_triton_profile255)_ 2.09764702952573963e+01 -Deuteron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_deuteron_triton_profile256)_ 2.09720406556471168e+01 -Deuteron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_deuteron_triton_profile257)_ 2.09675851093503738e+01 -Deuteron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_deuteron_triton_profile258)_ 2.09631035342949481e+01 -Deuteron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_deuteron_triton_profile259)_ 2.09585958075206520e+01 -Deuteron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_deuteron_triton_profile260)_ 2.09540618051590535e+01 -Deuteron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_deuteron_triton_profile261)_ 2.09495014025224471e+01 -Deuteron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_deuteron_triton_profile262)_ 2.09449144740033475e+01 -Deuteron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_deuteron_triton_profile263)_ 2.09403008931286188e+01 -Deuteron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_deuteron_triton_profile264)_ 2.09356605325898570e+01 -Deuteron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_deuteron_triton_profile265)_ 2.09309932641563918e+01 -Deuteron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_deuteron_triton_profile266)_ 2.09262989587447947e+01 -Deuteron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_deuteron_triton_profile267)_ 2.09215774863781583e+01 -Deuteron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_deuteron_triton_profile268)_ 2.09168287162171325e+01 -Deuteron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_deuteron_triton_profile269)_ 2.09120525165409177e+01 -Deuteron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_deuteron_triton_profile270)_ 2.09072487547535708e+01 -Deuteron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_deuteron_triton_profile271)_ 2.09024172973832769e+01 -Deuteron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_deuteron_triton_profile272)_ 2.08975580101222640e+01 -Deuteron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_deuteron_triton_profile273)_ 2.08926707577165978e+01 -Deuteron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_deuteron_triton_profile274)_ 2.08877554041053557e+01 -Deuteron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_deuteron_triton_profile275)_ 2.08828118123254391e+01 -Deuteron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_deuteron_triton_profile276)_ 2.08778398445859104e+01 -Deuteron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_deuteron_triton_profile277)_ 2.08728393622058164e+01 -Deuteron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_deuteron_triton_profile278)_ 2.08678102256709614e+01 -Deuteron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_deuteron_triton_profile279)_ 2.08627522945678550e+01 -Deuteron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_deuteron_triton_profile280)_ 2.08576654277093034e+01 -Deuteron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_deuteron_triton_profile281)_ 2.08525494829972899e+01 -Deuteron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_deuteron_triton_profile282)_ 2.08474043175116748e+01 -Deuteron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_deuteron_triton_profile283)_ 2.08422297875170166e+01 -Deuteron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_deuteron_triton_profile284)_ 2.08370257484467274e+01 -Deuteron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_deuteron_triton_profile285)_ 2.08317920549103022e+01 -Deuteron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_deuteron_triton_profile286)_ 2.08265285606893329e+01 -Deuteron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_deuteron_triton_profile287)_ 2.08212351187881524e+01 -Deuteron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_deuteron_triton_profile288)_ 2.08159115813961613e+01 -Deuteron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_deuteron_triton_profile289)_ 2.08105577999279632e+01 -Deuteron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_deuteron_triton_profile290)_ 2.08051736250096333e+01 -Deuteron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_deuteron_triton_profile291)_ 2.07997589065439676e+01 -Deuteron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_deuteron_triton_profile292)_ 2.07943134935793452e+01 -Deuteron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_deuteron_triton_profile293)_ 2.07888372345659178e+01 -Deuteron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_deuteron_triton_profile294)_ 2.07833299771026319e+01 -Deuteron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_deuteron_triton_profile295)_ 2.07777915680999072e+01 -Deuteron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_deuteron_triton_profile296)_ 2.07722218538176371e+01 -Deuteron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_deuteron_triton_profile297)_ 2.07666206797749950e+01 -Deuteron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_deuteron_triton_profile298)_ 2.07609878908493322e+01 -Deuteron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_deuteron_triton_profile299)_ 2.07553233312514180e+01 -Deuteron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_deuteron_triton_profile300)_ 2.07496268445660021e+01 -Deuteron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_deuteron_triton_profile301)_ 2.07438982737814079e+01 -Deuteron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_deuteron_triton_profile302)_ 2.07381374612334675e+01 -Deuteron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_deuteron_triton_profile303)_ 2.07323442487518612e+01 -Deuteron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_deuteron_triton_profile304)_ 2.07265184775687423e+01 -Deuteron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_deuteron_triton_profile305)_ 2.07206599884264797e+01 -Deuteron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_deuteron_triton_profile306)_ 2.07147686215581679e+01 -Deuteron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_deuteron_triton_profile307)_ 2.07088442167018911e+01 -Deuteron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_deuteron_triton_profile308)_ 2.07028866131624625e+01 -Deuteron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_deuteron_triton_profile309)_ 2.06968956498198224e+01 -Deuteron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_deuteron_triton_profile310)_ 2.06908711651595389e+01 -Deuteron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_deuteron_triton_profile311)_ 2.06848129973991988e+01 -Deuteron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_deuteron_triton_profile312)_ 2.06787209842686579e+01 -Deuteron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_deuteron_triton_profile313)_ 2.06725949633838937e+01 -Deuteron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_deuteron_triton_profile314)_ 2.06664347720078787e+01 -Deuteron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_deuteron_triton_profile315)_ 2.06602402472654312e+01 -Deuteron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_deuteron_triton_profile316)_ 2.06540112260344024e+01 -Deuteron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_deuteron_triton_profile317)_ 2.06477475451703754e+01 -Deuteron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_deuteron_triton_profile318)_ 2.06414490413428062e+01 -Deuteron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_deuteron_triton_profile319)_ 2.06351155513089601e+01 -Deuteron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_deuteron_triton_profile320)_ 2.06287469117431783e+01 -Deuteron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_deuteron_triton_profile321)_ 2.06223429594313217e+01 -Deuteron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_deuteron_triton_profile322)_ 2.06159035312992884e+01 -Deuteron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_deuteron_triton_profile323)_ 2.06094284644520087e+01 -Deuteron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_deuteron_triton_profile324)_ 2.06029175962369848e+01 -Deuteron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_deuteron_triton_profile325)_ 2.05963707642918834e+01 -Deuteron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_deuteron_triton_profile326)_ 2.05897878066356661e+01 -Deuteron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_deuteron_triton_profile327)_ 2.05831685617119398e+01 -Deuteron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_deuteron_triton_profile328)_ 2.05765128685181153e+01 -Deuteron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_deuteron_triton_profile329)_ 2.05698205665797360e+01 -Deuteron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_deuteron_triton_profile330)_ 2.05630914961270967e+01 -Deuteron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_deuteron_triton_profile331)_ 2.05563254981263697e+01 -Deuteron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_deuteron_triton_profile332)_ 2.05495224143836772e+01 -Deuteron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_deuteron_triton_profile333)_ 2.05426820875620741e+01 -Deuteron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_deuteron_triton_profile334)_ 2.05358043614496033e+01 -Deuteron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_deuteron_triton_profile335)_ 2.05288890808305204e+01 -Deuteron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_deuteron_triton_profile336)_ 2.05219360917512716e+01 -Deuteron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_deuteron_triton_profile337)_ 2.05149452415806905e+01 -Deuteron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_deuteron_triton_profile338)_ 2.05079163791266872e+01 -Deuteron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_deuteron_triton_profile339)_ 2.05008493546635826e+01 -Deuteron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_deuteron_triton_profile340)_ 2.04937440202187453e+01 -Deuteron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_deuteron_triton_profile341)_ 2.04866002295400840e+01 -Deuteron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_deuteron_triton_profile342)_ 2.04794178383437497e+01 -Deuteron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_deuteron_triton_profile343)_ 2.04721967043740314e+01 -Deuteron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_deuteron_triton_profile344)_ 2.04649366876076115e+01 -Deuteron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_deuteron_triton_profile345)_ 2.04576376502767907e+01 -Deuteron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_deuteron_triton_profile346)_ 2.04502994572268300e+01 -Deuteron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_deuteron_triton_profile347)_ 2.04429219759305738e+01 -Deuteron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_deuteron_triton_profile348)_ 2.04355050766749677e+01 -Deuteron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_deuteron_triton_profile349)_ 2.04280486328012785e+01 -Deuteron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_deuteron_triton_profile350)_ 2.04205525207812606e+01 -Deuteron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_deuteron_triton_profile351)_ 2.04130166205175350e+01 -Deuteron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_deuteron_triton_profile352)_ 2.04054408155277116e+01 -Deuteron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_deuteron_triton_profile353)_ 2.03978249930821285e+01 -Deuteron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_deuteron_triton_profile354)_ 2.03901690444967691e+01 -Deuteron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_deuteron_triton_profile355)_ 2.03824728653290883e+01 -Deuteron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_deuteron_triton_profile356)_ 2.03747363556082490e+01 -Deuteron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_deuteron_triton_profile357)_ 2.03669594200956254e+01 -Deuteron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_deuteron_triton_profile358)_ 2.03591419685658224e+01 -Deuteron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_deuteron_triton_profile359)_ 2.03512839159933776e+01 -Deuteron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_deuteron_triton_profile360)_ 2.03433851830234680e+01 -Deuteron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_deuteron_triton_profile361)_ 2.03354456959470049e+01 -Deuteron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_deuteron_triton_profile362)_ 2.03274653873759199e+01 -Deuteron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_deuteron_triton_profile363)_ 2.03194441963113412e+01 -Deuteron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_deuteron_triton_profile364)_ 2.03113820685605475e+01 -Deuteron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_deuteron_triton_profile365)_ 2.03032789570037302e+01 -Deuteron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_deuteron_triton_profile366)_ 2.02951348221576602e+01 -Deuteron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_deuteron_triton_profile367)_ 2.02869496323153058e+01 -Deuteron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_deuteron_triton_profile368)_ 2.02787233641148461e+01 -Deuteron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_deuteron_triton_profile369)_ 2.02704560029308425e+01 -Deuteron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_deuteron_triton_profile370)_ 2.02621475431268578e+01 -Deuteron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_deuteron_triton_profile371)_ 2.02537979887731119e+01 -Deuteron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_deuteron_triton_profile372)_ 2.02454073538963542e+01 -Deuteron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_deuteron_triton_profile373)_ 2.02369756631643085e+01 -Deuteron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_deuteron_triton_profile374)_ 2.02285029521673216e+01 -Deuteron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_deuteron_triton_profile375)_ 2.02199892681531743e+01 -Deuteron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_deuteron_triton_profile376)_ 2.02114346705143966e+01 -Deuteron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_deuteron_triton_profile377)_ 2.02028392312995990e+01 -Deuteron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_deuteron_triton_profile378)_ 2.01942030359291067e+01 -Deuteron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_deuteron_triton_profile379)_ 2.01855261837877720e+01 -Deuteron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_deuteron_triton_profile380)_ 2.01768087888834344e+01 -Deuteron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_deuteron_triton_profile381)_ 2.01680509805107455e+01 -Deuteron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_deuteron_triton_profile382)_ 2.01592529039901862e+01 -Deuteron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_deuteron_triton_profile383)_ 2.01504147215110976e+01 -Deuteron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_deuteron_triton_profile384)_ 2.01415366127552211e+01 -Deuteron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_deuteron_triton_profile385)_ 2.01326187758406121e+01 -Deuteron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_deuteron_triton_profile386)_ 2.01236614282029791e+01 -Deuteron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_deuteron_triton_profile387)_ 2.01146648073194321e+01 -Deuteron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_deuteron_triton_profile388)_ 2.01056291718281663e+01 -Deuteron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_deuteron_triton_profile389)_ 2.00965548024641230e+01 -Deuteron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_deuteron_triton_profile390)_ 2.00874420031093663e+01 -Deuteron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_deuteron_triton_profile391)_ 2.00782911017205983e+01 -Deuteron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_deuteron_triton_profile392)_ 2.00691024516296288e+01 -Deuteron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_deuteron_triton_profile393)_ 2.00598764326603742e+01 -Deuteron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_deuteron_triton_profile394)_ 2.00506134523350603e+01 -Deuteron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_deuteron_triton_profile395)_ 2.00413139470902593e+01 -Deuteron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_deuteron_triton_profile396)_ 2.00319783837677008e+01 -Deuteron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_deuteron_triton_profile397)_ 2.00226072609502346e+01 -Deuteron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_deuteron_triton_profile398)_ 2.00132011104741352e+01 -Deuteron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_deuteron_triton_profile399)_ 2.00037604987981119e+01 -Deuteron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_deuteron_triton_profile400)_ 1.99942860288307465e+01 -Deuteron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_deuteron_triton_profile401)_ 1.99847783416172824e+01 -Deuteron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_deuteron_triton_profile402)_ 1.99752381179142162e+01 -Deuteron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_deuteron_triton_profile403)_ 1.99656660801871624e+01 -Deuteron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_deuteron_triton_profile404)_ 1.99560629944916705e+01 -Deuteron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_deuteron_triton_profile405)_ 1.99464296727872181e+01 -Deuteron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_deuteron_triton_profile406)_ 1.99367669745080462e+01 -Deuteron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_deuteron_triton_profile407)_ 1.99270758094242346e+01 -Deuteron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_deuteron_triton_profile408)_ 1.99173571395425846e+01 -Deuteron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_deuteron_triton_profile409)_ 1.99076119818697990e+01 -Deuteron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_deuteron_triton_profile410)_ 1.98978414107948645e+01 -Deuteron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_deuteron_triton_profile411)_ 1.98880465609769601e+01 -Deuteron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_deuteron_triton_profile412)_ 1.98782286302321651e+01 -Deuteron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_deuteron_triton_profile413)_ 1.98683888823068493e+01 -Deuteron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_deuteron_triton_profile414)_ 1.98585286503547458e+01 -Deuteron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_deuteron_triton_profile415)_ 1.98486493401220443e+01 -Deuteron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_deuteron_triton_profile416)_ 1.98387524334346814e+01 -Deuteron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_deuteron_triton_profile417)_ 1.98288394920015492e+01 -Deuteron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_deuteron_triton_profile418)_ 1.98189121612865549e+01 -Deuteron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_deuteron_triton_profile419)_ 1.98089721746400009e+01 -Deuteron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_deuteron_triton_profile420)_ 1.97990213574932312e+01 -Deuteron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_deuteron_triton_profile421)_ 1.97890616324854989e+01 -Deuteron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_deuteron_triton_profile422)_ 1.97790950235425491e+01 -Deuteron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_deuteron_triton_profile423)_ 1.97691236616787016e+01 -Deuteron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_deuteron_triton_profile424)_ 1.97591497902035158e+01 -Deuteron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_deuteron_triton_profile425)_ 1.97491757705711066e+01 -Deuteron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_deuteron_triton_profile426)_ 1.97392040883832820e+01 -Deuteron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_deuteron_triton_profile427)_ 1.97292373601711795e+01 -Deuteron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_deuteron_triton_profile428)_ 1.97192783401493976e+01 -Deuteron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_deuteron_triton_profile429)_ 1.97093299277705718e+01 -Deuteron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_deuteron_triton_profile430)_ 1.96993951755487053e+01 -Deuteron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_deuteron_triton_profile431)_ 1.96894772976838972e+01 -Deuteron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_deuteron_triton_profile432)_ 1.96795796787855544e+01 -Deuteron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_deuteron_triton_profile433)_ 1.96697058840839034e+01 -Deuteron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_deuteron_triton_profile434)_ 1.96598596695060444e+01 -Deuteron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_deuteron_triton_profile435)_ 1.96500449932193888e+01 -Deuteron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_deuteron_triton_profile436)_ 1.96402660275257261e+01 -Deuteron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_deuteron_triton_profile437)_ 1.96305271724127941e+01 -Deuteron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_deuteron_triton_profile438)_ 1.96208330696035347e+01 -Deuteron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_deuteron_triton_profile439)_ 1.96111886183450004e+01 -Deuteron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_deuteron_triton_profile440)_ 1.96015989923154095e+01 -Deuteron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_deuteron_triton_profile441)_ 1.95920696585704803e+01 -Deuteron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_deuteron_triton_profile442)_ 1.95826063978428806e+01 -Deuteron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_deuteron_triton_profile443)_ 1.95732153275932710e+01 -Deuteron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_deuteron_triton_profile444)_ 1.95639029271760130e+01 -Deuteron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_deuteron_triton_profile445)_ 1.95546760661272394e+01 -Deuteron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_deuteron_triton_profile446)_ 1.95455420356927014e+01 -Deuteron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_deuteron_triton_profile447)_ 1.95365085847366018e+01 -Deuteron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_deuteron_triton_profile448)_ 1.95275839601035237e+01 -Deuteron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_deuteron_triton_profile449)_ 1.95187769531694926e+01 -Deuteron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_deuteron_triton_profile450)_ 1.95100969528752266e+01 -Deuteron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_deuteron_triton_profile451)_ 1.95015540078533469e+01 -Deuteron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_deuteron_triton_profile452)_ 1.94931588985423652e+01 -Deuteron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_deuteron_triton_profile453)_ 1.94849232230108633e+01 -Deuteron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_deuteron_triton_profile454)_ 1.94768594986931980e+01 -Deuteron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_deuteron_triton_profile455)_ 1.94689812858710276e+01 -Deuteron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_deuteron_triton_profile456)_ 1.94613033381876832e+01 -Deuteron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_deuteron_triton_profile457)_ 1.94538417896461233e+01 -Deuteron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_deuteron_triton_profile458)_ 1.94466143901620931e+01 -Deuteron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_deuteron_triton_profile459)_ 1.94396408079429541e+01 -Deuteron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_deuteron_triton_profile460)_ 1.94329430257677416e+01 -Deuteron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_deuteron_triton_profile461)_ 1.94265458733669405e+01 -Deuteron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_deuteron_triton_profile462)_ 1.94204777629628964e+01 -Deuteron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_deuteron_triton_profile463)_ 1.94147717423534800e+01 -Deuteron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_deuteron_triton_profile464)_ 1.94094670670408682e+01 -Deuteron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_deuteron_triton_profile465)_ 1.94046116796848374e+01 -Deuteron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_deuteron_triton_profile466)_ 1.94002664078294949e+01 -Deuteron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_deuteron_triton_profile467)_ 1.93965128130589406e+01 -Deuteron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_deuteron_triton_profile468)_ 1.93934702267349763e+01 -Deuteron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_deuteron_triton_profile469)_ 1.93913437188899351e+01 -Deuteron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_deuteron_triton_profile470)_ 1.93907183511371741e+01 -Deuteron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_deuteron_triton_profile471)_ 1.93477165703963969e+01 -Deuteron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_deuteron_triton_profile472)_ 1.93030934810739652e+01 -Deuteron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_deuteron_triton_profile473)_ 1.92567293163575606e+01 -Deuteron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_deuteron_triton_profile474)_ 1.92084908375306078e+01 -Deuteron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_deuteron_triton_profile475)_ 1.91582292528468550e+01 -Deuteron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_deuteron_triton_profile476)_ 1.91057777205863601e+01 -Deuteron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_deuteron_triton_profile477)_ 1.90509483316201731e+01 -Deuteron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_deuteron_triton_profile478)_ 1.89935284353850378e+01 -Deuteron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_deuteron_triton_profile479)_ 1.89332761319161911e+01 -Deuteron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_deuteron_triton_profile480)_ 1.88699146896174454e+01 -Deuteron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_deuteron_triton_profile481)_ 1.88031255688013452e+01 -Deuteron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_deuteron_triton_profile482)_ 1.87325396106481321e+01 -Deuteron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_deuteron_triton_profile483)_ 1.86577257794576212e+01 -Deuteron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_deuteron_triton_profile484)_ 1.85781765989718650e+01 -Deuteron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_deuteron_triton_profile485)_ 1.84932890398933019e+01 -Deuteron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_deuteron_triton_profile486)_ 1.84023390464884500e+01 -Deuteron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_deuteron_triton_profile487)_ 1.83044469761461244e+01 -Deuteron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_deuteron_triton_profile488)_ 1.81985297656375806e+01 -Deuteron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_deuteron_triton_profile489)_ 1.80832331936385344e+01 -Deuteron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_deuteron_triton_profile490)_ 1.79568333980386114e+01 -Deuteron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_deuteron_triton_profile491)_ 1.78170892155723593e+01 -Deuteron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_deuteron_triton_profile492)_ 1.76610125803048916e+01 -Deuteron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_deuteron_triton_profile493)_ 1.74844955344523356e+01 -Deuteron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_deuteron_triton_profile494)_ 1.72816708602134597e+01 -Deuteron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_deuteron_triton_profile495)_ 1.70437394299229368e+01 -Deuteron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_deuteron_triton_profile496)_ 1.67566216084932691e+01 -Deuteron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_deuteron_triton_profile497)_ 1.63956537296557592e+01 -Deuteron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_deuteron_triton_profile498)_ 1.59113153929362738e+01 -Deuteron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_deuteron_triton_profile499)_ 1.51779328073027457e+01 -Deuteron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_deuteron_triton_profile500)_ 1.36450364438831055e+01 -Volume_averaged_electron-alpha_thermal_Coulomb_log_(Λₑαₜₕ)_______________ (plasma_coulomb_log_electron_alpha_thermal_vol_avg)_ 1.77779240633107278e+01 OP -Electron-alpha_thermal_Coulomb_log_at_point_0____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile0)_ 1.83507441849370814e+01 -Electron-alpha_thermal_Coulomb_log_at_point_1____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile1)_ 1.83507400972544765e+01 -Electron-alpha_thermal_Coulomb_log_at_point_2____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile2)_ 1.83507278341165261e+01 -Electron-alpha_thermal_Coulomb_log_at_point_3____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile3)_ 1.83507073952528188e+01 -Electron-alpha_thermal_Coulomb_log_at_point_4____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile4)_ 1.83506787802126468e+01 -Electron-alpha_thermal_Coulomb_log_at_point_5____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile5)_ 1.83506419883649841e+01 -Electron-alpha_thermal_Coulomb_log_at_point_6____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile6)_ 1.83505970188984513e+01 -Electron-alpha_thermal_Coulomb_log_at_point_7____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile7)_ 1.83505438708212800e+01 -Electron-alpha_thermal_Coulomb_log_at_point_8____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile8)_ 1.83504825429612346e+01 -Electron-alpha_thermal_Coulomb_log_at_point_9____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile9)_ 1.83504130339655731e+01 -Electron-alpha_thermal_Coulomb_log_at_point_10___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile10)_ 1.83503353423009479e+01 -Electron-alpha_thermal_Coulomb_log_at_point_11___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile11)_ 1.83502494662533344e+01 -Electron-alpha_thermal_Coulomb_log_at_point_12___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile12)_ 1.83501554039279391e+01 -Electron-alpha_thermal_Coulomb_log_at_point_13___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile13)_ 1.83500531532490783e+01 -Electron-alpha_thermal_Coulomb_log_at_point_14___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile14)_ 1.83499427119600718e+01 -Electron-alpha_thermal_Coulomb_log_at_point_15___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile15)_ 1.83498240776231221e+01 -Electron-alpha_thermal_Coulomb_log_at_point_16___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile16)_ 1.83496972476191651e+01 -Electron-alpha_thermal_Coulomb_log_at_point_17___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile17)_ 1.83495622191477388e+01 -Electron-alpha_thermal_Coulomb_log_at_point_18___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile18)_ 1.83494189892268089e+01 -Electron-alpha_thermal_Coulomb_log_at_point_19___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile19)_ 1.83492675546926129e+01 -Electron-alpha_thermal_Coulomb_log_at_point_20___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile20)_ 1.83491079121994964e+01 -Electron-alpha_thermal_Coulomb_log_at_point_21___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile21)_ 1.83489400582196929e+01 -Electron-alpha_thermal_Coulomb_log_at_point_22___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile22)_ 1.83487639890431637e+01 -Electron-alpha_thermal_Coulomb_log_at_point_23___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile23)_ 1.83485797007773570e+01 -Electron-alpha_thermal_Coulomb_log_at_point_24___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile24)_ 1.83483871893470081e+01 -Electron-alpha_thermal_Coulomb_log_at_point_25___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile25)_ 1.83481864504939267e+01 -Electron-alpha_thermal_Coulomb_log_at_point_26___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile26)_ 1.83479774797767163e+01 -Electron-alpha_thermal_Coulomb_log_at_point_27___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile27)_ 1.83477602725705680e+01 -Electron-alpha_thermal_Coulomb_log_at_point_28___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile28)_ 1.83475348240669724e+01 -Electron-alpha_thermal_Coulomb_log_at_point_29___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile29)_ 1.83473011292734718e+01 -Electron-alpha_thermal_Coulomb_log_at_point_30___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile30)_ 1.83470591830133714e+01 -Electron-alpha_thermal_Coulomb_log_at_point_31___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile31)_ 1.83468089799254308e+01 -Electron-alpha_thermal_Coulomb_log_at_point_32___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile32)_ 1.83465505144636047e+01 -Electron-alpha_thermal_Coulomb_log_at_point_33___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile33)_ 1.83462837808966945e+01 -Electron-alpha_thermal_Coulomb_log_at_point_34___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile34)_ 1.83460087733080428e+01 -Electron-alpha_thermal_Coulomb_log_at_point_35___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile35)_ 1.83457254855952030e+01 -Electron-alpha_thermal_Coulomb_log_at_point_36___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile36)_ 1.83454339114695948e+01 -Electron-alpha_thermal_Coulomb_log_at_point_37___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile37)_ 1.83451340444561488e+01 -Electron-alpha_thermal_Coulomb_log_at_point_38___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile38)_ 1.83448258778929372e+01 -Electron-alpha_thermal_Coulomb_log_at_point_39___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile39)_ 1.83445094049308182e+01 -Electron-alpha_thermal_Coulomb_log_at_point_40___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile40)_ 1.83441846185330313e+01 -Electron-alpha_thermal_Coulomb_log_at_point_41___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile41)_ 1.83438515114748171e+01 -Electron-alpha_thermal_Coulomb_log_at_point_42___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile42)_ 1.83435100763429979e+01 -Electron-alpha_thermal_Coulomb_log_at_point_43___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile43)_ 1.83431603055355730e+01 -Electron-alpha_thermal_Coulomb_log_at_point_44___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile44)_ 1.83428021912612778e+01 -Electron-alpha_thermal_Coulomb_log_at_point_45___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile45)_ 1.83424357255391612e+01 -Electron-alpha_thermal_Coulomb_log_at_point_46___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile46)_ 1.83420609001981170e+01 -Electron-alpha_thermal_Coulomb_log_at_point_47___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile47)_ 1.83416777068764496e+01 -Electron-alpha_thermal_Coulomb_log_at_point_48___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile48)_ 1.83412861370213705e+01 -Electron-alpha_thermal_Coulomb_log_at_point_49___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile49)_ 1.83408861818885391e+01 -Electron-alpha_thermal_Coulomb_log_at_point_50___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile50)_ 1.83404778325415663e+01 -Electron-alpha_thermal_Coulomb_log_at_point_51___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile51)_ 1.83400610798515018e+01 -Electron-alpha_thermal_Coulomb_log_at_point_52___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile52)_ 1.83396359144963306e+01 -Electron-alpha_thermal_Coulomb_log_at_point_53___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile53)_ 1.83392023269604323e+01 -Electron-alpha_thermal_Coulomb_log_at_point_54___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile54)_ 1.83387603075340557e+01 -Electron-alpha_thermal_Coulomb_log_at_point_55___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile55)_ 1.83383098463127610e+01 -Electron-alpha_thermal_Coulomb_log_at_point_56___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile56)_ 1.83378509331968615e+01 -Electron-alpha_thermal_Coulomb_log_at_point_57___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile57)_ 1.83373835578908668e+01 -Electron-alpha_thermal_Coulomb_log_at_point_58___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile58)_ 1.83369077099028743e+01 -Electron-alpha_thermal_Coulomb_log_at_point_59___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile59)_ 1.83364233785439872e+01 -Electron-alpha_thermal_Coulomb_log_at_point_60___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile60)_ 1.83359305529277172e+01 -Electron-alpha_thermal_Coulomb_log_at_point_61___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile61)_ 1.83354292219693562e+01 -Electron-alpha_thermal_Coulomb_log_at_point_62___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile62)_ 1.83349193743853434e+01 -Electron-alpha_thermal_Coulomb_log_at_point_63___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile63)_ 1.83344009986926437e+01 -Electron-alpha_thermal_Coulomb_log_at_point_64___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile64)_ 1.83338740832080695e+01 -Electron-alpha_thermal_Coulomb_log_at_point_65___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile65)_ 1.83333386160476408e+01 -Electron-alpha_thermal_Coulomb_log_at_point_66___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile66)_ 1.83327945851258995e+01 -Electron-alpha_thermal_Coulomb_log_at_point_67___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile67)_ 1.83322419781552171e+01 -Electron-alpha_thermal_Coulomb_log_at_point_68___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile68)_ 1.83316807826450976e+01 -Electron-alpha_thermal_Coulomb_log_at_point_69___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile69)_ 1.83311109859014785e+01 -Electron-alpha_thermal_Coulomb_log_at_point_70___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile70)_ 1.83305325750259840e+01 -Electron-alpha_thermal_Coulomb_log_at_point_71___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile71)_ 1.83299455369152220e+01 -Electron-alpha_thermal_Coulomb_log_at_point_72___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile72)_ 1.83293498582599916e+01 -Electron-alpha_thermal_Coulomb_log_at_point_73___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile73)_ 1.83287455255445728e+01 -Electron-alpha_thermal_Coulomb_log_at_point_74___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile74)_ 1.83281325250459197e+01 -Electron-alpha_thermal_Coulomb_log_at_point_75___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile75)_ 1.83275108428328899e+01 -Electron-alpha_thermal_Coulomb_log_at_point_76___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile76)_ 1.83268804647654449e+01 -Electron-alpha_thermal_Coulomb_log_at_point_77___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile77)_ 1.83262413764938472e+01 -Electron-alpha_thermal_Coulomb_log_at_point_78___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile78)_ 1.83255935634578186e+01 -Electron-alpha_thermal_Coulomb_log_at_point_79___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile79)_ 1.83249370108857406e+01 -Electron-alpha_thermal_Coulomb_log_at_point_80___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile80)_ 1.83242717037937766e+01 -Electron-alpha_thermal_Coulomb_log_at_point_81___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile81)_ 1.83235976269850234e+01 -Electron-alpha_thermal_Coulomb_log_at_point_82___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile82)_ 1.83229147650486368e+01 -Electron-alpha_thermal_Coulomb_log_at_point_83___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile83)_ 1.83222231023589650e+01 -Electron-alpha_thermal_Coulomb_log_at_point_84___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile84)_ 1.83215226230746175e+01 -Electron-alpha_thermal_Coulomb_log_at_point_85___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile85)_ 1.83208133111375808e+01 -Electron-alpha_thermal_Coulomb_log_at_point_86___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile86)_ 1.83200951502722802e+01 -Electron-alpha_thermal_Coulomb_log_at_point_87___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile87)_ 1.83193681239846562e+01 -Electron-alpha_thermal_Coulomb_log_at_point_88___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile88)_ 1.83186322155612018e+01 -Electron-alpha_thermal_Coulomb_log_at_point_89___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile89)_ 1.83178874080679961e+01 -Electron-alpha_thermal_Coulomb_log_at_point_90___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile90)_ 1.83171336843497556e+01 -Electron-alpha_thermal_Coulomb_log_at_point_91___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile91)_ 1.83163710270288007e+01 -Electron-alpha_thermal_Coulomb_log_at_point_92___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile92)_ 1.83155994185040889e+01 -Electron-alpha_thermal_Coulomb_log_at_point_93___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile93)_ 1.83148188409501884e+01 -Electron-alpha_thermal_Coulomb_log_at_point_94___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile94)_ 1.83140292763162265e+01 -Electron-alpha_thermal_Coulomb_log_at_point_95___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile95)_ 1.83132307063248767e+01 -Electron-alpha_thermal_Coulomb_log_at_point_96___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile96)_ 1.83124231124712828e+01 -Electron-alpha_thermal_Coulomb_log_at_point_97___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile97)_ 1.83116064760219857e+01 -Electron-alpha_thermal_Coulomb_log_at_point_98___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile98)_ 1.83107807780138430e+01 -Electron-alpha_thermal_Coulomb_log_at_point_99___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile99)_ 1.83099459992529319e+01 -Electron-alpha_thermal_Coulomb_log_at_point_100__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile100)_ 1.83091021203134332e+01 -Electron-alpha_thermal_Coulomb_log_at_point_101__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile101)_ 1.83082491215364911e+01 -Electron-alpha_thermal_Coulomb_log_at_point_102__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile102)_ 1.83073869830290867e+01 -Electron-alpha_thermal_Coulomb_log_at_point_103__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile103)_ 1.83065156846628803e+01 -Electron-alpha_thermal_Coulomb_log_at_point_104__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile104)_ 1.83056352060730312e+01 -Electron-alpha_thermal_Coulomb_log_at_point_105__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile105)_ 1.83047455266570154e+01 -Electron-alpha_thermal_Coulomb_log_at_point_106__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile106)_ 1.83038466255734313e+01 -Electron-alpha_thermal_Coulomb_log_at_point_107__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile107)_ 1.83029384817407781e+01 -Electron-alpha_thermal_Coulomb_log_at_point_108__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile108)_ 1.83020210738362259e+01 -Electron-alpha_thermal_Coulomb_log_at_point_109__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile109)_ 1.83010943802943835e+01 -Electron-alpha_thermal_Coulomb_log_at_point_110__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile110)_ 1.83001583793060192e+01 -Electron-alpha_thermal_Coulomb_log_at_point_111__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile111)_ 1.82992130488168030e+01 -Electron-alpha_thermal_Coulomb_log_at_point_112__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile112)_ 1.82982583665260172e+01 -Electron-alpha_thermal_Coulomb_log_at_point_113__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile113)_ 1.82972943098852348e+01 -Electron-alpha_thermal_Coulomb_log_at_point_114__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile114)_ 1.82963208560970259e+01 -Electron-alpha_thermal_Coulomb_log_at_point_115__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile115)_ 1.82953379821135940e+01 -Electron-alpha_thermal_Coulomb_log_at_point_116__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile116)_ 1.82943456646354576e+01 -Electron-alpha_thermal_Coulomb_log_at_point_117__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile117)_ 1.82933438801100579e+01 -Electron-alpha_thermal_Coulomb_log_at_point_118__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile118)_ 1.82923326047303867e+01 -Electron-alpha_thermal_Coulomb_log_at_point_119__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile119)_ 1.82913118144335947e+01 -Electron-alpha_thermal_Coulomb_log_at_point_120__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile120)_ 1.82902814848995696e+01 -Electron-alpha_thermal_Coulomb_log_at_point_121__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile121)_ 1.82892415915495228e+01 -Electron-alpha_thermal_Coulomb_log_at_point_122__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile122)_ 1.82881921095445215e+01 -Electron-alpha_thermal_Coulomb_log_at_point_123__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile123)_ 1.82871330137840502e+01 -Electron-alpha_thermal_Coulomb_log_at_point_124__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile124)_ 1.82860642789045258e+01 -Electron-alpha_thermal_Coulomb_log_at_point_125__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile125)_ 1.82849858792777944e+01 -Electron-alpha_thermal_Coulomb_log_at_point_126__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile126)_ 1.82838977890096572e+01 -Electron-alpha_thermal_Coulomb_log_at_point_127__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile127)_ 1.82827999819382931e+01 -Electron-alpha_thermal_Coulomb_log_at_point_128__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile128)_ 1.82816924316327665e+01 -Electron-alpha_thermal_Coulomb_log_at_point_129__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile129)_ 1.82805751113914354e+01 -Electron-alpha_thermal_Coulomb_log_at_point_130__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile130)_ 1.82794479942404031e+01 -Electron-alpha_thermal_Coulomb_log_at_point_131__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile131)_ 1.82783110529319082e+01 -Electron-alpha_thermal_Coulomb_log_at_point_132__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile132)_ 1.82771642599427118e+01 -Electron-alpha_thermal_Coulomb_log_at_point_133__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile133)_ 1.82760075874725061e+01 -Electron-alpha_thermal_Coulomb_log_at_point_134__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile134)_ 1.82748410074422267e+01 -Electron-alpha_thermal_Coulomb_log_at_point_135__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile135)_ 1.82736644914924398e+01 -Electron-alpha_thermal_Coulomb_log_at_point_136__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile136)_ 1.82724780109816329e+01 -Electron-alpha_thermal_Coulomb_log_at_point_137__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile137)_ 1.82712815369845352e+01 -Electron-alpha_thermal_Coulomb_log_at_point_138__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile138)_ 1.82700750402904148e+01 -Electron-alpha_thermal_Coulomb_log_at_point_139__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile139)_ 1.82688584914013283e+01 -Electron-alpha_thermal_Coulomb_log_at_point_140__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile140)_ 1.82676318605304111e+01 -Electron-alpha_thermal_Coulomb_log_at_point_141__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile141)_ 1.82663951176000872e+01 -Electron-alpha_thermal_Coulomb_log_at_point_142__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile142)_ 1.82651482322402998e+01 -Electron-alpha_thermal_Coulomb_log_at_point_143__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile143)_ 1.82638911737867176e+01 -Electron-alpha_thermal_Coulomb_log_at_point_144__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile144)_ 1.82626239112789186e+01 -Electron-alpha_thermal_Coulomb_log_at_point_145__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile145)_ 1.82613464134585470e+01 -Electron-alpha_thermal_Coulomb_log_at_point_146__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile146)_ 1.82600586487674903e+01 -Electron-alpha_thermal_Coulomb_log_at_point_147__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile147)_ 1.82587605853459856e+01 -Electron-alpha_thermal_Coulomb_log_at_point_148__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile148)_ 1.82574521910307510e+01 -Electron-alpha_thermal_Coulomb_log_at_point_149__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile149)_ 1.82561334333530674e+01 -Electron-alpha_thermal_Coulomb_log_at_point_150__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile150)_ 1.82548042795368701e+01 -Electron-alpha_thermal_Coulomb_log_at_point_151__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile151)_ 1.82534646964968132e+01 -Electron-alpha_thermal_Coulomb_log_at_point_152__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile152)_ 1.82521146508362904e+01 -Electron-alpha_thermal_Coulomb_log_at_point_153__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile153)_ 1.82507541088454950e+01 -Electron-alpha_thermal_Coulomb_log_at_point_154__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile154)_ 1.82493830364993919e+01 -Electron-alpha_thermal_Coulomb_log_at_point_155__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile155)_ 1.82480013994557311e+01 -Electron-alpha_thermal_Coulomb_log_at_point_156__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile156)_ 1.82466091630529945e+01 -Electron-alpha_thermal_Coulomb_log_at_point_157__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile157)_ 1.82452062923083744e+01 -Electron-alpha_thermal_Coulomb_log_at_point_158__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile158)_ 1.82437927519156986e+01 -Electron-alpha_thermal_Coulomb_log_at_point_159__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile159)_ 1.82423685062433378e+01 -Electron-alpha_thermal_Coulomb_log_at_point_160__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile160)_ 1.82409335193321027e+01 -Electron-alpha_thermal_Coulomb_log_at_point_161__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile161)_ 1.82394877548931440e+01 -Electron-alpha_thermal_Coulomb_log_at_point_162__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile162)_ 1.82380311763057854e+01 -Electron-alpha_thermal_Coulomb_log_at_point_163__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile163)_ 1.82365637466153849e+01 -Electron-alpha_thermal_Coulomb_log_at_point_164__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile164)_ 1.82350854285311641e+01 -Electron-alpha_thermal_Coulomb_log_at_point_165__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile165)_ 1.82335961844239876e+01 -Electron-alpha_thermal_Coulomb_log_at_point_166__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile166)_ 1.82320959763241817e+01 -Electron-alpha_thermal_Coulomb_log_at_point_167__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile167)_ 1.82305847659192821e+01 -Electron-alpha_thermal_Coulomb_log_at_point_168__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile168)_ 1.82290625145517957e+01 -Electron-alpha_thermal_Coulomb_log_at_point_169__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile169)_ 1.82275291832169373e+01 -Electron-alpha_thermal_Coulomb_log_at_point_170__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile170)_ 1.82259847325603346e+01 -Electron-alpha_thermal_Coulomb_log_at_point_171__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile171)_ 1.82244291228757298e+01 -Electron-alpha_thermal_Coulomb_log_at_point_172__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile172)_ 1.82228623141026596e+01 -Electron-alpha_thermal_Coulomb_log_at_point_173__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile173)_ 1.82212842658241136e+01 -Electron-alpha_thermal_Coulomb_log_at_point_174__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile174)_ 1.82196949372641868e+01 -Electron-alpha_thermal_Coulomb_log_at_point_175__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile175)_ 1.82180942872856804e+01 -Electron-alpha_thermal_Coulomb_log_at_point_176__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile176)_ 1.82164822743877401e+01 -Electron-alpha_thermal_Coulomb_log_at_point_177__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile177)_ 1.82148588567034295e+01 -Electron-alpha_thermal_Coulomb_log_at_point_178__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile178)_ 1.82132239919972889e+01 -Electron-alpha_thermal_Coulomb_log_at_point_179__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile179)_ 1.82115776376629235e+01 -Electron-alpha_thermal_Coulomb_log_at_point_180__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile180)_ 1.82099197507205126e+01 -Electron-alpha_thermal_Coulomb_log_at_point_181__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile181)_ 1.82082502878143409e+01 -Electron-alpha_thermal_Coulomb_log_at_point_182__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile182)_ 1.82065692052102897e+01 -Electron-alpha_thermal_Coulomb_log_at_point_183__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile183)_ 1.82048764587933469e+01 -Electron-alpha_thermal_Coulomb_log_at_point_184__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile184)_ 1.82031720040650491e+01 -Electron-alpha_thermal_Coulomb_log_at_point_185__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile185)_ 1.82014557961409515e+01 -Electron-alpha_thermal_Coulomb_log_at_point_186__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile186)_ 1.81997277897480600e+01 -Electron-alpha_thermal_Coulomb_log_at_point_187__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile187)_ 1.81979879392222408e+01 -Electron-alpha_thermal_Coulomb_log_at_point_188__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile188)_ 1.81962361985056482e+01 -Electron-alpha_thermal_Coulomb_log_at_point_189__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile189)_ 1.81944725211440819e+01 -Electron-alpha_thermal_Coulomb_log_at_point_190__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile190)_ 1.81926968602843857e+01 -Electron-alpha_thermal_Coulomb_log_at_point_191__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile191)_ 1.81909091686717979e+01 -Electron-alpha_thermal_Coulomb_log_at_point_192__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile192)_ 1.81891093986472718e+01 -Electron-alpha_thermal_Coulomb_log_at_point_193__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile193)_ 1.81872975021448475e+01 -Electron-alpha_thermal_Coulomb_log_at_point_194__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile194)_ 1.81854734306889227e+01 -Electron-alpha_thermal_Coulomb_log_at_point_195__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile195)_ 1.81836371353915744e+01 -Electron-alpha_thermal_Coulomb_log_at_point_196__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile196)_ 1.81817885669498374e+01 -Electron-alpha_thermal_Coulomb_log_at_point_197__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile197)_ 1.81799276756429826e+01 -Electron-alpha_thermal_Coulomb_log_at_point_198__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile198)_ 1.81780544113297680e+01 -Electron-alpha_thermal_Coulomb_log_at_point_199__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile199)_ 1.81761687234456986e+01 -Electron-alpha_thermal_Coulomb_log_at_point_200__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile200)_ 1.81742705610002382e+01 -Electron-alpha_thermal_Coulomb_log_at_point_201__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile201)_ 1.81723598725740665e+01 -Electron-alpha_thermal_Coulomb_log_at_point_202__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile202)_ 1.81704366063162546e+01 -Electron-alpha_thermal_Coulomb_log_at_point_203__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile203)_ 1.81685007099414868e+01 -Electron-alpha_thermal_Coulomb_log_at_point_204__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile204)_ 1.81665521307272613e+01 -Electron-alpha_thermal_Coulomb_log_at_point_205__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile205)_ 1.81645908155110476e+01 -Electron-alpha_thermal_Coulomb_log_at_point_206__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile206)_ 1.81626167106874767e+01 -Electron-alpha_thermal_Coulomb_log_at_point_207__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile207)_ 1.81606297622054953e+01 -Electron-alpha_thermal_Coulomb_log_at_point_208__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile208)_ 1.81586299155655304e+01 -Electron-alpha_thermal_Coulomb_log_at_point_209__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile209)_ 1.81566171158166405e+01 -Electron-alpha_thermal_Coulomb_log_at_point_210__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile210)_ 1.81545913075536447e+01 -Electron-alpha_thermal_Coulomb_log_at_point_211__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile211)_ 1.81525524349142806e+01 -Electron-alpha_thermal_Coulomb_log_at_point_212__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile212)_ 1.81505004415763196e+01 -Electron-alpha_thermal_Coulomb_log_at_point_213__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile213)_ 1.81484352707547067e+01 -Electron-alpha_thermal_Coulomb_log_at_point_214__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile214)_ 1.81463568651986833e+01 -Electron-alpha_thermal_Coulomb_log_at_point_215__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile215)_ 1.81442651671889124e+01 -Electron-alpha_thermal_Coulomb_log_at_point_216__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile216)_ 1.81421601185345942e+01 -Electron-alpha_thermal_Coulomb_log_at_point_217__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile217)_ 1.81400416605705992e+01 -Electron-alpha_thermal_Coulomb_log_at_point_218__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile218)_ 1.81379097341545723e+01 -Electron-alpha_thermal_Coulomb_log_at_point_219__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile219)_ 1.81357642796640910e+01 -Electron-alpha_thermal_Coulomb_log_at_point_220__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile220)_ 1.81336052369937590e+01 -Electron-alpha_thermal_Coulomb_log_at_point_221__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile221)_ 1.81314325455523360e+01 -Electron-alpha_thermal_Coulomb_log_at_point_222__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile222)_ 1.81292461442599127e+01 -Electron-alpha_thermal_Coulomb_log_at_point_223__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile223)_ 1.81270459715450158e+01 -Electron-alpha_thermal_Coulomb_log_at_point_224__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile224)_ 1.81248319653417695e+01 -Electron-alpha_thermal_Coulomb_log_at_point_225__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile225)_ 1.81226040630870635e+01 -Electron-alpha_thermal_Coulomb_log_at_point_226__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile226)_ 1.81203622017177111e+01 -Electron-alpha_thermal_Coulomb_log_at_point_227__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile227)_ 1.81181063176676496e+01 -Electron-alpha_thermal_Coulomb_log_at_point_228__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile228)_ 1.81158363468650982e+01 -Electron-alpha_thermal_Coulomb_log_at_point_229__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile229)_ 1.81135522247298333e+01 -Electron-alpha_thermal_Coulomb_log_at_point_230__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile230)_ 1.81112538861703491e+01 -Electron-alpha_thermal_Coulomb_log_at_point_231__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile231)_ 1.81089412655811444e+01 -Electron-alpha_thermal_Coulomb_log_at_point_232__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile232)_ 1.81066142968399859e+01 -Electron-alpha_thermal_Coulomb_log_at_point_233__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile233)_ 1.81042729133051807e+01 -Electron-alpha_thermal_Coulomb_log_at_point_234__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile234)_ 1.81019170478129148e+01 -Electron-alpha_thermal_Coulomb_log_at_point_235__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile235)_ 1.80995466326745849e+01 -Electron-alpha_thermal_Coulomb_log_at_point_236__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile236)_ 1.80971615996741484e+01 -Electron-alpha_thermal_Coulomb_log_at_point_237__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile237)_ 1.80947618800655654e+01 -Electron-alpha_thermal_Coulomb_log_at_point_238__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile238)_ 1.80923474045701838e+01 -Electron-alpha_thermal_Coulomb_log_at_point_239__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile239)_ 1.80899181033742522e+01 -Electron-alpha_thermal_Coulomb_log_at_point_240__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile240)_ 1.80874739061264016e+01 -Electron-alpha_thermal_Coulomb_log_at_point_241__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile241)_ 1.80850147419352183e+01 -Electron-alpha_thermal_Coulomb_log_at_point_242__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile242)_ 1.80825405393667964e+01 -Electron-alpha_thermal_Coulomb_log_at_point_243__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile243)_ 1.80800512264424249e+01 -Electron-alpha_thermal_Coulomb_log_at_point_244__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile244)_ 1.80775467306362394e+01 -Electron-alpha_thermal_Coulomb_log_at_point_245__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile245)_ 1.80750269788729874e+01 -Electron-alpha_thermal_Coulomb_log_at_point_246__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile246)_ 1.80724918975258042e+01 -Electron-alpha_thermal_Coulomb_log_at_point_247__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile247)_ 1.80699414124141065e+01 -Electron-alpha_thermal_Coulomb_log_at_point_248__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile248)_ 1.80673754488014637e+01 -Electron-alpha_thermal_Coulomb_log_at_point_249__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile249)_ 1.80647939313936234e+01 -Electron-alpha_thermal_Coulomb_log_at_point_250__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile250)_ 1.80621967843365354e+01 -Electron-alpha_thermal_Coulomb_log_at_point_251__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile251)_ 1.80595839312145081e+01 -Electron-alpha_thermal_Coulomb_log_at_point_252__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile252)_ 1.80569552950484145e+01 -Electron-alpha_thermal_Coulomb_log_at_point_253__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile253)_ 1.80543107982939510e+01 -Electron-alpha_thermal_Coulomb_log_at_point_254__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile254)_ 1.80516503628400713e+01 -Electron-alpha_thermal_Coulomb_log_at_point_255__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile255)_ 1.80489739100073905e+01 -Electron-alpha_thermal_Coulomb_log_at_point_256__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile256)_ 1.80462813605468071e+01 -Electron-alpha_thermal_Coulomb_log_at_point_257__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile257)_ 1.80435726346381315e+01 -Electron-alpha_thermal_Coulomb_log_at_point_258__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile258)_ 1.80408476518888818e+01 -Electron-alpha_thermal_Coulomb_log_at_point_259__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile259)_ 1.80381063313331538e+01 -Electron-alpha_thermal_Coulomb_log_at_point_260__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile260)_ 1.80353485914306262e+01 -Electron-alpha_thermal_Coulomb_log_at_point_261__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile261)_ 1.80325743500656870e+01 -Electron-alpha_thermal_Coulomb_log_at_point_262__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile262)_ 1.80297835245467084e+01 -Electron-alpha_thermal_Coulomb_log_at_point_263__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile263)_ 1.80269760316053897e+01 -Electron-alpha_thermal_Coulomb_log_at_point_264__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile264)_ 1.80241517873963311e+01 -Electron-alpha_thermal_Coulomb_log_at_point_265__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile265)_ 1.80213107074966956e+01 -Electron-alpha_thermal_Coulomb_log_at_point_266__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile266)_ 1.80184527069060572e+01 -Electron-alpha_thermal_Coulomb_log_at_point_267__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile267)_ 1.80155777000463857e+01 -Electron-alpha_thermal_Coulomb_log_at_point_268__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile268)_ 1.80126856007622251e+01 -Electron-alpha_thermal_Coulomb_log_at_point_269__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile269)_ 1.80097763223210379e+01 -Electron-alpha_thermal_Coulomb_log_at_point_270__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile270)_ 1.80068497774137626e+01 -Electron-alpha_thermal_Coulomb_log_at_point_271__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile271)_ 1.80039058781555177e+01 -Electron-alpha_thermal_Coulomb_log_at_point_272__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile272)_ 1.80009445360865463e+01 -Electron-alpha_thermal_Coulomb_log_at_point_273__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile273)_ 1.79979656621733781e+01 -Electron-alpha_thermal_Coulomb_log_at_point_274__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile274)_ 1.79949691668101828e+01 -Electron-alpha_thermal_Coulomb_log_at_point_275__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile275)_ 1.79919549598204007e+01 -Electron-alpha_thermal_Coulomb_log_at_point_276__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile276)_ 1.79889229504585728e+01 -Electron-alpha_thermal_Coulomb_log_at_point_277__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile277)_ 1.79858730474124648e+01 -Electron-alpha_thermal_Coulomb_log_at_point_278__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile278)_ 1.79828051588054088e+01 -Electron-alpha_thermal_Coulomb_log_at_point_279__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile279)_ 1.79797191921989814e+01 -Electron-alpha_thermal_Coulomb_log_at_point_280__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile280)_ 1.79766150545959285e+01 -Electron-alpha_thermal_Coulomb_log_at_point_281__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile281)_ 1.79734926524434044e+01 -Electron-alpha_thermal_Coulomb_log_at_point_282__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile282)_ 1.79703518916365432e+01 -Electron-alpha_thermal_Coulomb_log_at_point_283__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile283)_ 1.79671926775223127e+01 -Electron-alpha_thermal_Coulomb_log_at_point_284__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile284)_ 1.79640149149037711e+01 -Electron-alpha_thermal_Coulomb_log_at_point_285__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile285)_ 1.79608185080446354e+01 -Electron-alpha_thermal_Coulomb_log_at_point_286__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile286)_ 1.79576033606742591e+01 -Electron-alpha_thermal_Coulomb_log_at_point_287__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile287)_ 1.79543693759929539e+01 -Electron-alpha_thermal_Coulomb_log_at_point_288__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile288)_ 1.79511164566777630e+01 -Electron-alpha_thermal_Coulomb_log_at_point_289__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile289)_ 1.79478445048886392e+01 -Electron-alpha_thermal_Coulomb_log_at_point_290__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile290)_ 1.79445534222750638e+01 -Electron-alpha_thermal_Coulomb_log_at_point_291__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile291)_ 1.79412431099830947e+01 -Electron-alpha_thermal_Coulomb_log_at_point_292__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile292)_ 1.79379134686629733e+01 -Electron-alpha_thermal_Coulomb_log_at_point_293__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile293)_ 1.79345643984771463e+01 -Electron-alpha_thermal_Coulomb_log_at_point_294__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile294)_ 1.79311957991088420e+01 -Electron-alpha_thermal_Coulomb_log_at_point_295__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile295)_ 1.79278075697712076e+01 -Electron-alpha_thermal_Coulomb_log_at_point_296__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile296)_ 1.79243996092169802e+01 -Electron-alpha_thermal_Coulomb_log_at_point_297__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile297)_ 1.79209718157487501e+01 -Electron-alpha_thermal_Coulomb_log_at_point_298__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile298)_ 1.79175240872298716e+01 -Electron-alpha_thermal_Coulomb_log_at_point_299__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile299)_ 1.79140563210959485e+01 -Electron-alpha_thermal_Coulomb_log_at_point_300__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile300)_ 1.79105684143670558e+01 -Electron-alpha_thermal_Coulomb_log_at_point_301__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile301)_ 1.79070602636605791e+01 -Electron-alpha_thermal_Coulomb_log_at_point_302__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile302)_ 1.79035317652048747e+01 -Electron-alpha_thermal_Coulomb_log_at_point_303__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile303)_ 1.78999828148535549e+01 -Electron-alpha_thermal_Coulomb_log_at_point_304__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile304)_ 1.78964133081006658e+01 -Electron-alpha_thermal_Coulomb_log_at_point_305__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile305)_ 1.78928231400966276e+01 -Electron-alpha_thermal_Coulomb_log_at_point_306__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile306)_ 1.78892122056650145e+01 -Electron-alpha_thermal_Coulomb_log_at_point_307__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile307)_ 1.78855803993202471e+01 -Electron-alpha_thermal_Coulomb_log_at_point_308__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile308)_ 1.78819276152861946e+01 -Electron-alpha_thermal_Coulomb_log_at_point_309__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile309)_ 1.78782537475157319e+01 -Electron-alpha_thermal_Coulomb_log_at_point_310__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile310)_ 1.78745586897112823e+01 -Electron-alpha_thermal_Coulomb_log_at_point_311__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile311)_ 1.78708423353464170e+01 -Electron-alpha_thermal_Coulomb_log_at_point_312__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile312)_ 1.78671045776885364e+01 -Electron-alpha_thermal_Coulomb_log_at_point_313__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile313)_ 1.78633453098226518e+01 -Electron-alpha_thermal_Coulomb_log_at_point_314__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile314)_ 1.78595644246763818e+01 -Electron-alpha_thermal_Coulomb_log_at_point_315__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile315)_ 1.78557618150461046e+01 -Electron-alpha_thermal_Coulomb_log_at_point_316__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile316)_ 1.78519373736244589e+01 -Electron-alpha_thermal_Coulomb_log_at_point_317__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile317)_ 1.78480909930291212e+01 -Electron-alpha_thermal_Coulomb_log_at_point_318__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile318)_ 1.78442225658329399e+01 -Electron-alpha_thermal_Coulomb_log_at_point_319__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile319)_ 1.78403319845955615e+01 -Electron-alpha_thermal_Coulomb_log_at_point_320__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile320)_ 1.78364191418965170e+01 -Electron-alpha_thermal_Coulomb_log_at_point_321__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile321)_ 1.78324839303698397e+01 -Electron-alpha_thermal_Coulomb_log_at_point_322__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile322)_ 1.78285262427403666e+01 -Electron-alpha_thermal_Coulomb_log_at_point_323__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile323)_ 1.78245459718616530e+01 -Electron-alpha_thermal_Coulomb_log_at_point_324__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile324)_ 1.78205430107557063e+01 -Electron-alpha_thermal_Coulomb_log_at_point_325__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile325)_ 1.78165172526544957e+01 -Electron-alpha_thermal_Coulomb_log_at_point_326__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile326)_ 1.78124685910433946e+01 -Electron-alpha_thermal_Coulomb_log_at_point_327__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile327)_ 1.78083969197066061e+01 -Electron-alpha_thermal_Coulomb_log_at_point_328__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile328)_ 1.78043021327746303e+01 -Electron-alpha_thermal_Coulomb_log_at_point_329__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile329)_ 1.78001841247739065e+01 -Electron-alpha_thermal_Coulomb_log_at_point_330__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile330)_ 1.77960427906786833e+01 -Electron-alpha_thermal_Coulomb_log_at_point_331__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile331)_ 1.77918780259652216e+01 -Electron-alpha_thermal_Coulomb_log_at_point_332__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile332)_ 1.77876897266684146e+01 -Electron-alpha_thermal_Coulomb_log_at_point_333__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile333)_ 1.77834777894409619e+01 -Electron-alpha_thermal_Coulomb_log_at_point_334__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile334)_ 1.77792421116151544e+01 -Electron-alpha_thermal_Coulomb_log_at_point_335__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile335)_ 1.77749825912674027e+01 -Electron-alpha_thermal_Coulomb_log_at_point_336__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile336)_ 1.77706991272856847e+01 -Electron-alpha_thermal_Coulomb_log_at_point_337__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile337)_ 1.77663916194398617e+01 -Electron-alpha_thermal_Coulomb_log_at_point_338__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile338)_ 1.77620599684551799e+01 -Electron-alpha_thermal_Coulomb_log_at_point_339__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile339)_ 1.77577040760890092e+01 -Electron-alpha_thermal_Coulomb_log_at_point_340__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile340)_ 1.77533238452108826e+01 -Electron-alpha_thermal_Coulomb_log_at_point_341__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile341)_ 1.77489191798861192e+01 -Electron-alpha_thermal_Coulomb_log_at_point_342__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile342)_ 1.77444899854630442e+01 -Electron-alpha_thermal_Coulomb_log_at_point_343__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile343)_ 1.77400361686640800e+01 -Electron-alpha_thermal_Coulomb_log_at_point_344__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile344)_ 1.77355576376807349e+01 -Electron-alpha_thermal_Coulomb_log_at_point_345__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile345)_ 1.77310543022728346e+01 -Electron-alpha_thermal_Coulomb_log_at_point_346__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile346)_ 1.77265260738719164e+01 -Electron-alpha_thermal_Coulomb_log_at_point_347__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile347)_ 1.77219728656893238e+01 -Electron-alpha_thermal_Coulomb_log_at_point_348__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile348)_ 1.77173945928287608e+01 -Electron-alpha_thermal_Coulomb_log_at_point_349__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile349)_ 1.77127911724039500e+01 -Electron-alpha_thermal_Coulomb_log_at_point_350__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile350)_ 1.77081625236612155e+01 -Electron-alpha_thermal_Coulomb_log_at_point_351__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile351)_ 1.77035085681074804e+01 -Electron-alpha_thermal_Coulomb_log_at_point_352__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile352)_ 1.76988292296437777e+01 -Electron-alpha_thermal_Coulomb_log_at_point_353__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile353)_ 1.76941244347045092e+01 -Electron-alpha_thermal_Coulomb_log_at_point_354__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile354)_ 1.76893941124027698e+01 -Electron-alpha_thermal_Coulomb_log_at_point_355__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile355)_ 1.76846381946819555e+01 -Electron-alpha_thermal_Coulomb_log_at_point_356__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile356)_ 1.76798566164738737e+01 -Electron-alpha_thermal_Coulomb_log_at_point_357__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile357)_ 1.76750493158637525e+01 -Electron-alpha_thermal_Coulomb_log_at_point_358__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile358)_ 1.76702162342623623e+01 -Electron-alpha_thermal_Coulomb_log_at_point_359__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile359)_ 1.76653573165855882e+01 -Electron-alpha_thermal_Coulomb_log_at_point_360__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile360)_ 1.76604725114417143e+01 -Electron-alpha_thermal_Coulomb_log_at_point_361__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile361)_ 1.76555617713269086e+01 -Electron-alpha_thermal_Coulomb_log_at_point_362__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile362)_ 1.76506250528290956e+01 -Electron-alpha_thermal_Coulomb_log_at_point_363__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile363)_ 1.76456623168406708e+01 -Electron-alpha_thermal_Coulomb_log_at_point_364__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile364)_ 1.76406735287804750e+01 -Electron-alpha_thermal_Coulomb_log_at_point_365__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile365)_ 1.76356586588253101e+01 -Electron-alpha_thermal_Coulomb_log_at_point_366__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile366)_ 1.76306176821515947e+01 -Electron-alpha_thermal_Coulomb_log_at_point_367__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile367)_ 1.76255505791874327e+01 -Electron-alpha_thermal_Coulomb_log_at_point_368__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile368)_ 1.76204573358756988e+01 -Electron-alpha_thermal_Coulomb_log_at_point_369__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile369)_ 1.76153379439485107e+01 -Electron-alpha_thermal_Coulomb_log_at_point_370__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile370)_ 1.76101924012137374e+01 -Electron-alpha_thermal_Coulomb_log_at_point_371__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile371)_ 1.76050207118539248e+01 -Electron-alpha_thermal_Coulomb_log_at_point_372__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile372)_ 1.75998228867382558e+01 -Electron-alpha_thermal_Coulomb_log_at_point_373__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile373)_ 1.75945989437482702e+01 -Electron-alpha_thermal_Coulomb_log_at_point_374__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile374)_ 1.75893489081177101e+01 -Electron-alpha_thermal_Coulomb_log_at_point_375__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile375)_ 1.75840728127873192e+01 -Electron-alpha_thermal_Coulomb_log_at_point_376__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile376)_ 1.75787706987752657e+01 -Electron-alpha_thermal_Coulomb_log_at_point_377__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile377)_ 1.75734426155637422e+01 -Electron-alpha_thermal_Coulomb_log_at_point_378__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile378)_ 1.75680886215027137e+01 -Electron-alpha_thermal_Coulomb_log_at_point_379__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile379)_ 1.75627087842314644e+01 -Electron-alpha_thermal_Coulomb_log_at_point_380__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile380)_ 1.75573031811187263e+01 -Electron-alpha_thermal_Coulomb_log_at_point_381__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile381)_ 1.75518718997223679e+01 -Electron-alpha_thermal_Coulomb_log_at_point_382__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile382)_ 1.75464150382695081e+01 -Electron-alpha_thermal_Coulomb_log_at_point_383__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile383)_ 1.75409327061579852e+01 -Electron-alpha_thermal_Coulomb_log_at_point_384__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile384)_ 1.75354250244801655e+01 -Electron-alpha_thermal_Coulomb_log_at_point_385__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile385)_ 1.75298921265702461e+01 -Electron-alpha_thermal_Coulomb_log_at_point_386__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile386)_ 1.75243341585760390e+01 -Electron-alpha_thermal_Coulomb_log_at_point_387__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile387)_ 1.75187512800565308e+01 -Electron-alpha_thermal_Coulomb_log_at_point_388__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile388)_ 1.75131436646063037e+01 -Electron-alpha_thermal_Coulomb_log_at_point_389__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile389)_ 1.75075115005082438e+01 -Electron-alpha_thermal_Coulomb_log_at_point_390__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile390)_ 1.75018549914158577e+01 -Electron-alpha_thermal_Coulomb_log_at_point_391__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile391)_ 1.74961743570666179e+01 -Electron-alpha_thermal_Coulomb_log_at_point_392__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile392)_ 1.74904698340278379e+01 -Electron-alpha_thermal_Coulomb_log_at_point_393__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile393)_ 1.74847416764768013e+01 -Electron-alpha_thermal_Coulomb_log_at_point_394__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile394)_ 1.74789901570166784e+01 -Electron-alpha_thermal_Coulomb_log_at_point_395__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile395)_ 1.74732155675301186e+01 -Electron-alpha_thermal_Coulomb_log_at_point_396__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile396)_ 1.74674182200724495e+01 -Electron-alpha_thermal_Coulomb_log_at_point_397__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile397)_ 1.74615984478063169e+01 -Electron-alpha_thermal_Coulomb_log_at_point_398__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile398)_ 1.74557566059800990e+01 -Electron-alpha_thermal_Coulomb_log_at_point_399__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile399)_ 1.74498930729521931e+01 -Electron-alpha_thermal_Coulomb_log_at_point_400__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile400)_ 1.74440082512636323e+01 -Electron-alpha_thermal_Coulomb_log_at_point_401__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile401)_ 1.74381025687615221e+01 -Electron-alpha_thermal_Coulomb_log_at_point_402__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile402)_ 1.74321764797760075e+01 -Electron-alpha_thermal_Coulomb_log_at_point_403__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile403)_ 1.74262304663536263e+01 -Electron-alpha_thermal_Coulomb_log_at_point_404__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile404)_ 1.74202650395500740e+01 -Electron-alpha_thermal_Coulomb_log_at_point_405__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile405)_ 1.74142807407856530e+01 -Electron-alpha_thermal_Coulomb_log_at_point_406__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile406)_ 1.74082781432668128e+01 -Electron-alpha_thermal_Coulomb_log_at_point_407__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile407)_ 1.74022578534775221e+01 -Electron-alpha_thermal_Coulomb_log_at_point_408__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile408)_ 1.73962205127443852e+01 -Electron-alpha_thermal_Coulomb_log_at_point_409__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile409)_ 1.73901667988796866e+01 -Electron-alpha_thermal_Coulomb_log_at_point_410__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile410)_ 1.73840974279070366e+01 -Electron-alpha_thermal_Coulomb_log_at_point_411__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile411)_ 1.73780131558742781e+01 -Electron-alpha_thermal_Coulomb_log_at_point_412__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile412)_ 1.73719147807590097e+01 -Electron-alpha_thermal_Coulomb_log_at_point_413__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile413)_ 1.73658031444722951e+01 -Electron-alpha_thermal_Coulomb_log_at_point_414__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile414)_ 1.73596791349666439e+01 -Electron-alpha_thermal_Coulomb_log_at_point_415__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile415)_ 1.73535436884548702e+01 -Electron-alpha_thermal_Coulomb_log_at_point_416__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile416)_ 1.73473977917467366e+01 -Electron-alpha_thermal_Coulomb_log_at_point_417__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile417)_ 1.73412424847113229e+01 -Electron-alpha_thermal_Coulomb_log_at_point_418__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile418)_ 1.73350788628733277e+01 -Electron-alpha_thermal_Coulomb_log_at_point_419__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile419)_ 1.73289080801524236e+01 -Electron-alpha_thermal_Coulomb_log_at_point_420__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile420)_ 1.73227313517557207e+01 -Electron-alpha_thermal_Coulomb_log_at_point_421__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile421)_ 1.73165499572340877e+01 -Electron-alpha_thermal_Coulomb_log_at_point_422__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile422)_ 1.73103652437143190e+01 -Electron-alpha_thermal_Coulomb_log_at_point_423__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile423)_ 1.73041786293204041e+01 -Electron-alpha_thermal_Coulomb_log_at_point_424__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile424)_ 1.72979916067982238e+01 -Electron-alpha_thermal_Coulomb_log_at_point_425__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile425)_ 1.72918057473597599e+01 -Electron-alpha_thermal_Coulomb_log_at_point_426__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile426)_ 1.72856227047647195e+01 -Electron-alpha_thermal_Coulomb_log_at_point_427__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile427)_ 1.72794442196591724e+01 -Electron-alpha_thermal_Coulomb_log_at_point_428__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile428)_ 1.72732721241935288e+01 -Electron-alpha_thermal_Coulomb_log_at_point_429__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile429)_ 1.72671083469444291e+01 -Electron-alpha_thermal_Coulomb_log_at_point_430__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile430)_ 1.72609549181685082e+01 -Electron-alpha_thermal_Coulomb_log_at_point_431__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile431)_ 1.72548139754194061e+01 -Electron-alpha_thermal_Coulomb_log_at_point_432__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile432)_ 1.72486877695636345e+01 -Electron-alpha_thermal_Coulomb_log_at_point_433__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile433)_ 1.72425786712356768e+01 -Electron-alpha_thermal_Coulomb_log_at_point_434__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile434)_ 1.72364891777786298e+01 -Electron-alpha_thermal_Coulomb_log_at_point_435__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile435)_ 1.72304219207231561e+01 -Electron-alpha_thermal_Coulomb_log_at_point_436__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile436)_ 1.72243796738659114e+01 -Electron-alpha_thermal_Coulomb_log_at_point_437__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile437)_ 1.72183653620177850e+01 -Electron-alpha_thermal_Coulomb_log_at_point_438__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile438)_ 1.72123820705040416e+01 -Electron-alpha_thermal_Coulomb_log_at_point_439__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile439)_ 1.72064330555120684e+01 -Electron-alpha_thermal_Coulomb_log_at_point_440__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile440)_ 1.72005217553990626e+01 -Electron-alpha_thermal_Coulomb_log_at_point_441__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile441)_ 1.71946518030925830e+01 -Electron-alpha_thermal_Coulomb_log_at_point_442__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile442)_ 1.71888270397413017e+01 -Electron-alpha_thermal_Coulomb_log_at_point_443__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile443)_ 1.71830515298044162e+01 -Electron-alpha_thermal_Coulomb_log_at_point_444__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile444)_ 1.71773295778058532e+01 -Electron-alpha_thermal_Coulomb_log_at_point_445__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile445)_ 1.71716657470273191e+01 -Electron-alpha_thermal_Coulomb_log_at_point_446__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile446)_ 1.71660648804740106e+01 -Electron-alpha_thermal_Coulomb_log_at_point_447__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile447)_ 1.71605321245231828e+01 -Electron-alpha_thermal_Coulomb_log_at_point_448__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile448)_ 1.71550729557636217e+01 -Electron-alpha_thermal_Coulomb_log_at_point_449__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile449)_ 1.71496932116606686e+01 -Electron-alpha_thermal_Coulomb_log_at_point_450__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile450)_ 1.71443991258477020e+01 -Electron-alpha_thermal_Coulomb_log_at_point_451__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile451)_ 1.71391973690643624e+01 -Electron-alpha_thermal_Coulomb_log_at_point_452__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile452)_ 1.71340950970571839e+01 -Electron-alpha_thermal_Coulomb_log_at_point_453__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile453)_ 1.71291000071591668e+01 -Electron-alpha_thermal_Coulomb_log_at_point_454__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile454)_ 1.71242204058187539e+01 -Electron-alpha_thermal_Coulomb_log_at_point_455__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile455)_ 1.71194652901275930e+01 -Electron-alpha_thermal_Coulomb_log_at_point_456__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile456)_ 1.71148444475103574e+01 -Electron-alpha_thermal_Coulomb_log_at_point_457__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile457)_ 1.71103685793699825e+01 -Electron-alpha_thermal_Coulomb_log_at_point_458__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile458)_ 1.71060494569221753e+01 -Electron-alpha_thermal_Coulomb_log_at_point_459__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile459)_ 1.71019001212095247e+01 -Electron-alpha_thermal_Coulomb_log_at_point_460__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile460)_ 1.70979351452499309e+01 -Electron-alpha_thermal_Coulomb_log_at_point_461__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile461)_ 1.70941709860950013e+01 -Electron-alpha_thermal_Coulomb_log_at_point_462__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile462)_ 1.70906264714495464e+01 -Electron-alpha_thermal_Coulomb_log_at_point_463__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile463)_ 1.70873234960213054e+01 -Electron-alpha_thermal_Coulomb_log_at_point_464__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile464)_ 1.70842880615000041e+01 -Electron-alpha_thermal_Coulomb_log_at_point_465__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile465)_ 1.70815519162326623e+01 -Electron-alpha_thermal_Coulomb_log_at_point_466__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile466)_ 1.70791553316697033e+01 -Electron-alpha_thermal_Coulomb_log_at_point_467__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile467)_ 1.70771522934384343e+01 -Electron-alpha_thermal_Coulomb_log_at_point_468__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile468)_ 1.70756217681636890e+01 -Electron-alpha_thermal_Coulomb_log_at_point_469__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile469)_ 1.70746994283426616e+01 -Electron-alpha_thermal_Coulomb_log_at_point_470__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile470)_ 1.70747722584430122e+01 -Electron-alpha_thermal_Coulomb_log_at_point_471__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile471)_ 1.70486686729037231e+01 -Electron-alpha_thermal_Coulomb_log_at_point_472__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile472)_ 1.70215166024323103e+01 -Electron-alpha_thermal_Coulomb_log_at_point_473__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile473)_ 1.69932371203255670e+01 -Electron-alpha_thermal_Coulomb_log_at_point_474__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile474)_ 1.69637423581529738e+01 -Electron-alpha_thermal_Coulomb_log_at_point_475__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile475)_ 1.69329341209312751e+01 -Electron-alpha_thermal_Coulomb_log_at_point_476__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile476)_ 1.69007022248725143e+01 -Electron-alpha_thermal_Coulomb_log_at_point_477__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile477)_ 1.68669224883647608e+01 -Electron-alpha_thermal_Coulomb_log_at_point_478__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile478)_ 1.68314542857587846e+01 -Electron-alpha_thermal_Coulomb_log_at_point_479__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile479)_ 1.67941375447898693e+01 -Electron-alpha_thermal_Coulomb_log_at_point_480__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile480)_ 1.67547890287802304e+01 -Electron-alpha_thermal_Coulomb_log_at_point_481__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile481)_ 1.67131976892288456e+01 -Electron-alpha_thermal_Coulomb_log_at_point_482__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile482)_ 1.66691187954972264e+01 -Electron-alpha_thermal_Coulomb_log_at_point_483__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile483)_ 1.66222664343739304e+01 -Electron-alpha_thermal_Coulomb_log_at_point_484__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile484)_ 1.65723038048215692e+01 -Electron-alpha_thermal_Coulomb_log_at_point_485__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile485)_ 1.65188304820801619e+01 -Electron-alpha_thermal_Coulomb_log_at_point_486__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile486)_ 1.64613654403672882e+01 -Electron-alpha_thermal_Coulomb_log_at_point_487__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile487)_ 1.63993240187247373e+01 -Electron-alpha_thermal_Coulomb_log_at_point_488__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile488)_ 1.63319860380507400e+01 -Electron-alpha_thermal_Coulomb_log_at_point_489__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile489)_ 1.62584506502507971e+01 -Electron-alpha_thermal_Coulomb_log_at_point_490__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile490)_ 1.61775706904499934e+01 -Electron-alpha_thermal_Coulomb_log_at_point_491__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile491)_ 1.60878542453397593e+01 -Electron-alpha_thermal_Coulomb_log_at_point_492__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile492)_ 1.59873115949924482e+01 -Electron-alpha_thermal_Coulomb_log_at_point_493__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile493)_ 1.58732065628629488e+01 -Electron-alpha_thermal_Coulomb_log_at_point_494__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile494)_ 1.57416302823440830e+01 -Electron-alpha_thermal_Coulomb_log_at_point_495__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile495)_ 1.55867194427067037e+01 -Electron-alpha_thermal_Coulomb_log_at_point_496__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile496)_ 1.53990905700457166e+01 -Electron-alpha_thermal_Coulomb_log_at_point_497__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile497)_ 1.51623043613133444e+01 -Electron-alpha_thermal_Coulomb_log_at_point_498__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile498)_ 1.48433505638830034e+01 -Electron-alpha_thermal_Coulomb_log_at_point_499__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile499)_ 1.43584502259248783e+01 -Electron-alpha_thermal_Coulomb_log_at_point_500__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile500)_ 1.29515958626762746e+01 -Volume_averaged_electron-electron_collision_time_(τₑₑ)_(s)_______________ (t_plasma_electron_electron_collision_vol_avg)_ 6.93530117822094673e-04 OP -Electron-electron_collision_time_at_point_0______________________________ (t_plasma_electron_electron_collision_profile0)_ 1.52359441383684052e-03 -Electron-electron_collision_time_at_point_1______________________________ (t_plasma_electron_electron_collision_profile1)_ 1.52358568244914086e-03 -Electron-electron_collision_time_at_point_2______________________________ (t_plasma_electron_electron_collision_profile2)_ 1.52355948840050760e-03 -Electron-electron_collision_time_at_point_3______________________________ (t_plasma_electron_electron_collision_profile3)_ 1.52351583203434314e-03 -Electron-electron_collision_time_at_point_4______________________________ (t_plasma_electron_electron_collision_profile4)_ 1.52345471392299823e-03 -Electron-electron_collision_time_at_point_5______________________________ (t_plasma_electron_electron_collision_profile5)_ 1.52337613486779348e-03 -Electron-electron_collision_time_at_point_6______________________________ (t_plasma_electron_electron_collision_profile6)_ 1.52328009589904707e-03 -Electron-electron_collision_time_at_point_7______________________________ (t_plasma_electron_electron_collision_profile7)_ 1.52316659827611491e-03 -Electron-electron_collision_time_at_point_8______________________________ (t_plasma_electron_electron_collision_profile8)_ 1.52303564348743310e-03 -Electron-electron_collision_time_at_point_9______________________________ (t_plasma_electron_electron_collision_profile9)_ 1.52288723325057630e-03 -Electron-electron_collision_time_at_point_10_____________________________ (t_plasma_electron_electron_collision_profile10)_ 1.52272136951231646e-03 -Electron-electron_collision_time_at_point_11_____________________________ (t_plasma_electron_electron_collision_profile11)_ 1.52253805444869657e-03 -Electron-electron_collision_time_at_point_12_____________________________ (t_plasma_electron_electron_collision_profile12)_ 1.52233729046510739e-03 -Electron-electron_collision_time_at_point_13_____________________________ (t_plasma_electron_electron_collision_profile13)_ 1.52211908019637921e-03 -Electron-electron_collision_time_at_point_14_____________________________ (t_plasma_electron_electron_collision_profile14)_ 1.52188342650687162e-03 -Electron-electron_collision_time_at_point_15_____________________________ (t_plasma_electron_electron_collision_profile15)_ 1.52163033249058427e-03 -Electron-electron_collision_time_at_point_16_____________________________ (t_plasma_electron_electron_collision_profile16)_ 1.52135980147126686e-03 -Electron-electron_collision_time_at_point_17_____________________________ (t_plasma_electron_electron_collision_profile17)_ 1.52107183700253882e-03 -Electron-electron_collision_time_at_point_18_____________________________ (t_plasma_electron_electron_collision_profile18)_ 1.52076644286802351e-03 -Electron-electron_collision_time_at_point_19_____________________________ (t_plasma_electron_electron_collision_profile19)_ 1.52044362308148225e-03 -Electron-electron_collision_time_at_point_20_____________________________ (t_plasma_electron_electron_collision_profile20)_ 1.52010338188696050e-03 -Electron-electron_collision_time_at_point_21_____________________________ (t_plasma_electron_electron_collision_profile21)_ 1.51974572375894825e-03 -Electron-electron_collision_time_at_point_22_____________________________ (t_plasma_electron_electron_collision_profile22)_ 1.51937065340253599e-03 -Electron-electron_collision_time_at_point_23_____________________________ (t_plasma_electron_electron_collision_profile23)_ 1.51897817575359162e-03 -Electron-electron_collision_time_at_point_24_____________________________ (t_plasma_electron_electron_collision_profile24)_ 1.51856829597894131e-03 -Electron-electron_collision_time_at_point_25_____________________________ (t_plasma_electron_electron_collision_profile25)_ 1.51814101947655468e-03 -Electron-electron_collision_time_at_point_26_____________________________ (t_plasma_electron_electron_collision_profile26)_ 1.51769635187574319e-03 -Electron-electron_collision_time_at_point_27_____________________________ (t_plasma_electron_electron_collision_profile27)_ 1.51723429903737029e-03 -Electron-electron_collision_time_at_point_28_____________________________ (t_plasma_electron_electron_collision_profile28)_ 1.51675486705405869e-03 -Electron-electron_collision_time_at_point_29_____________________________ (t_plasma_electron_electron_collision_profile29)_ 1.51625806225042133e-03 -Electron-electron_collision_time_at_point_30_____________________________ (t_plasma_electron_electron_collision_profile30)_ 1.51574389118328489e-03 -Electron-electron_collision_time_at_point_31_____________________________ (t_plasma_electron_electron_collision_profile31)_ 1.51521236064193639e-03 -Electron-electron_collision_time_at_point_32_____________________________ (t_plasma_electron_electron_collision_profile32)_ 1.51466347764836928e-03 -Electron-electron_collision_time_at_point_33_____________________________ (t_plasma_electron_electron_collision_profile33)_ 1.51409724945754148e-03 -Electron-electron_collision_time_at_point_34_____________________________ (t_plasma_electron_electron_collision_profile34)_ 1.51351368355764058e-03 -Electron-electron_collision_time_at_point_35_____________________________ (t_plasma_electron_electron_collision_profile35)_ 1.51291278767035965e-03 -Electron-electron_collision_time_at_point_36_____________________________ (t_plasma_electron_electron_collision_profile36)_ 1.51229456975117958e-03 -Electron-electron_collision_time_at_point_37_____________________________ (t_plasma_electron_electron_collision_profile37)_ 1.51165903798966355e-03 -Electron-electron_collision_time_at_point_38_____________________________ (t_plasma_electron_electron_collision_profile38)_ 1.51100620080975561e-03 -Electron-electron_collision_time_at_point_39_____________________________ (t_plasma_electron_electron_collision_profile39)_ 1.51033606687009099e-03 -Electron-electron_collision_time_at_point_40_____________________________ (t_plasma_electron_electron_collision_profile40)_ 1.50964864506431527e-03 -Electron-electron_collision_time_at_point_41_____________________________ (t_plasma_electron_electron_collision_profile41)_ 1.50894394452141117e-03 -Electron-electron_collision_time_at_point_42_____________________________ (t_plasma_electron_electron_collision_profile42)_ 1.50822197460603489e-03 -Electron-electron_collision_time_at_point_43_____________________________ (t_plasma_electron_electron_collision_profile43)_ 1.50748274491886041e-03 -Electron-electron_collision_time_at_point_44_____________________________ (t_plasma_electron_electron_collision_profile44)_ 1.50672626529693623e-03 -Electron-electron_collision_time_at_point_45_____________________________ (t_plasma_electron_electron_collision_profile45)_ 1.50595254581404291e-03 -Electron-electron_collision_time_at_point_46_____________________________ (t_plasma_electron_electron_collision_profile46)_ 1.50516159678106974e-03 -Electron-electron_collision_time_at_point_47_____________________________ (t_plasma_electron_electron_collision_profile47)_ 1.50435342874639401e-03 -Electron-electron_collision_time_at_point_48_____________________________ (t_plasma_electron_electron_collision_profile48)_ 1.50352805249627020e-03 -Electron-electron_collision_time_at_point_49_____________________________ (t_plasma_electron_electron_collision_profile49)_ 1.50268547905522899e-03 -Electron-electron_collision_time_at_point_50_____________________________ (t_plasma_electron_electron_collision_profile50)_ 1.50182571968648579e-03 -Electron-electron_collision_time_at_point_51_____________________________ (t_plasma_electron_electron_collision_profile51)_ 1.50094878589235661e-03 -Electron-electron_collision_time_at_point_52_____________________________ (t_plasma_electron_electron_collision_profile52)_ 1.50005468941468508e-03 -Electron-electron_collision_time_at_point_53_____________________________ (t_plasma_electron_electron_collision_profile53)_ 1.49914344223527887e-03 -Electron-electron_collision_time_at_point_54_____________________________ (t_plasma_electron_electron_collision_profile54)_ 1.49821505657635212e-03 -Electron-electron_collision_time_at_point_55_____________________________ (t_plasma_electron_electron_collision_profile55)_ 1.49726954490097945e-03 -Electron-electron_collision_time_at_point_56_____________________________ (t_plasma_electron_electron_collision_profile56)_ 1.49630691991356024e-03 -Electron-electron_collision_time_at_point_57_____________________________ (t_plasma_electron_electron_collision_profile57)_ 1.49532719456028983e-03 -Electron-electron_collision_time_at_point_58_____________________________ (t_plasma_electron_electron_collision_profile58)_ 1.49433038202964456e-03 -Electron-electron_collision_time_at_point_59_____________________________ (t_plasma_electron_electron_collision_profile59)_ 1.49331649575286667e-03 -Electron-electron_collision_time_at_point_60_____________________________ (t_plasma_electron_electron_collision_profile60)_ 1.49228554940447015e-03 -Electron-electron_collision_time_at_point_61_____________________________ (t_plasma_electron_electron_collision_profile61)_ 1.49123755690274903e-03 -Electron-electron_collision_time_at_point_62_____________________________ (t_plasma_electron_electron_collision_profile62)_ 1.49017253241029608e-03 -Electron-electron_collision_time_at_point_63_____________________________ (t_plasma_electron_electron_collision_profile63)_ 1.48909049033453447e-03 -Electron-electron_collision_time_at_point_64_____________________________ (t_plasma_electron_electron_collision_profile64)_ 1.48799144532825250e-03 -Electron-electron_collision_time_at_point_65_____________________________ (t_plasma_electron_electron_collision_profile65)_ 1.48687541229015636e-03 -Electron-electron_collision_time_at_point_66_____________________________ (t_plasma_electron_electron_collision_profile66)_ 1.48574240636542543e-03 -Electron-electron_collision_time_at_point_67_____________________________ (t_plasma_electron_electron_collision_profile67)_ 1.48459244294627955e-03 -Electron-electron_collision_time_at_point_68_____________________________ (t_plasma_electron_electron_collision_profile68)_ 1.48342553767255776e-03 -Electron-electron_collision_time_at_point_69_____________________________ (t_plasma_electron_electron_collision_profile69)_ 1.48224170643230721e-03 -Electron-electron_collision_time_at_point_70_____________________________ (t_plasma_electron_electron_collision_profile70)_ 1.48104096536237758e-03 -Electron-electron_collision_time_at_point_71_____________________________ (t_plasma_electron_electron_collision_profile71)_ 1.47982333084902928e-03 -Electron-electron_collision_time_at_point_72_____________________________ (t_plasma_electron_electron_collision_profile72)_ 1.47858881952855057e-03 -Electron-electron_collision_time_at_point_73_____________________________ (t_plasma_electron_electron_collision_profile73)_ 1.47733744828788620e-03 -Electron-electron_collision_time_at_point_74_____________________________ (t_plasma_electron_electron_collision_profile74)_ 1.47606923426527232e-03 -Electron-electron_collision_time_at_point_75_____________________________ (t_plasma_electron_electron_collision_profile75)_ 1.47478419485088308e-03 -Electron-electron_collision_time_at_point_76_____________________________ (t_plasma_electron_electron_collision_profile76)_ 1.47348234768749330e-03 -Electron-electron_collision_time_at_point_77_____________________________ (t_plasma_electron_electron_collision_profile77)_ 1.47216371067113920e-03 -Electron-electron_collision_time_at_point_78_____________________________ (t_plasma_electron_electron_collision_profile78)_ 1.47082830195180208e-03 -Electron-electron_collision_time_at_point_79_____________________________ (t_plasma_electron_electron_collision_profile79)_ 1.46947613993409464e-03 -Electron-electron_collision_time_at_point_80_____________________________ (t_plasma_electron_electron_collision_profile80)_ 1.46810724327795894e-03 -Electron-electron_collision_time_at_point_81_____________________________ (t_plasma_electron_electron_collision_profile81)_ 1.46672163089937510e-03 -Electron-electron_collision_time_at_point_82_____________________________ (t_plasma_electron_electron_collision_profile82)_ 1.46531932197108399e-03 -Electron-electron_collision_time_at_point_83_____________________________ (t_plasma_electron_electron_collision_profile83)_ 1.46390033592331431e-03 -Electron-electron_collision_time_at_point_84_____________________________ (t_plasma_electron_electron_collision_profile84)_ 1.46246469244452719e-03 -Electron-electron_collision_time_at_point_85_____________________________ (t_plasma_electron_electron_collision_profile85)_ 1.46101241148216369e-03 -Electron-electron_collision_time_at_point_86_____________________________ (t_plasma_electron_electron_collision_profile86)_ 1.45954351324340892e-03 -Electron-electron_collision_time_at_point_87_____________________________ (t_plasma_electron_electron_collision_profile87)_ 1.45805801819596549e-03 -Electron-electron_collision_time_at_point_88_____________________________ (t_plasma_electron_electron_collision_profile88)_ 1.45655594706883764e-03 -Electron-electron_collision_time_at_point_89_____________________________ (t_plasma_electron_electron_collision_profile89)_ 1.45503732085312657e-03 -Electron-electron_collision_time_at_point_90_____________________________ (t_plasma_electron_electron_collision_profile90)_ 1.45350216080283499e-03 -Electron-electron_collision_time_at_point_91_____________________________ (t_plasma_electron_electron_collision_profile91)_ 1.45195048843568494e-03 -Electron-electron_collision_time_at_point_92_____________________________ (t_plasma_electron_electron_collision_profile92)_ 1.45038232553394643e-03 -Electron-electron_collision_time_at_point_93_____________________________ (t_plasma_electron_electron_collision_profile93)_ 1.44879769414527700e-03 -Electron-electron_collision_time_at_point_94_____________________________ (t_plasma_electron_electron_collision_profile94)_ 1.44719661658357130e-03 -Electron-electron_collision_time_at_point_95_____________________________ (t_plasma_electron_electron_collision_profile95)_ 1.44557911542982477e-03 -Electron-electron_collision_time_at_point_96_____________________________ (t_plasma_electron_electron_collision_profile96)_ 1.44394521353300581e-03 -Electron-electron_collision_time_at_point_97_____________________________ (t_plasma_electron_electron_collision_profile97)_ 1.44229493401094150e-03 -Electron-electron_collision_time_at_point_98_____________________________ (t_plasma_electron_electron_collision_profile98)_ 1.44062830025121322e-03 -Electron-electron_collision_time_at_point_99_____________________________ (t_plasma_electron_electron_collision_profile99)_ 1.43894533591206841e-03 -Electron-electron_collision_time_at_point_100____________________________ (t_plasma_electron_electron_collision_profile100)_ 1.43724606492333438e-03 -Electron-electron_collision_time_at_point_101____________________________ (t_plasma_electron_electron_collision_profile101)_ 1.43553051148735678e-03 -Electron-electron_collision_time_at_point_102____________________________ (t_plasma_electron_electron_collision_profile102)_ 1.43379870007993631e-03 -Electron-electron_collision_time_at_point_103____________________________ (t_plasma_electron_electron_collision_profile103)_ 1.43205065545129267e-03 -Electron-electron_collision_time_at_point_104____________________________ (t_plasma_electron_electron_collision_profile104)_ 1.43028640262702483e-03 -Electron-electron_collision_time_at_point_105____________________________ (t_plasma_electron_electron_collision_profile105)_ 1.42850596690909451e-03 -Electron-electron_collision_time_at_point_106____________________________ (t_plasma_electron_electron_collision_profile106)_ 1.42670937387681792e-03 -Electron-electron_collision_time_at_point_107____________________________ (t_plasma_electron_electron_collision_profile107)_ 1.42489664938786850e-03 -Electron-electron_collision_time_at_point_108____________________________ (t_plasma_electron_electron_collision_profile108)_ 1.42306781957929709e-03 -Electron-electron_collision_time_at_point_109____________________________ (t_plasma_electron_electron_collision_profile109)_ 1.42122291086855613e-03 -Electron-electron_collision_time_at_point_110____________________________ (t_plasma_electron_electron_collision_profile110)_ 1.41936194995454608e-03 -Electron-electron_collision_time_at_point_111____________________________ (t_plasma_electron_electron_collision_profile111)_ 1.41748496381866626e-03 -Electron-electron_collision_time_at_point_112____________________________ (t_plasma_electron_electron_collision_profile112)_ 1.41559197972588712e-03 -Electron-electron_collision_time_at_point_113____________________________ (t_plasma_electron_electron_collision_profile113)_ 1.41368302522582251e-03 -Electron-electron_collision_time_at_point_114____________________________ (t_plasma_electron_electron_collision_profile114)_ 1.41175812815382863e-03 -Electron-electron_collision_time_at_point_115____________________________ (t_plasma_electron_electron_collision_profile115)_ 1.40981731663210970e-03 -Electron-electron_collision_time_at_point_116____________________________ (t_plasma_electron_electron_collision_profile116)_ 1.40786061907083250e-03 -Electron-electron_collision_time_at_point_117____________________________ (t_plasma_electron_electron_collision_profile117)_ 1.40588806416926484e-03 -Electron-electron_collision_time_at_point_118____________________________ (t_plasma_electron_electron_collision_profile118)_ 1.40389968091691542e-03 -Electron-electron_collision_time_at_point_119____________________________ (t_plasma_electron_electron_collision_profile119)_ 1.40189549859469570e-03 -Electron-electron_collision_time_at_point_120____________________________ (t_plasma_electron_electron_collision_profile120)_ 1.39987554677609410e-03 -Electron-electron_collision_time_at_point_121____________________________ (t_plasma_electron_electron_collision_profile121)_ 1.39783985532835752e-03 -Electron-electron_collision_time_at_point_122____________________________ (t_plasma_electron_electron_collision_profile122)_ 1.39578845441369614e-03 -Electron-electron_collision_time_at_point_123____________________________ (t_plasma_electron_electron_collision_profile123)_ 1.39372137449049233e-03 -Electron-electron_collision_time_at_point_124____________________________ (t_plasma_electron_electron_collision_profile124)_ 1.39163864631453352e-03 -Electron-electron_collision_time_at_point_125____________________________ (t_plasma_electron_electron_collision_profile125)_ 1.38954030094024916e-03 -Electron-electron_collision_time_at_point_126____________________________ (t_plasma_electron_electron_collision_profile126)_ 1.38742636972196895e-03 -Electron-electron_collision_time_at_point_127____________________________ (t_plasma_electron_electron_collision_profile127)_ 1.38529688431519209e-03 -Electron-electron_collision_time_at_point_128____________________________ (t_plasma_electron_electron_collision_profile128)_ 1.38315187667787374e-03 -Electron-electron_collision_time_at_point_129____________________________ (t_plasma_electron_electron_collision_profile129)_ 1.38099137907172131e-03 -Electron-electron_collision_time_at_point_130____________________________ (t_plasma_electron_electron_collision_profile130)_ 1.37881542406350873e-03 -Electron-electron_collision_time_at_point_131____________________________ (t_plasma_electron_electron_collision_profile131)_ 1.37662404452640655e-03 -Electron-electron_collision_time_at_point_132____________________________ (t_plasma_electron_electron_collision_profile132)_ 1.37441727364132353e-03 -Electron-electron_collision_time_at_point_133____________________________ (t_plasma_electron_electron_collision_profile133)_ 1.37219514489826449e-03 -Electron-electron_collision_time_at_point_134____________________________ (t_plasma_electron_electron_collision_profile134)_ 1.36995769209770444e-03 -Electron-electron_collision_time_at_point_135____________________________ (t_plasma_electron_electron_collision_profile135)_ 1.36770494935197764e-03 -Electron-electron_collision_time_at_point_136____________________________ (t_plasma_electron_electron_collision_profile136)_ 1.36543695108667972e-03 -Electron-electron_collision_time_at_point_137____________________________ (t_plasma_electron_electron_collision_profile137)_ 1.36315373204208860e-03 -Electron-electron_collision_time_at_point_138____________________________ (t_plasma_electron_electron_collision_profile138)_ 1.36085532727459870e-03 -Electron-electron_collision_time_at_point_139____________________________ (t_plasma_electron_electron_collision_profile139)_ 1.35854177215817117e-03 -Electron-electron_collision_time_at_point_140____________________________ (t_plasma_electron_electron_collision_profile140)_ 1.35621310238580079e-03 -Electron-electron_collision_time_at_point_141____________________________ (t_plasma_electron_electron_collision_profile141)_ 1.35386935397099851e-03 -Electron-electron_collision_time_at_point_142____________________________ (t_plasma_electron_electron_collision_profile142)_ 1.35151056324929139e-03 -Electron-electron_collision_time_at_point_143____________________________ (t_plasma_electron_electron_collision_profile143)_ 1.34913676687973562e-03 -Electron-electron_collision_time_at_point_144____________________________ (t_plasma_electron_electron_collision_profile144)_ 1.34674800184644882e-03 -Electron-electron_collision_time_at_point_145____________________________ (t_plasma_electron_electron_collision_profile145)_ 1.34434430546015535e-03 -Electron-electron_collision_time_at_point_146____________________________ (t_plasma_electron_electron_collision_profile146)_ 1.34192571535975895e-03 -Electron-electron_collision_time_at_point_147____________________________ (t_plasma_electron_electron_collision_profile147)_ 1.33949226951391343e-03 -Electron-electron_collision_time_at_point_148____________________________ (t_plasma_electron_electron_collision_profile148)_ 1.33704400622262866e-03 -Electron-electron_collision_time_at_point_149____________________________ (t_plasma_electron_electron_collision_profile149)_ 1.33458096411888426e-03 -Electron-electron_collision_time_at_point_150____________________________ (t_plasma_electron_electron_collision_profile150)_ 1.33210318217026245e-03 -Electron-electron_collision_time_at_point_151____________________________ (t_plasma_electron_electron_collision_profile151)_ 1.32961069968059813e-03 -Electron-electron_collision_time_at_point_152____________________________ (t_plasma_electron_electron_collision_profile152)_ 1.32710355629164604e-03 -Electron-electron_collision_time_at_point_153____________________________ (t_plasma_electron_electron_collision_profile153)_ 1.32458179198477141e-03 -Electron-electron_collision_time_at_point_154____________________________ (t_plasma_electron_electron_collision_profile154)_ 1.32204544708264585e-03 -Electron-electron_collision_time_at_point_155____________________________ (t_plasma_electron_electron_collision_profile155)_ 1.31949456225097695e-03 -Electron-electron_collision_time_at_point_156____________________________ (t_plasma_electron_electron_collision_profile156)_ 1.31692917850024312e-03 -Electron-electron_collision_time_at_point_157____________________________ (t_plasma_electron_electron_collision_profile157)_ 1.31434933718745550e-03 -Electron-electron_collision_time_at_point_158____________________________ (t_plasma_electron_electron_collision_profile158)_ 1.31175508001793255e-03 -Electron-electron_collision_time_at_point_159____________________________ (t_plasma_electron_electron_collision_profile159)_ 1.30914644904709917e-03 -Electron-electron_collision_time_at_point_160____________________________ (t_plasma_electron_electron_collision_profile160)_ 1.30652348668229817e-03 -Electron-electron_collision_time_at_point_161____________________________ (t_plasma_electron_electron_collision_profile161)_ 1.30388623568462631e-03 -Electron-electron_collision_time_at_point_162____________________________ (t_plasma_electron_electron_collision_profile162)_ 1.30123473917078867e-03 -Electron-electron_collision_time_at_point_163____________________________ (t_plasma_electron_electron_collision_profile163)_ 1.29856904061496871e-03 -Electron-electron_collision_time_at_point_164____________________________ (t_plasma_electron_electron_collision_profile164)_ 1.29588918385072343e-03 -Electron-electron_collision_time_at_point_165____________________________ (t_plasma_electron_electron_collision_profile165)_ 1.29319521307289399e-03 -Electron-electron_collision_time_at_point_166____________________________ (t_plasma_electron_electron_collision_profile166)_ 1.29048717283954117e-03 -Electron-electron_collision_time_at_point_167____________________________ (t_plasma_electron_electron_collision_profile167)_ 1.28776510807389246e-03 -Electron-electron_collision_time_at_point_168____________________________ (t_plasma_electron_electron_collision_profile168)_ 1.28502906406632216e-03 -Electron-electron_collision_time_at_point_169____________________________ (t_plasma_electron_electron_collision_profile169)_ 1.28227908647634051e-03 -Electron-electron_collision_time_at_point_170____________________________ (t_plasma_electron_electron_collision_profile170)_ 1.27951522133460923e-03 -Electron-electron_collision_time_at_point_171____________________________ (t_plasma_electron_electron_collision_profile171)_ 1.27673751504497890e-03 -Electron-electron_collision_time_at_point_172____________________________ (t_plasma_electron_electron_collision_profile172)_ 1.27394601438654467e-03 -Electron-electron_collision_time_at_point_173____________________________ (t_plasma_electron_electron_collision_profile173)_ 1.27114076651572354e-03 -Electron-electron_collision_time_at_point_174____________________________ (t_plasma_electron_electron_collision_profile174)_ 1.26832181896835709e-03 -Electron-electron_collision_time_at_point_175____________________________ (t_plasma_electron_electron_collision_profile175)_ 1.26548921966183284e-03 -Electron-electron_collision_time_at_point_176____________________________ (t_plasma_electron_electron_collision_profile176)_ 1.26264301689722703e-03 -Electron-electron_collision_time_at_point_177____________________________ (t_plasma_electron_electron_collision_profile177)_ 1.25978325936147197e-03 -Electron-electron_collision_time_at_point_178____________________________ (t_plasma_electron_electron_collision_profile178)_ 1.25690999612954415e-03 -Electron-electron_collision_time_at_point_179____________________________ (t_plasma_electron_electron_collision_profile179)_ 1.25402327666667974e-03 -Electron-electron_collision_time_at_point_180____________________________ (t_plasma_electron_electron_collision_profile180)_ 1.25112315083060368e-03 -Electron-electron_collision_time_at_point_181____________________________ (t_plasma_electron_electron_collision_profile181)_ 1.24820966887379241e-03 -Electron-electron_collision_time_at_point_182____________________________ (t_plasma_electron_electron_collision_profile182)_ 1.24528288144575309e-03 -Electron-electron_collision_time_at_point_183____________________________ (t_plasma_electron_electron_collision_profile183)_ 1.24234283959533034e-03 -Electron-electron_collision_time_at_point_184____________________________ (t_plasma_electron_electron_collision_profile184)_ 1.23938959477303445e-03 -Electron-electron_collision_time_at_point_185____________________________ (t_plasma_electron_electron_collision_profile185)_ 1.23642319883339523e-03 -Electron-electron_collision_time_at_point_186____________________________ (t_plasma_electron_electron_collision_profile186)_ 1.23344370403734045e-03 -Electron-electron_collision_time_at_point_187____________________________ (t_plasma_electron_electron_collision_profile187)_ 1.23045116305459871e-03 -Electron-electron_collision_time_at_point_188____________________________ (t_plasma_electron_electron_collision_profile188)_ 1.22744562896612524e-03 -Electron-electron_collision_time_at_point_189____________________________ (t_plasma_electron_electron_collision_profile189)_ 1.22442715526655801e-03 -Electron-electron_collision_time_at_point_190____________________________ (t_plasma_electron_electron_collision_profile190)_ 1.22139579586669428e-03 -Electron-electron_collision_time_at_point_191____________________________ (t_plasma_electron_electron_collision_profile191)_ 1.21835160509599512e-03 -Electron-electron_collision_time_at_point_192____________________________ (t_plasma_electron_electron_collision_profile192)_ 1.21529463770511550e-03 -Electron-electron_collision_time_at_point_193____________________________ (t_plasma_electron_electron_collision_profile193)_ 1.21222494886846365e-03 -Electron-electron_collision_time_at_point_194____________________________ (t_plasma_electron_electron_collision_profile194)_ 1.20914259418677993e-03 -Electron-electron_collision_time_at_point_195____________________________ (t_plasma_electron_electron_collision_profile195)_ 1.20604762968975175e-03 -Electron-electron_collision_time_at_point_196____________________________ (t_plasma_electron_electron_collision_profile196)_ 1.20294011183864728e-03 -Electron-electron_collision_time_at_point_197____________________________ (t_plasma_electron_electron_collision_profile197)_ 1.19982009752898498e-03 -Electron-electron_collision_time_at_point_198____________________________ (t_plasma_electron_electron_collision_profile198)_ 1.19668764409322048e-03 -Electron-electron_collision_time_at_point_199____________________________ (t_plasma_electron_electron_collision_profile199)_ 1.19354280930347419e-03 -Electron-electron_collision_time_at_point_200____________________________ (t_plasma_electron_electron_collision_profile200)_ 1.19038565137427610e-03 -Electron-electron_collision_time_at_point_201____________________________ (t_plasma_electron_electron_collision_profile201)_ 1.18721622896534565e-03 -Electron-electron_collision_time_at_point_202____________________________ (t_plasma_electron_electron_collision_profile202)_ 1.18403460118439983e-03 -Electron-electron_collision_time_at_point_203____________________________ (t_plasma_electron_electron_collision_profile203)_ 1.18084082758998792e-03 -Electron-electron_collision_time_at_point_204____________________________ (t_plasma_electron_electron_collision_profile204)_ 1.17763496819435986e-03 -Electron-electron_collision_time_at_point_205____________________________ (t_plasma_electron_electron_collision_profile205)_ 1.17441708346636194e-03 -Electron-electron_collision_time_at_point_206____________________________ (t_plasma_electron_electron_collision_profile206)_ 1.17118723433436416e-03 -Electron-electron_collision_time_at_point_207____________________________ (t_plasma_electron_electron_collision_profile207)_ 1.16794548218921703e-03 -Electron-electron_collision_time_at_point_208____________________________ (t_plasma_electron_electron_collision_profile208)_ 1.16469188888724271e-03 -Electron-electron_collision_time_at_point_209____________________________ (t_plasma_electron_electron_collision_profile209)_ 1.16142651675325208e-03 -Electron-electron_collision_time_at_point_210____________________________ (t_plasma_electron_electron_collision_profile210)_ 1.15814942858360049e-03 -Electron-electron_collision_time_at_point_211____________________________ (t_plasma_electron_electron_collision_profile211)_ 1.15486068764926756e-03 -Electron-electron_collision_time_at_point_212____________________________ (t_plasma_electron_electron_collision_profile212)_ 1.15156035769898007e-03 -Electron-electron_collision_time_at_point_213____________________________ (t_plasma_electron_electron_collision_profile213)_ 1.14824850296235746e-03 -Electron-electron_collision_time_at_point_214____________________________ (t_plasma_electron_electron_collision_profile214)_ 1.14492518815309681e-03 -Electron-electron_collision_time_at_point_215____________________________ (t_plasma_electron_electron_collision_profile215)_ 1.14159047847218987e-03 -Electron-electron_collision_time_at_point_216____________________________ (t_plasma_electron_electron_collision_profile216)_ 1.13824443961117478e-03 -Electron-electron_collision_time_at_point_217____________________________ (t_plasma_electron_electron_collision_profile217)_ 1.13488713775542101e-03 -Electron-electron_collision_time_at_point_218____________________________ (t_plasma_electron_electron_collision_profile218)_ 1.13151863958745069e-03 -Electron-electron_collision_time_at_point_219____________________________ (t_plasma_electron_electron_collision_profile219)_ 1.12813901229029553e-03 -Electron-electron_collision_time_at_point_220____________________________ (t_plasma_electron_electron_collision_profile220)_ 1.12474832355088862e-03 -Electron-electron_collision_time_at_point_221____________________________ (t_plasma_electron_electron_collision_profile221)_ 1.12134664156349271e-03 -Electron-electron_collision_time_at_point_222____________________________ (t_plasma_electron_electron_collision_profile222)_ 1.11793403503316615e-03 -Electron-electron_collision_time_at_point_223____________________________ (t_plasma_electron_electron_collision_profile223)_ 1.11451057317926401e-03 -Electron-electron_collision_time_at_point_224____________________________ (t_plasma_electron_electron_collision_profile224)_ 1.11107632573897931e-03 -Electron-electron_collision_time_at_point_225____________________________ (t_plasma_electron_electron_collision_profile225)_ 1.10763136297092240e-03 -Electron-electron_collision_time_at_point_226____________________________ (t_plasma_electron_electron_collision_profile226)_ 1.10417575565873458e-03 -Electron-electron_collision_time_at_point_227____________________________ (t_plasma_electron_electron_collision_profile227)_ 1.10070957511474755e-03 -Electron-electron_collision_time_at_point_228____________________________ (t_plasma_electron_electron_collision_profile228)_ 1.09723289318367683e-03 -Electron-electron_collision_time_at_point_229____________________________ (t_plasma_electron_electron_collision_profile229)_ 1.09374578224635962e-03 -Electron-electron_collision_time_at_point_230____________________________ (t_plasma_electron_electron_collision_profile230)_ 1.09024831522352788e-03 -Electron-electron_collision_time_at_point_231____________________________ (t_plasma_electron_electron_collision_profile231)_ 1.08674056557962967e-03 -Electron-electron_collision_time_at_point_232____________________________ (t_plasma_electron_electron_collision_profile232)_ 1.08322260732668612e-03 -Electron-electron_collision_time_at_point_233____________________________ (t_plasma_electron_electron_collision_profile233)_ 1.07969451502819367e-03 -Electron-electron_collision_time_at_point_234____________________________ (t_plasma_electron_electron_collision_profile234)_ 1.07615636380306860e-03 -Electron-electron_collision_time_at_point_235____________________________ (t_plasma_electron_electron_collision_profile235)_ 1.07260822932963413e-03 -Electron-electron_collision_time_at_point_236____________________________ (t_plasma_electron_electron_collision_profile236)_ 1.06905018784965379e-03 -Electron-electron_collision_time_at_point_237____________________________ (t_plasma_electron_electron_collision_profile237)_ 1.06548231617240355e-03 -Electron-electron_collision_time_at_point_238____________________________ (t_plasma_electron_electron_collision_profile238)_ 1.06190469167880127e-03 -Electron-electron_collision_time_at_point_239____________________________ (t_plasma_electron_electron_collision_profile239)_ 1.05831739232556312e-03 -Electron-electron_collision_time_at_point_240____________________________ (t_plasma_electron_electron_collision_profile240)_ 1.05472049664942762e-03 -Electron-electron_collision_time_at_point_241____________________________ (t_plasma_electron_electron_collision_profile241)_ 1.05111408377140921e-03 -Electron-electron_collision_time_at_point_242____________________________ (t_plasma_electron_electron_collision_profile242)_ 1.04749823340110899e-03 -Electron-electron_collision_time_at_point_243____________________________ (t_plasma_electron_electron_collision_profile243)_ 1.04387302584107305e-03 -Electron-electron_collision_time_at_point_244____________________________ (t_plasma_electron_electron_collision_profile244)_ 1.04023854199119668e-03 -Electron-electron_collision_time_at_point_245____________________________ (t_plasma_electron_electron_collision_profile245)_ 1.03659486335317915e-03 -Electron-electron_collision_time_at_point_246____________________________ (t_plasma_electron_electron_collision_profile246)_ 1.03294207203503095e-03 -Electron-electron_collision_time_at_point_247____________________________ (t_plasma_electron_electron_collision_profile247)_ 1.02928025075563136e-03 -Electron-electron_collision_time_at_point_248____________________________ (t_plasma_electron_electron_collision_profile248)_ 1.02560948284933606e-03 -Electron-electron_collision_time_at_point_249____________________________ (t_plasma_electron_electron_collision_profile249)_ 1.02192985227064119e-03 -Electron-electron_collision_time_at_point_250____________________________ (t_plasma_electron_electron_collision_profile250)_ 1.01824144359889571e-03 -Electron-electron_collision_time_at_point_251____________________________ (t_plasma_electron_electron_collision_profile251)_ 1.01454434204307489e-03 -Electron-electron_collision_time_at_point_252____________________________ (t_plasma_electron_electron_collision_profile252)_ 1.01083863344660118e-03 -Electron-electron_collision_time_at_point_253____________________________ (t_plasma_electron_electron_collision_profile253)_ 1.00712440429222673e-03 -Electron-electron_collision_time_at_point_254____________________________ (t_plasma_electron_electron_collision_profile254)_ 1.00340174170696853e-03 -Electron-electron_collision_time_at_point_255____________________________ (t_plasma_electron_electron_collision_profile255)_ 9.99670733467108909e-04 -Electron-electron_collision_time_at_point_256____________________________ (t_plasma_electron_electron_collision_profile256)_ 9.95931468003241442e-04 -Electron-electron_collision_time_at_point_257____________________________ (t_plasma_electron_electron_collision_profile257)_ 9.92184034405388599e-04 -Electron-electron_collision_time_at_point_258____________________________ (t_plasma_electron_electron_collision_profile258)_ 9.88428522428174035e-04 -Electron-electron_collision_time_at_point_259____________________________ (t_plasma_electron_electron_collision_profile259)_ 9.84665022496055602e-04 -Electron-electron_collision_time_at_point_260____________________________ (t_plasma_electron_electron_collision_profile260)_ 9.80893625708624496e-04 -Electron-electron_collision_time_at_point_261____________________________ (t_plasma_electron_electron_collision_profile261)_ 9.77114423845962298e-04 -Electron-electron_collision_time_at_point_262____________________________ (t_plasma_electron_electron_collision_profile262)_ 9.73327509374067408e-04 -Electron-electron_collision_time_at_point_263____________________________ (t_plasma_electron_electron_collision_profile263)_ 9.69532975450342733e-04 -Electron-electron_collision_time_at_point_264____________________________ (t_plasma_electron_electron_collision_profile264)_ 9.65730915929154609e-04 -Electron-electron_collision_time_at_point_265____________________________ (t_plasma_electron_electron_collision_profile265)_ 9.61921425367452329e-04 -Electron-electron_collision_time_at_point_266____________________________ (t_plasma_electron_electron_collision_profile266)_ 9.58104599030463566e-04 -Electron-electron_collision_time_at_point_267____________________________ (t_plasma_electron_electron_collision_profile267)_ 9.54280532897454088e-04 -Electron-electron_collision_time_at_point_268____________________________ (t_plasma_electron_electron_collision_profile268)_ 9.50449323667563149e-04 -Electron-electron_collision_time_at_point_269____________________________ (t_plasma_electron_electron_collision_profile269)_ 9.46611068765703940e-04 -Electron-electron_collision_time_at_point_270____________________________ (t_plasma_electron_electron_collision_profile270)_ 9.42765866348547945e-04 -Electron-electron_collision_time_at_point_271____________________________ (t_plasma_electron_electron_collision_profile271)_ 9.38913815310572948e-04 -Electron-electron_collision_time_at_point_272____________________________ (t_plasma_electron_electron_collision_profile272)_ 9.35055015290195825e-04 -Electron-electron_collision_time_at_point_273____________________________ (t_plasma_electron_electron_collision_profile273)_ 9.31189566675977320e-04 -Electron-electron_collision_time_at_point_274____________________________ (t_plasma_electron_electron_collision_profile274)_ 9.27317570612909555e-04 -Electron-electron_collision_time_at_point_275____________________________ (t_plasma_electron_electron_collision_profile275)_ 9.23439129008777693e-04 -Electron-electron_collision_time_at_point_276____________________________ (t_plasma_electron_electron_collision_profile276)_ 9.19554344540612456e-04 -Electron-electron_collision_time_at_point_277____________________________ (t_plasma_electron_electron_collision_profile277)_ 9.15663320661216917e-04 -Electron-electron_collision_time_at_point_278____________________________ (t_plasma_electron_electron_collision_profile278)_ 9.11766161605784145e-04 -Electron-electron_collision_time_at_point_279____________________________ (t_plasma_electron_electron_collision_profile279)_ 9.07862972398596380e-04 -Electron-electron_collision_time_at_point_280____________________________ (t_plasma_electron_electron_collision_profile280)_ 9.03953858859818317e-04 -Electron-electron_collision_time_at_point_281____________________________ (t_plasma_electron_electron_collision_profile281)_ 9.00038927612373664e-04 -Electron-electron_collision_time_at_point_282____________________________ (t_plasma_electron_electron_collision_profile282)_ 8.96118286088916447e-04 -Electron-electron_collision_time_at_point_283____________________________ (t_plasma_electron_electron_collision_profile283)_ 8.92192042538896869e-04 -Electron-electron_collision_time_at_point_284____________________________ (t_plasma_electron_electron_collision_profile284)_ 8.88260306035716825e-04 -Electron-electron_collision_time_at_point_285____________________________ (t_plasma_electron_electron_collision_profile285)_ 8.84323186483992646e-04 -Electron-electron_collision_time_at_point_286____________________________ (t_plasma_electron_electron_collision_profile286)_ 8.80380794626902416e-04 -Electron-electron_collision_time_at_point_287____________________________ (t_plasma_electron_electron_collision_profile287)_ 8.76433242053648422e-04 -Electron-electron_collision_time_at_point_288____________________________ (t_plasma_electron_electron_collision_profile288)_ 8.72480641207011879e-04 -Electron-electron_collision_time_at_point_289____________________________ (t_plasma_electron_electron_collision_profile289)_ 8.68523105391022141e-04 -Electron-electron_collision_time_at_point_290____________________________ (t_plasma_electron_electron_collision_profile290)_ 8.64560748778722839e-04 -Electron-electron_collision_time_at_point_291____________________________ (t_plasma_electron_electron_collision_profile291)_ 8.60593686420059564e-04 -Electron-electron_collision_time_at_point_292____________________________ (t_plasma_electron_electron_collision_profile292)_ 8.56622034249868484e-04 -Electron-electron_collision_time_at_point_293____________________________ (t_plasma_electron_electron_collision_profile293)_ 8.52645909095988666e-04 -Electron-electron_collision_time_at_point_294____________________________ (t_plasma_electron_electron_collision_profile294)_ 8.48665428687485324e-04 -Electron-electron_collision_time_at_point_295____________________________ (t_plasma_electron_electron_collision_profile295)_ 8.44680711662995458e-04 -Electron-electron_collision_time_at_point_296____________________________ (t_plasma_electron_electron_collision_profile296)_ 8.40691877579195475e-04 -Electron-electron_collision_time_at_point_297____________________________ (t_plasma_electron_electron_collision_profile297)_ 8.36699046919395879e-04 -Electron-electron_collision_time_at_point_298____________________________ (t_plasma_electron_electron_collision_profile298)_ 8.32702341102257711e-04 -Electron-electron_collision_time_at_point_299____________________________ (t_plasma_electron_electron_collision_profile299)_ 8.28701882490649505e-04 -Electron-electron_collision_time_at_point_300____________________________ (t_plasma_electron_electron_collision_profile300)_ 8.24697794400629908e-04 -Electron-electron_collision_time_at_point_301____________________________ (t_plasma_electron_electron_collision_profile301)_ 8.20690201110573728e-04 -Electron-electron_collision_time_at_point_302____________________________ (t_plasma_electron_electron_collision_profile302)_ 8.16679227870433302e-04 -Electron-electron_collision_time_at_point_303____________________________ (t_plasma_electron_electron_collision_profile303)_ 8.12665000911150345e-04 -Electron-electron_collision_time_at_point_304____________________________ (t_plasma_electron_electron_collision_profile304)_ 8.08647647454208422e-04 -Electron-electron_collision_time_at_point_305____________________________ (t_plasma_electron_electron_collision_profile305)_ 8.04627295721343063e-04 -Electron-electron_collision_time_at_point_306____________________________ (t_plasma_electron_electron_collision_profile306)_ 8.00604074944402905e-04 -Electron-electron_collision_time_at_point_307____________________________ (t_plasma_electron_electron_collision_profile307)_ 7.96578115375372493e-04 -Electron-electron_collision_time_at_point_308____________________________ (t_plasma_electron_electron_collision_profile308)_ 7.92549548296555000e-04 -Electron-electron_collision_time_at_point_309____________________________ (t_plasma_electron_electron_collision_profile309)_ 7.88518506030928411e-04 -Electron-electron_collision_time_at_point_310____________________________ (t_plasma_electron_electron_collision_profile310)_ 7.84485121952666195e-04 -Electron-electron_collision_time_at_point_311____________________________ (t_plasma_electron_electron_collision_profile311)_ 7.80449530497842169e-04 -Electron-electron_collision_time_at_point_312____________________________ (t_plasma_electron_electron_collision_profile312)_ 7.76411867175307979e-04 -Electron-electron_collision_time_at_point_313____________________________ (t_plasma_electron_electron_collision_profile313)_ 7.72372268577768760e-04 -Electron-electron_collision_time_at_point_314____________________________ (t_plasma_electron_electron_collision_profile314)_ 7.68330872393035861e-04 -Electron-electron_collision_time_at_point_315____________________________ (t_plasma_electron_electron_collision_profile315)_ 7.64287817415490000e-04 -Electron-electron_collision_time_at_point_316____________________________ (t_plasma_electron_electron_collision_profile316)_ 7.60243243557737203e-04 -Electron-electron_collision_time_at_point_317____________________________ (t_plasma_electron_electron_collision_profile317)_ 7.56197291862476906e-04 -Electron-electron_collision_time_at_point_318____________________________ (t_plasma_electron_electron_collision_profile318)_ 7.52150104514586479e-04 -Electron-electron_collision_time_at_point_319____________________________ (t_plasma_electron_electron_collision_profile319)_ 7.48101824853420741e-04 -Electron-electron_collision_time_at_point_320____________________________ (t_plasma_electron_electron_collision_profile320)_ 7.44052597385343488e-04 -Electron-electron_collision_time_at_point_321____________________________ (t_plasma_electron_electron_collision_profile321)_ 7.40002567796490618e-04 -Electron-electron_collision_time_at_point_322____________________________ (t_plasma_electron_electron_collision_profile322)_ 7.35951882965774702e-04 -Electron-electron_collision_time_at_point_323____________________________ (t_plasma_electron_electron_collision_profile323)_ 7.31900690978137727e-04 -Electron-electron_collision_time_at_point_324____________________________ (t_plasma_electron_electron_collision_profile324)_ 7.27849141138062965e-04 -Electron-electron_collision_time_at_point_325____________________________ (t_plasma_electron_electron_collision_profile325)_ 7.23797383983344777e-04 -Electron-electron_collision_time_at_point_326____________________________ (t_plasma_electron_electron_collision_profile326)_ 7.19745571299138139e-04 -Electron-electron_collision_time_at_point_327____________________________ (t_plasma_electron_electron_collision_profile327)_ 7.15693856132285067e-04 -Electron-electron_collision_time_at_point_328____________________________ (t_plasma_electron_electron_collision_profile328)_ 7.11642392805931947e-04 -Electron-electron_collision_time_at_point_329____________________________ (t_plasma_electron_electron_collision_profile329)_ 7.07591336934451404e-04 -Electron-electron_collision_time_at_point_330____________________________ (t_plasma_electron_electron_collision_profile330)_ 7.03540845438667536e-04 -Electron-electron_collision_time_at_point_331____________________________ (t_plasma_electron_electron_collision_profile331)_ 6.99491076561407714e-04 -Electron-electron_collision_time_at_point_332____________________________ (t_plasma_electron_electron_collision_profile332)_ 6.95442189883381805e-04 -Electron-electron_collision_time_at_point_333____________________________ (t_plasma_electron_electron_collision_profile333)_ 6.91394346339408231e-04 -Electron-electron_collision_time_at_point_334____________________________ (t_plasma_electron_electron_collision_profile334)_ 6.87347708234991315e-04 -Electron-electron_collision_time_at_point_335____________________________ (t_plasma_electron_electron_collision_profile335)_ 6.83302439263268335e-04 -Electron-electron_collision_time_at_point_336____________________________ (t_plasma_electron_electron_collision_profile336)_ 6.79258704522336270e-04 -Electron-electron_collision_time_at_point_337____________________________ (t_plasma_electron_electron_collision_profile337)_ 6.75216670532974165e-04 -Electron-electron_collision_time_at_point_338____________________________ (t_plasma_electron_electron_collision_profile338)_ 6.71176505256771100e-04 -Electron-electron_collision_time_at_point_339____________________________ (t_plasma_electron_electron_collision_profile339)_ 6.67138378114681230e-04 -Electron-electron_collision_time_at_point_340____________________________ (t_plasma_electron_electron_collision_profile340)_ 6.63102460006017485e-04 -Electron-electron_collision_time_at_point_341____________________________ (t_plasma_electron_electron_collision_profile341)_ 6.59068923327898689e-04 -Electron-electron_collision_time_at_point_342____________________________ (t_plasma_electron_electron_collision_profile342)_ 6.55037941995173512e-04 -Electron-electron_collision_time_at_point_343____________________________ (t_plasma_electron_electron_collision_profile343)_ 6.51009691460834798e-04 -Electron-electron_collision_time_at_point_344____________________________ (t_plasma_electron_electron_collision_profile344)_ 6.46984348736943916e-04 -Electron-electron_collision_time_at_point_345____________________________ (t_plasma_electron_electron_collision_profile345)_ 6.42962092416084511e-04 -Electron-electron_collision_time_at_point_346____________________________ (t_plasma_electron_electron_collision_profile346)_ 6.38943102693373985e-04 -Electron-electron_collision_time_at_point_347____________________________ (t_plasma_electron_electron_collision_profile347)_ 6.34927561389041456e-04 -Electron-electron_collision_time_at_point_348____________________________ (t_plasma_electron_electron_collision_profile348)_ 6.30915651971608333e-04 -Electron-electron_collision_time_at_point_349____________________________ (t_plasma_electron_electron_collision_profile349)_ 6.26907559581688502e-04 -Electron-electron_collision_time_at_point_350____________________________ (t_plasma_electron_electron_collision_profile350)_ 6.22903471056436217e-04 -Electron-electron_collision_time_at_point_351____________________________ (t_plasma_electron_electron_collision_profile351)_ 6.18903574954669019e-04 -Electron-electron_collision_time_at_point_352____________________________ (t_plasma_electron_electron_collision_profile352)_ 6.14908061582694187e-04 -Electron-electron_collision_time_at_point_353____________________________ (t_plasma_electron_electron_collision_profile353)_ 6.10917123020868224e-04 -Electron-electron_collision_time_at_point_354____________________________ (t_plasma_electron_electron_collision_profile354)_ 6.06930953150919728e-04 -Electron-electron_collision_time_at_point_355____________________________ (t_plasma_electron_electron_collision_profile355)_ 6.02949747684074677e-04 -Electron-electron_collision_time_at_point_356____________________________ (t_plasma_electron_electron_collision_profile356)_ 5.98973704190009296e-04 -Electron-electron_collision_time_at_point_357____________________________ (t_plasma_electron_electron_collision_profile357)_ 5.95003022126678509e-04 -Electron-electron_collision_time_at_point_358____________________________ (t_plasma_electron_electron_collision_profile358)_ 5.91037902871052322e-04 -Electron-electron_collision_time_at_point_359____________________________ (t_plasma_electron_electron_collision_profile359)_ 5.87078549750801298e-04 -Electron-electron_collision_time_at_point_360____________________________ (t_plasma_electron_electron_collision_profile360)_ 5.83125168076981787e-04 -Electron-electron_collision_time_at_point_361____________________________ (t_plasma_electron_electron_collision_profile361)_ 5.79177965177754724e-04 -Electron-electron_collision_time_at_point_362____________________________ (t_plasma_electron_electron_collision_profile362)_ 5.75237150433200654e-04 -Electron-electron_collision_time_at_point_363____________________________ (t_plasma_electron_electron_collision_profile363)_ 5.71302935311271019e-04 -Electron-electron_collision_time_at_point_364____________________________ (t_plasma_electron_electron_collision_profile364)_ 5.67375533404936060e-04 -Electron-electron_collision_time_at_point_365____________________________ (t_plasma_electron_electron_collision_profile365)_ 5.63455160470588672e-04 -Electron-electron_collision_time_at_point_366____________________________ (t_plasma_electron_electron_collision_profile366)_ 5.59542034467755368e-04 -Electron-electron_collision_time_at_point_367____________________________ (t_plasma_electron_electron_collision_profile367)_ 5.55636375600192961e-04 -Electron-electron_collision_time_at_point_368____________________________ (t_plasma_electron_electron_collision_profile368)_ 5.51738406358427669e-04 -Electron-electron_collision_time_at_point_369____________________________ (t_plasma_electron_electron_collision_profile369)_ 5.47848351563814495e-04 -Electron-electron_collision_time_at_point_370____________________________ (t_plasma_electron_electron_collision_profile370)_ 5.43966438414193406e-04 -Electron-electron_collision_time_at_point_371____________________________ (t_plasma_electron_electron_collision_profile371)_ 5.40092896531223546e-04 -Electron-electron_collision_time_at_point_372____________________________ (t_plasma_electron_electron_collision_profile372)_ 5.36227958009479486e-04 -Electron-electron_collision_time_at_point_373____________________________ (t_plasma_electron_electron_collision_profile373)_ 5.32371857467407424e-04 -Electron-electron_collision_time_at_point_374____________________________ (t_plasma_electron_electron_collision_profile374)_ 5.28524832100232518e-04 -Electron-electron_collision_time_at_point_375____________________________ (t_plasma_electron_electron_collision_profile375)_ 5.24687121734923492e-04 -Electron-electron_collision_time_at_point_376____________________________ (t_plasma_electron_electron_collision_profile376)_ 5.20858968887328026e-04 -Electron-electron_collision_time_at_point_377____________________________ (t_plasma_electron_electron_collision_profile377)_ 5.17040618821589968e-04 -Electron-electron_collision_time_at_point_378____________________________ (t_plasma_electron_electron_collision_profile378)_ 5.13232319611980621e-04 -Electron-electron_collision_time_at_point_379____________________________ (t_plasma_electron_electron_collision_profile379)_ 5.09434322207269236e-04 -Electron-electron_collision_time_at_point_380____________________________ (t_plasma_electron_electron_collision_profile380)_ 5.05646880497782653e-04 -Electron-electron_collision_time_at_point_381____________________________ (t_plasma_electron_electron_collision_profile381)_ 5.01870251385299693e-04 -Electron-electron_collision_time_at_point_382____________________________ (t_plasma_electron_electron_collision_profile382)_ 4.98104694855942831e-04 -Electron-electron_collision_time_at_point_383____________________________ (t_plasma_electron_electron_collision_profile383)_ 4.94350474056240072e-04 -Electron-electron_collision_time_at_point_384____________________________ (t_plasma_electron_electron_collision_profile384)_ 4.90607855372541678e-04 -Electron-electron_collision_time_at_point_385____________________________ (t_plasma_electron_electron_collision_profile385)_ 4.86877108513986676e-04 -Electron-electron_collision_time_at_point_386____________________________ (t_plasma_electron_electron_collision_profile386)_ 4.83158506599227870e-04 -Electron-electron_collision_time_at_point_387____________________________ (t_plasma_electron_electron_collision_profile387)_ 4.79452326247144754e-04 -Electron-electron_collision_time_at_point_388____________________________ (t_plasma_electron_electron_collision_profile388)_ 4.75758847671781571e-04 -Electron-electron_collision_time_at_point_389____________________________ (t_plasma_electron_electron_collision_profile389)_ 4.72078354781768216e-04 -Electron-electron_collision_time_at_point_390____________________________ (t_plasma_electron_electron_collision_profile390)_ 4.68411135284500140e-04 -Electron-electron_collision_time_at_point_391____________________________ (t_plasma_electron_electron_collision_profile391)_ 4.64757480795378549e-04 -Electron-electron_collision_time_at_point_392____________________________ (t_plasma_electron_electron_collision_profile392)_ 4.61117686952420224e-04 -Electron-electron_collision_time_at_point_393____________________________ (t_plasma_electron_electron_collision_profile393)_ 4.57492053536590298e-04 -Electron-electron_collision_time_at_point_394____________________________ (t_plasma_electron_electron_collision_profile394)_ 4.53880884598212915e-04 -Electron-electron_collision_time_at_point_395____________________________ (t_plasma_electron_electron_collision_profile395)_ 4.50284488589865358e-04 -Electron-electron_collision_time_at_point_396____________________________ (t_plasma_electron_electron_collision_profile396)_ 4.46703178506177188e-04 -Electron-electron_collision_time_at_point_397____________________________ (t_plasma_electron_electron_collision_profile397)_ 4.43137272030993837e-04 -Electron-electron_collision_time_at_point_398____________________________ (t_plasma_electron_electron_collision_profile398)_ 4.39587091692397508e-04 -Electron-electron_collision_time_at_point_399____________________________ (t_plasma_electron_electron_collision_profile399)_ 4.36052965026124798e-04 -Electron-electron_collision_time_at_point_400____________________________ (t_plasma_electron_electron_collision_profile400)_ 4.32535224747950507e-04 -Electron-electron_collision_time_at_point_401____________________________ (t_plasma_electron_electron_collision_profile401)_ 4.29034208935669559e-04 -Electron-electron_collision_time_at_point_402____________________________ (t_plasma_electron_electron_collision_profile402)_ 4.25550261221343618e-04 -Electron-electron_collision_time_at_point_403____________________________ (t_plasma_electron_electron_collision_profile403)_ 4.22083730994553426e-04 -Electron-electron_collision_time_at_point_404____________________________ (t_plasma_electron_electron_collision_profile404)_ 4.18634973617440932e-04 -Electron-electron_collision_time_at_point_405____________________________ (t_plasma_electron_electron_collision_profile405)_ 4.15204350652408874e-04 -Electron-electron_collision_time_at_point_406____________________________ (t_plasma_electron_electron_collision_profile406)_ 4.11792230103407320e-04 -Electron-electron_collision_time_at_point_407____________________________ (t_plasma_electron_electron_collision_profile407)_ 4.08398986671834542e-04 -Electron-electron_collision_time_at_point_408____________________________ (t_plasma_electron_electron_collision_profile408)_ 4.05025002028144680e-04 -Electron-electron_collision_time_at_point_409____________________________ (t_plasma_electron_electron_collision_profile409)_ 4.01670665100389661e-04 -Electron-electron_collision_time_at_point_410____________________________ (t_plasma_electron_electron_collision_profile410)_ 3.98336372380997676e-04 -Electron-electron_collision_time_at_point_411____________________________ (t_plasma_electron_electron_collision_profile411)_ 3.95022528253239898e-04 -Electron-electron_collision_time_at_point_412____________________________ (t_plasma_electron_electron_collision_profile412)_ 3.91729545338957534e-04 -Electron-electron_collision_time_at_point_413____________________________ (t_plasma_electron_electron_collision_profile413)_ 3.88457844869283947e-04 -Electron-electron_collision_time_at_point_414____________________________ (t_plasma_electron_electron_collision_profile414)_ 3.85207857080250508e-04 -Electron-electron_collision_time_at_point_415____________________________ (t_plasma_electron_electron_collision_profile415)_ 3.81980021635369032e-04 -Electron-electron_collision_time_at_point_416____________________________ (t_plasma_electron_electron_collision_profile416)_ 3.78774788077480948e-04 -Electron-electron_collision_time_at_point_417____________________________ (t_plasma_electron_electron_collision_profile417)_ 3.75592616312401455e-04 -Electron-electron_collision_time_at_point_418____________________________ (t_plasma_electron_electron_collision_profile418)_ 3.72433977127154881e-04 -Electron-electron_collision_time_at_point_419____________________________ (t_plasma_electron_electron_collision_profile419)_ 3.69299352745885903e-04 -Electron-electron_collision_time_at_point_420____________________________ (t_plasma_electron_electron_collision_profile420)_ 3.66189237426868964e-04 -Electron-electron_collision_time_at_point_421____________________________ (t_plasma_electron_electron_collision_profile421)_ 3.63104138104413212e-04 -Electron-electron_collision_time_at_point_422____________________________ (t_plasma_electron_electron_collision_profile422)_ 3.60044575079885416e-04 -Electron-electron_collision_time_at_point_423____________________________ (t_plasma_electron_electron_collision_profile423)_ 3.57011082766556373e-04 -Electron-electron_collision_time_at_point_424____________________________ (t_plasma_electron_electron_collision_profile424)_ 3.54004210493520394e-04 -Electron-electron_collision_time_at_point_425____________________________ (t_plasma_electron_electron_collision_profile425)_ 3.51024523374572704e-04 -Electron-electron_collision_time_at_point_426____________________________ (t_plasma_electron_electron_collision_profile426)_ 3.48072603248628727e-04 -Electron-electron_collision_time_at_point_427____________________________ (t_plasma_electron_electron_collision_profile427)_ 3.45149049699101874e-04 -Electron-electron_collision_time_at_point_428____________________________ (t_plasma_electron_electron_collision_profile428)_ 3.42254481160589297e-04 -Electron-electron_collision_time_at_point_429____________________________ (t_plasma_electron_electron_collision_profile429)_ 3.39389536122298139e-04 -Electron-electron_collision_time_at_point_430____________________________ (t_plasma_electron_electron_collision_profile430)_ 3.36554874438911122e-04 -Electron-electron_collision_time_at_point_431____________________________ (t_plasma_electron_electron_collision_profile431)_ 3.33751178761027597e-04 -Electron-electron_collision_time_at_point_432____________________________ (t_plasma_electron_electron_collision_profile432)_ 3.30979156099034052e-04 -Electron-electron_collision_time_at_point_433____________________________ (t_plasma_electron_electron_collision_profile433)_ 3.28239539536221770e-04 -Electron-electron_collision_time_at_point_434____________________________ (t_plasma_electron_electron_collision_profile434)_ 3.25533090109314137e-04 -Electron-electron_collision_time_at_point_435____________________________ (t_plasma_electron_electron_collision_profile435)_ 3.22860598877292438e-04 -Electron-electron_collision_time_at_point_436____________________________ (t_plasma_electron_electron_collision_profile436)_ 3.20222889202677091e-04 -Electron-electron_collision_time_at_point_437____________________________ (t_plasma_electron_electron_collision_profile437)_ 3.17620819273259976e-04 -Electron-electron_collision_time_at_point_438____________________________ (t_plasma_electron_electron_collision_profile438)_ 3.15055284896922038e-04 -Electron-electron_collision_time_at_point_439____________________________ (t_plasma_electron_electron_collision_profile439)_ 3.12527222607694320e-04 -Electron-electron_collision_time_at_point_440____________________________ (t_plasma_electron_electron_collision_profile440)_ 3.10037613127925478e-04 -Electron-electron_collision_time_at_point_441____________________________ (t_plasma_electron_electron_collision_profile441)_ 3.07587485239542565e-04 -Electron-electron_collision_time_at_point_442____________________________ (t_plasma_electron_electron_collision_profile442)_ 3.05177920127331379e-04 -Electron-electron_collision_time_at_point_443____________________________ (t_plasma_electron_electron_collision_profile443)_ 3.02810056269375264e-04 -Electron-electron_collision_time_at_point_444____________________________ (t_plasma_electron_electron_collision_profile444)_ 3.00485094964933236e-04 -Electron-electron_collision_time_at_point_445____________________________ (t_plasma_electron_electron_collision_profile445)_ 2.98204306608910725e-04 -Electron-electron_collision_time_at_point_446____________________________ (t_plasma_electron_electron_collision_profile446)_ 2.95969037845835337e-04 -Electron-electron_collision_time_at_point_447____________________________ (t_plasma_electron_electron_collision_profile447)_ 2.93780719766368410e-04 -Electron-electron_collision_time_at_point_448____________________________ (t_plasma_electron_electron_collision_profile448)_ 2.91640877347950386e-04 -Electron-electron_collision_time_at_point_449____________________________ (t_plasma_electron_electron_collision_profile449)_ 2.89551140391045611e-04 -Electron-electron_collision_time_at_point_450____________________________ (t_plasma_electron_electron_collision_profile450)_ 2.87513256267615564e-04 -Electron-electron_collision_time_at_point_451____________________________ (t_plasma_electron_electron_collision_profile451)_ 2.85529104884634205e-04 -Electron-electron_collision_time_at_point_452____________________________ (t_plasma_electron_electron_collision_profile452)_ 2.83600716380871354e-04 -Electron-electron_collision_time_at_point_453____________________________ (t_plasma_electron_electron_collision_profile453)_ 2.81730292231933586e-04 -Electron-electron_collision_time_at_point_454____________________________ (t_plasma_electron_electron_collision_profile454)_ 2.79920230654773401e-04 -Electron-electron_collision_time_at_point_455____________________________ (t_plasma_electron_electron_collision_profile455)_ 2.78173157506229245e-04 -Electron-electron_collision_time_at_point_456____________________________ (t_plasma_electron_electron_collision_profile456)_ 2.76491964303925792e-04 -Electron-electron_collision_time_at_point_457____________________________ (t_plasma_electron_electron_collision_profile457)_ 2.74879855631404496e-04 -Electron-electron_collision_time_at_point_458____________________________ (t_plasma_electron_electron_collision_profile458)_ 2.73340409137154720e-04 -Electron-electron_collision_time_at_point_459____________________________ (t_plasma_electron_electron_collision_profile459)_ 2.71877652794299261e-04 -Electron-electron_collision_time_at_point_460____________________________ (t_plasma_electron_electron_collision_profile460)_ 2.70496166398963896e-04 -Electron-electron_collision_time_at_point_461____________________________ (t_plasma_electron_electron_collision_profile461)_ 2.69201218087156894e-04 -Electron-electron_collision_time_at_point_462____________________________ (t_plasma_electron_electron_collision_profile462)_ 2.67998953176583701e-04 -Electron-electron_collision_time_at_point_463____________________________ (t_plasma_electron_electron_collision_profile463)_ 2.66896664430977279e-04 -Electron-electron_collision_time_at_point_464____________________________ (t_plasma_electron_electron_collision_profile464)_ 2.65903195514701548e-04 -Electron-electron_collision_time_at_point_465____________________________ (t_plasma_electron_electron_collision_profile465)_ 2.65029576517398504e-04 -Electron-electron_collision_time_at_point_466____________________________ (t_plasma_electron_electron_collision_profile466)_ 2.64290098689315433e-04 -Electron-electron_collision_time_at_point_467____________________________ (t_plasma_electron_electron_collision_profile467)_ 2.63704320633652138e-04 -Electron-electron_collision_time_at_point_468____________________________ (t_plasma_electron_electron_collision_profile468)_ 2.63301414474663323e-04 -Electron-electron_collision_time_at_point_469____________________________ (t_plasma_electron_electron_collision_profile469)_ 2.63132377485838554e-04 -Electron-electron_collision_time_at_point_470____________________________ (t_plasma_electron_electron_collision_profile470)_ 2.63344710648125678e-04 -Electron-electron_collision_time_at_point_471____________________________ (t_plasma_electron_electron_collision_profile471)_ 2.54406631286840663e-04 -Electron-electron_collision_time_at_point_472____________________________ (t_plasma_electron_electron_collision_profile472)_ 2.45413560046521355e-04 -Electron-electron_collision_time_at_point_473____________________________ (t_plasma_electron_electron_collision_profile473)_ 2.36366738188963522e-04 -Electron-electron_collision_time_at_point_474____________________________ (t_plasma_electron_electron_collision_profile474)_ 2.27267680650390967e-04 -Electron-electron_collision_time_at_point_475____________________________ (t_plasma_electron_electron_collision_profile475)_ 2.18118215685767804e-04 -Electron-electron_collision_time_at_point_476____________________________ (t_plasma_electron_electron_collision_profile476)_ 2.08920530805977486e-04 -Electron-electron_collision_time_at_point_477____________________________ (t_plasma_electron_electron_collision_profile477)_ 1.99677226189593930e-04 -Electron-electron_collision_time_at_point_478____________________________ (t_plasma_electron_electron_collision_profile478)_ 1.90391377019020211e-04 -Electron-electron_collision_time_at_point_479____________________________ (t_plasma_electron_electron_collision_profile479)_ 1.81066606532522223e-04 -Electron-electron_collision_time_at_point_480____________________________ (t_plasma_electron_electron_collision_profile480)_ 1.71707172023595077e-04 -Electron-electron_collision_time_at_point_481____________________________ (t_plasma_electron_electron_collision_profile481)_ 1.62318066591331272e-04 -Electron-electron_collision_time_at_point_482____________________________ (t_plasma_electron_electron_collision_profile482)_ 1.52905140198428334e-04 -Electron-electron_collision_time_at_point_483____________________________ (t_plasma_electron_electron_collision_profile483)_ 1.43475244596936947e-04 -Electron-electron_collision_time_at_point_484____________________________ (t_plasma_electron_electron_collision_profile484)_ 1.34036408038096857e-04 -Electron-electron_collision_time_at_point_485____________________________ (t_plasma_electron_electron_collision_profile485)_ 1.24598047544561050e-04 -Electron-electron_collision_time_at_point_486____________________________ (t_plasma_electron_electron_collision_profile486)_ 1.15171229124663442e-04 -Electron-electron_collision_time_at_point_487____________________________ (t_plasma_electron_electron_collision_profile487)_ 1.05768990014842209e-04 -Electron-electron_collision_time_at_point_488____________________________ (t_plasma_electron_electron_collision_profile488)_ 9.64067424359378675e-05 -Electron-electron_collision_time_at_point_489____________________________ (t_plasma_electron_electron_collision_profile489)_ 8.71027864164831836e-05 -Electron-electron_collision_time_at_point_490____________________________ (t_plasma_electron_electron_collision_profile490)_ 7.78789716435111486e-05 -Electron-electron_collision_time_at_point_491____________________________ (t_plasma_electron_electron_collision_profile491)_ 6.87615680338568368e-05 -Electron-electron_collision_time_at_point_492____________________________ (t_plasma_electron_electron_collision_profile492)_ 5.97824373555298145e-05 -Electron-electron_collision_time_at_point_493____________________________ (t_plasma_electron_electron_collision_profile493)_ 5.09806547762671854e-05 -Electron-electron_collision_time_at_point_494____________________________ (t_plasma_electron_electron_collision_profile494)_ 4.24048328389825820e-05 -Electron-electron_collision_time_at_point_495____________________________ (t_plasma_electron_electron_collision_profile495)_ 3.41166038131277832e-05 -Electron-electron_collision_time_at_point_496____________________________ (t_plasma_electron_electron_collision_profile496)_ 2.61961522781085167e-05 -Electron-electron_collision_time_at_point_497____________________________ (t_plasma_electron_electron_collision_profile497)_ 1.87517375391155085e-05 -Electron-electron_collision_time_at_point_498____________________________ (t_plasma_electron_electron_collision_profile498)_ 1.19381013439321102e-05 -Electron-electron_collision_time_at_point_499____________________________ (t_plasma_electron_electron_collision_profile499)_ 5.99931842953150654e-06 -Electron-electron_collision_time_at_point_500____________________________ (t_plasma_electron_electron_collision_profile500)_ 1.41297169319457467e-06 -Volume_averaged_electron-deuteron_collision_time_(τₑD)_(s)_______________ (t_plasma_electron_deuteron_collision_vol_avg)_ 8.54776544378105653e-04 OP -Electron-deuteron_collision_time_at_point_0______________________________ (t_plasma_electron_deuteron_collision_profile0)_ 1.87899601467234707e-03 -Electron-deuteron_collision_time_at_point_1______________________________ (t_plasma_electron_deuteron_collision_profile1)_ 1.87898523850721366e-03 -Electron-deuteron_collision_time_at_point_2______________________________ (t_plasma_electron_deuteron_collision_profile2)_ 1.87895291015333522e-03 -Electron-deuteron_collision_time_at_point_3______________________________ (t_plasma_electron_deuteron_collision_profile3)_ 1.87889903003528010e-03 -Electron-deuteron_collision_time_at_point_4______________________________ (t_plasma_electron_deuteron_collision_profile4)_ 1.87882359886067996e-03 -Electron-deuteron_collision_time_at_point_5______________________________ (t_plasma_electron_deuteron_collision_profile5)_ 1.87872661762025534e-03 -Electron-deuteron_collision_time_at_point_6______________________________ (t_plasma_electron_deuteron_collision_profile6)_ 1.87860808758785205e-03 -Electron-deuteron_collision_time_at_point_7______________________________ (t_plasma_electron_deuteron_collision_profile7)_ 1.87846801032048698e-03 -Electron-deuteron_collision_time_at_point_8______________________________ (t_plasma_electron_deuteron_collision_profile8)_ 1.87830638765840185e-03 -Electron-deuteron_collision_time_at_point_9______________________________ (t_plasma_electron_deuteron_collision_profile9)_ 1.87812322172513824e-03 -Electron-deuteron_collision_time_at_point_10_____________________________ (t_plasma_electron_deuteron_collision_profile10)_ 1.87791851492760523e-03 -Electron-deuteron_collision_time_at_point_11_____________________________ (t_plasma_electron_deuteron_collision_profile11)_ 1.87769226995617268e-03 -Electron-deuteron_collision_time_at_point_12_____________________________ (t_plasma_electron_deuteron_collision_profile12)_ 1.87744448978476855e-03 -Electron-deuteron_collision_time_at_point_13_____________________________ (t_plasma_electron_deuteron_collision_profile13)_ 1.87717517767098754e-03 -Electron-deuteron_collision_time_at_point_14_____________________________ (t_plasma_electron_deuteron_collision_profile14)_ 1.87688433715620410e-03 -Electron-deuteron_collision_time_at_point_15_____________________________ (t_plasma_electron_deuteron_collision_profile15)_ 1.87657197206571075e-03 -Electron-deuteron_collision_time_at_point_16_____________________________ (t_plasma_electron_deuteron_collision_profile16)_ 1.87623808650884904e-03 -Electron-deuteron_collision_time_at_point_17_____________________________ (t_plasma_electron_deuteron_collision_profile17)_ 1.87588268487916309e-03 -Electron-deuteron_collision_time_at_point_18_____________________________ (t_plasma_electron_deuteron_collision_profile18)_ 1.87550577185456157e-03 -Electron-deuteron_collision_time_at_point_19_____________________________ (t_plasma_electron_deuteron_collision_profile19)_ 1.87510735239748206e-03 -Electron-deuteron_collision_time_at_point_20_____________________________ (t_plasma_electron_deuteron_collision_profile20)_ 1.87468743175507645e-03 -Electron-deuteron_collision_time_at_point_21_____________________________ (t_plasma_electron_deuteron_collision_profile21)_ 1.87424601545940306e-03 -Electron-deuteron_collision_time_at_point_22_____________________________ (t_plasma_electron_deuteron_collision_profile22)_ 1.87378310932762374e-03 -Electron-deuteron_collision_time_at_point_23_____________________________ (t_plasma_electron_deuteron_collision_profile23)_ 1.87329871946222137e-03 -Electron-deuteron_collision_time_at_point_24_____________________________ (t_plasma_electron_deuteron_collision_profile24)_ 1.87279285225121716e-03 -Electron-deuteron_collision_time_at_point_25_____________________________ (t_plasma_electron_deuteron_collision_profile25)_ 1.87226551436840932e-03 -Electron-deuteron_collision_time_at_point_26_____________________________ (t_plasma_electron_deuteron_collision_profile26)_ 1.87171671277360885e-03 -Electron-deuteron_collision_time_at_point_27_____________________________ (t_plasma_electron_deuteron_collision_profile27)_ 1.87114645471290401e-03 -Electron-deuteron_collision_time_at_point_28_____________________________ (t_plasma_electron_deuteron_collision_profile28)_ 1.87055474771891735e-03 -Electron-deuteron_collision_time_at_point_29_____________________________ (t_plasma_electron_deuteron_collision_profile29)_ 1.86994159961108276e-03 -Electron-deuteron_collision_time_at_point_30_____________________________ (t_plasma_electron_deuteron_collision_profile30)_ 1.86930701849593152e-03 -Electron-deuteron_collision_time_at_point_31_____________________________ (t_plasma_electron_deuteron_collision_profile31)_ 1.86865101276738961e-03 -Electron-deuteron_collision_time_at_point_32_____________________________ (t_plasma_electron_deuteron_collision_profile32)_ 1.86797359110708341e-03 -Electron-deuteron_collision_time_at_point_33_____________________________ (t_plasma_electron_deuteron_collision_profile33)_ 1.86727476248465998e-03 -Electron-deuteron_collision_time_at_point_34_____________________________ (t_plasma_electron_deuteron_collision_profile34)_ 1.86655453615810953e-03 -Electron-deuteron_collision_time_at_point_35_____________________________ (t_plasma_electron_deuteron_collision_profile35)_ 1.86581292167411323e-03 -Electron-deuteron_collision_time_at_point_36_____________________________ (t_plasma_electron_deuteron_collision_profile36)_ 1.86504992886838447e-03 -Electron-deuteron_collision_time_at_point_37_____________________________ (t_plasma_electron_deuteron_collision_profile37)_ 1.86426556786603581e-03 -Electron-deuteron_collision_time_at_point_38_____________________________ (t_plasma_electron_deuteron_collision_profile38)_ 1.86345984908194758e-03 -Electron-deuteron_collision_time_at_point_39_____________________________ (t_plasma_electron_deuteron_collision_profile39)_ 1.86263278322115018e-03 -Electron-deuteron_collision_time_at_point_40_____________________________ (t_plasma_electron_deuteron_collision_profile40)_ 1.86178438127921459e-03 -Electron-deuteron_collision_time_at_point_41_____________________________ (t_plasma_electron_deuteron_collision_profile41)_ 1.86091465454266592e-03 -Electron-deuteron_collision_time_at_point_42_____________________________ (t_plasma_electron_deuteron_collision_profile42)_ 1.86002361458938409e-03 -Electron-deuteron_collision_time_at_point_43_____________________________ (t_plasma_electron_deuteron_collision_profile43)_ 1.85911127328903950e-03 -Electron-deuteron_collision_time_at_point_44_____________________________ (t_plasma_electron_deuteron_collision_profile44)_ 1.85817764280353124e-03 -Electron-deuteron_collision_time_at_point_45_____________________________ (t_plasma_electron_deuteron_collision_profile45)_ 1.85722273558742447e-03 -Electron-deuteron_collision_time_at_point_46_____________________________ (t_plasma_electron_deuteron_collision_profile46)_ 1.85624656438842161e-03 -Electron-deuteron_collision_time_at_point_47_____________________________ (t_plasma_electron_deuteron_collision_profile47)_ 1.85524914224781965e-03 -Electron-deuteron_collision_time_at_point_48_____________________________ (t_plasma_electron_deuteron_collision_profile48)_ 1.85423048250100541e-03 -Electron-deuteron_collision_time_at_point_49_____________________________ (t_plasma_electron_deuteron_collision_profile49)_ 1.85319059877793414e-03 -Electron-deuteron_collision_time_at_point_50_____________________________ (t_plasma_electron_deuteron_collision_profile50)_ 1.85212950500364230e-03 -Electron-deuteron_collision_time_at_point_51_____________________________ (t_plasma_electron_deuteron_collision_profile51)_ 1.85104721539875654e-03 -Electron-deuteron_collision_time_at_point_52_____________________________ (t_plasma_electron_deuteron_collision_profile52)_ 1.84994374448002293e-03 -Electron-deuteron_collision_time_at_point_53_____________________________ (t_plasma_electron_deuteron_collision_profile53)_ 1.84881910706084502e-03 -Electron-deuteron_collision_time_at_point_54_____________________________ (t_plasma_electron_deuteron_collision_profile54)_ 1.84767331825182895e-03 -Electron-deuteron_collision_time_at_point_55_____________________________ (t_plasma_electron_deuteron_collision_profile55)_ 1.84650639346134200e-03 -Electron-deuteron_collision_time_at_point_56_____________________________ (t_plasma_electron_deuteron_collision_profile56)_ 1.84531834839609201e-03 -Electron-deuteron_collision_time_at_point_57_____________________________ (t_plasma_electron_deuteron_collision_profile57)_ 1.84410919906170226e-03 -Electron-deuteron_collision_time_at_point_58_____________________________ (t_plasma_electron_deuteron_collision_profile58)_ 1.84287896176331075e-03 -Electron-deuteron_collision_time_at_point_59_____________________________ (t_plasma_electron_deuteron_collision_profile59)_ 1.84162765310617394e-03 -Electron-deuteron_collision_time_at_point_60_____________________________ (t_plasma_electron_deuteron_collision_profile60)_ 1.84035528999628448e-03 -Electron-deuteron_collision_time_at_point_61_____________________________ (t_plasma_electron_deuteron_collision_profile61)_ 1.83906188964100183e-03 -Electron-deuteron_collision_time_at_point_62_____________________________ (t_plasma_electron_deuteron_collision_profile62)_ 1.83774746954969235e-03 -Electron-deuteron_collision_time_at_point_63_____________________________ (t_plasma_electron_deuteron_collision_profile63)_ 1.83641204753438370e-03 -Electron-deuteron_collision_time_at_point_64_____________________________ (t_plasma_electron_deuteron_collision_profile64)_ 1.83505564171042778e-03 -Electron-deuteron_collision_time_at_point_65_____________________________ (t_plasma_electron_deuteron_collision_profile65)_ 1.83367827049717765e-03 -Electron-deuteron_collision_time_at_point_66_____________________________ (t_plasma_electron_deuteron_collision_profile66)_ 1.83227995261867841e-03 -Electron-deuteron_collision_time_at_point_67_____________________________ (t_plasma_electron_deuteron_collision_profile67)_ 1.83086070710436455e-03 -Electron-deuteron_collision_time_at_point_68_____________________________ (t_plasma_electron_deuteron_collision_profile68)_ 1.82942055328977338e-03 -Electron-deuteron_collision_time_at_point_69_____________________________ (t_plasma_electron_deuteron_collision_profile69)_ 1.82795951081727291e-03 -Electron-deuteron_collision_time_at_point_70_____________________________ (t_plasma_electron_deuteron_collision_profile70)_ 1.82647759963679526e-03 -Electron-deuteron_collision_time_at_point_71_____________________________ (t_plasma_electron_deuteron_collision_profile71)_ 1.82497484000658755e-03 -Electron-deuteron_collision_time_at_point_72_____________________________ (t_plasma_electron_deuteron_collision_profile72)_ 1.82345125249397237e-03 -Electron-deuteron_collision_time_at_point_73_____________________________ (t_plasma_electron_deuteron_collision_profile73)_ 1.82190685797612426e-03 -Electron-deuteron_collision_time_at_point_74_____________________________ (t_plasma_electron_deuteron_collision_profile74)_ 1.82034167764084953e-03 -Electron-deuteron_collision_time_at_point_75_____________________________ (t_plasma_electron_deuteron_collision_profile75)_ 1.81875573298739563e-03 -Electron-deuteron_collision_time_at_point_76_____________________________ (t_plasma_electron_deuteron_collision_profile76)_ 1.81714904582725117e-03 -Electron-deuteron_collision_time_at_point_77_____________________________ (t_plasma_electron_deuteron_collision_profile77)_ 1.81552163828497897e-03 -Electron-deuteron_collision_time_at_point_78_____________________________ (t_plasma_electron_deuteron_collision_profile78)_ 1.81387353279904569e-03 -Electron-deuteron_collision_time_at_point_79_____________________________ (t_plasma_electron_deuteron_collision_profile79)_ 1.81220475212267641e-03 -Electron-deuteron_collision_time_at_point_80_____________________________ (t_plasma_electron_deuteron_collision_profile80)_ 1.81051531932471441e-03 -Electron-deuteron_collision_time_at_point_81_____________________________ (t_plasma_electron_deuteron_collision_profile81)_ 1.80880525779049655e-03 -Electron-deuteron_collision_time_at_point_82_____________________________ (t_plasma_electron_deuteron_collision_profile82)_ 1.80707459122274100e-03 -Electron-deuteron_collision_time_at_point_83_____________________________ (t_plasma_electron_deuteron_collision_profile83)_ 1.80532334364244865e-03 -Electron-deuteron_collision_time_at_point_84_____________________________ (t_plasma_electron_deuteron_collision_profile84)_ 1.80355153938981929e-03 -Electron-deuteron_collision_time_at_point_85_____________________________ (t_plasma_electron_deuteron_collision_profile85)_ 1.80175920312517618e-03 -Electron-deuteron_collision_time_at_point_86_____________________________ (t_plasma_electron_deuteron_collision_profile86)_ 1.79994635982990564e-03 -Electron-deuteron_collision_time_at_point_87_____________________________ (t_plasma_electron_deuteron_collision_profile87)_ 1.79811303480741634e-03 -Electron-deuteron_collision_time_at_point_88_____________________________ (t_plasma_electron_deuteron_collision_profile88)_ 1.79625925368410121e-03 -Electron-deuteron_collision_time_at_point_89_____________________________ (t_plasma_electron_deuteron_collision_profile89)_ 1.79438504241032342e-03 -Electron-deuteron_collision_time_at_point_90_____________________________ (t_plasma_electron_deuteron_collision_profile90)_ 1.79249042726140691e-03 -Electron-deuteron_collision_time_at_point_91_____________________________ (t_plasma_electron_deuteron_collision_profile91)_ 1.79057543483864337e-03 -Electron-deuteron_collision_time_at_point_92_____________________________ (t_plasma_electron_deuteron_collision_profile92)_ 1.78864009207031945e-03 -Electron-deuteron_collision_time_at_point_93_____________________________ (t_plasma_electron_deuteron_collision_profile93)_ 1.78668442621274953e-03 -Electron-deuteron_collision_time_at_point_94_____________________________ (t_plasma_electron_deuteron_collision_profile94)_ 1.78470846485132505e-03 -Electron-deuteron_collision_time_at_point_95_____________________________ (t_plasma_electron_deuteron_collision_profile95)_ 1.78271223590157962e-03 -Electron-deuteron_collision_time_at_point_96_____________________________ (t_plasma_electron_deuteron_collision_profile96)_ 1.78069576761026322e-03 -Electron-deuteron_collision_time_at_point_97_____________________________ (t_plasma_electron_deuteron_collision_profile97)_ 1.77865908855643945e-03 -Electron-deuteron_collision_time_at_point_98_____________________________ (t_plasma_electron_deuteron_collision_profile98)_ 1.77660222765258879e-03 -Electron-deuteron_collision_time_at_point_99_____________________________ (t_plasma_electron_deuteron_collision_profile99)_ 1.77452521414573012e-03 -Electron-deuteron_collision_time_at_point_100____________________________ (t_plasma_electron_deuteron_collision_profile100)_ 1.77242807761855258e-03 -Electron-deuteron_collision_time_at_point_101____________________________ (t_plasma_electron_deuteron_collision_profile101)_ 1.77031084799057162e-03 -Electron-deuteron_collision_time_at_point_102____________________________ (t_plasma_electron_deuteron_collision_profile102)_ 1.76817355551928514e-03 -Electron-deuteron_collision_time_at_point_103____________________________ (t_plasma_electron_deuteron_collision_profile103)_ 1.76601623080136221e-03 -Electron-deuteron_collision_time_at_point_104____________________________ (t_plasma_electron_deuteron_collision_profile104)_ 1.76383890477382899e-03 -Electron-deuteron_collision_time_at_point_105____________________________ (t_plasma_electron_deuteron_collision_profile105)_ 1.76164160871527847e-03 -Electron-deuteron_collision_time_at_point_106____________________________ (t_plasma_electron_deuteron_collision_profile106)_ 1.75942437424710064e-03 -Electron-deuteron_collision_time_at_point_107____________________________ (t_plasma_electron_deuteron_collision_profile107)_ 1.75718723333471365e-03 -Electron-deuteron_collision_time_at_point_108____________________________ (t_plasma_electron_deuteron_collision_profile108)_ 1.75493021828882607e-03 -Electron-deuteron_collision_time_at_point_109____________________________ (t_plasma_electron_deuteron_collision_profile109)_ 1.75265336176669631e-03 -Electron-deuteron_collision_time_at_point_110____________________________ (t_plasma_electron_deuteron_collision_profile110)_ 1.75035669677342997e-03 -Electron-deuteron_collision_time_at_point_111____________________________ (t_plasma_electron_deuteron_collision_profile111)_ 1.74804025666326960e-03 -Electron-deuteron_collision_time_at_point_112____________________________ (t_plasma_electron_deuteron_collision_profile112)_ 1.74570407514092110e-03 -Electron-deuteron_collision_time_at_point_113____________________________ (t_plasma_electron_deuteron_collision_profile113)_ 1.74334818626287798e-03 -Electron-deuteron_collision_time_at_point_114____________________________ (t_plasma_electron_deuteron_collision_profile114)_ 1.74097262443877383e-03 -Electron-deuteron_collision_time_at_point_115____________________________ (t_plasma_electron_deuteron_collision_profile115)_ 1.73857742443274746e-03 -Electron-deuteron_collision_time_at_point_116____________________________ (t_plasma_electron_deuteron_collision_profile116)_ 1.73616262136481883e-03 -Electron-deuteron_collision_time_at_point_117____________________________ (t_plasma_electron_deuteron_collision_profile117)_ 1.73372825071229242e-03 -Electron-deuteron_collision_time_at_point_118____________________________ (t_plasma_electron_deuteron_collision_profile118)_ 1.73127434831116386e-03 -Electron-deuteron_collision_time_at_point_119____________________________ (t_plasma_electron_deuteron_collision_profile119)_ 1.72880095035755454e-03 -Electron-deuteron_collision_time_at_point_120____________________________ (t_plasma_electron_deuteron_collision_profile120)_ 1.72630809340915711e-03 -Electron-deuteron_collision_time_at_point_121____________________________ (t_plasma_electron_deuteron_collision_profile121)_ 1.72379581438669694e-03 -Electron-deuteron_collision_time_at_point_122____________________________ (t_plasma_electron_deuteron_collision_profile122)_ 1.72126415057541338e-03 -Electron-deuteron_collision_time_at_point_123____________________________ (t_plasma_electron_deuteron_collision_profile123)_ 1.71871313962655681e-03 -Electron-deuteron_collision_time_at_point_124____________________________ (t_plasma_electron_deuteron_collision_profile124)_ 1.71614281955890483e-03 -Electron-deuteron_collision_time_at_point_125____________________________ (t_plasma_electron_deuteron_collision_profile125)_ 1.71355322876029113e-03 -Electron-deuteron_collision_time_at_point_126____________________________ (t_plasma_electron_deuteron_collision_profile126)_ 1.71094440598915619e-03 -Electron-deuteron_collision_time_at_point_127____________________________ (t_plasma_electron_deuteron_collision_profile127)_ 1.70831639037611347e-03 -Electron-deuteron_collision_time_at_point_128____________________________ (t_plasma_electron_deuteron_collision_profile128)_ 1.70566922142553518e-03 -Electron-deuteron_collision_time_at_point_129____________________________ (t_plasma_electron_deuteron_collision_profile129)_ 1.70300293901715278e-03 -Electron-deuteron_collision_time_at_point_130____________________________ (t_plasma_electron_deuteron_collision_profile130)_ 1.70031758340768004e-03 -Electron-deuteron_collision_time_at_point_131____________________________ (t_plasma_electron_deuteron_collision_profile131)_ 1.69761319523244777e-03 -Electron-deuteron_collision_time_at_point_132____________________________ (t_plasma_electron_deuteron_collision_profile132)_ 1.69488981550706421e-03 -Electron-deuteron_collision_time_at_point_133____________________________ (t_plasma_electron_deuteron_collision_profile133)_ 1.69214748562908964e-03 -Electron-deuteron_collision_time_at_point_134____________________________ (t_plasma_electron_deuteron_collision_profile134)_ 1.68938624737972648e-03 -Electron-deuteron_collision_time_at_point_135____________________________ (t_plasma_electron_deuteron_collision_profile135)_ 1.68660614292553902e-03 -Electron-deuteron_collision_time_at_point_136____________________________ (t_plasma_electron_deuteron_collision_profile136)_ 1.68380721482017971e-03 -Electron-deuteron_collision_time_at_point_137____________________________ (t_plasma_electron_deuteron_collision_profile137)_ 1.68098950600614012e-03 -Electron-deuteron_collision_time_at_point_138____________________________ (t_plasma_electron_deuteron_collision_profile138)_ 1.67815305981652255e-03 -Electron-deuteron_collision_time_at_point_139____________________________ (t_plasma_electron_deuteron_collision_profile139)_ 1.67529791997683068e-03 -Electron-deuteron_collision_time_at_point_140____________________________ (t_plasma_electron_deuteron_collision_profile140)_ 1.67242413060677371e-03 -Electron-deuteron_collision_time_at_point_141____________________________ (t_plasma_electron_deuteron_collision_profile141)_ 1.66953173622209883e-03 -Electron-deuteron_collision_time_at_point_142____________________________ (t_plasma_electron_deuteron_collision_profile142)_ 1.66662078173644050e-03 -Electron-deuteron_collision_time_at_point_143____________________________ (t_plasma_electron_deuteron_collision_profile143)_ 1.66369131246318545e-03 -Electron-deuteron_collision_time_at_point_144____________________________ (t_plasma_electron_deuteron_collision_profile144)_ 1.66074337411736351e-03 -Electron-deuteron_collision_time_at_point_145____________________________ (t_plasma_electron_deuteron_collision_profile145)_ 1.65777701281755521e-03 -Electron-deuteron_collision_time_at_point_146____________________________ (t_plasma_electron_deuteron_collision_profile146)_ 1.65479227508782707e-03 -Electron-deuteron_collision_time_at_point_147____________________________ (t_plasma_electron_deuteron_collision_profile147)_ 1.65178920785967356e-03 -Electron-deuteron_collision_time_at_point_148____________________________ (t_plasma_electron_deuteron_collision_profile148)_ 1.64876785847399565e-03 -Electron-deuteron_collision_time_at_point_149____________________________ (t_plasma_electron_deuteron_collision_profile149)_ 1.64572827468309046e-03 -Electron-deuteron_collision_time_at_point_150____________________________ (t_plasma_electron_deuteron_collision_profile150)_ 1.64267050465266530e-03 -Electron-deuteron_collision_time_at_point_151____________________________ (t_plasma_electron_deuteron_collision_profile151)_ 1.63959459696387511e-03 -Electron-deuteron_collision_time_at_point_152____________________________ (t_plasma_electron_deuteron_collision_profile152)_ 1.63650060061537529e-03 -Electron-deuteron_collision_time_at_point_153____________________________ (t_plasma_electron_deuteron_collision_profile153)_ 1.63338856502540900e-03 -Electron-deuteron_collision_time_at_point_154____________________________ (t_plasma_electron_deuteron_collision_profile154)_ 1.63025854003389769e-03 -Electron-deuteron_collision_time_at_point_155____________________________ (t_plasma_electron_deuteron_collision_profile155)_ 1.62711057590457335e-03 -Electron-deuteron_collision_time_at_point_156____________________________ (t_plasma_electron_deuteron_collision_profile156)_ 1.62394472332712172e-03 -Electron-deuteron_collision_time_at_point_157____________________________ (t_plasma_electron_deuteron_collision_profile157)_ 1.62076103341934983e-03 -Electron-deuteron_collision_time_at_point_158____________________________ (t_plasma_electron_deuteron_collision_profile158)_ 1.61755955772937871e-03 -Electron-deuteron_collision_time_at_point_159____________________________ (t_plasma_electron_deuteron_collision_profile159)_ 1.61434034823785882e-03 -Electron-deuteron_collision_time_at_point_160____________________________ (t_plasma_electron_deuteron_collision_profile160)_ 1.61110345736020745e-03 -Electron-deuteron_collision_time_at_point_161____________________________ (t_plasma_electron_deuteron_collision_profile161)_ 1.60784893794887183e-03 -Electron-deuteron_collision_time_at_point_162____________________________ (t_plasma_electron_deuteron_collision_profile162)_ 1.60457684329561208e-03 -Electron-deuteron_collision_time_at_point_163____________________________ (t_plasma_electron_deuteron_collision_profile163)_ 1.60128722713381248e-03 -Electron-deuteron_collision_time_at_point_164____________________________ (t_plasma_electron_deuteron_collision_profile164)_ 1.59798014364081749e-03 -Electron-deuteron_collision_time_at_point_165____________________________ (t_plasma_electron_deuteron_collision_profile165)_ 1.59465564744028405e-03 -Electron-deuteron_collision_time_at_point_166____________________________ (t_plasma_electron_deuteron_collision_profile166)_ 1.59131379360457378e-03 -Electron-deuteron_collision_time_at_point_167____________________________ (t_plasma_electron_deuteron_collision_profile167)_ 1.58795463765715010e-03 -Electron-deuteron_collision_time_at_point_168____________________________ (t_plasma_electron_deuteron_collision_profile168)_ 1.58457823557501989e-03 -Electron-deuteron_collision_time_at_point_169____________________________ (t_plasma_electron_deuteron_collision_profile169)_ 1.58118464379118813e-03 -Electron-deuteron_collision_time_at_point_170____________________________ (t_plasma_electron_deuteron_collision_profile170)_ 1.57777391919714503e-03 -Electron-deuteron_collision_time_at_point_171____________________________ (t_plasma_electron_deuteron_collision_profile171)_ 1.57434611914536991e-03 -Electron-deuteron_collision_time_at_point_172____________________________ (t_plasma_electron_deuteron_collision_profile172)_ 1.57090130145187776e-03 -Electron-deuteron_collision_time_at_point_173____________________________ (t_plasma_electron_deuteron_collision_profile173)_ 1.56743952439877018e-03 -Electron-deuteron_collision_time_at_point_174____________________________ (t_plasma_electron_deuteron_collision_profile174)_ 1.56396084673683612e-03 -Electron-deuteron_collision_time_at_point_175____________________________ (t_plasma_electron_deuteron_collision_profile175)_ 1.56046532768816092e-03 -Electron-deuteron_collision_time_at_point_176____________________________ (t_plasma_electron_deuteron_collision_profile176)_ 1.55695302694877223e-03 -Electron-deuteron_collision_time_at_point_177____________________________ (t_plasma_electron_deuteron_collision_profile177)_ 1.55342400469131231e-03 -Electron-deuteron_collision_time_at_point_178____________________________ (t_plasma_electron_deuteron_collision_profile178)_ 1.54987832156773379e-03 -Electron-deuteron_collision_time_at_point_179____________________________ (t_plasma_electron_deuteron_collision_profile179)_ 1.54631603871203276e-03 -Electron-deuteron_collision_time_at_point_180____________________________ (t_plasma_electron_deuteron_collision_profile180)_ 1.54273721774299787e-03 -Electron-deuteron_collision_time_at_point_181____________________________ (t_plasma_electron_deuteron_collision_profile181)_ 1.53914192076699602e-03 -Electron-deuteron_collision_time_at_point_182____________________________ (t_plasma_electron_deuteron_collision_profile182)_ 1.53553021038079049e-03 -Electron-deuteron_collision_time_at_point_183____________________________ (t_plasma_electron_deuteron_collision_profile183)_ 1.53190214967437394e-03 -Electron-deuteron_collision_time_at_point_184____________________________ (t_plasma_electron_deuteron_collision_profile184)_ 1.52825780223384846e-03 -Electron-deuteron_collision_time_at_point_185____________________________ (t_plasma_electron_deuteron_collision_profile185)_ 1.52459723214432236e-03 -Electron-deuteron_collision_time_at_point_186____________________________ (t_plasma_electron_deuteron_collision_profile186)_ 1.52092050399284511e-03 -Electron-deuteron_collision_time_at_point_187____________________________ (t_plasma_electron_deuteron_collision_profile187)_ 1.51722768287136591e-03 -Electron-deuteron_collision_time_at_point_188____________________________ (t_plasma_electron_deuteron_collision_profile188)_ 1.51351883437972844e-03 -Electron-deuteron_collision_time_at_point_189____________________________ (t_plasma_electron_deuteron_collision_profile189)_ 1.50979402462869693e-03 -Electron-deuteron_collision_time_at_point_190____________________________ (t_plasma_electron_deuteron_collision_profile190)_ 1.50605332024300793e-03 -Electron-deuteron_collision_time_at_point_191____________________________ (t_plasma_electron_deuteron_collision_profile191)_ 1.50229678836445984e-03 -Electron-deuteron_collision_time_at_point_192____________________________ (t_plasma_electron_deuteron_collision_profile192)_ 1.49852449665503263e-03 -Electron-deuteron_collision_time_at_point_193____________________________ (t_plasma_electron_deuteron_collision_profile193)_ 1.49473651330003787e-03 -Electron-deuteron_collision_time_at_point_194____________________________ (t_plasma_electron_deuteron_collision_profile194)_ 1.49093290701130476e-03 -Electron-deuteron_collision_time_at_point_195____________________________ (t_plasma_electron_deuteron_collision_profile195)_ 1.48711374703039715e-03 -Electron-deuteron_collision_time_at_point_196____________________________ (t_plasma_electron_deuteron_collision_profile196)_ 1.48327910313186535e-03 -Electron-deuteron_collision_time_at_point_197____________________________ (t_plasma_electron_deuteron_collision_profile197)_ 1.47942904562653075e-03 -Electron-deuteron_collision_time_at_point_198____________________________ (t_plasma_electron_deuteron_collision_profile198)_ 1.47556364536480591e-03 -Electron-deuteron_collision_time_at_point_199____________________________ (t_plasma_electron_deuteron_collision_profile199)_ 1.47168297374004691e-03 -Electron-deuteron_collision_time_at_point_200____________________________ (t_plasma_electron_deuteron_collision_profile200)_ 1.46778710269194730e-03 -Electron-deuteron_collision_time_at_point_201____________________________ (t_plasma_electron_deuteron_collision_profile201)_ 1.46387610470995449e-03 -Electron-deuteron_collision_time_at_point_202____________________________ (t_plasma_electron_deuteron_collision_profile202)_ 1.45995005283673825e-03 -Electron-deuteron_collision_time_at_point_203____________________________ (t_plasma_electron_deuteron_collision_profile203)_ 1.45600902067167994e-03 -Electron-deuteron_collision_time_at_point_204____________________________ (t_plasma_electron_deuteron_collision_profile204)_ 1.45205308237441200e-03 -Electron-deuteron_collision_time_at_point_205____________________________ (t_plasma_electron_deuteron_collision_profile205)_ 1.44808231266838365e-03 -Electron-deuteron_collision_time_at_point_206____________________________ (t_plasma_electron_deuteron_collision_profile206)_ 1.44409678684447040e-03 -Electron-deuteron_collision_time_at_point_207____________________________ (t_plasma_electron_deuteron_collision_profile207)_ 1.44009658076461747e-03 -Electron-deuteron_collision_time_at_point_208____________________________ (t_plasma_electron_deuteron_collision_profile208)_ 1.43608177086552795e-03 -Electron-deuteron_collision_time_at_point_209____________________________ (t_plasma_electron_deuteron_collision_profile209)_ 1.43205243416237799e-03 -Electron-deuteron_collision_time_at_point_210____________________________ (t_plasma_electron_deuteron_collision_profile210)_ 1.42800864825258673e-03 -Electron-deuteron_collision_time_at_point_211____________________________ (t_plasma_electron_deuteron_collision_profile211)_ 1.42395049131961065e-03 -Electron-deuteron_collision_time_at_point_212____________________________ (t_plasma_electron_deuteron_collision_profile212)_ 1.41987804213678935e-03 -Electron-deuteron_collision_time_at_point_213____________________________ (t_plasma_electron_deuteron_collision_profile213)_ 1.41579138007122450e-03 -Electron-deuteron_collision_time_at_point_214____________________________ (t_plasma_electron_deuteron_collision_profile214)_ 1.41169058508770675e-03 -Electron-deuteron_collision_time_at_point_215____________________________ (t_plasma_electron_deuteron_collision_profile215)_ 1.40757573775267546e-03 -Electron-deuteron_collision_time_at_point_216____________________________ (t_plasma_electron_deuteron_collision_profile216)_ 1.40344691923823006e-03 -Electron-deuteron_collision_time_at_point_217____________________________ (t_plasma_electron_deuteron_collision_profile217)_ 1.39930421132617518e-03 -Electron-deuteron_collision_time_at_point_218____________________________ (t_plasma_electron_deuteron_collision_profile218)_ 1.39514769641211657e-03 -Electron-deuteron_collision_time_at_point_219____________________________ (t_plasma_electron_deuteron_collision_profile219)_ 1.39097745750959428e-03 -Electron-deuteron_collision_time_at_point_220____________________________ (t_plasma_electron_deuteron_collision_profile220)_ 1.38679357825426488e-03 -Electron-deuteron_collision_time_at_point_221____________________________ (t_plasma_electron_deuteron_collision_profile221)_ 1.38259614290812309e-03 -Electron-deuteron_collision_time_at_point_222____________________________ (t_plasma_electron_deuteron_collision_profile222)_ 1.37838523636377554e-03 -Electron-deuteron_collision_time_at_point_223____________________________ (t_plasma_electron_deuteron_collision_profile223)_ 1.37416094414875411e-03 -Electron-deuteron_collision_time_at_point_224____________________________ (t_plasma_electron_deuteron_collision_profile224)_ 1.36992335242987662e-03 -Electron-deuteron_collision_time_at_point_225____________________________ (t_plasma_electron_deuteron_collision_profile225)_ 1.36567254801766018e-03 -Electron-deuteron_collision_time_at_point_226____________________________ (t_plasma_electron_deuteron_collision_profile226)_ 1.36140861837077271e-03 -Electron-deuteron_collision_time_at_point_227____________________________ (t_plasma_electron_deuteron_collision_profile227)_ 1.35713165160054124e-03 -Electron-deuteron_collision_time_at_point_228____________________________ (t_plasma_electron_deuteron_collision_profile228)_ 1.35284173647550344e-03 -Electron-deuteron_collision_time_at_point_229____________________________ (t_plasma_electron_deuteron_collision_profile229)_ 1.34853896242601132e-03 -Electron-deuteron_collision_time_at_point_230____________________________ (t_plasma_electron_deuteron_collision_profile230)_ 1.34422341954888117e-03 -Electron-deuteron_collision_time_at_point_231____________________________ (t_plasma_electron_deuteron_collision_profile231)_ 1.33989519861210161e-03 -Electron-deuteron_collision_time_at_point_232____________________________ (t_plasma_electron_deuteron_collision_profile232)_ 1.33555439105958389e-03 -Electron-deuteron_collision_time_at_point_233____________________________ (t_plasma_electron_deuteron_collision_profile233)_ 1.33120108901597120e-03 -Electron-deuteron_collision_time_at_point_234____________________________ (t_plasma_electron_deuteron_collision_profile234)_ 1.32683538529149636e-03 -Electron-deuteron_collision_time_at_point_235____________________________ (t_plasma_electron_deuteron_collision_profile235)_ 1.32245737338689581e-03 -Electron-deuteron_collision_time_at_point_236____________________________ (t_plasma_electron_deuteron_collision_profile236)_ 1.31806714749837421e-03 -Electron-deuteron_collision_time_at_point_237____________________________ (t_plasma_electron_deuteron_collision_profile237)_ 1.31366480252262884e-03 -Electron-deuteron_collision_time_at_point_238____________________________ (t_plasma_electron_deuteron_collision_profile238)_ 1.30925043406192559e-03 -Electron-deuteron_collision_time_at_point_239____________________________ (t_plasma_electron_deuteron_collision_profile239)_ 1.30482413842922837e-03 -Electron-deuteron_collision_time_at_point_240____________________________ (t_plasma_electron_deuteron_collision_profile240)_ 1.30038601265339781e-03 -Electron-deuteron_collision_time_at_point_241____________________________ (t_plasma_electron_deuteron_collision_profile241)_ 1.29593615448443168e-03 -Electron-deuteron_collision_time_at_point_242____________________________ (t_plasma_electron_deuteron_collision_profile242)_ 1.29147466239877507e-03 -Electron-deuteron_collision_time_at_point_243____________________________ (t_plasma_electron_deuteron_collision_profile243)_ 1.28700163560468810e-03 -Electron-deuteron_collision_time_at_point_244____________________________ (t_plasma_electron_deuteron_collision_profile244)_ 1.28251717404767140e-03 -Electron-deuteron_collision_time_at_point_245____________________________ (t_plasma_electron_deuteron_collision_profile245)_ 1.27802137841595120e-03 -Electron-deuteron_collision_time_at_point_246____________________________ (t_plasma_electron_deuteron_collision_profile246)_ 1.27351435014603706e-03 -Electron-deuteron_collision_time_at_point_247____________________________ (t_plasma_electron_deuteron_collision_profile247)_ 1.26899619142832511e-03 -Electron-deuteron_collision_time_at_point_248____________________________ (t_plasma_electron_deuteron_collision_profile248)_ 1.26446700521278097e-03 -Electron-deuteron_collision_time_at_point_249____________________________ (t_plasma_electron_deuteron_collision_profile249)_ 1.25992689521468122e-03 -Electron-deuteron_collision_time_at_point_250____________________________ (t_plasma_electron_deuteron_collision_profile250)_ 1.25537596592041872e-03 -Electron-deuteron_collision_time_at_point_251____________________________ (t_plasma_electron_deuteron_collision_profile251)_ 1.25081432259337697e-03 -Electron-deuteron_collision_time_at_point_252____________________________ (t_plasma_electron_deuteron_collision_profile252)_ 1.24624207127987355e-03 -Electron-deuteron_collision_time_at_point_253____________________________ (t_plasma_electron_deuteron_collision_profile253)_ 1.24165931881516740e-03 -Electron-deuteron_collision_time_at_point_254____________________________ (t_plasma_electron_deuteron_collision_profile254)_ 1.23706617282954017e-03 -Electron-deuteron_collision_time_at_point_255____________________________ (t_plasma_electron_deuteron_collision_profile255)_ 1.23246274175445227e-03 -Electron-deuteron_collision_time_at_point_256____________________________ (t_plasma_electron_deuteron_collision_profile256)_ 1.22784913482875823e-03 -Electron-deuteron_collision_time_at_point_257____________________________ (t_plasma_electron_deuteron_collision_profile257)_ 1.22322546210500540e-03 -Electron-deuteron_collision_time_at_point_258____________________________ (t_plasma_electron_deuteron_collision_profile258)_ 1.21859183445580674e-03 -Electron-deuteron_collision_time_at_point_259____________________________ (t_plasma_electron_deuteron_collision_profile259)_ 1.21394836358028335e-03 -Electron-deuteron_collision_time_at_point_260____________________________ (t_plasma_electron_deuteron_collision_profile260)_ 1.20929516201058874e-03 -Electron-deuteron_collision_time_at_point_261____________________________ (t_plasma_electron_deuteron_collision_profile261)_ 1.20463234311850515e-03 -Electron-deuteron_collision_time_at_point_262____________________________ (t_plasma_electron_deuteron_collision_profile262)_ 1.19996002112212653e-03 -Electron-deuteron_collision_time_at_point_263____________________________ (t_plasma_electron_deuteron_collision_profile263)_ 1.19527831109261275e-03 -Electron-deuteron_collision_time_at_point_264____________________________ (t_plasma_electron_deuteron_collision_profile264)_ 1.19058732896103799e-03 -Electron-deuteron_collision_time_at_point_265____________________________ (t_plasma_electron_deuteron_collision_profile265)_ 1.18588719152530608e-03 -Electron-deuteron_collision_time_at_point_266____________________________ (t_plasma_electron_deuteron_collision_profile266)_ 1.18117801645716263e-03 -Electron-deuteron_collision_time_at_point_267____________________________ (t_plasma_electron_deuteron_collision_profile267)_ 1.17645992230928811e-03 -Electron-deuteron_collision_time_at_point_268____________________________ (t_plasma_electron_deuteron_collision_profile268)_ 1.17173302852248288e-03 -Electron-deuteron_collision_time_at_point_269____________________________ (t_plasma_electron_deuteron_collision_profile269)_ 1.16699745543292783e-03 -Electron-deuteron_collision_time_at_point_270____________________________ (t_plasma_electron_deuteron_collision_profile270)_ 1.16225332427955397e-03 -Electron-deuteron_collision_time_at_point_271____________________________ (t_plasma_electron_deuteron_collision_profile271)_ 1.15750075721148720e-03 -Electron-deuteron_collision_time_at_point_272____________________________ (t_plasma_electron_deuteron_collision_profile272)_ 1.15273987729559951e-03 -Electron-deuteron_collision_time_at_point_273____________________________ (t_plasma_electron_deuteron_collision_profile273)_ 1.14797080852414488e-03 -Electron-deuteron_collision_time_at_point_274____________________________ (t_plasma_electron_deuteron_collision_profile274)_ 1.14319367582250107e-03 -Electron-deuteron_collision_time_at_point_275____________________________ (t_plasma_electron_deuteron_collision_profile275)_ 1.13840860505699912e-03 -Electron-deuteron_collision_time_at_point_276____________________________ (t_plasma_electron_deuteron_collision_profile276)_ 1.13361572304286617e-03 -Electron-deuteron_collision_time_at_point_277____________________________ (t_plasma_electron_deuteron_collision_profile277)_ 1.12881515755226033e-03 -Electron-deuteron_collision_time_at_point_278____________________________ (t_plasma_electron_deuteron_collision_profile278)_ 1.12400703732241534e-03 -Electron-deuteron_collision_time_at_point_279____________________________ (t_plasma_electron_deuteron_collision_profile279)_ 1.11919149206388753e-03 -Electron-deuteron_collision_time_at_point_280____________________________ (t_plasma_electron_deuteron_collision_profile280)_ 1.11436865246891431e-03 -Electron-deuteron_collision_time_at_point_281____________________________ (t_plasma_electron_deuteron_collision_profile281)_ 1.10953865021988160e-03 -Electron-deuteron_collision_time_at_point_282____________________________ (t_plasma_electron_deuteron_collision_profile282)_ 1.10470161799790158e-03 -Electron-deuteron_collision_time_at_point_283____________________________ (t_plasma_electron_deuteron_collision_profile283)_ 1.09985768949150868e-03 -Electron-deuteron_collision_time_at_point_284____________________________ (t_plasma_electron_deuteron_collision_profile284)_ 1.09500699940546890e-03 -Electron-deuteron_collision_time_at_point_285____________________________ (t_plasma_electron_deuteron_collision_profile285)_ 1.09014968346971388e-03 -Electron-deuteron_collision_time_at_point_286____________________________ (t_plasma_electron_deuteron_collision_profile286)_ 1.08528587844838658e-03 -Electron-deuteron_collision_time_at_point_287____________________________ (t_plasma_electron_deuteron_collision_profile287)_ 1.08041572214902411e-03 -Electron-deuteron_collision_time_at_point_288____________________________ (t_plasma_electron_deuteron_collision_profile288)_ 1.07553935343185250e-03 -Electron-deuteron_collision_time_at_point_289____________________________ (t_plasma_electron_deuteron_collision_profile289)_ 1.07065691221922715e-03 -Electron-deuteron_collision_time_at_point_290____________________________ (t_plasma_electron_deuteron_collision_profile290)_ 1.06576853950518914e-03 -Electron-deuteron_collision_time_at_point_291____________________________ (t_plasma_electron_deuteron_collision_profile291)_ 1.06087437736516999e-03 -Electron-deuteron_collision_time_at_point_292____________________________ (t_plasma_electron_deuteron_collision_profile292)_ 1.05597456896582313e-03 -Electron-deuteron_collision_time_at_point_293____________________________ (t_plasma_electron_deuteron_collision_profile293)_ 1.05106925857500469e-03 -Electron-deuteron_collision_time_at_point_294____________________________ (t_plasma_electron_deuteron_collision_profile294)_ 1.04615859157189276e-03 -Electron-deuteron_collision_time_at_point_295____________________________ (t_plasma_electron_deuteron_collision_profile295)_ 1.04124271445725741e-03 -Electron-deuteron_collision_time_at_point_296____________________________ (t_plasma_electron_deuteron_collision_profile296)_ 1.03632177486387748e-03 -Electron-deuteron_collision_time_at_point_297____________________________ (t_plasma_electron_deuteron_collision_profile297)_ 1.03139592156711608e-03 -Electron-deuteron_collision_time_at_point_298____________________________ (t_plasma_electron_deuteron_collision_profile298)_ 1.02646530449564490e-03 -Electron-deuteron_collision_time_at_point_299____________________________ (t_plasma_electron_deuteron_collision_profile299)_ 1.02153007474234088e-03 -Electron-deuteron_collision_time_at_point_300____________________________ (t_plasma_electron_deuteron_collision_profile300)_ 1.01659038457533961e-03 -Electron-deuteron_collision_time_at_point_301____________________________ (t_plasma_electron_deuteron_collision_profile301)_ 1.01164638744926012e-03 -Electron-deuteron_collision_time_at_point_302____________________________ (t_plasma_electron_deuteron_collision_profile302)_ 1.00669823801660110e-03 -Electron-deuteron_collision_time_at_point_303____________________________ (t_plasma_electron_deuteron_collision_profile303)_ 1.00174609213931850e-03 -Electron-deuteron_collision_time_at_point_304____________________________ (t_plasma_electron_deuteron_collision_profile304)_ 9.96790106900578669e-04 -Electron-deuteron_collision_time_at_point_305____________________________ (t_plasma_electron_deuteron_collision_profile305)_ 9.91830440616700863e-04 -Electron-deuteron_collision_time_at_point_306____________________________ (t_plasma_electron_deuteron_collision_profile306)_ 9.86867252849290763e-04 -Electron-deuteron_collision_time_at_point_307____________________________ (t_plasma_electron_deuteron_collision_profile307)_ 9.81900704417570025e-04 -Electron-deuteron_collision_time_at_point_308____________________________ (t_plasma_electron_deuteron_collision_profile308)_ 9.76930957410900329e-04 -Electron-deuteron_collision_time_at_point_309____________________________ (t_plasma_electron_deuteron_collision_profile309)_ 9.71958175201523625e-04 -Electron-deuteron_collision_time_at_point_310____________________________ (t_plasma_electron_deuteron_collision_profile310)_ 9.66982522457504579e-04 -Electron-deuteron_collision_time_at_point_311____________________________ (t_plasma_electron_deuteron_collision_profile311)_ 9.62004165155896148e-04 -Electron-deuteron_collision_time_at_point_312____________________________ (t_plasma_electron_deuteron_collision_profile312)_ 9.57023270596120803e-04 -Electron-deuteron_collision_time_at_point_313____________________________ (t_plasma_electron_deuteron_collision_profile313)_ 9.52040007413592227e-04 -Electron-deuteron_collision_time_at_point_314____________________________ (t_plasma_electron_deuteron_collision_profile314)_ 9.47054545593558087e-04 -Electron-deuteron_collision_time_at_point_315____________________________ (t_plasma_electron_deuteron_collision_profile315)_ 9.42067056485198563e-04 -Electron-deuteron_collision_time_at_point_316____________________________ (t_plasma_electron_deuteron_collision_profile316)_ 9.37077712815961882e-04 -Electron-deuteron_collision_time_at_point_317____________________________ (t_plasma_electron_deuteron_collision_profile317)_ 9.32086688706163110e-04 -Electron-deuteron_collision_time_at_point_318____________________________ (t_plasma_electron_deuteron_collision_profile318)_ 9.27094159683844758e-04 -Electron-deuteron_collision_time_at_point_319____________________________ (t_plasma_electron_deuteron_collision_profile319)_ 9.22100302699906072e-04 -Electron-deuteron_collision_time_at_point_320____________________________ (t_plasma_electron_deuteron_collision_profile320)_ 9.17105296143515183e-04 -Electron-deuteron_collision_time_at_point_321____________________________ (t_plasma_electron_deuteron_collision_profile321)_ 9.12109319857804229e-04 -Electron-deuteron_collision_time_at_point_322____________________________ (t_plasma_electron_deuteron_collision_profile322)_ 9.07112555155864596e-04 -Electron-deuteron_collision_time_at_point_323____________________________ (t_plasma_electron_deuteron_collision_profile323)_ 9.02115184837046376e-04 -Electron-deuteron_collision_time_at_point_324____________________________ (t_plasma_electron_deuteron_collision_profile324)_ 8.97117393203572251e-04 -Electron-deuteron_collision_time_at_point_325____________________________ (t_plasma_electron_deuteron_collision_profile325)_ 8.92119366077475761e-04 -Electron-deuteron_collision_time_at_point_326____________________________ (t_plasma_electron_deuteron_collision_profile326)_ 8.87121290817876555e-04 -Electron-deuteron_collision_time_at_point_327____________________________ (t_plasma_electron_deuteron_collision_profile327)_ 8.82123356338599426e-04 -Electron-deuteron_collision_time_at_point_328____________________________ (t_plasma_electron_deuteron_collision_profile328)_ 8.77125753126150069e-04 -Electron-deuteron_collision_time_at_point_329____________________________ (t_plasma_electron_deuteron_collision_profile329)_ 8.72128673258065518e-04 -Electron-deuteron_collision_time_at_point_330____________________________ (t_plasma_electron_deuteron_collision_profile330)_ 8.67132310421636588e-04 -Electron-deuteron_collision_time_at_point_331____________________________ (t_plasma_electron_deuteron_collision_profile331)_ 8.62136859933034178e-04 -Electron-deuteron_collision_time_at_point_332____________________________ (t_plasma_electron_deuteron_collision_profile332)_ 8.57142518756833795e-04 -Electron-deuteron_collision_time_at_point_333____________________________ (t_plasma_electron_deuteron_collision_profile333)_ 8.52149485525971386e-04 -Electron-deuteron_collision_time_at_point_334____________________________ (t_plasma_electron_deuteron_collision_profile334)_ 8.47157960562125358e-04 -Electron-deuteron_collision_time_at_point_335____________________________ (t_plasma_electron_deuteron_collision_profile335)_ 8.42168145896560042e-04 -Electron-deuteron_collision_time_at_point_336____________________________ (t_plasma_electron_deuteron_collision_profile336)_ 8.37180245291430482e-04 -Electron-deuteron_collision_time_at_point_337____________________________ (t_plasma_electron_deuteron_collision_profile337)_ 8.32194464261574031e-04 -Electron-deuteron_collision_time_at_point_338____________________________ (t_plasma_electron_deuteron_collision_profile338)_ 8.27211010096804474e-04 -Electron-deuteron_collision_time_at_point_339____________________________ (t_plasma_electron_deuteron_collision_profile339)_ 8.22230091884727982e-04 -Electron-deuteron_collision_time_at_point_340____________________________ (t_plasma_electron_deuteron_collision_profile340)_ 8.17251920534097149e-04 -Electron-deuteron_collision_time_at_point_341____________________________ (t_plasma_electron_deuteron_collision_profile341)_ 8.12276708798727407e-04 -Electron-deuteron_collision_time_at_point_342____________________________ (t_plasma_electron_deuteron_collision_profile342)_ 8.07304671301995228e-04 -Electron-deuteron_collision_time_at_point_343____________________________ (t_plasma_electron_deuteron_collision_profile343)_ 8.02336024561942389e-04 -Electron-deuteron_collision_time_at_point_344____________________________ (t_plasma_electron_deuteron_collision_profile344)_ 7.97370987017004631e-04 -Electron-deuteron_collision_time_at_point_345____________________________ (t_plasma_electron_deuteron_collision_profile345)_ 7.92409779052393771e-04 -Electron-deuteron_collision_time_at_point_346____________________________ (t_plasma_electron_deuteron_collision_profile346)_ 7.87452623027165241e-04 -Electron-deuteron_collision_time_at_point_347____________________________ (t_plasma_electron_deuteron_collision_profile347)_ 7.82499743301979405e-04 -Electron-deuteron_collision_time_at_point_348____________________________ (t_plasma_electron_deuteron_collision_profile348)_ 7.77551366267610340e-04 -Electron-deuteron_collision_time_at_point_349____________________________ (t_plasma_electron_deuteron_collision_profile349)_ 7.72607720374210070e-04 -Electron-deuteron_collision_time_at_point_350____________________________ (t_plasma_electron_deuteron_collision_profile350)_ 7.67669036161372736e-04 -Electron-deuteron_collision_time_at_point_351____________________________ (t_plasma_electron_deuteron_collision_profile351)_ 7.62735546289029158e-04 -Electron-deuteron_collision_time_at_point_352____________________________ (t_plasma_electron_deuteron_collision_profile352)_ 7.57807485569205927e-04 -Electron-deuteron_collision_time_at_point_353____________________________ (t_plasma_electron_deuteron_collision_profile353)_ 7.52885090998686355e-04 -Electron-deuteron_collision_time_at_point_354____________________________ (t_plasma_electron_deuteron_collision_profile354)_ 7.47968601792611733e-04 -Electron-deuteron_collision_time_at_point_355____________________________ (t_plasma_electron_deuteron_collision_profile355)_ 7.43058259419066740e-04 -Electron-deuteron_collision_time_at_point_356____________________________ (t_plasma_electron_deuteron_collision_profile356)_ 7.38154307634686694e-04 -Electron-deuteron_collision_time_at_point_357____________________________ (t_plasma_electron_deuteron_collision_profile357)_ 7.33256992521340561e-04 -Electron-deuteron_collision_time_at_point_358____________________________ (t_plasma_electron_deuteron_collision_profile358)_ 7.28366562523927760e-04 -Electron-deuteron_collision_time_at_point_359____________________________ (t_plasma_electron_deuteron_collision_profile359)_ 7.23483268489350678e-04 -Electron-deuteron_collision_time_at_point_360____________________________ (t_plasma_electron_deuteron_collision_profile360)_ 7.18607363706707343e-04 -Electron-deuteron_collision_time_at_point_361____________________________ (t_plasma_electron_deuteron_collision_profile361)_ 7.13739103948764762e-04 -Electron-deuteron_collision_time_at_point_362____________________________ (t_plasma_electron_deuteron_collision_profile362)_ 7.08878747514774823e-04 -Electron-deuteron_collision_time_at_point_363____________________________ (t_plasma_electron_deuteron_collision_profile363)_ 7.04026555274692503e-04 -Electron-deuteron_collision_time_at_point_364____________________________ (t_plasma_electron_deuteron_collision_profile364)_ 6.99182790714865127e-04 -Electron-deuteron_collision_time_at_point_365____________________________ (t_plasma_electron_deuteron_collision_profile365)_ 6.94347719985266283e-04 -Electron-deuteron_collision_time_at_point_366____________________________ (t_plasma_electron_deuteron_collision_profile366)_ 6.89521611948340865e-04 -Electron-deuteron_collision_time_at_point_367____________________________ (t_plasma_electron_deuteron_collision_profile367)_ 6.84704738229552855e-04 -Electron-deuteron_collision_time_at_point_368____________________________ (t_plasma_electron_deuteron_collision_profile368)_ 6.79897373269710225e-04 -Electron-deuteron_collision_time_at_point_369____________________________ (t_plasma_electron_deuteron_collision_profile369)_ 6.75099794379161377e-04 -Electron-deuteron_collision_time_at_point_370____________________________ (t_plasma_electron_deuteron_collision_profile370)_ 6.70312281793955956e-04 -Electron-deuteron_collision_time_at_point_371____________________________ (t_plasma_electron_deuteron_collision_profile371)_ 6.65535118734070078e-04 -Electron-deuteron_collision_time_at_point_372____________________________ (t_plasma_electron_deuteron_collision_profile372)_ 6.60768591463804637e-04 -Electron-deuteron_collision_time_at_point_373____________________________ (t_plasma_electron_deuteron_collision_profile373)_ 6.56012989354468447e-04 -Electron-deuteron_collision_time_at_point_374____________________________ (t_plasma_electron_deuteron_collision_profile374)_ 6.51268604949467350e-04 -Electron-deuteron_collision_time_at_point_375____________________________ (t_plasma_electron_deuteron_collision_profile375)_ 6.46535734031922216e-04 -Electron-deuteron_collision_time_at_point_376____________________________ (t_plasma_electron_deuteron_collision_profile376)_ 6.41814675694963514e-04 -Electron-deuteron_collision_time_at_point_377____________________________ (t_plasma_electron_deuteron_collision_profile377)_ 6.37105732414831915e-04 -Electron-deuteron_collision_time_at_point_378____________________________ (t_plasma_electron_deuteron_collision_profile378)_ 6.32409210126952848e-04 -Electron-deuteron_collision_time_at_point_379____________________________ (t_plasma_electron_deuteron_collision_profile379)_ 6.27725418305137258e-04 -Electron-deuteron_collision_time_at_point_380____________________________ (t_plasma_electron_deuteron_collision_profile380)_ 6.23054670044093399e-04 -Electron-deuteron_collision_time_at_point_381____________________________ (t_plasma_electron_deuteron_collision_profile381)_ 6.18397282145428245e-04 -Electron-deuteron_collision_time_at_point_382____________________________ (t_plasma_electron_deuteron_collision_profile382)_ 6.13753575207341587e-04 -Electron-deuteron_collision_time_at_point_383____________________________ (t_plasma_electron_deuteron_collision_profile383)_ 6.09123873718222597e-04 -Electron-deuteron_collision_time_at_point_384____________________________ (t_plasma_electron_deuteron_collision_profile384)_ 6.04508506154377220e-04 -Electron-deuteron_collision_time_at_point_385____________________________ (t_plasma_electron_deuteron_collision_profile385)_ 5.99907805082129869e-04 -Electron-deuteron_collision_time_at_point_386____________________________ (t_plasma_electron_deuteron_collision_profile386)_ 5.95322107264548823e-04 -Electron-deuteron_collision_time_at_point_387____________________________ (t_plasma_electron_deuteron_collision_profile387)_ 5.90751753773089447e-04 -Electron-deuteron_collision_time_at_point_388____________________________ (t_plasma_electron_deuteron_collision_profile388)_ 5.86197090104434654e-04 -Electron-deuteron_collision_time_at_point_389____________________________ (t_plasma_electron_deuteron_collision_profile389)_ 5.81658466302860454e-04 -Electron-deuteron_collision_time_at_point_390____________________________ (t_plasma_electron_deuteron_collision_profile390)_ 5.77136237088462698e-04 -Electron-deuteron_collision_time_at_point_391____________________________ (t_plasma_electron_deuteron_collision_profile391)_ 5.72630761991614525e-04 -Electron-deuteron_collision_time_at_point_392____________________________ (t_plasma_electron_deuteron_collision_profile392)_ 5.68142405494040685e-04 -Electron-deuteron_collision_time_at_point_393____________________________ (t_plasma_electron_deuteron_collision_profile393)_ 5.63671537176936143e-04 -Electron-deuteron_collision_time_at_point_394____________________________ (t_plasma_electron_deuteron_collision_profile394)_ 5.59218531876578477e-04 -Electron-deuteron_collision_time_at_point_395____________________________ (t_plasma_electron_deuteron_collision_profile395)_ 5.54783769847920971e-04 -Electron-deuteron_collision_time_at_point_396____________________________ (t_plasma_electron_deuteron_collision_profile396)_ 5.50367636936692581e-04 -Electron-deuteron_collision_time_at_point_397____________________________ (t_plasma_electron_deuteron_collision_profile397)_ 5.45970524760572024e-04 -Electron-deuteron_collision_time_at_point_398____________________________ (t_plasma_electron_deuteron_collision_profile398)_ 5.41592830900039664e-04 -Electron-deuteron_collision_time_at_point_399____________________________ (t_plasma_electron_deuteron_collision_profile399)_ 5.37234959099573890e-04 -Electron-deuteron_collision_time_at_point_400____________________________ (t_plasma_electron_deuteron_collision_profile400)_ 5.32897319479892903e-04 -Electron-deuteron_collision_time_at_point_401____________________________ (t_plasma_electron_deuteron_collision_profile401)_ 5.28580328762022012e-04 -Electron-deuteron_collision_time_at_point_402____________________________ (t_plasma_electron_deuteron_collision_profile402)_ 5.24284410504007384e-04 -Electron-deuteron_collision_time_at_point_403____________________________ (t_plasma_electron_deuteron_collision_profile403)_ 5.20009995351187093e-04 -Electron-deuteron_collision_time_at_point_404____________________________ (t_plasma_electron_deuteron_collision_profile404)_ 5.15757521300990156e-04 -Electron-deuteron_collision_time_at_point_405____________________________ (t_plasma_electron_deuteron_collision_profile405)_ 5.11527433983328234e-04 -Electron-deuteron_collision_time_at_point_406____________________________ (t_plasma_electron_deuteron_collision_profile406)_ 5.07320186957731104e-04 -Electron-deuteron_collision_time_at_point_407____________________________ (t_plasma_electron_deuteron_collision_profile407)_ 5.03136242028483357e-04 -Electron-deuteron_collision_time_at_point_408____________________________ (t_plasma_electron_deuteron_collision_profile408)_ 4.98976069579120394e-04 -Electron-deuteron_collision_time_at_point_409____________________________ (t_plasma_electron_deuteron_collision_profile409)_ 4.94840148927785223e-04 -Electron-deuteron_collision_time_at_point_410____________________________ (t_plasma_electron_deuteron_collision_profile410)_ 4.90728968705057096e-04 -Electron-deuteron_collision_time_at_point_411____________________________ (t_plasma_electron_deuteron_collision_profile411)_ 4.86643027256042241e-04 -Electron-deuteron_collision_time_at_point_412____________________________ (t_plasma_electron_deuteron_collision_profile412)_ 4.82582833068658608e-04 -Electron-deuteron_collision_time_at_point_413____________________________ (t_plasma_electron_deuteron_collision_profile413)_ 4.78548905230258184e-04 -Electron-deuteron_collision_time_at_point_414____________________________ (t_plasma_electron_deuteron_collision_profile414)_ 4.74541773914911142e-04 -Electron-deuteron_collision_time_at_point_415____________________________ (t_plasma_electron_deuteron_collision_profile415)_ 4.70561980903933257e-04 -Electron-deuteron_collision_time_at_point_416____________________________ (t_plasma_electron_deuteron_collision_profile416)_ 4.66610080142476483e-04 -Electron-deuteron_collision_time_at_point_417____________________________ (t_plasma_electron_deuteron_collision_profile417)_ 4.62686638335303420e-04 -Electron-deuteron_collision_time_at_point_418____________________________ (t_plasma_electron_deuteron_collision_profile418)_ 4.58792235585185496e-04 -Electron-deuteron_collision_time_at_point_419____________________________ (t_plasma_electron_deuteron_collision_profile419)_ 4.54927466077732388e-04 -Electron-deuteron_collision_time_at_point_420____________________________ (t_plasma_electron_deuteron_collision_profile420)_ 4.51092938816868535e-04 -Electron-deuteron_collision_time_at_point_421____________________________ (t_plasma_electron_deuteron_collision_profile421)_ 4.47289278415634209e-04 -Electron-deuteron_collision_time_at_point_422____________________________ (t_plasma_electron_deuteron_collision_profile422)_ 4.43517125947522149e-04 -Electron-deuteron_collision_time_at_point_423____________________________ (t_plasma_electron_deuteron_collision_profile423)_ 4.39777139864140805e-04 -Electron-deuteron_collision_time_at_point_424____________________________ (t_plasma_electron_deuteron_collision_profile424)_ 4.36069996985680673e-04 -Electron-deuteron_collision_time_at_point_425____________________________ (t_plasma_electron_deuteron_collision_profile425)_ 4.32396393571435355e-04 -Electron-deuteron_collision_time_at_point_426____________________________ (t_plasma_electron_deuteron_collision_profile426)_ 4.28757046478489882e-04 -Electron-deuteron_collision_time_at_point_427____________________________ (t_plasma_electron_deuteron_collision_profile427)_ 4.25152694417720359e-04 -Electron-deuteron_collision_time_at_point_428____________________________ (t_plasma_electron_deuteron_collision_profile428)_ 4.21584099317392981e-04 -Electron-deuteron_collision_time_at_point_429____________________________ (t_plasma_electron_deuteron_collision_profile429)_ 4.18052047805992375e-04 -Electron-deuteron_collision_time_at_point_430____________________________ (t_plasma_electron_deuteron_collision_profile430)_ 4.14557352827458678e-04 -Electron-deuteron_collision_time_at_point_431____________________________ (t_plasma_electron_deuteron_collision_profile431)_ 4.11100855403800491e-04 -Electron-deuteron_collision_time_at_point_432____________________________ (t_plasma_electron_deuteron_collision_profile432)_ 4.07683426562151967e-04 -Electron-deuteron_collision_time_at_point_433____________________________ (t_plasma_electron_deuteron_collision_profile433)_ 4.04305969445771475e-04 -Electron-deuteron_collision_time_at_point_434____________________________ (t_plasma_electron_deuteron_collision_profile434)_ 4.00969421631370269e-04 -Electron-deuteron_collision_time_at_point_435____________________________ (t_plasma_electron_deuteron_collision_profile435)_ 3.97674757678513505e-04 -Electron-deuteron_collision_time_at_point_436____________________________ (t_plasma_electron_deuteron_collision_profile436)_ 3.94422991940871035e-04 -Electron-deuteron_collision_time_at_point_437____________________________ (t_plasma_electron_deuteron_collision_profile437)_ 3.91215181673819910e-04 -Electron-deuteron_collision_time_at_point_438____________________________ (t_plasma_electron_deuteron_collision_profile438)_ 3.88052430478625135e-04 -Electron-deuteron_collision_time_at_point_439____________________________ (t_plasma_electron_deuteron_collision_profile439)_ 3.84935892130227263e-04 -Electron-deuteron_collision_time_at_point_440____________________________ (t_plasma_electron_deuteron_collision_profile440)_ 3.81866774843931279e-04 -Electron-deuteron_collision_time_at_point_441____________________________ (t_plasma_electron_deuteron_collision_profile441)_ 3.78846346046306855e-04 -Electron-deuteron_collision_time_at_point_442____________________________ (t_plasma_electron_deuteron_collision_profile442)_ 3.75875937727860058e-04 -Electron-deuteron_collision_time_at_point_443____________________________ (t_plasma_electron_deuteron_collision_profile443)_ 3.72956952470080154e-04 -Electron-deuteron_collision_time_at_point_444____________________________ (t_plasma_electron_deuteron_collision_profile444)_ 3.70090870258145605e-04 -Electron-deuteron_collision_time_at_point_445____________________________ (t_plasma_electron_deuteron_collision_profile445)_ 3.67279256213817339e-04 -Electron-deuteron_collision_time_at_point_446____________________________ (t_plasma_electron_deuteron_collision_profile446)_ 3.64523769412341354e-04 -Electron-deuteron_collision_time_at_point_447____________________________ (t_plasma_electron_deuteron_collision_profile447)_ 3.61826172984298369e-04 -Electron-deuteron_collision_time_at_point_448____________________________ (t_plasma_electron_deuteron_collision_profile448)_ 3.59188345750883359e-04 -Electron-deuteron_collision_time_at_point_449____________________________ (t_plasma_electron_deuteron_collision_profile449)_ 3.56612295702545261e-04 -Electron-deuteron_collision_time_at_point_450____________________________ (t_plasma_electron_deuteron_collision_profile450)_ 3.54100175711250713e-04 -Electron-deuteron_collision_time_at_point_451____________________________ (t_plasma_electron_deuteron_collision_profile451)_ 3.51654301972848492e-04 -Electron-deuteron_collision_time_at_point_452____________________________ (t_plasma_electron_deuteron_collision_profile452)_ 3.49277175818265380e-04 -Electron-deuteron_collision_time_at_point_453____________________________ (t_plasma_electron_deuteron_collision_profile453)_ 3.46971509725481993e-04 -Electron-deuteron_collision_time_at_point_454____________________________ (t_plasma_electron_deuteron_collision_profile454)_ 3.44740258630729852e-04 -Electron-deuteron_collision_time_at_point_455____________________________ (t_plasma_electron_deuteron_collision_profile455)_ 3.42586658011249088e-04 -Electron-deuteron_collision_time_at_point_456____________________________ (t_plasma_electron_deuteron_collision_profile456)_ 3.40514270746574126e-04 -Electron-deuteron_collision_time_at_point_457____________________________ (t_plasma_electron_deuteron_collision_profile457)_ 3.38527045546166265e-04 -Electron-deuteron_collision_time_at_point_458____________________________ (t_plasma_electron_deuteron_collision_profile458)_ 3.36629390899414961e-04 -Electron-deuteron_collision_time_at_point_459____________________________ (t_plasma_electron_deuteron_collision_profile459)_ 3.34826270299916709e-04 -Electron-deuteron_collision_time_at_point_460____________________________ (t_plasma_electron_deuteron_collision_profile460)_ 3.33123327344660332e-04 -Electron-deuteron_collision_time_at_point_461____________________________ (t_plasma_electron_deuteron_collision_profile461)_ 3.31527053994563675e-04 -Electron-deuteron_collision_time_at_point_462____________________________ (t_plasma_electron_deuteron_collision_profile462)_ 3.30045023327020656e-04 -Electron-deuteron_collision_time_at_point_463____________________________ (t_plasma_electron_deuteron_collision_profile463)_ 3.28686222644038097e-04 -Electron-deuteron_collision_time_at_point_464____________________________ (t_plasma_electron_deuteron_collision_profile464)_ 3.27461550741132089e-04 -Electron-deuteron_collision_time_at_point_465____________________________ (t_plasma_electron_deuteron_collision_profile465)_ 3.26384601208933912e-04 -Electron-deuteron_collision_time_at_point_466____________________________ (t_plasma_electron_deuteron_collision_profile466)_ 3.25472987073737894e-04 -Electron-deuteron_collision_time_at_point_467____________________________ (t_plasma_electron_deuteron_collision_profile467)_ 3.24750813483077943e-04 -Electron-deuteron_collision_time_at_point_468____________________________ (t_plasma_electron_deuteron_collision_profile468)_ 3.24254034470363361e-04 -Electron-deuteron_collision_time_at_point_469____________________________ (t_plasma_electron_deuteron_collision_profile469)_ 3.24045504089399148e-04 -Electron-deuteron_collision_time_at_point_470____________________________ (t_plasma_electron_deuteron_collision_profile470)_ 3.24307019455815238e-04 -Electron-deuteron_collision_time_at_point_471____________________________ (t_plasma_electron_deuteron_collision_profile471)_ 3.13289909113623319e-04 -Electron-deuteron_collision_time_at_point_472____________________________ (t_plasma_electron_deuteron_collision_profile472)_ 3.02205362837311626e-04 -Electron-deuteron_collision_time_at_point_473____________________________ (t_plasma_electron_deuteron_collision_profile473)_ 2.91054929708809080e-04 -Electron-deuteron_collision_time_at_point_474____________________________ (t_plasma_electron_deuteron_collision_profile474)_ 2.79840497417504217e-04 -Electron-deuteron_collision_time_at_point_475____________________________ (t_plasma_electron_deuteron_collision_profile475)_ 2.68564341229108011e-04 -Electron-deuteron_collision_time_at_point_476____________________________ (t_plasma_electron_deuteron_collision_profile476)_ 2.57229180720697941e-04 -Electron-deuteron_collision_time_at_point_477____________________________ (t_plasma_electron_deuteron_collision_profile477)_ 2.45838245739443564e-04 -Electron-deuteron_collision_time_at_point_478____________________________ (t_plasma_electron_deuteron_collision_profile478)_ 2.34395353372972276e-04 -Electron-deuteron_collision_time_at_point_479____________________________ (t_plasma_electron_deuteron_collision_profile479)_ 2.22904998140596250e-04 -Electron-deuteron_collision_time_at_point_480____________________________ (t_plasma_electron_deuteron_collision_profile480)_ 2.11372458156854775e-04 -Electron-deuteron_collision_time_at_point_481____________________________ (t_plasma_electron_deuteron_collision_profile481)_ 1.99803920724085730e-04 -Electron-deuteron_collision_time_at_point_482____________________________ (t_plasma_electron_deuteron_collision_profile482)_ 1.88206631738673425e-04 -Electron-deuteron_collision_time_at_point_483____________________________ (t_plasma_electron_deuteron_collision_profile483)_ 1.76589074532154130e-04 -Electron-deuteron_collision_time_at_point_484____________________________ (t_plasma_electron_deuteron_collision_profile484)_ 1.64961185439449449e-04 -Electron-deuteron_collision_time_at_point_485____________________________ (t_plasma_electron_deuteron_collision_profile485)_ 1.53334615680493139e-04 -Electron-deuteron_collision_time_at_point_486____________________________ (t_plasma_electron_deuteron_collision_profile486)_ 1.41723052346154902e-04 -Electron-deuteron_collision_time_at_point_487____________________________ (t_plasma_electron_deuteron_collision_profile487)_ 1.30142615844957822e-04 -Electron-deuteron_collision_time_at_point_488____________________________ (t_plasma_electron_deuteron_collision_profile488)_ 1.18612357817593652e-04 -Electron-deuteron_collision_time_at_point_489____________________________ (t_plasma_electron_deuteron_collision_profile489)_ 1.07154893461536944e-04 -Electron-deuteron_collision_time_at_point_490____________________________ (t_plasma_electron_deuteron_collision_profile490)_ 9.57972174865336155e-05 -Electron-deuteron_collision_time_at_point_491____________________________ (t_plasma_electron_deuteron_collision_profile491)_ 8.45717772174732555e-05 -Electron-deuteron_collision_time_at_point_492____________________________ (t_plasma_electron_deuteron_collision_profile492)_ 7.35179165403056407e-05 -Electron-deuteron_collision_time_at_point_493____________________________ (t_plasma_electron_deuteron_collision_profile493)_ 6.26838739936827607e-05 -Electron-deuteron_collision_time_at_point_494____________________________ (t_plasma_electron_deuteron_collision_profile494)_ 5.21296458450620366e-05 -Electron-deuteron_collision_time_at_point_495____________________________ (t_plasma_electron_deuteron_collision_profile495)_ 4.19312753516767374e-05 -Electron-deuteron_collision_time_at_point_496____________________________ (t_plasma_electron_deuteron_collision_profile496)_ 3.21876657351692372e-05 -Electron-deuteron_collision_time_at_point_497____________________________ (t_plasma_electron_deuteron_collision_profile497)_ 2.30323032587426068e-05 -Electron-deuteron_collision_time_at_point_498____________________________ (t_plasma_electron_deuteron_collision_profile498)_ 1.46559120212419592e-05 -Electron-deuteron_collision_time_at_point_499____________________________ (t_plasma_electron_deuteron_collision_profile499)_ 7.35917053066077572e-06 -Electron-deuteron_collision_time_at_point_500____________________________ (t_plasma_electron_deuteron_collision_profile500)_ 1.72997731127563799e-06 -Volume_averaged_electron-triton_collision_time_(τₑT)_(s)_________________ (t_plasma_electron_triton_collision_vol_avg)_ 8.54774449866884832e-04 OP -Electron-triton_collision_time_at_point_0________________________________ (t_plasma_electron_triton_collision_profile0)_ 1.87899174128182303e-03 -Electron-triton_collision_time_at_point_1________________________________ (t_plasma_electron_triton_collision_profile1)_ 1.87898096513836239e-03 -Electron-triton_collision_time_at_point_2________________________________ (t_plasma_electron_triton_collision_profile2)_ 1.87894863684950138e-03 -Electron-triton_collision_time_at_point_3________________________________ (t_plasma_electron_triton_collision_profile3)_ 1.87889475683980728e-03 -Electron-triton_collision_time_at_point_4________________________________ (t_plasma_electron_triton_collision_profile4)_ 1.87881932581691283e-03 -Electron-triton_collision_time_at_point_5________________________________ (t_plasma_electron_triton_collision_profile5)_ 1.87872234477153661e-03 -Electron-triton_collision_time_at_point_6________________________________ (t_plasma_electron_triton_collision_profile6)_ 1.87860381497752357e-03 -Electron-triton_collision_time_at_point_7________________________________ (t_plasma_electron_triton_collision_profile7)_ 1.87846373799188844e-03 -Electron-triton_collision_time_at_point_8________________________________ (t_plasma_electron_triton_collision_profile8)_ 1.87830211565487206e-03 -Electron-triton_collision_time_at_point_9________________________________ (t_plasma_electron_triton_collision_profile9)_ 1.87811895009001363e-03 -Electron-triton_collision_time_at_point_10_______________________________ (t_plasma_electron_triton_collision_profile10)_ 1.87791424370421984e-03 -Electron-triton_collision_time_at_point_11_______________________________ (t_plasma_electron_triton_collision_profile11)_ 1.87768799918785882e-03 -Electron-triton_collision_time_at_point_12_______________________________ (t_plasma_electron_triton_collision_profile12)_ 1.87744021951485483e-03 -Electron-triton_collision_time_at_point_13_______________________________ (t_plasma_electron_triton_collision_profile13)_ 1.87717090794279977e-03 -Electron-triton_collision_time_at_point_14_______________________________ (t_plasma_electron_triton_collision_profile14)_ 1.87688006801306571e-03 -Electron-triton_collision_time_at_point_15_______________________________ (t_plasma_electron_triton_collision_profile15)_ 1.87656770355094015e-03 -Electron-triton_collision_time_at_point_16_______________________________ (t_plasma_electron_triton_collision_profile16)_ 1.87623381866576229e-03 -Electron-triton_collision_time_at_point_17_______________________________ (t_plasma_electron_triton_collision_profile17)_ 1.87587841775107059e-03 -Electron-triton_collision_time_at_point_18_______________________________ (t_plasma_electron_triton_collision_profile18)_ 1.87550150548477048e-03 -Electron-triton_collision_time_at_point_19_______________________________ (t_plasma_electron_triton_collision_profile19)_ 1.87510308682929498e-03 -Electron-triton_collision_time_at_point_20_______________________________ (t_plasma_electron_triton_collision_profile20)_ 1.87468316703179034e-03 -Electron-triton_collision_time_at_point_21_______________________________ (t_plasma_electron_triton_collision_profile21)_ 1.87424175162430990e-03 -Electron-triton_collision_time_at_point_22_______________________________ (t_plasma_electron_triton_collision_profile22)_ 1.87377884642401138e-03 -Electron-triton_collision_time_at_point_23_______________________________ (t_plasma_electron_triton_collision_profile23)_ 1.87329445753336966e-03 -Electron-triton_collision_time_at_point_24_______________________________ (t_plasma_electron_triton_collision_profile24)_ 1.87278859134040114e-03 -Electron-triton_collision_time_at_point_25_______________________________ (t_plasma_electron_triton_collision_profile25)_ 1.87226125451889799e-03 -Electron-triton_collision_time_at_point_26_______________________________ (t_plasma_electron_triton_collision_profile26)_ 1.87171245402866469e-03 -Electron-triton_collision_time_at_point_27_______________________________ (t_plasma_electron_triton_collision_profile27)_ 1.87114219711578258e-03 -Electron-triton_collision_time_at_point_28_______________________________ (t_plasma_electron_triton_collision_profile28)_ 1.87055049131286660e-03 -Electron-triton_collision_time_at_point_29_______________________________ (t_plasma_electron_triton_collision_profile29)_ 1.86993734443934392e-03 -Electron-triton_collision_time_at_point_30_______________________________ (t_plasma_electron_triton_collision_profile30)_ 1.86930276460173781e-03 -Electron-triton_collision_time_at_point_31_______________________________ (t_plasma_electron_triton_collision_profile31)_ 1.86864676019396665e-03 -Electron-triton_collision_time_at_point_32_______________________________ (t_plasma_electron_triton_collision_profile32)_ 1.86796933989764858e-03 -Electron-triton_collision_time_at_point_33_______________________________ (t_plasma_electron_triton_collision_profile33)_ 1.86727051268242221e-03 -Electron-triton_collision_time_at_point_34_______________________________ (t_plasma_electron_triton_collision_profile34)_ 1.86655028780626821e-03 -Electron-triton_collision_time_at_point_35_______________________________ (t_plasma_electron_triton_collision_profile35)_ 1.86580867481586014e-03 -Electron-triton_collision_time_at_point_36_______________________________ (t_plasma_electron_triton_collision_profile36)_ 1.86504568354690166e-03 -Electron-triton_collision_time_at_point_37_______________________________ (t_plasma_electron_triton_collision_profile37)_ 1.86426132412449469e-03 -Electron-triton_collision_time_at_point_38_______________________________ (t_plasma_electron_triton_collision_profile38)_ 1.86345560696351046e-03 -Electron-triton_collision_time_at_point_39_______________________________ (t_plasma_electron_triton_collision_profile39)_ 1.86262854276896938e-03 -Electron-triton_collision_time_at_point_40_______________________________ (t_plasma_electron_triton_collision_profile40)_ 1.86178014253643204e-03 -Electron-triton_collision_time_at_point_41_______________________________ (t_plasma_electron_triton_collision_profile41)_ 1.86091041755241139e-03 -Electron-triton_collision_time_at_point_42_______________________________ (t_plasma_electron_triton_collision_profile42)_ 1.86001937939477870e-03 -Electron-triton_collision_time_at_point_43_______________________________ (t_plasma_electron_triton_collision_profile43)_ 1.85910703993319090e-03 -Electron-triton_collision_time_at_point_44_______________________________ (t_plasma_electron_triton_collision_profile44)_ 1.85817341132953691e-03 -Electron-triton_collision_time_at_point_45_______________________________ (t_plasma_electron_triton_collision_profile45)_ 1.85721850603836908e-03 -Electron-triton_collision_time_at_point_46_______________________________ (t_plasma_electron_triton_collision_profile46)_ 1.85624233680737726e-03 -Electron-triton_collision_time_at_point_47_______________________________ (t_plasma_electron_triton_collision_profile47)_ 1.85524491667784673e-03 -Electron-triton_collision_time_at_point_48_______________________________ (t_plasma_electron_triton_collision_profile48)_ 1.85422625898515130e-03 -Electron-triton_collision_time_at_point_49_______________________________ (t_plasma_electron_triton_collision_profile49)_ 1.85318637735923343e-03 -Electron-triton_collision_time_at_point_50_______________________________ (t_plasma_electron_triton_collision_profile50)_ 1.85212528572511440e-03 -Electron-triton_collision_time_at_point_51_______________________________ (t_plasma_electron_triton_collision_profile51)_ 1.85104299830340957e-03 -Electron-triton_collision_time_at_point_52_______________________________ (t_plasma_electron_triton_collision_profile52)_ 1.84993952961084963e-03 -Electron-triton_collision_time_at_point_53_______________________________ (t_plasma_electron_triton_collision_profile53)_ 1.84881489446082426e-03 -Electron-triton_collision_time_at_point_54_______________________________ (t_plasma_electron_triton_collision_profile54)_ 1.84766910796392309e-03 -Electron-triton_collision_time_at_point_55_______________________________ (t_plasma_electron_triton_collision_profile55)_ 1.84650218552850106e-03 -Electron-triton_collision_time_at_point_56_______________________________ (t_plasma_electron_triton_collision_profile56)_ 1.84531414286124977e-03 -Electron-triton_collision_time_at_point_57_______________________________ (t_plasma_electron_triton_collision_profile57)_ 1.84410499596777576e-03 -Electron-triton_collision_time_at_point_58_______________________________ (t_plasma_electron_triton_collision_profile58)_ 1.84287476115320274e-03 -Electron-triton_collision_time_at_point_59_______________________________ (t_plasma_electron_triton_collision_profile59)_ 1.84162345502276916e-03 -Electron-triton_collision_time_at_point_60_______________________________ (t_plasma_electron_triton_collision_profile60)_ 1.84035109448245230e-03 -Electron-triton_collision_time_at_point_61_______________________________ (t_plasma_electron_triton_collision_profile61)_ 1.83905769673959425e-03 -Electron-triton_collision_time_at_point_62_______________________________ (t_plasma_electron_triton_collision_profile62)_ 1.83774327930354511e-03 -Electron-triton_collision_time_at_point_63_______________________________ (t_plasma_electron_triton_collision_profile63)_ 1.83640785998631282e-03 -Electron-triton_collision_time_at_point_64_______________________________ (t_plasma_electron_triton_collision_profile64)_ 1.83505145690323300e-03 -Electron-triton_collision_time_at_point_65_______________________________ (t_plasma_electron_triton_collision_profile65)_ 1.83367408847364029e-03 -Electron-triton_collision_time_at_point_66_______________________________ (t_plasma_electron_triton_collision_profile66)_ 1.83227577342156048e-03 -Electron-triton_collision_time_at_point_67_______________________________ (t_plasma_electron_triton_collision_profile67)_ 1.83085653077640987e-03 -Electron-triton_collision_time_at_point_68_______________________________ (t_plasma_electron_triton_collision_profile68)_ 1.82941637987370513e-03 -Electron-triton_collision_time_at_point_69_______________________________ (t_plasma_electron_triton_collision_profile69)_ 1.82795534035579675e-03 -Electron-triton_collision_time_at_point_70_______________________________ (t_plasma_electron_triton_collision_profile70)_ 1.82647343217259535e-03 -Electron-triton_collision_time_at_point_71_______________________________ (t_plasma_electron_triton_collision_profile71)_ 1.82497067558232791e-03 -Electron-triton_collision_time_at_point_72_______________________________ (t_plasma_electron_triton_collision_profile72)_ 1.82344709115229617e-03 -Electron-triton_collision_time_at_point_73_______________________________ (t_plasma_electron_triton_collision_profile73)_ 1.82190269975965411e-03 -Electron-triton_collision_time_at_point_74_______________________________ (t_plasma_electron_triton_collision_profile74)_ 1.82033752259218675e-03 -Electron-triton_collision_time_at_point_75_______________________________ (t_plasma_electron_triton_collision_profile75)_ 1.81875158114911902e-03 -Electron-triton_collision_time_at_point_76_______________________________ (t_plasma_electron_triton_collision_profile76)_ 1.81714489724191827e-03 -Electron-triton_collision_time_at_point_77_______________________________ (t_plasma_electron_triton_collision_profile77)_ 1.81551749299512411e-03 -Electron-triton_collision_time_at_point_78_______________________________ (t_plasma_electron_triton_collision_profile78)_ 1.81386939084718000e-03 -Electron-triton_collision_time_at_point_79_______________________________ (t_plasma_electron_triton_collision_profile79)_ 1.81220061355128847e-03 -Electron-triton_collision_time_at_point_80_______________________________ (t_plasma_electron_triton_collision_profile80)_ 1.81051118417627005e-03 -Electron-triton_collision_time_at_point_81_______________________________ (t_plasma_electron_triton_collision_profile81)_ 1.80880112610743446e-03 -Electron-triton_collision_time_at_point_82_______________________________ (t_plasma_electron_triton_collision_profile82)_ 1.80707046304747886e-03 -Electron-triton_collision_time_at_point_83_______________________________ (t_plasma_electron_triton_collision_profile83)_ 1.80531921901737769e-03 -Electron-triton_collision_time_at_point_84_______________________________ (t_plasma_electron_triton_collision_profile84)_ 1.80354741835730536e-03 -Electron-triton_collision_time_at_point_85_______________________________ (t_plasma_electron_triton_collision_profile85)_ 1.80175508572756019e-03 -Electron-triton_collision_time_at_point_86_______________________________ (t_plasma_electron_triton_collision_profile86)_ 1.79994224610950247e-03 -Electron-triton_collision_time_at_point_87_______________________________ (t_plasma_electron_triton_collision_profile87)_ 1.79810892480651422e-03 -Electron-triton_collision_time_at_point_88_______________________________ (t_plasma_electron_triton_collision_profile88)_ 1.79625514744496191e-03 -Electron-triton_collision_time_at_point_89_______________________________ (t_plasma_electron_triton_collision_profile89)_ 1.79438093997518052e-03 -Electron-triton_collision_time_at_point_90_______________________________ (t_plasma_electron_triton_collision_profile90)_ 1.79248632867246753e-03 -Electron-triton_collision_time_at_point_91_______________________________ (t_plasma_electron_triton_collision_profile91)_ 1.79057134013808580e-03 -Electron-triton_collision_time_at_point_92_______________________________ (t_plasma_electron_triton_collision_profile92)_ 1.78863600130029486e-03 -Electron-triton_collision_time_at_point_93_______________________________ (t_plasma_electron_triton_collision_profile93)_ 1.78668033941537939e-03 -Electron-triton_collision_time_at_point_94_______________________________ (t_plasma_electron_triton_collision_profile94)_ 1.78470438206870135e-03 -Electron-triton_collision_time_at_point_95_______________________________ (t_plasma_electron_triton_collision_profile95)_ 1.78270815717576398e-03 -Electron-triton_collision_time_at_point_96_______________________________ (t_plasma_electron_triton_collision_profile96)_ 1.78069169298328777e-03 -Electron-triton_collision_time_at_point_97_______________________________ (t_plasma_electron_triton_collision_profile97)_ 1.77865501807030662e-03 -Electron-triton_collision_time_at_point_98_______________________________ (t_plasma_electron_triton_collision_profile98)_ 1.77659816134926912e-03 -Electron-triton_collision_time_at_point_99_______________________________ (t_plasma_electron_triton_collision_profile99)_ 1.77452115206716229e-03 -Electron-triton_collision_time_at_point_100______________________________ (t_plasma_electron_triton_collision_profile100)_ 1.77242401980664426e-03 -Electron-triton_collision_time_at_point_101______________________________ (t_plasma_electron_triton_collision_profile101)_ 1.77030679448719752e-03 -Electron-triton_collision_time_at_point_102______________________________ (t_plasma_electron_triton_collision_profile102)_ 1.76816950636628743e-03 -Electron-triton_collision_time_at_point_103______________________________ (t_plasma_electron_triton_collision_profile103)_ 1.76601218604054968e-03 -Electron-triton_collision_time_at_point_104______________________________ (t_plasma_electron_triton_collision_profile104)_ 1.76383486444697574e-03 -Electron-triton_collision_time_at_point_105______________________________ (t_plasma_electron_triton_collision_profile105)_ 1.76163757286412650e-03 -Electron-triton_collision_time_at_point_106______________________________ (t_plasma_electron_triton_collision_profile106)_ 1.75942034291335530e-03 -Electron-triton_collision_time_at_point_107______________________________ (t_plasma_electron_triton_collision_profile107)_ 1.75718320656004603e-03 -Electron-triton_collision_time_at_point_108______________________________ (t_plasma_electron_triton_collision_profile108)_ 1.75492619611487106e-03 -Electron-triton_collision_time_at_point_109______________________________ (t_plasma_electron_triton_collision_profile109)_ 1.75264934423505323e-03 -Electron-triton_collision_time_at_point_110______________________________ (t_plasma_electron_triton_collision_profile110)_ 1.75035268392566149e-03 -Electron-triton_collision_time_at_point_111______________________________ (t_plasma_electron_triton_collision_profile111)_ 1.74803624854090000e-03 -Electron-triton_collision_time_at_point_112______________________________ (t_plasma_electron_triton_collision_profile112)_ 1.74570007178543934e-03 -Electron-triton_collision_time_at_point_113______________________________ (t_plasma_electron_triton_collision_profile113)_ 1.74334418771573290e-03 -Electron-triton_collision_time_at_point_114______________________________ (t_plasma_electron_triton_collision_profile114)_ 1.74096863074137630e-03 -Electron-triton_collision_time_at_point_115______________________________ (t_plasma_electron_triton_collision_profile115)_ 1.73857343562646934e-03 -Electron-triton_collision_time_at_point_116______________________________ (t_plasma_electron_triton_collision_profile116)_ 1.73615863749099208e-03 -Electron-triton_collision_time_at_point_117______________________________ (t_plasma_electron_triton_collision_profile117)_ 1.73372427181220866e-03 -Electron-triton_collision_time_at_point_118______________________________ (t_plasma_electron_triton_collision_profile118)_ 1.73127037442607438e-03 -Electron-triton_collision_time_at_point_119______________________________ (t_plasma_electron_triton_collision_profile119)_ 1.72879698152866900e-03 -Electron-triton_collision_time_at_point_120______________________________ (t_plasma_electron_triton_collision_profile120)_ 1.72630412967764353e-03 -Electron-triton_collision_time_at_point_121______________________________ (t_plasma_electron_triton_collision_profile121)_ 1.72379185579368127e-03 -Electron-triton_collision_time_at_point_122______________________________ (t_plasma_electron_triton_collision_profile122)_ 1.72126019716197778e-03 -Electron-triton_collision_time_at_point_123______________________________ (t_plasma_electron_triton_collision_profile123)_ 1.71870919143374094e-03 -Electron-triton_collision_time_at_point_124______________________________ (t_plasma_electron_triton_collision_profile124)_ 1.71613887662770389e-03 -Electron-triton_collision_time_at_point_125______________________________ (t_plasma_electron_triton_collision_profile125)_ 1.71354929113165630e-03 -Electron-triton_collision_time_at_point_126______________________________ (t_plasma_electron_triton_collision_profile126)_ 1.71094047370399203e-03 -Electron-triton_collision_time_at_point_127______________________________ (t_plasma_electron_triton_collision_profile127)_ 1.70831246347528010e-03 -Electron-triton_collision_time_at_point_128______________________________ (t_plasma_electron_triton_collision_profile128)_ 1.70566529994984608e-03 -Electron-triton_collision_time_at_point_129______________________________ (t_plasma_electron_triton_collision_profile129)_ 1.70299902300737548e-03 -Electron-triton_collision_time_at_point_130______________________________ (t_plasma_electron_triton_collision_profile130)_ 1.70031367290453261e-03 -Electron-triton_collision_time_at_point_131______________________________ (t_plasma_electron_triton_collision_profile131)_ 1.69760929027660146e-03 -Electron-triton_collision_time_at_point_132______________________________ (t_plasma_electron_triton_collision_profile132)_ 1.69488591613914212e-03 -Electron-triton_collision_time_at_point_133______________________________ (t_plasma_electron_triton_collision_profile133)_ 1.69214359188966349e-03 -Electron-triton_collision_time_at_point_134______________________________ (t_plasma_electron_triton_collision_profile134)_ 1.68938235930932070e-03 -Electron-triton_collision_time_at_point_135______________________________ (t_plasma_electron_triton_collision_profile135)_ 1.68660226056462558e-03 -Electron-triton_collision_time_at_point_136______________________________ (t_plasma_electron_triton_collision_profile136)_ 1.68380333820918006e-03 -Electron-triton_collision_time_at_point_137______________________________ (t_plasma_electron_triton_collision_profile137)_ 1.68098563518542408e-03 -Electron-triton_collision_time_at_point_138______________________________ (t_plasma_electron_triton_collision_profile138)_ 1.67814919482640748e-03 -Electron-triton_collision_time_at_point_139______________________________ (t_plasma_electron_triton_collision_profile139)_ 1.67529406085758018e-03 -Electron-triton_collision_time_at_point_140______________________________ (t_plasma_electron_triton_collision_profile140)_ 1.67242027739859887e-03 -Electron-triton_collision_time_at_point_141______________________________ (t_plasma_electron_triton_collision_profile141)_ 1.66952788896515569e-03 -Electron-triton_collision_time_at_point_142______________________________ (t_plasma_electron_triton_collision_profile142)_ 1.66661694047083001e-03 -Electron-triton_collision_time_at_point_143______________________________ (t_plasma_electron_triton_collision_profile143)_ 1.66368747722895238e-03 -Electron-triton_collision_time_at_point_144______________________________ (t_plasma_electron_triton_collision_profile144)_ 1.66073954495449716e-03 -Electron-triton_collision_time_at_point_145______________________________ (t_plasma_electron_triton_collision_profile145)_ 1.65777318976598697e-03 -Electron-triton_collision_time_at_point_146______________________________ (t_plasma_electron_triton_collision_profile146)_ 1.65478845818743171e-03 -Electron-triton_collision_time_at_point_147______________________________ (t_plasma_electron_triton_collision_profile147)_ 1.65178539715026625e-03 -Electron-triton_collision_time_at_point_148______________________________ (t_plasma_electron_triton_collision_profile148)_ 1.64876405399533234e-03 -Electron-triton_collision_time_at_point_149______________________________ (t_plasma_electron_triton_collision_profile149)_ 1.64572447647486878e-03 -Electron-triton_collision_time_at_point_150______________________________ (t_plasma_electron_triton_collision_profile150)_ 1.64266671275452064e-03 -Electron-triton_collision_time_at_point_151______________________________ (t_plasma_electron_triton_collision_profile151)_ 1.63959081141538195e-03 -Electron-triton_collision_time_at_point_152______________________________ (t_plasma_electron_triton_collision_profile152)_ 1.63649682145604650e-03 -Electron-triton_collision_time_at_point_153______________________________ (t_plasma_electron_triton_collision_profile153)_ 1.63338479229469436e-03 -Electron-triton_collision_time_at_point_154______________________________ (t_plasma_electron_triton_collision_profile154)_ 1.63025477377118280e-03 -Electron-triton_collision_time_at_point_155______________________________ (t_plasma_electron_triton_collision_profile155)_ 1.62710681614918092e-03 -Electron-triton_collision_time_at_point_156______________________________ (t_plasma_electron_triton_collision_profile156)_ 1.62394097011830853e-03 -Electron-triton_collision_time_at_point_157______________________________ (t_plasma_electron_triton_collision_profile157)_ 1.62075728679630677e-03 -Electron-triton_collision_time_at_point_158______________________________ (t_plasma_electron_triton_collision_profile158)_ 1.61755581773123029e-03 -Electron-triton_collision_time_at_point_159______________________________ (t_plasma_electron_triton_collision_profile159)_ 1.61433661490366235e-03 -Electron-triton_collision_time_at_point_160______________________________ (t_plasma_electron_triton_collision_profile160)_ 1.61109973072895213e-03 -Electron-triton_collision_time_at_point_161______________________________ (t_plasma_electron_triton_collision_profile161)_ 1.60784521805947770e-03 -Electron-triton_collision_time_at_point_162______________________________ (t_plasma_electron_triton_collision_profile162)_ 1.60457313018692871e-03 -Electron-triton_collision_time_at_point_163______________________________ (t_plasma_electron_triton_collision_profile163)_ 1.60128352084462004e-03 -Electron-triton_collision_time_at_point_164______________________________ (t_plasma_electron_triton_collision_profile164)_ 1.59797644420982396e-03 -Electron-triton_collision_time_at_point_165______________________________ (t_plasma_electron_triton_collision_profile165)_ 1.59465195490612671e-03 -Electron-triton_collision_time_at_point_166______________________________ (t_plasma_electron_triton_collision_profile166)_ 1.59131010800581422e-03 -Electron-triton_collision_time_at_point_167______________________________ (t_plasma_electron_triton_collision_profile167)_ 1.58795095903227815e-03 -Electron-triton_collision_time_at_point_168______________________________ (t_plasma_electron_triton_collision_profile168)_ 1.58457456396244993e-03 -Electron-triton_collision_time_at_point_169______________________________ (t_plasma_electron_triton_collision_profile169)_ 1.58118097922925883e-03 -Electron-triton_collision_time_at_point_170______________________________ (t_plasma_electron_triton_collision_profile170)_ 1.57777026172411768e-03 -Electron-triton_collision_time_at_point_171______________________________ (t_plasma_electron_triton_collision_profile171)_ 1.57434246879943097e-03 -Electron-triton_collision_time_at_point_172______________________________ (t_plasma_electron_triton_collision_profile172)_ 1.57089765827113370e-03 -Electron-triton_collision_time_at_point_173______________________________ (t_plasma_electron_triton_collision_profile173)_ 1.56743588842124808e-03 -Electron-triton_collision_time_at_point_174______________________________ (t_plasma_electron_triton_collision_profile174)_ 1.56395721800048305e-03 -Electron-triton_collision_time_at_point_175______________________________ (t_plasma_electron_triton_collision_profile175)_ 1.56046170623084374e-03 -Electron-triton_collision_time_at_point_176______________________________ (t_plasma_electron_triton_collision_profile176)_ 1.55694941280827581e-03 -Electron-triton_collision_time_at_point_177______________________________ (t_plasma_electron_triton_collision_profile177)_ 1.55342039790533695e-03 -Electron-triton_collision_time_at_point_178______________________________ (t_plasma_electron_triton_collision_profile178)_ 1.54987472217389959e-03 -Electron-triton_collision_time_at_point_179______________________________ (t_plasma_electron_triton_collision_profile179)_ 1.54631244674787154e-03 -Electron-triton_collision_time_at_point_180______________________________ (t_plasma_electron_triton_collision_profile180)_ 1.54273363324595732e-03 -Electron-triton_collision_time_at_point_181______________________________ (t_plasma_electron_triton_collision_profile181)_ 1.53913834377443839e-03 -Electron-triton_collision_time_at_point_182______________________________ (t_plasma_electron_triton_collision_profile182)_ 1.53552664092998763e-03 -Electron-triton_collision_time_at_point_183______________________________ (t_plasma_electron_triton_collision_profile183)_ 1.53189858780251181e-03 -Electron-triton_collision_time_at_point_184______________________________ (t_plasma_electron_triton_collision_profile184)_ 1.52825424797802152e-03 -Electron-triton_collision_time_at_point_185______________________________ (t_plasma_electron_triton_collision_profile185)_ 1.52459368554153617e-03 -Electron-triton_collision_time_at_point_186______________________________ (t_plasma_electron_triton_collision_profile186)_ 1.52091696508001176e-03 -Electron-triton_collision_time_at_point_187______________________________ (t_plasma_electron_triton_collision_profile187)_ 1.51722415168530577e-03 -Electron-triton_collision_time_at_point_188______________________________ (t_plasma_electron_triton_collision_profile188)_ 1.51351531095716822e-03 -Electron-triton_collision_time_at_point_189______________________________ (t_plasma_electron_triton_collision_profile189)_ 1.50979050900626921e-03 -Electron-triton_collision_time_at_point_190______________________________ (t_plasma_electron_triton_collision_profile190)_ 1.50604981245724837e-03 -Electron-triton_collision_time_at_point_191______________________________ (t_plasma_electron_triton_collision_profile191)_ 1.50229328845180826e-03 -Electron-triton_collision_time_at_point_192______________________________ (t_plasma_electron_triton_collision_profile192)_ 1.49852100465183019e-03 -Electron-triton_collision_time_at_point_193______________________________ (t_plasma_electron_triton_collision_profile193)_ 1.49473302924252728e-03 -Electron-triton_collision_time_at_point_194______________________________ (t_plasma_electron_triton_collision_profile194)_ 1.49092943093562746e-03 -Electron-triton_collision_time_at_point_195______________________________ (t_plasma_electron_triton_collision_profile195)_ 1.48711027897259463e-03 -Electron-triton_collision_time_at_point_196______________________________ (t_plasma_electron_triton_collision_profile196)_ 1.48327564312787630e-03 -Electron-triton_collision_time_at_point_197______________________________ (t_plasma_electron_triton_collision_profile197)_ 1.47942559371219045e-03 -Electron-triton_collision_time_at_point_198______________________________ (t_plasma_electron_triton_collision_profile198)_ 1.47556020157584553e-03 -Electron-triton_collision_time_at_point_199______________________________ (t_plasma_electron_triton_collision_profile199)_ 1.47167953811209117e-03 -Electron-triton_collision_time_at_point_200______________________________ (t_plasma_electron_triton_collision_profile200)_ 1.46778367526051445e-03 -Electron-triton_collision_time_at_point_201______________________________ (t_plasma_electron_triton_collision_profile201)_ 1.46387268551045370e-03 -Electron-triton_collision_time_at_point_202______________________________ (t_plasma_electron_triton_collision_profile202)_ 1.45994664190447071e-03 -Electron-triton_collision_time_at_point_203______________________________ (t_plasma_electron_triton_collision_profile203)_ 1.45600561804183626e-03 -Electron-triton_collision_time_at_point_204______________________________ (t_plasma_electron_triton_collision_profile204)_ 1.45204968808207002e-03 -Electron-triton_collision_time_at_point_205______________________________ (t_plasma_electron_triton_collision_profile205)_ 1.44807892674850953e-03 -Electron-triton_collision_time_at_point_206______________________________ (t_plasma_electron_triton_collision_profile206)_ 1.44409340933191496e-03 -Electron-triton_collision_time_at_point_207______________________________ (t_plasma_electron_triton_collision_profile207)_ 1.44009321169411703e-03 -Electron-triton_collision_time_at_point_208______________________________ (t_plasma_electron_triton_collision_profile208)_ 1.43607841027170173e-03 -Electron-triton_collision_time_at_point_209______________________________ (t_plasma_electron_triton_collision_profile209)_ 1.43204908207972791e-03 -Electron-triton_collision_time_at_point_210______________________________ (t_plasma_electron_triton_collision_profile210)_ 1.42800530471549523e-03 -Electron-triton_collision_time_at_point_211______________________________ (t_plasma_electron_triton_collision_profile211)_ 1.42394715636233894e-03 -Electron-triton_collision_time_at_point_212______________________________ (t_plasma_electron_triton_collision_profile212)_ 1.41987471579347788e-03 -Electron-triton_collision_time_at_point_213______________________________ (t_plasma_electron_triton_collision_profile213)_ 1.41578806237589033e-03 -Electron-triton_collision_time_at_point_214______________________________ (t_plasma_electron_triton_collision_profile214)_ 1.41168727607424160e-03 -Electron-triton_collision_time_at_point_215______________________________ (t_plasma_electron_triton_collision_profile215)_ 1.40757243745484638e-03 -Electron-triton_collision_time_at_point_216______________________________ (t_plasma_electron_triton_collision_profile216)_ 1.40344362768967702e-03 -Electron-triton_collision_time_at_point_217______________________________ (t_plasma_electron_triton_collision_profile217)_ 1.39930092856040914e-03 -Electron-triton_collision_time_at_point_218______________________________ (t_plasma_electron_triton_collision_profile218)_ 1.39514442246251838e-03 -Electron-triton_collision_time_at_point_219______________________________ (t_plasma_electron_triton_collision_profile219)_ 1.39097419240941317e-03 -Electron-triton_collision_time_at_point_220______________________________ (t_plasma_electron_triton_collision_profile220)_ 1.38679032203661802e-03 -Electron-triton_collision_time_at_point_221______________________________ (t_plasma_electron_triton_collision_profile221)_ 1.38259289560599408e-03 -Electron-triton_collision_time_at_point_222______________________________ (t_plasma_electron_triton_collision_profile222)_ 1.37838199801001114e-03 -Electron-triton_collision_time_at_point_223______________________________ (t_plasma_electron_triton_collision_profile223)_ 1.37415771477606427e-03 -Electron-triton_collision_time_at_point_224______________________________ (t_plasma_electron_triton_collision_profile224)_ 1.36992013207083338e-03 -Electron-triton_collision_time_at_point_225______________________________ (t_plasma_electron_triton_collision_profile225)_ 1.36566933670469529e-03 -Electron-triton_collision_time_at_point_226______________________________ (t_plasma_electron_triton_collision_profile226)_ 1.36140541613617651e-03 -Electron-triton_collision_time_at_point_227______________________________ (t_plasma_electron_triton_collision_profile227)_ 1.35712845847646099e-03 -Electron-triton_collision_time_at_point_228______________________________ (t_plasma_electron_triton_collision_profile228)_ 1.35283855249394153e-03 -Electron-triton_collision_time_at_point_229______________________________ (t_plasma_electron_triton_collision_profile229)_ 1.34853578761882399e-03 -Electron-triton_collision_time_at_point_230______________________________ (t_plasma_electron_triton_collision_profile230)_ 1.34422025394777766e-03 -Electron-triton_collision_time_at_point_231______________________________ (t_plasma_electron_triton_collision_profile231)_ 1.33989204224864173e-03 -Electron-triton_collision_time_at_point_232______________________________ (t_plasma_electron_triton_collision_profile232)_ 1.33555124396517633e-03 -Electron-triton_collision_time_at_point_233______________________________ (t_plasma_electron_triton_collision_profile233)_ 1.33119795122187286e-03 -Electron-triton_collision_time_at_point_234______________________________ (t_plasma_electron_triton_collision_profile234)_ 1.32683225682880910e-03 -Electron-triton_collision_time_at_point_235______________________________ (t_plasma_electron_triton_collision_profile235)_ 1.32245425428656645e-03 -Electron-triton_collision_time_at_point_236______________________________ (t_plasma_electron_triton_collision_profile236)_ 1.31806403779119279e-03 -Electron-triton_collision_time_at_point_237______________________________ (t_plasma_electron_triton_collision_profile237)_ 1.31366170223922514e-03 -Electron-triton_collision_time_at_point_238______________________________ (t_plasma_electron_triton_collision_profile238)_ 1.30924734323276983e-03 -Electron-triton_collision_time_at_point_239______________________________ (t_plasma_electron_triton_collision_profile239)_ 1.30482105708462789e-03 -Electron-triton_collision_time_at_point_240______________________________ (t_plasma_electron_triton_collision_profile240)_ 1.30038294082349560e-03 -Electron-triton_collision_time_at_point_241______________________________ (t_plasma_electron_triton_collision_profile241)_ 1.29593309219920528e-03 -Electron-triton_collision_time_at_point_242______________________________ (t_plasma_electron_triton_collision_profile242)_ 1.29147160968803442e-03 -Electron-triton_collision_time_at_point_243______________________________ (t_plasma_electron_triton_collision_profile243)_ 1.28699859249807374e-03 -Electron-triton_collision_time_at_point_244______________________________ (t_plasma_electron_triton_collision_profile244)_ 1.28251414057465219e-03 -Electron-triton_collision_time_at_point_245______________________________ (t_plasma_electron_triton_collision_profile245)_ 1.27801835460582464e-03 -Electron-triton_collision_time_at_point_246______________________________ (t_plasma_electron_triton_collision_profile246)_ 1.27351133602792354e-03 -Electron-triton_collision_time_at_point_247______________________________ (t_plasma_electron_triton_collision_profile247)_ 1.26899318703117066e-03 -Electron-triton_collision_time_at_point_248______________________________ (t_plasma_electron_triton_collision_profile248)_ 1.26446401056535141e-03 -Electron-triton_collision_time_at_point_249______________________________ (t_plasma_electron_triton_collision_profile249)_ 1.25992391034556285e-03 -Electron-triton_collision_time_at_point_250______________________________ (t_plasma_electron_triton_collision_profile250)_ 1.25537299085801547e-03 -Electron-triton_collision_time_at_point_251______________________________ (t_plasma_electron_triton_collision_profile251)_ 1.25081135736590889e-03 -Electron-triton_collision_time_at_point_252______________________________ (t_plasma_electron_triton_collision_profile252)_ 1.24623911591537377e-03 -Electron-triton_collision_time_at_point_253______________________________ (t_plasma_electron_triton_collision_profile253)_ 1.24165637334148148e-03 -Electron-triton_collision_time_at_point_254______________________________ (t_plasma_electron_triton_collision_profile254)_ 1.23706323727432394e-03 -Electron-triton_collision_time_at_point_255______________________________ (t_plasma_electron_triton_collision_profile255)_ 1.23245981614516901e-03 -Electron-triton_collision_time_at_point_256______________________________ (t_plasma_electron_triton_collision_profile256)_ 1.22784621919267692e-03 -Electron-triton_collision_time_at_point_257______________________________ (t_plasma_electron_triton_collision_profile257)_ 1.22322255646920008e-03 -Electron-triton_collision_time_at_point_258______________________________ (t_plasma_electron_triton_collision_profile258)_ 1.21858893884715220e-03 -Electron-triton_collision_time_at_point_259______________________________ (t_plasma_electron_triton_collision_profile259)_ 1.21394547802545442e-03 -Electron-triton_collision_time_at_point_260______________________________ (t_plasma_electron_triton_collision_profile260)_ 1.20929228653605795e-03 -Electron-triton_collision_time_at_point_261______________________________ (t_plasma_electron_triton_collision_profile261)_ 1.20462947775054098e-03 -Electron-triton_collision_time_at_point_262______________________________ (t_plasma_electron_triton_collision_profile262)_ 1.19995716588679018e-03 -Electron-triton_collision_time_at_point_263______________________________ (t_plasma_electron_triton_collision_profile263)_ 1.19527546601575787e-03 -Electron-triton_collision_time_at_point_264______________________________ (t_plasma_electron_triton_collision_profile264)_ 1.19058449406830619e-03 -Electron-triton_collision_time_at_point_265______________________________ (t_plasma_electron_triton_collision_profile265)_ 1.18588436684212580e-03 -Electron-triton_collision_time_at_point_266______________________________ (t_plasma_electron_triton_collision_profile266)_ 1.18117520200874699e-03 -Electron-triton_collision_time_at_point_267______________________________ (t_plasma_electron_triton_collision_profile267)_ 1.17645711812063383e-03 -Electron-triton_collision_time_at_point_268______________________________ (t_plasma_electron_triton_collision_profile268)_ 1.17173023461836570e-03 -Electron-triton_collision_time_at_point_269______________________________ (t_plasma_electron_triton_collision_profile269)_ 1.16699467183790082e-03 -Electron-triton_collision_time_at_point_270______________________________ (t_plasma_electron_triton_collision_profile270)_ 1.16225055101794664e-03 -Electron-triton_collision_time_at_point_271______________________________ (t_plasma_electron_triton_collision_profile271)_ 1.15749799430740243e-03 -Electron-triton_collision_time_at_point_272______________________________ (t_plasma_electron_triton_collision_profile272)_ 1.15273712477291057e-03 -Electron-triton_collision_time_at_point_273______________________________ (t_plasma_electron_triton_collision_profile273)_ 1.14796806640649280e-03 -Electron-triton_collision_time_at_point_274______________________________ (t_plasma_electron_triton_collision_profile274)_ 1.14319094413329399e-03 -Electron-triton_collision_time_at_point_275______________________________ (t_plasma_electron_triton_collision_profile275)_ 1.13840588381940752e-03 -Electron-triton_collision_time_at_point_276______________________________ (t_plasma_electron_triton_collision_profile276)_ 1.13361301227982267e-03 -Electron-triton_collision_time_at_point_277______________________________ (t_plasma_electron_triton_collision_profile277)_ 1.12881245728645553e-03 -Electron-triton_collision_time_at_point_278______________________________ (t_plasma_electron_triton_collision_profile278)_ 1.12400434757629593e-03 -Electron-triton_collision_time_at_point_279______________________________ (t_plasma_electron_triton_collision_profile279)_ 1.11918881285965341e-03 -Electron-triton_collision_time_at_point_280______________________________ (t_plasma_electron_triton_collision_profile280)_ 1.11436598382851754e-03 -Electron-triton_collision_time_at_point_281______________________________ (t_plasma_electron_triton_collision_profile281)_ 1.10953599216502097e-03 -Electron-triton_collision_time_at_point_282______________________________ (t_plasma_electron_triton_collision_profile282)_ 1.10469897055002261e-03 -Electron-triton_collision_time_at_point_283______________________________ (t_plasma_electron_triton_collision_profile283)_ 1.09985505267179949e-03 -Electron-triton_collision_time_at_point_284______________________________ (t_plasma_electron_triton_collision_profile284)_ 1.09500437323485872e-03 -Electron-triton_collision_time_at_point_285______________________________ (t_plasma_electron_triton_collision_profile285)_ 1.09014706796886846e-03 -Electron-triton_collision_time_at_point_286______________________________ (t_plasma_electron_triton_collision_profile286)_ 1.08528327363770737e-03 -Electron-triton_collision_time_at_point_287______________________________ (t_plasma_electron_triton_collision_profile287)_ 1.08041312804864429e-03 -Electron-triton_collision_time_at_point_288______________________________ (t_plasma_electron_triton_collision_profile288)_ 1.07553677006163467e-03 -Electron-triton_collision_time_at_point_289______________________________ (t_plasma_electron_triton_collision_profile289)_ 1.07065433959876110e-03 -Electron-triton_collision_time_at_point_290______________________________ (t_plasma_electron_triton_collision_profile290)_ 1.06576597765378777e-03 -Electron-triton_collision_time_at_point_291______________________________ (t_plasma_electron_triton_collision_profile291)_ 1.06087182630186625e-03 -Electron-triton_collision_time_at_point_292______________________________ (t_plasma_electron_triton_collision_profile292)_ 1.05597202870936872e-03 -Electron-triton_collision_time_at_point_293______________________________ (t_plasma_electron_triton_collision_profile293)_ 1.05106672914386618e-03 -Electron-triton_collision_time_at_point_294______________________________ (t_plasma_electron_triton_collision_profile294)_ 1.04615607298424854e-03 -Electron-triton_collision_time_at_point_295______________________________ (t_plasma_electron_triton_collision_profile295)_ 1.04124020673099530e-03 -Electron-triton_collision_time_at_point_296______________________________ (t_plasma_electron_triton_collision_profile296)_ 1.03631927801659039e-03 -Electron-triton_collision_time_at_point_297______________________________ (t_plasma_electron_triton_collision_profile297)_ 1.03139343561609942e-03 -Electron-triton_collision_time_at_point_298______________________________ (t_plasma_electron_triton_collision_profile298)_ 1.02646282945789420e-03 -Electron-triton_collision_time_at_point_299______________________________ (t_plasma_electron_triton_collision_profile299)_ 1.02152761063454894e-03 -Electron-triton_collision_time_at_point_300______________________________ (t_plasma_electron_triton_collision_profile300)_ 1.01658793141389133e-03 -Electron-triton_collision_time_at_point_301______________________________ (t_plasma_electron_triton_collision_profile301)_ 1.01164394525023117e-03 -Electron-triton_collision_time_at_point_302______________________________ (t_plasma_electron_triton_collision_profile302)_ 1.00669580679575406e-03 -Electron-triton_collision_time_at_point_303______________________________ (t_plasma_electron_triton_collision_profile303)_ 1.00174367191209934e-03 -Electron-triton_collision_time_at_point_304______________________________ (t_plasma_electron_triton_collision_profile304)_ 9.96787697682113101e-04 -Electron-triton_collision_time_at_point_305______________________________ (t_plasma_electron_triton_collision_profile305)_ 9.91828042421792145e-04 -Electron-triton_collision_time_at_point_306______________________________ (t_plasma_electron_triton_collision_profile306)_ 9.86864865692415596e-04 -Electron-triton_collision_time_at_point_307______________________________ (t_plasma_electron_triton_collision_profile307)_ 9.81898328312874645e-04 -Electron-triton_collision_time_at_point_308______________________________ (t_plasma_electron_triton_collision_profile308)_ 9.76928592372198340e-04 -Electron-triton_collision_time_at_point_309______________________________ (t_plasma_electron_triton_collision_profile309)_ 9.71955821242291009e-04 -Electron-triton_collision_time_at_point_310______________________________ (t_plasma_electron_triton_collision_profile310)_ 9.66980179590876880e-04 -Electron-triton_collision_time_at_point_311______________________________ (t_plasma_electron_triton_collision_profile311)_ 9.62001833394664674e-04 -Electron-triton_collision_time_at_point_312______________________________ (t_plasma_electron_triton_collision_profile312)_ 9.57020949952729376e-04 -Electron-triton_collision_time_at_point_313______________________________ (t_plasma_electron_triton_collision_profile313)_ 9.52037697900132845e-04 -Electron-triton_collision_time_at_point_314______________________________ (t_plasma_electron_triton_collision_profile314)_ 9.47052247221768324e-04 -Electron-triton_collision_time_at_point_315______________________________ (t_plasma_electron_triton_collision_profile315)_ 9.42064769266456143e-04 -Electron-triton_collision_time_at_point_316______________________________ (t_plasma_electron_triton_collision_profile316)_ 9.37075436761281976e-04 -Electron-triton_collision_time_at_point_317______________________________ (t_plasma_electron_triton_collision_profile317)_ 9.32084423826194100e-04 -Electron-triton_collision_time_at_point_318______________________________ (t_plasma_electron_triton_collision_profile318)_ 9.27091905988865206e-04 -Electron-triton_collision_time_at_point_319______________________________ (t_plasma_electron_triton_collision_profile319)_ 9.22098060199819623e-04 -Electron-triton_collision_time_at_point_320______________________________ (t_plasma_electron_triton_collision_profile320)_ 9.17103064847846552e-04 -Electron-triton_collision_time_at_point_321______________________________ (t_plasma_electron_triton_collision_profile321)_ 9.12107099775695952e-04 -Electron-triton_collision_time_at_point_322______________________________ (t_plasma_electron_triton_collision_profile322)_ 9.07110346296072473e-04 -Electron-triton_collision_time_at_point_323______________________________ (t_plasma_electron_triton_collision_profile323)_ 9.02112987207935786e-04 -Electron-triton_collision_time_at_point_324______________________________ (t_plasma_electron_triton_collision_profile324)_ 8.97115206813113163e-04 -Electron-triton_collision_time_at_point_325______________________________ (t_plasma_electron_triton_collision_profile325)_ 8.92117190933238834e-04 -Electron-triton_collision_time_at_point_326______________________________ (t_plasma_electron_triton_collision_profile326)_ 8.87119126927029232e-04 -Electron-triton_collision_time_at_point_327______________________________ (t_plasma_electron_triton_collision_profile327)_ 8.82121203707900625e-04 -Electron-triton_collision_time_at_point_328______________________________ (t_plasma_electron_triton_collision_profile328)_ 8.77123611761946925e-04 -Electron-triton_collision_time_at_point_329______________________________ (t_plasma_electron_triton_collision_profile329)_ 8.72126543166288075e-04 -Electron-triton_collision_time_at_point_330______________________________ (t_plasma_electron_triton_collision_profile330)_ 8.67130191607794003e-04 -Electron-triton_collision_time_at_point_331______________________________ (t_plasma_electron_triton_collision_profile331)_ 8.62134752402208865e-04 -Electron-triton_collision_time_at_point_332______________________________ (t_plasma_electron_triton_collision_profile332)_ 8.57140422513678608e-04 -Electron-triton_collision_time_at_point_333______________________________ (t_plasma_electron_triton_collision_profile333)_ 8.52147400574702787e-04 -Electron-triton_collision_time_at_point_334______________________________ (t_plasma_electron_triton_collision_profile334)_ 8.47155886906520925e-04 -Electron-triton_collision_time_at_point_335______________________________ (t_plasma_electron_triton_collision_profile335)_ 8.42166083539951744e-04 -Electron-triton_collision_time_at_point_336______________________________ (t_plasma_electron_triton_collision_profile336)_ 8.37178194236700671e-04 -Electron-triton_collision_time_at_point_337______________________________ (t_plasma_electron_triton_collision_profile337)_ 8.32192424511150343e-04 -Electron-triton_collision_time_at_point_338______________________________ (t_plasma_electron_triton_collision_profile338)_ 8.27208981652655063e-04 -Electron-triton_collision_time_at_point_339______________________________ (t_plasma_electron_triton_collision_profile339)_ 8.22228074748355660e-04 -Electron-triton_collision_time_at_point_340______________________________ (t_plasma_electron_triton_collision_profile340)_ 8.17249914706535160e-04 -Electron-triton_collision_time_at_point_341______________________________ (t_plasma_electron_triton_collision_profile341)_ 8.12274714280533465e-04 -Electron-triton_collision_time_at_point_342______________________________ (t_plasma_electron_triton_collision_profile342)_ 8.07302688093246962e-04 -Electron-triton_collision_time_at_point_343______________________________ (t_plasma_electron_triton_collision_profile343)_ 8.02334052662230729e-04 -Electron-triton_collision_time_at_point_344______________________________ (t_plasma_electron_triton_collision_profile344)_ 7.97369026425429799e-04 -Electron-triton_collision_time_at_point_345______________________________ (t_plasma_electron_triton_collision_profile345)_ 7.92407829767558772e-04 -Electron-triton_collision_time_at_point_346______________________________ (t_plasma_electron_triton_collision_profile346)_ 7.87450685047170226e-04 -Electron-triton_collision_time_at_point_347______________________________ (t_plasma_electron_triton_collision_profile347)_ 7.82497816624417013e-04 -Electron-triton_collision_time_at_point_348______________________________ (t_plasma_electron_triton_collision_profile348)_ 7.77549450889558538e-04 -Electron-triton_collision_time_at_point_349______________________________ (t_plasma_electron_triton_collision_profile349)_ 7.72605816292226948e-04 -Electron-triton_collision_time_at_point_350______________________________ (t_plasma_electron_triton_collision_profile350)_ 7.67667143371490441e-04 -Electron-triton_collision_time_at_point_351______________________________ (t_plasma_electron_triton_collision_profile351)_ 7.62733664786748467e-04 -Electron-triton_collision_time_at_point_352______________________________ (t_plasma_electron_triton_collision_profile352)_ 7.57805615349488554e-04 -Electron-triton_collision_time_at_point_353______________________________ (t_plasma_electron_triton_collision_profile353)_ 7.52883232055950717e-04 -Electron-triton_collision_time_at_point_354______________________________ (t_plasma_electron_triton_collision_profile354)_ 7.47966754120724933e-04 -Electron-triton_collision_time_at_point_355______________________________ (t_plasma_electron_triton_collision_profile355)_ 7.43056423011338924e-04 -Electron-triton_collision_time_at_point_356______________________________ (t_plasma_electron_triton_collision_profile356)_ 7.38152482483864550e-04 -Electron-triton_collision_time_at_point_357______________________________ (t_plasma_electron_triton_collision_profile357)_ 7.33255178619599836e-04 -Electron-triton_collision_time_at_point_358______________________________ (t_plasma_electron_triton_collision_profile358)_ 7.28364759862867948e-04 -Electron-triton_collision_time_at_point_359______________________________ (t_plasma_electron_triton_collision_profile359)_ 7.23481477059986669e-04 -Electron-triton_collision_time_at_point_360______________________________ (t_plasma_electron_triton_collision_profile360)_ 7.18605583499463464e-04 -Electron-triton_collision_time_at_point_361______________________________ (t_plasma_electron_triton_collision_profile361)_ 7.13737334953467076e-04 -Electron-triton_collision_time_at_point_362______________________________ (t_plasma_electron_triton_collision_profile362)_ 7.08876989720644084e-04 -Electron-triton_collision_time_at_point_363______________________________ (t_plasma_electron_triton_collision_profile363)_ 7.04024808670337000e-04 -Electron-triton_collision_time_at_point_364______________________________ (t_plasma_electron_triton_collision_profile364)_ 6.99181055288273091e-04 -Electron-triton_collision_time_at_point_365______________________________ (t_plasma_electron_triton_collision_profile365)_ 6.94345995723797977e-04 -Electron-triton_collision_time_at_point_366______________________________ (t_plasma_electron_triton_collision_profile366)_ 6.89519898838720775e-04 -Electron-triton_collision_time_at_point_367______________________________ (t_plasma_electron_triton_collision_profile367)_ 6.84703036257862537e-04 -Electron-triton_collision_time_at_point_368______________________________ (t_plasma_electron_triton_collision_profile368)_ 6.79895682421379735e-04 -Electron-triton_collision_time_at_point_369______________________________ (t_plasma_electron_triton_collision_profile369)_ 6.75098114638960603e-04 -Electron-triton_collision_time_at_point_370______________________________ (t_plasma_electron_triton_collision_profile370)_ 6.70310613145987024e-04 -Electron-triton_collision_time_at_point_371______________________________ (t_plasma_electron_triton_collision_profile371)_ 6.65533461161758573e-04 -Electron-triton_collision_time_at_point_372______________________________ (t_plasma_electron_triton_collision_profile372)_ 6.60766944949891036e-04 -Electron-triton_collision_time_at_point_373______________________________ (t_plasma_electron_triton_collision_profile373)_ 6.56011353880998579e-04 -Electron-triton_collision_time_at_point_374______________________________ (t_plasma_electron_triton_collision_profile374)_ 6.51266980497783613e-04 -Electron-triton_collision_time_at_point_375______________________________ (t_plasma_electron_triton_collision_profile375)_ 6.46534120582655013e-04 -Electron-triton_collision_time_at_point_376______________________________ (t_plasma_electron_triton_collision_profile376)_ 6.41813073228021170e-04 -Electron-triton_collision_time_at_point_377______________________________ (t_plasma_electron_triton_collision_profile377)_ 6.37104140909391351e-04 -Electron-triton_collision_time_at_point_378______________________________ (t_plasma_electron_triton_collision_profile378)_ 6.32407629561449174e-04 -Electron-triton_collision_time_at_point_379______________________________ (t_plasma_electron_triton_collision_profile379)_ 6.27723848657254233e-04 -Electron-triton_collision_time_at_point_380______________________________ (t_plasma_electron_triton_collision_profile380)_ 6.23053111290752912e-04 -Electron-triton_collision_time_at_point_381______________________________ (t_plasma_electron_triton_collision_profile381)_ 6.18395734262780017e-04 -Electron-triton_collision_time_at_point_382______________________________ (t_plasma_electron_triton_collision_profile382)_ 6.13752038170752327e-04 -Electron-triton_collision_time_at_point_383______________________________ (t_plasma_electron_triton_collision_profile383)_ 6.09122347502264187e-04 -Electron-triton_collision_time_at_point_384______________________________ (t_plasma_electron_triton_collision_profile384)_ 6.04506990732816630e-04 -Electron-triton_collision_time_at_point_385______________________________ (t_plasma_electron_triton_collision_profile385)_ 5.99906300427916362e-04 -Electron-triton_collision_time_at_point_386______________________________ (t_plasma_electron_triton_collision_profile386)_ 5.95320613349803766e-04 -Electron-triton_collision_time_at_point_387______________________________ (t_plasma_electron_triton_collision_profile387)_ 5.90750270569091783e-04 -Electron-triton_collision_time_at_point_388______________________________ (t_plasma_electron_triton_collision_profile388)_ 5.86195617581610384e-04 -Electron-triton_collision_time_at_point_389______________________________ (t_plasma_electron_triton_collision_profile389)_ 5.81657004430769300e-04 -Electron-triton_collision_time_at_point_390______________________________ (t_plasma_electron_triton_collision_profile390)_ 5.77134785835784338e-04 -Electron-triton_collision_time_at_point_391______________________________ (t_plasma_electron_triton_collision_profile391)_ 5.72629321326135685e-04 -Electron-triton_collision_time_at_point_392______________________________ (t_plasma_electron_triton_collision_profile392)_ 5.68140975382640614e-04 -Electron-triton_collision_time_at_point_393______________________________ (t_plasma_electron_triton_collision_profile393)_ 5.63670117585573496e-04 -Electron-triton_collision_time_at_point_394______________________________ (t_plasma_electron_triton_collision_profile394)_ 5.59217122770275157e-04 -Electron-triton_collision_time_at_point_395______________________________ (t_plasma_electron_triton_collision_profile395)_ 5.54782371190747710e-04 -Electron-triton_collision_time_at_point_396______________________________ (t_plasma_electron_triton_collision_profile396)_ 5.50366248691753438e-04 -Electron-triton_collision_time_at_point_397______________________________ (t_plasma_electron_triton_collision_profile397)_ 5.45969146889988227e-04 -Electron-triton_collision_time_at_point_398______________________________ (t_plasma_electron_triton_collision_profile398)_ 5.41591463364932482e-04 -Electron-triton_collision_time_at_point_399______________________________ (t_plasma_electron_triton_collision_profile399)_ 5.37233601860047610e-04 -Electron-triton_collision_time_at_point_400______________________________ (t_plasma_electron_triton_collision_profile400)_ 5.32895972495018460e-04 -Electron-triton_collision_time_at_point_401______________________________ (t_plasma_electron_triton_collision_profile401)_ 5.28578991989817255e-04 -Electron-triton_collision_time_at_point_402______________________________ (t_plasma_electron_triton_collision_profile402)_ 5.24283083901418210e-04 -Electron-triton_collision_time_at_point_403______________________________ (t_plasma_electron_triton_collision_profile403)_ 5.20008678874069020e-04 -Electron-triton_collision_time_at_point_404______________________________ (t_plasma_electron_triton_collision_profile404)_ 5.15756214904086957e-04 -Electron-triton_collision_time_at_point_405______________________________ (t_plasma_electron_triton_collision_profile405)_ 5.11526137620251344e-04 -Electron-triton_collision_time_at_point_406______________________________ (t_plasma_electron_triton_collision_profile406)_ 5.07318900580937932e-04 -Electron-triton_collision_time_at_point_407______________________________ (t_plasma_electron_triton_collision_profile407)_ 5.03134965589254845e-04 -Electron-triton_collision_time_at_point_408______________________________ (t_plasma_electron_triton_collision_profile408)_ 4.98974803027537380e-04 -Electron-triton_collision_time_at_point_409______________________________ (t_plasma_electron_triton_collision_profile409)_ 4.94838892212703832e-04 -Electron-triton_collision_time_at_point_410______________________________ (t_plasma_electron_triton_collision_profile410)_ 4.90727721774084449e-04 -Electron-triton_collision_time_at_point_411______________________________ (t_plasma_electron_triton_collision_profile411)_ 4.86641790055508867e-04 -Electron-triton_collision_time_at_point_412______________________________ (t_plasma_electron_triton_collision_profile412)_ 4.82581605543591662e-04 -Electron-triton_collision_time_at_point_413______________________________ (t_plasma_electron_triton_collision_profile413)_ 4.78547687324352663e-04 -Electron-triton_collision_time_at_point_414______________________________ (t_plasma_electron_triton_collision_profile414)_ 4.74540565570500121e-04 -Electron-triton_collision_time_at_point_415______________________________ (t_plasma_electron_triton_collision_profile415)_ 4.70560782061956015e-04 -Electron-triton_collision_time_at_point_416______________________________ (t_plasma_electron_triton_collision_profile416)_ 4.66608890742447387e-04 -Electron-triton_collision_time_at_point_417______________________________ (t_plasma_electron_triton_collision_profile417)_ 4.62685458315275548e-04 -Electron-triton_collision_time_at_point_418______________________________ (t_plasma_electron_triton_collision_profile418)_ 4.58791064881717084e-04 -Electron-triton_collision_time_at_point_419______________________________ (t_plasma_electron_triton_collision_profile419)_ 4.54926304625847525e-04 -Electron-triton_collision_time_at_point_420______________________________ (t_plasma_electron_triton_collision_profile420)_ 4.51091786550018891e-04 -Electron-triton_collision_time_at_point_421______________________________ (t_plasma_electron_triton_collision_profile421)_ 4.47288135265657240e-04 -Electron-triton_collision_time_at_point_422______________________________ (t_plasma_electron_triton_collision_profile422)_ 4.43515991844597188e-04 -Electron-triton_collision_time_at_point_423______________________________ (t_plasma_electron_triton_collision_profile423)_ 4.39776014736743956e-04 -Electron-triton_collision_time_at_point_424______________________________ (t_plasma_electron_triton_collision_profile424)_ 4.36068880760535752e-04 -Electron-triton_collision_time_at_point_425______________________________ (t_plasma_electron_triton_collision_profile425)_ 4.32395286173462663e-04 -Electron-triton_collision_time_at_point_426______________________________ (t_plasma_electron_triton_collision_profile426)_ 4.28755947830753185e-04 -Electron-triton_collision_time_at_point_427______________________________ (t_plasma_electron_triton_collision_profile427)_ 4.25151604441368616e-04 -Electron-triton_collision_time_at_point_428______________________________ (t_plasma_electron_triton_collision_profile428)_ 4.21583017931600166e-04 -Electron-triton_collision_time_at_point_429______________________________ (t_plasma_electron_triton_collision_profile429)_ 4.18050974927892916e-04 -Electron-triton_collision_time_at_point_430______________________________ (t_plasma_electron_triton_collision_profile430)_ 4.14556288372079206e-04 -Electron-triton_collision_time_at_point_431______________________________ (t_plasma_electron_triton_collision_profile431)_ 4.11099799283987468e-04 -Electron-triton_collision_time_at_point_432______________________________ (t_plasma_electron_triton_collision_profile432)_ 4.07682378688492976e-04 -Electron-triton_collision_time_at_point_433______________________________ (t_plasma_electron_triton_collision_profile433)_ 4.04304929726513411e-04 -Electron-triton_collision_time_at_point_434______________________________ (t_plasma_electron_triton_collision_profile434)_ 4.00968389972329142e-04 -Electron-triton_collision_time_at_point_435______________________________ (t_plasma_electron_triton_collision_profile435)_ 3.97673733982980919e-04 -Electron-triton_collision_time_at_point_436______________________________ (t_plasma_electron_triton_collision_profile436)_ 3.94421976109510762e-04 -Electron-triton_collision_time_at_point_437______________________________ (t_plasma_electron_triton_collision_profile437)_ 3.91214173604558652e-04 -Electron-triton_collision_time_at_point_438______________________________ (t_plasma_electron_triton_collision_profile438)_ 3.88051430066534240e-04 -Electron-triton_collision_time_at_point_439______________________________ (t_plasma_electron_triton_collision_profile439)_ 3.84934899267393811e-04 -Electron-triton_collision_time_at_point_440______________________________ (t_plasma_electron_triton_collision_profile440)_ 3.81865789419319414e-04 -Electron-triton_collision_time_at_point_441______________________________ (t_plasma_electron_triton_collision_profile441)_ 3.78845367945608602e-04 -Electron-triton_collision_time_at_point_442______________________________ (t_plasma_electron_triton_collision_profile442)_ 3.75874966833329651e-04 -Electron-triton_collision_time_at_point_443______________________________ (t_plasma_electron_triton_collision_profile443)_ 3.72955988660356337e-04 -Electron-triton_collision_time_at_point_444______________________________ (t_plasma_electron_triton_collision_profile444)_ 3.70089913408055342e-04 -Electron-triton_collision_time_at_point_445______________________________ (t_plasma_electron_triton_collision_profile445)_ 3.67278306194160863e-04 -Electron-triton_collision_time_at_point_446______________________________ (t_plasma_electron_triton_collision_profile446)_ 3.64522826089654789e-04 -Electron-triton_collision_time_at_point_447______________________________ (t_plasma_electron_triton_collision_profile447)_ 3.61825236220592972e-04 -Electron-triton_collision_time_at_point_448______________________________ (t_plasma_electron_triton_collision_profile448)_ 3.59187415403353061e-04 -Electron-triton_collision_time_at_point_449______________________________ (t_plasma_electron_triton_collision_profile449)_ 3.56611371623243522e-04 -Electron-triton_collision_time_at_point_450______________________________ (t_plasma_electron_triton_collision_profile450)_ 3.54099257746726711e-04 -Electron-triton_collision_time_at_point_451______________________________ (t_plasma_electron_triton_collision_profile451)_ 3.51653389963738332e-04 -Electron-triton_collision_time_at_point_452______________________________ (t_plasma_electron_triton_collision_profile452)_ 3.49276269598829516e-04 -Electron-triton_collision_time_at_point_453______________________________ (t_plasma_electron_triton_collision_profile453)_ 3.46970609123076624e-04 -Electron-triton_collision_time_at_point_454______________________________ (t_plasma_electron_triton_collision_profile454)_ 3.44739363465202753e-04 -Electron-triton_collision_time_at_point_455______________________________ (t_plasma_electron_triton_collision_profile455)_ 3.42585768094240948e-04 -Electron-triton_collision_time_at_point_456______________________________ (t_plasma_electron_triton_collision_profile456)_ 3.40513385880701820e-04 -Electron-triton_collision_time_at_point_457______________________________ (t_plasma_electron_triton_collision_profile457)_ 3.38526165524064416e-04 -Electron-triton_collision_time_at_point_458______________________________ (t_plasma_electron_triton_collision_profile458)_ 3.36628515502592277e-04 -Electron-triton_collision_time_at_point_459______________________________ (t_plasma_electron_triton_collision_profile459)_ 3.34825399297378277e-04 -Electron-triton_collision_time_at_point_460______________________________ (t_plasma_electron_triton_collision_profile460)_ 3.33122460491219632e-04 -Electron-triton_collision_time_at_point_461______________________________ (t_plasma_electron_triton_collision_profile461)_ 3.31526191028738519e-04 -Electron-triton_collision_time_at_point_462______________________________ (t_plasma_electron_triton_collision_profile462)_ 3.30044163968354397e-04 -Electron-triton_collision_time_at_point_463______________________________ (t_plasma_electron_triton_collision_profile463)_ 3.28685366589596408e-04 -Electron-triton_collision_time_at_point_464______________________________ (t_plasma_electron_triton_collision_profile464)_ 3.27460697660769988e-04 -Electron-triton_collision_time_at_point_465______________________________ (t_plasma_electron_triton_collision_profile465)_ 3.26383750738627482e-04 -Electron-triton_collision_time_at_point_466______________________________ (t_plasma_electron_triton_collision_profile466)_ 3.25472138805639336e-04 -Electron-triton_collision_time_at_point_467______________________________ (t_plasma_electron_triton_collision_profile467)_ 3.24749966949460216e-04 -Electron-triton_collision_time_at_point_468______________________________ (t_plasma_electron_triton_collision_profile468)_ 3.24253189114318593e-04 -Electron-triton_collision_time_at_point_469______________________________ (t_plasma_electron_triton_collision_profile469)_ 3.24044659198329064e-04 -Electron-triton_collision_time_at_point_470______________________________ (t_plasma_electron_triton_collision_profile470)_ 3.24306173867357043e-04 -Electron-triton_collision_time_at_point_471______________________________ (t_plasma_electron_triton_collision_profile471)_ 3.13289090559529075e-04 -Electron-triton_collision_time_at_point_472______________________________ (t_plasma_electron_triton_collision_profile472)_ 3.02204571559400810e-04 -Electron-triton_collision_time_at_point_473______________________________ (t_plasma_electron_triton_collision_profile473)_ 2.91054165947776959e-04 -Electron-triton_collision_time_at_point_474______________________________ (t_plasma_electron_triton_collision_profile474)_ 2.79839761412232135e-04 -Electron-triton_collision_time_at_point_475______________________________ (t_plasma_electron_triton_collision_profile475)_ 2.68563633215864979e-04 -Electron-triton_collision_time_at_point_476______________________________ (t_plasma_electron_triton_collision_profile476)_ 2.57228500932208933e-04 -Electron-triton_collision_time_at_point_477______________________________ (t_plasma_electron_triton_collision_profile477)_ 2.45837594403808181e-04 -Electron-triton_collision_time_at_point_478______________________________ (t_plasma_electron_triton_collision_profile478)_ 2.34394730712403826e-04 -Electron-triton_collision_time_at_point_479______________________________ (t_plasma_electron_triton_collision_profile479)_ 2.22904404369949315e-04 -Electron-triton_collision_time_at_point_480______________________________ (t_plasma_electron_triton_collision_profile480)_ 2.11371893481904205e-04 -Electron-triton_collision_time_at_point_481______________________________ (t_plasma_electron_triton_collision_profile481)_ 1.99803385339506883e-04 -Electron-triton_collision_time_at_point_482______________________________ (t_plasma_electron_triton_collision_profile482)_ 1.88206125825666543e-04 -Electron-triton_collision_time_at_point_483______________________________ (t_plasma_electron_triton_collision_profile483)_ 1.76588598255638670e-04 -Electron-triton_collision_time_at_point_484______________________________ (t_plasma_electron_triton_collision_profile484)_ 1.64960738944736827e-04 -Electron-triton_collision_time_at_point_485______________________________ (t_plasma_electron_triton_collision_profile485)_ 1.53334199089322101e-04 -Electron-triton_collision_time_at_point_486______________________________ (t_plasma_electron_triton_collision_profile486)_ 1.41722665751939792e-04 -Electron-triton_collision_time_at_point_487______________________________ (t_plasma_electron_triton_collision_profile487)_ 1.30142259307054753e-04 -Electron-triton_collision_time_at_point_488______________________________ (t_plasma_electron_triton_collision_profile488)_ 1.18612031354327550e-04 -Electron-triton_collision_time_at_point_489______________________________ (t_plasma_electron_triton_collision_profile489)_ 1.07154597041644365e-04 -Electron-triton_collision_time_at_point_490______________________________ (t_plasma_electron_triton_collision_profile490)_ 9.57969510185442181e-05 -Electron-triton_collision_time_at_point_491______________________________ (t_plasma_electron_triton_collision_profile491)_ 8.45715405363597591e-05 -Electron-triton_collision_time_at_point_492______________________________ (t_plasma_electron_triton_collision_profile492)_ 7.35177093904261562e-05 -Electron-triton_collision_time_at_point_493______________________________ (t_plasma_electron_triton_collision_profile493)_ 6.26836960065486014e-05 -Electron-triton_collision_time_at_point_494______________________________ (t_plasma_electron_triton_collision_profile494)_ 5.21294965096231853e-05 -Electron-triton_collision_time_at_point_495______________________________ (t_plasma_electron_triton_collision_profile495)_ 4.19311539732820365e-05 -Electron-triton_collision_time_at_point_496______________________________ (t_plasma_electron_triton_collision_profile496)_ 3.21875713763457007e-05 -Electron-triton_collision_time_at_point_497______________________________ (t_plasma_electron_triton_collision_profile497)_ 2.30322346483043159e-05 -Electron-triton_collision_time_at_point_498______________________________ (t_plasma_electron_triton_collision_profile498)_ 1.46558674013288923e-05 -Electron-triton_collision_time_at_point_499______________________________ (t_plasma_electron_triton_collision_profile499)_ 7.35914735678059235e-06 -Electron-triton_collision_time_at_point_500______________________________ (t_plasma_electron_triton_collision_profile500)_ 1.72997144488295024e-06 -Volume_averaged_electron-alpha_thermal_collision_time_(τₑαₜₕ)_(s)________ (t_plasma_electron_alpha_thermal_collision_vol_avg)_ 9.76943140247254213e-04 OP -Electron-alpha_thermal_collision_time_at_point_0_________________________ (t_plasma_electron_alpha_thermal_collision_profile0)_ 2.14754693777854597e-03 -Electron-alpha_thermal_collision_time_at_point_1_________________________ (t_plasma_electron_alpha_thermal_collision_profile1)_ 2.14753462145144455e-03 -Electron-alpha_thermal_collision_time_at_point_2_________________________ (t_plasma_electron_alpha_thermal_collision_profile2)_ 2.14749767263188807e-03 -Electron-alpha_thermal_collision_time_at_point_3_________________________ (t_plasma_electron_alpha_thermal_collision_profile3)_ 2.14743609180512683e-03 -Electron-alpha_thermal_collision_time_at_point_4_________________________ (t_plasma_electron_alpha_thermal_collision_profile4)_ 2.14734987977993142e-03 -Electron-alpha_thermal_collision_time_at_point_5_________________________ (t_plasma_electron_alpha_thermal_collision_profile5)_ 2.14723903768862046e-03 -Electron-alpha_thermal_collision_time_at_point_6_________________________ (t_plasma_electron_alpha_thermal_collision_profile6)_ 2.14710356698710270e-03 -Electron-alpha_thermal_collision_time_at_point_7_________________________ (t_plasma_electron_alpha_thermal_collision_profile7)_ 2.14694346945493338e-03 -Electron-alpha_thermal_collision_time_at_point_8_________________________ (t_plasma_electron_alpha_thermal_collision_profile8)_ 2.14675874719536929e-03 -Electron-alpha_thermal_collision_time_at_point_9_________________________ (t_plasma_electron_alpha_thermal_collision_profile9)_ 2.14654940263545859e-03 -Electron-alpha_thermal_collision_time_at_point_10________________________ (t_plasma_electron_alpha_thermal_collision_profile10)_ 2.14631543852611927e-03 -Electron-alpha_thermal_collision_time_at_point_11________________________ (t_plasma_electron_alpha_thermal_collision_profile11)_ 2.14605685794224017e-03 -Electron-alpha_thermal_collision_time_at_point_12________________________ (t_plasma_electron_alpha_thermal_collision_profile12)_ 2.14577366428279816e-03 -Electron-alpha_thermal_collision_time_at_point_13________________________ (t_plasma_electron_alpha_thermal_collision_profile13)_ 2.14546586127097819e-03 -Electron-alpha_thermal_collision_time_at_point_14________________________ (t_plasma_electron_alpha_thermal_collision_profile14)_ 2.14513345295430820e-03 -Electron-alpha_thermal_collision_time_at_point_15________________________ (t_plasma_electron_alpha_thermal_collision_profile15)_ 2.14477644370480698e-03 -Electron-alpha_thermal_collision_time_at_point_16________________________ (t_plasma_electron_alpha_thermal_collision_profile16)_ 2.14439483821914339e-03 -Electron-alpha_thermal_collision_time_at_point_17________________________ (t_plasma_electron_alpha_thermal_collision_profile17)_ 2.14398864151881018e-03 -Electron-alpha_thermal_collision_time_at_point_18________________________ (t_plasma_electron_alpha_thermal_collision_profile18)_ 2.14355785895030361e-03 -Electron-alpha_thermal_collision_time_at_point_19________________________ (t_plasma_electron_alpha_thermal_collision_profile19)_ 2.14310249618531855e-03 -Electron-alpha_thermal_collision_time_at_point_20________________________ (t_plasma_electron_alpha_thermal_collision_profile20)_ 2.14262255922095281e-03 -Electron-alpha_thermal_collision_time_at_point_21________________________ (t_plasma_electron_alpha_thermal_collision_profile21)_ 2.14211805437993646e-03 -Electron-alpha_thermal_collision_time_at_point_22________________________ (t_plasma_electron_alpha_thermal_collision_profile22)_ 2.14158898831084618e-03 -Electron-alpha_thermal_collision_time_at_point_23________________________ (t_plasma_electron_alpha_thermal_collision_profile23)_ 2.14103536798836060e-03 -Electron-alpha_thermal_collision_time_at_point_24________________________ (t_plasma_electron_alpha_thermal_collision_profile24)_ 2.14045720071351061e-03 -Electron-alpha_thermal_collision_time_at_point_25________________________ (t_plasma_electron_alpha_thermal_collision_profile25)_ 2.13985449411394297e-03 -Electron-alpha_thermal_collision_time_at_point_26________________________ (t_plasma_electron_alpha_thermal_collision_profile26)_ 2.13922725614420139e-03 -Electron-alpha_thermal_collision_time_at_point_27________________________ (t_plasma_electron_alpha_thermal_collision_profile27)_ 2.13857549508601839e-03 -Electron-alpha_thermal_collision_time_at_point_28________________________ (t_plasma_electron_alpha_thermal_collision_profile28)_ 2.13789921954861623e-03 -Electron-alpha_thermal_collision_time_at_point_29________________________ (t_plasma_electron_alpha_thermal_collision_profile29)_ 2.13719843846902052e-03 -Electron-alpha_thermal_collision_time_at_point_30________________________ (t_plasma_electron_alpha_thermal_collision_profile30)_ 2.13647316111238543e-03 -Electron-alpha_thermal_collision_time_at_point_31________________________ (t_plasma_electron_alpha_thermal_collision_profile31)_ 2.13572339707233895e-03 -Electron-alpha_thermal_collision_time_at_point_32________________________ (t_plasma_electron_alpha_thermal_collision_profile32)_ 2.13494915627132674e-03 -Electron-alpha_thermal_collision_time_at_point_33________________________ (t_plasma_electron_alpha_thermal_collision_profile33)_ 2.13415044896098170e-03 -Electron-alpha_thermal_collision_time_at_point_34________________________ (t_plasma_electron_alpha_thermal_collision_profile34)_ 2.13332728572249077e-03 -Electron-alpha_thermal_collision_time_at_point_35________________________ (t_plasma_electron_alpha_thermal_collision_profile35)_ 2.13247967746699359e-03 -Electron-alpha_thermal_collision_time_at_point_36________________________ (t_plasma_electron_alpha_thermal_collision_profile36)_ 2.13160763543596967e-03 -Electron-alpha_thermal_collision_time_at_point_37________________________ (t_plasma_electron_alpha_thermal_collision_profile37)_ 2.13071117120166220e-03 -Electron-alpha_thermal_collision_time_at_point_38________________________ (t_plasma_electron_alpha_thermal_collision_profile38)_ 2.12979029666749645e-03 -Electron-alpha_thermal_collision_time_at_point_39________________________ (t_plasma_electron_alpha_thermal_collision_profile39)_ 2.12884502406851701e-03 -Electron-alpha_thermal_collision_time_at_point_40________________________ (t_plasma_electron_alpha_thermal_collision_profile40)_ 2.12787536597183703e-03 -Electron-alpha_thermal_collision_time_at_point_41________________________ (t_plasma_electron_alpha_thermal_collision_profile41)_ 2.12688133527710183e-03 -Electron-alpha_thermal_collision_time_at_point_42________________________ (t_plasma_electron_alpha_thermal_collision_profile42)_ 2.12586294521696292e-03 -Electron-alpha_thermal_collision_time_at_point_43________________________ (t_plasma_electron_alpha_thermal_collision_profile43)_ 2.12482020935755725e-03 -Electron-alpha_thermal_collision_time_at_point_44________________________ (t_plasma_electron_alpha_thermal_collision_profile44)_ 2.12375314159902323e-03 -Electron-alpha_thermal_collision_time_at_point_45________________________ (t_plasma_electron_alpha_thermal_collision_profile45)_ 2.12266175617599126e-03 -Electron-alpha_thermal_collision_time_at_point_46________________________ (t_plasma_electron_alpha_thermal_collision_profile46)_ 2.12154606765812583e-03 -Electron-alpha_thermal_collision_time_at_point_47________________________ (t_plasma_electron_alpha_thermal_collision_profile47)_ 2.12040609095065112e-03 -Electron-alpha_thermal_collision_time_at_point_48________________________ (t_plasma_electron_alpha_thermal_collision_profile48)_ 2.11924184129490961e-03 -Electron-alpha_thermal_collision_time_at_point_49________________________ (t_plasma_electron_alpha_thermal_collision_profile49)_ 2.11805333426891632e-03 -Electron-alpha_thermal_collision_time_at_point_50________________________ (t_plasma_electron_alpha_thermal_collision_profile50)_ 2.11684058578794033e-03 -Electron-alpha_thermal_collision_time_at_point_51________________________ (t_plasma_electron_alpha_thermal_collision_profile51)_ 2.11560361210508859e-03 -Electron-alpha_thermal_collision_time_at_point_52________________________ (t_plasma_electron_alpha_thermal_collision_profile52)_ 2.11434242981190955e-03 -Electron-alpha_thermal_collision_time_at_point_53________________________ (t_plasma_electron_alpha_thermal_collision_profile53)_ 2.11305705583901028e-03 -Electron-alpha_thermal_collision_time_at_point_54________________________ (t_plasma_electron_alpha_thermal_collision_profile54)_ 2.11174750745667453e-03 -Electron-alpha_thermal_collision_time_at_point_55________________________ (t_plasma_electron_alpha_thermal_collision_profile55)_ 2.11041380227551057e-03 -Electron-alpha_thermal_collision_time_at_point_56________________________ (t_plasma_electron_alpha_thermal_collision_profile56)_ 2.10905595824710307e-03 -Electron-alpha_thermal_collision_time_at_point_57________________________ (t_plasma_electron_alpha_thermal_collision_profile57)_ 2.10767399366467443e-03 -Electron-alpha_thermal_collision_time_at_point_58________________________ (t_plasma_electron_alpha_thermal_collision_profile58)_ 2.10626792716377131e-03 -Electron-alpha_thermal_collision_time_at_point_59________________________ (t_plasma_electron_alpha_thermal_collision_profile59)_ 2.10483777772295291e-03 -Electron-alpha_thermal_collision_time_at_point_60________________________ (t_plasma_electron_alpha_thermal_collision_profile60)_ 2.10338356466449649e-03 -Electron-alpha_thermal_collision_time_at_point_61________________________ (t_plasma_electron_alpha_thermal_collision_profile61)_ 2.10190530765511996e-03 -Electron-alpha_thermal_collision_time_at_point_62________________________ (t_plasma_electron_alpha_thermal_collision_profile62)_ 2.10040302670671175e-03 -Electron-alpha_thermal_collision_time_at_point_63________________________ (t_plasma_electron_alpha_thermal_collision_profile63)_ 2.09887674217707799e-03 -Electron-alpha_thermal_collision_time_at_point_64________________________ (t_plasma_electron_alpha_thermal_collision_profile64)_ 2.09732647477070414e-03 -Electron-alpha_thermal_collision_time_at_point_65________________________ (t_plasma_electron_alpha_thermal_collision_profile65)_ 2.09575224553952468e-03 -Electron-alpha_thermal_collision_time_at_point_66________________________ (t_plasma_electron_alpha_thermal_collision_profile66)_ 2.09415407588371336e-03 -Electron-alpha_thermal_collision_time_at_point_67________________________ (t_plasma_electron_alpha_thermal_collision_profile67)_ 2.09253198755248240e-03 -Electron-alpha_thermal_collision_time_at_point_68________________________ (t_plasma_electron_alpha_thermal_collision_profile68)_ 2.09088600264489615e-03 -Electron-alpha_thermal_collision_time_at_point_69________________________ (t_plasma_electron_alpha_thermal_collision_profile69)_ 2.08921614361070197e-03 -Electron-alpha_thermal_collision_time_at_point_70________________________ (t_plasma_electron_alpha_thermal_collision_profile70)_ 2.08752243325117199e-03 -Electron-alpha_thermal_collision_time_at_point_71________________________ (t_plasma_electron_alpha_thermal_collision_profile71)_ 2.08580489471995624e-03 -Electron-alpha_thermal_collision_time_at_point_72________________________ (t_plasma_electron_alpha_thermal_collision_profile72)_ 2.08406355152395773e-03 -Electron-alpha_thermal_collision_time_at_point_73________________________ (t_plasma_electron_alpha_thermal_collision_profile73)_ 2.08229842752421374e-03 -Electron-alpha_thermal_collision_time_at_point_74________________________ (t_plasma_electron_alpha_thermal_collision_profile74)_ 2.08050954693679482e-03 -Electron-alpha_thermal_collision_time_at_point_75________________________ (t_plasma_electron_alpha_thermal_collision_profile75)_ 2.07869693433371857e-03 -Electron-alpha_thermal_collision_time_at_point_76________________________ (t_plasma_electron_alpha_thermal_collision_profile76)_ 2.07686061464387771e-03 -Electron-alpha_thermal_collision_time_at_point_77________________________ (t_plasma_electron_alpha_thermal_collision_profile77)_ 2.07500061315397857e-03 -Electron-alpha_thermal_collision_time_at_point_78________________________ (t_plasma_electron_alpha_thermal_collision_profile78)_ 2.07311695550950210e-03 -Electron-alpha_thermal_collision_time_at_point_79________________________ (t_plasma_electron_alpha_thermal_collision_profile79)_ 2.07120966771566929e-03 -Electron-alpha_thermal_collision_time_at_point_80________________________ (t_plasma_electron_alpha_thermal_collision_profile80)_ 2.06927877613843209e-03 -Electron-alpha_thermal_collision_time_at_point_81________________________ (t_plasma_electron_alpha_thermal_collision_profile81)_ 2.06732430750546743e-03 -Electron-alpha_thermal_collision_time_at_point_82________________________ (t_plasma_electron_alpha_thermal_collision_profile82)_ 2.06534628890719940e-03 -Electron-alpha_thermal_collision_time_at_point_83________________________ (t_plasma_electron_alpha_thermal_collision_profile83)_ 2.06334474779782144e-03 -Electron-alpha_thermal_collision_time_at_point_84________________________ (t_plasma_electron_alpha_thermal_collision_profile84)_ 2.06131971199634842e-03 -Electron-alpha_thermal_collision_time_at_point_85________________________ (t_plasma_electron_alpha_thermal_collision_profile85)_ 2.05927120968767358e-03 -Electron-alpha_thermal_collision_time_at_point_86________________________ (t_plasma_electron_alpha_thermal_collision_profile86)_ 2.05719926942363922e-03 -Electron-alpha_thermal_collision_time_at_point_87________________________ (t_plasma_electron_alpha_thermal_collision_profile87)_ 2.05510392012413397e-03 -Electron-alpha_thermal_collision_time_at_point_88________________________ (t_plasma_electron_alpha_thermal_collision_profile88)_ 2.05298519107819559e-03 -Electron-alpha_thermal_collision_time_at_point_89________________________ (t_plasma_electron_alpha_thermal_collision_profile89)_ 2.05084311194513383e-03 -Electron-alpha_thermal_collision_time_at_point_90________________________ (t_plasma_electron_alpha_thermal_collision_profile90)_ 2.04867771275566270e-03 -Electron-alpha_thermal_collision_time_at_point_91________________________ (t_plasma_electron_alpha_thermal_collision_profile91)_ 2.04648902391305716e-03 -Electron-alpha_thermal_collision_time_at_point_92________________________ (t_plasma_electron_alpha_thermal_collision_profile92)_ 2.04427707619431838e-03 -Electron-alpha_thermal_collision_time_at_point_93________________________ (t_plasma_electron_alpha_thermal_collision_profile93)_ 2.04204190075135770e-03 -Electron-alpha_thermal_collision_time_at_point_94________________________ (t_plasma_electron_alpha_thermal_collision_profile94)_ 2.03978352911220054e-03 -Electron-alpha_thermal_collision_time_at_point_95________________________ (t_plasma_electron_alpha_thermal_collision_profile95)_ 2.03750199318219636e-03 -Electron-alpha_thermal_collision_time_at_point_96________________________ (t_plasma_electron_alpha_thermal_collision_profile96)_ 2.03519732524525335e-03 -Electron-alpha_thermal_collision_time_at_point_97________________________ (t_plasma_electron_alpha_thermal_collision_profile97)_ 2.03286955796508481e-03 -Electron-alpha_thermal_collision_time_at_point_98________________________ (t_plasma_electron_alpha_thermal_collision_profile98)_ 2.03051872438647814e-03 -Electron-alpha_thermal_collision_time_at_point_99________________________ (t_plasma_electron_alpha_thermal_collision_profile99)_ 2.02814485793656853e-03 -Electron-alpha_thermal_collision_time_at_point_100_______________________ (t_plasma_electron_alpha_thermal_collision_profile100)_ 2.02574799242614175e-03 -Electron-alpha_thermal_collision_time_at_point_101_______________________ (t_plasma_electron_alpha_thermal_collision_profile101)_ 2.02332816205094690e-03 -Electron-alpha_thermal_collision_time_at_point_102_______________________ (t_plasma_electron_alpha_thermal_collision_profile102)_ 2.02088540139302216e-03 -Electron-alpha_thermal_collision_time_at_point_103_______________________ (t_plasma_electron_alpha_thermal_collision_profile103)_ 2.01841974542205354e-03 -Electron-alpha_thermal_collision_time_at_point_104_______________________ (t_plasma_electron_alpha_thermal_collision_profile104)_ 2.01593122949672750e-03 -Electron-alpha_thermal_collision_time_at_point_105_______________________ (t_plasma_electron_alpha_thermal_collision_profile105)_ 2.01341988936612004e-03 -Electron-alpha_thermal_collision_time_at_point_106_______________________ (t_plasma_electron_alpha_thermal_collision_profile106)_ 2.01088576117109102e-03 -Electron-alpha_thermal_collision_time_at_point_107_______________________ (t_plasma_electron_alpha_thermal_collision_profile107)_ 2.00832888144570438e-03 -Electron-alpha_thermal_collision_time_at_point_108_______________________ (t_plasma_electron_alpha_thermal_collision_profile108)_ 2.00574928711866069e-03 -Electron-alpha_thermal_collision_time_at_point_109_______________________ (t_plasma_electron_alpha_thermal_collision_profile109)_ 2.00314701551474470e-03 -Electron-alpha_thermal_collision_time_at_point_110_______________________ (t_plasma_electron_alpha_thermal_collision_profile110)_ 2.00052210435629988e-03 -Electron-alpha_thermal_collision_time_at_point_111_______________________ (t_plasma_electron_alpha_thermal_collision_profile111)_ 1.99787459176471076e-03 -Electron-alpha_thermal_collision_time_at_point_112_______________________ (t_plasma_electron_alpha_thermal_collision_profile112)_ 1.99520451626191081e-03 -Electron-alpha_thermal_collision_time_at_point_113_______________________ (t_plasma_electron_alpha_thermal_collision_profile113)_ 1.99251191677190425e-03 -Electron-alpha_thermal_collision_time_at_point_114_______________________ (t_plasma_electron_alpha_thermal_collision_profile114)_ 1.98979683262230297e-03 -Electron-alpha_thermal_collision_time_at_point_115_______________________ (t_plasma_electron_alpha_thermal_collision_profile115)_ 1.98705930354589567e-03 -Electron-alpha_thermal_collision_time_at_point_116_______________________ (t_plasma_electron_alpha_thermal_collision_profile116)_ 1.98429936968221293e-03 -Electron-alpha_thermal_collision_time_at_point_117_______________________ (t_plasma_electron_alpha_thermal_collision_profile117)_ 1.98151707157913576e-03 -Electron-alpha_thermal_collision_time_at_point_118_______________________ (t_plasma_electron_alpha_thermal_collision_profile118)_ 1.97871245019450286e-03 -Electron-alpha_thermal_collision_time_at_point_119_______________________ (t_plasma_electron_alpha_thermal_collision_profile119)_ 1.97588554689774641e-03 -Electron-alpha_thermal_collision_time_at_point_120_______________________ (t_plasma_electron_alpha_thermal_collision_profile120)_ 1.97303640347155093e-03 -Electron-alpha_thermal_collision_time_at_point_121_______________________ (t_plasma_electron_alpha_thermal_collision_profile121)_ 1.97016506211351514e-03 -Electron-alpha_thermal_collision_time_at_point_122_______________________ (t_plasma_electron_alpha_thermal_collision_profile122)_ 1.96727156543785326e-03 -Electron-alpha_thermal_collision_time_at_point_123_______________________ (t_plasma_electron_alpha_thermal_collision_profile123)_ 1.96435595647710204e-03 -Electron-alpha_thermal_collision_time_at_point_124_______________________ (t_plasma_electron_alpha_thermal_collision_profile124)_ 1.96141827868384980e-03 -Electron-alpha_thermal_collision_time_at_point_125_______________________ (t_plasma_electron_alpha_thermal_collision_profile125)_ 1.95845857593249370e-03 -Electron-alpha_thermal_collision_time_at_point_126_______________________ (t_plasma_electron_alpha_thermal_collision_profile126)_ 1.95547689252100008e-03 -Electron-alpha_thermal_collision_time_at_point_127_______________________ (t_plasma_electron_alpha_thermal_collision_profile127)_ 1.95247327317270704e-03 -Electron-alpha_thermal_collision_time_at_point_128_______________________ (t_plasma_electron_alpha_thermal_collision_profile128)_ 1.94944776303812572e-03 -Electron-alpha_thermal_collision_time_at_point_129_______________________ (t_plasma_electron_alpha_thermal_collision_profile129)_ 1.94640040769677634e-03 -Electron-alpha_thermal_collision_time_at_point_130_______________________ (t_plasma_electron_alpha_thermal_collision_profile130)_ 1.94333125315903949e-03 -Electron-alpha_thermal_collision_time_at_point_131_______________________ (t_plasma_electron_alpha_thermal_collision_profile131)_ 1.94024034586802864e-03 -Electron-alpha_thermal_collision_time_at_point_132_______________________ (t_plasma_electron_alpha_thermal_collision_profile132)_ 1.93712773270148398e-03 -Electron-alpha_thermal_collision_time_at_point_133_______________________ (t_plasma_electron_alpha_thermal_collision_profile133)_ 1.93399346097368604e-03 -Electron-alpha_thermal_collision_time_at_point_134_______________________ (t_plasma_electron_alpha_thermal_collision_profile134)_ 1.93083757843739360e-03 -Electron-alpha_thermal_collision_time_at_point_135_______________________ (t_plasma_electron_alpha_thermal_collision_profile135)_ 1.92766013328579959e-03 -Electron-alpha_thermal_collision_time_at_point_136_______________________ (t_plasma_electron_alpha_thermal_collision_profile136)_ 1.92446117415451170e-03 -Electron-alpha_thermal_collision_time_at_point_137_______________________ (t_plasma_electron_alpha_thermal_collision_profile137)_ 1.92124075012355187e-03 -Electron-alpha_thermal_collision_time_at_point_138_______________________ (t_plasma_electron_alpha_thermal_collision_profile138)_ 1.91799891071937835e-03 -Electron-alpha_thermal_collision_time_at_point_139_______________________ (t_plasma_electron_alpha_thermal_collision_profile139)_ 1.91473570591693481e-03 -Electron-alpha_thermal_collision_time_at_point_140_______________________ (t_plasma_electron_alpha_thermal_collision_profile140)_ 1.91145118614171336e-03 -Electron-alpha_thermal_collision_time_at_point_141_______________________ (t_plasma_electron_alpha_thermal_collision_profile141)_ 1.90814540227184515e-03 -Electron-alpha_thermal_collision_time_at_point_142_______________________ (t_plasma_electron_alpha_thermal_collision_profile142)_ 1.90481840564021582e-03 -Electron-alpha_thermal_collision_time_at_point_143_______________________ (t_plasma_electron_alpha_thermal_collision_profile143)_ 1.90147024803659923e-03 -Electron-alpha_thermal_collision_time_at_point_144_______________________ (t_plasma_electron_alpha_thermal_collision_profile144)_ 1.89810098170981501e-03 -Electron-alpha_thermal_collision_time_at_point_145_______________________ (t_plasma_electron_alpha_thermal_collision_profile145)_ 1.89471065936991237e-03 -Electron-alpha_thermal_collision_time_at_point_146_______________________ (t_plasma_electron_alpha_thermal_collision_profile146)_ 1.89129933419037756e-03 -Electron-alpha_thermal_collision_time_at_point_147_______________________ (t_plasma_electron_alpha_thermal_collision_profile147)_ 1.88786705981035794e-03 -Electron-alpha_thermal_collision_time_at_point_148_______________________ (t_plasma_electron_alpha_thermal_collision_profile148)_ 1.88441389033691784e-03 -Electron-alpha_thermal_collision_time_at_point_149_______________________ (t_plasma_electron_alpha_thermal_collision_profile149)_ 1.88093988034732096e-03 -Electron-alpha_thermal_collision_time_at_point_150_______________________ (t_plasma_electron_alpha_thermal_collision_profile150)_ 1.87744508489132373e-03 -Electron-alpha_thermal_collision_time_at_point_151_______________________ (t_plasma_electron_alpha_thermal_collision_profile151)_ 1.87392955949350760e-03 -Electron-alpha_thermal_collision_time_at_point_152_______________________ (t_plasma_electron_alpha_thermal_collision_profile152)_ 1.87039336015562660e-03 -Electron-alpha_thermal_collision_time_at_point_153_______________________ (t_plasma_electron_alpha_thermal_collision_profile153)_ 1.86683654335898907e-03 -Electron-alpha_thermal_collision_time_at_point_154_______________________ (t_plasma_electron_alpha_thermal_collision_profile154)_ 1.86325916606685268e-03 -Electron-alpha_thermal_collision_time_at_point_155_______________________ (t_plasma_electron_alpha_thermal_collision_profile155)_ 1.85966128572685480e-03 -Electron-alpha_thermal_collision_time_at_point_156_______________________ (t_plasma_electron_alpha_thermal_collision_profile156)_ 1.85604296027346732e-03 -Electron-alpha_thermal_collision_time_at_point_157_______________________ (t_plasma_electron_alpha_thermal_collision_profile157)_ 1.85240424813047232e-03 -Electron-alpha_thermal_collision_time_at_point_158_______________________ (t_plasma_electron_alpha_thermal_collision_profile158)_ 1.84874520821346486e-03 -Electron-alpha_thermal_collision_time_at_point_159_______________________ (t_plasma_electron_alpha_thermal_collision_profile159)_ 1.84506589993239066e-03 -Electron-alpha_thermal_collision_time_at_point_160_______________________ (t_plasma_electron_alpha_thermal_collision_profile160)_ 1.84136638319410263e-03 -Electron-alpha_thermal_collision_time_at_point_161_______________________ (t_plasma_electron_alpha_thermal_collision_profile161)_ 1.83764671840493782e-03 -Electron-alpha_thermal_collision_time_at_point_162_______________________ (t_plasma_electron_alpha_thermal_collision_profile162)_ 1.83390696647334271e-03 -Electron-alpha_thermal_collision_time_at_point_163_______________________ (t_plasma_electron_alpha_thermal_collision_profile163)_ 1.83014718881250194e-03 -Electron-alpha_thermal_collision_time_at_point_164_______________________ (t_plasma_electron_alpha_thermal_collision_profile164)_ 1.82636744734301264e-03 -Electron-alpha_thermal_collision_time_at_point_165_______________________ (t_plasma_electron_alpha_thermal_collision_profile165)_ 1.82256780449557496e-03 -Electron-alpha_thermal_collision_time_at_point_166_______________________ (t_plasma_electron_alpha_thermal_collision_profile166)_ 1.81874832321372100e-03 -Electron-alpha_thermal_collision_time_at_point_167_______________________ (t_plasma_electron_alpha_thermal_collision_profile167)_ 1.81490906695656049e-03 -Electron-alpha_thermal_collision_time_at_point_168_______________________ (t_plasma_electron_alpha_thermal_collision_profile168)_ 1.81105009970156734e-03 -Electron-alpha_thermal_collision_time_at_point_169_______________________ (t_plasma_electron_alpha_thermal_collision_profile169)_ 1.80717148594738627e-03 -Electron-alpha_thermal_collision_time_at_point_170_______________________ (t_plasma_electron_alpha_thermal_collision_profile170)_ 1.80327329071667359e-03 -Electron-alpha_thermal_collision_time_at_point_171_______________________ (t_plasma_electron_alpha_thermal_collision_profile171)_ 1.79935557955896515e-03 -Electron-alpha_thermal_collision_time_at_point_172_______________________ (t_plasma_electron_alpha_thermal_collision_profile172)_ 1.79541841855357831e-03 -Electron-alpha_thermal_collision_time_at_point_173_______________________ (t_plasma_electron_alpha_thermal_collision_profile173)_ 1.79146187431253475e-03 -Electron-alpha_thermal_collision_time_at_point_174_______________________ (t_plasma_electron_alpha_thermal_collision_profile174)_ 1.78748601398352530e-03 -Electron-alpha_thermal_collision_time_at_point_175_______________________ (t_plasma_electron_alpha_thermal_collision_profile175)_ 1.78349090525290171e-03 -Electron-alpha_thermal_collision_time_at_point_176_______________________ (t_plasma_electron_alpha_thermal_collision_profile176)_ 1.77947661634869202e-03 -Electron-alpha_thermal_collision_time_at_point_177_______________________ (t_plasma_electron_alpha_thermal_collision_profile177)_ 1.77544321604365847e-03 -Electron-alpha_thermal_collision_time_at_point_178_______________________ (t_plasma_electron_alpha_thermal_collision_profile178)_ 1.77139077365838049e-03 -Electron-alpha_thermal_collision_time_at_point_179_______________________ (t_plasma_electron_alpha_thermal_collision_profile179)_ 1.76731935906437290e-03 -Electron-alpha_thermal_collision_time_at_point_180_______________________ (t_plasma_electron_alpha_thermal_collision_profile180)_ 1.76322904268723206e-03 -Electron-alpha_thermal_collision_time_at_point_181_______________________ (t_plasma_electron_alpha_thermal_collision_profile181)_ 1.75911989550982099e-03 -Electron-alpha_thermal_collision_time_at_point_182_______________________ (t_plasma_electron_alpha_thermal_collision_profile182)_ 1.75499198907548407e-03 -Electron-alpha_thermal_collision_time_at_point_183_______________________ (t_plasma_electron_alpha_thermal_collision_profile183)_ 1.75084539549129337e-03 -Electron-alpha_thermal_collision_time_at_point_184_______________________ (t_plasma_electron_alpha_thermal_collision_profile184)_ 1.74668018743133219e-03 -Electron-alpha_thermal_collision_time_at_point_185_______________________ (t_plasma_electron_alpha_thermal_collision_profile185)_ 1.74249643814001153e-03 -Electron-alpha_thermal_collision_time_at_point_186_______________________ (t_plasma_electron_alpha_thermal_collision_profile186)_ 1.73829422143542125e-03 -Electron-alpha_thermal_collision_time_at_point_187_______________________ (t_plasma_electron_alpha_thermal_collision_profile187)_ 1.73407361171271307e-03 -Electron-alpha_thermal_collision_time_at_point_188_______________________ (t_plasma_electron_alpha_thermal_collision_profile188)_ 1.72983468394752511e-03 -Electron-alpha_thermal_collision_time_at_point_189_______________________ (t_plasma_electron_alpha_thermal_collision_profile189)_ 1.72557751369943396e-03 -Electron-alpha_thermal_collision_time_at_point_190_______________________ (t_plasma_electron_alpha_thermal_collision_profile190)_ 1.72130217711545215e-03 -Electron-alpha_thermal_collision_time_at_point_191_______________________ (t_plasma_electron_alpha_thermal_collision_profile191)_ 1.71700875093354919e-03 -Electron-alpha_thermal_collision_time_at_point_192_______________________ (t_plasma_electron_alpha_thermal_collision_profile192)_ 1.71269731248622462e-03 -Electron-alpha_thermal_collision_time_at_point_193_______________________ (t_plasma_electron_alpha_thermal_collision_profile193)_ 1.70836793970410589e-03 -Electron-alpha_thermal_collision_time_at_point_194_______________________ (t_plasma_electron_alpha_thermal_collision_profile194)_ 1.70402071111958758e-03 -Electron-alpha_thermal_collision_time_at_point_195_______________________ (t_plasma_electron_alpha_thermal_collision_profile195)_ 1.69965570587051200e-03 -Electron-alpha_thermal_collision_time_at_point_196_______________________ (t_plasma_electron_alpha_thermal_collision_profile196)_ 1.69527300370388373e-03 -Electron-alpha_thermal_collision_time_at_point_197_______________________ (t_plasma_electron_alpha_thermal_collision_profile197)_ 1.69087268497962267e-03 -Electron-alpha_thermal_collision_time_at_point_198_______________________ (t_plasma_electron_alpha_thermal_collision_profile198)_ 1.68645483067436089e-03 -Electron-alpha_thermal_collision_time_at_point_199_______________________ (t_plasma_electron_alpha_thermal_collision_profile199)_ 1.68201952238527228e-03 -Electron-alpha_thermal_collision_time_at_point_200_______________________ (t_plasma_electron_alpha_thermal_collision_profile200)_ 1.67756684233395250e-03 -Electron-alpha_thermal_collision_time_at_point_201_______________________ (t_plasma_electron_alpha_thermal_collision_profile201)_ 1.67309687337032333e-03 -Electron-alpha_thermal_collision_time_at_point_202_______________________ (t_plasma_electron_alpha_thermal_collision_profile202)_ 1.66860969897659767e-03 -Electron-alpha_thermal_collision_time_at_point_203_______________________ (t_plasma_electron_alpha_thermal_collision_profile203)_ 1.66410540327126591e-03 -Electron-alpha_thermal_collision_time_at_point_204_______________________ (t_plasma_electron_alpha_thermal_collision_profile204)_ 1.65958407101314282e-03 -Electron-alpha_thermal_collision_time_at_point_205_______________________ (t_plasma_electron_alpha_thermal_collision_profile205)_ 1.65504578760544089e-03 -Electron-alpha_thermal_collision_time_at_point_206_______________________ (t_plasma_electron_alpha_thermal_collision_profile206)_ 1.65049063909989855e-03 -Electron-alpha_thermal_collision_time_at_point_207_______________________ (t_plasma_electron_alpha_thermal_collision_profile207)_ 1.64591871220094287e-03 -Electron-alpha_thermal_collision_time_at_point_208_______________________ (t_plasma_electron_alpha_thermal_collision_profile208)_ 1.64133009426990252e-03 -Electron-alpha_thermal_collision_time_at_point_209_______________________ (t_plasma_electron_alpha_thermal_collision_profile209)_ 1.63672487332925895e-03 -Electron-alpha_thermal_collision_time_at_point_210_______________________ (t_plasma_electron_alpha_thermal_collision_profile210)_ 1.63210313806695195e-03 -Electron-alpha_thermal_collision_time_at_point_211_______________________ (t_plasma_electron_alpha_thermal_collision_profile211)_ 1.62746497784071304e-03 -Electron-alpha_thermal_collision_time_at_point_212_______________________ (t_plasma_electron_alpha_thermal_collision_profile212)_ 1.62281048268246944e-03 -Electron-alpha_thermal_collision_time_at_point_213_______________________ (t_plasma_electron_alpha_thermal_collision_profile213)_ 1.61813974330277002e-03 -Electron-alpha_thermal_collision_time_at_point_214_______________________ (t_plasma_electron_alpha_thermal_collision_profile214)_ 1.61345285109527588e-03 -Electron-alpha_thermal_collision_time_at_point_215_______________________ (t_plasma_electron_alpha_thermal_collision_profile215)_ 1.60874989814128663e-03 -Electron-alpha_thermal_collision_time_at_point_216_______________________ (t_plasma_electron_alpha_thermal_collision_profile216)_ 1.60403097721432400e-03 -Electron-alpha_thermal_collision_time_at_point_217_______________________ (t_plasma_electron_alpha_thermal_collision_profile217)_ 1.59929618178475635e-03 -Electron-alpha_thermal_collision_time_at_point_218_______________________ (t_plasma_electron_alpha_thermal_collision_profile218)_ 1.59454560602447859e-03 -Electron-alpha_thermal_collision_time_at_point_219_______________________ (t_plasma_electron_alpha_thermal_collision_profile219)_ 1.58977934481163621e-03 -Electron-alpha_thermal_collision_time_at_point_220_______________________ (t_plasma_electron_alpha_thermal_collision_profile220)_ 1.58499749373540574e-03 -Electron-alpha_thermal_collision_time_at_point_221_______________________ (t_plasma_electron_alpha_thermal_collision_profile221)_ 1.58020014910082232e-03 -Electron-alpha_thermal_collision_time_at_point_222_______________________ (t_plasma_electron_alpha_thermal_collision_profile222)_ 1.57538740793365748e-03 -Electron-alpha_thermal_collision_time_at_point_223_______________________ (t_plasma_electron_alpha_thermal_collision_profile223)_ 1.57055936798535618e-03 -Electron-alpha_thermal_collision_time_at_point_224_______________________ (t_plasma_electron_alpha_thermal_collision_profile224)_ 1.56571612773801676e-03 -Electron-alpha_thermal_collision_time_at_point_225_______________________ (t_plasma_electron_alpha_thermal_collision_profile225)_ 1.56085778640943596e-03 -Electron-alpha_thermal_collision_time_at_point_226_______________________ (t_plasma_electron_alpha_thermal_collision_profile226)_ 1.55598444395819665e-03 -Electron-alpha_thermal_collision_time_at_point_227_______________________ (t_plasma_electron_alpha_thermal_collision_profile227)_ 1.55109620108882036e-03 -Electron-alpha_thermal_collision_time_at_point_228_______________________ (t_plasma_electron_alpha_thermal_collision_profile228)_ 1.54619315925696955e-03 -Electron-alpha_thermal_collision_time_at_point_229_______________________ (t_plasma_electron_alpha_thermal_collision_profile229)_ 1.54127542067470790e-03 -Electron-alpha_thermal_collision_time_at_point_230_______________________ (t_plasma_electron_alpha_thermal_collision_profile230)_ 1.53634308831581963e-03 -Electron-alpha_thermal_collision_time_at_point_231_______________________ (t_plasma_electron_alpha_thermal_collision_profile231)_ 1.53139626592118240e-03 -Electron-alpha_thermal_collision_time_at_point_232_______________________ (t_plasma_electron_alpha_thermal_collision_profile232)_ 1.52643505800420542e-03 -Electron-alpha_thermal_collision_time_at_point_233_______________________ (t_plasma_electron_alpha_thermal_collision_profile233)_ 1.52145956985631704e-03 -Electron-alpha_thermal_collision_time_at_point_234_______________________ (t_plasma_electron_alpha_thermal_collision_profile234)_ 1.51646990755252564e-03 -Electron-alpha_thermal_collision_time_at_point_235_______________________ (t_plasma_electron_alpha_thermal_collision_profile235)_ 1.51146617795702796e-03 -Electron-alpha_thermal_collision_time_at_point_236_______________________ (t_plasma_electron_alpha_thermal_collision_profile236)_ 1.50644848872889120e-03 -Electron-alpha_thermal_collision_time_at_point_237_______________________ (t_plasma_electron_alpha_thermal_collision_profile237)_ 1.50141694832778652e-03 -Electron-alpha_thermal_collision_time_at_point_238_______________________ (t_plasma_electron_alpha_thermal_collision_profile238)_ 1.49637166601979837e-03 -Electron-alpha_thermal_collision_time_at_point_239_______________________ (t_plasma_electron_alpha_thermal_collision_profile239)_ 1.49131275188328313e-03 -Electron-alpha_thermal_collision_time_at_point_240_______________________ (t_plasma_electron_alpha_thermal_collision_profile240)_ 1.48624031681481136e-03 -Electron-alpha_thermal_collision_time_at_point_241_______________________ (t_plasma_electron_alpha_thermal_collision_profile241)_ 1.48115447253515677e-03 -Electron-alpha_thermal_collision_time_at_point_242_______________________ (t_plasma_electron_alpha_thermal_collision_profile242)_ 1.47605533159536769e-03 -Electron-alpha_thermal_collision_time_at_point_243_______________________ (t_plasma_electron_alpha_thermal_collision_profile243)_ 1.47094300738289806e-03 -Electron-alpha_thermal_collision_time_at_point_244_______________________ (t_plasma_electron_alpha_thermal_collision_profile244)_ 1.46581761412781166e-03 -Electron-alpha_thermal_collision_time_at_point_245_______________________ (t_plasma_electron_alpha_thermal_collision_profile245)_ 1.46067926690905073e-03 -Electron-alpha_thermal_collision_time_at_point_246_______________________ (t_plasma_electron_alpha_thermal_collision_profile246)_ 1.45552808166078467e-03 -Electron-alpha_thermal_collision_time_at_point_247_______________________ (t_plasma_electron_alpha_thermal_collision_profile247)_ 1.45036417517881828e-03 -Electron-alpha_thermal_collision_time_at_point_248_______________________ (t_plasma_electron_alpha_thermal_collision_profile248)_ 1.44518766512708569e-03 -Electron-alpha_thermal_collision_time_at_point_249_______________________ (t_plasma_electron_alpha_thermal_collision_profile249)_ 1.43999867004421158e-03 -Electron-alpha_thermal_collision_time_at_point_250_______________________ (t_plasma_electron_alpha_thermal_collision_profile250)_ 1.43479730935014513e-03 -Electron-alpha_thermal_collision_time_at_point_251_______________________ (t_plasma_electron_alpha_thermal_collision_profile251)_ 1.42958370335287801e-03 -Electron-alpha_thermal_collision_time_at_point_252_______________________ (t_plasma_electron_alpha_thermal_collision_profile252)_ 1.42435797325523141e-03 -Electron-alpha_thermal_collision_time_at_point_253_______________________ (t_plasma_electron_alpha_thermal_collision_profile253)_ 1.41912024116172910e-03 -Electron-alpha_thermal_collision_time_at_point_254_______________________ (t_plasma_electron_alpha_thermal_collision_profile254)_ 1.41387063008554061e-03 -Electron-alpha_thermal_collision_time_at_point_255_______________________ (t_plasma_electron_alpha_thermal_collision_profile255)_ 1.40860926395552184e-03 -Electron-alpha_thermal_collision_time_at_point_256_______________________ (t_plasma_electron_alpha_thermal_collision_profile256)_ 1.40333626762331677e-03 -Electron-alpha_thermal_collision_time_at_point_257_______________________ (t_plasma_electron_alpha_thermal_collision_profile257)_ 1.39805176687055792e-03 -Electron-alpha_thermal_collision_time_at_point_258_______________________ (t_plasma_electron_alpha_thermal_collision_profile258)_ 1.39275588841614823e-03 -Electron-alpha_thermal_collision_time_at_point_259_______________________ (t_plasma_electron_alpha_thermal_collision_profile259)_ 1.38744875992362522e-03 -Electron-alpha_thermal_collision_time_at_point_260_______________________ (t_plasma_electron_alpha_thermal_collision_profile260)_ 1.38213051000861723e-03 -Electron-alpha_thermal_collision_time_at_point_261_______________________ (t_plasma_electron_alpha_thermal_collision_profile261)_ 1.37680126824638429e-03 -Electron-alpha_thermal_collision_time_at_point_262_______________________ (t_plasma_electron_alpha_thermal_collision_profile262)_ 1.37146116517945218e-03 -Electron-alpha_thermal_collision_time_at_point_263_______________________ (t_plasma_electron_alpha_thermal_collision_profile263)_ 1.36611033232533785e-03 -Electron-alpha_thermal_collision_time_at_point_264_______________________ (t_plasma_electron_alpha_thermal_collision_profile264)_ 1.36074890218437121e-03 -Electron-alpha_thermal_collision_time_at_point_265_______________________ (t_plasma_electron_alpha_thermal_collision_profile265)_ 1.35537700824760036e-03 -Electron-alpha_thermal_collision_time_at_point_266_______________________ (t_plasma_electron_alpha_thermal_collision_profile266)_ 1.34999478500480810e-03 -Electron-alpha_thermal_collision_time_at_point_267_______________________ (t_plasma_electron_alpha_thermal_collision_profile267)_ 1.34460236795261724e-03 -Electron-alpha_thermal_collision_time_at_point_268_______________________ (t_plasma_electron_alpha_thermal_collision_profile268)_ 1.33919989360270107e-03 -Electron-alpha_thermal_collision_time_at_point_269_______________________ (t_plasma_electron_alpha_thermal_collision_profile269)_ 1.33378749949008332e-03 -Electron-alpha_thermal_collision_time_at_point_270_______________________ (t_plasma_electron_alpha_thermal_collision_profile270)_ 1.32836532418156199e-03 -Electron-alpha_thermal_collision_time_at_point_271_______________________ (t_plasma_electron_alpha_thermal_collision_profile271)_ 1.32293350728421560e-03 -Electron-alpha_thermal_collision_time_at_point_272_______________________ (t_plasma_electron_alpha_thermal_collision_profile272)_ 1.31749218945403554e-03 -Electron-alpha_thermal_collision_time_at_point_273_______________________ (t_plasma_electron_alpha_thermal_collision_profile273)_ 1.31204151240465138e-03 -Electron-alpha_thermal_collision_time_at_point_274_______________________ (t_plasma_electron_alpha_thermal_collision_profile274)_ 1.30658161891618286e-03 -Electron-alpha_thermal_collision_time_at_point_275_______________________ (t_plasma_electron_alpha_thermal_collision_profile275)_ 1.30111265284418333e-03 -Electron-alpha_thermal_collision_time_at_point_276_______________________ (t_plasma_electron_alpha_thermal_collision_profile276)_ 1.29563475912872271e-03 -Electron-alpha_thermal_collision_time_at_point_277_______________________ (t_plasma_electron_alpha_thermal_collision_profile277)_ 1.29014808380356616e-03 -Electron-alpha_thermal_collision_time_at_point_278_______________________ (t_plasma_electron_alpha_thermal_collision_profile278)_ 1.28465277400548628e-03 -Electron-alpha_thermal_collision_time_at_point_279_______________________ (t_plasma_electron_alpha_thermal_collision_profile279)_ 1.27914897798368766e-03 -Electron-alpha_thermal_collision_time_at_point_280_______________________ (t_plasma_electron_alpha_thermal_collision_profile280)_ 1.27363684510935953e-03 -Electron-alpha_thermal_collision_time_at_point_281_______________________ (t_plasma_electron_alpha_thermal_collision_profile281)_ 1.26811652588535253e-03 -Electron-alpha_thermal_collision_time_at_point_282_______________________ (t_plasma_electron_alpha_thermal_collision_profile282)_ 1.26258817195598486e-03 -Electron-alpha_thermal_collision_time_at_point_283_______________________ (t_plasma_electron_alpha_thermal_collision_profile283)_ 1.25705193611697942e-03 -Electron-alpha_thermal_collision_time_at_point_284_______________________ (t_plasma_electron_alpha_thermal_collision_profile284)_ 1.25150797232553151e-03 -Electron-alpha_thermal_collision_time_at_point_285_______________________ (t_plasma_electron_alpha_thermal_collision_profile285)_ 1.24595643571052224e-03 -Electron-alpha_thermal_collision_time_at_point_286_______________________ (t_plasma_electron_alpha_thermal_collision_profile286)_ 1.24039748258285439e-03 -Electron-alpha_thermal_collision_time_at_point_287_______________________ (t_plasma_electron_alpha_thermal_collision_profile287)_ 1.23483127044594844e-03 -Electron-alpha_thermal_collision_time_at_point_288_______________________ (t_plasma_electron_alpha_thermal_collision_profile288)_ 1.22925795800636812e-03 -Electron-alpha_thermal_collision_time_at_point_289_______________________ (t_plasma_electron_alpha_thermal_collision_profile289)_ 1.22367770518460629e-03 -Electron-alpha_thermal_collision_time_at_point_290_______________________ (t_plasma_electron_alpha_thermal_collision_profile290)_ 1.21809067312600829e-03 -Electron-alpha_thermal_collision_time_at_point_291_______________________ (t_plasma_electron_alpha_thermal_collision_profile291)_ 1.21249702421186612e-03 -Electron-alpha_thermal_collision_time_at_point_292_______________________ (t_plasma_electron_alpha_thermal_collision_profile292)_ 1.20689692207065166e-03 -Electron-alpha_thermal_collision_time_at_point_293_______________________ (t_plasma_electron_alpha_thermal_collision_profile293)_ 1.20129053158942681e-03 -Electron-alpha_thermal_collision_time_at_point_294_______________________ (t_plasma_electron_alpha_thermal_collision_profile294)_ 1.19567801892540696e-03 -Electron-alpha_thermal_collision_time_at_point_295_______________________ (t_plasma_electron_alpha_thermal_collision_profile295)_ 1.19005955151769917e-03 -Electron-alpha_thermal_collision_time_at_point_296_______________________ (t_plasma_electron_alpha_thermal_collision_profile296)_ 1.18443529809920782e-03 -Electron-alpha_thermal_collision_time_at_point_297_______________________ (t_plasma_electron_alpha_thermal_collision_profile297)_ 1.17880542870872260e-03 -Electron-alpha_thermal_collision_time_at_point_298_______________________ (t_plasma_electron_alpha_thermal_collision_profile298)_ 1.17317011470317411e-03 -Electron-alpha_thermal_collision_time_at_point_299_______________________ (t_plasma_electron_alpha_thermal_collision_profile299)_ 1.16752952877008961e-03 -Electron-alpha_thermal_collision_time_at_point_300_______________________ (t_plasma_electron_alpha_thermal_collision_profile300)_ 1.16188384494022353e-03 -Electron-alpha_thermal_collision_time_at_point_301_______________________ (t_plasma_electron_alpha_thermal_collision_profile301)_ 1.15623323860039010e-03 -Electron-alpha_thermal_collision_time_at_point_302_______________________ (t_plasma_electron_alpha_thermal_collision_profile302)_ 1.15057788650648417e-03 -Electron-alpha_thermal_collision_time_at_point_303_______________________ (t_plasma_electron_alpha_thermal_collision_profile303)_ 1.14491796679671654e-03 -Electron-alpha_thermal_collision_time_at_point_304_______________________ (t_plasma_electron_alpha_thermal_collision_profile304)_ 1.13925365900504651e-03 -Electron-alpha_thermal_collision_time_at_point_305_______________________ (t_plasma_electron_alpha_thermal_collision_profile305)_ 1.13358514407483030e-03 -Electron-alpha_thermal_collision_time_at_point_306_______________________ (t_plasma_electron_alpha_thermal_collision_profile306)_ 1.12791260437268906e-03 -Electron-alpha_thermal_collision_time_at_point_307_______________________ (t_plasma_electron_alpha_thermal_collision_profile307)_ 1.12223622370260069e-03 -Electron-alpha_thermal_collision_time_at_point_308_______________________ (t_plasma_electron_alpha_thermal_collision_profile308)_ 1.11655618732021413e-03 -Electron-alpha_thermal_collision_time_at_point_309_______________________ (t_plasma_electron_alpha_thermal_collision_profile309)_ 1.11087268194740929e-03 -Electron-alpha_thermal_collision_time_at_point_310_______________________ (t_plasma_electron_alpha_thermal_collision_profile310)_ 1.10518589578708954e-03 -Electron-alpha_thermal_collision_time_at_point_311_______________________ (t_plasma_electron_alpha_thermal_collision_profile311)_ 1.09949601853823165e-03 -Electron-alpha_thermal_collision_time_at_point_312_______________________ (t_plasma_electron_alpha_thermal_collision_profile312)_ 1.09380324141117552e-03 -Electron-alpha_thermal_collision_time_at_point_313_______________________ (t_plasma_electron_alpha_thermal_collision_profile313)_ 1.08810775714319520e-03 -Electron-alpha_thermal_collision_time_at_point_314_______________________ (t_plasma_electron_alpha_thermal_collision_profile314)_ 1.08240976001431808e-03 -Electron-alpha_thermal_collision_time_at_point_315_______________________ (t_plasma_electron_alpha_thermal_collision_profile315)_ 1.07670944586344178e-03 -Electron-alpha_thermal_collision_time_at_point_316_______________________ (t_plasma_electron_alpha_thermal_collision_profile316)_ 1.07100701210471449e-03 -Electron-alpha_thermal_collision_time_at_point_317_______________________ (t_plasma_electron_alpha_thermal_collision_profile317)_ 1.06530265774422276e-03 -Electron-alpha_thermal_collision_time_at_point_318_______________________ (t_plasma_electron_alpha_thermal_collision_profile318)_ 1.05959658339697558e-03 -Electron-alpha_thermal_collision_time_at_point_319_______________________ (t_plasma_electron_alpha_thermal_collision_profile319)_ 1.05388899130419650e-03 -Electron-alpha_thermal_collision_time_at_point_320_______________________ (t_plasma_electron_alpha_thermal_collision_profile320)_ 1.04818008535093542e-03 -Electron-alpha_thermal_collision_time_at_point_321_______________________ (t_plasma_electron_alpha_thermal_collision_profile321)_ 1.04247007108401193e-03 -Electron-alpha_thermal_collision_time_at_point_322_______________________ (t_plasma_electron_alpha_thermal_collision_profile322)_ 1.03675915573029210e-03 -Electron-alpha_thermal_collision_time_at_point_323_______________________ (t_plasma_electron_alpha_thermal_collision_profile323)_ 1.03104754821532058e-03 -Electron-alpha_thermal_collision_time_at_point_324_______________________ (t_plasma_electron_alpha_thermal_collision_profile324)_ 1.02533545918230681e-03 -Electron-alpha_thermal_collision_time_at_point_325_______________________ (t_plasma_electron_alpha_thermal_collision_profile325)_ 1.01962310101148530e-03 -Electron-alpha_thermal_collision_time_at_point_326_______________________ (t_plasma_electron_alpha_thermal_collision_profile326)_ 1.01391068783985910e-03 -Electron-alpha_thermal_collision_time_at_point_327_______________________ (t_plasma_electron_alpha_thermal_collision_profile327)_ 1.00819843558133779e-03 -Electron-alpha_thermal_collision_time_at_point_328_______________________ (t_plasma_electron_alpha_thermal_collision_profile328)_ 1.00248656194728268e-03 -Electron-alpha_thermal_collision_time_at_point_329_______________________ (t_plasma_electron_alpha_thermal_collision_profile329)_ 9.96775286467478086e-04 -Electron-alpha_thermal_collision_time_at_point_330_______________________ (t_plasma_electron_alpha_thermal_collision_profile330)_ 9.91064830511531776e-04 -Electron-alpha_thermal_collision_time_at_point_331_______________________ (t_plasma_electron_alpha_thermal_collision_profile331)_ 9.85355417310732453e-04 -Electron-alpha_thermal_collision_time_at_point_332_______________________ (t_plasma_electron_alpha_thermal_collision_profile332)_ 9.79647271980367855e-04 -Electron-alpha_thermal_collision_time_at_point_333_______________________ (t_plasma_electron_alpha_thermal_collision_profile333)_ 9.73940621542529320e-04 -Electron-alpha_thermal_collision_time_at_point_334_______________________ (t_plasma_electron_alpha_thermal_collision_profile334)_ 9.68235694949409558e-04 -Electron-alpha_thermal_collision_time_at_point_335_______________________ (t_plasma_electron_alpha_thermal_collision_profile335)_ 9.62532723107124518e-04 -Electron-alpha_thermal_collision_time_at_point_336_______________________ (t_plasma_electron_alpha_thermal_collision_profile336)_ 9.56831938900059914e-04 -Electron-alpha_thermal_collision_time_at_point_337_______________________ (t_plasma_electron_alpha_thermal_collision_profile337)_ 9.51133577215782823e-04 -Electron-alpha_thermal_collision_time_at_point_338_______________________ (t_plasma_electron_alpha_thermal_collision_profile338)_ 9.45437874970518274e-04 -Electron-alpha_thermal_collision_time_at_point_339_______________________ (t_plasma_electron_alpha_thermal_collision_profile339)_ 9.39745071135226042e-04 -Electron-alpha_thermal_collision_time_at_point_340_______________________ (t_plasma_electron_alpha_thermal_collision_profile340)_ 9.34055406762295112e-04 -Electron-alpha_thermal_collision_time_at_point_341_______________________ (t_plasma_electron_alpha_thermal_collision_profile341)_ 9.28369125012875229e-04 -Electron-alpha_thermal_collision_time_at_point_342_______________________ (t_plasma_electron_alpha_thermal_collision_profile342)_ 9.22686471184879344e-04 -Electron-alpha_thermal_collision_time_at_point_343_______________________ (t_plasma_electron_alpha_thermal_collision_profile343)_ 9.17007692741672576e-04 -Electron-alpha_thermal_collision_time_at_point_344_______________________ (t_plasma_electron_alpha_thermal_collision_profile344)_ 9.11333039341481418e-04 -Electron-alpha_thermal_collision_time_at_point_345_______________________ (t_plasma_electron_alpha_thermal_collision_profile345)_ 9.05662762867542686e-04 -Electron-alpha_thermal_collision_time_at_point_346_______________________ (t_plasma_electron_alpha_thermal_collision_profile346)_ 8.99997117459044481e-04 -Electron-alpha_thermal_collision_time_at_point_347_______________________ (t_plasma_electron_alpha_thermal_collision_profile347)_ 8.94336359542849835e-04 -Electron-alpha_thermal_collision_time_at_point_348_______________________ (t_plasma_electron_alpha_thermal_collision_profile348)_ 8.88680747866083930e-04 -Electron-alpha_thermal_collision_time_at_point_349_______________________ (t_plasma_electron_alpha_thermal_collision_profile349)_ 8.83030543529578476e-04 -Electron-alpha_thermal_collision_time_at_point_350_______________________ (t_plasma_electron_alpha_thermal_collision_profile350)_ 8.77386010022234743e-04 -Electron-alpha_thermal_collision_time_at_point_351_______________________ (t_plasma_electron_alpha_thermal_collision_profile351)_ 8.71747413256331689e-04 -Electron-alpha_thermal_collision_time_at_point_352_______________________ (t_plasma_electron_alpha_thermal_collision_profile352)_ 8.66115021603825158e-04 -Electron-alpha_thermal_collision_time_at_point_353_______________________ (t_plasma_electron_alpha_thermal_collision_profile353)_ 8.60489105933676850e-04 -Electron-alpha_thermal_collision_time_at_point_354_______________________ (t_plasma_electron_alpha_thermal_collision_profile354)_ 8.54869939650257523e-04 -Electron-alpha_thermal_collision_time_at_point_355_______________________ (t_plasma_electron_alpha_thermal_collision_profile355)_ 8.49257798732875159e-04 -Electron-alpha_thermal_collision_time_at_point_356_______________________ (t_plasma_electron_alpha_thermal_collision_profile356)_ 8.43652961776472231e-04 -Electron-alpha_thermal_collision_time_at_point_357_______________________ (t_plasma_electron_alpha_thermal_collision_profile357)_ 8.38055710033549844e-04 -Electron-alpha_thermal_collision_time_at_point_358_______________________ (t_plasma_electron_alpha_thermal_collision_profile358)_ 8.32466327457369293e-04 -Electron-alpha_thermal_collision_time_at_point_359_______________________ (t_plasma_electron_alpha_thermal_collision_profile359)_ 8.26885100746490328e-04 -Electron-alpha_thermal_collision_time_at_point_360_______________________ (t_plasma_electron_alpha_thermal_collision_profile360)_ 8.21312319390713136e-04 -Electron-alpha_thermal_collision_time_at_point_361_______________________ (t_plasma_electron_alpha_thermal_collision_profile361)_ 8.15748275718475432e-04 -Electron-alpha_thermal_collision_time_at_point_362_______________________ (t_plasma_electron_alpha_thermal_collision_profile362)_ 8.10193264945789225e-04 -Electron-alpha_thermal_collision_time_at_point_363_______________________ (t_plasma_electron_alpha_thermal_collision_profile363)_ 8.04647585226778844e-04 -Electron-alpha_thermal_collision_time_at_point_364_______________________ (t_plasma_electron_alpha_thermal_collision_profile364)_ 7.99111537705899906e-04 -Electron-alpha_thermal_collision_time_at_point_365_______________________ (t_plasma_electron_alpha_thermal_collision_profile365)_ 7.93585426571922397e-04 -Electron-alpha_thermal_collision_time_at_point_366_______________________ (t_plasma_electron_alpha_thermal_collision_profile366)_ 7.88069559113760030e-04 -Electron-alpha_thermal_collision_time_at_point_367_______________________ (t_plasma_electron_alpha_thermal_collision_profile367)_ 7.82564245778239907e-04 -Electron-alpha_thermal_collision_time_at_point_368_______________________ (t_plasma_electron_alpha_thermal_collision_profile368)_ 7.77069800229906777e-04 -Electron-alpha_thermal_collision_time_at_point_369_______________________ (t_plasma_electron_alpha_thermal_collision_profile369)_ 7.71586539412963943e-04 -Electron-alpha_thermal_collision_time_at_point_370_______________________ (t_plasma_electron_alpha_thermal_collision_profile370)_ 7.66114783615463456e-04 -Electron-alpha_thermal_collision_time_at_point_371_______________________ (t_plasma_electron_alpha_thermal_collision_profile371)_ 7.60654856535849231e-04 -Electron-alpha_thermal_collision_time_at_point_372_______________________ (t_plasma_electron_alpha_thermal_collision_profile372)_ 7.55207085351991894e-04 -Electron-alpha_thermal_collision_time_at_point_373_______________________ (t_plasma_electron_alpha_thermal_collision_profile373)_ 7.49771800792827002e-04 -Electron-alpha_thermal_collision_time_at_point_374_______________________ (t_plasma_electron_alpha_thermal_collision_profile374)_ 7.44349337212747361e-04 -Electron-alpha_thermal_collision_time_at_point_375_______________________ (t_plasma_electron_alpha_thermal_collision_profile375)_ 7.38940032668888316e-04 -Electron-alpha_thermal_collision_time_at_point_376_______________________ (t_plasma_electron_alpha_thermal_collision_profile376)_ 7.33544229001464529e-04 -Electron-alpha_thermal_collision_time_at_point_377_______________________ (t_plasma_electron_alpha_thermal_collision_profile377)_ 7.28162271917321422e-04 -Electron-alpha_thermal_collision_time_at_point_378_______________________ (t_plasma_electron_alpha_thermal_collision_profile378)_ 7.22794511076881138e-04 -Electron-alpha_thermal_collision_time_at_point_379_______________________ (t_plasma_electron_alpha_thermal_collision_profile379)_ 7.17441300184662911e-04 -Electron-alpha_thermal_collision_time_at_point_380_______________________ (t_plasma_electron_alpha_thermal_collision_profile380)_ 7.12102997083586533e-04 -Electron-alpha_thermal_collision_time_at_point_381_______________________ (t_plasma_electron_alpha_thermal_collision_profile381)_ 7.06779963853269052e-04 -Electron-alpha_thermal_collision_time_at_point_382_______________________ (t_plasma_electron_alpha_thermal_collision_profile382)_ 7.01472566912532836e-04 -Electron-alpha_thermal_collision_time_at_point_383_______________________ (t_plasma_electron_alpha_thermal_collision_profile383)_ 6.96181177126382607e-04 -Electron-alpha_thermal_collision_time_at_point_384_______________________ (t_plasma_electron_alpha_thermal_collision_profile384)_ 6.90906169917699839e-04 -Electron-alpha_thermal_collision_time_at_point_385_______________________ (t_plasma_electron_alpha_thermal_collision_profile385)_ 6.85647925383935878e-04 -Electron-alpha_thermal_collision_time_at_point_386_______________________ (t_plasma_electron_alpha_thermal_collision_profile386)_ 6.80406828419091508e-04 -Electron-alpha_thermal_collision_time_at_point_387_______________________ (t_plasma_electron_alpha_thermal_collision_profile387)_ 6.75183268841316494e-04 -Electron-alpha_thermal_collision_time_at_point_388_______________________ (t_plasma_electron_alpha_thermal_collision_profile388)_ 6.69977641526447944e-04 -Electron-alpha_thermal_collision_time_at_point_389_______________________ (t_plasma_electron_alpha_thermal_collision_profile389)_ 6.64790346547866531e-04 -Electron-alpha_thermal_collision_time_at_point_390_______________________ (t_plasma_electron_alpha_thermal_collision_profile390)_ 6.59621789323048212e-04 -Electron-alpha_thermal_collision_time_at_point_391_______________________ (t_plasma_electron_alpha_thermal_collision_profile391)_ 6.54472380767238829e-04 -Electron-alpha_thermal_collision_time_at_point_392_______________________ (t_plasma_electron_alpha_thermal_collision_profile392)_ 6.49342537454690905e-04 -Electron-alpha_thermal_collision_time_at_point_393_______________________ (t_plasma_electron_alpha_thermal_collision_profile393)_ 6.44232681787952925e-04 -Electron-alpha_thermal_collision_time_at_point_394_______________________ (t_plasma_electron_alpha_thermal_collision_profile394)_ 6.39143242175720127e-04 -Electron-alpha_thermal_collision_time_at_point_395_______________________ (t_plasma_electron_alpha_thermal_collision_profile395)_ 6.34074653219809719e-04 -Electron-alpha_thermal_collision_time_at_point_396_______________________ (t_plasma_electron_alpha_thermal_collision_profile396)_ 6.29027355911858247e-04 -Electron-alpha_thermal_collision_time_at_point_397_______________________ (t_plasma_electron_alpha_thermal_collision_profile397)_ 6.24001797840387402e-04 -Electron-alpha_thermal_collision_time_at_point_398_______________________ (t_plasma_electron_alpha_thermal_collision_profile398)_ 6.18998433408936830e-04 -Electron-alpha_thermal_collision_time_at_point_399_______________________ (t_plasma_electron_alpha_thermal_collision_profile399)_ 6.14017724066009962e-04 -Electron-alpha_thermal_collision_time_at_point_400_______________________ (t_plasma_electron_alpha_thermal_collision_profile400)_ 6.09060138547655797e-04 -Electron-alpha_thermal_collision_time_at_point_401_______________________ (t_plasma_electron_alpha_thermal_collision_profile401)_ 6.04126153133556585e-04 -Electron-alpha_thermal_collision_time_at_point_402_______________________ (t_plasma_electron_alpha_thermal_collision_profile402)_ 5.99216251917574112e-04 -Electron-alpha_thermal_collision_time_at_point_403_______________________ (t_plasma_electron_alpha_thermal_collision_profile403)_ 5.94330927093790311e-04 -Electron-alpha_thermal_collision_time_at_point_404_______________________ (t_plasma_electron_alpha_thermal_collision_profile404)_ 5.89470679259151888e-04 -Electron-alpha_thermal_collision_time_at_point_405_______________________ (t_plasma_electron_alpha_thermal_collision_profile405)_ 5.84636017733935771e-04 -Electron-alpha_thermal_collision_time_at_point_406_______________________ (t_plasma_electron_alpha_thermal_collision_profile406)_ 5.79827460901351905e-04 -Electron-alpha_thermal_collision_time_at_point_407_______________________ (t_plasma_electron_alpha_thermal_collision_profile407)_ 5.75045536567720642e-04 -Electron-alpha_thermal_collision_time_at_point_408_______________________ (t_plasma_electron_alpha_thermal_collision_profile408)_ 5.70290782344773698e-04 -Electron-alpha_thermal_collision_time_at_point_409_______________________ (t_plasma_electron_alpha_thermal_collision_profile409)_ 5.65563746055801819e-04 -Electron-alpha_thermal_collision_time_at_point_410_______________________ (t_plasma_electron_alpha_thermal_collision_profile410)_ 5.60864986167481662e-04 -Electron-alpha_thermal_collision_time_at_point_411_______________________ (t_plasma_electron_alpha_thermal_collision_profile411)_ 5.56195072249434188e-04 -Electron-alpha_thermal_collision_time_at_point_412_______________________ (t_plasma_electron_alpha_thermal_collision_profile412)_ 5.51554585463722097e-04 -Electron-alpha_thermal_collision_time_at_point_413_______________________ (t_plasma_electron_alpha_thermal_collision_profile413)_ 5.46944119086731741e-04 -Electron-alpha_thermal_collision_time_at_point_414_______________________ (t_plasma_electron_alpha_thermal_collision_profile414)_ 5.42364279066102732e-04 -Electron-alpha_thermal_collision_time_at_point_415_______________________ (t_plasma_electron_alpha_thermal_collision_profile415)_ 5.37815684615648541e-04 -Electron-alpha_thermal_collision_time_at_point_416_______________________ (t_plasma_electron_alpha_thermal_collision_profile416)_ 5.33298968851497268e-04 -Electron-alpha_thermal_collision_time_at_point_417_______________________ (t_plasma_electron_alpha_thermal_collision_profile417)_ 5.28814779473014951e-04 -Electron-alpha_thermal_collision_time_at_point_418_______________________ (t_plasma_electron_alpha_thermal_collision_profile418)_ 5.24363779492445438e-04 -Electron-alpha_thermal_collision_time_at_point_419_______________________ (t_plasma_electron_alpha_thermal_collision_profile419)_ 5.19946648017616318e-04 -Electron-alpha_thermal_collision_time_at_point_420_______________________ (t_plasma_electron_alpha_thermal_collision_profile420)_ 5.15564081092531926e-04 -Electron-alpha_thermal_collision_time_at_point_421_______________________ (t_plasma_electron_alpha_thermal_collision_profile421)_ 5.11216792601197341e-04 -Electron-alpha_thermal_collision_time_at_point_422_______________________ (t_plasma_electron_alpha_thermal_collision_profile422)_ 5.06905515240629119e-04 -Electron-alpha_thermal_collision_time_at_point_423_______________________ (t_plasma_electron_alpha_thermal_collision_profile423)_ 5.02631001569673664e-04 -Electron-alpha_thermal_collision_time_at_point_424_______________________ (t_plasma_electron_alpha_thermal_collision_profile424)_ 4.98394025141033229e-04 -Electron-alpha_thermal_collision_time_at_point_425_______________________ (t_plasma_electron_alpha_thermal_collision_profile425)_ 4.94195381724787529e-04 -Electron-alpha_thermal_collision_time_at_point_426_______________________ (t_plasma_electron_alpha_thermal_collision_profile426)_ 4.90035890632684566e-04 -Electron-alpha_thermal_collision_time_at_point_427_______________________ (t_plasma_electron_alpha_thermal_collision_profile427)_ 4.85916396153650385e-04 -Electron-alpha_thermal_collision_time_at_point_428_______________________ (t_plasma_electron_alpha_thermal_collision_profile428)_ 4.81837769112276458e-04 -Electron-alpha_thermal_collision_time_at_point_429_______________________ (t_plasma_electron_alpha_thermal_collision_profile429)_ 4.77800908563577413e-04 -Electron-alpha_thermal_collision_time_at_point_430_______________________ (t_plasma_electron_alpha_thermal_collision_profile430)_ 4.73806743639080825e-04 -Electron-alpha_thermal_collision_time_at_point_431_______________________ (t_plasma_electron_alpha_thermal_collision_profile431)_ 4.69856235561357579e-04 -Electron-alpha_thermal_collision_time_at_point_432_______________________ (t_plasma_electron_alpha_thermal_collision_profile432)_ 4.65950379846496131e-04 -Electron-alpha_thermal_collision_time_at_point_433_______________________ (t_plasma_electron_alpha_thermal_collision_profile433)_ 4.62090208716812404e-04 -Electron-alpha_thermal_collision_time_at_point_434_______________________ (t_plasma_electron_alpha_thermal_collision_profile434)_ 4.58276793749373115e-04 -Electron-alpha_thermal_collision_time_at_point_435_______________________ (t_plasma_electron_alpha_thermal_collision_profile435)_ 4.54511248789765752e-04 -Electron-alpha_thermal_collision_time_at_point_436_______________________ (t_plasma_electron_alpha_thermal_collision_profile436)_ 4.50794733165136479e-04 -Electron-alpha_thermal_collision_time_at_point_437_______________________ (t_plasma_electron_alpha_thermal_collision_profile437)_ 4.47128455235940069e-04 -Electron-alpha_thermal_collision_time_at_point_438_______________________ (t_plasma_electron_alpha_thermal_collision_profile438)_ 4.43513676332371002e-04 -Electron-alpha_thermal_collision_time_at_point_439_______________________ (t_plasma_electron_alpha_thermal_collision_profile439)_ 4.39951715129223420e-04 -Electron-alpha_thermal_collision_time_at_point_440_______________________ (t_plasma_electron_alpha_thermal_collision_profile440)_ 4.36443952522388393e-04 -Electron-alpha_thermal_collision_time_at_point_441_______________________ (t_plasma_electron_alpha_thermal_collision_profile441)_ 4.32991837081619924e-04 -Electron-alpha_thermal_collision_time_at_point_442_______________________ (t_plasma_electron_alpha_thermal_collision_profile442)_ 4.29596891168221653e-04 -Electron-alpha_thermal_collision_time_at_point_443_______________________ (t_plasma_electron_alpha_thermal_collision_profile443)_ 4.26260717823493979e-04 -Electron-alpha_thermal_collision_time_at_point_444_______________________ (t_plasma_electron_alpha_thermal_collision_profile444)_ 4.22985008555125971e-04 -Electron-alpha_thermal_collision_time_at_point_445_______________________ (t_plasma_electron_alpha_thermal_collision_profile445)_ 4.19771552175290995e-04 -Electron-alpha_thermal_collision_time_at_point_446_______________________ (t_plasma_electron_alpha_thermal_collision_profile446)_ 4.16622244877680209e-04 -Electron-alpha_thermal_collision_time_at_point_447_______________________ (t_plasma_electron_alpha_thermal_collision_profile447)_ 4.13539101783131442e-04 -Electron-alpha_thermal_collision_time_at_point_448_______________________ (t_plasma_electron_alpha_thermal_collision_profile448)_ 4.10524270237848106e-04 -Electron-alpha_thermal_collision_time_at_point_449_______________________ (t_plasma_electron_alpha_thermal_collision_profile449)_ 4.07580045218436252e-04 -Electron-alpha_thermal_collision_time_at_point_450_______________________ (t_plasma_electron_alpha_thermal_collision_profile450)_ 4.04708887289798752e-04 -Electron-alpha_thermal_collision_time_at_point_451_______________________ (t_plasma_electron_alpha_thermal_collision_profile451)_ 4.01913443683324996e-04 -Electron-alpha_thermal_collision_time_at_point_452_______________________ (t_plasma_electron_alpha_thermal_collision_profile452)_ 3.99196573225390323e-04 -Electron-alpha_thermal_collision_time_at_point_453_______________________ (t_plasma_electron_alpha_thermal_collision_profile453)_ 3.96561376067019512e-04 -Electron-alpha_thermal_collision_time_at_point_454_______________________ (t_plasma_electron_alpha_thermal_collision_profile454)_ 3.94011229470152399e-04 -Electron-alpha_thermal_collision_time_at_point_455_______________________ (t_plasma_electron_alpha_thermal_collision_profile455)_ 3.91549831333271958e-04 -Electron-alpha_thermal_collision_time_at_point_456_______________________ (t_plasma_electron_alpha_thermal_collision_profile456)_ 3.89181253750208833e-04 -Electron-alpha_thermal_collision_time_at_point_457_______________________ (t_plasma_electron_alpha_thermal_collision_profile457)_ 3.86910009788381606e-04 -Electron-alpha_thermal_collision_time_at_point_458_______________________ (t_plasma_electron_alpha_thermal_collision_profile458)_ 3.84741138007895877e-04 -Electron-alpha_thermal_collision_time_at_point_459_______________________ (t_plasma_electron_alpha_thermal_collision_profile459)_ 3.82680311295488886e-04 -Electron-alpha_thermal_collision_time_at_point_460_______________________ (t_plasma_electron_alpha_thermal_collision_profile460)_ 3.80733979843168478e-04 -Electron-alpha_thermal_collision_time_at_point_461_______________________ (t_plasma_electron_alpha_thermal_collision_profile461)_ 3.78909563456918033e-04 -Electron-alpha_thermal_collision_time_at_point_462_______________________ (t_plasma_electron_alpha_thermal_collision_profile462)_ 3.77215717574756857e-04 -Electron-alpha_thermal_collision_time_at_point_463_______________________ (t_plasma_electron_alpha_thermal_collision_profile463)_ 3.75662713983430940e-04 -Electron-alpha_thermal_collision_time_at_point_464_______________________ (t_plasma_electron_alpha_thermal_collision_profile464)_ 3.74263009158085102e-04 -Electron-alpha_thermal_collision_time_at_point_465_______________________ (t_plasma_electron_alpha_thermal_collision_profile465)_ 3.73032139515076929e-04 -Electron-alpha_thermal_collision_time_at_point_466_______________________ (t_plasma_electron_alpha_thermal_collision_profile466)_ 3.71990235373094761e-04 -Electron-alpha_thermal_collision_time_at_point_467_______________________ (t_plasma_electron_alpha_thermal_collision_profile467)_ 3.71164847040454323e-04 -Electron-alpha_thermal_collision_time_at_point_468_______________________ (t_plasma_electron_alpha_thermal_collision_profile468)_ 3.70597067180445901e-04 -Electron-alpha_thermal_collision_time_at_point_469_______________________ (t_plasma_electron_alpha_thermal_collision_profile469)_ 3.70358733087456564e-04 -Electron-alpha_thermal_collision_time_at_point_470_______________________ (t_plasma_electron_alpha_thermal_collision_profile470)_ 3.70657624724476291e-04 -Electron-alpha_thermal_collision_time_at_point_471_______________________ (t_plasma_electron_alpha_thermal_collision_profile471)_ 3.58065924134730730e-04 -Electron-alpha_thermal_collision_time_at_point_472_______________________ (t_plasma_electron_alpha_thermal_collision_profile472)_ 3.45397149645596641e-04 -Electron-alpha_thermal_collision_time_at_point_473_______________________ (t_plasma_electron_alpha_thermal_collision_profile473)_ 3.32653071741859010e-04 -Electron-alpha_thermal_collision_time_at_point_474_______________________ (t_plasma_electron_alpha_thermal_collision_profile474)_ 3.19835847910547035e-04 -Electron-alpha_thermal_collision_time_at_point_475_______________________ (t_plasma_electron_alpha_thermal_collision_profile475)_ 3.06948078608551989e-04 -Electron-alpha_thermal_collision_time_at_point_476_______________________ (t_plasma_electron_alpha_thermal_collision_profile476)_ 2.93992872106387188e-04 -Electron-alpha_thermal_collision_time_at_point_477_______________________ (t_plasma_electron_alpha_thermal_collision_profile477)_ 2.80973919873900530e-04 -Electron-alpha_thermal_collision_time_at_point_478_______________________ (t_plasma_electron_alpha_thermal_collision_profile478)_ 2.67895584551436155e-04 -Electron-alpha_thermal_collision_time_at_point_479_______________________ (t_plasma_electron_alpha_thermal_collision_profile479)_ 2.54763003031411358e-04 -Electron-alpha_thermal_collision_time_at_point_480_______________________ (t_plasma_electron_alpha_thermal_collision_profile480)_ 2.41582207795011238e-04 -Electron-alpha_thermal_collision_time_at_point_481_______________________ (t_plasma_electron_alpha_thermal_collision_profile481)_ 2.28360270454750842e-04 -Electron-alpha_thermal_collision_time_at_point_482_______________________ (t_plasma_electron_alpha_thermal_collision_profile482)_ 2.15105472514218313e-04 -Electron-alpha_thermal_collision_time_at_point_483_______________________ (t_plasma_electron_alpha_thermal_collision_profile483)_ 2.01827509769569429e-04 -Electron-alpha_thermal_collision_time_at_point_484_______________________ (t_plasma_electron_alpha_thermal_collision_profile484)_ 1.88537738687273717e-04 -Electron-alpha_thermal_collision_time_at_point_485_______________________ (t_plasma_electron_alpha_thermal_collision_profile485)_ 1.75249475714459458e-04 -Electron-alpha_thermal_collision_time_at_point_486_______________________ (t_plasma_electron_alpha_thermal_collision_profile486)_ 1.61978364140871495e-04 -Electron-alpha_thermal_collision_time_at_point_487_______________________ (t_plasma_electron_alpha_thermal_collision_profile487)_ 1.48742828349558508e-04 -Electron-alpha_thermal_collision_time_at_point_488_______________________ (t_plasma_electron_alpha_thermal_collision_profile488)_ 1.35564642894424130e-04 -Electron-alpha_thermal_collision_time_at_point_489_______________________ (t_plasma_electron_alpha_thermal_collision_profile489)_ 1.22469655198043006e-04 -Electron-alpha_thermal_collision_time_at_point_490_______________________ (t_plasma_electron_alpha_thermal_collision_profile490)_ 1.09488718125248035e-04 -Electron-alpha_thermal_collision_time_at_point_491_______________________ (t_plasma_electron_alpha_thermal_collision_profile491)_ 9.66589164561148492e-05 -Electron-alpha_thermal_collision_time_at_point_492_______________________ (t_plasma_electron_alpha_thermal_collision_profile492)_ 8.40252172036041789e-05 -Electron-alpha_thermal_collision_time_at_point_493_______________________ (t_plasma_electron_alpha_thermal_collision_profile493)_ 7.16427532765027139e-05 -Electron-alpha_thermal_collision_time_at_point_494_______________________ (t_plasma_electron_alpha_thermal_collision_profile494)_ 5.95800957520347958e-05 -Electron-alpha_thermal_collision_time_at_point_495_______________________ (t_plasma_electron_alpha_thermal_collision_profile495)_ 4.79241561663147403e-05 -Electron-alpha_thermal_collision_time_at_point_496_______________________ (t_plasma_electron_alpha_thermal_collision_profile496)_ 3.67879732121744691e-05 -Electron-alpha_thermal_collision_time_at_point_497_______________________ (t_plasma_electron_alpha_thermal_collision_profile497)_ 2.63241112999669208e-05 -Electron-alpha_thermal_collision_time_at_point_498_______________________ (t_plasma_electron_alpha_thermal_collision_profile498)_ 1.67505532148215755e-05 -Electron-alpha_thermal_collision_time_at_point_499_______________________ (t_plasma_electron_alpha_thermal_collision_profile499)_ 8.41095103153797810e-06 -Electron-alpha_thermal_collision_time_at_point_500_______________________ (t_plasma_electron_alpha_thermal_collision_profile500)_ 2.03661745176224198e-06 -Volume_averaged_electron-electron_collision_frequency_(Hz)_______________ (freq_plasma_electron_electron_collision_vol_avg)_ 1.44189844723732881e+03 -Electron-electron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_electron_collision_profile0)_ 6.56342653214196275e+02 -Electron-electron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_electron_collision_profile1)_ 6.56346414592525662e+02 -Electron-electron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_electron_collision_profile2)_ 6.56357698936875181e+02 -Electron-electron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_electron_collision_profile3)_ 6.56376506875353584e+02 -Electron-electron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_electron_collision_profile4)_ 6.56402839454894433e+02 -Electron-electron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_electron_collision_profile5)_ 6.56436698141385250e+02 -Electron-electron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_electron_collision_profile6)_ 6.56478084819847481e+02 -Electron-electron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_electron_collision_profile7)_ 6.56527001794667171e+02 -Electron-electron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_electron_collision_profile8)_ 6.56583451789880087e+02 -Electron-electron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_electron_collision_profile9)_ 6.56647437949504251e+02 -Electron-electron_collision_frequency_at_point_10________________________ (freq_plasma_electron_electron_collision_profile10)_ 6.56718963837928527e+02 -Electron-electron_collision_frequency_at_point_11________________________ (freq_plasma_electron_electron_collision_profile11)_ 6.56798033440349741e+02 -Electron-electron_collision_frequency_at_point_12________________________ (freq_plasma_electron_electron_collision_profile12)_ 6.56884651163263584e+02 -Electron-electron_collision_frequency_at_point_13________________________ (freq_plasma_electron_electron_collision_profile13)_ 6.56978821835005874e+02 -Electron-electron_collision_frequency_at_point_14________________________ (freq_plasma_electron_electron_collision_profile14)_ 6.57080550706348617e+02 -Electron-electron_collision_frequency_at_point_15________________________ (freq_plasma_electron_electron_collision_profile15)_ 6.57189843451144498e+02 -Electron-electron_collision_frequency_at_point_16________________________ (freq_plasma_electron_electron_collision_profile16)_ 6.57306706167026618e+02 -Electron-electron_collision_frequency_at_point_17________________________ (freq_plasma_electron_electron_collision_profile17)_ 6.57431145376160771e+02 -Electron-electron_collision_frequency_at_point_18________________________ (freq_plasma_electron_electron_collision_profile18)_ 6.57563168026047038e+02 -Electron-electron_collision_frequency_at_point_19________________________ (freq_plasma_electron_electron_collision_profile19)_ 6.57702781490378811e+02 -Electron-electron_collision_frequency_at_point_20________________________ (freq_plasma_electron_electron_collision_profile20)_ 6.57849993569952517e+02 -Electron-electron_collision_frequency_at_point_21________________________ (freq_plasma_electron_electron_collision_profile21)_ 6.58004812493628151e+02 -Electron-electron_collision_frequency_at_point_22________________________ (freq_plasma_electron_electron_collision_profile22)_ 6.58167246919349282e+02 -Electron-electron_collision_frequency_at_point_23________________________ (freq_plasma_electron_electron_collision_profile23)_ 6.58337305935210338e+02 -Electron-electron_collision_frequency_at_point_24________________________ (freq_plasma_electron_electron_collision_profile24)_ 6.58514999060580635e+02 -Electron-electron_collision_frequency_at_point_25________________________ (freq_plasma_electron_electron_collision_profile25)_ 6.58700336247283303e+02 -Electron-electron_collision_frequency_at_point_26________________________ (freq_plasma_electron_electron_collision_profile26)_ 6.58893327880827655e+02 -Electron-electron_collision_frequency_at_point_27________________________ (freq_plasma_electron_electron_collision_profile27)_ 6.59093984781693507e+02 -Electron-electron_collision_frequency_at_point_28________________________ (freq_plasma_electron_electron_collision_profile28)_ 6.59302318206676318e+02 -Electron-electron_collision_frequency_at_point_29________________________ (freq_plasma_electron_electron_collision_profile29)_ 6.59518339850279744e+02 -Electron-electron_collision_frequency_at_point_30________________________ (freq_plasma_electron_electron_collision_profile30)_ 6.59742061846171850e+02 -Electron-electron_collision_frequency_at_point_31________________________ (freq_plasma_electron_electron_collision_profile31)_ 6.59973496768689870e+02 -Electron-electron_collision_frequency_at_point_32________________________ (freq_plasma_electron_electron_collision_profile32)_ 6.60212657634404991e+02 -Electron-electron_collision_frequency_at_point_33________________________ (freq_plasma_electron_electron_collision_profile33)_ 6.60459557903742279e+02 -Electron-electron_collision_frequency_at_point_34________________________ (freq_plasma_electron_electron_collision_profile34)_ 6.60714211482658243e+02 -Electron-electron_collision_frequency_at_point_35________________________ (freq_plasma_electron_electron_collision_profile35)_ 6.60976632724373871e+02 -Electron-electron_collision_frequency_at_point_36________________________ (freq_plasma_electron_electron_collision_profile36)_ 6.61246836431166798e+02 -Electron-electron_collision_frequency_at_point_37________________________ (freq_plasma_electron_electron_collision_profile37)_ 6.61524837856218937e+02 -Electron-electron_collision_frequency_at_point_38________________________ (freq_plasma_electron_electron_collision_profile38)_ 6.61810652705525058e+02 -Electron-electron_collision_frequency_at_point_39________________________ (freq_plasma_electron_electron_collision_profile39)_ 6.62104297139858545e+02 -Electron-electron_collision_frequency_at_point_40________________________ (freq_plasma_electron_electron_collision_profile40)_ 6.62405787776795705e+02 -Electron-electron_collision_frequency_at_point_41________________________ (freq_plasma_electron_electron_collision_profile41)_ 6.62715141692800330e+02 -Electron-electron_collision_frequency_at_point_42________________________ (freq_plasma_electron_electron_collision_profile42)_ 6.63032376425367715e+02 -Electron-electron_collision_frequency_at_point_43________________________ (freq_plasma_electron_electron_collision_profile43)_ 6.63357509975229959e+02 -Electron-electron_collision_frequency_at_point_44________________________ (freq_plasma_electron_electron_collision_profile44)_ 6.63690560808619239e+02 -Electron-electron_collision_frequency_at_point_45________________________ (freq_plasma_electron_electron_collision_profile45)_ 6.64031547859597254e+02 -Electron-electron_collision_frequency_at_point_46________________________ (freq_plasma_electron_electron_collision_profile46)_ 6.64380490532441513e+02 -Electron-electron_collision_frequency_at_point_47________________________ (freq_plasma_electron_electron_collision_profile47)_ 6.64737408704096083e+02 -Electron-electron_collision_frequency_at_point_48________________________ (freq_plasma_electron_electron_collision_profile48)_ 6.65102322726685998e+02 -Electron-electron_collision_frequency_at_point_49________________________ (freq_plasma_electron_electron_collision_profile49)_ 6.65475253430093517e+02 -Electron-electron_collision_frequency_at_point_50________________________ (freq_plasma_electron_electron_collision_profile50)_ 6.65856222124598730e+02 -Electron-electron_collision_frequency_at_point_51________________________ (freq_plasma_electron_electron_collision_profile51)_ 6.66245250603585191e+02 -Electron-electron_collision_frequency_at_point_52________________________ (freq_plasma_electron_electron_collision_profile52)_ 6.66642361146309781e+02 -Electron-electron_collision_frequency_at_point_53________________________ (freq_plasma_electron_electron_collision_profile53)_ 6.67047576520738176e+02 -Electron-electron_collision_frequency_at_point_54________________________ (freq_plasma_electron_electron_collision_profile54)_ 6.67460919986447834e+02 -Electron-electron_collision_frequency_at_point_55________________________ (freq_plasma_electron_electron_collision_profile55)_ 6.67882415297596935e+02 -Electron-electron_collision_frequency_at_point_56________________________ (freq_plasma_electron_electron_collision_profile56)_ 6.68312086705960496e+02 -Electron-electron_collision_frequency_at_point_57________________________ (freq_plasma_electron_electron_collision_profile57)_ 6.68749958964035386e+02 -Electron-electron_collision_frequency_at_point_58________________________ (freq_plasma_electron_electron_collision_profile58)_ 6.69196057328212646e+02 -Electron-electron_collision_frequency_at_point_59________________________ (freq_plasma_electron_electron_collision_profile59)_ 6.69650407562023588e+02 -Electron-electron_collision_frequency_at_point_60________________________ (freq_plasma_electron_electron_collision_profile60)_ 6.70113035939450242e+02 -Electron-electron_collision_frequency_at_point_61________________________ (freq_plasma_electron_electron_collision_profile61)_ 6.70583969248311291e+02 -Electron-electron_collision_frequency_at_point_62________________________ (freq_plasma_electron_electron_collision_profile62)_ 6.71063234793718038e+02 -Electron-electron_collision_frequency_at_point_63________________________ (freq_plasma_electron_electron_collision_profile63)_ 6.71550860401601994e+02 -Electron-electron_collision_frequency_at_point_64________________________ (freq_plasma_electron_electron_collision_profile64)_ 6.72046874422318297e+02 -Electron-electron_collision_frequency_at_point_65________________________ (freq_plasma_electron_electron_collision_profile65)_ 6.72551305734319953e+02 -Electron-electron_collision_frequency_at_point_66________________________ (freq_plasma_electron_electron_collision_profile66)_ 6.73064183747909510e+02 -Electron-electron_collision_frequency_at_point_67________________________ (freq_plasma_electron_electron_collision_profile67)_ 6.73585538409065748e+02 -Electron-electron_collision_frequency_at_point_68________________________ (freq_plasma_electron_electron_collision_profile68)_ 6.74115400203345985e+02 -Electron-electron_collision_frequency_at_point_69________________________ (freq_plasma_electron_electron_collision_profile69)_ 6.74653800159865682e+02 -Electron-electron_collision_frequency_at_point_70________________________ (freq_plasma_electron_electron_collision_profile70)_ 6.75200769855358089e+02 -Electron-electron_collision_frequency_at_point_71________________________ (freq_plasma_electron_electron_collision_profile71)_ 6.75756341418311763e+02 -Electron-electron_collision_frequency_at_point_72________________________ (freq_plasma_electron_electron_collision_profile72)_ 6.76320547533188346e+02 -Electron-electron_collision_frequency_at_point_73________________________ (freq_plasma_electron_electron_collision_profile73)_ 6.76893421444720389e+02 -Electron-electron_collision_frequency_at_point_74________________________ (freq_plasma_electron_electron_collision_profile74)_ 6.77474996962293289e+02 -Electron-electron_collision_frequency_at_point_75________________________ (freq_plasma_electron_electron_collision_profile75)_ 6.78065308464409554e+02 -Electron-electron_collision_frequency_at_point_76________________________ (freq_plasma_electron_electron_collision_profile76)_ 6.78664390903234107e+02 -Electron-electron_collision_frequency_at_point_77________________________ (freq_plasma_electron_electron_collision_profile77)_ 6.79272279809229758e+02 -Electron-electron_collision_frequency_at_point_78________________________ (freq_plasma_electron_electron_collision_profile78)_ 6.79889011295874070e+02 -Electron-electron_collision_frequency_at_point_79________________________ (freq_plasma_electron_electron_collision_profile79)_ 6.80514622064465470e+02 -Electron-electron_collision_frequency_at_point_80________________________ (freq_plasma_electron_electron_collision_profile80)_ 6.81149149409018037e+02 -Electron-electron_collision_frequency_at_point_81________________________ (freq_plasma_electron_electron_collision_profile81)_ 6.81792631221244505e+02 -Electron-electron_collision_frequency_at_point_82________________________ (freq_plasma_electron_electron_collision_profile82)_ 6.82445105995629206e+02 -Electron-electron_collision_frequency_at_point_83________________________ (freq_plasma_electron_electron_collision_profile83)_ 6.83106612834594330e+02 -Electron-electron_collision_frequency_at_point_84________________________ (freq_plasma_electron_electron_collision_profile84)_ 6.83777191453756132e+02 -Electron-electron_collision_frequency_at_point_85________________________ (freq_plasma_electron_electron_collision_profile85)_ 6.84456882187279234e+02 -Electron-electron_collision_frequency_at_point_86________________________ (freq_plasma_electron_electron_collision_profile86)_ 6.85145725993322571e+02 -Electron-electron_collision_frequency_at_point_87________________________ (freq_plasma_electron_electron_collision_profile87)_ 6.85843764459582871e+02 -Electron-electron_collision_frequency_at_point_88________________________ (freq_plasma_electron_electron_collision_profile88)_ 6.86551039808936025e+02 -Electron-electron_collision_frequency_at_point_89________________________ (freq_plasma_electron_electron_collision_profile89)_ 6.87267594905176566e+02 -Electron-electron_collision_frequency_at_point_90________________________ (freq_plasma_electron_electron_collision_profile90)_ 6.87993473258859694e+02 -Electron-electron_collision_frequency_at_point_91________________________ (freq_plasma_electron_electron_collision_profile91)_ 6.88728719033242442e+02 -Electron-electron_collision_frequency_at_point_92________________________ (freq_plasma_electron_electron_collision_profile92)_ 6.89473377050329191e+02 -Electron-electron_collision_frequency_at_point_93________________________ (freq_plasma_electron_electron_collision_profile93)_ 6.90227492797021114e+02 -Electron-electron_collision_frequency_at_point_94________________________ (freq_plasma_electron_electron_collision_profile94)_ 6.90991112431372244e+02 -Electron-electron_collision_frequency_at_point_95________________________ (freq_plasma_electron_electron_collision_profile95)_ 6.91764282788951732e+02 -Electron-electron_collision_frequency_at_point_96________________________ (freq_plasma_electron_electron_collision_profile96)_ 6.92547051389316380e+02 -Electron-electron_collision_frequency_at_point_97________________________ (freq_plasma_electron_electron_collision_profile97)_ 6.93339466442592311e+02 -Electron-electron_collision_frequency_at_point_98________________________ (freq_plasma_electron_electron_collision_profile98)_ 6.94141576856169308e+02 -Electron-electron_collision_frequency_at_point_99________________________ (freq_plasma_electron_electron_collision_profile99)_ 6.94953432241506903e+02 -Electron-electron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_electron_collision_profile100)_ 6.95775082921059834e+02 -Electron-electron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_electron_collision_profile101)_ 6.96606579935314244e+02 -Electron-electron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_electron_collision_profile102)_ 6.97447975049948468e+02 -Electron-electron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_electron_collision_profile103)_ 6.98299320763107062e+02 -Electron-electron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_electron_collision_profile104)_ 6.99160670312804200e+02 -Electron-electron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_electron_collision_profile105)_ 7.00032077684444630e+02 -Electron-electron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_electron_collision_profile106)_ 7.00913597618473318e+02 -Electron-electron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_electron_collision_profile107)_ 7.01805285618151402e+02 -Electron-electron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_electron_collision_profile108)_ 7.02707197957459925e+02 -Electron-electron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_electron_collision_profile109)_ 7.03619391689138411e+02 -Electron-electron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_electron_collision_profile110)_ 7.04541924652851321e+02 -Electron-electron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_electron_collision_profile111)_ 7.05474855483494480e+02 -Electron-electron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_electron_collision_profile112)_ 7.06418243619632790e+02 -Electron-electron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_electron_collision_profile113)_ 7.07372149312084616e+02 -Electron-electron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_electron_collision_profile114)_ 7.08336633632639860e+02 -Electron-electron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_electron_collision_profile115)_ 7.09311758482924688e+02 -Electron-electron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_electron_collision_profile116)_ 7.10297586603413492e+02 -Electron-electron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_electron_collision_profile117)_ 7.11294181582583633e+02 -Electron-electron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_electron_collision_profile118)_ 7.12301607866225595e+02 -Electron-electron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_electron_collision_profile119)_ 7.13319930766902075e+02 -Electron-electron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_electron_collision_profile120)_ 7.14349216473560546e+02 -Electron-electron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_electron_collision_profile121)_ 7.15389532061307932e+02 -Electron-electron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_electron_collision_profile122)_ 7.16440945501338206e+02 -Electron-electron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_electron_collision_profile123)_ 7.17503525671028456e+02 -Electron-electron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_electron_collision_profile124)_ 7.18577342364192532e+02 -Electron-electron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_electron_collision_profile125)_ 7.19662466301508516e+02 -Electron-electron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_electron_collision_profile126)_ 7.20758969141110811e+02 -Electron-electron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_electron_collision_profile127)_ 7.21866923489357418e+02 -Electron-electron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_electron_collision_profile128)_ 7.22986402911770028e+02 -Electron-electron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_electron_collision_profile129)_ 7.24117481944154406e+02 -Electron-electron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_electron_collision_profile130)_ 7.25260236103900525e+02 -Electron-electron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_electron_collision_profile131)_ 7.26414741901464708e+02 -Electron-electron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_electron_collision_profile132)_ 7.27581076852040610e+02 -Electron-electron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_electron_collision_profile133)_ 7.28759319487419361e+02 -Electron-electron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_electron_collision_profile134)_ 7.29949549368040380e+02 -Electron-electron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_electron_collision_profile135)_ 7.31151847095239873e+02 -Electron-electron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_electron_collision_profile136)_ 7.32366294323697957e+02 -Electron-electron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_electron_collision_profile137)_ 7.33592973774086431e+02 -Electron-electron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_electron_collision_profile138)_ 7.34831969245924142e+02 -Electron-electron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_electron_collision_profile139)_ 7.36083365630639491e+02 -Electron-electron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_electron_collision_profile140)_ 7.37347248924845530e+02 -Electron-electron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_electron_collision_profile141)_ 7.38623706243830952e+02 -Electron-electron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_electron_collision_profile142)_ 7.39912825835269587e+02 -Electron-electron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_electron_collision_profile143)_ 7.41214697093153745e+02 -Electron-electron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_electron_collision_profile144)_ 7.42529410571953690e+02 -Electron-electron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_electron_collision_profile145)_ 7.43857058001008340e+02 -Electron-electron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_electron_collision_profile146)_ 7.45197732299144832e+02 -Electron-electron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_electron_collision_profile147)_ 7.46551527589546026e+02 -Electron-electron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_electron_collision_profile148)_ 7.47918539214850625e+02 -Electron-electron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_electron_collision_profile149)_ 7.49298863752503053e+02 -Electron-electron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_electron_collision_profile150)_ 7.50692599030354472e+02 -Electron-electron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_electron_collision_profile151)_ 7.52099844142516417e+02 -Electron-electron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_electron_collision_profile152)_ 7.53520699465474650e+02 -Electron-electron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_electron_collision_profile153)_ 7.54955266674462109e+02 -Electron-electron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_electron_collision_profile154)_ 7.56403648760106762e+02 -Electron-electron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_electron_collision_profile155)_ 7.57865950045342515e+02 -Electron-electron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_electron_collision_profile156)_ 7.59342276202604012e+02 -Electron-electron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_electron_collision_profile157)_ 7.60832734271298023e+02 -Electron-electron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_electron_collision_profile158)_ 7.62337432675564173e+02 -Electron-electron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_electron_collision_profile159)_ 7.63856481242323525e+02 -Electron-electron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_electron_collision_profile160)_ 7.65389991219626495e+02 -Electron-electron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_electron_collision_profile161)_ 7.66938075295299086e+02 -Electron-electron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_electron_collision_profile162)_ 7.68500847615895623e+02 -Electron-electron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_electron_collision_profile163)_ 7.70078423805965599e+02 -Electron-electron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_electron_collision_profile164)_ 7.71670920987633167e+02 -Electron-electron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_electron_collision_profile165)_ 7.73278457800502792e+02 -Electron-electron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_electron_collision_profile166)_ 7.74901154421888805e+02 -Electron-electron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_electron_collision_profile167)_ 7.76539132587384529e+02 -Electron-electron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_electron_collision_profile168)_ 7.78192515611762587e+02 -Electron-electron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_electron_collision_profile169)_ 7.79861428410227063e+02 -Electron-electron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_electron_collision_profile170)_ 7.81545997520015021e+02 -Electron-electron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_electron_collision_profile171)_ 7.83246351122352962e+02 -Electron-electron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_electron_collision_profile172)_ 7.84962619064780029e+02 -Electron-electron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_electron_collision_profile173)_ 7.86694932883839897e+02 -Electron-electron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_electron_collision_profile174)_ 7.88443425828148293e+02 -Electron-electron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_electron_collision_profile175)_ 7.90208232881843514e+02 -Electron-electron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_electron_collision_profile176)_ 7.91989490788428498e+02 -Electron-electron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_electron_collision_profile177)_ 7.93787338075007824e+02 -Electron-electron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_electron_collision_profile178)_ 7.95601915076928435e+02 -Electron-electron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_electron_collision_profile179)_ 7.97433363962829162e+02 -Electron-electron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_electron_collision_profile180)_ 7.99281828760113285e+02 -Electron-electron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_electron_collision_profile181)_ 8.01147455380840256e+02 -Electron-electron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_electron_collision_profile182)_ 8.03030391648053751e+02 -Electron-electron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_electron_collision_profile183)_ 8.04930787322548667e+02 -Electron-electron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_electron_collision_profile184)_ 8.06848794130086958e+02 -Electron-electron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_electron_collision_profile185)_ 8.08784565789069575e+02 -Electron-electron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_electron_collision_profile186)_ 8.10738258038671461e+02 -Electron-electron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_electron_collision_profile187)_ 8.12710028667449933e+02 -Electron-electron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_electron_collision_profile188)_ 8.14700037542434984e+02 -Electron-electron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_electron_collision_profile189)_ 8.16708446638705823e+02 -Electron-electron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_electron_collision_profile190)_ 8.18735420069467864e+02 -Electron-electron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_electron_collision_profile191)_ 8.20781124116637102e+02 -Electron-electron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_electron_collision_profile192)_ 8.22845727261938691e+02 -Electron-electron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_electron_collision_profile193)_ 8.24929400218530077e+02 -Electron-electron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_electron_collision_profile194)_ 8.27032315963163342e+02 -Electron-electron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_electron_collision_profile195)_ 8.29154649768884951e+02 -Electron-electron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_electron_collision_profile196)_ 8.31296579238295408e+02 -Electron-electron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_electron_collision_profile197)_ 8.33458284337366877e+02 -Electron-electron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_electron_collision_profile198)_ 8.35639947429841754e+02 -Electron-electron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_electron_collision_profile199)_ 8.37841753312207061e+02 -Electron-electron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_electron_collision_profile200)_ 8.40063889249270005e+02 -Electron-electron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_electron_collision_profile201)_ 8.42306545010335753e+02 -Electron-electron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_electron_collision_profile202)_ 8.44569912906000809e+02 -Electron-electron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_electron_collision_profile203)_ 8.46854187825575764e+02 -Electron-electron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_electron_collision_profile204)_ 8.49159567275143559e+02 -Electron-electron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_electron_collision_profile205)_ 8.51486251416268942e+02 -Electron-electron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_electron_collision_profile206)_ 8.53834443105369701e+02 -Electron-electron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_electron_collision_profile207)_ 8.56204347933760459e+02 -Electron-electron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_electron_collision_profile208)_ 8.58596174268380196e+02 -Electron-electron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_electron_collision_profile209)_ 8.61010133293221884e+02 -Electron-electron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_electron_collision_profile210)_ 8.63446439051465973e+02 -Electron-electron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_electron_collision_profile211)_ 8.65905308488343849e+02 -Electron-electron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_electron_collision_profile212)_ 8.68386961494728553e+02 -Electron-electron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_electron_collision_profile213)_ 8.70891620951481968e+02 -Electron-electron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_electron_collision_profile214)_ 8.73419512774560644e+02 -Electron-electron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_electron_collision_profile215)_ 8.75970865960897981e+02 -Electron-electron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_electron_collision_profile216)_ 8.78545912635075865e+02 -Electron-electron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_electron_collision_profile217)_ 8.81144888096801651e+02 -Electron-electron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_electron_collision_profile218)_ 8.83768030869202335e+02 -Electron-electron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_electron_collision_profile219)_ 8.86415582747950907e+02 -Electron-electron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_electron_collision_profile220)_ 8.89087788851241271e+02 -Electron-electron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_electron_collision_profile221)_ 8.91784897670626492e+02 -Electron-electron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_electron_collision_profile222)_ 8.94507161122733578e+02 -Electron-electron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_electron_collision_profile223)_ 8.97254834601873767e+02 -Electron-electron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_electron_collision_profile224)_ 9.00028177033560496e+02 -Electron-electron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_electron_collision_profile225)_ 9.02827450928953226e+02 -Electron-electron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_electron_collision_profile226)_ 9.05652922440246016e+02 -Electron-electron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_electron_collision_profile227)_ 9.08504861417010261e+02 -Electron-electron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_electron_collision_profile228)_ 9.11383541463516735e+02 -Electron-electron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_electron_collision_profile229)_ 9.14289239997047162e+02 -Electron-electron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_electron_collision_profile230)_ 9.17222238307220209e+02 -Electron-electron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_electron_collision_profile231)_ 9.20182821616339197e+02 -Electron-electron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_electron_collision_profile232)_ 9.23171279140791398e+02 -Electron-electron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_electron_collision_profile233)_ 9.26187904153507134e+02 -Electron-electron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_electron_collision_profile234)_ 9.29232994047503666e+02 -Electron-electron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_electron_collision_profile235)_ 9.32306850400529470e+02 -Electron-electron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_electron_collision_profile236)_ 9.35409779040827743e+02 -Electron-electron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_electron_collision_profile237)_ 9.38542090114043731e+02 -Electron-electron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_electron_collision_profile238)_ 9.41704098151281300e+02 -Electron-electron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_electron_collision_profile239)_ 9.44896122138354372e+02 -Electron-electron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_electron_collision_profile240)_ 9.48118485586218867e+02 -Electron-electron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_electron_collision_profile241)_ 9.51371516602639986e+02 -Electron-electron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_electron_collision_profile242)_ 9.54655547965090477e+02 -Electron-electron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_electron_collision_profile243)_ 9.57970917194911181e+02 -Electron-electron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_electron_collision_profile244)_ 9.61317966632755997e+02 -Electron-electron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_electron_collision_profile245)_ 9.64697043515340170e+02 -Electron-electron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_electron_collision_profile246)_ 9.68108500053511420e+02 -Electron-electron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_electron_collision_profile247)_ 9.71552693511669304e+02 -Electron-electron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_electron_collision_profile248)_ 9.75029986288554824e+02 -Electron-electron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_electron_collision_profile249)_ 9.78540745999429532e+02 -Electron-electron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_electron_collision_profile250)_ 9.82085345559671282e+02 -Electron-electron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_electron_collision_profile251)_ 9.85664163269802771e+02 -Electron-electron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_electron_collision_profile252)_ 9.89277582901985738e+02 -Electron-electron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_electron_collision_profile253)_ 9.92925993787993320e+02 -Electron-electron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_electron_collision_profile254)_ 9.96609790908692730e+02 -Electron-electron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_electron_collision_profile255)_ 1.00032937498505044e+03 -Electron-electron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_electron_collision_profile256)_ 1.00408515257070405e+03 -Electron-electron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_electron_collision_profile257)_ 1.00787753614609960e+03 -Electron-electron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_electron_collision_profile258)_ 1.01170694421423559e+03 -Electron-electron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_electron_collision_profile259)_ 1.01557380139803411e+03 -Electron-electron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_electron_collision_profile260)_ 1.01947853853935749e+03 -Electron-electron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_electron_collision_profile261)_ 1.02342159279970417e+03 -Electron-electron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_electron_collision_profile262)_ 1.02740340776259904e+03 -Electron-electron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_electron_collision_profile263)_ 1.03142443353770977e+03 -Electron-electron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_electron_collision_profile264)_ 1.03548512686670506e+03 -Electron-electron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_electron_collision_profile265)_ 1.03958595123089367e+03 -Electron-electron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_electron_collision_profile266)_ 1.04372737696064883e+03 -Electron-electron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_electron_collision_profile267)_ 1.04790988134666145e+03 -Electron-electron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_electron_collision_profile268)_ 1.05213394875303015e+03 -Electron-electron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_electron_collision_profile269)_ 1.05640007073222841e+03 -Electron-electron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_electron_collision_profile270)_ 1.06070874614195259e+03 -Electron-electron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_electron_collision_profile271)_ 1.06506048126389646e+03 -Electron-electron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_electron_collision_profile272)_ 1.06945578992445530e+03 -Electron-electron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_electron_collision_profile273)_ 1.07389519361739849e+03 -Electron-electron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_electron_collision_profile274)_ 1.07837922162852055e+03 -Electron-electron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_electron_collision_profile275)_ 1.08290841116230695e+03 -Electron-electron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_electron_collision_profile276)_ 1.08748330747061641e+03 -Electron-electron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_electron_collision_profile277)_ 1.09210446398342356e+03 -Electron-electron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_electron_collision_profile278)_ 1.09677244244162353e+03 -Electron-electron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_electron_collision_profile279)_ 1.10148781303193300e+03 -Electron-electron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_electron_collision_profile280)_ 1.10625115452389059e+03 -Electron-electron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_electron_collision_profile281)_ 1.11106305440899473e+03 -Electron-electron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_electron_collision_profile282)_ 1.11592410904197982e+03 -Electron-electron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_electron_collision_profile283)_ 1.12083492378425126e+03 -Electron-electron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_electron_collision_profile284)_ 1.12579611314950512e+03 -Electron-electron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_electron_collision_profile285)_ 1.13080830095152237e+03 -Electron-electron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_electron_collision_profile286)_ 1.13587212045418505e+03 -Electron-electron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_electron_collision_profile287)_ 1.14098821452368838e+03 -Electron-electron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_electron_collision_profile288)_ 1.14615723578299071e+03 -Electron-electron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_electron_collision_profile289)_ 1.15137984676848055e+03 -Electron-electron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_electron_collision_profile290)_ 1.15665672008889874e+03 -Electron-electron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_electron_collision_profile291)_ 1.16198853858648408e+03 -Electron-electron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_electron_collision_profile292)_ 1.16737599550037908e+03 -Electron-electron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_electron_collision_profile293)_ 1.17281979463226708e+03 -Electron-electron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_electron_collision_profile294)_ 1.17832065051425889e+03 -Electron-electron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_electron_collision_profile295)_ 1.18387928857901125e+03 -Electron-electron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_electron_collision_profile296)_ 1.18949644533207379e+03 -Electron-electron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_electron_collision_profile297)_ 1.19517286852644861e+03 -Electron-electron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_electron_collision_profile298)_ 1.20090931733936100e+03 -Electron-electron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_electron_collision_profile299)_ 1.20670656255119980e+03 -Electron-electron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_electron_collision_profile300)_ 1.21256538672663169e+03 -Electron-electron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_electron_collision_profile301)_ 1.21848658439784072e+03 -Electron-electron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_electron_collision_profile302)_ 1.22447096224988195e+03 -Electron-electron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_electron_collision_profile303)_ 1.23051933930809355e+03 -Electron-electron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_electron_collision_profile304)_ 1.23663254712755133e+03 -Electron-electron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_electron_collision_profile305)_ 1.24281142998449559e+03 -Electron-electron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_electron_collision_profile306)_ 1.24905684506969806e+03 -Electron-electron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_electron_collision_profile307)_ 1.25536966268370156e+03 -Electron-electron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_electron_collision_profile308)_ 1.26175076643387547e+03 -Electron-electron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_electron_collision_profile309)_ 1.26820105343320438e+03 -Electron-electron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_electron_collision_profile310)_ 1.27472143450075191e+03 -Electron-electron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_electron_collision_profile311)_ 1.28131283436368835e+03 -Electron-electron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_electron_collision_profile312)_ 1.28797619186081738e+03 -Electron-electron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_electron_collision_profile313)_ 1.29471246014746293e+03 -Electron-electron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_electron_collision_profile314)_ 1.30152260690164599e+03 -Electron-electron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_electron_collision_profile315)_ 1.30840761453138498e+03 -Electron-electron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_electron_collision_profile316)_ 1.31536848038302128e+03 -Electron-electron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_electron_collision_profile317)_ 1.32240621695040591e+03 -Electron-electron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_electron_collision_profile318)_ 1.32952185208478818e+03 -Electron-electron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_electron_collision_profile319)_ 1.33671642920525551e+03 -Electron-electron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_electron_collision_profile320)_ 1.34399100750951584e+03 -Electron-electron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_electron_collision_profile321)_ 1.35134666218484222e+03 -Electron-electron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_electron_collision_profile322)_ 1.35878448461895550e+03 -Electron-electron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_electron_collision_profile323)_ 1.36630558261062015e+03 -Electron-electron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_electron_collision_profile324)_ 1.37391108057969632e+03 -Electron-electron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_electron_collision_profile325)_ 1.38160211977639710e+03 -Electron-electron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_electron_collision_profile326)_ 1.38937985848944322e+03 -Electron-electron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_electron_collision_profile327)_ 1.39724547225282504e+03 -Electron-electron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_electron_collision_profile328)_ 1.40520015405083450e+03 -Electron-electron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_electron_collision_profile329)_ 1.41324511452100523e+03 -Electron-electron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_electron_collision_profile330)_ 1.42138158215460271e+03 -Electron-electron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_electron_collision_profile331)_ 1.42961080349423287e+03 -Electron-electron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_electron_collision_profile332)_ 1.43793404332815817e+03 -Electron-electron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_electron_collision_profile333)_ 1.44635258488083741e+03 -Electron-electron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_electron_collision_profile334)_ 1.45486772999920845e+03 -Electron-electron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_electron_collision_profile335)_ 1.46348079933417580e+03 -Electron-electron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_electron_collision_profile336)_ 1.47219313251673861e+03 -Electron-electron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_electron_collision_profile337)_ 1.48100608832815396e+03 -Electron-electron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_electron_collision_profile338)_ 1.48992104486349876e+03 -Electron-electron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_electron_collision_profile339)_ 1.49893939968793075e+03 -Electron-electron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_electron_collision_profile340)_ 1.50806256998492404e+03 -Electron-electron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_electron_collision_profile341)_ 1.51729199269570472e+03 -Electron-electron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_electron_collision_profile342)_ 1.52662912464903934e+03 -Electron-electron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_electron_collision_profile343)_ 1.53607544268050378e+03 -Electron-electron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_electron_collision_profile344)_ 1.54563244374028591e+03 -Electron-electron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_electron_collision_profile345)_ 1.55530164498852469e+03 -Electron-electron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_electron_collision_profile346)_ 1.56508458387709629e+03 -Electron-electron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_electron_collision_profile347)_ 1.57498281821674823e+03 -Electron-electron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_electron_collision_profile348)_ 1.58499792622833957e+03 -Electron-electron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_electron_collision_profile349)_ 1.59513150657692154e+03 -Electron-electron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_electron_collision_profile350)_ 1.60538517838729172e+03 -Electron-electron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_electron_collision_profile351)_ 1.61576058123956386e+03 -Electron-electron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_electron_collision_profile352)_ 1.62625937514321845e+03 -Electron-electron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_electron_collision_profile353)_ 1.63688324048799200e+03 -Electron-electron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_electron_collision_profile354)_ 1.64763387796987104e+03 -Electron-electron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_electron_collision_profile355)_ 1.65851300849032987e+03 -Electron-electron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_electron_collision_profile356)_ 1.66952237302687195e+03 -Electron-electron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_electron_collision_profile357)_ 1.68066373247276715e+03 -Electron-electron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_electron_collision_profile358)_ 1.69193886744378824e+03 -Electron-electron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_electron_collision_profile359)_ 1.70334957804960254e+03 -Electron-electron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_electron_collision_profile360)_ 1.71489768362730683e+03 -Electron-electron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_electron_collision_profile361)_ 1.72658502243449698e+03 -Electron-electron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_electron_collision_profile362)_ 1.73841345129903061e+03 -Electron-electron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_electron_collision_profile363)_ 1.75038484522253657e+03 -Electron-electron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_electron_collision_profile364)_ 1.76250109693450554e+03 -Electron-electron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_electron_collision_profile365)_ 1.77476411639360276e+03 -Electron-electron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_electron_collision_profile366)_ 1.78717583023269162e+03 -Electron-electron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_electron_collision_profile367)_ 1.79973818114375581e+03 -Electron-electron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_electron_collision_profile368)_ 1.81245312719877370e+03 -Electron-electron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_electron_collision_profile369)_ 1.82532264110229403e+03 -Electron-electron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_electron_collision_profile370)_ 1.83834870937123537e+03 -Electron-electron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_electron_collision_profile371)_ 1.85153333143715690e+03 -Electron-electron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_electron_collision_profile372)_ 1.86487851866597725e+03 -Electron-electron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_electron_collision_profile373)_ 1.87838629328978277e+03 -Electron-electron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_electron_collision_profile374)_ 1.89205868724509469e+03 -Electron-electron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_electron_collision_profile375)_ 1.90589774091159939e+03 -Electron-electron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_electron_collision_profile376)_ 1.91990550174498298e+03 -Electron-electron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_electron_collision_profile377)_ 1.93408402279717211e+03 -Electron-electron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_electron_collision_profile378)_ 1.94843536111683443e+03 -Electron-electron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_electron_collision_profile379)_ 1.96296157602262701e+03 -Electron-electron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_electron_collision_profile380)_ 1.97766472724117830e+03 -Electron-electron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_electron_collision_profile381)_ 1.99254687290136326e+03 -Electron-electron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_electron_collision_profile382)_ 2.00761006737591697e+03 -Electron-electron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_electron_collision_profile383)_ 2.02285635896089866e+03 -Electron-electron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_electron_collision_profile384)_ 2.03828778738296569e+03 -Electron-electron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_electron_collision_profile385)_ 2.05390638112383704e+03 -Electron-electron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_electron_collision_profile386)_ 2.06971415455070064e+03 -Electron-electron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_electron_collision_profile387)_ 2.08571310484064043e+03 -Electron-electron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_electron_collision_profile388)_ 2.10190520868648991e+03 -Electron-electron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_electron_collision_profile389)_ 2.11829241877077538e+03 -Electron-electron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_electron_collision_profile390)_ 2.13487665999363435e+03 -Electron-electron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_electron_collision_profile391)_ 2.15165982543974542e+03 -Electron-electron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_electron_collision_profile392)_ 2.16864377206850349e+03 -Electron-electron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_electron_collision_profile393)_ 2.18583031611065962e+03 -Electron-electron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_electron_collision_profile394)_ 2.20322122815378270e+03 -Electron-electron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_electron_collision_profile395)_ 2.22081822789777334e+03 -Electron-electron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_electron_collision_profile396)_ 2.23862297856063196e+03 -Electron-electron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_electron_collision_profile397)_ 2.25663708091351464e+03 -Electron-electron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_electron_collision_profile398)_ 2.27486206692291398e+03 -Electron-electron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_electron_collision_profile399)_ 2.29329939297646570e+03 -Electron-electron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_electron_collision_profile400)_ 2.31195043266759603e+03 -Electron-electron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_electron_collision_profile401)_ 2.33081646911270536e+03 -Electron-electron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_electron_collision_profile402)_ 2.34989868677313507e+03 -Electron-electron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_electron_collision_profile403)_ 2.36919816275246103e+03 -Electron-electron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_electron_collision_profile404)_ 2.38871585753803947e+03 -Electron-electron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_electron_collision_profile405)_ 2.40845260515383370e+03 -Electron-electron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_electron_collision_profile406)_ 2.42840910268968582e+03 -Electron-electron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_electron_collision_profile407)_ 2.44858589917007157e+03 -Electron-electron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_electron_collision_profile408)_ 2.46898338372333683e+03 -Electron-electron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_electron_collision_profile409)_ 2.48960177300991018e+03 -Electron-electron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_electron_collision_profile410)_ 2.51044109786571971e+03 -Electron-electron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_electron_collision_profile411)_ 2.53150118911426443e+03 -Electron-electron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_electron_collision_profile412)_ 2.55278166249807737e+03 -Electron-electron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_electron_collision_profile413)_ 2.57428190267723903e+03 -Electron-electron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_electron_collision_profile414)_ 2.59600104623948437e+03 -Electron-electron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_electron_collision_profile415)_ 2.61793796366287779e+03 -Electron-electron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_electron_collision_profile416)_ 2.64009124016840133e+03 -Electron-electron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_electron_collision_profile417)_ 2.66245915539575981e+03 -Electron-electron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_electron_collision_profile418)_ 2.68503966183134798e+03 -Electron-electron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_electron_collision_profile419)_ 2.70783036191265091e+03 -Electron-electron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_electron_collision_profile420)_ 2.73082848372819353e+03 -Electron-electron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_electron_collision_profile421)_ 2.75403085522655965e+03 -Electron-electron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_electron_collision_profile422)_ 2.77743387684184245e+03 -Electron-electron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_electron_collision_profile423)_ 2.80103349243609728e+03 -Electron-electron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_electron_collision_profile424)_ 2.82482515845190437e+03 -Electron-electron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_electron_collision_profile425)_ 2.84880381115970022e+03 -Electron-electron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_electron_collision_profile426)_ 2.87296383187532456e+03 -Electron-electron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_electron_collision_profile427)_ 2.89729901001260714e+03 -Electron-electron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_electron_collision_profile428)_ 2.92180250382401800e+03 -Electron-electron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_electron_collision_profile429)_ 2.94646679866892691e+03 -Electron-electron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_electron_collision_profile430)_ 2.97128366263348335e+03 -Electron-electron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_electron_collision_profile431)_ 2.99624409930854381e+03 -Electron-electron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_electron_collision_profile432)_ 3.02133829751135318e+03 -Electron-electron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_electron_collision_profile433)_ 3.04655557771292933e+03 -Electron-electron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_electron_collision_profile434)_ 3.07188433490493890e+03 -Electron-electron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_electron_collision_profile435)_ 3.09731197760697842e+03 -Electron-electron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_electron_collision_profile436)_ 3.12282486267580634e+03 -Electron-electron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_electron_collision_profile437)_ 3.14840822553154521e+03 -Electron-electron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_electron_collision_profile438)_ 3.17404610535948996e+03 -Electron-electron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_electron_collision_profile439)_ 3.19972126477848906e+03 -Electron-electron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_electron_collision_profile440)_ 3.22541510338420539e+03 -Electron-electron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_electron_collision_profile441)_ 3.25110756447461245e+03 -Electron-electron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_electron_collision_profile442)_ 3.27677703414048892e+03 -Electron-electron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_electron_collision_profile443)_ 3.30240023174928865e+03 -Electron-electron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_electron_collision_profile444)_ 3.32795209065760992e+03 -Electron-electron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_electron_collision_profile445)_ 3.35340562774460841e+03 -Electron-electron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_electron_collision_profile446)_ 3.37873180005025051e+03 -Electron-electron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_electron_collision_profile447)_ 3.40389934640795491e+03 -Electron-electron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_electron_collision_profile448)_ 3.42887461145208999e+03 -Electron-electron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_electron_collision_profile449)_ 3.45362134871745457e+03 -Electron-electron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_electron_collision_profile450)_ 3.47810049867476801e+03 -Electron-electron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_electron_collision_profile451)_ 3.50226993638369095e+03 -Electron-electron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_electron_collision_profile452)_ 3.52608418187849566e+03 -Electron-electron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_electron_collision_profile453)_ 3.54949406426183350e+03 -Electron-electron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_electron_collision_profile454)_ 3.57244632751572544e+03 -Electron-electron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_electron_collision_profile455)_ 3.59488316185793929e+03 -Electron-electron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_electron_collision_profile456)_ 3.61674163846866441e+03 -Electron-electron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_electron_collision_profile457)_ 3.63795301661149415e+03 -Electron-electron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_electron_collision_profile458)_ 3.65844187896209451e+03 -Electron-electron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_electron_collision_profile459)_ 3.67812503058717039e+03 -Electron-electron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_electron_collision_profile460)_ 3.69691006461461757e+03 -Electron-electron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_electron_collision_profile461)_ 3.71469344420365451e+03 -Electron-electron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_electron_collision_profile462)_ 3.73135785848052546e+03 -Electron-electron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_electron_collision_profile463)_ 3.74676844362965858e+03 -Electron-electron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_electron_collision_profile464)_ 3.76076713957621814e+03 -Electron-electron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_electron_collision_profile465)_ 3.77316378473838995e+03 -Electron-electron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_electron_collision_profile466)_ 3.78372101323229572e+03 -Electron-electron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_electron_collision_profile467)_ 3.79212595985197095e+03 -Electron-electron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_electron_collision_profile468)_ 3.79792870461858774e+03 -Electron-electron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_electron_collision_profile469)_ 3.80036850483676699e+03 -Electron-electron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_electron_collision_profile470)_ 3.79730429192547490e+03 -Electron-electron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_electron_collision_profile471)_ 3.93071515055168129e+03 -Electron-electron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_electron_collision_profile472)_ 4.07475446674762770e+03 -Electron-electron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_electron_collision_profile473)_ 4.23071371065987023e+03 -Electron-electron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_electron_collision_profile474)_ 4.40009770477797883e+03 -Electron-electron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_electron_collision_profile475)_ 4.58466981703467991e+03 -Electron-electron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_electron_collision_profile476)_ 4.78650899527289857e+03 -Electron-electron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_electron_collision_profile477)_ 5.00808238917791277e+03 -Electron-electron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_electron_collision_profile478)_ 5.25233871227319014e+03 -Electron-electron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_electron_collision_profile479)_ 5.52282952196591395e+03 -Electron-electron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_electron_collision_profile480)_ 5.82386855607047892e+03 -Electron-electron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_electron_collision_profile481)_ 6.16074366211928373e+03 -Electron-electron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_electron_collision_profile482)_ 6.54000250548986241e+03 -Electron-electron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_electron_collision_profile483)_ 6.96984349327499967e+03 -Electron-electron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_electron_collision_profile484)_ 7.46065949272359103e+03 -Electron-electron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_electron_collision_profile485)_ 8.02580794568519650e+03 -Electron-electron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_electron_collision_profile486)_ 8.68272404141473271e+03 -Electron-electron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_electron_collision_profile487)_ 9.45456697525118943e+03 -Electron-electron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_electron_collision_profile488)_ 1.03727184918056792e+04 -Electron-electron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_electron_collision_profile489)_ 1.14806889784040450e+04 -Electron-electron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_electron_collision_profile490)_ 1.28404366274566710e+04 -Electron-electron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_electron_collision_profile491)_ 1.45430075054079589e+04 -Electron-electron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_electron_collision_profile492)_ 1.67273206686595731e+04 -Electron-electron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_electron_collision_profile493)_ 1.96152835695928698e+04 -Electron-electron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_electron_collision_profile494)_ 2.35822177108243268e+04 -Electron-electron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_electron_collision_profile495)_ 2.93112411035241566e+04 -Electron-electron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_electron_collision_profile496)_ 3.81735450834004951e+04 -Electron-electron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_electron_collision_profile497)_ 5.33283914578066615e+04 -Electron-electron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_electron_collision_profile498)_ 8.37654138786716940e+04 -Electron-electron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_electron_collision_profile499)_ 1.66685601330564998e+05 -Electron-electron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_electron_collision_profile500)_ 7.07728261518890853e+05 -Volume_averaged_electron-deuteron_collision_frequency_(Hz)_______________ (freq_plasma_electron_deuteron_collision_vol_avg)_ 1.16989639757552300e+03 -Electron-deuteron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_deuteron_collision_profile0)_ 5.32199106433111069e+02 -Electron-deuteron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_deuteron_collision_profile1)_ 5.32202158647326087e+02 -Electron-deuteron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_deuteron_collision_profile2)_ 5.32211315459945808e+02 -Electron-deuteron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_deuteron_collision_profile3)_ 5.32226577380915955e+02 -Electron-deuteron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_deuteron_collision_profile4)_ 5.32247945260215374e+02 -Electron-deuteron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_deuteron_collision_profile5)_ 5.32275420287960515e+02 -Electron-deuteron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_deuteron_collision_profile6)_ 5.32309003994552199e+02 -Electron-deuteron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_deuteron_collision_profile7)_ 5.32348698250863094e+02 -Electron-deuteron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_deuteron_collision_profile8)_ 5.32394505268468947e+02 -Electron-deuteron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_deuteron_collision_profile9)_ 5.32446427599918820e+02 -Electron-deuteron_collision_frequency_at_point_10________________________ (freq_plasma_electron_deuteron_collision_profile10)_ 5.32504468139050459e+02 -Electron-deuteron_collision_frequency_at_point_11________________________ (freq_plasma_electron_deuteron_collision_profile11)_ 5.32568630121346246e+02 -Electron-deuteron_collision_frequency_at_point_12________________________ (freq_plasma_electron_deuteron_collision_profile12)_ 5.32638917124330305e+02 -Electron-deuteron_collision_frequency_at_point_13________________________ (freq_plasma_electron_deuteron_collision_profile13)_ 5.32715333068009500e+02 -Electron-deuteron_collision_frequency_at_point_14________________________ (freq_plasma_electron_deuteron_collision_profile14)_ 5.32797882215357163e+02 -Electron-deuteron_collision_frequency_at_point_15________________________ (freq_plasma_electron_deuteron_collision_profile15)_ 5.32886569172836175e+02 -Electron-deuteron_collision_frequency_at_point_16________________________ (freq_plasma_electron_deuteron_collision_profile16)_ 5.32981398890968308e+02 -Electron-deuteron_collision_frequency_at_point_17________________________ (freq_plasma_electron_deuteron_collision_profile17)_ 5.33082376664943695e+02 -Electron-deuteron_collision_frequency_at_point_18________________________ (freq_plasma_electron_deuteron_collision_profile18)_ 5.33189508135273400e+02 -Electron-deuteron_collision_frequency_at_point_19________________________ (freq_plasma_electron_deuteron_collision_profile19)_ 5.33302799288486653e+02 -Electron-deuteron_collision_frequency_at_point_20________________________ (freq_plasma_electron_deuteron_collision_profile20)_ 5.33422256457868912e+02 -Electron-deuteron_collision_frequency_at_point_21________________________ (freq_plasma_electron_deuteron_collision_profile21)_ 5.33547886324243564e+02 -Electron-deuteron_collision_frequency_at_point_22________________________ (freq_plasma_electron_deuteron_collision_profile22)_ 5.33679695916798778e+02 -Electron-deuteron_collision_frequency_at_point_23________________________ (freq_plasma_electron_deuteron_collision_profile23)_ 5.33817692613955160e+02 -Electron-deuteron_collision_frequency_at_point_24________________________ (freq_plasma_electron_deuteron_collision_profile24)_ 5.33961884144279907e+02 -Electron-deuteron_collision_frequency_at_point_25________________________ (freq_plasma_electron_deuteron_collision_profile25)_ 5.34112278587441892e+02 -Electron-deuteron_collision_frequency_at_point_26________________________ (freq_plasma_electron_deuteron_collision_profile26)_ 5.34268884375214611e+02 -Electron-deuteron_collision_frequency_at_point_27________________________ (freq_plasma_electron_deuteron_collision_profile27)_ 5.34431710292518574e+02 -Electron-deuteron_collision_frequency_at_point_28________________________ (freq_plasma_electron_deuteron_collision_profile28)_ 5.34600765478513040e+02 -Electron-deuteron_collision_frequency_at_point_29________________________ (freq_plasma_electron_deuteron_collision_profile29)_ 5.34776059427729479e+02 -Electron-deuteron_collision_frequency_at_point_30________________________ (freq_plasma_electron_deuteron_collision_profile30)_ 5.34957601991251749e+02 -Electron-deuteron_collision_frequency_at_point_31________________________ (freq_plasma_electron_deuteron_collision_profile31)_ 5.35145403377939601e+02 -Electron-deuteron_collision_frequency_at_point_32________________________ (freq_plasma_electron_deuteron_collision_profile32)_ 5.35339474155699691e+02 -Electron-deuteron_collision_frequency_at_point_33________________________ (freq_plasma_electron_deuteron_collision_profile33)_ 5.35539825252800824e+02 -Electron-deuteron_collision_frequency_at_point_34________________________ (freq_plasma_electron_deuteron_collision_profile34)_ 5.35746467959237521e+02 -Electron-deuteron_collision_frequency_at_point_35________________________ (freq_plasma_electron_deuteron_collision_profile35)_ 5.35959413928135518e+02 -Electron-deuteron_collision_frequency_at_point_36________________________ (freq_plasma_electron_deuteron_collision_profile36)_ 5.36178675177209925e+02 -Electron-deuteron_collision_frequency_at_point_37________________________ (freq_plasma_electron_deuteron_collision_profile37)_ 5.36404264090264519e+02 -Electron-deuteron_collision_frequency_at_point_38________________________ (freq_plasma_electron_deuteron_collision_profile38)_ 5.36636193418742096e+02 -Electron-deuteron_collision_frequency_at_point_39________________________ (freq_plasma_electron_deuteron_collision_profile39)_ 5.36874476283321201e+02 -Electron-deuteron_collision_frequency_at_point_40________________________ (freq_plasma_electron_deuteron_collision_profile40)_ 5.37119126175561405e+02 -Electron-deuteron_collision_frequency_at_point_41________________________ (freq_plasma_electron_deuteron_collision_profile41)_ 5.37370156959593487e+02 -Electron-deuteron_collision_frequency_at_point_42________________________ (freq_plasma_electron_deuteron_collision_profile42)_ 5.37627582873864981e+02 -Electron-deuteron_collision_frequency_at_point_43________________________ (freq_plasma_electron_deuteron_collision_profile43)_ 5.37891418532928355e+02 -Electron-deuteron_collision_frequency_at_point_44________________________ (freq_plasma_electron_deuteron_collision_profile44)_ 5.38161678929279788e+02 -Electron-deuteron_collision_frequency_at_point_45________________________ (freq_plasma_electron_deuteron_collision_profile45)_ 5.38438379435252841e+02 -Electron-deuteron_collision_frequency_at_point_46________________________ (freq_plasma_electron_deuteron_collision_profile46)_ 5.38721535804953987e+02 -Electron-deuteron_collision_frequency_at_point_47________________________ (freq_plasma_electron_deuteron_collision_profile47)_ 5.39011164176257239e+02 -Electron-deuteron_collision_frequency_at_point_48________________________ (freq_plasma_electron_deuteron_collision_profile48)_ 5.39307281072841420e+02 -Electron-deuteron_collision_frequency_at_point_49________________________ (freq_plasma_electron_deuteron_collision_profile49)_ 5.39609903406286890e+02 -Electron-deuteron_collision_frequency_at_point_50________________________ (freq_plasma_electron_deuteron_collision_profile50)_ 5.39919048478218315e+02 -Electron-deuteron_collision_frequency_at_point_51________________________ (freq_plasma_electron_deuteron_collision_profile51)_ 5.40234733982502917e+02 -Electron-deuteron_collision_frequency_at_point_52________________________ (freq_plasma_electron_deuteron_collision_profile52)_ 5.40556978007499993e+02 -Electron-deuteron_collision_frequency_at_point_53________________________ (freq_plasma_electron_deuteron_collision_profile53)_ 5.40885799038364098e+02 -Electron-deuteron_collision_frequency_at_point_54________________________ (freq_plasma_electron_deuteron_collision_profile54)_ 5.41221215959403025e+02 -Electron-deuteron_collision_frequency_at_point_55________________________ (freq_plasma_electron_deuteron_collision_profile55)_ 5.41563248056490238e+02 -Electron-deuteron_collision_frequency_at_point_56________________________ (freq_plasma_electron_deuteron_collision_profile56)_ 5.41911915019528692e+02 -Electron-deuteron_collision_frequency_at_point_57________________________ (freq_plasma_electron_deuteron_collision_profile57)_ 5.42267236944974911e+02 -Electron-deuteron_collision_frequency_at_point_58________________________ (freq_plasma_electron_deuteron_collision_profile58)_ 5.42629234338415813e+02 -Electron-deuteron_collision_frequency_at_point_59________________________ (freq_plasma_electron_deuteron_collision_profile59)_ 5.42997928117203287e+02 -Electron-deuteron_collision_frequency_at_point_60________________________ (freq_plasma_electron_deuteron_collision_profile60)_ 5.43373339613145504e+02 -Electron-deuteron_collision_frequency_at_point_61________________________ (freq_plasma_electron_deuteron_collision_profile61)_ 5.43755490575255862e+02 -Electron-deuteron_collision_frequency_at_point_62________________________ (freq_plasma_electron_deuteron_collision_profile62)_ 5.44144403172560146e+02 -Electron-deuteron_collision_frequency_at_point_63________________________ (freq_plasma_electron_deuteron_collision_profile63)_ 5.44540099996962567e+02 -Electron-deuteron_collision_frequency_at_point_64________________________ (freq_plasma_electron_deuteron_collision_profile64)_ 5.44942604066171498e+02 -Electron-deuteron_collision_frequency_at_point_65________________________ (freq_plasma_electron_deuteron_collision_profile65)_ 5.45351938826685910e+02 -Electron-deuteron_collision_frequency_at_point_66________________________ (freq_plasma_electron_deuteron_collision_profile66)_ 5.45768128156840248e+02 -Electron-deuteron_collision_frequency_at_point_67________________________ (freq_plasma_electron_deuteron_collision_profile67)_ 5.46191196369914223e+02 -Electron-deuteron_collision_frequency_at_point_68________________________ (freq_plasma_electron_deuteron_collision_profile68)_ 5.46621168217302625e+02 -Electron-deuteron_collision_frequency_at_point_69________________________ (freq_plasma_electron_deuteron_collision_profile69)_ 5.47058068891747098e+02 -Electron-deuteron_collision_frequency_at_point_70________________________ (freq_plasma_electron_deuteron_collision_profile70)_ 5.47501924030634314e+02 -Electron-deuteron_collision_frequency_at_point_71________________________ (freq_plasma_electron_deuteron_collision_profile71)_ 5.47952759719356095e+02 -Electron-deuteron_collision_frequency_at_point_72________________________ (freq_plasma_electron_deuteron_collision_profile72)_ 5.48410602494735826e+02 -Electron-deuteron_collision_frequency_at_point_73________________________ (freq_plasma_electron_deuteron_collision_profile73)_ 5.48875479348519320e+02 -Electron-deuteron_collision_frequency_at_point_74________________________ (freq_plasma_electron_deuteron_collision_profile74)_ 5.49347417730935717e+02 -Electron-deuteron_collision_frequency_at_point_75________________________ (freq_plasma_electron_deuteron_collision_profile75)_ 5.49826445554319093e+02 -Electron-deuteron_collision_frequency_at_point_76________________________ (freq_plasma_electron_deuteron_collision_profile76)_ 5.50312591196807034e+02 -Electron-deuteron_collision_frequency_at_point_77________________________ (freq_plasma_electron_deuteron_collision_profile77)_ 5.50805883506100031e+02 -Electron-deuteron_collision_frequency_at_point_78________________________ (freq_plasma_electron_deuteron_collision_profile78)_ 5.51306351803297048e+02 -Electron-deuteron_collision_frequency_at_point_79________________________ (freq_plasma_electron_deuteron_collision_profile79)_ 5.51814025886797481e+02 -Electron-deuteron_collision_frequency_at_point_80________________________ (freq_plasma_electron_deuteron_collision_profile80)_ 5.52328936036277128e+02 -Electron-deuteron_collision_frequency_at_point_81________________________ (freq_plasma_electron_deuteron_collision_profile81)_ 5.52851113016735894e+02 -Electron-deuteron_collision_frequency_at_point_82________________________ (freq_plasma_electron_deuteron_collision_profile82)_ 5.53380588082619738e+02 -Electron-deuteron_collision_frequency_at_point_83________________________ (freq_plasma_electron_deuteron_collision_profile83)_ 5.53917392982015258e+02 -Electron-deuteron_collision_frequency_at_point_84________________________ (freq_plasma_electron_deuteron_collision_profile84)_ 5.54461559960921136e+02 -Electron-deuteron_collision_frequency_at_point_85________________________ (freq_plasma_electron_deuteron_collision_profile85)_ 5.55013121767595976e+02 -Electron-deuteron_collision_frequency_at_point_86________________________ (freq_plasma_electron_deuteron_collision_profile86)_ 5.55572111656982770e+02 -Electron-deuteron_collision_frequency_at_point_87________________________ (freq_plasma_electron_deuteron_collision_profile87)_ 5.56138563395211236e+02 -Electron-deuteron_collision_frequency_at_point_88________________________ (freq_plasma_electron_deuteron_collision_profile88)_ 5.56712511264181217e+02 -Electron-deuteron_collision_frequency_at_point_89________________________ (freq_plasma_electron_deuteron_collision_profile89)_ 5.57293990066224183e+02 -Electron-deuteron_collision_frequency_at_point_90________________________ (freq_plasma_electron_deuteron_collision_profile90)_ 5.57883035128848405e+02 -Electron-deuteron_collision_frequency_at_point_91________________________ (freq_plasma_electron_deuteron_collision_profile91)_ 5.58479682309566783e+02 -Electron-deuteron_collision_frequency_at_point_92________________________ (freq_plasma_electron_deuteron_collision_profile92)_ 5.59083968000805385e+02 -Electron-deuteron_collision_frequency_at_point_93________________________ (freq_plasma_electron_deuteron_collision_profile93)_ 5.59695929134899757e+02 -Electron-deuteron_collision_frequency_at_point_94________________________ (freq_plasma_electron_deuteron_collision_profile94)_ 5.60315603189176841e+02 -Electron-deuteron_collision_frequency_at_point_95________________________ (freq_plasma_electron_deuteron_collision_profile95)_ 5.60943028191123176e+02 -Electron-deuteron_collision_frequency_at_point_96________________________ (freq_plasma_electron_deuteron_collision_profile96)_ 5.61578242723642916e+02 -Electron-deuteron_collision_frequency_at_point_97________________________ (freq_plasma_electron_deuteron_collision_profile97)_ 5.62221285930403042e+02 -Electron-deuteron_collision_frequency_at_point_98________________________ (freq_plasma_electron_deuteron_collision_profile98)_ 5.62872197521272142e+02 -Electron-deuteron_collision_frequency_at_point_99________________________ (freq_plasma_electron_deuteron_collision_profile99)_ 5.63531017777849684e+02 -Electron-deuteron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_deuteron_collision_profile100)_ 5.64197787559090898e+02 -Electron-deuteron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_deuteron_collision_profile101)_ 5.64872548307022385e+02 -Electron-deuteron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_deuteron_collision_profile102)_ 5.65555342052559695e+02 -Electron-deuteron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_deuteron_collision_profile103)_ 5.66246211421415865e+02 -Electron-deuteron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_deuteron_collision_profile104)_ 5.66945199640114879e+02 -Electron-deuteron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_deuteron_collision_profile105)_ 5.67652350542103250e+02 -Electron-deuteron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_deuteron_collision_profile106)_ 5.68367708573961067e+02 -Electron-deuteron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_deuteron_collision_profile107)_ 5.69091318801721172e+02 -Electron-deuteron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_deuteron_collision_profile108)_ 5.69823226917288252e+02 -Electron-deuteron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_deuteron_collision_profile109)_ 5.70563479244970381e+02 -Electron-deuteron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_deuteron_collision_profile110)_ 5.71312122748111051e+02 -Electron-deuteron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_deuteron_collision_profile111)_ 5.72069205035838650e+02 -Electron-deuteron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_deuteron_collision_profile112)_ 5.72834774369920297e+02 -Electron-deuteron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_deuteron_collision_profile113)_ 5.73608879671734599e+02 -Electron-deuteron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_deuteron_collision_profile114)_ 5.74391570529354908e+02 -Electron-deuteron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_deuteron_collision_profile115)_ 5.75182897204750020e+02 -Electron-deuteron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_deuteron_collision_profile116)_ 5.75982910641105491e+02 -Electron-deuteron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_deuteron_collision_profile117)_ 5.76791662470260690e+02 -Electron-deuteron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_deuteron_collision_profile118)_ 5.77609205020271474e+02 -Electron-deuteron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_deuteron_collision_profile119)_ 5.78435591323094627e+02 -Electron-deuteron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_deuteron_collision_profile120)_ 5.79270875122397570e+02 -Electron-deuteron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_deuteron_collision_profile121)_ 5.80115110881497458e+02 -Electron-deuteron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_deuteron_collision_profile122)_ 5.80968353791428854e+02 -Electron-deuteron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_deuteron_collision_profile123)_ 5.81830659779141911e+02 -Electron-deuteron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_deuteron_collision_profile124)_ 5.82702085515835506e+02 -Electron-deuteron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_deuteron_collision_profile125)_ 5.83582688425426227e+02 -Electron-deuteron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_deuteron_collision_profile126)_ 5.84472526693154236e+02 -Electron-deuteron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_deuteron_collision_profile127)_ 5.85371659274330227e+02 -Electron-deuteron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_deuteron_collision_profile128)_ 5.86280145903223229e+02 -Electron-deuteron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_deuteron_collision_profile129)_ 5.87198047102094847e+02 -Electron-deuteron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_deuteron_collision_profile130)_ 5.88125424190377885e+02 -Electron-deuteron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_deuteron_collision_profile131)_ 5.89062339294007302e+02 -Electron-deuteron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_deuteron_collision_profile132)_ 5.90008855354899652e+02 -Electron-deuteron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_deuteron_collision_profile133)_ 5.90965036140587927e+02 -Electron-deuteron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_deuteron_collision_profile134)_ 5.91930946254014430e+02 -Electron-deuteron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_deuteron_collision_profile135)_ 5.92906651143478257e+02 -Electron-deuteron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_deuteron_collision_profile136)_ 5.93892217112749336e+02 -Electron-deuteron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_deuteron_collision_profile137)_ 5.94887711331344462e+02 -Electron-deuteron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_deuteron_collision_profile138)_ 5.95893201844969326e+02 -Electron-deuteron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_deuteron_collision_profile139)_ 5.96908757586131287e+02 -Electron-deuteron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_deuteron_collision_profile140)_ 5.97934448384925645e+02 -Electron-deuteron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_deuteron_collision_profile141)_ 5.98970344979994707e+02 -Electron-deuteron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_deuteron_collision_profile142)_ 6.00016519029666142e+02 -Electron-deuteron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_deuteron_collision_profile143)_ 6.01073043123273692e+02 -Electron-deuteron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_deuteron_collision_profile144)_ 6.02139990792659773e+02 -Electron-deuteron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_deuteron_collision_profile145)_ 6.03217436523867377e+02 -Electron-deuteron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_deuteron_collision_profile146)_ 6.04305455769018295e+02 -Electron-deuteron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_deuteron_collision_profile147)_ 6.05404124958391321e+02 -Electron-deuteron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_deuteron_collision_profile148)_ 6.06513521512690204e+02 -Electron-deuteron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_deuteron_collision_profile149)_ 6.07633723855516109e+02 -Electron-deuteron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_deuteron_collision_profile150)_ 6.08764811426041319e+02 -Electron-deuteron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_deuteron_collision_profile151)_ 6.09906864691889950e+02 -Electron-deuteron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_deuteron_collision_profile152)_ 6.11059965162230128e+02 -Electron-deuteron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_deuteron_collision_profile153)_ 6.12224195401076486e+02 -Electron-deuteron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_deuteron_collision_profile154)_ 6.13399639040815714e+02 -Electron-deuteron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_deuteron_collision_profile155)_ 6.14586380795946525e+02 -Electron-deuteron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_deuteron_collision_profile156)_ 6.15784506477049263e+02 -Electron-deuteron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_deuteron_collision_profile157)_ 6.16994103004982321e+02 -Electron-deuteron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_deuteron_collision_profile158)_ 6.18215258425311276e+02 -Electron-deuteron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_deuteron_collision_profile159)_ 6.19448061922973693e+02 -Electron-deuteron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_deuteron_collision_profile160)_ 6.20692603837186084e+02 -Electron-deuteron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_deuteron_collision_profile161)_ 6.21948975676593818e+02 -Electron-deuteron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_deuteron_collision_profile162)_ 6.23217270134671594e+02 -Electron-deuteron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_deuteron_collision_profile163)_ 6.24497581105375616e+02 -Electron-deuteron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_deuteron_collision_profile164)_ 6.25790003699052704e+02 -Electron-deuteron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_deuteron_collision_profile165)_ 6.27094634258615088e+02 -Electron-deuteron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_deuteron_collision_profile166)_ 6.28411570375974748e+02 -Electron-deuteron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_deuteron_collision_profile167)_ 6.29740910908757769e+02 -Electron-deuteron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_deuteron_collision_profile168)_ 6.31082755997285858e+02 -Electron-deuteron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_deuteron_collision_profile169)_ 6.32437207081844349e+02 -Electron-deuteron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_deuteron_collision_profile170)_ 6.33804366920232155e+02 -Electron-deuteron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_deuteron_collision_profile171)_ 6.35184339605605714e+02 -Electron-deuteron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_deuteron_collision_profile172)_ 6.36577230584612607e+02 -Electron-deuteron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_deuteron_collision_profile173)_ 6.37983146675833950e+02 -Electron-deuteron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_deuteron_collision_profile174)_ 6.39402196088523624e+02 -Electron-deuteron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_deuteron_collision_profile175)_ 6.40834488441666394e+02 -Electron-deuteron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_deuteron_collision_profile176)_ 6.42280134783348558e+02 -Electron-deuteron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_deuteron_collision_profile177)_ 6.43739247610451571e+02 -Electron-deuteron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_deuteron_collision_profile178)_ 6.45211940888675372e+02 -Electron-deuteron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_deuteron_collision_profile179)_ 6.46698330072891395e+02 -Electron-deuteron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_deuteron_collision_profile180)_ 6.48198532127840622e+02 -Electron-deuteron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_deuteron_collision_profile181)_ 6.49712665549173607e+02 -Electron-deuteron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_deuteron_collision_profile182)_ 6.51240850384841110e+02 -Electron-deuteron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_deuteron_collision_profile183)_ 6.52783208256848070e+02 -Electron-deuteron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_deuteron_collision_profile184)_ 6.54339862383364789e+02 -Electron-deuteron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_deuteron_collision_profile185)_ 6.55910937601215210e+02 -Electron-deuteron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_deuteron_collision_profile186)_ 6.57496560388736953e+02 -Electron-deuteron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_deuteron_collision_profile187)_ 6.59096858889030955e+02 -Electron-deuteron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_deuteron_collision_profile188)_ 6.60711962933596965e+02 -Electron-deuteron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_deuteron_collision_profile189)_ 6.62342004066368986e+02 -Electron-deuteron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_deuteron_collision_profile190)_ 6.63987115568156582e+02 -Electron-deuteron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_deuteron_collision_profile191)_ 6.65647432481495912e+02 -Electron-deuteron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_deuteron_collision_profile192)_ 6.67323091635921855e+02 -Electron-deuteron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_deuteron_collision_profile193)_ 6.69014231673666472e+02 -Electron-deuteron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_deuteron_collision_profile194)_ 6.70720993075792194e+02 -Electron-deuteron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_deuteron_collision_profile195)_ 6.72443518188766802e+02 -Electron-deuteron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_deuteron_collision_profile196)_ 6.74181951251489295e+02 -Electron-deuteron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_deuteron_collision_profile197)_ 6.75936438422773449e+02 -Electron-deuteron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_deuteron_collision_profile198)_ 6.77707127809297845e+02 -Electron-deuteron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_deuteron_collision_profile199)_ 6.79494169494031667e+02 -Electron-deuteron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_deuteron_collision_profile200)_ 6.81297715565140493e+02 -Electron-deuteron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_deuteron_collision_profile201)_ 6.83117920145390485e+02 -Electron-deuteron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_deuteron_collision_profile202)_ 6.84954939422045413e+02 -Electron-deuteron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_deuteron_collision_profile203)_ 6.86808931677280611e+02 -Electron-deuteron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_deuteron_collision_profile204)_ 6.88680057319109665e+02 -Electron-deuteron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_deuteron_collision_profile205)_ 6.90568478912844625e+02 -Electron-deuteron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_deuteron_collision_profile206)_ 6.92474361213089651e+02 -Electron-deuteron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_deuteron_collision_profile207)_ 6.94397871196285450e+02 -Electron-deuteron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_deuteron_collision_profile208)_ 6.96339178093806595e+02 -Electron-deuteron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_deuteron_collision_profile209)_ 6.98298453425631806e+02 -Electron-deuteron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_deuteron_collision_profile210)_ 7.00275871034584611e+02 -Electron-deuteron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_deuteron_collision_profile211)_ 7.02271607121168131e+02 -Electron-deuteron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_deuteron_collision_profile212)_ 7.04285840278992964e+02 -Electron-deuteron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_deuteron_collision_profile213)_ 7.06318751530817167e+02 -Electron-deuteron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_deuteron_collision_profile214)_ 7.08370524365203664e+02 -Electron-deuteron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_deuteron_collision_profile215)_ 7.10441344773811124e+02 -Electron-deuteron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_deuteron_collision_profile216)_ 7.12531401289323412e+02 -Electron-deuteron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_deuteron_collision_profile217)_ 7.14640885024037061e+02 -Electron-deuteron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_deuteron_collision_profile218)_ 7.16769989709109041e+02 -Electron-deuteron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_deuteron_collision_profile219)_ 7.18918911734486187e+02 -Electron-deuteron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_deuteron_collision_profile220)_ 7.21087850189520168e+02 -Electron-deuteron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_deuteron_collision_profile221)_ 7.23277006904287646e+02 -Electron-deuteron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_deuteron_collision_profile222)_ 7.25486586491619732e+02 -Electron-deuteron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_deuteron_collision_profile223)_ 7.27716796389862452e+02 -Electron-deuteron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_deuteron_collision_profile224)_ 7.29967846906374916e+02 -Electron-deuteron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_deuteron_collision_profile225)_ 7.32239951261778288e+02 -Electron-deuteron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_deuteron_collision_profile226)_ 7.34533325634974858e+02 -Electron-deuteron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_deuteron_collision_profile227)_ 7.36848189208942358e+02 -Electron-deuteron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_deuteron_collision_profile228)_ 7.39184764217323846e+02 -Electron-deuteron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_deuteron_collision_profile229)_ 7.41543275991824203e+02 -Electron-deuteron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_deuteron_collision_profile230)_ 7.43923953010428932e+02 -Electron-deuteron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_deuteron_collision_profile231)_ 7.46327026946455248e+02 -Electron-deuteron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_deuteron_collision_profile232)_ 7.48752732718458333e+02 -Electron-deuteron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_deuteron_collision_profile233)_ 7.51201308540998639e+02 -Electron-deuteron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_deuteron_collision_profile234)_ 7.53672995976292214e+02 -Electron-deuteron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_deuteron_collision_profile235)_ 7.56168039986754025e+02 -Electron-deuteron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_deuteron_collision_profile236)_ 7.58686688988455671e+02 -Electron-deuteron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_deuteron_collision_profile237)_ 7.61229194905504983e+02 -Electron-deuteron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_deuteron_collision_profile238)_ 7.63795813225372171e+02 -Electron-deuteron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_deuteron_collision_profile239)_ 7.66386803055175392e+02 -Electron-deuteron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_deuteron_collision_profile240)_ 7.69002427178934795e+02 -Electron-deuteron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_deuteron_collision_profile241)_ 7.71642952115827597e+02 -Electron-deuteron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_deuteron_collision_profile242)_ 7.74308648179444504e+02 -Electron-deuteron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_deuteron_collision_profile243)_ 7.76999789538074310e+02 -Electron-deuteron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_deuteron_collision_profile244)_ 7.79716654276030681e+02 -Electron-deuteron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_deuteron_collision_profile245)_ 7.82459524456041663e+02 -Electron-deuteron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_deuteron_collision_profile246)_ 7.85228686182709680e+02 -Electron-deuteron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_deuteron_collision_profile247)_ 7.88024429667077925e+02 -Electron-deuteron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_deuteron_collision_profile248)_ 7.90847049292300653e+02 -Electron-deuteron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_deuteron_collision_profile249)_ 7.93696843680448751e+02 -Electron-deuteron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_deuteron_collision_profile250)_ 7.96574115760467294e+02 -Electron-deuteron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_deuteron_collision_profile251)_ 7.99479172837299416e+02 -Electron-deuteron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_deuteron_collision_profile252)_ 8.02412326662197870e+02 -Electron-deuteron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_deuteron_collision_profile253)_ 8.05373893504244961e+02 -Electron-deuteron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_deuteron_collision_profile254)_ 8.08364194223095637e+02 -Electron-deuteron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_deuteron_collision_profile255)_ 8.11383554342962384e+02 -Electron-deuteron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_deuteron_collision_profile256)_ 8.14432304127872271e+02 -Electron-deuteron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_deuteron_collision_profile257)_ 8.17510778658200479e+02 -Electron-deuteron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_deuteron_collision_profile258)_ 8.20619317908506673e+02 -Electron-deuteron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_deuteron_collision_profile259)_ 8.23758266826697650e+02 -Electron-deuteron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_deuteron_collision_profile260)_ 8.26927975414528191e+02 -Electron-deuteron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_deuteron_collision_profile261)_ 8.30128798809468321e+02 -Electron-deuteron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_deuteron_collision_profile262)_ 8.33361097367946854e+02 -Electron-deuteron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_deuteron_collision_profile263)_ 8.36625236750002273e+02 -Electron-deuteron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_deuteron_collision_profile264)_ 8.39921588005347417e+02 -Electron-deuteron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_deuteron_collision_profile265)_ 8.43250527660885496e+02 -Electron-deuteron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_deuteron_collision_profile266)_ 8.46612437809679363e+02 -Electron-deuteron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_deuteron_collision_profile267)_ 8.50007706201404062e+02 -Electron-deuteron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_deuteron_collision_profile268)_ 8.53436726334297646e+02 -Electron-deuteron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_deuteron_collision_profile269)_ 8.56899897548640524e+02 -Electron-deuteron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_deuteron_collision_profile270)_ 8.60397625121760825e+02 -Electron-deuteron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_deuteron_collision_profile271)_ 8.63930320364611021e+02 -Electron-deuteron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_deuteron_collision_profile272)_ 8.67498400719911842e+02 -Electron-deuteron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_deuteron_collision_profile273)_ 8.71102289861900545e+02 -Electron-deuteron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_deuteron_collision_profile274)_ 8.74742417797687153e+02 -Electron-deuteron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_deuteron_collision_profile275)_ 8.78419220970251558e+02 -Electron-deuteron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_deuteron_collision_profile276)_ 8.82133142363081333e+02 -Electron-deuteron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_deuteron_collision_profile277)_ 8.85884631606484618e+02 -Electron-deuteron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_deuteron_collision_profile278)_ 8.89674145085583973e+02 -Electron-deuteron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_deuteron_collision_profile279)_ 8.93502146050013380e+02 -Electron-deuteron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_deuteron_collision_profile280)_ 8.97369104725328157e+02 -Electron-deuteron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_deuteron_collision_profile281)_ 9.01275498426148602e+02 -Electron-deuteron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_deuteron_collision_profile282)_ 9.05221811671049409e+02 -Electron-deuteron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_deuteron_collision_profile283)_ 9.09208536299204866e+02 -Electron-deuteron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_deuteron_collision_profile284)_ 9.13236171588809270e+02 -Electron-deuteron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_deuteron_collision_profile285)_ 9.17305224377273930e+02 -Electron-deuteron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_deuteron_collision_profile286)_ 9.21416209183226215e+02 -Electron-deuteron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_deuteron_collision_profile287)_ 9.25569648330300538e+02 -Electron-deuteron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_deuteron_collision_profile288)_ 9.29766072072751172e+02 -Electron-deuteron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_deuteron_collision_profile289)_ 9.34006018722868475e+02 -Electron-deuteron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_deuteron_collision_profile290)_ 9.38290034780231053e+02 -Electron-deuteron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_deuteron_collision_profile291)_ 9.42618675062772240e+02 -Electron-deuteron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_deuteron_collision_profile292)_ 9.46992502839682743e+02 -Electron-deuteron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_deuteron_collision_profile293)_ 9.51412089966133863e+02 -Electron-deuteron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_deuteron_collision_profile294)_ 9.55878017019830850e+02 -Electron-deuteron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_deuteron_collision_profile295)_ 9.60390873439383427e+02 -Electron-deuteron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_deuteron_collision_profile296)_ 9.64951257664494847e+02 -Electron-deuteron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_deuteron_collision_profile297)_ 9.69559777277950957e+02 -Electron-deuteron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_deuteron_collision_profile298)_ 9.74217049149412105e+02 -Electron-deuteron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_deuteron_collision_profile299)_ 9.78923699580972766e+02 -Electron-deuteron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_deuteron_collision_profile300)_ 9.83680364454489791e+02 -Electron-deuteron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_deuteron_collision_profile301)_ 9.88487689380649044e+02 -Electron-deuteron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_deuteron_collision_profile302)_ 9.93346329849749281e+02 -Electron-deuteron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_deuteron_collision_profile303)_ 9.98256951384168019e+02 -Electron-deuteron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_deuteron_collision_profile304)_ 1.00322022969248985e+03 -Electron-deuteron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_deuteron_collision_profile305)_ 1.00823685082524742e+03 -Electron-deuteron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_deuteron_collision_profile306)_ 1.01330751133224078e+03 -Electron-deuteron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_deuteron_collision_profile307)_ 1.01843291842138547e+03 -Electron-deuteron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_deuteron_collision_profile308)_ 1.02361379011904603e+03 -Electron-deuteron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_deuteron_collision_profile309)_ 1.02885085543178047e+03 -Electron-deuteron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_deuteron_collision_profile310)_ 1.03414485450945313e+03 -Electron-deuteron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_deuteron_collision_profile311)_ 1.03949653880962819e+03 -Electron-deuteron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_deuteron_collision_profile312)_ 1.04490667126318613e+03 -Electron-deuteron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_deuteron_collision_profile313)_ 1.05037602644105345e+03 -Electron-deuteron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_deuteron_collision_profile314)_ 1.05590539072198726e+03 -Electron-deuteron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_deuteron_collision_profile315)_ 1.06149556246128191e+03 -Electron-deuteron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_deuteron_collision_profile316)_ 1.06714735216031727e+03 -Electron-deuteron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_deuteron_collision_profile317)_ 1.07286158263681227e+03 -Electron-deuteron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_deuteron_collision_profile318)_ 1.07863908919566211e+03 -Electron-deuteron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_deuteron_collision_profile319)_ 1.08448071980022564e+03 -Electron-deuteron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_deuteron_collision_profile320)_ 1.09038733524390523e+03 -Electron-deuteron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_deuteron_collision_profile321)_ 1.09635980932186703e+03 -Electron-deuteron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_deuteron_collision_profile322)_ 1.10239902900271841e+03 -Electron-deuteron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_deuteron_collision_profile323)_ 1.10850589459996172e+03 -Electron-deuteron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_deuteron_collision_profile324)_ 1.11468131994302098e+03 -Electron-deuteron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_deuteron_collision_profile325)_ 1.12092623254762452e+03 -Electron-deuteron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_deuteron_collision_profile326)_ 1.12724157378531140e+03 -Electron-deuteron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_deuteron_collision_profile327)_ 1.13362829905180979e+03 -Electron-deuteron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_deuteron_collision_profile328)_ 1.14008737793402565e+03 -Electron-deuteron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_deuteron_collision_profile329)_ 1.14661979437533864e+03 -Electron-deuteron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_deuteron_collision_profile330)_ 1.15322654683892188e+03 -Electron-deuteron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_deuteron_collision_profile331)_ 1.15990864846872955e+03 -Electron-deuteron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_deuteron_collision_profile332)_ 1.16666712724782474e+03 -Electron-deuteron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_deuteron_collision_profile333)_ 1.17350302615364603e+03 -Electron-deuteron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_deuteron_collision_profile334)_ 1.18041740330983544e+03 -Electron-deuteron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_deuteron_collision_profile335)_ 1.18741133213417197e+03 -Electron-deuteron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_deuteron_collision_profile336)_ 1.19448590148217181e+03 -Electron-deuteron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_deuteron_collision_profile337)_ 1.20164221578585466e+03 -Electron-deuteron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_deuteron_collision_profile338)_ 1.20888139518715411e+03 -Electron-deuteron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_deuteron_collision_profile339)_ 1.21620457566541404e+03 -Electron-deuteron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_deuteron_collision_profile340)_ 1.22361290915838026e+03 -Electron-deuteron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_deuteron_collision_profile341)_ 1.23110756367604790e+03 -Electron-deuteron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_deuteron_collision_profile342)_ 1.23868972340669347e+03 -Electron-deuteron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_deuteron_collision_profile343)_ 1.24636058881436588e+03 -Electron-deuteron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_deuteron_collision_profile344)_ 1.25412137672708445e+03 -Electron-deuteron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_deuteron_collision_profile345)_ 1.26197332041491677e+03 -Electron-deuteron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_deuteron_collision_profile346)_ 1.26991766965706370e+03 -Electron-deuteron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_deuteron_collision_profile347)_ 1.27795569079705592e+03 -Electron-deuteron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_deuteron_collision_profile348)_ 1.28608866678504342e+03 -Electron-deuteron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_deuteron_collision_profile349)_ 1.29431789720616985e+03 -Electron-deuteron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_deuteron_collision_profile350)_ 1.30264469829389941e+03 -Electron-deuteron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_deuteron_collision_profile351)_ 1.31107040292712736e+03 -Electron-deuteron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_deuteron_collision_profile352)_ 1.31959636060981620e+03 -Electron-deuteron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_deuteron_collision_profile353)_ 1.32822393743183420e+03 -Electron-deuteron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_deuteron_collision_profile354)_ 1.33695451600957540e+03 -Electron-deuteron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_deuteron_collision_profile355)_ 1.34578949540486087e+03 -Electron-deuteron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_deuteron_collision_profile356)_ 1.35473029102053420e+03 -Electron-deuteron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_deuteron_collision_profile357)_ 1.36377833447104308e+03 -Electron-deuteron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_deuteron_collision_profile358)_ 1.37293507342623070e+03 -Electron-deuteron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_deuteron_collision_profile359)_ 1.38220197142640563e+03 -Electron-deuteron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_deuteron_collision_profile360)_ 1.39158050766668794e+03 -Electron-deuteron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_deuteron_collision_profile361)_ 1.40107217674847243e+03 -Electron-deuteron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_deuteron_collision_profile362)_ 1.41067848839572866e+03 -Electron-deuteron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_deuteron_collision_profile363)_ 1.42040096713372759e+03 -Electron-deuteron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_deuteron_collision_profile364)_ 1.43024115192762474e+03 -Electron-deuteron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_deuteron_collision_profile365)_ 1.44020059577817801e+03 -Electron-deuteron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_deuteron_collision_profile366)_ 1.45028086527173309e+03 -Electron-deuteron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_deuteron_collision_profile367)_ 1.46048354008139177e+03 -Electron-deuteron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_deuteron_collision_profile368)_ 1.47081021241614280e+03 -Electron-deuteron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_deuteron_collision_profile369)_ 1.48126248641450843e+03 -Electron-deuteron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_deuteron_collision_profile370)_ 1.49184197747906569e+03 -Electron-deuteron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_deuteron_collision_profile371)_ 1.50255031154798166e+03 -Electron-deuteron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_deuteron_collision_profile372)_ 1.51338912429946777e+03 -Electron-deuteron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_deuteron_collision_profile373)_ 1.52436006028481620e+03 -Electron-deuteron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_deuteron_collision_profile374)_ 1.53546477198542539e+03 -Electron-deuteron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_deuteron_collision_profile375)_ 1.54670491878895245e+03 -Electron-deuteron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_deuteron_collision_profile376)_ 1.55808216587941024e+03 -Electron-deuteron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_deuteron_collision_profile377)_ 1.56959818303578004e+03 -Electron-deuteron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_deuteron_collision_profile378)_ 1.58125464333331774e+03 -Electron-deuteron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_deuteron_collision_profile379)_ 1.59305322174145272e+03 -Electron-deuteron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_deuteron_collision_profile380)_ 1.60499559361176171e+03 -Electron-deuteron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_deuteron_collision_profile381)_ 1.61708343304916139e+03 -Electron-deuteron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_deuteron_collision_profile382)_ 1.62931841115902989e+03 -Electron-deuteron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_deuteron_collision_profile383)_ 1.64170219416255327e+03 -Electron-deuteron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_deuteron_collision_profile384)_ 1.65423644137213114e+03 -Electron-deuteron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_deuteron_collision_profile385)_ 1.66692280301820028e+03 -Electron-deuteron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_deuteron_collision_profile386)_ 1.67976291791835092e+03 -Electron-deuteron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_deuteron_collision_profile387)_ 1.69275841097901298e+03 -Electron-deuteron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_deuteron_collision_profile388)_ 1.70591089051950735e+03 -Electron-deuteron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_deuteron_collision_profile389)_ 1.71922194540759187e+03 -Electron-deuteron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_deuteron_collision_profile390)_ 1.73269314199503515e+03 -Electron-deuteron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_deuteron_collision_profile391)_ 1.74632602084105952e+03 -Electron-deuteron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_deuteron_collision_profile392)_ 1.76012209321081764e+03 -Electron-deuteron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_deuteron_collision_profile393)_ 1.77408283733528424e+03 -Electron-deuteron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_deuteron_collision_profile394)_ 1.78820969441818056e+03 -Electron-deuteron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_deuteron_collision_profile395)_ 1.80250406437470770e+03 -Electron-deuteron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_deuteron_collision_profile396)_ 1.81696730128597210e+03 -Electron-deuteron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_deuteron_collision_profile397)_ 1.83160070855205322e+03 -Electron-deuteron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_deuteron_collision_profile398)_ 1.84640553372569912e+03 -Electron-deuteron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_deuteron_collision_profile399)_ 1.86138296300754109e+03 -Electron-deuteron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_deuteron_collision_profile400)_ 1.87653411538267574e+03 -Electron-deuteron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_deuteron_collision_profile401)_ 1.89186003637721637e+03 -Electron-deuteron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_deuteron_collision_profile402)_ 1.90736169141225400e+03 -Electron-deuteron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_deuteron_collision_profile403)_ 1.92303995873128019e+03 -Electron-deuteron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_deuteron_collision_profile404)_ 1.93889562187579122e+03 -Electron-deuteron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_deuteron_collision_profile405)_ 1.95492936168227516e+03 -Electron-deuteron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_deuteron_collision_profile406)_ 1.97114174777223684e+03 -Electron-deuteron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_deuteron_collision_profile407)_ 1.98753322950523693e+03 -Electron-deuteron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_deuteron_collision_profile408)_ 2.00410412636318733e+03 -Electron-deuteron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_deuteron_collision_profile409)_ 2.02085461773219117e+03 -Electron-deuteron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_deuteron_collision_profile410)_ 2.03778473204631655e+03 -Electron-deuteron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_deuteron_collision_profile411)_ 2.05489433525544018e+03 -Electron-deuteron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_deuteron_collision_profile412)_ 2.07218311857713115e+03 -Electron-deuteron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_deuteron_collision_profile413)_ 2.08965058548998422e+03 -Electron-deuteron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_deuteron_collision_profile414)_ 2.10729603792332819e+03 -Electron-deuteron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_deuteron_collision_profile415)_ 2.12511856159529634e+03 -Electron-deuteron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_deuteron_collision_profile416)_ 2.14311701044833035e+03 -Electron-deuteron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_deuteron_collision_profile417)_ 2.16128999012785880e+03 -Electron-deuteron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_deuteron_collision_profile418)_ 2.17963584044640311e+03 -Electron-deuteron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_deuteron_collision_profile419)_ 2.19815261677151057e+03 -Electron-deuteron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_deuteron_collision_profile420)_ 2.21683807027175135e+03 -Electron-deuteron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_deuteron_collision_profile421)_ 2.23568962695048322e+03 -Electron-deuteron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_deuteron_collision_profile422)_ 2.25470436539201864e+03 -Electron-deuteron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_deuteron_collision_profile423)_ 2.27387899313940534e+03 -Electron-deuteron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_deuteron_collision_profile424)_ 2.29320982161686561e+03 -Electron-deuteron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_deuteron_collision_profile425)_ 2.31269273950313845e+03 -Electron-deuteron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_deuteron_collision_profile426)_ 2.33232318445445890e+03 -Electron-deuteron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_deuteron_collision_profile427)_ 2.35209611306727720e+03 -Electron-deuteron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_deuteron_collision_profile428)_ 2.37200596896122943e+03 -Electron-deuteron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_deuteron_collision_profile429)_ 2.39204664885190414e+03 -Electron-deuteron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_deuteron_collision_profile430)_ 2.41221146647037313e+03 -Electron-deuteron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_deuteron_collision_profile431)_ 2.43249311417208810e+03 -Electron-deuteron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_deuteron_collision_profile432)_ 2.45288362206097281e+03 -Electron-deuteron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_deuteron_collision_profile433)_ 2.47337431443521518e+03 -Electron-deuteron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_deuteron_collision_profile434)_ 2.49395576333834833e+03 -Electron-deuteron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_deuteron_collision_profile435)_ 2.51461773897254898e+03 -Electron-deuteron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_deuteron_collision_profile436)_ 2.53534915669904103e+03 -Electron-deuteron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_deuteron_collision_profile437)_ 2.55613802031272235e+03 -Electron-deuteron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_deuteron_collision_profile438)_ 2.57697136123228711e+03 -Electron-deuteron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_deuteron_collision_profile439)_ 2.59783517319214025e+03 -Electron-deuteron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_deuteron_collision_profile440)_ 2.61871434195525217e+03 -Electron-deuteron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_deuteron_collision_profile441)_ 2.63959256948401116e+03 -Electron-deuteron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_deuteron_collision_profile442)_ 2.66045229190493001e+03 -Electron-deuteron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_deuteron_collision_profile443)_ 2.68127459047763250e+03 -Electron-deuteron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_deuteron_collision_profile444)_ 2.70203909462149250e+03 -Electron-deuteron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_deuteron_collision_profile445)_ 2.72272387585601746e+03 -Electron-deuteron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_deuteron_collision_profile446)_ 2.74330533126036516e+03 -Electron-deuteron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_deuteron_collision_profile447)_ 2.76375805473695118e+03 -Electron-deuteron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_deuteron_collision_profile448)_ 2.78405469395032742e+03 -Electron-deuteron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_deuteron_collision_profile449)_ 2.80416579027357056e+03 -Electron-deuteron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_deuteron_collision_profile450)_ 2.82405959836474403e+03 -Electron-deuteron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_deuteron_collision_profile451)_ 2.84370188105138232e+03 -Electron-deuteron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_deuteron_collision_profile452)_ 2.86305567392790726e+03 -Electron-deuteron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_deuteron_collision_profile453)_ 2.88208101233205889e+03 -Electron-deuteron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_deuteron_collision_profile454)_ 2.90073461095576522e+03 -Electron-deuteron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_deuteron_collision_profile455)_ 2.91896948294806134e+03 -Electron-deuteron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_deuteron_collision_profile456)_ 2.93673448048890896e+03 -Electron-deuteron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_deuteron_collision_profile457)_ 2.95397373166046236e+03 -Electron-deuteron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_deuteron_collision_profile458)_ 2.97062593770607646e+03 -Electron-deuteron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_deuteron_collision_profile459)_ 2.98662347821233288e+03 -Electron-deuteron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_deuteron_collision_profile460)_ 3.00189124541664751e+03 -Electron-deuteron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_deuteron_collision_profile461)_ 3.01634508541917603e+03 -Electron-deuteron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_deuteron_collision_profile462)_ 3.02988964935600143e+03 -Electron-deuteron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_deuteron_collision_profile463)_ 3.04241532229655968e+03 -Electron-deuteron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_deuteron_collision_profile464)_ 3.05379363695290476e+03 -Electron-deuteron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_deuteron_collision_profile465)_ 3.06387003644161996e+03 -Electron-deuteron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_deuteron_collision_profile466)_ 3.07245160033340608e+03 -Electron-deuteron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_deuteron_collision_profile467)_ 3.07928404943659325e+03 -Electron-deuteron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_deuteron_collision_profile468)_ 3.08400171992740297e+03 -Electron-deuteron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_deuteron_collision_profile469)_ 3.08598634259747496e+03 -Electron-deuteron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_deuteron_collision_profile470)_ 3.08349785853538606e+03 -Electron-deuteron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_deuteron_collision_profile471)_ 3.19193172492932763e+03 -Electron-deuteron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_deuteron_collision_profile472)_ 3.30900812153468360e+03 -Electron-deuteron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_deuteron_collision_profile473)_ 3.43577757298413462e+03 -Electron-deuteron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_deuteron_collision_profile474)_ 3.57346420274569346e+03 -Electron-deuteron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_deuteron_collision_profile475)_ 3.72350251497802446e+03 -Electron-deuteron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_deuteron_collision_profile476)_ 3.88758381610603556e+03 -Electron-deuteron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_deuteron_collision_profile477)_ 4.06771532636085203e+03 -Electron-deuteron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_deuteron_collision_profile478)_ 4.26629617699285063e+03 -Electron-deuteron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_deuteron_collision_profile479)_ 4.48621613845219781e+03 -Electron-deuteron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_deuteron_collision_profile480)_ 4.73098533612133269e+03 -Electron-deuteron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_deuteron_collision_profile481)_ 5.00490679249945879e+03 -Electron-deuteron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_deuteron_collision_profile482)_ 5.31330905166247703e+03 -Electron-deuteron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_deuteron_collision_profile483)_ 5.66286449288750009e+03 -Electron-deuteron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_deuteron_collision_profile484)_ 6.06203209158592836e+03 -Electron-deuteron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_deuteron_collision_profile485)_ 6.52168458871493840e+03 -Electron-deuteron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_deuteron_collision_profile486)_ 7.05601511853926058e+03 -Electron-deuteron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_deuteron_collision_profile487)_ 7.68387813251982880e+03 -Electron-deuteron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_deuteron_collision_profile488)_ 8.43082473360689801e+03 -Electron-deuteron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_deuteron_collision_profile489)_ 9.33228495401330656e+03 -Electron-deuteron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_deuteron_collision_profile490)_ 1.04387165539601574e+04 -Electron-deuteron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_deuteron_collision_profile491)_ 1.18242755787020560e+04 -Electron-deuteron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_deuteron_collision_profile492)_ 1.36021264891498595e+04 -Electron-deuteron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_deuteron_collision_profile493)_ 1.59530663357018966e+04 -Electron-deuteron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_deuteron_collision_profile494)_ 1.91829425231885543e+04 -Electron-deuteron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_deuteron_collision_profile495)_ 2.38485472147703767e+04 -Electron-deuteron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_deuteron_collision_profile496)_ 3.10678011952686938e+04 -Electron-deuteron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_deuteron_collision_profile497)_ 4.34172817527669467e+04 -Electron-deuteron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_deuteron_collision_profile498)_ 6.82318506382012856e+04 -Electron-deuteron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_deuteron_collision_profile499)_ 1.35884879394174146e+05 -Electron-deuteron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_deuteron_collision_profile500)_ 5.78042263029812369e+05 -Volume_averaged_electron-triton_collision_frequency_(Hz)_________________ (freq_plasma_electron_triton_collision_vol_avg)_ 1.16989926425120848e+03 -Electron-triton_collision_frequency_at_point_0___________________________ (freq_plasma_electron_triton_collision_profile0)_ 5.32200316813427548e+02 -Electron-triton_collision_frequency_at_point_1___________________________ (freq_plasma_electron_triton_collision_profile1)_ 5.32203369035387254e+02 -Electron-triton_collision_frequency_at_point_2___________________________ (freq_plasma_electron_triton_collision_profile2)_ 5.32212525871241951e+02 -Electron-triton_collision_frequency_at_point_3___________________________ (freq_plasma_electron_triton_collision_profile3)_ 5.32227787830938610e+02 -Electron-triton_collision_frequency_at_point_4___________________________ (freq_plasma_electron_triton_collision_profile4)_ 5.32249155764458010e+02 -Electron-triton_collision_frequency_at_point_5___________________________ (freq_plasma_electron_triton_collision_profile5)_ 5.32276630861920012e+02 -Electron-triton_collision_frequency_at_point_6___________________________ (freq_plasma_electron_triton_collision_profile6)_ 5.32310214653729076e+02 -Electron-triton_collision_frequency_at_point_7___________________________ (freq_plasma_electron_triton_collision_profile7)_ 5.32349909010763213e+02 -Electron-triton_collision_frequency_at_point_8___________________________ (freq_plasma_electron_triton_collision_profile8)_ 5.32395716144603739e+02 -Electron-triton_collision_frequency_at_point_9___________________________ (freq_plasma_electron_triton_collision_profile9)_ 5.32447638607806198e+02 -Electron-triton_collision_frequency_at_point_10__________________________ (freq_plasma_electron_triton_collision_profile10)_ 5.32505679294216293e+02 -Electron-triton_collision_frequency_at_point_11__________________________ (freq_plasma_electron_triton_collision_profile11)_ 5.32569841439324250e+02 -Electron-triton_collision_frequency_at_point_12__________________________ (freq_plasma_electron_triton_collision_profile12)_ 5.32640128620664086e+02 -Electron-triton_collision_frequency_at_point_13__________________________ (freq_plasma_electron_triton_collision_profile13)_ 5.32716544758252553e+02 -Electron-triton_collision_frequency_at_point_14__________________________ (freq_plasma_electron_triton_collision_profile14)_ 5.32799094115074013e+02 -Electron-triton_collision_frequency_at_point_15__________________________ (freq_plasma_electron_triton_collision_profile15)_ 5.32887781297603851e+02 -Electron-triton_collision_frequency_at_point_16__________________________ (freq_plasma_electron_triton_collision_profile16)_ 5.32982611256376117e+02 -Electron-triton_collision_frequency_at_point_17__________________________ (freq_plasma_electron_triton_collision_profile17)_ 5.33083589286595270e+02 -Electron-triton_collision_frequency_at_point_18__________________________ (freq_plasma_electron_triton_collision_profile18)_ 5.33190721028786811e+02 -Electron-triton_collision_frequency_at_point_19__________________________ (freq_plasma_electron_triton_collision_profile19)_ 5.33304012469495547e+02 -Electron-triton_collision_frequency_at_point_20__________________________ (freq_plasma_electron_triton_collision_profile20)_ 5.33423469942023644e+02 -Electron-triton_collision_frequency_at_point_21__________________________ (freq_plasma_electron_triton_collision_profile21)_ 5.33549100127211887e+02 -Electron-triton_collision_frequency_at_point_22__________________________ (freq_plasma_electron_triton_collision_profile22)_ 5.33680910054266519e+02 -Electron-triton_collision_frequency_at_point_23__________________________ (freq_plasma_electron_triton_collision_profile23)_ 5.33818907101627701e+02 -Electron-triton_collision_frequency_at_point_24__________________________ (freq_plasma_electron_triton_collision_profile24)_ 5.33963098997882753e+02 -Electron-triton_collision_frequency_at_point_25__________________________ (freq_plasma_electron_triton_collision_profile25)_ 5.34113493822721352e+02 -Electron-triton_collision_frequency_at_point_26__________________________ (freq_plasma_electron_triton_collision_profile26)_ 5.34270100007939163e+02 -Electron-triton_collision_frequency_at_point_27__________________________ (freq_plasma_electron_triton_collision_profile27)_ 5.34432926338479660e+02 -Electron-triton_collision_frequency_at_point_28__________________________ (freq_plasma_electron_triton_collision_profile28)_ 5.34601981953525865e+02 -Electron-triton_collision_frequency_at_point_29__________________________ (freq_plasma_electron_triton_collision_profile29)_ 5.34777276347634029e+02 -Electron-triton_collision_frequency_at_point_30__________________________ (freq_plasma_electron_triton_collision_profile30)_ 5.34958819371913705e+02 -Electron-triton_collision_frequency_at_point_31__________________________ (freq_plasma_electron_triton_collision_profile31)_ 5.35146621235251246e+02 -Electron-triton_collision_frequency_at_point_32__________________________ (freq_plasma_electron_triton_collision_profile32)_ 5.35340692505580932e+02 -Electron-triton_collision_frequency_at_point_33__________________________ (freq_plasma_electron_triton_collision_profile33)_ 5.35541044111199994e+02 -Electron-triton_collision_frequency_at_point_34__________________________ (freq_plasma_electron_triton_collision_profile34)_ 5.35747687342132508e+02 -Electron-triton_collision_frequency_at_point_35__________________________ (freq_plasma_electron_triton_collision_profile35)_ 5.35960633851534453e+02 -Electron-triton_collision_frequency_at_point_36__________________________ (freq_plasma_electron_triton_collision_profile36)_ 5.36179895657152315e+02 -Electron-triton_collision_frequency_at_point_37__________________________ (freq_plasma_electron_triton_collision_profile37)_ 5.36405485142822386e+02 -Electron-triton_collision_frequency_at_point_38__________________________ (freq_plasma_electron_triton_collision_profile38)_ 5.36637415060020658e+02 -Electron-triton_collision_frequency_at_point_39__________________________ (freq_plasma_electron_triton_collision_profile39)_ 5.36875698529459669e+02 -Electron-triton_collision_frequency_at_point_40__________________________ (freq_plasma_electron_triton_collision_profile40)_ 5.37120349042734347e+02 -Electron-triton_collision_frequency_at_point_41__________________________ (freq_plasma_electron_triton_collision_profile41)_ 5.37371380464011850e+02 -Electron-triton_collision_frequency_at_point_42__________________________ (freq_plasma_electron_triton_collision_profile42)_ 5.37628807031776432e+02 -Electron-triton_collision_frequency_at_point_43__________________________ (freq_plasma_electron_triton_collision_profile43)_ 5.37892643360618990e+02 -Electron-triton_collision_frequency_at_point_44__________________________ (freq_plasma_electron_triton_collision_profile44)_ 5.38162904443074808e+02 -Electron-triton_collision_frequency_at_point_45__________________________ (freq_plasma_electron_triton_collision_profile45)_ 5.38439605651517581e+02 -Electron-triton_collision_frequency_at_point_46__________________________ (freq_plasma_electron_triton_collision_profile46)_ 5.38722762740094936e+02 -Electron-triton_collision_frequency_at_point_47__________________________ (freq_plasma_electron_triton_collision_profile47)_ 5.39012391846722721e+02 -Electron-triton_collision_frequency_at_point_48__________________________ (freq_plasma_electron_triton_collision_profile48)_ 5.39308509495123076e+02 -Electron-triton_collision_frequency_at_point_49__________________________ (freq_plasma_electron_triton_collision_profile49)_ 5.39611132596920470e+02 -Electron-triton_collision_frequency_at_point_50__________________________ (freq_plasma_electron_triton_collision_profile50)_ 5.39920278453785045e+02 -Electron-triton_collision_frequency_at_point_51__________________________ (freq_plasma_electron_triton_collision_profile51)_ 5.40235964759629610e+02 -Electron-triton_collision_frequency_at_point_52__________________________ (freq_plasma_electron_triton_collision_profile52)_ 5.40558209602861098e+02 -Electron-triton_collision_frequency_at_point_53__________________________ (freq_plasma_electron_triton_collision_profile53)_ 5.40887031468682039e+02 -Electron-triton_collision_frequency_at_point_54__________________________ (freq_plasma_electron_triton_collision_profile54)_ 5.41222449241450249e+02 -Electron-triton_collision_frequency_at_point_55__________________________ (freq_plasma_electron_triton_collision_profile55)_ 5.41564482207088531e+02 -Electron-triton_collision_frequency_at_point_56__________________________ (freq_plasma_electron_triton_collision_profile56)_ 5.41913150055551569e+02 -Electron-triton_collision_frequency_at_point_57__________________________ (freq_plasma_electron_triton_collision_profile57)_ 5.42268472883348863e+02 -Electron-triton_collision_frequency_at_point_58__________________________ (freq_plasma_electron_triton_collision_profile58)_ 5.42630471196120311e+02 -Electron-triton_collision_frequency_at_point_59__________________________ (freq_plasma_electron_triton_collision_profile59)_ 5.42999165911272712e+02 -Electron-triton_collision_frequency_at_point_60__________________________ (freq_plasma_electron_triton_collision_profile60)_ 5.43374578360669943e+02 -Electron-triton_collision_frequency_at_point_61__________________________ (freq_plasma_electron_triton_collision_profile61)_ 5.43756730293382134e+02 -Electron-triton_collision_frequency_at_point_62__________________________ (freq_plasma_electron_triton_collision_profile62)_ 5.44145643878492592e+02 -Electron-triton_collision_frequency_at_point_63__________________________ (freq_plasma_electron_triton_collision_profile63)_ 5.44541341707965216e+02 -Electron-triton_collision_frequency_at_point_64__________________________ (freq_plasma_electron_triton_collision_profile64)_ 5.44943846799568291e+02 -Electron-triton_collision_frequency_at_point_65__________________________ (freq_plasma_electron_triton_collision_profile65)_ 5.45353182599861611e+02 -Electron-triton_collision_frequency_at_point_66__________________________ (freq_plasma_electron_triton_collision_profile66)_ 5.45769372987242605e+02 -Electron-triton_collision_frequency_at_point_67__________________________ (freq_plasma_electron_triton_collision_profile67)_ 5.46192442275054077e+02 -Electron-triton_collision_frequency_at_point_68__________________________ (freq_plasma_electron_triton_collision_profile68)_ 5.46622415214755847e+02 -Electron-triton_collision_frequency_at_point_69__________________________ (freq_plasma_electron_triton_collision_profile69)_ 5.47059316999154930e+02 -Electron-triton_collision_frequency_at_point_70__________________________ (freq_plasma_electron_triton_collision_profile70)_ 5.47503173265705300e+02 -Electron-triton_collision_frequency_at_point_71__________________________ (freq_plasma_electron_triton_collision_profile71)_ 5.47954010099866991e+02 -Electron-triton_collision_frequency_at_point_72__________________________ (freq_plasma_electron_triton_collision_profile72)_ 5.48411854038532624e+02 -Electron-triton_collision_frequency_at_point_73__________________________ (freq_plasma_electron_triton_collision_profile73)_ 5.48876732073518724e+02 -Electron-triton_collision_frequency_at_point_74__________________________ (freq_plasma_electron_triton_collision_profile74)_ 5.49348671655125600e+02 -Electron-triton_collision_frequency_at_point_75__________________________ (freq_plasma_electron_triton_collision_profile75)_ 5.49827700695761109e+02 -Electron-triton_collision_frequency_at_point_76__________________________ (freq_plasma_electron_triton_collision_profile76)_ 5.50313847573636281e+02 -Electron-triton_collision_frequency_at_point_77__________________________ (freq_plasma_electron_triton_collision_profile77)_ 5.50807141136527548e+02 -Electron-triton_collision_frequency_at_point_78__________________________ (freq_plasma_electron_triton_collision_profile78)_ 5.51307610705610500e+02 -Electron-triton_collision_frequency_at_point_79__________________________ (freq_plasma_electron_triton_collision_profile79)_ 5.51815286079362181e+02 -Electron-triton_collision_frequency_at_point_80__________________________ (freq_plasma_electron_triton_collision_profile80)_ 5.52330197537537401e+02 -Electron-triton_collision_frequency_at_point_81__________________________ (freq_plasma_electron_triton_collision_profile81)_ 5.52852375845217466e+02 -Electron-triton_collision_frequency_at_point_82__________________________ (freq_plasma_electron_triton_collision_profile82)_ 5.53381852256928823e+02 -Electron-triton_collision_frequency_at_point_83__________________________ (freq_plasma_electron_triton_collision_profile83)_ 5.53918658520841973e+02 -Electron-triton_collision_frequency_at_point_84__________________________ (freq_plasma_electron_triton_collision_profile84)_ 5.54462826883039838e+02 -Electron-triton_collision_frequency_at_point_85__________________________ (freq_plasma_electron_triton_collision_profile85)_ 5.55014390091866289e+02 -Electron-triton_collision_frequency_at_point_86__________________________ (freq_plasma_electron_triton_collision_profile86)_ 5.55573381402351629e+02 -Electron-triton_collision_frequency_at_point_87__________________________ (freq_plasma_electron_triton_collision_profile87)_ 5.56139834580713796e+02 -Electron-triton_collision_frequency_at_point_88__________________________ (freq_plasma_electron_triton_collision_profile88)_ 5.56713783908942446e+02 -Electron-triton_collision_frequency_at_point_89__________________________ (freq_plasma_electron_triton_collision_profile89)_ 5.57295264189460113e+02 -Electron-triton_collision_frequency_at_point_90__________________________ (freq_plasma_electron_triton_collision_profile90)_ 5.57884310749867495e+02 -Electron-triton_collision_frequency_at_point_91__________________________ (freq_plasma_electron_triton_collision_profile91)_ 5.58480959447771397e+02 -Electron-triton_collision_frequency_at_point_92__________________________ (freq_plasma_electron_triton_collision_profile92)_ 5.59085246675692702e+02 -Electron-triton_collision_frequency_at_point_93__________________________ (freq_plasma_electron_triton_collision_profile93)_ 5.59697209366064044e+02 -Electron-triton_collision_frequency_at_point_94__________________________ (freq_plasma_electron_triton_collision_profile94)_ 5.60316884996310591e+02 -Electron-triton_collision_frequency_at_point_95__________________________ (freq_plasma_electron_triton_collision_profile95)_ 5.60944311594018359e+02 -Electron-triton_collision_frequency_at_point_96__________________________ (freq_plasma_electron_triton_collision_profile96)_ 5.61579527742192454e+02 -Electron-triton_collision_frequency_at_point_97__________________________ (freq_plasma_electron_triton_collision_profile97)_ 5.62222572584602290e+02 -Electron-triton_collision_frequency_at_point_98__________________________ (freq_plasma_electron_triton_collision_profile98)_ 5.62873485831220364e+02 -Electron-triton_collision_frequency_at_point_99__________________________ (freq_plasma_electron_triton_collision_profile99)_ 5.63532307763752101e+02 -Electron-triton_collision_frequency_at_point_100_________________________ (freq_plasma_electron_triton_collision_profile100)_ 5.64199079241259142e+02 -Electron-triton_collision_frequency_at_point_101_________________________ (freq_plasma_electron_triton_collision_profile101)_ 5.64873841705877112e+02 -Electron-triton_collision_frequency_at_point_102_________________________ (freq_plasma_electron_triton_collision_profile102)_ 5.65556637188631498e+02 -Electron-triton_collision_frequency_at_point_103_________________________ (freq_plasma_electron_triton_collision_profile103)_ 5.66247508315346863e+02 -Electron-triton_collision_frequency_at_point_104_________________________ (freq_plasma_electron_triton_collision_profile104)_ 5.66946498312660992e+02 -Electron-triton_collision_frequency_at_point_105_________________________ (freq_plasma_electron_triton_collision_profile105)_ 5.67653651014134653e+02 -Electron-triton_collision_frequency_at_point_106_________________________ (freq_plasma_electron_triton_collision_profile106)_ 5.68369010866464805e+02 -Electron-triton_collision_frequency_at_point_107_________________________ (freq_plasma_electron_triton_collision_profile107)_ 5.69092622935802183e+02 -Electron-triton_collision_frequency_at_point_108_________________________ (freq_plasma_electron_triton_collision_profile108)_ 5.69824532914171414e+02 -Electron-triton_collision_frequency_at_point_109_________________________ (freq_plasma_electron_triton_collision_profile109)_ 5.70564787126001875e+02 -Electron-triton_collision_frequency_at_point_110_________________________ (freq_plasma_electron_triton_collision_profile110)_ 5.71313432534760295e+02 -Electron-triton_collision_frequency_at_point_111_________________________ (freq_plasma_electron_triton_collision_profile111)_ 5.72070516749700232e+02 -Electron-triton_collision_frequency_at_point_112_________________________ (freq_plasma_electron_triton_collision_profile112)_ 5.72836088032714542e+02 -Electron-triton_collision_frequency_at_point_113_________________________ (freq_plasma_electron_triton_collision_profile113)_ 5.73610195305310867e+02 -Electron-triton_collision_frequency_at_point_114_________________________ (freq_plasma_electron_triton_collision_profile114)_ 5.74392888155692276e+02 -Electron-triton_collision_frequency_at_point_115_________________________ (freq_plasma_electron_triton_collision_profile115)_ 5.75184216845959554e+02 -Electron-triton_collision_frequency_at_point_116_________________________ (freq_plasma_electron_triton_collision_profile116)_ 5.75984232319431953e+02 -Electron-triton_collision_frequency_at_point_117_________________________ (freq_plasma_electron_triton_collision_profile117)_ 5.76792986208084130e+02 -Electron-triton_collision_frequency_at_point_118_________________________ (freq_plasma_electron_triton_collision_profile118)_ 5.77610530840109504e+02 -Electron-triton_collision_frequency_at_point_119_________________________ (freq_plasma_electron_triton_collision_profile119)_ 5.78436919247603896e+02 -Electron-triton_collision_frequency_at_point_120_________________________ (freq_plasma_electron_triton_collision_profile120)_ 5.79272205174375699e+02 -Electron-triton_collision_frequency_at_point_121_________________________ (freq_plasma_electron_triton_collision_profile121)_ 5.80116443083885201e+02 -Electron-triton_collision_frequency_at_point_122_________________________ (freq_plasma_electron_triton_collision_profile122)_ 5.80969688167311915e+02 -Electron-triton_collision_frequency_at_point_123_________________________ (freq_plasma_electron_triton_collision_profile123)_ 5.81831996351752537e+02 -Electron-triton_collision_frequency_at_point_124_________________________ (freq_plasma_electron_triton_collision_profile124)_ 5.82703424308555100e+02 -Electron-triton_collision_frequency_at_point_125_________________________ (freq_plasma_electron_triton_collision_profile125)_ 5.83584029461786599e+02 -Electron-triton_collision_frequency_at_point_126_________________________ (freq_plasma_electron_triton_collision_profile126)_ 5.84473869996840676e+02 -Electron-triton_collision_frequency_at_point_127_________________________ (freq_plasma_electron_triton_collision_profile127)_ 5.85373004869182296e+02 -Electron-triton_collision_frequency_at_point_128_________________________ (freq_plasma_electron_triton_collision_profile128)_ 5.86281493813237716e+02 -Electron-triton_collision_frequency_at_point_129_________________________ (freq_plasma_electron_triton_collision_profile129)_ 5.87199397351427137e+02 -Electron-triton_collision_frequency_at_point_130_________________________ (freq_plasma_electron_triton_collision_profile130)_ 5.88126776803345138e+02 -Electron-triton_collision_frequency_at_point_131_________________________ (freq_plasma_electron_triton_collision_profile131)_ 5.89063694295089590e+02 -Electron-triton_collision_frequency_at_point_132_________________________ (freq_plasma_electron_triton_collision_profile132)_ 5.90010212768742349e+02 -Electron-triton_collision_frequency_at_point_133_________________________ (freq_plasma_electron_triton_collision_profile133)_ 5.90966395992004664e+02 -Electron-triton_collision_frequency_at_point_134_________________________ (freq_plasma_electron_triton_collision_profile134)_ 5.91932308567987775e+02 -Electron-triton_collision_frequency_at_point_135_________________________ (freq_plasma_electron_triton_collision_profile135)_ 5.92908015945163584e+02 -Electron-triton_collision_frequency_at_point_136_________________________ (freq_plasma_electron_triton_collision_profile136)_ 5.93893584427476185e+02 -Electron-triton_collision_frequency_at_point_137_________________________ (freq_plasma_electron_triton_collision_profile137)_ 5.94889081184618931e+02 -Electron-triton_collision_frequency_at_point_138_________________________ (freq_plasma_electron_triton_collision_profile138)_ 5.95894574262476567e+02 -Electron-triton_collision_frequency_at_point_139_________________________ (freq_plasma_electron_triton_collision_profile139)_ 5.96910132593738012e+02 -Electron-triton_collision_frequency_at_point_140_________________________ (freq_plasma_electron_triton_collision_profile140)_ 5.97935826008681829e+02 -Electron-triton_collision_frequency_at_point_141_________________________ (freq_plasma_electron_triton_collision_profile141)_ 5.98971725246136771e+02 -Electron-triton_collision_frequency_at_point_142_________________________ (freq_plasma_electron_triton_collision_profile142)_ 6.00017901964619114e+02 -Electron-triton_collision_frequency_at_point_143_________________________ (freq_plasma_electron_triton_collision_profile143)_ 6.01074428753653820e+02 -Electron-triton_collision_frequency_at_point_144_________________________ (freq_plasma_electron_triton_collision_profile144)_ 6.02141379145276574e+02 -Electron-triton_collision_frequency_at_point_145_________________________ (freq_plasma_electron_triton_collision_profile145)_ 6.03218827625726703e+02 -Electron-triton_collision_frequency_at_point_146_________________________ (freq_plasma_electron_triton_collision_profile146)_ 6.04306849647324384e+02 -Electron-triton_collision_frequency_at_point_147_________________________ (freq_plasma_electron_triton_collision_profile147)_ 6.05405521640549978e+02 -Electron-triton_collision_frequency_at_point_148_________________________ (freq_plasma_electron_triton_collision_profile148)_ 6.06514921026311413e+02 -Electron-triton_collision_frequency_at_point_149_________________________ (freq_plasma_electron_triton_collision_profile149)_ 6.07635126228415515e+02 -Electron-triton_collision_frequency_at_point_150_________________________ (freq_plasma_electron_triton_collision_profile150)_ 6.08766216686244775e+02 -Electron-triton_collision_frequency_at_point_151_________________________ (freq_plasma_electron_triton_collision_profile151)_ 6.09908272867635105e+02 -Electron-triton_collision_frequency_at_point_152_________________________ (freq_plasma_electron_triton_collision_profile152)_ 6.11061376281969274e+02 -Electron-triton_collision_frequency_at_point_153_________________________ (freq_plasma_electron_triton_collision_profile153)_ 6.12225609493479737e+02 -Electron-triton_collision_frequency_at_point_154_________________________ (freq_plasma_electron_triton_collision_profile154)_ 6.13401056134773626e+02 -Electron-triton_collision_frequency_at_point_155_________________________ (freq_plasma_electron_triton_collision_profile155)_ 6.14587800920572931e+02 -Electron-triton_collision_frequency_at_point_156_________________________ (freq_plasma_electron_triton_collision_profile156)_ 6.15785929661684236e+02 -Electron-triton_collision_frequency_at_point_157_________________________ (freq_plasma_electron_triton_collision_profile157)_ 6.16995529279195353e+02 -Electron-triton_collision_frequency_at_point_158_________________________ (freq_plasma_electron_triton_collision_profile158)_ 6.18216687818904006e+02 -Electron-triton_collision_frequency_at_point_159_________________________ (freq_plasma_electron_triton_collision_profile159)_ 6.19449494465983094e+02 -Electron-triton_collision_frequency_at_point_160_________________________ (freq_plasma_electron_triton_collision_profile160)_ 6.20694039559887301e+02 -Electron-triton_collision_frequency_at_point_161_________________________ (freq_plasma_electron_triton_collision_profile161)_ 6.21950414609503696e+02 -Electron-triton_collision_frequency_at_point_162_________________________ (freq_plasma_electron_triton_collision_profile162)_ 6.23218712308551858e+02 -Electron-triton_collision_frequency_at_point_163_________________________ (freq_plasma_electron_triton_collision_profile163)_ 6.24499026551235374e+02 -Electron-triton_collision_frequency_at_point_164_________________________ (freq_plasma_electron_triton_collision_profile164)_ 6.25791452448152540e+02 -Electron-triton_collision_frequency_at_point_165_________________________ (freq_plasma_electron_triton_collision_profile165)_ 6.27096086342469334e+02 -Electron-triton_collision_frequency_at_point_166_________________________ (freq_plasma_electron_triton_collision_profile166)_ 6.28413025826356602e+02 -Electron-triton_collision_frequency_at_point_167_________________________ (freq_plasma_electron_triton_collision_profile167)_ 6.29742369757700430e+02 -Electron-triton_collision_frequency_at_point_168_________________________ (freq_plasma_electron_triton_collision_profile168)_ 6.31084218277087871e+02 -Electron-triton_collision_frequency_at_point_169_________________________ (freq_plasma_electron_triton_collision_profile169)_ 6.32438672825071876e+02 -Electron-triton_collision_frequency_at_point_170_________________________ (freq_plasma_electron_triton_collision_profile170)_ 6.33805836159723412e+02 -Electron-triton_collision_frequency_at_point_171_________________________ (freq_plasma_electron_triton_collision_profile171)_ 6.35185812374473016e+02 -Electron-triton_collision_frequency_at_point_172_________________________ (freq_plasma_electron_triton_collision_profile172)_ 6.36578706916247825e+02 -Electron-triton_collision_frequency_at_point_173_________________________ (freq_plasma_electron_triton_collision_profile173)_ 6.37984626603911352e+02 -Electron-triton_collision_frequency_at_point_174_________________________ (freq_plasma_electron_triton_collision_profile174)_ 6.39403679647003742e+02 -Electron-triton_collision_frequency_at_point_175_________________________ (freq_plasma_electron_triton_collision_profile175)_ 6.40835975664799207e+02 -Electron-triton_collision_frequency_at_point_176_________________________ (freq_plasma_electron_triton_collision_profile176)_ 6.42281625705677925e+02 -Electron-triton_collision_frequency_at_point_177_________________________ (freq_plasma_electron_triton_collision_profile177)_ 6.43740742266819666e+02 -Electron-triton_collision_frequency_at_point_178_________________________ (freq_plasma_electron_triton_collision_profile178)_ 6.45213439314224502e+02 -Electron-triton_collision_frequency_at_point_179_________________________ (freq_plasma_electron_triton_collision_profile179)_ 6.46699832303071048e+02 -Electron-triton_collision_frequency_at_point_180_________________________ (freq_plasma_electron_triton_collision_profile180)_ 6.48200038198409061e+02 -Electron-triton_collision_frequency_at_point_181_________________________ (freq_plasma_electron_triton_collision_profile181)_ 6.49714175496202529e+02 -Electron-triton_collision_frequency_at_point_182_________________________ (freq_plasma_electron_triton_collision_profile182)_ 6.51242364244721102e+02 -Electron-triton_collision_frequency_at_point_183_________________________ (freq_plasma_electron_triton_collision_profile183)_ 6.52784726066290546e+02 -Electron-triton_collision_frequency_at_point_184_________________________ (freq_plasma_electron_triton_collision_profile184)_ 6.54341384179408806e+02 -Electron-triton_collision_frequency_at_point_185_________________________ (freq_plasma_electron_triton_collision_profile185)_ 6.55912463421229290e+02 -Electron-triton_collision_frequency_at_point_186_________________________ (freq_plasma_electron_triton_collision_profile186)_ 6.57498090270426019e+02 -Electron-triton_collision_frequency_at_point_187_________________________ (freq_plasma_electron_triton_collision_profile187)_ 6.59098392870438829e+02 -Electron-triton_collision_frequency_at_point_188_________________________ (freq_plasma_electron_triton_collision_profile188)_ 6.60713501053111941e+02 -Electron-triton_collision_frequency_at_point_189_________________________ (freq_plasma_electron_triton_collision_profile189)_ 6.62343546362727579e+02 -Electron-triton_collision_frequency_at_point_190_________________________ (freq_plasma_electron_triton_collision_profile190)_ 6.63988662080449330e+02 -Electron-triton_collision_frequency_at_point_191_________________________ (freq_plasma_electron_triton_collision_profile191)_ 6.65648983249171124e+02 -Electron-triton_collision_frequency_at_point_192_________________________ (freq_plasma_electron_triton_collision_profile192)_ 6.67324646698791071e+02 -Electron-triton_collision_frequency_at_point_193_________________________ (freq_plasma_electron_triton_collision_profile193)_ 6.69015791071908779e+02 -Electron-triton_collision_frequency_at_point_194_________________________ (freq_plasma_electron_triton_collision_profile194)_ 6.70722556849960029e+02 -Electron-triton_collision_frequency_at_point_195_________________________ (freq_plasma_electron_triton_collision_profile195)_ 6.72445086379790041e+02 -Electron-triton_collision_frequency_at_point_196_________________________ (freq_plasma_electron_triton_collision_profile196)_ 6.74183523900680598e+02 -Electron-triton_collision_frequency_at_point_197_________________________ (freq_plasma_electron_triton_collision_profile197)_ 6.75938015571833716e+02 -Electron-triton_collision_frequency_at_point_198_________________________ (freq_plasma_electron_triton_collision_profile198)_ 6.77708709500321106e+02 -Electron-triton_collision_frequency_at_point_199_________________________ (freq_plasma_electron_triton_collision_profile199)_ 6.79495755769510879e+02 -Electron-triton_collision_frequency_at_point_200_________________________ (freq_plasma_electron_triton_collision_profile200)_ 6.81299306467972315e+02 -Electron-triton_collision_frequency_at_point_201_________________________ (freq_plasma_electron_triton_collision_profile201)_ 6.83119515718881757e+02 -Electron-triton_collision_frequency_at_point_202_________________________ (freq_plasma_electron_triton_collision_profile202)_ 6.84956539709917251e+02 -Electron-triton_collision_frequency_at_point_203_________________________ (freq_plasma_electron_triton_collision_profile203)_ 6.86810536723675227e+02 -Electron-triton_collision_frequency_at_point_204_________________________ (freq_plasma_electron_triton_collision_profile204)_ 6.88681667168596164e+02 -Electron-triton_collision_frequency_at_point_205_________________________ (freq_plasma_electron_triton_collision_profile205)_ 6.90570093610423669e+02 -Electron-triton_collision_frequency_at_point_206_________________________ (freq_plasma_electron_triton_collision_profile206)_ 6.92475980804200731e+02 -Electron-triton_collision_frequency_at_point_207_________________________ (freq_plasma_electron_triton_collision_profile207)_ 6.94399495726812006e+02 -Electron-triton_collision_frequency_at_point_208_________________________ (freq_plasma_electron_triton_collision_profile208)_ 6.96340807610082379e+02 -Electron-triton_collision_frequency_at_point_209_________________________ (freq_plasma_electron_triton_collision_profile209)_ 6.98300087974446910e+02 -Electron-triton_collision_frequency_at_point_210_________________________ (freq_plasma_electron_triton_collision_profile210)_ 7.00277510663192061e+02 -Electron-triton_collision_frequency_at_point_211_________________________ (freq_plasma_electron_triton_collision_profile211)_ 7.02273251877290249e+02 -Electron-triton_collision_frequency_at_point_212_________________________ (freq_plasma_electron_triton_collision_profile212)_ 7.04287490210827173e+02 -Electron-triton_collision_frequency_at_point_213_________________________ (freq_plasma_electron_triton_collision_profile213)_ 7.06320406687043373e+02 -Electron-triton_collision_frequency_at_point_214_________________________ (freq_plasma_electron_triton_collision_profile214)_ 7.08372184794990858e+02 -Electron-triton_collision_frequency_at_point_215_________________________ (freq_plasma_electron_triton_collision_profile215)_ 7.10443010526823514e+02 -Electron-triton_collision_frequency_at_point_216_________________________ (freq_plasma_electron_triton_collision_profile216)_ 7.12533072415727588e+02 -Electron-triton_collision_frequency_at_point_217_________________________ (freq_plasma_electron_triton_collision_profile217)_ 7.14642561574509159e+02 -Electron-triton_collision_frequency_at_point_218_________________________ (freq_plasma_electron_triton_collision_profile218)_ 7.16771671734842016e+02 -Electron-triton_collision_frequency_at_point_219_________________________ (freq_plasma_electron_triton_collision_profile219)_ 7.18920599287196865e+02 -Electron-triton_collision_frequency_at_point_220_________________________ (freq_plasma_electron_triton_collision_profile220)_ 7.21089543321456176e+02 -Electron-triton_collision_frequency_at_point_221_________________________ (freq_plasma_electron_triton_collision_profile221)_ 7.23278705668234579e+02 -Electron-triton_collision_frequency_at_point_222_________________________ (freq_plasma_electron_triton_collision_profile222)_ 7.25488290940910133e+02 -Electron-triton_collision_frequency_at_point_223_________________________ (freq_plasma_electron_triton_collision_profile223)_ 7.27718506578382176e+02 -Electron-triton_collision_frequency_at_point_224_________________________ (freq_plasma_electron_triton_collision_profile224)_ 7.29969562888571204e+02 -Electron-triton_collision_frequency_at_point_225_________________________ (freq_plasma_electron_triton_collision_profile225)_ 7.32241673092667838e+02 -Electron-triton_collision_frequency_at_point_226_________________________ (freq_plasma_electron_triton_collision_profile226)_ 7.34535053370151672e+02 -Electron-triton_collision_frequency_at_point_227_________________________ (freq_plasma_electron_triton_collision_profile227)_ 7.36849922904586037e+02 -Electron-triton_collision_frequency_at_point_228_________________________ (freq_plasma_electron_triton_collision_profile228)_ 7.39186503930208119e+02 -Electron-triton_collision_frequency_at_point_229_________________________ (freq_plasma_electron_triton_collision_profile229)_ 7.41545021779324998e+02 -Electron-triton_collision_frequency_at_point_230_________________________ (freq_plasma_electron_triton_collision_profile230)_ 7.43925704930532561e+02 -Electron-triton_collision_frequency_at_point_231_________________________ (freq_plasma_electron_triton_collision_profile231)_ 7.46328785057767732e+02 -Electron-triton_collision_frequency_at_point_232_________________________ (freq_plasma_electron_triton_collision_profile232)_ 7.48754497080214151e+02 -Electron-triton_collision_frequency_at_point_233_________________________ (freq_plasma_electron_triton_collision_profile233)_ 7.51203079213069259e+02 -Electron-triton_collision_frequency_at_point_234_________________________ (freq_plasma_electron_triton_collision_profile234)_ 7.53674773019195754e+02 -Electron-triton_collision_frequency_at_point_235_________________________ (freq_plasma_electron_triton_collision_profile235)_ 7.56169823461664350e+02 -Electron-triton_collision_frequency_at_point_236_________________________ (freq_plasma_electron_triton_collision_profile236)_ 7.58688478957211032e+02 -Electron-triton_collision_frequency_at_point_237_________________________ (freq_plasma_electron_triton_collision_profile237)_ 7.61230991430619042e+02 -Electron-triton_collision_frequency_at_point_238_________________________ (freq_plasma_electron_triton_collision_profile238)_ 7.63797616370042078e+02 -Electron-triton_collision_frequency_at_point_239_________________________ (freq_plasma_electron_triton_collision_profile239)_ 7.66388612883292922e+02 -Electron-triton_collision_frequency_at_point_240_________________________ (freq_plasma_electron_triton_collision_profile240)_ 7.69004243755096013e+02 -Electron-triton_collision_frequency_at_point_241_________________________ (freq_plasma_electron_triton_collision_profile241)_ 7.71644775505342409e+02 -Electron-triton_collision_frequency_at_point_242_________________________ (freq_plasma_electron_triton_collision_profile242)_ 7.74310478448347908e+02 -Electron-triton_collision_frequency_at_point_243_________________________ (freq_plasma_electron_triton_collision_profile243)_ 7.77001626753136293e+02 -Electron-triton_collision_frequency_at_point_244_________________________ (freq_plasma_electron_triton_collision_profile244)_ 7.79718498504767354e+02 -Electron-triton_collision_frequency_at_point_245_________________________ (freq_plasma_electron_triton_collision_profile245)_ 7.82461375766725155e+02 -Electron-triton_collision_frequency_at_point_246_________________________ (freq_plasma_electron_triton_collision_profile246)_ 7.85230544644381212e+02 -Electron-triton_collision_frequency_at_point_247_________________________ (freq_plasma_electron_triton_collision_profile247)_ 7.88026295349556221e+02 -Electron-triton_collision_frequency_at_point_248_________________________ (freq_plasma_electron_triton_collision_profile248)_ 7.90848922266195927e+02 -Electron-triton_collision_frequency_at_point_249_________________________ (freq_plasma_electron_triton_collision_profile249)_ 7.93698724017172708e+02 -Electron-triton_collision_frequency_at_point_250_________________________ (freq_plasma_electron_triton_collision_profile250)_ 7.96576003532245409e+02 -Electron-triton_collision_frequency_at_point_251_________________________ (freq_plasma_electron_triton_collision_profile251)_ 7.99481068117182758e+02 -Electron-triton_collision_frequency_at_point_252_________________________ (freq_plasma_electron_triton_collision_profile252)_ 8.02414229524075722e+02 -Electron-triton_collision_frequency_at_point_253_________________________ (freq_plasma_electron_triton_collision_profile253)_ 8.05375804022856755e+02 -Electron-triton_collision_frequency_at_point_254_________________________ (freq_plasma_electron_triton_collision_profile254)_ 8.08366112474043121e+02 -Electron-triton_collision_frequency_at_point_255_________________________ (freq_plasma_electron_triton_collision_profile255)_ 8.11385480402723260e+02 -Electron-triton_collision_frequency_at_point_256_________________________ (freq_plasma_electron_triton_collision_profile256)_ 8.14434238073813162e+02 -Electron-triton_collision_frequency_at_point_257_________________________ (freq_plasma_electron_triton_collision_profile257)_ 8.17512720568588747e+02 -Electron-triton_collision_frequency_at_point_258_________________________ (freq_plasma_electron_triton_collision_profile258)_ 8.20621267862525883e+02 -Electron-triton_collision_frequency_at_point_259_________________________ (freq_plasma_electron_triton_collision_profile259)_ 8.23760224904459506e+02 -Electron-triton_collision_frequency_at_point_260_________________________ (freq_plasma_electron_triton_collision_profile260)_ 8.26929941697087429e+02 -Electron-triton_collision_frequency_at_point_261_________________________ (freq_plasma_electron_triton_collision_profile261)_ 8.30130773378836125e+02 -Electron-triton_collision_frequency_at_point_262_________________________ (freq_plasma_electron_triton_collision_profile262)_ 8.33363080307105633e+02 -Electron-triton_collision_frequency_at_point_263_________________________ (freq_plasma_electron_triton_collision_profile263)_ 8.36627228142919648e+02 -Electron-triton_collision_frequency_at_point_264_________________________ (freq_plasma_electron_triton_collision_profile264)_ 8.39923587936991908e+02 -Electron-triton_collision_frequency_at_point_265_________________________ (freq_plasma_electron_triton_collision_profile265)_ 8.43252536217241300e+02 -Electron-triton_collision_frequency_at_point_266_________________________ (freq_plasma_electron_triton_collision_profile266)_ 8.46614455077761363e+02 -Electron-triton_collision_frequency_at_point_267_________________________ (freq_plasma_electron_triton_collision_profile267)_ 8.50009732269272604e+02 -Electron-triton_collision_frequency_at_point_268_________________________ (freq_plasma_electron_triton_collision_profile268)_ 8.53438761291076048e+02 -Electron-triton_collision_frequency_at_point_269_________________________ (freq_plasma_electron_triton_collision_profile269)_ 8.56901941484530653e+02 -Electron-triton_collision_frequency_at_point_270_________________________ (freq_plasma_electron_triton_collision_profile270)_ 8.60399678128058554e+02 -Electron-triton_collision_frequency_at_point_271_________________________ (freq_plasma_electron_triton_collision_profile271)_ 8.63932382533723057e+02 -Electron-triton_collision_frequency_at_point_272_________________________ (freq_plasma_electron_triton_collision_profile272)_ 8.67500472145373237e+02 -Electron-triton_collision_frequency_at_point_273_________________________ (freq_plasma_electron_triton_collision_profile273)_ 8.71104370638392311e+02 -Electron-triton_collision_frequency_at_point_274_________________________ (freq_plasma_electron_triton_collision_profile274)_ 8.74744508021051843e+02 -Electron-triton_collision_frequency_at_point_275_________________________ (freq_plasma_electron_triton_collision_profile275)_ 8.78421320737513270e+02 -Electron-triton_collision_frequency_at_point_276_________________________ (freq_plasma_electron_triton_collision_profile276)_ 8.82135251772461629e+02 -Electron-triton_collision_frequency_at_point_277_________________________ (freq_plasma_electron_triton_collision_profile277)_ 8.85886750757422647e+02 -Electron-triton_collision_frequency_at_point_278_________________________ (freq_plasma_electron_triton_collision_profile278)_ 8.89676274078754204e+02 -Electron-triton_collision_frequency_at_point_279_________________________ (freq_plasma_electron_triton_collision_profile279)_ 8.93504284987344931e+02 -Electron-triton_collision_frequency_at_point_280_________________________ (freq_plasma_electron_triton_collision_profile280)_ 8.97371253710022984e+02 -Electron-triton_collision_frequency_at_point_281_________________________ (freq_plasma_electron_triton_collision_profile281)_ 9.01277657562703325e+02 -Electron-triton_collision_frequency_at_point_282_________________________ (freq_plasma_electron_triton_collision_profile282)_ 9.05223981065272824e+02 -Electron-triton_collision_frequency_at_point_283_________________________ (freq_plasma_electron_triton_collision_profile283)_ 9.09210716058239882e+02 -Electron-triton_collision_frequency_at_point_284_________________________ (freq_plasma_electron_triton_collision_profile284)_ 9.13238361821152353e+02 -Electron-triton_collision_frequency_at_point_285_________________________ (freq_plasma_electron_triton_collision_profile285)_ 9.17307425192797155e+02 -Electron-triton_collision_frequency_at_point_286_________________________ (freq_plasma_electron_triton_collision_profile286)_ 9.21418420693197845e+02 -Electron-triton_collision_frequency_at_point_287_________________________ (freq_plasma_electron_triton_collision_profile287)_ 9.25571870647406854e+02 -Electron-triton_collision_frequency_at_point_288_________________________ (freq_plasma_electron_triton_collision_profile288)_ 9.29768305311118297e+02 -Electron-triton_collision_frequency_at_point_289_________________________ (freq_plasma_electron_triton_collision_profile289)_ 9.34008262998084433e+02 -Electron-triton_collision_frequency_at_point_290_________________________ (freq_plasma_electron_triton_collision_profile290)_ 9.38292290209369298e+02 -Electron-triton_collision_frequency_at_point_291_________________________ (freq_plasma_electron_triton_collision_profile291)_ 9.42620941764414965e+02 -Electron-triton_collision_frequency_at_point_292_________________________ (freq_plasma_electron_triton_collision_profile292)_ 9.46994780933943048e+02 -Electron-triton_collision_frequency_at_point_293_________________________ (freq_plasma_electron_triton_collision_profile293)_ 9.51414379574680311e+02 -Electron-triton_collision_frequency_at_point_294_________________________ (freq_plasma_electron_triton_collision_profile294)_ 9.55880318265911797e+02 -Electron-triton_collision_frequency_at_point_295_________________________ (freq_plasma_electron_triton_collision_profile295)_ 9.60393186447851349e+02 -Electron-triton_collision_frequency_at_point_296_________________________ (freq_plasma_electron_triton_collision_profile296)_ 9.64953582561831922e+02 -Electron-triton_collision_frequency_at_point_297_________________________ (freq_plasma_electron_triton_collision_profile297)_ 9.69562114192294985e+02 -Electron-triton_collision_frequency_at_point_298_________________________ (freq_plasma_electron_triton_collision_profile298)_ 9.74219398210581062e+02 -Electron-triton_collision_frequency_at_point_299_________________________ (freq_plasma_electron_triton_collision_profile299)_ 9.78926060920490954e+02 -Electron-triton_collision_frequency_at_point_300_________________________ (freq_plasma_electron_triton_collision_profile300)_ 9.83682738205616374e+02 -Electron-triton_collision_frequency_at_point_301_________________________ (freq_plasma_electron_triton_collision_profile301)_ 9.88490075678403741e+02 -Electron-triton_collision_frequency_at_point_302_________________________ (freq_plasma_electron_triton_collision_profile302)_ 9.93348728830940104e+02 -Electron-triton_collision_frequency_at_point_303_________________________ (freq_plasma_electron_triton_collision_profile303)_ 9.98259363187419922e+02 -Electron-triton_collision_frequency_at_point_304_________________________ (freq_plasma_electron_triton_collision_profile304)_ 1.00322265445827293e+03 -Electron-triton_collision_frequency_at_point_305_________________________ (freq_plasma_electron_triton_collision_profile305)_ 1.00823928869590543e+03 -Electron-triton_collision_frequency_at_point_306_________________________ (freq_plasma_electron_triton_collision_profile306)_ 1.01330996245202061e+03 -Electron-triton_collision_frequency_at_point_307_________________________ (freq_plasma_electron_triton_collision_profile307)_ 1.01843538293646770e+03 -Electron-triton_collision_frequency_at_point_308_________________________ (freq_plasma_electron_triton_collision_profile308)_ 1.02361626817757394e+03 -Electron-triton_collision_frequency_at_point_309_________________________ (freq_plasma_electron_triton_collision_profile309)_ 1.02885334718389231e+03 -Electron-triton_collision_frequency_at_point_310_________________________ (freq_plasma_electron_triton_collision_profile310)_ 1.03414736010731212e+03 -Electron-triton_collision_frequency_at_point_311_________________________ (freq_plasma_electron_triton_collision_profile311)_ 1.03949905840745578e+03 -Electron-triton_collision_frequency_at_point_312_________________________ (freq_plasma_electron_triton_collision_profile312)_ 1.04490920501729192e+03 -Electron-triton_collision_frequency_at_point_313_________________________ (freq_plasma_electron_triton_collision_profile313)_ 1.05037857450987030e+03 -Electron-triton_collision_frequency_at_point_314_________________________ (freq_plasma_electron_triton_collision_profile314)_ 1.05590795326610214e+03 -Electron-triton_collision_frequency_at_point_315_________________________ (freq_plasma_electron_triton_collision_profile315)_ 1.06149813964347209e+03 -Electron-triton_collision_frequency_at_point_316_________________________ (freq_plasma_electron_triton_collision_profile316)_ 1.06714994414558305e+03 -Electron-triton_collision_frequency_at_point_317_________________________ (freq_plasma_electron_triton_collision_profile317)_ 1.07286418959241200e+03 -Electron-triton_collision_frequency_at_point_318_________________________ (freq_plasma_electron_triton_collision_profile318)_ 1.07864171129114629e+03 -Electron-triton_collision_frequency_at_point_319_________________________ (freq_plasma_electron_triton_collision_profile319)_ 1.08448335720747423e+03 -Electron-triton_collision_frequency_at_point_320_________________________ (freq_plasma_electron_triton_collision_profile320)_ 1.09038998813716375e+03 -Electron-triton_collision_frequency_at_point_321_________________________ (freq_plasma_electron_triton_collision_profile321)_ 1.09636247787778279e+03 -Electron-triton_collision_frequency_at_point_322_________________________ (freq_plasma_electron_triton_collision_profile322)_ 1.10240171340037750e+03 -Electron-triton_collision_frequency_at_point_323_________________________ (freq_plasma_electron_triton_collision_profile323)_ 1.10850859502092658e+03 -Electron-triton_collision_frequency_at_point_324_________________________ (freq_plasma_electron_triton_collision_profile324)_ 1.11468403657136946e+03 -Electron-triton_collision_frequency_at_point_325_________________________ (freq_plasma_electron_triton_collision_profile325)_ 1.12092896556998926e+03 -Electron-triton_collision_frequency_at_point_326_________________________ (freq_plasma_electron_triton_collision_profile326)_ 1.12724432339091686e+03 -Electron-triton_collision_frequency_at_point_327_________________________ (freq_plasma_electron_triton_collision_profile327)_ 1.13363106543251502e+03 -Electron-triton_collision_frequency_at_point_328_________________________ (freq_plasma_electron_triton_collision_profile328)_ 1.14009016128436178e+03 -Electron-triton_collision_frequency_at_point_329_________________________ (freq_plasma_electron_triton_collision_profile329)_ 1.14662259489255143e+03 -Electron-triton_collision_frequency_at_point_330_________________________ (freq_plasma_electron_triton_collision_profile330)_ 1.15322936472301217e+03 -Electron-triton_collision_frequency_at_point_331_________________________ (freq_plasma_electron_triton_collision_profile331)_ 1.15991148392249625e+03 -Electron-triton_collision_frequency_at_point_332_________________________ (freq_plasma_electron_triton_collision_profile332)_ 1.16666998047690549e+03 -Electron-triton_collision_frequency_at_point_333_________________________ (freq_plasma_electron_triton_collision_profile333)_ 1.17350589736656229e+03 -Electron-triton_collision_frequency_at_point_334_________________________ (freq_plasma_electron_triton_collision_profile334)_ 1.18042029271803267e+03 -Electron-triton_collision_frequency_at_point_335_________________________ (freq_plasma_electron_triton_collision_profile335)_ 1.18741423995206605e+03 -Electron-triton_collision_frequency_at_point_336_________________________ (freq_plasma_electron_triton_collision_profile336)_ 1.19448882792719246e+03 -Electron-triton_collision_frequency_at_point_337_________________________ (freq_plasma_electron_triton_collision_profile337)_ 1.20164516107848954e+03 -Electron-triton_collision_frequency_at_point_338_________________________ (freq_plasma_electron_triton_collision_profile338)_ 1.20888435955099408e+03 -Electron-triton_collision_frequency_at_point_339_________________________ (freq_plasma_electron_triton_collision_profile339)_ 1.21620755932719976e+03 -Electron-triton_collision_frequency_at_point_340_________________________ (freq_plasma_electron_triton_collision_profile340)_ 1.22361591234804632e+03 -Electron-triton_collision_frequency_at_point_341_________________________ (freq_plasma_electron_triton_collision_profile341)_ 1.23111058662677056e+03 -Electron-triton_collision_frequency_at_point_342_________________________ (freq_plasma_electron_triton_collision_profile342)_ 1.23869276635493588e+03 -Electron-triton_collision_frequency_at_point_343_________________________ (freq_plasma_electron_triton_collision_profile343)_ 1.24636365199992747e+03 -Electron-triton_collision_frequency_at_point_344_________________________ (freq_plasma_electron_triton_collision_profile344)_ 1.25412446039314568e+03 -Electron-triton_collision_frequency_at_point_345_________________________ (freq_plasma_electron_triton_collision_profile345)_ 1.26197642480808827e+03 -Electron-triton_collision_frequency_at_point_346_________________________ (freq_plasma_electron_triton_collision_profile346)_ 1.26992079502743400e+03 -Electron-triton_collision_frequency_at_point_347_________________________ (freq_plasma_electron_triton_collision_profile347)_ 1.27795883739823853e+03 -Electron-triton_collision_frequency_at_point_348_________________________ (freq_plasma_electron_triton_collision_profile348)_ 1.28609183487422706e+03 -Electron-triton_collision_frequency_at_point_349_________________________ (freq_plasma_electron_triton_collision_profile349)_ 1.29432108704416555e+03 -Electron-triton_collision_frequency_at_point_350_________________________ (freq_plasma_electron_triton_collision_profile350)_ 1.30264791014519005e+03 -Electron-triton_collision_frequency_at_point_351_________________________ (freq_plasma_electron_triton_collision_profile351)_ 1.31107363705991452e+03 -Electron-triton_collision_frequency_at_point_352_________________________ (freq_plasma_electron_triton_collision_profile352)_ 1.31959961729607267e+03 -Electron-triton_collision_frequency_at_point_353_________________________ (freq_plasma_electron_triton_collision_profile353)_ 1.32822721694734832e+03 -Electron-triton_collision_frequency_at_point_354_________________________ (freq_plasma_electron_triton_collision_profile354)_ 1.33695781863400293e+03 -Electron-triton_collision_frequency_at_point_355_________________________ (freq_plasma_electron_triton_collision_profile355)_ 1.34579282142177271e+03 -Electron-triton_collision_frequency_at_point_356_________________________ (freq_plasma_electron_triton_collision_profile356)_ 1.35473364071746414e+03 -Electron-triton_collision_frequency_at_point_357_________________________ (freq_plasma_electron_triton_collision_profile357)_ 1.36378170813953807e+03 -Electron-triton_collision_frequency_at_point_358_________________________ (freq_plasma_electron_triton_collision_profile358)_ 1.37293847136189538e+03 -Electron-triton_collision_frequency_at_point_359_________________________ (freq_plasma_electron_triton_collision_profile359)_ 1.38220539392895353e+03 -Electron-triton_collision_frequency_at_point_360_________________________ (freq_plasma_electron_triton_collision_profile360)_ 1.39158395503998554e+03 -Electron-triton_collision_frequency_at_point_361_________________________ (freq_plasma_electron_triton_collision_profile361)_ 1.40107564930058788e+03 -Electron-triton_collision_frequency_at_point_362_________________________ (freq_plasma_electron_triton_collision_profile362)_ 1.41068198643897631e+03 -Electron-triton_collision_frequency_at_point_363_________________________ (freq_plasma_electron_triton_collision_profile363)_ 1.42040449098471299e+03 -Electron-triton_collision_frequency_at_point_364_________________________ (freq_plasma_electron_triton_collision_profile364)_ 1.43024470190728925e+03 -Electron-triton_collision_frequency_at_point_365_________________________ (freq_plasma_electron_triton_collision_profile365)_ 1.44020417221184243e+03 -Electron-triton_collision_frequency_at_point_366_________________________ (freq_plasma_electron_triton_collision_profile366)_ 1.45028446848914041e+03 -Electron-triton_collision_frequency_at_point_367_________________________ (freq_plasma_electron_triton_collision_profile367)_ 1.46048717041674558e+03 -Electron-triton_collision_frequency_at_point_368_________________________ (freq_plasma_electron_triton_collision_profile368)_ 1.47081387020814896e+03 -Electron-triton_collision_frequency_at_point_369_________________________ (freq_plasma_electron_triton_collision_profile369)_ 1.48126617200641340e+03 -Electron-triton_collision_frequency_at_point_370_________________________ (freq_plasma_electron_triton_collision_profile370)_ 1.49184569121869163e+03 -Electron-triton_collision_frequency_at_point_371_________________________ (freq_plasma_electron_triton_collision_profile371)_ 1.50255405378776140e+03 -Electron-triton_collision_frequency_at_point_372_________________________ (freq_plasma_electron_triton_collision_profile372)_ 1.51339289539647689e+03 -Electron-triton_collision_frequency_at_point_373_________________________ (freq_plasma_electron_triton_collision_profile373)_ 1.52436386060080508e+03 -Electron-triton_collision_frequency_at_point_374_________________________ (freq_plasma_electron_triton_collision_profile374)_ 1.53546860188684650e+03 -Electron-triton_collision_frequency_at_point_375_________________________ (freq_plasma_electron_triton_collision_profile375)_ 1.54670877864698377e+03 -Electron-triton_collision_frequency_at_point_376_________________________ (freq_plasma_electron_triton_collision_profile376)_ 1.55808605606997889e+03 -Electron-triton_collision_frequency_at_point_377_________________________ (freq_plasma_electron_triton_collision_profile377)_ 1.56960210393958118e+03 -Electron-triton_collision_frequency_at_point_378_________________________ (freq_plasma_electron_triton_collision_profile378)_ 1.58125859533583161e+03 -Electron-triton_collision_frequency_at_point_379_________________________ (freq_plasma_electron_triton_collision_profile379)_ 1.59305720523295531e+03 -Electron-triton_collision_frequency_at_point_380_________________________ (freq_plasma_electron_triton_collision_profile380)_ 1.60499960898733343e+03 -Electron-triton_collision_frequency_at_point_381_________________________ (freq_plasma_electron_triton_collision_profile381)_ 1.61708748070869092e+03 -Electron-triton_collision_frequency_at_point_382_________________________ (freq_plasma_electron_triton_collision_profile382)_ 1.62932249150721259e+03 -Electron-triton_collision_frequency_at_point_383_________________________ (freq_plasma_electron_triton_collision_profile383)_ 1.64170630760888776e+03 -Electron-triton_collision_frequency_at_point_384_________________________ (freq_plasma_electron_triton_collision_profile384)_ 1.65424058833090589e+03 -Electron-triton_collision_frequency_at_point_385_________________________ (freq_plasma_electron_triton_collision_profile385)_ 1.66692698390847818e+03 -Electron-triton_collision_frequency_at_point_386_________________________ (freq_plasma_electron_triton_collision_profile386)_ 1.67976713316394284e+03 -Electron-triton_collision_frequency_at_point_387_________________________ (freq_plasma_electron_triton_collision_profile387)_ 1.69276266100845396e+03 -Electron-triton_collision_frequency_at_point_388_________________________ (freq_plasma_electron_triton_collision_profile388)_ 1.70591517576601404e+03 -Electron-triton_collision_frequency_at_point_389_________________________ (freq_plasma_electron_triton_collision_profile389)_ 1.71922626630901891e+03 -Electron-triton_collision_frequency_at_point_390_________________________ (freq_plasma_electron_triton_collision_profile390)_ 1.73269749899382441e+03 -Electron-triton_collision_frequency_at_point_391_________________________ (freq_plasma_electron_triton_collision_profile391)_ 1.74633041438417604e+03 -Electron-triton_collision_frequency_at_point_392_________________________ (freq_plasma_electron_triton_collision_profile392)_ 1.76012652374968047e+03 -Electron-triton_collision_frequency_at_point_393_________________________ (freq_plasma_electron_triton_collision_profile393)_ 1.77408730532568120e+03 -Electron-triton_collision_frequency_at_point_394_________________________ (freq_plasma_electron_triton_collision_profile394)_ 1.78821420032018091e+03 -Electron-triton_collision_frequency_at_point_395_________________________ (freq_plasma_electron_triton_collision_profile395)_ 1.80250860865255504e+03 -Electron-triton_collision_frequency_at_point_396_________________________ (freq_plasma_electron_triton_collision_profile396)_ 1.81697188440796867e+03 -Electron-triton_collision_frequency_at_point_397_________________________ (freq_plasma_electron_triton_collision_profile397)_ 1.83160533099043073e+03 -Electron-triton_collision_frequency_at_point_398_________________________ (freq_plasma_electron_triton_collision_profile398)_ 1.84641019595647685e+03 -Electron-triton_collision_frequency_at_point_399_________________________ (freq_plasma_electron_triton_collision_profile399)_ 1.86138766551036701e+03 -Electron-triton_collision_frequency_at_point_400_________________________ (freq_plasma_electron_triton_collision_profile400)_ 1.87653885864064773e+03 -Electron-triton_collision_frequency_at_point_401_________________________ (freq_plasma_electron_triton_collision_profile401)_ 1.89186482087669560e+03 -Electron-triton_collision_frequency_at_point_402_________________________ (freq_plasma_electron_triton_collision_profile402)_ 1.90736651764265503e+03 -Electron-triton_collision_frequency_at_point_403_________________________ (freq_plasma_electron_triton_collision_profile403)_ 1.92304482718483814e+03 -Electron-triton_collision_frequency_at_point_404_________________________ (freq_plasma_electron_triton_collision_profile404)_ 1.93890053304731555e+03 -Electron-triton_collision_frequency_at_point_405_________________________ (freq_plasma_electron_triton_collision_profile405)_ 1.95493431606887634e+03 -Electron-triton_collision_frequency_at_point_406_________________________ (freq_plasma_electron_triton_collision_profile406)_ 1.97114674587303193e+03 -Electron-triton_collision_frequency_at_point_407_________________________ (freq_plasma_electron_triton_collision_profile407)_ 1.98753827182102805e+03 -Electron-triton_collision_frequency_at_point_408_________________________ (freq_plasma_electron_triton_collision_profile408)_ 2.00410921339611627e+03 -Electron-triton_collision_frequency_at_point_409_________________________ (freq_plasma_electron_triton_collision_profile409)_ 2.02085974998536562e+03 -Electron-triton_collision_frequency_at_point_410_________________________ (freq_plasma_electron_triton_collision_profile410)_ 2.03778991002340081e+03 -Electron-triton_collision_frequency_at_point_411_________________________ (freq_plasma_electron_triton_collision_profile411)_ 2.05489955946022383e+03 -Electron-triton_collision_frequency_at_point_412_________________________ (freq_plasma_electron_triton_collision_profile412)_ 2.07218838951305588e+03 -Electron-triton_collision_frequency_at_point_413_________________________ (freq_plasma_electron_triton_collision_profile413)_ 2.08965590365963772e+03 -Electron-triton_collision_frequency_at_point_414_________________________ (freq_plasma_electron_triton_collision_profile414)_ 2.10730140382789887e+03 -Electron-triton_collision_frequency_at_point_415_________________________ (freq_plasma_electron_triton_collision_profile415)_ 2.12512397573399085e+03 -Electron-triton_collision_frequency_at_point_416_________________________ (freq_plasma_electron_triton_collision_profile416)_ 2.14312247331773779e+03 -Electron-triton_collision_frequency_at_point_417_________________________ (freq_plasma_electron_triton_collision_profile417)_ 2.16129550222128728e+03 -Electron-triton_collision_frequency_at_point_418_________________________ (freq_plasma_electron_triton_collision_profile418)_ 2.17964140225314623e+03 -Electron-triton_collision_frequency_at_point_419_________________________ (freq_plasma_electron_triton_collision_profile419)_ 2.19815822877607889e+03 -Electron-triton_collision_frequency_at_point_420_________________________ (freq_plasma_electron_triton_collision_profile420)_ 2.21684373295304067e+03 -Electron-triton_collision_frequency_at_point_421_________________________ (freq_plasma_electron_triton_collision_profile421)_ 2.23569534078088464e+03 -Electron-triton_collision_frequency_at_point_422_________________________ (freq_plasma_electron_triton_collision_profile422)_ 2.25471013083647358e+03 -Electron-triton_collision_frequency_at_point_423_________________________ (freq_plasma_electron_triton_collision_profile423)_ 2.27388481065438282e+03 -Electron-triton_collision_frequency_at_point_424_________________________ (freq_plasma_electron_triton_collision_profile424)_ 2.29321569164928133e+03 -Electron-triton_collision_frequency_at_point_425_________________________ (freq_plasma_electron_triton_collision_profile425)_ 2.31269866248919561e+03 -Electron-triton_collision_frequency_at_point_426_________________________ (freq_plasma_electron_triton_collision_profile426)_ 2.33232916081840403e+03 -Electron-triton_collision_frequency_at_point_427_________________________ (freq_plasma_electron_triton_collision_profile427)_ 2.35210214322008278e+03 -Electron-triton_collision_frequency_at_point_428_________________________ (freq_plasma_electron_triton_collision_profile428)_ 2.37201205329918002e+03 -Electron-triton_collision_frequency_at_point_429_________________________ (freq_plasma_electron_triton_collision_profile429)_ 2.39205278775509123e+03 -Electron-triton_collision_frequency_at_point_430_________________________ (freq_plasma_electron_triton_collision_profile430)_ 2.41221766030108802e+03 -Electron-triton_collision_frequency_at_point_431_________________________ (freq_plasma_electron_triton_collision_profile431)_ 2.43249936327310297e+03 -Electron-triton_collision_frequency_at_point_432_________________________ (freq_plasma_electron_triton_collision_profile432)_ 2.45288992675372037e+03 -Electron-triton_collision_frequency_at_point_433_________________________ (freq_plasma_electron_triton_collision_profile433)_ 2.47338067501782962e+03 -Electron-triton_collision_frequency_at_point_434_________________________ (freq_plasma_electron_triton_collision_profile434)_ 2.49396218008359710e+03 -Electron-triton_collision_frequency_at_point_435_________________________ (freq_plasma_electron_triton_collision_profile435)_ 2.51462421212560275e+03 -Electron-triton_collision_frequency_at_point_436_________________________ (freq_plasma_electron_triton_collision_profile436)_ 2.53535568647511491e+03 -Electron-triton_collision_frequency_at_point_437_________________________ (freq_plasma_electron_triton_collision_profile437)_ 2.55614460689454791e+03 -Electron-triton_collision_frequency_at_point_438_________________________ (freq_plasma_electron_triton_collision_profile438)_ 2.57697800476741622e+03 -Electron-triton_collision_frequency_at_point_439_________________________ (freq_plasma_electron_triton_collision_profile439)_ 2.59784187379007471e+03 -Electron-triton_collision_frequency_at_point_440_________________________ (freq_plasma_electron_triton_collision_profile440)_ 2.61872109968436962e+03 -Electron-triton_collision_frequency_at_point_441_________________________ (freq_plasma_electron_triton_collision_profile441)_ 2.63959938436827224e+03 -Electron-triton_collision_frequency_at_point_442_________________________ (freq_plasma_electron_triton_collision_profile442)_ 2.66045916392037816e+03 -Electron-triton_collision_frequency_at_point_443_________________________ (freq_plasma_electron_triton_collision_profile443)_ 2.68128151954862506e+03 -Electron-triton_collision_frequency_at_point_444_________________________ (freq_plasma_electron_triton_collision_profile444)_ 2.70204608061667341e+03 -Electron-triton_collision_frequency_at_point_445_________________________ (freq_plasma_electron_triton_collision_profile445)_ 2.72273091858399130e+03 -Electron-triton_collision_frequency_at_point_446_________________________ (freq_plasma_electron_triton_collision_profile446)_ 2.74331243046505097e+03 -Electron-triton_collision_frequency_at_point_447_________________________ (freq_plasma_electron_triton_collision_profile447)_ 2.76376521009256749e+03 -Electron-triton_collision_frequency_at_point_448_________________________ (freq_plasma_electron_triton_collision_profile448)_ 2.78406190505599989e+03 -Electron-triton_collision_frequency_at_point_449_________________________ (freq_plasma_electron_triton_collision_profile449)_ 2.80417305664747664e+03 -Electron-triton_collision_frequency_at_point_450_________________________ (freq_plasma_electron_triton_collision_profile450)_ 2.82406691943777150e+03 -Electron-triton_collision_frequency_at_point_451_________________________ (freq_plasma_electron_triton_collision_profile451)_ 2.84370925616021395e+03 -Electron-triton_collision_frequency_at_point_452_________________________ (freq_plasma_electron_triton_collision_profile452)_ 2.86306310230745521e+03 -Electron-triton_collision_frequency_at_point_453_________________________ (freq_plasma_electron_triton_collision_profile453)_ 2.88208849310715595e+03 -Electron-triton_collision_frequency_at_point_454_________________________ (freq_plasma_electron_triton_collision_profile454)_ 2.90074214313196035e+03 -Electron-triton_collision_frequency_at_point_455_________________________ (freq_plasma_electron_triton_collision_profile455)_ 2.91897706540136505e+03 -Electron-triton_collision_frequency_at_point_456_________________________ (freq_plasma_electron_triton_collision_profile456)_ 2.93674211195429461e+03 -Electron-triton_collision_frequency_at_point_457_________________________ (freq_plasma_electron_triton_collision_profile457)_ 2.95398141071879490e+03 -Electron-triton_collision_frequency_at_point_458_________________________ (freq_plasma_electron_triton_collision_profile458)_ 2.97063366276912848e+03 -Electron-triton_collision_frequency_at_point_459_________________________ (freq_plasma_electron_triton_collision_profile459)_ 2.98663124750533279e+03 -Electron-triton_collision_frequency_at_point_460_________________________ (freq_plasma_electron_triton_collision_profile460)_ 3.00189905695763719e+03 -Electron-triton_collision_frequency_at_point_461_________________________ (freq_plasma_electron_triton_collision_profile461)_ 3.01635293699409249e+03 -Electron-triton_collision_frequency_at_point_462_________________________ (freq_plasma_electron_triton_collision_profile462)_ 3.02989753848785813e+03 -Electron-triton_collision_frequency_at_point_463_________________________ (freq_plasma_electron_triton_collision_profile463)_ 3.04242324620621594e+03 -Electron-triton_collision_frequency_at_point_464_________________________ (freq_plasma_electron_triton_collision_profile464)_ 3.05380159250726683e+03 -Electron-triton_collision_frequency_at_point_465_________________________ (freq_plasma_electron_triton_collision_profile465)_ 3.06387802008199105e+03 -Electron-triton_collision_frequency_at_point_466_________________________ (freq_plasma_electron_triton_collision_profile466)_ 3.07245960797020871e+03 -Electron-triton_collision_frequency_at_point_467_________________________ (freq_plasma_electron_triton_collision_profile467)_ 3.07929207628103222e+03 -Electron-triton_collision_frequency_at_point_468_________________________ (freq_plasma_electron_triton_collision_profile468)_ 3.08400976018601432e+03 -Electron-triton_collision_frequency_at_point_469_________________________ (freq_plasma_electron_triton_collision_profile469)_ 3.08599438877947250e+03 -Electron-triton_collision_frequency_at_point_470_________________________ (freq_plasma_electron_triton_collision_profile470)_ 3.08350589837677671e+03 -Electron-triton_collision_frequency_at_point_471_________________________ (freq_plasma_electron_triton_collision_profile471)_ 3.19194006473068293e+03 -Electron-triton_collision_frequency_at_point_472_________________________ (freq_plasma_electron_triton_collision_profile472)_ 3.30901678568234956e+03 -Electron-triton_collision_frequency_at_point_473_________________________ (freq_plasma_electron_triton_collision_profile473)_ 3.43578658887647453e+03 -Electron-triton_collision_frequency_at_point_474_________________________ (freq_plasma_electron_triton_collision_profile474)_ 3.57347360129749177e+03 -Electron-triton_collision_frequency_at_point_475_________________________ (freq_plasma_electron_triton_collision_profile475)_ 3.72351233123296379e+03 -Electron-triton_collision_frequency_at_point_476_________________________ (freq_plasma_electron_triton_collision_profile476)_ 3.88759408998594654e+03 -Electron-triton_collision_frequency_at_point_477_________________________ (freq_plasma_electron_triton_collision_profile477)_ 4.06772610358942484e+03 -Electron-triton_collision_frequency_at_point_478_________________________ (freq_plasma_electron_triton_collision_profile478)_ 4.26630751024421988e+03 -Electron-triton_collision_frequency_at_point_479_________________________ (freq_plasma_electron_triton_collision_profile479)_ 4.48622808879237346e+03 -Electron-triton_collision_frequency_at_point_480_________________________ (freq_plasma_electron_triton_collision_profile480)_ 4.73099797483533985e+03 -Electron-triton_collision_frequency_at_point_481_________________________ (freq_plasma_electron_triton_collision_profile481)_ 5.00492020343296554e+03 -Electron-triton_collision_frequency_at_point_482_________________________ (freq_plasma_electron_triton_collision_profile482)_ 5.31332333425900288e+03 -Electron-triton_collision_frequency_at_point_483_________________________ (freq_plasma_electron_triton_collision_profile483)_ 5.66287976618031098e+03 -Electron-triton_collision_frequency_at_point_484_________________________ (freq_plasma_electron_triton_collision_profile484)_ 6.06204849952210770e+03 -Electron-triton_collision_frequency_at_point_485_________________________ (freq_plasma_electron_triton_collision_profile485)_ 6.52170230737285056e+03 -Electron-triton_collision_frequency_at_point_486_________________________ (freq_plasma_electron_triton_collision_profile486)_ 7.05603436609300934e+03 -Electron-triton_collision_frequency_at_point_487_________________________ (freq_plasma_electron_triton_collision_profile487)_ 7.68389918328236672e+03 -Electron-triton_collision_frequency_at_point_488_________________________ (freq_plasma_electron_triton_collision_profile488)_ 8.43084793828982038e+03 -Electron-triton_collision_frequency_at_point_489_________________________ (freq_plasma_electron_triton_collision_profile489)_ 9.33231076975038013e+03 -Electron-triton_collision_frequency_at_point_490_________________________ (freq_plasma_electron_triton_collision_profile490)_ 1.04387455902059100e+04 -Electron-triton_collision_frequency_at_point_491_________________________ (freq_plasma_electron_triton_collision_profile491)_ 1.18243086700078620e+04 -Electron-triton_collision_frequency_at_point_492_________________________ (freq_plasma_electron_triton_collision_profile492)_ 1.36021648156821520e+04 -Electron-triton_collision_frequency_at_point_493_________________________ (freq_plasma_electron_triton_collision_profile493)_ 1.59531116336140967e+04 -Electron-triton_collision_frequency_at_point_494_________________________ (freq_plasma_electron_triton_collision_profile494)_ 1.91829974765898332e+04 -Electron-triton_collision_frequency_at_point_495_________________________ (freq_plasma_electron_triton_collision_profile495)_ 2.38486162493211232e+04 -Electron-triton_collision_frequency_at_point_496_________________________ (freq_plasma_electron_triton_collision_profile496)_ 3.10678922714526161e+04 -Electron-triton_collision_frequency_at_point_497_________________________ (freq_plasma_electron_triton_collision_profile497)_ 4.34174110879693690e+04 -Electron-triton_collision_frequency_at_point_498_________________________ (freq_plasma_electron_triton_collision_profile498)_ 6.82320583706514008e+04 -Electron-triton_collision_frequency_at_point_499_________________________ (freq_plasma_electron_triton_collision_profile499)_ 1.35885307294277387e+05 -Electron-triton_collision_frequency_at_point_500_________________________ (freq_plasma_electron_triton_collision_profile500)_ 5.78044223191013443e+05 -Volume_averaged_electron-alpha_thermal_collision_frequency_(Hz)__________ (freq_plasma_electron_alpha_thermal_collision_vol_avg)_ 1.02360102528271022e+03 -Electron-alpha_thermal_collision_frequency_at_point_0____________________ (freq_plasma_electron_alpha_thermal_collision_profile0)_ 4.65647563929110049e+02 -Electron-alpha_thermal_collision_frequency_at_point_1____________________ (freq_plasma_electron_alpha_thermal_collision_profile1)_ 4.65650234464734524e+02 -Electron-alpha_thermal_collision_frequency_at_point_2____________________ (freq_plasma_electron_alpha_thermal_collision_profile2)_ 4.65658246220327499e+02 -Electron-alpha_thermal_collision_frequency_at_point_3____________________ (freq_plasma_electron_alpha_thermal_collision_profile3)_ 4.65671599642066042e+02 -Electron-alpha_thermal_collision_frequency_at_point_4____________________ (freq_plasma_electron_alpha_thermal_collision_profile4)_ 4.65690295473639253e+02 -Electron-alpha_thermal_collision_frequency_at_point_5____________________ (freq_plasma_electron_alpha_thermal_collision_profile5)_ 4.65714334756340236e+02 -Electron-alpha_thermal_collision_frequency_at_point_6____________________ (freq_plasma_electron_alpha_thermal_collision_profile6)_ 4.65743718829193710e+02 -Electron-alpha_thermal_collision_frequency_at_point_7____________________ (freq_plasma_electron_alpha_thermal_collision_profile7)_ 4.65778449329120122e+02 -Electron-alpha_thermal_collision_frequency_at_point_8____________________ (freq_plasma_electron_alpha_thermal_collision_profile8)_ 4.65818528191138853e+02 -Electron-alpha_thermal_collision_frequency_at_point_9____________________ (freq_plasma_electron_alpha_thermal_collision_profile9)_ 4.65863957648603275e+02 -Electron-alpha_thermal_collision_frequency_at_point_10___________________ (freq_plasma_electron_alpha_thermal_collision_profile10)_ 4.65914740233477858e+02 -Electron-alpha_thermal_collision_frequency_at_point_11___________________ (freq_plasma_electron_alpha_thermal_collision_profile11)_ 4.65970878776649101e+02 -Electron-alpha_thermal_collision_frequency_at_point_12___________________ (freq_plasma_electron_alpha_thermal_collision_profile12)_ 4.66032376408272910e+02 -Electron-alpha_thermal_collision_frequency_at_point_13___________________ (freq_plasma_electron_alpha_thermal_collision_profile13)_ 4.66099236558160840e+02 -Electron-alpha_thermal_collision_frequency_at_point_14___________________ (freq_plasma_electron_alpha_thermal_collision_profile14)_ 4.66171462956202504e+02 -Electron-alpha_thermal_collision_frequency_at_point_15___________________ (freq_plasma_electron_alpha_thermal_collision_profile15)_ 4.66249059632824583e+02 -Electron-alpha_thermal_collision_frequency_at_point_16___________________ (freq_plasma_electron_alpha_thermal_collision_profile16)_ 4.66332030919487977e+02 -Electron-alpha_thermal_collision_frequency_at_point_17___________________ (freq_plasma_electron_alpha_thermal_collision_profile17)_ 4.66420381449220713e+02 -Electron-alpha_thermal_collision_frequency_at_point_18___________________ (freq_plasma_electron_alpha_thermal_collision_profile18)_ 4.66514116157190244e+02 -Electron-alpha_thermal_collision_frequency_at_point_19___________________ (freq_plasma_electron_alpha_thermal_collision_profile19)_ 4.66613240281312187e+02 -Electron-alpha_thermal_collision_frequency_at_point_20___________________ (freq_plasma_electron_alpha_thermal_collision_profile20)_ 4.66717759362897368e+02 -Electron-alpha_thermal_collision_frequency_at_point_21___________________ (freq_plasma_electron_alpha_thermal_collision_profile21)_ 4.66827679247333947e+02 -Electron-alpha_thermal_collision_frequency_at_point_22___________________ (freq_plasma_electron_alpha_thermal_collision_profile22)_ 4.66943006084813021e+02 -Electron-alpha_thermal_collision_frequency_at_point_23___________________ (freq_plasma_electron_alpha_thermal_collision_profile23)_ 4.67063746331086463e+02 -Electron-alpha_thermal_collision_frequency_at_point_24___________________ (freq_plasma_electron_alpha_thermal_collision_profile24)_ 4.67189906748266253e+02 -Electron-alpha_thermal_collision_frequency_at_point_25___________________ (freq_plasma_electron_alpha_thermal_collision_profile25)_ 4.67321494405662122e+02 -Electron-alpha_thermal_collision_frequency_at_point_26___________________ (freq_plasma_electron_alpha_thermal_collision_profile26)_ 4.67458516680656885e+02 -Electron-alpha_thermal_collision_frequency_at_point_27___________________ (freq_plasma_electron_alpha_thermal_collision_profile27)_ 4.67600981259620085e+02 -Electron-alpha_thermal_collision_frequency_at_point_28___________________ (freq_plasma_electron_alpha_thermal_collision_profile28)_ 4.67748896138862108e+02 -Electron-alpha_thermal_collision_frequency_at_point_29___________________ (freq_plasma_electron_alpha_thermal_collision_profile29)_ 4.67902269625626730e+02 -Electron-alpha_thermal_collision_frequency_at_point_30___________________ (freq_plasma_electron_alpha_thermal_collision_profile30)_ 4.68061110339123388e+02 -Electron-alpha_thermal_collision_frequency_at_point_31___________________ (freq_plasma_electron_alpha_thermal_collision_profile31)_ 4.68225427211597435e+02 -Electron-alpha_thermal_collision_frequency_at_point_32___________________ (freq_plasma_electron_alpha_thermal_collision_profile32)_ 4.68395229489442613e+02 -Electron-alpha_thermal_collision_frequency_at_point_33___________________ (freq_plasma_electron_alpha_thermal_collision_profile33)_ 4.68570526734351517e+02 -Electron-alpha_thermal_collision_frequency_at_point_34___________________ (freq_plasma_electron_alpha_thermal_collision_profile34)_ 4.68751328824508732e+02 -Electron-alpha_thermal_collision_frequency_at_point_35___________________ (freq_plasma_electron_alpha_thermal_collision_profile35)_ 4.68937645955820813e+02 -Electron-alpha_thermal_collision_frequency_at_point_36___________________ (freq_plasma_electron_alpha_thermal_collision_profile36)_ 4.69129488643191962e+02 -Electron-alpha_thermal_collision_frequency_at_point_37___________________ (freq_plasma_electron_alpha_thermal_collision_profile37)_ 4.69326867721835640e+02 -Electron-alpha_thermal_collision_frequency_at_point_38___________________ (freq_plasma_electron_alpha_thermal_collision_profile38)_ 4.69529794348631299e+02 -Electron-alpha_thermal_collision_frequency_at_point_39___________________ (freq_plasma_electron_alpha_thermal_collision_profile39)_ 4.69738280003521254e+02 -Electron-alpha_thermal_collision_frequency_at_point_40___________________ (freq_plasma_electron_alpha_thermal_collision_profile40)_ 4.69952336490949961e+02 -Electron-alpha_thermal_collision_frequency_at_point_41___________________ (freq_plasma_electron_alpha_thermal_collision_profile41)_ 4.70171975941344385e+02 -Electron-alpha_thermal_collision_frequency_at_point_42___________________ (freq_plasma_electron_alpha_thermal_collision_profile42)_ 4.70397210812638377e+02 -Electron-alpha_thermal_collision_frequency_at_point_43___________________ (freq_plasma_electron_alpha_thermal_collision_profile43)_ 4.70628053891840352e+02 -Electron-alpha_thermal_collision_frequency_at_point_44___________________ (freq_plasma_electron_alpha_thermal_collision_profile44)_ 4.70864518296640028e+02 -Electron-alpha_thermal_collision_frequency_at_point_45___________________ (freq_plasma_electron_alpha_thermal_collision_profile45)_ 4.71106617477066095e+02 -Electron-alpha_thermal_collision_frequency_at_point_46___________________ (freq_plasma_electron_alpha_thermal_collision_profile46)_ 4.71354365217179861e+02 -Electron-alpha_thermal_collision_frequency_at_point_47___________________ (freq_plasma_electron_alpha_thermal_collision_profile47)_ 4.71607775636819440e+02 -Electron-alpha_thermal_collision_frequency_at_point_48___________________ (freq_plasma_electron_alpha_thermal_collision_profile48)_ 4.71866863193383836e+02 -Electron-alpha_thermal_collision_frequency_at_point_49___________________ (freq_plasma_electron_alpha_thermal_collision_profile49)_ 4.72131642683666314e+02 -Electron-alpha_thermal_collision_frequency_at_point_50___________________ (freq_plasma_electron_alpha_thermal_collision_profile50)_ 4.72402129245729327e+02 -Electron-alpha_thermal_collision_frequency_at_point_51___________________ (freq_plasma_electron_alpha_thermal_collision_profile51)_ 4.72678338360828491e+02 -Electron-alpha_thermal_collision_frequency_at_point_52___________________ (freq_plasma_electron_alpha_thermal_collision_profile52)_ 4.72960285855380278e+02 -Electron-alpha_thermal_collision_frequency_at_point_53___________________ (freq_plasma_electron_alpha_thermal_collision_profile53)_ 4.73247987902976945e+02 -Electron-alpha_thermal_collision_frequency_at_point_54___________________ (freq_plasma_electron_alpha_thermal_collision_profile54)_ 4.73541461026451032e+02 -Electron-alpha_thermal_collision_frequency_at_point_55___________________ (freq_plasma_electron_alpha_thermal_collision_profile55)_ 4.73840722099983623e+02 -Electron-alpha_thermal_collision_frequency_at_point_56___________________ (freq_plasma_electron_alpha_thermal_collision_profile56)_ 4.74145788351262468e+02 -Electron-alpha_thermal_collision_frequency_at_point_57___________________ (freq_plasma_electron_alpha_thermal_collision_profile57)_ 4.74456677363689778e+02 -Electron-alpha_thermal_collision_frequency_at_point_58___________________ (freq_plasma_electron_alpha_thermal_collision_profile58)_ 4.74773407078635955e+02 -Electron-alpha_thermal_collision_frequency_at_point_59___________________ (freq_plasma_electron_alpha_thermal_collision_profile59)_ 4.75095995797745502e+02 -Electron-alpha_thermal_collision_frequency_at_point_60___________________ (freq_plasma_electron_alpha_thermal_collision_profile60)_ 4.75424462185291702e+02 -Electron-alpha_thermal_collision_frequency_at_point_61___________________ (freq_plasma_electron_alpha_thermal_collision_profile61)_ 4.75758825270581440e+02 -Electron-alpha_thermal_collision_frequency_at_point_62___________________ (freq_plasma_electron_alpha_thermal_collision_profile62)_ 4.76099104450411858e+02 -Electron-alpha_thermal_collision_frequency_at_point_63___________________ (freq_plasma_electron_alpha_thermal_collision_profile63)_ 4.76445319491577834e+02 -Electron-alpha_thermal_collision_frequency_at_point_64___________________ (freq_plasma_electron_alpha_thermal_collision_profile64)_ 4.76797490533431471e+02 -Electron-alpha_thermal_collision_frequency_at_point_65___________________ (freq_plasma_electron_alpha_thermal_collision_profile65)_ 4.77155638090495188e+02 -Electron-alpha_thermal_collision_frequency_at_point_66___________________ (freq_plasma_electron_alpha_thermal_collision_profile66)_ 4.77519783055126652e+02 -Electron-alpha_thermal_collision_frequency_at_point_67___________________ (freq_plasma_electron_alpha_thermal_collision_profile67)_ 4.77889946700238511e+02 -Electron-alpha_thermal_collision_frequency_at_point_68___________________ (freq_plasma_electron_alpha_thermal_collision_profile68)_ 4.78266150682072407e+02 -Electron-alpha_thermal_collision_frequency_at_point_69___________________ (freq_plasma_electron_alpha_thermal_collision_profile69)_ 4.78648417043027052e+02 -Electron-alpha_thermal_collision_frequency_at_point_70___________________ (freq_plasma_electron_alpha_thermal_collision_profile70)_ 4.79036768214542747e+02 -Electron-alpha_thermal_collision_frequency_at_point_71___________________ (freq_plasma_electron_alpha_thermal_collision_profile71)_ 4.79431227020042911e+02 -Electron-alpha_thermal_collision_frequency_at_point_72___________________ (freq_plasma_electron_alpha_thermal_collision_profile72)_ 4.79831816677930306e+02 -Electron-alpha_thermal_collision_frequency_at_point_73___________________ (freq_plasma_electron_alpha_thermal_collision_profile73)_ 4.80238560804643157e+02 -Electron-alpha_thermal_collision_frequency_at_point_74___________________ (freq_plasma_electron_alpha_thermal_collision_profile74)_ 4.80651483417768532e+02 -Electron-alpha_thermal_collision_frequency_at_point_75___________________ (freq_plasma_electron_alpha_thermal_collision_profile75)_ 4.81070608939214310e+02 -Electron-alpha_thermal_collision_frequency_at_point_76___________________ (freq_plasma_electron_alpha_thermal_collision_profile76)_ 4.81495962198441248e+02 -Electron-alpha_thermal_collision_frequency_at_point_77___________________ (freq_plasma_electron_alpha_thermal_collision_profile77)_ 4.81927568435756143e+02 -Electron-alpha_thermal_collision_frequency_at_point_78___________________ (freq_plasma_electron_alpha_thermal_collision_profile78)_ 4.82365453305664460e+02 -Electron-alpha_thermal_collision_frequency_at_point_79___________________ (freq_plasma_electron_alpha_thermal_collision_profile79)_ 4.82809642880286901e+02 -Electron-alpha_thermal_collision_frequency_at_point_80___________________ (freq_plasma_electron_alpha_thermal_collision_profile80)_ 4.83260163652836525e+02 -Electron-alpha_thermal_collision_frequency_at_point_81___________________ (freq_plasma_electron_alpha_thermal_collision_profile81)_ 4.83717042541161788e+02 -Electron-alpha_thermal_collision_frequency_at_point_82___________________ (freq_plasma_electron_alpha_thermal_collision_profile82)_ 4.84180306891350654e+02 -Electron-alpha_thermal_collision_frequency_at_point_83___________________ (freq_plasma_electron_alpha_thermal_collision_profile83)_ 4.84649984481403692e+02 -Electron-alpha_thermal_collision_frequency_at_point_84___________________ (freq_plasma_electron_alpha_thermal_collision_profile84)_ 4.85126103524969096e+02 -Electron-alpha_thermal_collision_frequency_at_point_85___________________ (freq_plasma_electron_alpha_thermal_collision_profile85)_ 4.85608692675147154e+02 -Electron-alpha_thermal_collision_frequency_at_point_86___________________ (freq_plasma_electron_alpha_thermal_collision_profile86)_ 4.86097781028362760e+02 -Electron-alpha_thermal_collision_frequency_at_point_87___________________ (freq_plasma_electron_alpha_thermal_collision_profile87)_ 4.86593398128303534e+02 -Electron-alpha_thermal_collision_frequency_at_point_88___________________ (freq_plasma_electron_alpha_thermal_collision_profile88)_ 4.87095573969929944e+02 -Electron-alpha_thermal_collision_frequency_at_point_89___________________ (freq_plasma_electron_alpha_thermal_collision_profile89)_ 4.87604339003554628e+02 -Electron-alpha_thermal_collision_frequency_at_point_90___________________ (freq_plasma_electron_alpha_thermal_collision_profile90)_ 4.88119724138994343e+02 -Electron-alpha_thermal_collision_frequency_at_point_91___________________ (freq_plasma_electron_alpha_thermal_collision_profile91)_ 4.88641760749792297e+02 -Electron-alpha_thermal_collision_frequency_at_point_92___________________ (freq_plasma_electron_alpha_thermal_collision_profile92)_ 4.89170480677515172e+02 -Electron-alpha_thermal_collision_frequency_at_point_93___________________ (freq_plasma_electron_alpha_thermal_collision_profile93)_ 4.89705916236124096e+02 -Electron-alpha_thermal_collision_frequency_at_point_94___________________ (freq_plasma_electron_alpha_thermal_collision_profile94)_ 4.90248100216419516e+02 -Electron-alpha_thermal_collision_frequency_at_point_95___________________ (freq_plasma_electron_alpha_thermal_collision_profile95)_ 4.90797065890565023e+02 -Electron-alpha_thermal_collision_frequency_at_point_96___________________ (freq_plasma_electron_alpha_thermal_collision_profile96)_ 4.91352847016686269e+02 -Electron-alpha_thermal_collision_frequency_at_point_97___________________ (freq_plasma_electron_alpha_thermal_collision_profile97)_ 4.91915477843549525e+02 -Electron-alpha_thermal_collision_frequency_at_point_98___________________ (freq_plasma_electron_alpha_thermal_collision_profile98)_ 4.92484993115318503e+02 -Electron-alpha_thermal_collision_frequency_at_point_99___________________ (freq_plasma_electron_alpha_thermal_collision_profile99)_ 4.93061428076394122e+02 -Electron-alpha_thermal_collision_frequency_at_point_100__________________ (freq_plasma_electron_alpha_thermal_collision_profile100)_ 4.93644818476333626e+02 -Electron-alpha_thermal_collision_frequency_at_point_101__________________ (freq_plasma_electron_alpha_thermal_collision_profile101)_ 4.94235200574853764e+02 -Electron-alpha_thermal_collision_frequency_at_point_102__________________ (freq_plasma_electron_alpha_thermal_collision_profile102)_ 4.94832611146919646e+02 -Electron-alpha_thermal_collision_frequency_at_point_103__________________ (freq_plasma_electron_alpha_thermal_collision_profile103)_ 4.95437087487914482e+02 -Electron-alpha_thermal_collision_frequency_at_point_104__________________ (freq_plasma_electron_alpha_thermal_collision_profile104)_ 4.96048667418901800e+02 -Electron-alpha_thermal_collision_frequency_at_point_105__________________ (freq_plasma_electron_alpha_thermal_collision_profile105)_ 4.96667389291971062e+02 -Electron-alpha_thermal_collision_frequency_at_point_106__________________ (freq_plasma_electron_alpha_thermal_collision_profile106)_ 4.97293291995674736e+02 -Electron-alpha_thermal_collision_frequency_at_point_107__________________ (freq_plasma_electron_alpha_thermal_collision_profile107)_ 4.97926414960554496e+02 -Electron-alpha_thermal_collision_frequency_at_point_108__________________ (freq_plasma_electron_alpha_thermal_collision_profile108)_ 4.98566798164759746e+02 -Electron-alpha_thermal_collision_frequency_at_point_109__________________ (freq_plasma_electron_alpha_thermal_collision_profile109)_ 4.99214482139760491e+02 -Electron-alpha_thermal_collision_frequency_at_point_110__________________ (freq_plasma_electron_alpha_thermal_collision_profile110)_ 4.99869507976152079e+02 -Electron-alpha_thermal_collision_frequency_at_point_111__________________ (freq_plasma_electron_alpha_thermal_collision_profile111)_ 5.00531917329558667e+02 -Electron-alpha_thermal_collision_frequency_at_point_112__________________ (freq_plasma_electron_alpha_thermal_collision_profile112)_ 5.01201752426631856e+02 -Electron-alpha_thermal_collision_frequency_at_point_113__________________ (freq_plasma_electron_alpha_thermal_collision_profile113)_ 5.01879056071149478e+02 -Electron-alpha_thermal_collision_frequency_at_point_114__________________ (freq_plasma_electron_alpha_thermal_collision_profile114)_ 5.02563871650215276e+02 -Electron-alpha_thermal_collision_frequency_at_point_115__________________ (freq_plasma_electron_alpha_thermal_collision_profile115)_ 5.03256243140557444e+02 -Electron-alpha_thermal_collision_frequency_at_point_116__________________ (freq_plasma_electron_alpha_thermal_collision_profile116)_ 5.03956215114935389e+02 -Electron-alpha_thermal_collision_frequency_at_point_117__________________ (freq_plasma_electron_alpha_thermal_collision_profile117)_ 5.04663832748646087e+02 -Electron-alpha_thermal_collision_frequency_at_point_118__________________ (freq_plasma_electron_alpha_thermal_collision_profile118)_ 5.05379141826141677e+02 -Electron-alpha_thermal_collision_frequency_at_point_119__________________ (freq_plasma_electron_alpha_thermal_collision_profile119)_ 5.06102188747752791e+02 -Electron-alpha_thermal_collision_frequency_at_point_120__________________ (freq_plasma_electron_alpha_thermal_collision_profile120)_ 5.06833020536520962e+02 -Electron-alpha_thermal_collision_frequency_at_point_121__________________ (freq_plasma_electron_alpha_thermal_collision_profile121)_ 5.07571684845146706e+02 -Electron-alpha_thermal_collision_frequency_at_point_122__________________ (freq_plasma_electron_alpha_thermal_collision_profile122)_ 5.08318229963045894e+02 -Electron-alpha_thermal_collision_frequency_at_point_123__________________ (freq_plasma_electron_alpha_thermal_collision_profile123)_ 5.09072704823524532e+02 -Electron-alpha_thermal_collision_frequency_at_point_124__________________ (freq_plasma_electron_alpha_thermal_collision_profile124)_ 5.09835159011070118e+02 -Electron-alpha_thermal_collision_frequency_at_point_125__________________ (freq_plasma_electron_alpha_thermal_collision_profile125)_ 5.10605642768759310e+02 -Electron-alpha_thermal_collision_frequency_at_point_126__________________ (freq_plasma_electron_alpha_thermal_collision_profile126)_ 5.11384207005790984e+02 -Electron-alpha_thermal_collision_frequency_at_point_127__________________ (freq_plasma_electron_alpha_thermal_collision_profile127)_ 5.12170903305135539e+02 -Electron-alpha_thermal_collision_frequency_at_point_128__________________ (freq_plasma_electron_alpha_thermal_collision_profile128)_ 5.12965783931314718e+02 -Electron-alpha_thermal_collision_frequency_at_point_129__________________ (freq_plasma_electron_alpha_thermal_collision_profile129)_ 5.13768901838304032e+02 -Electron-alpha_thermal_collision_frequency_at_point_130__________________ (freq_plasma_electron_alpha_thermal_collision_profile130)_ 5.14580310677564853e+02 -Electron-alpha_thermal_collision_frequency_at_point_131__________________ (freq_plasma_electron_alpha_thermal_collision_profile131)_ 5.15400064806207297e+02 -Electron-alpha_thermal_collision_frequency_at_point_132__________________ (freq_plasma_electron_alpha_thermal_collision_profile132)_ 5.16228219295285044e+02 -Electron-alpha_thermal_collision_frequency_at_point_133__________________ (freq_plasma_electron_alpha_thermal_collision_profile133)_ 5.17064829938225898e+02 -Electron-alpha_thermal_collision_frequency_at_point_134__________________ (freq_plasma_electron_alpha_thermal_collision_profile134)_ 5.17909953259398094e+02 -Electron-alpha_thermal_collision_frequency_at_point_135__________________ (freq_plasma_electron_alpha_thermal_collision_profile135)_ 5.18763646522816543e+02 -Electron-alpha_thermal_collision_frequency_at_point_136__________________ (freq_plasma_electron_alpha_thermal_collision_profile136)_ 5.19625967740989950e+02 -Electron-alpha_thermal_collision_frequency_at_point_137__________________ (freq_plasma_electron_alpha_thermal_collision_profile137)_ 5.20496975683912410e+02 -Electron-alpha_thermal_collision_frequency_at_point_138__________________ (freq_plasma_electron_alpha_thermal_collision_profile138)_ 5.21376729888200430e+02 -Electron-alpha_thermal_collision_frequency_at_point_139__________________ (freq_plasma_electron_alpha_thermal_collision_profile139)_ 5.22265290666377723e+02 -Electron-alpha_thermal_collision_frequency_at_point_140__________________ (freq_plasma_electron_alpha_thermal_collision_profile140)_ 5.23162719116312701e+02 -Electron-alpha_thermal_collision_frequency_at_point_141__________________ (freq_plasma_electron_alpha_thermal_collision_profile141)_ 5.24069077130807841e+02 -Electron-alpha_thermal_collision_frequency_at_point_142__________________ (freq_plasma_electron_alpha_thermal_collision_profile142)_ 5.24984427407344697e+02 -Electron-alpha_thermal_collision_frequency_at_point_143__________________ (freq_plasma_electron_alpha_thermal_collision_profile143)_ 5.25908833457988521e+02 -Electron-alpha_thermal_collision_frequency_at_point_144__________________ (freq_plasma_electron_alpha_thermal_collision_profile144)_ 5.26842359619453418e+02 -Electron-alpha_thermal_collision_frequency_at_point_145__________________ (freq_plasma_electron_alpha_thermal_collision_profile145)_ 5.27785071063331088e+02 -Electron-alpha_thermal_collision_frequency_at_point_146__________________ (freq_plasma_electron_alpha_thermal_collision_profile146)_ 5.28737033806484874e+02 -Electron-alpha_thermal_collision_frequency_at_point_147__________________ (freq_plasma_electron_alpha_thermal_collision_profile147)_ 5.29698314721616612e+02 -Electron-alpha_thermal_collision_frequency_at_point_148__________________ (freq_plasma_electron_alpha_thermal_collision_profile148)_ 5.30668981548001739e+02 -Electron-alpha_thermal_collision_frequency_at_point_149__________________ (freq_plasma_electron_alpha_thermal_collision_profile149)_ 5.31649102902399591e+02 -Electron-alpha_thermal_collision_frequency_at_point_150__________________ (freq_plasma_electron_alpha_thermal_collision_profile150)_ 5.32638748290145145e+02 -Electron-alpha_thermal_collision_frequency_at_point_151__________________ (freq_plasma_electron_alpha_thermal_collision_profile151)_ 5.33637988116417546e+02 -Electron-alpha_thermal_collision_frequency_at_point_152__________________ (freq_plasma_electron_alpha_thermal_collision_profile152)_ 5.34646893697695077e+02 -Electron-alpha_thermal_collision_frequency_at_point_153__________________ (freq_plasma_electron_alpha_thermal_collision_profile153)_ 5.35665537273394762e+02 -Electron-alpha_thermal_collision_frequency_at_point_154__________________ (freq_plasma_electron_alpha_thermal_collision_profile154)_ 5.36693992017705455e+02 -Electron-alpha_thermal_collision_frequency_at_point_155__________________ (freq_plasma_electron_alpha_thermal_collision_profile155)_ 5.37732332051611593e+02 -Electron-alpha_thermal_collision_frequency_at_point_156__________________ (freq_plasma_electron_alpha_thermal_collision_profile156)_ 5.38780632455113619e+02 -Electron-alpha_thermal_collision_frequency_at_point_157__________________ (freq_plasma_electron_alpha_thermal_collision_profile157)_ 5.39838969279650428e+02 -Electron-alpha_thermal_collision_frequency_at_point_158__________________ (freq_plasma_electron_alpha_thermal_collision_profile158)_ 5.40907419560724747e+02 -Electron-alpha_thermal_collision_frequency_at_point_159__________________ (freq_plasma_electron_alpha_thermal_collision_profile159)_ 5.41986061330732582e+02 -Electron-alpha_thermal_collision_frequency_at_point_160__________________ (freq_plasma_electron_alpha_thermal_collision_profile160)_ 5.43074973632006277e+02 -Electron-alpha_thermal_collision_frequency_at_point_161__________________ (freq_plasma_electron_alpha_thermal_collision_profile161)_ 5.44174236530072449e+02 -Electron-alpha_thermal_collision_frequency_at_point_162__________________ (freq_plasma_electron_alpha_thermal_collision_profile162)_ 5.45283931127122287e+02 -Electron-alpha_thermal_collision_frequency_at_point_163__________________ (freq_plasma_electron_alpha_thermal_collision_profile163)_ 5.46404139575710246e+02 -Electron-alpha_thermal_collision_frequency_at_point_164__________________ (freq_plasma_electron_alpha_thermal_collision_profile164)_ 5.47534945092672046e+02 -Electron-alpha_thermal_collision_frequency_at_point_165__________________ (freq_plasma_electron_alpha_thermal_collision_profile165)_ 5.48676431973276408e+02 -Electron-alpha_thermal_collision_frequency_at_point_166__________________ (freq_plasma_electron_alpha_thermal_collision_profile166)_ 5.49828685605605983e+02 -Electron-alpha_thermal_collision_frequency_at_point_167__________________ (freq_plasma_electron_alpha_thermal_collision_profile167)_ 5.50991792485179531e+02 -Electron-alpha_thermal_collision_frequency_at_point_168__________________ (freq_plasma_electron_alpha_thermal_collision_profile168)_ 5.52165840229811579e+02 -Electron-alpha_thermal_collision_frequency_at_point_169__________________ (freq_plasma_electron_alpha_thermal_collision_profile169)_ 5.53350917594720045e+02 -Electron-alpha_thermal_collision_frequency_at_point_170__________________ (freq_plasma_electron_alpha_thermal_collision_profile170)_ 5.54547114487882595e+02 -Electron-alpha_thermal_collision_frequency_at_point_171__________________ (freq_plasma_electron_alpha_thermal_collision_profile171)_ 5.55754521985647330e+02 -Electron-alpha_thermal_collision_frequency_at_point_172__________________ (freq_plasma_electron_alpha_thermal_collision_profile172)_ 5.56973232348601073e+02 -Electron-alpha_thermal_collision_frequency_at_point_173__________________ (freq_plasma_electron_alpha_thermal_collision_profile173)_ 5.58203339037703699e+02 -Electron-alpha_thermal_collision_frequency_at_point_174__________________ (freq_plasma_electron_alpha_thermal_collision_profile174)_ 5.59444936730686322e+02 -Electron-alpha_thermal_collision_frequency_at_point_175__________________ (freq_plasma_electron_alpha_thermal_collision_profile175)_ 5.60698121338722785e+02 -Electron-alpha_thermal_collision_frequency_at_point_176__________________ (freq_plasma_electron_alpha_thermal_collision_profile176)_ 5.61962990023381167e+02 -Electron-alpha_thermal_collision_frequency_at_point_177__________________ (freq_plasma_electron_alpha_thermal_collision_profile177)_ 5.63239641213853247e+02 -Electron-alpha_thermal_collision_frequency_at_point_178__________________ (freq_plasma_electron_alpha_thermal_collision_profile178)_ 5.64528174624473763e+02 -Electron-alpha_thermal_collision_frequency_at_point_179__________________ (freq_plasma_electron_alpha_thermal_collision_profile179)_ 5.65828691272529682e+02 -Electron-alpha_thermal_collision_frequency_at_point_180__________________ (freq_plasma_electron_alpha_thermal_collision_profile180)_ 5.67141293496368348e+02 -Electron-alpha_thermal_collision_frequency_at_point_181__________________ (freq_plasma_electron_alpha_thermal_collision_profile181)_ 5.68466084973806801e+02 -Electron-alpha_thermal_collision_frequency_at_point_182__________________ (freq_plasma_electron_alpha_thermal_collision_profile182)_ 5.69803170740848827e+02 -Electron-alpha_thermal_collision_frequency_at_point_183__________________ (freq_plasma_electron_alpha_thermal_collision_profile183)_ 5.71152657210716484e+02 -Electron-alpha_thermal_collision_frequency_at_point_184__________________ (freq_plasma_electron_alpha_thermal_collision_profile184)_ 5.72514652193198572e+02 -Electron-alpha_thermal_collision_frequency_at_point_185__________________ (freq_plasma_electron_alpha_thermal_collision_profile185)_ 5.73889264914324485e+02 -Electron-alpha_thermal_collision_frequency_at_point_186__________________ (freq_plasma_electron_alpha_thermal_collision_profile186)_ 5.75276606036368094e+02 -Electron-alpha_thermal_collision_frequency_at_point_187__________________ (freq_plasma_electron_alpha_thermal_collision_profile187)_ 5.76676787678187452e+02 -Electron-alpha_thermal_collision_frequency_at_point_188__________________ (freq_plasma_electron_alpha_thermal_collision_profile188)_ 5.78089923435906371e+02 -Electron-alpha_thermal_collision_frequency_at_point_189__________________ (freq_plasma_electron_alpha_thermal_collision_profile189)_ 5.79516128403944208e+02 -Electron-alpha_thermal_collision_frequency_at_point_190__________________ (freq_plasma_electron_alpha_thermal_collision_profile190)_ 5.80955519196399337e+02 -Electron-alpha_thermal_collision_frequency_at_point_191__________________ (freq_plasma_electron_alpha_thermal_collision_profile191)_ 5.82408213968795053e+02 -Electron-alpha_thermal_collision_frequency_at_point_192__________________ (freq_plasma_electron_alpha_thermal_collision_profile192)_ 5.83874332440188937e+02 -Electron-alpha_thermal_collision_frequency_at_point_193__________________ (freq_plasma_electron_alpha_thermal_collision_profile193)_ 5.85353995915658970e+02 -Electron-alpha_thermal_collision_frequency_at_point_194__________________ (freq_plasma_electron_alpha_thermal_collision_profile194)_ 5.86847327309169259e+02 -Electron-alpha_thermal_collision_frequency_at_point_195__________________ (freq_plasma_electron_alpha_thermal_collision_profile195)_ 5.88354451166820468e+02 -Electron-alpha_thermal_collision_frequency_at_point_196__________________ (freq_plasma_electron_alpha_thermal_collision_profile196)_ 5.89875493690496910e+02 -Electron-alpha_thermal_collision_frequency_at_point_197__________________ (freq_plasma_electron_alpha_thermal_collision_profile197)_ 5.91410582761913474e+02 -Electron-alpha_thermal_collision_frequency_at_point_198__________________ (freq_plasma_electron_alpha_thermal_collision_profile198)_ 5.92959847967070118e+02 -Electron-alpha_thermal_collision_frequency_at_point_199__________________ (freq_plasma_electron_alpha_thermal_collision_profile199)_ 5.94523420621123250e+02 -Electron-alpha_thermal_collision_frequency_at_point_200__________________ (freq_plasma_electron_alpha_thermal_collision_profile200)_ 5.96101433793676733e+02 -Electron-alpha_thermal_collision_frequency_at_point_201__________________ (freq_plasma_electron_alpha_thermal_collision_profile201)_ 5.97694022334509441e+02 -Electron-alpha_thermal_collision_frequency_at_point_202__________________ (freq_plasma_electron_alpha_thermal_collision_profile202)_ 5.99301322899732895e+02 -Electron-alpha_thermal_collision_frequency_at_point_203__________________ (freq_plasma_electron_alpha_thermal_collision_profile203)_ 6.00923473978402740e+02 -Electron-alpha_thermal_collision_frequency_at_point_204__________________ (freq_plasma_electron_alpha_thermal_collision_profile204)_ 6.02560615919578026e+02 -Electron-alpha_thermal_collision_frequency_at_point_205__________________ (freq_plasma_electron_alpha_thermal_collision_profile205)_ 6.04212890959846732e+02 -Electron-alpha_thermal_collision_frequency_at_point_206__________________ (freq_plasma_electron_alpha_thermal_collision_profile206)_ 6.05880443251319434e+02 -Electron-alpha_thermal_collision_frequency_at_point_207__________________ (freq_plasma_electron_alpha_thermal_collision_profile207)_ 6.07563418890102753e+02 -Electron-alpha_thermal_collision_frequency_at_point_208__________________ (freq_plasma_electron_alpha_thermal_collision_profile208)_ 6.09261965945260158e+02 -Electron-alpha_thermal_collision_frequency_at_point_209__________________ (freq_plasma_electron_alpha_thermal_collision_profile209)_ 6.10976234488269142e+02 -Electron-alpha_thermal_collision_frequency_at_point_210__________________ (freq_plasma_electron_alpha_thermal_collision_profile210)_ 6.12706376622981566e+02 -Electron-alpha_thermal_collision_frequency_at_point_211__________________ (freq_plasma_electron_alpha_thermal_collision_profile211)_ 6.14452546516103439e+02 -Electron-alpha_thermal_collision_frequency_at_point_212__________________ (freq_plasma_electron_alpha_thermal_collision_profile212)_ 6.16214900428189480e+02 -Electron-alpha_thermal_collision_frequency_at_point_213__________________ (freq_plasma_electron_alpha_thermal_collision_profile213)_ 6.17993596745179275e+02 -Electron-alpha_thermal_collision_frequency_at_point_214__________________ (freq_plasma_electron_alpha_thermal_collision_profile214)_ 6.19788796010469241e+02 -Electron-alpha_thermal_collision_frequency_at_point_215__________________ (freq_plasma_electron_alpha_thermal_collision_profile215)_ 6.21600660957540640e+02 -Electron-alpha_thermal_collision_frequency_at_point_216__________________ (freq_plasma_electron_alpha_thermal_collision_profile216)_ 6.23429356543146241e+02 -Electron-alpha_thermal_collision_frequency_at_point_217__________________ (freq_plasma_electron_alpha_thermal_collision_profile217)_ 6.25275049981071334e+02 -Electron-alpha_thermal_collision_frequency_at_point_218__________________ (freq_plasma_electron_alpha_thermal_collision_profile218)_ 6.27137910776475223e+02 -Electron-alpha_thermal_collision_frequency_at_point_219__________________ (freq_plasma_electron_alpha_thermal_collision_profile219)_ 6.29018110760826517e+02 -Electron-alpha_thermal_collision_frequency_at_point_220__________________ (freq_plasma_electron_alpha_thermal_collision_profile220)_ 6.30915824127439691e+02 -Electron-alpha_thermal_collision_frequency_at_point_221__________________ (freq_plasma_electron_alpha_thermal_collision_profile221)_ 6.32831227467626604e+02 -Electron-alpha_thermal_collision_frequency_at_point_222__________________ (freq_plasma_electron_alpha_thermal_collision_profile222)_ 6.34764499807473271e+02 -Electron-alpha_thermal_collision_frequency_at_point_223__________________ (freq_plasma_electron_alpha_thermal_collision_profile223)_ 6.36715822645250000e+02 -Electron-alpha_thermal_collision_frequency_at_point_224__________________ (freq_plasma_electron_alpha_thermal_collision_profile224)_ 6.38685379989472040e+02 -Electron-alpha_thermal_collision_frequency_at_point_225__________________ (freq_plasma_electron_alpha_thermal_collision_profile225)_ 6.40673358397614606e+02 -Electron-alpha_thermal_collision_frequency_at_point_226__________________ (freq_plasma_electron_alpha_thermal_collision_profile226)_ 6.42679947015502535e+02 -Electron-alpha_thermal_collision_frequency_at_point_227__________________ (freq_plasma_electron_alpha_thermal_collision_profile227)_ 6.44705337617377722e+02 -Electron-alpha_thermal_collision_frequency_at_point_228__________________ (freq_plasma_electron_alpha_thermal_collision_profile228)_ 6.46749724646663594e+02 -Electron-alpha_thermal_collision_frequency_at_point_229__________________ (freq_plasma_electron_alpha_thermal_collision_profile229)_ 6.48813305257434536e+02 -Electron-alpha_thermal_collision_frequency_at_point_230__________________ (freq_plasma_electron_alpha_thermal_collision_profile230)_ 6.50896279356603031e+02 -Electron-alpha_thermal_collision_frequency_at_point_231__________________ (freq_plasma_electron_alpha_thermal_collision_profile231)_ 6.52998849646840995e+02 -Electron-alpha_thermal_collision_frequency_at_point_232__________________ (freq_plasma_electron_alpha_thermal_collision_profile232)_ 6.55121221670240857e+02 -Electron-alpha_thermal_collision_frequency_at_point_233__________________ (freq_plasma_electron_alpha_thermal_collision_profile233)_ 6.57263603852738356e+02 -Electron-alpha_thermal_collision_frequency_at_point_234__________________ (freq_plasma_electron_alpha_thermal_collision_profile234)_ 6.59426207549300329e+02 -Electron-alpha_thermal_collision_frequency_at_point_235__________________ (freq_plasma_electron_alpha_thermal_collision_profile235)_ 6.61609247089901260e+02 -Electron-alpha_thermal_collision_frequency_at_point_236__________________ (freq_plasma_electron_alpha_thermal_collision_profile236)_ 6.63812939826291995e+02 -Electron-alpha_thermal_collision_frequency_at_point_237__________________ (freq_plasma_electron_alpha_thermal_collision_profile237)_ 6.66037506179583829e+02 -Electron-alpha_thermal_collision_frequency_at_point_238__________________ (freq_plasma_electron_alpha_thermal_collision_profile238)_ 6.68283169688652151e+02 -Electron-alpha_thermal_collision_frequency_at_point_239__________________ (freq_plasma_electron_alpha_thermal_collision_profile239)_ 6.70550157059385583e+02 -Electron-alpha_thermal_collision_frequency_at_point_240__________________ (freq_plasma_electron_alpha_thermal_collision_profile240)_ 6.72838698214780038e+02 -Electron-alpha_thermal_collision_frequency_at_point_241__________________ (freq_plasma_electron_alpha_thermal_collision_profile241)_ 6.75149026345909306e+02 -Electron-alpha_thermal_collision_frequency_at_point_242__________________ (freq_plasma_electron_alpha_thermal_collision_profile242)_ 6.77481377963770569e+02 -Electron-alpha_thermal_collision_frequency_at_point_243__________________ (freq_plasma_electron_alpha_thermal_collision_profile243)_ 6.79835992952031575e+02 -Electron-alpha_thermal_collision_frequency_at_point_244__________________ (freq_plasma_electron_alpha_thermal_collision_profile244)_ 6.82213114620687861e+02 -Electron-alpha_thermal_collision_frequency_at_point_245__________________ (freq_plasma_electron_alpha_thermal_collision_profile245)_ 6.84612989760650180e+02 -Electron-alpha_thermal_collision_frequency_at_point_246__________________ (freq_plasma_electron_alpha_thermal_collision_profile246)_ 6.87035868699270509e+02 -Electron-alpha_thermal_collision_frequency_at_point_247__________________ (freq_plasma_electron_alpha_thermal_collision_profile247)_ 6.89482005356832587e+02 -Electron-alpha_thermal_collision_frequency_at_point_248__________________ (freq_plasma_electron_alpha_thermal_collision_profile248)_ 6.91951657304010268e+02 -Electron-alpha_thermal_collision_frequency_at_point_249__________________ (freq_plasma_electron_alpha_thermal_collision_profile249)_ 6.94445085820320628e+02 -Electron-alpha_thermal_collision_frequency_at_point_250__________________ (freq_plasma_electron_alpha_thermal_collision_profile250)_ 6.96962555953582410e+02 -Electron-alpha_thermal_collision_frequency_at_point_251__________________ (freq_plasma_electron_alpha_thermal_collision_profile251)_ 6.99504336580395602e+02 -Electron-alpha_thermal_collision_frequency_at_point_252__________________ (freq_plasma_electron_alpha_thermal_collision_profile252)_ 7.02070700467662164e+02 -Electron-alpha_thermal_collision_frequency_at_point_253__________________ (freq_plasma_electron_alpha_thermal_collision_profile253)_ 7.04661924335159711e+02 -Electron-alpha_thermal_collision_frequency_at_point_254__________________ (freq_plasma_electron_alpha_thermal_collision_profile254)_ 7.07278288919191255e+02 -Electron-alpha_thermal_collision_frequency_at_point_255__________________ (freq_plasma_electron_alpha_thermal_collision_profile255)_ 7.09920079037316327e+02 -Electron-alpha_thermal_collision_frequency_at_point_256__________________ (freq_plasma_electron_alpha_thermal_collision_profile256)_ 7.12587583654197829e+02 -Electron-alpha_thermal_collision_frequency_at_point_257__________________ (freq_plasma_electron_alpha_thermal_collision_profile257)_ 7.15281095948564712e+02 -Electron-alpha_thermal_collision_frequency_at_point_258__________________ (freq_plasma_electron_alpha_thermal_collision_profile258)_ 7.18000913381315513e+02 -Electron-alpha_thermal_collision_frequency_at_point_259__________________ (freq_plasma_electron_alpha_thermal_collision_profile259)_ 7.20747337764781264e+02 -Electron-alpha_thermal_collision_frequency_at_point_260__________________ (freq_plasma_electron_alpha_thermal_collision_profile260)_ 7.23520675333160284e+02 -Electron-alpha_thermal_collision_frequency_at_point_261__________________ (freq_plasma_electron_alpha_thermal_collision_profile261)_ 7.26321236814147028e+02 -Electron-alpha_thermal_collision_frequency_at_point_262__________________ (freq_plasma_electron_alpha_thermal_collision_profile262)_ 7.29149337501767718e+02 -Electron-alpha_thermal_collision_frequency_at_point_263__________________ (freq_plasma_electron_alpha_thermal_collision_profile263)_ 7.32005297330443568e+02 -Electron-alpha_thermal_collision_frequency_at_point_264__________________ (freq_plasma_electron_alpha_thermal_collision_profile264)_ 7.34889440950294897e+02 -Electron-alpha_thermal_collision_frequency_at_point_265__________________ (freq_plasma_electron_alpha_thermal_collision_profile265)_ 7.37802097803713082e+02 -Electron-alpha_thermal_collision_frequency_at_point_266__________________ (freq_plasma_electron_alpha_thermal_collision_profile266)_ 7.40743602203202954e+02 -Electron-alpha_thermal_collision_frequency_at_point_267__________________ (freq_plasma_electron_alpha_thermal_collision_profile267)_ 7.43714293410525443e+02 -Electron-alpha_thermal_collision_frequency_at_point_268__________________ (freq_plasma_electron_alpha_thermal_collision_profile268)_ 7.46714515717150221e+02 -Electron-alpha_thermal_collision_frequency_at_point_269__________________ (freq_plasma_electron_alpha_thermal_collision_profile269)_ 7.49744618526045087e+02 -Electron-alpha_thermal_collision_frequency_at_point_270__________________ (freq_plasma_electron_alpha_thermal_collision_profile270)_ 7.52804956434800147e+02 -Electron-alpha_thermal_collision_frequency_at_point_271__________________ (freq_plasma_electron_alpha_thermal_collision_profile271)_ 7.55895889320129413e+02 -Electron-alpha_thermal_collision_frequency_at_point_272__________________ (freq_plasma_electron_alpha_thermal_collision_profile272)_ 7.59017782423739959e+02 -Electron-alpha_thermal_collision_frequency_at_point_273__________________ (freq_plasma_electron_alpha_thermal_collision_profile273)_ 7.62171006439609073e+02 -Electron-alpha_thermal_collision_frequency_at_point_274__________________ (freq_plasma_electron_alpha_thermal_collision_profile274)_ 7.65355937602662607e+02 -Electron-alpha_thermal_collision_frequency_at_point_275__________________ (freq_plasma_electron_alpha_thermal_collision_profile275)_ 7.68572957778896125e+02 -Electron-alpha_thermal_collision_frequency_at_point_276__________________ (freq_plasma_electron_alpha_thermal_collision_profile276)_ 7.71822454556924185e+02 -Electron-alpha_thermal_collision_frequency_at_point_277__________________ (freq_plasma_electron_alpha_thermal_collision_profile277)_ 7.75104821341002548e+02 -Electron-alpha_thermal_collision_frequency_at_point_278__________________ (freq_plasma_electron_alpha_thermal_collision_profile278)_ 7.78420457445514671e+02 -Electron-alpha_thermal_collision_frequency_at_point_279__________________ (freq_plasma_electron_alpha_thermal_collision_profile279)_ 7.81769768190951481e+02 -Electron-alpha_thermal_collision_frequency_at_point_280__________________ (freq_plasma_electron_alpha_thermal_collision_profile280)_ 7.85153165001391017e+02 -Electron-alpha_thermal_collision_frequency_at_point_281__________________ (freq_plasma_electron_alpha_thermal_collision_profile281)_ 7.88571065503492719e+02 -Electron-alpha_thermal_collision_frequency_at_point_282__________________ (freq_plasma_electron_alpha_thermal_collision_profile282)_ 7.92023893627019561e+02 -Electron-alpha_thermal_collision_frequency_at_point_283__________________ (freq_plasma_electron_alpha_thermal_collision_profile283)_ 7.95512079706897225e+02 -Electron-alpha_thermal_collision_frequency_at_point_284__________________ (freq_plasma_electron_alpha_thermal_collision_profile284)_ 7.99036060586826693e+02 -Electron-alpha_thermal_collision_frequency_at_point_285__________________ (freq_plasma_electron_alpha_thermal_collision_profile285)_ 8.02596279724449232e+02 -Electron-alpha_thermal_collision_frequency_at_point_286__________________ (freq_plasma_electron_alpha_thermal_collision_profile286)_ 8.06193187298091289e+02 -Electron-alpha_thermal_collision_frequency_at_point_287__________________ (freq_plasma_electron_alpha_thermal_collision_profile287)_ 8.09827240315074619e+02 -Electron-alpha_thermal_collision_frequency_at_point_288__________________ (freq_plasma_electron_alpha_thermal_collision_profile288)_ 8.13498902721620198e+02 -Electron-alpha_thermal_collision_frequency_at_point_289__________________ (freq_plasma_electron_alpha_thermal_collision_profile289)_ 8.17208645514333512e+02 -Electron-alpha_thermal_collision_frequency_at_point_290__________________ (freq_plasma_electron_alpha_thermal_collision_profile290)_ 8.20956946853292720e+02 -Electron-alpha_thermal_collision_frequency_at_point_291__________________ (freq_plasma_electron_alpha_thermal_collision_profile291)_ 8.24744292176724230e+02 -Electron-alpha_thermal_collision_frequency_at_point_292__________________ (freq_plasma_electron_alpha_thermal_collision_profile292)_ 8.28571174317287728e+02 -Electron-alpha_thermal_collision_frequency_at_point_293__________________ (freq_plasma_electron_alpha_thermal_collision_profile293)_ 8.32438093619951019e+02 -Electron-alpha_thermal_collision_frequency_at_point_294__________________ (freq_plasma_electron_alpha_thermal_collision_profile294)_ 8.36345558061468068e+02 -Electron-alpha_thermal_collision_frequency_at_point_295__________________ (freq_plasma_electron_alpha_thermal_collision_profile295)_ 8.40294083371446732e+02 -Electron-alpha_thermal_collision_frequency_at_point_296__________________ (freq_plasma_electron_alpha_thermal_collision_profile296)_ 8.44284193155007074e+02 -Electron-alpha_thermal_collision_frequency_at_point_297__________________ (freq_plasma_electron_alpha_thermal_collision_profile297)_ 8.48316419017014368e+02 -Electron-alpha_thermal_collision_frequency_at_point_298__________________ (freq_plasma_electron_alpha_thermal_collision_profile298)_ 8.52391300687890293e+02 -Electron-alpha_thermal_collision_frequency_at_point_299__________________ (freq_plasma_electron_alpha_thermal_collision_profile299)_ 8.56509386150969362e+02 -Electron-alpha_thermal_collision_frequency_at_point_300__________________ (freq_plasma_electron_alpha_thermal_collision_profile300)_ 8.60671231771406497e+02 -Electron-alpha_thermal_collision_frequency_at_point_301__________________ (freq_plasma_electron_alpha_thermal_collision_profile301)_ 8.64877402426599474e+02 -Electron-alpha_thermal_collision_frequency_at_point_302__________________ (freq_plasma_electron_alpha_thermal_collision_profile302)_ 8.69128471638121027e+02 -Electron-alpha_thermal_collision_frequency_at_point_303__________________ (freq_plasma_electron_alpha_thermal_collision_profile303)_ 8.73425021705116478e+02 -Electron-alpha_thermal_collision_frequency_at_point_304__________________ (freq_plasma_electron_alpha_thermal_collision_profile304)_ 8.77767643839158723e+02 -Electron-alpha_thermal_collision_frequency_at_point_305__________________ (freq_plasma_electron_alpha_thermal_collision_profile305)_ 8.82156938300514526e+02 -Electron-alpha_thermal_collision_frequency_at_point_306__________________ (freq_plasma_electron_alpha_thermal_collision_profile306)_ 8.86593514535791428e+02 -Electron-alpha_thermal_collision_frequency_at_point_307__________________ (freq_plasma_electron_alpha_thermal_collision_profile307)_ 8.91077991316920816e+02 -Electron-alpha_thermal_collision_frequency_at_point_308__________________ (freq_plasma_electron_alpha_thermal_collision_profile308)_ 8.95610996881442816e+02 -Electron-alpha_thermal_collision_frequency_at_point_309__________________ (freq_plasma_electron_alpha_thermal_collision_profile309)_ 9.00193169074025150e+02 -Electron-alpha_thermal_collision_frequency_at_point_310__________________ (freq_plasma_electron_alpha_thermal_collision_profile310)_ 9.04825155489178201e+02 -Electron-alpha_thermal_collision_frequency_at_point_311__________________ (freq_plasma_electron_alpha_thermal_collision_profile311)_ 9.09507613615090122e+02 -Electron-alpha_thermal_collision_frequency_at_point_312__________________ (freq_plasma_electron_alpha_thermal_collision_profile312)_ 9.14241210978535037e+02 -Electron-alpha_thermal_collision_frequency_at_point_313__________________ (freq_plasma_electron_alpha_thermal_collision_profile313)_ 9.19026625290752122e+02 -Electron-alpha_thermal_collision_frequency_at_point_314__________________ (freq_plasma_electron_alpha_thermal_collision_profile314)_ 9.23864544594250560e+02 -Electron-alpha_thermal_collision_frequency_at_point_315__________________ (freq_plasma_electron_alpha_thermal_collision_profile315)_ 9.28755667410415981e+02 -Electron-alpha_thermal_collision_frequency_at_point_316__________________ (freq_plasma_electron_alpha_thermal_collision_profile316)_ 9.33700702887861212e+02 -Electron-alpha_thermal_collision_frequency_at_point_317__________________ (freq_plasma_electron_alpha_thermal_collision_profile317)_ 9.38700370951386617e+02 -Electron-alpha_thermal_collision_frequency_at_point_318__________________ (freq_plasma_electron_alpha_thermal_collision_profile318)_ 9.43755402451455552e+02 -Electron-alpha_thermal_collision_frequency_at_point_319__________________ (freq_plasma_electron_alpha_thermal_collision_profile319)_ 9.48866539314061470e+02 -Electron-alpha_thermal_collision_frequency_at_point_320__________________ (freq_plasma_electron_alpha_thermal_collision_profile320)_ 9.54034534690854684e+02 -Electron-alpha_thermal_collision_frequency_at_point_321__________________ (freq_plasma_electron_alpha_thermal_collision_profile321)_ 9.59260153109384305e+02 -Electron-alpha_thermal_collision_frequency_at_point_322__________________ (freq_plasma_electron_alpha_thermal_collision_profile322)_ 9.64544170623312198e+02 -Electron-alpha_thermal_collision_frequency_at_point_323__________________ (freq_plasma_electron_alpha_thermal_collision_profile323)_ 9.69887374962423451e+02 -Electron-alpha_thermal_collision_frequency_at_point_324__________________ (freq_plasma_electron_alpha_thermal_collision_profile324)_ 9.75290565682267925e+02 -Electron-alpha_thermal_collision_frequency_at_point_325__________________ (freq_plasma_electron_alpha_thermal_collision_profile325)_ 9.80754554313237122e+02 -Electron-alpha_thermal_collision_frequency_at_point_326__________________ (freq_plasma_electron_alpha_thermal_collision_profile326)_ 9.86280164508872190e+02 -Electron-alpha_thermal_collision_frequency_at_point_327__________________ (freq_plasma_electron_alpha_thermal_collision_profile327)_ 9.91868232193188760e+02 -Electron-alpha_thermal_collision_frequency_at_point_328__________________ (freq_plasma_electron_alpha_thermal_collision_profile328)_ 9.97519605706781135e+02 -Electron-alpha_thermal_collision_frequency_at_point_329__________________ (freq_plasma_electron_alpha_thermal_collision_profile329)_ 1.00323514595145127e+03 -Electron-alpha_thermal_collision_frequency_at_point_330__________________ (freq_plasma_electron_alpha_thermal_collision_profile330)_ 1.00901572653310313e+03 -Electron-alpha_thermal_collision_frequency_at_point_331__________________ (freq_plasma_electron_alpha_thermal_collision_profile331)_ 1.01486223390260147e+03 -Electron-alpha_thermal_collision_frequency_at_point_332__________________ (freq_plasma_electron_alpha_thermal_collision_profile332)_ 1.02077556749429709e+03 -Electron-alpha_thermal_collision_frequency_at_point_333__________________ (freq_plasma_electron_alpha_thermal_collision_profile333)_ 1.02675663986188169e+03 -Electron-alpha_thermal_collision_frequency_at_point_334__________________ (freq_plasma_electron_alpha_thermal_collision_profile334)_ 1.03280637681122676e+03 -Electron-alpha_thermal_collision_frequency_at_point_335__________________ (freq_plasma_electron_alpha_thermal_collision_profile335)_ 1.03892571752981917e+03 -Electron-alpha_thermal_collision_frequency_at_point_336__________________ (freq_plasma_electron_alpha_thermal_collision_profile336)_ 1.04511561471240657e+03 -Electron-alpha_thermal_collision_frequency_at_point_337__________________ (freq_plasma_electron_alpha_thermal_collision_profile337)_ 1.05137703468240716e+03 -Electron-alpha_thermal_collision_frequency_at_point_338__________________ (freq_plasma_electron_alpha_thermal_collision_profile338)_ 1.05771095750863924e+03 -Electron-alpha_thermal_collision_frequency_at_point_339__________________ (freq_plasma_electron_alpha_thermal_collision_profile339)_ 1.06411837711687599e+03 -Electron-alpha_thermal_collision_frequency_at_point_340__________________ (freq_plasma_electron_alpha_thermal_collision_profile340)_ 1.07060030139570404e+03 -Electron-alpha_thermal_collision_frequency_at_point_341__________________ (freq_plasma_electron_alpha_thermal_collision_profile341)_ 1.07715775229613701e+03 -Electron-alpha_thermal_collision_frequency_at_point_342__________________ (freq_plasma_electron_alpha_thermal_collision_profile342)_ 1.08379176592438557e+03 -Electron-alpha_thermal_collision_frequency_at_point_343__________________ (freq_plasma_electron_alpha_thermal_collision_profile343)_ 1.09050339262716193e+03 -Electron-alpha_thermal_collision_frequency_at_point_344__________________ (freq_plasma_electron_alpha_thermal_collision_profile344)_ 1.09729369706884358e+03 -Electron-alpha_thermal_collision_frequency_at_point_345__________________ (freq_plasma_electron_alpha_thermal_collision_profile345)_ 1.10416375829979279e+03 -Electron-alpha_thermal_collision_frequency_at_point_346__________________ (freq_plasma_electron_alpha_thermal_collision_profile346)_ 1.11111466981504668e+03 -Electron-alpha_thermal_collision_frequency_at_point_347__________________ (freq_plasma_electron_alpha_thermal_collision_profile347)_ 1.11814753960261805e+03 -Electron-alpha_thermal_collision_frequency_at_point_348__________________ (freq_plasma_electron_alpha_thermal_collision_profile348)_ 1.12526349018049268e+03 -Electron-alpha_thermal_collision_frequency_at_point_349__________________ (freq_plasma_electron_alpha_thermal_collision_profile349)_ 1.13246365862145672e+03 -Electron-alpha_thermal_collision_frequency_at_point_350__________________ (freq_plasma_electron_alpha_thermal_collision_profile350)_ 1.13974919656475709e+03 -Electron-alpha_thermal_collision_frequency_at_point_351__________________ (freq_plasma_electron_alpha_thermal_collision_profile351)_ 1.14712127021357333e+03 -Electron-alpha_thermal_collision_frequency_at_point_352__________________ (freq_plasma_electron_alpha_thermal_collision_profile352)_ 1.15458106031720104e+03 -Electron-alpha_thermal_collision_frequency_at_point_353__________________ (freq_plasma_electron_alpha_thermal_collision_profile353)_ 1.16212976213678644e+03 -Electron-alpha_thermal_collision_frequency_at_point_354__________________ (freq_plasma_electron_alpha_thermal_collision_profile354)_ 1.16976858539337309e+03 -Electron-alpha_thermal_collision_frequency_at_point_355__________________ (freq_plasma_electron_alpha_thermal_collision_profile355)_ 1.17749875419694467e+03 -Electron-alpha_thermal_collision_frequency_at_point_356__________________ (freq_plasma_electron_alpha_thermal_collision_profile356)_ 1.18532150695507448e+03 -Electron-alpha_thermal_collision_frequency_at_point_357__________________ (freq_plasma_electron_alpha_thermal_collision_profile357)_ 1.19323809625969511e+03 -Electron-alpha_thermal_collision_frequency_at_point_358__________________ (freq_plasma_electron_alpha_thermal_collision_profile358)_ 1.20124978875041666e+03 -Electron-alpha_thermal_collision_frequency_at_point_359__________________ (freq_plasma_electron_alpha_thermal_collision_profile359)_ 1.20935786495273169e+03 -Electron-alpha_thermal_collision_frequency_at_point_360__________________ (freq_plasma_electron_alpha_thermal_collision_profile360)_ 1.21756361908931967e+03 -Electron-alpha_thermal_collision_frequency_at_point_361__________________ (freq_plasma_electron_alpha_thermal_collision_profile361)_ 1.22586835886259610e+03 -Electron-alpha_thermal_collision_frequency_at_point_362__________________ (freq_plasma_electron_alpha_thermal_collision_profile362)_ 1.23427340520648613e+03 -Electron-alpha_thermal_collision_frequency_at_point_363__________________ (freq_plasma_electron_alpha_thermal_collision_profile363)_ 1.24278009200532642e+03 -Electron-alpha_thermal_collision_frequency_at_point_364__________________ (freq_plasma_electron_alpha_thermal_collision_profile364)_ 1.25138976577764515e+03 -Electron-alpha_thermal_collision_frequency_at_point_365__________________ (freq_plasma_electron_alpha_thermal_collision_profile365)_ 1.26010378532243658e+03 -Electron-alpha_thermal_collision_frequency_at_point_366__________________ (freq_plasma_electron_alpha_thermal_collision_profile366)_ 1.26892352132541532e+03 -Electron-alpha_thermal_collision_frequency_at_point_367__________________ (freq_plasma_electron_alpha_thermal_collision_profile367)_ 1.27785035592256827e+03 -Electron-alpha_thermal_collision_frequency_at_point_368__________________ (freq_plasma_electron_alpha_thermal_collision_profile368)_ 1.28688568221816922e+03 -Electron-alpha_thermal_collision_frequency_at_point_369__________________ (freq_plasma_electron_alpha_thermal_collision_profile369)_ 1.29603090375425268e+03 -Electron-alpha_thermal_collision_frequency_at_point_370__________________ (freq_plasma_electron_alpha_thermal_collision_profile370)_ 1.30528743392834826e+03 -Electron-alpha_thermal_collision_frequency_at_point_371__________________ (freq_plasma_electron_alpha_thermal_collision_profile371)_ 1.31465669535611596e+03 -Electron-alpha_thermal_collision_frequency_at_point_372__________________ (freq_plasma_electron_alpha_thermal_collision_profile372)_ 1.32414011917527682e+03 -Electron-alpha_thermal_collision_frequency_at_point_373__________________ (freq_plasma_electron_alpha_thermal_collision_profile373)_ 1.33373914428706917e+03 -Electron-alpha_thermal_collision_frequency_at_point_374__________________ (freq_plasma_electron_alpha_thermal_collision_profile374)_ 1.34345521653119090e+03 -Electron-alpha_thermal_collision_frequency_at_point_375__________________ (freq_plasma_electron_alpha_thermal_collision_profile375)_ 1.35328978778997907e+03 -Electron-alpha_thermal_collision_frequency_at_point_376__________________ (freq_plasma_electron_alpha_thermal_collision_profile376)_ 1.36324431501730692e+03 -Electron-alpha_thermal_collision_frequency_at_point_377__________________ (freq_plasma_electron_alpha_thermal_collision_profile377)_ 1.37332025918742488e+03 -Electron-alpha_thermal_collision_frequency_at_point_378__________________ (freq_plasma_electron_alpha_thermal_collision_profile378)_ 1.38351908415866956e+03 -Electron-alpha_thermal_collision_frequency_at_point_379__________________ (freq_plasma_electron_alpha_thermal_collision_profile379)_ 1.39384225544669516e+03 -Electron-alpha_thermal_collision_frequency_at_point_380__________________ (freq_plasma_electron_alpha_thermal_collision_profile380)_ 1.40429123890152664e+03 -Electron-alpha_thermal_collision_frequency_at_point_381__________________ (freq_plasma_electron_alpha_thermal_collision_profile381)_ 1.41486749928242853e+03 -Electron-alpha_thermal_collision_frequency_at_point_382__________________ (freq_plasma_electron_alpha_thermal_collision_profile382)_ 1.42557249872423131e+03 -Electron-alpha_thermal_collision_frequency_at_point_383__________________ (freq_plasma_electron_alpha_thermal_collision_profile383)_ 1.43640769508834774e+03 -Electron-alpha_thermal_collision_frequency_at_point_384__________________ (freq_plasma_electron_alpha_thermal_collision_profile384)_ 1.44737454019135362e+03 -Electron-alpha_thermal_collision_frequency_at_point_385__________________ (freq_plasma_electron_alpha_thermal_collision_profile385)_ 1.45847447790356728e+03 -Electron-alpha_thermal_collision_frequency_at_point_386__________________ (freq_plasma_electron_alpha_thermal_collision_profile386)_ 1.46970894210964252e+03 -Electron-alpha_thermal_collision_frequency_at_point_387__________________ (freq_plasma_electron_alpha_thermal_collision_profile387)_ 1.48107935452266497e+03 -Electron-alpha_thermal_collision_frequency_at_point_388__________________ (freq_plasma_electron_alpha_thermal_collision_profile388)_ 1.49258712234283439e+03 -Electron-alpha_thermal_collision_frequency_at_point_389__________________ (freq_plasma_electron_alpha_thermal_collision_profile389)_ 1.50423363575120379e+03 -Electron-alpha_thermal_collision_frequency_at_point_390__________________ (freq_plasma_electron_alpha_thermal_collision_profile390)_ 1.51602026522846154e+03 -Electron-alpha_thermal_collision_frequency_at_point_391__________________ (freq_plasma_electron_alpha_thermal_collision_profile391)_ 1.52794835868810651e+03 -Electron-alpha_thermal_collision_frequency_at_point_392__________________ (freq_plasma_electron_alpha_thermal_collision_profile392)_ 1.54001923841278744e+03 -Electron-alpha_thermal_collision_frequency_at_point_393__________________ (freq_plasma_electron_alpha_thermal_collision_profile393)_ 1.55223419778189191e+03 -Electron-alpha_thermal_collision_frequency_at_point_394__________________ (freq_plasma_electron_alpha_thermal_collision_profile394)_ 1.56459449777780674e+03 -Electron-alpha_thermal_collision_frequency_at_point_395__________________ (freq_plasma_electron_alpha_thermal_collision_profile395)_ 1.57710136325751819e+03 -Electron-alpha_thermal_collision_frequency_at_point_396__________________ (freq_plasma_electron_alpha_thermal_collision_profile396)_ 1.58975597897545799e+03 -Electron-alpha_thermal_collision_frequency_at_point_397__________________ (freq_plasma_electron_alpha_thermal_collision_profile397)_ 1.60255948534268282e+03 -Electron-alpha_thermal_collision_frequency_at_point_398__________________ (freq_plasma_electron_alpha_thermal_collision_profile398)_ 1.61551297390660307e+03 -Electron-alpha_thermal_collision_frequency_at_point_399__________________ (freq_plasma_electron_alpha_thermal_collision_profile399)_ 1.62861748253458404e+03 -Electron-alpha_thermal_collision_frequency_at_point_400__________________ (freq_plasma_electron_alpha_thermal_collision_profile400)_ 1.64187399028372829e+03 -Electron-alpha_thermal_collision_frequency_at_point_401__________________ (freq_plasma_electron_alpha_thermal_collision_profile401)_ 1.65528341193817846e+03 -Electron-alpha_thermal_collision_frequency_at_point_402__________________ (freq_plasma_electron_alpha_thermal_collision_profile402)_ 1.66884659219415857e+03 -Electron-alpha_thermal_collision_frequency_at_point_403__________________ (freq_plasma_electron_alpha_thermal_collision_profile403)_ 1.68256429947181891e+03 -Electron-alpha_thermal_collision_frequency_at_point_404__________________ (freq_plasma_electron_alpha_thermal_collision_profile404)_ 1.69643721933176107e+03 -Electron-alpha_thermal_collision_frequency_at_point_405__________________ (freq_plasma_electron_alpha_thermal_collision_profile405)_ 1.71046594747279801e+03 -Electron-alpha_thermal_collision_frequency_at_point_406__________________ (freq_plasma_electron_alpha_thermal_collision_profile406)_ 1.72465098228614852e+03 -Electron-alpha_thermal_collision_frequency_at_point_407__________________ (freq_plasma_electron_alpha_thermal_collision_profile407)_ 1.73899271693979017e+03 -Electron-alpha_thermal_collision_frequency_at_point_408__________________ (freq_plasma_electron_alpha_thermal_collision_profile408)_ 1.75349143096519879e+03 -Electron-alpha_thermal_collision_frequency_at_point_409__________________ (freq_plasma_electron_alpha_thermal_collision_profile409)_ 1.76814728131695733e+03 -Electron-alpha_thermal_collision_frequency_at_point_410__________________ (freq_plasma_electron_alpha_thermal_collision_profile410)_ 1.78296029287409806e+03 -Electron-alpha_thermal_collision_frequency_at_point_411__________________ (freq_plasma_electron_alpha_thermal_collision_profile411)_ 1.79793034835003846e+03 -Electron-alpha_thermal_collision_frequency_at_point_412__________________ (freq_plasma_electron_alpha_thermal_collision_profile412)_ 1.81305717757607863e+03 -Electron-alpha_thermal_collision_frequency_at_point_413__________________ (freq_plasma_electron_alpha_thermal_collision_profile413)_ 1.82834034612121832e+03 -Electron-alpha_thermal_collision_frequency_at_point_414__________________ (freq_plasma_electron_alpha_thermal_collision_profile414)_ 1.84377924320882698e+03 -Electron-alpha_thermal_collision_frequency_at_point_415__________________ (freq_plasma_electron_alpha_thermal_collision_profile415)_ 1.85937306888818762e+03 -Electron-alpha_thermal_collision_frequency_at_point_416__________________ (freq_plasma_electron_alpha_thermal_collision_profile416)_ 1.87512082041632561e+03 -Electron-alpha_thermal_collision_frequency_at_point_417__________________ (freq_plasma_electron_alpha_thermal_collision_profile417)_ 1.89102127780267392e+03 -Electron-alpha_thermal_collision_frequency_at_point_418__________________ (freq_plasma_electron_alpha_thermal_collision_profile418)_ 1.90707298846602953e+03 -Electron-alpha_thermal_collision_frequency_at_point_419__________________ (freq_plasma_electron_alpha_thermal_collision_profile419)_ 1.92327425094991486e+03 -Electron-alpha_thermal_collision_frequency_at_point_420__________________ (freq_plasma_electron_alpha_thermal_collision_profile420)_ 1.93962309763880330e+03 -Electron-alpha_thermal_collision_frequency_at_point_421__________________ (freq_plasma_electron_alpha_thermal_collision_profile421)_ 1.95611727641369703e+03 -Electron-alpha_thermal_collision_frequency_at_point_422__________________ (freq_plasma_electron_alpha_thermal_collision_profile422)_ 1.97275423118112622e+03 -Electron-alpha_thermal_collision_frequency_at_point_423__________________ (freq_plasma_electron_alpha_thermal_collision_profile423)_ 1.98953108120487082e+03 -Electron-alpha_thermal_collision_frequency_at_point_424__________________ (freq_plasma_electron_alpha_thermal_collision_profile424)_ 2.00644459916433516e+03 -Electron-alpha_thermal_collision_frequency_at_point_425__________________ (freq_plasma_electron_alpha_thermal_collision_profile425)_ 2.02349118785753853e+03 -Electron-alpha_thermal_collision_frequency_at_point_426__________________ (freq_plasma_electron_alpha_thermal_collision_profile426)_ 2.04066685546012059e+03 -Electron-alpha_thermal_collision_frequency_at_point_427__________________ (freq_plasma_electron_alpha_thermal_collision_profile427)_ 2.05796718924420202e+03 -Electron-alpha_thermal_collision_frequency_at_point_428__________________ (freq_plasma_electron_alpha_thermal_collision_profile428)_ 2.07538732765256282e+03 -Electron-alpha_thermal_collision_frequency_at_point_429__________________ (freq_plasma_electron_alpha_thermal_collision_profile429)_ 2.09292193061398802e+03 -Electron-alpha_thermal_collision_frequency_at_point_430__________________ (freq_plasma_electron_alpha_thermal_collision_profile430)_ 2.11056514797464206e+03 -Electron-alpha_thermal_collision_frequency_at_point_431__________________ (freq_plasma_electron_alpha_thermal_collision_profile431)_ 2.12831058590774410e+03 -Electron-alpha_thermal_collision_frequency_at_point_432__________________ (freq_plasma_electron_alpha_thermal_collision_profile432)_ 2.14615127114917777e+03 -Electron-alpha_thermal_collision_frequency_at_point_433__________________ (freq_plasma_electron_alpha_thermal_collision_profile433)_ 2.16407961288970000e+03 -Electron-alpha_thermal_collision_frequency_at_point_434__________________ (freq_plasma_electron_alpha_thermal_collision_profile434)_ 2.18208736213444354e+03 -Electron-alpha_thermal_collision_frequency_at_point_435__________________ (freq_plasma_electron_alpha_thermal_collision_profile435)_ 2.20016556831699063e+03 -Electron-alpha_thermal_collision_frequency_at_point_436__________________ (freq_plasma_electron_alpha_thermal_collision_profile436)_ 2.21830453292735547e+03 -Electron-alpha_thermal_collision_frequency_at_point_437__________________ (freq_plasma_electron_alpha_thermal_collision_profile437)_ 2.23649375988008069e+03 -Electron-alpha_thermal_collision_frequency_at_point_438__________________ (freq_plasma_electron_alpha_thermal_collision_profile438)_ 2.25472190230859042e+03 -Electron-alpha_thermal_collision_frequency_at_point_439__________________ (freq_plasma_electron_alpha_thermal_collision_profile439)_ 2.27297670542386277e+03 -Electron-alpha_thermal_collision_frequency_at_point_440__________________ (freq_plasma_electron_alpha_thermal_collision_profile440)_ 2.29124494501662912e+03 -Electron-alpha_thermal_collision_frequency_at_point_441__________________ (freq_plasma_electron_alpha_thermal_collision_profile441)_ 2.30951236111062690e+03 -Electron-alpha_thermal_collision_frequency_at_point_442__________________ (freq_plasma_electron_alpha_thermal_collision_profile442)_ 2.32776358618577569e+03 -Electron-alpha_thermal_collision_frequency_at_point_443__________________ (freq_plasma_electron_alpha_thermal_collision_profile443)_ 2.34598206728042896e+03 -Electron-alpha_thermal_collision_frequency_at_point_444__________________ (freq_plasma_electron_alpha_thermal_collision_profile444)_ 2.36414998114448281e+03 -Electron-alpha_thermal_collision_frequency_at_point_445__________________ (freq_plasma_electron_alpha_thermal_collision_profile445)_ 2.38224814144245147e+03 -Electron-alpha_thermal_collision_frequency_at_point_446__________________ (freq_plasma_electron_alpha_thermal_collision_profile446)_ 2.40025589678630513e+03 -Electron-alpha_thermal_collision_frequency_at_point_447__________________ (freq_plasma_electron_alpha_thermal_collision_profile447)_ 2.41815101809748785e+03 -Electron-alpha_thermal_collision_frequency_at_point_448__________________ (freq_plasma_electron_alpha_thermal_collision_profile448)_ 2.43590957343550872e+03 -Electron-alpha_thermal_collision_frequency_at_point_449__________________ (freq_plasma_electron_alpha_thermal_collision_profile449)_ 2.45350578795894035e+03 -Electron-alpha_thermal_collision_frequency_at_point_450__________________ (freq_plasma_electron_alpha_thermal_collision_profile450)_ 2.47091188606375454e+03 -Electron-alpha_thermal_collision_frequency_at_point_451__________________ (freq_plasma_electron_alpha_thermal_collision_profile451)_ 2.48809791191736895e+03 -Electron-alpha_thermal_collision_frequency_at_point_452__________________ (freq_plasma_electron_alpha_thermal_collision_profile452)_ 2.50503152349303900e+03 -Electron-alpha_thermal_collision_frequency_at_point_453__________________ (freq_plasma_electron_alpha_thermal_collision_profile453)_ 2.52167775368773800e+03 -Electron-alpha_thermal_collision_frequency_at_point_454__________________ (freq_plasma_electron_alpha_thermal_collision_profile454)_ 2.53799872999749914e+03 -Electron-alpha_thermal_collision_frequency_at_point_455__________________ (freq_plasma_electron_alpha_thermal_collision_profile455)_ 2.55395334125131831e+03 -Electron-alpha_thermal_collision_frequency_at_point_456__________________ (freq_plasma_electron_alpha_thermal_collision_profile456)_ 2.56949683563596727e+03 -Electron-alpha_thermal_collision_frequency_at_point_457__________________ (freq_plasma_electron_alpha_thermal_collision_profile457)_ 2.58458032798620206e+03 -Electron-alpha_thermal_collision_frequency_at_point_458__________________ (freq_plasma_electron_alpha_thermal_collision_profile458)_ 2.59915018492115951e+03 -Electron-alpha_thermal_collision_frequency_at_point_459__________________ (freq_plasma_electron_alpha_thermal_collision_profile459)_ 2.61314724192289077e+03 -Electron-alpha_thermal_collision_frequency_at_point_460__________________ (freq_plasma_electron_alpha_thermal_collision_profile460)_ 2.62650578341318214e+03 -Electron-alpha_thermal_collision_frequency_at_point_461__________________ (freq_plasma_electron_alpha_thermal_collision_profile461)_ 2.63915217889109817e+03 -Electron-alpha_thermal_collision_frequency_at_point_462__________________ (freq_plasma_electron_alpha_thermal_collision_profile462)_ 2.65100300281580758e+03 -Electron-alpha_thermal_collision_frequency_at_point_463__________________ (freq_plasma_electron_alpha_thermal_collision_profile463)_ 2.66196234754377610e+03 -Electron-alpha_thermal_collision_frequency_at_point_464__________________ (freq_plasma_electron_alpha_thermal_collision_profile464)_ 2.67191781055126830e+03 -Electron-alpha_thermal_collision_frequency_at_point_465__________________ (freq_plasma_electron_alpha_thermal_collision_profile465)_ 2.68073416220905210e+03 -Electron-alpha_thermal_collision_frequency_at_point_466__________________ (freq_plasma_electron_alpha_thermal_collision_profile466)_ 2.68824260668302441e+03 -Electron-alpha_thermal_collision_frequency_at_point_467__________________ (freq_plasma_electron_alpha_thermal_collision_profile467)_ 2.69422066225740173e+03 -Electron-alpha_thermal_collision_frequency_at_point_468__________________ (freq_plasma_electron_alpha_thermal_collision_profile468)_ 2.69834839117357114e+03 -Electron-alpha_thermal_collision_frequency_at_point_469__________________ (freq_plasma_electron_alpha_thermal_collision_profile469)_ 2.70008483845812225e+03 -Electron-alpha_thermal_collision_frequency_at_point_470__________________ (freq_plasma_electron_alpha_thermal_collision_profile470)_ 2.69790753864388307e+03 -Electron-alpha_thermal_collision_frequency_at_point_471__________________ (freq_plasma_electron_alpha_thermal_collision_profile471)_ 2.79278181082578112e+03 -Electron-alpha_thermal_collision_frequency_at_point_472__________________ (freq_plasma_electron_alpha_thermal_collision_profile472)_ 2.89521787028663948e+03 -Electron-alpha_thermal_collision_frequency_at_point_473__________________ (freq_plasma_electron_alpha_thermal_collision_profile473)_ 3.00613487428129520e+03 -Electron-alpha_thermal_collision_frequency_at_point_474__________________ (freq_plasma_electron_alpha_thermal_collision_profile474)_ 3.12660387049447945e+03 -Electron-alpha_thermal_collision_frequency_at_point_475__________________ (freq_plasma_electron_alpha_thermal_collision_profile475)_ 3.25787997935406747e+03 -Electron-alpha_thermal_collision_frequency_at_point_476__________________ (freq_plasma_electron_alpha_thermal_collision_profile476)_ 3.40144301062554359e+03 -Electron-alpha_thermal_collision_frequency_at_point_477__________________ (freq_plasma_electron_alpha_thermal_collision_profile477)_ 3.55904918310138601e+03 -Electron-alpha_thermal_collision_frequency_at_point_478__________________ (freq_plasma_electron_alpha_thermal_collision_profile478)_ 3.73279761842435028e+03 -Electron-alpha_thermal_collision_frequency_at_point_479__________________ (freq_plasma_electron_alpha_thermal_collision_profile479)_ 3.92521672339018414e+03 -Electron-alpha_thermal_collision_frequency_at_point_480__________________ (freq_plasma_electron_alpha_thermal_collision_profile480)_ 4.13937768483565651e+03 -Electron-alpha_thermal_collision_frequency_at_point_481__________________ (freq_plasma_electron_alpha_thermal_collision_profile481)_ 4.37904543556821591e+03 -Electron-alpha_thermal_collision_frequency_at_point_482__________________ (freq_plasma_electron_alpha_thermal_collision_profile482)_ 4.64888218933574899e+03 -Electron-alpha_thermal_collision_frequency_at_point_483__________________ (freq_plasma_electron_alpha_thermal_collision_profile483)_ 4.95472594960776314e+03 -Electron-alpha_thermal_collision_frequency_at_point_484__________________ (freq_plasma_electron_alpha_thermal_collision_profile484)_ 5.30397790364237517e+03 -Electron-alpha_thermal_collision_frequency_at_point_485__________________ (freq_plasma_electron_alpha_thermal_collision_profile485)_ 5.70615116492181369e+03 -Electron-alpha_thermal_collision_frequency_at_point_486__________________ (freq_plasma_electron_alpha_thermal_collision_profile486)_ 6.17366402793342604e+03 -Electron-alpha_thermal_collision_frequency_at_point_487__________________ (freq_plasma_electron_alpha_thermal_collision_profile487)_ 6.72301321076074692e+03 -Electron-alpha_thermal_collision_frequency_at_point_488__________________ (freq_plasma_electron_alpha_thermal_collision_profile488)_ 7.37655467273119393e+03 -Electron-alpha_thermal_collision_frequency_at_point_489__________________ (freq_plasma_electron_alpha_thermal_collision_profile489)_ 8.16528795139434169e+03 -Electron-alpha_thermal_collision_frequency_at_point_490__________________ (freq_plasma_electron_alpha_thermal_collision_profile490)_ 9.13336110900544554e+03 -Electron-alpha_thermal_collision_frequency_at_point_491__________________ (freq_plasma_electron_alpha_thermal_collision_profile491)_ 1.03456570450385789e+04 -Electron-alpha_thermal_collision_frequency_at_point_492__________________ (freq_plasma_electron_alpha_thermal_collision_profile492)_ 1.19011891106079274e+04 -Electron-alpha_thermal_collision_frequency_at_point_493__________________ (freq_plasma_electron_alpha_thermal_collision_profile493)_ 1.39581458593660518e+04 -Electron-alpha_thermal_collision_frequency_at_point_494__________________ (freq_plasma_electron_alpha_thermal_collision_profile494)_ 1.67841287829056200e+04 -Electron-alpha_thermal_collision_frequency_at_point_495__________________ (freq_plasma_electron_alpha_thermal_collision_profile495)_ 2.08663037598330593e+04 -Electron-alpha_thermal_collision_frequency_at_point_496__________________ (freq_plasma_electron_alpha_thermal_collision_profile496)_ 2.71827967861263933e+04 -Electron-alpha_thermal_collision_frequency_at_point_497__________________ (freq_plasma_electron_alpha_thermal_collision_profile497)_ 3.79879870816857001e+04 -Electron-alpha_thermal_collision_frequency_at_point_498__________________ (freq_plasma_electron_alpha_thermal_collision_profile498)_ 5.96995207964331057e+04 -Electron-alpha_thermal_collision_frequency_at_point_499__________________ (freq_plasma_electron_alpha_thermal_collision_profile499)_ 1.18892619425599696e+05 -Electron-alpha_thermal_collision_frequency_at_point_500__________________ (freq_plasma_electron_alpha_thermal_collision_profile500)_ 4.91010228324775060e+05 -Volume_averaged_electron-electron_mean_free_path_(λₑₑ)_(m)_______________ (len_plasma_electron_electron_mean_free_path_vol_avg)_ 4.54668437854823715e+04 -Electron-electron_mean_free_path_at_point_0______________________________ (len_plasma_electron_electron_mean_free_path_profile0)_ 1.41089403987858939e+05 -Electron-electron_mean_free_path_at_point_1______________________________ (len_plasma_electron_electron_mean_free_path_profile1)_ 1.41088255943525088e+05 -Electron-electron_mean_free_path_at_point_2______________________________ (len_plasma_electron_electron_mean_free_path_profile2)_ 1.41084811842167284e+05 -Electron-electron_mean_free_path_at_point_3______________________________ (len_plasma_electron_electron_mean_free_path_profile3)_ 1.41079071778716578e+05 -Electron-electron_mean_free_path_at_point_4______________________________ (len_plasma_electron_electron_mean_free_path_profile4)_ 1.41071035911392799e+05 -Electron-electron_mean_free_path_at_point_5______________________________ (len_plasma_electron_electron_mean_free_path_profile5)_ 1.41060704461702873e+05 -Electron-electron_mean_free_path_at_point_6______________________________ (len_plasma_electron_electron_mean_free_path_profile6)_ 1.41048077714441257e+05 -Electron-electron_mean_free_path_at_point_7______________________________ (len_plasma_electron_electron_mean_free_path_profile7)_ 1.41033156017692527e+05 -Electron-electron_mean_free_path_at_point_8______________________________ (len_plasma_electron_electron_mean_free_path_profile8)_ 1.41015939782828500e+05 -Electron-electron_mean_free_path_at_point_9______________________________ (len_plasma_electron_electron_mean_free_path_profile9)_ 1.40996429484511231e+05 -Electron-electron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_electron_mean_free_path_profile10)_ 1.40974625660691556e+05 -Electron-electron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_electron_mean_free_path_profile11)_ 1.40950528912611189e+05 -Electron-electron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_electron_mean_free_path_profile12)_ 1.40924139904802665e+05 -Electron-electron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_electron_mean_free_path_profile13)_ 1.40895459365089890e+05 -Electron-electron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_electron_mean_free_path_profile14)_ 1.40864488084589189e+05 -Electron-electron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_electron_mean_free_path_profile15)_ 1.40831226917709748e+05 -Electron-electron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_electron_mean_free_path_profile16)_ 1.40795676782154915e+05 -Electron-electron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_electron_mean_free_path_profile17)_ 1.40757838658922818e+05 -Electron-electron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_electron_mean_free_path_profile18)_ 1.40717713592307904e+05 -Electron-electron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_electron_mean_free_path_profile19)_ 1.40675302689900389e+05 -Electron-electron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_electron_mean_free_path_profile20)_ 1.40630607122589281e+05 -Electron-electron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_electron_mean_free_path_profile21)_ 1.40583628124562732e+05 -Electron-electron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_electron_mean_free_path_profile22)_ 1.40534366993308911e+05 -Electron-electron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_electron_mean_free_path_profile23)_ 1.40482825089617574e+05 -Electron-electron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_electron_mean_free_path_profile24)_ 1.40429003837580909e+05 -Electron-electron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_electron_mean_free_path_profile25)_ 1.40372904724596068e+05 -Electron-electron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_electron_mean_free_path_profile26)_ 1.40314529301365343e+05 -Electron-electron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_electron_mean_free_path_profile27)_ 1.40253879181897850e+05 -Electron-electron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_electron_mean_free_path_profile28)_ 1.40190956043511571e+05 -Electron-electron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_electron_mean_free_path_profile29)_ 1.40125761626834108e+05 -Electron-electron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_electron_mean_free_path_profile30)_ 1.40058297735804954e+05 -Electron-electron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_electron_mean_free_path_profile31)_ 1.39988566237676074e+05 -Electron-electron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_electron_mean_free_path_profile32)_ 1.39916569063015049e+05 -Electron-electron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_electron_mean_free_path_profile33)_ 1.39842308205705427e+05 -Electron-electron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_electron_mean_free_path_profile34)_ 1.39765785722948320e+05 -Electron-electron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_electron_mean_free_path_profile35)_ 1.39687003735265607e+05 -Electron-electron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_electron_mean_free_path_profile36)_ 1.39605964426499821e+05 -Electron-electron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_electron_mean_free_path_profile37)_ 1.39522670043817634e+05 -Electron-electron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_electron_mean_free_path_profile38)_ 1.39437122897710127e+05 -Electron-electron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_electron_mean_free_path_profile39)_ 1.39349325361995085e+05 -Electron-electron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_electron_mean_free_path_profile40)_ 1.39259279873819643e+05 -Electron-electron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_electron_mean_free_path_profile41)_ 1.39166988933661021e+05 -Electron-electron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_electron_mean_free_path_profile42)_ 1.39072455105328583e+05 -Electron-electron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_electron_mean_free_path_profile43)_ 1.38975681015966111e+05 -Electron-electron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_electron_mean_free_path_profile44)_ 1.38876669356053317e+05 -Electron-electron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_electron_mean_free_path_profile45)_ 1.38775422879407270e+05 -Electron-electron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_electron_mean_free_path_profile46)_ 1.38671944403185131e+05 -Electron-electron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_electron_mean_free_path_profile47)_ 1.38566236807885609e+05 -Electron-electron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_electron_mean_free_path_profile48)_ 1.38458303037350066e+05 -Electron-electron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_electron_mean_free_path_profile49)_ 1.38348146098765166e+05 -Electron-electron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_electron_mean_free_path_profile50)_ 1.38235769062664331e+05 -Electron-electron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_electron_mean_free_path_profile51)_ 1.38121175062929717e+05 -Electron-electron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_electron_mean_free_path_profile52)_ 1.38004367296793498e+05 -Electron-electron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_electron_mean_free_path_profile53)_ 1.37885349024839670e+05 -Electron-electron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_electron_mean_free_path_profile54)_ 1.37764123571005941e+05 -Electron-electron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_electron_mean_free_path_profile55)_ 1.37640694322585332e+05 -Electron-electron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_electron_mean_free_path_profile56)_ 1.37515064730227110e+05 -Electron-electron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_electron_mean_free_path_profile57)_ 1.37387238307939551e+05 -Electron-electron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_electron_mean_free_path_profile58)_ 1.37257218633090262e+05 -Electron-electron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_electron_mean_free_path_profile59)_ 1.37125009346407751e+05 -Electron-electron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_electron_mean_free_path_profile60)_ 1.36990614151983580e+05 -Electron-electron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_electron_mean_free_path_profile61)_ 1.36854036817272543e+05 -Electron-electron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_electron_mean_free_path_profile62)_ 1.36715281173094583e+05 -Electron-electron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_electron_mean_free_path_profile63)_ 1.36574351113636221e+05 -Electron-electron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_electron_mean_free_path_profile64)_ 1.36431250596450147e+05 -Electron-electron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_electron_mean_free_path_profile65)_ 1.36285983642458101e+05 -Electron-electron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_electron_mean_free_path_profile66)_ 1.36138554335950466e+05 -Electron-electron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_electron_mean_free_path_profile67)_ 1.35988966824587667e+05 -Electron-electron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_electron_mean_free_path_profile68)_ 1.35837225319400255e+05 -Electron-electron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_electron_mean_free_path_profile69)_ 1.35683334094789461e+05 -Electron-electron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_electron_mean_free_path_profile70)_ 1.35527297488529264e+05 -Electron-electron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_electron_mean_free_path_profile71)_ 1.35369119901764061e+05 -Electron-electron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_electron_mean_free_path_profile72)_ 1.35208805799010821e+05 -Electron-electron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_electron_mean_free_path_profile73)_ 1.35046359708158940e+05 -Electron-electron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_electron_mean_free_path_profile74)_ 1.34881786220469687e+05 -Electron-electron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_electron_mean_free_path_profile75)_ 1.34715089990575420e+05 -Electron-electron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_electron_mean_free_path_profile76)_ 1.34546275736481592e+05 -Electron-electron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_electron_mean_free_path_profile77)_ 1.34375348239563056e+05 -Electron-electron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_electron_mean_free_path_profile78)_ 1.34202312344565551e+05 -Electron-electron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_electron_mean_free_path_profile79)_ 1.34027172959604883e+05 -Electron-electron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_electron_mean_free_path_profile80)_ 1.33849935056164191e+05 -Electron-electron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_electron_mean_free_path_profile81)_ 1.33670603669095319e+05 -Electron-electron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_electron_mean_free_path_profile82)_ 1.33489183896614210e+05 -Electron-electron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_electron_mean_free_path_profile83)_ 1.33305680900302686e+05 -Electron-electron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_electron_mean_free_path_profile84)_ 1.33120099905104027e+05 -Electron-electron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_electron_mean_free_path_profile85)_ 1.32932446199323225e+05 -Electron-electron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_electron_mean_free_path_profile86)_ 1.32742725134622131e+05 -Electron-electron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_electron_mean_free_path_profile87)_ 1.32550942126019247e+05 -Electron-electron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_electron_mean_free_path_profile88)_ 1.32357102651886322e+05 -Electron-electron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_electron_mean_free_path_profile89)_ 1.32161212253945007e+05 -Electron-electron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_electron_mean_free_path_profile90)_ 1.31963276537264464e+05 -Electron-electron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_electron_mean_free_path_profile91)_ 1.31763301170257153e+05 -Electron-electron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_electron_mean_free_path_profile92)_ 1.31561291884675476e+05 -Electron-electron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_electron_mean_free_path_profile93)_ 1.31357254475608061e+05 -Electron-electron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_electron_mean_free_path_profile94)_ 1.31151194801475387e+05 -Electron-electron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_electron_mean_free_path_profile95)_ 1.30943118784024671e+05 -Electron-electron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_electron_mean_free_path_profile96)_ 1.30733032408325991e+05 -Electron-electron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_electron_mean_free_path_profile97)_ 1.30520941722766554e+05 -Electron-electron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_electron_mean_free_path_profile98)_ 1.30306852839045125e+05 -Electron-electron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_electron_mean_free_path_profile99)_ 1.30090771932166492e+05 -Electron-electron_mean_free_path_at_point_100____________________________ (len_plasma_electron_electron_mean_free_path_profile100)_ 1.29872705240435273e+05 -Electron-electron_mean_free_path_at_point_101____________________________ (len_plasma_electron_electron_mean_free_path_profile101)_ 1.29652659065449829e+05 -Electron-electron_mean_free_path_at_point_102____________________________ (len_plasma_electron_electron_mean_free_path_profile102)_ 1.29430639772094219e+05 -Electron-electron_mean_free_path_at_point_103____________________________ (len_plasma_electron_electron_mean_free_path_profile103)_ 1.29206653788532378e+05 -Electron-electron_mean_free_path_at_point_104____________________________ (len_plasma_electron_electron_mean_free_path_profile104)_ 1.28980707606200202e+05 -Electron-electron_mean_free_path_at_point_105____________________________ (len_plasma_electron_electron_mean_free_path_profile105)_ 1.28752807779796625e+05 -Electron-electron_mean_free_path_at_point_106____________________________ (len_plasma_electron_electron_mean_free_path_profile106)_ 1.28522960927276494e+05 -Electron-electron_mean_free_path_at_point_107____________________________ (len_plasma_electron_electron_mean_free_path_profile107)_ 1.28291173729841466e+05 -Electron-electron_mean_free_path_at_point_108____________________________ (len_plasma_electron_electron_mean_free_path_profile108)_ 1.28057452931929933e+05 -Electron-electron_mean_free_path_at_point_109____________________________ (len_plasma_electron_electron_mean_free_path_profile109)_ 1.27821805341209445e+05 -Electron-electron_mean_free_path_at_point_110____________________________ (len_plasma_electron_electron_mean_free_path_profile110)_ 1.27584237828563972e+05 -Electron-electron_mean_free_path_at_point_111____________________________ (len_plasma_electron_electron_mean_free_path_profile111)_ 1.27344757328085951e+05 -Electron-electron_mean_free_path_at_point_112____________________________ (len_plasma_electron_electron_mean_free_path_profile112)_ 1.27103370837063456e+05 -Electron-electron_mean_free_path_at_point_113____________________________ (len_plasma_electron_electron_mean_free_path_profile113)_ 1.26860085415969981e+05 -Electron-electron_mean_free_path_at_point_114____________________________ (len_plasma_electron_electron_mean_free_path_profile114)_ 1.26614908188451576e+05 -Electron-electron_mean_free_path_at_point_115____________________________ (len_plasma_electron_electron_mean_free_path_profile115)_ 1.26367846341316166e+05 -Electron-electron_mean_free_path_at_point_116____________________________ (len_plasma_electron_electron_mean_free_path_profile116)_ 1.26118907124517646e+05 -Electron-electron_mean_free_path_at_point_117____________________________ (len_plasma_electron_electron_mean_free_path_profile117)_ 1.25868097851145940e+05 -Electron-electron_mean_free_path_at_point_118____________________________ (len_plasma_electron_electron_mean_free_path_profile118)_ 1.25615425897410227e+05 -Electron-electron_mean_free_path_at_point_119____________________________ (len_plasma_electron_electron_mean_free_path_profile119)_ 1.25360898702626480e+05 -Electron-electron_mean_free_path_at_point_120____________________________ (len_plasma_electron_electron_mean_free_path_profile120)_ 1.25104523769200256e+05 -Electron-electron_mean_free_path_at_point_121____________________________ (len_plasma_electron_electron_mean_free_path_profile121)_ 1.24846308662613737e+05 -Electron-electron_mean_free_path_at_point_122____________________________ (len_plasma_electron_electron_mean_free_path_profile122)_ 1.24586261011407274e+05 -Electron-electron_mean_free_path_at_point_123____________________________ (len_plasma_electron_electron_mean_free_path_profile123)_ 1.24324388507163792e+05 -Electron-electron_mean_free_path_at_point_124____________________________ (len_plasma_electron_electron_mean_free_path_profile124)_ 1.24060698904490899e+05 -Electron-electron_mean_free_path_at_point_125____________________________ (len_plasma_electron_electron_mean_free_path_profile125)_ 1.23795200021002995e+05 -Electron-electron_mean_free_path_at_point_126____________________________ (len_plasma_electron_electron_mean_free_path_profile126)_ 1.23527899737302956e+05 -Electron-electron_mean_free_path_at_point_127____________________________ (len_plasma_electron_electron_mean_free_path_profile127)_ 1.23258805996962037e+05 -Electron-electron_mean_free_path_at_point_128____________________________ (len_plasma_electron_electron_mean_free_path_profile128)_ 1.22987926806500938e+05 -Electron-electron_mean_free_path_at_point_129____________________________ (len_plasma_electron_electron_mean_free_path_profile129)_ 1.22715270235368167e+05 -Electron-electron_mean_free_path_at_point_130____________________________ (len_plasma_electron_electron_mean_free_path_profile130)_ 1.22440844415919142e+05 -Electron-electron_mean_free_path_at_point_131____________________________ (len_plasma_electron_electron_mean_free_path_profile131)_ 1.22164657543394977e+05 -Electron-electron_mean_free_path_at_point_132____________________________ (len_plasma_electron_electron_mean_free_path_profile132)_ 1.21886717875897419e+05 -Electron-electron_mean_free_path_at_point_133____________________________ (len_plasma_electron_electron_mean_free_path_profile133)_ 1.21607033734368859e+05 -Electron-electron_mean_free_path_at_point_134____________________________ (len_plasma_electron_electron_mean_free_path_profile134)_ 1.21325613502564229e+05 -Electron-electron_mean_free_path_at_point_135____________________________ (len_plasma_electron_electron_mean_free_path_profile135)_ 1.21042465627029160e+05 -Electron-electron_mean_free_path_at_point_136____________________________ (len_plasma_electron_electron_mean_free_path_profile136)_ 1.20757598617072304e+05 -Electron-electron_mean_free_path_at_point_137____________________________ (len_plasma_electron_electron_mean_free_path_profile137)_ 1.20471021044739929e+05 -Electron-electron_mean_free_path_at_point_138____________________________ (len_plasma_electron_electron_mean_free_path_profile138)_ 1.20182741544786928e+05 -Electron-electron_mean_free_path_at_point_139____________________________ (len_plasma_electron_electron_mean_free_path_profile139)_ 1.19892768814650481e+05 -Electron-electron_mean_free_path_at_point_140____________________________ (len_plasma_electron_electron_mean_free_path_profile140)_ 1.19601111614420326e+05 -Electron-electron_mean_free_path_at_point_141____________________________ (len_plasma_electron_electron_mean_free_path_profile141)_ 1.19307778766808085e+05 -Electron-electron_mean_free_path_at_point_142____________________________ (len_plasma_electron_electron_mean_free_path_profile142)_ 1.19012779157116762e+05 -Electron-electron_mean_free_path_at_point_143____________________________ (len_plasma_electron_electron_mean_free_path_profile143)_ 1.18716121733210457e+05 -Electron-electron_mean_free_path_at_point_144____________________________ (len_plasma_electron_electron_mean_free_path_profile144)_ 1.18417815505479492e+05 -Electron-electron_mean_free_path_at_point_145____________________________ (len_plasma_electron_electron_mean_free_path_profile145)_ 1.18117869546808113e+05 -Electron-electron_mean_free_path_at_point_146____________________________ (len_plasma_electron_electron_mean_free_path_profile146)_ 1.17816292992540111e+05 -Electron-electron_mean_free_path_at_point_147____________________________ (len_plasma_electron_electron_mean_free_path_profile147)_ 1.17513095040443150e+05 -Electron-electron_mean_free_path_at_point_148____________________________ (len_plasma_electron_electron_mean_free_path_profile148)_ 1.17208284950671688e+05 -Electron-electron_mean_free_path_at_point_149____________________________ (len_plasma_electron_electron_mean_free_path_profile149)_ 1.16901872045730517e+05 -Electron-electron_mean_free_path_at_point_150____________________________ (len_plasma_electron_electron_mean_free_path_profile150)_ 1.16593865710435435e+05 -Electron-electron_mean_free_path_at_point_151____________________________ (len_plasma_electron_electron_mean_free_path_profile151)_ 1.16284275391874486e+05 -Electron-electron_mean_free_path_at_point_152____________________________ (len_plasma_electron_electron_mean_free_path_profile152)_ 1.15973110599366424e+05 -Electron-electron_mean_free_path_at_point_153____________________________ (len_plasma_electron_electron_mean_free_path_profile153)_ 1.15660380904420177e+05 -Electron-electron_mean_free_path_at_point_154____________________________ (len_plasma_electron_electron_mean_free_path_profile154)_ 1.15346095940691099e+05 -Electron-electron_mean_free_path_at_point_155____________________________ (len_plasma_electron_electron_mean_free_path_profile155)_ 1.15030265403937432e+05 -Electron-electron_mean_free_path_at_point_156____________________________ (len_plasma_electron_electron_mean_free_path_profile156)_ 1.14712899051975110e+05 -Electron-electron_mean_free_path_at_point_157____________________________ (len_plasma_electron_electron_mean_free_path_profile157)_ 1.14394006704632149e+05 -Electron-electron_mean_free_path_at_point_158____________________________ (len_plasma_electron_electron_mean_free_path_profile158)_ 1.14073598243700311e+05 -Electron-electron_mean_free_path_at_point_159____________________________ (len_plasma_electron_electron_mean_free_path_profile159)_ 1.13751683612887515e+05 -Electron-electron_mean_free_path_at_point_160____________________________ (len_plasma_electron_electron_mean_free_path_profile160)_ 1.13428272817767138e+05 -Electron-electron_mean_free_path_at_point_161____________________________ (len_plasma_electron_electron_mean_free_path_profile161)_ 1.13103375925727189e+05 -Electron-electron_mean_free_path_at_point_162____________________________ (len_plasma_electron_electron_mean_free_path_profile162)_ 1.12777003065918339e+05 -Electron-electron_mean_free_path_at_point_163____________________________ (len_plasma_electron_electron_mean_free_path_profile163)_ 1.12449164429199693e+05 -Electron-electron_mean_free_path_at_point_164____________________________ (len_plasma_electron_electron_mean_free_path_profile164)_ 1.12119870268084385e+05 -Electron-electron_mean_free_path_at_point_165____________________________ (len_plasma_electron_electron_mean_free_path_profile165)_ 1.11789130896682793e+05 -Electron-electron_mean_free_path_at_point_166____________________________ (len_plasma_electron_electron_mean_free_path_profile166)_ 1.11456956690645471e+05 -Electron-electron_mean_free_path_at_point_167____________________________ (len_plasma_electron_electron_mean_free_path_profile167)_ 1.11123358087103072e+05 -Electron-electron_mean_free_path_at_point_168____________________________ (len_plasma_electron_electron_mean_free_path_profile168)_ 1.10788345584606795e+05 -Electron-electron_mean_free_path_at_point_169____________________________ (len_plasma_electron_electron_mean_free_path_profile169)_ 1.10451929743066765e+05 -Electron-electron_mean_free_path_at_point_170____________________________ (len_plasma_electron_electron_mean_free_path_profile170)_ 1.10114121183686802e+05 -Electron-electron_mean_free_path_at_point_171____________________________ (len_plasma_electron_electron_mean_free_path_profile171)_ 1.09774930588902163e+05 -Electron-electron_mean_free_path_at_point_172____________________________ (len_plasma_electron_electron_mean_free_path_profile172)_ 1.09434368702310952e+05 -Electron-electron_mean_free_path_at_point_173____________________________ (len_plasma_electron_electron_mean_free_path_profile173)_ 1.09092446328607926e+05 -Electron-electron_mean_free_path_at_point_174____________________________ (len_plasma_electron_electron_mean_free_path_profile174)_ 1.08749174333513351e+05 -Electron-electron_mean_free_path_at_point_175____________________________ (len_plasma_electron_electron_mean_free_path_profile175)_ 1.08404563643703237e+05 -Electron-electron_mean_free_path_at_point_176____________________________ (len_plasma_electron_electron_mean_free_path_profile176)_ 1.08058625246736556e+05 -Electron-electron_mean_free_path_at_point_177____________________________ (len_plasma_electron_electron_mean_free_path_profile177)_ 1.07711370190980146e+05 -Electron-electron_mean_free_path_at_point_178____________________________ (len_plasma_electron_electron_mean_free_path_profile178)_ 1.07362809585533134e+05 -Electron-electron_mean_free_path_at_point_179____________________________ (len_plasma_electron_electron_mean_free_path_profile179)_ 1.07012954600149795e+05 -Electron-electron_mean_free_path_at_point_180____________________________ (len_plasma_electron_electron_mean_free_path_profile180)_ 1.06661816465159383e+05 -Electron-electron_mean_free_path_at_point_181____________________________ (len_plasma_electron_electron_mean_free_path_profile181)_ 1.06309406471385359e+05 -Electron-electron_mean_free_path_at_point_182____________________________ (len_plasma_electron_electron_mean_free_path_profile182)_ 1.05955735970061854e+05 -Electron-electron_mean_free_path_at_point_183____________________________ (len_plasma_electron_electron_mean_free_path_profile183)_ 1.05600816372750021e+05 -Electron-electron_mean_free_path_at_point_184____________________________ (len_plasma_electron_electron_mean_free_path_profile184)_ 1.05244659151250002e+05 -Electron-electron_mean_free_path_at_point_185____________________________ (len_plasma_electron_electron_mean_free_path_profile185)_ 1.04887275837513851e+05 -Electron-electron_mean_free_path_at_point_186____________________________ (len_plasma_electron_electron_mean_free_path_profile186)_ 1.04528678023554487e+05 -Electron-electron_mean_free_path_at_point_187____________________________ (len_plasma_electron_electron_mean_free_path_profile187)_ 1.04168877361352817e+05 -Electron-electron_mean_free_path_at_point_188____________________________ (len_plasma_electron_electron_mean_free_path_profile188)_ 1.03807885562764801e+05 -Electron-electron_mean_free_path_at_point_189____________________________ (len_plasma_electron_electron_mean_free_path_profile189)_ 1.03445714399423479e+05 -Electron-electron_mean_free_path_at_point_190____________________________ (len_plasma_electron_electron_mean_free_path_profile190)_ 1.03082375702642355e+05 -Electron-electron_mean_free_path_at_point_191____________________________ (len_plasma_electron_electron_mean_free_path_profile191)_ 1.02717881363314111e+05 -Electron-electron_mean_free_path_at_point_192____________________________ (len_plasma_electron_electron_mean_free_path_profile192)_ 1.02352243331807898e+05 -Electron-electron_mean_free_path_at_point_193____________________________ (len_plasma_electron_electron_mean_free_path_profile193)_ 1.01985473617865398e+05 -Electron-electron_mean_free_path_at_point_194____________________________ (len_plasma_electron_electron_mean_free_path_profile194)_ 1.01617584290493876e+05 -Electron-electron_mean_free_path_at_point_195____________________________ (len_plasma_electron_electron_mean_free_path_profile195)_ 1.01248587477856752e+05 -Electron-electron_mean_free_path_at_point_196____________________________ (len_plasma_electron_electron_mean_free_path_profile196)_ 1.00878495367163778e+05 -Electron-electron_mean_free_path_at_point_197____________________________ (len_plasma_electron_electron_mean_free_path_profile197)_ 1.00507320204555290e+05 -Electron-electron_mean_free_path_at_point_198____________________________ (len_plasma_electron_electron_mean_free_path_profile198)_ 1.00135074294989259e+05 -Electron-electron_mean_free_path_at_point_199____________________________ (len_plasma_electron_electron_mean_free_path_profile199)_ 9.97617700021207420e+04 -Electron-electron_mean_free_path_at_point_200____________________________ (len_plasma_electron_electron_mean_free_path_profile200)_ 9.93874197481828887e+04 -Electron-electron_mean_free_path_at_point_201____________________________ (len_plasma_electron_electron_mean_free_path_profile201)_ 9.90120360138641263e+04 -Electron-electron_mean_free_path_at_point_202____________________________ (len_plasma_electron_electron_mean_free_path_profile202)_ 9.86356313381818618e+04 -Electron-electron_mean_free_path_at_point_203____________________________ (len_plasma_electron_electron_mean_free_path_profile203)_ 9.82582183183553861e+04 -Electron-electron_mean_free_path_at_point_204____________________________ (len_plasma_electron_electron_mean_free_path_profile204)_ 9.78798096096759400e+04 -Electron-electron_mean_free_path_at_point_205____________________________ (len_plasma_electron_electron_mean_free_path_profile205)_ 9.75004179253730981e+04 -Electron-electron_mean_free_path_at_point_206____________________________ (len_plasma_electron_electron_mean_free_path_profile206)_ 9.71200560364798293e+04 -Electron-electron_mean_free_path_at_point_207____________________________ (len_plasma_electron_electron_mean_free_path_profile207)_ 9.67387367716940935e+04 -Electron-electron_mean_free_path_at_point_208____________________________ (len_plasma_electron_electron_mean_free_path_profile208)_ 9.63564730172382115e+04 -Electron-electron_mean_free_path_at_point_209____________________________ (len_plasma_electron_electron_mean_free_path_profile209)_ 9.59732777167160675e+04 -Electron-electron_mean_free_path_at_point_210____________________________ (len_plasma_electron_electron_mean_free_path_profile210)_ 9.55891638709654217e+04 -Electron-electron_mean_free_path_at_point_211____________________________ (len_plasma_electron_electron_mean_free_path_profile211)_ 9.52041445379103534e+04 -Electron-electron_mean_free_path_at_point_212____________________________ (len_plasma_electron_electron_mean_free_path_profile212)_ 9.48182328324085684e+04 -Electron-electron_mean_free_path_at_point_213____________________________ (len_plasma_electron_electron_mean_free_path_profile213)_ 9.44314419260966097e+04 -Electron-electron_mean_free_path_at_point_214____________________________ (len_plasma_electron_electron_mean_free_path_profile214)_ 9.40437850472329010e+04 -Electron-electron_mean_free_path_at_point_215____________________________ (len_plasma_electron_electron_mean_free_path_profile215)_ 9.36552754805367294e+04 -Electron-electron_mean_free_path_at_point_216____________________________ (len_plasma_electron_electron_mean_free_path_profile216)_ 9.32659265670241584e+04 -Electron-electron_mean_free_path_at_point_217____________________________ (len_plasma_electron_electron_mean_free_path_profile217)_ 9.28757517038420774e+04 -Electron-electron_mean_free_path_at_point_218____________________________ (len_plasma_electron_electron_mean_free_path_profile218)_ 9.24847643440976535e+04 -Electron-electron_mean_free_path_at_point_219____________________________ (len_plasma_electron_electron_mean_free_path_profile219)_ 9.20929779966866918e+04 -Electron-electron_mean_free_path_at_point_220____________________________ (len_plasma_electron_electron_mean_free_path_profile220)_ 9.17004062261158542e+04 -Electron-electron_mean_free_path_at_point_221____________________________ (len_plasma_electron_electron_mean_free_path_profile221)_ 9.13070626523243554e+04 -Electron-electron_mean_free_path_at_point_222____________________________ (len_plasma_electron_electron_mean_free_path_profile222)_ 9.09129609505011467e+04 -Electron-electron_mean_free_path_at_point_223____________________________ (len_plasma_electron_electron_mean_free_path_profile223)_ 9.05181148508990009e+04 -Electron-electron_mean_free_path_at_point_224____________________________ (len_plasma_electron_electron_mean_free_path_profile224)_ 9.01225381386451045e+04 -Electron-electron_mean_free_path_at_point_225____________________________ (len_plasma_electron_electron_mean_free_path_profile225)_ 8.97262446535478230e+04 -Electron-electron_mean_free_path_at_point_226____________________________ (len_plasma_electron_electron_mean_free_path_profile226)_ 8.93292482899013121e+04 -Electron-electron_mean_free_path_at_point_227____________________________ (len_plasma_electron_electron_mean_free_path_profile227)_ 8.89315629962855019e+04 -Electron-electron_mean_free_path_at_point_228____________________________ (len_plasma_electron_electron_mean_free_path_profile228)_ 8.85332027753619332e+04 -Electron-electron_mean_free_path_at_point_229____________________________ (len_plasma_electron_electron_mean_free_path_profile229)_ 8.81341816836685321e+04 -Electron-electron_mean_free_path_at_point_230____________________________ (len_plasma_electron_electron_mean_free_path_profile230)_ 8.77345138314073847e+04 -Electron-electron_mean_free_path_at_point_231____________________________ (len_plasma_electron_electron_mean_free_path_profile231)_ 8.73342133822308388e+04 -Electron-electron_mean_free_path_at_point_232____________________________ (len_plasma_electron_electron_mean_free_path_profile232)_ 8.69332945530245488e+04 -Electron-electron_mean_free_path_at_point_233____________________________ (len_plasma_electron_electron_mean_free_path_profile233)_ 8.65317716136828676e+04 -Electron-electron_mean_free_path_at_point_234____________________________ (len_plasma_electron_electron_mean_free_path_profile234)_ 8.61296588868865219e+04 -Electron-electron_mean_free_path_at_point_235____________________________ (len_plasma_electron_electron_mean_free_path_profile235)_ 8.57269707478700439e+04 -Electron-electron_mean_free_path_at_point_236____________________________ (len_plasma_electron_electron_mean_free_path_profile236)_ 8.53237216241895076e+04 -Electron-electron_mean_free_path_at_point_237____________________________ (len_plasma_electron_electron_mean_free_path_profile237)_ 8.49199259954840963e+04 -Electron-electron_mean_free_path_at_point_238____________________________ (len_plasma_electron_electron_mean_free_path_profile238)_ 8.45155983932348754e+04 -Electron-electron_mean_free_path_at_point_239____________________________ (len_plasma_electron_electron_mean_free_path_profile239)_ 8.41107534005177149e+04 -Electron-electron_mean_free_path_at_point_240____________________________ (len_plasma_electron_electron_mean_free_path_profile240)_ 8.37054056517548161e+04 -Electron-electron_mean_free_path_at_point_241____________________________ (len_plasma_electron_electron_mean_free_path_profile241)_ 8.32995698324585683e+04 -Electron-electron_mean_free_path_at_point_242____________________________ (len_plasma_electron_electron_mean_free_path_profile242)_ 8.28932606789735728e+04 -Electron-electron_mean_free_path_at_point_243____________________________ (len_plasma_electron_electron_mean_free_path_profile243)_ 8.24864929782135150e+04 -Electron-electron_mean_free_path_at_point_244____________________________ (len_plasma_electron_electron_mean_free_path_profile244)_ 8.20792815673932346e+04 -Electron-electron_mean_free_path_at_point_245____________________________ (len_plasma_electron_electron_mean_free_path_profile245)_ 8.16716413337569393e+04 -Electron-electron_mean_free_path_at_point_246____________________________ (len_plasma_electron_electron_mean_free_path_profile246)_ 8.12635872143016313e+04 -Electron-electron_mean_free_path_at_point_247____________________________ (len_plasma_electron_electron_mean_free_path_profile247)_ 8.08551341954958916e+04 -Electron-electron_mean_free_path_at_point_248____________________________ (len_plasma_electron_electron_mean_free_path_profile248)_ 8.04462973129939928e+04 -Electron-electron_mean_free_path_at_point_249____________________________ (len_plasma_electron_electron_mean_free_path_profile249)_ 8.00370916513449920e+04 -Electron-electron_mean_free_path_at_point_250____________________________ (len_plasma_electron_electron_mean_free_path_profile250)_ 7.96275323436974577e+04 -Electron-electron_mean_free_path_at_point_251____________________________ (len_plasma_electron_electron_mean_free_path_profile251)_ 7.92176345715000352e+04 -Electron-electron_mean_free_path_at_point_252____________________________ (len_plasma_electron_electron_mean_free_path_profile252)_ 7.88074135641955363e+04 -Electron-electron_mean_free_path_at_point_253____________________________ (len_plasma_electron_electron_mean_free_path_profile253)_ 7.83968845989105612e+04 -Electron-electron_mean_free_path_at_point_254____________________________ (len_plasma_electron_electron_mean_free_path_profile254)_ 7.79860630001418613e+04 -Electron-electron_mean_free_path_at_point_255____________________________ (len_plasma_electron_electron_mean_free_path_profile255)_ 7.75749641394341452e+04 -Electron-electron_mean_free_path_at_point_256____________________________ (len_plasma_electron_electron_mean_free_path_profile256)_ 7.71636034350569680e+04 -Electron-electron_mean_free_path_at_point_257____________________________ (len_plasma_electron_electron_mean_free_path_profile257)_ 7.67519963516717544e+04 -Electron-electron_mean_free_path_at_point_258____________________________ (len_plasma_electron_electron_mean_free_path_profile258)_ 7.63401583999988070e+04 -Electron-electron_mean_free_path_at_point_259____________________________ (len_plasma_electron_electron_mean_free_path_profile259)_ 7.59281051364735031e+04 -Electron-electron_mean_free_path_at_point_260____________________________ (len_plasma_electron_electron_mean_free_path_profile260)_ 7.55158521629013994e+04 -Electron-electron_mean_free_path_at_point_261____________________________ (len_plasma_electron_electron_mean_free_path_profile261)_ 7.51034151261056977e+04 -Electron-electron_mean_free_path_at_point_262____________________________ (len_plasma_electron_electron_mean_free_path_profile262)_ 7.46908097175703733e+04 -Electron-electron_mean_free_path_at_point_263____________________________ (len_plasma_electron_electron_mean_free_path_profile263)_ 7.42780516730760282e+04 -Electron-electron_mean_free_path_at_point_264____________________________ (len_plasma_electron_electron_mean_free_path_profile264)_ 7.38651567723317712e+04 -Electron-electron_mean_free_path_at_point_265____________________________ (len_plasma_electron_electron_mean_free_path_profile265)_ 7.34521408386007242e+04 -Electron-electron_mean_free_path_at_point_266____________________________ (len_plasma_electron_electron_mean_free_path_profile266)_ 7.30390197383199993e+04 -Electron-electron_mean_free_path_at_point_267____________________________ (len_plasma_electron_electron_mean_free_path_profile267)_ 7.26258093807142432e+04 -Electron-electron_mean_free_path_at_point_268____________________________ (len_plasma_electron_electron_mean_free_path_profile268)_ 7.22125257174044673e+04 -Electron-electron_mean_free_path_at_point_269____________________________ (len_plasma_electron_electron_mean_free_path_profile269)_ 7.17991847420086124e+04 -Electron-electron_mean_free_path_at_point_270____________________________ (len_plasma_electron_electron_mean_free_path_profile270)_ 7.13858024897396972e+04 -Electron-electron_mean_free_path_at_point_271____________________________ (len_plasma_electron_electron_mean_free_path_profile271)_ 7.09723950369941158e+04 -Electron-electron_mean_free_path_at_point_272____________________________ (len_plasma_electron_electron_mean_free_path_profile272)_ 7.05589785009359766e+04 -Electron-electron_mean_free_path_at_point_273____________________________ (len_plasma_electron_electron_mean_free_path_profile273)_ 7.01455690390754753e+04 -Electron-electron_mean_free_path_at_point_274____________________________ (len_plasma_electron_electron_mean_free_path_profile274)_ 6.97321828488387982e+04 -Electron-electron_mean_free_path_at_point_275____________________________ (len_plasma_electron_electron_mean_free_path_profile275)_ 6.93188361671346065e+04 -Electron-electron_mean_free_path_at_point_276____________________________ (len_plasma_electron_electron_mean_free_path_profile276)_ 6.89055452699120506e+04 -Electron-electron_mean_free_path_at_point_277____________________________ (len_plasma_electron_electron_mean_free_path_profile277)_ 6.84923264717124111e+04 -Electron-electron_mean_free_path_at_point_278____________________________ (len_plasma_electron_electron_mean_free_path_profile278)_ 6.80791961252159672e+04 -Electron-electron_mean_free_path_at_point_279____________________________ (len_plasma_electron_electron_mean_free_path_profile279)_ 6.76661706207800016e+04 -Electron-electron_mean_free_path_at_point_280____________________________ (len_plasma_electron_electron_mean_free_path_profile280)_ 6.72532663859715394e+04 -Electron-electron_mean_free_path_at_point_281____________________________ (len_plasma_electron_electron_mean_free_path_profile281)_ 6.68404998850937409e+04 -Electron-electron_mean_free_path_at_point_282____________________________ (len_plasma_electron_electron_mean_free_path_profile282)_ 6.64278876187046408e+04 -Electron-electron_mean_free_path_at_point_283____________________________ (len_plasma_electron_electron_mean_free_path_profile283)_ 6.60154461231284513e+04 -Electron-electron_mean_free_path_at_point_284____________________________ (len_plasma_electron_electron_mean_free_path_profile284)_ 6.56031919699625723e+04 -Electron-electron_mean_free_path_at_point_285____________________________ (len_plasma_electron_electron_mean_free_path_profile285)_ 6.51911417655746336e+04 -Electron-electron_mean_free_path_at_point_286____________________________ (len_plasma_electron_electron_mean_free_path_profile286)_ 6.47793121505954914e+04 -Electron-electron_mean_free_path_at_point_287____________________________ (len_plasma_electron_electron_mean_free_path_profile287)_ 6.43677197994020316e+04 -Electron-electron_mean_free_path_at_point_288____________________________ (len_plasma_electron_electron_mean_free_path_profile288)_ 6.39563814195961604e+04 -Electron-electron_mean_free_path_at_point_289____________________________ (len_plasma_electron_electron_mean_free_path_profile289)_ 6.35453137514743939e+04 -Electron-electron_mean_free_path_at_point_290____________________________ (len_plasma_electron_electron_mean_free_path_profile290)_ 6.31345335674915768e+04 -Electron-electron_mean_free_path_at_point_291____________________________ (len_plasma_electron_electron_mean_free_path_profile291)_ 6.27240576717163131e+04 -Electron-electron_mean_free_path_at_point_292____________________________ (len_plasma_electron_electron_mean_free_path_profile292)_ 6.23139028992805906e+04 -Electron-electron_mean_free_path_at_point_293____________________________ (len_plasma_electron_electron_mean_free_path_profile293)_ 6.19040861158206390e+04 -Electron-electron_mean_free_path_at_point_294____________________________ (len_plasma_electron_electron_mean_free_path_profile294)_ 6.14946242169120087e+04 -Electron-electron_mean_free_path_at_point_295____________________________ (len_plasma_electron_electron_mean_free_path_profile295)_ 6.10855341274954626e+04 -Electron-electron_mean_free_path_at_point_296____________________________ (len_plasma_electron_electron_mean_free_path_profile296)_ 6.06768328012977727e+04 -Electron-electron_mean_free_path_at_point_297____________________________ (len_plasma_electron_electron_mean_free_path_profile297)_ 6.02685372202429353e+04 -Electron-electron_mean_free_path_at_point_298____________________________ (len_plasma_electron_electron_mean_free_path_profile298)_ 5.98606643938577254e+04 -Electron-electron_mean_free_path_at_point_299____________________________ (len_plasma_electron_electron_mean_free_path_profile299)_ 5.94532313586687160e+04 -Electron-electron_mean_free_path_at_point_300____________________________ (len_plasma_electron_electron_mean_free_path_profile300)_ 5.90462551775922329e+04 -Electron-electron_mean_free_path_at_point_301____________________________ (len_plasma_electron_electron_mean_free_path_profile301)_ 5.86397529393167133e+04 -Electron-electron_mean_free_path_at_point_302____________________________ (len_plasma_electron_electron_mean_free_path_profile302)_ 5.82337417576785592e+04 -Electron-electron_mean_free_path_at_point_303____________________________ (len_plasma_electron_electron_mean_free_path_profile303)_ 5.78282387710283874e+04 -Electron-electron_mean_free_path_at_point_304____________________________ (len_plasma_electron_electron_mean_free_path_profile304)_ 5.74232611415922074e+04 -Electron-electron_mean_free_path_at_point_305____________________________ (len_plasma_electron_electron_mean_free_path_profile305)_ 5.70188260548241160e+04 -Electron-electron_mean_free_path_at_point_306____________________________ (len_plasma_electron_electron_mean_free_path_profile306)_ 5.66149507187505660e+04 -Electron-electron_mean_free_path_at_point_307____________________________ (len_plasma_electron_electron_mean_free_path_profile307)_ 5.62116523633090765e+04 -Electron-electron_mean_free_path_at_point_308____________________________ (len_plasma_electron_electron_mean_free_path_profile308)_ 5.58089482396783351e+04 -Electron-electron_mean_free_path_at_point_309____________________________ (len_plasma_electron_electron_mean_free_path_profile309)_ 5.54068556196013815e+04 -Electron-electron_mean_free_path_at_point_310____________________________ (len_plasma_electron_electron_mean_free_path_profile310)_ 5.50053917947009395e+04 -Electron-electron_mean_free_path_at_point_311____________________________ (len_plasma_electron_electron_mean_free_path_profile311)_ 5.46045740757884632e+04 -Electron-electron_mean_free_path_at_point_312____________________________ (len_plasma_electron_electron_mean_free_path_profile312)_ 5.42044197921653613e+04 -Electron-electron_mean_free_path_at_point_313____________________________ (len_plasma_electron_electron_mean_free_path_profile313)_ 5.38049462909160575e+04 -Electron-electron_mean_free_path_at_point_314____________________________ (len_plasma_electron_electron_mean_free_path_profile314)_ 5.34061709361964022e+04 -Electron-electron_mean_free_path_at_point_315____________________________ (len_plasma_electron_electron_mean_free_path_profile315)_ 5.30081111085128650e+04 -Electron-electron_mean_free_path_at_point_316____________________________ (len_plasma_electron_electron_mean_free_path_profile316)_ 5.26107842039954048e+04 -Electron-electron_mean_free_path_at_point_317____________________________ (len_plasma_electron_electron_mean_free_path_profile317)_ 5.22142076336648752e+04 -Electron-electron_mean_free_path_at_point_318____________________________ (len_plasma_electron_electron_mean_free_path_profile318)_ 5.18183988226908841e+04 -Electron-electron_mean_free_path_at_point_319____________________________ (len_plasma_electron_electron_mean_free_path_profile319)_ 5.14233752096461903e+04 -Electron-electron_mean_free_path_at_point_320____________________________ (len_plasma_electron_electron_mean_free_path_profile320)_ 5.10291542457528558e+04 -Electron-electron_mean_free_path_at_point_321____________________________ (len_plasma_electron_electron_mean_free_path_profile321)_ 5.06357533941220172e+04 -Electron-electron_mean_free_path_at_point_322____________________________ (len_plasma_electron_electron_mean_free_path_profile322)_ 5.02431901289891175e+04 -Electron-electron_mean_free_path_at_point_323____________________________ (len_plasma_electron_electron_mean_free_path_profile323)_ 4.98514819349406316e+04 -Electron-electron_mean_free_path_at_point_324____________________________ (len_plasma_electron_electron_mean_free_path_profile324)_ 4.94606463061378163e+04 -Electron-electron_mean_free_path_at_point_325____________________________ (len_plasma_electron_electron_mean_free_path_profile325)_ 4.90707007455335261e+04 -Electron-electron_mean_free_path_at_point_326____________________________ (len_plasma_electron_electron_mean_free_path_profile326)_ 4.86816627640825536e+04 -Electron-electron_mean_free_path_at_point_327____________________________ (len_plasma_electron_electron_mean_free_path_profile327)_ 4.82935498799499182e+04 -Electron-electron_mean_free_path_at_point_328____________________________ (len_plasma_electron_electron_mean_free_path_profile328)_ 4.79063796177116965e+04 -Electron-electron_mean_free_path_at_point_329____________________________ (len_plasma_electron_electron_mean_free_path_profile329)_ 4.75201695075524694e+04 -Electron-electron_mean_free_path_at_point_330____________________________ (len_plasma_electron_electron_mean_free_path_profile330)_ 4.71349370844585792e+04 -Electron-electron_mean_free_path_at_point_331____________________________ (len_plasma_electron_electron_mean_free_path_profile331)_ 4.67506998874073397e+04 -Electron-electron_mean_free_path_at_point_332____________________________ (len_plasma_electron_electron_mean_free_path_profile332)_ 4.63674754585529809e+04 -Electron-electron_mean_free_path_at_point_333____________________________ (len_plasma_electron_electron_mean_free_path_profile333)_ 4.59852813424092237e+04 -Electron-electron_mean_free_path_at_point_334____________________________ (len_plasma_electron_electron_mean_free_path_profile334)_ 4.56041350850291929e+04 -Electron-electron_mean_free_path_at_point_335____________________________ (len_plasma_electron_electron_mean_free_path_profile335)_ 4.52240542331834877e+04 -Electron-electron_mean_free_path_at_point_336____________________________ (len_plasma_electron_electron_mean_free_path_profile336)_ 4.48450563335360712e+04 -Electron-electron_mean_free_path_at_point_337____________________________ (len_plasma_electron_electron_mean_free_path_profile337)_ 4.44671589318193874e+04 -Electron-electron_mean_free_path_at_point_338____________________________ (len_plasma_electron_electron_mean_free_path_profile338)_ 4.40903795720078924e+04 -Electron-electron_mean_free_path_at_point_339____________________________ (len_plasma_electron_electron_mean_free_path_profile339)_ 4.37147357954926483e+04 -Electron-electron_mean_free_path_at_point_340____________________________ (len_plasma_electron_electron_mean_free_path_profile340)_ 4.33402451402551451e+04 -Electron-electron_mean_free_path_at_point_341____________________________ (len_plasma_electron_electron_mean_free_path_profile341)_ 4.29669251400440335e+04 -Electron-electron_mean_free_path_at_point_342____________________________ (len_plasma_electron_electron_mean_free_path_profile342)_ 4.25947933235513701e+04 -Electron-electron_mean_free_path_at_point_343____________________________ (len_plasma_electron_electron_mean_free_path_profile343)_ 4.22238672135938832e+04 -Electron-electron_mean_free_path_at_point_344____________________________ (len_plasma_electron_electron_mean_free_path_profile344)_ 4.18541643262961152e+04 -Electron-electron_mean_free_path_at_point_345____________________________ (len_plasma_electron_electron_mean_free_path_profile345)_ 4.14857021702785132e+04 -Electron-electron_mean_free_path_at_point_346____________________________ (len_plasma_electron_electron_mean_free_path_profile346)_ 4.11184982458502636e+04 -Electron-electron_mean_free_path_at_point_347____________________________ (len_plasma_electron_electron_mean_free_path_profile347)_ 4.07525700442093294e+04 -Electron-electron_mean_free_path_at_point_348____________________________ (len_plasma_electron_electron_mean_free_path_profile348)_ 4.03879350466480173e+04 -Electron-electron_mean_free_path_at_point_349____________________________ (len_plasma_electron_electron_mean_free_path_profile349)_ 4.00246107237689212e+04 -Electron-electron_mean_free_path_at_point_350____________________________ (len_plasma_electron_electron_mean_free_path_profile350)_ 3.96626145347093043e+04 -Electron-electron_mean_free_path_at_point_351____________________________ (len_plasma_electron_electron_mean_free_path_profile351)_ 3.93019639263745994e+04 -Electron-electron_mean_free_path_at_point_352____________________________ (len_plasma_electron_electron_mean_free_path_profile352)_ 3.89426763326883956e+04 -Electron-electron_mean_free_path_at_point_353____________________________ (len_plasma_electron_electron_mean_free_path_profile353)_ 3.85847691738509238e+04 -Electron-electron_mean_free_path_at_point_354____________________________ (len_plasma_electron_electron_mean_free_path_profile354)_ 3.82282598556163357e+04 -Electron-electron_mean_free_path_at_point_355____________________________ (len_plasma_electron_electron_mean_free_path_profile355)_ 3.78731657685842365e+04 -Electron-electron_mean_free_path_at_point_356____________________________ (len_plasma_electron_electron_mean_free_path_profile356)_ 3.75195042875110012e+04 -Electron-electron_mean_free_path_at_point_357____________________________ (len_plasma_electron_electron_mean_free_path_profile357)_ 3.71672927706403061e+04 -Electron-electron_mean_free_path_at_point_358____________________________ (len_plasma_electron_electron_mean_free_path_profile358)_ 3.68165485590566532e+04 -Electron-electron_mean_free_path_at_point_359____________________________ (len_plasma_electron_electron_mean_free_path_profile359)_ 3.64672889760619364e+04 -Electron-electron_mean_free_path_at_point_360____________________________ (len_plasma_electron_electron_mean_free_path_profile360)_ 3.61195313265792065e+04 -Electron-electron_mean_free_path_at_point_361____________________________ (len_plasma_electron_electron_mean_free_path_profile361)_ 3.57732928965845567e+04 -Electron-electron_mean_free_path_at_point_362____________________________ (len_plasma_electron_electron_mean_free_path_profile362)_ 3.54285909525705574e+04 -Electron-electron_mean_free_path_at_point_363____________________________ (len_plasma_electron_electron_mean_free_path_profile363)_ 3.50854427410426579e+04 -Electron-electron_mean_free_path_at_point_364____________________________ (len_plasma_electron_electron_mean_free_path_profile364)_ 3.47438654880535396e+04 -Electron-electron_mean_free_path_at_point_365____________________________ (len_plasma_electron_electron_mean_free_path_profile365)_ 3.44038763987748171e+04 -Electron-electron_mean_free_path_at_point_366____________________________ (len_plasma_electron_electron_mean_free_path_profile366)_ 3.40654926571144024e+04 -Electron-electron_mean_free_path_at_point_367____________________________ (len_plasma_electron_electron_mean_free_path_profile367)_ 3.37287314253761651e+04 -Electron-electron_mean_free_path_at_point_368____________________________ (len_plasma_electron_electron_mean_free_path_profile368)_ 3.33936098439731504e+04 -Electron-electron_mean_free_path_at_point_369____________________________ (len_plasma_electron_electron_mean_free_path_profile369)_ 3.30601450311913286e+04 -Electron-electron_mean_free_path_at_point_370____________________________ (len_plasma_electron_electron_mean_free_path_profile370)_ 3.27283540830125785e+04 -Electron-electron_mean_free_path_at_point_371____________________________ (len_plasma_electron_electron_mean_free_path_profile371)_ 3.23982540729988905e+04 -Electron-electron_mean_free_path_at_point_372____________________________ (len_plasma_electron_electron_mean_free_path_profile372)_ 3.20698620522428428e+04 -Electron-electron_mean_free_path_at_point_373____________________________ (len_plasma_electron_electron_mean_free_path_profile373)_ 3.17431950493905133e+04 -Electron-electron_mean_free_path_at_point_374____________________________ (len_plasma_electron_electron_mean_free_path_profile374)_ 3.14182700707398908e+04 -Electron-electron_mean_free_path_at_point_375____________________________ (len_plasma_electron_electron_mean_free_path_profile375)_ 3.10951041004228937e+04 -Electron-electron_mean_free_path_at_point_376____________________________ (len_plasma_electron_electron_mean_free_path_profile376)_ 3.07737141006749516e+04 -Electron-electron_mean_free_path_at_point_377____________________________ (len_plasma_electron_electron_mean_free_path_profile377)_ 3.04541170121985269e+04 -Electron-electron_mean_free_path_at_point_378____________________________ (len_plasma_electron_electron_mean_free_path_profile378)_ 3.01363297546302420e+04 -Electron-electron_mean_free_path_at_point_379____________________________ (len_plasma_electron_electron_mean_free_path_profile379)_ 2.98203692271152431e+04 -Electron-electron_mean_free_path_at_point_380____________________________ (len_plasma_electron_electron_mean_free_path_profile380)_ 2.95062523089978349e+04 -Electron-electron_mean_free_path_at_point_381____________________________ (len_plasma_electron_electron_mean_free_path_profile381)_ 2.91939958606384498e+04 -Electron-electron_mean_free_path_at_point_382____________________________ (len_plasma_electron_electron_mean_free_path_profile382)_ 2.88836167243633499e+04 -Electron-electron_mean_free_path_at_point_383____________________________ (len_plasma_electron_electron_mean_free_path_profile383)_ 2.85751317255582217e+04 -Electron-electron_mean_free_path_at_point_384____________________________ (len_plasma_electron_electron_mean_free_path_profile384)_ 2.82685576739142016e+04 -Electron-electron_mean_free_path_at_point_385____________________________ (len_plasma_electron_electron_mean_free_path_profile385)_ 2.79639113648398124e+04 -Electron-electron_mean_free_path_at_point_386____________________________ (len_plasma_electron_electron_mean_free_path_profile386)_ 2.76612095810472783e+04 -Electron-electron_mean_free_path_at_point_387____________________________ (len_plasma_electron_electron_mean_free_path_profile387)_ 2.73604690943295318e+04 -Electron-electron_mean_free_path_at_point_388____________________________ (len_plasma_electron_electron_mean_free_path_profile388)_ 2.70617066675361821e+04 -Electron-electron_mean_free_path_at_point_389____________________________ (len_plasma_electron_electron_mean_free_path_profile389)_ 2.67649390567687296e+04 -Electron-electron_mean_free_path_at_point_390____________________________ (len_plasma_electron_electron_mean_free_path_profile390)_ 2.64701830138060395e+04 -Electron-electron_mean_free_path_at_point_391____________________________ (len_plasma_electron_electron_mean_free_path_profile391)_ 2.61774552887784121e+04 -Electron-electron_mean_free_path_at_point_392____________________________ (len_plasma_electron_electron_mean_free_path_profile392)_ 2.58867726331078447e+04 -Electron-electron_mean_free_path_at_point_393____________________________ (len_plasma_electron_electron_mean_free_path_profile393)_ 2.55981518027339043e+04 -Electron-electron_mean_free_path_at_point_394____________________________ (len_plasma_electron_electron_mean_free_path_profile394)_ 2.53116095616456878e+04 -Electron-electron_mean_free_path_at_point_395____________________________ (len_plasma_electron_electron_mean_free_path_profile395)_ 2.50271626857412084e+04 -Electron-electron_mean_free_path_at_point_396____________________________ (len_plasma_electron_electron_mean_free_path_profile396)_ 2.47448279670408083e+04 -Electron-electron_mean_free_path_at_point_397____________________________ (len_plasma_electron_electron_mean_free_path_profile397)_ 2.44646222182761048e+04 -Electron-electron_mean_free_path_at_point_398____________________________ (len_plasma_electron_electron_mean_free_path_profile398)_ 2.41865622778869511e+04 -Electron-electron_mean_free_path_at_point_399____________________________ (len_plasma_electron_electron_mean_free_path_profile399)_ 2.39106650154533818e+04 -Electron-electron_mean_free_path_at_point_400____________________________ (len_plasma_electron_electron_mean_free_path_profile400)_ 2.36369473375965354e+04 -Electron-electron_mean_free_path_at_point_401____________________________ (len_plasma_electron_electron_mean_free_path_profile401)_ 2.33654261943834754e+04 -Electron-electron_mean_free_path_at_point_402____________________________ (len_plasma_electron_electron_mean_free_path_profile402)_ 2.30961185862735147e+04 -Electron-electron_mean_free_path_at_point_403____________________________ (len_plasma_electron_electron_mean_free_path_profile403)_ 2.28290415716484531e+04 -Electron-electron_mean_free_path_at_point_404____________________________ (len_plasma_electron_electron_mean_free_path_profile404)_ 2.25642122749708906e+04 -Electron-electron_mean_free_path_at_point_405____________________________ (len_plasma_electron_electron_mean_free_path_profile405)_ 2.23016478956187639e+04 -Electron-electron_mean_free_path_at_point_406____________________________ (len_plasma_electron_electron_mean_free_path_profile406)_ 2.20413657174516484e+04 -Electron-electron_mean_free_path_at_point_407____________________________ (len_plasma_electron_electron_mean_free_path_profile407)_ 2.17833831191625941e+04 -Electron-electron_mean_free_path_at_point_408____________________________ (len_plasma_electron_electron_mean_free_path_profile408)_ 2.15277175854820343e+04 -Electron-electron_mean_free_path_at_point_409____________________________ (len_plasma_electron_electron_mean_free_path_profile409)_ 2.12743867192994803e+04 -Electron-electron_mean_free_path_at_point_410____________________________ (len_plasma_electron_electron_mean_free_path_profile410)_ 2.10234082547801845e+04 -Electron-electron_mean_free_path_at_point_411____________________________ (len_plasma_electron_electron_mean_free_path_profile411)_ 2.07748000715572125e+04 -Electron-electron_mean_free_path_at_point_412____________________________ (len_plasma_electron_electron_mean_free_path_profile412)_ 2.05285802100886103e+04 -Electron-electron_mean_free_path_at_point_413____________________________ (len_plasma_electron_electron_mean_free_path_profile413)_ 2.02847668882778416e+04 -Electron-electron_mean_free_path_at_point_414____________________________ (len_plasma_electron_electron_mean_free_path_profile414)_ 2.00433785194673983e+04 -Electron-electron_mean_free_path_at_point_415____________________________ (len_plasma_electron_electron_mean_free_path_profile415)_ 1.98044337319212900e+04 -Electron-electron_mean_free_path_at_point_416____________________________ (len_plasma_electron_electron_mean_free_path_profile416)_ 1.95679513899277990e+04 -Electron-electron_mean_free_path_at_point_417____________________________ (len_plasma_electron_electron_mean_free_path_profile417)_ 1.93339506166688116e+04 -Electron-electron_mean_free_path_at_point_418____________________________ (len_plasma_electron_electron_mean_free_path_profile418)_ 1.91024508190119632e+04 -Electron-electron_mean_free_path_at_point_419____________________________ (len_plasma_electron_electron_mean_free_path_profile419)_ 1.88734717144025672e+04 -Electron-electron_mean_free_path_at_point_420____________________________ (len_plasma_electron_electron_mean_free_path_profile420)_ 1.86470333600517552e+04 -Electron-electron_mean_free_path_at_point_421____________________________ (len_plasma_electron_electron_mean_free_path_profile421)_ 1.84231561846359327e+04 -Electron-electron_mean_free_path_at_point_422____________________________ (len_plasma_electron_electron_mean_free_path_profile422)_ 1.82018610227489589e+04 -Electron-electron_mean_free_path_at_point_423____________________________ (len_plasma_electron_electron_mean_free_path_profile423)_ 1.79831691523774061e+04 -Electron-electron_mean_free_path_at_point_424____________________________ (len_plasma_electron_electron_mean_free_path_profile424)_ 1.77671023356969235e+04 -Electron-electron_mean_free_path_at_point_425____________________________ (len_plasma_electron_electron_mean_free_path_profile425)_ 1.75536828635275560e+04 -Electron-electron_mean_free_path_at_point_426____________________________ (len_plasma_electron_electron_mean_free_path_profile426)_ 1.73429336038255169e+04 -Electron-electron_mean_free_path_at_point_427____________________________ (len_plasma_electron_electron_mean_free_path_profile427)_ 1.71348780546337657e+04 -Electron-electron_mean_free_path_at_point_428____________________________ (len_plasma_electron_electron_mean_free_path_profile428)_ 1.69295404019735142e+04 -Electron-electron_mean_free_path_at_point_429____________________________ (len_plasma_electron_electron_mean_free_path_profile429)_ 1.67269455832145395e+04 -Electron-electron_mean_free_path_at_point_430____________________________ (len_plasma_electron_electron_mean_free_path_profile430)_ 1.65271193565394606e+04 -Electron-electron_mean_free_path_at_point_431____________________________ (len_plasma_electron_electron_mean_free_path_profile431)_ 1.63300883771993340e+04 -Electron-electron_mean_free_path_at_point_432____________________________ (len_plasma_electron_electron_mean_free_path_profile432)_ 1.61358802813558450e+04 -Electron-electron_mean_free_path_at_point_433____________________________ (len_plasma_electron_electron_mean_free_path_profile433)_ 1.59445237784204546e+04 -Electron-electron_mean_free_path_at_point_434____________________________ (len_plasma_electron_electron_mean_free_path_profile434)_ 1.57560487529348939e+04 -Electron-electron_mean_free_path_at_point_435____________________________ (len_plasma_electron_electron_mean_free_path_profile435)_ 1.55704863771958371e+04 -Electron-electron_mean_free_path_at_point_436____________________________ (len_plasma_electron_electron_mean_free_path_profile436)_ 1.53878692360167061e+04 -Electron-electron_mean_free_path_at_point_437____________________________ (len_plasma_electron_electron_mean_free_path_profile437)_ 1.52082314652393616e+04 -Electron-electron_mean_free_path_at_point_438____________________________ (len_plasma_electron_electron_mean_free_path_profile438)_ 1.50316089058802263e+04 -Electron-electron_mean_free_path_at_point_439____________________________ (len_plasma_electron_electron_mean_free_path_profile439)_ 1.48580392761121620e+04 -Electron-electron_mean_free_path_at_point_440____________________________ (len_plasma_electron_electron_mean_free_path_profile440)_ 1.46875623636764849e+04 -Electron-electron_mean_free_path_at_point_441____________________________ (len_plasma_electron_electron_mean_free_path_profile441)_ 1.45202202417868721e+04 -Electron-electron_mean_free_path_at_point_442____________________________ (len_plasma_electron_electron_mean_free_path_profile442)_ 1.43560575121671081e+04 -Electron-electron_mean_free_path_at_point_443____________________________ (len_plasma_electron_electron_mean_free_path_profile443)_ 1.41951215795717981e+04 -Electron-electron_mean_free_path_at_point_444____________________________ (len_plasma_electron_electron_mean_free_path_profile444)_ 1.40374629630206564e+04 -Electron-electron_mean_free_path_at_point_445____________________________ (len_plasma_electron_electron_mean_free_path_profile445)_ 1.38831356500741931e+04 -Electron-electron_mean_free_path_at_point_446____________________________ (len_plasma_electron_electron_mean_free_path_profile446)_ 1.37321975018597477e+04 -Electron-electron_mean_free_path_at_point_447____________________________ (len_plasma_electron_electron_mean_free_path_profile447)_ 1.35847107183097323e+04 -Electron-electron_mean_free_path_at_point_448____________________________ (len_plasma_electron_electron_mean_free_path_profile448)_ 1.34407423753215335e+04 -Electron-electron_mean_free_path_at_point_449____________________________ (len_plasma_electron_electron_mean_free_path_profile449)_ 1.33003650484466616e+04 -Electron-electron_mean_free_path_at_point_450____________________________ (len_plasma_electron_electron_mean_free_path_profile450)_ 1.31636575415224106e+04 -Electron-electron_mean_free_path_at_point_451____________________________ (len_plasma_electron_electron_mean_free_path_profile451)_ 1.30307057436723499e+04 -Electron-electron_mean_free_path_at_point_452____________________________ (len_plasma_electron_electron_mean_free_path_profile452)_ 1.29016036448376963e+04 -Electron-electron_mean_free_path_at_point_453____________________________ (len_plasma_electron_electron_mean_free_path_profile453)_ 1.27764545491413573e+04 -Electron-electron_mean_free_path_at_point_454____________________________ (len_plasma_electron_electron_mean_free_path_profile454)_ 1.26553725379976277e+04 -Electron-electron_mean_free_path_at_point_455____________________________ (len_plasma_electron_electron_mean_free_path_profile455)_ 1.25384842525868607e+04 -Electron-electron_mean_free_path_at_point_456____________________________ (len_plasma_electron_electron_mean_free_path_profile456)_ 1.24259310906285100e+04 -Electron-electron_mean_free_path_at_point_457____________________________ (len_plasma_electron_electron_mean_free_path_profile457)_ 1.23178719493778954e+04 -Electron-electron_mean_free_path_at_point_458____________________________ (len_plasma_electron_electron_mean_free_path_profile458)_ 1.22144867021203718e+04 -Electron-electron_mean_free_path_at_point_459____________________________ (len_plasma_electron_electron_mean_free_path_profile459)_ 1.21159806805514236e+04 -Electron-electron_mean_free_path_at_point_460____________________________ (len_plasma_electron_electron_mean_free_path_profile460)_ 1.20225905704675079e+04 -Electron-electron_mean_free_path_at_point_461____________________________ (len_plasma_electron_electron_mean_free_path_profile461)_ 1.19345923503660524e+04 -Electron-electron_mean_free_path_at_point_462____________________________ (len_plasma_electron_electron_mean_free_path_profile462)_ 1.18523122840359028e+04 -Electron-electron_mean_free_path_at_point_463____________________________ (len_plasma_electron_electron_mean_free_path_profile463)_ 1.17761426675533312e+04 -Electron-electron_mean_free_path_at_point_464____________________________ (len_plasma_electron_electron_mean_free_path_profile464)_ 1.17065653566828914e+04 -Electron-electron_mean_free_path_at_point_465____________________________ (len_plasma_electron_electron_mean_free_path_profile465)_ 1.16441888559309537e+04 -Electron-electron_mean_free_path_at_point_466____________________________ (len_plasma_electron_electron_mean_free_path_profile466)_ 1.15898110829436682e+04 -Electron-electron_mean_free_path_at_point_467____________________________ (len_plasma_electron_electron_mean_free_path_profile467)_ 1.15445366010898088e+04 -Electron-electron_mean_free_path_at_point_468____________________________ (len_plasma_electron_electron_mean_free_path_profile468)_ 1.15100307244291598e+04 -Electron-electron_mean_free_path_at_point_469____________________________ (len_plasma_electron_electron_mean_free_path_profile469)_ 1.14892338186707966e+04 -Electron-electron_mean_free_path_at_point_470____________________________ (len_plasma_electron_electron_mean_free_path_profile470)_ 1.14907314730781018e+04 -Electron-electron_mean_free_path_at_point_471____________________________ (len_plasma_electron_electron_mean_free_path_profile471)_ 1.09204191756514811e+04 -Electron-electron_mean_free_path_at_point_472____________________________ (len_plasma_electron_electron_mean_free_path_profile472)_ 1.03573478176743301e+04 -Electron-electron_mean_free_path_at_point_473____________________________ (len_plasma_electron_electron_mean_free_path_profile473)_ 9.80187303496435743e+03 -Electron-electron_mean_free_path_at_point_474____________________________ (len_plasma_electron_electron_mean_free_path_profile474)_ 9.25437243418441176e+03 -Electron-electron_mean_free_path_at_point_475____________________________ (len_plasma_electron_electron_mean_free_path_profile475)_ 8.71524732626743753e+03 -Electron-electron_mean_free_path_at_point_476____________________________ (len_plasma_electron_electron_mean_free_path_profile476)_ 8.18492463042529835e+03 -Electron-electron_mean_free_path_at_point_477____________________________ (len_plasma_electron_electron_mean_free_path_profile477)_ 7.66385896950705774e+03 -Electron-electron_mean_free_path_at_point_478____________________________ (len_plasma_electron_electron_mean_free_path_profile478)_ 7.15253498061479604e+03 -Electron-electron_mean_free_path_at_point_479____________________________ (len_plasma_electron_electron_mean_free_path_profile479)_ 6.65146986863881102e+03 -Electron-electron_mean_free_path_at_point_480____________________________ (len_plasma_electron_electron_mean_free_path_profile480)_ 6.16121623488048863e+03 -Electron-electron_mean_free_path_at_point_481____________________________ (len_plasma_electron_electron_mean_free_path_profile481)_ 5.68236521838778299e+03 -Electron-electron_mean_free_path_at_point_482____________________________ (len_plasma_electron_electron_mean_free_path_profile482)_ 5.21554999430565022e+03 -Electron-electron_mean_free_path_at_point_483____________________________ (len_plasma_electron_electron_mean_free_path_profile483)_ 4.76144968179601165e+03 -Electron-electron_mean_free_path_at_point_484____________________________ (len_plasma_electron_electron_mean_free_path_profile484)_ 4.32079372441606483e+03 -Electron-electron_mean_free_path_at_point_485____________________________ (len_plasma_electron_electron_mean_free_path_profile485)_ 3.89436681897223707e+03 -Electron-electron_mean_free_path_at_point_486____________________________ (len_plasma_electron_electron_mean_free_path_profile486)_ 3.48301448581867862e+03 -Electron-electron_mean_free_path_at_point_487____________________________ (len_plasma_electron_electron_mean_free_path_profile487)_ 3.08764939589069263e+03 -Electron-electron_mean_free_path_at_point_488____________________________ (len_plasma_electron_electron_mean_free_path_profile488)_ 2.70925859981214944e+03 -Electron-electron_mean_free_path_at_point_489____________________________ (len_plasma_electron_electron_mean_free_path_profile489)_ 2.34891184592573200e+03 -Electron-electron_mean_free_path_at_point_490____________________________ (len_plasma_electron_electron_mean_free_path_profile490)_ 2.00777123318960685e+03 -Electron-electron_mean_free_path_at_point_491____________________________ (len_plasma_electron_electron_mean_free_path_profile491)_ 1.68710253200269290e+03 -Electron-electron_mean_free_path_at_point_492____________________________ (len_plasma_electron_electron_mean_free_path_profile492)_ 1.38828863983269480e+03 -Electron-electron_mean_free_path_at_point_493____________________________ (len_plasma_electron_electron_mean_free_path_profile493)_ 1.11284585417292305e+03 -Electron-electron_mean_free_path_at_point_494____________________________ (len_plasma_electron_electron_mean_free_path_profile494)_ 8.62444013408778460e+02 -Electron-electron_mean_free_path_at_point_495____________________________ (len_plasma_electron_electron_mean_free_path_profile495)_ 6.38932229324136642e+02 -Electron-electron_mean_free_path_at_point_496____________________________ (len_plasma_electron_electron_mean_free_path_profile496)_ 4.44373276384954636e+02 -Electron-electron_mean_free_path_at_point_497____________________________ (len_plasma_electron_electron_mean_free_path_profile497)_ 2.81092687903769956e+02 -Electron-electron_mean_free_path_at_point_498____________________________ (len_plasma_electron_electron_mean_free_path_profile498)_ 1.51756329751311569e+02 -Electron-electron_mean_free_path_at_point_499____________________________ (len_plasma_electron_electron_mean_free_path_profile499)_ 5.95152422390208713e+01 -Electron-electron_mean_free_path_at_point_500____________________________ (len_plasma_electron_electron_mean_free_path_profile500)_ 8.37906237470694037e+00 -Volume_averaged_electron-deuteron_mean_free_path_(λₑD)_(m)_______________ (len_plasma_electron_deuteron_mean_free_path_vol_avg)_ 5.60379291627291896e+04 -Electron-deuteron_mean_free_path_at_point_0______________________________ (len_plasma_electron_deuteron_mean_free_path_profile0)_ 1.74000656210120214e+05 -Electron-deuteron_mean_free_path_at_point_1______________________________ (len_plasma_electron_deuteron_mean_free_path_profile1)_ 1.73999239621668414e+05 -Electron-deuteron_mean_free_path_at_point_2______________________________ (len_plasma_electron_deuteron_mean_free_path_profile2)_ 1.73994989895392646e+05 -Electron-deuteron_mean_free_path_at_point_3______________________________ (len_plasma_electron_deuteron_mean_free_path_profile3)_ 1.73987907148530998e+05 -Electron-deuteron_mean_free_path_at_point_4______________________________ (len_plasma_electron_deuteron_mean_free_path_profile4)_ 1.73977991576482018e+05 -Electron-deuteron_mean_free_path_at_point_5______________________________ (len_plasma_electron_deuteron_mean_free_path_profile5)_ 1.73965243452802853e+05 -Electron-deuteron_mean_free_path_at_point_6______________________________ (len_plasma_electron_deuteron_mean_free_path_profile6)_ 1.73949663129209541e+05 -Electron-deuteron_mean_free_path_at_point_7______________________________ (len_plasma_electron_deuteron_mean_free_path_profile7)_ 1.73931251035580208e+05 -Electron-deuteron_mean_free_path_at_point_8______________________________ (len_plasma_electron_deuteron_mean_free_path_profile8)_ 1.73910007679951494e+05 -Electron-deuteron_mean_free_path_at_point_9______________________________ (len_plasma_electron_deuteron_mean_free_path_profile9)_ 1.73885933648522361e+05 -Electron-deuteron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile10)_ 1.73859029605652118e+05 -Electron-deuteron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile11)_ 1.73829296293862892e+05 -Electron-deuteron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile12)_ 1.73796734533840005e+05 -Electron-deuteron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile13)_ 1.73761345224432036e+05 -Electron-deuteron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile14)_ 1.73723129342652333e+05 -Electron-deuteron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile15)_ 1.73682087943679653e+05 -Electron-deuteron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile16)_ 1.73638222160859354e+05 -Electron-deuteron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile17)_ 1.73591533205704531e+05 -Electron-deuteron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile18)_ 1.73542022367897589e+05 -Electron-deuteron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile19)_ 1.73489691015289427e+05 -Electron-deuteron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile20)_ 1.73434540593903512e+05 -Electron-deuteron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile21)_ 1.73376572627935791e+05 -Electron-deuteron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile22)_ 1.73315788719756150e+05 -Electron-deuteron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile23)_ 1.73252190549909923e+05 -Electron-deuteron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile24)_ 1.73185779877118737e+05 -Electron-deuteron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile25)_ 1.73116558538284298e+05 -Electron-deuteron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile26)_ 1.73044528448487516e+05 -Electron-deuteron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile27)_ 1.72969691600991297e+05 -Electron-deuteron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile28)_ 1.72892050067242846e+05 -Electron-deuteron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile29)_ 1.72811605996874016e+05 -Electron-deuteron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile30)_ 1.72728361617704533e+05 -Electron-deuteron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile31)_ 1.72642319235742529e+05 -Electron-deuteron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile32)_ 1.72553481235187966e+05 -Electron-deuteron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile33)_ 1.72461850078433636e+05 -Electron-deuteron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile34)_ 1.72367428306066053e+05 -Electron-deuteron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile35)_ 1.72270218536870438e+05 -Electron-deuteron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile36)_ 1.72170223467829521e+05 -Electron-deuteron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile37)_ 1.72067445874128258e+05 -Electron-deuteron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile38)_ 1.71961888609153830e+05 -Electron-deuteron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile39)_ 1.71853554604498408e+05 -Electron-deuteron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile40)_ 1.71742446869962005e+05 -Electron-deuteron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile41)_ 1.71628568493554165e+05 -Electron-deuteron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile42)_ 1.71511922641495010e+05 -Electron-deuteron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile43)_ 1.71392512558218936e+05 -Electron-deuteron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile44)_ 1.71270341566376155e+05 -Electron-deuteron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile45)_ 1.71145413066833862e+05 -Electron-deuteron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile46)_ 1.71017730538680218e+05 -Electron-deuteron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile47)_ 1.70887297539224790e+05 -Electron-deuteron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile48)_ 1.70754117704001343e+05 -Electron-deuteron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile49)_ 1.70618194746769528e+05 -Electron-deuteron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile50)_ 1.70479532459517359e+05 -Electron-deuteron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile51)_ 1.70338134712463128e+05 -Electron-deuteron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile52)_ 1.70194005454056925e+05 -Electron-deuteron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile53)_ 1.70047148710982758e+05 -Electron-deuteron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile54)_ 1.69897568588160502e+05 -Electron-deuteron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile55)_ 1.69745269268747681e+05 -Electron-deuteron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile56)_ 1.69590255014140886e+05 -Electron-deuteron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile57)_ 1.69432530163978459e+05 -Electron-deuteron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile58)_ 1.69272099136140809e+05 -Electron-deuteron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile59)_ 1.69108966426752391e+05 -Electron-deuteron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile60)_ 1.68943136610183981e+05 -Electron-deuteron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile61)_ 1.68774614339052612e+05 -Electron-deuteron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile62)_ 1.68603404344223905e+05 -Electron-deuteron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile63)_ 1.68429511434813496e+05 -Electron-deuteron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile64)_ 1.68252940498186508e+05 -Electron-deuteron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile65)_ 1.68073696499960410e+05 -Electron-deuteron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile66)_ 1.67891784484004776e+05 -Electron-deuteron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile67)_ 1.67707209572442836e+05 -Electron-deuteron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile68)_ 1.67519976965650654e+05 -Electron-deuteron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile69)_ 1.67330091942258383e+05 -Electron-deuteron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile70)_ 1.67137559859152127e+05 -Electron-deuteron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile71)_ 1.66942386151470826e+05 -Electron-deuteron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile72)_ 1.66744576332608965e+05 -Electron-deuteron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile73)_ 1.66544135994215700e+05 -Electron-deuteron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile74)_ 1.66341070806193980e+05 -Electron-deuteron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile75)_ 1.66135386516700208e+05 -Electron-deuteron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile76)_ 1.65927088952144724e+05 -Electron-deuteron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile77)_ 1.65716184017188847e+05 -Electron-deuteron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile78)_ 1.65502677694744954e+05 -Electron-deuteron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile79)_ 1.65286576045975875e+05 -Electron-deuteron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile80)_ 1.65067885210291366e+05 -Electron-deuteron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile81)_ 1.64846611405349162e+05 -Electron-deuteron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile82)_ 1.64622760927049065e+05 -Electron-deuteron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile83)_ 1.64396340149535012e+05 -Electron-deuteron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile84)_ 1.64167355525189021e+05 -Electron-deuteron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile85)_ 1.63935813584631542e+05 -Electron-deuteron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile86)_ 1.63701720936714788e+05 -Electron-deuteron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile87)_ 1.63465084268522682e+05 -Electron-deuteron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile88)_ 1.63225910345365701e+05 -Electron-deuteron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile89)_ 1.62984206010776892e+05 -Electron-deuteron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile90)_ 1.62739978186508524e+05 -Electron-deuteron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile91)_ 1.62493233872526151e+05 -Electron-deuteron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile92)_ 1.62243980147004710e+05 -Electron-deuteron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile93)_ 1.61992224166323256e+05 -Electron-deuteron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile94)_ 1.61737973165059258e+05 -Electron-deuteron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile95)_ 1.61481234455982107e+05 -Electron-deuteron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile96)_ 1.61222015430047497e+05 -Electron-deuteron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile97)_ 1.60960323556390562e+05 -Electron-deuteron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile98)_ 1.60696166382318479e+05 -Electron-deuteron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile99)_ 1.60429551533302933e+05 -Electron-deuteron_mean_free_path_at_point_100____________________________ (len_plasma_electron_deuteron_mean_free_path_profile100)_ 1.60160486712972430e+05 -Electron-deuteron_mean_free_path_at_point_101____________________________ (len_plasma_electron_deuteron_mean_free_path_profile101)_ 1.59888979703104327e+05 -Electron-deuteron_mean_free_path_at_point_102____________________________ (len_plasma_electron_deuteron_mean_free_path_profile102)_ 1.59615038363614498e+05 -Electron-deuteron_mean_free_path_at_point_103____________________________ (len_plasma_electron_deuteron_mean_free_path_profile103)_ 1.59338670632549736e+05 -Electron-deuteron_mean_free_path_at_point_104____________________________ (len_plasma_electron_deuteron_mean_free_path_profile104)_ 1.59059884526077687e+05 -Electron-deuteron_mean_free_path_at_point_105____________________________ (len_plasma_electron_deuteron_mean_free_path_profile105)_ 1.58778688138475089e+05 -Electron-deuteron_mean_free_path_at_point_106____________________________ (len_plasma_electron_deuteron_mean_free_path_profile106)_ 1.58495089642119186e+05 -Electron-deuteron_mean_free_path_at_point_107____________________________ (len_plasma_electron_deuteron_mean_free_path_profile107)_ 1.58209097287475539e+05 -Electron-deuteron_mean_free_path_at_point_108____________________________ (len_plasma_electron_deuteron_mean_free_path_profile108)_ 1.57920719403085503e+05 -Electron-deuteron_mean_free_path_at_point_109____________________________ (len_plasma_electron_deuteron_mean_free_path_profile109)_ 1.57629964395556017e+05 -Electron-deuteron_mean_free_path_at_point_110____________________________ (len_plasma_electron_deuteron_mean_free_path_profile110)_ 1.57336840749544179e+05 -Electron-deuteron_mean_free_path_at_point_111____________________________ (len_plasma_electron_deuteron_mean_free_path_profile111)_ 1.57041357027746242e+05 -Electron-deuteron_mean_free_path_at_point_112____________________________ (len_plasma_electron_deuteron_mean_free_path_profile112)_ 1.56743521870881756e+05 -Electron-deuteron_mean_free_path_at_point_113____________________________ (len_plasma_electron_deuteron_mean_free_path_profile113)_ 1.56443343997680553e+05 -Electron-deuteron_mean_free_path_at_point_114____________________________ (len_plasma_electron_deuteron_mean_free_path_profile114)_ 1.56140832204866194e+05 -Electron-deuteron_mean_free_path_at_point_115____________________________ (len_plasma_electron_deuteron_mean_free_path_profile115)_ 1.55835995367142459e+05 -Electron-deuteron_mean_free_path_at_point_116____________________________ (len_plasma_electron_deuteron_mean_free_path_profile116)_ 1.55528842437173240e+05 -Electron-deuteron_mean_free_path_at_point_117____________________________ (len_plasma_electron_deuteron_mean_free_path_profile117)_ 1.55219382445569820e+05 -Electron-deuteron_mean_free_path_at_point_118____________________________ (len_plasma_electron_deuteron_mean_free_path_profile118)_ 1.54907624500869599e+05 -Electron-deuteron_mean_free_path_at_point_119____________________________ (len_plasma_electron_deuteron_mean_free_path_profile119)_ 1.54593577789520554e+05 -Electron-deuteron_mean_free_path_at_point_120____________________________ (len_plasma_electron_deuteron_mean_free_path_profile120)_ 1.54277251575859031e+05 -Electron-deuteron_mean_free_path_at_point_121____________________________ (len_plasma_electron_deuteron_mean_free_path_profile121)_ 1.53958655202093738e+05 -Electron-deuteron_mean_free_path_at_point_122____________________________ (len_plasma_electron_deuteron_mean_free_path_profile122)_ 1.53637798088282027e+05 -Electron-deuteron_mean_free_path_at_point_123____________________________ (len_plasma_electron_deuteron_mean_free_path_profile123)_ 1.53314689732310595e+05 -Electron-deuteron_mean_free_path_at_point_124____________________________ (len_plasma_electron_deuteron_mean_free_path_profile124)_ 1.52989339709872555e+05 -Electron-deuteron_mean_free_path_at_point_125____________________________ (len_plasma_electron_deuteron_mean_free_path_profile125)_ 1.52661757674445020e+05 -Electron-deuteron_mean_free_path_at_point_126____________________________ (len_plasma_electron_deuteron_mean_free_path_profile126)_ 1.52331953357265971e+05 -Electron-deuteron_mean_free_path_at_point_127____________________________ (len_plasma_electron_deuteron_mean_free_path_profile127)_ 1.51999936567308905e+05 -Electron-deuteron_mean_free_path_at_point_128____________________________ (len_plasma_electron_deuteron_mean_free_path_profile128)_ 1.51665717191258707e+05 -Electron-deuteron_mean_free_path_at_point_129____________________________ (len_plasma_electron_deuteron_mean_free_path_profile129)_ 1.51329305193484906e+05 -Electron-deuteron_mean_free_path_at_point_130____________________________ (len_plasma_electron_deuteron_mean_free_path_profile130)_ 1.50990710616015072e+05 -Electron-deuteron_mean_free_path_at_point_131____________________________ (len_plasma_electron_deuteron_mean_free_path_profile131)_ 1.50649943578507897e+05 -Electron-deuteron_mean_free_path_at_point_132____________________________ (len_plasma_electron_deuteron_mean_free_path_profile132)_ 1.50307014278221992e+05 -Electron-deuteron_mean_free_path_at_point_133____________________________ (len_plasma_electron_deuteron_mean_free_path_profile133)_ 1.49961932989990717e+05 -Electron-deuteron_mean_free_path_at_point_134____________________________ (len_plasma_electron_deuteron_mean_free_path_profile134)_ 1.49614710066186497e+05 -Electron-deuteron_mean_free_path_at_point_135____________________________ (len_plasma_electron_deuteron_mean_free_path_profile135)_ 1.49265355936693872e+05 -Electron-deuteron_mean_free_path_at_point_136____________________________ (len_plasma_electron_deuteron_mean_free_path_profile136)_ 1.48913881108874339e+05 -Electron-deuteron_mean_free_path_at_point_137____________________________ (len_plasma_electron_deuteron_mean_free_path_profile137)_ 1.48560296167534543e+05 -Electron-deuteron_mean_free_path_at_point_138____________________________ (len_plasma_electron_deuteron_mean_free_path_profile138)_ 1.48204611774889781e+05 -Electron-deuteron_mean_free_path_at_point_139____________________________ (len_plasma_electron_deuteron_mean_free_path_profile139)_ 1.47846838670531404e+05 -Electron-deuteron_mean_free_path_at_point_140____________________________ (len_plasma_electron_deuteron_mean_free_path_profile140)_ 1.47486987671388837e+05 -Electron-deuteron_mean_free_path_at_point_141____________________________ (len_plasma_electron_deuteron_mean_free_path_profile141)_ 1.47125069671691512e+05 -Electron-deuteron_mean_free_path_at_point_142____________________________ (len_plasma_electron_deuteron_mean_free_path_profile142)_ 1.46761095642930624e+05 -Electron-deuteron_mean_free_path_at_point_143____________________________ (len_plasma_electron_deuteron_mean_free_path_profile143)_ 1.46395076633820863e+05 -Electron-deuteron_mean_free_path_at_point_144____________________________ (len_plasma_electron_deuteron_mean_free_path_profile144)_ 1.46027023770256987e+05 -Electron-deuteron_mean_free_path_at_point_145____________________________ (len_plasma_electron_deuteron_mean_free_path_profile145)_ 1.45656948255273339e+05 -Electron-deuteron_mean_free_path_at_point_146____________________________ (len_plasma_electron_deuteron_mean_free_path_profile146)_ 1.45284861369000544e+05 -Electron-deuteron_mean_free_path_at_point_147____________________________ (len_plasma_electron_deuteron_mean_free_path_profile147)_ 1.44910774468621094e+05 -Electron-deuteron_mean_free_path_at_point_148____________________________ (len_plasma_electron_deuteron_mean_free_path_profile148)_ 1.44534698988322780e+05 -Electron-deuteron_mean_free_path_at_point_149____________________________ (len_plasma_electron_deuteron_mean_free_path_profile149)_ 1.44156646439253091e+05 -Electron-deuteron_mean_free_path_at_point_150____________________________ (len_plasma_electron_deuteron_mean_free_path_profile150)_ 1.43776628409469791e+05 -Electron-deuteron_mean_free_path_at_point_151____________________________ (len_plasma_electron_deuteron_mean_free_path_profile151)_ 1.43394656563892902e+05 -Electron-deuteron_mean_free_path_at_point_152____________________________ (len_plasma_electron_deuteron_mean_free_path_profile152)_ 1.43010742644252226e+05 -Electron-deuteron_mean_free_path_at_point_153____________________________ (len_plasma_electron_deuteron_mean_free_path_profile153)_ 1.42624898469036969e+05 -Electron-deuteron_mean_free_path_at_point_154____________________________ (len_plasma_electron_deuteron_mean_free_path_profile154)_ 1.42237135933440906e+05 -Electron-deuteron_mean_free_path_at_point_155____________________________ (len_plasma_electron_deuteron_mean_free_path_profile155)_ 1.41847467009307846e+05 -Electron-deuteron_mean_free_path_at_point_156____________________________ (len_plasma_electron_deuteron_mean_free_path_profile156)_ 1.41455903745075513e+05 -Electron-deuteron_mean_free_path_at_point_157____________________________ (len_plasma_electron_deuteron_mean_free_path_profile157)_ 1.41062458265718044e+05 -Electron-deuteron_mean_free_path_at_point_158____________________________ (len_plasma_electron_deuteron_mean_free_path_profile158)_ 1.40667142772686027e+05 -Electron-deuteron_mean_free_path_at_point_159____________________________ (len_plasma_electron_deuteron_mean_free_path_profile159)_ 1.40269969543846644e+05 -Electron-deuteron_mean_free_path_at_point_160____________________________ (len_plasma_electron_deuteron_mean_free_path_profile160)_ 1.39870950933420710e+05 -Electron-deuteron_mean_free_path_at_point_161____________________________ (len_plasma_electron_deuteron_mean_free_path_profile161)_ 1.39470099371919176e+05 -Electron-deuteron_mean_free_path_at_point_162____________________________ (len_plasma_electron_deuteron_mean_free_path_profile162)_ 1.39067427366077784e+05 -Electron-deuteron_mean_free_path_at_point_163____________________________ (len_plasma_electron_deuteron_mean_free_path_profile163)_ 1.38662947498789872e+05 -Electron-deuteron_mean_free_path_at_point_164____________________________ (len_plasma_electron_deuteron_mean_free_path_profile164)_ 1.38256672429038357e+05 -Electron-deuteron_mean_free_path_at_point_165____________________________ (len_plasma_electron_deuteron_mean_free_path_profile165)_ 1.37848614891824545e+05 -Electron-deuteron_mean_free_path_at_point_166____________________________ (len_plasma_electron_deuteron_mean_free_path_profile166)_ 1.37438787698097469e+05 -Electron-deuteron_mean_free_path_at_point_167____________________________ (len_plasma_electron_deuteron_mean_free_path_profile167)_ 1.37027203734678478e+05 -Electron-deuteron_mean_free_path_at_point_168____________________________ (len_plasma_electron_deuteron_mean_free_path_profile168)_ 1.36613875964186940e+05 -Electron-deuteron_mean_free_path_at_point_169____________________________ (len_plasma_electron_deuteron_mean_free_path_profile169)_ 1.36198817424963723e+05 -Electron-deuteron_mean_free_path_at_point_170____________________________ (len_plasma_electron_deuteron_mean_free_path_profile170)_ 1.35782041230989766e+05 -Electron-deuteron_mean_free_path_at_point_171____________________________ (len_plasma_electron_deuteron_mean_free_path_profile171)_ 1.35363560571807873e+05 -Electron-deuteron_mean_free_path_at_point_172____________________________ (len_plasma_electron_deuteron_mean_free_path_profile172)_ 1.34943388712438231e+05 -Electron-deuteron_mean_free_path_at_point_173____________________________ (len_plasma_electron_deuteron_mean_free_path_profile173)_ 1.34521538993294816e+05 -Electron-deuteron_mean_free_path_at_point_174____________________________ (len_plasma_electron_deuteron_mean_free_path_profile174)_ 1.34098024830097624e+05 -Electron-deuteron_mean_free_path_at_point_175____________________________ (len_plasma_electron_deuteron_mean_free_path_profile175)_ 1.33672859713785030e+05 -Electron-deuteron_mean_free_path_at_point_176____________________________ (len_plasma_electron_deuteron_mean_free_path_profile176)_ 1.33246057210423402e+05 -Electron-deuteron_mean_free_path_at_point_177____________________________ (len_plasma_electron_deuteron_mean_free_path_profile177)_ 1.32817630961113580e+05 -Electron-deuteron_mean_free_path_at_point_178____________________________ (len_plasma_electron_deuteron_mean_free_path_profile178)_ 1.32387594681896589e+05 -Electron-deuteron_mean_free_path_at_point_179____________________________ (len_plasma_electron_deuteron_mean_free_path_profile179)_ 1.31955962163657532e+05 -Electron-deuteron_mean_free_path_at_point_180____________________________ (len_plasma_electron_deuteron_mean_free_path_profile180)_ 1.31522747272025910e+05 -Electron-deuteron_mean_free_path_at_point_181____________________________ (len_plasma_electron_deuteron_mean_free_path_profile181)_ 1.31087963947274693e+05 -Electron-deuteron_mean_free_path_at_point_182____________________________ (len_plasma_electron_deuteron_mean_free_path_profile182)_ 1.30651626204216809e+05 -Electron-deuteron_mean_free_path_at_point_183____________________________ (len_plasma_electron_deuteron_mean_free_path_profile183)_ 1.30213748132100256e+05 -Electron-deuteron_mean_free_path_at_point_184____________________________ (len_plasma_electron_deuteron_mean_free_path_profile184)_ 1.29774343894499238e+05 -Electron-deuteron_mean_free_path_at_point_185____________________________ (len_plasma_electron_deuteron_mean_free_path_profile185)_ 1.29333427729205228e+05 -Electron-deuteron_mean_free_path_at_point_186____________________________ (len_plasma_electron_deuteron_mean_free_path_profile186)_ 1.28891013948114065e+05 -Electron-deuteron_mean_free_path_at_point_187____________________________ (len_plasma_electron_deuteron_mean_free_path_profile187)_ 1.28447116937109822e+05 -Electron-deuteron_mean_free_path_at_point_188____________________________ (len_plasma_electron_deuteron_mean_free_path_profile188)_ 1.28001751155949620e+05 -Electron-deuteron_mean_free_path_at_point_189____________________________ (len_plasma_electron_deuteron_mean_free_path_profile189)_ 1.27554931138141517e+05 -Electron-deuteron_mean_free_path_at_point_190____________________________ (len_plasma_electron_deuteron_mean_free_path_profile190)_ 1.27106671490824199e+05 -Electron-deuteron_mean_free_path_at_point_191____________________________ (len_plasma_electron_deuteron_mean_free_path_profile191)_ 1.26656986894641086e+05 -Electron-deuteron_mean_free_path_at_point_192____________________________ (len_plasma_electron_deuteron_mean_free_path_profile192)_ 1.26205892103612656e+05 -Electron-deuteron_mean_free_path_at_point_193____________________________ (len_plasma_electron_deuteron_mean_free_path_profile193)_ 1.25753401945006714e+05 -Electron-deuteron_mean_free_path_at_point_194____________________________ (len_plasma_electron_deuteron_mean_free_path_profile194)_ 1.25299531319205911e+05 -Electron-deuteron_mean_free_path_at_point_195____________________________ (len_plasma_electron_deuteron_mean_free_path_profile195)_ 1.24844295199571206e+05 -Electron-deuteron_mean_free_path_at_point_196____________________________ (len_plasma_electron_deuteron_mean_free_path_profile196)_ 1.24387708632305556e+05 -Electron-deuteron_mean_free_path_at_point_197____________________________ (len_plasma_electron_deuteron_mean_free_path_profile197)_ 1.23929786736309659e+05 -Electron-deuteron_mean_free_path_at_point_198____________________________ (len_plasma_electron_deuteron_mean_free_path_profile198)_ 1.23470544703042018e+05 -Electron-deuteron_mean_free_path_at_point_199____________________________ (len_plasma_electron_deuteron_mean_free_path_profile199)_ 1.23009997796368363e+05 -Electron-deuteron_mean_free_path_at_point_200____________________________ (len_plasma_electron_deuteron_mean_free_path_profile200)_ 1.22548161352414463e+05 -Electron-deuteron_mean_free_path_at_point_201____________________________ (len_plasma_electron_deuteron_mean_free_path_profile201)_ 1.22085050779412762e+05 -Electron-deuteron_mean_free_path_at_point_202____________________________ (len_plasma_electron_deuteron_mean_free_path_profile202)_ 1.21620681557545802e+05 -Electron-deuteron_mean_free_path_at_point_203____________________________ (len_plasma_electron_deuteron_mean_free_path_profile203)_ 1.21155069238788041e+05 -Electron-deuteron_mean_free_path_at_point_204____________________________ (len_plasma_electron_deuteron_mean_free_path_profile204)_ 1.20688229446744488e+05 -Electron-deuteron_mean_free_path_at_point_205____________________________ (len_plasma_electron_deuteron_mean_free_path_profile205)_ 1.20220177876484522e+05 -Electron-deuteron_mean_free_path_at_point_206____________________________ (len_plasma_electron_deuteron_mean_free_path_profile206)_ 1.19750930294374280e+05 -Electron-deuteron_mean_free_path_at_point_207____________________________ (len_plasma_electron_deuteron_mean_free_path_profile207)_ 1.19280502537904540e+05 -Electron-deuteron_mean_free_path_at_point_208____________________________ (len_plasma_electron_deuteron_mean_free_path_profile208)_ 1.18808910515516167e+05 -Electron-deuteron_mean_free_path_at_point_209____________________________ (len_plasma_electron_deuteron_mean_free_path_profile209)_ 1.18336170206422423e+05 -Electron-deuteron_mean_free_path_at_point_210____________________________ (len_plasma_electron_deuteron_mean_free_path_profile210)_ 1.17862297660425756e+05 -Electron-deuteron_mean_free_path_at_point_211____________________________ (len_plasma_electron_deuteron_mean_free_path_profile211)_ 1.17387308997734464e+05 -Electron-deuteron_mean_free_path_at_point_212____________________________ (len_plasma_electron_deuteron_mean_free_path_profile212)_ 1.16911220408772642e+05 -Electron-deuteron_mean_free_path_at_point_213____________________________ (len_plasma_electron_deuteron_mean_free_path_profile213)_ 1.16434048153988202e+05 -Electron-deuteron_mean_free_path_at_point_214____________________________ (len_plasma_electron_deuteron_mean_free_path_profile214)_ 1.15955808563658109e+05 -Electron-deuteron_mean_free_path_at_point_215____________________________ (len_plasma_electron_deuteron_mean_free_path_profile215)_ 1.15476518037687856e+05 -Electron-deuteron_mean_free_path_at_point_216____________________________ (len_plasma_electron_deuteron_mean_free_path_profile216)_ 1.14996193045408130e+05 -Electron-deuteron_mean_free_path_at_point_217____________________________ (len_plasma_electron_deuteron_mean_free_path_profile217)_ 1.14514850125368452e+05 -Electron-deuteron_mean_free_path_at_point_218____________________________ (len_plasma_electron_deuteron_mean_free_path_profile218)_ 1.14032505885125604e+05 -Electron-deuteron_mean_free_path_at_point_219____________________________ (len_plasma_electron_deuteron_mean_free_path_profile219)_ 1.13549177001030301e+05 -Electron-deuteron_mean_free_path_at_point_220____________________________ (len_plasma_electron_deuteron_mean_free_path_profile220)_ 1.13064880218006525e+05 -Electron-deuteron_mean_free_path_at_point_221____________________________ (len_plasma_electron_deuteron_mean_free_path_profile221)_ 1.12579632349330059e+05 -Electron-deuteron_mean_free_path_at_point_222____________________________ (len_plasma_electron_deuteron_mean_free_path_profile222)_ 1.12093450276401607e+05 -Electron-deuteron_mean_free_path_at_point_223____________________________ (len_plasma_electron_deuteron_mean_free_path_profile223)_ 1.11606350948516061e+05 -Electron-deuteron_mean_free_path_at_point_224____________________________ (len_plasma_electron_deuteron_mean_free_path_profile224)_ 1.11118351382627079e+05 -Electron-deuteron_mean_free_path_at_point_225____________________________ (len_plasma_electron_deuteron_mean_free_path_profile225)_ 1.10629468663107415e+05 -Electron-deuteron_mean_free_path_at_point_226____________________________ (len_plasma_electron_deuteron_mean_free_path_profile226)_ 1.10139719941506424e+05 -Electron-deuteron_mean_free_path_at_point_227____________________________ (len_plasma_electron_deuteron_mean_free_path_profile227)_ 1.09649122436301652e+05 -Electron-deuteron_mean_free_path_at_point_228____________________________ (len_plasma_electron_deuteron_mean_free_path_profile228)_ 1.09157693432645538e+05 -Electron-deuteron_mean_free_path_at_point_229____________________________ (len_plasma_electron_deuteron_mean_free_path_profile229)_ 1.08665450282110571e+05 -Electron-deuteron_mean_free_path_at_point_230____________________________ (len_plasma_electron_deuteron_mean_free_path_profile230)_ 1.08172410402426074e+05 -Electron-deuteron_mean_free_path_at_point_231____________________________ (len_plasma_electron_deuteron_mean_free_path_profile231)_ 1.07678591277212647e+05 -Electron-deuteron_mean_free_path_at_point_232____________________________ (len_plasma_electron_deuteron_mean_free_path_profile232)_ 1.07184010455712923e+05 -Electron-deuteron_mean_free_path_at_point_233____________________________ (len_plasma_electron_deuteron_mean_free_path_profile233)_ 1.06688685552512965e+05 -Electron-deuteron_mean_free_path_at_point_234____________________________ (len_plasma_electron_deuteron_mean_free_path_profile234)_ 1.06192634247266222e+05 -Electron-deuteron_mean_free_path_at_point_235____________________________ (len_plasma_electron_deuteron_mean_free_path_profile235)_ 1.05695874284405203e+05 -Electron-deuteron_mean_free_path_at_point_236____________________________ (len_plasma_electron_deuteron_mean_free_path_profile236)_ 1.05198423472852883e+05 -Electron-deuteron_mean_free_path_at_point_237____________________________ (len_plasma_electron_deuteron_mean_free_path_profile237)_ 1.04700299685727645e+05 -Electron-deuteron_mean_free_path_at_point_238____________________________ (len_plasma_electron_deuteron_mean_free_path_profile238)_ 1.04201520860042991e+05 -Electron-deuteron_mean_free_path_at_point_239____________________________ (len_plasma_electron_deuteron_mean_free_path_profile239)_ 1.03702104996401904e+05 -Electron-deuteron_mean_free_path_at_point_240____________________________ (len_plasma_electron_deuteron_mean_free_path_profile240)_ 1.03202070158688148e+05 -Electron-deuteron_mean_free_path_at_point_241____________________________ (len_plasma_electron_deuteron_mean_free_path_profile241)_ 1.02701434473748654e+05 -Electron-deuteron_mean_free_path_at_point_242____________________________ (len_plasma_electron_deuteron_mean_free_path_profile242)_ 1.02200216131073539e+05 -Electron-deuteron_mean_free_path_at_point_243____________________________ (len_plasma_electron_deuteron_mean_free_path_profile243)_ 1.01698433382469666e+05 -Electron-deuteron_mean_free_path_at_point_244____________________________ (len_plasma_electron_deuteron_mean_free_path_profile244)_ 1.01196104541728419e+05 -Electron-deuteron_mean_free_path_at_point_245____________________________ (len_plasma_electron_deuteron_mean_free_path_profile245)_ 1.00693247984288406e+05 -Electron-deuteron_mean_free_path_at_point_246____________________________ (len_plasma_electron_deuteron_mean_free_path_profile246)_ 1.00189882146892953e+05 -Electron-deuteron_mean_free_path_at_point_247____________________________ (len_plasma_electron_deuteron_mean_free_path_profile247)_ 9.96860255272405484e+04 -Electron-deuteron_mean_free_path_at_point_248____________________________ (len_plasma_electron_deuteron_mean_free_path_profile248)_ 9.91816966836310166e+04 -Electron-deuteron_mean_free_path_at_point_249____________________________ (len_plasma_electron_deuteron_mean_free_path_profile249)_ 9.86769142346043809e+04 -Electron-deuteron_mean_free_path_at_point_250____________________________ (len_plasma_electron_deuteron_mean_free_path_profile250)_ 9.81716968585750001e+04 -Electron-deuteron_mean_free_path_at_point_251____________________________ (len_plasma_electron_deuteron_mean_free_path_profile251)_ 9.76660632934598252e+04 -Electron-deuteron_mean_free_path_at_point_252____________________________ (len_plasma_electron_deuteron_mean_free_path_profile252)_ 9.71600323362995696e+04 -Electron-deuteron_mean_free_path_at_point_253____________________________ (len_plasma_electron_deuteron_mean_free_path_profile253)_ 9.66536228428735340e+04 -Electron-deuteron_mean_free_path_at_point_254____________________________ (len_plasma_electron_deuteron_mean_free_path_profile254)_ 9.61468537273108959e+04 -Electron-deuteron_mean_free_path_at_point_255____________________________ (len_plasma_electron_deuteron_mean_free_path_profile255)_ 9.56397439616911870e+04 -Electron-deuteron_mean_free_path_at_point_256____________________________ (len_plasma_electron_deuteron_mean_free_path_profile256)_ 9.51323125756437366e+04 -Electron-deuteron_mean_free_path_at_point_257____________________________ (len_plasma_electron_deuteron_mean_free_path_profile257)_ 9.46245786559347616e+04 -Electron-deuteron_mean_free_path_at_point_258____________________________ (len_plasma_electron_deuteron_mean_free_path_profile258)_ 9.41165613460546592e+04 -Electron-deuteron_mean_free_path_at_point_259____________________________ (len_plasma_electron_deuteron_mean_free_path_profile259)_ 9.36082798457918543e+04 -Electron-deuteron_mean_free_path_at_point_260____________________________ (len_plasma_electron_deuteron_mean_free_path_profile260)_ 9.30997534108051332e+04 -Electron-deuteron_mean_free_path_at_point_261____________________________ (len_plasma_electron_deuteron_mean_free_path_profile261)_ 9.25910013521865621e+04 -Electron-deuteron_mean_free_path_at_point_262____________________________ (len_plasma_electron_deuteron_mean_free_path_profile262)_ 9.20820430360194441e+04 -Electron-deuteron_mean_free_path_at_point_263____________________________ (len_plasma_electron_deuteron_mean_free_path_profile263)_ 9.15728978829265252e+04 -Electron-deuteron_mean_free_path_at_point_264____________________________ (len_plasma_electron_deuteron_mean_free_path_profile264)_ 9.10635853676141851e+04 -Electron-deuteron_mean_free_path_at_point_265____________________________ (len_plasma_electron_deuteron_mean_free_path_profile265)_ 9.05541250184079545e+04 -Electron-deuteron_mean_free_path_at_point_266____________________________ (len_plasma_electron_deuteron_mean_free_path_profile266)_ 9.00445364167814550e+04 -Electron-deuteron_mean_free_path_at_point_267____________________________ (len_plasma_electron_deuteron_mean_free_path_profile267)_ 8.95348391968776414e+04 -Electron-deuteron_mean_free_path_at_point_268____________________________ (len_plasma_electron_deuteron_mean_free_path_profile268)_ 8.90250530450240331e+04 -Electron-deuteron_mean_free_path_at_point_269____________________________ (len_plasma_electron_deuteron_mean_free_path_profile269)_ 8.85151976992374548e+04 -Electron-deuteron_mean_free_path_at_point_270____________________________ (len_plasma_electron_deuteron_mean_free_path_profile270)_ 8.80052929487262154e+04 -Electron-deuteron_mean_free_path_at_point_271____________________________ (len_plasma_electron_deuteron_mean_free_path_profile271)_ 8.74953586333797721e+04 -Electron-deuteron_mean_free_path_at_point_272____________________________ (len_plasma_electron_deuteron_mean_free_path_profile272)_ 8.69854146432538691e+04 -Electron-deuteron_mean_free_path_at_point_273____________________________ (len_plasma_electron_deuteron_mean_free_path_profile273)_ 8.64754809180478333e+04 -Electron-deuteron_mean_free_path_at_point_274____________________________ (len_plasma_electron_deuteron_mean_free_path_profile274)_ 8.59655774465716822e+04 -Electron-deuteron_mean_free_path_at_point_275____________________________ (len_plasma_electron_deuteron_mean_free_path_profile275)_ 8.54557242662090721e+04 -Electron-deuteron_mean_free_path_at_point_276____________________________ (len_plasma_electron_deuteron_mean_free_path_profile276)_ 8.49459414623693592e+04 -Electron-deuteron_mean_free_path_at_point_277____________________________ (len_plasma_electron_deuteron_mean_free_path_profile277)_ 8.44362491679324012e+04 -Electron-deuteron_mean_free_path_at_point_278____________________________ (len_plasma_electron_deuteron_mean_free_path_profile278)_ 8.39266675626868382e+04 -Electron-deuteron_mean_free_path_at_point_279____________________________ (len_plasma_electron_deuteron_mean_free_path_profile279)_ 8.34172168727579410e+04 -Electron-deuteron_mean_free_path_at_point_280____________________________ (len_plasma_electron_deuteron_mean_free_path_profile280)_ 8.29079173700282845e+04 -Electron-deuteron_mean_free_path_at_point_281____________________________ (len_plasma_electron_deuteron_mean_free_path_profile281)_ 8.23987893715514947e+04 -Electron-deuteron_mean_free_path_at_point_282____________________________ (len_plasma_electron_deuteron_mean_free_path_profile282)_ 8.18898532389555912e+04 -Electron-deuteron_mean_free_path_at_point_283____________________________ (len_plasma_electron_deuteron_mean_free_path_profile283)_ 8.13811293778377003e+04 -Electron-deuteron_mean_free_path_at_point_284____________________________ (len_plasma_electron_deuteron_mean_free_path_profile284)_ 8.08726382371533691e+04 -Electron-deuteron_mean_free_path_at_point_285____________________________ (len_plasma_electron_deuteron_mean_free_path_profile285)_ 8.03644003085933509e+04 -Electron-deuteron_mean_free_path_at_point_286____________________________ (len_plasma_electron_deuteron_mean_free_path_profile286)_ 7.98564361259556026e+04 -Electron-deuteron_mean_free_path_at_point_287____________________________ (len_plasma_electron_deuteron_mean_free_path_profile287)_ 7.93487662645046657e+04 -Electron-deuteron_mean_free_path_at_point_288____________________________ (len_plasma_electron_deuteron_mean_free_path_profile288)_ 7.88414113403259835e+04 -Electron-deuteron_mean_free_path_at_point_289____________________________ (len_plasma_electron_deuteron_mean_free_path_profile289)_ 7.83343920096692018e+04 -Electron-deuteron_mean_free_path_at_point_290____________________________ (len_plasma_electron_deuteron_mean_free_path_profile290)_ 7.78277289682836708e+04 -Electron-deuteron_mean_free_path_at_point_291____________________________ (len_plasma_electron_deuteron_mean_free_path_profile291)_ 7.73214429507439345e+04 -Electron-deuteron_mean_free_path_at_point_292____________________________ (len_plasma_electron_deuteron_mean_free_path_profile292)_ 7.68155547297680023e+04 -Electron-deuteron_mean_free_path_at_point_293____________________________ (len_plasma_electron_deuteron_mean_free_path_profile293)_ 7.63100851155247074e+04 -Electron-deuteron_mean_free_path_at_point_294____________________________ (len_plasma_electron_deuteron_mean_free_path_profile294)_ 7.58050549549340358e+04 -Electron-deuteron_mean_free_path_at_point_295____________________________ (len_plasma_electron_deuteron_mean_free_path_profile295)_ 7.53004851309561054e+04 -Electron-deuteron_mean_free_path_at_point_296____________________________ (len_plasma_electron_deuteron_mean_free_path_profile296)_ 7.47963965618736547e+04 -Electron-deuteron_mean_free_path_at_point_297____________________________ (len_plasma_electron_deuteron_mean_free_path_profile297)_ 7.42928102005628461e+04 -Electron-deuteron_mean_free_path_at_point_298____________________________ (len_plasma_electron_deuteron_mean_free_path_profile298)_ 7.37897470337569393e+04 -Electron-deuteron_mean_free_path_at_point_299____________________________ (len_plasma_electron_deuteron_mean_free_path_profile299)_ 7.32872280812995596e+04 -Electron-deuteron_mean_free_path_at_point_300____________________________ (len_plasma_electron_deuteron_mean_free_path_profile300)_ 7.27852743953892204e+04 -Electron-deuteron_mean_free_path_at_point_301____________________________ (len_plasma_electron_deuteron_mean_free_path_profile301)_ 7.22839070598141407e+04 -Electron-deuteron_mean_free_path_at_point_302____________________________ (len_plasma_electron_deuteron_mean_free_path_profile302)_ 7.17831471891794936e+04 -Electron-deuteron_mean_free_path_at_point_303____________________________ (len_plasma_electron_deuteron_mean_free_path_profile303)_ 7.12830159281223750e+04 -Electron-deuteron_mean_free_path_at_point_304____________________________ (len_plasma_electron_deuteron_mean_free_path_profile304)_ 7.07835344505207759e+04 -Electron-deuteron_mean_free_path_at_point_305____________________________ (len_plasma_electron_deuteron_mean_free_path_profile305)_ 7.02847239586917422e+04 -Electron-deuteron_mean_free_path_at_point_306____________________________ (len_plasma_electron_deuteron_mean_free_path_profile306)_ 6.97866056825794803e+04 -Electron-deuteron_mean_free_path_at_point_307____________________________ (len_plasma_electron_deuteron_mean_free_path_profile307)_ 6.92892008789363754e+04 -Electron-deuteron_mean_free_path_at_point_308____________________________ (len_plasma_electron_deuteron_mean_free_path_profile308)_ 6.87925308304933424e+04 -Electron-deuteron_mean_free_path_at_point_309____________________________ (len_plasma_electron_deuteron_mean_free_path_profile309)_ 6.82966168451216217e+04 -Electron-deuteron_mean_free_path_at_point_310____________________________ (len_plasma_electron_deuteron_mean_free_path_profile310)_ 6.78014802549850574e+04 -Electron-deuteron_mean_free_path_at_point_311____________________________ (len_plasma_electron_deuteron_mean_free_path_profile311)_ 6.73071424156842550e+04 -Electron-deuteron_mean_free_path_at_point_312____________________________ (len_plasma_electron_deuteron_mean_free_path_profile312)_ 6.68136247053913685e+04 -Electron-deuteron_mean_free_path_at_point_313____________________________ (len_plasma_electron_deuteron_mean_free_path_profile313)_ 6.63209485239745554e+04 -Electron-deuteron_mean_free_path_at_point_314____________________________ (len_plasma_electron_deuteron_mean_free_path_profile314)_ 6.58291352921169164e+04 -Electron-deuteron_mean_free_path_at_point_315____________________________ (len_plasma_electron_deuteron_mean_free_path_profile315)_ 6.53382064504237642e+04 -Electron-deuteron_mean_free_path_at_point_316____________________________ (len_plasma_electron_deuteron_mean_free_path_profile316)_ 6.48481834585222387e+04 -Electron-deuteron_mean_free_path_at_point_317____________________________ (len_plasma_electron_deuteron_mean_free_path_profile317)_ 6.43590877941541403e+04 -Electron-deuteron_mean_free_path_at_point_318____________________________ (len_plasma_electron_deuteron_mean_free_path_profile318)_ 6.38709409522568021e+04 -Electron-deuteron_mean_free_path_at_point_319____________________________ (len_plasma_electron_deuteron_mean_free_path_profile319)_ 6.33837644440398799e+04 -Electron-deuteron_mean_free_path_at_point_320____________________________ (len_plasma_electron_deuteron_mean_free_path_profile320)_ 6.28975797960518539e+04 -Electron-deuteron_mean_free_path_at_point_321____________________________ (len_plasma_electron_deuteron_mean_free_path_profile321)_ 6.24124085492385057e+04 -Electron-deuteron_mean_free_path_at_point_322____________________________ (len_plasma_electron_deuteron_mean_free_path_profile322)_ 6.19282722579959009e+04 -Electron-deuteron_mean_free_path_at_point_323____________________________ (len_plasma_electron_deuteron_mean_free_path_profile323)_ 6.14451924892129609e+04 -Electron-deuteron_mean_free_path_at_point_324____________________________ (len_plasma_electron_deuteron_mean_free_path_profile324)_ 6.09631908213099014e+04 -Electron-deuteron_mean_free_path_at_point_325____________________________ (len_plasma_electron_deuteron_mean_free_path_profile325)_ 6.04822888432686450e+04 -Electron-deuteron_mean_free_path_at_point_326____________________________ (len_plasma_electron_deuteron_mean_free_path_profile326)_ 6.00025081536548023e+04 -Electron-deuteron_mean_free_path_at_point_327____________________________ (len_plasma_electron_deuteron_mean_free_path_profile327)_ 5.95238703596372216e+04 -Electron-deuteron_mean_free_path_at_point_328____________________________ (len_plasma_electron_deuteron_mean_free_path_profile328)_ 5.90463970759983058e+04 -Electron-deuteron_mean_free_path_at_point_329____________________________ (len_plasma_electron_deuteron_mean_free_path_profile329)_ 5.85701099241401607e+04 -Electron-deuteron_mean_free_path_at_point_330____________________________ (len_plasma_electron_deuteron_mean_free_path_profile330)_ 5.80950305310854310e+04 -Electron-deuteron_mean_free_path_at_point_331____________________________ (len_plasma_electron_deuteron_mean_free_path_profile331)_ 5.76211805284733055e+04 -Electron-deuteron_mean_free_path_at_point_332____________________________ (len_plasma_electron_deuteron_mean_free_path_profile332)_ 5.71485815515511713e+04 -Electron-deuteron_mean_free_path_at_point_333____________________________ (len_plasma_electron_deuteron_mean_free_path_profile333)_ 5.66772552381623682e+04 -Electron-deuteron_mean_free_path_at_point_334____________________________ (len_plasma_electron_deuteron_mean_free_path_profile334)_ 5.62072232277303119e+04 -Electron-deuteron_mean_free_path_at_point_335____________________________ (len_plasma_electron_deuteron_mean_free_path_profile335)_ 5.57385071602406970e+04 -Electron-deuteron_mean_free_path_at_point_336____________________________ (len_plasma_electron_deuteron_mean_free_path_profile336)_ 5.52711286752206724e+04 -Electron-deuteron_mean_free_path_at_point_337____________________________ (len_plasma_electron_deuteron_mean_free_path_profile337)_ 5.48051094107169993e+04 -Electron-deuteron_mean_free_path_at_point_338____________________________ (len_plasma_electron_deuteron_mean_free_path_profile338)_ 5.43404710022724903e+04 -Electron-deuteron_mean_free_path_at_point_339____________________________ (len_plasma_electron_deuteron_mean_free_path_profile339)_ 5.38772350819035346e+04 -Electron-deuteron_mean_free_path_at_point_340____________________________ (len_plasma_electron_deuteron_mean_free_path_profile340)_ 5.34154232770764647e+04 -Electron-deuteron_mean_free_path_at_point_341____________________________ (len_plasma_electron_deuteron_mean_free_path_profile341)_ 5.29550572096878823e+04 -Electron-deuteron_mean_free_path_at_point_342____________________________ (len_plasma_electron_deuteron_mean_free_path_profile342)_ 5.24961584950439865e+04 -Electron-deuteron_mean_free_path_at_point_343____________________________ (len_plasma_electron_deuteron_mean_free_path_profile343)_ 5.20387487408462985e+04 -Electron-deuteron_mean_free_path_at_point_344____________________________ (len_plasma_electron_deuteron_mean_free_path_profile344)_ 5.15828495461793937e+04 -Electron-deuteron_mean_free_path_at_point_345____________________________ (len_plasma_electron_deuteron_mean_free_path_profile345)_ 5.11284825005049279e+04 -Electron-deuteron_mean_free_path_at_point_346____________________________ (len_plasma_electron_deuteron_mean_free_path_profile346)_ 5.06756691826614187e+04 -Electron-deuteron_mean_free_path_at_point_347____________________________ (len_plasma_electron_deuteron_mean_free_path_profile347)_ 5.02244311598726563e+04 -Electron-deuteron_mean_free_path_at_point_348____________________________ (len_plasma_electron_deuteron_mean_free_path_profile348)_ 4.97747899867633241e+04 -Electron-deuteron_mean_free_path_at_point_349____________________________ (len_plasma_electron_deuteron_mean_free_path_profile349)_ 4.93267672043869097e+04 -Electron-deuteron_mean_free_path_at_point_350____________________________ (len_plasma_electron_deuteron_mean_free_path_profile350)_ 4.88803843392642084e+04 -Electron-deuteron_mean_free_path_at_point_351____________________________ (len_plasma_electron_deuteron_mean_free_path_profile351)_ 4.84356629024330396e+04 -Electron-deuteron_mean_free_path_at_point_352____________________________ (len_plasma_electron_deuteron_mean_free_path_profile352)_ 4.79926243885181320e+04 -Electron-deuteron_mean_free_path_at_point_353____________________________ (len_plasma_electron_deuteron_mean_free_path_profile353)_ 4.75512902748115521e+04 -Electron-deuteron_mean_free_path_at_point_354____________________________ (len_plasma_electron_deuteron_mean_free_path_profile354)_ 4.71116820203762109e+04 -Electron-deuteron_mean_free_path_at_point_355____________________________ (len_plasma_electron_deuteron_mean_free_path_profile355)_ 4.66738210651668196e+04 -Electron-deuteron_mean_free_path_at_point_356____________________________ (len_plasma_electron_deuteron_mean_free_path_profile356)_ 4.62377288291753503e+04 -Electron-deuteron_mean_free_path_at_point_357____________________________ (len_plasma_electron_deuteron_mean_free_path_profile357)_ 4.58034267116000701e+04 -Electron-deuteron_mean_free_path_at_point_358____________________________ (len_plasma_electron_deuteron_mean_free_path_profile358)_ 4.53709360900426618e+04 -Electron-deuteron_mean_free_path_at_point_359____________________________ (len_plasma_electron_deuteron_mean_free_path_profile359)_ 4.49402783197342433e+04 -Electron-deuteron_mean_free_path_at_point_360____________________________ (len_plasma_electron_deuteron_mean_free_path_profile360)_ 4.45114747327941441e+04 -Electron-deuteron_mean_free_path_at_point_361____________________________ (len_plasma_electron_deuteron_mean_free_path_profile361)_ 4.40845466375239921e+04 -Electron-deuteron_mean_free_path_at_point_362____________________________ (len_plasma_electron_deuteron_mean_free_path_profile362)_ 4.36595153177401153e+04 -Electron-deuteron_mean_free_path_at_point_363____________________________ (len_plasma_electron_deuteron_mean_free_path_profile363)_ 4.32364020321468997e+04 -Electron-deuteron_mean_free_path_at_point_364____________________________ (len_plasma_electron_deuteron_mean_free_path_profile364)_ 4.28152280137566922e+04 -Electron-deuteron_mean_free_path_at_point_365____________________________ (len_plasma_electron_deuteron_mean_free_path_profile365)_ 4.23960144693556867e+04 -Electron-deuteron_mean_free_path_at_point_366____________________________ (len_plasma_electron_deuteron_mean_free_path_profile366)_ 4.19787825790262068e+04 -Electron-deuteron_mean_free_path_at_point_367____________________________ (len_plasma_electron_deuteron_mean_free_path_profile367)_ 4.15635534957208802e+04 -Electron-deuteron_mean_free_path_at_point_368____________________________ (len_plasma_electron_deuteron_mean_free_path_profile368)_ 4.11503483449028863e+04 -Electron-deuteron_mean_free_path_at_point_369____________________________ (len_plasma_electron_deuteron_mean_free_path_profile369)_ 4.07391882242485299e+04 -Electron-deuteron_mean_free_path_at_point_370____________________________ (len_plasma_electron_deuteron_mean_free_path_profile370)_ 4.03300942034225955e+04 -Electron-deuteron_mean_free_path_at_point_371____________________________ (len_plasma_electron_deuteron_mean_free_path_profile371)_ 3.99230873239291832e+04 -Electron-deuteron_mean_free_path_at_point_372____________________________ (len_plasma_electron_deuteron_mean_free_path_profile372)_ 3.95181885990443043e+04 -Electron-deuteron_mean_free_path_at_point_373____________________________ (len_plasma_electron_deuteron_mean_free_path_profile373)_ 3.91154190138375343e+04 -Electron-deuteron_mean_free_path_at_point_374____________________________ (len_plasma_electron_deuteron_mean_free_path_profile374)_ 3.87147995252868059e+04 -Electron-deuteron_mean_free_path_at_point_375____________________________ (len_plasma_electron_deuteron_mean_free_path_profile375)_ 3.83163510624960909e+04 -Electron-deuteron_mean_free_path_at_point_376____________________________ (len_plasma_electron_deuteron_mean_free_path_profile376)_ 3.79200945270211014e+04 -Electron-deuteron_mean_free_path_at_point_377____________________________ (len_plasma_electron_deuteron_mean_free_path_profile377)_ 3.75260507933106128e+04 -Electron-deuteron_mean_free_path_at_point_378____________________________ (len_plasma_electron_deuteron_mean_free_path_profile378)_ 3.71342407092754875e+04 -Electron-deuteron_mean_free_path_at_point_379____________________________ (len_plasma_electron_deuteron_mean_free_path_profile379)_ 3.67446850969898223e+04 -Electron-deuteron_mean_free_path_at_point_380____________________________ (len_plasma_electron_deuteron_mean_free_path_profile380)_ 3.63574047535353748e+04 -Electron-deuteron_mean_free_path_at_point_381____________________________ (len_plasma_electron_deuteron_mean_free_path_profile381)_ 3.59724204520015192e+04 -Electron-deuteron_mean_free_path_at_point_382____________________________ (len_plasma_electron_deuteron_mean_free_path_profile382)_ 3.55897529426489928e+04 -Electron-deuteron_mean_free_path_at_point_383____________________________ (len_plasma_electron_deuteron_mean_free_path_profile383)_ 3.52094229542507164e+04 -Electron-deuteron_mean_free_path_at_point_384____________________________ (len_plasma_electron_deuteron_mean_free_path_profile384)_ 3.48314511956205097e+04 -Electron-deuteron_mean_free_path_at_point_385____________________________ (len_plasma_electron_deuteron_mean_free_path_profile385)_ 3.44558583573463620e+04 -Electron-deuteron_mean_free_path_at_point_386____________________________ (len_plasma_electron_deuteron_mean_free_path_profile386)_ 3.40826651137382869e+04 -Electron-deuteron_mean_free_path_at_point_387____________________________ (len_plasma_electron_deuteron_mean_free_path_profile387)_ 3.37118921250115382e+04 -Electron-deuteron_mean_free_path_at_point_388____________________________ (len_plasma_electron_deuteron_mean_free_path_profile388)_ 3.33435600397146118e+04 -Electron-deuteron_mean_free_path_at_point_389____________________________ (len_plasma_electron_deuteron_mean_free_path_profile389)_ 3.29776894974276220e+04 -Electron-deuteron_mean_free_path_at_point_390____________________________ (len_plasma_electron_deuteron_mean_free_path_profile390)_ 3.26143011317444179e+04 -Electron-deuteron_mean_free_path_at_point_391____________________________ (len_plasma_electron_deuteron_mean_free_path_profile391)_ 3.22534155735609202e+04 -Electron-deuteron_mean_free_path_at_point_392____________________________ (len_plasma_electron_deuteron_mean_free_path_profile392)_ 3.18950534546916060e+04 -Electron-deuteron_mean_free_path_at_point_393____________________________ (len_plasma_electron_deuteron_mean_free_path_profile393)_ 3.15392354118377043e+04 -Electron-deuteron_mean_free_path_at_point_394____________________________ (len_plasma_electron_deuteron_mean_free_path_profile394)_ 3.11859820909329355e+04 -Electron-deuteron_mean_free_path_at_point_395____________________________ (len_plasma_electron_deuteron_mean_free_path_profile395)_ 3.08353141518924422e+04 -Electron-deuteron_mean_free_path_at_point_396____________________________ (len_plasma_electron_deuteron_mean_free_path_profile396)_ 3.04872522737979707e+04 -Electron-deuteron_mean_free_path_at_point_397____________________________ (len_plasma_electron_deuteron_mean_free_path_profile397)_ 3.01418171605460084e+04 -Electron-deuteron_mean_free_path_at_point_398____________________________ (len_plasma_electron_deuteron_mean_free_path_profile398)_ 2.97990295469985285e+04 -Electron-deuteron_mean_free_path_at_point_399____________________________ (len_plasma_electron_deuteron_mean_free_path_profile399)_ 2.94589102056698575e+04 -Electron-deuteron_mean_free_path_at_point_400____________________________ (len_plasma_electron_deuteron_mean_free_path_profile400)_ 2.91214799539913511e+04 -Electron-deuteron_mean_free_path_at_point_401____________________________ (len_plasma_electron_deuteron_mean_free_path_profile401)_ 2.87867596621971061e+04 -Electron-deuteron_mean_free_path_at_point_402____________________________ (len_plasma_electron_deuteron_mean_free_path_profile402)_ 2.84547702618769545e+04 -Electron-deuteron_mean_free_path_at_point_403____________________________ (len_plasma_electron_deuteron_mean_free_path_profile403)_ 2.81255327552488816e+04 -Electron-deuteron_mean_free_path_at_point_404____________________________ (len_plasma_electron_deuteron_mean_free_path_profile404)_ 2.77990682252055412e+04 -Electron-deuteron_mean_free_path_at_point_405____________________________ (len_plasma_electron_deuteron_mean_free_path_profile405)_ 2.74753978461939623e+04 -Electron-deuteron_mean_free_path_at_point_406____________________________ (len_plasma_electron_deuteron_mean_free_path_profile406)_ 2.71545428959971323e+04 -Electron-deuteron_mean_free_path_at_point_407____________________________ (len_plasma_electron_deuteron_mean_free_path_profile407)_ 2.68365247684833012e+04 -Electron-deuteron_mean_free_path_at_point_408____________________________ (len_plasma_electron_deuteron_mean_free_path_profile408)_ 2.65213649874056428e+04 -Electron-deuteron_mean_free_path_at_point_409____________________________ (len_plasma_electron_deuteron_mean_free_path_profile409)_ 2.62090852213325779e+04 -Electron-deuteron_mean_free_path_at_point_410____________________________ (len_plasma_electron_deuteron_mean_free_path_profile410)_ 2.58997072998042386e+04 -Electron-deuteron_mean_free_path_at_point_411____________________________ (len_plasma_electron_deuteron_mean_free_path_profile411)_ 2.55932532308142472e+04 -Electron-deuteron_mean_free_path_at_point_412____________________________ (len_plasma_electron_deuteron_mean_free_path_profile412)_ 2.52897452197270723e+04 -Electron-deuteron_mean_free_path_at_point_413____________________________ (len_plasma_electron_deuteron_mean_free_path_profile413)_ 2.49892056897521070e+04 -Electron-deuteron_mean_free_path_at_point_414____________________________ (len_plasma_electron_deuteron_mean_free_path_profile414)_ 2.46916573041098891e+04 -Electron-deuteron_mean_free_path_at_point_415____________________________ (len_plasma_electron_deuteron_mean_free_path_profile415)_ 2.43971229900329818e+04 -Electron-deuteron_mean_free_path_at_point_416____________________________ (len_plasma_electron_deuteron_mean_free_path_profile416)_ 2.41056259647634397e+04 -Electron-deuteron_mean_free_path_at_point_417____________________________ (len_plasma_electron_deuteron_mean_free_path_profile417)_ 2.38171897637272377e+04 -Electron-deuteron_mean_free_path_at_point_418____________________________ (len_plasma_electron_deuteron_mean_free_path_profile418)_ 2.35318382710779588e+04 -Electron-deuteron_mean_free_path_at_point_419____________________________ (len_plasma_electron_deuteron_mean_free_path_profile419)_ 2.32495957528280996e+04 -Electron-deuteron_mean_free_path_at_point_420____________________________ (len_plasma_electron_deuteron_mean_free_path_profile420)_ 2.29704868928098658e+04 -Electron-deuteron_mean_free_path_at_point_421____________________________ (len_plasma_electron_deuteron_mean_free_path_profile421)_ 2.26945368317304201e+04 -Electron-deuteron_mean_free_path_at_point_422____________________________ (len_plasma_electron_deuteron_mean_free_path_profile422)_ 2.24217712096194518e+04 -Electron-deuteron_mean_free_path_at_point_423____________________________ (len_plasma_electron_deuteron_mean_free_path_profile423)_ 2.21522162120016728e+04 -Electron-deuteron_mean_free_path_at_point_424____________________________ (len_plasma_electron_deuteron_mean_free_path_profile424)_ 2.18858986201618900e+04 -Electron-deuteron_mean_free_path_at_point_425____________________________ (len_plasma_electron_deuteron_mean_free_path_profile425)_ 2.16228458659188727e+04 -Electron-deuteron_mean_free_path_at_point_426____________________________ (len_plasma_electron_deuteron_mean_free_path_profile426)_ 2.13630860913730248e+04 -Electron-deuteron_mean_free_path_at_point_427____________________________ (len_plasma_electron_deuteron_mean_free_path_profile427)_ 2.11066482141485321e+04 -Electron-deuteron_mean_free_path_at_point_428____________________________ (len_plasma_electron_deuteron_mean_free_path_profile428)_ 2.08535619987238679e+04 -Electron-deuteron_mean_free_path_at_point_429____________________________ (len_plasma_electron_deuteron_mean_free_path_profile429)_ 2.06038581345136845e+04 -Electron-deuteron_mean_free_path_at_point_430____________________________ (len_plasma_electron_deuteron_mean_free_path_profile430)_ 2.03575683214597811e+04 -Electron-deuteron_mean_free_path_at_point_431____________________________ (len_plasma_electron_deuteron_mean_free_path_profile431)_ 2.01147253639909104e+04 -Electron-deuteron_mean_free_path_at_point_432____________________________ (len_plasma_electron_deuteron_mean_free_path_profile432)_ 1.98753632743310081e+04 -Electron-deuteron_mean_free_path_at_point_433____________________________ (len_plasma_electron_deuteron_mean_free_path_profile433)_ 1.96395173862777701e+04 -Electron-deuteron_mean_free_path_at_point_434____________________________ (len_plasma_electron_deuteron_mean_free_path_profile434)_ 1.94072244807386342e+04 -Electron-deuteron_mean_free_path_at_point_435____________________________ (len_plasma_electron_deuteron_mean_free_path_profile435)_ 1.91785229245061892e+04 -Electron-deuteron_mean_free_path_at_point_436____________________________ (len_plasma_electron_deuteron_mean_free_path_profile436)_ 1.89534528239896172e+04 -Electron-deuteron_mean_free_path_at_point_437____________________________ (len_plasma_electron_deuteron_mean_free_path_profile437)_ 1.87320561958893486e+04 -Electron-deuteron_mean_free_path_at_point_438____________________________ (len_plasma_electron_deuteron_mean_free_path_profile438)_ 1.85143771571373363e+04 -Electron-deuteron_mean_free_path_at_point_439____________________________ (len_plasma_electron_deuteron_mean_free_path_profile439)_ 1.83004621368154112e+04 -Electron-deuteron_mean_free_path_at_point_440____________________________ (len_plasma_electron_deuteron_mean_free_path_profile440)_ 1.80903601132486765e+04 -Electron-deuteron_mean_free_path_at_point_441____________________________ (len_plasma_electron_deuteron_mean_free_path_profile441)_ 1.78841228800468598e+04 -Electron-deuteron_mean_free_path_at_point_442____________________________ (len_plasma_electron_deuteron_mean_free_path_profile442)_ 1.76818053455815316e+04 -Electron-deuteron_mean_free_path_at_point_443____________________________ (len_plasma_electron_deuteron_mean_free_path_profile443)_ 1.74834658712581004e+04 -Electron-deuteron_mean_free_path_at_point_444____________________________ (len_plasma_electron_deuteron_mean_free_path_profile444)_ 1.72891666550285190e+04 -Electron-deuteron_mean_free_path_at_point_445____________________________ (len_plasma_electron_deuteron_mean_free_path_profile445)_ 1.70989741679418694e+04 -Electron-deuteron_mean_free_path_at_point_446____________________________ (len_plasma_electron_deuteron_mean_free_path_profile446)_ 1.69129596532324904e+04 -Electron-deuteron_mean_free_path_at_point_447____________________________ (len_plasma_electron_deuteron_mean_free_path_profile447)_ 1.67311996996049529e+04 -Electron-deuteron_mean_free_path_at_point_448____________________________ (len_plasma_electron_deuteron_mean_free_path_profile448)_ 1.65537769031453281e+04 -Electron-deuteron_mean_free_path_at_point_449____________________________ (len_plasma_electron_deuteron_mean_free_path_profile449)_ 1.63807806358587495e+04 -Electron-deuteron_mean_free_path_at_point_450____________________________ (len_plasma_electron_deuteron_mean_free_path_profile450)_ 1.62123079435236559e+04 -Electron-deuteron_mean_free_path_at_point_451____________________________ (len_plasma_electron_deuteron_mean_free_path_profile451)_ 1.60484646017299401e+04 -Electron-deuteron_mean_free_path_at_point_452____________________________ (len_plasma_electron_deuteron_mean_free_path_profile452)_ 1.58893663672687817e+04 -Electron-deuteron_mean_free_path_at_point_453____________________________ (len_plasma_electron_deuteron_mean_free_path_profile453)_ 1.57351404733044164e+04 -Electron-deuteron_mean_free_path_at_point_454____________________________ (len_plasma_electron_deuteron_mean_free_path_profile454)_ 1.55859274322984347e+04 -Electron-deuteron_mean_free_path_at_point_455____________________________ (len_plasma_electron_deuteron_mean_free_path_profile455)_ 1.54418832324762170e+04 -Electron-deuteron_mean_free_path_at_point_456____________________________ (len_plasma_electron_deuteron_mean_free_path_profile456)_ 1.53031820448189155e+04 -Electron-deuteron_mean_free_path_at_point_457____________________________ (len_plasma_electron_deuteron_mean_free_path_profile457)_ 1.51700196031479863e+04 -Electron-deuteron_mean_free_path_at_point_458____________________________ (len_plasma_electron_deuteron_mean_free_path_profile458)_ 1.50426174880737035e+04 -Electron-deuteron_mean_free_path_at_point_459____________________________ (len_plasma_electron_deuteron_mean_free_path_profile459)_ 1.49212286504628155e+04 -Electron-deuteron_mean_free_path_at_point_460____________________________ (len_plasma_electron_deuteron_mean_free_path_profile460)_ 1.48061446764815046e+04 -Electron-deuteron_mean_free_path_at_point_461____________________________ (len_plasma_electron_deuteron_mean_free_path_profile461)_ 1.46977055700465171e+04 -Electron-deuteron_mean_free_path_at_point_462____________________________ (len_plasma_electron_deuteron_mean_free_path_profile462)_ 1.45963132986056571e+04 -Electron-deuteron_mean_free_path_at_point_463____________________________ (len_plasma_electron_deuteron_mean_free_path_profile463)_ 1.45024511976109370e+04 -Electron-deuteron_mean_free_path_at_point_464____________________________ (len_plasma_electron_deuteron_mean_free_path_profile464)_ 1.44167129625181406e+04 -Electron-deuteron_mean_free_path_at_point_465____________________________ (len_plasma_electron_deuteron_mean_free_path_profile465)_ 1.43398483523405739e+04 -Electron-deuteron_mean_free_path_at_point_466____________________________ (len_plasma_electron_deuteron_mean_free_path_profile466)_ 1.42728405320259080e+04 -Electron-deuteron_mean_free_path_at_point_467____________________________ (len_plasma_electron_deuteron_mean_free_path_profile467)_ 1.42170505340239342e+04 -Electron-deuteron_mean_free_path_at_point_468____________________________ (len_plasma_electron_deuteron_mean_free_path_profile468)_ 1.41745303826809850e+04 -Electron-deuteron_mean_free_path_at_point_469____________________________ (len_plasma_electron_deuteron_mean_free_path_profile469)_ 1.41489033008585920e+04 -Electron-deuteron_mean_free_path_at_point_470____________________________ (len_plasma_electron_deuteron_mean_free_path_profile470)_ 1.41507489033275979e+04 -Electron-deuteron_mean_free_path_at_point_471____________________________ (len_plasma_electron_deuteron_mean_free_path_profile471)_ 1.34479872388432050e+04 -Electron-deuteron_mean_free_path_at_point_472____________________________ (len_plasma_electron_deuteron_mean_free_path_profile472)_ 1.27541691448474448e+04 -Electron-deuteron_mean_free_path_at_point_473____________________________ (len_plasma_electron_deuteron_mean_free_path_profile473)_ 1.20697331996242319e+04 -Electron-deuteron_mean_free_path_at_point_474____________________________ (len_plasma_electron_deuteron_mean_free_path_profile474)_ 1.13951450459550870e+04 -Electron-deuteron_mean_free_path_at_point_475____________________________ (len_plasma_electron_deuteron_mean_free_path_profile475)_ 1.07308995237690451e+04 -Electron-deuteron_mean_free_path_at_point_476____________________________ (len_plasma_electron_deuteron_mean_free_path_profile476)_ 1.00775230123277215e+04 -Electron-deuteron_mean_free_path_at_point_477____________________________ (len_plasma_electron_deuteron_mean_free_path_profile477)_ 9.43557600739699228e+03 -Electron-deuteron_mean_free_path_at_point_478____________________________ (len_plasma_electron_deuteron_mean_free_path_profile478)_ 8.80565596269764319e+03 -Electron-deuteron_mean_free_path_at_point_479____________________________ (len_plasma_electron_deuteron_mean_free_path_profile479)_ 8.18840042951189480e+03 -Electron-deuteron_mean_free_path_at_point_480____________________________ (len_plasma_electron_deuteron_mean_free_path_profile480)_ 7.58449053382379225e+03 -Electron-deuteron_mean_free_path_at_point_481____________________________ (len_plasma_electron_deuteron_mean_free_path_profile481)_ 6.99465483702779329e+03 -Electron-deuteron_mean_free_path_at_point_482____________________________ (len_plasma_electron_deuteron_mean_free_path_profile482)_ 6.41967363437931908e+03 -Electron-deuteron_mean_free_path_at_point_483____________________________ (len_plasma_electron_deuteron_mean_free_path_profile483)_ 5.86038375541287041e+03 -Electron-deuteron_mean_free_path_at_point_484____________________________ (len_plasma_electron_deuteron_mean_free_path_profile484)_ 5.31768394312999499e+03 -Electron-deuteron_mean_free_path_at_point_485____________________________ (len_plasma_electron_deuteron_mean_free_path_profile485)_ 4.79254090472334155e+03 -Electron-deuteron_mean_free_path_at_point_486____________________________ (len_plasma_electron_deuteron_mean_free_path_profile486)_ 4.28599614719566307e+03 -Electron-deuteron_mean_free_path_at_point_487____________________________ (len_plasma_electron_deuteron_mean_free_path_profile487)_ 3.79917373832283329e+03 -Electron-deuteron_mean_free_path_at_point_488____________________________ (len_plasma_electron_deuteron_mean_free_path_profile488)_ 3.33328916984047100e+03 -Electron-deuteron_mean_free_path_at_point_489____________________________ (len_plasma_electron_deuteron_mean_free_path_profile489)_ 2.88965955000818531e+03 -Electron-deuteron_mean_free_path_at_point_490____________________________ (len_plasma_electron_deuteron_mean_free_path_profile490)_ 2.46971542420329570e+03 -Electron-deuteron_mean_free_path_at_point_491____________________________ (len_plasma_electron_deuteron_mean_free_path_profile491)_ 2.07501462749240045e+03 -Electron-deuteron_mean_free_path_at_point_492____________________________ (len_plasma_electron_deuteron_mean_free_path_profile492)_ 1.70725873470318902e+03 -Electron-deuteron_mean_free_path_at_point_493____________________________ (len_plasma_electron_deuteron_mean_free_path_profile493)_ 1.36831293367070862e+03 -Electron-deuteron_mean_free_path_at_point_494____________________________ (len_plasma_electron_deuteron_mean_free_path_profile494)_ 1.06023059095431768e+03 -Electron-deuteron_mean_free_path_at_point_495____________________________ (len_plasma_electron_deuteron_mean_free_path_profile495)_ 7.85284590037124190e+02 -Electron-deuteron_mean_free_path_at_point_496____________________________ (len_plasma_electron_deuteron_mean_free_path_profile496)_ 5.46009136382744373e+02 -Electron-deuteron_mean_free_path_at_point_497____________________________ (len_plasma_electron_deuteron_mean_free_path_profile497)_ 3.45259313602791508e+02 -Electron-deuteron_mean_free_path_at_point_498____________________________ (len_plasma_electron_deuteron_mean_free_path_profile498)_ 1.86304953645940031e+02 -Electron-deuteron_mean_free_path_at_point_499____________________________ (len_plasma_electron_deuteron_mean_free_path_profile499)_ 7.30054291925195287e+01 -Electron-deuteron_mean_free_path_at_point_500____________________________ (len_plasma_electron_deuteron_mean_free_path_profile500)_ 1.02589371519775003e+01 -Volume_averaged_electron-triton_mean_free_path_(λₑT)_(m)_________________ (len_plasma_electron_triton_mean_free_path_vol_avg)_ 5.60377918495656559e+04 -Electron-triton_mean_free_path_at_point_0________________________________ (len_plasma_electron_triton_mean_free_path_profile0)_ 1.74000260481364210e+05 -Electron-triton_mean_free_path_at_point_1________________________________ (len_plasma_electron_triton_mean_free_path_profile1)_ 1.73998843895871600e+05 -Electron-triton_mean_free_path_at_point_2________________________________ (len_plasma_electron_triton_mean_free_path_profile2)_ 1.73994594178473228e+05 -Electron-triton_mean_free_path_at_point_3________________________________ (len_plasma_electron_triton_mean_free_path_profile3)_ 1.73987511446406890e+05 -Electron-triton_mean_free_path_at_point_4________________________________ (len_plasma_electron_triton_mean_free_path_profile4)_ 1.73977595895071077e+05 -Electron-triton_mean_free_path_at_point_5________________________________ (len_plasma_electron_triton_mean_free_path_profile5)_ 1.73964847798022325e+05 -Electron-triton_mean_free_path_at_point_6________________________________ (len_plasma_electron_triton_mean_free_path_profile6)_ 1.73949267506976117e+05 -Electron-triton_mean_free_path_at_point_7________________________________ (len_plasma_electron_triton_mean_free_path_profile7)_ 1.73930855451809883e+05 -Electron-triton_mean_free_path_at_point_8________________________________ (len_plasma_electron_triton_mean_free_path_profile8)_ 1.73909612140559417e+05 -Electron-triton_mean_free_path_at_point_9________________________________ (len_plasma_electron_triton_mean_free_path_profile9)_ 1.73885538159422780e+05 -Electron-triton_mean_free_path_at_point_10_______________________________ (len_plasma_electron_triton_mean_free_path_profile10)_ 1.73858634172758146e+05 -Electron-triton_mean_free_path_at_point_11_______________________________ (len_plasma_electron_triton_mean_free_path_profile11)_ 1.73828900923086476e+05 -Electron-triton_mean_free_path_at_point_12_______________________________ (len_plasma_electron_triton_mean_free_path_profile12)_ 1.73796339231091726e+05 -Electron-triton_mean_free_path_at_point_13_______________________________ (len_plasma_electron_triton_mean_free_path_profile13)_ 1.73760949995620962e+05 -Electron-triton_mean_free_path_at_point_14_______________________________ (len_plasma_electron_triton_mean_free_path_profile14)_ 1.73722734193686076e+05 -Electron-triton_mean_free_path_at_point_15_______________________________ (len_plasma_electron_triton_mean_free_path_profile15)_ 1.73681692880463961e+05 -Electron-triton_mean_free_path_at_point_16_______________________________ (len_plasma_electron_triton_mean_free_path_profile16)_ 1.73637827189298230e+05 -Electron-triton_mean_free_path_at_point_17_______________________________ (len_plasma_electron_triton_mean_free_path_profile17)_ 1.73591138331699913e+05 -Electron-triton_mean_free_path_at_point_18_______________________________ (len_plasma_electron_triton_mean_free_path_profile18)_ 1.73541627597349376e+05 -Electron-triton_mean_free_path_at_point_19_______________________________ (len_plasma_electron_triton_mean_free_path_profile19)_ 1.73489296354095306e+05 -Electron-triton_mean_free_path_at_point_20_______________________________ (len_plasma_electron_triton_mean_free_path_profile20)_ 1.73434146047958755e+05 -Electron-triton_mean_free_path_at_point_21_______________________________ (len_plasma_electron_triton_mean_free_path_profile21)_ 1.73376178203133197e+05 -Electron-triton_mean_free_path_at_point_22_______________________________ (len_plasma_electron_triton_mean_free_path_profile22)_ 1.73315394421985955e+05 -Electron-triton_mean_free_path_at_point_23_______________________________ (len_plasma_electron_triton_mean_free_path_profile23)_ 1.73251796385059512e+05 -Electron-triton_mean_free_path_at_point_24_______________________________ (len_plasma_electron_triton_mean_free_path_profile24)_ 1.73185385851072700e+05 -Electron-triton_mean_free_path_at_point_25_______________________________ (len_plasma_electron_triton_mean_free_path_profile25)_ 1.73116164656924200e+05 -Electron-triton_mean_free_path_at_point_26_______________________________ (len_plasma_electron_triton_mean_free_path_profile26)_ 1.73044134717691806e+05 -Electron-triton_mean_free_path_at_point_27_______________________________ (len_plasma_electron_triton_mean_free_path_profile27)_ 1.72969298026635195e+05 -Electron-triton_mean_free_path_at_point_28_______________________________ (len_plasma_electron_triton_mean_free_path_profile28)_ 1.72891656655198167e+05 -Electron-triton_mean_free_path_at_point_29_______________________________ (len_plasma_electron_triton_mean_free_path_profile29)_ 1.72811212753008993e+05 -Electron-triton_mean_free_path_at_point_30_______________________________ (len_plasma_electron_triton_mean_free_path_profile30)_ 1.72727968547883822e+05 -Electron-triton_mean_free_path_at_point_31_______________________________ (len_plasma_electron_triton_mean_free_path_profile31)_ 1.72641926345827058e+05 -Electron-triton_mean_free_path_at_point_32_______________________________ (len_plasma_electron_triton_mean_free_path_profile32)_ 1.72553088531034708e+05 -Electron-triton_mean_free_path_at_point_33_______________________________ (len_plasma_electron_triton_mean_free_path_profile33)_ 1.72461457565895515e+05 -Electron-triton_mean_free_path_at_point_34_______________________________ (len_plasma_electron_triton_mean_free_path_profile34)_ 1.72367035990991804e+05 -Electron-triton_mean_free_path_at_point_35_______________________________ (len_plasma_electron_triton_mean_free_path_profile35)_ 1.72269826425104635e+05 -Electron-triton_mean_free_path_at_point_36_______________________________ (len_plasma_electron_triton_mean_free_path_profile36)_ 1.72169831565212313e+05 -Electron-triton_mean_free_path_at_point_37_______________________________ (len_plasma_electron_triton_mean_free_path_profile37)_ 1.72067054186495079e+05 -Electron-triton_mean_free_path_at_point_38_______________________________ (len_plasma_electron_triton_mean_free_path_profile38)_ 1.71961497142335516e+05 -Electron-triton_mean_free_path_at_point_39_______________________________ (len_plasma_electron_triton_mean_free_path_profile39)_ 1.71853163364321081e+05 -Electron-triton_mean_free_path_at_point_40_______________________________ (len_plasma_electron_triton_mean_free_path_profile40)_ 1.71742055862246780e+05 -Electron-triton_mean_free_path_at_point_41_______________________________ (len_plasma_electron_triton_mean_free_path_profile41)_ 1.71628177724117035e+05 -Electron-triton_mean_free_path_at_point_42_______________________________ (len_plasma_electron_triton_mean_free_path_profile42)_ 1.71511532116146933e+05 -Electron-triton_mean_free_path_at_point_43_______________________________ (len_plasma_electron_triton_mean_free_path_profile43)_ 1.71392122282765369e+05 -Electron-triton_mean_free_path_at_point_44_______________________________ (len_plasma_electron_triton_mean_free_path_profile44)_ 1.71269951546617202e+05 -Electron-triton_mean_free_path_at_point_45_______________________________ (len_plasma_electron_triton_mean_free_path_profile45)_ 1.71145023308563977e+05 -Electron-triton_mean_free_path_at_point_46_______________________________ (len_plasma_electron_triton_mean_free_path_profile46)_ 1.71017341047688155e+05 -Electron-triton_mean_free_path_at_point_47_______________________________ (len_plasma_electron_triton_mean_free_path_profile47)_ 1.70886908321293478e+05 -Electron-triton_mean_free_path_at_point_48_______________________________ (len_plasma_electron_triton_mean_free_path_profile48)_ 1.70753728764907690e+05 -Electron-triton_mean_free_path_at_point_49_______________________________ (len_plasma_electron_triton_mean_free_path_profile49)_ 1.70617806092284416e+05 -Electron-triton_mean_free_path_at_point_50_______________________________ (len_plasma_electron_triton_mean_free_path_profile50)_ 1.70479144095405238e+05 -Electron-triton_mean_free_path_at_point_51_______________________________ (len_plasma_electron_triton_mean_free_path_profile51)_ 1.70337746644482308e+05 -Electron-triton_mean_free_path_at_point_52_______________________________ (len_plasma_electron_triton_mean_free_path_profile52)_ 1.70193617687959049e+05 -Electron-triton_mean_free_path_at_point_53_______________________________ (len_plasma_electron_triton_mean_free_path_profile53)_ 1.70046761252512923e+05 -Electron-triton_mean_free_path_at_point_54_______________________________ (len_plasma_electron_triton_mean_free_path_profile54)_ 1.69897181443056877e+05 -Electron-triton_mean_free_path_at_point_55_______________________________ (len_plasma_electron_triton_mean_free_path_profile55)_ 1.69744882442741713e+05 -Electron-triton_mean_free_path_at_point_56_______________________________ (len_plasma_electron_triton_mean_free_path_profile56)_ 1.69589868512956979e+05 -Electron-triton_mean_free_path_at_point_57_______________________________ (len_plasma_electron_triton_mean_free_path_profile57)_ 1.69432143993333651e+05 -Electron-triton_mean_free_path_at_point_58_______________________________ (len_plasma_electron_triton_mean_free_path_profile58)_ 1.69271713301745069e+05 -Electron-triton_mean_free_path_at_point_59_______________________________ (len_plasma_electron_triton_mean_free_path_profile59)_ 1.69108580934308062e+05 -Electron-triton_mean_free_path_at_point_60_______________________________ (len_plasma_electron_triton_mean_free_path_profile60)_ 1.68942751465385925e+05 -Electron-triton_mean_free_path_at_point_61_______________________________ (len_plasma_electron_triton_mean_free_path_profile61)_ 1.68774229547588009e+05 -Electron-triton_mean_free_path_at_point_62_______________________________ (len_plasma_electron_triton_mean_free_path_profile62)_ 1.68603019911772135e+05 -Electron-triton_mean_free_path_at_point_63_______________________________ (len_plasma_electron_triton_mean_free_path_profile63)_ 1.68429127367045789e+05 -Electron-triton_mean_free_path_at_point_64_______________________________ (len_plasma_electron_triton_mean_free_path_profile64)_ 1.68252556800766150e+05 -Electron-triton_mean_free_path_at_point_65_______________________________ (len_plasma_electron_triton_mean_free_path_profile65)_ 1.68073313178542419e+05 -Electron-triton_mean_free_path_at_point_66_______________________________ (len_plasma_electron_triton_mean_free_path_profile66)_ 1.67891401544235763e+05 -Electron-triton_mean_free_path_at_point_67_______________________________ (len_plasma_electron_triton_mean_free_path_profile67)_ 1.67706827019960911e+05 -Electron-triton_mean_free_path_at_point_68_______________________________ (len_plasma_electron_triton_mean_free_path_profile68)_ 1.67519594806085224e+05 -Electron-triton_mean_free_path_at_point_69_______________________________ (len_plasma_electron_triton_mean_free_path_profile69)_ 1.67329710181230243e+05 -Electron-triton_mean_free_path_at_point_70_______________________________ (len_plasma_electron_triton_mean_free_path_profile70)_ 1.67137178502272989e+05 -Electron-triton_mean_free_path_at_point_71_______________________________ (len_plasma_electron_triton_mean_free_path_profile71)_ 1.66942005204343441e+05 -Electron-triton_mean_free_path_at_point_72_______________________________ (len_plasma_electron_triton_mean_free_path_profile72)_ 1.66744195800826797e+05 -Electron-triton_mean_free_path_at_point_73_______________________________ (len_plasma_electron_triton_mean_free_path_profile73)_ 1.66543755883363017e+05 -Electron-triton_mean_free_path_at_point_74_______________________________ (len_plasma_electron_triton_mean_free_path_profile74)_ 1.66340691121845535e+05 -Electron-triton_mean_free_path_at_point_75_______________________________ (len_plasma_electron_triton_mean_free_path_profile75)_ 1.66135007264421118e+05 -Electron-triton_mean_free_path_at_point_76_______________________________ (len_plasma_electron_triton_mean_free_path_profile76)_ 1.65926710137490445e+05 -Electron-triton_mean_free_path_at_point_77_______________________________ (len_plasma_electron_triton_mean_free_path_profile77)_ 1.65715805645704939e+05 -Electron-triton_mean_free_path_at_point_78_______________________________ (len_plasma_electron_triton_mean_free_path_profile78)_ 1.65502299771966849e+05 -Electron-triton_mean_free_path_at_point_79_______________________________ (len_plasma_electron_triton_mean_free_path_profile79)_ 1.65286198577428993e+05 -Electron-triton_mean_free_path_at_point_80_______________________________ (len_plasma_electron_triton_mean_free_path_profile80)_ 1.65067508201490913e+05 -Electron-triton_mean_free_path_at_point_81_______________________________ (len_plasma_electron_triton_mean_free_path_profile81)_ 1.64846234861799632e+05 -Electron-triton_mean_free_path_at_point_82_______________________________ (len_plasma_electron_triton_mean_free_path_profile82)_ 1.64622384854244679e+05 -Electron-triton_mean_free_path_at_point_83_______________________________ (len_plasma_electron_triton_mean_free_path_profile83)_ 1.64395964552959165e+05 -Electron-triton_mean_free_path_at_point_84_______________________________ (len_plasma_electron_triton_mean_free_path_profile84)_ 1.64166980410314252e+05 -Electron-triton_mean_free_path_at_point_85_______________________________ (len_plasma_electron_triton_mean_free_path_profile85)_ 1.63935438956919446e+05 -Electron-triton_mean_free_path_at_point_86_______________________________ (len_plasma_electron_triton_mean_free_path_profile86)_ 1.63701346801615844e+05 -Electron-triton_mean_free_path_at_point_87_______________________________ (len_plasma_electron_triton_mean_free_path_profile87)_ 1.63464710631476046e+05 -Electron-triton_mean_free_path_at_point_88_______________________________ (len_plasma_electron_triton_mean_free_path_profile88)_ 1.63225537211799237e+05 -Electron-triton_mean_free_path_at_point_89_______________________________ (len_plasma_electron_triton_mean_free_path_profile89)_ 1.62983833386106795e+05 -Electron-triton_mean_free_path_at_point_90_______________________________ (len_plasma_electron_triton_mean_free_path_profile90)_ 1.62739606076139346e+05 -Electron-triton_mean_free_path_at_point_91_______________________________ (len_plasma_electron_triton_mean_free_path_profile91)_ 1.62492862281850656e+05 -Electron-triton_mean_free_path_at_point_92_______________________________ (len_plasma_electron_triton_mean_free_path_profile92)_ 1.62243609081403731e+05 -Electron-triton_mean_free_path_at_point_93_______________________________ (len_plasma_electron_triton_mean_free_path_profile93)_ 1.61991853631165490e+05 -Electron-triton_mean_free_path_at_point_94_______________________________ (len_plasma_electron_triton_mean_free_path_profile94)_ 1.61737603165701148e+05 -Electron-triton_mean_free_path_at_point_95_______________________________ (len_plasma_electron_triton_mean_free_path_profile95)_ 1.61480864997767552e+05 -Electron-triton_mean_free_path_at_point_96_______________________________ (len_plasma_electron_triton_mean_free_path_profile96)_ 1.61221646518308000e+05 -Electron-triton_mean_free_path_at_point_97_______________________________ (len_plasma_electron_triton_mean_free_path_profile97)_ 1.60959955196445022e+05 -Electron-triton_mean_free_path_at_point_98_______________________________ (len_plasma_electron_triton_mean_free_path_profile98)_ 1.60695798579472903e+05 -Electron-triton_mean_free_path_at_point_99_______________________________ (len_plasma_electron_triton_mean_free_path_profile99)_ 1.60429184292850259e+05 -Electron-triton_mean_free_path_at_point_100______________________________ (len_plasma_electron_triton_mean_free_path_profile100)_ 1.60160120040192618e+05 -Electron-triton_mean_free_path_at_point_101______________________________ (len_plasma_electron_triton_mean_free_path_profile101)_ 1.59888613603264035e+05 -Electron-triton_mean_free_path_at_point_102______________________________ (len_plasma_electron_triton_mean_free_path_profile102)_ 1.59614672841966996e+05 -Electron-triton_mean_free_path_at_point_103______________________________ (len_plasma_electron_triton_mean_free_path_profile103)_ 1.59338305694334762e+05 -Electron-triton_mean_free_path_at_point_104______________________________ (len_plasma_electron_triton_mean_free_path_profile104)_ 1.59059520176521182e+05 -Electron-triton_mean_free_path_at_point_105______________________________ (len_plasma_electron_triton_mean_free_path_profile105)_ 1.58778324382789346e+05 -Electron-triton_mean_free_path_at_point_106______________________________ (len_plasma_electron_triton_mean_free_path_profile106)_ 1.58494726485502353e+05 -Electron-triton_mean_free_path_at_point_107______________________________ (len_plasma_electron_triton_mean_free_path_profile107)_ 1.58208734735111706e+05 -Electron-triton_mean_free_path_at_point_108______________________________ (len_plasma_electron_triton_mean_free_path_profile108)_ 1.57920357460144442e+05 -Electron-triton_mean_free_path_at_point_109______________________________ (len_plasma_electron_triton_mean_free_path_profile109)_ 1.57629603067193180e+05 -Electron-triton_mean_free_path_at_point_110______________________________ (len_plasma_electron_triton_mean_free_path_profile110)_ 1.57336480040900351e+05 -Electron-triton_mean_free_path_at_point_111______________________________ (len_plasma_electron_triton_mean_free_path_profile111)_ 1.57040996943947452e+05 -Electron-triton_mean_free_path_at_point_112______________________________ (len_plasma_electron_triton_mean_free_path_profile112)_ 1.56743162417039333e+05 -Electron-triton_mean_free_path_at_point_113______________________________ (len_plasma_electron_triton_mean_free_path_profile113)_ 1.56442985178890667e+05 -Electron-triton_mean_free_path_at_point_114______________________________ (len_plasma_electron_triton_mean_free_path_profile114)_ 1.56140474026209937e+05 -Electron-triton_mean_free_path_at_point_115______________________________ (len_plasma_electron_triton_mean_free_path_profile115)_ 1.55835637833685527e+05 -Electron-triton_mean_free_path_at_point_116______________________________ (len_plasma_electron_triton_mean_free_path_profile116)_ 1.55528485553965933e+05 -Electron-triton_mean_free_path_at_point_117______________________________ (len_plasma_electron_triton_mean_free_path_profile117)_ 1.55219026217646810e+05 -Electron-triton_mean_free_path_at_point_118______________________________ (len_plasma_electron_triton_mean_free_path_profile118)_ 1.54907268933249812e+05 -Electron-triton_mean_free_path_at_point_119______________________________ (len_plasma_electron_triton_mean_free_path_profile119)_ 1.54593222887206939e+05 -Electron-triton_mean_free_path_at_point_120______________________________ (len_plasma_electron_triton_mean_free_path_profile120)_ 1.54276897343838529e+05 -Electron-triton_mean_free_path_at_point_121______________________________ (len_plasma_electron_triton_mean_free_path_profile121)_ 1.53958301645337138e+05 -Electron-triton_mean_free_path_at_point_122______________________________ (len_plasma_electron_triton_mean_free_path_profile122)_ 1.53637445211743587e+05 -Electron-triton_mean_free_path_at_point_123______________________________ (len_plasma_electron_triton_mean_free_path_profile123)_ 1.53314337540928216e+05 -Electron-triton_mean_free_path_at_point_124______________________________ (len_plasma_electron_triton_mean_free_path_profile124)_ 1.52988988208567374e+05 -Electron-triton_mean_free_path_at_point_125______________________________ (len_plasma_electron_triton_mean_free_path_profile125)_ 1.52661406868121441e+05 -Electron-triton_mean_free_path_at_point_126______________________________ (len_plasma_electron_triton_mean_free_path_profile126)_ 1.52331603250811255e+05 -Electron-triton_mean_free_path_at_point_127______________________________ (len_plasma_electron_triton_mean_free_path_profile127)_ 1.51999587165593286e+05 -Electron-triton_mean_free_path_at_point_128______________________________ (len_plasma_electron_triton_mean_free_path_profile128)_ 1.51665368499135191e+05 -Electron-triton_mean_free_path_at_point_129______________________________ (len_plasma_electron_triton_mean_free_path_profile129)_ 1.51328957215789065e+05 -Electron-triton_mean_free_path_at_point_130______________________________ (len_plasma_electron_triton_mean_free_path_profile130)_ 1.50990363357564725e+05 -Electron-triton_mean_free_path_at_point_131______________________________ (len_plasma_electron_triton_mean_free_path_profile131)_ 1.50649597044103255e+05 -Electron-triton_mean_free_path_at_point_132______________________________ (len_plasma_electron_triton_mean_free_path_profile132)_ 1.50306668472645368e+05 -Electron-triton_mean_free_path_at_point_133______________________________ (len_plasma_electron_triton_mean_free_path_profile133)_ 1.49961587918006233e+05 -Electron-triton_mean_free_path_at_point_134______________________________ (len_plasma_electron_triton_mean_free_path_profile134)_ 1.49614365732540260e+05 -Electron-triton_mean_free_path_at_point_135______________________________ (len_plasma_electron_triton_mean_free_path_profile135)_ 1.49265012346113421e+05 -Electron-triton_mean_free_path_at_point_136______________________________ (len_plasma_electron_triton_mean_free_path_profile136)_ 1.48913538266068819e+05 -Electron-triton_mean_free_path_at_point_137______________________________ (len_plasma_electron_triton_mean_free_path_profile137)_ 1.48559954077194328e+05 -Electron-triton_mean_free_path_at_point_138______________________________ (len_plasma_electron_triton_mean_free_path_profile138)_ 1.48204270441686502e+05 -Electron-triton_mean_free_path_at_point_139______________________________ (len_plasma_electron_triton_mean_free_path_profile139)_ 1.47846498099117540e+05 -Electron-triton_mean_free_path_at_point_140______________________________ (len_plasma_electron_triton_mean_free_path_profile140)_ 1.47486647866397892e+05 -Electron-triton_mean_free_path_at_point_141______________________________ (len_plasma_electron_triton_mean_free_path_profile141)_ 1.47124730637737550e+05 -Electron-triton_mean_free_path_at_point_142______________________________ (len_plasma_electron_triton_mean_free_path_profile142)_ 1.46760757384608267e+05 -Electron-triton_mean_free_path_at_point_143______________________________ (len_plasma_electron_triton_mean_free_path_profile143)_ 1.46394739155705029e+05 -Electron-triton_mean_free_path_at_point_144______________________________ (len_plasma_electron_triton_mean_free_path_profile144)_ 1.46026687076902890e+05 -Electron-triton_mean_free_path_at_point_145______________________________ (len_plasma_electron_triton_mean_free_path_profile145)_ 1.45656612351216172e+05 -Electron-triton_mean_free_path_at_point_146______________________________ (len_plasma_electron_triton_mean_free_path_profile146)_ 1.45284526258755504e+05 -Electron-triton_mean_free_path_at_point_147______________________________ (len_plasma_electron_triton_mean_free_path_profile147)_ 1.44910440156682947e+05 -Electron-triton_mean_free_path_at_point_148______________________________ (len_plasma_electron_triton_mean_free_path_profile148)_ 1.44534365479165892e+05 -Electron-triton_mean_free_path_at_point_149______________________________ (len_plasma_electron_triton_mean_free_path_profile149)_ 1.44156313737331307e+05 -Electron-triton_mean_free_path_at_point_150______________________________ (len_plasma_electron_triton_mean_free_path_profile150)_ 1.43776296519216092e+05 -Electron-triton_mean_free_path_at_point_151______________________________ (len_plasma_electron_triton_mean_free_path_profile151)_ 1.43394325489719369e+05 -Electron-triton_mean_free_path_at_point_152______________________________ (len_plasma_electron_triton_mean_free_path_profile152)_ 1.43010412390549929e+05 -Electron-triton_mean_free_path_at_point_153______________________________ (len_plasma_electron_triton_mean_free_path_profile153)_ 1.42624569040175615e+05 -Electron-triton_mean_free_path_at_point_154______________________________ (len_plasma_electron_triton_mean_free_path_profile154)_ 1.42236807333768782e+05 -Electron-triton_mean_free_path_at_point_155______________________________ (len_plasma_electron_triton_mean_free_path_profile155)_ 1.41847139243151760e+05 -Electron-triton_mean_free_path_at_point_156______________________________ (len_plasma_electron_triton_mean_free_path_profile156)_ 1.41455576816740475e+05 -Electron-triton_mean_free_path_at_point_157______________________________ (len_plasma_electron_triton_mean_free_path_profile157)_ 1.41062132179487118e+05 -Electron-triton_mean_free_path_at_point_158______________________________ (len_plasma_electron_triton_mean_free_path_profile158)_ 1.40666817532820220e+05 -Electron-triton_mean_free_path_at_point_159______________________________ (len_plasma_electron_triton_mean_free_path_profile159)_ 1.40269645154584723e+05 -Electron-triton_mean_free_path_at_point_160______________________________ (len_plasma_electron_triton_mean_free_path_profile160)_ 1.39870627398979093e+05 -Electron-triton_mean_free_path_at_point_161______________________________ (len_plasma_electron_triton_mean_free_path_profile161)_ 1.39469776696491637e+05 -Electron-triton_mean_free_path_at_point_162______________________________ (len_plasma_electron_triton_mean_free_path_profile162)_ 1.39067105553835310e+05 -Electron-triton_mean_free_path_at_point_163______________________________ (len_plasma_electron_triton_mean_free_path_profile163)_ 1.38662626553880662e+05 -Electron-triton_mean_free_path_at_point_164______________________________ (len_plasma_electron_triton_mean_free_path_profile164)_ 1.38256352355587442e+05 -Electron-triton_mean_free_path_at_point_165______________________________ (len_plasma_electron_triton_mean_free_path_profile165)_ 1.37848295693933876e+05 -Electron-triton_mean_free_path_at_point_166______________________________ (len_plasma_electron_triton_mean_free_path_profile166)_ 1.37438469379845308e+05 -Electron-triton_mean_free_path_at_point_167______________________________ (len_plasma_electron_triton_mean_free_path_profile167)_ 1.37026886300119688e+05 -Electron-triton_mean_free_path_at_point_168______________________________ (len_plasma_electron_triton_mean_free_path_profile168)_ 1.36613559417352604e+05 -Electron-triton_mean_free_path_at_point_169______________________________ (len_plasma_electron_triton_mean_free_path_profile169)_ 1.36198501769861003e+05 -Electron-triton_mean_free_path_at_point_170______________________________ (len_plasma_electron_triton_mean_free_path_profile170)_ 1.35781726471601636e+05 -Electron-triton_mean_free_path_at_point_171______________________________ (len_plasma_electron_triton_mean_free_path_profile171)_ 1.35363246712093300e+05 -Electron-triton_mean_free_path_at_point_172______________________________ (len_plasma_electron_triton_mean_free_path_profile172)_ 1.34943075756331527e+05 -Electron-triton_mean_free_path_at_point_173______________________________ (len_plasma_electron_triton_mean_free_path_profile173)_ 1.34521226944705762e+05 -Electron-triton_mean_free_path_at_point_174______________________________ (len_plasma_electron_triton_mean_free_path_profile174)_ 1.34097713692911173e+05 -Electron-triton_mean_free_path_at_point_175______________________________ (len_plasma_electron_triton_mean_free_path_profile175)_ 1.33672549491861253e+05 -Electron-triton_mean_free_path_at_point_176______________________________ (len_plasma_electron_triton_mean_free_path_profile176)_ 1.33245747907597281e+05 -Electron-triton_mean_free_path_at_point_177______________________________ (len_plasma_electron_triton_mean_free_path_profile177)_ 1.32817322581194632e+05 -Electron-triton_mean_free_path_at_point_178______________________________ (len_plasma_electron_triton_mean_free_path_profile178)_ 1.32387287228669215e+05 -Electron-triton_mean_free_path_at_point_179______________________________ (len_plasma_electron_triton_mean_free_path_profile179)_ 1.31955655640880112e+05 -Electron-triton_mean_free_path_at_point_180______________________________ (len_plasma_electron_triton_mean_free_path_profile180)_ 1.31522441683431214e+05 -Electron-triton_mean_free_path_at_point_181______________________________ (len_plasma_electron_triton_mean_free_path_profile181)_ 1.31087659296569589e+05 -Electron-triton_mean_free_path_at_point_182______________________________ (len_plasma_electron_triton_mean_free_path_profile182)_ 1.30651322495081753e+05 -Electron-triton_mean_free_path_at_point_183______________________________ (len_plasma_electron_triton_mean_free_path_profile183)_ 1.30213445368189641e+05 -Electron-triton_mean_free_path_at_point_184______________________________ (len_plasma_electron_triton_mean_free_path_profile184)_ 1.29774042079440740e+05 -Electron-triton_mean_free_path_at_point_185______________________________ (len_plasma_electron_triton_mean_free_path_profile185)_ 1.29333126866600040e+05 -Electron-triton_mean_free_path_at_point_186______________________________ (len_plasma_electron_triton_mean_free_path_profile186)_ 1.28890714041536325e+05 -Electron-triton_mean_free_path_at_point_187______________________________ (len_plasma_electron_triton_mean_free_path_profile187)_ 1.28446817990106734e+05 -Electron-triton_mean_free_path_at_point_188______________________________ (len_plasma_electron_triton_mean_free_path_profile188)_ 1.28001453172041176e+05 -Electron-triton_mean_free_path_at_point_189______________________________ (len_plasma_electron_triton_mean_free_path_profile189)_ 1.27554634120820367e+05 -Electron-triton_mean_free_path_at_point_190______________________________ (len_plasma_electron_triton_mean_free_path_profile190)_ 1.27106375443555356e+05 -Electron-triton_mean_free_path_at_point_191______________________________ (len_plasma_electron_triton_mean_free_path_profile191)_ 1.26656691820861874e+05 -Electron-triton_mean_free_path_at_point_192______________________________ (len_plasma_electron_triton_mean_free_path_profile192)_ 1.26205598006732442e+05 -Electron-triton_mean_free_path_at_point_193______________________________ (len_plasma_electron_triton_mean_free_path_profile193)_ 1.25753108828406810e+05 -Electron-triton_mean_free_path_at_point_194______________________________ (len_plasma_electron_triton_mean_free_path_profile194)_ 1.25299239186239269e+05 -Electron-triton_mean_free_path_at_point_195______________________________ (len_plasma_electron_triton_mean_free_path_profile195)_ 1.24844004053562414e+05 -Electron-triton_mean_free_path_at_point_196______________________________ (len_plasma_electron_triton_mean_free_path_profile196)_ 1.24387418476550549e+05 -Electron-triton_mean_free_path_at_point_197______________________________ (len_plasma_electron_triton_mean_free_path_profile197)_ 1.23929497574075547e+05 -Electron-triton_mean_free_path_at_point_198______________________________ (len_plasma_electron_triton_mean_free_path_profile198)_ 1.23470256537567009e+05 -Electron-triton_mean_free_path_at_point_199______________________________ (len_plasma_electron_triton_mean_free_path_profile199)_ 1.23009710630861387e+05 -Electron-triton_mean_free_path_at_point_200______________________________ (len_plasma_electron_triton_mean_free_path_profile200)_ 1.22547875190055158e+05 -Electron-triton_mean_free_path_at_point_201______________________________ (len_plasma_electron_triton_mean_free_path_profile201)_ 1.22084765623351166e+05 -Electron-triton_mean_free_path_at_point_202______________________________ (len_plasma_electron_triton_mean_free_path_profile202)_ 1.21620397410902355e+05 -Electron-triton_mean_free_path_at_point_203______________________________ (len_plasma_electron_triton_mean_free_path_profile203)_ 1.21154786104653249e+05 -Electron-triton_mean_free_path_at_point_204______________________________ (len_plasma_electron_triton_mean_free_path_profile204)_ 1.20687947328178750e+05 -Electron-triton_mean_free_path_at_point_205______________________________ (len_plasma_electron_triton_mean_free_path_profile205)_ 1.20219896776518042e+05 -Electron-triton_mean_free_path_at_point_206______________________________ (len_plasma_electron_triton_mean_free_path_profile206)_ 1.19750650216006761e+05 -Electron-triton_mean_free_path_at_point_207______________________________ (len_plasma_electron_triton_mean_free_path_profile207)_ 1.19280223484105125e+05 -Electron-triton_mean_free_path_at_point_208______________________________ (len_plasma_electron_triton_mean_free_path_profile208)_ 1.18808632489223179e+05 -Electron-triton_mean_free_path_at_point_209______________________________ (len_plasma_electron_triton_mean_free_path_profile209)_ 1.18335893210543247e+05 -Electron-triton_mean_free_path_at_point_210______________________________ (len_plasma_electron_triton_mean_free_path_profile210)_ 1.17862021697836593e+05 -Electron-triton_mean_free_path_at_point_211______________________________ (len_plasma_electron_triton_mean_free_path_profile211)_ 1.17387034071280112e+05 -Electron-triton_mean_free_path_at_point_212______________________________ (len_plasma_electron_triton_mean_free_path_profile212)_ 1.16910946521266451e+05 -Electron-triton_mean_free_path_at_point_213______________________________ (len_plasma_electron_triton_mean_free_path_profile213)_ 1.16433775308211814e+05 -Electron-triton_mean_free_path_at_point_214______________________________ (len_plasma_electron_triton_mean_free_path_profile214)_ 1.15955536762361167e+05 -Electron-triton_mean_free_path_at_point_215______________________________ (len_plasma_electron_triton_mean_free_path_profile215)_ 1.15476247283588047e+05 -Electron-triton_mean_free_path_at_point_216______________________________ (len_plasma_electron_triton_mean_free_path_profile216)_ 1.14995923341190864e+05 -Electron-triton_mean_free_path_at_point_217______________________________ (len_plasma_electron_triton_mean_free_path_profile217)_ 1.14514581473686660e+05 -Electron-triton_mean_free_path_at_point_218______________________________ (len_plasma_electron_triton_mean_free_path_profile218)_ 1.14032238288599605e+05 -Electron-triton_mean_free_path_at_point_219______________________________ (len_plasma_electron_triton_mean_free_path_profile219)_ 1.13548910462247528e+05 -Electron-triton_mean_free_path_at_point_220______________________________ (len_plasma_electron_triton_mean_free_path_profile220)_ 1.13064614739521494e+05 -Electron-triton_mean_free_path_at_point_221______________________________ (len_plasma_electron_triton_mean_free_path_profile221)_ 1.12579367933664151e+05 -Electron-triton_mean_free_path_at_point_222______________________________ (len_plasma_electron_triton_mean_free_path_profile222)_ 1.12093186926042719e+05 -Electron-triton_mean_free_path_at_point_223______________________________ (len_plasma_electron_triton_mean_free_path_profile223)_ 1.11606088665918607e+05 -Electron-triton_mean_free_path_at_point_224______________________________ (len_plasma_electron_triton_mean_free_path_profile224)_ 1.11118090170211712e+05 -Electron-triton_mean_free_path_at_point_225______________________________ (len_plasma_electron_triton_mean_free_path_profile225)_ 1.10629208523260910e+05 -Electron-triton_mean_free_path_at_point_226______________________________ (len_plasma_electron_triton_mean_free_path_profile226)_ 1.10139460876581434e+05 -Electron-triton_mean_free_path_at_point_227______________________________ (len_plasma_electron_triton_mean_free_path_profile227)_ 1.09648864448616514e+05 -Electron-triton_mean_free_path_at_point_228______________________________ (len_plasma_electron_triton_mean_free_path_profile228)_ 1.09157436524484103e+05 -Electron-triton_mean_free_path_at_point_229______________________________ (len_plasma_electron_triton_mean_free_path_profile229)_ 1.08665194455722027e+05 -Electron-triton_mean_free_path_at_point_230______________________________ (len_plasma_electron_triton_mean_free_path_profile230)_ 1.08172155660024800e+05 -Electron-triton_mean_free_path_at_point_231______________________________ (len_plasma_electron_triton_mean_free_path_profile231)_ 1.07678337620977982e+05 -Electron-triton_mean_free_path_at_point_232______________________________ (len_plasma_electron_triton_mean_free_path_profile232)_ 1.07183757887788961e+05 -Electron-triton_mean_free_path_at_point_233______________________________ (len_plasma_electron_triton_mean_free_path_profile233)_ 1.06688434075008438e+05 -Electron-triton_mean_free_path_at_point_234______________________________ (len_plasma_electron_triton_mean_free_path_profile234)_ 1.06192383862254195e+05 -Electron-triton_mean_free_path_at_point_235______________________________ (len_plasma_electron_triton_mean_free_path_profile235)_ 1.05695624993923004e+05 -Electron-triton_mean_free_path_at_point_236______________________________ (len_plasma_electron_triton_mean_free_path_profile236)_ 1.05198175278901937e+05 -Electron-triton_mean_free_path_at_point_237______________________________ (len_plasma_electron_triton_mean_free_path_profile237)_ 1.04700052590273117e+05 -Electron-triton_mean_free_path_at_point_238______________________________ (len_plasma_electron_triton_mean_free_path_profile238)_ 1.04201274865013795e+05 -Electron-triton_mean_free_path_at_point_239______________________________ (len_plasma_electron_triton_mean_free_path_profile239)_ 1.03701860103690415e+05 -Electron-triton_mean_free_path_at_point_240______________________________ (len_plasma_electron_triton_mean_free_path_profile240)_ 1.03201826370149967e+05 -Electron-triton_mean_free_path_at_point_241______________________________ (len_plasma_electron_triton_mean_free_path_profile241)_ 1.02701191791202582e+05 -Electron-triton_mean_free_path_at_point_242______________________________ (len_plasma_electron_triton_mean_free_path_profile242)_ 1.02199974556301255e+05 -Electron-triton_mean_free_path_at_point_243______________________________ (len_plasma_electron_triton_mean_free_path_profile243)_ 1.01698192917215594e+05 -Electron-triton_mean_free_path_at_point_244______________________________ (len_plasma_electron_triton_mean_free_path_profile244)_ 1.01195865187699499e+05 -Electron-triton_mean_free_path_at_point_245______________________________ (len_plasma_electron_triton_mean_free_path_profile245)_ 1.00693009743154034e+05 -Electron-triton_mean_free_path_at_point_246______________________________ (len_plasma_electron_triton_mean_free_path_profile246)_ 1.00189645020284574e+05 -Electron-triton_mean_free_path_at_point_247______________________________ (len_plasma_electron_triton_mean_free_path_profile247)_ 9.96857895167517418e+04 -Electron-triton_mean_free_path_at_point_248______________________________ (len_plasma_electron_triton_mean_free_path_profile248)_ 9.91814617908170330e+04 -Electron-triton_mean_free_path_at_point_249______________________________ (len_plasma_electron_triton_mean_free_path_profile249)_ 9.86766804609821847e+04 -Electron-triton_mean_free_path_at_point_250______________________________ (len_plasma_electron_triton_mean_free_path_profile250)_ 9.81714642056229641e+04 -Electron-triton_mean_free_path_at_point_251______________________________ (len_plasma_electron_triton_mean_free_path_profile251)_ 9.76658317626175995e+04 -Electron-triton_mean_free_path_at_point_252______________________________ (len_plasma_electron_triton_mean_free_path_profile252)_ 9.71598019289678195e+04 -Electron-triton_mean_free_path_at_point_253______________________________ (len_plasma_electron_triton_mean_free_path_profile253)_ 9.66533935604138387e+04 -Electron-triton_mean_free_path_at_point_254______________________________ (len_plasma_electron_triton_mean_free_path_profile254)_ 9.61466255710455443e+04 -Electron-triton_mean_free_path_at_point_255______________________________ (len_plasma_electron_triton_mean_free_path_profile255)_ 9.56395169329029595e+04 -Electron-triton_mean_free_path_at_point_256______________________________ (len_plasma_electron_triton_mean_free_path_profile256)_ 9.51320866755757452e+04 -Electron-triton_mean_free_path_at_point_257______________________________ (len_plasma_electron_triton_mean_free_path_profile257)_ 9.46243538857903186e+04 -Electron-triton_mean_free_path_at_point_258______________________________ (len_plasma_electron_triton_mean_free_path_profile258)_ 9.41163377069969720e+04 -Electron-triton_mean_free_path_at_point_259______________________________ (len_plasma_electron_triton_mean_free_path_profile259)_ 9.36080573389439232e+04 -Electron-triton_mean_free_path_at_point_260______________________________ (len_plasma_electron_triton_mean_free_path_profile260)_ 9.30995320372495480e+04 -Electron-triton_mean_free_path_at_point_261______________________________ (len_plasma_electron_triton_mean_free_path_profile261)_ 9.25907811129653855e+04 -Electron-triton_mean_free_path_at_point_262______________________________ (len_plasma_electron_triton_mean_free_path_profile262)_ 9.20818239321338915e+04 -Electron-triton_mean_free_path_at_point_263______________________________ (len_plasma_electron_triton_mean_free_path_profile263)_ 9.15726799153369793e+04 -Electron-triton_mean_free_path_at_point_264______________________________ (len_plasma_electron_triton_mean_free_path_profile264)_ 9.10633685372397886e+04 -Electron-triton_mean_free_path_at_point_265______________________________ (len_plasma_electron_triton_mean_free_path_profile265)_ 9.05539093261265371e+04 -Electron-triton_mean_free_path_at_point_266______________________________ (len_plasma_electron_triton_mean_free_path_profile266)_ 9.00443218634293589e+04 -Electron-triton_mean_free_path_at_point_267______________________________ (len_plasma_electron_triton_mean_free_path_profile267)_ 8.95346257832496194e+04 -Electron-triton_mean_free_path_at_point_268______________________________ (len_plasma_electron_triton_mean_free_path_profile268)_ 8.90248407718729140e+04 -Electron-triton_mean_free_path_at_point_269______________________________ (len_plasma_electron_triton_mean_free_path_profile269)_ 8.85149865672739979e+04 -Electron-triton_mean_free_path_at_point_270______________________________ (len_plasma_electron_triton_mean_free_path_profile270)_ 8.80050829586190084e+04 -Electron-triton_mean_free_path_at_point_271______________________________ (len_plasma_electron_triton_mean_free_path_profile271)_ 8.74951497857550421e+04 -Electron-triton_mean_free_path_at_point_272______________________________ (len_plasma_electron_triton_mean_free_path_profile272)_ 8.69852069386952644e+04 -Electron-triton_mean_free_path_at_point_273______________________________ (len_plasma_electron_triton_mean_free_path_profile273)_ 8.64752743570961611e+04 -Electron-triton_mean_free_path_at_point_274______________________________ (len_plasma_electron_triton_mean_free_path_profile274)_ 8.59653720297249529e+04 -Electron-triton_mean_free_path_at_point_275______________________________ (len_plasma_electron_triton_mean_free_path_profile275)_ 8.54555199939220765e+04 -Electron-triton_mean_free_path_at_point_276______________________________ (len_plasma_electron_triton_mean_free_path_profile276)_ 8.49457383350536984e+04 -Electron-triton_mean_free_path_at_point_277______________________________ (len_plasma_electron_triton_mean_free_path_profile277)_ 8.44360471859561803e+04 -Electron-triton_mean_free_path_at_point_278______________________________ (len_plasma_electron_triton_mean_free_path_profile278)_ 8.39264667263745359e+04 -Electron-triton_mean_free_path_at_point_279______________________________ (len_plasma_electron_triton_mean_free_path_profile279)_ 8.34170171823901765e+04 -Electron-triton_mean_free_path_at_point_280______________________________ (len_plasma_electron_triton_mean_free_path_profile280)_ 8.29077188258418319e+04 -Electron-triton_mean_free_path_at_point_281______________________________ (len_plasma_electron_triton_mean_free_path_profile281)_ 8.23985919737388467e+04 -Electron-triton_mean_free_path_at_point_282______________________________ (len_plasma_electron_triton_mean_free_path_profile282)_ 8.18896569876649883e+04 -Electron-triton_mean_free_path_at_point_283______________________________ (len_plasma_electron_triton_mean_free_path_profile283)_ 8.13809342731728393e+04 -Electron-triton_mean_free_path_at_point_284______________________________ (len_plasma_electron_triton_mean_free_path_profile284)_ 8.08724442791733600e+04 -Electron-triton_mean_free_path_at_point_285______________________________ (len_plasma_electron_triton_mean_free_path_profile285)_ 8.03642074973123526e+04 -Electron-triton_mean_free_path_at_point_286______________________________ (len_plasma_electron_triton_mean_free_path_profile286)_ 7.98562444613428524e+04 -Electron-triton_mean_free_path_at_point_287______________________________ (len_plasma_electron_triton_mean_free_path_profile287)_ 7.93485757464841590e+04 -Electron-triton_mean_free_path_at_point_288______________________________ (len_plasma_electron_triton_mean_free_path_profile288)_ 7.88412219687764155e+04 -Electron-triton_mean_free_path_at_point_289______________________________ (len_plasma_electron_triton_mean_free_path_profile289)_ 7.83342037844237639e+04 -Electron-triton_mean_free_path_at_point_290______________________________ (len_plasma_electron_triton_mean_free_path_profile290)_ 7.78275418891298759e+04 -Electron-triton_mean_free_path_at_point_291______________________________ (len_plasma_electron_triton_mean_free_path_profile291)_ 7.73212570174233551e+04 -Electron-triton_mean_free_path_at_point_292______________________________ (len_plasma_electron_triton_mean_free_path_profile292)_ 7.68153699419762997e+04 -Electron-triton_mean_free_path_at_point_293______________________________ (len_plasma_electron_triton_mean_free_path_profile293)_ 7.63099014729113405e+04 -Electron-triton_mean_free_path_at_point_294______________________________ (len_plasma_electron_triton_mean_free_path_profile294)_ 7.58048724571021303e+04 -Electron-triton_mean_free_path_at_point_295______________________________ (len_plasma_electron_triton_mean_free_path_profile295)_ 7.53003037774623517e+04 -Electron-triton_mean_free_path_at_point_296______________________________ (len_plasma_electron_triton_mean_free_path_profile296)_ 7.47962163522280025e+04 -Electron-triton_mean_free_path_at_point_297______________________________ (len_plasma_electron_triton_mean_free_path_profile297)_ 7.42926311342283880e+04 -Electron-triton_mean_free_path_at_point_298______________________________ (len_plasma_electron_triton_mean_free_path_profile298)_ 7.37895691101498523e+04 -Electron-triton_mean_free_path_at_point_299______________________________ (len_plasma_electron_triton_mean_free_path_profile299)_ 7.32870512997889309e+04 -Electron-triton_mean_free_path_at_point_300______________________________ (len_plasma_electron_triton_mean_free_path_profile300)_ 7.27850987552967417e+04 -Electron-triton_mean_free_path_at_point_301______________________________ (len_plasma_electron_triton_mean_free_path_profile301)_ 7.22837325604141370e+04 -Electron-triton_mean_free_path_at_point_302______________________________ (len_plasma_electron_triton_mean_free_path_profile302)_ 7.17829738296986470e+04 -Electron-triton_mean_free_path_at_point_303______________________________ (len_plasma_electron_triton_mean_free_path_profile303)_ 7.12828437077396229e+04 -Electron-triton_mean_free_path_at_point_304______________________________ (len_plasma_electron_triton_mean_free_path_profile304)_ 7.07833633683670923e+04 -Electron-triton_mean_free_path_at_point_305______________________________ (len_plasma_electron_triton_mean_free_path_profile305)_ 7.02845540138501092e+04 -Electron-triton_mean_free_path_at_point_306______________________________ (len_plasma_electron_triton_mean_free_path_profile306)_ 6.97864368740846403e+04 -Electron-triton_mean_free_path_at_point_307______________________________ (len_plasma_electron_triton_mean_free_path_profile307)_ 6.92890332057747146e+04 -Electron-triton_mean_free_path_at_point_308______________________________ (len_plasma_electron_triton_mean_free_path_profile308)_ 6.87923642916027602e+04 -Electron-triton_mean_free_path_at_point_309______________________________ (len_plasma_electron_triton_mean_free_path_profile309)_ 6.82964514393913269e+04 -Electron-triton_mean_free_path_at_point_310______________________________ (len_plasma_electron_triton_mean_free_path_profile310)_ 6.78013159812554804e+04 -Electron-triton_mean_free_path_at_point_311______________________________ (len_plasma_electron_triton_mean_free_path_profile311)_ 6.73069792727468594e+04 -Electron-triton_mean_free_path_at_point_312______________________________ (len_plasma_electron_triton_mean_free_path_profile312)_ 6.68134626919885632e+04 -Electron-triton_mean_free_path_at_point_313______________________________ (len_plasma_electron_triton_mean_free_path_profile313)_ 6.63207876387995057e+04 -Electron-triton_mean_free_path_at_point_314______________________________ (len_plasma_electron_triton_mean_free_path_profile314)_ 6.58289755338134419e+04 -Electron-triton_mean_free_path_at_point_315______________________________ (len_plasma_electron_triton_mean_free_path_profile315)_ 6.53380478175861499e+04 -Electron-triton_mean_free_path_at_point_316______________________________ (len_plasma_electron_triton_mean_free_path_profile316)_ 6.48480259496951403e+04 -Electron-triton_mean_free_path_at_point_317______________________________ (len_plasma_electron_triton_mean_free_path_profile317)_ 6.43589314078324242e+04 -Electron-triton_mean_free_path_at_point_318______________________________ (len_plasma_electron_triton_mean_free_path_profile318)_ 6.38707856868854651e+04 -Electron-triton_mean_free_path_at_point_319______________________________ (len_plasma_electron_triton_mean_free_path_profile319)_ 6.33836102980138676e+04 -Electron-triton_mean_free_path_at_point_320______________________________ (len_plasma_electron_triton_mean_free_path_profile320)_ 6.28974267677159005e+04 -Electron-triton_mean_free_path_at_point_321______________________________ (len_plasma_electron_triton_mean_free_path_profile321)_ 6.24122566368870612e+04 -Electron-triton_mean_free_path_at_point_322______________________________ (len_plasma_electron_triton_mean_free_path_profile322)_ 6.19281214598729857e+04 -Electron-triton_mean_free_path_at_point_323______________________________ (len_plasma_electron_triton_mean_free_path_profile323)_ 6.14450428035120785e+04 -Electron-triton_mean_free_path_at_point_324______________________________ (len_plasma_electron_triton_mean_free_path_profile324)_ 6.09630422461738272e+04 -Electron-triton_mean_free_path_at_point_325______________________________ (len_plasma_electron_triton_mean_free_path_profile325)_ 6.04821413767893609e+04 -Electron-triton_mean_free_path_at_point_326______________________________ (len_plasma_electron_triton_mean_free_path_profile326)_ 6.00023617938733878e+04 -Electron-triton_mean_free_path_at_point_327______________________________ (len_plasma_electron_triton_mean_free_path_profile327)_ 5.95237251045436715e+04 -Electron-triton_mean_free_path_at_point_328______________________________ (len_plasma_electron_triton_mean_free_path_profile328)_ 5.90462529235314869e+04 -Electron-triton_mean_free_path_at_point_329______________________________ (len_plasma_electron_triton_mean_free_path_profile329)_ 5.85699668721876442e+04 -Electron-triton_mean_free_path_at_point_330______________________________ (len_plasma_electron_triton_mean_free_path_profile330)_ 5.80948885774834343e+04 -Electron-triton_mean_free_path_at_point_331______________________________ (len_plasma_electron_triton_mean_free_path_profile331)_ 5.76210396710064742e+04 -Electron-triton_mean_free_path_at_point_332______________________________ (len_plasma_electron_triton_mean_free_path_profile332)_ 5.71484417879526009e+04 -Electron-triton_mean_free_path_at_point_333______________________________ (len_plasma_electron_triton_mean_free_path_profile333)_ 5.66771165661133709e+04 -Electron-triton_mean_free_path_at_point_334______________________________ (len_plasma_electron_triton_mean_free_path_profile334)_ 5.62070856448604318e+04 -Electron-triton_mean_free_path_at_point_335______________________________ (len_plasma_electron_triton_mean_free_path_profile335)_ 5.57383706641274912e+04 -Electron-triton_mean_free_path_at_point_336______________________________ (len_plasma_electron_triton_mean_free_path_profile336)_ 5.52709932633896751e+04 -Electron-triton_mean_free_path_at_point_337______________________________ (len_plasma_electron_triton_mean_free_path_profile337)_ 5.48049750806415905e+04 -Electron-triton_mean_free_path_at_point_338______________________________ (len_plasma_electron_triton_mean_free_path_profile338)_ 5.43403377513738233e+04 -Electron-triton_mean_free_path_at_point_339______________________________ (len_plasma_electron_triton_mean_free_path_profile339)_ 5.38771029075503975e+04 -Electron-triton_mean_free_path_at_point_340______________________________ (len_plasma_electron_triton_mean_free_path_profile340)_ 5.34152921765852298e+04 -Electron-triton_mean_free_path_at_point_341______________________________ (len_plasma_electron_triton_mean_free_path_profile341)_ 5.29549271803223673e+04 -Electron-triton_mean_free_path_at_point_342______________________________ (len_plasma_electron_triton_mean_free_path_profile342)_ 5.24960295340154262e+04 -Electron-triton_mean_free_path_at_point_343______________________________ (len_plasma_electron_triton_mean_free_path_profile343)_ 5.20386208453131403e+04 -Electron-triton_mean_free_path_at_point_344______________________________ (len_plasma_electron_triton_mean_free_path_profile344)_ 5.15827227132473272e+04 -Electron-triton_mean_free_path_at_point_345______________________________ (len_plasma_electron_triton_mean_free_path_profile345)_ 5.11283567272267464e+04 -Electron-triton_mean_free_path_at_point_346______________________________ (len_plasma_electron_triton_mean_free_path_profile346)_ 5.06755444660369030e+04 -Electron-triton_mean_free_path_at_point_347______________________________ (len_plasma_electron_triton_mean_free_path_profile347)_ 5.02243074968485816e+04 -Electron-triton_mean_free_path_at_point_348______________________________ (len_plasma_electron_triton_mean_free_path_profile348)_ 4.97746673742332641e+04 -Electron-triton_mean_free_path_at_point_349______________________________ (len_plasma_electron_triton_mean_free_path_profile349)_ 4.93266456391912216e+04 -Electron-triton_mean_free_path_at_point_350______________________________ (len_plasma_electron_triton_mean_free_path_profile350)_ 4.88802638181899456e+04 -Electron-triton_mean_free_path_at_point_351______________________________ (len_plasma_electron_triton_mean_free_path_profile351)_ 4.84355434222139011e+04 -Electron-triton_mean_free_path_at_point_352______________________________ (len_plasma_electron_triton_mean_free_path_profile352)_ 4.79925059458342948e+04 -Electron-triton_mean_free_path_at_point_353______________________________ (len_plasma_electron_triton_mean_free_path_profile353)_ 4.75511728662897367e+04 -Electron-triton_mean_free_path_at_point_354______________________________ (len_plasma_electron_triton_mean_free_path_profile354)_ 4.71115656425894995e+04 -Electron-triton_mean_free_path_at_point_355______________________________ (len_plasma_electron_triton_mean_free_path_profile355)_ 4.66737057146346051e+04 -Electron-triton_mean_free_path_at_point_356______________________________ (len_plasma_electron_triton_mean_free_path_profile356)_ 4.62376145023633071e+04 -Electron-triton_mean_free_path_at_point_357______________________________ (len_plasma_electron_triton_mean_free_path_profile357)_ 4.58033134049200235e+04 -Electron-triton_mean_free_path_at_point_358______________________________ (len_plasma_electron_triton_mean_free_path_profile358)_ 4.53708237998526092e+04 -Electron-triton_mean_free_path_at_point_359______________________________ (len_plasma_electron_triton_mean_free_path_profile359)_ 4.49401670423381875e+04 -Electron-triton_mean_free_path_at_point_360______________________________ (len_plasma_electron_triton_mean_free_path_profile360)_ 4.45113644644421074e+04 -Electron-triton_mean_free_path_at_point_361______________________________ (len_plasma_electron_triton_mean_free_path_profile361)_ 4.40844373744119221e+04 -Electron-triton_mean_free_path_at_point_362______________________________ (len_plasma_electron_triton_mean_free_path_profile362)_ 4.36594070560098189e+04 -Electron-triton_mean_free_path_at_point_363______________________________ (len_plasma_electron_triton_mean_free_path_profile363)_ 4.32362947678860000e+04 -Electron-triton_mean_free_path_at_point_364______________________________ (len_plasma_electron_triton_mean_free_path_profile364)_ 4.28151217429985627e+04 -Electron-triton_mean_free_path_at_point_365______________________________ (len_plasma_electron_triton_mean_free_path_profile365)_ 4.23959091880793858e+04 -Electron-triton_mean_free_path_at_point_366______________________________ (len_plasma_electron_triton_mean_free_path_profile366)_ 4.19786782831563905e+04 -Electron-triton_mean_free_path_at_point_367______________________________ (len_plasma_electron_triton_mean_free_path_profile367)_ 4.15634501811278169e+04 -Electron-triton_mean_free_path_at_point_368______________________________ (len_plasma_electron_triton_mean_free_path_profile368)_ 4.11502460074023547e+04 -Electron-triton_mean_free_path_at_point_369______________________________ (len_plasma_electron_triton_mean_free_path_profile369)_ 4.07390868596017390e+04 -Electron-triton_mean_free_path_at_point_370______________________________ (len_plasma_electron_triton_mean_free_path_profile370)_ 4.03299938073361627e+04 -Electron-triton_mean_free_path_at_point_371______________________________ (len_plasma_electron_triton_mean_free_path_profile371)_ 3.99229878920550764e+04 -Electron-triton_mean_free_path_at_point_372______________________________ (len_plasma_electron_triton_mean_free_path_profile372)_ 3.95180901269797905e+04 -Electron-triton_mean_free_path_at_point_373______________________________ (len_plasma_electron_triton_mean_free_path_profile373)_ 3.91153214971250636e+04 -Electron-triton_mean_free_path_at_point_374______________________________ (len_plasma_electron_triton_mean_free_path_profile374)_ 3.87147029594139894e+04 -Electron-triton_mean_free_path_at_point_375______________________________ (len_plasma_electron_triton_mean_free_path_profile375)_ 3.83162554428956719e+04 -Electron-triton_mean_free_path_at_point_376______________________________ (len_plasma_electron_triton_mean_free_path_profile376)_ 3.79199998490708531e+04 -Electron-triton_mean_free_path_at_point_377______________________________ (len_plasma_electron_triton_mean_free_path_profile377)_ 3.75259570523333095e+04 -Electron-triton_mean_free_path_at_point_378______________________________ (len_plasma_electron_triton_mean_free_path_profile378)_ 3.71341479005387882e+04 -Electron-triton_mean_free_path_at_point_379______________________________ (len_plasma_electron_triton_mean_free_path_profile379)_ 3.67445932157062343e+04 -Electron-triton_mean_free_path_at_point_380______________________________ (len_plasma_electron_triton_mean_free_path_profile380)_ 3.63573137948621807e+04 -Electron-triton_mean_free_path_at_point_381______________________________ (len_plasma_electron_triton_mean_free_path_profile381)_ 3.59723304110407335e+04 -Electron-triton_mean_free_path_at_point_382______________________________ (len_plasma_electron_triton_mean_free_path_profile382)_ 3.55896638144472454e+04 -Electron-triton_mean_free_path_at_point_383______________________________ (len_plasma_electron_triton_mean_free_path_profile383)_ 3.52093347337991509e+04 -Electron-triton_mean_free_path_at_point_384______________________________ (len_plasma_electron_triton_mean_free_path_profile384)_ 3.48313638778547684e+04 -Electron-triton_mean_free_path_at_point_385______________________________ (len_plasma_electron_triton_mean_free_path_profile385)_ 3.44557719371464264e+04 -Electron-triton_mean_free_path_at_point_386______________________________ (len_plasma_electron_triton_mean_free_path_profile386)_ 3.40825795859284772e+04 -Electron-triton_mean_free_path_at_point_387______________________________ (len_plasma_electron_triton_mean_free_path_profile387)_ 3.37118074843602881e+04 -Electron-triton_mean_free_path_at_point_388______________________________ (len_plasma_electron_triton_mean_free_path_profile388)_ 3.33434762809344538e+04 -Electron-triton_mean_free_path_at_point_389______________________________ (len_plasma_electron_triton_mean_free_path_profile389)_ 3.29776066151750638e+04 -Electron-triton_mean_free_path_at_point_390______________________________ (len_plasma_electron_triton_mean_free_path_profile390)_ 3.26142191206197858e+04 -Electron-triton_mean_free_path_at_point_391______________________________ (len_plasma_electron_triton_mean_free_path_profile391)_ 3.22533344281082536e+04 -Electron-triton_mean_free_path_at_point_392______________________________ (len_plasma_electron_triton_mean_free_path_profile392)_ 3.18949731693985013e+04 -Electron-triton_mean_free_path_at_point_393______________________________ (len_plasma_electron_triton_mean_free_path_profile393)_ 3.15391559811352090e+04 -Electron-triton_mean_free_path_at_point_394______________________________ (len_plasma_electron_triton_mean_free_path_profile394)_ 3.11859035091953265e+04 -Electron-triton_mean_free_path_at_point_395______________________________ (len_plasma_electron_triton_mean_free_path_profile395)_ 3.08352364134370800e+04 -Electron-triton_mean_free_path_at_point_396______________________________ (len_plasma_electron_triton_mean_free_path_profile396)_ 3.04871753728851327e+04 -Electron-triton_mean_free_path_at_point_397______________________________ (len_plasma_electron_triton_mean_free_path_profile397)_ 3.01417410913786734e+04 -Electron-triton_mean_free_path_at_point_398______________________________ (len_plasma_electron_triton_mean_free_path_profile398)_ 2.97989543037221410e+04 -Electron-triton_mean_free_path_at_point_399______________________________ (len_plasma_electron_triton_mean_free_path_profile399)_ 2.94588357823720908e+04 -Electron-triton_mean_free_path_at_point_400______________________________ (len_plasma_electron_triton_mean_free_path_profile400)_ 2.91214063447019362e+04 -Electron-triton_mean_free_path_at_point_401______________________________ (len_plasma_electron_triton_mean_free_path_profile401)_ 2.87866868608874720e+04 -Electron-triton_mean_free_path_at_point_402______________________________ (len_plasma_electron_triton_mean_free_path_profile402)_ 2.84546982624599441e+04 -Electron-triton_mean_free_path_at_point_403______________________________ (len_plasma_electron_triton_mean_free_path_profile403)_ 2.81254615515784972e+04 -Electron-triton_mean_free_path_at_point_404______________________________ (len_plasma_electron_triton_mean_free_path_profile404)_ 2.77989978110765369e+04 -Electron-triton_mean_free_path_at_point_405______________________________ (len_plasma_electron_triton_mean_free_path_profile405)_ 2.74753282153414912e+04 -Electron-triton_mean_free_path_at_point_406______________________________ (len_plasma_electron_triton_mean_free_path_profile406)_ 2.71544740420963644e+04 -Electron-triton_mean_free_path_at_point_407______________________________ (len_plasma_electron_triton_mean_free_path_profile407)_ 2.68364566851489872e+04 -Electron-triton_mean_free_path_at_point_408______________________________ (len_plasma_electron_triton_mean_free_path_profile408)_ 2.65212976681916443e+04 -Electron-triton_mean_free_path_at_point_409______________________________ (len_plasma_electron_triton_mean_free_path_profile409)_ 2.62090186597313441e+04 -Electron-triton_mean_free_path_at_point_410______________________________ (len_plasma_electron_triton_mean_free_path_profile410)_ 2.58996414892463254e+04 -Electron-triton_mean_free_path_at_point_411______________________________ (len_plasma_electron_triton_mean_free_path_profile411)_ 2.55931881646676593e+04 -Electron-triton_mean_free_path_at_point_412______________________________ (len_plasma_electron_triton_mean_free_path_profile412)_ 2.52896808912966626e+04 -Electron-triton_mean_free_path_at_point_413______________________________ (len_plasma_electron_triton_mean_free_path_profile413)_ 2.49891420922788893e+04 -Electron-triton_mean_free_path_at_point_414______________________________ (len_plasma_electron_triton_mean_free_path_profile414)_ 2.46915944307702957e+04 -Electron-triton_mean_free_path_at_point_415______________________________ (len_plasma_electron_triton_mean_free_path_profile415)_ 2.43970608339380306e+04 -Electron-triton_mean_free_path_at_point_416______________________________ (len_plasma_electron_triton_mean_free_path_profile416)_ 2.41055645189579482e+04 -Electron-triton_mean_free_path_at_point_417______________________________ (len_plasma_electron_triton_mean_free_path_profile417)_ 2.38171290211887645e+04 -Electron-triton_mean_free_path_at_point_418______________________________ (len_plasma_electron_triton_mean_free_path_profile418)_ 2.35317782247159121e+04 -Electron-triton_mean_free_path_at_point_419______________________________ (len_plasma_electron_triton_mean_free_path_profile419)_ 2.32495363954825370e+04 -Electron-triton_mean_free_path_at_point_420______________________________ (len_plasma_electron_triton_mean_free_path_profile420)_ 2.29704282172503772e+04 -Electron-triton_mean_free_path_at_point_421______________________________ (len_plasma_electron_triton_mean_free_path_profile421)_ 2.26944788306548107e+04 -Electron-triton_mean_free_path_at_point_422______________________________ (len_plasma_electron_triton_mean_free_path_profile422)_ 2.24217138756523418e+04 -Electron-triton_mean_free_path_at_point_423______________________________ (len_plasma_electron_triton_mean_free_path_profile423)_ 2.21521595376930236e+04 -Electron-triton_mean_free_path_at_point_424______________________________ (len_plasma_electron_triton_mean_free_path_profile424)_ 2.18858425979853382e+04 -Electron-triton_mean_free_path_at_point_425______________________________ (len_plasma_electron_triton_mean_free_path_profile425)_ 2.16227904882699549e+04 -Electron-triton_mean_free_path_at_point_426______________________________ (len_plasma_electron_triton_mean_free_path_profile426)_ 2.13630313505673039e+04 -Electron-triton_mean_free_path_at_point_427______________________________ (len_plasma_electron_triton_mean_free_path_profile427)_ 2.11065941024194544e+04 -Electron-triton_mean_free_path_at_point_428______________________________ (len_plasma_electron_triton_mean_free_path_profile428)_ 2.08535085082205223e+04 -Electron-triton_mean_free_path_at_point_429______________________________ (len_plasma_electron_triton_mean_free_path_profile429)_ 2.06038052572983397e+04 -Electron-triton_mean_free_path_at_point_430______________________________ (len_plasma_electron_triton_mean_free_path_profile430)_ 2.03575160495052114e+04 -Electron-triton_mean_free_path_at_point_431______________________________ (len_plasma_electron_triton_mean_free_path_profile431)_ 2.01146736891775145e+04 -Electron-triton_mean_free_path_at_point_432______________________________ (len_plasma_electron_triton_mean_free_path_profile432)_ 1.98753121884435750e+04 -Electron-triton_mean_free_path_at_point_433______________________________ (len_plasma_electron_triton_mean_free_path_profile433)_ 1.96394668810020921e+04 -Electron-triton_mean_free_path_at_point_434______________________________ (len_plasma_electron_triton_mean_free_path_profile434)_ 1.94071745476576580e+04 -Electron-triton_mean_free_path_at_point_435______________________________ (len_plasma_electron_triton_mean_free_path_profile435)_ 1.91784735550959849e+04 -Electron-triton_mean_free_path_at_point_436______________________________ (len_plasma_electron_triton_mean_free_path_profile436)_ 1.89534040096148019e+04 -Electron-triton_mean_free_path_at_point_437______________________________ (len_plasma_electron_triton_mean_free_path_profile437)_ 1.87320079277981931e+04 -Electron-triton_mean_free_path_at_point_438______________________________ (len_plasma_electron_triton_mean_free_path_profile438)_ 1.85143294264563556e+04 -Electron-triton_mean_free_path_at_point_439______________________________ (len_plasma_electron_triton_mean_free_path_profile439)_ 1.83004149345433907e+04 -Electron-triton_mean_free_path_at_point_440______________________________ (len_plasma_electron_triton_mean_free_path_profile440)_ 1.80903134302501348e+04 -Electron-triton_mean_free_path_at_point_441______________________________ (len_plasma_electron_triton_mean_free_path_profile441)_ 1.78840767070449037e+04 -Electron-triton_mean_free_path_at_point_442______________________________ (len_plasma_electron_triton_mean_free_path_profile442)_ 1.76817596731498197e+04 -Electron-triton_mean_free_path_at_point_443______________________________ (len_plasma_electron_triton_mean_free_path_profile443)_ 1.74834206898120901e+04 -Electron-triton_mean_free_path_at_point_444______________________________ (len_plasma_electron_triton_mean_free_path_profile444)_ 1.72891219548156696e+04 -Electron-triton_mean_free_path_at_point_445______________________________ (len_plasma_electron_triton_mean_free_path_profile445)_ 1.70989299390307860e+04 -Electron-triton_mean_free_path_at_point_446______________________________ (len_plasma_electron_triton_mean_free_path_profile446)_ 1.69129158855007881e+04 -Electron-triton_mean_free_path_at_point_447______________________________ (len_plasma_electron_triton_mean_free_path_profile447)_ 1.67311563827257523e+04 -Electron-triton_mean_free_path_at_point_448______________________________ (len_plasma_electron_triton_mean_free_path_profile448)_ 1.65537340265719613e+04 -Electron-triton_mean_free_path_at_point_449______________________________ (len_plasma_electron_triton_mean_free_path_profile449)_ 1.63807381888076688e+04 -Electron-triton_mean_free_path_at_point_450______________________________ (len_plasma_electron_triton_mean_free_path_profile450)_ 1.62122659149550036e+04 -Electron-triton_mean_free_path_at_point_451______________________________ (len_plasma_electron_triton_mean_free_path_profile451)_ 1.60484229803255148e+04 -Electron-triton_mean_free_path_at_point_452______________________________ (len_plasma_electron_triton_mean_free_path_profile452)_ 1.58893251414068509e+04 -Electron-triton_mean_free_path_at_point_453______________________________ (len_plasma_electron_triton_mean_free_path_profile453)_ 1.57350996310307382e+04 -Electron-triton_mean_free_path_at_point_454______________________________ (len_plasma_electron_triton_mean_free_path_profile454)_ 1.55858869612928138e+04 -Electron-triton_mean_free_path_at_point_455______________________________ (len_plasma_electron_triton_mean_free_path_profile455)_ 1.54418431200135601e+04 -Electron-triton_mean_free_path_at_point_456______________________________ (len_plasma_electron_triton_mean_free_path_profile456)_ 1.53031422777234002e+04 -Electron-triton_mean_free_path_at_point_457______________________________ (len_plasma_electron_triton_mean_free_path_profile457)_ 1.51699801677388750e+04 -Electron-triton_mean_free_path_at_point_458______________________________ (len_plasma_electron_triton_mean_free_path_profile458)_ 1.50425783701003184e+04 -Electron-triton_mean_free_path_at_point_459______________________________ (len_plasma_electron_triton_mean_free_path_profile459)_ 1.49211898350257252e+04 -Electron-triton_mean_free_path_at_point_460______________________________ (len_plasma_electron_triton_mean_free_path_profile460)_ 1.48061061479354594e+04 -Electron-triton_mean_free_path_at_point_461______________________________ (len_plasma_electron_triton_mean_free_path_profile461)_ 1.46976673118788585e+04 -Electron-triton_mean_free_path_at_point_462______________________________ (len_plasma_electron_triton_mean_free_path_profile462)_ 1.45962752932807998e+04 -Electron-triton_mean_free_path_at_point_463______________________________ (len_plasma_electron_triton_mean_free_path_profile463)_ 1.45024134263661817e+04 -Electron-triton_mean_free_path_at_point_464______________________________ (len_plasma_electron_triton_mean_free_path_profile464)_ 1.44166754050867839e+04 -Electron-triton_mean_free_path_at_point_465______________________________ (len_plasma_electron_triton_mean_free_path_profile465)_ 1.43398109865605184e+04 -Electron-triton_mean_free_path_at_point_466______________________________ (len_plasma_electron_triton_mean_free_path_profile466)_ 1.42728033332543364e+04 -Electron-triton_mean_free_path_at_point_467______________________________ (len_plasma_electron_triton_mean_free_path_profile467)_ 1.42170134741899874e+04 -Electron-triton_mean_free_path_at_point_468______________________________ (len_plasma_electron_triton_mean_free_path_profile468)_ 1.41744934285534582e+04 -Electron-triton_mean_free_path_at_point_469______________________________ (len_plasma_electron_triton_mean_free_path_profile469)_ 1.41488664101074501e+04 -Electron-triton_mean_free_path_at_point_470______________________________ (len_plasma_electron_triton_mean_free_path_profile470)_ 1.41507120070866004e+04 -Electron-triton_mean_free_path_at_point_471______________________________ (len_plasma_electron_triton_mean_free_path_profile471)_ 1.34479521023619673e+04 -Electron-triton_mean_free_path_at_point_472______________________________ (len_plasma_electron_triton_mean_free_path_profile472)_ 1.27541357500320119e+04 -Electron-triton_mean_free_path_at_point_473______________________________ (len_plasma_electron_triton_mean_free_path_profile473)_ 1.20697015272801327e+04 -Electron-triton_mean_free_path_at_point_474______________________________ (len_plasma_electron_triton_mean_free_path_profile474)_ 1.13951150757152263e+04 -Electron-triton_mean_free_path_at_point_475______________________________ (len_plasma_electron_triton_mean_free_path_profile475)_ 1.07308712340156926e+04 -Electron-triton_mean_free_path_at_point_476______________________________ (len_plasma_electron_triton_mean_free_path_profile476)_ 1.00774963801076829e+04 -Electron-triton_mean_free_path_at_point_477______________________________ (len_plasma_electron_triton_mean_free_path_profile477)_ 9.43555100832951393e+03 -Electron-triton_mean_free_path_at_point_478______________________________ (len_plasma_electron_triton_mean_free_path_profile478)_ 8.80563257087409329e+03 -Electron-triton_mean_free_path_at_point_479______________________________ (len_plasma_electron_triton_mean_free_path_profile479)_ 8.18837861738627635e+03 -Electron-triton_mean_free_path_at_point_480______________________________ (len_plasma_electron_triton_mean_free_path_profile480)_ 7.58447027209312637e+03 -Electron-triton_mean_free_path_at_point_481______________________________ (len_plasma_electron_triton_mean_free_path_profile481)_ 6.99463609450101740e+03 -Electron-triton_mean_free_path_at_point_482______________________________ (len_plasma_electron_triton_mean_free_path_profile482)_ 6.41965637783335387e+03 -Electron-triton_mean_free_path_at_point_483______________________________ (len_plasma_electron_triton_mean_free_path_profile483)_ 5.86036794943414952e+03 -Electron-triton_mean_free_path_at_point_484______________________________ (len_plasma_electron_triton_mean_free_path_profile484)_ 5.31766954993951458e+03 -Electron-triton_mean_free_path_at_point_485______________________________ (len_plasma_electron_triton_mean_free_path_profile485)_ 4.79252788398292432e+03 -Electron-triton_mean_free_path_at_point_486______________________________ (len_plasma_electron_triton_mean_free_path_profile486)_ 4.28598445579268355e+03 -Electron-triton_mean_free_path_at_point_487______________________________ (len_plasma_electron_triton_mean_free_path_profile487)_ 3.79916333013002668e+03 -Electron-triton_mean_free_path_at_point_488______________________________ (len_plasma_electron_triton_mean_free_path_profile488)_ 3.33327999544676322e+03 -Electron-triton_mean_free_path_at_point_489______________________________ (len_plasma_electron_triton_mean_free_path_profile489)_ 2.88965155641549245e+03 -Electron-triton_mean_free_path_at_point_490______________________________ (len_plasma_electron_triton_mean_free_path_profile490)_ 2.46970855448285147e+03 -Electron-triton_mean_free_path_at_point_491______________________________ (len_plasma_electron_triton_mean_free_path_profile491)_ 2.07500882039234057e+03 -Electron-triton_mean_free_path_at_point_492______________________________ (len_plasma_electron_triton_mean_free_path_profile492)_ 1.70725392419633863e+03 -Electron-triton_mean_free_path_at_point_493______________________________ (len_plasma_electron_triton_mean_free_path_profile493)_ 1.36830904842746850e+03 -Electron-triton_mean_free_path_at_point_494______________________________ (len_plasma_electron_triton_mean_free_path_profile494)_ 1.06022755371901667e+03 -Electron-triton_mean_free_path_at_point_495______________________________ (len_plasma_electron_triton_mean_free_path_profile495)_ 7.85282316875095944e+02 -Electron-triton_mean_free_path_at_point_496______________________________ (len_plasma_electron_triton_mean_free_path_profile496)_ 5.46007535745401697e+02 -Electron-triton_mean_free_path_at_point_497______________________________ (len_plasma_electron_triton_mean_free_path_profile497)_ 3.45258285117165769e+02 -Electron-triton_mean_free_path_at_point_498______________________________ (len_plasma_electron_triton_mean_free_path_profile498)_ 1.86304386440649523e+02 -Electron-triton_mean_free_path_at_point_499______________________________ (len_plasma_electron_triton_mean_free_path_profile499)_ 7.30051992998893979e+01 -Electron-triton_mean_free_path_at_point_500______________________________ (len_plasma_electron_triton_mean_free_path_profile500)_ 1.02589023636866354e+01 -Volume_averaged_electron-alpha_thermal_mean_free_path_(λₑα)_(m)__________ (len_plasma_electron_alpha_thermal_mean_free_path_vol_avg)_ 6.40469966674393290e+04 -Electron-alpha_thermal_mean_free_path_at_point_0_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile0)_ 1.98869275665101042e+05 -Electron-alpha_thermal_mean_free_path_at_point_1_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile1)_ 1.98867656613750616e+05 -Electron-alpha_thermal_mean_free_path_at_point_2_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile2)_ 1.98862799504364346e+05 -Electron-alpha_thermal_mean_free_path_at_point_3_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile3)_ 1.98854704470936413e+05 -Electron-alpha_thermal_mean_free_path_at_point_4_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile4)_ 1.98843371736792556e+05 -Electron-alpha_thermal_mean_free_path_at_point_5_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile5)_ 1.98828801614587632e+05 -Electron-alpha_thermal_mean_free_path_at_point_6_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile6)_ 1.98810994506306131e+05 -Electron-alpha_thermal_mean_free_path_at_point_7_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile7)_ 1.98789950903266086e+05 -Electron-alpha_thermal_mean_free_path_at_point_8_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile8)_ 1.98765671386114496e+05 -Electron-alpha_thermal_mean_free_path_at_point_9_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile9)_ 1.98738156624832045e+05 -Electron-alpha_thermal_mean_free_path_at_point_10________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile10)_ 1.98707407378730772e+05 -Electron-alpha_thermal_mean_free_path_at_point_11________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile11)_ 1.98673424496456719e+05 -Electron-alpha_thermal_mean_free_path_at_point_12________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile12)_ 1.98636208915990574e+05 -Electron-alpha_thermal_mean_free_path_at_point_13________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile13)_ 1.98595761664647551e+05 -Electron-alpha_thermal_mean_free_path_at_point_14________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile14)_ 1.98552083859079634e+05 -Electron-alpha_thermal_mean_free_path_at_point_15________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile15)_ 1.98505176705275255e+05 -Electron-alpha_thermal_mean_free_path_at_point_16________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile16)_ 1.98455041498561710e+05 -Electron-alpha_thermal_mean_free_path_at_point_17________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile17)_ 1.98401679623606178e+05 -Electron-alpha_thermal_mean_free_path_at_point_18________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile18)_ 1.98345092554416973e+05 -Electron-alpha_thermal_mean_free_path_at_point_19________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile19)_ 1.98285281854343426e+05 -Electron-alpha_thermal_mean_free_path_at_point_20________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile20)_ 1.98222249176079757e+05 -Electron-alpha_thermal_mean_free_path_at_point_21________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile21)_ 1.98155996261665859e+05 -Electron-alpha_thermal_mean_free_path_at_point_22________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile22)_ 1.98086524942487915e+05 -Electron-alpha_thermal_mean_free_path_at_point_23________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile23)_ 1.98013837139281008e+05 -Electron-alpha_thermal_mean_free_path_at_point_24________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile24)_ 1.97937934862129885e+05 -Electron-alpha_thermal_mean_free_path_at_point_25________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile25)_ 1.97858820210472622e+05 -Electron-alpha_thermal_mean_free_path_at_point_26________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile26)_ 1.97776495373100828e+05 -Electron-alpha_thermal_mean_free_path_at_point_27________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile27)_ 1.97690962628161651e+05 -Electron-alpha_thermal_mean_free_path_at_point_28________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile28)_ 1.97602224343161186e+05 -Electron-alpha_thermal_mean_free_path_at_point_29________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile29)_ 1.97510282974964503e+05 -Electron-alpha_thermal_mean_free_path_at_point_30________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile30)_ 1.97415141069799400e+05 -Electron-alpha_thermal_mean_free_path_at_point_31________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile31)_ 1.97316801263257163e+05 -Electron-alpha_thermal_mean_free_path_at_point_32________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile32)_ 1.97215266280296288e+05 -Electron-alpha_thermal_mean_free_path_at_point_33________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile33)_ 1.97110538935243763e+05 -Electron-alpha_thermal_mean_free_path_at_point_34________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile34)_ 1.97002622131796059e+05 -Electron-alpha_thermal_mean_free_path_at_point_35________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile35)_ 1.96891518863024714e+05 -Electron-alpha_thermal_mean_free_path_at_point_36________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile36)_ 1.96777232211375056e+05 -Electron-alpha_thermal_mean_free_path_at_point_37________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile37)_ 1.96659765348671528e+05 -Electron-alpha_thermal_mean_free_path_at_point_38________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile38)_ 1.96539121536117833e+05 -Electron-alpha_thermal_mean_free_path_at_point_39________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile39)_ 1.96415304124300019e+05 -Electron-alpha_thermal_mean_free_path_at_point_40________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile40)_ 1.96288316553189827e+05 -Electron-alpha_thermal_mean_free_path_at_point_41________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile41)_ 1.96158162352146028e+05 -Electron-alpha_thermal_mean_free_path_at_point_42________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile42)_ 1.96024845139916899e+05 -Electron-alpha_thermal_mean_free_path_at_point_43________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile43)_ 1.95888368624642870e+05 -Electron-alpha_thermal_mean_free_path_at_point_44________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile44)_ 1.95748736603859608e+05 -Electron-alpha_thermal_mean_free_path_at_point_45________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile45)_ 1.95605952964498516e+05 -Electron-alpha_thermal_mean_free_path_at_point_46________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile46)_ 1.95460021682891645e+05 -Electron-alpha_thermal_mean_free_path_at_point_47________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile47)_ 1.95310946824772371e+05 -Electron-alpha_thermal_mean_free_path_at_point_48________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile48)_ 1.95158732545278006e+05 -Electron-alpha_thermal_mean_free_path_at_point_49________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile49)_ 1.95003383088952367e+05 -Electron-alpha_thermal_mean_free_path_at_point_50________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile50)_ 1.94844902789748099e+05 -Electron-alpha_thermal_mean_free_path_at_point_51________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile51)_ 1.94683296071029152e+05 -Electron-alpha_thermal_mean_free_path_at_point_52________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile52)_ 1.94518567445572407e+05 -Electron-alpha_thermal_mean_free_path_at_point_53________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile53)_ 1.94350721515570243e+05 -Electron-alpha_thermal_mean_free_path_at_point_54________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile54)_ 1.94179762972632423e+05 -Electron-alpha_thermal_mean_free_path_at_point_55________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile55)_ 1.94005696597788687e+05 -Electron-alpha_thermal_mean_free_path_at_point_56________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile56)_ 1.93828527261489915e+05 -Electron-alpha_thermal_mean_free_path_at_point_57________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile57)_ 1.93648259923611156e+05 -Electron-alpha_thermal_mean_free_path_at_point_58________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile58)_ 1.93464899633452296e+05 -Electron-alpha_thermal_mean_free_path_at_point_59________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile59)_ 1.93278451529740269e+05 -Electron-alpha_thermal_mean_free_path_at_point_60________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile60)_ 1.93088920840631385e+05 -Electron-alpha_thermal_mean_free_path_at_point_61________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile61)_ 1.92896312883711624e+05 -Electron-alpha_thermal_mean_free_path_at_point_62________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile62)_ 1.92700633065999020e+05 -Electron-alpha_thermal_mean_free_path_at_point_63________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile63)_ 1.92501886883945263e+05 -Electron-alpha_thermal_mean_free_path_at_point_64________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile64)_ 1.92300079923435551e+05 -Electron-alpha_thermal_mean_free_path_at_point_65________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile65)_ 1.92095217859791243e+05 -Electron-alpha_thermal_mean_free_path_at_point_66________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile66)_ 1.91887306457769999e+05 -Electron-alpha_thermal_mean_free_path_at_point_67________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile67)_ 1.91676351571567298e+05 -Electron-alpha_thermal_mean_free_path_at_point_68________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile68)_ 1.91462359144815884e+05 -Electron-alpha_thermal_mean_free_path_at_point_69________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile69)_ 1.91245335210586607e+05 -Electron-alpha_thermal_mean_free_path_at_point_70________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile70)_ 1.91025285891391133e+05 -Electron-alpha_thermal_mean_free_path_at_point_71________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile71)_ 1.90802217399177927e+05 -Electron-alpha_thermal_mean_free_path_at_point_72________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile72)_ 1.90576136035335774e+05 -Electron-alpha_thermal_mean_free_path_at_point_73________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile73)_ 1.90347048190692323e+05 -Electron-alpha_thermal_mean_free_path_at_point_74________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile74)_ 1.90114960345513682e+05 -Electron-alpha_thermal_mean_free_path_at_point_75________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile75)_ 1.89879879069503077e+05 -Electron-alpha_thermal_mean_free_path_at_point_76________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile76)_ 1.89641811021802714e+05 -Electron-alpha_thermal_mean_free_path_at_point_77________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile77)_ 1.89400762950988952e+05 -Electron-alpha_thermal_mean_free_path_at_point_78________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile78)_ 1.89156741695073782e+05 -Electron-alpha_thermal_mean_free_path_at_point_79________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile79)_ 1.88909754181503027e+05 -Electron-alpha_thermal_mean_free_path_at_point_80________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile80)_ 1.88659807427152904e+05 -Electron-alpha_thermal_mean_free_path_at_point_81________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile81)_ 1.88406908538331016e+05 -Electron-alpha_thermal_mean_free_path_at_point_82________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile82)_ 1.88151064710769831e+05 -Electron-alpha_thermal_mean_free_path_at_point_83________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile83)_ 1.87892283229628665e+05 -Electron-alpha_thermal_mean_free_path_at_point_84________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile84)_ 1.87630571469486982e+05 -Electron-alpha_thermal_mean_free_path_at_point_85________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile85)_ 1.87365936894345039e+05 -Electron-alpha_thermal_mean_free_path_at_point_86________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile86)_ 1.87098387057615706e+05 -Electron-alpha_thermal_mean_free_path_at_point_87________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile87)_ 1.86827929602124728e+05 -Electron-alpha_thermal_mean_free_path_at_point_88________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile88)_ 1.86554572260105051e+05 -Electron-alpha_thermal_mean_free_path_at_point_89________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile89)_ 1.86278322853191785e+05 -Electron-alpha_thermal_mean_free_path_at_point_90________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile90)_ 1.85999189292418596e+05 -Electron-alpha_thermal_mean_free_path_at_point_91________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile91)_ 1.85717179578211304e+05 -Electron-alpha_thermal_mean_free_path_at_point_92________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile92)_ 1.85432301800382702e+05 -Electron-alpha_thermal_mean_free_path_at_point_93________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile93)_ 1.85144564138126821e+05 -Electron-alpha_thermal_mean_free_path_at_point_94________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile94)_ 1.84853974860012851e+05 -Electron-alpha_thermal_mean_free_path_at_point_95________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile95)_ 1.84560542323976959e+05 -Electron-alpha_thermal_mean_free_path_at_point_96________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile96)_ 1.84264274977316731e+05 -Electron-alpha_thermal_mean_free_path_at_point_97________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile97)_ 1.83965181356682355e+05 -Electron-alpha_thermal_mean_free_path_at_point_98________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile98)_ 1.83663270088069083e+05 -Electron-alpha_thermal_mean_free_path_at_point_99________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile99)_ 1.83358549886807770e+05 -Electron-alpha_thermal_mean_free_path_at_point_100_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile100)_ 1.83051029557557020e+05 -Electron-alpha_thermal_mean_free_path_at_point_101_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile101)_ 1.82740717994293256e+05 -Electron-alpha_thermal_mean_free_path_at_point_102_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile102)_ 1.82427624180299288e+05 -Electron-alpha_thermal_mean_free_path_at_point_103_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile103)_ 1.82111757188155636e+05 -Electron-alpha_thermal_mean_free_path_at_point_104_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile104)_ 1.81793126179728773e+05 -Electron-alpha_thermal_mean_free_path_at_point_105_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile105)_ 1.81471740406158351e+05 -Electron-alpha_thermal_mean_free_path_at_point_106_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile106)_ 1.81147609207846224e+05 -Electron-alpha_thermal_mean_free_path_at_point_107_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile107)_ 1.80820742014443706e+05 -Electron-alpha_thermal_mean_free_path_at_point_108_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile108)_ 1.80491148344836489e+05 -Electron-alpha_thermal_mean_free_path_at_point_109_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile109)_ 1.80158837807133503e+05 -Electron-alpha_thermal_mean_free_path_at_point_110_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile110)_ 1.79823820098648634e+05 -Electron-alpha_thermal_mean_free_path_at_point_111_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile111)_ 1.79486105005888967e+05 -Electron-alpha_thermal_mean_free_path_at_point_112_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile112)_ 1.79145702404535812e+05 -Electron-alpha_thermal_mean_free_path_at_point_113_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile113)_ 1.78802622259430616e+05 -Electron-alpha_thermal_mean_free_path_at_point_114_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile114)_ 1.78456874624555290e+05 -Electron-alpha_thermal_mean_free_path_at_point_115_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile115)_ 1.78108469643017481e+05 -Electron-alpha_thermal_mean_free_path_at_point_116_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile116)_ 1.77757417547026998e+05 -Electron-alpha_thermal_mean_free_path_at_point_117_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile117)_ 1.77403728657881700e+05 -Electron-alpha_thermal_mean_free_path_at_point_118_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile118)_ 1.77047413385943015e+05 -Electron-alpha_thermal_mean_free_path_at_point_119_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile119)_ 1.76688482230617898e+05 -Electron-alpha_thermal_mean_free_path_at_point_120_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile120)_ 1.76326945780334208e+05 -Electron-alpha_thermal_mean_free_path_at_point_121_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile121)_ 1.75962814712521387e+05 -Electron-alpha_thermal_mean_free_path_at_point_122_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile122)_ 1.75596099793584290e+05 -Electron-alpha_thermal_mean_free_path_at_point_123_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile123)_ 1.75226811878880719e+05 -Electron-alpha_thermal_mean_free_path_at_point_124_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile124)_ 1.74854961912694795e+05 -Electron-alpha_thermal_mean_free_path_at_point_125_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile125)_ 1.74480560928212391e+05 -Electron-alpha_thermal_mean_free_path_at_point_126_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile126)_ 1.74103620047493430e+05 -Electron-alpha_thermal_mean_free_path_at_point_127_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile127)_ 1.73724150481444143e+05 -Electron-alpha_thermal_mean_free_path_at_point_128_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile128)_ 1.73342163529788610e+05 -Electron-alpha_thermal_mean_free_path_at_point_129_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile129)_ 1.72957670581038372e+05 -Electron-alpha_thermal_mean_free_path_at_point_130_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile130)_ 1.72570683112462313e+05 -Electron-alpha_thermal_mean_free_path_at_point_131_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile131)_ 1.72181212690055720e+05 -Electron-alpha_thermal_mean_free_path_at_point_132_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile132)_ 1.71789270968504541e+05 -Electron-alpha_thermal_mean_free_path_at_point_133_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile133)_ 1.71394869691156608e+05 -Electron-alpha_thermal_mean_free_path_at_point_134_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile134)_ 1.70998020689981262e+05 -Electron-alpha_thermal_mean_free_path_at_point_135_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile135)_ 1.70598735885537782e+05 -Electron-alpha_thermal_mean_free_path_at_point_136_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile136)_ 1.70197027286935918e+05 -Electron-alpha_thermal_mean_free_path_at_point_137_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile137)_ 1.69792906991799216e+05 -Electron-alpha_thermal_mean_free_path_at_point_138_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile138)_ 1.69386387186223379e+05 -Electron-alpha_thermal_mean_free_path_at_point_139_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile139)_ 1.68977480144738802e+05 -Electron-alpha_thermal_mean_free_path_at_point_140_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile140)_ 1.68566198230267648e+05 -Electron-alpha_thermal_mean_free_path_at_point_141_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile141)_ 1.68152553894079785e+05 -Electron-alpha_thermal_mean_free_path_at_point_142_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile142)_ 1.67736559675749275e+05 -Electron-alpha_thermal_mean_free_path_at_point_143_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile143)_ 1.67318228203110863e+05 -Electron-alpha_thermal_mean_free_path_at_point_144_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile144)_ 1.66897572192210093e+05 -Electron-alpha_thermal_mean_free_path_at_point_145_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile145)_ 1.66474604447257210e+05 -Electron-alpha_thermal_mean_free_path_at_point_146_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile146)_ 1.66049337860577332e+05 -Electron-alpha_thermal_mean_free_path_at_point_147_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile147)_ 1.65621785412560159e+05 -Electron-alpha_thermal_mean_free_path_at_point_148_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile148)_ 1.65191960171606188e+05 -Electron-alpha_thermal_mean_free_path_at_point_149_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile149)_ 1.64759875294075318e+05 -Electron-alpha_thermal_mean_free_path_at_point_150_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile150)_ 1.64325544024229777e+05 -Electron-alpha_thermal_mean_free_path_at_point_151_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile151)_ 1.63888979694179288e+05 -Electron-alpha_thermal_mean_free_path_at_point_152_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile152)_ 1.63450195723821496e+05 -Electron-alpha_thermal_mean_free_path_at_point_153_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile153)_ 1.63009205620783730e+05 -Electron-alpha_thermal_mean_free_path_at_point_154_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile154)_ 1.62566022980361187e+05 -Electron-alpha_thermal_mean_free_path_at_point_155_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile155)_ 1.62120661485453747e+05 -Electron-alpha_thermal_mean_free_path_at_point_156_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile156)_ 1.61673134906502499e+05 -Electron-alpha_thermal_mean_free_path_at_point_157_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile157)_ 1.61223457101423643e+05 -Electron-alpha_thermal_mean_free_path_at_point_158_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile158)_ 1.60771642015539837e+05 -Electron-alpha_thermal_mean_free_path_at_point_159_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile159)_ 1.60317703681512299e+05 -Electron-alpha_thermal_mean_free_path_at_point_160_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile160)_ 1.59861656219268683e+05 -Electron-alpha_thermal_mean_free_path_at_point_161_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile161)_ 1.59403513835929683e+05 -Electron-alpha_thermal_mean_free_path_at_point_162_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile162)_ 1.58943290825735836e+05 -Electron-alpha_thermal_mean_free_path_at_point_163_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile163)_ 1.58481001569969492e+05 -Electron-alpha_thermal_mean_free_path_at_point_164_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile164)_ 1.58016660536877520e+05 -Electron-alpha_thermal_mean_free_path_at_point_165_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile165)_ 1.57550282281590189e+05 -Electron-alpha_thermal_mean_free_path_at_point_166_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile166)_ 1.57081881446039712e+05 -Electron-alpha_thermal_mean_free_path_at_point_167_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile167)_ 1.56611472758874908e+05 -Electron-alpha_thermal_mean_free_path_at_point_168_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile168)_ 1.56139071035375702e+05 -Electron-alpha_thermal_mean_free_path_at_point_169_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile169)_ 1.55664691177365778e+05 -Electron-alpha_thermal_mean_free_path_at_point_170_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile170)_ 1.55188348173119564e+05 -Electron-alpha_thermal_mean_free_path_at_point_171_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile171)_ 1.54710057097273064e+05 -Electron-alpha_thermal_mean_free_path_at_point_172_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile172)_ 1.54229833110726788e+05 -Electron-alpha_thermal_mean_free_path_at_point_173_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile173)_ 1.53747691460550850e+05 -Electron-alpha_thermal_mean_free_path_at_point_174_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile174)_ 1.53263647479883803e+05 -Electron-alpha_thermal_mean_free_path_at_point_175_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile175)_ 1.52777716587833507e+05 -Electron-alpha_thermal_mean_free_path_at_point_176_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile176)_ 1.52289914289373060e+05 -Electron-alpha_thermal_mean_free_path_at_point_177_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile177)_ 1.51800256175234099e+05 -Electron-alpha_thermal_mean_free_path_at_point_178_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile178)_ 1.51308757921799348e+05 -Electron-alpha_thermal_mean_free_path_at_point_179_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile179)_ 1.50815435290992144e+05 -Electron-alpha_thermal_mean_free_path_at_point_180_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile180)_ 1.50320304130163073e+05 -Electron-alpha_thermal_mean_free_path_at_point_181_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile181)_ 1.49823380371974490e+05 -Electron-alpha_thermal_mean_free_path_at_point_182_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile182)_ 1.49324680034281890e+05 -Electron-alpha_thermal_mean_free_path_at_point_183_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile183)_ 1.48824219220014667e+05 -Electron-alpha_thermal_mean_free_path_at_point_184_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile184)_ 1.48322014117050916e+05 -Electron-alpha_thermal_mean_free_path_at_point_185_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile185)_ 1.47818080998093559e+05 -Electron-alpha_thermal_mean_free_path_at_point_186_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile186)_ 1.47312436220540927e+05 -Electron-alpha_thermal_mean_free_path_at_point_187_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile187)_ 1.46805096226354159e+05 -Electron-alpha_thermal_mean_free_path_at_point_188_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile188)_ 1.46296077541925770e+05 -Electron-alpha_thermal_mean_free_path_at_point_189_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile189)_ 1.45785396777939488e+05 -Electron-alpha_thermal_mean_free_path_at_point_190_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile190)_ 1.45273070629233611e+05 -Electron-alpha_thermal_mean_free_path_at_point_191_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile191)_ 1.44759115874656127e+05 -Electron-alpha_thermal_mean_free_path_at_point_192_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile192)_ 1.44243549376919633e+05 -Electron-alpha_thermal_mean_free_path_at_point_193_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile193)_ 1.43726388082452671e+05 -Electron-alpha_thermal_mean_free_path_at_point_194_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile194)_ 1.43207649021248275e+05 -Electron-alpha_thermal_mean_free_path_at_point_195_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile195)_ 1.42687349306708056e+05 -Electron-alpha_thermal_mean_free_path_at_point_196_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile196)_ 1.42165506135486532e+05 -Electron-alpha_thermal_mean_free_path_at_point_197_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile197)_ 1.41642136787325813e+05 -Electron-alpha_thermal_mean_free_path_at_point_198_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile198)_ 1.41117258624896145e+05 -Electron-alpha_thermal_mean_free_path_at_point_199_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile199)_ 1.40590889093623467e+05 -Electron-alpha_thermal_mean_free_path_at_point_200_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile200)_ 1.40063045721521397e+05 -Electron-alpha_thermal_mean_free_path_at_point_201_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile201)_ 1.39533746119015850e+05 -Electron-alpha_thermal_mean_free_path_at_point_202_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile202)_ 1.39003007978766138e+05 -Electron-alpha_thermal_mean_free_path_at_point_203_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile203)_ 1.38470849075484031e+05 -Electron-alpha_thermal_mean_free_path_at_point_204_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile204)_ 1.37937287265749619e+05 -Electron-alpha_thermal_mean_free_path_at_point_205_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile205)_ 1.37402340487820999e+05 -Electron-alpha_thermal_mean_free_path_at_point_206_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile206)_ 1.36866026761443063e+05 -Electron-alpha_thermal_mean_free_path_at_point_207_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile207)_ 1.36328364187650586e+05 -Electron-alpha_thermal_mean_free_path_at_point_208_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile208)_ 1.35789370948568656e+05 -Electron-alpha_thermal_mean_free_path_at_point_209_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile209)_ 1.35249065307209908e+05 -Electron-alpha_thermal_mean_free_path_at_point_210_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile210)_ 1.34707465607264836e+05 -Electron-alpha_thermal_mean_free_path_at_point_211_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile211)_ 1.34164590272892034e+05 -Electron-alpha_thermal_mean_free_path_at_point_212_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile212)_ 1.33620457808501727e+05 -Electron-alpha_thermal_mean_free_path_at_point_213_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile213)_ 1.33075086798535689e+05 -Electron-alpha_thermal_mean_free_path_at_point_214_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile214)_ 1.32528495907244826e+05 -Electron-alpha_thermal_mean_free_path_at_point_215_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile215)_ 1.31980703878460045e+05 -Electron-alpha_thermal_mean_free_path_at_point_216_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile216)_ 1.31431729535359831e+05 -Electron-alpha_thermal_mean_free_path_at_point_217_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile217)_ 1.30881591780234448e+05 -Electron-alpha_thermal_mean_free_path_at_point_218_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile218)_ 1.30330309594244027e+05 -Electron-alpha_thermal_mean_free_path_at_point_219_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile219)_ 1.29777902037174703e+05 -Electron-alpha_thermal_mean_free_path_at_point_220_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile220)_ 1.29224388247186551e+05 -Electron-alpha_thermal_mean_free_path_at_point_221_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile221)_ 1.28669787440560569e+05 -Electron-alpha_thermal_mean_free_path_at_point_222_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile222)_ 1.28114118911438956e+05 -Electron-alpha_thermal_mean_free_path_at_point_223_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile223)_ 1.27557402031561855e+05 -Electron-alpha_thermal_mean_free_path_at_point_224_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile224)_ 1.26999656249997977e+05 -Electron-alpha_thermal_mean_free_path_at_point_225_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile225)_ 1.26440901092870859e+05 -Electron-alpha_thermal_mean_free_path_at_point_226_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile226)_ 1.25881156163081585e+05 -Electron-alpha_thermal_mean_free_path_at_point_227_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile227)_ 1.25320441140024923e+05 -Electron-alpha_thermal_mean_free_path_at_point_228_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile228)_ 1.24758775779299816e+05 -Electron-alpha_thermal_mean_free_path_at_point_229_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile229)_ 1.24196179912418098e+05 -Electron-alpha_thermal_mean_free_path_at_point_230_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile230)_ 1.23632673446503846e+05 -Electron-alpha_thermal_mean_free_path_at_point_231_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile231)_ 1.23068276363989440e+05 -Electron-alpha_thermal_mean_free_path_at_point_232_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile232)_ 1.22503008722308427e+05 -Electron-alpha_thermal_mean_free_path_at_point_233_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile233)_ 1.21936890653576353e+05 -Electron-alpha_thermal_mean_free_path_at_point_234_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile234)_ 1.21369942364276081e+05 -Electron-alpha_thermal_mean_free_path_at_point_235_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile235)_ 1.20802184134927564e+05 -Electron-alpha_thermal_mean_free_path_at_point_236_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile236)_ 1.20233636319758603e+05 -Electron-alpha_thermal_mean_free_path_at_point_237_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile237)_ 1.19664319346366930e+05 -Electron-alpha_thermal_mean_free_path_at_point_238_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile238)_ 1.19094253715377665e+05 -Electron-alpha_thermal_mean_free_path_at_point_239_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile239)_ 1.18523460000093633e+05 -Electron-alpha_thermal_mean_free_path_at_point_240_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile240)_ 1.17951958846142603e+05 -Electron-alpha_thermal_mean_free_path_at_point_241_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile241)_ 1.17379770971114267e+05 -Electron-alpha_thermal_mean_free_path_at_point_242_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile242)_ 1.16806917164194674e+05 -Electron-alpha_thermal_mean_free_path_at_point_243_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile243)_ 1.16233418285792839e+05 -Electron-alpha_thermal_mean_free_path_at_point_244_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile244)_ 1.15659295267161331e+05 -Electron-alpha_thermal_mean_free_path_at_point_245_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile245)_ 1.15084569110010663e+05 -Electron-alpha_thermal_mean_free_path_at_point_246_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile246)_ 1.14509260886117685e+05 -Electron-alpha_thermal_mean_free_path_at_point_247_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile247)_ 1.13933391736926278e+05 -Electron-alpha_thermal_mean_free_path_at_point_248_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile248)_ 1.13356982873142915e+05 -Electron-alpha_thermal_mean_free_path_at_point_249_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile249)_ 1.12780055574323836e+05 -Electron-alpha_thermal_mean_free_path_at_point_250_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile250)_ 1.12202631188456842e+05 -Electron-alpha_thermal_mean_free_path_at_point_251_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile251)_ 1.11624731131536668e+05 -Electron-alpha_thermal_mean_free_path_at_point_252_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile252)_ 1.11046376887131628e+05 -Electron-alpha_thermal_mean_free_path_at_point_253_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile253)_ 1.10467590005943901e+05 -Electron-alpha_thermal_mean_free_path_at_point_254_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile254)_ 1.09888392105364706e+05 -Electron-alpha_thermal_mean_free_path_at_point_255_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile255)_ 1.09308804869018029e+05 -Electron-alpha_thermal_mean_free_path_at_point_256_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile256)_ 1.08728850046302730e+05 -Electron-alpha_thermal_mean_free_path_at_point_257_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile257)_ 1.08148549451920655e+05 -Electron-alpha_thermal_mean_free_path_at_point_258_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile258)_ 1.07567924965404862e+05 -Electron-alpha_thermal_mean_free_path_at_point_259_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile259)_ 1.06986998530632569e+05 -Electron-alpha_thermal_mean_free_path_at_point_260_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile260)_ 1.06405792155336429e+05 -Electron-alpha_thermal_mean_free_path_at_point_261_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile261)_ 1.05824327910605003e+05 -Electron-alpha_thermal_mean_free_path_at_point_262_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile262)_ 1.05242627930377319e+05 -Electron-alpha_thermal_mean_free_path_at_point_263_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile263)_ 1.04660714410926899e+05 -Electron-alpha_thermal_mean_free_path_at_point_264_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile264)_ 1.04078609610340383e+05 -Electron-alpha_thermal_mean_free_path_at_point_265_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile265)_ 1.03496335847986833e+05 -Electron-alpha_thermal_mean_free_path_at_point_266_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile266)_ 1.02913915503979457e+05 -Electron-alpha_thermal_mean_free_path_at_point_267_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile267)_ 1.02331371018628386e+05 -Electron-alpha_thermal_mean_free_path_at_point_268_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile268)_ 1.01748724891886406e+05 -Electron-alpha_thermal_mean_free_path_at_point_269_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile269)_ 1.01165999682783135e+05 -Electron-alpha_thermal_mean_free_path_at_point_270_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile270)_ 1.00583218008856042e+05 -Electron-alpha_thermal_mean_free_path_at_point_271_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile271)_ 1.00000402545567034e+05 -Electron-alpha_thermal_mean_free_path_at_point_272_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile272)_ 9.94175760257141519e+04 -Electron-alpha_thermal_mean_free_path_at_point_273_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile273)_ 9.88347612388339621e+04 -Electron-alpha_thermal_mean_free_path_at_point_274_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile274)_ 9.82519810305928841e+04 -Electron-alpha_thermal_mean_free_path_at_point_275_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile275)_ 9.76692583021728642e+04 -Electron-alpha_thermal_mean_free_path_at_point_276_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile276)_ 9.70866160096456006e+04 -Electron-alpha_thermal_mean_free_path_at_point_277_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile277)_ 9.65040771633376280e+04 -Electron-alpha_thermal_mean_free_path_at_point_278_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile278)_ 9.59216648271885351e+04 -Electron-alpha_thermal_mean_free_path_at_point_279_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile279)_ 9.53394021180970012e+04 -Electron-alpha_thermal_mean_free_path_at_point_280_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile280)_ 9.47573122052586550e+04 -Electron-alpha_thermal_mean_free_path_at_point_281_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile281)_ 9.41754183094958862e+04 -Electron-alpha_thermal_mean_free_path_at_point_282_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile282)_ 9.35937437025761901e+04 -Electron-alpha_thermal_mean_free_path_at_point_283_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile283)_ 9.30123117065201659e+04 -Electron-alpha_thermal_mean_free_path_at_point_284_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile284)_ 9.24311456929035630e+04 -Electron-alpha_thermal_mean_free_path_at_point_285_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile285)_ 9.18502690821451251e+04 -Electron-alpha_thermal_mean_free_path_at_point_286_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile286)_ 9.12697053427887004e+04 -Electron-alpha_thermal_mean_free_path_at_point_287_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile287)_ 9.06894779907710181e+04 -Electron-alpha_thermal_mean_free_path_at_point_288_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile288)_ 9.01096105886840378e+04 -Electron-alpha_thermal_mean_free_path_at_point_289_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile289)_ 8.95301267450239393e+04 -Electron-alpha_thermal_mean_free_path_at_point_290_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile290)_ 8.89510501134318911e+04 -Electron-alpha_thermal_mean_free_path_at_point_291_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile291)_ 8.83724043919232645e+04 -Electron-alpha_thermal_mean_free_path_at_point_292_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile292)_ 8.77942133221081604e+04 -Electron-alpha_thermal_mean_free_path_at_point_293_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile293)_ 8.72165006884001050e+04 -Electron-alpha_thermal_mean_free_path_at_point_294_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile294)_ 8.66392903172161023e+04 -Electron-alpha_thermal_mean_free_path_at_point_295_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile295)_ 8.60626060761641420e+04 -Electron-alpha_thermal_mean_free_path_at_point_296_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile296)_ 8.54864718732229958e+04 -Electron-alpha_thermal_mean_free_path_at_point_297_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile297)_ 8.49109116559090035e+04 -Electron-alpha_thermal_mean_free_path_at_point_298_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile298)_ 8.43359494104343757e+04 -Electron-alpha_thermal_mean_free_path_at_point_299_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile299)_ 8.37616091608538263e+04 -Electron-alpha_thermal_mean_free_path_at_point_300_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile300)_ 8.31879149682009156e+04 -Electron-alpha_thermal_mean_free_path_at_point_301_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile301)_ 8.26148909296138590e+04 -Electron-alpha_thermal_mean_free_path_at_point_302_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile302)_ 8.20425611774518766e+04 -Electron-alpha_thermal_mean_free_path_at_point_303_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile303)_ 8.14709498783983436e+04 -Electron-alpha_thermal_mean_free_path_at_point_304_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile304)_ 8.09000812325565639e+04 -Electron-alpha_thermal_mean_free_path_at_point_305_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile305)_ 8.03299794725333195e+04 -Electron-alpha_thermal_mean_free_path_at_point_306_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile306)_ 7.97606688625109236e+04 -Electron-alpha_thermal_mean_free_path_at_point_307_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile307)_ 7.91921736973112565e+04 -Electron-alpha_thermal_mean_free_path_at_point_308_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile308)_ 7.86245183014474751e+04 -Electron-alpha_thermal_mean_free_path_at_point_309_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile309)_ 7.80577270281659876e+04 -Electron-alpha_thermal_mean_free_path_at_point_310_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile310)_ 7.74918242584776017e+04 -Electron-alpha_thermal_mean_free_path_at_point_311_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile311)_ 7.69268344001795194e+04 -Electron-alpha_thermal_mean_free_path_at_point_312_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile312)_ 7.63627818868661707e+04 -Electron-alpha_thermal_mean_free_path_at_point_313_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile313)_ 7.57996911769287544e+04 -Electron-alpha_thermal_mean_free_path_at_point_314_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile314)_ 7.52375867525481008e+04 -Electron-alpha_thermal_mean_free_path_at_point_315_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile315)_ 7.46764931186745525e+04 -Electron-alpha_thermal_mean_free_path_at_point_316_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile316)_ 7.41164348019986646e+04 -Electron-alpha_thermal_mean_free_path_at_point_317_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile317)_ 7.35574363499145111e+04 -Electron-alpha_thermal_mean_free_path_at_point_318_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile318)_ 7.29995223294691677e+04 -Electron-alpha_thermal_mean_free_path_at_point_319_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile319)_ 7.24427173263076256e+04 -Electron-alpha_thermal_mean_free_path_at_point_320_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile320)_ 7.18870459436056117e+04 -Electron-alpha_thermal_mean_free_path_at_point_321_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile321)_ 7.13325328009938967e+04 -Electron-alpha_thermal_mean_free_path_at_point_322_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile322)_ 7.07792025334756036e+04 -Electron-alpha_thermal_mean_free_path_at_point_323_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile323)_ 7.02270797903321072e+04 -Electron-alpha_thermal_mean_free_path_at_point_324_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile324)_ 6.96761892340239574e+04 -Electron-alpha_thermal_mean_free_path_at_point_325_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile325)_ 6.91265555390827649e+04 -Electron-alpha_thermal_mean_free_path_at_point_326_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile326)_ 6.85782033909933380e+04 -Electron-alpha_thermal_mean_free_path_at_point_327_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile327)_ 6.80311574850732140e+04 -Electron-alpha_thermal_mean_free_path_at_point_328_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile328)_ 6.74854425253414374e+04 -Electron-alpha_thermal_mean_free_path_at_point_329_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile329)_ 6.69410832233826804e+04 -Electron-alpha_thermal_mean_free_path_at_point_330_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile330)_ 6.63981042972053256e+04 -Electron-alpha_thermal_mean_free_path_at_point_331_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile331)_ 6.58565304700938141e+04 -Electron-alpha_thermal_mean_free_path_at_point_332_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile332)_ 6.53163864694564472e+04 -Electron-alpha_thermal_mean_free_path_at_point_333_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile333)_ 6.47776970256682325e+04 -Electron-alpha_thermal_mean_free_path_at_point_334_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile334)_ 6.42404868709099392e+04 -Electron-alpha_thermal_mean_free_path_at_point_335_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile335)_ 6.37047807380048471e+04 -Electron-alpha_thermal_mean_free_path_at_point_336_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile336)_ 6.31706033592518143e+04 -Electron-alpha_thermal_mean_free_path_at_point_337_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile337)_ 6.26379794652577184e+04 -Electron-alpha_thermal_mean_free_path_at_point_338_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile338)_ 6.21069337837673884e+04 -Electron-alpha_thermal_mean_free_path_at_point_339_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile339)_ 6.15774910384949690e+04 -Electron-alpha_thermal_mean_free_path_at_point_340_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile340)_ 6.10496759479541652e+04 -Electron-alpha_thermal_mean_free_path_at_point_341_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile341)_ 6.05235132242926484e+04 -Electron-alpha_thermal_mean_free_path_at_point_342_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile342)_ 5.99990275721256767e+04 -Electron-alpha_thermal_mean_free_path_at_point_343_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile343)_ 5.94762436873766273e+04 -Electron-alpha_thermal_mean_free_path_at_point_344_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile344)_ 5.89551862561203379e+04 -Electron-alpha_thermal_mean_free_path_at_point_345_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile345)_ 5.84358799534330683e+04 -Electron-alpha_thermal_mean_free_path_at_point_346_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile346)_ 5.79183494422496078e+04 -Electron-alpha_thermal_mean_free_path_at_point_347_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile347)_ 5.74026193722297176e+04 -Electron-alpha_thermal_mean_free_path_at_point_348_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile348)_ 5.68887143786332090e+04 -Electron-alpha_thermal_mean_free_path_at_point_349_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile349)_ 5.63766590812088325e+04 -Electron-alpha_thermal_mean_free_path_at_point_350_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile350)_ 5.58664780830954696e+04 -Electron-alpha_thermal_mean_free_path_at_point_351_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile351)_ 5.53581959697359343e+04 -Electron-alpha_thermal_mean_free_path_at_point_352_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile352)_ 5.48518373078139412e+04 -Electron-alpha_thermal_mean_free_path_at_point_353_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile353)_ 5.43474266442031658e+04 -Electron-alpha_thermal_mean_free_path_at_point_354_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile354)_ 5.38449885049425575e+04 -Electron-alpha_thermal_mean_free_path_at_point_355_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile355)_ 5.33445473942316385e+04 -Electron-alpha_thermal_mean_free_path_at_point_356_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile356)_ 5.28461277934539321e+04 -Electron-alpha_thermal_mean_free_path_at_point_357_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile357)_ 5.23497541602271012e+04 -Electron-alpha_thermal_mean_free_path_at_point_358_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile358)_ 5.18554509274854936e+04 -Electron-alpha_thermal_mean_free_path_at_point_359_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile359)_ 5.13632425025952762e+04 -Electron-alpha_thermal_mean_free_path_at_point_360_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile360)_ 5.08731532665075792e+04 -Electron-alpha_thermal_mean_free_path_at_point_361_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile361)_ 5.03852075729514836e+04 -Electron-alpha_thermal_mean_free_path_at_point_362_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile362)_ 4.98994297476710635e+04 -Electron-alpha_thermal_mean_free_path_at_point_363_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile363)_ 4.94158440877092071e+04 -Electron-alpha_thermal_mean_free_path_at_point_364_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile364)_ 4.89344748607446163e+04 -Electron-alpha_thermal_mean_free_path_at_point_365_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile365)_ 4.84553463044812161e+04 -Electron-alpha_thermal_mean_free_path_at_point_366_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile366)_ 4.79784826261023700e+04 -Electron-alpha_thermal_mean_free_path_at_point_367_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile367)_ 4.75039080017840897e+04 -Electron-alpha_thermal_mean_free_path_at_point_368_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile368)_ 4.70316465762838707e+04 -Electron-alpha_thermal_mean_free_path_at_point_369_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile369)_ 4.65617224626006719e+04 -Electron-alpha_thermal_mean_free_path_at_point_370_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile370)_ 4.60941597417183948e+04 -Electron-alpha_thermal_mean_free_path_at_point_371_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile371)_ 4.56289824624350804e+04 -Electron-alpha_thermal_mean_free_path_at_point_372_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile372)_ 4.51662146412862203e+04 -Electron-alpha_thermal_mean_free_path_at_point_373_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile373)_ 4.47058802625692042e+04 -Electron-alpha_thermal_mean_free_path_at_point_374_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile374)_ 4.42480032784746145e+04 -Electron-alpha_thermal_mean_free_path_at_point_375_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile375)_ 4.37926076093351658e+04 -Electron-alpha_thermal_mean_free_path_at_point_376_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile376)_ 4.33397171439977174e+04 -Electron-alpha_thermal_mean_free_path_at_point_377_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile377)_ 4.28893557403278610e+04 -Electron-alpha_thermal_mean_free_path_at_point_378_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile378)_ 4.24415472258601585e+04 -Electron-alpha_thermal_mean_free_path_at_point_379_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile379)_ 4.19963153985995596e+04 -Electron-alpha_thermal_mean_free_path_at_point_380_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile380)_ 4.15536840279863900e+04 -Electron-alpha_thermal_mean_free_path_at_point_381_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile381)_ 4.11136768560395140e+04 -Electron-alpha_thermal_mean_free_path_at_point_382_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile382)_ 4.06763175986860297e+04 -Electron-alpha_thermal_mean_free_path_at_point_383_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile383)_ 4.02416299472939718e+04 -Electron-alpha_thermal_mean_free_path_at_point_384_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile384)_ 3.98096375704194797e+04 -Electron-alpha_thermal_mean_free_path_at_point_385_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile385)_ 3.93803641157877209e+04 -Electron-alpha_thermal_mean_free_path_at_point_386_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile386)_ 3.89538332125191737e+04 -Electron-alpha_thermal_mean_free_path_at_point_387_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile387)_ 3.85300684736248877e+04 -Electron-alpha_thermal_mean_free_path_at_point_388_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile388)_ 3.81090934987814398e+04 -Electron-alpha_thermal_mean_free_path_at_point_389_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile389)_ 3.76909318774150743e+04 -Electron-alpha_thermal_mean_free_path_at_point_390_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile390)_ 3.72756071921099428e+04 -Electron-alpha_thermal_mean_free_path_at_point_391_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile391)_ 3.68631430223664211e+04 -Electron-alpha_thermal_mean_free_path_at_point_392_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile392)_ 3.64535629487344995e+04 -Electron-alpha_thermal_mean_free_path_at_point_393_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile393)_ 3.60468905573491429e+04 -Electron-alpha_thermal_mean_free_path_at_point_394_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile394)_ 3.56431494448970698e+04 -Electron-alpha_thermal_mean_free_path_at_point_395_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile395)_ 3.52423632240444131e+04 -Electron-alpha_thermal_mean_free_path_at_point_396_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile396)_ 3.48445555293630823e+04 -Electron-alpha_thermal_mean_free_path_at_point_397_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile397)_ 3.44497500237859640e+04 -Electron-alpha_thermal_mean_free_path_at_point_398_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile398)_ 3.40579704056369883e+04 -Electron-alpha_thermal_mean_free_path_at_point_399_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile399)_ 3.36692404162734019e+04 -Electron-alpha_thermal_mean_free_path_at_point_400_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile400)_ 3.32835838483889966e+04 -Electron-alpha_thermal_mean_free_path_at_point_401_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile401)_ 3.29010245550267136e+04 -Electron-alpha_thermal_mean_free_path_at_point_402_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile402)_ 3.25215864593540682e+04 -Electron-alpha_thermal_mean_free_path_at_point_403_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile403)_ 3.21452935652608394e+04 -Electron-alpha_thermal_mean_free_path_at_point_404_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile404)_ 3.17721699688414374e+04 -Electron-alpha_thermal_mean_free_path_at_point_405_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile405)_ 3.14022398708295368e+04 -Electron-alpha_thermal_mean_free_path_at_point_406_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile406)_ 3.10355275900635461e+04 -Electron-alpha_thermal_mean_free_path_at_point_407_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile407)_ 3.06720575780580766e+04 -Electron-alpha_thermal_mean_free_path_at_point_408_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile408)_ 3.03118544347757925e+04 -Electron-alpha_thermal_mean_free_path_at_point_409_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile409)_ 2.99549429256917392e+04 -Electron-alpha_thermal_mean_free_path_at_point_410_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile410)_ 2.96013480002588440e+04 -Electron-alpha_thermal_mean_free_path_at_point_411_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile411)_ 2.92510948118882225e+04 -Electron-alpha_thermal_mean_free_path_at_point_412_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile412)_ 2.89042087395702911e+04 -Electron-alpha_thermal_mean_free_path_at_point_413_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile413)_ 2.85607154112749922e+04 -Electron-alpha_thermal_mean_free_path_at_point_414_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile414)_ 2.82206407292861259e+04 -Electron-alpha_thermal_mean_free_path_at_point_415_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile415)_ 2.78840108976324045e+04 -Electron-alpha_thermal_mean_free_path_at_point_416_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile416)_ 2.75508524518005979e+04 -Electron-alpha_thermal_mean_free_path_at_point_417_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile417)_ 2.72211922909366767e+04 -Electron-alpha_thermal_mean_free_path_at_point_418_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile418)_ 2.68950577127549113e+04 -Electron-alpha_thermal_mean_free_path_at_point_419_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile419)_ 2.65724764514043127e+04 -Electron-alpha_thermal_mean_free_path_at_point_420_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile420)_ 2.62534767185690871e+04 -Electron-alpha_thermal_mean_free_path_at_point_421_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile421)_ 2.59380872481057049e+04 -Electron-alpha_thermal_mean_free_path_at_point_422_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile422)_ 2.56263373445571669e+04 -Electron-alpha_thermal_mean_free_path_at_point_423_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile423)_ 2.53182569359245936e+04 -Electron-alpha_thermal_mean_free_path_at_point_424_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile424)_ 2.50138766311162908e+04 -Electron-alpha_thermal_mean_free_path_at_point_425_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile425)_ 2.47132277825500023e+04 -Electron-alpha_thermal_mean_free_path_at_point_426_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile426)_ 2.44163425544398488e+04 -Electron-alpha_thermal_mean_free_path_at_point_427_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile427)_ 2.41232539973630301e+04 -Electron-alpha_thermal_mean_free_path_at_point_428_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile428)_ 2.38339961297850314e+04 -Electron-alpha_thermal_mean_free_path_at_point_429_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile429)_ 2.35486040273011677e+04 -Electron-alpha_thermal_mean_free_path_at_point_430_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile430)_ 2.32671139204603751e+04 -Electron-alpha_thermal_mean_free_path_at_point_431_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile431)_ 2.29895633021539943e+04 -Electron-alpha_thermal_mean_free_path_at_point_432_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile432)_ 2.27159910456889520e+04 -Electron-alpha_thermal_mean_free_path_at_point_433_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile433)_ 2.24464375348279355e+04 -Electron-alpha_thermal_mean_free_path_at_point_434_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile434)_ 2.21809448072671221e+04 -Electron-alpha_thermal_mean_free_path_at_point_435_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile435)_ 2.19195567132458018e+04 -Electron-alpha_thermal_mean_free_path_at_point_436_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile436)_ 2.16623190912493083e+04 -Electron-alpha_thermal_mean_free_path_at_point_437_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile437)_ 2.14092799630769587e+04 -Electron-alpha_thermal_mean_free_path_at_point_438_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile438)_ 2.11604897509290422e+04 -Electron-alpha_thermal_mean_free_path_at_point_439_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile439)_ 2.09160015196128297e+04 -Electron-alpha_thermal_mean_free_path_at_point_440_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile440)_ 2.06758712475220455e+04 -Electron-alpha_thermal_mean_free_path_at_point_441_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile441)_ 2.04401581307013621e+04 -Electron-alpha_thermal_mean_free_path_at_point_442_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile442)_ 2.02089249251254951e+04 -Electron-alpha_thermal_mean_free_path_at_point_443_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile443)_ 1.99822383333178441e+04 -Electron-alpha_thermal_mean_free_path_at_point_444_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile444)_ 1.97601694426756221e+04 -Electron-alpha_thermal_mean_free_path_at_point_445_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile445)_ 1.95427942244131955e+04 -Electron-alpha_thermal_mean_free_path_at_point_446_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile446)_ 1.93301941039809462e+04 -Electron-alpha_thermal_mean_free_path_at_point_447_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile447)_ 1.91224566162854244e+04 -Electron-alpha_thermal_mean_free_path_at_point_448_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile448)_ 1.89196761622023405e+04 -Electron-alpha_thermal_mean_free_path_at_point_449_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile449)_ 1.87219548869552382e+04 -Electron-alpha_thermal_mean_free_path_at_point_450_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile450)_ 1.85294037062929237e+04 -Electron-alpha_thermal_mean_free_path_at_point_451_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile451)_ 1.83421435134589592e+04 -Electron-alpha_thermal_mean_free_path_at_point_452_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile452)_ 1.81603066094327987e+04 -Electron-alpha_thermal_mean_free_path_at_point_453_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile453)_ 1.79840384117946596e+04 -Electron-alpha_thermal_mean_free_path_at_point_454_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile454)_ 1.78134995153277850e+04 -Electron-alpha_thermal_mean_free_path_at_point_455_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile455)_ 1.76488682024085392e+04 -Electron-alpha_thermal_mean_free_path_at_point_456_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile456)_ 1.74903435368875216e+04 -Electron-alpha_thermal_mean_free_path_at_point_457_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile457)_ 1.73381492272631149e+04 -Electron-alpha_thermal_mean_free_path_at_point_458_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile458)_ 1.71925385229011845e+04 -Electron-alpha_thermal_mean_free_path_at_point_459_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile459)_ 1.70538005269286587e+04 -Electron-alpha_thermal_mean_free_path_at_point_460_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile460)_ 1.69222684996121898e+04 -Electron-alpha_thermal_mean_free_path_at_point_461_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile461)_ 1.67983310389382568e+04 -Electron-alpha_thermal_mean_free_path_at_point_462_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile462)_ 1.66824475623860380e+04 -Electron-alpha_thermal_mean_free_path_at_point_463_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile463)_ 1.65751704847297842e+04 -Electron-alpha_thermal_mean_free_path_at_point_464_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile464)_ 1.64771783536376897e+04 -Electron-alpha_thermal_mean_free_path_at_point_465_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile465)_ 1.63893280852765129e+04 -Electron-alpha_thermal_mean_free_path_at_point_466_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile466)_ 1.63127433606282575e+04 -Electron-alpha_thermal_mean_free_path_at_point_467_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile467)_ 1.62489797338178778e+04 -Electron-alpha_thermal_mean_free_path_at_point_468_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile468)_ 1.62003825089239454e+04 -Electron-alpha_thermal_mean_free_path_at_point_469_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile469)_ 1.61710927476322540e+04 -Electron-alpha_thermal_mean_free_path_at_point_470_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile470)_ 1.61732021261245154e+04 -Electron-alpha_thermal_mean_free_path_at_point_471_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile471)_ 1.53700002405186551e+04 -Electron-alpha_thermal_mean_free_path_at_point_472_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile472)_ 1.45770201672418243e+04 -Electron-alpha_thermal_mean_free_path_at_point_473_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile473)_ 1.37947631671334584e+04 -Electron-alpha_thermal_mean_free_path_at_point_474_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile474)_ 1.30237614336399620e+04 -Electron-alpha_thermal_mean_free_path_at_point_475_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile475)_ 1.22645805302663775e+04 -Electron-alpha_thermal_mean_free_path_at_point_476_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile476)_ 1.15178220675102530e+04 -Electron-alpha_thermal_mean_free_path_at_point_477_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile477)_ 1.07841266483667241e+04 -Electron-alpha_thermal_mean_free_path_at_point_478_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile478)_ 1.00641771158836309e+04 -Electron-alpha_thermal_mean_free_path_at_point_479_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile479)_ 9.35870214148518244e+03 -Electron-alpha_thermal_mean_free_path_at_point_480_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile480)_ 8.66848019907031812e+03 -Electron-alpha_thermal_mean_free_path_at_point_481_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile481)_ 7.99434397749907839e+03 -Electron-alpha_thermal_mean_free_path_at_point_482_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile482)_ 7.33718529338346707e+03 -Electron-alpha_thermal_mean_free_path_at_point_483_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile483)_ 6.69796057758743154e+03 -Electron-alpha_thermal_mean_free_path_at_point_484_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile484)_ 6.07769702321496879e+03 -Electron-alpha_thermal_mean_free_path_at_point_485_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile485)_ 5.47749950111047019e+03 -Electron-alpha_thermal_mean_free_path_at_point_486_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile486)_ 4.89855837243168662e+03 -Electron-alpha_thermal_mean_free_path_at_point_487_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile487)_ 4.34215835881707972e+03 -Electron-alpha_thermal_mean_free_path_at_point_488_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile488)_ 3.80968867230669412e+03 -Electron-alpha_thermal_mean_free_path_at_point_489_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile489)_ 3.30265466463521579e+03 -Electron-alpha_thermal_mean_free_path_at_point_490_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile490)_ 2.82269133723203868e+03 -Electron-alpha_thermal_mean_free_path_at_point_491_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile491)_ 2.37157917360834426e+03 -Electron-alpha_thermal_mean_free_path_at_point_492_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile492)_ 1.95126294047708780e+03 -Electron-alpha_thermal_mean_free_path_at_point_493_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile493)_ 1.56387440128377466e+03 -Electron-alpha_thermal_mean_free_path_at_point_494_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile494)_ 1.21176039284905892e+03 -Electron-alpha_thermal_mean_free_path_at_point_495_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile495)_ 8.97518642404819730e+02 -Electron-alpha_thermal_mean_free_path_at_point_496_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile496)_ 6.24045547388163413e+02 -Electron-alpha_thermal_mean_free_path_at_point_497_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile497)_ 3.94604243289485055e+02 -Electron-alpha_thermal_mean_free_path_at_point_498_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile498)_ 2.12931889582039986e+02 -Electron-alpha_thermal_mean_free_path_at_point_499_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile499)_ 8.34394429937962201e+01 -Electron-alpha_thermal_mean_free_path_at_point_500_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile500)_ 1.20773436183640399e+01 -Volume_averaged_electron-alpha_Spitzer_slowing_down_time_(s)_____________ (t_plasma_electron_alpha_spitzer_slow_vol_avg)_ 6.20026946645241606e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_0______________________ (t_plasma_electron_alpha_spitzer_slow_profile0)_ 1.36296260831635707e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_1______________________ (t_plasma_electron_alpha_spitzer_slow_profile1)_ 1.36295479163351030e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_2______________________ (t_plasma_electron_alpha_spitzer_slow_profile2)_ 1.36293134168762520e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_3______________________ (t_plasma_electron_alpha_spitzer_slow_profile3)_ 1.36289225878667053e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_4______________________ (t_plasma_electron_alpha_spitzer_slow_profile4)_ 1.36283754344394037e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_5______________________ (t_plasma_electron_alpha_spitzer_slow_profile5)_ 1.36276719637807364e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_6______________________ (t_plasma_electron_alpha_spitzer_slow_profile6)_ 1.36268121851307700e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_7______________________ (t_plasma_electron_alpha_spitzer_slow_profile7)_ 1.36257961097836233e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_8______________________ (t_plasma_electron_alpha_spitzer_slow_profile8)_ 1.36246237510878498e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_9______________________ (t_plasma_electron_alpha_spitzer_slow_profile9)_ 1.36232951244469458e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_10_____________________ (t_plasma_electron_alpha_spitzer_slow_profile10)_ 1.36218102473198877e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_11_____________________ (t_plasma_electron_alpha_spitzer_slow_profile11)_ 1.36201691392217916e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_12_____________________ (t_plasma_electron_alpha_spitzer_slow_profile12)_ 1.36183718217246019e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_13_____________________ (t_plasma_electron_alpha_spitzer_slow_profile13)_ 1.36164183184578857e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_14_____________________ (t_plasma_electron_alpha_spitzer_slow_profile14)_ 1.36143086551096948e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_15_____________________ (t_plasma_electron_alpha_spitzer_slow_profile15)_ 1.36120428594274956e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_16_____________________ (t_plasma_electron_alpha_spitzer_slow_profile16)_ 1.36096209612191865e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_17_____________________ (t_plasma_electron_alpha_spitzer_slow_profile17)_ 1.36070429923541658e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_18_____________________ (t_plasma_electron_alpha_spitzer_slow_profile18)_ 1.36043089867645284e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_19_____________________ (t_plasma_electron_alpha_spitzer_slow_profile19)_ 1.36014189804462649e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_20_____________________ (t_plasma_electron_alpha_spitzer_slow_profile20)_ 1.35983730114605761e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_21_____________________ (t_plasma_electron_alpha_spitzer_slow_profile21)_ 1.35951711199352965e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_22_____________________ (t_plasma_electron_alpha_spitzer_slow_profile22)_ 1.35918133480663195e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_23_____________________ (t_plasma_electron_alpha_spitzer_slow_profile23)_ 1.35882997401191385e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_24_____________________ (t_plasma_electron_alpha_spitzer_slow_profile24)_ 1.35846303424305015e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_25_____________________ (t_plasma_electron_alpha_spitzer_slow_profile25)_ 1.35808052034100446e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_26_____________________ (t_plasma_electron_alpha_spitzer_slow_profile26)_ 1.35768243735420935e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_27_____________________ (t_plasma_electron_alpha_spitzer_slow_profile27)_ 1.35726879053875038e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_28_____________________ (t_plasma_electron_alpha_spitzer_slow_profile28)_ 1.35683958535855931e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_29_____________________ (t_plasma_electron_alpha_spitzer_slow_profile29)_ 1.35639482748561035e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_30_____________________ (t_plasma_electron_alpha_spitzer_slow_profile30)_ 1.35593452280012805e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_31_____________________ (t_plasma_electron_alpha_spitzer_slow_profile31)_ 1.35545867739080705e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_32_____________________ (t_plasma_electron_alpha_spitzer_slow_profile32)_ 1.35496729755502865e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_33_____________________ (t_plasma_electron_alpha_spitzer_slow_profile33)_ 1.35446038979909611e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_34_____________________ (t_plasma_electron_alpha_spitzer_slow_profile34)_ 1.35393796083846807e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_35_____________________ (t_plasma_electron_alpha_spitzer_slow_profile35)_ 1.35340001759801010e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_36_____________________ (t_plasma_electron_alpha_spitzer_slow_profile36)_ 1.35284656721224361e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_37_____________________ (t_plasma_electron_alpha_spitzer_slow_profile37)_ 1.35227761702560967e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_38_____________________ (t_plasma_electron_alpha_spitzer_slow_profile38)_ 1.35169317459273919e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_39_____________________ (t_plasma_electron_alpha_spitzer_slow_profile39)_ 1.35109324767872874e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_40_____________________ (t_plasma_electron_alpha_spitzer_slow_profile40)_ 1.35047784425942385e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_41_____________________ (t_plasma_electron_alpha_spitzer_slow_profile41)_ 1.34984697252171770e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_42_____________________ (t_plasma_electron_alpha_spitzer_slow_profile42)_ 1.34920064086384595e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_43_____________________ (t_plasma_electron_alpha_spitzer_slow_profile43)_ 1.34853885789569805e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_44_____________________ (t_plasma_electron_alpha_spitzer_slow_profile44)_ 1.34786163243913770e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_45_____________________ (t_plasma_electron_alpha_spitzer_slow_profile45)_ 1.34716897352831877e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_46_____________________ (t_plasma_electron_alpha_spitzer_slow_profile46)_ 1.34646089041002792e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_47_____________________ (t_plasma_electron_alpha_spitzer_slow_profile47)_ 1.34573739254401770e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_48_____________________ (t_plasma_electron_alpha_spitzer_slow_profile48)_ 1.34499848960336177e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_49_____________________ (t_plasma_electron_alpha_spitzer_slow_profile49)_ 1.34424419147480734e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_50_____________________ (t_plasma_electron_alpha_spitzer_slow_profile50)_ 1.34347450825914083e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_51_____________________ (t_plasma_electron_alpha_spitzer_slow_profile51)_ 1.34268945027156472e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_52_____________________ (t_plasma_electron_alpha_spitzer_slow_profile52)_ 1.34188902804207366e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_53_____________________ (t_plasma_electron_alpha_spitzer_slow_profile53)_ 1.34107325231585017e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_54_____________________ (t_plasma_electron_alpha_spitzer_slow_profile54)_ 1.34024213405365722e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_55_____________________ (t_plasma_electron_alpha_spitzer_slow_profile55)_ 1.33939568443224677e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_56_____________________ (t_plasma_electron_alpha_spitzer_slow_profile56)_ 1.33853391484477502e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_57_____________________ (t_plasma_electron_alpha_spitzer_slow_profile57)_ 1.33765683690122317e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_58_____________________ (t_plasma_electron_alpha_spitzer_slow_profile58)_ 1.33676446242883151e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_59_____________________ (t_plasma_electron_alpha_spitzer_slow_profile59)_ 1.33585680347253533e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_60_____________________ (t_plasma_electron_alpha_spitzer_slow_profile60)_ 1.33493387229541693e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_61_____________________ (t_plasma_electron_alpha_spitzer_slow_profile61)_ 1.33399568137915869e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_62_____________________ (t_plasma_electron_alpha_spitzer_slow_profile62)_ 1.33304224342451039e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_63_____________________ (t_plasma_electron_alpha_spitzer_slow_profile63)_ 1.33207357135176241e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_64_____________________ (t_plasma_electron_alpha_spitzer_slow_profile64)_ 1.33108967830122649e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_65_____________________ (t_plasma_electron_alpha_spitzer_slow_profile65)_ 1.33009057763372951e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_66_____________________ (t_plasma_electron_alpha_spitzer_slow_profile66)_ 1.32907628293110958e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_67_____________________ (t_plasma_electron_alpha_spitzer_slow_profile67)_ 1.32804680799672625e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_68_____________________ (t_plasma_electron_alpha_spitzer_slow_profile68)_ 1.32700216685597705e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_69_____________________ (t_plasma_electron_alpha_spitzer_slow_profile69)_ 1.32594237375682367e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_70_____________________ (t_plasma_electron_alpha_spitzer_slow_profile70)_ 1.32486744317032623e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_71_____________________ (t_plasma_electron_alpha_spitzer_slow_profile71)_ 1.32377738979118487e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_72_____________________ (t_plasma_electron_alpha_spitzer_slow_profile72)_ 1.32267222853829680e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_73_____________________ (t_plasma_electron_alpha_spitzer_slow_profile73)_ 1.32155197455531193e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_74_____________________ (t_plasma_electron_alpha_spitzer_slow_profile74)_ 1.32041664321120789e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_75_____________________ (t_plasma_electron_alpha_spitzer_slow_profile75)_ 1.31926625010086584e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_76_____________________ (t_plasma_electron_alpha_spitzer_slow_profile76)_ 1.31810081104566312e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_77_____________________ (t_plasma_electron_alpha_spitzer_slow_profile77)_ 1.31692034209406650e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_78_____________________ (t_plasma_electron_alpha_spitzer_slow_profile78)_ 1.31572485952224061e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_79_____________________ (t_plasma_electron_alpha_spitzer_slow_profile79)_ 1.31451437983466701e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_80_____________________ (t_plasma_electron_alpha_spitzer_slow_profile80)_ 1.31328891976476547e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_81_____________________ (t_plasma_electron_alpha_spitzer_slow_profile81)_ 1.31204849627552944e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_82_____________________ (t_plasma_electron_alpha_spitzer_slow_profile82)_ 1.31079312656017266e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_83_____________________ (t_plasma_electron_alpha_spitzer_slow_profile83)_ 1.30952282804278020e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_84_____________________ (t_plasma_electron_alpha_spitzer_slow_profile84)_ 1.30823761837897501e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_85_____________________ (t_plasma_electron_alpha_spitzer_slow_profile85)_ 1.30693751545658565e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_86_____________________ (t_plasma_electron_alpha_spitzer_slow_profile86)_ 1.30562253739633172e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_87_____________________ (t_plasma_electron_alpha_spitzer_slow_profile87)_ 1.30429270255251617e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_88_____________________ (t_plasma_electron_alpha_spitzer_slow_profile88)_ 1.30294802951372568e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_89_____________________ (t_plasma_electron_alpha_spitzer_slow_profile89)_ 1.30158853710354472e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_90_____________________ (t_plasma_electron_alpha_spitzer_slow_profile90)_ 1.30021424438127209e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_91_____________________ (t_plasma_electron_alpha_spitzer_slow_profile91)_ 1.29882517064265701e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_92_____________________ (t_plasma_electron_alpha_spitzer_slow_profile92)_ 1.29742133542063853e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_93_____________________ (t_plasma_electron_alpha_spitzer_slow_profile93)_ 1.29600275848609492e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_94_____________________ (t_plasma_electron_alpha_spitzer_slow_profile94)_ 1.29456945984860994e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_95_____________________ (t_plasma_electron_alpha_spitzer_slow_profile95)_ 1.29312145975723958e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_96_____________________ (t_plasma_electron_alpha_spitzer_slow_profile96)_ 1.29165877870129542e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_97_____________________ (t_plasma_electron_alpha_spitzer_slow_profile97)_ 1.29018143741113822e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_98_____________________ (t_plasma_electron_alpha_spitzer_slow_profile98)_ 1.28868945685897840e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_99_____________________ (t_plasma_electron_alpha_spitzer_slow_profile99)_ 1.28718285825968981e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_100____________________ (t_plasma_electron_alpha_spitzer_slow_profile100)_ 1.28566166307163288e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_101____________________ (t_plasma_electron_alpha_spitzer_slow_profile101)_ 1.28412589299748947e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_102____________________ (t_plasma_electron_alpha_spitzer_slow_profile102)_ 1.28257556998510358e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_103____________________ (t_plasma_electron_alpha_spitzer_slow_profile103)_ 1.28101071622834306e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_104____________________ (t_plasma_electron_alpha_spitzer_slow_profile104)_ 1.27943135416796006e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_105____________________ (t_plasma_electron_alpha_spitzer_slow_profile105)_ 1.27783750649247052e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_106____________________ (t_plasma_electron_alpha_spitzer_slow_profile106)_ 1.27622919613904107e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_107____________________ (t_plasma_electron_alpha_spitzer_slow_profile107)_ 1.27460644629438846e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_108____________________ (t_plasma_electron_alpha_spitzer_slow_profile108)_ 1.27296928039568980e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_109____________________ (t_plasma_electron_alpha_spitzer_slow_profile109)_ 1.27131772213150129e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_110____________________ (t_plasma_electron_alpha_spitzer_slow_profile110)_ 1.26965179544269402e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_111____________________ (t_plasma_electron_alpha_spitzer_slow_profile111)_ 1.26797152452339312e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_112____________________ (t_plasma_electron_alpha_spitzer_slow_profile112)_ 1.26627693382193840e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_113____________________ (t_plasma_electron_alpha_spitzer_slow_profile113)_ 1.26456804804184575e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_114____________________ (t_plasma_electron_alpha_spitzer_slow_profile114)_ 1.26284489214278706e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_115____________________ (t_plasma_electron_alpha_spitzer_slow_profile115)_ 1.26110749134158162e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_116____________________ (t_plasma_electron_alpha_spitzer_slow_profile116)_ 1.25935587111319336e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_117____________________ (t_plasma_electron_alpha_spitzer_slow_profile117)_ 1.25759005719174977e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_118____________________ (t_plasma_electron_alpha_spitzer_slow_profile118)_ 1.25581007557156044e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_119____________________ (t_plasma_electron_alpha_spitzer_slow_profile119)_ 1.25401595250815978e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_120____________________ (t_plasma_electron_alpha_spitzer_slow_profile120)_ 1.25220771451935353e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_121____________________ (t_plasma_electron_alpha_spitzer_slow_profile121)_ 1.25038538838628033e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_122____________________ (t_plasma_electron_alpha_spitzer_slow_profile122)_ 1.24854900115448642e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_123____________________ (t_plasma_electron_alpha_spitzer_slow_profile123)_ 1.24669858013501056e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_124____________________ (t_plasma_electron_alpha_spitzer_slow_profile124)_ 1.24483415290548249e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_125____________________ (t_plasma_electron_alpha_spitzer_slow_profile125)_ 1.24295574731123648e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_126____________________ (t_plasma_electron_alpha_spitzer_slow_profile126)_ 1.24106339146642930e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_127____________________ (t_plasma_electron_alpha_spitzer_slow_profile127)_ 1.23915711375518445e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_128____________________ (t_plasma_electron_alpha_spitzer_slow_profile128)_ 1.23723694283273566e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_129____________________ (t_plasma_electron_alpha_spitzer_slow_profile129)_ 1.23530290762659090e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_130____________________ (t_plasma_electron_alpha_spitzer_slow_profile130)_ 1.23335503733770824e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_131____________________ (t_plasma_electron_alpha_spitzer_slow_profile131)_ 1.23139336144168410e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_132____________________ (t_plasma_electron_alpha_spitzer_slow_profile132)_ 1.22941790968995579e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_133____________________ (t_plasma_electron_alpha_spitzer_slow_profile133)_ 1.22742871211101456e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_134____________________ (t_plasma_electron_alpha_spitzer_slow_profile134)_ 1.22542579901163662e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_135____________________ (t_plasma_electron_alpha_spitzer_slow_profile135)_ 1.22340920097812500e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_136____________________ (t_plasma_electron_alpha_spitzer_slow_profile136)_ 1.22137894887756460e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_137____________________ (t_plasma_electron_alpha_spitzer_slow_profile137)_ 1.21933507385909223e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_138____________________ (t_plasma_electron_alpha_spitzer_slow_profile138)_ 1.21727760735518142e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_139____________________ (t_plasma_electron_alpha_spitzer_slow_profile139)_ 1.21520658108294155e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_140____________________ (t_plasma_electron_alpha_spitzer_slow_profile140)_ 1.21312202704542460e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_141____________________ (t_plasma_electron_alpha_spitzer_slow_profile141)_ 1.21102397753295765e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_142____________________ (t_plasma_electron_alpha_spitzer_slow_profile142)_ 1.20891246512448136e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_143____________________ (t_plasma_electron_alpha_spitzer_slow_profile143)_ 1.20678752268890399e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_144____________________ (t_plasma_electron_alpha_spitzer_slow_profile144)_ 1.20464918338647364e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_145____________________ (t_plasma_electron_alpha_spitzer_slow_profile145)_ 1.20249748067016116e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_146____________________ (t_plasma_electron_alpha_spitzer_slow_profile146)_ 1.20033244828706276e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_147____________________ (t_plasma_electron_alpha_spitzer_slow_profile147)_ 1.19815412027981161e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_148____________________ (t_plasma_electron_alpha_spitzer_slow_profile148)_ 1.19596253098800975e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_149____________________ (t_plasma_electron_alpha_spitzer_slow_profile149)_ 1.19375771504967365e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_150____________________ (t_plasma_electron_alpha_spitzer_slow_profile150)_ 1.19153970740269544e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_151____________________ (t_plasma_electron_alpha_spitzer_slow_profile151)_ 1.18930854328631708e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_152____________________ (t_plasma_electron_alpha_spitzer_slow_profile152)_ 1.18706425824262407e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_153____________________ (t_plasma_electron_alpha_spitzer_slow_profile153)_ 1.18480688811805601e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_154____________________ (t_plasma_electron_alpha_spitzer_slow_profile154)_ 1.18253646906492671e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_155____________________ (t_plasma_electron_alpha_spitzer_slow_profile155)_ 1.18025303754296629e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_156____________________ (t_plasma_electron_alpha_spitzer_slow_profile156)_ 1.17795663032087927e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_157____________________ (t_plasma_electron_alpha_spitzer_slow_profile157)_ 1.17564728447791489e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_158____________________ (t_plasma_electron_alpha_spitzer_slow_profile158)_ 1.17332503740545868e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_159____________________ (t_plasma_electron_alpha_spitzer_slow_profile159)_ 1.17098992680863967e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_160____________________ (t_plasma_electron_alpha_spitzer_slow_profile160)_ 1.16864199070795394e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_161____________________ (t_plasma_electron_alpha_spitzer_slow_profile161)_ 1.16628126744090088e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_162____________________ (t_plasma_electron_alpha_spitzer_slow_profile162)_ 1.16390779566364788e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_163____________________ (t_plasma_electron_alpha_spitzer_slow_profile163)_ 1.16152161435270096e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_164____________________ (t_plasma_electron_alpha_spitzer_slow_profile164)_ 1.15912276280659921e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_165____________________ (t_plasma_electron_alpha_spitzer_slow_profile165)_ 1.15671128064762385e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_166____________________ (t_plasma_electron_alpha_spitzer_slow_profile166)_ 1.15428720782353200e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_167____________________ (t_plasma_electron_alpha_spitzer_slow_profile167)_ 1.15185058460929524e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_168____________________ (t_plasma_electron_alpha_spitzer_slow_profile168)_ 1.14940145160887108e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_169____________________ (t_plasma_electron_alpha_spitzer_slow_profile169)_ 1.14693984975698426e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_170____________________ (t_plasma_electron_alpha_spitzer_slow_profile170)_ 1.14446582032092681e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_171____________________ (t_plasma_electron_alpha_spitzer_slow_profile171)_ 1.14197940490238259e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_172____________________ (t_plasma_electron_alpha_spitzer_slow_profile172)_ 1.13948064543926475e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_173____________________ (t_plasma_electron_alpha_spitzer_slow_profile173)_ 1.13696958420757377e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_174____________________ (t_plasma_electron_alpha_spitzer_slow_profile174)_ 1.13444626382327818e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_175____________________ (t_plasma_electron_alpha_spitzer_slow_profile175)_ 1.13191072724421260e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_176____________________ (t_plasma_electron_alpha_spitzer_slow_profile176)_ 1.12936301777199199e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_177____________________ (t_plasma_electron_alpha_spitzer_slow_profile177)_ 1.12680317905395255e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_178____________________ (t_plasma_electron_alpha_spitzer_slow_profile178)_ 1.12423125508510857e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_179____________________ (t_plasma_electron_alpha_spitzer_slow_profile179)_ 1.12164729021013043e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_180____________________ (t_plasma_electron_alpha_spitzer_slow_profile180)_ 1.11905132912534344e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_181____________________ (t_plasma_electron_alpha_spitzer_slow_profile181)_ 1.11644341688074622e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_182____________________ (t_plasma_electron_alpha_spitzer_slow_profile182)_ 1.11382359888205351e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_183____________________ (t_plasma_electron_alpha_spitzer_slow_profile183)_ 1.11119192089275520e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_184____________________ (t_plasma_electron_alpha_spitzer_slow_profile184)_ 1.10854842903620132e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_185____________________ (t_plasma_electron_alpha_spitzer_slow_profile185)_ 1.10589316979770547e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_186____________________ (t_plasma_electron_alpha_spitzer_slow_profile186)_ 1.10322619002667244e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_187____________________ (t_plasma_electron_alpha_spitzer_slow_profile187)_ 1.10054753693874630e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_188____________________ (t_plasma_electron_alpha_spitzer_slow_profile188)_ 1.09785725811798063e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_189____________________ (t_plasma_electron_alpha_spitzer_slow_profile189)_ 1.09515540151903390e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_190____________________ (t_plasma_electron_alpha_spitzer_slow_profile190)_ 1.09244201546938502e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_191____________________ (t_plasma_electron_alpha_spitzer_slow_profile191)_ 1.08971714867157066e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_192____________________ (t_plasma_electron_alpha_spitzer_slow_profile192)_ 1.08698085020545254e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_193____________________ (t_plasma_electron_alpha_spitzer_slow_profile193)_ 1.08423316953049831e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_194____________________ (t_plasma_electron_alpha_spitzer_slow_profile194)_ 1.08147415648809608e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_195____________________ (t_plasma_electron_alpha_spitzer_slow_profile195)_ 1.07870386130388529e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_196____________________ (t_plasma_electron_alpha_spitzer_slow_profile196)_ 1.07592233459011721e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_197____________________ (t_plasma_electron_alpha_spitzer_slow_profile197)_ 1.07312962734803663e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_198____________________ (t_plasma_electron_alpha_spitzer_slow_profile198)_ 1.07032579097029057e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_199____________________ (t_plasma_electron_alpha_spitzer_slow_profile199)_ 1.06751087724335858e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_200____________________ (t_plasma_electron_alpha_spitzer_slow_profile200)_ 1.06468493835001698e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_201____________________ (t_plasma_electron_alpha_spitzer_slow_profile201)_ 1.06184802687181512e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_202____________________ (t_plasma_electron_alpha_spitzer_slow_profile202)_ 1.05900019579159244e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_203____________________ (t_plasma_electron_alpha_spitzer_slow_profile203)_ 1.05614149849600869e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_204____________________ (t_plasma_electron_alpha_spitzer_slow_profile204)_ 1.05327198877811101e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_205____________________ (t_plasma_electron_alpha_spitzer_slow_profile205)_ 1.05039172083992183e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_206____________________ (t_plasma_electron_alpha_spitzer_slow_profile206)_ 1.04750074929505566e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_207____________________ (t_plasma_electron_alpha_spitzer_slow_profile207)_ 1.04459912917136299e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_208____________________ (t_plasma_electron_alpha_spitzer_slow_profile208)_ 1.04168691591360418e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_209____________________ (t_plasma_electron_alpha_spitzer_slow_profile209)_ 1.03876416538614658e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_210____________________ (t_plasma_electron_alpha_spitzer_slow_profile210)_ 1.03583093387569680e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_211____________________ (t_plasma_electron_alpha_spitzer_slow_profile211)_ 1.03288727809405279e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_212____________________ (t_plasma_electron_alpha_spitzer_slow_profile212)_ 1.02993325518089685e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_213____________________ (t_plasma_electron_alpha_spitzer_slow_profile213)_ 1.02696892270660611e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_214____________________ (t_plasma_electron_alpha_spitzer_slow_profile214)_ 1.02399433867510092e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_215____________________ (t_plasma_electron_alpha_spitzer_slow_profile215)_ 1.02100956152671918e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_216____________________ (t_plasma_electron_alpha_spitzer_slow_profile216)_ 1.01801465014112469e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_217____________________ (t_plasma_electron_alpha_spitzer_slow_profile217)_ 1.01500966384024172e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_218____________________ (t_plasma_electron_alpha_spitzer_slow_profile218)_ 1.01199466239122549e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_219____________________ (t_plasma_electron_alpha_spitzer_slow_profile219)_ 1.00896970600946045e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_220____________________ (t_plasma_electron_alpha_spitzer_slow_profile220)_ 1.00593485536159455e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_221____________________ (t_plasma_electron_alpha_spitzer_slow_profile221)_ 1.00289017156860250e+00 -Electron-alpha_Spitzer_slowing_down_time_at_point_222____________________ (t_plasma_electron_alpha_spitzer_slow_profile222)_ 9.99835716208881564e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_223____________________ (t_plasma_electron_alpha_spitzer_slow_profile223)_ 9.96771551321384730e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_224____________________ (t_plasma_electron_alpha_spitzer_slow_profile224)_ 9.93697739408782477e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_225____________________ (t_plasma_electron_alpha_spitzer_slow_profile225)_ 9.90614343440663125e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_226____________________ (t_plasma_electron_alpha_spitzer_slow_profile226)_ 9.87521426856762474e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_227____________________ (t_plasma_electron_alpha_spitzer_slow_profile227)_ 9.84419053570234293e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_228____________________ (t_plasma_electron_alpha_spitzer_slow_profile228)_ 9.81307287970952014e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_229____________________ (t_plasma_electron_alpha_spitzer_slow_profile229)_ 9.78186194928845842e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_230____________________ (t_plasma_electron_alpha_spitzer_slow_profile230)_ 9.75055839797279722e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_231____________________ (t_plasma_electron_alpha_spitzer_slow_profile231)_ 9.71916288416462715e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_232____________________ (t_plasma_electron_alpha_spitzer_slow_profile232)_ 9.68767607116896912e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_233____________________ (t_plasma_electron_alpha_spitzer_slow_profile233)_ 9.65609862722863976e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_234____________________ (t_plasma_electron_alpha_spitzer_slow_profile234)_ 9.62443122555951436e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_235____________________ (t_plasma_electron_alpha_spitzer_slow_profile235)_ 9.59267454438614053e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_236____________________ (t_plasma_electron_alpha_spitzer_slow_profile236)_ 9.56082926697778390e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_237____________________ (t_plasma_electron_alpha_spitzer_slow_profile237)_ 9.52889608168483448e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_238____________________ (t_plasma_electron_alpha_spitzer_slow_profile238)_ 9.49687568197565946e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_239____________________ (t_plasma_electron_alpha_spitzer_slow_profile239)_ 9.46476876647379894e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_240____________________ (t_plasma_electron_alpha_spitzer_slow_profile240)_ 9.43257603899567254e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_241____________________ (t_plasma_electron_alpha_spitzer_slow_profile241)_ 9.40029820858858001e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_242____________________ (t_plasma_electron_alpha_spitzer_slow_profile242)_ 9.36793598956925155e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_243____________________ (t_plasma_electron_alpha_spitzer_slow_profile243)_ 9.33549010156275338e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_244____________________ (t_plasma_electron_alpha_spitzer_slow_profile244)_ 9.30296126954185176e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_245____________________ (t_plasma_electron_alpha_spitzer_slow_profile245)_ 9.27035022386681673e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_246____________________ (t_plasma_electron_alpha_spitzer_slow_profile246)_ 9.23765770032570099e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_247____________________ (t_plasma_electron_alpha_spitzer_slow_profile247)_ 9.20488444017501517e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_248____________________ (t_plasma_electron_alpha_spitzer_slow_profile248)_ 9.17203119018094037e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_249____________________ (t_plasma_electron_alpha_spitzer_slow_profile249)_ 9.13909870266096269e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_250____________________ (t_plasma_electron_alpha_spitzer_slow_profile250)_ 9.10608773552600392e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_251____________________ (t_plasma_electron_alpha_spitzer_slow_profile251)_ 9.07299905232302417e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_252____________________ (t_plasma_electron_alpha_spitzer_slow_profile252)_ 9.03983342227810738e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_253____________________ (t_plasma_electron_alpha_spitzer_slow_profile253)_ 9.00659162034009197e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_254____________________ (t_plasma_electron_alpha_spitzer_slow_profile254)_ 8.97327442722463231e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_255____________________ (t_plasma_electron_alpha_spitzer_slow_profile255)_ 8.93988262945887291e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_256____________________ (t_plasma_electron_alpha_spitzer_slow_profile256)_ 8.90641701942653130e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_257____________________ (t_plasma_electron_alpha_spitzer_slow_profile257)_ 8.87287839541359036e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_258____________________ (t_plasma_electron_alpha_spitzer_slow_profile258)_ 8.83926756165451577e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_259____________________ (t_plasma_electron_alpha_spitzer_slow_profile259)_ 8.80558532837899088e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_260____________________ (t_plasma_electron_alpha_spitzer_slow_profile260)_ 8.77183251185924662e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_261____________________ (t_plasma_electron_alpha_spitzer_slow_profile261)_ 8.73800993445791208e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_262____________________ (t_plasma_electron_alpha_spitzer_slow_profile262)_ 8.70411842467646357e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_263____________________ (t_plasma_electron_alpha_spitzer_slow_profile263)_ 8.67015881720426540e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_264____________________ (t_plasma_electron_alpha_spitzer_slow_profile264)_ 8.63613195296819236e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_265____________________ (t_plasma_electron_alpha_spitzer_slow_profile265)_ 8.60203867918283183e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_266____________________ (t_plasma_electron_alpha_spitzer_slow_profile266)_ 8.56787984940132752e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_267____________________ (t_plasma_electron_alpha_spitzer_slow_profile267)_ 8.53365632356684167e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_268____________________ (t_plasma_electron_alpha_spitzer_slow_profile268)_ 8.49936896806465447e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_269____________________ (t_plasma_electron_alpha_spitzer_slow_profile269)_ 8.46501865577485857e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_270____________________ (t_plasma_electron_alpha_spitzer_slow_profile270)_ 8.43060626612578301e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_271____________________ (t_plasma_electron_alpha_spitzer_slow_profile271)_ 8.39613268514802891e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_272____________________ (t_plasma_electron_alpha_spitzer_slow_profile272)_ 8.36159880552920898e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_273____________________ (t_plasma_electron_alpha_spitzer_slow_profile273)_ 8.32700552666936322e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_274____________________ (t_plasma_electron_alpha_spitzer_slow_profile274)_ 8.29235375473710290e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_275____________________ (t_plasma_electron_alpha_spitzer_slow_profile275)_ 8.25764440272639844e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_276____________________ (t_plasma_electron_alpha_spitzer_slow_profile276)_ 8.22287839051421776e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_277____________________ (t_plasma_electron_alpha_spitzer_slow_profile277)_ 8.18805664491876861e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_278____________________ (t_plasma_electron_alpha_spitzer_slow_profile278)_ 8.15318009975862235e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_279____________________ (t_plasma_electron_alpha_spitzer_slow_profile279)_ 8.11824969591249501e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_280____________________ (t_plasma_electron_alpha_spitzer_slow_profile280)_ 8.08326638137990439e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_281____________________ (t_plasma_electron_alpha_spitzer_slow_profile281)_ 8.04823111134257529e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_282____________________ (t_plasma_electron_alpha_spitzer_slow_profile282)_ 8.01314484822666317e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_283____________________ (t_plasma_electron_alpha_spitzer_slow_profile283)_ 7.97800856176584028e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_284____________________ (t_plasma_electron_alpha_spitzer_slow_profile284)_ 7.94282322906517457e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_285____________________ (t_plasma_electron_alpha_spitzer_slow_profile285)_ 7.90758983466596455e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_286____________________ (t_plasma_electron_alpha_spitzer_slow_profile286)_ 7.87230937061132563e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_287____________________ (t_plasma_electron_alpha_spitzer_slow_profile287)_ 7.83698283651281025e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_288____________________ (t_plasma_electron_alpha_spitzer_slow_profile288)_ 7.80161123961784164e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_289____________________ (t_plasma_electron_alpha_spitzer_slow_profile289)_ 7.76619559487817246e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_290____________________ (t_plasma_electron_alpha_spitzer_slow_profile290)_ 7.73073692501919818e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_291____________________ (t_plasma_electron_alpha_spitzer_slow_profile291)_ 7.69523626061038413e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_292____________________ (t_plasma_electron_alpha_spitzer_slow_profile292)_ 7.65969464013654844e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_293____________________ (t_plasma_electron_alpha_spitzer_slow_profile293)_ 7.62411311007027193e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_294____________________ (t_plasma_electron_alpha_spitzer_slow_profile294)_ 7.58849272494530935e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_295____________________ (t_plasma_electron_alpha_spitzer_slow_profile295)_ 7.55283454743105542e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_296____________________ (t_plasma_electron_alpha_spitzer_slow_profile296)_ 7.51713964840813431e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_297____________________ (t_plasma_electron_alpha_spitzer_slow_profile297)_ 7.48140910704509499e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_298____________________ (t_plasma_electron_alpha_spitzer_slow_profile298)_ 7.44564401087621230e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_299____________________ (t_plasma_electron_alpha_spitzer_slow_profile299)_ 7.40984545588052157e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_300____________________ (t_plasma_electron_alpha_spitzer_slow_profile300)_ 7.37401454656198774e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_301____________________ (t_plasma_electron_alpha_spitzer_slow_profile301)_ 7.33815239603094804e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_302____________________ (t_plasma_electron_alpha_spitzer_slow_profile302)_ 7.30226012608675479e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_303____________________ (t_plasma_electron_alpha_spitzer_slow_profile303)_ 7.26633886730176481e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_304____________________ (t_plasma_electron_alpha_spitzer_slow_profile304)_ 7.23038975910659132e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_305____________________ (t_plasma_electron_alpha_spitzer_slow_profile305)_ 7.19441394987673677e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_306____________________ (t_plasma_electron_alpha_spitzer_slow_profile306)_ 7.15841259702060029e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_307____________________ (t_plasma_electron_alpha_spitzer_slow_profile307)_ 7.12238686706890389e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_308____________________ (t_plasma_electron_alpha_spitzer_slow_profile308)_ 7.08633793576555537e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_309____________________ (t_plasma_electron_alpha_spitzer_slow_profile309)_ 7.05026698816004549e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_310____________________ (t_plasma_electron_alpha_spitzer_slow_profile310)_ 7.01417521870133509e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_311____________________ (t_plasma_electron_alpha_spitzer_slow_profile311)_ 6.97806383133335761e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_312____________________ (t_plasma_electron_alpha_spitzer_slow_profile312)_ 6.94193403959207922e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_313____________________ (t_plasma_electron_alpha_spitzer_slow_profile313)_ 6.90578706670429865e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_314____________________ (t_plasma_electron_alpha_spitzer_slow_profile314)_ 6.86962414568806912e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_315____________________ (t_plasma_electron_alpha_spitzer_slow_profile315)_ 6.83344651945495762e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_316____________________ (t_plasma_electron_alpha_spitzer_slow_profile316)_ 6.79725544091403733e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_317____________________ (t_plasma_electron_alpha_spitzer_slow_profile317)_ 6.76105217307776285e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_318____________________ (t_plasma_electron_alpha_spitzer_slow_profile318)_ 6.72483798916979292e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_319____________________ (t_plasma_electron_alpha_spitzer_slow_profile319)_ 6.68861417273471703e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_320____________________ (t_plasma_electron_alpha_spitzer_slow_profile320)_ 6.65238201774983606e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_321____________________ (t_plasma_electron_alpha_spitzer_slow_profile321)_ 6.61614282873904669e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_322____________________ (t_plasma_electron_alpha_spitzer_slow_profile322)_ 6.57989792088883307e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_323____________________ (t_plasma_electron_alpha_spitzer_slow_profile323)_ 6.54364862016650561e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_324____________________ (t_plasma_electron_alpha_spitzer_slow_profile324)_ 6.50739626344071787e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_325____________________ (t_plasma_electron_alpha_spitzer_slow_profile325)_ 6.47114219860433493e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_326____________________ (t_plasma_electron_alpha_spitzer_slow_profile326)_ 6.43488778469972322e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_327____________________ (t_plasma_electron_alpha_spitzer_slow_profile327)_ 6.39863439204657602e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_328____________________ (t_plasma_electron_alpha_spitzer_slow_profile328)_ 6.36238340237229028e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_329____________________ (t_plasma_electron_alpha_spitzer_slow_profile329)_ 6.32613620894507567e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_330____________________ (t_plasma_electron_alpha_spitzer_slow_profile330)_ 6.28989421670977267e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_331____________________ (t_plasma_electron_alpha_spitzer_slow_profile331)_ 6.25365884242655823e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_332____________________ (t_plasma_electron_alpha_spitzer_slow_profile332)_ 6.21743151481261913e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_333____________________ (t_plasma_electron_alpha_spitzer_slow_profile333)_ 6.18121367468683958e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_334____________________ (t_plasma_electron_alpha_spitzer_slow_profile334)_ 6.14500677511772064e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_335____________________ (t_plasma_electron_alpha_spitzer_slow_profile335)_ 6.10881228157451606e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_336____________________ (t_plasma_electron_alpha_spitzer_slow_profile336)_ 6.07263167208177523e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_337____________________ (t_plasma_electron_alpha_spitzer_slow_profile337)_ 6.03646643737744681e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_338____________________ (t_plasma_electron_alpha_spitzer_slow_profile338)_ 6.00031808107456044e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_339____________________ (t_plasma_electron_alpha_spitzer_slow_profile339)_ 5.96418811982673214e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_340____________________ (t_plasma_electron_alpha_spitzer_slow_profile340)_ 5.92807808349757881e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_341____________________ (t_plasma_electron_alpha_spitzer_slow_profile341)_ 5.89198951533418502e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_342____________________ (t_plasma_electron_alpha_spitzer_slow_profile342)_ 5.85592397214481974e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_343____________________ (t_plasma_electron_alpha_spitzer_slow_profile343)_ 5.81988302448101624e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_344____________________ (t_plasma_electron_alpha_spitzer_slow_profile344)_ 5.78386825682421946e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_345____________________ (t_plasma_electron_alpha_spitzer_slow_profile345)_ 5.74788126777713182e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_346____________________ (t_plasma_electron_alpha_spitzer_slow_profile346)_ 5.71192367026007508e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_347____________________ (t_plasma_electron_alpha_spitzer_slow_profile347)_ 5.67599709171234479e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_348____________________ (t_plasma_electron_alpha_spitzer_slow_profile348)_ 5.64010317429900709e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_349____________________ (t_plasma_electron_alpha_spitzer_slow_profile349)_ 5.60424357512316562e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_350____________________ (t_plasma_electron_alpha_spitzer_slow_profile350)_ 5.56841996644406589e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_351____________________ (t_plasma_electron_alpha_spitzer_slow_profile351)_ 5.53263403590114944e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_352____________________ (t_plasma_electron_alpha_spitzer_slow_profile352)_ 5.49688748674445948e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_353____________________ (t_plasma_electron_alpha_spitzer_slow_profile353)_ 5.46118203807154368e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_354____________________ (t_plasma_electron_alpha_spitzer_slow_profile354)_ 5.42551942507117579e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_355____________________ (t_plasma_electron_alpha_spitzer_slow_profile355)_ 5.38990139927423173e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_356____________________ (t_plasma_electron_alpha_spitzer_slow_profile356)_ 5.35432972881198288e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_357____________________ (t_plasma_electron_alpha_spitzer_slow_profile357)_ 5.31880619868216775e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_358____________________ (t_plasma_electron_alpha_spitzer_slow_profile358)_ 5.28333261102317486e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_359____________________ (t_plasma_electron_alpha_spitzer_slow_profile359)_ 5.24791078539670663e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_360____________________ (t_plasma_electron_alpha_spitzer_slow_profile360)_ 5.21254255907936392e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_361____________________ (t_plasma_electron_alpha_spitzer_slow_profile361)_ 5.17722978736344541e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_362____________________ (t_plasma_electron_alpha_spitzer_slow_profile362)_ 5.14197434386754026e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_363____________________ (t_plasma_electron_alpha_spitzer_slow_profile363)_ 5.10677812085726046e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_364____________________ (t_plasma_electron_alpha_spitzer_slow_profile364)_ 5.07164302957666902e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_365____________________ (t_plasma_electron_alpha_spitzer_slow_profile365)_ 5.03657100059087592e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_366____________________ (t_plasma_electron_alpha_spitzer_slow_profile366)_ 5.00156398414037251e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_367____________________ (t_plasma_electron_alpha_spitzer_slow_profile367)_ 4.96662395050766758e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_368____________________ (t_plasma_electron_alpha_spitzer_slow_profile368)_ 4.93175289039684550e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_369____________________ (t_plasma_electron_alpha_spitzer_slow_profile369)_ 4.89695281532668336e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_370____________________ (t_plasma_electron_alpha_spitzer_slow_profile370)_ 4.86222575803802848e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_371____________________ (t_plasma_electron_alpha_spitzer_slow_profile371)_ 4.82757377291612833e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_372____________________ (t_plasma_electron_alpha_spitzer_slow_profile372)_ 4.79299893642877561e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_373____________________ (t_plasma_electron_alpha_spitzer_slow_profile373)_ 4.75850334758095295e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_374____________________ (t_plasma_electron_alpha_spitzer_slow_profile374)_ 4.72408912838697848e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_375____________________ (t_plasma_electron_alpha_spitzer_slow_profile375)_ 4.68975842436100687e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_376____________________ (t_plasma_electron_alpha_spitzer_slow_profile376)_ 4.65551340502689148e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_377____________________ (t_plasma_electron_alpha_spitzer_slow_profile377)_ 4.62135626444844905e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_378____________________ (t_plasma_electron_alpha_spitzer_slow_profile378)_ 4.58728922178128107e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_379____________________ (t_plasma_electron_alpha_spitzer_slow_profile379)_ 4.55331452184725927e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_380____________________ (t_plasma_electron_alpha_spitzer_slow_profile380)_ 4.51943443573304182e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_381____________________ (t_plasma_electron_alpha_spitzer_slow_profile381)_ 4.48565126141391268e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_382____________________ (t_plasma_electron_alpha_spitzer_slow_profile382)_ 4.45196732440437393e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_383____________________ (t_plasma_electron_alpha_spitzer_slow_profile383)_ 4.41838497843707212e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_384____________________ (t_plasma_electron_alpha_spitzer_slow_profile384)_ 4.38490660617168848e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_385____________________ (t_plasma_electron_alpha_spitzer_slow_profile385)_ 4.35153461993553259e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_386____________________ (t_plasma_electron_alpha_spitzer_slow_profile386)_ 4.31827146249771532e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_387____________________ (t_plasma_electron_alpha_spitzer_slow_profile387)_ 4.28511960787895219e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_388____________________ (t_plasma_electron_alpha_spitzer_slow_profile388)_ 4.25208156219909761e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_389____________________ (t_plasma_electron_alpha_spitzer_slow_profile389)_ 4.21915986456473990e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_390____________________ (t_plasma_electron_alpha_spitzer_slow_profile390)_ 4.18635708799931838e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_391____________________ (t_plasma_electron_alpha_spitzer_slow_profile391)_ 4.15367584041842652e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_392____________________ (t_plasma_electron_alpha_spitzer_slow_profile392)_ 4.12111876565312674e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_393____________________ (t_plasma_electron_alpha_spitzer_slow_profile393)_ 4.08868854452435593e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_394____________________ (t_plasma_electron_alpha_spitzer_slow_profile394)_ 4.05638789597167371e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_395____________________ (t_plasma_electron_alpha_spitzer_slow_profile395)_ 4.02421957823992149e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_396____________________ (t_plasma_electron_alpha_spitzer_slow_profile396)_ 3.99218639012758114e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_397____________________ (t_plasma_electron_alpha_spitzer_slow_profile397)_ 3.96029117230094818e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_398____________________ (t_plasma_electron_alpha_spitzer_slow_profile398)_ 3.92853680867850830e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_399____________________ (t_plasma_electron_alpha_spitzer_slow_profile399)_ 3.89692622789035048e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_400____________________ (t_plasma_electron_alpha_spitzer_slow_profile400)_ 3.86546240481770165e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_401____________________ (t_plasma_electron_alpha_spitzer_slow_profile401)_ 3.83414836221823319e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_402____________________ (t_plasma_electron_alpha_spitzer_slow_profile402)_ 3.80298717244310469e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_403____________________ (t_plasma_electron_alpha_spitzer_slow_profile403)_ 3.77198195925235347e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_404____________________ (t_plasma_electron_alpha_spitzer_slow_profile404)_ 3.74113589973565197e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_405____________________ (t_plasma_electron_alpha_spitzer_slow_profile405)_ 3.71045222634618199e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_406____________________ (t_plasma_electron_alpha_spitzer_slow_profile406)_ 3.67993422905595613e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_407____________________ (t_plasma_electron_alpha_spitzer_slow_profile407)_ 3.64958525764171593e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_408____________________ (t_plasma_electron_alpha_spitzer_slow_profile408)_ 3.61940872411125825e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_409____________________ (t_plasma_electron_alpha_spitzer_slow_profile409)_ 3.58940810528107057e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_410____________________ (t_plasma_electron_alpha_spitzer_slow_profile410)_ 3.55958694551698207e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_411____________________ (t_plasma_electron_alpha_spitzer_slow_profile411)_ 3.52994885965079497e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_412____________________ (t_plasma_electron_alpha_spitzer_slow_profile412)_ 3.50049753608692393e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_413____________________ (t_plasma_electron_alpha_spitzer_slow_profile413)_ 3.47123674011457606e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_414____________________ (t_plasma_electron_alpha_spitzer_slow_profile414)_ 3.44217031744236679e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_415____________________ (t_plasma_electron_alpha_spitzer_slow_profile415)_ 3.41330219797403300e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_416____________________ (t_plasma_electron_alpha_spitzer_slow_profile416)_ 3.38463639984577902e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_417____________________ (t_plasma_electron_alpha_spitzer_slow_profile417)_ 3.35617703374781196e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_418____________________ (t_plasma_electron_alpha_spitzer_slow_profile418)_ 3.32792830755508640e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_419____________________ (t_plasma_electron_alpha_spitzer_slow_profile419)_ 3.29989453129482579e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_420____________________ (t_plasma_electron_alpha_spitzer_slow_profile420)_ 3.27208012248142388e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_421____________________ (t_plasma_electron_alpha_spitzer_slow_profile421)_ 3.24448961185266782e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_422____________________ (t_plasma_electron_alpha_spitzer_slow_profile422)_ 3.21712764954504238e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_423____________________ (t_plasma_electron_alpha_spitzer_slow_profile423)_ 3.18999901175016476e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_424____________________ (t_plasma_electron_alpha_spitzer_slow_profile424)_ 3.16310860789930315e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_425____________________ (t_plasma_electron_alpha_spitzer_slow_profile425)_ 3.13646148842858186e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_426____________________ (t_plasma_electron_alpha_spitzer_slow_profile426)_ 3.11006285318373099e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_427____________________ (t_plasma_electron_alpha_spitzer_slow_profile427)_ 3.08391806053068929e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_428____________________ (t_plasma_electron_alpha_spitzer_slow_profile428)_ 3.05803263724671370e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_429____________________ (t_plasma_electron_alpha_spitzer_slow_profile429)_ 3.03241228927631779e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_430____________________ (t_plasma_electron_alpha_spitzer_slow_profile430)_ 3.00706291344768561e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_431____________________ (t_plasma_electron_alpha_spitzer_slow_profile431)_ 2.98199061025808398e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_432____________________ (t_plasma_electron_alpha_spitzer_slow_profile432)_ 2.95720169785209208e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_433____________________ (t_plasma_electron_alpha_spitzer_slow_profile433)_ 2.93270272733411330e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_434____________________ (t_plasma_electron_alpha_spitzer_slow_profile434)_ 2.90850049957749823e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_435____________________ (t_plasma_electron_alpha_spitzer_slow_profile435)_ 2.88460208371708438e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_436____________________ (t_plasma_electron_alpha_spitzer_slow_profile436)_ 2.86101483754106822e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_437____________________ (t_plasma_electron_alpha_spitzer_slow_profile437)_ 2.83774643003255056e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_438____________________ (t_plasma_electron_alpha_spitzer_slow_profile438)_ 2.81480486635249549e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_439____________________ (t_plasma_electron_alpha_spitzer_slow_profile439)_ 2.79219851560522925e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_440____________________ (t_plasma_electron_alpha_spitzer_slow_profile440)_ 2.76993614178763115e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_441____________________ (t_plasma_electron_alpha_spitzer_slow_profile441)_ 2.74802693839566181e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_442____________________ (t_plasma_electron_alpha_spitzer_slow_profile442)_ 2.72648056725089682e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_443____________________ (t_plasma_electron_alpha_spitzer_slow_profile443)_ 2.70530720221874965e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_444____________________ (t_plasma_electron_alpha_spitzer_slow_profile444)_ 2.68451757862561258e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_445____________________ (t_plasma_electron_alpha_spitzer_slow_profile445)_ 2.66412304935073008e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_446____________________ (t_plasma_electron_alpha_spitzer_slow_profile446)_ 2.64413564878112295e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_447____________________ (t_plasma_electron_alpha_spitzer_slow_profile447)_ 2.62456816608709842e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_448____________________ (t_plasma_electron_alpha_spitzer_slow_profile448)_ 2.60543422962075832e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_449____________________ (t_plasma_electron_alpha_spitzer_slow_profile449)_ 2.58674840468564093e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_450____________________ (t_plasma_electron_alpha_spitzer_slow_profile450)_ 2.56852630750832756e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_451____________________ (t_plasma_electron_alpha_spitzer_slow_profile451)_ 2.55078473901333647e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_452____________________ (t_plasma_electron_alpha_spitzer_slow_profile452)_ 2.53354184303437979e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_453____________________ (t_plasma_electron_alpha_spitzer_slow_profile453)_ 2.51681729499671991e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_454____________________ (t_plasma_electron_alpha_spitzer_slow_profile454)_ 2.50063252903835243e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_455____________________ (t_plasma_electron_alpha_spitzer_slow_profile455)_ 2.48501101424986687e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_456____________________ (t_plasma_electron_alpha_spitzer_slow_profile456)_ 2.46997859459085395e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_457____________________ (t_plasma_electron_alpha_spitzer_slow_profile457)_ 2.45556391270484675e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_458____________________ (t_plasma_electron_alpha_spitzer_slow_profile458)_ 2.44179894632840733e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_459____________________ (t_plasma_electron_alpha_spitzer_slow_profile459)_ 2.42871969901688856e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_460____________________ (t_plasma_electron_alpha_spitzer_slow_profile460)_ 2.41636710757296397e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_461____________________ (t_plasma_electron_alpha_spitzer_slow_profile461)_ 2.40478826255348749e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_462____________________ (t_plasma_electron_alpha_spitzer_slow_profile462)_ 2.39403809658028460e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_463____________________ (t_plasma_electron_alpha_spitzer_slow_profile463)_ 2.38418180059754015e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_464____________________ (t_plasma_electron_alpha_spitzer_slow_profile464)_ 2.37529843089759857e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_465____________________ (t_plasma_electron_alpha_spitzer_slow_profile465)_ 2.36748659093443004e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_466____________________ (t_plasma_electron_alpha_spitzer_slow_profile466)_ 2.36087403983256394e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_467____________________ (t_plasma_electron_alpha_spitzer_slow_profile467)_ 2.35563562843889629e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_468____________________ (t_plasma_electron_alpha_spitzer_slow_profile468)_ 2.35203215553996620e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_469____________________ (t_plasma_electron_alpha_spitzer_slow_profile469)_ 2.35051954386514383e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_470____________________ (t_plasma_electron_alpha_spitzer_slow_profile470)_ 2.35241649018110038e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_471____________________ (t_plasma_electron_alpha_spitzer_slow_profile471)_ 2.27250197573192619e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_472____________________ (t_plasma_electron_alpha_spitzer_slow_profile472)_ 2.19209830390464960e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_473____________________ (t_plasma_electron_alpha_spitzer_slow_profile473)_ 2.11121671126187155e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_474____________________ (t_plasma_electron_alpha_spitzer_slow_profile474)_ 2.02987089051548025e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_475____________________ (t_plasma_electron_alpha_spitzer_slow_profile475)_ 1.94807734573085839e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_476____________________ (t_plasma_electron_alpha_spitzer_slow_profile476)_ 1.86585580386443101e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_477____________________ (t_plasma_electron_alpha_spitzer_slow_profile477)_ 1.78322969320679342e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_478____________________ (t_plasma_electron_alpha_spitzer_slow_profile478)_ 1.70022670170067725e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_479____________________ (t_plasma_electron_alpha_spitzer_slow_profile479)_ 1.61687943115870952e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_480____________________ (t_plasma_electron_alpha_spitzer_slow_profile480)_ 1.53322616733914924e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_481____________________ (t_plasma_electron_alpha_spitzer_slow_profile481)_ 1.44931179095342089e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_482____________________ (t_plasma_electron_alpha_spitzer_slow_profile482)_ 1.36518886141027446e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_483____________________ (t_plasma_electron_alpha_spitzer_slow_profile483)_ 1.28091891407075664e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_484____________________ (t_plasma_electron_alpha_spitzer_slow_profile484)_ 1.19657402390975331e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_485____________________ (t_plasma_electron_alpha_spitzer_slow_profile485)_ 1.11223870511967679e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_486____________________ (t_plasma_electron_alpha_spitzer_slow_profile486)_ 1.02801223943737002e-01 -Electron-alpha_Spitzer_slowing_down_time_at_point_487____________________ (t_plasma_electron_alpha_spitzer_slow_profile487)_ 9.44011559092507307e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_488____________________ (t_plasma_electron_alpha_spitzer_slow_profile488)_ 8.60374858516424895e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_489____________________ (t_plasma_electron_alpha_spitzer_slow_profile489)_ 7.77266181017657459e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_490____________________ (t_plasma_electron_alpha_spitzer_slow_profile490)_ 6.94881337455502263e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_491____________________ (t_plasma_electron_alpha_spitzer_slow_profile491)_ 6.13455690176138643e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_492____________________ (t_plasma_electron_alpha_spitzer_slow_profile492)_ 5.33274626922181708e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_493____________________ (t_plasma_electron_alpha_spitzer_slow_profile493)_ 4.54688054332885658e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_494____________________ (t_plasma_electron_alpha_spitzer_slow_profile494)_ 3.78131165756645862e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_495____________________ (t_plasma_electron_alpha_spitzer_slow_profile495)_ 3.04155554138283608e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_496____________________ (t_plasma_electron_alpha_spitzer_slow_profile496)_ 2.33478631092477081e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_497____________________ (t_plasma_electron_alpha_spitzer_slow_profile497)_ 1.67068662239003435e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_498____________________ (t_plasma_electron_alpha_spitzer_slow_profile498)_ 1.06309097597797921e-02 -Electron-alpha_Spitzer_slowing_down_time_at_point_499____________________ (t_plasma_electron_alpha_spitzer_slow_profile499)_ 5.33809601769379225e-03 -Electron-alpha_Spitzer_slowing_down_time_at_point_500____________________ (t_plasma_electron_alpha_spitzer_slow_profile500)_ 1.29256007650656573e-03 -Volume_averaged_plasma_fuel_Spitzer_resistivity_(η)_(Ohm_m)______________ (res_plasma_fuel_spitzer_vol_avg)_ 1.28495123531948508e-09 -Plasma_Spitzer_resistivity_at_point_0____________________________________ (res_plasma_fuel_spitzer_profile0)_ 4.44402587666011616e-10 -Plasma_Spitzer_resistivity_at_point_1____________________________________ (res_plasma_fuel_spitzer_profile1)_ 4.44405948352730784e-10 -Plasma_Spitzer_resistivity_at_point_2____________________________________ (res_plasma_fuel_spitzer_profile2)_ 4.44416030628509353e-10 -Plasma_Spitzer_resistivity_at_point_3____________________________________ (res_plasma_fuel_spitzer_profile3)_ 4.44432835140240924e-10 -Plasma_Spitzer_resistivity_at_point_4____________________________________ (res_plasma_fuel_spitzer_profile4)_ 4.44456362966178430e-10 -Plasma_Spitzer_resistivity_at_point_5____________________________________ (res_plasma_fuel_spitzer_profile5)_ 4.44486615616081224e-10 -Plasma_Spitzer_resistivity_at_point_6____________________________________ (res_plasma_fuel_spitzer_profile6)_ 4.44523595031419804e-10 -Plasma_Spitzer_resistivity_at_point_7____________________________________ (res_plasma_fuel_spitzer_profile7)_ 4.44567303585638856e-10 -Plasma_Spitzer_resistivity_at_point_8____________________________________ (res_plasma_fuel_spitzer_profile8)_ 4.44617744084480785e-10 -Plasma_Spitzer_resistivity_at_point_9____________________________________ (res_plasma_fuel_spitzer_profile9)_ 4.44674919766365031e-10 -Plasma_Spitzer_resistivity_at_point_10___________________________________ (res_plasma_fuel_spitzer_profile10)_ 4.44738834302829678e-10 -Plasma_Spitzer_resistivity_at_point_11___________________________________ (res_plasma_fuel_spitzer_profile11)_ 4.44809491799029262e-10 -Plasma_Spitzer_resistivity_at_point_12___________________________________ (res_plasma_fuel_spitzer_profile12)_ 4.44886896794292654e-10 -Plasma_Spitzer_resistivity_at_point_13___________________________________ (res_plasma_fuel_spitzer_profile13)_ 4.44971054262740600e-10 -Plasma_Spitzer_resistivity_at_point_14___________________________________ (res_plasma_fuel_spitzer_profile14)_ 4.45061969613962355e-10 -Plasma_Spitzer_resistivity_at_point_15___________________________________ (res_plasma_fuel_spitzer_profile15)_ 4.45159648693750739e-10 -Plasma_Spitzer_resistivity_at_point_16___________________________________ (res_plasma_fuel_spitzer_profile16)_ 4.45264097784898450e-10 -Plasma_Spitzer_resistivity_at_point_17___________________________________ (res_plasma_fuel_spitzer_profile17)_ 4.45375323608053320e-10 -Plasma_Spitzer_resistivity_at_point_18___________________________________ (res_plasma_fuel_spitzer_profile18)_ 4.45493333322633122e-10 -Plasma_Spitzer_resistivity_at_point_19___________________________________ (res_plasma_fuel_spitzer_profile19)_ 4.45618134527802265e-10 -Plasma_Spitzer_resistivity_at_point_20___________________________________ (res_plasma_fuel_spitzer_profile20)_ 4.45749735263507271e-10 -Plasma_Spitzer_resistivity_at_point_21___________________________________ (res_plasma_fuel_spitzer_profile21)_ 4.45888144011573768e-10 -Plasma_Spitzer_resistivity_at_point_22___________________________________ (res_plasma_fuel_spitzer_profile22)_ 4.46033369696863926e-10 -Plasma_Spitzer_resistivity_at_point_23___________________________________ (res_plasma_fuel_spitzer_profile23)_ 4.46185421688495769e-10 -Plasma_Spitzer_resistivity_at_point_24___________________________________ (res_plasma_fuel_spitzer_profile24)_ 4.46344309801123757e-10 -Plasma_Spitzer_resistivity_at_point_25___________________________________ (res_plasma_fuel_spitzer_profile25)_ 4.46510044296279956e-10 -Plasma_Spitzer_resistivity_at_point_26___________________________________ (res_plasma_fuel_spitzer_profile26)_ 4.46682635883780502e-10 -Plasma_Spitzer_resistivity_at_point_27___________________________________ (res_plasma_fuel_spitzer_profile27)_ 4.46862095723189349e-10 -Plasma_Spitzer_resistivity_at_point_28___________________________________ (res_plasma_fuel_spitzer_profile28)_ 4.47048435425350260e-10 -Plasma_Spitzer_resistivity_at_point_29___________________________________ (res_plasma_fuel_spitzer_profile29)_ 4.47241667053977320e-10 -Plasma_Spitzer_resistivity_at_point_30___________________________________ (res_plasma_fuel_spitzer_profile30)_ 4.47441803127313121e-10 -Plasma_Spitzer_resistivity_at_point_31___________________________________ (res_plasma_fuel_spitzer_profile31)_ 4.47648856619845943e-10 -Plasma_Spitzer_resistivity_at_point_32___________________________________ (res_plasma_fuel_spitzer_profile32)_ 4.47862840964096093e-10 -Plasma_Spitzer_resistivity_at_point_33___________________________________ (res_plasma_fuel_spitzer_profile33)_ 4.48083770052462700e-10 -Plasma_Spitzer_resistivity_at_point_34___________________________________ (res_plasma_fuel_spitzer_profile34)_ 4.48311658239138938e-10 -Plasma_Spitzer_resistivity_at_point_35___________________________________ (res_plasma_fuel_spitzer_profile35)_ 4.48546520342089666e-10 -Plasma_Spitzer_resistivity_at_point_36___________________________________ (res_plasma_fuel_spitzer_profile36)_ 4.48788371645098338e-10 -Plasma_Spitzer_resistivity_at_point_37___________________________________ (res_plasma_fuel_spitzer_profile37)_ 4.49037227899876725e-10 -Plasma_Spitzer_resistivity_at_point_38___________________________________ (res_plasma_fuel_spitzer_profile38)_ 4.49293105328244741e-10 -Plasma_Spitzer_resistivity_at_point_39___________________________________ (res_plasma_fuel_spitzer_profile39)_ 4.49556020624375365e-10 -Plasma_Spitzer_resistivity_at_point_40___________________________________ (res_plasma_fuel_spitzer_profile40)_ 4.49825990957109760e-10 -Plasma_Spitzer_resistivity_at_point_41___________________________________ (res_plasma_fuel_spitzer_profile41)_ 4.50103033972337796e-10 -Plasma_Spitzer_resistivity_at_point_42___________________________________ (res_plasma_fuel_spitzer_profile42)_ 4.50387167795450696e-10 -Plasma_Spitzer_resistivity_at_point_43___________________________________ (res_plasma_fuel_spitzer_profile43)_ 4.50678411033861862e-10 -Plasma_Spitzer_resistivity_at_point_44___________________________________ (res_plasma_fuel_spitzer_profile44)_ 4.50976782779596111e-10 -Plasma_Spitzer_resistivity_at_point_45___________________________________ (res_plasma_fuel_spitzer_profile45)_ 4.51282302611955056e-10 -Plasma_Spitzer_resistivity_at_point_46___________________________________ (res_plasma_fuel_spitzer_profile46)_ 4.51594990600246390e-10 -Plasma_Spitzer_resistivity_at_point_47___________________________________ (res_plasma_fuel_spitzer_profile47)_ 4.51914867306592160e-10 -Plasma_Spitzer_resistivity_at_point_48___________________________________ (res_plasma_fuel_spitzer_profile48)_ 4.52241953788804877e-10 -Plasma_Spitzer_resistivity_at_point_49___________________________________ (res_plasma_fuel_spitzer_profile49)_ 4.52576271603340035e-10 -Plasma_Spitzer_resistivity_at_point_50___________________________________ (res_plasma_fuel_spitzer_profile50)_ 4.52917842808320332e-10 -Plasma_Spitzer_resistivity_at_point_51___________________________________ (res_plasma_fuel_spitzer_profile51)_ 4.53266689966637548e-10 -Plasma_Spitzer_resistivity_at_point_52___________________________________ (res_plasma_fuel_spitzer_profile52)_ 4.53622836149126023e-10 -Plasma_Spitzer_resistivity_at_point_53___________________________________ (res_plasma_fuel_spitzer_profile53)_ 4.53986304937816265e-10 -Plasma_Spitzer_resistivity_at_point_54___________________________________ (res_plasma_fuel_spitzer_profile54)_ 4.54357120429263014e-10 -Plasma_Spitzer_resistivity_at_point_55___________________________________ (res_plasma_fuel_spitzer_profile55)_ 4.54735307237952239e-10 -Plasma_Spitzer_resistivity_at_point_56___________________________________ (res_plasma_fuel_spitzer_profile56)_ 4.55120890499786311e-10 -Plasma_Spitzer_resistivity_at_point_57___________________________________ (res_plasma_fuel_spitzer_profile57)_ 4.55513895875649046e-10 -Plasma_Spitzer_resistivity_at_point_58___________________________________ (res_plasma_fuel_spitzer_profile58)_ 4.55914349555049800e-10 -Plasma_Spitzer_resistivity_at_point_59___________________________________ (res_plasma_fuel_spitzer_profile59)_ 4.56322278259850793e-10 -Plasma_Spitzer_resistivity_at_point_60___________________________________ (res_plasma_fuel_spitzer_profile60)_ 4.56737709248074988e-10 -Plasma_Spitzer_resistivity_at_point_61___________________________________ (res_plasma_fuel_spitzer_profile61)_ 4.57160670317795954e-10 -Plasma_Spitzer_resistivity_at_point_62___________________________________ (res_plasma_fuel_spitzer_profile62)_ 4.57591189811115319e-10 -Plasma_Spitzer_resistivity_at_point_63___________________________________ (res_plasma_fuel_spitzer_profile63)_ 4.58029296618219876e-10 -Plasma_Spitzer_resistivity_at_point_64___________________________________ (res_plasma_fuel_spitzer_profile64)_ 4.58475020181529487e-10 -Plasma_Spitzer_resistivity_at_point_65___________________________________ (res_plasma_fuel_spitzer_profile65)_ 4.58928390499927800e-10 -Plasma_Spitzer_resistivity_at_point_66___________________________________ (res_plasma_fuel_spitzer_profile66)_ 4.59389438133083591e-10 -Plasma_Spitzer_resistivity_at_point_67___________________________________ (res_plasma_fuel_spitzer_profile67)_ 4.59858194205859438e-10 -Plasma_Spitzer_resistivity_at_point_68___________________________________ (res_plasma_fuel_spitzer_profile68)_ 4.60334690412810903e-10 -Plasma_Spitzer_resistivity_at_point_69___________________________________ (res_plasma_fuel_spitzer_profile69)_ 4.60818959022776100e-10 -Plasma_Spitzer_resistivity_at_point_70___________________________________ (res_plasma_fuel_spitzer_profile70)_ 4.61311032883558615e-10 -Plasma_Spitzer_resistivity_at_point_71___________________________________ (res_plasma_fuel_spitzer_profile71)_ 4.61810945426702000e-10 -Plasma_Spitzer_resistivity_at_point_72___________________________________ (res_plasma_fuel_spitzer_profile72)_ 4.62318730672360878e-10 -Plasma_Spitzer_resistivity_at_point_73___________________________________ (res_plasma_fuel_spitzer_profile73)_ 4.62834423234265427e-10 -Plasma_Spitzer_resistivity_at_point_74___________________________________ (res_plasma_fuel_spitzer_profile74)_ 4.63358058324784344e-10 -Plasma_Spitzer_resistivity_at_point_75___________________________________ (res_plasma_fuel_spitzer_profile75)_ 4.63889671760085005e-10 -Plasma_Spitzer_resistivity_at_point_76___________________________________ (res_plasma_fuel_spitzer_profile76)_ 4.64429299965393402e-10 -Plasma_Spitzer_resistivity_at_point_77___________________________________ (res_plasma_fuel_spitzer_profile77)_ 4.64976979980354688e-10 -Plasma_Spitzer_resistivity_at_point_78___________________________________ (res_plasma_fuel_spitzer_profile78)_ 4.65532749464495257e-10 -Plasma_Spitzer_resistivity_at_point_79___________________________________ (res_plasma_fuel_spitzer_profile79)_ 4.66096646702789361e-10 -Plasma_Spitzer_resistivity_at_point_80___________________________________ (res_plasma_fuel_spitzer_profile80)_ 4.66668710611328498e-10 -Plasma_Spitzer_resistivity_at_point_81___________________________________ (res_plasma_fuel_spitzer_profile81)_ 4.67248980743099068e-10 -Plasma_Spitzer_resistivity_at_point_82___________________________________ (res_plasma_fuel_spitzer_profile82)_ 4.67837497293866362e-10 -Plasma_Spitzer_resistivity_at_point_83___________________________________ (res_plasma_fuel_spitzer_profile83)_ 4.68434301108167487e-10 -Plasma_Spitzer_resistivity_at_point_84___________________________________ (res_plasma_fuel_spitzer_profile84)_ 4.69039433685414824e-10 -Plasma_Spitzer_resistivity_at_point_85___________________________________ (res_plasma_fuel_spitzer_profile85)_ 4.69652937186113115e-10 -Plasma_Spitzer_resistivity_at_point_86___________________________________ (res_plasma_fuel_spitzer_profile86)_ 4.70274854438188427e-10 -Plasma_Spitzer_resistivity_at_point_87___________________________________ (res_plasma_fuel_spitzer_profile87)_ 4.70905228943432515e-10 -Plasma_Spitzer_resistivity_at_point_88___________________________________ (res_plasma_fuel_spitzer_profile88)_ 4.71544104884064839e-10 -Plasma_Spitzer_resistivity_at_point_89___________________________________ (res_plasma_fuel_spitzer_profile89)_ 4.72191527129412571e-10 -Plasma_Spitzer_resistivity_at_point_90___________________________________ (res_plasma_fuel_spitzer_profile90)_ 4.72847541242711668e-10 -Plasma_Spitzer_resistivity_at_point_91___________________________________ (res_plasma_fuel_spitzer_profile91)_ 4.73512193488028827e-10 -Plasma_Spitzer_resistivity_at_point_92___________________________________ (res_plasma_fuel_spitzer_profile92)_ 4.74185530837307097e-10 -Plasma_Spitzer_resistivity_at_point_93___________________________________ (res_plasma_fuel_spitzer_profile93)_ 4.74867600977538778e-10 -Plasma_Spitzer_resistivity_at_point_94___________________________________ (res_plasma_fuel_spitzer_profile94)_ 4.75558452318063116e-10 -Plasma_Spitzer_resistivity_at_point_95___________________________________ (res_plasma_fuel_spitzer_profile95)_ 4.76258133997996039e-10 -Plasma_Spitzer_resistivity_at_point_96___________________________________ (res_plasma_fuel_spitzer_profile96)_ 4.76966695893789351e-10 -Plasma_Spitzer_resistivity_at_point_97___________________________________ (res_plasma_fuel_spitzer_profile97)_ 4.77684188626922680e-10 -Plasma_Spitzer_resistivity_at_point_98___________________________________ (res_plasma_fuel_spitzer_profile98)_ 4.78410663571732124e-10 -Plasma_Spitzer_resistivity_at_point_99___________________________________ (res_plasma_fuel_spitzer_profile99)_ 4.79146172863374968e-10 -Plasma_Spitzer_resistivity_at_point_100__________________________________ (res_plasma_fuel_spitzer_profile100)_ 4.79890769405934292e-10 -Plasma_Spitzer_resistivity_at_point_101__________________________________ (res_plasma_fuel_spitzer_profile101)_ 4.80644506880664415e-10 -Plasma_Spitzer_resistivity_at_point_102__________________________________ (res_plasma_fuel_spitzer_profile102)_ 4.81407439754380779e-10 -Plasma_Spitzer_resistivity_at_point_103__________________________________ (res_plasma_fuel_spitzer_profile103)_ 4.82179623287993766e-10 -Plasma_Spitzer_resistivity_at_point_104__________________________________ (res_plasma_fuel_spitzer_profile104)_ 4.82961113545192540e-10 -Plasma_Spitzer_resistivity_at_point_105__________________________________ (res_plasma_fuel_spitzer_profile105)_ 4.83751967401278719e-10 -Plasma_Spitzer_resistivity_at_point_106__________________________________ (res_plasma_fuel_spitzer_profile106)_ 4.84552242552151626e-10 -Plasma_Spitzer_resistivity_at_point_107__________________________________ (res_plasma_fuel_spitzer_profile107)_ 4.85361997523450180e-10 -Plasma_Spitzer_resistivity_at_point_108__________________________________ (res_plasma_fuel_spitzer_profile108)_ 4.86181291679849584e-10 -Plasma_Spitzer_resistivity_at_point_109__________________________________ (res_plasma_fuel_spitzer_profile109)_ 4.87010185234523233e-10 -Plasma_Spitzer_resistivity_at_point_110__________________________________ (res_plasma_fuel_spitzer_profile110)_ 4.87848739258759728e-10 -Plasma_Spitzer_resistivity_at_point_111__________________________________ (res_plasma_fuel_spitzer_profile111)_ 4.88697015691752656e-10 -Plasma_Spitzer_resistivity_at_point_112__________________________________ (res_plasma_fuel_spitzer_profile112)_ 4.89555077350551268e-10 -Plasma_Spitzer_resistivity_at_point_113__________________________________ (res_plasma_fuel_spitzer_profile113)_ 4.90422987940187440e-10 -Plasma_Spitzer_resistivity_at_point_114__________________________________ (res_plasma_fuel_spitzer_profile114)_ 4.91300812063971799e-10 -Plasma_Spitzer_resistivity_at_point_115__________________________________ (res_plasma_fuel_spitzer_profile115)_ 4.92188615233967071e-10 -Plasma_Spitzer_resistivity_at_point_116__________________________________ (res_plasma_fuel_spitzer_profile116)_ 4.93086463881641131e-10 -Plasma_Spitzer_resistivity_at_point_117__________________________________ (res_plasma_fuel_spitzer_profile117)_ 4.93994425368700591e-10 -Plasma_Spitzer_resistivity_at_point_118__________________________________ (res_plasma_fuel_spitzer_profile118)_ 4.94912567998110393e-10 -Plasma_Spitzer_resistivity_at_point_119__________________________________ (res_plasma_fuel_spitzer_profile119)_ 4.95840961025299315e-10 -Plasma_Spitzer_resistivity_at_point_120__________________________________ (res_plasma_fuel_spitzer_profile120)_ 4.96779674669558214e-10 -Plasma_Spitzer_resistivity_at_point_121__________________________________ (res_plasma_fuel_spitzer_profile121)_ 4.97728780125631406e-10 -Plasma_Spitzer_resistivity_at_point_122__________________________________ (res_plasma_fuel_spitzer_profile122)_ 4.98688349575505440e-10 -Plasma_Spitzer_resistivity_at_point_123__________________________________ (res_plasma_fuel_spitzer_profile123)_ 4.99658456200398769e-10 -Plasma_Spitzer_resistivity_at_point_124__________________________________ (res_plasma_fuel_spitzer_profile124)_ 5.00639174192954189e-10 -Plasma_Spitzer_resistivity_at_point_125__________________________________ (res_plasma_fuel_spitzer_profile125)_ 5.01630578769639927e-10 -Plasma_Spitzer_resistivity_at_point_126__________________________________ (res_plasma_fuel_spitzer_profile126)_ 5.02632746183361045e-10 -Plasma_Spitzer_resistivity_at_point_127__________________________________ (res_plasma_fuel_spitzer_profile127)_ 5.03645753736284667e-10 -Plasma_Spitzer_resistivity_at_point_128__________________________________ (res_plasma_fuel_spitzer_profile128)_ 5.04669679792884104e-10 -Plasma_Spitzer_resistivity_at_point_129__________________________________ (res_plasma_fuel_spitzer_profile129)_ 5.05704603793203933e-10 -Plasma_Spitzer_resistivity_at_point_130__________________________________ (res_plasma_fuel_spitzer_profile130)_ 5.06750606266350589e-10 -Plasma_Spitzer_resistivity_at_point_131__________________________________ (res_plasma_fuel_spitzer_profile131)_ 5.07807768844213431e-10 -Plasma_Spitzer_resistivity_at_point_132__________________________________ (res_plasma_fuel_spitzer_profile132)_ 5.08876174275417003e-10 -Plasma_Spitzer_resistivity_at_point_133__________________________________ (res_plasma_fuel_spitzer_profile133)_ 5.09955906439511734e-10 -Plasma_Spitzer_resistivity_at_point_134__________________________________ (res_plasma_fuel_spitzer_profile134)_ 5.11047050361407306e-10 -Plasma_Spitzer_resistivity_at_point_135__________________________________ (res_plasma_fuel_spitzer_profile135)_ 5.12149692226048183e-10 -Plasma_Spitzer_resistivity_at_point_136__________________________________ (res_plasma_fuel_spitzer_profile136)_ 5.13263919393342050e-10 -Plasma_Spitzer_resistivity_at_point_137__________________________________ (res_plasma_fuel_spitzer_profile137)_ 5.14389820413341267e-10 -Plasma_Spitzer_resistivity_at_point_138__________________________________ (res_plasma_fuel_spitzer_profile138)_ 5.15527485041681985e-10 -Plasma_Spitzer_resistivity_at_point_139__________________________________ (res_plasma_fuel_spitzer_profile139)_ 5.16677004255287759e-10 -Plasma_Spitzer_resistivity_at_point_140__________________________________ (res_plasma_fuel_spitzer_profile140)_ 5.17838470268340235e-10 -Plasma_Spitzer_resistivity_at_point_141__________________________________ (res_plasma_fuel_spitzer_profile141)_ 5.19011976548521562e-10 -Plasma_Spitzer_resistivity_at_point_142__________________________________ (res_plasma_fuel_spitzer_profile142)_ 5.20197617833535051e-10 -Plasma_Spitzer_resistivity_at_point_143__________________________________ (res_plasma_fuel_spitzer_profile143)_ 5.21395490147906871e-10 -Plasma_Spitzer_resistivity_at_point_144__________________________________ (res_plasma_fuel_spitzer_profile144)_ 5.22605690820076733e-10 -Plasma_Spitzer_resistivity_at_point_145__________________________________ (res_plasma_fuel_spitzer_profile145)_ 5.23828318499777680e-10 -Plasma_Spitzer_resistivity_at_point_146__________________________________ (res_plasma_fuel_spitzer_profile146)_ 5.25063473175715938e-10 -Plasma_Spitzer_resistivity_at_point_147__________________________________ (res_plasma_fuel_spitzer_profile147)_ 5.26311256193552164e-10 -Plasma_Spitzer_resistivity_at_point_148__________________________________ (res_plasma_fuel_spitzer_profile148)_ 5.27571770274191136e-10 -Plasma_Spitzer_resistivity_at_point_149__________________________________ (res_plasma_fuel_spitzer_profile149)_ 5.28845119532384009e-10 -Plasma_Spitzer_resistivity_at_point_150__________________________________ (res_plasma_fuel_spitzer_profile150)_ 5.30131409495652454e-10 -Plasma_Spitzer_resistivity_at_point_151__________________________________ (res_plasma_fuel_spitzer_profile151)_ 5.31430747123534557e-10 -Plasma_Spitzer_resistivity_at_point_152__________________________________ (res_plasma_fuel_spitzer_profile152)_ 5.32743240827163781e-10 -Plasma_Spitzer_resistivity_at_point_153__________________________________ (res_plasma_fuel_spitzer_profile153)_ 5.34069000489183126e-10 -Plasma_Spitzer_resistivity_at_point_154__________________________________ (res_plasma_fuel_spitzer_profile154)_ 5.35408137484005057e-10 -Plasma_Spitzer_resistivity_at_point_155__________________________________ (res_plasma_fuel_spitzer_profile155)_ 5.36760764698416474e-10 -Plasma_Spitzer_resistivity_at_point_156__________________________________ (res_plasma_fuel_spitzer_profile156)_ 5.38126996552542566e-10 -Plasma_Spitzer_resistivity_at_point_157__________________________________ (res_plasma_fuel_spitzer_profile157)_ 5.39506949021171322e-10 -Plasma_Spitzer_resistivity_at_point_158__________________________________ (res_plasma_fuel_spitzer_profile158)_ 5.40900739655447482e-10 -Plasma_Spitzer_resistivity_at_point_159__________________________________ (res_plasma_fuel_spitzer_profile159)_ 5.42308487604940367e-10 -Plasma_Spitzer_resistivity_at_point_160__________________________________ (res_plasma_fuel_spitzer_profile160)_ 5.43730313640095014e-10 -Plasma_Spitzer_resistivity_at_point_161__________________________________ (res_plasma_fuel_spitzer_profile161)_ 5.45166340175074454e-10 -Plasma_Spitzer_resistivity_at_point_162__________________________________ (res_plasma_fuel_spitzer_profile162)_ 5.46616691290993975e-10 -Plasma_Spitzer_resistivity_at_point_163__________________________________ (res_plasma_fuel_spitzer_profile163)_ 5.48081492759564120e-10 -Plasma_Spitzer_resistivity_at_point_164__________________________________ (res_plasma_fuel_spitzer_profile164)_ 5.49560872067141578e-10 -Plasma_Spitzer_resistivity_at_point_165__________________________________ (res_plasma_fuel_spitzer_profile165)_ 5.51054958439201426e-10 -Plasma_Spitzer_resistivity_at_point_166__________________________________ (res_plasma_fuel_spitzer_profile166)_ 5.52563882865233203e-10 -Plasma_Spitzer_resistivity_at_point_167__________________________________ (res_plasma_fuel_spitzer_profile167)_ 5.54087778124076310e-10 -Plasma_Spitzer_resistivity_at_point_168__________________________________ (res_plasma_fuel_spitzer_profile168)_ 5.55626778809693096e-10 -Plasma_Spitzer_resistivity_at_point_169__________________________________ (res_plasma_fuel_spitzer_profile169)_ 5.57181021357396590e-10 -Plasma_Spitzer_resistivity_at_point_170__________________________________ (res_plasma_fuel_spitzer_profile170)_ 5.58750644070536269e-10 -Plasma_Spitzer_resistivity_at_point_171__________________________________ (res_plasma_fuel_spitzer_profile171)_ 5.60335787147653063e-10 -Plasma_Spitzer_resistivity_at_point_172__________________________________ (res_plasma_fuel_spitzer_profile172)_ 5.61936592710109971e-10 -Plasma_Spitzer_resistivity_at_point_173__________________________________ (res_plasma_fuel_spitzer_profile173)_ 5.63553204830210106e-10 -Plasma_Spitzer_resistivity_at_point_174__________________________________ (res_plasma_fuel_spitzer_profile174)_ 5.65185769559809391e-10 -Plasma_Spitzer_resistivity_at_point_175__________________________________ (res_plasma_fuel_spitzer_profile175)_ 5.66834434959431964e-10 -Plasma_Spitzer_resistivity_at_point_176__________________________________ (res_plasma_fuel_spitzer_profile176)_ 5.68499351127904658e-10 -Plasma_Spitzer_resistivity_at_point_177__________________________________ (res_plasma_fuel_spitzer_profile177)_ 5.70180670232509486e-10 -Plasma_Spitzer_resistivity_at_point_178__________________________________ (res_plasma_fuel_spitzer_profile178)_ 5.71878546539673590e-10 -Plasma_Spitzer_resistivity_at_point_179__________________________________ (res_plasma_fuel_spitzer_profile179)_ 5.73593136446202142e-10 -Plasma_Spitzer_resistivity_at_point_180__________________________________ (res_plasma_fuel_spitzer_profile180)_ 5.75324598511065646e-10 -Plasma_Spitzer_resistivity_at_point_181__________________________________ (res_plasma_fuel_spitzer_profile181)_ 5.77073093487752838e-10 -Plasma_Spitzer_resistivity_at_point_182__________________________________ (res_plasma_fuel_spitzer_profile182)_ 5.78838784357197330e-10 -Plasma_Spitzer_resistivity_at_point_183__________________________________ (res_plasma_fuel_spitzer_profile183)_ 5.80621836361294352e-10 -Plasma_Spitzer_resistivity_at_point_184__________________________________ (res_plasma_fuel_spitzer_profile184)_ 5.82422417037012955e-10 -Plasma_Spitzer_resistivity_at_point_185__________________________________ (res_plasma_fuel_spitzer_profile185)_ 5.84240696251118468e-10 -Plasma_Spitzer_resistivity_at_point_186__________________________________ (res_plasma_fuel_spitzer_profile186)_ 5.86076846235516785e-10 -Plasma_Spitzer_resistivity_at_point_187__________________________________ (res_plasma_fuel_spitzer_profile187)_ 5.87931041623232491e-10 -Plasma_Spitzer_resistivity_at_point_188__________________________________ (res_plasma_fuel_spitzer_profile188)_ 5.89803459485030414e-10 -Plasma_Spitzer_resistivity_at_point_189__________________________________ (res_plasma_fuel_spitzer_profile189)_ 5.91694279366697899e-10 -Plasma_Spitzer_resistivity_at_point_190__________________________________ (res_plasma_fuel_spitzer_profile190)_ 5.93603683326995337e-10 -Plasma_Spitzer_resistivity_at_point_191__________________________________ (res_plasma_fuel_spitzer_profile191)_ 5.95531855976293568e-10 -Plasma_Spitzer_resistivity_at_point_192__________________________________ (res_plasma_fuel_spitzer_profile192)_ 5.97478984515906108e-10 -Plasma_Spitzer_resistivity_at_point_193__________________________________ (res_plasma_fuel_spitzer_profile193)_ 5.99445258778131411e-10 -Plasma_Spitzer_resistivity_at_point_194__________________________________ (res_plasma_fuel_spitzer_profile194)_ 6.01430871267023262e-10 -Plasma_Spitzer_resistivity_at_point_195__________________________________ (res_plasma_fuel_spitzer_profile195)_ 6.03436017199895802e-10 -Plasma_Spitzer_resistivity_at_point_196__________________________________ (res_plasma_fuel_spitzer_profile196)_ 6.05460894549585217e-10 -Plasma_Spitzer_resistivity_at_point_197__________________________________ (res_plasma_fuel_spitzer_profile197)_ 6.07505704087475958e-10 -Plasma_Spitzer_resistivity_at_point_198__________________________________ (res_plasma_fuel_spitzer_profile198)_ 6.09570649427312872e-10 -Plasma_Spitzer_resistivity_at_point_199__________________________________ (res_plasma_fuel_spitzer_profile199)_ 6.11655937069810229e-10 -Plasma_Spitzer_resistivity_at_point_200__________________________________ (res_plasma_fuel_spitzer_profile200)_ 6.13761776448073243e-10 -Plasma_Spitzer_resistivity_at_point_201__________________________________ (res_plasma_fuel_spitzer_profile201)_ 6.15888379973854321e-10 -Plasma_Spitzer_resistivity_at_point_202__________________________________ (res_plasma_fuel_spitzer_profile202)_ 6.18035963084649420e-10 -Plasma_Spitzer_resistivity_at_point_203__________________________________ (res_plasma_fuel_spitzer_profile203)_ 6.20204744291663044e-10 -Plasma_Spitzer_resistivity_at_point_204__________________________________ (res_plasma_fuel_spitzer_profile204)_ 6.22394945228648710e-10 -Plasma_Spitzer_resistivity_at_point_205__________________________________ (res_plasma_fuel_spitzer_profile205)_ 6.24606790701650627e-10 -Plasma_Spitzer_resistivity_at_point_206__________________________________ (res_plasma_fuel_spitzer_profile206)_ 6.26840508739657963e-10 -Plasma_Spitzer_resistivity_at_point_207__________________________________ (res_plasma_fuel_spitzer_profile207)_ 6.29096330646193409e-10 -Plasma_Spitzer_resistivity_at_point_208__________________________________ (res_plasma_fuel_spitzer_profile208)_ 6.31374491051854248e-10 -Plasma_Spitzer_resistivity_at_point_209__________________________________ (res_plasma_fuel_spitzer_profile209)_ 6.33675227967822455e-10 -Plasma_Spitzer_resistivity_at_point_210__________________________________ (res_plasma_fuel_spitzer_profile210)_ 6.35998782840365570e-10 -Plasma_Spitzer_resistivity_at_point_211__________________________________ (res_plasma_fuel_spitzer_profile211)_ 6.38345400606349295e-10 -Plasma_Spitzer_resistivity_at_point_212__________________________________ (res_plasma_fuel_spitzer_profile212)_ 6.40715329749775193e-10 -Plasma_Spitzer_resistivity_at_point_213__________________________________ (res_plasma_fuel_spitzer_profile213)_ 6.43108822359373239e-10 -Plasma_Spitzer_resistivity_at_point_214__________________________________ (res_plasma_fuel_spitzer_profile214)_ 6.45526134187262262e-10 -Plasma_Spitzer_resistivity_at_point_215__________________________________ (res_plasma_fuel_spitzer_profile215)_ 6.47967524708705477e-10 -Plasma_Spitzer_resistivity_at_point_216__________________________________ (res_plasma_fuel_spitzer_profile216)_ 6.50433257182977944e-10 -Plasma_Spitzer_resistivity_at_point_217__________________________________ (res_plasma_fuel_spitzer_profile217)_ 6.52923598715372963e-10 -Plasma_Spitzer_resistivity_at_point_218__________________________________ (res_plasma_fuel_spitzer_profile218)_ 6.55438820320365065e-10 -Plasma_Spitzer_resistivity_at_point_219__________________________________ (res_plasma_fuel_spitzer_profile219)_ 6.57979196985958358e-10 -Plasma_Spitzer_resistivity_at_point_220__________________________________ (res_plasma_fuel_spitzer_profile220)_ 6.60545007739238727e-10 -Plasma_Spitzer_resistivity_at_point_221__________________________________ (res_plasma_fuel_spitzer_profile221)_ 6.63136535713157197e-10 -Plasma_Spitzer_resistivity_at_point_222__________________________________ (res_plasma_fuel_spitzer_profile222)_ 6.65754068214568736e-10 -Plasma_Spitzer_resistivity_at_point_223__________________________________ (res_plasma_fuel_spitzer_profile223)_ 6.68397896793549582e-10 -Plasma_Spitzer_resistivity_at_point_224__________________________________ (res_plasma_fuel_spitzer_profile224)_ 6.71068317314022130e-10 -Plasma_Spitzer_resistivity_at_point_225__________________________________ (res_plasma_fuel_spitzer_profile225)_ 6.73765630025709925e-10 -Plasma_Spitzer_resistivity_at_point_226__________________________________ (res_plasma_fuel_spitzer_profile226)_ 6.76490139637452953e-10 -Plasma_Spitzer_resistivity_at_point_227__________________________________ (res_plasma_fuel_spitzer_profile227)_ 6.79242155391906705e-10 -Plasma_Spitzer_resistivity_at_point_228__________________________________ (res_plasma_fuel_spitzer_profile228)_ 6.82021991141657581e-10 -Plasma_Spitzer_resistivity_at_point_229__________________________________ (res_plasma_fuel_spitzer_profile229)_ 6.84829965426776859e-10 -Plasma_Spitzer_resistivity_at_point_230__________________________________ (res_plasma_fuel_spitzer_profile230)_ 6.87666401553849945e-10 -Plasma_Spitzer_resistivity_at_point_231__________________________________ (res_plasma_fuel_spitzer_profile231)_ 6.90531627676501891e-10 -Plasma_Spitzer_resistivity_at_point_232__________________________________ (res_plasma_fuel_spitzer_profile232)_ 6.93425976877454847e-10 -Plasma_Spitzer_resistivity_at_point_233__________________________________ (res_plasma_fuel_spitzer_profile233)_ 6.96349787252150336e-10 -Plasma_Spitzer_resistivity_at_point_234__________________________________ (res_plasma_fuel_spitzer_profile234)_ 6.99303401993956816e-10 -Plasma_Spitzer_resistivity_at_point_235__________________________________ (res_plasma_fuel_spitzer_profile235)_ 7.02287169481009481e-10 -Plasma_Spitzer_resistivity_at_point_236__________________________________ (res_plasma_fuel_spitzer_profile236)_ 7.05301443364702558e-10 -Plasma_Spitzer_resistivity_at_point_237__________________________________ (res_plasma_fuel_spitzer_profile237)_ 7.08346582659873091e-10 -Plasma_Spitzer_resistivity_at_point_238__________________________________ (res_plasma_fuel_spitzer_profile238)_ 7.11422951836708145e-10 -Plasma_Spitzer_resistivity_at_point_239__________________________________ (res_plasma_fuel_spitzer_profile239)_ 7.14530920914414332e-10 -Plasma_Spitzer_resistivity_at_point_240__________________________________ (res_plasma_fuel_spitzer_profile240)_ 7.17670865556675172e-10 -Plasma_Spitzer_resistivity_at_point_241__________________________________ (res_plasma_fuel_spitzer_profile241)_ 7.20843167168944391e-10 -Plasma_Spitzer_resistivity_at_point_242__________________________________ (res_plasma_fuel_spitzer_profile242)_ 7.24048212997602539e-10 -Plasma_Spitzer_resistivity_at_point_243__________________________________ (res_plasma_fuel_spitzer_profile243)_ 7.27286396231015406e-10 -Plasma_Spitzer_resistivity_at_point_244__________________________________ (res_plasma_fuel_spitzer_profile244)_ 7.30558116102538168e-10 -Plasma_Spitzer_resistivity_at_point_245__________________________________ (res_plasma_fuel_spitzer_profile245)_ 7.33863777995498570e-10 -Plasma_Spitzer_resistivity_at_point_246__________________________________ (res_plasma_fuel_spitzer_profile246)_ 7.37203793550196971e-10 -Plasma_Spitzer_resistivity_at_point_247__________________________________ (res_plasma_fuel_spitzer_profile247)_ 7.40578580772970734e-10 -Plasma_Spitzer_resistivity_at_point_248__________________________________ (res_plasma_fuel_spitzer_profile248)_ 7.43988564147355201e-10 -Plasma_Spitzer_resistivity_at_point_249__________________________________ (res_plasma_fuel_spitzer_profile249)_ 7.47434174747390166e-10 -Plasma_Spitzer_resistivity_at_point_250__________________________________ (res_plasma_fuel_spitzer_profile250)_ 7.50915850353108565e-10 -Plasma_Spitzer_resistivity_at_point_251__________________________________ (res_plasma_fuel_spitzer_profile251)_ 7.54434035568256262e-10 -Plasma_Spitzer_resistivity_at_point_252__________________________________ (res_plasma_fuel_spitzer_profile252)_ 7.57989181940279670e-10 -Plasma_Spitzer_resistivity_at_point_253__________________________________ (res_plasma_fuel_spitzer_profile253)_ 7.61581748082634331e-10 -Plasma_Spitzer_resistivity_at_point_254__________________________________ (res_plasma_fuel_spitzer_profile254)_ 7.65212199799452506e-10 -Plasma_Spitzer_resistivity_at_point_255__________________________________ (res_plasma_fuel_spitzer_profile255)_ 7.68881010212617871e-10 -Plasma_Spitzer_resistivity_at_point_256__________________________________ (res_plasma_fuel_spitzer_profile256)_ 7.72588659891301068e-10 -Plasma_Spitzer_resistivity_at_point_257__________________________________ (res_plasma_fuel_spitzer_profile257)_ 7.76335636983992827e-10 -Plasma_Spitzer_resistivity_at_point_258__________________________________ (res_plasma_fuel_spitzer_profile258)_ 7.80122437353092146e-10 -Plasma_Spitzer_resistivity_at_point_259__________________________________ (res_plasma_fuel_spitzer_profile259)_ 7.83949564712094921e-10 -Plasma_Spitzer_resistivity_at_point_260__________________________________ (res_plasma_fuel_spitzer_profile260)_ 7.87817530765433269e-10 -Plasma_Spitzer_resistivity_at_point_261__________________________________ (res_plasma_fuel_spitzer_profile261)_ 7.91726855351021295e-10 -Plasma_Spitzer_resistivity_at_point_262__________________________________ (res_plasma_fuel_spitzer_profile262)_ 7.95678066585549156e-10 -Plasma_Spitzer_resistivity_at_point_263__________________________________ (res_plasma_fuel_spitzer_profile263)_ 7.99671701012592128e-10 -Plasma_Spitzer_resistivity_at_point_264__________________________________ (res_plasma_fuel_spitzer_profile264)_ 8.03708303753571069e-10 -Plasma_Spitzer_resistivity_at_point_265__________________________________ (res_plasma_fuel_spitzer_profile265)_ 8.07788428661638411e-10 -Plasma_Spitzer_resistivity_at_point_266__________________________________ (res_plasma_fuel_spitzer_profile266)_ 8.11912638478524943e-10 -Plasma_Spitzer_resistivity_at_point_267__________________________________ (res_plasma_fuel_spitzer_profile267)_ 8.16081504994418725e-10 -Plasma_Spitzer_resistivity_at_point_268__________________________________ (res_plasma_fuel_spitzer_profile268)_ 8.20295609210919985e-10 -Plasma_Spitzer_resistivity_at_point_269__________________________________ (res_plasma_fuel_spitzer_profile269)_ 8.24555541507144871e-10 -Plasma_Spitzer_resistivity_at_point_270__________________________________ (res_plasma_fuel_spitzer_profile270)_ 8.28861901809016657e-10 -Plasma_Spitzer_resistivity_at_point_271__________________________________ (res_plasma_fuel_spitzer_profile271)_ 8.33215299761822953e-10 -Plasma_Spitzer_resistivity_at_point_272__________________________________ (res_plasma_fuel_spitzer_profile272)_ 8.37616354906080512e-10 -Plasma_Spitzer_resistivity_at_point_273__________________________________ (res_plasma_fuel_spitzer_profile273)_ 8.42065696856781856e-10 -Plasma_Spitzer_resistivity_at_point_274__________________________________ (res_plasma_fuel_spitzer_profile274)_ 8.46563965486077181e-10 -Plasma_Spitzer_resistivity_at_point_275__________________________________ (res_plasma_fuel_spitzer_profile275)_ 8.51111811109456791e-10 -Plasma_Spitzer_resistivity_at_point_276__________________________________ (res_plasma_fuel_spitzer_profile276)_ 8.55709894675489273e-10 -Plasma_Spitzer_resistivity_at_point_277__________________________________ (res_plasma_fuel_spitzer_profile277)_ 8.60358887959187574e-10 -Plasma_Spitzer_resistivity_at_point_278__________________________________ (res_plasma_fuel_spitzer_profile278)_ 8.65059473759059765e-10 -Plasma_Spitzer_resistivity_at_point_279__________________________________ (res_plasma_fuel_spitzer_profile279)_ 8.69812346097910955e-10 -Plasma_Spitzer_resistivity_at_point_280__________________________________ (res_plasma_fuel_spitzer_profile280)_ 8.74618210427457279e-10 -Plasma_Spitzer_resistivity_at_point_281__________________________________ (res_plasma_fuel_spitzer_profile281)_ 8.79477783836821729e-10 -Plasma_Spitzer_resistivity_at_point_282__________________________________ (res_plasma_fuel_spitzer_profile282)_ 8.84391795264972230e-10 -Plasma_Spitzer_resistivity_at_point_283__________________________________ (res_plasma_fuel_spitzer_profile283)_ 8.89360985717166895e-10 -Plasma_Spitzer_resistivity_at_point_284__________________________________ (res_plasma_fuel_spitzer_profile284)_ 8.94386108485480162e-10 -Plasma_Spitzer_resistivity_at_point_285__________________________________ (res_plasma_fuel_spitzer_profile285)_ 8.99467929373456573e-10 -Plasma_Spitzer_resistivity_at_point_286__________________________________ (res_plasma_fuel_spitzer_profile286)_ 9.04607226924986893e-10 -Plasma_Spitzer_resistivity_at_point_287__________________________________ (res_plasma_fuel_spitzer_profile287)_ 9.09804792657438629e-10 -Plasma_Spitzer_resistivity_at_point_288__________________________________ (res_plasma_fuel_spitzer_profile288)_ 9.15061431299138957e-10 -Plasma_Spitzer_resistivity_at_point_289__________________________________ (res_plasma_fuel_spitzer_profile289)_ 9.20377961031244820e-10 -Plasma_Spitzer_resistivity_at_point_290__________________________________ (res_plasma_fuel_spitzer_profile290)_ 9.25755213734095096e-10 -Plasma_Spitzer_resistivity_at_point_291__________________________________ (res_plasma_fuel_spitzer_profile291)_ 9.31194035238082899e-10 -Plasma_Spitzer_resistivity_at_point_292__________________________________ (res_plasma_fuel_spitzer_profile292)_ 9.36695285579132792e-10 -Plasma_Spitzer_resistivity_at_point_293__________________________________ (res_plasma_fuel_spitzer_profile293)_ 9.42259839258832028e-10 -Plasma_Spitzer_resistivity_at_point_294__________________________________ (res_plasma_fuel_spitzer_profile294)_ 9.47888585509289856e-10 -Plasma_Spitzer_resistivity_at_point_295__________________________________ (res_plasma_fuel_spitzer_profile295)_ 9.53582428562775545e-10 -Plasma_Spitzer_resistivity_at_point_296__________________________________ (res_plasma_fuel_spitzer_profile296)_ 9.59342287926207523e-10 -Plasma_Spitzer_resistivity_at_point_297__________________________________ (res_plasma_fuel_spitzer_profile297)_ 9.65169098660540241e-10 -Plasma_Spitzer_resistivity_at_point_298__________________________________ (res_plasma_fuel_spitzer_profile298)_ 9.71063811665124881e-10 -Plasma_Spitzer_resistivity_at_point_299__________________________________ (res_plasma_fuel_spitzer_profile299)_ 9.77027393967075956e-10 -Plasma_Spitzer_resistivity_at_point_300__________________________________ (res_plasma_fuel_spitzer_profile300)_ 9.83060829015720305e-10 -Plasma_Spitzer_resistivity_at_point_301__________________________________ (res_plasma_fuel_spitzer_profile301)_ 9.89165116982168416e-10 -Plasma_Spitzer_resistivity_at_point_302__________________________________ (res_plasma_fuel_spitzer_profile302)_ 9.95341275064063475e-10 -Plasma_Spitzer_resistivity_at_point_303__________________________________ (res_plasma_fuel_spitzer_profile303)_ 1.00159033779554973e-09 -Plasma_Spitzer_resistivity_at_point_304__________________________________ (res_plasma_fuel_spitzer_profile304)_ 1.00791335736251183e-09 -Plasma_Spitzer_resistivity_at_point_305__________________________________ (res_plasma_fuel_spitzer_profile305)_ 1.01431140392312162e-09 -Plasma_Spitzer_resistivity_at_point_306__________________________________ (res_plasma_fuel_spitzer_profile306)_ 1.02078556593372948e-09 -Plasma_Spitzer_resistivity_at_point_307__________________________________ (res_plasma_fuel_spitzer_profile307)_ 1.02733695048013404e-09 -Plasma_Spitzer_resistivity_at_point_308__________________________________ (res_plasma_fuel_spitzer_profile308)_ 1.03396668361426787e-09 -Plasma_Spitzer_resistivity_at_point_309__________________________________ (res_plasma_fuel_spitzer_profile309)_ 1.04067591069630652e-09 -Plasma_Spitzer_resistivity_at_point_310__________________________________ (res_plasma_fuel_spitzer_profile310)_ 1.04746579674224016e-09 -Plasma_Spitzer_resistivity_at_point_311__________________________________ (res_plasma_fuel_spitzer_profile311)_ 1.05433752677690218e-09 -Plasma_Spitzer_resistivity_at_point_312__________________________________ (res_plasma_fuel_spitzer_profile312)_ 1.06129230619248528e-09 -Plasma_Spitzer_resistivity_at_point_313__________________________________ (res_plasma_fuel_spitzer_profile313)_ 1.06833136111251825e-09 -Plasma_Spitzer_resistivity_at_point_314__________________________________ (res_plasma_fuel_spitzer_profile314)_ 1.07545593876132954e-09 -Plasma_Spitzer_resistivity_at_point_315__________________________________ (res_plasma_fuel_spitzer_profile315)_ 1.08266730783894883e-09 -Plasma_Spitzer_resistivity_at_point_316__________________________________ (res_plasma_fuel_spitzer_profile316)_ 1.08996675890146005e-09 -Plasma_Spitzer_resistivity_at_point_317__________________________________ (res_plasma_fuel_spitzer_profile317)_ 1.09735560474674706e-09 -Plasma_Spitzer_resistivity_at_point_318__________________________________ (res_plasma_fuel_spitzer_profile318)_ 1.10483518080560187e-09 -Plasma_Spitzer_resistivity_at_point_319__________________________________ (res_plasma_fuel_spitzer_profile319)_ 1.11240684553814654e-09 -Plasma_Spitzer_resistivity_at_point_320__________________________________ (res_plasma_fuel_spitzer_profile320)_ 1.12007198083550119e-09 -Plasma_Spitzer_resistivity_at_point_321__________________________________ (res_plasma_fuel_spitzer_profile321)_ 1.12783199242662283e-09 -Plasma_Spitzer_resistivity_at_point_322__________________________________ (res_plasma_fuel_spitzer_profile322)_ 1.13568831029022764e-09 -Plasma_Spitzer_resistivity_at_point_323__________________________________ (res_plasma_fuel_spitzer_profile323)_ 1.14364238907169582e-09 -Plasma_Spitzer_resistivity_at_point_324__________________________________ (res_plasma_fuel_spitzer_profile324)_ 1.15169570850483297e-09 -Plasma_Spitzer_resistivity_at_point_325__________________________________ (res_plasma_fuel_spitzer_profile325)_ 1.15984977383836836e-09 -Plasma_Spitzer_resistivity_at_point_326__________________________________ (res_plasma_fuel_spitzer_profile326)_ 1.16810611626701981e-09 -Plasma_Spitzer_resistivity_at_point_327__________________________________ (res_plasma_fuel_spitzer_profile327)_ 1.17646629336696588e-09 -Plasma_Spitzer_resistivity_at_point_328__________________________________ (res_plasma_fuel_spitzer_profile328)_ 1.18493188953553675e-09 -Plasma_Spitzer_resistivity_at_point_329__________________________________ (res_plasma_fuel_spitzer_profile329)_ 1.19350451643489017e-09 -Plasma_Spitzer_resistivity_at_point_330__________________________________ (res_plasma_fuel_spitzer_profile330)_ 1.20218581343946880e-09 -Plasma_Spitzer_resistivity_at_point_331__________________________________ (res_plasma_fuel_spitzer_profile331)_ 1.21097744808693897e-09 -Plasma_Spitzer_resistivity_at_point_332__________________________________ (res_plasma_fuel_spitzer_profile332)_ 1.21988111653236080e-09 -Plasma_Spitzer_resistivity_at_point_333__________________________________ (res_plasma_fuel_spitzer_profile333)_ 1.22889854400523818e-09 -Plasma_Spitzer_resistivity_at_point_334__________________________________ (res_plasma_fuel_spitzer_profile334)_ 1.23803148526912902e-09 -Plasma_Spitzer_resistivity_at_point_335__________________________________ (res_plasma_fuel_spitzer_profile335)_ 1.24728172508341185e-09 -Plasma_Spitzer_resistivity_at_point_336__________________________________ (res_plasma_fuel_spitzer_profile336)_ 1.25665107866681197e-09 -Plasma_Spitzer_resistivity_at_point_337__________________________________ (res_plasma_fuel_spitzer_profile337)_ 1.26614139216222585e-09 -Plasma_Spitzer_resistivity_at_point_338__________________________________ (res_plasma_fuel_spitzer_profile338)_ 1.27575454310234670e-09 -Plasma_Spitzer_resistivity_at_point_339__________________________________ (res_plasma_fuel_spitzer_profile339)_ 1.28549244087556301e-09 -Plasma_Spitzer_resistivity_at_point_340__________________________________ (res_plasma_fuel_spitzer_profile340)_ 1.29535702719154601e-09 -Plasma_Spitzer_resistivity_at_point_341__________________________________ (res_plasma_fuel_spitzer_profile341)_ 1.30535027654589710e-09 -Plasma_Spitzer_resistivity_at_point_342__________________________________ (res_plasma_fuel_spitzer_profile342)_ 1.31547419668316632e-09 -Plasma_Spitzer_resistivity_at_point_343__________________________________ (res_plasma_fuel_spitzer_profile343)_ 1.32573082905751424e-09 -Plasma_Spitzer_resistivity_at_point_344__________________________________ (res_plasma_fuel_spitzer_profile344)_ 1.33612224929021496e-09 -Plasma_Spitzer_resistivity_at_point_345__________________________________ (res_plasma_fuel_spitzer_profile345)_ 1.34665056762314237e-09 -Plasma_Spitzer_resistivity_at_point_346__________________________________ (res_plasma_fuel_spitzer_profile346)_ 1.35731792936730310e-09 -Plasma_Spitzer_resistivity_at_point_347__________________________________ (res_plasma_fuel_spitzer_profile347)_ 1.36812651534543930e-09 -Plasma_Spitzer_resistivity_at_point_348__________________________________ (res_plasma_fuel_spitzer_profile348)_ 1.37907854232759470e-09 -Plasma_Spitzer_resistivity_at_point_349__________________________________ (res_plasma_fuel_spitzer_profile349)_ 1.39017626345851611e-09 -Plasma_Spitzer_resistivity_at_point_350__________________________________ (res_plasma_fuel_spitzer_profile350)_ 1.40142196867562386e-09 -Plasma_Spitzer_resistivity_at_point_351__________________________________ (res_plasma_fuel_spitzer_profile351)_ 1.41281798511623243e-09 -Plasma_Spitzer_resistivity_at_point_352__________________________________ (res_plasma_fuel_spitzer_profile352)_ 1.42436667751256451e-09 -Plasma_Spitzer_resistivity_at_point_353__________________________________ (res_plasma_fuel_spitzer_profile353)_ 1.43607044857304181e-09 -Plasma_Spitzer_resistivity_at_point_354__________________________________ (res_plasma_fuel_spitzer_profile354)_ 1.44793173934817659e-09 -Plasma_Spitzer_resistivity_at_point_355__________________________________ (res_plasma_fuel_spitzer_profile355)_ 1.45995302957931224e-09 -Plasma_Spitzer_resistivity_at_point_356__________________________________ (res_plasma_fuel_spitzer_profile356)_ 1.47213683802829820e-09 -Plasma_Spitzer_resistivity_at_point_357__________________________________ (res_plasma_fuel_spitzer_profile357)_ 1.48448572278607011e-09 -Plasma_Spitzer_resistivity_at_point_358__________________________________ (res_plasma_fuel_spitzer_profile358)_ 1.49700228155796503e-09 -Plasma_Spitzer_resistivity_at_point_359__________________________________ (res_plasma_fuel_spitzer_profile359)_ 1.50968915192342563e-09 -Plasma_Spitzer_resistivity_at_point_360__________________________________ (res_plasma_fuel_spitzer_profile360)_ 1.52254901156760509e-09 -Plasma_Spitzer_resistivity_at_point_361__________________________________ (res_plasma_fuel_spitzer_profile361)_ 1.53558457848221758e-09 -Plasma_Spitzer_resistivity_at_point_362__________________________________ (res_plasma_fuel_spitzer_profile362)_ 1.54879861113275362e-09 -Plasma_Spitzer_resistivity_at_point_363__________________________________ (res_plasma_fuel_spitzer_profile363)_ 1.56219390858904143e-09 -Plasma_Spitzer_resistivity_at_point_364__________________________________ (res_plasma_fuel_spitzer_profile364)_ 1.57577331061587328e-09 -Plasma_Spitzer_resistivity_at_point_365__________________________________ (res_plasma_fuel_spitzer_profile365)_ 1.58953969772022776e-09 -Plasma_Spitzer_resistivity_at_point_366__________________________________ (res_plasma_fuel_spitzer_profile366)_ 1.60349599115137505e-09 -Plasma_Spitzer_resistivity_at_point_367__________________________________ (res_plasma_fuel_spitzer_profile367)_ 1.61764515284987916e-09 -Plasma_Spitzer_resistivity_at_point_368__________________________________ (res_plasma_fuel_spitzer_profile368)_ 1.63199018534128331e-09 -Plasma_Spitzer_resistivity_at_point_369__________________________________ (res_plasma_fuel_spitzer_profile369)_ 1.64653413156994589e-09 -Plasma_Spitzer_resistivity_at_point_370__________________________________ (res_plasma_fuel_spitzer_profile370)_ 1.66128007466820038e-09 -Plasma_Spitzer_resistivity_at_point_371__________________________________ (res_plasma_fuel_spitzer_profile371)_ 1.67623113765571454e-09 -Plasma_Spitzer_resistivity_at_point_372__________________________________ (res_plasma_fuel_spitzer_profile372)_ 1.69139048306353904e-09 -Plasma_Spitzer_resistivity_at_point_373__________________________________ (res_plasma_fuel_spitzer_profile373)_ 1.70676131247701701e-09 -Plasma_Spitzer_resistivity_at_point_374__________________________________ (res_plasma_fuel_spitzer_profile374)_ 1.72234686599129981e-09 -Plasma_Spitzer_resistivity_at_point_375__________________________________ (res_plasma_fuel_spitzer_profile375)_ 1.73815042157285793e-09 -Plasma_Spitzer_resistivity_at_point_376__________________________________ (res_plasma_fuel_spitzer_profile376)_ 1.75417529431985350e-09 -Plasma_Spitzer_resistivity_at_point_377__________________________________ (res_plasma_fuel_spitzer_profile377)_ 1.77042483561388496e-09 -Plasma_Spitzer_resistivity_at_point_378__________________________________ (res_plasma_fuel_spitzer_profile378)_ 1.78690243215502260e-09 -Plasma_Spitzer_resistivity_at_point_379__________________________________ (res_plasma_fuel_spitzer_profile379)_ 1.80361150487160453e-09 -Plasma_Spitzer_resistivity_at_point_380__________________________________ (res_plasma_fuel_spitzer_profile380)_ 1.82055550769565868e-09 -Plasma_Spitzer_resistivity_at_point_381__________________________________ (res_plasma_fuel_spitzer_profile381)_ 1.83773792619424766e-09 -Plasma_Spitzer_resistivity_at_point_382__________________________________ (res_plasma_fuel_spitzer_profile382)_ 1.85516227604641174e-09 -Plasma_Spitzer_resistivity_at_point_383__________________________________ (res_plasma_fuel_spitzer_profile383)_ 1.87283210135469507e-09 -Plasma_Spitzer_resistivity_at_point_384__________________________________ (res_plasma_fuel_spitzer_profile384)_ 1.89075097277955174e-09 -Plasma_Spitzer_resistivity_at_point_385__________________________________ (res_plasma_fuel_spitzer_profile385)_ 1.90892248548416811e-09 -Plasma_Spitzer_resistivity_at_point_386__________________________________ (res_plasma_fuel_spitzer_profile386)_ 1.92735025687646249e-09 -Plasma_Spitzer_resistivity_at_point_387__________________________________ (res_plasma_fuel_spitzer_profile387)_ 1.94603792413410423e-09 -Plasma_Spitzer_resistivity_at_point_388__________________________________ (res_plasma_fuel_spitzer_profile388)_ 1.96498914149760486e-09 -Plasma_Spitzer_resistivity_at_point_389__________________________________ (res_plasma_fuel_spitzer_profile389)_ 1.98420757731546482e-09 -Plasma_Spitzer_resistivity_at_point_390__________________________________ (res_plasma_fuel_spitzer_profile390)_ 2.00369691082443531e-09 -Plasma_Spitzer_resistivity_at_point_391__________________________________ (res_plasma_fuel_spitzer_profile391)_ 2.02346082864678849e-09 -Plasma_Spitzer_resistivity_at_point_392__________________________________ (res_plasma_fuel_spitzer_profile392)_ 2.04350302098544470e-09 -Plasma_Spitzer_resistivity_at_point_393__________________________________ (res_plasma_fuel_spitzer_profile393)_ 2.06382717749647599e-09 -Plasma_Spitzer_resistivity_at_point_394__________________________________ (res_plasma_fuel_spitzer_profile394)_ 2.08443698281732059e-09 -Plasma_Spitzer_resistivity_at_point_395__________________________________ (res_plasma_fuel_spitzer_profile395)_ 2.10533611172758194e-09 -Plasma_Spitzer_resistivity_at_point_396__________________________________ (res_plasma_fuel_spitzer_profile396)_ 2.12652822391790047e-09 -Plasma_Spitzer_resistivity_at_point_397__________________________________ (res_plasma_fuel_spitzer_profile397)_ 2.14801695834076202e-09 -Plasma_Spitzer_resistivity_at_point_398__________________________________ (res_plasma_fuel_spitzer_profile398)_ 2.16980592711554783e-09 -Plasma_Spitzer_resistivity_at_point_399__________________________________ (res_plasma_fuel_spitzer_profile399)_ 2.19189870895830301e-09 -Plasma_Spitzer_resistivity_at_point_400__________________________________ (res_plasma_fuel_spitzer_profile400)_ 2.21429884210490903e-09 -Plasma_Spitzer_resistivity_at_point_401__________________________________ (res_plasma_fuel_spitzer_profile401)_ 2.23700981669430786e-09 -Plasma_Spitzer_resistivity_at_point_402__________________________________ (res_plasma_fuel_spitzer_profile402)_ 2.26003506657639968e-09 -Plasma_Spitzer_resistivity_at_point_403__________________________________ (res_plasma_fuel_spitzer_profile403)_ 2.28337796050692527e-09 -Plasma_Spitzer_resistivity_at_point_404__________________________________ (res_plasma_fuel_spitzer_profile404)_ 2.30704179268934847e-09 -Plasma_Spitzer_resistivity_at_point_405__________________________________ (res_plasma_fuel_spitzer_profile405)_ 2.33102977262115418e-09 -Plasma_Spitzer_resistivity_at_point_406__________________________________ (res_plasma_fuel_spitzer_profile406)_ 2.35534501419935034e-09 -Plasma_Spitzer_resistivity_at_point_407__________________________________ (res_plasma_fuel_spitzer_profile407)_ 2.37999052403704506e-09 -Plasma_Spitzer_resistivity_at_point_408__________________________________ (res_plasma_fuel_spitzer_profile408)_ 2.40496918893996859e-09 -Plasma_Spitzer_resistivity_at_point_409__________________________________ (res_plasma_fuel_spitzer_profile409)_ 2.43028376248846762e-09 -Plasma_Spitzer_resistivity_at_point_410__________________________________ (res_plasma_fuel_spitzer_profile410)_ 2.45593685066714756e-09 -Plasma_Spitzer_resistivity_at_point_411__________________________________ (res_plasma_fuel_spitzer_profile411)_ 2.48193089648046541e-09 -Plasma_Spitzer_resistivity_at_point_412__________________________________ (res_plasma_fuel_spitzer_profile412)_ 2.50826816348876466e-09 -Plasma_Spitzer_resistivity_at_point_413__________________________________ (res_plasma_fuel_spitzer_profile413)_ 2.53495071819479259e-09 -Plasma_Spitzer_resistivity_at_point_414__________________________________ (res_plasma_fuel_spitzer_profile414)_ 2.56198041120639851e-09 -Plasma_Spitzer_resistivity_at_point_415__________________________________ (res_plasma_fuel_spitzer_profile415)_ 2.58935885709596504e-09 -Plasma_Spitzer_resistivity_at_point_416__________________________________ (res_plasma_fuel_spitzer_profile416)_ 2.61708741287203307e-09 -Plasma_Spitzer_resistivity_at_point_417__________________________________ (res_plasma_fuel_spitzer_profile417)_ 2.64516715497277389e-09 -Plasma_Spitzer_resistivity_at_point_418__________________________________ (res_plasma_fuel_spitzer_profile418)_ 2.67359885468485610e-09 -Plasma_Spitzer_resistivity_at_point_419__________________________________ (res_plasma_fuel_spitzer_profile419)_ 2.70238295188453999e-09 -Plasma_Spitzer_resistivity_at_point_420__________________________________ (res_plasma_fuel_spitzer_profile420)_ 2.73151952699067544e-09 -Plasma_Spitzer_resistivity_at_point_421__________________________________ (res_plasma_fuel_spitzer_profile421)_ 2.76100827101128549e-09 -Plasma_Spitzer_resistivity_at_point_422__________________________________ (res_plasma_fuel_spitzer_profile422)_ 2.79084845355685725e-09 -Plasma_Spitzer_resistivity_at_point_423__________________________________ (res_plasma_fuel_spitzer_profile423)_ 2.82103888868400841e-09 -Plasma_Spitzer_resistivity_at_point_424__________________________________ (res_plasma_fuel_spitzer_profile424)_ 2.85157789842275801e-09 -Plasma_Spitzer_resistivity_at_point_425__________________________________ (res_plasma_fuel_spitzer_profile425)_ 2.88246327382909503e-09 -Plasma_Spitzer_resistivity_at_point_426__________________________________ (res_plasma_fuel_spitzer_profile426)_ 2.91369223339184697e-09 -Plasma_Spitzer_resistivity_at_point_427__________________________________ (res_plasma_fuel_spitzer_profile427)_ 2.94526137860847104e-09 -Plasma_Spitzer_resistivity_at_point_428__________________________________ (res_plasma_fuel_spitzer_profile428)_ 2.97716664652845504e-09 -Plasma_Spitzer_resistivity_at_point_429__________________________________ (res_plasma_fuel_spitzer_profile429)_ 3.00940325904502455e-09 -Plasma_Spitzer_resistivity_at_point_430__________________________________ (res_plasma_fuel_spitzer_profile430)_ 3.04196566869526769e-09 -Plasma_Spitzer_resistivity_at_point_431__________________________________ (res_plasma_fuel_spitzer_profile431)_ 3.07484750070569303e-09 -Plasma_Spitzer_resistivity_at_point_432__________________________________ (res_plasma_fuel_spitzer_profile432)_ 3.10804149099325798e-09 -Plasma_Spitzer_resistivity_at_point_433__________________________________ (res_plasma_fuel_spitzer_profile433)_ 3.14153941980134822e-09 -Plasma_Spitzer_resistivity_at_point_434__________________________________ (res_plasma_fuel_spitzer_profile434)_ 3.17533204061404845e-09 -Plasma_Spitzer_resistivity_at_point_435__________________________________ (res_plasma_fuel_spitzer_profile435)_ 3.20940900395051418e-09 -Plasma_Spitzer_resistivity_at_point_436__________________________________ (res_plasma_fuel_spitzer_profile436)_ 3.24375877559169801e-09 -Plasma_Spitzer_resistivity_at_point_437__________________________________ (res_plasma_fuel_spitzer_profile437)_ 3.27836854873370154e-09 -Plasma_Spitzer_resistivity_at_point_438__________________________________ (res_plasma_fuel_spitzer_profile438)_ 3.31322414949217722e-09 -Plasma_Spitzer_resistivity_at_point_439__________________________________ (res_plasma_fuel_spitzer_profile439)_ 3.34830993509909687e-09 -Plasma_Spitzer_resistivity_at_point_440__________________________________ (res_plasma_fuel_spitzer_profile440)_ 3.38360868403218576e-09 -Plasma_Spitzer_resistivity_at_point_441__________________________________ (res_plasma_fuel_spitzer_profile441)_ 3.41910147719475870e-09 -Plasma_Spitzer_resistivity_at_point_442__________________________________ (res_plasma_fuel_spitzer_profile442)_ 3.45476756911319102e-09 -Plasma_Spitzer_resistivity_at_point_443__________________________________ (res_plasma_fuel_spitzer_profile443)_ 3.49058424793377424e-09 -Plasma_Spitzer_resistivity_at_point_444__________________________________ (res_plasma_fuel_spitzer_profile444)_ 3.52652668276942253e-09 -Plasma_Spitzer_resistivity_at_point_445__________________________________ (res_plasma_fuel_spitzer_profile445)_ 3.56256775665725477e-09 -Plasma_Spitzer_resistivity_at_point_446__________________________________ (res_plasma_fuel_spitzer_profile446)_ 3.59867788302158644e-09 -Plasma_Spitzer_resistivity_at_point_447__________________________________ (res_plasma_fuel_spitzer_profile447)_ 3.63482480306985290e-09 -Plasma_Spitzer_resistivity_at_point_448__________________________________ (res_plasma_fuel_spitzer_profile448)_ 3.67097336094755841e-09 -Plasma_Spitzer_resistivity_at_point_449__________________________________ (res_plasma_fuel_spitzer_profile449)_ 3.70708525269691982e-09 -Plasma_Spitzer_resistivity_at_point_450__________________________________ (res_plasma_fuel_spitzer_profile450)_ 3.74311874403712691e-09 -Plasma_Spitzer_resistivity_at_point_451__________________________________ (res_plasma_fuel_spitzer_profile451)_ 3.77902835062012264e-09 -Plasma_Spitzer_resistivity_at_point_452__________________________________ (res_plasma_fuel_spitzer_profile452)_ 3.81476447258087095e-09 -Plasma_Spitzer_resistivity_at_point_453__________________________________ (res_plasma_fuel_spitzer_profile453)_ 3.85027297269884258e-09 -Plasma_Spitzer_resistivity_at_point_454__________________________________ (res_plasma_fuel_spitzer_profile454)_ 3.88549468402364778e-09 -Plasma_Spitzer_resistivity_at_point_455__________________________________ (res_plasma_fuel_spitzer_profile455)_ 3.92036482794273782e-09 -Plasma_Spitzer_resistivity_at_point_456__________________________________ (res_plasma_fuel_spitzer_profile456)_ 3.95481231667877628e-09 -Plasma_Spitzer_resistivity_at_point_457__________________________________ (res_plasma_fuel_spitzer_profile457)_ 3.98875890397039606e-09 -Plasma_Spitzer_resistivity_at_point_458__________________________________ (res_plasma_fuel_spitzer_profile458)_ 4.02211813234829411e-09 -Plasma_Spitzer_resistivity_at_point_459__________________________________ (res_plasma_fuel_spitzer_profile459)_ 4.05479400179319961e-09 -Plasma_Spitzer_resistivity_at_point_460__________________________________ (res_plasma_fuel_spitzer_profile460)_ 4.08667924703255569e-09 -Plasma_Spitzer_resistivity_at_point_461__________________________________ (res_plasma_fuel_spitzer_profile461)_ 4.11765304892636701e-09 -Plasma_Spitzer_resistivity_at_point_462__________________________________ (res_plasma_fuel_spitzer_profile462)_ 4.14757789918091874e-09 -Plasma_Spitzer_resistivity_at_point_463__________________________________ (res_plasma_fuel_spitzer_profile463)_ 4.17629514557650056e-09 -Plasma_Spitzer_resistivity_at_point_464__________________________________ (res_plasma_fuel_spitzer_profile464)_ 4.20361837536565468e-09 -Plasma_Spitzer_resistivity_at_point_465__________________________________ (res_plasma_fuel_spitzer_profile465)_ 4.22932302602821462e-09 -Plasma_Spitzer_resistivity_at_point_466__________________________________ (res_plasma_fuel_spitzer_profile466)_ 4.25312884550708146e-09 -Plasma_Spitzer_resistivity_at_point_467__________________________________ (res_plasma_fuel_spitzer_profile467)_ 4.27466716743884254e-09 -Plasma_Spitzer_resistivity_at_point_468__________________________________ (res_plasma_fuel_spitzer_profile468)_ 4.29340999118276997e-09 -Plasma_Spitzer_resistivity_at_point_469__________________________________ (res_plasma_fuel_spitzer_profile469)_ 4.30847051484449297e-09 -Plasma_Spitzer_resistivity_at_point_470__________________________________ (res_plasma_fuel_spitzer_profile470)_ 4.31738094742564491e-09 -Plasma_Spitzer_resistivity_at_point_471__________________________________ (res_plasma_fuel_spitzer_profile471)_ 4.53140107983372526e-09 -Plasma_Spitzer_resistivity_at_point_472__________________________________ (res_plasma_fuel_spitzer_profile472)_ 4.76390455941534265e-09 -Plasma_Spitzer_resistivity_at_point_473__________________________________ (res_plasma_fuel_spitzer_profile473)_ 5.01721921636568231e-09 -Plasma_Spitzer_resistivity_at_point_474__________________________________ (res_plasma_fuel_spitzer_profile474)_ 5.29406529313977785e-09 -Plasma_Spitzer_resistivity_at_point_475__________________________________ (res_plasma_fuel_spitzer_profile475)_ 5.59763965417447120e-09 -Plasma_Spitzer_resistivity_at_point_476__________________________________ (res_plasma_fuel_spitzer_profile476)_ 5.93172226129448431e-09 -Plasma_Spitzer_resistivity_at_point_477__________________________________ (res_plasma_fuel_spitzer_profile477)_ 6.30081200620610463e-09 -Plasma_Spitzer_resistivity_at_point_478__________________________________ (res_plasma_fuel_spitzer_profile478)_ 6.71030166785179631e-09 -Plasma_Spitzer_resistivity_at_point_479__________________________________ (res_plasma_fuel_spitzer_profile479)_ 7.16670562130654738e-09 -Plasma_Spitzer_resistivity_at_point_480__________________________________ (res_plasma_fuel_spitzer_profile480)_ 7.67795957250617380e-09 -Plasma_Spitzer_resistivity_at_point_481__________________________________ (res_plasma_fuel_spitzer_profile481)_ 8.25381999360676689e-09 -Plasma_Spitzer_resistivity_at_point_482__________________________________ (res_plasma_fuel_spitzer_profile482)_ 8.90640365186273226e-09 -Plasma_Spitzer_resistivity_at_point_483__________________________________ (res_plasma_fuel_spitzer_profile483)_ 9.65092725577260299e-09 -Plasma_Spitzer_resistivity_at_point_484__________________________________ (res_plasma_fuel_spitzer_profile484)_ 1.05067381946170116e-08 -Plasma_Spitzer_resistivity_at_point_485__________________________________ (res_plasma_fuel_spitzer_profile485)_ 1.14987773112677015e-08 -Plasma_Spitzer_resistivity_at_point_486__________________________________ (res_plasma_fuel_spitzer_profile486)_ 1.26596974340134948e-08 -Plasma_Spitzer_resistivity_at_point_487__________________________________ (res_plasma_fuel_spitzer_profile487)_ 1.40330026258635619e-08 -Plasma_Spitzer_resistivity_at_point_488__________________________________ (res_plasma_fuel_spitzer_profile488)_ 1.56778221033354050e-08 -Plasma_Spitzer_resistivity_at_point_489__________________________________ (res_plasma_fuel_spitzer_profile489)_ 1.76763884365125764e-08 -Plasma_Spitzer_resistivity_at_point_490__________________________________ (res_plasma_fuel_spitzer_profile490)_ 2.01461599052720458e-08 -Plasma_Spitzer_resistivity_at_point_491__________________________________ (res_plasma_fuel_spitzer_profile491)_ 2.32602733135419034e-08 -Plasma_Spitzer_resistivity_at_point_492__________________________________ (res_plasma_fuel_spitzer_profile492)_ 2.72837277170376530e-08 -Plasma_Spitzer_resistivity_at_point_493__________________________________ (res_plasma_fuel_spitzer_profile493)_ 3.26411641656423422e-08 -Plasma_Spitzer_resistivity_at_point_494__________________________________ (res_plasma_fuel_spitzer_profile494)_ 4.00530889485886073e-08 -Plasma_Spitzer_resistivity_at_point_495__________________________________ (res_plasma_fuel_spitzer_profile495)_ 5.08351391607781357e-08 -Plasma_Spitzer_resistivity_at_point_496__________________________________ (res_plasma_fuel_spitzer_profile496)_ 6.76368805218081358e-08 -Plasma_Spitzer_resistivity_at_point_497__________________________________ (res_plasma_fuel_spitzer_profile497)_ 9.65838455382331434e-08 -Plasma_Spitzer_resistivity_at_point_498__________________________________ (res_plasma_fuel_spitzer_profile498)_ 1.55168798830220600e-07 -Plasma_Spitzer_resistivity_at_point_499__________________________________ (res_plasma_fuel_spitzer_profile499)_ 3.16067363227589720e-07 -Plasma_Spitzer_resistivity_at_point_500__________________________________ (res_plasma_fuel_spitzer_profile500)_ 1.37589481332575697e-06 +Volume_averaged_electron_plasma_frequency_(ωₚₑ)_(Hz)_____________________ (freq_plasma_electron_vol_avg)_ 8.02030789211536865e+10 +Plasma_electron_frequency_at_point_0_____________________________________ (freq_plasma_electron_profile0)_ 9.19834211825929260e+10 +Plasma_electron_frequency_at_point_1_____________________________________ (freq_plasma_electron_profile1)_ 9.19833371488659363e+10 +Plasma_electron_frequency_at_point_2_____________________________________ (freq_plasma_electron_profile2)_ 9.19830850472244415e+10 +Plasma_electron_frequency_at_point_3_____________________________________ (freq_plasma_electron_profile3)_ 9.19826648762864838e+10 +Plasma_electron_frequency_at_point_4_____________________________________ (freq_plasma_electron_profile4)_ 9.19820766337488708e+10 +Plasma_electron_frequency_at_point_5_____________________________________ (freq_plasma_electron_profile5)_ 9.19813203163870239e+10 +Plasma_electron_frequency_at_point_6_____________________________________ (freq_plasma_electron_profile6)_ 9.19803959200549316e+10 +Plasma_electron_frequency_at_point_7_____________________________________ (freq_plasma_electron_profile7)_ 9.19793034396849518e+10 +Plasma_electron_frequency_at_point_8_____________________________________ (freq_plasma_electron_profile8)_ 9.19780428692878265e+10 +Plasma_electron_frequency_at_point_9_____________________________________ (freq_plasma_electron_profile9)_ 9.19766142019523163e+10 +Plasma_electron_frequency_at_point_10____________________________________ (freq_plasma_electron_profile10)_ 9.19750174298451691e+10 +Plasma_electron_frequency_at_point_11____________________________________ (freq_plasma_electron_profile11)_ 9.19732525442108612e+10 +Plasma_electron_frequency_at_point_12____________________________________ (freq_plasma_electron_profile12)_ 9.19713195353713379e+10 +Plasma_electron_frequency_at_point_13____________________________________ (freq_plasma_electron_profile13)_ 9.19692183927257690e+10 +Plasma_electron_frequency_at_point_14____________________________________ (freq_plasma_electron_profile14)_ 9.19669491047502289e+10 +Plasma_electron_frequency_at_point_15____________________________________ (freq_plasma_electron_profile15)_ 9.19645116589974060e+10 +Plasma_electron_frequency_at_point_16____________________________________ (freq_plasma_electron_profile16)_ 9.19619060420962830e+10 +Plasma_electron_frequency_at_point_17____________________________________ (freq_plasma_electron_profile17)_ 9.19591322397516785e+10 +Plasma_electron_frequency_at_point_18____________________________________ (freq_plasma_electron_profile18)_ 9.19561902367440033e+10 +Plasma_electron_frequency_at_point_19____________________________________ (freq_plasma_electron_profile19)_ 9.19530800169286652e+10 +Plasma_electron_frequency_at_point_20____________________________________ (freq_plasma_electron_profile20)_ 9.19498015632358093e+10 +Plasma_electron_frequency_at_point_21____________________________________ (freq_plasma_electron_profile21)_ 9.19463548576696777e+10 +Plasma_electron_frequency_at_point_22____________________________________ (freq_plasma_electron_profile22)_ 9.19427398813082733e+10 +Plasma_electron_frequency_at_point_23____________________________________ (freq_plasma_electron_profile23)_ 9.19389566143026886e+10 +Plasma_electron_frequency_at_point_24____________________________________ (freq_plasma_electron_profile24)_ 9.19350050358766785e+10 +Plasma_electron_frequency_at_point_25____________________________________ (freq_plasma_electron_profile25)_ 9.19308851243260345e+10 +Plasma_electron_frequency_at_point_26____________________________________ (freq_plasma_electron_profile26)_ 9.19265968570179749e+10 +Plasma_electron_frequency_at_point_27____________________________________ (freq_plasma_electron_profile27)_ 9.19221402103906097e+10 +Plasma_electron_frequency_at_point_28____________________________________ (freq_plasma_electron_profile28)_ 9.19175151599521484e+10 +Plasma_electron_frequency_at_point_29____________________________________ (freq_plasma_electron_profile29)_ 9.19127216802803192e+10 +Plasma_electron_frequency_at_point_30____________________________________ (freq_plasma_electron_profile30)_ 9.19077597450217438e+10 +Plasma_electron_frequency_at_point_31____________________________________ (freq_plasma_electron_profile31)_ 9.19026293268909912e+10 +Plasma_electron_frequency_at_point_32____________________________________ (freq_plasma_electron_profile32)_ 9.18973303976700439e+10 +Plasma_electron_frequency_at_point_33____________________________________ (freq_plasma_electron_profile33)_ 9.18918629282073822e+10 +Plasma_electron_frequency_at_point_34____________________________________ (freq_plasma_electron_profile34)_ 9.18862268884172974e+10 +Plasma_electron_frequency_at_point_35____________________________________ (freq_plasma_electron_profile35)_ 9.18804222472789307e+10 +Plasma_electron_frequency_at_point_36____________________________________ (freq_plasma_electron_profile36)_ 9.18744489728355103e+10 +Plasma_electron_frequency_at_point_37____________________________________ (freq_plasma_electron_profile37)_ 9.18683070321934509e+10 +Plasma_electron_frequency_at_point_38____________________________________ (freq_plasma_electron_profile38)_ 9.18619963915214233e+10 +Plasma_electron_frequency_at_point_39____________________________________ (freq_plasma_electron_profile39)_ 9.18555170160494232e+10 +Plasma_electron_frequency_at_point_40____________________________________ (freq_plasma_electron_profile40)_ 9.18488688700678406e+10 +Plasma_electron_frequency_at_point_41____________________________________ (freq_plasma_electron_profile41)_ 9.18420519169264221e+10 +Plasma_electron_frequency_at_point_42____________________________________ (freq_plasma_electron_profile42)_ 9.18350661190333099e+10 +Plasma_electron_frequency_at_point_43____________________________________ (freq_plasma_electron_profile43)_ 9.18279114378539886e+10 +Plasma_electron_frequency_at_point_44____________________________________ (freq_plasma_electron_profile44)_ 9.18205878339101562e+10 +Plasma_electron_frequency_at_point_45____________________________________ (freq_plasma_electron_profile45)_ 9.18130952667787170e+10 +Plasma_electron_frequency_at_point_46____________________________________ (freq_plasma_electron_profile46)_ 9.18054336950906372e+10 +Plasma_electron_frequency_at_point_47____________________________________ (freq_plasma_electron_profile47)_ 9.17976030765297089e+10 +Plasma_electron_frequency_at_point_48____________________________________ (freq_plasma_electron_profile48)_ 9.17896033678315582e+10 +Plasma_electron_frequency_at_point_49____________________________________ (freq_plasma_electron_profile49)_ 9.17814345247822723e+10 +Plasma_electron_frequency_at_point_50____________________________________ (freq_plasma_electron_profile50)_ 9.17730965022172089e+10 +Plasma_electron_frequency_at_point_51____________________________________ (freq_plasma_electron_profile51)_ 9.17645892540198364e+10 +Plasma_electron_frequency_at_point_52____________________________________ (freq_plasma_electron_profile52)_ 9.17559127331203308e+10 +Plasma_electron_frequency_at_point_53____________________________________ (freq_plasma_electron_profile53)_ 9.17470668914943237e+10 +Plasma_electron_frequency_at_point_54____________________________________ (freq_plasma_electron_profile54)_ 9.17380516801615906e+10 +Plasma_electron_frequency_at_point_55____________________________________ (freq_plasma_electron_profile55)_ 9.17288670491845856e+10 +Plasma_electron_frequency_at_point_56____________________________________ (freq_plasma_electron_profile56)_ 9.17195129476671753e+10 +Plasma_electron_frequency_at_point_57____________________________________ (freq_plasma_electron_profile57)_ 9.17099893237531128e+10 +Plasma_electron_frequency_at_point_58____________________________________ (freq_plasma_electron_profile58)_ 9.17002961246246796e+10 +Plasma_electron_frequency_at_point_59____________________________________ (freq_plasma_electron_profile59)_ 9.16904332965011139e+10 +Plasma_electron_frequency_at_point_60____________________________________ (freq_plasma_electron_profile60)_ 9.16804007846372223e+10 +Plasma_electron_frequency_at_point_61____________________________________ (freq_plasma_electron_profile61)_ 9.16701985333217010e+10 +Plasma_electron_frequency_at_point_62____________________________________ (freq_plasma_electron_profile62)_ 9.16598264858757324e+10 +Plasma_electron_frequency_at_point_63____________________________________ (freq_plasma_electron_profile63)_ 9.16492845846512604e+10 +Plasma_electron_frequency_at_point_64____________________________________ (freq_plasma_electron_profile64)_ 9.16385727710294800e+10 +Plasma_electron_frequency_at_point_65____________________________________ (freq_plasma_electron_profile65)_ 9.16276909854191132e+10 +Plasma_electron_frequency_at_point_66____________________________________ (freq_plasma_electron_profile66)_ 9.16166391672548218e+10 +Plasma_electron_frequency_at_point_67____________________________________ (freq_plasma_electron_profile67)_ 9.16054172549953613e+10 +Plasma_electron_frequency_at_point_68____________________________________ (freq_plasma_electron_profile68)_ 9.15940251861220245e+10 +Plasma_electron_frequency_at_point_69____________________________________ (freq_plasma_electron_profile69)_ 9.15824628971367493e+10 +Plasma_electron_frequency_at_point_70____________________________________ (freq_plasma_electron_profile70)_ 9.15707303235603943e+10 +Plasma_electron_frequency_at_point_71____________________________________ (freq_plasma_electron_profile71)_ 9.15588273999309082e+10 +Plasma_electron_frequency_at_point_72____________________________________ (freq_plasma_electron_profile72)_ 9.15467540598014679e+10 +Plasma_electron_frequency_at_point_73____________________________________ (freq_plasma_electron_profile73)_ 9.15345102357386017e+10 +Plasma_electron_frequency_at_point_74____________________________________ (freq_plasma_electron_profile74)_ 9.15220958593202820e+10 +Plasma_electron_frequency_at_point_75____________________________________ (freq_plasma_electron_profile75)_ 9.15095108611340637e+10 +Plasma_electron_frequency_at_point_76____________________________________ (freq_plasma_electron_profile76)_ 9.14967551707749481e+10 +Plasma_electron_frequency_at_point_77____________________________________ (freq_plasma_electron_profile77)_ 9.14838287168435669e+10 +Plasma_electron_frequency_at_point_78____________________________________ (freq_plasma_electron_profile78)_ 9.14707314269440613e+10 +Plasma_electron_frequency_at_point_79____________________________________ (freq_plasma_electron_profile79)_ 9.14574632276820374e+10 +Plasma_electron_frequency_at_point_80____________________________________ (freq_plasma_electron_profile80)_ 9.14440240446625366e+10 +Plasma_electron_frequency_at_point_81____________________________________ (freq_plasma_electron_profile81)_ 9.14304138024877472e+10 +Plasma_electron_frequency_at_point_82____________________________________ (freq_plasma_electron_profile82)_ 9.14166324247551117e+10 +Plasma_electron_frequency_at_point_83____________________________________ (freq_plasma_electron_profile83)_ 9.14026798340549164e+10 +Plasma_electron_frequency_at_point_84____________________________________ (freq_plasma_electron_profile84)_ 9.13885559519682770e+10 +Plasma_electron_frequency_at_point_85____________________________________ (freq_plasma_electron_profile85)_ 9.13742606990647278e+10 +Plasma_electron_frequency_at_point_86____________________________________ (freq_plasma_electron_profile86)_ 9.13597939949000397e+10 +Plasma_electron_frequency_at_point_87____________________________________ (freq_plasma_electron_profile87)_ 9.13451557580139008e+10 +Plasma_electron_frequency_at_point_88____________________________________ (freq_plasma_electron_profile88)_ 9.13303459059276276e+10 +Plasma_electron_frequency_at_point_89____________________________________ (freq_plasma_electron_profile89)_ 9.13153643551416931e+10 +Plasma_electron_frequency_at_point_90____________________________________ (freq_plasma_electron_profile90)_ 9.13002110211334229e+10 +Plasma_electron_frequency_at_point_91____________________________________ (freq_plasma_electron_profile91)_ 9.12848858183545380e+10 +Plasma_electron_frequency_at_point_92____________________________________ (freq_plasma_electron_profile92)_ 9.12693886602286530e+10 +Plasma_electron_frequency_at_point_93____________________________________ (freq_plasma_electron_profile93)_ 9.12537194591488953e+10 +Plasma_electron_frequency_at_point_94____________________________________ (freq_plasma_electron_profile94)_ 9.12378781264752197e+10 +Plasma_electron_frequency_at_point_95____________________________________ (freq_plasma_electron_profile95)_ 9.12218645725319366e+10 +Plasma_electron_frequency_at_point_96____________________________________ (freq_plasma_electron_profile96)_ 9.12056787066051788e+10 +Plasma_electron_frequency_at_point_97____________________________________ (freq_plasma_electron_profile97)_ 9.11893204369401398e+10 +Plasma_electron_frequency_at_point_98____________________________________ (freq_plasma_electron_profile98)_ 9.11727896707385406e+10 +Plasma_electron_frequency_at_point_99____________________________________ (freq_plasma_electron_profile99)_ 9.11560863141558075e+10 +Plasma_electron_frequency_at_point_100___________________________________ (freq_plasma_electron_profile100)_ 9.11392102722985229e+10 +Plasma_electron_frequency_at_point_101___________________________________ (freq_plasma_electron_profile101)_ 9.11221614492214661e+10 +Plasma_electron_frequency_at_point_102___________________________________ (freq_plasma_electron_profile102)_ 9.11049397479249878e+10 +Plasma_electron_frequency_at_point_103___________________________________ (freq_plasma_electron_profile103)_ 9.10875450703521118e+10 +Plasma_electron_frequency_at_point_104___________________________________ (freq_plasma_electron_profile104)_ 9.10699773173856049e+10 +Plasma_electron_frequency_at_point_105___________________________________ (freq_plasma_electron_profile105)_ 9.10522363888452301e+10 +Plasma_electron_frequency_at_point_106___________________________________ (freq_plasma_electron_profile106)_ 9.10343221834846954e+10 +Plasma_electron_frequency_at_point_107___________________________________ (freq_plasma_electron_profile107)_ 9.10162345989887695e+10 +Plasma_electron_frequency_at_point_108___________________________________ (freq_plasma_electron_profile108)_ 9.09979735319701843e+10 +Plasma_electron_frequency_at_point_109___________________________________ (freq_plasma_electron_profile109)_ 9.09795388779666748e+10 +Plasma_electron_frequency_at_point_110___________________________________ (freq_plasma_electron_profile110)_ 9.09609305314379272e+10 +Plasma_electron_frequency_at_point_111___________________________________ (freq_plasma_electron_profile111)_ 9.09421483857623901e+10 +Plasma_electron_frequency_at_point_112___________________________________ (freq_plasma_electron_profile112)_ 9.09231923332341614e+10 +Plasma_electron_frequency_at_point_113___________________________________ (freq_plasma_electron_profile113)_ 9.09040622650598755e+10 +Plasma_electron_frequency_at_point_114___________________________________ (freq_plasma_electron_profile114)_ 9.08847580713553467e+10 +Plasma_electron_frequency_at_point_115___________________________________ (freq_plasma_electron_profile115)_ 9.08652796411424713e+10 +Plasma_electron_frequency_at_point_116___________________________________ (freq_plasma_electron_profile116)_ 9.08456268623458557e+10 +Plasma_electron_frequency_at_point_117___________________________________ (freq_plasma_electron_profile117)_ 9.08257996217894287e+10 +Plasma_electron_frequency_at_point_118___________________________________ (freq_plasma_electron_profile118)_ 9.08057978051932526e+10 +Plasma_electron_frequency_at_point_119___________________________________ (freq_plasma_electron_profile119)_ 9.07856212971699219e+10 +Plasma_electron_frequency_at_point_120___________________________________ (freq_plasma_electron_profile120)_ 9.07652699812212830e+10 +Plasma_electron_frequency_at_point_121___________________________________ (freq_plasma_electron_profile121)_ 9.07447437397348175e+10 +Plasma_electron_frequency_at_point_122___________________________________ (freq_plasma_electron_profile122)_ 9.07240424539803009e+10 +Plasma_electron_frequency_at_point_123___________________________________ (freq_plasma_electron_profile123)_ 9.07031660041060181e+10 +Plasma_electron_frequency_at_point_124___________________________________ (freq_plasma_electron_profile124)_ 9.06821142691354218e+10 +Plasma_electron_frequency_at_point_125___________________________________ (freq_plasma_electron_profile125)_ 9.06608871269632568e+10 +Plasma_electron_frequency_at_point_126___________________________________ (freq_plasma_electron_profile126)_ 9.06394844543520966e+10 +Plasma_electron_frequency_at_point_127___________________________________ (freq_plasma_electron_profile127)_ 9.06179061269284210e+10 +Plasma_electron_frequency_at_point_128___________________________________ (freq_plasma_electron_profile128)_ 9.05961520191791382e+10 +Plasma_electron_frequency_at_point_129___________________________________ (freq_plasma_electron_profile129)_ 9.05742220044474640e+10 +Plasma_electron_frequency_at_point_130___________________________________ (freq_plasma_electron_profile130)_ 9.05521159549293976e+10 +Plasma_electron_frequency_at_point_131___________________________________ (freq_plasma_electron_profile131)_ 9.05298337416696320e+10 +Plasma_electron_frequency_at_point_132___________________________________ (freq_plasma_electron_profile132)_ 9.05073752345576782e+10 +Plasma_electron_frequency_at_point_133___________________________________ (freq_plasma_electron_profile133)_ 9.04847403023240814e+10 +Plasma_electron_frequency_at_point_134___________________________________ (freq_plasma_electron_profile134)_ 9.04619288125361328e+10 +Plasma_electron_frequency_at_point_135___________________________________ (freq_plasma_electron_profile135)_ 9.04389406315941010e+10 +Plasma_electron_frequency_at_point_136___________________________________ (freq_plasma_electron_profile136)_ 9.04157756247269592e+10 +Plasma_electron_frequency_at_point_137___________________________________ (freq_plasma_electron_profile137)_ 9.03924336559883728e+10 +Plasma_electron_frequency_at_point_138___________________________________ (freq_plasma_electron_profile138)_ 9.03689145882524567e+10 +Plasma_electron_frequency_at_point_139___________________________________ (freq_plasma_electron_profile139)_ 9.03452182832096405e+10 +Plasma_electron_frequency_at_point_140___________________________________ (freq_plasma_electron_profile140)_ 9.03213446013623505e+10 +Plasma_electron_frequency_at_point_141___________________________________ (freq_plasma_electron_profile141)_ 9.02972934020207520e+10 +Plasma_electron_frequency_at_point_142___________________________________ (freq_plasma_electron_profile142)_ 9.02730645432983551e+10 +Plasma_electron_frequency_at_point_143___________________________________ (freq_plasma_electron_profile143)_ 9.02486578821077423e+10 +Plasma_electron_frequency_at_point_144___________________________________ (freq_plasma_electron_profile144)_ 9.02240732741559448e+10 +Plasma_electron_frequency_at_point_145___________________________________ (freq_plasma_electron_profile145)_ 9.01993105739401550e+10 +Plasma_electron_frequency_at_point_146___________________________________ (freq_plasma_electron_profile146)_ 9.01743696347431488e+10 +Plasma_electron_frequency_at_point_147___________________________________ (freq_plasma_electron_profile147)_ 9.01492503086286621e+10 +Plasma_electron_frequency_at_point_148___________________________________ (freq_plasma_electron_profile148)_ 9.01239524464367981e+10 +Plasma_electron_frequency_at_point_149___________________________________ (freq_plasma_electron_profile149)_ 9.00984758977794342e+10 +Plasma_electron_frequency_at_point_150___________________________________ (freq_plasma_electron_profile150)_ 9.00728205110353851e+10 +Plasma_electron_frequency_at_point_151___________________________________ (freq_plasma_electron_profile151)_ 9.00469861333458405e+10 +Plasma_electron_frequency_at_point_152___________________________________ (freq_plasma_electron_profile152)_ 9.00209726106093445e+10 +Plasma_electron_frequency_at_point_153___________________________________ (freq_plasma_electron_profile153)_ 8.99947797874771118e+10 +Plasma_electron_frequency_at_point_154___________________________________ (freq_plasma_electron_profile154)_ 8.99684075073480377e+10 +Plasma_electron_frequency_at_point_155___________________________________ (freq_plasma_electron_profile155)_ 8.99418556123638153e+10 +Plasma_electron_frequency_at_point_156___________________________________ (freq_plasma_electron_profile156)_ 8.99151239434039001e+10 +Plasma_electron_frequency_at_point_157___________________________________ (freq_plasma_electron_profile157)_ 8.98882123400804291e+10 +Plasma_electron_frequency_at_point_158___________________________________ (freq_plasma_electron_profile158)_ 8.98611206407332458e+10 +Plasma_electron_frequency_at_point_159___________________________________ (freq_plasma_electron_profile159)_ 8.98338486824245911e+10 +Plasma_electron_frequency_at_point_160___________________________________ (freq_plasma_electron_profile160)_ 8.98063963009340820e+10 +Plasma_electron_frequency_at_point_161___________________________________ (freq_plasma_electron_profile161)_ 8.97787633307532959e+10 +Plasma_electron_frequency_at_point_162___________________________________ (freq_plasma_electron_profile162)_ 8.97509496050806122e+10 +Plasma_electron_frequency_at_point_163___________________________________ (freq_plasma_electron_profile163)_ 8.97229549558157959e+10 +Plasma_electron_frequency_at_point_164___________________________________ (freq_plasma_electron_profile164)_ 8.96947792135545654e+10 +Plasma_electron_frequency_at_point_165___________________________________ (freq_plasma_electron_profile165)_ 8.96664222075831909e+10 +Plasma_electron_frequency_at_point_166___________________________________ (freq_plasma_electron_profile166)_ 8.96378837658730164e+10 +Plasma_electron_frequency_at_point_167___________________________________ (freq_plasma_electron_profile167)_ 8.96091637150747681e+10 +Plasma_electron_frequency_at_point_168___________________________________ (freq_plasma_electron_profile168)_ 8.95802618805130768e+10 +Plasma_electron_frequency_at_point_169___________________________________ (freq_plasma_electron_profile169)_ 8.95511780861807556e+10 +Plasma_electron_frequency_at_point_170___________________________________ (freq_plasma_electron_profile170)_ 8.95219121547330170e+10 +Plasma_electron_frequency_at_point_171___________________________________ (freq_plasma_electron_profile171)_ 8.94924639074817810e+10 +Plasma_electron_frequency_at_point_172___________________________________ (freq_plasma_electron_profile172)_ 8.94628331643898010e+10 +Plasma_electron_frequency_at_point_173___________________________________ (freq_plasma_electron_profile173)_ 8.94330197440647736e+10 +Plasma_electron_frequency_at_point_174___________________________________ (freq_plasma_electron_profile174)_ 8.94030234637533875e+10 +Plasma_electron_frequency_at_point_175___________________________________ (freq_plasma_electron_profile175)_ 8.93728441393352814e+10 +Plasma_electron_frequency_at_point_176___________________________________ (freq_plasma_electron_profile176)_ 8.93424815853170471e+10 +Plasma_electron_frequency_at_point_177___________________________________ (freq_plasma_electron_profile177)_ 8.93119356148260651e+10 +Plasma_electron_frequency_at_point_178___________________________________ (freq_plasma_electron_profile178)_ 8.92812060396042938e+10 +Plasma_electron_frequency_at_point_179___________________________________ (freq_plasma_electron_profile179)_ 8.92502926700021362e+10 +Plasma_electron_frequency_at_point_180___________________________________ (freq_plasma_electron_profile180)_ 8.92191953149720001e+10 +Plasma_electron_frequency_at_point_181___________________________________ (freq_plasma_electron_profile181)_ 8.91879137820619965e+10 +Plasma_electron_frequency_at_point_182___________________________________ (freq_plasma_electron_profile182)_ 8.91564478774095612e+10 +Plasma_electron_frequency_at_point_183___________________________________ (freq_plasma_electron_profile183)_ 8.91247974057349091e+10 +Plasma_electron_frequency_at_point_184___________________________________ (freq_plasma_electron_profile184)_ 8.90929621703345184e+10 +Plasma_electron_frequency_at_point_185___________________________________ (freq_plasma_electron_profile185)_ 8.90609419730744934e+10 +Plasma_electron_frequency_at_point_186___________________________________ (freq_plasma_electron_profile186)_ 8.90287366143839569e+10 +Plasma_electron_frequency_at_point_187___________________________________ (freq_plasma_electron_profile187)_ 8.89963458932482147e+10 +Plasma_electron_frequency_at_point_188___________________________________ (freq_plasma_electron_profile188)_ 8.89637696072020416e+10 +Plasma_electron_frequency_at_point_189___________________________________ (freq_plasma_electron_profile189)_ 8.89310075523228149e+10 +Plasma_electron_frequency_at_point_190___________________________________ (freq_plasma_electron_profile190)_ 8.88980595232234955e+10 +Plasma_electron_frequency_at_point_191___________________________________ (freq_plasma_electron_profile191)_ 8.88649253130457458e+10 +Plasma_electron_frequency_at_point_192___________________________________ (freq_plasma_electron_profile192)_ 8.88316047134527893e+10 +Plasma_electron_frequency_at_point_193___________________________________ (freq_plasma_electron_profile193)_ 8.87980975146223602e+10 +Plasma_electron_frequency_at_point_194___________________________________ (freq_plasma_electron_profile194)_ 8.87644035052393951e+10 +Plasma_electron_frequency_at_point_195___________________________________ (freq_plasma_electron_profile195)_ 8.87305224724888458e+10 +Plasma_electron_frequency_at_point_196___________________________________ (freq_plasma_electron_profile196)_ 8.86964542020483704e+10 +Plasma_electron_frequency_at_point_197___________________________________ (freq_plasma_electron_profile197)_ 8.86621984780808411e+10 +Plasma_electron_frequency_at_point_198___________________________________ (freq_plasma_electron_profile198)_ 8.86277550832269287e+10 +Plasma_electron_frequency_at_point_199___________________________________ (freq_plasma_electron_profile199)_ 8.85931237985975647e+10 +Plasma_electron_frequency_at_point_200___________________________________ (freq_plasma_electron_profile200)_ 8.85583044037662811e+10 +Plasma_electron_frequency_at_point_201___________________________________ (freq_plasma_electron_profile201)_ 8.85232966767615967e+10 +Plasma_electron_frequency_at_point_202___________________________________ (freq_plasma_electron_profile202)_ 8.84881003940591431e+10 +Plasma_electron_frequency_at_point_203___________________________________ (freq_plasma_electron_profile203)_ 8.84527153305739288e+10 +Plasma_electron_frequency_at_point_204___________________________________ (freq_plasma_electron_profile204)_ 8.84171412596524200e+10 +Plasma_electron_frequency_at_point_205___________________________________ (freq_plasma_electron_profile205)_ 8.83813779530644836e+10 +Plasma_electron_frequency_at_point_206___________________________________ (freq_plasma_electron_profile206)_ 8.83454251809954071e+10 +Plasma_electron_frequency_at_point_207___________________________________ (freq_plasma_electron_profile207)_ 8.83092827120377045e+10 +Plasma_electron_frequency_at_point_208___________________________________ (freq_plasma_electron_profile208)_ 8.82729503131829529e+10 +Plasma_electron_frequency_at_point_209___________________________________ (freq_plasma_electron_profile209)_ 8.82364277498134460e+10 +Plasma_electron_frequency_at_point_210___________________________________ (freq_plasma_electron_profile210)_ 8.81997147856939392e+10 +Plasma_electron_frequency_at_point_211___________________________________ (freq_plasma_electron_profile211)_ 8.81628111829629822e+10 +Plasma_electron_frequency_at_point_212___________________________________ (freq_plasma_electron_profile212)_ 8.81257167021246338e+10 +Plasma_electron_frequency_at_point_213___________________________________ (freq_plasma_electron_profile213)_ 8.80884311020397186e+10 +Plasma_electron_frequency_at_point_214___________________________________ (freq_plasma_electron_profile214)_ 8.80509541399171143e+10 +Plasma_electron_frequency_at_point_215___________________________________ (freq_plasma_electron_profile215)_ 8.80132855713050690e+10 +Plasma_electron_frequency_at_point_216___________________________________ (freq_plasma_electron_profile216)_ 8.79754251500822754e+10 +Plasma_electron_frequency_at_point_217___________________________________ (freq_plasma_electron_profile217)_ 8.79373726284489288e+10 +Plasma_electron_frequency_at_point_218___________________________________ (freq_plasma_electron_profile218)_ 8.78991277569177704e+10 +Plasma_electron_frequency_at_point_219___________________________________ (freq_plasma_electron_profile219)_ 8.78606902843049011e+10 +Plasma_electron_frequency_at_point_220___________________________________ (freq_plasma_electron_profile220)_ 8.78220599577205353e+10 +Plasma_electron_frequency_at_point_221___________________________________ (freq_plasma_electron_profile221)_ 8.77832365225599060e+10 +Plasma_electron_frequency_at_point_222___________________________________ (freq_plasma_electron_profile222)_ 8.77442197224936829e+10 +Plasma_electron_frequency_at_point_223___________________________________ (freq_plasma_electron_profile223)_ 8.77050092994586334e+10 +Plasma_electron_frequency_at_point_224___________________________________ (freq_plasma_electron_profile224)_ 8.76656049936480103e+10 +Plasma_electron_frequency_at_point_225___________________________________ (freq_plasma_electron_profile225)_ 8.76260065435019073e+10 +Plasma_electron_frequency_at_point_226___________________________________ (freq_plasma_electron_profile226)_ 8.75862136856975861e+10 +Plasma_electron_frequency_at_point_227___________________________________ (freq_plasma_electron_profile227)_ 8.75462261551395569e+10 +Plasma_electron_frequency_at_point_228___________________________________ (freq_plasma_electron_profile228)_ 8.75060436849496765e+10 +Plasma_electron_frequency_at_point_229___________________________________ (freq_plasma_electron_profile229)_ 8.74656660064571991e+10 +Plasma_electron_frequency_at_point_230___________________________________ (freq_plasma_electron_profile230)_ 8.74250928491885681e+10 +Plasma_electron_frequency_at_point_231___________________________________ (freq_plasma_electron_profile231)_ 8.73843239408572998e+10 +Plasma_electron_frequency_at_point_232___________________________________ (freq_plasma_electron_profile232)_ 8.73433590073535614e+10 +Plasma_electron_frequency_at_point_233___________________________________ (freq_plasma_electron_profile233)_ 8.73021977727338409e+10 +Plasma_electron_frequency_at_point_234___________________________________ (freq_plasma_electron_profile234)_ 8.72608399592104492e+10 +Plasma_electron_frequency_at_point_235___________________________________ (freq_plasma_electron_profile235)_ 8.72192852871408539e+10 +Plasma_electron_frequency_at_point_236___________________________________ (freq_plasma_electron_profile236)_ 8.71775334750170135e+10 +Plasma_electron_frequency_at_point_237___________________________________ (freq_plasma_electron_profile237)_ 8.71355842394545441e+10 +Plasma_electron_frequency_at_point_238___________________________________ (freq_plasma_electron_profile238)_ 8.70934372951818085e+10 +Plasma_electron_frequency_at_point_239___________________________________ (freq_plasma_electron_profile239)_ 8.70510923550289307e+10 +Plasma_electron_frequency_at_point_240___________________________________ (freq_plasma_electron_profile240)_ 8.70085491299165802e+10 +Plasma_electron_frequency_at_point_241___________________________________ (freq_plasma_electron_profile241)_ 8.69658073288448029e+10 +Plasma_electron_frequency_at_point_242___________________________________ (freq_plasma_electron_profile242)_ 8.69228666588816986e+10 +Plasma_electron_frequency_at_point_243___________________________________ (freq_plasma_electron_profile243)_ 8.68797268251519012e+10 +Plasma_electron_frequency_at_point_244___________________________________ (freq_plasma_electron_profile244)_ 8.68363875308250732e+10 +Plasma_electron_frequency_at_point_245___________________________________ (freq_plasma_electron_profile245)_ 8.67928484771041718e+10 +Plasma_electron_frequency_at_point_246___________________________________ (freq_plasma_electron_profile246)_ 8.67491093632137604e+10 +Plasma_electron_frequency_at_point_247___________________________________ (freq_plasma_electron_profile247)_ 8.67051698863879547e+10 +Plasma_electron_frequency_at_point_248___________________________________ (freq_plasma_electron_profile248)_ 8.66610297418585510e+10 +Plasma_electron_frequency_at_point_249___________________________________ (freq_plasma_electron_profile249)_ 8.66166886228428192e+10 +Plasma_electron_frequency_at_point_250___________________________________ (freq_plasma_electron_profile250)_ 8.65721462205312805e+10 +Plasma_electron_frequency_at_point_251___________________________________ (freq_plasma_electron_profile251)_ 8.65274022240752563e+10 +Plasma_electron_frequency_at_point_252___________________________________ (freq_plasma_electron_profile252)_ 8.64824563205745544e+10 +Plasma_electron_frequency_at_point_253___________________________________ (freq_plasma_electron_profile253)_ 8.64373081950646210e+10 +Plasma_electron_frequency_at_point_254___________________________________ (freq_plasma_electron_profile254)_ 8.63919575305039978e+10 +Plasma_electron_frequency_at_point_255___________________________________ (freq_plasma_electron_profile255)_ 8.63464040077613525e+10 +Plasma_electron_frequency_at_point_256___________________________________ (freq_plasma_electron_profile256)_ 8.63006473056025848e+10 +Plasma_electron_frequency_at_point_257___________________________________ (freq_plasma_electron_profile257)_ 8.62546871006775665e+10 +Plasma_electron_frequency_at_point_258___________________________________ (freq_plasma_electron_profile258)_ 8.62085230675070648e+10 +Plasma_electron_frequency_at_point_259___________________________________ (freq_plasma_electron_profile259)_ 8.61621548784692383e+10 +Plasma_electron_frequency_at_point_260___________________________________ (freq_plasma_electron_profile260)_ 8.61155822037862549e+10 +Plasma_electron_frequency_at_point_261___________________________________ (freq_plasma_electron_profile261)_ 8.60688047115105133e+10 +Plasma_electron_frequency_at_point_262___________________________________ (freq_plasma_electron_profile262)_ 8.60218220675109863e+10 +Plasma_electron_frequency_at_point_263___________________________________ (freq_plasma_electron_profile263)_ 8.59746339354592896e+10 +Plasma_electron_frequency_at_point_264___________________________________ (freq_plasma_electron_profile264)_ 8.59272399768155975e+10 +Plasma_electron_frequency_at_point_265___________________________________ (freq_plasma_electron_profile265)_ 8.58796398508145142e+10 +Plasma_electron_frequency_at_point_266___________________________________ (freq_plasma_electron_profile266)_ 8.58318332144506683e+10 +Plasma_electron_frequency_at_point_267___________________________________ (freq_plasma_electron_profile267)_ 8.57838197224643860e+10 +Plasma_electron_frequency_at_point_268___________________________________ (freq_plasma_electron_profile268)_ 8.57355990273269196e+10 +Plasma_electron_frequency_at_point_269___________________________________ (freq_plasma_electron_profile269)_ 8.56871707792258301e+10 +Plasma_electron_frequency_at_point_270___________________________________ (freq_plasma_electron_profile270)_ 8.56385346260500183e+10 +Plasma_electron_frequency_at_point_271___________________________________ (freq_plasma_electron_profile271)_ 8.55896902133746643e+10 +Plasma_electron_frequency_at_point_272___________________________________ (freq_plasma_electron_profile272)_ 8.55406371844460754e+10 +Plasma_electron_frequency_at_point_273___________________________________ (freq_plasma_electron_profile273)_ 8.54913751801662750e+10 +Plasma_electron_frequency_at_point_274___________________________________ (freq_plasma_electron_profile274)_ 8.54419038390776367e+10 +Plasma_electron_frequency_at_point_275___________________________________ (freq_plasma_electron_profile275)_ 8.53922227973469849e+10 +Plasma_electron_frequency_at_point_276___________________________________ (freq_plasma_electron_profile276)_ 8.53423316887500153e+10 +Plasma_electron_frequency_at_point_277___________________________________ (freq_plasma_electron_profile277)_ 8.52922301446551666e+10 +Plasma_electron_frequency_at_point_278___________________________________ (freq_plasma_electron_profile278)_ 8.52419177940075684e+10 +Plasma_electron_frequency_at_point_279___________________________________ (freq_plasma_electron_profile279)_ 8.51913942633126831e+10 +Plasma_electron_frequency_at_point_280___________________________________ (freq_plasma_electron_profile280)_ 8.51406591766198883e+10 +Plasma_electron_frequency_at_point_281___________________________________ (freq_plasma_electron_profile281)_ 8.50897121555057831e+10 +Plasma_electron_frequency_at_point_282___________________________________ (freq_plasma_electron_profile282)_ 8.50385528190574951e+10 +Plasma_electron_frequency_at_point_283___________________________________ (freq_plasma_electron_profile283)_ 8.49871807838556061e+10 +Plasma_electron_frequency_at_point_284___________________________________ (freq_plasma_electron_profile284)_ 8.49355956639570618e+10 +Plasma_electron_frequency_at_point_285___________________________________ (freq_plasma_electron_profile285)_ 8.48837970708778229e+10 +Plasma_electron_frequency_at_point_286___________________________________ (freq_plasma_electron_profile286)_ 8.48317846135754395e+10 +Plasma_electron_frequency_at_point_287___________________________________ (freq_plasma_electron_profile287)_ 8.47795578984312592e+10 +Plasma_electron_frequency_at_point_288___________________________________ (freq_plasma_electron_profile288)_ 8.47271165292327576e+10 +Plasma_electron_frequency_at_point_289___________________________________ (freq_plasma_electron_profile289)_ 8.46744601071553040e+10 +Plasma_electron_frequency_at_point_290___________________________________ (freq_plasma_electron_profile290)_ 8.46215882307440796e+10 +Plasma_electron_frequency_at_point_291___________________________________ (freq_plasma_electron_profile291)_ 8.45685004958955994e+10 +Plasma_electron_frequency_at_point_292___________________________________ (freq_plasma_electron_profile292)_ 8.45151964958391724e+10 +Plasma_electron_frequency_at_point_293___________________________________ (freq_plasma_electron_profile293)_ 8.44616758211180573e+10 +Plasma_electron_frequency_at_point_294___________________________________ (freq_plasma_electron_profile294)_ 8.44079380595704956e+10 +Plasma_electron_frequency_at_point_295___________________________________ (freq_plasma_electron_profile295)_ 8.43539827963105927e+10 +Plasma_electron_frequency_at_point_296___________________________________ (freq_plasma_electron_profile296)_ 8.42998096137088470e+10 +Plasma_electron_frequency_at_point_297___________________________________ (freq_plasma_electron_profile297)_ 8.42454180913726196e+10 +Plasma_electron_frequency_at_point_298___________________________________ (freq_plasma_electron_profile298)_ 8.41908078061263733e+10 +Plasma_electron_frequency_at_point_299___________________________________ (freq_plasma_electron_profile299)_ 8.41359783319916382e+10 +Plasma_electron_frequency_at_point_300___________________________________ (freq_plasma_electron_profile300)_ 8.40809292401668396e+10 +Plasma_electron_frequency_at_point_301___________________________________ (freq_plasma_electron_profile301)_ 8.40256600990068970e+10 +Plasma_electron_frequency_at_point_302___________________________________ (freq_plasma_electron_profile302)_ 8.39701704740026093e+10 +Plasma_electron_frequency_at_point_303___________________________________ (freq_plasma_electron_profile303)_ 8.39144599277597809e+10 +Plasma_electron_frequency_at_point_304___________________________________ (freq_plasma_electron_profile304)_ 8.38585280199781494e+10 +Plasma_electron_frequency_at_point_305___________________________________ (freq_plasma_electron_profile305)_ 8.38023743074302216e+10 +Plasma_electron_frequency_at_point_306___________________________________ (freq_plasma_electron_profile306)_ 8.37459983439396667e+10 +Plasma_electron_frequency_at_point_307___________________________________ (freq_plasma_electron_profile307)_ 8.36893996803595734e+10 +Plasma_electron_frequency_at_point_308___________________________________ (freq_plasma_electron_profile308)_ 8.36325778645505524e+10 +Plasma_electron_frequency_at_point_309___________________________________ (freq_plasma_electron_profile309)_ 8.35755324413585510e+10 +Plasma_electron_frequency_at_point_310___________________________________ (freq_plasma_electron_profile310)_ 8.35182629525923462e+10 +Plasma_electron_frequency_at_point_311___________________________________ (freq_plasma_electron_profile311)_ 8.34607689370009766e+10 +Plasma_electron_frequency_at_point_312___________________________________ (freq_plasma_electron_profile312)_ 8.34030499302507172e+10 +Plasma_electron_frequency_at_point_313___________________________________ (freq_plasma_electron_profile313)_ 8.33451054649020233e+10 +Plasma_electron_frequency_at_point_314___________________________________ (freq_plasma_electron_profile314)_ 8.32869350703860931e+10 +Plasma_electron_frequency_at_point_315___________________________________ (freq_plasma_electron_profile315)_ 8.32285382729812164e+10 +Plasma_electron_frequency_at_point_316___________________________________ (freq_plasma_electron_profile316)_ 8.31699145957888336e+10 +Plasma_electron_frequency_at_point_317___________________________________ (freq_plasma_electron_profile317)_ 8.31110635587094421e+10 +Plasma_electron_frequency_at_point_318___________________________________ (freq_plasma_electron_profile318)_ 8.30519846784180756e+10 +Plasma_electron_frequency_at_point_319___________________________________ (freq_plasma_electron_profile319)_ 8.29926774683397217e+10 +Plasma_electron_frequency_at_point_320___________________________________ (freq_plasma_electron_profile320)_ 8.29331414386242523e+10 +Plasma_electron_frequency_at_point_321___________________________________ (freq_plasma_electron_profile321)_ 8.28733760961213074e+10 +Plasma_electron_frequency_at_point_322___________________________________ (freq_plasma_electron_profile322)_ 8.28133809443546753e+10 +Plasma_electron_frequency_at_point_323___________________________________ (freq_plasma_electron_profile323)_ 8.27531554834965820e+10 +Plasma_electron_frequency_at_point_324___________________________________ (freq_plasma_electron_profile324)_ 8.26926992103416443e+10 +Plasma_electron_frequency_at_point_325___________________________________ (freq_plasma_electron_profile325)_ 8.26320116182804413e+10 +Plasma_electron_frequency_at_point_326___________________________________ (freq_plasma_electron_profile326)_ 8.25710921972729645e+10 +Plasma_electron_frequency_at_point_327___________________________________ (freq_plasma_electron_profile327)_ 8.25099404338216248e+10 +Plasma_electron_frequency_at_point_328___________________________________ (freq_plasma_electron_profile328)_ 8.24485558109440155e+10 +Plasma_electron_frequency_at_point_329___________________________________ (freq_plasma_electron_profile329)_ 8.23869378081454620e+10 +Plasma_electron_frequency_at_point_330___________________________________ (freq_plasma_electron_profile330)_ 8.23250859013911438e+10 +Plasma_electron_frequency_at_point_331___________________________________ (freq_plasma_electron_profile331)_ 8.22629995630778961e+10 +Plasma_electron_frequency_at_point_332___________________________________ (freq_plasma_electron_profile332)_ 8.22006782620058136e+10 +Plasma_electron_frequency_at_point_333___________________________________ (freq_plasma_electron_profile333)_ 8.21381214633495178e+10 +Plasma_electron_frequency_at_point_334___________________________________ (freq_plasma_electron_profile334)_ 8.20753286286289825e+10 +Plasma_electron_frequency_at_point_335___________________________________ (freq_plasma_electron_profile335)_ 8.20122992156801453e+10 +Plasma_electron_frequency_at_point_336___________________________________ (freq_plasma_electron_profile336)_ 8.19490326786251831e+10 +Plasma_electron_frequency_at_point_337___________________________________ (freq_plasma_electron_profile337)_ 8.18855284678423615e+10 +Plasma_electron_frequency_at_point_338___________________________________ (freq_plasma_electron_profile338)_ 8.18217860299357452e+10 +Plasma_electron_frequency_at_point_339___________________________________ (freq_plasma_electron_profile339)_ 8.17578048077042999e+10 +Plasma_electron_frequency_at_point_340___________________________________ (freq_plasma_electron_profile340)_ 8.16935842401108398e+10 +Plasma_electron_frequency_at_point_341___________________________________ (freq_plasma_electron_profile341)_ 8.16291237622505341e+10 +Plasma_electron_frequency_at_point_342___________________________________ (freq_plasma_electron_profile342)_ 8.15644228053191528e+10 +Plasma_electron_frequency_at_point_343___________________________________ (freq_plasma_electron_profile343)_ 8.14994807965807648e+10 +Plasma_electron_frequency_at_point_344___________________________________ (freq_plasma_electron_profile344)_ 8.14342971593353271e+10 +Plasma_electron_frequency_at_point_345___________________________________ (freq_plasma_electron_profile345)_ 8.13688713128856506e+10 +Plasma_electron_frequency_at_point_346___________________________________ (freq_plasma_electron_profile346)_ 8.13032026725041046e+10 +Plasma_electron_frequency_at_point_347___________________________________ (freq_plasma_electron_profile347)_ 8.12372906493990173e+10 +Plasma_electron_frequency_at_point_348___________________________________ (freq_plasma_electron_profile348)_ 8.11711346506805115e+10 +Plasma_electron_frequency_at_point_349___________________________________ (freq_plasma_electron_profile349)_ 8.11047340793261108e+10 +Plasma_electron_frequency_at_point_350___________________________________ (freq_plasma_electron_profile350)_ 8.10380883341458282e+10 +Plasma_electron_frequency_at_point_351___________________________________ (freq_plasma_electron_profile351)_ 8.09711968097468414e+10 +Plasma_electron_frequency_at_point_352___________________________________ (freq_plasma_electron_profile352)_ 8.09040588964980011e+10 +Plasma_electron_frequency_at_point_353___________________________________ (freq_plasma_electron_profile353)_ 8.08366739804935150e+10 +Plasma_electron_frequency_at_point_354___________________________________ (freq_plasma_electron_profile354)_ 8.07690414435165558e+10 +Plasma_electron_frequency_at_point_355___________________________________ (freq_plasma_electron_profile355)_ 8.07011606630023499e+10 +Plasma_electron_frequency_at_point_356___________________________________ (freq_plasma_electron_profile356)_ 8.06330310120006409e+10 +Plasma_electron_frequency_at_point_357___________________________________ (freq_plasma_electron_profile357)_ 8.05646518591380768e+10 +Plasma_electron_frequency_at_point_358___________________________________ (freq_plasma_electron_profile358)_ 8.04960225685797882e+10 +Plasma_electron_frequency_at_point_359___________________________________ (freq_plasma_electron_profile359)_ 8.04271424999906921e+10 +Plasma_electron_frequency_at_point_360___________________________________ (freq_plasma_electron_profile360)_ 8.03580110084964294e+10 +Plasma_electron_frequency_at_point_361___________________________________ (freq_plasma_electron_profile361)_ 8.02886274446436157e+10 +Plasma_electron_frequency_at_point_362___________________________________ (freq_plasma_electron_profile362)_ 8.02189911543597412e+10 +Plasma_electron_frequency_at_point_363___________________________________ (freq_plasma_electron_profile363)_ 8.01491014789126282e+10 +Plasma_electron_frequency_at_point_364___________________________________ (freq_plasma_electron_profile364)_ 8.00789577548693085e+10 +Plasma_electron_frequency_at_point_365___________________________________ (freq_plasma_electron_profile365)_ 8.00085593140544739e+10 +Plasma_electron_frequency_at_point_366___________________________________ (freq_plasma_electron_profile366)_ 7.99379054835083923e+10 +Plasma_electron_frequency_at_point_367___________________________________ (freq_plasma_electron_profile367)_ 7.98669955854443665e+10 +Plasma_electron_frequency_at_point_368___________________________________ (freq_plasma_electron_profile368)_ 7.97958289372056122e+10 +Plasma_electron_frequency_at_point_369___________________________________ (freq_plasma_electron_profile369)_ 7.97244048512216492e+10 +Plasma_electron_frequency_at_point_370___________________________________ (freq_plasma_electron_profile370)_ 7.96527226349641266e+10 +Plasma_electron_frequency_at_point_371___________________________________ (freq_plasma_electron_profile371)_ 7.95807815909022064e+10 +Plasma_electron_frequency_at_point_372___________________________________ (freq_plasma_electron_profile372)_ 7.95085810164572906e+10 +Plasma_electron_frequency_at_point_373___________________________________ (freq_plasma_electron_profile373)_ 7.94361202039572754e+10 +Plasma_electron_frequency_at_point_374___________________________________ (freq_plasma_electron_profile374)_ 7.93633984405901337e+10 +Plasma_electron_frequency_at_point_375___________________________________ (freq_plasma_electron_profile375)_ 7.92904150083571167e+10 +Plasma_electron_frequency_at_point_376___________________________________ (freq_plasma_electron_profile376)_ 7.92171691840251160e+10 +Plasma_electron_frequency_at_point_377___________________________________ (freq_plasma_electron_profile377)_ 7.91436602390787659e+10 +Plasma_electron_frequency_at_point_378___________________________________ (freq_plasma_electron_profile378)_ 7.90698874396716003e+10 +Plasma_electron_frequency_at_point_379___________________________________ (freq_plasma_electron_profile379)_ 7.89958500465768585e+10 +Plasma_electron_frequency_at_point_380___________________________________ (freq_plasma_electron_profile380)_ 7.89215473151375580e+10 +Plasma_electron_frequency_at_point_381___________________________________ (freq_plasma_electron_profile381)_ 7.88469784952160187e+10 +Plasma_electron_frequency_at_point_382___________________________________ (freq_plasma_electron_profile382)_ 7.87721428311426697e+10 +Plasma_electron_frequency_at_point_383___________________________________ (freq_plasma_electron_profile383)_ 7.86970395616642303e+10 +Plasma_electron_frequency_at_point_384___________________________________ (freq_plasma_electron_profile384)_ 7.86216679198913116e+10 +Plasma_electron_frequency_at_point_385___________________________________ (freq_plasma_electron_profile385)_ 7.85460271332453461e+10 +Plasma_electron_frequency_at_point_386___________________________________ (freq_plasma_electron_profile386)_ 7.84701164234046478e+10 +Plasma_electron_frequency_at_point_387___________________________________ (freq_plasma_electron_profile387)_ 7.83939350062500916e+10 +Plasma_electron_frequency_at_point_388___________________________________ (freq_plasma_electron_profile388)_ 7.83174820918099518e+10 +Plasma_electron_frequency_at_point_389___________________________________ (freq_plasma_electron_profile389)_ 7.82407568842039032e+10 +Plasma_electron_frequency_at_point_390___________________________________ (freq_plasma_electron_profile390)_ 7.81637585815865784e+10 +Plasma_electron_frequency_at_point_391___________________________________ (freq_plasma_electron_profile391)_ 7.80864863760901947e+10 +Plasma_electron_frequency_at_point_392___________________________________ (freq_plasma_electron_profile392)_ 7.80089394537665100e+10 +Plasma_electron_frequency_at_point_393___________________________________ (freq_plasma_electron_profile393)_ 7.79311169945280609e+10 +Plasma_electron_frequency_at_point_394___________________________________ (freq_plasma_electron_profile394)_ 7.78530181720885620e+10 +Plasma_electron_frequency_at_point_395___________________________________ (freq_plasma_electron_profile395)_ 7.77746421539026031e+10 +Plasma_electron_frequency_at_point_396___________________________________ (freq_plasma_electron_profile396)_ 7.76959881011045380e+10 +Plasma_electron_frequency_at_point_397___________________________________ (freq_plasma_electron_profile397)_ 7.76170551684465179e+10 +Plasma_electron_frequency_at_point_398___________________________________ (freq_plasma_electron_profile398)_ 7.75378425042358704e+10 +Plasma_electron_frequency_at_point_399___________________________________ (freq_plasma_electron_profile399)_ 7.74583492502714233e+10 +Plasma_electron_frequency_at_point_400___________________________________ (freq_plasma_electron_profile400)_ 7.73785745417791901e+10 +Plasma_electron_frequency_at_point_401___________________________________ (freq_plasma_electron_profile401)_ 7.72985175073471527e+10 +Plasma_electron_frequency_at_point_402___________________________________ (freq_plasma_electron_profile402)_ 7.72181772688591309e+10 +Plasma_electron_frequency_at_point_403___________________________________ (freq_plasma_electron_profile403)_ 7.71375529414277802e+10 +Plasma_electron_frequency_at_point_404___________________________________ (freq_plasma_electron_profile404)_ 7.70566436333267212e+10 +Plasma_electron_frequency_at_point_405___________________________________ (freq_plasma_electron_profile405)_ 7.69754484459218597e+10 +Plasma_electron_frequency_at_point_406___________________________________ (freq_plasma_electron_profile406)_ 7.68939664736015167e+10 +Plasma_electron_frequency_at_point_407___________________________________ (freq_plasma_electron_profile407)_ 7.68121968037059631e+10 +Plasma_electron_frequency_at_point_408___________________________________ (freq_plasma_electron_profile408)_ 7.67301385164557037e+10 +Plasma_electron_frequency_at_point_409___________________________________ (freq_plasma_electron_profile409)_ 7.66477906848789978e+10 +Plasma_electron_frequency_at_point_410___________________________________ (freq_plasma_electron_profile410)_ 7.65651523747382660e+10 +Plasma_electron_frequency_at_point_411___________________________________ (freq_plasma_electron_profile411)_ 7.64822226444555817e+10 +Plasma_electron_frequency_at_point_412___________________________________ (freq_plasma_electron_profile412)_ 7.63990005450371094e+10 +Plasma_electron_frequency_at_point_413___________________________________ (freq_plasma_electron_profile413)_ 7.63154851199964905e+10 +Plasma_electron_frequency_at_point_414___________________________________ (freq_plasma_electron_profile414)_ 7.62316754052772675e+10 +Plasma_electron_frequency_at_point_415___________________________________ (freq_plasma_electron_profile415)_ 7.61475704291740570e+10 +Plasma_electron_frequency_at_point_416___________________________________ (freq_plasma_electron_profile416)_ 7.60631692122528534e+10 +Plasma_electron_frequency_at_point_417___________________________________ (freq_plasma_electron_profile417)_ 7.59784707672701416e+10 +Plasma_electron_frequency_at_point_418___________________________________ (freq_plasma_electron_profile418)_ 7.58934740990907135e+10 +Plasma_electron_frequency_at_point_419___________________________________ (freq_plasma_electron_profile419)_ 7.58081782046047058e+10 +Plasma_electron_frequency_at_point_420___________________________________ (freq_plasma_electron_profile420)_ 7.57225820726431427e+10 +Plasma_electron_frequency_at_point_421___________________________________ (freq_plasma_electron_profile421)_ 7.56366846838924408e+10 +Plasma_electron_frequency_at_point_422___________________________________ (freq_plasma_electron_profile422)_ 7.55504850108077393e+10 +Plasma_electron_frequency_at_point_423___________________________________ (freq_plasma_electron_profile423)_ 7.54639820175248871e+10 +Plasma_electron_frequency_at_point_424___________________________________ (freq_plasma_electron_profile424)_ 7.53771746597713318e+10 +Plasma_electron_frequency_at_point_425___________________________________ (freq_plasma_electron_profile425)_ 7.52900618847756653e+10 +Plasma_electron_frequency_at_point_426___________________________________ (freq_plasma_electron_profile426)_ 7.52026426311758575e+10 +Plasma_electron_frequency_at_point_427___________________________________ (freq_plasma_electron_profile427)_ 7.51149158289261780e+10 +Plasma_electron_frequency_at_point_428___________________________________ (freq_plasma_electron_profile428)_ 7.50268803992029724e+10 +Plasma_electron_frequency_at_point_429___________________________________ (freq_plasma_electron_profile429)_ 7.49385352543086700e+10 +Plasma_electron_frequency_at_point_430___________________________________ (freq_plasma_electron_profile430)_ 7.48498792975749817e+10 +Plasma_electron_frequency_at_point_431___________________________________ (freq_plasma_electron_profile431)_ 7.47609114232641296e+10 +Plasma_electron_frequency_at_point_432___________________________________ (freq_plasma_electron_profile432)_ 7.46716305164690247e+10 +Plasma_electron_frequency_at_point_433___________________________________ (freq_plasma_electron_profile433)_ 7.45820354530118103e+10 +Plasma_electron_frequency_at_point_434___________________________________ (freq_plasma_electron_profile434)_ 7.44921250993410339e+10 +Plasma_electron_frequency_at_point_435___________________________________ (freq_plasma_electron_profile435)_ 7.44018983124272156e+10 +Plasma_electron_frequency_at_point_436___________________________________ (freq_plasma_electron_profile436)_ 7.43113539396569214e+10 +Plasma_electron_frequency_at_point_437___________________________________ (freq_plasma_electron_profile437)_ 7.42204908187253265e+10 +Plasma_electron_frequency_at_point_438___________________________________ (freq_plasma_electron_profile438)_ 7.41293077775270844e+10 +Plasma_electron_frequency_at_point_439___________________________________ (freq_plasma_electron_profile439)_ 7.40378036340456543e+10 +Plasma_electron_frequency_at_point_440___________________________________ (freq_plasma_electron_profile440)_ 7.39459771962409973e+10 +Plasma_electron_frequency_at_point_441___________________________________ (freq_plasma_electron_profile441)_ 7.38538272619354553e+10 +Plasma_electron_frequency_at_point_442___________________________________ (freq_plasma_electron_profile442)_ 7.37613526186981659e+10 +Plasma_electron_frequency_at_point_443___________________________________ (freq_plasma_electron_profile443)_ 7.36685520437274628e+10 +Plasma_electron_frequency_at_point_444___________________________________ (freq_plasma_electron_profile444)_ 7.35754243037317047e+10 +Plasma_electron_frequency_at_point_445___________________________________ (freq_plasma_electron_profile445)_ 7.34819681548081970e+10 +Plasma_electron_frequency_at_point_446___________________________________ (freq_plasma_electron_profile446)_ 7.33881823423203430e+10 +Plasma_electron_frequency_at_point_447___________________________________ (freq_plasma_electron_profile447)_ 7.32940656007728271e+10 +Plasma_electron_frequency_at_point_448___________________________________ (freq_plasma_electron_profile448)_ 7.31996166536850586e+10 +Plasma_electron_frequency_at_point_449___________________________________ (freq_plasma_electron_profile449)_ 7.31048342134624023e+10 +Plasma_electron_frequency_at_point_450___________________________________ (freq_plasma_electron_profile450)_ 7.30097169812657013e+10 +Plasma_electron_frequency_at_point_451___________________________________ (freq_plasma_electron_profile451)_ 7.29142636468786926e+10 +Plasma_electron_frequency_at_point_452___________________________________ (freq_plasma_electron_profile452)_ 7.28184728885732269e+10 +Plasma_electron_frequency_at_point_453___________________________________ (freq_plasma_electron_profile453)_ 7.27223433729726105e+10 +Plasma_electron_frequency_at_point_454___________________________________ (freq_plasma_electron_profile454)_ 7.26258737549126587e+10 +Plasma_electron_frequency_at_point_455___________________________________ (freq_plasma_electron_profile455)_ 7.25290626773006897e+10 +Plasma_electron_frequency_at_point_456___________________________________ (freq_plasma_electron_profile456)_ 7.24319087709721527e+10 +Plasma_electron_frequency_at_point_457___________________________________ (freq_plasma_electron_profile457)_ 7.23344106545451508e+10 +Plasma_electron_frequency_at_point_458___________________________________ (freq_plasma_electron_profile458)_ 7.22365669342725372e+10 +Plasma_electron_frequency_at_point_459___________________________________ (freq_plasma_electron_profile459)_ 7.21383762038917694e+10 +Plasma_electron_frequency_at_point_460___________________________________ (freq_plasma_electron_profile460)_ 7.20398370444723053e+10 +Plasma_electron_frequency_at_point_461___________________________________ (freq_plasma_electron_profile461)_ 7.19409480242604828e+10 +Plasma_electron_frequency_at_point_462___________________________________ (freq_plasma_electron_profile462)_ 7.18417076985221405e+10 +Plasma_electron_frequency_at_point_463___________________________________ (freq_plasma_electron_profile463)_ 7.17421146093824158e+10 +Plasma_electron_frequency_at_point_464___________________________________ (freq_plasma_electron_profile464)_ 7.16421672856631927e+10 +Plasma_electron_frequency_at_point_465___________________________________ (freq_plasma_electron_profile465)_ 7.15418642427177429e+10 +Plasma_electron_frequency_at_point_466___________________________________ (freq_plasma_electron_profile466)_ 7.14412039822628174e+10 +Plasma_electron_frequency_at_point_467___________________________________ (freq_plasma_electron_profile467)_ 7.13401849922078247e+10 +Plasma_electron_frequency_at_point_468___________________________________ (freq_plasma_electron_profile468)_ 7.12388057464813538e+10 +Plasma_electron_frequency_at_point_469___________________________________ (freq_plasma_electron_profile469)_ 7.11370647048547821e+10 +Plasma_electron_frequency_at_point_470___________________________________ (freq_plasma_electron_profile470)_ 7.10349603127629547e+10 +Plasma_electron_frequency_at_point_471___________________________________ (freq_plasma_electron_profile471)_ 7.05457811314517212e+10 +Plasma_electron_frequency_at_point_472___________________________________ (freq_plasma_electron_profile472)_ 7.00531861106800232e+10 +Plasma_electron_frequency_at_point_473___________________________________ (freq_plasma_electron_profile473)_ 6.95571026787951508e+10 +Plasma_electron_frequency_at_point_474___________________________________ (freq_plasma_electron_profile474)_ 6.90574556574403076e+10 +Plasma_electron_frequency_at_point_475___________________________________ (freq_plasma_electron_profile475)_ 6.85541671285576553e+10 +Plasma_electron_frequency_at_point_476___________________________________ (freq_plasma_electron_profile476)_ 6.80471562925380096e+10 +Plasma_electron_frequency_at_point_477___________________________________ (freq_plasma_electron_profile477)_ 6.75363393167854156e+10 +Plasma_electron_frequency_at_point_478___________________________________ (freq_plasma_electron_profile478)_ 6.70216291738932419e+10 +Plasma_electron_frequency_at_point_479___________________________________ (freq_plasma_electron_profile479)_ 6.65029354685470963e+10 +Plasma_electron_frequency_at_point_480___________________________________ (freq_plasma_electron_profile480)_ 6.59801642521797562e+10 +Plasma_electron_frequency_at_point_481___________________________________ (freq_plasma_electron_profile481)_ 6.54532178243018112e+10 +Plasma_electron_frequency_at_point_482___________________________________ (freq_plasma_electron_profile482)_ 6.49219945193181992e+10 +Plasma_electron_frequency_at_point_483___________________________________ (freq_plasma_electron_profile483)_ 6.43863884775133438e+10 +Plasma_electron_frequency_at_point_484___________________________________ (freq_plasma_electron_profile484)_ 6.38462893987437973e+10 +Plasma_electron_frequency_at_point_485___________________________________ (freq_plasma_electron_profile485)_ 6.33015822772150421e+10 +Plasma_electron_frequency_at_point_486___________________________________ (freq_plasma_electron_profile486)_ 6.27521471155362701e+10 +Plasma_electron_frequency_at_point_487___________________________________ (freq_plasma_electron_profile487)_ 6.21978586160390778e+10 +Plasma_electron_frequency_at_point_488___________________________________ (freq_plasma_electron_profile488)_ 6.16385858471109619e+10 +Plasma_electron_frequency_at_point_489___________________________________ (freq_plasma_electron_profile489)_ 6.10741918820261536e+10 +Plasma_electron_frequency_at_point_490___________________________________ (freq_plasma_electron_profile490)_ 6.05045334074516296e+10 +Plasma_electron_frequency_at_point_491___________________________________ (freq_plasma_electron_profile491)_ 5.99294602984568100e+10 +Plasma_electron_frequency_at_point_492___________________________________ (freq_plasma_electron_profile492)_ 5.93488151564560928e+10 +Plasma_electron_frequency_at_point_493___________________________________ (freq_plasma_electron_profile493)_ 5.87624328060545273e+10 +Plasma_electron_frequency_at_point_494___________________________________ (freq_plasma_electron_profile494)_ 5.81701397462388382e+10 +Plasma_electron_frequency_at_point_495___________________________________ (freq_plasma_electron_profile495)_ 5.75717535507460098e+10 +Plasma_electron_frequency_at_point_496___________________________________ (freq_plasma_electron_profile496)_ 5.69670822117362518e+10 +Plasma_electron_frequency_at_point_497___________________________________ (freq_plasma_electron_profile497)_ 5.63559234200771255e+10 +Plasma_electron_frequency_at_point_498___________________________________ (freq_plasma_electron_profile498)_ 5.57380637745919418e+10 +Plasma_electron_frequency_at_point_499___________________________________ (freq_plasma_electron_profile499)_ 5.51132779115102158e+10 +Plasma_electron_frequency_at_point_500___________________________________ (freq_plasma_electron_profile500)_ 5.44813275440516510e+10 +Volume_averaged_electron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_electron_vol_avg)_ 1.39149292125728821e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_electron_profile0)_ 2.08723938188593231e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_electron_profile1)_ 2.08515630865051697e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_electron_profile2)_ 2.08307738910051666e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_electron_profile3)_ 2.08100261082451996e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_electron_profile4)_ 2.07893196146051575e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_electron_profile5)_ 2.07686542869564423e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_electron_profile6)_ 2.07480300026595642e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_electron_profile7)_ 2.07274466395616913e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_electron_profile8)_ 2.07069040759942322e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_electron_profile9)_ 2.06864021907704803e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_electron_profile10)_ 2.06659408631831696e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_electron_profile11)_ 2.06455199730021576e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_electron_profile12)_ 2.06251394004720459e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_electron_profile13)_ 2.06047990263098419e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_electron_profile14)_ 2.05844987317026398e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_electron_profile15)_ 2.05642383983052948e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_electron_profile16)_ 2.05440179082381348e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_electron_profile17)_ 2.05238371440846558e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_electron_profile18)_ 2.05036959888892853e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_electron_profile19)_ 2.04835943261550812e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_electron_profile20)_ 2.04635320398415100e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_electron_profile21)_ 2.04435090143622162e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_electron_profile22)_ 2.04235251345827789e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_electron_profile23)_ 2.04035802858185364e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_electron_profile24)_ 2.03836743538323730e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_electron_profile25)_ 2.03638072248325348e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_electron_profile26)_ 2.03439787854704803e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_electron_profile27)_ 2.03241889228386963e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_electron_profile28)_ 2.03044375244685944e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_electron_profile29)_ 2.02847244783283295e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_electron_profile30)_ 2.02650496728207397e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_electron_profile31)_ 2.02454129967811859e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_electron_profile32)_ 2.02258143394754913e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_electron_profile33)_ 2.02062535905978577e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_electron_profile34)_ 2.01867306402687744e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_electron_profile35)_ 2.01672453790329926e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_electron_profile36)_ 2.01477976978574585e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_electron_profile37)_ 2.01283874881292694e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_electron_profile38)_ 2.01090146416536865e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_electron_profile39)_ 2.00896790506520996e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_electron_profile40)_ 2.00703806077600189e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_electron_profile41)_ 2.00511192060251251e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_electron_profile42)_ 2.00318947389052551e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_electron_profile43)_ 2.00127071002664581e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_electron_profile44)_ 1.99935561843810364e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_electron_profile45)_ 1.99744418859256012e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_electron_profile46)_ 1.99553640999791656e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_electron_profile47)_ 1.99363227220211639e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_electron_profile48)_ 1.99173176479296326e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_electron_profile49)_ 1.98983487739792206e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_electron_profile50)_ 1.98794159968393738e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_electron_profile51)_ 1.98605192135724182e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_electron_profile52)_ 1.98416583216316986e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_electron_profile53)_ 1.98228332188597565e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_electron_profile54)_ 1.98040438034864258e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_electron_profile55)_ 1.97852899741270691e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_electron_profile56)_ 1.97665716297806824e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_electron_profile57)_ 1.97478886698281464e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_electron_profile58)_ 1.97292409940303894e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_electron_profile59)_ 1.97106285025265839e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_electron_profile60)_ 1.96920510958324066e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_electron_profile61)_ 1.96735086748382141e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_electron_profile62)_ 1.96550011408073212e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_electron_profile63)_ 1.96365283953742310e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_electron_profile64)_ 1.96180903405428925e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_electron_profile65)_ 1.95996868786849731e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_electron_profile66)_ 1.95813179125381256e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_electron_profile67)_ 1.95629833452042938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_electron_profile68)_ 1.95446830801479736e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_electron_profile69)_ 1.95264170211945587e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_electron_profile70)_ 1.95081850725286469e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_electron_profile71)_ 1.94899871386923309e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_electron_profile72)_ 1.94718231245835815e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_electron_profile73)_ 1.94536929354545471e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_electron_profile74)_ 1.94355964769099335e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_electron_profile75)_ 1.94175336549053741e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_electron_profile76)_ 1.93995043757457550e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_electron_profile77)_ 1.93815085460836578e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_electron_profile78)_ 1.93635460729176849e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_electron_profile79)_ 1.93456168635909058e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_electron_profile80)_ 1.93277208257892548e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_electron_profile81)_ 1.93098578675399078e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_electron_profile82)_ 1.92920278972097717e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_electron_profile83)_ 1.92742308235038574e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_electron_profile84)_ 1.92564665554637634e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_electron_profile85)_ 1.92387350024660980e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_electron_profile86)_ 1.92210360742209564e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_electron_profile87)_ 1.92033696807703888e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_electron_profile88)_ 1.91857357324868530e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_electron_profile89)_ 1.91681341400717285e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_electron_profile90)_ 1.91505648145537872e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_electron_profile91)_ 1.91330276672877106e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_electron_profile92)_ 1.91155226099525909e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_electron_profile93)_ 1.90980495545504364e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_electron_profile94)_ 1.90806084134047333e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_electron_profile95)_ 1.90631990991589264e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_electron_profile96)_ 1.90458215247750061e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_electron_profile97)_ 1.90284756035320404e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_electron_profile98)_ 1.90111612490247314e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_electron_profile99)_ 1.89938783751619843e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_electron_profile100)_ 1.89766268961654694e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_electron_profile101)_ 1.89594067265682251e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_electron_profile102)_ 1.89422177812132202e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_electron_profile103)_ 1.89250599752519745e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_electron_profile104)_ 1.89079332241431519e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_electron_profile105)_ 1.88908374436511597e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_electron_profile106)_ 1.88737725498447906e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_electron_profile107)_ 1.88567384590958313e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_electron_profile108)_ 1.88397350880777100e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_electron_profile109)_ 1.88227623537641266e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_electron_profile110)_ 1.88058201734277039e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_electron_profile111)_ 1.87889084646386505e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_electron_profile112)_ 1.87720271452634155e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_electron_profile113)_ 1.87551761334633575e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_electron_profile114)_ 1.87383553476934357e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_electron_profile115)_ 1.87215647067008759e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_electron_profile116)_ 1.87048041295238892e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_electron_profile117)_ 1.86880735354903198e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_electron_profile118)_ 1.86713728442164246e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_electron_profile119)_ 1.86547019756055206e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_electron_profile120)_ 1.86380608498467255e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_electron_profile121)_ 1.86214493874137085e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_electron_profile122)_ 1.86048675090633820e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_electron_profile123)_ 1.85883151358346832e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_electron_profile124)_ 1.85717921890472717e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_electron_profile125)_ 1.85552985903003357e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_electron_profile126)_ 1.85388342614713226e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_electron_profile127)_ 1.85223991247146973e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_electron_profile128)_ 1.85059931024607452e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_electron_profile129)_ 1.84896161174143219e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_electron_profile130)_ 1.84732680925536560e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_electron_profile131)_ 1.84569489511291351e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_electron_profile132)_ 1.84406586166621185e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_electron_profile133)_ 1.84243970129437225e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_electron_profile134)_ 1.84081640640336395e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_electron_profile135)_ 1.83919596942589630e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_electron_profile136)_ 1.83757838282130005e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_electron_profile137)_ 1.83596363907541138e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_electron_profile138)_ 1.83435173070045502e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_electron_profile139)_ 1.83274265023492798e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_electron_profile140)_ 1.83113639024348663e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_electron_profile141)_ 1.82953294331682861e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_electron_profile142)_ 1.82793230207158173e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_electron_profile143)_ 1.82633445915019104e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_electron_profile144)_ 1.82473940722080170e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_electron_profile145)_ 1.82314713897715363e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_electron_profile146)_ 1.82155764713846405e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_electron_profile147)_ 1.81997092444931885e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_electron_profile148)_ 1.81838696367956329e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_electron_profile149)_ 1.81680575762418945e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_electron_profile150)_ 1.81522729910323029e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_electron_profile151)_ 1.81365158096164734e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_electron_profile152)_ 1.81207859606922638e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_electron_profile153)_ 1.81050833732046661e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_electron_profile154)_ 1.80894079763447449e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_electron_profile155)_ 1.80737596995486023e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_electron_profile156)_ 1.80581384724962646e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_electron_profile157)_ 1.80425442251106903e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_electron_profile158)_ 1.80269768875566711e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_electron_profile159)_ 1.80114363902398102e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_electron_profile160)_ 1.79959226638054962e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_electron_profile161)_ 1.79804356391378479e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_electron_profile162)_ 1.79649752473587128e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_electron_profile163)_ 1.79495414198266174e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_electron_profile164)_ 1.79341340881357788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_electron_profile165)_ 1.79187531841150787e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_electron_profile166)_ 1.79033986398270599e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_electron_profile167)_ 1.78880703875669403e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_electron_profile168)_ 1.78727683598615723e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_electron_profile169)_ 1.78574924894685333e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_electron_profile170)_ 1.78422427093750488e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_electron_profile171)_ 1.78270189527970825e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_electron_profile172)_ 1.78118211531783295e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_electron_profile173)_ 1.77966492441892517e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_electron_profile174)_ 1.77815031597261139e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_electron_profile175)_ 1.77663828339100189e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_electron_profile176)_ 1.77512882010859650e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_electron_profile177)_ 1.77362191958218872e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_electron_profile178)_ 1.77211757529077026e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_electron_profile179)_ 1.77061578073543915e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_electron_profile180)_ 1.76911652943930389e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_electron_profile181)_ 1.76761981494739258e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_electron_profile182)_ 1.76612563082655792e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_electron_profile183)_ 1.76463397066538696e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_electron_profile184)_ 1.76314482807410797e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_electron_profile185)_ 1.76165819668450073e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_electron_profile186)_ 1.76017407014980469e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_electron_profile187)_ 1.75869244214462769e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_electron_profile188)_ 1.75721330636485992e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_electron_profile189)_ 1.75573665652757812e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_electron_profile190)_ 1.75426248637096405e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_electron_profile191)_ 1.75279078965420990e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_electron_profile192)_ 1.75132156015743378e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_electron_profile193)_ 1.74985479168158966e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_electron_profile194)_ 1.74839047804838348e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_electron_profile195)_ 1.74692861310018219e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_electron_profile196)_ 1.74546919069993164e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_electron_profile197)_ 1.74401220473106659e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_electron_profile198)_ 1.74255764909742981e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_electron_profile199)_ 1.74110551772318176e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_electron_profile200)_ 1.73965580455272095e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_electron_profile201)_ 1.73820850355059723e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_electron_profile202)_ 1.73676360870142853e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_electron_profile203)_ 1.73532111400981598e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_electron_profile204)_ 1.73388101350026428e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_electron_profile205)_ 1.73244330121709595e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_electron_profile206)_ 1.73100797122437286e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_electron_profile207)_ 1.72957501760580933e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_electron_profile208)_ 1.72814443446469666e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_electron_profile209)_ 1.72671621592381683e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_electron_profile210)_ 1.72529035612536591e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_electron_profile211)_ 1.72386684923087311e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_electron_profile212)_ 1.72244568942111938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_electron_profile213)_ 1.72102687089606079e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_electron_profile214)_ 1.71961038787474731e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_electron_profile215)_ 1.71819623459524506e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_electron_profile216)_ 1.71678440531455872e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_electron_profile217)_ 1.71537489430855316e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_electron_profile218)_ 1.71396769587187714e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_electron_profile219)_ 1.71256280431788361e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_electron_profile220)_ 1.71116021397855713e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_electron_profile221)_ 1.70975991920443359e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_electron_profile222)_ 1.70836191436452850e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_electron_profile223)_ 1.70696619384625671e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_electron_profile224)_ 1.70557275205536194e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_electron_profile225)_ 1.70418158341583862e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_electron_profile226)_ 1.70279268236985992e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_electron_profile227)_ 1.70140604337770172e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_electron_profile228)_ 1.70002166091767151e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_electron_profile229)_ 1.69863952948603088e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_electron_profile230)_ 1.69725964359692749e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_electron_profile231)_ 1.69588199778231964e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_electron_profile232)_ 1.69450658659190430e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_electron_profile233)_ 1.69313340459304535e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_electron_profile234)_ 1.69176244637070282e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_electron_profile235)_ 1.69039370652736084e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_electron_profile236)_ 1.68902717968295715e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_electron_profile237)_ 1.68766286047481293e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_electron_profile238)_ 1.68630074355756073e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_electron_profile239)_ 1.68494082360307922e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_electron_profile240)_ 1.68358309530041748e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_electron_profile241)_ 1.68222755335573120e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_electron_profile242)_ 1.68087419249221069e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_electron_profile243)_ 1.67952300745001465e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_electron_profile244)_ 1.67817399298619934e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_electron_profile245)_ 1.67682714387465332e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_electron_profile246)_ 1.67548245490602905e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_electron_profile247)_ 1.67413992088767487e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_electron_profile248)_ 1.67279953664356934e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_electron_profile249)_ 1.67146129701425415e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_electron_profile250)_ 1.67012519685676910e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_electron_profile251)_ 1.66879123104458313e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_electron_profile252)_ 1.66745939446753235e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_electron_profile253)_ 1.66612968203175323e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_electron_profile254)_ 1.66480208865961578e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_electron_profile255)_ 1.66347660928966400e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_electron_profile256)_ 1.66215323887654572e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_electron_profile257)_ 1.66083197239095215e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_electron_profile258)_ 1.65951280481955353e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_electron_profile259)_ 1.65819573116493500e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_electron_profile260)_ 1.65688074644553375e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_electron_profile261)_ 1.65556784569557678e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_electron_profile262)_ 1.65425702396501831e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_electron_profile263)_ 1.65294827631947601e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_electron_profile264)_ 1.65164159784017242e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_electron_profile265)_ 1.65033698362386902e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_electron_profile266)_ 1.64903442878280792e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_electron_profile267)_ 1.64773392844465118e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_electron_profile268)_ 1.64643547775241791e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_electron_profile269)_ 1.64513907186442352e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_electron_profile270)_ 1.64384470595422363e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_electron_profile271)_ 1.64255237521054901e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_electron_profile272)_ 1.64126207483724884e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_electron_profile273)_ 1.63997380005323242e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_electron_profile274)_ 1.63868754609240631e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_electron_profile275)_ 1.63740330820361908e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_electron_profile276)_ 1.63612108165060150e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_electron_profile277)_ 1.63484086171190765e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_electron_profile278)_ 1.63356264368085846e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_electron_profile279)_ 1.63228642286548309e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_electron_profile280)_ 1.63101219458846039e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_electron_profile281)_ 1.62973995418706573e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_electron_profile282)_ 1.62846969701310822e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_electron_profile283)_ 1.62720141843287994e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_electron_profile284)_ 1.62593511382709564e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_electron_profile285)_ 1.62467077859083832e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_electron_profile286)_ 1.62340840813350281e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_electron_profile287)_ 1.62214799787874084e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_electron_profile288)_ 1.62088954326440521e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_electron_profile289)_ 1.61963303974249481e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_electron_profile290)_ 1.61837848277910004e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_electron_profile291)_ 1.61712586785434845e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_electron_profile292)_ 1.61587519046234985e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_electron_profile293)_ 1.61462644611114197e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_electron_profile294)_ 1.61337963032263947e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_electron_profile295)_ 1.61213473863257568e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_electron_profile296)_ 1.61089176659045319e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_electron_profile297)_ 1.60965070975949005e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_electron_profile298)_ 1.60841156371656525e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_electron_profile299)_ 1.60717432405216766e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_electron_profile300)_ 1.60593898637034454e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_electron_profile301)_ 1.60470554628864685e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_electron_profile302)_ 1.60347399943808014e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_electron_profile303)_ 1.60224434146305054e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_electron_profile304)_ 1.60101656802131683e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_electron_profile305)_ 1.59979067478393463e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_electron_profile306)_ 1.59856665743520905e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_electron_profile307)_ 1.59734451167264374e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_electron_profile308)_ 1.59612423320688934e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_electron_profile309)_ 1.59490581776169312e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_electron_profile310)_ 1.59368926107385071e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_electron_profile311)_ 1.59247455889315399e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_electron_profile312)_ 1.59126170698234436e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_electron_profile313)_ 1.59005070111706085e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_electron_profile314)_ 1.58884153708579315e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_electron_profile315)_ 1.58763421068983124e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_electron_profile316)_ 1.58642871774321777e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_electron_profile317)_ 1.58522505407269958e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_electron_profile318)_ 1.58402321551767853e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_electron_profile319)_ 1.58282319793016541e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_electron_profile320)_ 1.58162499717472992e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_electron_profile321)_ 1.58042860912845551e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_electron_profile322)_ 1.57923402968089050e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_electron_profile323)_ 1.57804125473400146e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_electron_profile324)_ 1.57685028020212708e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_electron_profile325)_ 1.57566110201192902e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_electron_profile326)_ 1.57447371610234955e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_electron_profile327)_ 1.57328811842456177e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_electron_profile328)_ 1.57210430494192444e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_electron_profile329)_ 1.57092227162993805e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_electron_profile330)_ 1.56974201447619690e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_electron_profile331)_ 1.56856352948034363e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_electron_profile332)_ 1.56738681265402679e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_electron_profile333)_ 1.56621186002085297e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_electron_profile334)_ 1.56503866761634308e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_electron_profile335)_ 1.56386723148788788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_electron_profile336)_ 1.56269754769470306e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_electron_profile337)_ 1.56152961230778625e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_electron_profile338)_ 1.56036342140987152e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_electron_profile339)_ 1.55919897109538635e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_electron_profile340)_ 1.55803625747040863e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_electron_profile341)_ 1.55687527665262146e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_electron_profile342)_ 1.55571602477127167e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_electron_profile343)_ 1.55455849796712646e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_electron_profile344)_ 1.55340269239242981e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_electron_profile345)_ 1.55224860421086029e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_electron_profile346)_ 1.55109622959748901e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_electron_profile347)_ 1.54994556473873749e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_electron_profile348)_ 1.54879660583233337e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_electron_profile349)_ 1.54764934908727264e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_electron_profile350)_ 1.54650379072377350e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_electron_profile351)_ 1.54535992697323822e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_electron_profile352)_ 1.54421775407821014e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_electron_profile353)_ 1.54307726829233246e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_electron_profile354)_ 1.54193846588030853e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_electron_profile355)_ 1.54080134311785980e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_electron_profile356)_ 1.53966589629168610e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_electron_profile357)_ 1.53853212169942444e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_electron_profile358)_ 1.53740001564960846e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_electron_profile359)_ 1.53626957446163086e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_electron_profile360)_ 1.53514079446570007e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_electron_profile361)_ 1.53401367200280304e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_electron_profile362)_ 1.53288820342466461e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_electron_profile363)_ 1.53176438509370819e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_electron_profile364)_ 1.53064221338301697e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_electron_profile365)_ 1.52952168467629425e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_electron_profile366)_ 1.52840279536782562e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_electron_profile367)_ 1.52728554186244019e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_electron_profile368)_ 1.52616992057546967e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_electron_profile369)_ 1.52505592793271393e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_electron_profile370)_ 1.52394356037039948e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_electron_profile371)_ 1.52283281433514435e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_electron_profile372)_ 1.52172368628391693e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_electron_profile373)_ 1.52061617268400146e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_electron_profile374)_ 1.51951027001295868e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_electron_profile375)_ 1.51840597475858856e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_electron_profile376)_ 1.51730328341889465e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_electron_profile377)_ 1.51620219250204498e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_electron_profile378)_ 1.51510269852633667e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_electron_profile379)_ 1.51400479802015808e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_electron_profile380)_ 1.51290848752195343e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_electron_profile381)_ 1.51181376358018646e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_electron_profile382)_ 1.51072062275330292e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_electron_profile383)_ 1.50962906160969513e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_electron_profile384)_ 1.50853907672766663e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_electron_profile385)_ 1.50745066469539520e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_electron_profile386)_ 1.50636382211089935e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_electron_profile387)_ 1.50527854558200134e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_electron_profile388)_ 1.50419483172629089e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_electron_profile389)_ 1.50311267717109192e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_electron_profile390)_ 1.50203207855342773e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_electron_profile391)_ 1.50095303251998413e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_electron_profile392)_ 1.49987553572707672e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_electron_profile393)_ 1.49879958484061554e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_electron_profile394)_ 1.49772517653607025e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_electron_profile395)_ 1.49665230749843689e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_electron_profile396)_ 1.49558097442220337e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_electron_profile397)_ 1.49451117401131470e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_electron_profile398)_ 1.49344290297914093e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_electron_profile399)_ 1.49237615804844116e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_electron_profile400)_ 1.49131093595133331e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_electron_profile401)_ 1.49024723342925690e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_electron_profile402)_ 1.48918504723294220e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_electron_profile403)_ 1.48812437412237762e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_electron_profile404)_ 1.48706521086677429e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_electron_profile405)_ 1.48600755424453613e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_electron_profile406)_ 1.48495140104322540e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_electron_profile407)_ 1.48389674805952972e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_electron_profile408)_ 1.48284359209923187e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_electron_profile409)_ 1.48179192997717590e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_electron_profile410)_ 1.48074175851723450e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_electron_profile411)_ 1.47969307455227905e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_electron_profile412)_ 1.47864587492414581e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_electron_profile413)_ 1.47760015648360535e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_electron_profile414)_ 1.47655591609033081e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_electron_profile415)_ 1.47551315061286560e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_electron_profile416)_ 1.47447185692859436e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_electron_profile417)_ 1.47343203192370789e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_electron_profile418)_ 1.47239367249317688e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_electron_profile419)_ 1.47135677554071686e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_electron_profile420)_ 1.47032133797875977e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_electron_profile421)_ 1.46928735672842346e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_electron_profile422)_ 1.46825482871947845e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_electron_profile423)_ 1.46722375089032166e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_electron_profile424)_ 1.46619412018794220e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_electron_profile425)_ 1.46516593356789459e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_electron_profile426)_ 1.46413918799426636e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_electron_profile427)_ 1.46311388043964844e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_electron_profile428)_ 1.46209000788510681e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_electron_profile429)_ 1.46106756732015228e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_electron_profile430)_ 1.46004655574270996e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_electron_profile431)_ 1.45902697015909088e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_electron_profile432)_ 1.45800880758396210e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_electron_profile433)_ 1.45699206504031921e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_electron_profile434)_ 1.45597673955945496e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_electron_profile435)_ 1.45496282818093170e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_electron_profile436)_ 1.45395032795255249e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_electron_profile437)_ 1.45293923593033234e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_electron_profile438)_ 1.45192954917846985e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_electron_profile439)_ 1.45092126476931793e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_electron_profile440)_ 1.44991437978335724e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_electron_profile441)_ 1.44890889130916656e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_electron_profile442)_ 1.44790479644339417e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_electron_profile443)_ 1.44690209229073273e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_electron_profile444)_ 1.44590077596388794e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_electron_profile445)_ 1.44490084458355316e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_electron_profile446)_ 1.44390229527838165e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_electron_profile447)_ 1.44290512518495728e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_electron_profile448)_ 1.44190933144776947e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_electron_profile449)_ 1.44091491121918488e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_electron_profile450)_ 1.43992186165941986e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_electron_profile451)_ 1.43893017993651398e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_electron_profile452)_ 1.43793986322630280e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_electron_profile453)_ 1.43695090871239197e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_electron_profile454)_ 1.43596331358612915e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_electron_profile455)_ 1.43497707504657837e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_electron_profile456)_ 1.43399219030049286e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_electron_profile457)_ 1.43300865656228943e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_electron_profile458)_ 1.43202647105402191e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_electron_profile459)_ 1.43104563100535461e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_electron_profile460)_ 1.43006613365353699e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_electron_profile461)_ 1.42908797624337769e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_electron_profile462)_ 1.42811115602721680e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_electron_profile463)_ 1.42713567026490265e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_electron_profile464)_ 1.42616151622376648e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_electron_profile465)_ 1.42518869117859344e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_electron_profile466)_ 1.42421719241160065e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_electron_profile467)_ 1.42324701721241028e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_electron_profile468)_ 1.42227816287802429e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_electron_profile469)_ 1.42131062671280151e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_electron_profile470)_ 1.42034440602842804e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_electron_profile471)_ 1.41937949814389801e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_electron_profile472)_ 1.41841590038548401e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_electron_profile473)_ 1.41745361008671478e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_electron_profile474)_ 1.41649262458835144e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_electron_profile475)_ 1.41553294123835938e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_electron_profile476)_ 1.41457455739188751e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_electron_profile477)_ 1.41361747041124359e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_electron_profile478)_ 1.41266167766586731e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_electron_profile479)_ 1.41170717653230927e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_electron_profile480)_ 1.41075396439420532e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_electron_profile481)_ 1.40980203864225250e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_electron_profile482)_ 1.40885139667418610e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_electron_profile483)_ 1.40790203589475586e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_electron_profile484)_ 1.40695395371570221e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_electron_profile485)_ 1.40600714755573212e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_electron_profile486)_ 1.40506161484049622e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_electron_profile487)_ 1.40411735300256592e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_electron_profile488)_ 1.40317435948140900e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_electron_profile489)_ 1.40223263172336761e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_electron_profile490)_ 1.40129216718163513e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_electron_profile491)_ 1.40035296331623169e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_electron_profile492)_ 1.39941501759398376e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_electron_profile493)_ 1.39847832748849915e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_electron_profile494)_ 1.39754289048014587e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_electron_profile495)_ 1.39660870405602814e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_electron_profile496)_ 1.39567576570996552e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_electron_profile497)_ 1.39474407294246857e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_electron_profile498)_ 1.39381362326071930e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_electron_profile499)_ 1.39288441417854523e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_electron_profile500)_ 1.39195644321640106e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_electron_profile501)_ 1.39102970790134338e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_electron_profile502)_ 1.39010420576701111e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_electron_profile503)_ 1.38917993435360229e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_electron_profile504)_ 1.38825689120785217e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_electron_profile505)_ 1.38733507388301331e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_electron_profile506)_ 1.38641447993883057e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_electron_profile507)_ 1.38549510694152374e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_electron_profile508)_ 1.38457695246376282e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_electron_profile509)_ 1.38366001408464783e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_electron_profile510)_ 1.38274428938968750e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_electron_profile511)_ 1.38182977597077911e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_electron_profile512)_ 1.38091647142618500e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_electron_profile513)_ 1.38000437336051361e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_electron_profile514)_ 1.37909347938469849e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_electron_profile515)_ 1.37818378711597473e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_electron_profile516)_ 1.37727529417786285e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_electron_profile517)_ 1.37636799820014343e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_electron_profile518)_ 1.37546189681884033e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_electron_profile519)_ 1.37455698767619598e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_electron_profile520)_ 1.37365326842065613e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_electron_profile521)_ 1.37275073670684479e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_electron_profile522)_ 1.37184939019554688e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_electron_profile523)_ 1.37094922655368607e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_electron_profile524)_ 1.37005024345430695e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_electron_profile525)_ 1.36915243857655167e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_electron_profile526)_ 1.36825580960564346e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_electron_profile527)_ 1.36736035423286499e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_electron_profile528)_ 1.36646607015553833e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_electron_profile529)_ 1.36557295507700531e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_electron_profile530)_ 1.36468100670660873e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_electron_profile531)_ 1.36379022275967239e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_electron_profile532)_ 1.36290060095748047e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_electron_profile533)_ 1.36201213902726044e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_electron_profile534)_ 1.36112483470216171e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_electron_profile535)_ 1.36023868572123550e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_electron_profile536)_ 1.35935368982941956e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_electron_profile537)_ 1.35846984477751495e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_electron_profile538)_ 1.35758714832216919e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_electron_profile539)_ 1.35670559822585587e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_electron_profile540)_ 1.35582519225685776e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_electron_profile541)_ 1.35494592818924622e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_electron_profile542)_ 1.35406780380286316e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_electron_profile543)_ 1.35319081688330154e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_electron_profile544)_ 1.35231496522188873e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_electron_profile545)_ 1.35144024661566483e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_electron_profile546)_ 1.35056665886736755e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_electron_profile547)_ 1.34969419978541214e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_electron_profile548)_ 1.34882286718387222e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_electron_profile549)_ 1.34795265888246323e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_electron_profile550)_ 1.34708357270652344e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_electron_profile551)_ 1.34621560648699615e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_electron_profile552)_ 1.34534875806041077e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_electron_profile553)_ 1.34448302526886627e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_electron_profile554)_ 1.34361840596001160e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_electron_profile555)_ 1.34275489798702942e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_electron_profile556)_ 1.34189249920861771e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_electron_profile557)_ 1.34103120748897186e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_electron_profile558)_ 1.34017102069776642e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_electron_profile559)_ 1.33931193671013962e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_electron_profile560)_ 1.33845395340667374e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_electron_profile561)_ 1.33759706867337891e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_electron_profile562)_ 1.33674128040167496e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_electron_profile563)_ 1.33588658648837463e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_electron_profile564)_ 1.33503298483566635e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_electron_profile565)_ 1.33418047335109680e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_electron_profile566)_ 1.33332904994755432e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_electron_profile567)_ 1.33247871254325134e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_electron_profile568)_ 1.33162945906170685e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_electron_profile569)_ 1.33078128743173111e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_electron_profile570)_ 1.32993419558740799e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_electron_profile571)_ 1.32908818146807739e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_electron_profile572)_ 1.32824324301832001e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_electron_profile573)_ 1.32739937818794037e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_electron_profile574)_ 1.32655658493194794e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_electron_profile575)_ 1.32571486121054428e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_electron_profile576)_ 1.32487420498910492e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_electron_profile577)_ 1.32403461423816101e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_electron_profile578)_ 1.32319608693338715e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_electron_profile579)_ 1.32235862105558105e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_electron_profile580)_ 1.32152221459065002e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_electron_profile581)_ 1.32068686552959412e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_electron_profile582)_ 1.31985257186848907e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_electron_profile583)_ 1.31901933160847092e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_electron_profile584)_ 1.31818714275572113e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_electron_profile585)_ 1.31735600332144882e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_electron_profile586)_ 1.31652591132187653e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_electron_profile587)_ 1.31569686477822296e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_electron_profile588)_ 1.31486886171668839e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_electron_profile589)_ 1.31404190016843903e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_electron_profile590)_ 1.31321597816959000e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_electron_profile591)_ 1.31239109376119202e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_electron_profile592)_ 1.31156724498921417e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_electron_profile593)_ 1.31074442990452820e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_electron_profile594)_ 1.30992264656289505e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_electron_profile595)_ 1.30910189302494858e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_electron_profile596)_ 1.30828216735617905e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_electron_profile597)_ 1.30746346762691971e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_electron_profile598)_ 1.30664579191233154e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_electron_profile599)_ 1.30582913829238632e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_electron_profile600)_ 1.30501350485185364e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_electron_profile601)_ 1.30419888968028564e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_electron_profile602)_ 1.30338529087200134e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_electron_profile603)_ 1.30257270652607101e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_electron_profile604)_ 1.30176113474630386e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_electron_profile605)_ 1.30095057364123154e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_electron_profile606)_ 1.30014102132409348e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_electron_profile607)_ 1.29933247591282227e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_electron_profile608)_ 1.29852493553002975e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_electron_profile609)_ 1.29771839830299255e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_electron_profile610)_ 1.29691286236363617e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_electron_profile611)_ 1.29610832584852219e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_electron_profile612)_ 1.29530478689883331e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_electron_profile613)_ 1.29450224366035812e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_electron_profile614)_ 1.29370069428347855e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_electron_profile615)_ 1.29290013692315491e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_electron_profile616)_ 1.29210056973891022e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_electron_profile617)_ 1.29130199089481949e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_electron_profile618)_ 1.29050439855949219e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_electron_profile619)_ 1.28970779090606033e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_electron_profile620)_ 1.28891216611216385e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_electron_profile621)_ 1.28811752235993729e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_electron_profile622)_ 1.28732385783599380e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_electron_profile623)_ 1.28653117073141495e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_electron_profile624)_ 1.28573945924173401e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_electron_profile625)_ 1.28494872156692383e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_electron_profile626)_ 1.28415895591138168e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_electron_profile627)_ 1.28337016048391754e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_electron_profile628)_ 1.28258233349773972e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_electron_profile629)_ 1.28179547317044037e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_electron_profile630)_ 1.28100957772398407e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_electron_profile631)_ 1.28022464538469254e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_electron_profile632)_ 1.27944067438323181e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_electron_profile633)_ 1.27865766295460083e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_electron_profile634)_ 1.27787560933811462e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_electron_profile635)_ 1.27709451177739502e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_electron_profile636)_ 1.27631436852035294e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_electron_profile637)_ 1.27553517781918076e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_electron_profile638)_ 1.27475693793033417e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_electron_profile639)_ 1.27397964711452301e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_electron_profile640)_ 1.27320330363669571e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_electron_profile641)_ 1.27242790576602798e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_electron_profile642)_ 1.27165345177590866e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_electron_profile643)_ 1.27087993994392822e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_electron_profile644)_ 1.27010736855186508e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_electron_profile645)_ 1.26933573588567337e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_electron_profile646)_ 1.26856504023546936e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_electron_profile647)_ 1.26779527989552048e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_electron_profile648)_ 1.26702645316423157e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_electron_profile649)_ 1.26625855834413193e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_electron_profile650)_ 1.26549159374186401e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_electron_profile651)_ 1.26472555766817062e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_electron_profile652)_ 1.26396044843788147e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_electron_profile653)_ 1.26319626436990173e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_electron_profile654)_ 1.26243300378720123e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_electron_profile655)_ 1.26167066501679840e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_electron_profile656)_ 1.26090924638975128e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_electron_profile657)_ 1.26014874624114471e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_electron_profile658)_ 1.25938916291007706e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_electron_profile659)_ 1.25863049473964920e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_electron_profile660)_ 1.25787274007695236e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_electron_profile661)_ 1.25711589727305511e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_electron_profile662)_ 1.25635996468299332e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_electron_profile663)_ 1.25560494066575577e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_electron_profile664)_ 1.25485082358427490e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_electron_profile665)_ 1.25409761180541275e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_electron_profile666)_ 1.25334530369995087e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_electron_profile667)_ 1.25259389764257660e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_electron_profile668)_ 1.25184339201187393e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_electron_profile669)_ 1.25109378519030991e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_electron_profile670)_ 1.25034507556422379e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_electron_profile671)_ 1.24959726152381454e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_electron_profile672)_ 1.24885034146313095e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_electron_profile673)_ 1.24810431378005829e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_electron_profile674)_ 1.24735917687630920e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_electron_profile675)_ 1.24661492915740921e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_electron_profile676)_ 1.24587156903268814e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_electron_profile677)_ 1.24512909491526672e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_electron_profile678)_ 1.24438750522204742e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_electron_profile679)_ 1.24364679837370102e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_electron_profile680)_ 1.24290697279465683e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_electron_profile681)_ 1.24216802691309036e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_electron_profile682)_ 1.24142995916091385e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_electron_profile683)_ 1.24069276797376373e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_electron_profile684)_ 1.23995645179098999e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_electron_profile685)_ 1.23922100905564514e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_electron_profile686)_ 1.23848643821447418e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_electron_profile687)_ 1.23775273771790161e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_electron_profile688)_ 1.23701990602002243e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_electron_profile689)_ 1.23628794157859070e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_electron_profile690)_ 1.23555684285500763e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_electron_profile691)_ 1.23482660831431305e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_electron_profile692)_ 1.23409723642517288e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_electron_profile693)_ 1.23336872565986893e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_electron_profile694)_ 1.23264107449428787e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_electron_profile695)_ 1.23191428140791153e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_electron_profile696)_ 1.23118834488380539e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_electron_profile697)_ 1.23046326340860886e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_electron_profile698)_ 1.22973903547252365e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_electron_profile699)_ 1.22901565956930466e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_electron_profile700)_ 1.22829313419624817e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_electron_profile701)_ 1.22757145785418198e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_electron_profile702)_ 1.22685062904745605e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_electron_profile703)_ 1.22613064628393066e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_electron_profile704)_ 1.22541150807496643e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_electron_profile705)_ 1.22469321293541504e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_electron_profile706)_ 1.22397575938360733e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_electron_profile707)_ 1.22325914594134537e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_electron_profile708)_ 1.22254337113388977e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_electron_profile709)_ 1.22182843348995178e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_electron_profile710)_ 1.22111433154168213e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_electron_profile711)_ 1.22040106382465988e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_electron_profile712)_ 1.21968862887788528e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_electron_profile713)_ 1.21897702524376770e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_electron_profile714)_ 1.21826625146811539e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_electron_profile715)_ 1.21755630610012695e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_electron_profile716)_ 1.21684718769238068e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_electron_profile717)_ 1.21613889480082535e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_electron_profile718)_ 1.21543142598476883e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_electron_profile719)_ 1.21472477980687088e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_electron_profile720)_ 1.21401895483313049e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_electron_profile721)_ 1.21331394963287903e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_electron_profile722)_ 1.21260976277876862e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_electron_profile723)_ 1.21190639284676208e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_electron_profile724)_ 1.21120383841612640e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_electron_profile725)_ 1.21050209806941940e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_electron_profile726)_ 1.20980117039248276e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_electron_profile727)_ 1.20910105397443130e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_electron_profile728)_ 1.20840174740764481e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_electron_profile729)_ 1.20770324928775604e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_electron_profile730)_ 1.20700555821364410e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_electron_profile731)_ 1.20630867278742355e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_electron_profile732)_ 1.20561259161443634e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_electron_profile733)_ 1.20491731330323975e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_electron_profile734)_ 1.20422283646560120e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_electron_profile735)_ 1.20352915971648483e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_electron_profile736)_ 1.20283628167404587e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_electron_profile737)_ 1.20214420095961884e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_electron_profile738)_ 1.20145291619771011e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_electron_profile739)_ 1.20076242601598709e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_electron_profile740)_ 1.20007272904527161e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_electron_profile741)_ 1.19938382391952789e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_electron_profile742)_ 1.19869570927585648e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_electron_profile743)_ 1.19800838375448288e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_electron_profile744)_ 1.19732184599874939e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_electron_profile745)_ 1.19663609465510742e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_electron_profile746)_ 1.19595112837310699e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_electron_profile747)_ 1.19526694580538788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_electron_profile748)_ 1.19458354560767181e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_electron_profile749)_ 1.19390092643875290e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_electron_profile750)_ 1.19321908696049011e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_electron_profile751)_ 1.19253802583779587e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_electron_profile752)_ 1.19185774173862961e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_electron_profile753)_ 1.19117823333398956e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_electron_profile754)_ 1.19049949929790192e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_electron_profile755)_ 1.18982153830741333e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_electron_profile756)_ 1.18914434904258255e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_electron_profile757)_ 1.18846793018647186e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_electron_profile758)_ 1.18779228042513809e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_electron_profile759)_ 1.18711739844762360e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_electron_profile760)_ 1.18644328294594986e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_electron_profile761)_ 1.18576993261510666e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_electron_profile762)_ 1.18509734615304489e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_electron_profile763)_ 1.18442552226066788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_electron_profile764)_ 1.18375445964182312e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_electron_profile765)_ 1.18308415700329437e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_electron_profile766)_ 1.18241461305479202e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_electron_profile767)_ 1.18174582650894669e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_electron_profile768)_ 1.18107779608129898e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_electron_profile769)_ 1.18041052049029251e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_electron_profile770)_ 1.17974399845726593e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_electron_profile771)_ 1.17907822870644363e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_electron_profile772)_ 1.17841320996492828e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_electron_profile773)_ 1.17774894096269333e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_electron_profile774)_ 1.17708542043257339e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_electron_profile775)_ 1.17642264711025787e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_electron_profile776)_ 1.17576061973428101e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_electron_profile777)_ 1.17509933704601669e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_electron_profile778)_ 1.17443879778966721e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_electron_profile779)_ 1.17377900071225723e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_electron_profile780)_ 1.17311994456362610e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_electron_profile781)_ 1.17246162809641846e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_electron_profile782)_ 1.17180405006607864e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_electron_profile783)_ 1.17114720923083954e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_electron_profile784)_ 1.17049110435171860e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_electron_profile785)_ 1.16983573419250717e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_electron_profile786)_ 1.16918109751976379e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_electron_profile787)_ 1.16852719310280655e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_electron_profile788)_ 1.16787401971370483e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_electron_profile789)_ 1.16722157612727264e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_electron_profile790)_ 1.16656986112105972e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_electron_profile791)_ 1.16591887347534485e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_electron_profile792)_ 1.16526861197312759e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_electron_profile793)_ 1.16461907540012146e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_electron_profile794)_ 1.16397026254474533e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_electron_profile795)_ 1.16332217219811676e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_electron_profile796)_ 1.16267480315404419e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_electron_profile797)_ 1.16202815420902008e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_electron_profile798)_ 1.16138222416221115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_electron_profile799)_ 1.16073701181545456e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_electron_profile800)_ 1.16009251597324707e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_electron_profile801)_ 1.15944873544274033e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_electron_profile802)_ 1.15880566903373154e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_electron_profile803)_ 1.15816331555865723e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_electron_profile804)_ 1.15752167383258606e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_electron_profile805)_ 1.15688074267321014e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_electron_profile806)_ 1.15624052090083984e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_electron_profile807)_ 1.15560100733839478e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_electron_profile808)_ 1.15496220081139725e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_electron_profile809)_ 1.15432410014796570e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_electron_profile810)_ 1.15368670417880630e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_electron_profile811)_ 1.15305001173720627e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_electron_profile812)_ 1.15241402165902817e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_electron_profile813)_ 1.15177873278270004e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_electron_profile814)_ 1.15114414394921097e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_electron_profile815)_ 1.15051025400210220e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_electron_profile816)_ 1.14987706178746155e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_electron_profile817)_ 1.14924456615391525e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_electron_profile818)_ 1.14861276595262115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_electron_profile819)_ 1.14798166003726288e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_electron_profile820)_ 1.14735124726404053e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_electron_profile821)_ 1.14672152649166748e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_electron_profile822)_ 1.14609249658135925e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_electron_profile823)_ 1.14546415639682968e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_electron_profile824)_ 1.14483650480428360e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_electron_profile825)_ 1.14420954067240845e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_electron_profile826)_ 1.14358326287236893e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_electron_profile827)_ 1.14295767027779953e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_electron_profile828)_ 1.14233276176479919e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_electron_profile829)_ 1.14170853621192245e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_electron_profile830)_ 1.14108499250017365e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_electron_profile831)_ 1.14046212951300095e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_electron_profile832)_ 1.13983994613628891e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_electron_profile833)_ 1.13921844125835205e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_electron_profile834)_ 1.13859761376992798e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_electron_profile835)_ 1.13797746256417068e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_electron_profile836)_ 1.13735798653664551e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_electron_profile837)_ 1.13673918458531982e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_electron_profile838)_ 1.13612105561055908e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_electron_profile839)_ 1.13550359851511841e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_electron_profile840)_ 1.13488681220413788e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_electron_profile841)_ 1.13427069558513474e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_electron_profile842)_ 1.13365524756799667e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_electron_profile843)_ 1.13304046706497726e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_electron_profile844)_ 1.13242635299068710e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_electron_profile845)_ 1.13181290426208984e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_electron_profile846)_ 1.13120011979849380e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_electron_profile847)_ 1.13058799852154648e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_electron_profile848)_ 1.12997653935522903e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_electron_profile849)_ 1.12936574122584747e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_electron_profile850)_ 1.12875560306203018e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_electron_profile851)_ 1.12814612379471802e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_electron_profile852)_ 1.12753730235716034e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_electron_profile853)_ 1.12692913768490692e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_electron_profile854)_ 1.12632162871580475e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_electron_profile855)_ 1.12571477438998825e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_electron_profile856)_ 1.12510857364987503e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_electron_profile857)_ 1.12450302544016022e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_electron_profile858)_ 1.12389812870780960e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_electron_profile859)_ 1.12329388240205261e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_electron_profile860)_ 1.12269028547437820e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_electron_profile861)_ 1.12208733687852722e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_electron_profile862)_ 1.12148503557048721e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_electron_profile863)_ 1.12088338050848587e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_electron_profile864)_ 1.12028237065298523e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_electron_profile865)_ 1.11968200496667633e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_electron_profile866)_ 1.11908228241447128e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_electron_profile867)_ 1.11848320196349991e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_electron_profile868)_ 1.11788476258310226e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_electron_profile869)_ 1.11728696324482254e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_electron_profile870)_ 1.11668980292240402e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_electron_profile871)_ 1.11609328059178314e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_electron_profile872)_ 1.11549739523108261e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_electron_profile873)_ 1.11490214582060699e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_electron_profile874)_ 1.11430753134283600e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_electron_profile875)_ 1.11371355078241882e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_electron_profile876)_ 1.11312020312616821e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_electron_profile877)_ 1.11252748736305542e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_electron_profile878)_ 1.11193540248420334e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_electron_profile879)_ 1.11134394748288193e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_electron_profile880)_ 1.11075312135450180e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_electron_profile881)_ 1.11016292309660873e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_electron_profile882)_ 1.10957335170887817e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_electron_profile883)_ 1.10898440619310913e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_electron_profile884)_ 1.10839608555321884e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_electron_profile885)_ 1.10780838879523743e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_electron_profile886)_ 1.10722131492730133e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_electron_profile887)_ 1.10663486295964935e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_electron_profile888)_ 1.10604903190461533e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_electron_profile889)_ 1.10546382077662338e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_electron_profile890)_ 1.10487922859218292e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_electron_profile891)_ 1.10429525436988251e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_electron_profile892)_ 1.10371189713038437e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_electron_profile893)_ 1.10312915589641907e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_electron_profile894)_ 1.10254702969277985e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_electron_profile895)_ 1.10196551754631744e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_electron_profile896)_ 1.10138461848593460e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_electron_profile897)_ 1.10080433154258057e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_electron_profile898)_ 1.10022465574924591e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_electron_profile899)_ 1.09964559014095673e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_electron_profile900)_ 1.09906713375477005e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_electron_profile901)_ 1.09848928562976746e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_electron_profile902)_ 1.09791204480705078e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_electron_profile903)_ 1.09733541032973618e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_electron_profile904)_ 1.09675938124294891e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_electron_profile905)_ 1.09618395659381836e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_electron_profile906)_ 1.09560913543147232e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_electron_profile907)_ 1.09503491680703247e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_electron_profile908)_ 1.09446129977360809e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_electron_profile909)_ 1.09388828338629196e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_electron_profile910)_ 1.09331586670215485e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_electron_profile911)_ 1.09274404878023926e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_electron_profile912)_ 1.09217282868155655e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_electron_profile913)_ 1.09160220546907928e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_electron_profile914)_ 1.09103217820773773e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_electron_profile915)_ 1.09046274596441422e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_electron_profile916)_ 1.08989390780793839e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_electron_profile917)_ 1.08932566280908127e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_electron_profile918)_ 1.08875801004055115e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_electron_profile919)_ 1.08819094857698853e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_electron_profile920)_ 1.08762447749495987e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_electron_profile921)_ 1.08705859587295410e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_electron_profile922)_ 1.08649330279137680e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_electron_profile923)_ 1.08592859733254547e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_electron_profile924)_ 1.08536447858068451e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_electron_profile925)_ 1.08480094562191986e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_electron_profile926)_ 1.08423799754427490e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_electron_profile927)_ 1.08367563343766495e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_electron_profile928)_ 1.08311385239389221e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_electron_profile929)_ 1.08255265350664124e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_electron_profile930)_ 1.08199203587147476e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_electron_profile931)_ 1.08143199858582703e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_electron_profile932)_ 1.08087254074900040e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_electron_profile933)_ 1.08031366146216019e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_electron_profile934)_ 1.07975535982832962e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_electron_profile935)_ 1.07919763495238510e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_electron_profile936)_ 1.07864048594105209e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_electron_profile937)_ 1.07808391190289871e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_electron_profile938)_ 1.07752791194833313e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_electron_profile939)_ 1.07697248518959686e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_electron_profile940)_ 1.07641763074076126e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_electron_profile941)_ 1.07586334771772278e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_electron_profile942)_ 1.07530963523819733e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_electron_profile943)_ 1.07475649242171707e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_electron_profile944)_ 1.07420391838962357e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_electron_profile945)_ 1.07365191226506592e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_electron_profile946)_ 1.07310047317299332e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_electron_profile947)_ 1.07254960024015305e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_electron_profile948)_ 1.07199929259508347e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_electron_profile949)_ 1.07144954936811172e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_electron_profile950)_ 1.07090036969134689e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_electron_profile951)_ 1.07035175269867691e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_electron_profile952)_ 1.06980369752576431e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_electron_profile953)_ 1.06925620331003983e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_electron_profile954)_ 1.06870926919069962e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_electron_profile955)_ 1.06816289430870041e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_electron_profile956)_ 1.06761707780675415e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_electron_profile957)_ 1.06707181882932480e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_electron_profile958)_ 1.06652711652262268e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_electron_profile959)_ 1.06598297003460083e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_electron_profile960)_ 1.06543937851495041e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_electron_profile961)_ 1.06489634111509567e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_electron_profile962)_ 1.06435385698819046e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_electron_profile963)_ 1.06381192528911301e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_electron_profile964)_ 1.06327054517446198e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_electron_profile965)_ 1.06272971580255234e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_electron_profile966)_ 1.06218943633341034e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_electron_profile967)_ 1.06164970592876923e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_electron_profile968)_ 1.06111052375206589e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_electron_profile969)_ 1.06057188896843552e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_electron_profile970)_ 1.06003380074470703e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_electron_profile971)_ 1.05949625824940033e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_electron_profile972)_ 1.05895926065272064e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_electron_profile973)_ 1.05842280712655411e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_electron_profile974)_ 1.05788689684446472e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_electron_profile975)_ 1.05735152898168930e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_electron_profile976)_ 1.05681670271513306e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_electron_profile977)_ 1.05628241722336594e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_electron_profile978)_ 1.05574867168661835e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_electron_profile979)_ 1.05521546528677658e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_electron_profile980)_ 1.05468279720737885e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_electron_profile981)_ 1.05415066663361130e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_electron_profile982)_ 1.05361907275230347e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_electron_profile983)_ 1.05308801475192413e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_electron_profile984)_ 1.05255749182257828e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_electron_profile985)_ 1.05202750315600098e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_electron_profile986)_ 1.05149804794555511e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_electron_profile987)_ 1.05096912538622620e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_electron_profile988)_ 1.05044073467461929e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_electron_profile989)_ 1.04991287500895355e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_electron_profile990)_ 1.04938554558905960e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_electron_profile991)_ 1.04885874561637421e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_electron_profile992)_ 1.04833247429393768e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_electron_profile993)_ 1.04780673082638794e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_electron_profile994)_ 1.04728151441995895e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_electron_profile995)_ 1.04675682428247391e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_electron_profile996)_ 1.04623265962334396e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_electron_profile997)_ 1.04570901965356247e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_electron_profile998)_ 1.04518590358570175e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_electron_profile999)_ 1.04466331063390884e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_electron_profile1000)_ 1.04414124001390198e+11 +Plasma_electron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_electron_profile1001)_ 1.04361969094296616e+11 +Volume_averaged_deuteron_toroidal_Larmor_frequency_(ωc)_(Hz)_____________ (freq_plasma_larmor_toroidal_deuteron_vol_avg)_ 3.79103494964304045e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_0_____________________ (freq_plasma_larmor_toroidal_deuteron_profile0)_ 5.68655242446456030e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_1_____________________ (freq_plasma_larmor_toroidal_deuteron_profile1)_ 5.68087722244413719e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_2_____________________ (freq_plasma_larmor_toroidal_deuteron_profile2)_ 5.67521333687839061e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_3_____________________ (freq_plasma_larmor_toroidal_deuteron_profile3)_ 5.66956073395321220e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_4_____________________ (freq_plasma_larmor_toroidal_deuteron_profile4)_ 5.66391937998908013e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_5_____________________ (freq_plasma_larmor_toroidal_deuteron_profile5)_ 5.65828924144038260e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_6_____________________ (freq_plasma_larmor_toroidal_deuteron_profile6)_ 5.65267028489476219e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_7_____________________ (freq_plasma_larmor_toroidal_deuteron_profile7)_ 5.64706247707244679e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_8_____________________ (freq_plasma_larmor_toroidal_deuteron_profile8)_ 5.64146578482559472e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_9_____________________ (freq_plasma_larmor_toroidal_deuteron_profile9)_ 5.63588017513764948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_10____________________ (freq_plasma_larmor_toroidal_deuteron_profile10)_ 5.63030561512267664e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_11____________________ (freq_plasma_larmor_toroidal_deuteron_profile11)_ 5.62474207202472910e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_12____________________ (freq_plasma_larmor_toroidal_deuteron_profile12)_ 5.61918951321720183e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_13____________________ (freq_plasma_larmor_toroidal_deuteron_profile13)_ 5.61364790620219409e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_14____________________ (freq_plasma_larmor_toroidal_deuteron_profile14)_ 5.60811721860987693e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_15____________________ (freq_plasma_larmor_toroidal_deuteron_profile15)_ 5.60259741819785908e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_16____________________ (freq_plasma_larmor_toroidal_deuteron_profile16)_ 5.59708847285056636e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_17____________________ (freq_plasma_larmor_toroidal_deuteron_profile17)_ 5.59159035057860985e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_18____________________ (freq_plasma_larmor_toroidal_deuteron_profile18)_ 5.58610301951818019e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_19____________________ (freq_plasma_larmor_toroidal_deuteron_profile19)_ 5.58062644793041795e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_20____________________ (freq_plasma_larmor_toroidal_deuteron_profile20)_ 5.57516060420080796e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_21____________________ (freq_plasma_larmor_toroidal_deuteron_profile21)_ 5.56970545683857724e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_22____________________ (freq_plasma_larmor_toroidal_deuteron_profile22)_ 5.56426097447607517e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_23____________________ (freq_plasma_larmor_toroidal_deuteron_profile23)_ 5.55882712586818859e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_24____________________ (freq_plasma_larmor_toroidal_deuteron_profile24)_ 5.55340387989173234e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_25____________________ (freq_plasma_larmor_toroidal_deuteron_profile25)_ 5.54799120554485917e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_26____________________ (freq_plasma_larmor_toroidal_deuteron_profile26)_ 5.54258907194647118e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_27____________________ (freq_plasma_larmor_toroidal_deuteron_profile27)_ 5.53719744833562747e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_28____________________ (freq_plasma_larmor_toroidal_deuteron_profile28)_ 5.53181630407096744e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_29____________________ (freq_plasma_larmor_toroidal_deuteron_profile29)_ 5.52644560863012150e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_30____________________ (freq_plasma_larmor_toroidal_deuteron_profile30)_ 5.52108533160914183e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_31____________________ (freq_plasma_larmor_toroidal_deuteron_profile31)_ 5.51573544272192419e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_32____________________ (freq_plasma_larmor_toroidal_deuteron_profile32)_ 5.51039591179963797e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_33____________________ (freq_plasma_larmor_toroidal_deuteron_profile33)_ 5.50506670879016072e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_34____________________ (freq_plasma_larmor_toroidal_deuteron_profile34)_ 5.49974780375751257e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_35____________________ (freq_plasma_larmor_toroidal_deuteron_profile35)_ 5.49443916688129827e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_36____________________ (freq_plasma_larmor_toroidal_deuteron_profile36)_ 5.48914076845614836e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_37____________________ (freq_plasma_larmor_toroidal_deuteron_profile37)_ 5.48385257889116108e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_38____________________ (freq_plasma_larmor_toroidal_deuteron_profile38)_ 5.47857456870936006e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_39____________________ (freq_plasma_larmor_toroidal_deuteron_profile39)_ 5.47330670854713991e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_40____________________ (freq_plasma_larmor_toroidal_deuteron_profile40)_ 5.46804896915372238e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_41____________________ (freq_plasma_larmor_toroidal_deuteron_profile41)_ 5.46280132139061913e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_42____________________ (freq_plasma_larmor_toroidal_deuteron_profile42)_ 5.45756373623108864e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_43____________________ (freq_plasma_larmor_toroidal_deuteron_profile43)_ 5.45233618475960344e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_44____________________ (freq_plasma_larmor_toroidal_deuteron_profile44)_ 5.44711863817131668e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_45____________________ (freq_plasma_larmor_toroidal_deuteron_profile45)_ 5.44191106777153388e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_46____________________ (freq_plasma_larmor_toroidal_deuteron_profile46)_ 5.43671344497519210e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_47____________________ (freq_plasma_larmor_toroidal_deuteron_profile47)_ 5.43152574130632207e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_48____________________ (freq_plasma_larmor_toroidal_deuteron_profile48)_ 5.42634792839754596e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_49____________________ (freq_plasma_larmor_toroidal_deuteron_profile49)_ 5.42117997798954770e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_50____________________ (freq_plasma_larmor_toroidal_deuteron_profile50)_ 5.41602186193056703e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_51____________________ (freq_plasma_larmor_toroidal_deuteron_profile51)_ 5.41087355217588022e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_52____________________ (freq_plasma_larmor_toroidal_deuteron_profile52)_ 5.40573502078729793e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_53____________________ (freq_plasma_larmor_toroidal_deuteron_profile53)_ 5.40060623993266225e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_54____________________ (freq_plasma_larmor_toroidal_deuteron_profile54)_ 5.39548718188533187e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_55____________________ (freq_plasma_larmor_toroidal_deuteron_profile55)_ 5.39037781902369857e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_56____________________ (freq_plasma_larmor_toroidal_deuteron_profile56)_ 5.38527812383067682e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_57____________________ (freq_plasma_larmor_toroidal_deuteron_profile57)_ 5.38018806889321804e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_58____________________ (freq_plasma_larmor_toroidal_deuteron_profile58)_ 5.37510762690181881e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_59____________________ (freq_plasma_larmor_toroidal_deuteron_profile59)_ 5.37003677065002322e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_60____________________ (freq_plasma_larmor_toroidal_deuteron_profile60)_ 5.36497547303395495e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_61____________________ (freq_plasma_larmor_toroidal_deuteron_profile61)_ 5.35992370705181360e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_62____________________ (freq_plasma_larmor_toroidal_deuteron_profile62)_ 5.35488144580341130e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_63____________________ (freq_plasma_larmor_toroidal_deuteron_profile63)_ 5.34984866248968542e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_64____________________ (freq_plasma_larmor_toroidal_deuteron_profile64)_ 5.34482533041222990e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_65____________________ (freq_plasma_larmor_toroidal_deuteron_profile65)_ 5.33981142297281921e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_66____________________ (freq_plasma_larmor_toroidal_deuteron_profile66)_ 5.33480691367293820e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_67____________________ (freq_plasma_larmor_toroidal_deuteron_profile67)_ 5.32981177611332089e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_68____________________ (freq_plasma_larmor_toroidal_deuteron_profile68)_ 5.32482598399347588e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_69____________________ (freq_plasma_larmor_toroidal_deuteron_profile69)_ 5.31984951111123785e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_70____________________ (freq_plasma_larmor_toroidal_deuteron_profile70)_ 5.31488233136230186e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_71____________________ (freq_plasma_larmor_toroidal_deuteron_profile71)_ 5.30992441873976216e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_72____________________ (freq_plasma_larmor_toroidal_deuteron_profile72)_ 5.30497574733366817e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_73____________________ (freq_plasma_larmor_toroidal_deuteron_profile73)_ 5.30003629133056402e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_74____________________ (freq_plasma_larmor_toroidal_deuteron_profile74)_ 5.29510602501304597e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_75____________________ (freq_plasma_larmor_toroidal_deuteron_profile75)_ 5.29018492275931761e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_76____________________ (freq_plasma_larmor_toroidal_deuteron_profile76)_ 5.28527295904273391e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_77____________________ (freq_plasma_larmor_toroidal_deuteron_profile77)_ 5.28037010843137875e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_78____________________ (freq_plasma_larmor_toroidal_deuteron_profile78)_ 5.27547634558760449e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_79____________________ (freq_plasma_larmor_toroidal_deuteron_profile79)_ 5.27059164526761547e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_80____________________ (freq_plasma_larmor_toroidal_deuteron_profile80)_ 5.26571598232102320e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_81____________________ (freq_plasma_larmor_toroidal_deuteron_profile81)_ 5.26084933169041127e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_82____________________ (freq_plasma_larmor_toroidal_deuteron_profile82)_ 5.25599166841091961e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_83____________________ (freq_plasma_larmor_toroidal_deuteron_profile83)_ 5.25114296760980189e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_84____________________ (freq_plasma_larmor_toroidal_deuteron_profile84)_ 5.24630320450601429e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_85____________________ (freq_plasma_larmor_toroidal_deuteron_profile85)_ 5.24147235440978408e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_86____________________ (freq_plasma_larmor_toroidal_deuteron_profile86)_ 5.23665039272219390e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_87____________________ (freq_plasma_larmor_toroidal_deuteron_profile87)_ 5.23183729493476599e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_88____________________ (freq_plasma_larmor_toroidal_deuteron_profile88)_ 5.22703303662904128e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_89____________________ (freq_plasma_larmor_toroidal_deuteron_profile89)_ 5.22223759347617105e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_90____________________ (freq_plasma_larmor_toroidal_deuteron_profile90)_ 5.21745094123650342e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_91____________________ (freq_plasma_larmor_toroidal_deuteron_profile91)_ 5.21267305575918034e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_92____________________ (freq_plasma_larmor_toroidal_deuteron_profile92)_ 5.20790391298172474e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_93____________________ (freq_plasma_larmor_toroidal_deuteron_profile93)_ 5.20314348892963827e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_94____________________ (freq_plasma_larmor_toroidal_deuteron_profile94)_ 5.19839175971600562e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_95____________________ (freq_plasma_larmor_toroidal_deuteron_profile95)_ 5.19364870154108256e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_96____________________ (freq_plasma_larmor_toroidal_deuteron_profile96)_ 5.18891429069190994e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_97____________________ (freq_plasma_larmor_toroidal_deuteron_profile97)_ 5.18418850354191735e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_98____________________ (freq_plasma_larmor_toroidal_deuteron_profile98)_ 5.17947131655052304e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_99____________________ (freq_plasma_larmor_toroidal_deuteron_profile99)_ 5.17476270626275018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_100___________________ (freq_plasma_larmor_toroidal_deuteron_profile100)_ 5.17006264930883273e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_101___________________ (freq_plasma_larmor_toroidal_deuteron_profile101)_ 5.16537112240383476e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_102___________________ (freq_plasma_larmor_toroidal_deuteron_profile102)_ 5.16068810234725773e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_103___________________ (freq_plasma_larmor_toroidal_deuteron_profile103)_ 5.15601356602266803e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_104___________________ (freq_plasma_larmor_toroidal_deuteron_profile104)_ 5.15134749039730877e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_105___________________ (freq_plasma_larmor_toroidal_deuteron_profile105)_ 5.14668985252172276e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_106___________________ (freq_plasma_larmor_toroidal_deuteron_profile106)_ 5.14204062952938229e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_107___________________ (freq_plasma_larmor_toroidal_deuteron_profile107)_ 5.13739979863630459e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_108___________________ (freq_plasma_larmor_toroidal_deuteron_profile108)_ 5.13276733714068979e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_109___________________ (freq_plasma_larmor_toroidal_deuteron_profile109)_ 5.12814322242254540e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_110___________________ (freq_plasma_larmor_toroidal_deuteron_profile110)_ 5.12352743194331676e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_111___________________ (freq_plasma_larmor_toroidal_deuteron_profile111)_ 5.11891994324552566e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_112___________________ (freq_plasma_larmor_toroidal_deuteron_profile112)_ 5.11432073395240381e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_113___________________ (freq_plasma_larmor_toroidal_deuteron_profile113)_ 5.10972978176752701e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_114___________________ (freq_plasma_larmor_toroidal_deuteron_profile114)_ 5.10514706447446197e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_115___________________ (freq_plasma_larmor_toroidal_deuteron_profile115)_ 5.10057255993640199e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_116___________________ (freq_plasma_larmor_toroidal_deuteron_profile116)_ 5.09600624609581530e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_117___________________ (freq_plasma_larmor_toroidal_deuteron_profile117)_ 5.09144810097408295e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_118___________________ (freq_plasma_larmor_toroidal_deuteron_profile118)_ 5.08689810267115682e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_119___________________ (freq_plasma_larmor_toroidal_deuteron_profile119)_ 5.08235622936520129e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_120___________________ (freq_plasma_larmor_toroidal_deuteron_profile120)_ 5.07782245931224301e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_121___________________ (freq_plasma_larmor_toroidal_deuteron_profile121)_ 5.07329677084583342e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_122___________________ (freq_plasma_larmor_toroidal_deuteron_profile122)_ 5.06877914237669110e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_123___________________ (freq_plasma_larmor_toroidal_deuteron_profile123)_ 5.06426955239237174e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_124___________________ (freq_plasma_larmor_toroidal_deuteron_profile124)_ 5.05976797945691124e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_125___________________ (freq_plasma_larmor_toroidal_deuteron_profile125)_ 5.05527440221050158e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_126___________________ (freq_plasma_larmor_toroidal_deuteron_profile126)_ 5.05078879936914369e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_127___________________ (freq_plasma_larmor_toroidal_deuteron_profile127)_ 5.04631114972431287e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_128___________________ (freq_plasma_larmor_toroidal_deuteron_profile128)_ 5.04184143214262649e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_129___________________ (freq_plasma_larmor_toroidal_deuteron_profile129)_ 5.03737962556550950e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_130___________________ (freq_plasma_larmor_toroidal_deuteron_profile130)_ 5.03292570900886431e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_131___________________ (freq_plasma_larmor_toroidal_deuteron_profile131)_ 5.02847966156274304e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_132___________________ (freq_plasma_larmor_toroidal_deuteron_profile132)_ 5.02404146239101961e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_133___________________ (freq_plasma_larmor_toroidal_deuteron_profile133)_ 5.01961109073106274e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_134___________________ (freq_plasma_larmor_toroidal_deuteron_profile134)_ 5.01518852589341402e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_135___________________ (freq_plasma_larmor_toroidal_deuteron_profile135)_ 5.01077374726146609e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_136___________________ (freq_plasma_larmor_toroidal_deuteron_profile136)_ 5.00636673429113999e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_137___________________ (freq_plasma_larmor_toroidal_deuteron_profile137)_ 5.00196746651056707e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_138___________________ (freq_plasma_larmor_toroidal_deuteron_profile138)_ 4.99757592351977676e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_139___________________ (freq_plasma_larmor_toroidal_deuteron_profile139)_ 4.99319208499037251e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_140___________________ (freq_plasma_larmor_toroidal_deuteron_profile140)_ 4.98881593066522852e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_141___________________ (freq_plasma_larmor_toroidal_deuteron_profile141)_ 4.98444744035816565e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_142___________________ (freq_plasma_larmor_toroidal_deuteron_profile142)_ 4.98008659395365268e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_143___________________ (freq_plasma_larmor_toroidal_deuteron_profile143)_ 4.97573337140649110e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_144___________________ (freq_plasma_larmor_toroidal_deuteron_profile144)_ 4.97138775274150670e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_145___________________ (freq_plasma_larmor_toroidal_deuteron_profile145)_ 4.96704971805325001e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_146___________________ (freq_plasma_larmor_toroidal_deuteron_profile146)_ 4.96271924750568867e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_147___________________ (freq_plasma_larmor_toroidal_deuteron_profile147)_ 4.95839632133190259e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_148___________________ (freq_plasma_larmor_toroidal_deuteron_profile148)_ 4.95408091983379051e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_149___________________ (freq_plasma_larmor_toroidal_deuteron_profile149)_ 4.94977302338175997e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_150___________________ (freq_plasma_larmor_toroidal_deuteron_profile150)_ 4.94547261241444424e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_151___________________ (freq_plasma_larmor_toroidal_deuteron_profile151)_ 4.94117966743838936e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_152___________________ (freq_plasma_larmor_toroidal_deuteron_profile152)_ 4.93689416902777553e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_153___________________ (freq_plasma_larmor_toroidal_deuteron_profile153)_ 4.93261609782411233e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_154___________________ (freq_plasma_larmor_toroidal_deuteron_profile154)_ 4.92834543453595191e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_155___________________ (freq_plasma_larmor_toroidal_deuteron_profile155)_ 4.92408215993860364e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_156___________________ (freq_plasma_larmor_toroidal_deuteron_profile156)_ 4.91982625487383306e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_157___________________ (freq_plasma_larmor_toroidal_deuteron_profile157)_ 4.91557770024958923e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_158___________________ (freq_plasma_larmor_toroidal_deuteron_profile158)_ 4.91133647703971118e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_159___________________ (freq_plasma_larmor_toroidal_deuteron_profile159)_ 4.90710256628364250e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_160___________________ (freq_plasma_larmor_toroidal_deuteron_profile160)_ 4.90287594908615425e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_161___________________ (freq_plasma_larmor_toroidal_deuteron_profile161)_ 4.89865660661706105e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_162___________________ (freq_plasma_larmor_toroidal_deuteron_profile162)_ 4.89444452011094242e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_163___________________ (freq_plasma_larmor_toroidal_deuteron_profile163)_ 4.89023967086686045e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_164___________________ (freq_plasma_larmor_toroidal_deuteron_profile164)_ 4.88604204024809077e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_165___________________ (freq_plasma_larmor_toroidal_deuteron_profile165)_ 4.88185160968184024e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_166___________________ (freq_plasma_larmor_toroidal_deuteron_profile166)_ 4.87766836065897569e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_167___________________ (freq_plasma_larmor_toroidal_deuteron_profile167)_ 4.87349227473375499e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_168___________________ (freq_plasma_larmor_toroidal_deuteron_profile168)_ 4.86932333352354541e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_169___________________ (freq_plasma_larmor_toroidal_deuteron_profile169)_ 4.86516151870856956e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_170___________________ (freq_plasma_larmor_toroidal_deuteron_profile170)_ 4.86100681203161851e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_171___________________ (freq_plasma_larmor_toroidal_deuteron_profile171)_ 4.85685919529780298e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_172___________________ (freq_plasma_larmor_toroidal_deuteron_profile172)_ 4.85271865037427545e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_173___________________ (freq_plasma_larmor_toroidal_deuteron_profile173)_ 4.84858515918997005e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_174___________________ (freq_plasma_larmor_toroidal_deuteron_profile174)_ 4.84445870373534113e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_175___________________ (freq_plasma_larmor_toroidal_deuteron_profile175)_ 4.84033926606209651e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_176___________________ (freq_plasma_larmor_toroidal_deuteron_profile176)_ 4.83622682828294411e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_177___________________ (freq_plasma_larmor_toroidal_deuteron_profile177)_ 4.83212137257132977e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_178___________________ (freq_plasma_larmor_toroidal_deuteron_profile178)_ 4.82802288116117492e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_179___________________ (freq_plasma_larmor_toroidal_deuteron_profile179)_ 4.82393133634663150e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_180___________________ (freq_plasma_larmor_toroidal_deuteron_profile180)_ 4.81984672048181593e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_181___________________ (freq_plasma_larmor_toroidal_deuteron_profile181)_ 4.81576901598056257e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_182___________________ (freq_plasma_larmor_toroidal_deuteron_profile182)_ 4.81169820531616658e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_183___________________ (freq_plasma_larmor_toroidal_deuteron_profile183)_ 4.80763427102113664e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_184___________________ (freq_plasma_larmor_toroidal_deuteron_profile184)_ 4.80357719568694085e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_185___________________ (freq_plasma_larmor_toroidal_deuteron_profile185)_ 4.79952696196376458e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_186___________________ (freq_plasma_larmor_toroidal_deuteron_profile186)_ 4.79548355256025717e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_187___________________ (freq_plasma_larmor_toroidal_deuteron_profile187)_ 4.79144695024328679e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_188___________________ (freq_plasma_larmor_toroidal_deuteron_profile188)_ 4.78741713783770055e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_189___________________ (freq_plasma_larmor_toroidal_deuteron_profile189)_ 4.78339409822607115e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_190___________________ (freq_plasma_larmor_toroidal_deuteron_profile190)_ 4.77937781434846818e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_191___________________ (freq_plasma_larmor_toroidal_deuteron_profile191)_ 4.77536826920220256e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_192___________________ (freq_plasma_larmor_toroidal_deuteron_profile192)_ 4.77136544584159777e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_193___________________ (freq_plasma_larmor_toroidal_deuteron_profile193)_ 4.76736932737774253e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_194___________________ (freq_plasma_larmor_toroidal_deuteron_profile194)_ 4.76337989697826430e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_195___________________ (freq_plasma_larmor_toroidal_deuteron_profile195)_ 4.75939713786707744e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_196___________________ (freq_plasma_larmor_toroidal_deuteron_profile196)_ 4.75542103332416415e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_197___________________ (freq_plasma_larmor_toroidal_deuteron_profile197)_ 4.75145156668532938e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_198___________________ (freq_plasma_larmor_toroidal_deuteron_profile198)_ 4.74748872134197280e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_199___________________ (freq_plasma_larmor_toroidal_deuteron_profile199)_ 4.74353248074085414e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_200___________________ (freq_plasma_larmor_toroidal_deuteron_profile200)_ 4.73958282838386744e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_201___________________ (freq_plasma_larmor_toroidal_deuteron_profile201)_ 4.73563974782780781e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_202___________________ (freq_plasma_larmor_toroidal_deuteron_profile202)_ 4.73170322268414423e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_203___________________ (freq_plasma_larmor_toroidal_deuteron_profile203)_ 4.72777323661879227e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_204___________________ (freq_plasma_larmor_toroidal_deuteron_profile204)_ 4.72384977335188836e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_205___________________ (freq_plasma_larmor_toroidal_deuteron_profile205)_ 4.71993281665756553e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_206___________________ (freq_plasma_larmor_toroidal_deuteron_profile206)_ 4.71602235036373213e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_207___________________ (freq_plasma_larmor_toroidal_deuteron_profile207)_ 4.71211835835184157e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_208___________________ (freq_plasma_larmor_toroidal_deuteron_profile208)_ 4.70822082455668002e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_209___________________ (freq_plasma_larmor_toroidal_deuteron_profile209)_ 4.70432973296613693e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_210___________________ (freq_plasma_larmor_toroidal_deuteron_profile210)_ 4.70044506762099564e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_211___________________ (freq_plasma_larmor_toroidal_deuteron_profile211)_ 4.69656681261470690e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_212___________________ (freq_plasma_larmor_toroidal_deuteron_profile212)_ 4.69269495209317803e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_213___________________ (freq_plasma_larmor_toroidal_deuteron_profile213)_ 4.68882947025455087e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_214___________________ (freq_plasma_larmor_toroidal_deuteron_profile214)_ 4.68497035134899169e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_215___________________ (freq_plasma_larmor_toroidal_deuteron_profile215)_ 4.68111757967847437e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_216___________________ (freq_plasma_larmor_toroidal_deuteron_profile216)_ 4.67727113959656954e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_217___________________ (freq_plasma_larmor_toroidal_deuteron_profile217)_ 4.67343101550823003e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_218___________________ (freq_plasma_larmor_toroidal_deuteron_profile218)_ 4.66959719186958671e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_219___________________ (freq_plasma_larmor_toroidal_deuteron_profile219)_ 4.66576965318772495e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_220___________________ (freq_plasma_larmor_toroidal_deuteron_profile220)_ 4.66194838402049541e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_221___________________ (freq_plasma_larmor_toroidal_deuteron_profile221)_ 4.65813336897628903e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_222___________________ (freq_plasma_larmor_toroidal_deuteron_profile222)_ 4.65432459271383956e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_223___________________ (freq_plasma_larmor_toroidal_deuteron_profile223)_ 4.65052203994201422e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_224___________________ (freq_plasma_larmor_toroidal_deuteron_profile224)_ 4.64672569541961253e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_225___________________ (freq_plasma_larmor_toroidal_deuteron_profile225)_ 4.64293554395515919e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_226___________________ (freq_plasma_larmor_toroidal_deuteron_profile226)_ 4.63915157040670365e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_227___________________ (freq_plasma_larmor_toroidal_deuteron_profile227)_ 4.63537375968161598e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_228___________________ (freq_plasma_larmor_toroidal_deuteron_profile228)_ 4.63160209673639163e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_229___________________ (freq_plasma_larmor_toroidal_deuteron_profile229)_ 4.62783656657644287e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_230___________________ (freq_plasma_larmor_toroidal_deuteron_profile230)_ 4.62407715425590947e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_231___________________ (freq_plasma_larmor_toroidal_deuteron_profile231)_ 4.62032384487745464e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_232___________________ (freq_plasma_larmor_toroidal_deuteron_profile232)_ 4.61657662359207198e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_233___________________ (freq_plasma_larmor_toroidal_deuteron_profile233)_ 4.61283547559888586e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_234___________________ (freq_plasma_larmor_toroidal_deuteron_profile234)_ 4.60910038614495918e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_235___________________ (freq_plasma_larmor_toroidal_deuteron_profile235)_ 4.60537134052510113e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_236___________________ (freq_plasma_larmor_toroidal_deuteron_profile236)_ 4.60164832408166975e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_237___________________ (freq_plasma_larmor_toroidal_deuteron_profile237)_ 4.59793132220438272e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_238___________________ (freq_plasma_larmor_toroidal_deuteron_profile238)_ 4.59422032033012509e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_239___________________ (freq_plasma_larmor_toroidal_deuteron_profile239)_ 4.59051530394276232e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_240___________________ (freq_plasma_larmor_toroidal_deuteron_profile240)_ 4.58681625857294574e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_241___________________ (freq_plasma_larmor_toroidal_deuteron_profile241)_ 4.58312316979792714e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_242___________________ (freq_plasma_larmor_toroidal_deuteron_profile242)_ 4.57943602324137166e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_243___________________ (freq_plasma_larmor_toroidal_deuteron_profile243)_ 4.57575480457317159e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_244___________________ (freq_plasma_larmor_toroidal_deuteron_profile244)_ 4.57207949950925708e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_245___________________ (freq_plasma_larmor_toroidal_deuteron_profile245)_ 4.56841009381141663e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_246___________________ (freq_plasma_larmor_toroidal_deuteron_profile246)_ 4.56474657328710929e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_247___________________ (freq_plasma_larmor_toroidal_deuteron_profile247)_ 4.56108892378928289e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_248___________________ (freq_plasma_larmor_toroidal_deuteron_profile248)_ 4.55743713121619299e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_249___________________ (freq_plasma_larmor_toroidal_deuteron_profile249)_ 4.55379118151121959e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_250___________________ (freq_plasma_larmor_toroidal_deuteron_profile250)_ 4.55015106066269055e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_251___________________ (freq_plasma_larmor_toroidal_deuteron_profile251)_ 4.54651675470369458e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_252___________________ (freq_plasma_larmor_toroidal_deuteron_profile252)_ 4.54288824971191138e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_253___________________ (freq_plasma_larmor_toroidal_deuteron_profile253)_ 4.53926553180943057e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_254___________________ (freq_plasma_larmor_toroidal_deuteron_profile254)_ 4.53564858716256917e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_255___________________ (freq_plasma_larmor_toroidal_deuteron_profile255)_ 4.53203740198170766e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_256___________________ (freq_plasma_larmor_toroidal_deuteron_profile256)_ 4.52843196252110228e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_257___________________ (freq_plasma_larmor_toroidal_deuteron_profile257)_ 4.52483225507871583e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_258___________________ (freq_plasma_larmor_toroidal_deuteron_profile258)_ 4.52123826599604785e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_259___________________ (freq_plasma_larmor_toroidal_deuteron_profile259)_ 4.51764998165795654e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_260___________________ (freq_plasma_larmor_toroidal_deuteron_profile260)_ 4.51406738849248588e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_261___________________ (freq_plasma_larmor_toroidal_deuteron_profile261)_ 4.51049047297070101e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_262___________________ (freq_plasma_larmor_toroidal_deuteron_profile262)_ 4.50691922160651237e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_263___________________ (freq_plasma_larmor_toroidal_deuteron_profile263)_ 4.50335362095650658e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_264___________________ (freq_plasma_larmor_toroidal_deuteron_profile264)_ 4.49979365761978254e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_265___________________ (freq_plasma_larmor_toroidal_deuteron_profile265)_ 4.49623931823777631e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_266___________________ (freq_plasma_larmor_toroidal_deuteron_profile266)_ 4.49269058949409947e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_267___________________ (freq_plasma_larmor_toroidal_deuteron_profile267)_ 4.48914745811437219e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_268___________________ (freq_plasma_larmor_toroidal_deuteron_profile268)_ 4.48560991086605638e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_269___________________ (freq_plasma_larmor_toroidal_deuteron_profile269)_ 4.48207793455828726e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_270___________________ (freq_plasma_larmor_toroidal_deuteron_profile270)_ 4.47855151604171991e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_271___________________ (freq_plasma_larmor_toroidal_deuteron_profile271)_ 4.47503064220835418e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_272___________________ (freq_plasma_larmor_toroidal_deuteron_profile272)_ 4.47151529999137819e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_273___________________ (freq_plasma_larmor_toroidal_deuteron_profile273)_ 4.46800547636501193e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_274___________________ (freq_plasma_larmor_toroidal_deuteron_profile274)_ 4.46450115834433362e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_275___________________ (freq_plasma_larmor_toroidal_deuteron_profile275)_ 4.46100233298512921e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_276___________________ (freq_plasma_larmor_toroidal_deuteron_profile276)_ 4.45750898738373220e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_277___________________ (freq_plasma_larmor_toroidal_deuteron_profile277)_ 4.45402110867685825e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_278___________________ (freq_plasma_larmor_toroidal_deuteron_profile278)_ 4.45053868404145837e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_279___________________ (freq_plasma_larmor_toroidal_deuteron_profile279)_ 4.44706170069455132e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_280___________________ (freq_plasma_larmor_toroidal_deuteron_profile280)_ 4.44359014589307159e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_281___________________ (freq_plasma_larmor_toroidal_deuteron_profile281)_ 4.44012400693371743e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_282___________________ (freq_plasma_larmor_toroidal_deuteron_profile282)_ 4.43666327115278617e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_283___________________ (freq_plasma_larmor_toroidal_deuteron_profile283)_ 4.43320792592603192e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_284___________________ (freq_plasma_larmor_toroidal_deuteron_profile284)_ 4.42975795866850168e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_285___________________ (freq_plasma_larmor_toroidal_deuteron_profile285)_ 4.42631335683438927e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_286___________________ (freq_plasma_larmor_toroidal_deuteron_profile286)_ 4.42287410791688040e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_287___________________ (freq_plasma_larmor_toroidal_deuteron_profile287)_ 4.41944019944800138e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_288___________________ (freq_plasma_larmor_toroidal_deuteron_profile288)_ 4.41601161899846792e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_289___________________ (freq_plasma_larmor_toroidal_deuteron_profile289)_ 4.41258835417753905e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_290___________________ (freq_plasma_larmor_toroidal_deuteron_profile290)_ 4.40917039263286293e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_291___________________ (freq_plasma_larmor_toroidal_deuteron_profile291)_ 4.40575772205032930e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_292___________________ (freq_plasma_larmor_toroidal_deuteron_profile292)_ 4.40235033015392497e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_293___________________ (freq_plasma_larmor_toroidal_deuteron_profile293)_ 4.39894820470558256e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_294___________________ (freq_plasma_larmor_toroidal_deuteron_profile294)_ 4.39555133350503817e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_295___________________ (freq_plasma_larmor_toroidal_deuteron_profile295)_ 4.39215970438968018e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_296___________________ (freq_plasma_larmor_toroidal_deuteron_profile296)_ 4.38877330523440614e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_297___________________ (freq_plasma_larmor_toroidal_deuteron_profile297)_ 4.38539212395148352e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_298___________________ (freq_plasma_larmor_toroidal_deuteron_profile298)_ 4.38201614849039689e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_299___________________ (freq_plasma_larmor_toroidal_deuteron_profile299)_ 4.37864536683771163e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_300___________________ (freq_plasma_larmor_toroidal_deuteron_profile300)_ 4.37527976701692939e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_301___________________ (freq_plasma_larmor_toroidal_deuteron_profile301)_ 4.37191933708834499e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_302___________________ (freq_plasma_larmor_toroidal_deuteron_profile302)_ 4.36856406514890715e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_303___________________ (freq_plasma_larmor_toroidal_deuteron_profile303)_ 4.36521393933207393e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_304___________________ (freq_plasma_larmor_toroidal_deuteron_profile304)_ 4.36186894780768305e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_305___________________ (freq_plasma_larmor_toroidal_deuteron_profile305)_ 4.35852907878179625e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_306___________________ (freq_plasma_larmor_toroidal_deuteron_profile306)_ 4.35519432049657702e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_307___________________ (freq_plasma_larmor_toroidal_deuteron_profile307)_ 4.35186466123014167e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_308___________________ (freq_plasma_larmor_toroidal_deuteron_profile308)_ 4.34854008929642886e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_309___________________ (freq_plasma_larmor_toroidal_deuteron_profile309)_ 4.34522059304505736e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_310___________________ (freq_plasma_larmor_toroidal_deuteron_profile310)_ 4.34190616086119413e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_311___________________ (freq_plasma_larmor_toroidal_deuteron_profile311)_ 4.33859678116541505e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_312___________________ (freq_plasma_larmor_toroidal_deuteron_profile312)_ 4.33529244241357595e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_313___________________ (freq_plasma_larmor_toroidal_deuteron_profile313)_ 4.33199313309667036e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_314___________________ (freq_plasma_larmor_toroidal_deuteron_profile314)_ 4.32869884174070284e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_315___________________ (freq_plasma_larmor_toroidal_deuteron_profile315)_ 4.32540955690655410e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_316___________________ (freq_plasma_larmor_toroidal_deuteron_profile316)_ 4.32212526718984395e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_317___________________ (freq_plasma_larmor_toroidal_deuteron_profile317)_ 4.31884596122080758e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_318___________________ (freq_plasma_larmor_toroidal_deuteron_profile318)_ 4.31557162766415775e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_319___________________ (freq_plasma_larmor_toroidal_deuteron_profile319)_ 4.31230225521895885e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_320___________________ (freq_plasma_larmor_toroidal_deuteron_profile320)_ 4.30903783261849061e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_321___________________ (freq_plasma_larmor_toroidal_deuteron_profile321)_ 4.30577834863012508e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_322___________________ (freq_plasma_larmor_toroidal_deuteron_profile322)_ 4.30252379205519632e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_323___________________ (freq_plasma_larmor_toroidal_deuteron_profile323)_ 4.29927415172887072e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_324___________________ (freq_plasma_larmor_toroidal_deuteron_profile324)_ 4.29602941652001962e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_325___________________ (freq_plasma_larmor_toroidal_deuteron_profile325)_ 4.29278957533108965e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_326___________________ (freq_plasma_larmor_toroidal_deuteron_profile326)_ 4.28955461709798425e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_327___________________ (freq_plasma_larmor_toroidal_deuteron_profile327)_ 4.28632453078992814e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_328___________________ (freq_plasma_larmor_toroidal_deuteron_profile328)_ 4.28309930540934876e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_329___________________ (freq_plasma_larmor_toroidal_deuteron_profile329)_ 4.27987892999174744e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_330___________________ (freq_plasma_larmor_toroidal_deuteron_profile330)_ 4.27666339360557869e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_331___________________ (freq_plasma_larmor_toroidal_deuteron_profile331)_ 4.27345268535212055e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_332___________________ (freq_plasma_larmor_toroidal_deuteron_profile332)_ 4.27024679436535984e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_333___________________ (freq_plasma_larmor_toroidal_deuteron_profile333)_ 4.26704570981186256e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_334___________________ (freq_plasma_larmor_toroidal_deuteron_profile334)_ 4.26384942089065537e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_335___________________ (freq_plasma_larmor_toroidal_deuteron_profile335)_ 4.26065791683310270e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_336___________________ (freq_plasma_larmor_toroidal_deuteron_profile336)_ 4.25747118690278605e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_337___________________ (freq_plasma_larmor_toroidal_deuteron_profile337)_ 4.25428922039538473e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_338___________________ (freq_plasma_larmor_toroidal_deuteron_profile338)_ 4.25111200663855448e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_339___________________ (freq_plasma_larmor_toroidal_deuteron_profile339)_ 4.24793953499180973e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_340___________________ (freq_plasma_larmor_toroidal_deuteron_profile340)_ 4.24477179484640211e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_341___________________ (freq_plasma_larmor_toroidal_deuteron_profile341)_ 4.24160877562520429e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_342___________________ (freq_plasma_larmor_toroidal_deuteron_profile342)_ 4.23845046678259447e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_343___________________ (freq_plasma_larmor_toroidal_deuteron_profile343)_ 4.23529685780433416e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_344___________________ (freq_plasma_larmor_toroidal_deuteron_profile344)_ 4.23214793820745349e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_345___________________ (freq_plasma_larmor_toroidal_deuteron_profile345)_ 4.22900369754013717e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_346___________________ (freq_plasma_larmor_toroidal_deuteron_profile346)_ 4.22586412538160682e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_347___________________ (freq_plasma_larmor_toroidal_deuteron_profile347)_ 4.22272921134200618e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_348___________________ (freq_plasma_larmor_toroidal_deuteron_profile348)_ 4.21959894506228641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_349___________________ (freq_plasma_larmor_toroidal_deuteron_profile349)_ 4.21647331621409282e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_350___________________ (freq_plasma_larmor_toroidal_deuteron_profile350)_ 4.21335231449964866e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_351___________________ (freq_plasma_larmor_toroidal_deuteron_profile351)_ 4.21023592965164557e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_352___________________ (freq_plasma_larmor_toroidal_deuteron_profile352)_ 4.20712415143313035e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_353___________________ (freq_plasma_larmor_toroidal_deuteron_profile353)_ 4.20401696963738948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_354___________________ (freq_plasma_larmor_toroidal_deuteron_profile354)_ 4.20091437408784106e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_355___________________ (freq_plasma_larmor_toroidal_deuteron_profile355)_ 4.19781635463792384e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_356___________________ (freq_plasma_larmor_toroidal_deuteron_profile356)_ 4.19472290117098391e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_357___________________ (freq_plasma_larmor_toroidal_deuteron_profile357)_ 4.19163400360016599e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_358___________________ (freq_plasma_larmor_toroidal_deuteron_profile358)_ 4.18854965186830312e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_359___________________ (freq_plasma_larmor_toroidal_deuteron_profile359)_ 4.18546983594781235e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_360___________________ (freq_plasma_larmor_toroidal_deuteron_profile360)_ 4.18239454584057629e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_361___________________ (freq_plasma_larmor_toroidal_deuteron_profile361)_ 4.17932377157784477e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_362___________________ (freq_plasma_larmor_toroidal_deuteron_profile362)_ 4.17625750322012082e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_363___________________ (freq_plasma_larmor_toroidal_deuteron_profile363)_ 4.17319573085705638e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_364___________________ (freq_plasma_larmor_toroidal_deuteron_profile364)_ 4.17013844460734427e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_365___________________ (freq_plasma_larmor_toroidal_deuteron_profile365)_ 4.16708563461861238e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_366___________________ (freq_plasma_larmor_toroidal_deuteron_profile366)_ 4.16403729106731862e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_367___________________ (freq_plasma_larmor_toroidal_deuteron_profile367)_ 4.16099340415864438e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_368___________________ (freq_plasma_larmor_toroidal_deuteron_profile368)_ 4.15795396412638724e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_369___________________ (freq_plasma_larmor_toroidal_deuteron_profile369)_ 4.15491896123286486e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_370___________________ (freq_plasma_larmor_toroidal_deuteron_profile370)_ 4.15188838576879948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_371___________________ (freq_plasma_larmor_toroidal_deuteron_profile371)_ 4.14886222805322483e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_372___________________ (freq_plasma_larmor_toroidal_deuteron_profile372)_ 4.14584047843337506e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_373___________________ (freq_plasma_larmor_toroidal_deuteron_profile373)_ 4.14282312728458941e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_374___________________ (freq_plasma_larmor_toroidal_deuteron_profile374)_ 4.13981016501020044e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_375___________________ (freq_plasma_larmor_toroidal_deuteron_profile375)_ 4.13680158204144165e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_376___________________ (freq_plasma_larmor_toroidal_deuteron_profile376)_ 4.13379736883734539e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_377___________________ (freq_plasma_larmor_toroidal_deuteron_profile377)_ 4.13079751588463336e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_378___________________ (freq_plasma_larmor_toroidal_deuteron_profile378)_ 4.12780201369762570e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_379___________________ (freq_plasma_larmor_toroidal_deuteron_profile379)_ 4.12481085281813443e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_380___________________ (freq_plasma_larmor_toroidal_deuteron_profile380)_ 4.12182402381536886e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_381___________________ (freq_plasma_larmor_toroidal_deuteron_profile381)_ 4.11884151728583500e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_382___________________ (freq_plasma_larmor_toroidal_deuteron_profile382)_ 4.11586332385323569e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_383___________________ (freq_plasma_larmor_toroidal_deuteron_profile383)_ 4.11288943416837081e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_384___________________ (freq_plasma_larmor_toroidal_deuteron_profile384)_ 4.10991983890904337e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_385___________________ (freq_plasma_larmor_toroidal_deuteron_profile385)_ 4.10695452877995968e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_386___________________ (freq_plasma_larmor_toroidal_deuteron_profile386)_ 4.10399349451263398e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_387___________________ (freq_plasma_larmor_toroidal_deuteron_profile387)_ 4.10103672686529160e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_388___________________ (freq_plasma_larmor_toroidal_deuteron_profile388)_ 4.09808421662276760e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_389___________________ (freq_plasma_larmor_toroidal_deuteron_profile389)_ 4.09513595459642038e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_390___________________ (freq_plasma_larmor_toroidal_deuteron_profile390)_ 4.09219193162402958e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_391___________________ (freq_plasma_larmor_toroidal_deuteron_profile391)_ 4.08925213856970146e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_392___________________ (freq_plasma_larmor_toroidal_deuteron_profile392)_ 4.08631656632377952e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_393___________________ (freq_plasma_larmor_toroidal_deuteron_profile393)_ 4.08338520580274388e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_394___________________ (freq_plasma_larmor_toroidal_deuteron_profile394)_ 4.08045804794912189e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_395___________________ (freq_plasma_larmor_toroidal_deuteron_profile395)_ 4.07753508373139277e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_396___________________ (freq_plasma_larmor_toroidal_deuteron_profile396)_ 4.07461630414389819e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_397___________________ (freq_plasma_larmor_toroidal_deuteron_profile397)_ 4.07170170020674169e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_398___________________ (freq_plasma_larmor_toroidal_deuteron_profile398)_ 4.06879126296570823e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_399___________________ (freq_plasma_larmor_toroidal_deuteron_profile399)_ 4.06588498349216059e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_400___________________ (freq_plasma_larmor_toroidal_deuteron_profile400)_ 4.06298285288295820e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_401___________________ (freq_plasma_larmor_toroidal_deuteron_profile401)_ 4.06008486226036027e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_402___________________ (freq_plasma_larmor_toroidal_deuteron_profile402)_ 4.05719100277193561e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_403___________________ (freq_plasma_larmor_toroidal_deuteron_profile403)_ 4.05430126559047401e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_404___________________ (freq_plasma_larmor_toroidal_deuteron_profile404)_ 4.05141564191389605e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_405___________________ (freq_plasma_larmor_toroidal_deuteron_profile405)_ 4.04853412296516672e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_406___________________ (freq_plasma_larmor_toroidal_deuteron_profile406)_ 4.04565669999219999e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_407___________________ (freq_plasma_larmor_toroidal_deuteron_profile407)_ 4.04278336426777318e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_408___________________ (freq_plasma_larmor_toroidal_deuteron_profile408)_ 4.03991410708944276e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_409___________________ (freq_plasma_larmor_toroidal_deuteron_profile409)_ 4.03704891977945045e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_410___________________ (freq_plasma_larmor_toroidal_deuteron_profile410)_ 4.03418779368463829e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_411___________________ (freq_plasma_larmor_toroidal_deuteron_profile411)_ 4.03133072017636299e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_412___________________ (freq_plasma_larmor_toroidal_deuteron_profile412)_ 4.02847769065040722e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_413___________________ (freq_plasma_larmor_toroidal_deuteron_profile413)_ 4.02562869652689174e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_414___________________ (freq_plasma_larmor_toroidal_deuteron_profile414)_ 4.02278372925019413e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_415___________________ (freq_plasma_larmor_toroidal_deuteron_profile415)_ 4.01994278028885946e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_416___________________ (freq_plasma_larmor_toroidal_deuteron_profile416)_ 4.01710584113551527e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_417___________________ (freq_plasma_larmor_toroidal_deuteron_profile417)_ 4.01427290330678746e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_418___________________ (freq_plasma_larmor_toroidal_deuteron_profile418)_ 4.01144395834321678e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_419___________________ (freq_plasma_larmor_toroidal_deuteron_profile419)_ 4.00861899780917168e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_420___________________ (freq_plasma_larmor_toroidal_deuteron_profile420)_ 4.00579801329276860e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_421___________________ (freq_plasma_larmor_toroidal_deuteron_profile421)_ 4.00298099640578404e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_422___________________ (freq_plasma_larmor_toroidal_deuteron_profile422)_ 4.00016793878357336e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_423___________________ (freq_plasma_larmor_toroidal_deuteron_profile423)_ 3.99735883208498955e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_424___________________ (freq_plasma_larmor_toroidal_deuteron_profile424)_ 3.99455366799229756e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_425___________________ (freq_plasma_larmor_toroidal_deuteron_profile425)_ 3.99175243821109682e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_426___________________ (freq_plasma_larmor_toroidal_deuteron_profile426)_ 3.98895513447023481e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_427___________________ (freq_plasma_larmor_toroidal_deuteron_profile427)_ 3.98616174852172658e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_428___________________ (freq_plasma_larmor_toroidal_deuteron_profile428)_ 3.98337227214067504e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_429___________________ (freq_plasma_larmor_toroidal_deuteron_profile429)_ 3.98058669712519199e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_430___________________ (freq_plasma_larmor_toroidal_deuteron_profile430)_ 3.97780501529631317e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_431___________________ (freq_plasma_larmor_toroidal_deuteron_profile431)_ 3.97502721849792302e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_432___________________ (freq_plasma_larmor_toroidal_deuteron_profile432)_ 3.97225329859666750e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_433___________________ (freq_plasma_larmor_toroidal_deuteron_profile433)_ 3.96948324748188555e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_434___________________ (freq_plasma_larmor_toroidal_deuteron_profile434)_ 3.96671705706552267e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_435___________________ (freq_plasma_larmor_toroidal_deuteron_profile435)_ 3.96395471928205043e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_436___________________ (freq_plasma_larmor_toroidal_deuteron_profile436)_ 3.96119622608839571e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_437___________________ (freq_plasma_larmor_toroidal_deuteron_profile437)_ 3.95844156946385577e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_438___________________ (freq_plasma_larmor_toroidal_deuteron_profile438)_ 3.95569074141002446e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_439___________________ (freq_plasma_larmor_toroidal_deuteron_profile439)_ 3.95294373395071179e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_440___________________ (freq_plasma_larmor_toroidal_deuteron_profile440)_ 3.95020053913187012e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_441___________________ (freq_plasma_larmor_toroidal_deuteron_profile441)_ 3.94746114902151525e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_442___________________ (freq_plasma_larmor_toroidal_deuteron_profile442)_ 3.94472555570964962e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_443___________________ (freq_plasma_larmor_toroidal_deuteron_profile443)_ 3.94199375130818859e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_444___________________ (freq_plasma_larmor_toroidal_deuteron_profile444)_ 3.93926572795088217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_445___________________ (freq_plasma_larmor_toroidal_deuteron_profile445)_ 3.93654147779323980e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_446___________________ (freq_plasma_larmor_toroidal_deuteron_profile446)_ 3.93382099301245660e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_447___________________ (freq_plasma_larmor_toroidal_deuteron_profile447)_ 3.93110426580733731e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_448___________________ (freq_plasma_larmor_toroidal_deuteron_profile448)_ 3.92839128839822337e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_449___________________ (freq_plasma_larmor_toroidal_deuteron_profile449)_ 3.92568205302691311e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_450___________________ (freq_plasma_larmor_toroidal_deuteron_profile450)_ 3.92297655195659921e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_451___________________ (freq_plasma_larmor_toroidal_deuteron_profile451)_ 3.92027477747178078e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_452___________________ (freq_plasma_larmor_toroidal_deuteron_profile452)_ 3.91757672187820002e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_453___________________ (freq_plasma_larmor_toroidal_deuteron_profile453)_ 3.91488237750276774e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_454___________________ (freq_plasma_larmor_toroidal_deuteron_profile454)_ 3.91219173669348806e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_455___________________ (freq_plasma_larmor_toroidal_deuteron_profile455)_ 3.90950479181938544e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_456___________________ (freq_plasma_larmor_toroidal_deuteron_profile456)_ 3.90682153527043611e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_457___________________ (freq_plasma_larmor_toroidal_deuteron_profile457)_ 3.90414195945749357e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_458___________________ (freq_plasma_larmor_toroidal_deuteron_profile458)_ 3.90146605681221709e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_459___________________ (freq_plasma_larmor_toroidal_deuteron_profile459)_ 3.89879381978700310e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_460___________________ (freq_plasma_larmor_toroidal_deuteron_profile460)_ 3.89612524085491076e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_461___________________ (freq_plasma_larmor_toroidal_deuteron_profile461)_ 3.89346031250959262e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_462___________________ (freq_plasma_larmor_toroidal_deuteron_profile462)_ 3.89079902726522610e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_463___________________ (freq_plasma_larmor_toroidal_deuteron_profile463)_ 3.88814137765643671e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_464___________________ (freq_plasma_larmor_toroidal_deuteron_profile464)_ 3.88548735623824149e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_465___________________ (freq_plasma_larmor_toroidal_deuteron_profile465)_ 3.88283695558596551e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_466___________________ (freq_plasma_larmor_toroidal_deuteron_profile466)_ 3.88019016829517782e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_467___________________ (freq_plasma_larmor_toroidal_deuteron_profile467)_ 3.87754698698162511e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_468___________________ (freq_plasma_larmor_toroidal_deuteron_profile468)_ 3.87490740428116024e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_469___________________ (freq_plasma_larmor_toroidal_deuteron_profile469)_ 3.87227141284967735e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_470___________________ (freq_plasma_larmor_toroidal_deuteron_profile470)_ 3.86963900536303446e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_471___________________ (freq_plasma_larmor_toroidal_deuteron_profile471)_ 3.86701017451700047e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_472___________________ (freq_plasma_larmor_toroidal_deuteron_profile472)_ 3.86438491302717179e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_473___________________ (freq_plasma_larmor_toroidal_deuteron_profile473)_ 3.86176321362891719e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_474___________________ (freq_plasma_larmor_toroidal_deuteron_profile474)_ 3.85914506907730550e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_475___________________ (freq_plasma_larmor_toroidal_deuteron_profile475)_ 3.85653047214703634e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_476___________________ (freq_plasma_larmor_toroidal_deuteron_profile476)_ 3.85391941563237980e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_477___________________ (freq_plasma_larmor_toroidal_deuteron_profile477)_ 3.85131189234710708e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_478___________________ (freq_plasma_larmor_toroidal_deuteron_profile478)_ 3.84870789512442499e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_479___________________ (freq_plasma_larmor_toroidal_deuteron_profile479)_ 3.84610741681690812e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_480___________________ (freq_plasma_larmor_toroidal_deuteron_profile480)_ 3.84351045029643849e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_481___________________ (freq_plasma_larmor_toroidal_deuteron_profile481)_ 3.84091698845413327e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_482___________________ (freq_plasma_larmor_toroidal_deuteron_profile482)_ 3.83832702420028597e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_483___________________ (freq_plasma_larmor_toroidal_deuteron_profile483)_ 3.83574055046430230e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_484___________________ (freq_plasma_larmor_toroidal_deuteron_profile484)_ 3.83315756019462943e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_485___________________ (freq_plasma_larmor_toroidal_deuteron_profile485)_ 3.83057804635869786e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_486___________________ (freq_plasma_larmor_toroidal_deuteron_profile486)_ 3.82800200194285437e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_487___________________ (freq_plasma_larmor_toroidal_deuteron_profile487)_ 3.82542941995230168e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_488___________________ (freq_plasma_larmor_toroidal_deuteron_profile488)_ 3.82286029341103062e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_489___________________ (freq_plasma_larmor_toroidal_deuteron_profile489)_ 3.82029461536176130e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_490___________________ (freq_plasma_larmor_toroidal_deuteron_profile490)_ 3.81773237886587903e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_491___________________ (freq_plasma_larmor_toroidal_deuteron_profile491)_ 3.81517357700336725e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_492___________________ (freq_plasma_larmor_toroidal_deuteron_profile492)_ 3.81261820287275612e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_493___________________ (freq_plasma_larmor_toroidal_deuteron_profile493)_ 3.81006624959104657e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_494___________________ (freq_plasma_larmor_toroidal_deuteron_profile494)_ 3.80751771029366180e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_495___________________ (freq_plasma_larmor_toroidal_deuteron_profile495)_ 3.80497257813437507e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_496___________________ (freq_plasma_larmor_toroidal_deuteron_profile496)_ 3.80243084628525376e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_497___________________ (freq_plasma_larmor_toroidal_deuteron_profile497)_ 3.79989250793659836e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_498___________________ (freq_plasma_larmor_toroidal_deuteron_profile498)_ 3.79735755629688129e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_499___________________ (freq_plasma_larmor_toroidal_deuteron_profile499)_ 3.79482598459268287e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_500___________________ (freq_plasma_larmor_toroidal_deuteron_profile500)_ 3.79229778606863767e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_501___________________ (freq_plasma_larmor_toroidal_deuteron_profile501)_ 3.78977295398736671e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_502___________________ (freq_plasma_larmor_toroidal_deuteron_profile502)_ 3.78725148162942380e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_503___________________ (freq_plasma_larmor_toroidal_deuteron_profile503)_ 3.78473336229323372e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_504___________________ (freq_plasma_larmor_toroidal_deuteron_profile504)_ 3.78221858929503188e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_505___________________ (freq_plasma_larmor_toroidal_deuteron_profile505)_ 3.77970715596880764e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_506___________________ (freq_plasma_larmor_toroidal_deuteron_profile506)_ 3.77719905566624030e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_507___________________ (freq_plasma_larmor_toroidal_deuteron_profile507)_ 3.77469428175664768e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_508___________________ (freq_plasma_larmor_toroidal_deuteron_profile508)_ 3.77219282762692198e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_509___________________ (freq_plasma_larmor_toroidal_deuteron_profile509)_ 3.76969468668147400e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_510___________________ (freq_plasma_larmor_toroidal_deuteron_profile510)_ 3.76719985234217346e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_511___________________ (freq_plasma_larmor_toroidal_deuteron_profile511)_ 3.76470831804829687e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_512___________________ (freq_plasma_larmor_toroidal_deuteron_profile512)_ 3.76222007725646049e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_513___________________ (freq_plasma_larmor_toroidal_deuteron_profile513)_ 3.75973512344057038e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_514___________________ (freq_plasma_larmor_toroidal_deuteron_profile514)_ 3.75725345009176582e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_515___________________ (freq_plasma_larmor_toroidal_deuteron_profile515)_ 3.75477505071835369e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_516___________________ (freq_plasma_larmor_toroidal_deuteron_profile516)_ 3.75229991884576455e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_517___________________ (freq_plasma_larmor_toroidal_deuteron_profile517)_ 3.74982804801648483e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_518___________________ (freq_plasma_larmor_toroidal_deuteron_profile518)_ 3.74735943179001063e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_519___________________ (freq_plasma_larmor_toroidal_deuteron_profile519)_ 3.74489406374277994e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_520___________________ (freq_plasma_larmor_toroidal_deuteron_profile520)_ 3.74243193746812940e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_521___________________ (freq_plasma_larmor_toroidal_deuteron_profile521)_ 3.73997304657623172e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_522___________________ (freq_plasma_larmor_toroidal_deuteron_profile522)_ 3.73751738469404131e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_523___________________ (freq_plasma_larmor_toroidal_deuteron_profile523)_ 3.73506494546523839e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_524___________________ (freq_plasma_larmor_toroidal_deuteron_profile524)_ 3.73261572255018055e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_525___________________ (freq_plasma_larmor_toroidal_deuteron_profile525)_ 3.73016970962583497e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_526___________________ (freq_plasma_larmor_toroidal_deuteron_profile526)_ 3.72772690038573965e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_527___________________ (freq_plasma_larmor_toroidal_deuteron_profile527)_ 3.72528728853993714e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_528___________________ (freq_plasma_larmor_toroidal_deuteron_profile528)_ 3.72285086781492829e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_529___________________ (freq_plasma_larmor_toroidal_deuteron_profile529)_ 3.72041763195361122e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_530___________________ (freq_plasma_larmor_toroidal_deuteron_profile530)_ 3.71798757471523508e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_531___________________ (freq_plasma_larmor_toroidal_deuteron_profile531)_ 3.71556068987534270e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_532___________________ (freq_plasma_larmor_toroidal_deuteron_profile532)_ 3.71313697122571692e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_533___________________ (freq_plasma_larmor_toroidal_deuteron_profile533)_ 3.71071641257433072e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_534___________________ (freq_plasma_larmor_toroidal_deuteron_profile534)_ 3.70829900774529353e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_535___________________ (freq_plasma_larmor_toroidal_deuteron_profile535)_ 3.70588475057879165e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_536___________________ (freq_plasma_larmor_toroidal_deuteron_profile536)_ 3.70347363493105024e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_537___________________ (freq_plasma_larmor_toroidal_deuteron_profile537)_ 3.70106565467426851e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_538___________________ (freq_plasma_larmor_toroidal_deuteron_profile538)_ 3.69866080369657278e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_539___________________ (freq_plasma_larmor_toroidal_deuteron_profile539)_ 3.69625907590196431e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_540___________________ (freq_plasma_larmor_toroidal_deuteron_profile540)_ 3.69386046521026865e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_541___________________ (freq_plasma_larmor_toroidal_deuteron_profile541)_ 3.69146496555708423e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_542___________________ (freq_plasma_larmor_toroidal_deuteron_profile542)_ 3.68907257089372948e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_543___________________ (freq_plasma_larmor_toroidal_deuteron_profile543)_ 3.68668327518719137e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_544___________________ (freq_plasma_larmor_toroidal_deuteron_profile544)_ 3.68429707242008075e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_545___________________ (freq_plasma_larmor_toroidal_deuteron_profile545)_ 3.68191395659057200e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_546___________________ (freq_plasma_larmor_toroidal_deuteron_profile546)_ 3.67953392171236202e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_547___________________ (freq_plasma_larmor_toroidal_deuteron_profile547)_ 3.67715696181461588e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_548___________________ (freq_plasma_larmor_toroidal_deuteron_profile548)_ 3.67478307094191462e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_549___________________ (freq_plasma_larmor_toroidal_deuteron_profile549)_ 3.67241224315420985e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_550___________________ (freq_plasma_larmor_toroidal_deuteron_profile550)_ 3.67004447252677307e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_551___________________ (freq_plasma_larmor_toroidal_deuteron_profile551)_ 3.66767975315014496e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_552___________________ (freq_plasma_larmor_toroidal_deuteron_profile552)_ 3.66531807913008630e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_553___________________ (freq_plasma_larmor_toroidal_deuteron_profile553)_ 3.66295944458753243e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_554___________________ (freq_plasma_larmor_toroidal_deuteron_profile554)_ 3.66060384365853667e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_555___________________ (freq_plasma_larmor_toroidal_deuteron_profile555)_ 3.65825127049423158e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_556___________________ (freq_plasma_larmor_toroidal_deuteron_profile556)_ 3.65590171926077306e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_557___________________ (freq_plasma_larmor_toroidal_deuteron_profile557)_ 3.65355518413929716e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_558___________________ (freq_plasma_larmor_toroidal_deuteron_profile558)_ 3.65121165932586566e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_559___________________ (freq_plasma_larmor_toroidal_deuteron_profile559)_ 3.64887113903142586e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_560___________________ (freq_plasma_larmor_toroidal_deuteron_profile560)_ 3.64653361748175845e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_561___________________ (freq_plasma_larmor_toroidal_deuteron_profile561)_ 3.64419908891742975e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_562___________________ (freq_plasma_larmor_toroidal_deuteron_profile562)_ 3.64186754759374559e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_563___________________ (freq_plasma_larmor_toroidal_deuteron_profile563)_ 3.63953898778070658e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_564___________________ (freq_plasma_larmor_toroidal_deuteron_profile564)_ 3.63721340376295447e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_565___________________ (freq_plasma_larmor_toroidal_deuteron_profile565)_ 3.63489078983973414e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_566___________________ (freq_plasma_larmor_toroidal_deuteron_profile566)_ 3.63257114032483995e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_567___________________ (freq_plasma_larmor_toroidal_deuteron_profile567)_ 3.63025444954657257e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_568___________________ (freq_plasma_larmor_toroidal_deuteron_profile568)_ 3.62794071184768975e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_569___________________ (freq_plasma_larmor_toroidal_deuteron_profile569)_ 3.62562992158536538e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_570___________________ (freq_plasma_larmor_toroidal_deuteron_profile570)_ 3.62332207313114256e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_571___________________ (freq_plasma_larmor_toroidal_deuteron_profile571)_ 3.62101716087087989e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_572___________________ (freq_plasma_larmor_toroidal_deuteron_profile572)_ 3.61871517920471951e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_573___________________ (freq_plasma_larmor_toroidal_deuteron_profile573)_ 3.61641612254702970e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_574___________________ (freq_plasma_larmor_toroidal_deuteron_profile574)_ 3.61411998532636538e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_575___________________ (freq_plasma_larmor_toroidal_deuteron_profile575)_ 3.61182676198542193e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_576___________________ (freq_plasma_larmor_toroidal_deuteron_profile576)_ 3.60953644698099270e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_577___________________ (freq_plasma_larmor_toroidal_deuteron_profile577)_ 3.60724903478391990e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_578___________________ (freq_plasma_larmor_toroidal_deuteron_profile578)_ 3.60496451987905353e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_579___________________ (freq_plasma_larmor_toroidal_deuteron_profile579)_ 3.60268289676520601e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_580___________________ (freq_plasma_larmor_toroidal_deuteron_profile580)_ 3.60040415995510668e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_581___________________ (freq_plasma_larmor_toroidal_deuteron_profile581)_ 3.59812830397536308e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_582___________________ (freq_plasma_larmor_toroidal_deuteron_profile582)_ 3.59585532336640880e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_583___________________ (freq_plasma_larmor_toroidal_deuteron_profile583)_ 3.59358521268246472e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_584___________________ (freq_plasma_larmor_toroidal_deuteron_profile584)_ 3.59131796649149805e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_585___________________ (freq_plasma_larmor_toroidal_deuteron_profile585)_ 3.58905357937517315e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_586___________________ (freq_plasma_larmor_toroidal_deuteron_profile586)_ 3.58679204592881203e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_587___________________ (freq_plasma_larmor_toroidal_deuteron_profile587)_ 3.58453336076135114e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_588___________________ (freq_plasma_larmor_toroidal_deuteron_profile588)_ 3.58227751849529594e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_589___________________ (freq_plasma_larmor_toroidal_deuteron_profile589)_ 3.58002451376668215e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_590___________________ (freq_plasma_larmor_toroidal_deuteron_profile590)_ 3.57777434122503102e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_591___________________ (freq_plasma_larmor_toroidal_deuteron_profile591)_ 3.57552699553330615e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_592___________________ (freq_plasma_larmor_toroidal_deuteron_profile592)_ 3.57328247136787549e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_593___________________ (freq_plasma_larmor_toroidal_deuteron_profile593)_ 3.57104076341845989e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_594___________________ (freq_plasma_larmor_toroidal_deuteron_profile594)_ 3.56880186638810262e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_595___________________ (freq_plasma_larmor_toroidal_deuteron_profile595)_ 3.56656577499312311e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_596___________________ (freq_plasma_larmor_toroidal_deuteron_profile596)_ 3.56433248396307081e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_597___________________ (freq_plasma_larmor_toroidal_deuteron_profile597)_ 3.56210198804069087e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_598___________________ (freq_plasma_larmor_toroidal_deuteron_profile598)_ 3.55987428198187947e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_599___________________ (freq_plasma_larmor_toroidal_deuteron_profile599)_ 3.55764936055564061e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_600___________________ (freq_plasma_larmor_toroidal_deuteron_profile600)_ 3.55542721854405031e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_601___________________ (freq_plasma_larmor_toroidal_deuteron_profile601)_ 3.55320785074221194e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_602___________________ (freq_plasma_larmor_toroidal_deuteron_profile602)_ 3.55099125195821896e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_603___________________ (freq_plasma_larmor_toroidal_deuteron_profile603)_ 3.54877741701310724e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_604___________________ (freq_plasma_larmor_toroidal_deuteron_profile604)_ 3.54656634074082524e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_605___________________ (freq_plasma_larmor_toroidal_deuteron_profile605)_ 3.54435801798818484e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_606___________________ (freq_plasma_larmor_toroidal_deuteron_profile606)_ 3.54215244361482561e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_607___________________ (freq_plasma_larmor_toroidal_deuteron_profile607)_ 3.53994961249317527e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_608___________________ (freq_plasma_larmor_toroidal_deuteron_profile608)_ 3.53774951950840577e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_609___________________ (freq_plasma_larmor_toroidal_deuteron_profile609)_ 3.53555215955840051e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_610___________________ (freq_plasma_larmor_toroidal_deuteron_profile610)_ 3.53335752755370885e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_611___________________ (freq_plasma_larmor_toroidal_deuteron_profile611)_ 3.53116561841750890e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_612___________________ (freq_plasma_larmor_toroidal_deuteron_profile612)_ 3.52897642708557099e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_613___________________ (freq_plasma_larmor_toroidal_deuteron_profile613)_ 3.52678994850621149e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_614___________________ (freq_plasma_larmor_toroidal_deuteron_profile614)_ 3.52460617764026299e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_615___________________ (freq_plasma_larmor_toroidal_deuteron_profile615)_ 3.52242510946103111e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_616___________________ (freq_plasma_larmor_toroidal_deuteron_profile616)_ 3.52024673895425126e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_617___________________ (freq_plasma_larmor_toroidal_deuteron_profile617)_ 3.51807106111806259e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_618___________________ (freq_plasma_larmor_toroidal_deuteron_profile618)_ 3.51589807096295506e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_619___________________ (freq_plasma_larmor_toroidal_deuteron_profile619)_ 3.51372776351174340e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_620___________________ (freq_plasma_larmor_toroidal_deuteron_profile620)_ 3.51156013379952163e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_621___________________ (freq_plasma_larmor_toroidal_deuteron_profile621)_ 3.50939517687362880e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_622___________________ (freq_plasma_larmor_toroidal_deuteron_profile622)_ 3.50723288779360726e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_623___________________ (freq_plasma_larmor_toroidal_deuteron_profile623)_ 3.50507326163117290e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_624___________________ (freq_plasma_larmor_toroidal_deuteron_profile624)_ 3.50291629347016886e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_625___________________ (freq_plasma_larmor_toroidal_deuteron_profile625)_ 3.50076197840653434e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_626___________________ (freq_plasma_larmor_toroidal_deuteron_profile626)_ 3.49861031154826358e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_627___________________ (freq_plasma_larmor_toroidal_deuteron_profile627)_ 3.49646128801537156e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_628___________________ (freq_plasma_larmor_toroidal_deuteron_profile628)_ 3.49431490293985531e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_629___________________ (freq_plasma_larmor_toroidal_deuteron_profile629)_ 3.49217115146565884e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_630___________________ (freq_plasma_larmor_toroidal_deuteron_profile630)_ 3.49003002874863595e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_631___________________ (freq_plasma_larmor_toroidal_deuteron_profile631)_ 3.48789152995651066e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_632___________________ (freq_plasma_larmor_toroidal_deuteron_profile632)_ 3.48575565026884526e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_633___________________ (freq_plasma_larmor_toroidal_deuteron_profile633)_ 3.48362238487700373e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_634___________________ (freq_plasma_larmor_toroidal_deuteron_profile634)_ 3.48149172898411229e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_635___________________ (freq_plasma_larmor_toroidal_deuteron_profile635)_ 3.47936367780502811e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_636___________________ (freq_plasma_larmor_toroidal_deuteron_profile636)_ 3.47723822656629458e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_637___________________ (freq_plasma_larmor_toroidal_deuteron_profile637)_ 3.47511537050612047e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_638___________________ (freq_plasma_larmor_toroidal_deuteron_profile638)_ 3.47299510487432852e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_639___________________ (freq_plasma_larmor_toroidal_deuteron_profile639)_ 3.47087742493233159e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_640___________________ (freq_plasma_larmor_toroidal_deuteron_profile640)_ 3.46876232595309243e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_641___________________ (freq_plasma_larmor_toroidal_deuteron_profile641)_ 3.46664980322108716e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_642___________________ (freq_plasma_larmor_toroidal_deuteron_profile642)_ 3.46453985203227326e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_643___________________ (freq_plasma_larmor_toroidal_deuteron_profile643)_ 3.46243246769405380e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_644___________________ (freq_plasma_larmor_toroidal_deuteron_profile644)_ 3.46032764552524313e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_645___________________ (freq_plasma_larmor_toroidal_deuteron_profile645)_ 3.45822538085603043e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_646___________________ (freq_plasma_larmor_toroidal_deuteron_profile646)_ 3.45612566902794465e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_647___________________ (freq_plasma_larmor_toroidal_deuteron_profile647)_ 3.45402850539382547e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_648___________________ (freq_plasma_larmor_toroidal_deuteron_profile648)_ 3.45193388531778306e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_649___________________ (freq_plasma_larmor_toroidal_deuteron_profile649)_ 3.44984180417516604e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_650___________________ (freq_plasma_larmor_toroidal_deuteron_profile650)_ 3.44775225735252798e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_651___________________ (freq_plasma_larmor_toroidal_deuteron_profile651)_ 3.44566524024759308e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_652___________________ (freq_plasma_larmor_toroidal_deuteron_profile652)_ 3.44358074826922268e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_653___________________ (freq_plasma_larmor_toroidal_deuteron_profile653)_ 3.44149877683737800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_654___________________ (freq_plasma_larmor_toroidal_deuteron_profile654)_ 3.43941932138309702e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_655___________________ (freq_plasma_larmor_toroidal_deuteron_profile655)_ 3.43734237734844536e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_656___________________ (freq_plasma_larmor_toroidal_deuteron_profile656)_ 3.43526794018649608e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_657___________________ (freq_plasma_larmor_toroidal_deuteron_profile657)_ 3.43319600536129326e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_658___________________ (freq_plasma_larmor_toroidal_deuteron_profile658)_ 3.43112656834781468e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_659___________________ (freq_plasma_larmor_toroidal_deuteron_profile659)_ 3.42905962463194206e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_660___________________ (freq_plasma_larmor_toroidal_deuteron_profile660)_ 3.42699516971043050e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_661___________________ (freq_plasma_larmor_toroidal_deuteron_profile661)_ 3.42493319909086898e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_662___________________ (freq_plasma_larmor_toroidal_deuteron_profile662)_ 3.42287370829165652e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_663___________________ (freq_plasma_larmor_toroidal_deuteron_profile663)_ 3.42081669284196123e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_664___________________ (freq_plasma_larmor_toroidal_deuteron_profile664)_ 3.41876214828169644e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_665___________________ (freq_plasma_larmor_toroidal_deuteron_profile665)_ 3.41671007016147897e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_666___________________ (freq_plasma_larmor_toroidal_deuteron_profile666)_ 3.41466045404260680e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_667___________________ (freq_plasma_larmor_toroidal_deuteron_profile667)_ 3.41261329549701661e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_668___________________ (freq_plasma_larmor_toroidal_deuteron_profile668)_ 3.41056859010726437e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_669___________________ (freq_plasma_larmor_toroidal_deuteron_profile669)_ 3.40852633346648142e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_670___________________ (freq_plasma_larmor_toroidal_deuteron_profile670)_ 3.40648652117835134e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_671___________________ (freq_plasma_larmor_toroidal_deuteron_profile671)_ 3.40444914885707200e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_672___________________ (freq_plasma_larmor_toroidal_deuteron_profile672)_ 3.40241421212733164e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_673___________________ (freq_plasma_larmor_toroidal_deuteron_profile673)_ 3.40038170662426800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_674___________________ (freq_plasma_larmor_toroidal_deuteron_profile674)_ 3.39835162799344733e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_675___________________ (freq_plasma_larmor_toroidal_deuteron_profile675)_ 3.39632397189082578e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_676___________________ (freq_plasma_larmor_toroidal_deuteron_profile676)_ 3.39429873398272172e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_677___________________ (freq_plasma_larmor_toroidal_deuteron_profile677)_ 3.39227590994578302e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_678___________________ (freq_plasma_larmor_toroidal_deuteron_profile678)_ 3.39025549546695873e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_679___________________ (freq_plasma_larmor_toroidal_deuteron_profile679)_ 3.38823748624346629e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_680___________________ (freq_plasma_larmor_toroidal_deuteron_profile680)_ 3.38622187798276320e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_681___________________ (freq_plasma_larmor_toroidal_deuteron_profile681)_ 3.38420866640251130e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_682___________________ (freq_plasma_larmor_toroidal_deuteron_profile682)_ 3.38219784723055512e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_683___________________ (freq_plasma_larmor_toroidal_deuteron_profile683)_ 3.38018941620488465e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_684___________________ (freq_plasma_larmor_toroidal_deuteron_profile684)_ 3.37818336907360554e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_685___________________ (freq_plasma_larmor_toroidal_deuteron_profile685)_ 3.37617970159491375e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_686___________________ (freq_plasma_larmor_toroidal_deuteron_profile686)_ 3.37417840953706279e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_687___________________ (freq_plasma_larmor_toroidal_deuteron_profile687)_ 3.37217948867833242e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_688___________________ (freq_plasma_larmor_toroidal_deuteron_profile688)_ 3.37018293480700105e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_689___________________ (freq_plasma_larmor_toroidal_deuteron_profile689)_ 3.36818874372131675e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_690___________________ (freq_plasma_larmor_toroidal_deuteron_profile690)_ 3.36619691122946516e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_691___________________ (freq_plasma_larmor_toroidal_deuteron_profile691)_ 3.36420743314954117e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_692___________________ (freq_plasma_larmor_toroidal_deuteron_profile692)_ 3.36222030530952364e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_693___________________ (freq_plasma_larmor_toroidal_deuteron_profile693)_ 3.36023552354723960e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_694___________________ (freq_plasma_larmor_toroidal_deuteron_profile694)_ 3.35825308371033892e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_695___________________ (freq_plasma_larmor_toroidal_deuteron_profile695)_ 3.35627298165626451e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_696___________________ (freq_plasma_larmor_toroidal_deuteron_profile696)_ 3.35429521325222403e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_697___________________ (freq_plasma_larmor_toroidal_deuteron_profile697)_ 3.35231977437516190e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_698___________________ (freq_plasma_larmor_toroidal_deuteron_profile698)_ 3.35034666091172695e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_699___________________ (freq_plasma_larmor_toroidal_deuteron_profile699)_ 3.34837586875824966e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_700___________________ (freq_plasma_larmor_toroidal_deuteron_profile700)_ 3.34640739382070862e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_701___________________ (freq_plasma_larmor_toroidal_deuteron_profile701)_ 3.34444123201470301e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_702___________________ (freq_plasma_larmor_toroidal_deuteron_profile702)_ 3.34247737926542796e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_703___________________ (freq_plasma_larmor_toroidal_deuteron_profile703)_ 3.34051583150764368e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_704___________________ (freq_plasma_larmor_toroidal_deuteron_profile704)_ 3.33855658468564488e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_705___________________ (freq_plasma_larmor_toroidal_deuteron_profile705)_ 3.33659963475323841e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_706___________________ (freq_plasma_larmor_toroidal_deuteron_profile706)_ 3.33464497767371088e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_707___________________ (freq_plasma_larmor_toroidal_deuteron_profile707)_ 3.33269260941980332e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_708___________________ (freq_plasma_larmor_toroidal_deuteron_profile708)_ 3.33074252597368285e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_709___________________ (freq_plasma_larmor_toroidal_deuteron_profile709)_ 3.32879472332691476e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_710___________________ (freq_plasma_larmor_toroidal_deuteron_profile710)_ 3.32684919748043530e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_711___________________ (freq_plasma_larmor_toroidal_deuteron_profile711)_ 3.32490594444452338e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_712___________________ (freq_plasma_larmor_toroidal_deuteron_profile712)_ 3.32296496023877598e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_713___________________ (freq_plasma_larmor_toroidal_deuteron_profile713)_ 3.32102624089207985e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_714___________________ (freq_plasma_larmor_toroidal_deuteron_profile714)_ 3.31908978244257979e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_715___________________ (freq_plasma_larmor_toroidal_deuteron_profile715)_ 3.31715558093766011e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_716___________________ (freq_plasma_larmor_toroidal_deuteron_profile716)_ 3.31522363243391030e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_717___________________ (freq_plasma_larmor_toroidal_deuteron_profile717)_ 3.31329393299710378e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_718___________________ (freq_plasma_larmor_toroidal_deuteron_profile718)_ 3.31136647870216593e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_719___________________ (freq_plasma_larmor_toroidal_deuteron_profile719)_ 3.30944126563315392e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_720___________________ (freq_plasma_larmor_toroidal_deuteron_profile720)_ 3.30751828988322131e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_721___________________ (freq_plasma_larmor_toroidal_deuteron_profile721)_ 3.30559754755460173e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_722___________________ (freq_plasma_larmor_toroidal_deuteron_profile722)_ 3.30367903475857563e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_723___________________ (freq_plasma_larmor_toroidal_deuteron_profile723)_ 3.30176274761544354e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_724___________________ (freq_plasma_larmor_toroidal_deuteron_profile724)_ 3.29984868225450702e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_725___________________ (freq_plasma_larmor_toroidal_deuteron_profile725)_ 3.29793683481403515e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_726___________________ (freq_plasma_larmor_toroidal_deuteron_profile726)_ 3.29602720144124180e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_727___________________ (freq_plasma_larmor_toroidal_deuteron_profile727)_ 3.29411977829225883e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_728___________________ (freq_plasma_larmor_toroidal_deuteron_profile728)_ 3.29221456153211370e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_729___________________ (freq_plasma_larmor_toroidal_deuteron_profile729)_ 3.29031154733469635e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_730___________________ (freq_plasma_larmor_toroidal_deuteron_profile730)_ 3.28841073188274093e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_731___________________ (freq_plasma_larmor_toroidal_deuteron_profile731)_ 3.28651211136779673e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_732___________________ (freq_plasma_larmor_toroidal_deuteron_profile732)_ 3.28461568199020475e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_733___________________ (freq_plasma_larmor_toroidal_deuteron_profile733)_ 3.28272143995906822e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_734___________________ (freq_plasma_larmor_toroidal_deuteron_profile734)_ 3.28082938149223328e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_735___________________ (freq_plasma_larmor_toroidal_deuteron_profile735)_ 3.27893950281625800e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_736___________________ (freq_plasma_larmor_toroidal_deuteron_profile736)_ 3.27705180016639270e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_737___________________ (freq_plasma_larmor_toroidal_deuteron_profile737)_ 3.27516626978654973e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_738___________________ (freq_plasma_larmor_toroidal_deuteron_profile738)_ 3.27328290792928413e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_739___________________ (freq_plasma_larmor_toroidal_deuteron_profile739)_ 3.27140171085576080e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_740___________________ (freq_plasma_larmor_toroidal_deuteron_profile740)_ 3.26952267483574040e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_741___________________ (freq_plasma_larmor_toroidal_deuteron_profile741)_ 3.26764579614754505e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_742___________________ (freq_plasma_larmor_toroidal_deuteron_profile742)_ 3.26577107107804045e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_743___________________ (freq_plasma_larmor_toroidal_deuteron_profile743)_ 3.26389849592260607e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_744___________________ (freq_plasma_larmor_toroidal_deuteron_profile744)_ 3.26202806698511429e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_745___________________ (freq_plasma_larmor_toroidal_deuteron_profile745)_ 3.26015978057790622e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_746___________________ (freq_plasma_larmor_toroidal_deuteron_profile746)_ 3.25829363302176557e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_747___________________ (freq_plasma_larmor_toroidal_deuteron_profile747)_ 3.25642962064589523e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_748___________________ (freq_plasma_larmor_toroidal_deuteron_profile748)_ 3.25456773978789300e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_749___________________ (freq_plasma_larmor_toroidal_deuteron_profile749)_ 3.25270798679372817e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_750___________________ (freq_plasma_larmor_toroidal_deuteron_profile750)_ 3.25085035801771842e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_751___________________ (freq_plasma_larmor_toroidal_deuteron_profile751)_ 3.24899484982250333e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_752___________________ (freq_plasma_larmor_toroidal_deuteron_profile752)_ 3.24714145857902095e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_753___________________ (freq_plasma_larmor_toroidal_deuteron_profile753)_ 3.24529018066649064e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_754___________________ (freq_plasma_larmor_toroidal_deuteron_profile754)_ 3.24344101247237846e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_755___________________ (freq_plasma_larmor_toroidal_deuteron_profile755)_ 3.24159395039238296e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_756___________________ (freq_plasma_larmor_toroidal_deuteron_profile756)_ 3.23974899083040617e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_757___________________ (freq_plasma_larmor_toroidal_deuteron_profile757)_ 3.23790613019853458e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_758___________________ (freq_plasma_larmor_toroidal_deuteron_profile758)_ 3.23606536491701230e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_759___________________ (freq_plasma_larmor_toroidal_deuteron_profile759)_ 3.23422669141421802e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_760___________________ (freq_plasma_larmor_toroidal_deuteron_profile760)_ 3.23239010612664632e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_761___________________ (freq_plasma_larmor_toroidal_deuteron_profile761)_ 3.23055560549887903e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_762___________________ (freq_plasma_larmor_toroidal_deuteron_profile762)_ 3.22872318598356508e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_763___________________ (freq_plasma_larmor_toroidal_deuteron_profile763)_ 3.22689284404139742e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_764___________________ (freq_plasma_larmor_toroidal_deuteron_profile764)_ 3.22506457614109032e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_765___________________ (freq_plasma_larmor_toroidal_deuteron_profile765)_ 3.22323837875935696e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_766___________________ (freq_plasma_larmor_toroidal_deuteron_profile766)_ 3.22141424838088490e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_767___________________ (freq_plasma_larmor_toroidal_deuteron_profile767)_ 3.21959218149831705e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_768___________________ (freq_plasma_larmor_toroidal_deuteron_profile768)_ 3.21777217461222410e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_769___________________ (freq_plasma_larmor_toroidal_deuteron_profile769)_ 3.21595422423108742e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_770___________________ (freq_plasma_larmor_toroidal_deuteron_profile770)_ 3.21413832687127329e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_771___________________ (freq_plasma_larmor_toroidal_deuteron_profile771)_ 3.21232447905701213e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_772___________________ (freq_plasma_larmor_toroidal_deuteron_profile772)_ 3.21051267732037492e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_773___________________ (freq_plasma_larmor_toroidal_deuteron_profile773)_ 3.20870291820125431e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_774___________________ (freq_plasma_larmor_toroidal_deuteron_profile774)_ 3.20689519824733734e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_775___________________ (freq_plasma_larmor_toroidal_deuteron_profile775)_ 3.20508951401409060e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_776___________________ (freq_plasma_larmor_toroidal_deuteron_profile776)_ 3.20328586206472889e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_777___________________ (freq_plasma_larmor_toroidal_deuteron_profile777)_ 3.20148423897020444e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_778___________________ (freq_plasma_larmor_toroidal_deuteron_profile778)_ 3.19968464130917639e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_779___________________ (freq_plasma_larmor_toroidal_deuteron_profile779)_ 3.19788706566799134e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_780___________________ (freq_plasma_larmor_toroidal_deuteron_profile780)_ 3.19609150864066556e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_781___________________ (freq_plasma_larmor_toroidal_deuteron_profile781)_ 3.19429796682885773e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_782___________________ (freq_plasma_larmor_toroidal_deuteron_profile782)_ 3.19250643684185371e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_783___________________ (freq_plasma_larmor_toroidal_deuteron_profile783)_ 3.19071691529653817e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_784___________________ (freq_plasma_larmor_toroidal_deuteron_profile784)_ 3.18892939881738052e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_785___________________ (freq_plasma_larmor_toroidal_deuteron_profile785)_ 3.18714388403640762e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_786___________________ (freq_plasma_larmor_toroidal_deuteron_profile786)_ 3.18536036759318672e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_787___________________ (freq_plasma_larmor_toroidal_deuteron_profile787)_ 3.18357884613480121e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_788___________________ (freq_plasma_larmor_toroidal_deuteron_profile788)_ 3.18179931631583273e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_789___________________ (freq_plasma_larmor_toroidal_deuteron_profile789)_ 3.18002177479833774e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_790___________________ (freq_plasma_larmor_toroidal_deuteron_profile790)_ 3.17824621825182848e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_791___________________ (freq_plasma_larmor_toroidal_deuteron_profile791)_ 3.17647264335325062e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_792___________________ (freq_plasma_larmor_toroidal_deuteron_profile792)_ 3.17470104678696282e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_793___________________ (freq_plasma_larmor_toroidal_deuteron_profile793)_ 3.17293142524471804e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_794___________________ (freq_plasma_larmor_toroidal_deuteron_profile794)_ 3.17116377542564049e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_795___________________ (freq_plasma_larmor_toroidal_deuteron_profile795)_ 3.16939809403620474e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_796___________________ (freq_plasma_larmor_toroidal_deuteron_profile796)_ 3.16763437779021896e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_797___________________ (freq_plasma_larmor_toroidal_deuteron_profile797)_ 3.16587262340880148e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_798___________________ (freq_plasma_larmor_toroidal_deuteron_profile798)_ 3.16411282762035839e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_799___________________ (freq_plasma_larmor_toroidal_deuteron_profile799)_ 3.16235498716056943e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_800___________________ (freq_plasma_larmor_toroidal_deuteron_profile800)_ 3.16059909877236262e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_801___________________ (freq_plasma_larmor_toroidal_deuteron_profile801)_ 3.15884515920589641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_802___________________ (freq_plasma_larmor_toroidal_deuteron_profile802)_ 3.15709316521853842e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_803___________________ (freq_plasma_larmor_toroidal_deuteron_profile803)_ 3.15534311357484721e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_804___________________ (freq_plasma_larmor_toroidal_deuteron_profile804)_ 3.15359500104655102e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_805___________________ (freq_plasma_larmor_toroidal_deuteron_profile805)_ 3.15184882441252694e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_806___________________ (freq_plasma_larmor_toroidal_deuteron_profile806)_ 3.15010458045878448e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_807___________________ (freq_plasma_larmor_toroidal_deuteron_profile807)_ 3.14836226597844251e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_808___________________ (freq_plasma_larmor_toroidal_deuteron_profile808)_ 3.14662187777171023e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_809___________________ (freq_plasma_larmor_toroidal_deuteron_profile809)_ 3.14488341264587007e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_810___________________ (freq_plasma_larmor_toroidal_deuteron_profile810)_ 3.14314686741525419e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_811___________________ (freq_plasma_larmor_toroidal_deuteron_profile811)_ 3.14141223890122734e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_812___________________ (freq_plasma_larmor_toroidal_deuteron_profile812)_ 3.13967952393217050e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_813___________________ (freq_plasma_larmor_toroidal_deuteron_profile813)_ 3.13794871934345327e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_814___________________ (freq_plasma_larmor_toroidal_deuteron_profile814)_ 3.13621982197742425e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_815___________________ (freq_plasma_larmor_toroidal_deuteron_profile815)_ 3.13449282868338339e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_816___________________ (freq_plasma_larmor_toroidal_deuteron_profile816)_ 3.13276773631756939e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_817___________________ (freq_plasma_larmor_toroidal_deuteron_profile817)_ 3.13104454174313769e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_818___________________ (freq_plasma_larmor_toroidal_deuteron_profile818)_ 3.12932324183013961e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_819___________________ (freq_plasma_larmor_toroidal_deuteron_profile819)_ 3.12760383345550857e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_820___________________ (freq_plasma_larmor_toroidal_deuteron_profile820)_ 3.12588631350303367e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_821___________________ (freq_plasma_larmor_toroidal_deuteron_profile821)_ 3.12417067886335067e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_822___________________ (freq_plasma_larmor_toroidal_deuteron_profile822)_ 3.12245692643391341e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_823___________________ (freq_plasma_larmor_toroidal_deuteron_profile823)_ 3.12074505311898217e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_824___________________ (freq_plasma_larmor_toroidal_deuteron_profile824)_ 3.11903505582960211e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_825___________________ (freq_plasma_larmor_toroidal_deuteron_profile825)_ 3.11732693148358390e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_826___________________ (freq_plasma_larmor_toroidal_deuteron_profile826)_ 3.11562067700548731e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_827___________________ (freq_plasma_larmor_toroidal_deuteron_profile827)_ 3.11391628932659961e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_828___________________ (freq_plasma_larmor_toroidal_deuteron_profile828)_ 3.11221376538492292e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_829___________________ (freq_plasma_larmor_toroidal_deuteron_profile829)_ 3.11051310212515034e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_830___________________ (freq_plasma_larmor_toroidal_deuteron_profile830)_ 3.10881429649864845e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_831___________________ (freq_plasma_larmor_toroidal_deuteron_profile831)_ 3.10711734546344094e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_832___________________ (freq_plasma_larmor_toroidal_deuteron_profile832)_ 3.10542224598419219e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_833___________________ (freq_plasma_larmor_toroidal_deuteron_profile833)_ 3.10372899503218345e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_834___________________ (freq_plasma_larmor_toroidal_deuteron_profile834)_ 3.10203758958529942e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_835___________________ (freq_plasma_larmor_toroidal_deuteron_profile835)_ 3.10034802662800848e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_836___________________ (freq_plasma_larmor_toroidal_deuteron_profile836)_ 3.09866030315134712e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_837___________________ (freq_plasma_larmor_toroidal_deuteron_profile837)_ 3.09697441615289710e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_838___________________ (freq_plasma_larmor_toroidal_deuteron_profile838)_ 3.09529036263677254e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_839___________________ (freq_plasma_larmor_toroidal_deuteron_profile839)_ 3.09360813961360045e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_840___________________ (freq_plasma_larmor_toroidal_deuteron_profile840)_ 3.09192774410050213e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_841___________________ (freq_plasma_larmor_toroidal_deuteron_profile841)_ 3.09024917312107757e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_842___________________ (freq_plasma_larmor_toroidal_deuteron_profile842)_ 3.08857242370538488e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_843___________________ (freq_plasma_larmor_toroidal_deuteron_profile843)_ 3.08689749288992658e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_844___________________ (freq_plasma_larmor_toroidal_deuteron_profile844)_ 3.08522437771762796e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_845___________________ (freq_plasma_larmor_toroidal_deuteron_profile845)_ 3.08355307523782477e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_846___________________ (freq_plasma_larmor_toroidal_deuteron_profile846)_ 3.08188358250623979e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_847___________________ (freq_plasma_larmor_toroidal_deuteron_profile847)_ 3.08021589658496976e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_848___________________ (freq_plasma_larmor_toroidal_deuteron_profile848)_ 3.07855001454246938e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_849___________________ (freq_plasma_larmor_toroidal_deuteron_profile849)_ 3.07688593345352709e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_850___________________ (freq_plasma_larmor_toroidal_deuteron_profile850)_ 3.07522365039925687e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_851___________________ (freq_plasma_larmor_toroidal_deuteron_profile851)_ 3.07356316246707588e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_852___________________ (freq_plasma_larmor_toroidal_deuteron_profile852)_ 3.07190446675068811e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_853___________________ (freq_plasma_larmor_toroidal_deuteron_profile853)_ 3.07024756035006680e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_854___________________ (freq_plasma_larmor_toroidal_deuteron_profile854)_ 3.06859244037144184e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_855___________________ (freq_plasma_larmor_toroidal_deuteron_profile855)_ 3.06693910392727666e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_856___________________ (freq_plasma_larmor_toroidal_deuteron_profile856)_ 3.06528754813625477e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_857___________________ (freq_plasma_larmor_toroidal_deuteron_profile857)_ 3.06363777012326382e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_858___________________ (freq_plasma_larmor_toroidal_deuteron_profile858)_ 3.06198976701937877e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_859___________________ (freq_plasma_larmor_toroidal_deuteron_profile859)_ 3.06034353596184142e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_860___________________ (freq_plasma_larmor_toroidal_deuteron_profile860)_ 3.05869907409404851e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_861___________________ (freq_plasma_larmor_toroidal_deuteron_profile861)_ 3.05705637856553383e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_862___________________ (freq_plasma_larmor_toroidal_deuteron_profile862)_ 3.05541544653195068e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_863___________________ (freq_plasma_larmor_toroidal_deuteron_profile863)_ 3.05377627515505590e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_864___________________ (freq_plasma_larmor_toroidal_deuteron_profile864)_ 3.05213886160269342e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_865___________________ (freq_plasma_larmor_toroidal_deuteron_profile865)_ 3.05050320304878093e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_866___________________ (freq_plasma_larmor_toroidal_deuteron_profile866)_ 3.04886929667328559e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_867___________________ (freq_plasma_larmor_toroidal_deuteron_profile867)_ 3.04723713966221884e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_868___________________ (freq_plasma_larmor_toroidal_deuteron_profile868)_ 3.04560672920761108e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_869___________________ (freq_plasma_larmor_toroidal_deuteron_profile869)_ 3.04397806250750013e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_870___________________ (freq_plasma_larmor_toroidal_deuteron_profile870)_ 3.04235113676591367e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_871___________________ (freq_plasma_larmor_toroidal_deuteron_profile871)_ 3.04072594919285513e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_872___________________ (freq_plasma_larmor_toroidal_deuteron_profile872)_ 3.03910249700428434e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_873___________________ (freq_plasma_larmor_toroidal_deuteron_profile873)_ 3.03748077742210440e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_874___________________ (freq_plasma_larmor_toroidal_deuteron_profile874)_ 3.03586078767414615e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_875___________________ (freq_plasma_larmor_toroidal_deuteron_profile875)_ 3.03424252499414943e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_876___________________ (freq_plasma_larmor_toroidal_deuteron_profile876)_ 3.03262598662174977e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_877___________________ (freq_plasma_larmor_toroidal_deuteron_profile877)_ 3.03101116980246268e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_878___________________ (freq_plasma_larmor_toroidal_deuteron_profile878)_ 3.02939807178766616e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_879___________________ (freq_plasma_larmor_toroidal_deuteron_profile879)_ 3.02778668983458765e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_880___________________ (freq_plasma_larmor_toroidal_deuteron_profile880)_ 3.02617702120628655e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_881___________________ (freq_plasma_larmor_toroidal_deuteron_profile881)_ 3.02456906317163855e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_882___________________ (freq_plasma_larmor_toroidal_deuteron_profile882)_ 3.02296281300532334e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_883___________________ (freq_plasma_larmor_toroidal_deuteron_profile883)_ 3.02135826798780449e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_884___________________ (freq_plasma_larmor_toroidal_deuteron_profile884)_ 3.01975542540531754e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_885___________________ (freq_plasma_larmor_toroidal_deuteron_profile885)_ 3.01815428254985362e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_886___________________ (freq_plasma_larmor_toroidal_deuteron_profile886)_ 3.01655483671914376e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_887___________________ (freq_plasma_larmor_toroidal_deuteron_profile887)_ 3.01495708521664441e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_888___________________ (freq_plasma_larmor_toroidal_deuteron_profile888)_ 3.01336102535152212e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_889___________________ (freq_plasma_larmor_toroidal_deuteron_profile889)_ 3.01176665443863757e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_890___________________ (freq_plasma_larmor_toroidal_deuteron_profile890)_ 3.01017396979853213e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_891___________________ (freq_plasma_larmor_toroidal_deuteron_profile891)_ 3.00858296875741258e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_892___________________ (freq_plasma_larmor_toroidal_deuteron_profile892)_ 3.00699364864713363e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_893___________________ (freq_plasma_larmor_toroidal_deuteron_profile893)_ 3.00540600680518672e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_894___________________ (freq_plasma_larmor_toroidal_deuteron_profile894)_ 3.00382004057468288e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_895___________________ (freq_plasma_larmor_toroidal_deuteron_profile895)_ 3.00223574730433747e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_896___________________ (freq_plasma_larmor_toroidal_deuteron_profile896)_ 3.00065312434845790e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_897___________________ (freq_plasma_larmor_toroidal_deuteron_profile897)_ 2.99907216906692535e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_898___________________ (freq_plasma_larmor_toroidal_deuteron_profile898)_ 2.99749287882518433e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_899___________________ (freq_plasma_larmor_toroidal_deuteron_profile899)_ 2.99591525099422336e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_900___________________ (freq_plasma_larmor_toroidal_deuteron_profile900)_ 2.99433928295056522e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_901___________________ (freq_plasma_larmor_toroidal_deuteron_profile901)_ 2.99276497207624838e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_902___________________ (freq_plasma_larmor_toroidal_deuteron_profile902)_ 2.99119231575881429e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_903___________________ (freq_plasma_larmor_toroidal_deuteron_profile903)_ 2.98962131139129400e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_904___________________ (freq_plasma_larmor_toroidal_deuteron_profile904)_ 2.98805195637219138e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_905___________________ (freq_plasma_larmor_toroidal_deuteron_profile905)_ 2.98648424810546897e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_906___________________ (freq_plasma_larmor_toroidal_deuteron_profile906)_ 2.98491818400053680e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_907___________________ (freq_plasma_larmor_toroidal_deuteron_profile907)_ 2.98335376147223525e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_908___________________ (freq_plasma_larmor_toroidal_deuteron_profile908)_ 2.98179097794081941e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_909___________________ (freq_plasma_larmor_toroidal_deuteron_profile909)_ 2.98022983083194979e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_910___________________ (freq_plasma_larmor_toroidal_deuteron_profile910)_ 2.97867031757667437e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_911___________________ (freq_plasma_larmor_toroidal_deuteron_profile911)_ 2.97711243561141416e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_912___________________ (freq_plasma_larmor_toroidal_deuteron_profile912)_ 2.97555618237795308e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_913___________________ (freq_plasma_larmor_toroidal_deuteron_profile913)_ 2.97400155532341897e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_914___________________ (freq_plasma_larmor_toroidal_deuteron_profile914)_ 2.97244855190027356e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_915___________________ (freq_plasma_larmor_toroidal_deuteron_profile915)_ 2.97089716956629641e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_916___________________ (freq_plasma_larmor_toroidal_deuteron_profile916)_ 2.96934740578457192e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_917___________________ (freq_plasma_larmor_toroidal_deuteron_profile917)_ 2.96779925802347474e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_918___________________ (freq_plasma_larmor_toroidal_deuteron_profile918)_ 2.96625272375665680e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_919___________________ (freq_plasma_larmor_toroidal_deuteron_profile919)_ 2.96470780046303384e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_920___________________ (freq_plasma_larmor_toroidal_deuteron_profile920)_ 2.96316448562676981e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_921___________________ (freq_plasma_larmor_toroidal_deuteron_profile921)_ 2.96162277673726566e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_922___________________ (freq_plasma_larmor_toroidal_deuteron_profile922)_ 2.96008267128914408e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_923___________________ (freq_plasma_larmor_toroidal_deuteron_profile923)_ 2.95854416678223684e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_924___________________ (freq_plasma_larmor_toroidal_deuteron_profile924)_ 2.95700726072157063e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_925___________________ (freq_plasma_larmor_toroidal_deuteron_profile925)_ 2.95547195061735436e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_926___________________ (freq_plasma_larmor_toroidal_deuteron_profile926)_ 2.95393823398496360e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_927___________________ (freq_plasma_larmor_toroidal_deuteron_profile927)_ 2.95240610834492967e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_928___________________ (freq_plasma_larmor_toroidal_deuteron_profile928)_ 2.95087557122292630e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_929___________________ (freq_plasma_larmor_toroidal_deuteron_profile929)_ 2.94934662014975324e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_930___________________ (freq_plasma_larmor_toroidal_deuteron_profile930)_ 2.94781925266132802e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_931___________________ (freq_plasma_larmor_toroidal_deuteron_profile931)_ 2.94629346629866660e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_932___________________ (freq_plasma_larmor_toroidal_deuteron_profile932)_ 2.94476925860787593e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_933___________________ (freq_plasma_larmor_toroidal_deuteron_profile933)_ 2.94324662714013681e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_934___________________ (freq_plasma_larmor_toroidal_deuteron_profile934)_ 2.94172556945169196e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_935___________________ (freq_plasma_larmor_toroidal_deuteron_profile935)_ 2.94020608310383484e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_936___________________ (freq_plasma_larmor_toroidal_deuteron_profile936)_ 2.93868816566289365e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_937___________________ (freq_plasma_larmor_toroidal_deuteron_profile937)_ 2.93717181470021904e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_938___________________ (freq_plasma_larmor_toroidal_deuteron_profile938)_ 2.93565702779217362e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_939___________________ (freq_plasma_larmor_toroidal_deuteron_profile939)_ 2.93414380252011567e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_940___________________ (freq_plasma_larmor_toroidal_deuteron_profile940)_ 2.93263213647038825e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_941___________________ (freq_plasma_larmor_toroidal_deuteron_profile941)_ 2.93112202723430693e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_942___________________ (freq_plasma_larmor_toroidal_deuteron_profile942)_ 2.92961347240814380e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_943___________________ (freq_plasma_larmor_toroidal_deuteron_profile943)_ 2.92810646959311999e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_944___________________ (freq_plasma_larmor_toroidal_deuteron_profile944)_ 2.92660101639538556e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_945___________________ (freq_plasma_larmor_toroidal_deuteron_profile945)_ 2.92509711042601503e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_946___________________ (freq_plasma_larmor_toroidal_deuteron_profile946)_ 2.92359474930098876e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_947___________________ (freq_plasma_larmor_toroidal_deuteron_profile947)_ 2.92209393064118326e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_948___________________ (freq_plasma_larmor_toroidal_deuteron_profile948)_ 2.92059465207235739e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_949___________________ (freq_plasma_larmor_toroidal_deuteron_profile949)_ 2.91909691122514047e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_950___________________ (freq_plasma_larmor_toroidal_deuteron_profile950)_ 2.91760070573501997e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_951___________________ (freq_plasma_larmor_toroidal_deuteron_profile951)_ 2.91610603324232772e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_952___________________ (freq_plasma_larmor_toroidal_deuteron_profile952)_ 2.91461289139222950e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_953___________________ (freq_plasma_larmor_toroidal_deuteron_profile953)_ 2.91312127783471048e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_954___________________ (freq_plasma_larmor_toroidal_deuteron_profile954)_ 2.91163119022456482e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_955___________________ (freq_plasma_larmor_toroidal_deuteron_profile955)_ 2.91014262622138299e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_956___________________ (freq_plasma_larmor_toroidal_deuteron_profile956)_ 2.90865558348953761e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_957___________________ (freq_plasma_larmor_toroidal_deuteron_profile957)_ 2.90717005969817415e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_958___________________ (freq_plasma_larmor_toroidal_deuteron_profile958)_ 2.90568605252119675e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_959___________________ (freq_plasma_larmor_toroidal_deuteron_profile959)_ 2.90420355963725708e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_960___________________ (freq_plasma_larmor_toroidal_deuteron_profile960)_ 2.90272257872974202e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_961___________________ (freq_plasma_larmor_toroidal_deuteron_profile961)_ 2.90124310748676024e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_962___________________ (freq_plasma_larmor_toroidal_deuteron_profile962)_ 2.89976514360113330e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_963___________________ (freq_plasma_larmor_toroidal_deuteron_profile963)_ 2.89828868477037922e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_964___________________ (freq_plasma_larmor_toroidal_deuteron_profile964)_ 2.89681372869670428e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_965___________________ (freq_plasma_larmor_toroidal_deuteron_profile965)_ 2.89534027308699116e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_966___________________ (freq_plasma_larmor_toroidal_deuteron_profile966)_ 2.89386831565278322e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_967___________________ (freq_plasma_larmor_toroidal_deuteron_profile967)_ 2.89239785411027670e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_968___________________ (freq_plasma_larmor_toroidal_deuteron_profile968)_ 2.89092888618030697e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_969___________________ (freq_plasma_larmor_toroidal_deuteron_profile969)_ 2.88946140958833732e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_970___________________ (freq_plasma_larmor_toroidal_deuteron_profile970)_ 2.88799542206444629e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_971___________________ (freq_plasma_larmor_toroidal_deuteron_profile971)_ 2.88653092134331837e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_972___________________ (freq_plasma_larmor_toroidal_deuteron_profile972)_ 2.88506790516422950e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_973___________________ (freq_plasma_larmor_toroidal_deuteron_profile973)_ 2.88360637127103582e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_974___________________ (freq_plasma_larmor_toroidal_deuteron_profile974)_ 2.88214631741216406e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_975___________________ (freq_plasma_larmor_toroidal_deuteron_profile975)_ 2.88068774134059958e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_976___________________ (freq_plasma_larmor_toroidal_deuteron_profile976)_ 2.87923064081387222e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_977___________________ (freq_plasma_larmor_toroidal_deuteron_profile977)_ 2.87777501359404698e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_978___________________ (freq_plasma_larmor_toroidal_deuteron_profile978)_ 2.87632085744771287e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_979___________________ (freq_plasma_larmor_toroidal_deuteron_profile979)_ 2.87486817014597170e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_980___________________ (freq_plasma_larmor_toroidal_deuteron_profile980)_ 2.87341694946442395e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_981___________________ (freq_plasma_larmor_toroidal_deuteron_profile981)_ 2.87196719318316020e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_982___________________ (freq_plasma_larmor_toroidal_deuteron_profile982)_ 2.87051889908674955e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_983___________________ (freq_plasma_larmor_toroidal_deuteron_profile983)_ 2.86907206496422552e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_984___________________ (freq_plasma_larmor_toroidal_deuteron_profile984)_ 2.86762668860908039e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_985___________________ (freq_plasma_larmor_toroidal_deuteron_profile985)_ 2.86618276781924702e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_986___________________ (freq_plasma_larmor_toroidal_deuteron_profile986)_ 2.86474030039709359e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_987___________________ (freq_plasma_larmor_toroidal_deuteron_profile987)_ 2.86329928414940871e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_988___________________ (freq_plasma_larmor_toroidal_deuteron_profile988)_ 2.86185971688739285e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_989___________________ (freq_plasma_larmor_toroidal_deuteron_profile989)_ 2.86042159642664492e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_990___________________ (freq_plasma_larmor_toroidal_deuteron_profile990)_ 2.85898492058715411e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_991___________________ (freq_plasma_larmor_toroidal_deuteron_profile991)_ 2.85754968719328493e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_992___________________ (freq_plasma_larmor_toroidal_deuteron_profile992)_ 2.85611589407377020e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_993___________________ (freq_plasma_larmor_toroidal_deuteron_profile993)_ 2.85468353906169683e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_994___________________ (freq_plasma_larmor_toroidal_deuteron_profile994)_ 2.85325261999449879e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_995___________________ (freq_plasma_larmor_toroidal_deuteron_profile995)_ 2.85182313471393995e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_996___________________ (freq_plasma_larmor_toroidal_deuteron_profile996)_ 2.85039508106611148e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_997___________________ (freq_plasma_larmor_toroidal_deuteron_profile997)_ 2.84896845690141357e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_998___________________ (freq_plasma_larmor_toroidal_deuteron_profile998)_ 2.84754326007454954e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_999___________________ (freq_plasma_larmor_toroidal_deuteron_profile999)_ 2.84611948844451196e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_1000__________________ (freq_plasma_larmor_toroidal_deuteron_profile1000)_ 2.84469713987457491e+07 +Plasma_deuteron_toroidal_Larmor_frequency_at_point_1001__________________ (freq_plasma_larmor_toroidal_deuteron_profile1001)_ 2.84327621223228015e+07 +Volume_averaged_triton_toroidal_Larmor_frequency_(ωc)_(Hz)_______________ (freq_plasma_larmor_toroidal_triton_vol_avg)_ 2.53140400908535048e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_0_______________________ (freq_plasma_larmor_toroidal_triton_profile0)_ 3.79710601362802610e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_1_______________________ (freq_plasma_larmor_toroidal_triton_profile1)_ 3.79331648666831702e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_2_______________________ (freq_plasma_larmor_toroidal_triton_profile2)_ 3.78953451609337404e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_3_______________________ (freq_plasma_larmor_toroidal_triton_profile3)_ 3.78576007932435647e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_4_______________________ (freq_plasma_larmor_toroidal_triton_profile4)_ 3.78199315387229249e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_5_______________________ (freq_plasma_larmor_toroidal_triton_profile5)_ 3.77823371733762771e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_6_______________________ (freq_plasma_larmor_toroidal_triton_profile6)_ 3.77448174740978554e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_7_______________________ (freq_plasma_larmor_toroidal_triton_profile7)_ 3.77073722186672091e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_8_______________________ (freq_plasma_larmor_toroidal_triton_profile8)_ 3.76700011857448369e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_9_______________________ (freq_plasma_larmor_toroidal_triton_profile9)_ 3.76327041548678651e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_10______________________ (freq_plasma_larmor_toroidal_triton_profile10)_ 3.75954809064456373e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_11______________________ (freq_plasma_larmor_toroidal_triton_profile11)_ 3.75583312217554748e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_12______________________ (freq_plasma_larmor_toroidal_triton_profile12)_ 3.75212548829383403e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_13______________________ (freq_plasma_larmor_toroidal_triton_profile13)_ 3.74842516729946136e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_14______________________ (freq_plasma_larmor_toroidal_triton_profile14)_ 3.74473213757798374e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_15______________________ (freq_plasma_larmor_toroidal_triton_profile15)_ 3.74104637760005295e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_16______________________ (freq_plasma_larmor_toroidal_triton_profile16)_ 3.73736786592099741e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_17______________________ (freq_plasma_larmor_toroidal_triton_profile17)_ 3.73369658118040636e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_18______________________ (freq_plasma_larmor_toroidal_triton_profile18)_ 3.73003250210172087e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_19______________________ (freq_plasma_larmor_toroidal_triton_profile19)_ 3.72637560749181807e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_20______________________ (freq_plasma_larmor_toroidal_triton_profile20)_ 3.72272587624060139e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_21______________________ (freq_plasma_larmor_toroidal_triton_profile21)_ 3.71908328732060120e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_22______________________ (freq_plasma_larmor_toroidal_triton_profile22)_ 3.71544781978656277e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_23______________________ (freq_plasma_larmor_toroidal_triton_profile23)_ 3.71181945277505219e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_24______________________ (freq_plasma_larmor_toroidal_triton_profile24)_ 3.70819816550405249e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_25______________________ (freq_plasma_larmor_toroidal_triton_profile25)_ 3.70458393727256730e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_26______________________ (freq_plasma_larmor_toroidal_triton_profile26)_ 3.70097674746022820e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_27______________________ (freq_plasma_larmor_toroidal_triton_profile27)_ 3.69737657552690059e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_28______________________ (freq_plasma_larmor_toroidal_triton_profile28)_ 3.69378340101229772e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_29______________________ (freq_plasma_larmor_toroidal_triton_profile29)_ 3.69019720353558585e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_30______________________ (freq_plasma_larmor_toroidal_triton_profile30)_ 3.68661796279500872e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_31______________________ (freq_plasma_larmor_toroidal_triton_profile31)_ 3.68304565856749415e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_32______________________ (freq_plasma_larmor_toroidal_triton_profile32)_ 3.67948027070828080e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_33______________________ (freq_plasma_larmor_toroidal_triton_profile33)_ 3.67592177915053591e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_34______________________ (freq_plasma_larmor_toroidal_triton_profile34)_ 3.67237016390497983e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_35______________________ (freq_plasma_larmor_toroidal_triton_profile35)_ 3.66882540505951121e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_36______________________ (freq_plasma_larmor_toroidal_triton_profile36)_ 3.66528748277883753e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_37______________________ (freq_plasma_larmor_toroidal_triton_profile37)_ 3.66175637730409801e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_38______________________ (freq_plasma_larmor_toroidal_triton_profile38)_ 3.65823206895250604e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_39______________________ (freq_plasma_larmor_toroidal_triton_profile39)_ 3.65471453811697513e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_40______________________ (freq_plasma_larmor_toroidal_triton_profile40)_ 3.65120376526575759e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_41______________________ (freq_plasma_larmor_toroidal_triton_profile41)_ 3.64769973094208613e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_42______________________ (freq_plasma_larmor_toroidal_triton_profile42)_ 3.64420241576380953e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_43______________________ (freq_plasma_larmor_toroidal_triton_profile43)_ 3.64071180042304024e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_44______________________ (freq_plasma_larmor_toroidal_triton_profile44)_ 3.63722786568579376e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_45______________________ (freq_plasma_larmor_toroidal_triton_profile45)_ 3.63375059239163846e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_46______________________ (freq_plasma_larmor_toroidal_triton_profile46)_ 3.63027996145334691e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_47______________________ (freq_plasma_larmor_toroidal_triton_profile47)_ 3.62681595385653973e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_48______________________ (freq_plasma_larmor_toroidal_triton_profile48)_ 3.62335855065934584e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_49______________________ (freq_plasma_larmor_toroidal_triton_profile49)_ 3.61990773299205080e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_50______________________ (freq_plasma_larmor_toroidal_triton_profile50)_ 3.61646348205675930e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_51______________________ (freq_plasma_larmor_toroidal_triton_profile51)_ 3.61302577912704796e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_52______________________ (freq_plasma_larmor_toroidal_triton_profile52)_ 3.60959460554762930e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_53______________________ (freq_plasma_larmor_toroidal_triton_profile53)_ 3.60616994273401722e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_54______________________ (freq_plasma_larmor_toroidal_triton_profile54)_ 3.60275177217218354e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_55______________________ (freq_plasma_larmor_toroidal_triton_profile55)_ 3.59934007541823313e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_56______________________ (freq_plasma_larmor_toroidal_triton_profile56)_ 3.59593483409806415e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_57______________________ (freq_plasma_larmor_toroidal_triton_profile57)_ 3.59253602990704477e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_58______________________ (freq_plasma_larmor_toroidal_triton_profile58)_ 3.58914364460968301e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_59______________________ (freq_plasma_larmor_toroidal_triton_profile59)_ 3.58575766003929600e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_60______________________ (freq_plasma_larmor_toroidal_triton_profile60)_ 3.58237805809769481e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_61______________________ (freq_plasma_larmor_toroidal_triton_profile61)_ 3.57900482075485364e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_62______________________ (freq_plasma_larmor_toroidal_triton_profile62)_ 3.57563793004859313e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_63______________________ (freq_plasma_larmor_toroidal_triton_profile63)_ 3.57227736808426157e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_64______________________ (freq_plasma_larmor_toroidal_triton_profile64)_ 3.56892311703441665e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_65______________________ (freq_plasma_larmor_toroidal_triton_profile65)_ 3.56557515913851187e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_66______________________ (freq_plasma_larmor_toroidal_triton_profile66)_ 3.56223347670258060e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_67______________________ (freq_plasma_larmor_toroidal_triton_profile67)_ 3.55889805209892765e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_68______________________ (freq_plasma_larmor_toroidal_triton_profile68)_ 3.55556886776581332e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_69______________________ (freq_plasma_larmor_toroidal_triton_profile69)_ 3.55224590620715246e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_70______________________ (freq_plasma_larmor_toroidal_triton_profile70)_ 3.54892914999220669e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_71______________________ (freq_plasma_larmor_toroidal_triton_profile71)_ 3.54561858175527379e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_72______________________ (freq_plasma_larmor_toroidal_triton_profile72)_ 3.54231418419539109e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_73______________________ (freq_plasma_larmor_toroidal_triton_profile73)_ 3.53901594007602781e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_74______________________ (freq_plasma_larmor_toroidal_triton_profile74)_ 3.53572383222479373e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_75______________________ (freq_plasma_larmor_toroidal_triton_profile75)_ 3.53243784353313595e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_76______________________ (freq_plasma_larmor_toroidal_triton_profile76)_ 3.52915795695603862e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_77______________________ (freq_plasma_larmor_toroidal_triton_profile77)_ 3.52588415551173836e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_78______________________ (freq_plasma_larmor_toroidal_triton_profile78)_ 3.52261642228142172e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_79______________________ (freq_plasma_larmor_toroidal_triton_profile79)_ 3.51935474040893838e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_80______________________ (freq_plasma_larmor_toroidal_triton_profile80)_ 3.51609909310051277e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_81______________________ (freq_plasma_larmor_toroidal_triton_profile81)_ 3.51284946362444833e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_82______________________ (freq_plasma_larmor_toroidal_triton_profile82)_ 3.50960583531085327e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_83______________________ (freq_plasma_larmor_toroidal_triton_profile83)_ 3.50636819155134112e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_84______________________ (freq_plasma_larmor_toroidal_triton_profile84)_ 3.50313651579875946e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_85______________________ (freq_plasma_larmor_toroidal_triton_profile85)_ 3.49991079156690016e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_86______________________ (freq_plasma_larmor_toroidal_triton_profile86)_ 3.49669100243022367e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_87______________________ (freq_plasma_larmor_toroidal_triton_profile87)_ 3.49347713202357888e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_88______________________ (freq_plasma_larmor_toroidal_triton_profile88)_ 3.49026916404192299e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_89______________________ (freq_plasma_larmor_toroidal_triton_profile89)_ 3.48706708224004954e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_90______________________ (freq_plasma_larmor_toroidal_triton_profile90)_ 3.48387087043231279e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_91______________________ (freq_plasma_larmor_toroidal_triton_profile91)_ 3.48068051249235719e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_92______________________ (freq_plasma_larmor_toroidal_triton_profile92)_ 3.47749599235283956e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_93______________________ (freq_plasma_larmor_toroidal_triton_profile93)_ 3.47431729400516748e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_94______________________ (freq_plasma_larmor_toroidal_triton_profile94)_ 3.47114440149922743e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_95______________________ (freq_plasma_larmor_toroidal_triton_profile95)_ 3.46797729894311503e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_96______________________ (freq_plasma_larmor_toroidal_triton_profile96)_ 3.46481597050287500e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_97______________________ (freq_plasma_larmor_toroidal_triton_profile97)_ 3.46166040040223449e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_98______________________ (freq_plasma_larmor_toroidal_triton_profile98)_ 3.45851057292234153e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_99______________________ (freq_plasma_larmor_toroidal_triton_profile99)_ 3.45536647240150347e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_100_____________________ (freq_plasma_larmor_toroidal_triton_profile100)_ 3.45222808323492631e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_101_____________________ (freq_plasma_larmor_toroidal_triton_profile101)_ 3.44909538987445906e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_102_____________________ (freq_plasma_larmor_toroidal_triton_profile102)_ 3.44596837682833523e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_103_____________________ (freq_plasma_larmor_toroidal_triton_profile103)_ 3.44284702866091803e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_104_____________________ (freq_plasma_larmor_toroidal_triton_profile104)_ 3.43973132999244705e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_105_____________________ (freq_plasma_larmor_toroidal_triton_profile105)_ 3.43662126549878269e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_106_____________________ (freq_plasma_larmor_toroidal_triton_profile106)_ 3.43351681991116032e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_107_____________________ (freq_plasma_larmor_toroidal_triton_profile107)_ 3.43041797801593319e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_108_____________________ (freq_plasma_larmor_toroidal_triton_profile108)_ 3.42732472465433106e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_109_____________________ (freq_plasma_larmor_toroidal_triton_profile109)_ 3.42423704472221062e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_110_____________________ (freq_plasma_larmor_toroidal_triton_profile110)_ 3.42115492316980511e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_111_____________________ (freq_plasma_larmor_toroidal_triton_profile111)_ 3.41807834500148669e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_112_____________________ (freq_plasma_larmor_toroidal_triton_profile112)_ 3.41500729527552053e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_113_____________________ (freq_plasma_larmor_toroidal_triton_profile113)_ 3.41194175910381824e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_114_____________________ (freq_plasma_larmor_toroidal_triton_profile114)_ 3.40888172165170759e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_115_____________________ (freq_plasma_larmor_toroidal_triton_profile115)_ 3.40582716813768223e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_116_____________________ (freq_plasma_larmor_toroidal_triton_profile116)_ 3.40277808383317292e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_117_____________________ (freq_plasma_larmor_toroidal_triton_profile117)_ 3.39973445406230167e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_118_____________________ (freq_plasma_larmor_toroidal_triton_profile118)_ 3.39669626420165673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_119_____________________ (freq_plasma_larmor_toroidal_triton_profile119)_ 3.39366349968004823e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_120_____________________ (freq_plasma_larmor_toroidal_triton_profile120)_ 3.39063614597828090e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_121_____________________ (freq_plasma_larmor_toroidal_triton_profile121)_ 3.38761418862892464e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_122_____________________ (freq_plasma_larmor_toroidal_triton_profile122)_ 3.38459761321607605e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_123_____________________ (freq_plasma_larmor_toroidal_triton_profile123)_ 3.38158640537513718e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_124_____________________ (freq_plasma_larmor_toroidal_triton_profile124)_ 3.37858055079258084e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_125_____________________ (freq_plasma_larmor_toroidal_triton_profile125)_ 3.37558003520573154e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_126_____________________ (freq_plasma_larmor_toroidal_triton_profile126)_ 3.37258484440253228e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_127_____________________ (freq_plasma_larmor_toroidal_triton_profile127)_ 3.36959496422132403e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_128_____________________ (freq_plasma_larmor_toroidal_triton_profile128)_ 3.36661038055062369e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_129_____________________ (freq_plasma_larmor_toroidal_triton_profile129)_ 3.36363107932889760e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_130_____________________ (freq_plasma_larmor_toroidal_triton_profile130)_ 3.36065704654434472e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_131_____________________ (freq_plasma_larmor_toroidal_triton_profile131)_ 3.35768826823467612e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_132_____________________ (freq_plasma_larmor_toroidal_triton_profile132)_ 3.35472473048689626e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_133_____________________ (freq_plasma_larmor_toroidal_triton_profile133)_ 3.35176641943708472e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_134_____________________ (freq_plasma_larmor_toroidal_triton_profile134)_ 3.34881332127017938e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_135_____________________ (freq_plasma_larmor_toroidal_triton_profile135)_ 3.34586542221976556e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_136_____________________ (freq_plasma_larmor_toroidal_triton_profile136)_ 3.34292270856785774e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_137_____________________ (freq_plasma_larmor_toroidal_triton_profile137)_ 3.33998516664468683e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_138_____________________ (freq_plasma_larmor_toroidal_triton_profile138)_ 3.33705278282849342e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_139_____________________ (freq_plasma_larmor_toroidal_triton_profile139)_ 3.33412554354531020e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_140_____________________ (freq_plasma_larmor_toroidal_triton_profile140)_ 3.33120343526875898e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_141_____________________ (freq_plasma_larmor_toroidal_triton_profile141)_ 3.32828644451983720e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_142_____________________ (freq_plasma_larmor_toroidal_triton_profile142)_ 3.32537455786671340e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_143_____________________ (freq_plasma_larmor_toroidal_triton_profile143)_ 3.32246776192452312e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_144_____________________ (freq_plasma_larmor_toroidal_triton_profile144)_ 3.31956604335515611e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_145_____________________ (freq_plasma_larmor_toroidal_triton_profile145)_ 3.31666938886706233e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_146_____________________ (freq_plasma_larmor_toroidal_triton_profile146)_ 3.31377778521504253e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_147_____________________ (freq_plasma_larmor_toroidal_triton_profile147)_ 3.31089121920004636e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_148_____________________ (freq_plasma_larmor_toroidal_triton_profile148)_ 3.30800967766897641e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_149_____________________ (freq_plasma_larmor_toroidal_triton_profile149)_ 3.30513314751448110e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_150_____________________ (freq_plasma_larmor_toroidal_triton_profile150)_ 3.30226161567476429e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_151_____________________ (freq_plasma_larmor_toroidal_triton_profile151)_ 3.29939506913337968e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_152_____________________ (freq_plasma_larmor_toroidal_triton_profile152)_ 3.29653349491904043e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_153_____________________ (freq_plasma_larmor_toroidal_triton_profile153)_ 3.29367688010541946e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_154_____________________ (freq_plasma_larmor_toroidal_triton_profile154)_ 3.29082521181095541e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_155_____________________ (freq_plasma_larmor_toroidal_triton_profile155)_ 3.28797847719866298e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_156_____________________ (freq_plasma_larmor_toroidal_triton_profile156)_ 3.28513666347593218e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_157_____________________ (freq_plasma_larmor_toroidal_triton_profile157)_ 3.28229975789434649e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_158_____________________ (freq_plasma_larmor_toroidal_triton_profile158)_ 3.27946774774948545e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_159_____________________ (freq_plasma_larmor_toroidal_triton_profile159)_ 3.27664062038073614e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_160_____________________ (freq_plasma_larmor_toroidal_triton_profile160)_ 3.27381836317110583e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_161_____________________ (freq_plasma_larmor_toroidal_triton_profile161)_ 3.27100096354703419e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_162_____________________ (freq_plasma_larmor_toroidal_triton_profile162)_ 3.26818840897820666e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_163_____________________ (freq_plasma_larmor_toroidal_triton_profile163)_ 3.26538068697736599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_164_____________________ (freq_plasma_larmor_toroidal_triton_profile164)_ 3.26257778510013223e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_165_____________________ (freq_plasma_larmor_toroidal_triton_profile165)_ 3.25977969094481468e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_166_____________________ (freq_plasma_larmor_toroidal_triton_profile166)_ 3.25698639215223081e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_167_____________________ (freq_plasma_larmor_toroidal_triton_profile167)_ 3.25419787640552595e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_168_____________________ (freq_plasma_larmor_toroidal_triton_profile168)_ 3.25141413142998591e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_169_____________________ (freq_plasma_larmor_toroidal_triton_profile169)_ 3.24863514499286711e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_170_____________________ (freq_plasma_larmor_toroidal_triton_profile170)_ 3.24586090490320586e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_171_____________________ (freq_plasma_larmor_toroidal_triton_profile171)_ 3.24309139901164994e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_172_____________________ (freq_plasma_larmor_toroidal_triton_profile172)_ 3.24032661521027572e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_173_____________________ (freq_plasma_larmor_toroidal_triton_profile173)_ 3.23756654143241383e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_174_____________________ (freq_plasma_larmor_toroidal_triton_profile174)_ 3.23481116565247178e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_175_____________________ (freq_plasma_larmor_toroidal_triton_profile175)_ 3.23206047588576004e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_176_____________________ (freq_plasma_larmor_toroidal_triton_profile176)_ 3.22931446018832102e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_177_____________________ (freq_plasma_larmor_toroidal_triton_profile177)_ 3.22657310665675253e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_178_____________________ (freq_plasma_larmor_toroidal_triton_profile178)_ 3.22383640342803560e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_179_____________________ (freq_plasma_larmor_toroidal_triton_profile179)_ 3.22110433867936768e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_180_____________________ (freq_plasma_larmor_toroidal_triton_profile180)_ 3.21837690062798783e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_181_____________________ (freq_plasma_larmor_toroidal_triton_profile181)_ 3.21565407753100954e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_182_____________________ (freq_plasma_larmor_toroidal_triton_profile182)_ 3.21293585768525265e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_183_____________________ (freq_plasma_larmor_toroidal_triton_profile183)_ 3.21022222942707241e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_184_____________________ (freq_plasma_larmor_toroidal_triton_profile184)_ 3.20751318113219701e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_185_____________________ (freq_plasma_larmor_toroidal_triton_profile185)_ 3.20480870121555962e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_186_____________________ (freq_plasma_larmor_toroidal_triton_profile186)_ 3.20210877813113183e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_187_____________________ (freq_plasma_larmor_toroidal_triton_profile187)_ 3.19941340037176199e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_188_____________________ (freq_plasma_larmor_toroidal_triton_profile188)_ 3.19672255646901093e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_189_____________________ (freq_plasma_larmor_toroidal_triton_profile189)_ 3.19403623499298617e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_190_____________________ (freq_plasma_larmor_toroidal_triton_profile190)_ 3.19135442455218621e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_191_____________________ (freq_plasma_larmor_toroidal_triton_profile191)_ 3.18867711379333362e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_192_____________________ (freq_plasma_larmor_toroidal_triton_profile192)_ 3.18600429140121900e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_193_____________________ (freq_plasma_larmor_toroidal_triton_profile193)_ 3.18333594609853700e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_194_____________________ (freq_plasma_larmor_toroidal_triton_profile194)_ 3.18067206664573587e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_195_____________________ (freq_plasma_larmor_toroidal_triton_profile195)_ 3.17801264184084758e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_196_____________________ (freq_plasma_larmor_toroidal_triton_profile196)_ 3.17535766051934287e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_197_____________________ (freq_plasma_larmor_toroidal_triton_profile197)_ 3.17270711155396774e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_198_____________________ (freq_plasma_larmor_toroidal_triton_profile198)_ 3.17006098385459036e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_199_____________________ (freq_plasma_larmor_toroidal_triton_profile199)_ 3.16741926636804491e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_200_____________________ (freq_plasma_larmor_toroidal_triton_profile200)_ 3.16478194807797968e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_201_____________________ (freq_plasma_larmor_toroidal_triton_profile201)_ 3.16214901800470352e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_202_____________________ (freq_plasma_larmor_toroidal_triton_profile202)_ 3.15952046520503275e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_203_____________________ (freq_plasma_larmor_toroidal_triton_profile203)_ 3.15689627877213806e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_204_____________________ (freq_plasma_larmor_toroidal_triton_profile204)_ 3.15427644783539772e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_205_____________________ (freq_plasma_larmor_toroidal_triton_profile205)_ 3.15166096156024300e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_206_____________________ (freq_plasma_larmor_toroidal_triton_profile206)_ 3.14904980914801434e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_207_____________________ (freq_plasma_larmor_toroidal_triton_profile207)_ 3.14644297983580567e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_208_____________________ (freq_plasma_larmor_toroidal_triton_profile208)_ 3.14384046289632283e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_209_____________________ (freq_plasma_larmor_toroidal_triton_profile209)_ 3.14124224763773046e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_210_____________________ (freq_plasma_larmor_toroidal_triton_profile210)_ 3.13864832340351269e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_211_____________________ (freq_plasma_larmor_toroidal_triton_profile211)_ 3.13605867957232147e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_212_____________________ (freq_plasma_larmor_toroidal_triton_profile212)_ 3.13347330555783473e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_213_____________________ (freq_plasma_larmor_toroidal_triton_profile213)_ 3.13089219080861062e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_214_____________________ (freq_plasma_larmor_toroidal_triton_profile214)_ 3.12831532480794564e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_215_____________________ (freq_plasma_larmor_toroidal_triton_profile215)_ 3.12574269707372785e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_216_____________________ (freq_plasma_larmor_toroidal_triton_profile216)_ 3.12317429715830237e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_217_____________________ (freq_plasma_larmor_toroidal_triton_profile217)_ 3.12061011464831941e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_218_____________________ (freq_plasma_larmor_toroidal_triton_profile218)_ 3.11805013916460536e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_219_____________________ (freq_plasma_larmor_toroidal_triton_profile219)_ 3.11549436036201119e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_220_____________________ (freq_plasma_larmor_toroidal_triton_profile220)_ 3.11294276792928241e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_221_____________________ (freq_plasma_larmor_toroidal_triton_profile221)_ 3.11039535158891454e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_222_____________________ (freq_plasma_larmor_toroidal_triton_profile222)_ 3.10785210109701864e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_223_____________________ (freq_plasma_larmor_toroidal_triton_profile223)_ 3.10531300624318160e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_224_____________________ (freq_plasma_larmor_toroidal_triton_profile224)_ 3.10277805685032979e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_225_____________________ (freq_plasma_larmor_toroidal_triton_profile225)_ 3.10024724277459532e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_226_____________________ (freq_plasma_larmor_toroidal_triton_profile226)_ 3.09772055390517823e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_227_____________________ (freq_plasma_larmor_toroidal_triton_profile227)_ 3.09519798016421273e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_228_____________________ (freq_plasma_larmor_toroidal_triton_profile228)_ 3.09267951150663458e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_229_____________________ (freq_plasma_larmor_toroidal_triton_profile229)_ 3.09016513792004324e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_230_____________________ (freq_plasma_larmor_toroidal_triton_profile230)_ 3.08765484942457639e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_231_____________________ (freq_plasma_larmor_toroidal_triton_profile231)_ 3.08514863607277051e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_232_____________________ (freq_plasma_larmor_toroidal_triton_profile232)_ 3.08264648794943541e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_233_____________________ (freq_plasma_larmor_toroidal_triton_profile233)_ 3.08014839517151825e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_234_____________________ (freq_plasma_larmor_toroidal_triton_profile234)_ 3.07765434788797833e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_235_____________________ (freq_plasma_larmor_toroidal_triton_profile235)_ 3.07516433627965488e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_236_____________________ (freq_plasma_larmor_toroidal_triton_profile236)_ 3.07267835055913813e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_237_____________________ (freq_plasma_larmor_toroidal_triton_profile237)_ 3.07019638097064160e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_238_____________________ (freq_plasma_larmor_toroidal_triton_profile238)_ 3.06771841778987348e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_239_____________________ (freq_plasma_larmor_toroidal_triton_profile239)_ 3.06524445132391453e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_240_____________________ (freq_plasma_larmor_toroidal_triton_profile240)_ 3.06277447191108316e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_241_____________________ (freq_plasma_larmor_toroidal_triton_profile241)_ 3.06030846992081627e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_242_____________________ (freq_plasma_larmor_toroidal_triton_profile242)_ 3.05784643575354256e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_243_____________________ (freq_plasma_larmor_toroidal_triton_profile243)_ 3.05538835984055772e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_244_____________________ (freq_plasma_larmor_toroidal_triton_profile244)_ 3.05293423264389858e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_245_____________________ (freq_plasma_larmor_toroidal_triton_profile245)_ 3.05048404465622269e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_246_____________________ (freq_plasma_larmor_toroidal_triton_profile246)_ 3.04803778640068509e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_247_____________________ (freq_plasma_larmor_toroidal_triton_profile247)_ 3.04559544843081236e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_248_____________________ (freq_plasma_larmor_toroidal_triton_profile248)_ 3.04315702133038715e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_249_____________________ (freq_plasma_larmor_toroidal_triton_profile249)_ 3.04072249571332261e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_250_____________________ (freq_plasma_larmor_toroidal_triton_profile250)_ 3.03829186222354434e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_251_____________________ (freq_plasma_larmor_toroidal_triton_profile251)_ 3.03586511153486744e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_252_____________________ (freq_plasma_larmor_toroidal_triton_profile252)_ 3.03344223435088061e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_253_____________________ (freq_plasma_larmor_toroidal_triton_profile253)_ 3.03102322140482813e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_254_____________________ (freq_plasma_larmor_toroidal_triton_profile254)_ 3.02860806345948465e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_255_____________________ (freq_plasma_larmor_toroidal_triton_profile255)_ 3.02619675130704902e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_256_____________________ (freq_plasma_larmor_toroidal_triton_profile256)_ 3.02378927576901652e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_257_____________________ (freq_plasma_larmor_toroidal_triton_profile257)_ 3.02138562769606784e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_258_____________________ (freq_plasma_larmor_toroidal_triton_profile258)_ 3.01898579796795323e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_259_____________________ (freq_plasma_larmor_toroidal_triton_profile259)_ 3.01658977749337591e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_260_____________________ (freq_plasma_larmor_toroidal_triton_profile260)_ 3.01419755720987581e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_261_____________________ (freq_plasma_larmor_toroidal_triton_profile261)_ 3.01180912808371894e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_262_____________________ (freq_plasma_larmor_toroidal_triton_profile262)_ 3.00942448110978119e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_263_____________________ (freq_plasma_larmor_toroidal_triton_profile263)_ 3.00704360731143467e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_264_____________________ (freq_plasma_larmor_toroidal_triton_profile264)_ 3.00466649774043784e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_265_____________________ (freq_plasma_larmor_toroidal_triton_profile265)_ 3.00229314347681962e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_266_____________________ (freq_plasma_larmor_toroidal_triton_profile266)_ 2.99992353562877104e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_267_____________________ (freq_plasma_larmor_toroidal_triton_profile267)_ 2.99755766533253416e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_268_____________________ (freq_plasma_larmor_toroidal_triton_profile268)_ 2.99519552375228815e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_269_____________________ (freq_plasma_larmor_toroidal_triton_profile269)_ 2.99283710208004192e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_270_____________________ (freq_plasma_larmor_toroidal_triton_profile270)_ 2.99048239153552651e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_271_____________________ (freq_plasma_larmor_toroidal_triton_profile271)_ 2.98813138336608037e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_272_____________________ (freq_plasma_larmor_toroidal_triton_profile272)_ 2.98578406884654611e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_273_____________________ (freq_plasma_larmor_toroidal_triton_profile273)_ 2.98344043927916326e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_274_____________________ (freq_plasma_larmor_toroidal_triton_profile274)_ 2.98110048599345386e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_275_____________________ (freq_plasma_larmor_toroidal_triton_profile275)_ 2.97876420034612343e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_276_____________________ (freq_plasma_larmor_toroidal_triton_profile276)_ 2.97643157372095063e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_277_____________________ (freq_plasma_larmor_toroidal_triton_profile277)_ 2.97410259752868041e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_278_____________________ (freq_plasma_larmor_toroidal_triton_profile278)_ 2.97177726320692226e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_279_____________________ (freq_plasma_larmor_toroidal_triton_profile279)_ 2.96945556222004220e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_280_____________________ (freq_plasma_larmor_toroidal_triton_profile280)_ 2.96713748605905809e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_281_____________________ (freq_plasma_larmor_toroidal_triton_profile281)_ 2.96482302624153979e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_282_____________________ (freq_plasma_larmor_toroidal_triton_profile282)_ 2.96251217431149930e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_283_____________________ (freq_plasma_larmor_toroidal_triton_profile283)_ 2.96020492183929421e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_284_____________________ (freq_plasma_larmor_toroidal_triton_profile284)_ 2.95790126042152047e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_285_____________________ (freq_plasma_larmor_toroidal_triton_profile285)_ 2.95560118168091252e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_286_____________________ (freq_plasma_larmor_toroidal_triton_profile286)_ 2.95330467726624236e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_287_____________________ (freq_plasma_larmor_toroidal_triton_profile287)_ 2.95101173885221593e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_288_____________________ (freq_plasma_larmor_toroidal_triton_profile288)_ 2.94872235813937448e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_289_____________________ (freq_plasma_larmor_toroidal_triton_profile289)_ 2.94643652685399540e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_290_____________________ (freq_plasma_larmor_toroidal_triton_profile290)_ 2.94415423674798943e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_291_____________________ (freq_plasma_larmor_toroidal_triton_profile291)_ 2.94187547959880345e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_292_____________________ (freq_plasma_larmor_toroidal_triton_profile292)_ 2.93960024720932245e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_293_____________________ (freq_plasma_larmor_toroidal_triton_profile293)_ 2.93732853140776902e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_294_____________________ (freq_plasma_larmor_toroidal_triton_profile294)_ 2.93506032404760905e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_295_____________________ (freq_plasma_larmor_toroidal_triton_profile295)_ 2.93279561700744927e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_296_____________________ (freq_plasma_larmor_toroidal_triton_profile296)_ 2.93053440219094343e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_297_____________________ (freq_plasma_larmor_toroidal_triton_profile297)_ 2.92827667152669802e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_298_____________________ (freq_plasma_larmor_toroidal_triton_profile298)_ 2.92602241696817093e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_299_____________________ (freq_plasma_larmor_toroidal_triton_profile299)_ 2.92377163049357980e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_300_____________________ (freq_plasma_larmor_toroidal_triton_profile300)_ 2.92152430410580635e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_301_____________________ (freq_plasma_larmor_toroidal_triton_profile301)_ 2.91928042983229943e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_302_____________________ (freq_plasma_larmor_toroidal_triton_profile302)_ 2.91703999972498380e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_303_____________________ (freq_plasma_larmor_toroidal_triton_profile303)_ 2.91480300586016364e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_304_____________________ (freq_plasma_larmor_toroidal_triton_profile304)_ 2.91256944033843242e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_305_____________________ (freq_plasma_larmor_toroidal_triton_profile305)_ 2.91033929528457448e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_306_____________________ (freq_plasma_larmor_toroidal_triton_profile306)_ 2.90811256284747832e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_307_____________________ (freq_plasma_larmor_toroidal_triton_profile307)_ 2.90588923520004116e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_308_____________________ (freq_plasma_larmor_toroidal_triton_profile308)_ 2.90366930453907885e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_309_____________________ (freq_plasma_larmor_toroidal_triton_profile309)_ 2.90145276308523156e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_310_____________________ (freq_plasma_larmor_toroidal_triton_profile310)_ 2.89923960308287852e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_311_____________________ (freq_plasma_larmor_toroidal_triton_profile311)_ 2.89702981680004075e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_312_____________________ (freq_plasma_larmor_toroidal_triton_profile312)_ 2.89482339652829655e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_313_____________________ (freq_plasma_larmor_toroidal_triton_profile313)_ 2.89262033458268903e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_314_____________________ (freq_plasma_larmor_toroidal_triton_profile314)_ 2.89042062330163755e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_315_____________________ (freq_plasma_larmor_toroidal_triton_profile315)_ 2.88822425504684933e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_316_____________________ (freq_plasma_larmor_toroidal_triton_profile316)_ 2.88603122220322974e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_317_____________________ (freq_plasma_larmor_toroidal_triton_profile317)_ 2.88384151717879623e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_318_____________________ (freq_plasma_larmor_toroidal_triton_profile318)_ 2.88165513240458928e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_319_____________________ (freq_plasma_larmor_toroidal_triton_profile319)_ 2.87947206033458635e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_320_____________________ (freq_plasma_larmor_toroidal_triton_profile320)_ 2.87729229344561249e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_321_____________________ (freq_plasma_larmor_toroidal_triton_profile321)_ 2.87511582423725687e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_322_____________________ (freq_plasma_larmor_toroidal_triton_profile322)_ 2.87294264523178637e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_323_____________________ (freq_plasma_larmor_toroidal_triton_profile323)_ 2.87077274897405878e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_324_____________________ (freq_plasma_larmor_toroidal_triton_profile324)_ 2.86860612803143710e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_325_____________________ (freq_plasma_larmor_toroidal_triton_profile325)_ 2.86644277499370575e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_326_____________________ (freq_plasma_larmor_toroidal_triton_profile326)_ 2.86428268247298673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_327_____________________ (freq_plasma_larmor_toroidal_triton_profile327)_ 2.86212584310365468e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_328_____________________ (freq_plasma_larmor_toroidal_triton_profile328)_ 2.85997224954225197e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_329_____________________ (freq_plasma_larmor_toroidal_triton_profile329)_ 2.85782189446740821e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_330_____________________ (freq_plasma_larmor_toroidal_triton_profile330)_ 2.85567477057975493e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_331_____________________ (freq_plasma_larmor_toroidal_triton_profile331)_ 2.85353087060184181e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_332_____________________ (freq_plasma_larmor_toroidal_triton_profile332)_ 2.85139018727805950e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_333_____________________ (freq_plasma_larmor_toroidal_triton_profile333)_ 2.84925271337455250e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_334_____________________ (freq_plasma_larmor_toroidal_triton_profile334)_ 2.84711844167914093e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_335_____________________ (freq_plasma_larmor_toroidal_triton_profile335)_ 2.84498736500123776e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_336_____________________ (freq_plasma_larmor_toroidal_triton_profile336)_ 2.84285947617176771e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_337_____________________ (freq_plasma_larmor_toroidal_triton_profile337)_ 2.84073476804308929e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_338_____________________ (freq_plasma_larmor_toroidal_triton_profile338)_ 2.83861323348891214e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_339_____________________ (freq_plasma_larmor_toroidal_triton_profile339)_ 2.83649486540421881e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_340_____________________ (freq_plasma_larmor_toroidal_triton_profile340)_ 2.83437965670518540e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_341_____________________ (freq_plasma_larmor_toroidal_triton_profile341)_ 2.83226760032910071e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_342_____________________ (freq_plasma_larmor_toroidal_triton_profile342)_ 2.83015868923429139e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_343_____________________ (freq_plasma_larmor_toroidal_triton_profile343)_ 2.82805291640003994e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_344_____________________ (freq_plasma_larmor_toroidal_triton_profile344)_ 2.82595027482650839e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_345_____________________ (freq_plasma_larmor_toroidal_triton_profile345)_ 2.82385075753466077e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_346_____________________ (freq_plasma_larmor_toroidal_triton_profile346)_ 2.82175435756618641e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_347_____________________ (freq_plasma_larmor_toroidal_triton_profile347)_ 2.81966106798342243e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_348_____________________ (freq_plasma_larmor_toroidal_triton_profile348)_ 2.81757088186927587e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_349_____________________ (freq_plasma_larmor_toroidal_triton_profile349)_ 2.81548379232715108e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_350_____________________ (freq_plasma_larmor_toroidal_triton_profile350)_ 2.81339979248086885e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_351_____________________ (freq_plasma_larmor_toroidal_triton_profile351)_ 2.81131887547459565e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_352_____________________ (freq_plasma_larmor_toroidal_triton_profile352)_ 2.80924103447276726e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_353_____________________ (freq_plasma_larmor_toroidal_triton_profile353)_ 2.80716626266001053e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_354_____________________ (freq_plasma_larmor_toroidal_triton_profile354)_ 2.80509455324107260e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_355_____________________ (freq_plasma_larmor_toroidal_triton_profile355)_ 2.80302589944074713e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_356_____________________ (freq_plasma_larmor_toroidal_triton_profile356)_ 2.80096029450379759e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_357_____________________ (freq_plasma_larmor_toroidal_triton_profile357)_ 2.79889773169488534e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_358_____________________ (freq_plasma_larmor_toroidal_triton_profile358)_ 2.79683820429849364e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_359_____________________ (freq_plasma_larmor_toroidal_triton_profile359)_ 2.79478170561886281e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_360_____________________ (freq_plasma_larmor_toroidal_triton_profile360)_ 2.79272822897990718e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_361_____________________ (freq_plasma_larmor_toroidal_triton_profile361)_ 2.79067776772514917e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_362_____________________ (freq_plasma_larmor_toroidal_triton_profile362)_ 2.78863031521764733e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_363_____________________ (freq_plasma_larmor_toroidal_triton_profile363)_ 2.78658586483992226e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_364_____________________ (freq_plasma_larmor_toroidal_triton_profile364)_ 2.78454440999388546e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_365_____________________ (freq_plasma_larmor_toroidal_triton_profile365)_ 2.78250594410077110e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_366_____________________ (freq_plasma_larmor_toroidal_triton_profile366)_ 2.78047046060106307e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_367_____________________ (freq_plasma_larmor_toroidal_triton_profile367)_ 2.77843795295442529e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_368_____________________ (freq_plasma_larmor_toroidal_triton_profile368)_ 2.77640841463962980e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_369_____________________ (freq_plasma_larmor_toroidal_triton_profile369)_ 2.77438183915449157e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_370_____________________ (freq_plasma_larmor_toroidal_triton_profile370)_ 2.77235822001579367e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_371_____________________ (freq_plasma_larmor_toroidal_triton_profile371)_ 2.77033755075922273e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_372_____________________ (freq_plasma_larmor_toroidal_triton_profile372)_ 2.76831982493929602e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_373_____________________ (freq_plasma_larmor_toroidal_triton_profile373)_ 2.76630503612929694e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_374_____________________ (freq_plasma_larmor_toroidal_triton_profile374)_ 2.76429317792120278e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_375_____________________ (freq_plasma_larmor_toroidal_triton_profile375)_ 2.76228424392561987e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_376_____________________ (freq_plasma_larmor_toroidal_triton_profile376)_ 2.76027822777171619e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_377_____________________ (freq_plasma_larmor_toroidal_triton_profile377)_ 2.75827512310715020e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_378_____________________ (freq_plasma_larmor_toroidal_triton_profile378)_ 2.75627492359800898e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_379_____________________ (freq_plasma_larmor_toroidal_triton_profile379)_ 2.75427762292873450e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_380_____________________ (freq_plasma_larmor_toroidal_triton_profile380)_ 2.75228321480206586e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_381_____________________ (freq_plasma_larmor_toroidal_triton_profile381)_ 2.75029169293896779e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_382_____________________ (freq_plasma_larmor_toroidal_triton_profile382)_ 2.74830305107856356e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_383_____________________ (freq_plasma_larmor_toroidal_triton_profile383)_ 2.74631728297807351e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_384_____________________ (freq_plasma_larmor_toroidal_triton_profile384)_ 2.74433438241274655e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_385_____________________ (freq_plasma_larmor_toroidal_triton_profile385)_ 2.74235434317579605e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_386_____________________ (freq_plasma_larmor_toroidal_triton_profile386)_ 2.74037715907833651e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_387_____________________ (freq_plasma_larmor_toroidal_triton_profile387)_ 2.73840282394931801e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_388_____________________ (freq_plasma_larmor_toroidal_triton_profile388)_ 2.73643133163545951e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_389_____________________ (freq_plasma_larmor_toroidal_triton_profile389)_ 2.73446267600118965e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_390_____________________ (freq_plasma_larmor_toroidal_triton_profile390)_ 2.73249685092857927e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_391_____________________ (freq_plasma_larmor_toroidal_triton_profile391)_ 2.73053385031727962e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_392_____________________ (freq_plasma_larmor_toroidal_triton_profile392)_ 2.72857366808446050e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_393_____________________ (freq_plasma_larmor_toroidal_triton_profile393)_ 2.72661629816474430e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_394_____________________ (freq_plasma_larmor_toroidal_triton_profile394)_ 2.72466173451014608e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_395_____________________ (freq_plasma_larmor_toroidal_triton_profile395)_ 2.72270997109000944e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_396_____________________ (freq_plasma_larmor_toroidal_triton_profile396)_ 2.72076100189094767e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_397_____________________ (freq_plasma_larmor_toroidal_triton_profile397)_ 2.71881482091677673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_398_____________________ (freq_plasma_larmor_toroidal_triton_profile398)_ 2.71687142218845896e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_399_____________________ (freq_plasma_larmor_toroidal_triton_profile399)_ 2.71493079974403791e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_400_____________________ (freq_plasma_larmor_toroidal_triton_profile400)_ 2.71299294763858207e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_401_____________________ (freq_plasma_larmor_toroidal_triton_profile401)_ 2.71105785994411819e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_402_____________________ (freq_plasma_larmor_toroidal_triton_profile402)_ 2.70912553074957505e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_403_____________________ (freq_plasma_larmor_toroidal_triton_profile403)_ 2.70719595416072197e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_404_____________________ (freq_plasma_larmor_toroidal_triton_profile404)_ 2.70526912430010885e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_405_____________________ (freq_plasma_larmor_toroidal_triton_profile405)_ 2.70334503530700803e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_406_____________________ (freq_plasma_larmor_toroidal_triton_profile406)_ 2.70142368133735135e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_407_____________________ (freq_plasma_larmor_toroidal_triton_profile407)_ 2.69950505656367429e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_408_____________________ (freq_plasma_larmor_toroidal_triton_profile408)_ 2.69758915517505556e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_409_____________________ (freq_plasma_larmor_toroidal_triton_profile409)_ 2.69567597137705907e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_410_____________________ (freq_plasma_larmor_toroidal_triton_profile410)_ 2.69376549939167500e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_411_____________________ (freq_plasma_larmor_toroidal_triton_profile411)_ 2.69185773345726170e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_412_____________________ (freq_plasma_larmor_toroidal_triton_profile412)_ 2.68995266782848835e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_413_____________________ (freq_plasma_larmor_toroidal_triton_profile413)_ 2.68805029677627534e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_414_____________________ (freq_plasma_larmor_toroidal_triton_profile414)_ 2.68615061458774097e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_415_____________________ (freq_plasma_larmor_toroidal_triton_profile415)_ 2.68425361556613930e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_416_____________________ (freq_plasma_larmor_toroidal_triton_profile416)_ 2.68235929403080717e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_417_____________________ (freq_plasma_larmor_toroidal_triton_profile417)_ 2.68046764431710392e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_418_____________________ (freq_plasma_larmor_toroidal_triton_profile418)_ 2.67857866077635922e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_419_____________________ (freq_plasma_larmor_toroidal_triton_profile419)_ 2.67669233777581193e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_420_____________________ (freq_plasma_larmor_toroidal_triton_profile420)_ 2.67480866969855949e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_421_____________________ (freq_plasma_larmor_toroidal_triton_profile421)_ 2.67292765094349757e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_422_____________________ (freq_plasma_larmor_toroidal_triton_profile422)_ 2.67104927592526600e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_423_____________________ (freq_plasma_larmor_toroidal_triton_profile423)_ 2.66917353907419480e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_424_____________________ (freq_plasma_larmor_toroidal_triton_profile424)_ 2.66730043483624794e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_425_____________________ (freq_plasma_larmor_toroidal_triton_profile425)_ 2.66542995767296851e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_426_____________________ (freq_plasma_larmor_toroidal_triton_profile426)_ 2.66356210206142515e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_427_____________________ (freq_plasma_larmor_toroidal_triton_profile427)_ 2.66169686249415539e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_428_____________________ (freq_plasma_larmor_toroidal_triton_profile428)_ 2.65983423347911350e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_429_____________________ (freq_plasma_larmor_toroidal_triton_profile429)_ 2.65797420953961760e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_430_____________________ (freq_plasma_larmor_toroidal_triton_profile430)_ 2.65611678521429300e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_431_____________________ (freq_plasma_larmor_toroidal_triton_profile431)_ 2.65426195505702086e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_432_____________________ (freq_plasma_larmor_toroidal_triton_profile432)_ 2.65240971363688298e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_433_____________________ (freq_plasma_larmor_toroidal_triton_profile433)_ 2.65056005553811230e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_434_____________________ (freq_plasma_larmor_toroidal_triton_profile434)_ 2.64871297536003739e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_435_____________________ (freq_plasma_larmor_toroidal_triton_profile435)_ 2.64686846771702878e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_436_____________________ (freq_plasma_larmor_toroidal_triton_profile436)_ 2.64502652723845057e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_437_____________________ (freq_plasma_larmor_toroidal_triton_profile437)_ 2.64318714856860451e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_438_____________________ (freq_plasma_larmor_toroidal_triton_profile438)_ 2.64135032636668086e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_439_____________________ (freq_plasma_larmor_toroidal_triton_profile439)_ 2.63951605530670397e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_440_____________________ (freq_plasma_larmor_toroidal_triton_profile440)_ 2.63768433007748313e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_441_____________________ (freq_plasma_larmor_toroidal_triton_profile441)_ 2.63585514538256153e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_442_____________________ (freq_plasma_larmor_toroidal_triton_profile442)_ 2.63402849594016187e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_443_____________________ (freq_plasma_larmor_toroidal_triton_profile443)_ 2.63220437648313940e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_444_____________________ (freq_plasma_larmor_toroidal_triton_profile444)_ 2.63038278175892979e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_445_____________________ (freq_plasma_larmor_toroidal_triton_profile445)_ 2.62856370652949773e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_446_____________________ (freq_plasma_larmor_toroidal_triton_profile446)_ 2.62674714557128809e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_447_____________________ (freq_plasma_larmor_toroidal_triton_profile447)_ 2.62493309367517531e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_448_____________________ (freq_plasma_larmor_toroidal_triton_profile448)_ 2.62312154564641416e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_449_____________________ (freq_plasma_larmor_toroidal_triton_profile449)_ 2.62131249630458839e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_450_____________________ (freq_plasma_larmor_toroidal_triton_profile450)_ 2.61950594048356563e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_451_____________________ (freq_plasma_larmor_toroidal_triton_profile451)_ 2.61770187303144224e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_452_____________________ (freq_plasma_larmor_toroidal_triton_profile452)_ 2.61590028881049789e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_453_____________________ (freq_plasma_larmor_toroidal_triton_profile453)_ 2.61410118269714825e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_454_____________________ (freq_plasma_larmor_toroidal_triton_profile454)_ 2.61230454958189242e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_455_____________________ (freq_plasma_larmor_toroidal_triton_profile455)_ 2.61051038436926752e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_456_____________________ (freq_plasma_larmor_toroidal_triton_profile456)_ 2.60871868197779953e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_457_____________________ (freq_plasma_larmor_toroidal_triton_profile457)_ 2.60692943733995445e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_458_____________________ (freq_plasma_larmor_toroidal_triton_profile458)_ 2.60514264540209286e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_459_____________________ (freq_plasma_larmor_toroidal_triton_profile459)_ 2.60335830112442002e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_460_____________________ (freq_plasma_larmor_toroidal_triton_profile460)_ 2.60157639948093966e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_461_____________________ (freq_plasma_larmor_toroidal_triton_profile461)_ 2.59979693545940742e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_462_____________________ (freq_plasma_larmor_toroidal_triton_profile462)_ 2.59801990406128094e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_463_____________________ (freq_plasma_larmor_toroidal_triton_profile463)_ 2.59624530030167550e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_464_____________________ (freq_plasma_larmor_toroidal_triton_profile464)_ 2.59447311920931935e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_465_____________________ (freq_plasma_larmor_toroidal_triton_profile465)_ 2.59270335582650341e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_466_____________________ (freq_plasma_larmor_toroidal_triton_profile466)_ 2.59093600520903468e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_467_____________________ (freq_plasma_larmor_toroidal_triton_profile467)_ 2.58917106242619455e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_468_____________________ (freq_plasma_larmor_toroidal_triton_profile468)_ 2.58740852256068997e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_469_____________________ (freq_plasma_larmor_toroidal_triton_profile469)_ 2.58564838070860803e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_470_____________________ (freq_plasma_larmor_toroidal_triton_profile470)_ 2.58389063197936974e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_471_____________________ (freq_plasma_larmor_toroidal_triton_profile471)_ 2.58213527149568833e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_472_____________________ (freq_plasma_larmor_toroidal_triton_profile472)_ 2.58038229439351857e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_473_____________________ (freq_plasma_larmor_toroidal_triton_profile473)_ 2.57863169582201689e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_474_____________________ (freq_plasma_larmor_toroidal_triton_profile474)_ 2.57688347094349414e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_475_____________________ (freq_plasma_larmor_toroidal_triton_profile475)_ 2.57513761493337005e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_476_____________________ (freq_plasma_larmor_toroidal_triton_profile476)_ 2.57339412298013121e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_477_____________________ (freq_plasma_larmor_toroidal_triton_profile477)_ 2.57165299028528631e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_478_____________________ (freq_plasma_larmor_toroidal_triton_profile478)_ 2.56991421206332184e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_479_____________________ (freq_plasma_larmor_toroidal_triton_profile479)_ 2.56817778354165778e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_480_____________________ (freq_plasma_larmor_toroidal_triton_profile480)_ 2.56644369996060356e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_481_____________________ (freq_plasma_larmor_toroidal_triton_profile481)_ 2.56471195657331571e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_482_____________________ (freq_plasma_larmor_toroidal_triton_profile482)_ 2.56298254864575416e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_483_____________________ (freq_plasma_larmor_toroidal_triton_profile483)_ 2.56125547145663984e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_484_____________________ (freq_plasma_larmor_toroidal_triton_profile484)_ 2.55953072029740959e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_485_____________________ (freq_plasma_larmor_toroidal_triton_profile485)_ 2.55780829047217630e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_486_____________________ (freq_plasma_larmor_toroidal_triton_profile486)_ 2.55608817729768232e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_487_____________________ (freq_plasma_larmor_toroidal_triton_profile487)_ 2.55437037610326186e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_488_____________________ (freq_plasma_larmor_toroidal_triton_profile488)_ 2.55265488223079480e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_489_____________________ (freq_plasma_larmor_toroidal_triton_profile489)_ 2.55094169103466645e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_490_____________________ (freq_plasma_larmor_toroidal_triton_profile490)_ 2.54923079788172618e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_491_____________________ (freq_plasma_larmor_toroidal_triton_profile491)_ 2.54752219815124199e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_492_____________________ (freq_plasma_larmor_toroidal_triton_profile492)_ 2.54581588723486476e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_493_____________________ (freq_plasma_larmor_toroidal_triton_profile493)_ 2.54411186053658165e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_494_____________________ (freq_plasma_larmor_toroidal_triton_profile494)_ 2.54241011347267814e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_495_____________________ (freq_plasma_larmor_toroidal_triton_profile495)_ 2.54071064147169366e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_496_____________________ (freq_plasma_larmor_toroidal_triton_profile496)_ 2.53901343997438475e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_497_____________________ (freq_plasma_larmor_toroidal_triton_profile497)_ 2.53731850443368070e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_498_____________________ (freq_plasma_larmor_toroidal_triton_profile498)_ 2.53562583031464554e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_499_____________________ (freq_plasma_larmor_toroidal_triton_profile499)_ 2.53393541309443563e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_500_____________________ (freq_plasma_larmor_toroidal_triton_profile500)_ 2.53224724826226123e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_501_____________________ (freq_plasma_larmor_toroidal_triton_profile501)_ 2.53056133131934293e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_502_____________________ (freq_plasma_larmor_toroidal_triton_profile502)_ 2.52887765777887739e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_503_____________________ (freq_plasma_larmor_toroidal_triton_profile503)_ 2.52719622316599265e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_504_____________________ (freq_plasma_larmor_toroidal_triton_profile504)_ 2.52551702301770933e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_505_____________________ (freq_plasma_larmor_toroidal_triton_profile505)_ 2.52384005288290381e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_506_____________________ (freq_plasma_larmor_toroidal_triton_profile506)_ 2.52216530832226463e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_507_____________________ (freq_plasma_larmor_toroidal_triton_profile507)_ 2.52049278490825817e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_508_____________________ (freq_plasma_larmor_toroidal_triton_profile508)_ 2.51882247822508551e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_509_____________________ (freq_plasma_larmor_toroidal_triton_profile509)_ 2.51715438386864513e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_510_____________________ (freq_plasma_larmor_toroidal_triton_profile510)_ 2.51548849744649455e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_511_____________________ (freq_plasma_larmor_toroidal_triton_profile511)_ 2.51382481457781307e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_512_____________________ (freq_plasma_larmor_toroidal_triton_profile512)_ 2.51216333089335971e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_513_____________________ (freq_plasma_larmor_toroidal_triton_profile513)_ 2.51050404203543775e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_514_____________________ (freq_plasma_larmor_toroidal_triton_profile514)_ 2.50884694365785718e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_515_____________________ (freq_plasma_larmor_toroidal_triton_profile515)_ 2.50719203142589256e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_516_____________________ (freq_plasma_larmor_toroidal_triton_profile516)_ 2.50553930101625137e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_517_____________________ (freq_plasma_larmor_toroidal_triton_profile517)_ 2.50388874811703116e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_518_____________________ (freq_plasma_larmor_toroidal_triton_profile518)_ 2.50224036842768565e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_519_____________________ (freq_plasma_larmor_toroidal_triton_profile519)_ 2.50059415765898265e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_520_____________________ (freq_plasma_larmor_toroidal_triton_profile520)_ 2.49895011153297424e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_521_____________________ (freq_plasma_larmor_toroidal_triton_profile521)_ 2.49730822578295209e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_522_____________________ (freq_plasma_larmor_toroidal_triton_profile522)_ 2.49566849615341648e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_523_____________________ (freq_plasma_larmor_toroidal_triton_profile523)_ 2.49403091840003468e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_524_____________________ (freq_plasma_larmor_toroidal_triton_profile524)_ 2.49239548828960881e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_525_____________________ (freq_plasma_larmor_toroidal_triton_profile525)_ 2.49076220160003491e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_526_____________________ (freq_plasma_larmor_toroidal_triton_profile526)_ 2.48913105412027054e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_527_____________________ (freq_plasma_larmor_toroidal_triton_profile527)_ 2.48750204165029638e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_528_____________________ (freq_plasma_larmor_toroidal_triton_profile528)_ 2.48587516000108160e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_529_____________________ (freq_plasma_larmor_toroidal_triton_profile529)_ 2.48425040499454476e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_530_____________________ (freq_plasma_larmor_toroidal_triton_profile530)_ 2.48262777246352285e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_531_____________________ (freq_plasma_larmor_toroidal_triton_profile531)_ 2.48100725825173222e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_532_____________________ (freq_plasma_larmor_toroidal_triton_profile532)_ 2.47938885821373314e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_533_____________________ (freq_plasma_larmor_toroidal_triton_profile533)_ 2.47777256821489744e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_534_____________________ (freq_plasma_larmor_toroidal_triton_profile534)_ 2.47615838413137086e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_535_____________________ (freq_plasma_larmor_toroidal_triton_profile535)_ 2.47454630185003467e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_536_____________________ (freq_plasma_larmor_toroidal_triton_profile536)_ 2.47293631726847962e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_537_____________________ (freq_plasma_larmor_toroidal_triton_profile537)_ 2.47132842629496343e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_538_____________________ (freq_plasma_larmor_toroidal_triton_profile538)_ 2.46972262484837808e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_539_____________________ (freq_plasma_larmor_toroidal_triton_profile539)_ 2.46811890885821655e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_540_____________________ (freq_plasma_larmor_toroidal_triton_profile540)_ 2.46651727426453792e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_541_____________________ (freq_plasma_larmor_toroidal_triton_profile541)_ 2.46491771701793298e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_542_____________________ (freq_plasma_larmor_toroidal_triton_profile542)_ 2.46332023307949007e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_543_____________________ (freq_plasma_larmor_toroidal_triton_profile543)_ 2.46172481842075959e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_544_____________________ (freq_plasma_larmor_toroidal_triton_profile544)_ 2.46013146902372427e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_545_____________________ (freq_plasma_larmor_toroidal_triton_profile545)_ 2.45854018088075891e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_546_____________________ (freq_plasma_larmor_toroidal_triton_profile546)_ 2.45695094999460429e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_547_____________________ (freq_plasma_larmor_toroidal_triton_profile547)_ 2.45536377237832919e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_548_____________________ (freq_plasma_larmor_toroidal_triton_profile548)_ 2.45377864405529611e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_549_____________________ (freq_plasma_larmor_toroidal_triton_profile549)_ 2.45219556105913147e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_550_____________________ (freq_plasma_larmor_toroidal_triton_profile550)_ 2.45061451943369024e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_551_____________________ (freq_plasma_larmor_toroidal_triton_profile551)_ 2.44903551523302421e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_552_____________________ (freq_plasma_larmor_toroidal_triton_profile552)_ 2.44745854452134781e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_553_____________________ (freq_plasma_larmor_toroidal_triton_profile553)_ 2.44588360337300748e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_554_____________________ (freq_plasma_larmor_toroidal_triton_profile554)_ 2.44431068787244596e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_555_____________________ (freq_plasma_larmor_toroidal_triton_profile555)_ 2.44273979411417320e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_556_____________________ (freq_plasma_larmor_toroidal_triton_profile556)_ 2.44117091820273139e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_557_____________________ (freq_plasma_larmor_toroidal_triton_profile557)_ 2.43960405625266619e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_558_____________________ (freq_plasma_larmor_toroidal_triton_profile558)_ 2.43803920438848846e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_559_____________________ (freq_plasma_larmor_toroidal_triton_profile559)_ 2.43647635874464959e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_560_____________________ (freq_plasma_larmor_toroidal_triton_profile560)_ 2.43491551546550505e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_561_____________________ (freq_plasma_larmor_toroidal_triton_profile561)_ 2.43335667070528381e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_562_____________________ (freq_plasma_larmor_toroidal_triton_profile562)_ 2.43179982062805742e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_563_____________________ (freq_plasma_larmor_toroidal_triton_profile563)_ 2.43024496140770689e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_564_____________________ (freq_plasma_larmor_toroidal_triton_profile564)_ 2.42869208922789320e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_565_____________________ (freq_plasma_larmor_toroidal_triton_profile565)_ 2.42714120028202608e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_566_____________________ (freq_plasma_larmor_toroidal_triton_profile566)_ 2.42559229077323116e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_567_____________________ (freq_plasma_larmor_toroidal_triton_profile567)_ 2.42404535691432022e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_568_____________________ (freq_plasma_larmor_toroidal_triton_profile568)_ 2.42250039492775872e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_569_____________________ (freq_plasma_larmor_toroidal_triton_profile569)_ 2.42095740104563907e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_570_____________________ (freq_plasma_larmor_toroidal_triton_profile570)_ 2.41941637150964588e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_571_____________________ (freq_plasma_larmor_toroidal_triton_profile571)_ 2.41787730257102586e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_572_____________________ (freq_plasma_larmor_toroidal_triton_profile572)_ 2.41634019049056098e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_573_____________________ (freq_plasma_larmor_toroidal_triton_profile573)_ 2.41480503153853491e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_574_____________________ (freq_plasma_larmor_toroidal_triton_profile574)_ 2.41327182199470066e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_575_____________________ (freq_plasma_larmor_toroidal_triton_profile575)_ 2.41174055814825706e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_576_____________________ (freq_plasma_larmor_toroidal_triton_profile576)_ 2.41021123629781492e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_577_____________________ (freq_plasma_larmor_toroidal_triton_profile577)_ 2.40868385275136493e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_578_____________________ (freq_plasma_larmor_toroidal_triton_profile578)_ 2.40715840382625349e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_579_____________________ (freq_plasma_larmor_toroidal_triton_profile579)_ 2.40563488584914804e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_580_____________________ (freq_plasma_larmor_toroidal_triton_profile580)_ 2.40411329515601099e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_581_____________________ (freq_plasma_larmor_toroidal_triton_profile581)_ 2.40259362809206918e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_582_____________________ (freq_plasma_larmor_toroidal_triton_profile582)_ 2.40107588101178370e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_583_____________________ (freq_plasma_larmor_toroidal_triton_profile583)_ 2.39956005027882159e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_584_____________________ (freq_plasma_larmor_toroidal_triton_profile584)_ 2.39804613226602748e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_585_____________________ (freq_plasma_larmor_toroidal_triton_profile585)_ 2.39653412335539311e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_586_____________________ (freq_plasma_larmor_toroidal_triton_profile586)_ 2.39502401993803009e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_587_____________________ (freq_plasma_larmor_toroidal_triton_profile587)_ 2.39351581841413975e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_588_____________________ (freq_plasma_larmor_toroidal_triton_profile588)_ 2.39200951519298516e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_589_____________________ (freq_plasma_larmor_toroidal_triton_profile589)_ 2.39050510669286400e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_590_____________________ (freq_plasma_larmor_toroidal_triton_profile590)_ 2.38900258934107684e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_591_____________________ (freq_plasma_larmor_toroidal_triton_profile591)_ 2.38750195957390256e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_592_____________________ (freq_plasma_larmor_toroidal_triton_profile592)_ 2.38600321383656859e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_593_____________________ (freq_plasma_larmor_toroidal_triton_profile593)_ 2.38450634858322069e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_594_____________________ (freq_plasma_larmor_toroidal_triton_profile594)_ 2.38301136027689837e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_595_____________________ (freq_plasma_larmor_toroidal_triton_profile595)_ 2.38151824538950697e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_596_____________________ (freq_plasma_larmor_toroidal_triton_profile596)_ 2.38002700040178671e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_597_____________________ (freq_plasma_larmor_toroidal_triton_profile597)_ 2.37853762180328742e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_598_____________________ (freq_plasma_larmor_toroidal_triton_profile598)_ 2.37705010609234124e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_599_____________________ (freq_plasma_larmor_toroidal_triton_profile599)_ 2.37556444977603368e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_600_____________________ (freq_plasma_larmor_toroidal_triton_profile600)_ 2.37408064937017672e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_601_____________________ (freq_plasma_larmor_toroidal_triton_profile601)_ 2.37259870139928386e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_602_____________________ (freq_plasma_larmor_toroidal_triton_profile602)_ 2.37111860239654034e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_603_____________________ (freq_plasma_larmor_toroidal_triton_profile603)_ 2.36964034890377373e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_604_____________________ (freq_plasma_larmor_toroidal_triton_profile604)_ 2.36816393747143522e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_605_____________________ (freq_plasma_larmor_toroidal_triton_profile605)_ 2.36668936465856358e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_606_____________________ (freq_plasma_larmor_toroidal_triton_profile606)_ 2.36521662703276537e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_607_____________________ (freq_plasma_larmor_toroidal_triton_profile607)_ 2.36374572117018290e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_608_____________________ (freq_plasma_larmor_toroidal_triton_profile608)_ 2.36227664365547113e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_609_____________________ (freq_plasma_larmor_toroidal_triton_profile609)_ 2.36080939108177237e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_610_____________________ (freq_plasma_larmor_toroidal_triton_profile610)_ 2.35934396005068496e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_611_____________________ (freq_plasma_larmor_toroidal_triton_profile611)_ 2.35788034717224129e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_612_____________________ (freq_plasma_larmor_toroidal_triton_profile612)_ 2.35641854906488173e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_613_____________________ (freq_plasma_larmor_toroidal_triton_profile613)_ 2.35495856235542335e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_614_____________________ (freq_plasma_larmor_toroidal_triton_profile614)_ 2.35350038367904201e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_615_____________________ (freq_plasma_larmor_toroidal_triton_profile615)_ 2.35204400967924148e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_616_____________________ (freq_plasma_larmor_toroidal_triton_profile616)_ 2.35058943700782545e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_617_____________________ (freq_plasma_larmor_toroidal_triton_profile617)_ 2.34913666232487857e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_618_____________________ (freq_plasma_larmor_toroidal_triton_profile618)_ 2.34768568229873590e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_619_____________________ (freq_plasma_larmor_toroidal_triton_profile619)_ 2.34623649360595867e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_620_____________________ (freq_plasma_larmor_toroidal_triton_profile620)_ 2.34478909293130971e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_621_____________________ (freq_plasma_larmor_toroidal_triton_profile621)_ 2.34334347696772739e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_622_____________________ (freq_plasma_larmor_toroidal_triton_profile622)_ 2.34189964241629913e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_623_____________________ (freq_plasma_larmor_toroidal_triton_profile623)_ 2.34045758598623984e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_624_____________________ (freq_plasma_larmor_toroidal_triton_profile624)_ 2.33901730439486355e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_625_____________________ (freq_plasma_larmor_toroidal_triton_profile625)_ 2.33757879436756074e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_626_____________________ (freq_plasma_larmor_toroidal_triton_profile626)_ 2.33614205263777114e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_627_____________________ (freq_plasma_larmor_toroidal_triton_profile627)_ 2.33470707594696134e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_628_____________________ (freq_plasma_larmor_toroidal_triton_profile628)_ 2.33327386104460023e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_629_____________________ (freq_plasma_larmor_toroidal_triton_profile629)_ 2.33184240468813069e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_630_____________________ (freq_plasma_larmor_toroidal_triton_profile630)_ 2.33041270364295132e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_631_____________________ (freq_plasma_larmor_toroidal_triton_profile631)_ 2.32898475468238592e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_632_____________________ (freq_plasma_larmor_toroidal_triton_profile632)_ 2.32755855458766259e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_633_____________________ (freq_plasma_larmor_toroidal_triton_profile633)_ 2.32613410014789067e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_634_____________________ (freq_plasma_larmor_toroidal_triton_profile634)_ 2.32471138816003203e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_635_____________________ (freq_plasma_larmor_toroidal_triton_profile635)_ 2.32329041542888395e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_636_____________________ (freq_plasma_larmor_toroidal_triton_profile636)_ 2.32187117876704521e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_637_____________________ (freq_plasma_larmor_toroidal_triton_profile637)_ 2.32045367499490455e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_638_____________________ (freq_plasma_larmor_toroidal_triton_profile638)_ 2.31903790094060600e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_639_____________________ (freq_plasma_larmor_toroidal_triton_profile639)_ 2.31762385344003253e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_640_____________________ (freq_plasma_larmor_toroidal_triton_profile640)_ 2.31621152933677845e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_641_____________________ (freq_plasma_larmor_toroidal_triton_profile641)_ 2.31480092548212782e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_642_____________________ (freq_plasma_larmor_toroidal_triton_profile642)_ 2.31339203873502947e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_643_____________________ (freq_plasma_larmor_toroidal_triton_profile643)_ 2.31198486596207619e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_644_____________________ (freq_plasma_larmor_toroidal_triton_profile644)_ 2.31057940403747931e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_645_____________________ (freq_plasma_larmor_toroidal_triton_profile645)_ 2.30917564984304607e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_646_____________________ (freq_plasma_larmor_toroidal_triton_profile646)_ 2.30777360026815645e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_647_____________________ (freq_plasma_larmor_toroidal_triton_profile647)_ 2.30637325220974088e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_648_____________________ (freq_plasma_larmor_toroidal_triton_profile648)_ 2.30497460257225782e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_649_____________________ (freq_plasma_larmor_toroidal_triton_profile649)_ 2.30357764826766849e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_650_____________________ (freq_plasma_larmor_toroidal_triton_profile650)_ 2.30218238621541634e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_651_____________________ (freq_plasma_larmor_toroidal_triton_profile651)_ 2.30078881334240511e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_652_____________________ (freq_plasma_larmor_toroidal_triton_profile652)_ 2.29939692658297233e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_653_____________________ (freq_plasma_larmor_toroidal_triton_profile653)_ 2.29800672287887111e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_654_____________________ (freq_plasma_larmor_toroidal_triton_profile654)_ 2.29661819917924702e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_655_____________________ (freq_plasma_larmor_toroidal_triton_profile655)_ 2.29523135244061202e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_656_____________________ (freq_plasma_larmor_toroidal_triton_profile656)_ 2.29384617962682769e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_657_____________________ (freq_plasma_larmor_toroidal_triton_profile657)_ 2.29246267770907916e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_658_____________________ (freq_plasma_larmor_toroidal_triton_profile658)_ 2.29108084366585463e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_659_____________________ (freq_plasma_larmor_toroidal_triton_profile659)_ 2.28970067448292337e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_660_____________________ (freq_plasma_larmor_toroidal_triton_profile660)_ 2.28832216715331338e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_661_____________________ (freq_plasma_larmor_toroidal_triton_profile661)_ 2.28694531867728829e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_662_____________________ (freq_plasma_larmor_toroidal_triton_profile662)_ 2.28557012606232911e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_663_____________________ (freq_plasma_larmor_toroidal_triton_profile663)_ 2.28419658632310852e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_664_____________________ (freq_plasma_larmor_toroidal_triton_profile664)_ 2.28282469648147337e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_665_____________________ (freq_plasma_larmor_toroidal_triton_profile665)_ 2.28145445356641822e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_666_____________________ (freq_plasma_larmor_toroidal_triton_profile666)_ 2.28008585461406969e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_667_____________________ (freq_plasma_larmor_toroidal_triton_profile667)_ 2.27871889666765779e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_668_____________________ (freq_plasma_larmor_toroidal_triton_profile668)_ 2.27735357677750327e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_669_____________________ (freq_plasma_larmor_toroidal_triton_profile669)_ 2.27598989200098962e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_670_____________________ (freq_plasma_larmor_toroidal_triton_profile670)_ 2.27462783940254562e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_671_____________________ (freq_plasma_larmor_toroidal_triton_profile671)_ 2.27326741605362035e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_672_____________________ (freq_plasma_larmor_toroidal_triton_profile672)_ 2.27190861903266795e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_673_____________________ (freq_plasma_larmor_toroidal_triton_profile673)_ 2.27055144542512111e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_674_____________________ (freq_plasma_larmor_toroidal_triton_profile674)_ 2.26919589232337512e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_675_____________________ (freq_plasma_larmor_toroidal_triton_profile675)_ 2.26784195682676211e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_676_____________________ (freq_plasma_larmor_toroidal_triton_profile676)_ 2.26648963604153469e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_677_____________________ (freq_plasma_larmor_toroidal_triton_profile677)_ 2.26513892708084211e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_678_____________________ (freq_plasma_larmor_toroidal_triton_profile678)_ 2.26378982706471309e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_679_____________________ (freq_plasma_larmor_toroidal_triton_profile679)_ 2.26244233312003165e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_680_____________________ (freq_plasma_larmor_toroidal_triton_profile680)_ 2.26109644238051996e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_681_____________________ (freq_plasma_larmor_toroidal_triton_profile681)_ 2.25975215198671408e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_682_____________________ (freq_plasma_larmor_toroidal_triton_profile682)_ 2.25840945908594988e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_683_____________________ (freq_plasma_larmor_toroidal_triton_profile683)_ 2.25706836083233617e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_684_____________________ (freq_plasma_larmor_toroidal_triton_profile684)_ 2.25572885438673832e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_685_____________________ (freq_plasma_larmor_toroidal_triton_profile685)_ 2.25439093691675738e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_686_____________________ (freq_plasma_larmor_toroidal_triton_profile686)_ 2.25305460559671223e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_687_____________________ (freq_plasma_larmor_toroidal_triton_profile687)_ 2.25171985760761462e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_688_____________________ (freq_plasma_larmor_toroidal_triton_profile688)_ 2.25038669013715424e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_689_____________________ (freq_plasma_larmor_toroidal_triton_profile689)_ 2.24905510037967712e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_690_____________________ (freq_plasma_larmor_toroidal_triton_profile690)_ 2.24772508553616405e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_691_____________________ (freq_plasma_larmor_toroidal_triton_profile691)_ 2.24639664281421565e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_692_____________________ (freq_plasma_larmor_toroidal_triton_profile692)_ 2.24506976942802891e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_693_____________________ (freq_plasma_larmor_toroidal_triton_profile693)_ 2.24374446259837858e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_694_____________________ (freq_plasma_larmor_toroidal_triton_profile694)_ 2.24242071955259778e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_695_____________________ (freq_plasma_larmor_toroidal_triton_profile695)_ 2.24109853752456009e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_696_____________________ (freq_plasma_larmor_toroidal_triton_profile696)_ 2.23977791375465728e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_697_____________________ (freq_plasma_larmor_toroidal_triton_profile697)_ 2.23845884548978396e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_698_____________________ (freq_plasma_larmor_toroidal_triton_profile698)_ 2.23714132998331524e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_699_____________________ (freq_plasma_larmor_toroidal_triton_profile699)_ 2.23582536449509002e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_700_____________________ (freq_plasma_larmor_toroidal_triton_profile700)_ 2.23451094629138969e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_701_____________________ (freq_plasma_larmor_toroidal_triton_profile701)_ 2.23319807264491953e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_702_____________________ (freq_plasma_larmor_toroidal_triton_profile702)_ 2.23188674083479308e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_703_____________________ (freq_plasma_larmor_toroidal_triton_profile703)_ 2.23057694814651012e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_704_____________________ (freq_plasma_larmor_toroidal_triton_profile704)_ 2.22926869187193736e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_705_____________________ (freq_plasma_larmor_toroidal_triton_profile705)_ 2.22796196930929273e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_706_____________________ (freq_plasma_larmor_toroidal_triton_profile706)_ 2.22665677776312418e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_707_____________________ (freq_plasma_larmor_toroidal_triton_profile707)_ 2.22535311454429328e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_708_____________________ (freq_plasma_larmor_toroidal_triton_profile708)_ 2.22405097696995512e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_709_____________________ (freq_plasma_larmor_toroidal_triton_profile709)_ 2.22275036236353964e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_710_____________________ (freq_plasma_larmor_toroidal_triton_profile710)_ 2.22145126805473603e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_711_____________________ (freq_plasma_larmor_toroidal_triton_profile711)_ 2.22015369137947038e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_712_____________________ (freq_plasma_larmor_toroidal_triton_profile712)_ 2.21885762967989072e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_713_____________________ (freq_plasma_larmor_toroidal_triton_profile713)_ 2.21756308030434847e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_714_____________________ (freq_plasma_larmor_toroidal_triton_profile714)_ 2.21627004060737826e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_715_____________________ (freq_plasma_larmor_toroidal_triton_profile715)_ 2.21497850794968158e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_716_____________________ (freq_plasma_larmor_toroidal_triton_profile716)_ 2.21368847969810888e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_717_____________________ (freq_plasma_larmor_toroidal_triton_profile717)_ 2.21239995322564207e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_718_____________________ (freq_plasma_larmor_toroidal_triton_profile718)_ 2.21111292591137439e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_719_____________________ (freq_plasma_larmor_toroidal_triton_profile719)_ 2.20982739514049627e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_720_____________________ (freq_plasma_larmor_toroidal_triton_profile720)_ 2.20854335830427259e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_721_____________________ (freq_plasma_larmor_toroidal_triton_profile721)_ 2.20726081280003078e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_722_____________________ (freq_plasma_larmor_toroidal_triton_profile722)_ 2.20597975603113994e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_723_____________________ (freq_plasma_larmor_toroidal_triton_profile723)_ 2.20470018540699147e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_724_____________________ (freq_plasma_larmor_toroidal_triton_profile724)_ 2.20342209834298752e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_725_____________________ (freq_plasma_larmor_toroidal_triton_profile725)_ 2.20214549226051755e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_726_____________________ (freq_plasma_larmor_toroidal_triton_profile726)_ 2.20087036458694451e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_727_____________________ (freq_plasma_larmor_toroidal_triton_profile727)_ 2.19959671275558583e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_728_____________________ (freq_plasma_larmor_toroidal_triton_profile728)_ 2.19832453420569897e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_729_____________________ (freq_plasma_larmor_toroidal_triton_profile729)_ 2.19705382638245858e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_730_____________________ (freq_plasma_larmor_toroidal_triton_profile730)_ 2.19578458673694618e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_731_____________________ (freq_plasma_larmor_toroidal_triton_profile731)_ 2.19451681272612773e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_732_____________________ (freq_plasma_larmor_toroidal_triton_profile732)_ 2.19325050181284100e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_733_____________________ (freq_plasma_larmor_toroidal_triton_profile733)_ 2.19198565146577470e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_734_____________________ (freq_plasma_larmor_toroidal_triton_profile734)_ 2.19072225915945433e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_735_____________________ (freq_plasma_larmor_toroidal_triton_profile735)_ 2.18946032237422392e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_736_____________________ (freq_plasma_larmor_toroidal_triton_profile736)_ 2.18819983859623112e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_737_____________________ (freq_plasma_larmor_toroidal_triton_profile737)_ 2.18694080531740673e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_738_____________________ (freq_plasma_larmor_toroidal_triton_profile738)_ 2.18568322003545351e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_739_____________________ (freq_plasma_larmor_toroidal_triton_profile739)_ 2.18442708025382347e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_740_____________________ (freq_plasma_larmor_toroidal_triton_profile740)_ 2.18317238348170780e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_741_____________________ (freq_plasma_larmor_toroidal_triton_profile741)_ 2.18191912723401412e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_742_____________________ (freq_plasma_larmor_toroidal_triton_profile742)_ 2.18066730903135575e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_743_____________________ (freq_plasma_larmor_toroidal_triton_profile743)_ 2.17941692640003078e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_744_____________________ (freq_plasma_larmor_toroidal_triton_profile744)_ 2.17816797687200755e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_745_____________________ (freq_plasma_larmor_toroidal_triton_profile745)_ 2.17692045798491016e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_746_____________________ (freq_plasma_larmor_toroidal_triton_profile746)_ 2.17567436728199944e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_747_____________________ (freq_plasma_larmor_toroidal_triton_profile747)_ 2.17442970231215879e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_748_____________________ (freq_plasma_larmor_toroidal_triton_profile748)_ 2.17318646062987633e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_749_____________________ (freq_plasma_larmor_toroidal_triton_profile749)_ 2.17194463979523033e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_750_____________________ (freq_plasma_larmor_toroidal_triton_profile750)_ 2.17070423737387434e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_751_____________________ (freq_plasma_larmor_toroidal_triton_profile751)_ 2.16946525093701705e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_752_____________________ (freq_plasma_larmor_toroidal_triton_profile752)_ 2.16822767806141078e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_753_____________________ (freq_plasma_larmor_toroidal_triton_profile753)_ 2.16699151632933468e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_754_____________________ (freq_plasma_larmor_toroidal_triton_profile754)_ 2.16575676332857721e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_755_____________________ (freq_plasma_larmor_toroidal_triton_profile755)_ 2.16452341665242203e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_756_____________________ (freq_plasma_larmor_toroidal_triton_profile756)_ 2.16329147389963157e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_757_____________________ (freq_plasma_larmor_toroidal_triton_profile757)_ 2.16206093267443255e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_758_____________________ (freq_plasma_larmor_toroidal_triton_profile758)_ 2.16083179058649987e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_759_____________________ (freq_plasma_larmor_toroidal_triton_profile759)_ 2.15960404525093921e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_760_____________________ (freq_plasma_larmor_toroidal_triton_profile760)_ 2.15837769428827539e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_761_____________________ (freq_plasma_larmor_toroidal_triton_profile761)_ 2.15715273532443456e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_762_____________________ (freq_plasma_larmor_toroidal_triton_profile762)_ 2.15592916599072814e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_763_____________________ (freq_plasma_larmor_toroidal_triton_profile763)_ 2.15470698392384015e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_764_____________________ (freq_plasma_larmor_toroidal_triton_profile764)_ 2.15348618676580936e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_765_____________________ (freq_plasma_larmor_toroidal_triton_profile765)_ 2.15226677216401659e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_766_____________________ (freq_plasma_larmor_toroidal_triton_profile766)_ 2.15104873777116723e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_767_____________________ (freq_plasma_larmor_toroidal_triton_profile767)_ 2.14983208124527894e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_768_____________________ (freq_plasma_larmor_toroidal_triton_profile768)_ 2.14861680024966262e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_769_____________________ (freq_plasma_larmor_toroidal_triton_profile769)_ 2.14740289245291129e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_770_____________________ (freq_plasma_larmor_toroidal_triton_profile770)_ 2.14619035552888401e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_771_____________________ (freq_plasma_larmor_toroidal_triton_profile771)_ 2.14497918715668954e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_772_____________________ (freq_plasma_larmor_toroidal_triton_profile772)_ 2.14376938502067290e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_773_____________________ (freq_plasma_larmor_toroidal_triton_profile773)_ 2.14256094681040235e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_774_____________________ (freq_plasma_larmor_toroidal_triton_profile774)_ 2.14135387022064961e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_775_____________________ (freq_plasma_larmor_toroidal_triton_profile775)_ 2.14014815295138136e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_776_____________________ (freq_plasma_larmor_toroidal_triton_profile776)_ 2.13894379270773903e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_777_____________________ (freq_plasma_larmor_toroidal_triton_profile777)_ 2.13774078720002957e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_778_____________________ (freq_plasma_larmor_toroidal_triton_profile778)_ 2.13653913414370641e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_779_____________________ (freq_plasma_larmor_toroidal_triton_profile779)_ 2.13533883125935569e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_780_____________________ (freq_plasma_larmor_toroidal_triton_profile780)_ 2.13413987627268583e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_781_____________________ (freq_plasma_larmor_toroidal_triton_profile781)_ 2.13294226691450812e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_782_____________________ (freq_plasma_larmor_toroidal_triton_profile782)_ 2.13174600092072561e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_783_____________________ (freq_plasma_larmor_toroidal_triton_profile783)_ 2.13055107603231668e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_784_____________________ (freq_plasma_larmor_toroidal_triton_profile784)_ 2.12935748999532387e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_785_____________________ (freq_plasma_larmor_toroidal_triton_profile785)_ 2.12816524056083597e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_786_____________________ (freq_plasma_larmor_toroidal_triton_profile786)_ 2.12697432548497654e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_787_____________________ (freq_plasma_larmor_toroidal_triton_profile787)_ 2.12578474252888896e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_788_____________________ (freq_plasma_larmor_toroidal_triton_profile788)_ 2.12459648945872188e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_789_____________________ (freq_plasma_larmor_toroidal_triton_profile789)_ 2.12340956404561661e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_790_____________________ (freq_plasma_larmor_toroidal_triton_profile790)_ 2.12222396406569146e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_791_____________________ (freq_plasma_larmor_toroidal_triton_profile791)_ 2.12103968730003014e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_792_____________________ (freq_plasma_larmor_toroidal_triton_profile792)_ 2.11985673153466433e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_793_____________________ (freq_plasma_larmor_toroidal_triton_profile793)_ 2.11867509456056468e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_794_____________________ (freq_plasma_larmor_toroidal_triton_profile794)_ 2.11749477417362295e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_795_____________________ (freq_plasma_larmor_toroidal_triton_profile795)_ 2.11631576817463972e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_796_____________________ (freq_plasma_larmor_toroidal_triton_profile796)_ 2.11513807436931133e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_797_____________________ (freq_plasma_larmor_toroidal_triton_profile797)_ 2.11396169056821689e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_798_____________________ (freq_plasma_larmor_toroidal_triton_profile798)_ 2.11278661458679996e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_799_____________________ (freq_plasma_larmor_toroidal_triton_profile799)_ 2.11161284424536303e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_800_____________________ (freq_plasma_larmor_toroidal_triton_profile800)_ 2.11044037736904696e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_801_____________________ (freq_plasma_larmor_toroidal_triton_profile801)_ 2.10926921178782098e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_802_____________________ (freq_plasma_larmor_toroidal_triton_profile802)_ 2.10809934533646889e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_803_____________________ (freq_plasma_larmor_toroidal_triton_profile803)_ 2.10693077585457489e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_804_____________________ (freq_plasma_larmor_toroidal_triton_profile804)_ 2.10576350118651167e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_805_____________________ (freq_plasma_larmor_toroidal_triton_profile805)_ 2.10459751918142438e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_806_____________________ (freq_plasma_larmor_toroidal_triton_profile806)_ 2.10343282769322209e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_807_____________________ (freq_plasma_larmor_toroidal_triton_profile807)_ 2.10226942458056025e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_808_____________________ (freq_plasma_larmor_toroidal_triton_profile808)_ 2.10110730770682842e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_809_____________________ (freq_plasma_larmor_toroidal_triton_profile809)_ 2.09994647494013980e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_810_____________________ (freq_plasma_larmor_toroidal_triton_profile810)_ 2.09878692415331528e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_811_____________________ (freq_plasma_larmor_toroidal_triton_profile811)_ 2.09762865322387032e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_812_____________________ (freq_plasma_larmor_toroidal_triton_profile812)_ 2.09647166003400646e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_813_____________________ (freq_plasma_larmor_toroidal_triton_profile813)_ 2.09531594247059152e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_814_____________________ (freq_plasma_larmor_toroidal_triton_profile814)_ 2.09416149842515364e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_815_____________________ (freq_plasma_larmor_toroidal_triton_profile815)_ 2.09300832579386160e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_816_____________________ (freq_plasma_larmor_toroidal_triton_profile816)_ 2.09185642247751951e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_817_____________________ (freq_plasma_larmor_toroidal_triton_profile817)_ 2.09070578638154753e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_818_____________________ (freq_plasma_larmor_toroidal_triton_profile818)_ 2.08955641541597210e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_819_____________________ (freq_plasma_larmor_toroidal_triton_profile819)_ 2.08840830749541447e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_820_____________________ (freq_plasma_larmor_toroidal_triton_profile820)_ 2.08726146053907387e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_821_____________________ (freq_plasma_larmor_toroidal_triton_profile821)_ 2.08611587247072086e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_822_____________________ (freq_plasma_larmor_toroidal_triton_profile822)_ 2.08497154121867977e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_823_____________________ (freq_plasma_larmor_toroidal_triton_profile823)_ 2.08382846471581832e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_824_____________________ (freq_plasma_larmor_toroidal_triton_profile824)_ 2.08268664089953564e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_825_____________________ (freq_plasma_larmor_toroidal_triton_profile825)_ 2.08154606771174893e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_826_____________________ (freq_plasma_larmor_toroidal_triton_profile826)_ 2.08040674309887998e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_827_____________________ (freq_plasma_larmor_toroidal_triton_profile827)_ 2.07926866501184516e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_828_____________________ (freq_plasma_larmor_toroidal_triton_profile828)_ 2.07813183140604310e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_829_____________________ (freq_plasma_larmor_toroidal_triton_profile829)_ 2.07699624024134092e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_830_____________________ (freq_plasma_larmor_toroidal_triton_profile830)_ 2.07586188948206082e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_831_____________________ (freq_plasma_larmor_toroidal_triton_profile831)_ 2.07472877709697224e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_832_____________________ (freq_plasma_larmor_toroidal_triton_profile832)_ 2.07359690105927624e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_833_____________________ (freq_plasma_larmor_toroidal_triton_profile833)_ 2.07246625934659392e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_834_____________________ (freq_plasma_larmor_toroidal_triton_profile834)_ 2.07133684994095527e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_835_____________________ (freq_plasma_larmor_toroidal_triton_profile835)_ 2.07020867082878686e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_836_____________________ (freq_plasma_larmor_toroidal_triton_profile836)_ 2.06908172000089996e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_837_____________________ (freq_plasma_larmor_toroidal_triton_profile837)_ 2.06795599545247741e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_838_____________________ (freq_plasma_larmor_toroidal_triton_profile838)_ 2.06683149518306330e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_839_____________________ (freq_plasma_larmor_toroidal_triton_profile839)_ 2.06570821719655097e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_840_____________________ (freq_plasma_larmor_toroidal_triton_profile840)_ 2.06458615950116962e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_841_____________________ (freq_plasma_larmor_toroidal_triton_profile841)_ 2.06346532010947540e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_842_____________________ (freq_plasma_larmor_toroidal_triton_profile842)_ 2.06234569703833610e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_843_____________________ (freq_plasma_larmor_toroidal_triton_profile843)_ 2.06122728830892257e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_844_____________________ (freq_plasma_larmor_toroidal_triton_profile844)_ 2.06011009194669537e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_845_____________________ (freq_plasma_larmor_toroidal_triton_profile845)_ 2.05899410598139390e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_846_____________________ (freq_plasma_larmor_toroidal_triton_profile846)_ 2.05787932844702415e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_847_____________________ (freq_plasma_larmor_toroidal_triton_profile847)_ 2.05676575738184713e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_848_____________________ (freq_plasma_larmor_toroidal_triton_profile848)_ 2.05565339082836919e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_849_____________________ (freq_plasma_larmor_toroidal_triton_profile849)_ 2.05454222683332637e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_850_____________________ (freq_plasma_larmor_toroidal_triton_profile850)_ 2.05343226344767883e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_851_____________________ (freq_plasma_larmor_toroidal_triton_profile851)_ 2.05232349872659445e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_852_____________________ (freq_plasma_larmor_toroidal_triton_profile852)_ 2.05121593072944097e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_853_____________________ (freq_plasma_larmor_toroidal_triton_profile853)_ 2.05010955751976967e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_854_____________________ (freq_plasma_larmor_toroidal_triton_profile854)_ 2.04900437716531157e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_855_____________________ (freq_plasma_larmor_toroidal_triton_profile855)_ 2.04790038773796000e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_856_____________________ (freq_plasma_larmor_toroidal_triton_profile856)_ 2.04679758731376082e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_857_____________________ (freq_plasma_larmor_toroidal_triton_profile857)_ 2.04569597397290245e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_858_____________________ (freq_plasma_larmor_toroidal_triton_profile858)_ 2.04459554579970613e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_859_____________________ (freq_plasma_larmor_toroidal_triton_profile859)_ 2.04349630088260956e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_860_____________________ (freq_plasma_larmor_toroidal_triton_profile860)_ 2.04239823731416091e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_861_____________________ (freq_plasma_larmor_toroidal_triton_profile861)_ 2.04130135319100581e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_862_____________________ (freq_plasma_larmor_toroidal_triton_profile862)_ 2.04020564661387689e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_863_____________________ (freq_plasma_larmor_toroidal_triton_profile863)_ 2.03911111568758227e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_864_____________________ (freq_plasma_larmor_toroidal_triton_profile864)_ 2.03801775852099322e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_865_____________________ (freq_plasma_larmor_toroidal_triton_profile865)_ 2.03692557322703823e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_866_____________________ (freq_plasma_larmor_toroidal_triton_profile866)_ 2.03583455792268515e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_867_____________________ (freq_plasma_larmor_toroidal_triton_profile867)_ 2.03474471072893664e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_868_____________________ (freq_plasma_larmor_toroidal_triton_profile868)_ 2.03365602977081537e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_869_____________________ (freq_plasma_larmor_toroidal_triton_profile869)_ 2.03256851317735501e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_870_____________________ (freq_plasma_larmor_toroidal_triton_profile870)_ 2.03148215908158943e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_871_____________________ (freq_plasma_larmor_toroidal_triton_profile871)_ 2.03039696562054120e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_872_____________________ (freq_plasma_larmor_toroidal_triton_profile872)_ 2.02931293093521260e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_873_____________________ (freq_plasma_larmor_toroidal_triton_profile873)_ 2.02823005317057259e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_874_____________________ (freq_plasma_larmor_toroidal_triton_profile874)_ 2.02714833047554828e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_875_____________________ (freq_plasma_larmor_toroidal_triton_profile875)_ 2.02606776100301333e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_876_____________________ (freq_plasma_larmor_toroidal_triton_profile876)_ 2.02498834290977791e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_877_____________________ (freq_plasma_larmor_toroidal_triton_profile877)_ 2.02391007435657829e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_878_____________________ (freq_plasma_larmor_toroidal_triton_profile878)_ 2.02283295350806490e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_879_____________________ (freq_plasma_larmor_toroidal_triton_profile879)_ 2.02175697853279449e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_880_____________________ (freq_plasma_larmor_toroidal_triton_profile880)_ 2.02068214760321826e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_881_____________________ (freq_plasma_larmor_toroidal_triton_profile881)_ 2.01960845889567100e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_882_____________________ (freq_plasma_larmor_toroidal_triton_profile882)_ 2.01853591059036255e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_883_____________________ (freq_plasma_larmor_toroidal_triton_profile883)_ 2.01746450087136552e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_884_____________________ (freq_plasma_larmor_toroidal_triton_profile884)_ 2.01639422792660631e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_885_____________________ (freq_plasma_larmor_toroidal_triton_profile885)_ 2.01532508994785398e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_886_____________________ (freq_plasma_larmor_toroidal_triton_profile886)_ 2.01425708513071164e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_887_____________________ (freq_plasma_larmor_toroidal_triton_profile887)_ 2.01319021167460456e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_888_____________________ (freq_plasma_larmor_toroidal_triton_profile888)_ 2.01212446778277084e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_889_____________________ (freq_plasma_larmor_toroidal_triton_profile889)_ 2.01105985166225061e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_890_____________________ (freq_plasma_larmor_toroidal_triton_profile890)_ 2.00999636152387783e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_891_____________________ (freq_plasma_larmor_toroidal_triton_profile891)_ 2.00893399558226913e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_892_____________________ (freq_plasma_larmor_toroidal_triton_profile892)_ 2.00787275205581225e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_893_____________________ (freq_plasma_larmor_toroidal_triton_profile893)_ 2.00681262916665934e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_894_____________________ (freq_plasma_larmor_toroidal_triton_profile894)_ 2.00575362514071427e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_895_____________________ (freq_plasma_larmor_toroidal_triton_profile895)_ 2.00469573820762299e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_896_____________________ (freq_plasma_larmor_toroidal_triton_profile896)_ 2.00363896660076603e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_897_____________________ (freq_plasma_larmor_toroidal_triton_profile897)_ 2.00258330855724625e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_898_____________________ (freq_plasma_larmor_toroidal_triton_profile898)_ 2.00152876231787950e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_899_____________________ (freq_plasma_larmor_toroidal_triton_profile899)_ 2.00047532612718605e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_900_____________________ (freq_plasma_larmor_toroidal_triton_profile900)_ 1.99942299823337905e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_901_____________________ (freq_plasma_larmor_toroidal_triton_profile901)_ 1.99837177688835599e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_902_____________________ (freq_plasma_larmor_toroidal_triton_profile902)_ 1.99732166034768932e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_903_____________________ (freq_plasma_larmor_toroidal_triton_profile903)_ 1.99627264687061608e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_904_____________________ (freq_plasma_larmor_toroidal_triton_profile904)_ 1.99522473472002782e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_905_____________________ (freq_plasma_larmor_toroidal_triton_profile905)_ 1.99417792216246203e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_906_____________________ (freq_plasma_larmor_toroidal_triton_profile906)_ 1.99313220746809281e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_907_____________________ (freq_plasma_larmor_toroidal_triton_profile907)_ 1.99208758891072012e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_908_____________________ (freq_plasma_larmor_toroidal_triton_profile908)_ 1.99104406476775967e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_909_____________________ (freq_plasma_larmor_toroidal_triton_profile909)_ 1.99000163332023732e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_910_____________________ (freq_plasma_larmor_toroidal_triton_profile910)_ 1.98896029285277538e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_911_____________________ (freq_plasma_larmor_toroidal_triton_profile911)_ 1.98792004165358394e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_912_____________________ (freq_plasma_larmor_toroidal_triton_profile912)_ 1.98688087801445536e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_913_____________________ (freq_plasma_larmor_toroidal_triton_profile913)_ 1.98584280023074858e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_914_____________________ (freq_plasma_larmor_toroidal_triton_profile914)_ 1.98480580660138540e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_915_____________________ (freq_plasma_larmor_toroidal_triton_profile915)_ 1.98376989542883746e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_916_____________________ (freq_plasma_larmor_toroidal_triton_profile916)_ 1.98273506501912028e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_917_____________________ (freq_plasma_larmor_toroidal_triton_profile917)_ 1.98170131368177980e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_918_____________________ (freq_plasma_larmor_toroidal_triton_profile918)_ 1.98066863972988687e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_919_____________________ (freq_plasma_larmor_toroidal_triton_profile919)_ 1.97963704148002788e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_920_____________________ (freq_plasma_larmor_toroidal_triton_profile920)_ 1.97860651725229211e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_921_____________________ (freq_plasma_larmor_toroidal_triton_profile921)_ 1.97757706537026688e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_922_____________________ (freq_plasma_larmor_toroidal_triton_profile922)_ 1.97654868416102603e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_923_____________________ (freq_plasma_larmor_toroidal_triton_profile923)_ 1.97552137195512094e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_924_____________________ (freq_plasma_larmor_toroidal_triton_profile924)_ 1.97449512708657272e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_925_____________________ (freq_plasma_larmor_toroidal_triton_profile925)_ 1.97346994789286256e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_926_____________________ (freq_plasma_larmor_toroidal_triton_profile926)_ 1.97244583271492124e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_927_____________________ (freq_plasma_larmor_toroidal_triton_profile927)_ 1.97142277989712320e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_928_____________________ (freq_plasma_larmor_toroidal_triton_profile928)_ 1.97040078778727502e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_929_____________________ (freq_plasma_larmor_toroidal_triton_profile929)_ 1.96937985473660752e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_930_____________________ (freq_plasma_larmor_toroidal_triton_profile930)_ 1.96835997909976877e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_931_____________________ (freq_plasma_larmor_toroidal_triton_profile931)_ 1.96734115923480988e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_932_____________________ (freq_plasma_larmor_toroidal_triton_profile932)_ 1.96632339350318313e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_933_____________________ (freq_plasma_larmor_toroidal_triton_profile933)_ 1.96530668026972786e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_934_____________________ (freq_plasma_larmor_toroidal_triton_profile934)_ 1.96429101790266298e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_935_____________________ (freq_plasma_larmor_toroidal_triton_profile935)_ 1.96327640477358103e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_936_____________________ (freq_plasma_larmor_toroidal_triton_profile936)_ 1.96226283925743587e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_937_____________________ (freq_plasma_larmor_toroidal_triton_profile937)_ 1.96125031973253526e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_938_____________________ (freq_plasma_larmor_toroidal_triton_profile938)_ 1.96023884458053298e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_939_____________________ (freq_plasma_larmor_toroidal_triton_profile939)_ 1.95922841218641922e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_940_____________________ (freq_plasma_larmor_toroidal_triton_profile940)_ 1.95821902093851231e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_941_____________________ (freq_plasma_larmor_toroidal_triton_profile941)_ 1.95721066922845170e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_942_____________________ (freq_plasma_larmor_toroidal_triton_profile942)_ 1.95620335545118488e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_943_____________________ (freq_plasma_larmor_toroidal_triton_profile943)_ 1.95519707800496593e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_944_____________________ (freq_plasma_larmor_toroidal_triton_profile944)_ 1.95419183529133834e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_945_____________________ (freq_plasma_larmor_toroidal_triton_profile945)_ 1.95318762571513578e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_946_____________________ (freq_plasma_larmor_toroidal_triton_profile946)_ 1.95218444768446498e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_947_____________________ (freq_plasma_larmor_toroidal_triton_profile947)_ 1.95118229961070493e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_948_____________________ (freq_plasma_larmor_toroidal_triton_profile948)_ 1.95018117990849316e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_949_____________________ (freq_plasma_larmor_toroidal_triton_profile949)_ 1.94918108699571937e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_950_____________________ (freq_plasma_larmor_toroidal_triton_profile950)_ 1.94818201929351762e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_951_____________________ (freq_plasma_larmor_toroidal_triton_profile951)_ 1.94718397522625662e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_952_____________________ (freq_plasma_larmor_toroidal_triton_profile952)_ 1.94618695322153270e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_953_____________________ (freq_plasma_larmor_toroidal_triton_profile953)_ 1.94519095171016045e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_954_____________________ (freq_plasma_larmor_toroidal_triton_profile954)_ 1.94419596912616529e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_955_____________________ (freq_plasma_larmor_toroidal_triton_profile955)_ 1.94320200390677601e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_956_____________________ (freq_plasma_larmor_toroidal_triton_profile956)_ 1.94220905449241363e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_957_____________________ (freq_plasma_larmor_toroidal_triton_profile957)_ 1.94121711932668723e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_958_____________________ (freq_plasma_larmor_toroidal_triton_profile958)_ 1.94022619685638249e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_959_____________________ (freq_plasma_larmor_toroidal_triton_profile959)_ 1.93923628553145565e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_960_____________________ (freq_plasma_larmor_toroidal_triton_profile960)_ 1.93824738380502462e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_961_____________________ (freq_plasma_larmor_toroidal_triton_profile961)_ 1.93725949013336040e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_962_____________________ (freq_plasma_larmor_toroidal_triton_profile962)_ 1.93627260297588035e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_963_____________________ (freq_plasma_larmor_toroidal_triton_profile963)_ 1.93528672079513930e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_964_____________________ (freq_plasma_larmor_toroidal_triton_profile964)_ 1.93430184205682091e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_965_____________________ (freq_plasma_larmor_toroidal_triton_profile965)_ 1.93331796522973217e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_966_____________________ (freq_plasma_larmor_toroidal_triton_profile966)_ 1.93233508878579251e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_967_____________________ (freq_plasma_larmor_toroidal_triton_profile967)_ 1.93135321120002717e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_968_____________________ (freq_plasma_larmor_toroidal_triton_profile968)_ 1.93037233095056042e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_969_____________________ (freq_plasma_larmor_toroidal_triton_profile969)_ 1.92939244651860557e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_970_____________________ (freq_plasma_larmor_toroidal_triton_profile970)_ 1.92841355638845898e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_971_____________________ (freq_plasma_larmor_toroidal_triton_profile971)_ 1.92743565904749110e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_972_____________________ (freq_plasma_larmor_toroidal_triton_profile972)_ 1.92645875298613980e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_973_____________________ (freq_plasma_larmor_toroidal_triton_profile973)_ 1.92548283669789918e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_974_____________________ (freq_plasma_larmor_toroidal_triton_profile974)_ 1.92450790867931806e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_975_____________________ (freq_plasma_larmor_toroidal_triton_profile975)_ 1.92353396742998660e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_976_____________________ (freq_plasma_larmor_toroidal_triton_profile976)_ 1.92256101145253107e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_977_____________________ (freq_plasma_larmor_toroidal_triton_profile977)_ 1.92158903925260529e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_978_____________________ (freq_plasma_larmor_toroidal_triton_profile978)_ 1.92061804933888465e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_979_____________________ (freq_plasma_larmor_toroidal_triton_profile979)_ 1.91964804022305720e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_980_____________________ (freq_plasma_larmor_toroidal_triton_profile980)_ 1.91867901041981466e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_981_____________________ (freq_plasma_larmor_toroidal_triton_profile981)_ 1.91771095844684802e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_982_____________________ (freq_plasma_larmor_toroidal_triton_profile982)_ 1.91674388282483779e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_983_____________________ (freq_plasma_larmor_toroidal_triton_profile983)_ 1.91577778207744583e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_984_____________________ (freq_plasma_larmor_toroidal_triton_profile984)_ 1.91481265473131165e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_985_____________________ (freq_plasma_larmor_toroidal_triton_profile985)_ 1.91384849931603894e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_986_____________________ (freq_plasma_larmor_toroidal_triton_profile986)_ 1.91288531436419412e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_987_____________________ (freq_plasma_larmor_toroidal_triton_profile987)_ 1.91192309841129445e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_988_____________________ (freq_plasma_larmor_toroidal_triton_profile988)_ 1.91096184999580346e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_989_____________________ (freq_plasma_larmor_toroidal_triton_profile989)_ 1.91000156765912212e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_990_____________________ (freq_plasma_larmor_toroidal_triton_profile990)_ 1.90904224994558133e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_991_____________________ (freq_plasma_larmor_toroidal_triton_profile991)_ 1.90808389540243596e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_992_____________________ (freq_plasma_larmor_toroidal_triton_profile992)_ 1.90712650257985592e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_993_____________________ (freq_plasma_larmor_toroidal_triton_profile993)_ 1.90617007003091909e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_994_____________________ (freq_plasma_larmor_toroidal_triton_profile994)_ 1.90521459631160609e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_995_____________________ (freq_plasma_larmor_toroidal_triton_profile995)_ 1.90426007998078838e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_996_____________________ (freq_plasma_larmor_toroidal_triton_profile996)_ 1.90330651960022710e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_997_____________________ (freq_plasma_larmor_toroidal_triton_profile997)_ 1.90235391373456120e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_998_____________________ (freq_plasma_larmor_toroidal_triton_profile998)_ 1.90140226095130220e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_999_____________________ (freq_plasma_larmor_toroidal_triton_profile999)_ 1.90045155982082635e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_1000____________________ (freq_plasma_larmor_toroidal_triton_profile1000)_ 1.89950180891636834e+07 +Plasma_triton_toroidal_Larmor_frequency_at_point_1001____________________ (freq_plasma_larmor_toroidal_triton_profile1001)_ 1.89855300681401305e+07 +Volume_averaged_electron_upper_hybrid_frequency_(ωₕ)_(Hz)________________ (freq_plasma_upper_hybrid_vol_avg)_ 1.60608403788606964e+11 +Plasma_upper_hybrid_frequency_at_point_0_________________________________ (freq_plasma_upper_hybrid_profile0)_ 2.15717169979392059e+11 +Plasma_upper_hybrid_frequency_at_point_1_________________________________ (freq_plasma_upper_hybrid_profile1)_ 2.15676242820580170e+11 +Plasma_upper_hybrid_frequency_at_point_2_________________________________ (freq_plasma_upper_hybrid_profile2)_ 2.15635910374776703e+11 +Plasma_upper_hybrid_frequency_at_point_3_________________________________ (freq_plasma_upper_hybrid_profile3)_ 2.15596170576182281e+11 +Plasma_upper_hybrid_frequency_at_point_4_________________________________ (freq_plasma_upper_hybrid_profile4)_ 2.15557021364509003e+11 +Plasma_upper_hybrid_frequency_at_point_5_________________________________ (freq_plasma_upper_hybrid_profile5)_ 2.15518460684970703e+11 +Plasma_upper_hybrid_frequency_at_point_6_________________________________ (freq_plasma_upper_hybrid_profile6)_ 2.15480486488273682e+11 +Plasma_upper_hybrid_frequency_at_point_7_________________________________ (freq_plasma_upper_hybrid_profile7)_ 2.15443096730607239e+11 +Plasma_upper_hybrid_frequency_at_point_8_________________________________ (freq_plasma_upper_hybrid_profile8)_ 2.15406289373634216e+11 +Plasma_upper_hybrid_frequency_at_point_9_________________________________ (freq_plasma_upper_hybrid_profile9)_ 2.15370062384482056e+11 +Plasma_upper_hybrid_frequency_at_point_10________________________________ (freq_plasma_upper_hybrid_profile10)_ 2.15334413735732971e+11 +Plasma_upper_hybrid_frequency_at_point_11________________________________ (freq_plasma_upper_hybrid_profile11)_ 2.15299341405415466e+11 +Plasma_upper_hybrid_frequency_at_point_12________________________________ (freq_plasma_upper_hybrid_profile12)_ 2.15264843376994812e+11 +Plasma_upper_hybrid_frequency_at_point_13________________________________ (freq_plasma_upper_hybrid_profile13)_ 2.15230917639363983e+11 +Plasma_upper_hybrid_frequency_at_point_14________________________________ (freq_plasma_upper_hybrid_profile14)_ 2.15197562186834869e+11 +Plasma_upper_hybrid_frequency_at_point_15________________________________ (freq_plasma_upper_hybrid_profile15)_ 2.15164775019129028e+11 +Plasma_upper_hybrid_frequency_at_point_16________________________________ (freq_plasma_upper_hybrid_profile16)_ 2.15132554141369019e+11 +Plasma_upper_hybrid_frequency_at_point_17________________________________ (freq_plasma_upper_hybrid_profile17)_ 2.15100897564069122e+11 +Plasma_upper_hybrid_frequency_at_point_18________________________________ (freq_plasma_upper_hybrid_profile18)_ 2.15069803303127228e+11 +Plasma_upper_hybrid_frequency_at_point_19________________________________ (freq_plasma_upper_hybrid_profile19)_ 2.15039269379815308e+11 +Plasma_upper_hybrid_frequency_at_point_20________________________________ (freq_plasma_upper_hybrid_profile20)_ 2.15009293820770966e+11 +Plasma_upper_hybrid_frequency_at_point_21________________________________ (freq_plasma_upper_hybrid_profile21)_ 2.14979874657988983e+11 +Plasma_upper_hybrid_frequency_at_point_22________________________________ (freq_plasma_upper_hybrid_profile22)_ 2.14951009928812164e+11 +Plasma_upper_hybrid_frequency_at_point_23________________________________ (freq_plasma_upper_hybrid_profile23)_ 2.14922697675923126e+11 +Plasma_upper_hybrid_frequency_at_point_24________________________________ (freq_plasma_upper_hybrid_profile24)_ 2.14894935947335571e+11 +Plasma_upper_hybrid_frequency_at_point_25________________________________ (freq_plasma_upper_hybrid_profile25)_ 2.14867722796385559e+11 +Plasma_upper_hybrid_frequency_at_point_26________________________________ (freq_plasma_upper_hybrid_profile26)_ 2.14841056281723389e+11 +Plasma_upper_hybrid_frequency_at_point_27________________________________ (freq_plasma_upper_hybrid_profile27)_ 2.14814934467304596e+11 +Plasma_upper_hybrid_frequency_at_point_28________________________________ (freq_plasma_upper_hybrid_profile28)_ 2.14789355422382141e+11 +Plasma_upper_hybrid_frequency_at_point_29________________________________ (freq_plasma_upper_hybrid_profile29)_ 2.14764317221497345e+11 +Plasma_upper_hybrid_frequency_at_point_30________________________________ (freq_plasma_upper_hybrid_profile30)_ 2.14739817944472076e+11 +Plasma_upper_hybrid_frequency_at_point_31________________________________ (freq_plasma_upper_hybrid_profile31)_ 2.14588342450950378e+11 +Plasma_upper_hybrid_frequency_at_point_32________________________________ (freq_plasma_upper_hybrid_profile32)_ 2.14437226277710815e+11 +Plasma_upper_hybrid_frequency_at_point_33________________________________ (freq_plasma_upper_hybrid_profile33)_ 2.14286468101644989e+11 +Plasma_upper_hybrid_frequency_at_point_34________________________________ (freq_plasma_upper_hybrid_profile34)_ 2.14136066604184875e+11 +Plasma_upper_hybrid_frequency_at_point_35________________________________ (freq_plasma_upper_hybrid_profile35)_ 2.13986020471282715e+11 +Plasma_upper_hybrid_frequency_at_point_36________________________________ (freq_plasma_upper_hybrid_profile36)_ 2.13836328393390594e+11 +Plasma_upper_hybrid_frequency_at_point_37________________________________ (freq_plasma_upper_hybrid_profile37)_ 2.13686989065440399e+11 +Plasma_upper_hybrid_frequency_at_point_38________________________________ (freq_plasma_upper_hybrid_profile38)_ 2.13538001186824188e+11 +Plasma_upper_hybrid_frequency_at_point_39________________________________ (freq_plasma_upper_hybrid_profile39)_ 2.13389363461373901e+11 +Plasma_upper_hybrid_frequency_at_point_40________________________________ (freq_plasma_upper_hybrid_profile40)_ 2.13241074597341736e+11 +Plasma_upper_hybrid_frequency_at_point_41________________________________ (freq_plasma_upper_hybrid_profile41)_ 2.13093133307380829e+11 +Plasma_upper_hybrid_frequency_at_point_42________________________________ (freq_plasma_upper_hybrid_profile42)_ 2.12945538308525360e+11 +Plasma_upper_hybrid_frequency_at_point_43________________________________ (freq_plasma_upper_hybrid_profile43)_ 2.12798288322171265e+11 +Plasma_upper_hybrid_frequency_at_point_44________________________________ (freq_plasma_upper_hybrid_profile44)_ 2.12651382074056946e+11 +Plasma_upper_hybrid_frequency_at_point_45________________________________ (freq_plasma_upper_hybrid_profile45)_ 2.12504818294244141e+11 +Plasma_upper_hybrid_frequency_at_point_46________________________________ (freq_plasma_upper_hybrid_profile46)_ 2.12358595717098877e+11 +Plasma_upper_hybrid_frequency_at_point_47________________________________ (freq_plasma_upper_hybrid_profile47)_ 2.12212713081272003e+11 +Plasma_upper_hybrid_frequency_at_point_48________________________________ (freq_plasma_upper_hybrid_profile48)_ 2.12067169129681183e+11 +Plasma_upper_hybrid_frequency_at_point_49________________________________ (freq_plasma_upper_hybrid_profile49)_ 2.11921962609491150e+11 +Plasma_upper_hybrid_frequency_at_point_50________________________________ (freq_plasma_upper_hybrid_profile50)_ 2.11777092272095947e+11 +Plasma_upper_hybrid_frequency_at_point_51________________________________ (freq_plasma_upper_hybrid_profile51)_ 2.11632556873099609e+11 +Plasma_upper_hybrid_frequency_at_point_52________________________________ (freq_plasma_upper_hybrid_profile52)_ 2.11488355172298065e+11 +Plasma_upper_hybrid_frequency_at_point_53________________________________ (freq_plasma_upper_hybrid_profile53)_ 2.11344485933660858e+11 +Plasma_upper_hybrid_frequency_at_point_54________________________________ (freq_plasma_upper_hybrid_profile54)_ 2.11200947925312500e+11 +Plasma_upper_hybrid_frequency_at_point_55________________________________ (freq_plasma_upper_hybrid_profile55)_ 2.11057739919514832e+11 +Plasma_upper_hybrid_frequency_at_point_56________________________________ (freq_plasma_upper_hybrid_profile56)_ 2.10914860692648224e+11 +Plasma_upper_hybrid_frequency_at_point_57________________________________ (freq_plasma_upper_hybrid_profile57)_ 2.10772309025194489e+11 +Plasma_upper_hybrid_frequency_at_point_58________________________________ (freq_plasma_upper_hybrid_profile58)_ 2.10630083701718292e+11 +Plasma_upper_hybrid_frequency_at_point_59________________________________ (freq_plasma_upper_hybrid_profile59)_ 2.10488183510849701e+11 +Plasma_upper_hybrid_frequency_at_point_60________________________________ (freq_plasma_upper_hybrid_profile60)_ 2.10346607245266541e+11 +Plasma_upper_hybrid_frequency_at_point_61________________________________ (freq_plasma_upper_hybrid_profile61)_ 2.10205353701676575e+11 +Plasma_upper_hybrid_frequency_at_point_62________________________________ (freq_plasma_upper_hybrid_profile62)_ 2.10064421680800201e+11 +Plasma_upper_hybrid_frequency_at_point_63________________________________ (freq_plasma_upper_hybrid_profile63)_ 2.09923809987353119e+11 +Plasma_upper_hybrid_frequency_at_point_64________________________________ (freq_plasma_upper_hybrid_profile64)_ 2.09783517430028778e+11 +Plasma_upper_hybrid_frequency_at_point_65________________________________ (freq_plasma_upper_hybrid_profile65)_ 2.09643542821481506e+11 +Plasma_upper_hybrid_frequency_at_point_66________________________________ (freq_plasma_upper_hybrid_profile66)_ 2.09503884978308990e+11 +Plasma_upper_hybrid_frequency_at_point_67________________________________ (freq_plasma_upper_hybrid_profile67)_ 2.09364542721035675e+11 +Plasma_upper_hybrid_frequency_at_point_68________________________________ (freq_plasma_upper_hybrid_profile68)_ 2.09225514874095398e+11 +Plasma_upper_hybrid_frequency_at_point_69________________________________ (freq_plasma_upper_hybrid_profile69)_ 2.09086800265814972e+11 +Plasma_upper_hybrid_frequency_at_point_70________________________________ (freq_plasma_upper_hybrid_profile70)_ 2.08948397728397278e+11 +Plasma_upper_hybrid_frequency_at_point_71________________________________ (freq_plasma_upper_hybrid_profile71)_ 2.08810306097904358e+11 +Plasma_upper_hybrid_frequency_at_point_72________________________________ (freq_plasma_upper_hybrid_profile72)_ 2.08672524214241241e+11 +Plasma_upper_hybrid_frequency_at_point_73________________________________ (freq_plasma_upper_hybrid_profile73)_ 2.08535050921139099e+11 +Plasma_upper_hybrid_frequency_at_point_74________________________________ (freq_plasma_upper_hybrid_profile74)_ 2.08397885066139099e+11 +Plasma_upper_hybrid_frequency_at_point_75________________________________ (freq_plasma_upper_hybrid_profile75)_ 2.08261025500576172e+11 +Plasma_upper_hybrid_frequency_at_point_76________________________________ (freq_plasma_upper_hybrid_profile76)_ 2.08124471079562256e+11 +Plasma_upper_hybrid_frequency_at_point_77________________________________ (freq_plasma_upper_hybrid_profile77)_ 2.07988220661970917e+11 +Plasma_upper_hybrid_frequency_at_point_78________________________________ (freq_plasma_upper_hybrid_profile78)_ 2.07852273110420593e+11 +Plasma_upper_hybrid_frequency_at_point_79________________________________ (freq_plasma_upper_hybrid_profile79)_ 2.07716627291259125e+11 +Plasma_upper_hybrid_frequency_at_point_80________________________________ (freq_plasma_upper_hybrid_profile80)_ 2.07581282074547699e+11 +Plasma_upper_hybrid_frequency_at_point_81________________________________ (freq_plasma_upper_hybrid_profile81)_ 2.07446236334044861e+11 +Plasma_upper_hybrid_frequency_at_point_82________________________________ (freq_plasma_upper_hybrid_profile82)_ 2.07311488947191162e+11 +Plasma_upper_hybrid_frequency_at_point_83________________________________ (freq_plasma_upper_hybrid_profile83)_ 2.07177038795093170e+11 +Plasma_upper_hybrid_frequency_at_point_84________________________________ (freq_plasma_upper_hybrid_profile84)_ 2.07042884762508209e+11 +Plasma_upper_hybrid_frequency_at_point_85________________________________ (freq_plasma_upper_hybrid_profile85)_ 2.06909025737828674e+11 +Plasma_upper_hybrid_frequency_at_point_86________________________________ (freq_plasma_upper_hybrid_profile86)_ 2.06775460613066681e+11 +Plasma_upper_hybrid_frequency_at_point_87________________________________ (freq_plasma_upper_hybrid_profile87)_ 2.06642188283838959e+11 +Plasma_upper_hybrid_frequency_at_point_88________________________________ (freq_plasma_upper_hybrid_profile88)_ 2.06509207649351227e+11 +Plasma_upper_hybrid_frequency_at_point_89________________________________ (freq_plasma_upper_hybrid_profile89)_ 2.06376517612383423e+11 +Plasma_upper_hybrid_frequency_at_point_90________________________________ (freq_plasma_upper_hybrid_profile90)_ 2.06244117079274384e+11 +Plasma_upper_hybrid_frequency_at_point_91________________________________ (freq_plasma_upper_hybrid_profile91)_ 2.06112004959907013e+11 +Plasma_upper_hybrid_frequency_at_point_92________________________________ (freq_plasma_upper_hybrid_profile92)_ 2.05980180167693176e+11 +Plasma_upper_hybrid_frequency_at_point_93________________________________ (freq_plasma_upper_hybrid_profile93)_ 2.05848641619559082e+11 +Plasma_upper_hybrid_frequency_at_point_94________________________________ (freq_plasma_upper_hybrid_profile94)_ 2.05717388235930359e+11 +Plasma_upper_hybrid_frequency_at_point_95________________________________ (freq_plasma_upper_hybrid_profile95)_ 2.05586418940717346e+11 +Plasma_upper_hybrid_frequency_at_point_96________________________________ (freq_plasma_upper_hybrid_profile96)_ 2.05455732661300568e+11 +Plasma_upper_hybrid_frequency_at_point_97________________________________ (freq_plasma_upper_hybrid_profile97)_ 2.05325328328516205e+11 +Plasma_upper_hybrid_frequency_at_point_98________________________________ (freq_plasma_upper_hybrid_profile98)_ 2.05195204876641571e+11 +Plasma_upper_hybrid_frequency_at_point_99________________________________ (freq_plasma_upper_hybrid_profile99)_ 2.05065361243380798e+11 +Plasma_upper_hybrid_frequency_at_point_100_______________________________ (freq_plasma_upper_hybrid_profile100)_ 2.04935796369850311e+11 +Plasma_upper_hybrid_frequency_at_point_101_______________________________ (freq_plasma_upper_hybrid_profile101)_ 2.04806509200564911e+11 +Plasma_upper_hybrid_frequency_at_point_102_______________________________ (freq_plasma_upper_hybrid_profile102)_ 2.04677498683423248e+11 +Plasma_upper_hybrid_frequency_at_point_103_______________________________ (freq_plasma_upper_hybrid_profile103)_ 2.04548763769694031e+11 +Plasma_upper_hybrid_frequency_at_point_104_______________________________ (freq_plasma_upper_hybrid_profile104)_ 2.04420303414001953e+11 +Plasma_upper_hybrid_frequency_at_point_105_______________________________ (freq_plasma_upper_hybrid_profile105)_ 2.04292116574313446e+11 +Plasma_upper_hybrid_frequency_at_point_106_______________________________ (freq_plasma_upper_hybrid_profile106)_ 2.04164202211923096e+11 +Plasma_upper_hybrid_frequency_at_point_107_______________________________ (freq_plasma_upper_hybrid_profile107)_ 2.04036559291439758e+11 +Plasma_upper_hybrid_frequency_at_point_108_______________________________ (freq_plasma_upper_hybrid_profile108)_ 2.03909186780772705e+11 +Plasma_upper_hybrid_frequency_at_point_109_______________________________ (freq_plasma_upper_hybrid_profile109)_ 2.03782083651118164e+11 +Plasma_upper_hybrid_frequency_at_point_110_______________________________ (freq_plasma_upper_hybrid_profile110)_ 2.03655248876945465e+11 +Plasma_upper_hybrid_frequency_at_point_111_______________________________ (freq_plasma_upper_hybrid_profile111)_ 2.03528681435983612e+11 +Plasma_upper_hybrid_frequency_at_point_112_______________________________ (freq_plasma_upper_hybrid_profile112)_ 2.03402380309207855e+11 +Plasma_upper_hybrid_frequency_at_point_113_______________________________ (freq_plasma_upper_hybrid_profile113)_ 2.03276344480826202e+11 +Plasma_upper_hybrid_frequency_at_point_114_______________________________ (freq_plasma_upper_hybrid_profile114)_ 2.03150572938266174e+11 +Plasma_upper_hybrid_frequency_at_point_115_______________________________ (freq_plasma_upper_hybrid_profile115)_ 2.03025064672161377e+11 +Plasma_upper_hybrid_frequency_at_point_116_______________________________ (freq_plasma_upper_hybrid_profile116)_ 2.02899818676338562e+11 +Plasma_upper_hybrid_frequency_at_point_117_______________________________ (freq_plasma_upper_hybrid_profile117)_ 2.02774833947804077e+11 +Plasma_upper_hybrid_frequency_at_point_118_______________________________ (freq_plasma_upper_hybrid_profile118)_ 2.02650109486731323e+11 +Plasma_upper_hybrid_frequency_at_point_119_______________________________ (freq_plasma_upper_hybrid_profile119)_ 2.02525644296447327e+11 +Plasma_upper_hybrid_frequency_at_point_120_______________________________ (freq_plasma_upper_hybrid_profile120)_ 2.02401437383419830e+11 +Plasma_upper_hybrid_frequency_at_point_121_______________________________ (freq_plasma_upper_hybrid_profile121)_ 2.02277487757244751e+11 +Plasma_upper_hybrid_frequency_at_point_122_______________________________ (freq_plasma_upper_hybrid_profile122)_ 2.02153794430632843e+11 +Plasma_upper_hybrid_frequency_at_point_123_______________________________ (freq_plasma_upper_hybrid_profile123)_ 2.02030356419397552e+11 +Plasma_upper_hybrid_frequency_at_point_124_______________________________ (freq_plasma_upper_hybrid_profile124)_ 2.01907172742441681e+11 +Plasma_upper_hybrid_frequency_at_point_125_______________________________ (freq_plasma_upper_hybrid_profile125)_ 2.01784242421745270e+11 +Plasma_upper_hybrid_frequency_at_point_126_______________________________ (freq_plasma_upper_hybrid_profile126)_ 2.01661564482352875e+11 +Plasma_upper_hybrid_frequency_at_point_127_______________________________ (freq_plasma_upper_hybrid_profile127)_ 2.01539137952360809e+11 +Plasma_upper_hybrid_frequency_at_point_128_______________________________ (freq_plasma_upper_hybrid_profile128)_ 2.01416961862905243e+11 +Plasma_upper_hybrid_frequency_at_point_129_______________________________ (freq_plasma_upper_hybrid_profile129)_ 2.01295035248149200e+11 +Plasma_upper_hybrid_frequency_at_point_130_______________________________ (freq_plasma_upper_hybrid_profile130)_ 2.01173357145270660e+11 +Plasma_upper_hybrid_frequency_at_point_131_______________________________ (freq_plasma_upper_hybrid_profile131)_ 2.01051926594450165e+11 +Plasma_upper_hybrid_frequency_at_point_132_______________________________ (freq_plasma_upper_hybrid_profile132)_ 2.00930742638858704e+11 +Plasma_upper_hybrid_frequency_at_point_133_______________________________ (freq_plasma_upper_hybrid_profile133)_ 2.00809804324645325e+11 +Plasma_upper_hybrid_frequency_at_point_134_______________________________ (freq_plasma_upper_hybrid_profile134)_ 2.00689110700925354e+11 +Plasma_upper_hybrid_frequency_at_point_135_______________________________ (freq_plasma_upper_hybrid_profile135)_ 2.00568660819768127e+11 +Plasma_upper_hybrid_frequency_at_point_136_______________________________ (freq_plasma_upper_hybrid_profile136)_ 2.00448453736185211e+11 +Plasma_upper_hybrid_frequency_at_point_137_______________________________ (freq_plasma_upper_hybrid_profile137)_ 2.00328488508118347e+11 +Plasma_upper_hybrid_frequency_at_point_138_______________________________ (freq_plasma_upper_hybrid_profile138)_ 2.00208764196427704e+11 +Plasma_upper_hybrid_frequency_at_point_139_______________________________ (freq_plasma_upper_hybrid_profile139)_ 2.00089279864879944e+11 +Plasma_upper_hybrid_frequency_at_point_140_______________________________ (freq_plasma_upper_hybrid_profile140)_ 1.99970034580136780e+11 +Plasma_upper_hybrid_frequency_at_point_141_______________________________ (freq_plasma_upper_hybrid_profile141)_ 1.99851027411742828e+11 +Plasma_upper_hybrid_frequency_at_point_142_______________________________ (freq_plasma_upper_hybrid_profile142)_ 1.99732257432114441e+11 +Plasma_upper_hybrid_frequency_at_point_143_______________________________ (freq_plasma_upper_hybrid_profile143)_ 1.99613723716527893e+11 +Plasma_upper_hybrid_frequency_at_point_144_______________________________ (freq_plasma_upper_hybrid_profile144)_ 1.99495425343107788e+11 +Plasma_upper_hybrid_frequency_at_point_145_______________________________ (freq_plasma_upper_hybrid_profile145)_ 1.99377361392815918e+11 +Plasma_upper_hybrid_frequency_at_point_146_______________________________ (freq_plasma_upper_hybrid_profile146)_ 1.99259530949439575e+11 +Plasma_upper_hybrid_frequency_at_point_147_______________________________ (freq_plasma_upper_hybrid_profile147)_ 1.99141933099580200e+11 +Plasma_upper_hybrid_frequency_at_point_148_______________________________ (freq_plasma_upper_hybrid_profile148)_ 1.99024566932642334e+11 +Plasma_upper_hybrid_frequency_at_point_149_______________________________ (freq_plasma_upper_hybrid_profile149)_ 1.98907431540822052e+11 +Plasma_upper_hybrid_frequency_at_point_150_______________________________ (freq_plasma_upper_hybrid_profile150)_ 1.98790526019096039e+11 +Plasma_upper_hybrid_frequency_at_point_151_______________________________ (freq_plasma_upper_hybrid_profile151)_ 1.98673849465210266e+11 +Plasma_upper_hybrid_frequency_at_point_152_______________________________ (freq_plasma_upper_hybrid_profile152)_ 1.98557400979669098e+11 +Plasma_upper_hybrid_frequency_at_point_153_______________________________ (freq_plasma_upper_hybrid_profile153)_ 1.98441179665723969e+11 +Plasma_upper_hybrid_frequency_at_point_154_______________________________ (freq_plasma_upper_hybrid_profile154)_ 1.98325184629362610e+11 +Plasma_upper_hybrid_frequency_at_point_155_______________________________ (freq_plasma_upper_hybrid_profile155)_ 1.98209414979298279e+11 +Plasma_upper_hybrid_frequency_at_point_156_______________________________ (freq_plasma_upper_hybrid_profile156)_ 1.98093869826958313e+11 +Plasma_upper_hybrid_frequency_at_point_157_______________________________ (freq_plasma_upper_hybrid_profile157)_ 1.97978548286474060e+11 +Plasma_upper_hybrid_frequency_at_point_158_______________________________ (freq_plasma_upper_hybrid_profile158)_ 1.97863449474669556e+11 +Plasma_upper_hybrid_frequency_at_point_159_______________________________ (freq_plasma_upper_hybrid_profile159)_ 1.97748572511050751e+11 +Plasma_upper_hybrid_frequency_at_point_160_______________________________ (freq_plasma_upper_hybrid_profile160)_ 1.97633916517795380e+11 +Plasma_upper_hybrid_frequency_at_point_161_______________________________ (freq_plasma_upper_hybrid_profile161)_ 1.97519480619741730e+11 +Plasma_upper_hybrid_frequency_at_point_162_______________________________ (freq_plasma_upper_hybrid_profile162)_ 1.97405263944378418e+11 +Plasma_upper_hybrid_frequency_at_point_163_______________________________ (freq_plasma_upper_hybrid_profile163)_ 1.97291265621833740e+11 +Plasma_upper_hybrid_frequency_at_point_164_______________________________ (freq_plasma_upper_hybrid_profile164)_ 1.97177484784865204e+11 +Plasma_upper_hybrid_frequency_at_point_165_______________________________ (freq_plasma_upper_hybrid_profile165)_ 1.97063920568849121e+11 +Plasma_upper_hybrid_frequency_at_point_166_______________________________ (freq_plasma_upper_hybrid_profile166)_ 1.96950572111770172e+11 +Plasma_upper_hybrid_frequency_at_point_167_______________________________ (freq_plasma_upper_hybrid_profile167)_ 1.96837438554211243e+11 +Plasma_upper_hybrid_frequency_at_point_168_______________________________ (freq_plasma_upper_hybrid_profile168)_ 1.96724519039342651e+11 +Plasma_upper_hybrid_frequency_at_point_169_______________________________ (freq_plasma_upper_hybrid_profile169)_ 1.96611812712912689e+11 +Plasma_upper_hybrid_frequency_at_point_170_______________________________ (freq_plasma_upper_hybrid_profile170)_ 1.96499318723236633e+11 +Plasma_upper_hybrid_frequency_at_point_171_______________________________ (freq_plasma_upper_hybrid_profile171)_ 1.96387036221187134e+11 +Plasma_upper_hybrid_frequency_at_point_172_______________________________ (freq_plasma_upper_hybrid_profile172)_ 1.96274964360183868e+11 +Plasma_upper_hybrid_frequency_at_point_173_______________________________ (freq_plasma_upper_hybrid_profile173)_ 1.96163102296183563e+11 +Plasma_upper_hybrid_frequency_at_point_174_______________________________ (freq_plasma_upper_hybrid_profile174)_ 1.96051449187669952e+11 +Plasma_upper_hybrid_frequency_at_point_175_______________________________ (freq_plasma_upper_hybrid_profile175)_ 1.95940004195643738e+11 +Plasma_upper_hybrid_frequency_at_point_176_______________________________ (freq_plasma_upper_hybrid_profile176)_ 1.95828766483612976e+11 +Plasma_upper_hybrid_frequency_at_point_177_______________________________ (freq_plasma_upper_hybrid_profile177)_ 1.95717735217582764e+11 +Plasma_upper_hybrid_frequency_at_point_178_______________________________ (freq_plasma_upper_hybrid_profile178)_ 1.95606909566045746e+11 +Plasma_upper_hybrid_frequency_at_point_179_______________________________ (freq_plasma_upper_hybrid_profile179)_ 1.95496288699972137e+11 +Plasma_upper_hybrid_frequency_at_point_180_______________________________ (freq_plasma_upper_hybrid_profile180)_ 1.95385871792800140e+11 +Plasma_upper_hybrid_frequency_at_point_181_______________________________ (freq_plasma_upper_hybrid_profile181)_ 1.95275658020426117e+11 +Plasma_upper_hybrid_frequency_at_point_182_______________________________ (freq_plasma_upper_hybrid_profile182)_ 1.95165646561194946e+11 +Plasma_upper_hybrid_frequency_at_point_183_______________________________ (freq_plasma_upper_hybrid_profile183)_ 1.95055836595890503e+11 +Plasma_upper_hybrid_frequency_at_point_184_______________________________ (freq_plasma_upper_hybrid_profile184)_ 1.94946227307725952e+11 +Plasma_upper_hybrid_frequency_at_point_185_______________________________ (freq_plasma_upper_hybrid_profile185)_ 1.94836817882334473e+11 +Plasma_upper_hybrid_frequency_at_point_186_______________________________ (freq_plasma_upper_hybrid_profile186)_ 1.94727607507759430e+11 +Plasma_upper_hybrid_frequency_at_point_187_______________________________ (freq_plasma_upper_hybrid_profile187)_ 1.94618595374445099e+11 +Plasma_upper_hybrid_frequency_at_point_188_______________________________ (freq_plasma_upper_hybrid_profile188)_ 1.94509780675227570e+11 +Plasma_upper_hybrid_frequency_at_point_189_______________________________ (freq_plasma_upper_hybrid_profile189)_ 1.94401162605324615e+11 +Plasma_upper_hybrid_frequency_at_point_190_______________________________ (freq_plasma_upper_hybrid_profile190)_ 1.94292740362327301e+11 +Plasma_upper_hybrid_frequency_at_point_191_______________________________ (freq_plasma_upper_hybrid_profile191)_ 1.94184513146190063e+11 +Plasma_upper_hybrid_frequency_at_point_192_______________________________ (freq_plasma_upper_hybrid_profile192)_ 1.94076480159221741e+11 +Plasma_upper_hybrid_frequency_at_point_193_______________________________ (freq_plasma_upper_hybrid_profile193)_ 1.93968640606076233e+11 +Plasma_upper_hybrid_frequency_at_point_194_______________________________ (freq_plasma_upper_hybrid_profile194)_ 1.93860993693743591e+11 +Plasma_upper_hybrid_frequency_at_point_195_______________________________ (freq_plasma_upper_hybrid_profile195)_ 1.93753538631540619e+11 +Plasma_upper_hybrid_frequency_at_point_196_______________________________ (freq_plasma_upper_hybrid_profile196)_ 1.93646274631102051e+11 +Plasma_upper_hybrid_frequency_at_point_197_______________________________ (freq_plasma_upper_hybrid_profile197)_ 1.93539200906371307e+11 +Plasma_upper_hybrid_frequency_at_point_198_______________________________ (freq_plasma_upper_hybrid_profile198)_ 1.93432316673591736e+11 +Plasma_upper_hybrid_frequency_at_point_199_______________________________ (freq_plasma_upper_hybrid_profile199)_ 1.93325621151297302e+11 +Plasma_upper_hybrid_frequency_at_point_200_______________________________ (freq_plasma_upper_hybrid_profile200)_ 1.93219113560304108e+11 +Plasma_upper_hybrid_frequency_at_point_201_______________________________ (freq_plasma_upper_hybrid_profile201)_ 1.93112793123701233e+11 +Plasma_upper_hybrid_frequency_at_point_202_______________________________ (freq_plasma_upper_hybrid_profile202)_ 1.93006659066842010e+11 +Plasma_upper_hybrid_frequency_at_point_203_______________________________ (freq_plasma_upper_hybrid_profile203)_ 1.92900710617335083e+11 +Plasma_upper_hybrid_frequency_at_point_204_______________________________ (freq_plasma_upper_hybrid_profile204)_ 1.92794947005035889e+11 +Plasma_upper_hybrid_frequency_at_point_205_______________________________ (freq_plasma_upper_hybrid_profile205)_ 1.92689367462037628e+11 +Plasma_upper_hybrid_frequency_at_point_206_______________________________ (freq_plasma_upper_hybrid_profile206)_ 1.92583971222662964e+11 +Plasma_upper_hybrid_frequency_at_point_207_______________________________ (freq_plasma_upper_hybrid_profile207)_ 1.92478757523455017e+11 +Plasma_upper_hybrid_frequency_at_point_208_______________________________ (freq_plasma_upper_hybrid_profile208)_ 1.92373725603169037e+11 +Plasma_upper_hybrid_frequency_at_point_209_______________________________ (freq_plasma_upper_hybrid_profile209)_ 1.92268874702763428e+11 +Plasma_upper_hybrid_frequency_at_point_210_______________________________ (freq_plasma_upper_hybrid_profile210)_ 1.92164204065391754e+11 +Plasma_upper_hybrid_frequency_at_point_211_______________________________ (freq_plasma_upper_hybrid_profile211)_ 1.92059712936393860e+11 +Plasma_upper_hybrid_frequency_at_point_212_______________________________ (freq_plasma_upper_hybrid_profile212)_ 1.91955400563287476e+11 +Plasma_upper_hybrid_frequency_at_point_213_______________________________ (freq_plasma_upper_hybrid_profile213)_ 1.91851266195759888e+11 +Plasma_upper_hybrid_frequency_at_point_214_______________________________ (freq_plasma_upper_hybrid_profile214)_ 1.91747309085659515e+11 +Plasma_upper_hybrid_frequency_at_point_215_______________________________ (freq_plasma_upper_hybrid_profile215)_ 1.91643528486987396e+11 +Plasma_upper_hybrid_frequency_at_point_216_______________________________ (freq_plasma_upper_hybrid_profile216)_ 1.91539923655889130e+11 +Plasma_upper_hybrid_frequency_at_point_217_______________________________ (freq_plasma_upper_hybrid_profile217)_ 1.91436493850646332e+11 +Plasma_upper_hybrid_frequency_at_point_218_______________________________ (freq_plasma_upper_hybrid_profile218)_ 1.91333238331668732e+11 +Plasma_upper_hybrid_frequency_at_point_219_______________________________ (freq_plasma_upper_hybrid_profile219)_ 1.91230156361485413e+11 +Plasma_upper_hybrid_frequency_at_point_220_______________________________ (freq_plasma_upper_hybrid_profile220)_ 1.91127247204737305e+11 +Plasma_upper_hybrid_frequency_at_point_221_______________________________ (freq_plasma_upper_hybrid_profile221)_ 1.91024510128168365e+11 +Plasma_upper_hybrid_frequency_at_point_222_______________________________ (freq_plasma_upper_hybrid_profile222)_ 1.90921944400618103e+11 +Plasma_upper_hybrid_frequency_at_point_223_______________________________ (freq_plasma_upper_hybrid_profile223)_ 1.90819549293012939e+11 +Plasma_upper_hybrid_frequency_at_point_224_______________________________ (freq_plasma_upper_hybrid_profile224)_ 1.90717324078358521e+11 +Plasma_upper_hybrid_frequency_at_point_225_______________________________ (freq_plasma_upper_hybrid_profile225)_ 1.90615268031731659e+11 +Plasma_upper_hybrid_frequency_at_point_226_______________________________ (freq_plasma_upper_hybrid_profile226)_ 1.90513380430272186e+11 +Plasma_upper_hybrid_frequency_at_point_227_______________________________ (freq_plasma_upper_hybrid_profile227)_ 1.90411660553175171e+11 +Plasma_upper_hybrid_frequency_at_point_228_______________________________ (freq_plasma_upper_hybrid_profile228)_ 1.90310107681683136e+11 +Plasma_upper_hybrid_frequency_at_point_229_______________________________ (freq_plasma_upper_hybrid_profile229)_ 1.90208721099077576e+11 +Plasma_upper_hybrid_frequency_at_point_230_______________________________ (freq_plasma_upper_hybrid_profile230)_ 1.90107500090672028e+11 +Plasma_upper_hybrid_frequency_at_point_231_______________________________ (freq_plasma_upper_hybrid_profile231)_ 1.90006443943803467e+11 +Plasma_upper_hybrid_frequency_at_point_232_______________________________ (freq_plasma_upper_hybrid_profile232)_ 1.89905551947824982e+11 +Plasma_upper_hybrid_frequency_at_point_233_______________________________ (freq_plasma_upper_hybrid_profile233)_ 1.89804823394097748e+11 +Plasma_upper_hybrid_frequency_at_point_234_______________________________ (freq_plasma_upper_hybrid_profile234)_ 1.89704257575983582e+11 +Plasma_upper_hybrid_frequency_at_point_235_______________________________ (freq_plasma_upper_hybrid_profile235)_ 1.89603853788837067e+11 +Plasma_upper_hybrid_frequency_at_point_236_______________________________ (freq_plasma_upper_hybrid_profile236)_ 1.89503611329997894e+11 +Plasma_upper_hybrid_frequency_at_point_237_______________________________ (freq_plasma_upper_hybrid_profile237)_ 1.89403529498783386e+11 +Plasma_upper_hybrid_frequency_at_point_238_______________________________ (freq_plasma_upper_hybrid_profile238)_ 1.89303607596480682e+11 +Plasma_upper_hybrid_frequency_at_point_239_______________________________ (freq_plasma_upper_hybrid_profile239)_ 1.89203844926339600e+11 +Plasma_upper_hybrid_frequency_at_point_240_______________________________ (freq_plasma_upper_hybrid_profile240)_ 1.89104240793564484e+11 +Plasma_upper_hybrid_frequency_at_point_241_______________________________ (freq_plasma_upper_hybrid_profile241)_ 1.89004794505307220e+11 +Plasma_upper_hybrid_frequency_at_point_242_______________________________ (freq_plasma_upper_hybrid_profile242)_ 1.88905505370659637e+11 +Plasma_upper_hybrid_frequency_at_point_243_______________________________ (freq_plasma_upper_hybrid_profile243)_ 1.88806372700645905e+11 +Plasma_upper_hybrid_frequency_at_point_244_______________________________ (freq_plasma_upper_hybrid_profile244)_ 1.88707395808215363e+11 +Plasma_upper_hybrid_frequency_at_point_245_______________________________ (freq_plasma_upper_hybrid_profile245)_ 1.88608574008234894e+11 +Plasma_upper_hybrid_frequency_at_point_246_______________________________ (freq_plasma_upper_hybrid_profile246)_ 1.88509906617481873e+11 +Plasma_upper_hybrid_frequency_at_point_247_______________________________ (freq_plasma_upper_hybrid_profile247)_ 1.88411392954636627e+11 +Plasma_upper_hybrid_frequency_at_point_248_______________________________ (freq_plasma_upper_hybrid_profile248)_ 1.88313032340275085e+11 +Plasma_upper_hybrid_frequency_at_point_249_______________________________ (freq_plasma_upper_hybrid_profile249)_ 1.88214824096861786e+11 +Plasma_upper_hybrid_frequency_at_point_250_______________________________ (freq_plasma_upper_hybrid_profile250)_ 1.88116767548742615e+11 +Plasma_upper_hybrid_frequency_at_point_251_______________________________ (freq_plasma_upper_hybrid_profile251)_ 1.88018862022137177e+11 +Plasma_upper_hybrid_frequency_at_point_252_______________________________ (freq_plasma_upper_hybrid_profile252)_ 1.87921106845132202e+11 +Plasma_upper_hybrid_frequency_at_point_253_______________________________ (freq_plasma_upper_hybrid_profile253)_ 1.87823501347674042e+11 +Plasma_upper_hybrid_frequency_at_point_254_______________________________ (freq_plasma_upper_hybrid_profile254)_ 1.87726044861561523e+11 +Plasma_upper_hybrid_frequency_at_point_255_______________________________ (freq_plasma_upper_hybrid_profile255)_ 1.87628736720439331e+11 +Plasma_upper_hybrid_frequency_at_point_256_______________________________ (freq_plasma_upper_hybrid_profile256)_ 1.87531576259790283e+11 +Plasma_upper_hybrid_frequency_at_point_257_______________________________ (freq_plasma_upper_hybrid_profile257)_ 1.87434562816928772e+11 +Plasma_upper_hybrid_frequency_at_point_258_______________________________ (freq_plasma_upper_hybrid_profile258)_ 1.87337695730993622e+11 +Plasma_upper_hybrid_frequency_at_point_259_______________________________ (freq_plasma_upper_hybrid_profile259)_ 1.87240974342941010e+11 +Plasma_upper_hybrid_frequency_at_point_260_______________________________ (freq_plasma_upper_hybrid_profile260)_ 1.87144397995537659e+11 +Plasma_upper_hybrid_frequency_at_point_261_______________________________ (freq_plasma_upper_hybrid_profile261)_ 1.87047966033353882e+11 +Plasma_upper_hybrid_frequency_at_point_262_______________________________ (freq_plasma_upper_hybrid_profile262)_ 1.86951677802756714e+11 +Plasma_upper_hybrid_frequency_at_point_263_______________________________ (freq_plasma_upper_hybrid_profile263)_ 1.86855532651902893e+11 +Plasma_upper_hybrid_frequency_at_point_264_______________________________ (freq_plasma_upper_hybrid_profile264)_ 1.86759529930732300e+11 +Plasma_upper_hybrid_frequency_at_point_265_______________________________ (freq_plasma_upper_hybrid_profile265)_ 1.86663668990960785e+11 +Plasma_upper_hybrid_frequency_at_point_266_______________________________ (freq_plasma_upper_hybrid_profile266)_ 1.86567949186073639e+11 +Plasma_upper_hybrid_frequency_at_point_267_______________________________ (freq_plasma_upper_hybrid_profile267)_ 1.86472369871318909e+11 +Plasma_upper_hybrid_frequency_at_point_268_______________________________ (freq_plasma_upper_hybrid_profile268)_ 1.86376930403700378e+11 +Plasma_upper_hybrid_frequency_at_point_269_______________________________ (freq_plasma_upper_hybrid_profile269)_ 1.86281630141970917e+11 +Plasma_upper_hybrid_frequency_at_point_270_______________________________ (freq_plasma_upper_hybrid_profile270)_ 1.86186468446626160e+11 +Plasma_upper_hybrid_frequency_at_point_271_______________________________ (freq_plasma_upper_hybrid_profile271)_ 1.86091444679897339e+11 +Plasma_upper_hybrid_frequency_at_point_272_______________________________ (freq_plasma_upper_hybrid_profile272)_ 1.85996558205744843e+11 +Plasma_upper_hybrid_frequency_at_point_273_______________________________ (freq_plasma_upper_hybrid_profile273)_ 1.85901808389851959e+11 +Plasma_upper_hybrid_frequency_at_point_274_______________________________ (freq_plasma_upper_hybrid_profile274)_ 1.85807194599617706e+11 +Plasma_upper_hybrid_frequency_at_point_275_______________________________ (freq_plasma_upper_hybrid_profile275)_ 1.85712716204150665e+11 +Plasma_upper_hybrid_frequency_at_point_276_______________________________ (freq_plasma_upper_hybrid_profile276)_ 1.85618372574262329e+11 +Plasma_upper_hybrid_frequency_at_point_277_______________________________ (freq_plasma_upper_hybrid_profile277)_ 1.85524163082460632e+11 +Plasma_upper_hybrid_frequency_at_point_278_______________________________ (freq_plasma_upper_hybrid_profile278)_ 1.85430087102943481e+11 +Plasma_upper_hybrid_frequency_at_point_279_______________________________ (freq_plasma_upper_hybrid_profile279)_ 1.85336144011592194e+11 +Plasma_upper_hybrid_frequency_at_point_280_______________________________ (freq_plasma_upper_hybrid_profile280)_ 1.85242333185965118e+11 +Plasma_upper_hybrid_frequency_at_point_281_______________________________ (freq_plasma_upper_hybrid_profile281)_ 1.85148654005291504e+11 +Plasma_upper_hybrid_frequency_at_point_282_______________________________ (freq_plasma_upper_hybrid_profile282)_ 1.85055105850464417e+11 +Plasma_upper_hybrid_frequency_at_point_283_______________________________ (freq_plasma_upper_hybrid_profile283)_ 1.84961688104035339e+11 +Plasma_upper_hybrid_frequency_at_point_284_______________________________ (freq_plasma_upper_hybrid_profile284)_ 1.84868400150206940e+11 +Plasma_upper_hybrid_frequency_at_point_285_______________________________ (freq_plasma_upper_hybrid_profile285)_ 1.84775241374827332e+11 +Plasma_upper_hybrid_frequency_at_point_286_______________________________ (freq_plasma_upper_hybrid_profile286)_ 1.84682211165383545e+11 +Plasma_upper_hybrid_frequency_at_point_287_______________________________ (freq_plasma_upper_hybrid_profile287)_ 1.84589308910995361e+11 +Plasma_upper_hybrid_frequency_at_point_288_______________________________ (freq_plasma_upper_hybrid_profile288)_ 1.84496534002408966e+11 +Plasma_upper_hybrid_frequency_at_point_289_______________________________ (freq_plasma_upper_hybrid_profile289)_ 1.84403885831990845e+11 +Plasma_upper_hybrid_frequency_at_point_290_______________________________ (freq_plasma_upper_hybrid_profile290)_ 1.84311363793721558e+11 +Plasma_upper_hybrid_frequency_at_point_291_______________________________ (freq_plasma_upper_hybrid_profile291)_ 1.84218967283189514e+11 +Plasma_upper_hybrid_frequency_at_point_292_______________________________ (freq_plasma_upper_hybrid_profile292)_ 1.84126695697584869e+11 +Plasma_upper_hybrid_frequency_at_point_293_______________________________ (freq_plasma_upper_hybrid_profile293)_ 1.84034548435693359e+11 +Plasma_upper_hybrid_frequency_at_point_294_______________________________ (freq_plasma_upper_hybrid_profile294)_ 1.83942524897890381e+11 +Plasma_upper_hybrid_frequency_at_point_295_______________________________ (freq_plasma_upper_hybrid_profile295)_ 1.83850624486134583e+11 +Plasma_upper_hybrid_frequency_at_point_296_______________________________ (freq_plasma_upper_hybrid_profile296)_ 1.83758846603962006e+11 +Plasma_upper_hybrid_frequency_at_point_297_______________________________ (freq_plasma_upper_hybrid_profile297)_ 1.83667190656480194e+11 +Plasma_upper_hybrid_frequency_at_point_298_______________________________ (freq_plasma_upper_hybrid_profile298)_ 1.83575656050361847e+11 +Plasma_upper_hybrid_frequency_at_point_299_______________________________ (freq_plasma_upper_hybrid_profile299)_ 1.83484242193839020e+11 +Plasma_upper_hybrid_frequency_at_point_300_______________________________ (freq_plasma_upper_hybrid_profile300)_ 1.83392948496697205e+11 +Plasma_upper_hybrid_frequency_at_point_301_______________________________ (freq_plasma_upper_hybrid_profile301)_ 1.83301774370269226e+11 +Plasma_upper_hybrid_frequency_at_point_302_______________________________ (freq_plasma_upper_hybrid_profile302)_ 1.83210719227429413e+11 +Plasma_upper_hybrid_frequency_at_point_303_______________________________ (freq_plasma_upper_hybrid_profile303)_ 1.83119782482587738e+11 +Plasma_upper_hybrid_frequency_at_point_304_______________________________ (freq_plasma_upper_hybrid_profile304)_ 1.83028963551683868e+11 +Plasma_upper_hybrid_frequency_at_point_305_______________________________ (freq_plasma_upper_hybrid_profile305)_ 1.82938261852181213e+11 +Plasma_upper_hybrid_frequency_at_point_306_______________________________ (freq_plasma_upper_hybrid_profile306)_ 1.82847676803061188e+11 +Plasma_upper_hybrid_frequency_at_point_307_______________________________ (freq_plasma_upper_hybrid_profile307)_ 1.82757207824817535e+11 +Plasma_upper_hybrid_frequency_at_point_308_______________________________ (freq_plasma_upper_hybrid_profile308)_ 1.82666854339450226e+11 +Plasma_upper_hybrid_frequency_at_point_309_______________________________ (freq_plasma_upper_hybrid_profile309)_ 1.82576615770459900e+11 +Plasma_upper_hybrid_frequency_at_point_310_______________________________ (freq_plasma_upper_hybrid_profile310)_ 1.82486491542842010e+11 +Plasma_upper_hybrid_frequency_at_point_311_______________________________ (freq_plasma_upper_hybrid_profile311)_ 1.82396481083081085e+11 +Plasma_upper_hybrid_frequency_at_point_312_______________________________ (freq_plasma_upper_hybrid_profile312)_ 1.82306583819145081e+11 +Plasma_upper_hybrid_frequency_at_point_313_______________________________ (freq_plasma_upper_hybrid_profile313)_ 1.82216799180479645e+11 +Plasma_upper_hybrid_frequency_at_point_314_______________________________ (freq_plasma_upper_hybrid_profile314)_ 1.82127126598002441e+11 +Plasma_upper_hybrid_frequency_at_point_315_______________________________ (freq_plasma_upper_hybrid_profile315)_ 1.82037565504097473e+11 +Plasma_upper_hybrid_frequency_at_point_316_______________________________ (freq_plasma_upper_hybrid_profile316)_ 1.81948115332609467e+11 +Plasma_upper_hybrid_frequency_at_point_317_______________________________ (freq_plasma_upper_hybrid_profile317)_ 1.81858775518838318e+11 +Plasma_upper_hybrid_frequency_at_point_318_______________________________ (freq_plasma_upper_hybrid_profile318)_ 1.81769545499533295e+11 +Plasma_upper_hybrid_frequency_at_point_319_______________________________ (freq_plasma_upper_hybrid_profile319)_ 1.81680424712887787e+11 +Plasma_upper_hybrid_frequency_at_point_320_______________________________ (freq_plasma_upper_hybrid_profile320)_ 1.81591412598533325e+11 +Plasma_upper_hybrid_frequency_at_point_321_______________________________ (freq_plasma_upper_hybrid_profile321)_ 1.81502508597534485e+11 +Plasma_upper_hybrid_frequency_at_point_322_______________________________ (freq_plasma_upper_hybrid_profile322)_ 1.81413712152383087e+11 +Plasma_upper_hybrid_frequency_at_point_323_______________________________ (freq_plasma_upper_hybrid_profile323)_ 1.81325022706992798e+11 +Plasma_upper_hybrid_frequency_at_point_324_______________________________ (freq_plasma_upper_hybrid_profile324)_ 1.81236439706693573e+11 +Plasma_upper_hybrid_frequency_at_point_325_______________________________ (freq_plasma_upper_hybrid_profile325)_ 1.81147962598226257e+11 +Plasma_upper_hybrid_frequency_at_point_326_______________________________ (freq_plasma_upper_hybrid_profile326)_ 1.81059590829737213e+11 +Plasma_upper_hybrid_frequency_at_point_327_______________________________ (freq_plasma_upper_hybrid_profile327)_ 1.80971323850772705e+11 +Plasma_upper_hybrid_frequency_at_point_328_______________________________ (freq_plasma_upper_hybrid_profile328)_ 1.80883161112273682e+11 +Plasma_upper_hybrid_frequency_at_point_329_______________________________ (freq_plasma_upper_hybrid_profile329)_ 1.80795102066570312e+11 +Plasma_upper_hybrid_frequency_at_point_330_______________________________ (freq_plasma_upper_hybrid_profile330)_ 1.80707146167376648e+11 +Plasma_upper_hybrid_frequency_at_point_331_______________________________ (freq_plasma_upper_hybrid_profile331)_ 1.80619292869785065e+11 +Plasma_upper_hybrid_frequency_at_point_332_______________________________ (freq_plasma_upper_hybrid_profile332)_ 1.80531541630261383e+11 +Plasma_upper_hybrid_frequency_at_point_333_______________________________ (freq_plasma_upper_hybrid_profile333)_ 1.80443891906639160e+11 +Plasma_upper_hybrid_frequency_at_point_334_______________________________ (freq_plasma_upper_hybrid_profile334)_ 1.80356343158114471e+11 +Plasma_upper_hybrid_frequency_at_point_335_______________________________ (freq_plasma_upper_hybrid_profile335)_ 1.80268894845240784e+11 +Plasma_upper_hybrid_frequency_at_point_336_______________________________ (freq_plasma_upper_hybrid_profile336)_ 1.80181546429923523e+11 +Plasma_upper_hybrid_frequency_at_point_337_______________________________ (freq_plasma_upper_hybrid_profile337)_ 1.80094297375414978e+11 +Plasma_upper_hybrid_frequency_at_point_338_______________________________ (freq_plasma_upper_hybrid_profile338)_ 1.80007147146308960e+11 +Plasma_upper_hybrid_frequency_at_point_339_______________________________ (freq_plasma_upper_hybrid_profile339)_ 1.79920095208535645e+11 +Plasma_upper_hybrid_frequency_at_point_340_______________________________ (freq_plasma_upper_hybrid_profile340)_ 1.79833141029356415e+11 +Plasma_upper_hybrid_frequency_at_point_341_______________________________ (freq_plasma_upper_hybrid_profile341)_ 1.79746284077358673e+11 +Plasma_upper_hybrid_frequency_at_point_342_______________________________ (freq_plasma_upper_hybrid_profile342)_ 1.79659523822450592e+11 +Plasma_upper_hybrid_frequency_at_point_343_______________________________ (freq_plasma_upper_hybrid_profile343)_ 1.79572859735856140e+11 +Plasma_upper_hybrid_frequency_at_point_344_______________________________ (freq_plasma_upper_hybrid_profile344)_ 1.79486291290109924e+11 +Plasma_upper_hybrid_frequency_at_point_345_______________________________ (freq_plasma_upper_hybrid_profile345)_ 1.79399817959051819e+11 +Plasma_upper_hybrid_frequency_at_point_346_______________________________ (freq_plasma_upper_hybrid_profile346)_ 1.79313439217822418e+11 +Plasma_upper_hybrid_frequency_at_point_347_______________________________ (freq_plasma_upper_hybrid_profile347)_ 1.79227154542857544e+11 +Plasma_upper_hybrid_frequency_at_point_348_______________________________ (freq_plasma_upper_hybrid_profile348)_ 1.79140963411883087e+11 +Plasma_upper_hybrid_frequency_at_point_349_______________________________ (freq_plasma_upper_hybrid_profile349)_ 1.79054865303910614e+11 +Plasma_upper_hybrid_frequency_at_point_350_______________________________ (freq_plasma_upper_hybrid_profile350)_ 1.78968859699231506e+11 +Plasma_upper_hybrid_frequency_at_point_351_______________________________ (freq_plasma_upper_hybrid_profile351)_ 1.78882946079412689e+11 +Plasma_upper_hybrid_frequency_at_point_352_______________________________ (freq_plasma_upper_hybrid_profile352)_ 1.78797123927291168e+11 +Plasma_upper_hybrid_frequency_at_point_353_______________________________ (freq_plasma_upper_hybrid_profile353)_ 1.78711392726969299e+11 +Plasma_upper_hybrid_frequency_at_point_354_______________________________ (freq_plasma_upper_hybrid_profile354)_ 1.78625751963809753e+11 +Plasma_upper_hybrid_frequency_at_point_355_______________________________ (freq_plasma_upper_hybrid_profile355)_ 1.78540201124430573e+11 +Plasma_upper_hybrid_frequency_at_point_356_______________________________ (freq_plasma_upper_hybrid_profile356)_ 1.78454739696700348e+11 +Plasma_upper_hybrid_frequency_at_point_357_______________________________ (freq_plasma_upper_hybrid_profile357)_ 1.78369367169733063e+11 +Plasma_upper_hybrid_frequency_at_point_358_______________________________ (freq_plasma_upper_hybrid_profile358)_ 1.78284083033883514e+11 +Plasma_upper_hybrid_frequency_at_point_359_______________________________ (freq_plasma_upper_hybrid_profile359)_ 1.78198886780742340e+11 +Plasma_upper_hybrid_frequency_at_point_360_______________________________ (freq_plasma_upper_hybrid_profile360)_ 1.78113777903130951e+11 +Plasma_upper_hybrid_frequency_at_point_361_______________________________ (freq_plasma_upper_hybrid_profile361)_ 1.78028755895096985e+11 +Plasma_upper_hybrid_frequency_at_point_362_______________________________ (freq_plasma_upper_hybrid_profile362)_ 1.77943820251909363e+11 +Plasma_upper_hybrid_frequency_at_point_363_______________________________ (freq_plasma_upper_hybrid_profile363)_ 1.77858970470053375e+11 +Plasma_upper_hybrid_frequency_at_point_364_______________________________ (freq_plasma_upper_hybrid_profile364)_ 1.77774206047226044e+11 +Plasma_upper_hybrid_frequency_at_point_365_______________________________ (freq_plasma_upper_hybrid_profile365)_ 1.77689526482331238e+11 +Plasma_upper_hybrid_frequency_at_point_366_______________________________ (freq_plasma_upper_hybrid_profile366)_ 1.77604931275474976e+11 +Plasma_upper_hybrid_frequency_at_point_367_______________________________ (freq_plasma_upper_hybrid_profile367)_ 1.77520419927960693e+11 +Plasma_upper_hybrid_frequency_at_point_368_______________________________ (freq_plasma_upper_hybrid_profile368)_ 1.77435991942284302e+11 +Plasma_upper_hybrid_frequency_at_point_369_______________________________ (freq_plasma_upper_hybrid_profile369)_ 1.77351646822129791e+11 +Plasma_upper_hybrid_frequency_at_point_370_______________________________ (freq_plasma_upper_hybrid_profile370)_ 1.77267384072364197e+11 +Plasma_upper_hybrid_frequency_at_point_371_______________________________ (freq_plasma_upper_hybrid_profile371)_ 1.77183203199033234e+11 +Plasma_upper_hybrid_frequency_at_point_372_______________________________ (freq_plasma_upper_hybrid_profile372)_ 1.77099103709356323e+11 +Plasma_upper_hybrid_frequency_at_point_373_______________________________ (freq_plasma_upper_hybrid_profile373)_ 1.77015085111722107e+11 +Plasma_upper_hybrid_frequency_at_point_374_______________________________ (freq_plasma_upper_hybrid_profile374)_ 1.76931146915683777e+11 +Plasma_upper_hybrid_frequency_at_point_375_______________________________ (freq_plasma_upper_hybrid_profile375)_ 1.76847288631954346e+11 +Plasma_upper_hybrid_frequency_at_point_376_______________________________ (freq_plasma_upper_hybrid_profile376)_ 1.76763509772402191e+11 +Plasma_upper_hybrid_frequency_at_point_377_______________________________ (freq_plasma_upper_hybrid_profile377)_ 1.76679809850046234e+11 +Plasma_upper_hybrid_frequency_at_point_378_______________________________ (freq_plasma_upper_hybrid_profile378)_ 1.76596188379051636e+11 +Plasma_upper_hybrid_frequency_at_point_379_______________________________ (freq_plasma_upper_hybrid_profile379)_ 1.76512644874724884e+11 +Plasma_upper_hybrid_frequency_at_point_380_______________________________ (freq_plasma_upper_hybrid_profile380)_ 1.76429178853509491e+11 +Plasma_upper_hybrid_frequency_at_point_381_______________________________ (freq_plasma_upper_hybrid_profile381)_ 1.76345789832981354e+11 +Plasma_upper_hybrid_frequency_at_point_382_______________________________ (freq_plasma_upper_hybrid_profile382)_ 1.76262477331844269e+11 +Plasma_upper_hybrid_frequency_at_point_383_______________________________ (freq_plasma_upper_hybrid_profile383)_ 1.76179240869925232e+11 +Plasma_upper_hybrid_frequency_at_point_384_______________________________ (freq_plasma_upper_hybrid_profile384)_ 1.76096079968170166e+11 +Plasma_upper_hybrid_frequency_at_point_385_______________________________ (freq_plasma_upper_hybrid_profile385)_ 1.76012994148639221e+11 +Plasma_upper_hybrid_frequency_at_point_386_______________________________ (freq_plasma_upper_hybrid_profile386)_ 1.75929982934502563e+11 +Plasma_upper_hybrid_frequency_at_point_387_______________________________ (freq_plasma_upper_hybrid_profile387)_ 1.75847045850035645e+11 +Plasma_upper_hybrid_frequency_at_point_388_______________________________ (freq_plasma_upper_hybrid_profile388)_ 1.75764182420614746e+11 +Plasma_upper_hybrid_frequency_at_point_389_______________________________ (freq_plasma_upper_hybrid_profile389)_ 1.75681392172712769e+11 +Plasma_upper_hybrid_frequency_at_point_390_______________________________ (freq_plasma_upper_hybrid_profile390)_ 1.75598674633894623e+11 +Plasma_upper_hybrid_frequency_at_point_391_______________________________ (freq_plasma_upper_hybrid_profile391)_ 1.75516029332812836e+11 +Plasma_upper_hybrid_frequency_at_point_392_______________________________ (freq_plasma_upper_hybrid_profile392)_ 1.75433455799203247e+11 +Plasma_upper_hybrid_frequency_at_point_393_______________________________ (freq_plasma_upper_hybrid_profile393)_ 1.75350953563880493e+11 +Plasma_upper_hybrid_frequency_at_point_394_______________________________ (freq_plasma_upper_hybrid_profile394)_ 1.75268522158733673e+11 +Plasma_upper_hybrid_frequency_at_point_395_______________________________ (freq_plasma_upper_hybrid_profile395)_ 1.75186161116722076e+11 +Plasma_upper_hybrid_frequency_at_point_396_______________________________ (freq_plasma_upper_hybrid_profile396)_ 1.75103869971870697e+11 +Plasma_upper_hybrid_frequency_at_point_397_______________________________ (freq_plasma_upper_hybrid_profile397)_ 1.75021648259265930e+11 +Plasma_upper_hybrid_frequency_at_point_398_______________________________ (freq_plasma_upper_hybrid_profile398)_ 1.74939495515051361e+11 +Plasma_upper_hybrid_frequency_at_point_399_______________________________ (freq_plasma_upper_hybrid_profile399)_ 1.74857411276423279e+11 +Plasma_upper_hybrid_frequency_at_point_400_______________________________ (freq_plasma_upper_hybrid_profile400)_ 1.74775395081626587e+11 +Plasma_upper_hybrid_frequency_at_point_401_______________________________ (freq_plasma_upper_hybrid_profile401)_ 1.74693446469950226e+11 +Plasma_upper_hybrid_frequency_at_point_402_______________________________ (freq_plasma_upper_hybrid_profile402)_ 1.74611564981723175e+11 +Plasma_upper_hybrid_frequency_at_point_403_______________________________ (freq_plasma_upper_hybrid_profile403)_ 1.74529750158310059e+11 +Plasma_upper_hybrid_frequency_at_point_404_______________________________ (freq_plasma_upper_hybrid_profile404)_ 1.74448001542106903e+11 +Plasma_upper_hybrid_frequency_at_point_405_______________________________ (freq_plasma_upper_hybrid_profile405)_ 1.74366318676536957e+11 +Plasma_upper_hybrid_frequency_at_point_406_______________________________ (freq_plasma_upper_hybrid_profile406)_ 1.74284701106046387e+11 +Plasma_upper_hybrid_frequency_at_point_407_______________________________ (freq_plasma_upper_hybrid_profile407)_ 1.74203148376100037e+11 +Plasma_upper_hybrid_frequency_at_point_408_______________________________ (freq_plasma_upper_hybrid_profile408)_ 1.74121660033177399e+11 +Plasma_upper_hybrid_frequency_at_point_409_______________________________ (freq_plasma_upper_hybrid_profile409)_ 1.74040235624768280e+11 +Plasma_upper_hybrid_frequency_at_point_410_______________________________ (freq_plasma_upper_hybrid_profile410)_ 1.73958874699368561e+11 +Plasma_upper_hybrid_frequency_at_point_411_______________________________ (freq_plasma_upper_hybrid_profile411)_ 1.73877576806476257e+11 +Plasma_upper_hybrid_frequency_at_point_412_______________________________ (freq_plasma_upper_hybrid_profile412)_ 1.73796341496587097e+11 +Plasma_upper_hybrid_frequency_at_point_413_______________________________ (freq_plasma_upper_hybrid_profile413)_ 1.73715168321190582e+11 +Plasma_upper_hybrid_frequency_at_point_414_______________________________ (freq_plasma_upper_hybrid_profile414)_ 1.73634056832765778e+11 +Plasma_upper_hybrid_frequency_at_point_415_______________________________ (freq_plasma_upper_hybrid_profile415)_ 1.73553006584777130e+11 +Plasma_upper_hybrid_frequency_at_point_416_______________________________ (freq_plasma_upper_hybrid_profile416)_ 1.73472017131670593e+11 +Plasma_upper_hybrid_frequency_at_point_417_______________________________ (freq_plasma_upper_hybrid_profile417)_ 1.73391088028869049e+11 +Plasma_upper_hybrid_frequency_at_point_418_______________________________ (freq_plasma_upper_hybrid_profile418)_ 1.73310218832768860e+11 +Plasma_upper_hybrid_frequency_at_point_419_______________________________ (freq_plasma_upper_hybrid_profile419)_ 1.73229409100735260e+11 +Plasma_upper_hybrid_frequency_at_point_420_______________________________ (freq_plasma_upper_hybrid_profile420)_ 1.73148658391098511e+11 +Plasma_upper_hybrid_frequency_at_point_421_______________________________ (freq_plasma_upper_hybrid_profile421)_ 1.73067966263149872e+11 +Plasma_upper_hybrid_frequency_at_point_422_______________________________ (freq_plasma_upper_hybrid_profile422)_ 1.72987332277137512e+11 +Plasma_upper_hybrid_frequency_at_point_423_______________________________ (freq_plasma_upper_hybrid_profile423)_ 1.72906755994262451e+11 +Plasma_upper_hybrid_frequency_at_point_424_______________________________ (freq_plasma_upper_hybrid_profile424)_ 1.72826236976674561e+11 +Plasma_upper_hybrid_frequency_at_point_425_______________________________ (freq_plasma_upper_hybrid_profile425)_ 1.72745774787468567e+11 +Plasma_upper_hybrid_frequency_at_point_426_______________________________ (freq_plasma_upper_hybrid_profile426)_ 1.72665368990680084e+11 +Plasma_upper_hybrid_frequency_at_point_427_______________________________ (freq_plasma_upper_hybrid_profile427)_ 1.72585019151281464e+11 +Plasma_upper_hybrid_frequency_at_point_428_______________________________ (freq_plasma_upper_hybrid_profile428)_ 1.72504724835178070e+11 +Plasma_upper_hybrid_frequency_at_point_429_______________________________ (freq_plasma_upper_hybrid_profile429)_ 1.72424485609204041e+11 +Plasma_upper_hybrid_frequency_at_point_430_______________________________ (freq_plasma_upper_hybrid_profile430)_ 1.72344301041118622e+11 +Plasma_upper_hybrid_frequency_at_point_431_______________________________ (freq_plasma_upper_hybrid_profile431)_ 1.72264170699601929e+11 +Plasma_upper_hybrid_frequency_at_point_432_______________________________ (freq_plasma_upper_hybrid_profile432)_ 1.72184094154251160e+11 +Plasma_upper_hybrid_frequency_at_point_433_______________________________ (freq_plasma_upper_hybrid_profile433)_ 1.72104070975576691e+11 +Plasma_upper_hybrid_frequency_at_point_434_______________________________ (freq_plasma_upper_hybrid_profile434)_ 1.72024100734998108e+11 +Plasma_upper_hybrid_frequency_at_point_435_______________________________ (freq_plasma_upper_hybrid_profile435)_ 1.71944183004840302e+11 +Plasma_upper_hybrid_frequency_at_point_436_______________________________ (freq_plasma_upper_hybrid_profile436)_ 1.71864317358329559e+11 +Plasma_upper_hybrid_frequency_at_point_437_______________________________ (freq_plasma_upper_hybrid_profile437)_ 1.71784503369589691e+11 +Plasma_upper_hybrid_frequency_at_point_438_______________________________ (freq_plasma_upper_hybrid_profile438)_ 1.71704740613638245e+11 +Plasma_upper_hybrid_frequency_at_point_439_______________________________ (freq_plasma_upper_hybrid_profile439)_ 1.71625028666382416e+11 +Plasma_upper_hybrid_frequency_at_point_440_______________________________ (freq_plasma_upper_hybrid_profile440)_ 1.71545367104615448e+11 +Plasma_upper_hybrid_frequency_at_point_441_______________________________ (freq_plasma_upper_hybrid_profile441)_ 1.71465755506012634e+11 +Plasma_upper_hybrid_frequency_at_point_442_______________________________ (freq_plasma_upper_hybrid_profile442)_ 1.71386193449127411e+11 +Plasma_upper_hybrid_frequency_at_point_443_______________________________ (freq_plasma_upper_hybrid_profile443)_ 1.71306680513387787e+11 +Plasma_upper_hybrid_frequency_at_point_444_______________________________ (freq_plasma_upper_hybrid_profile444)_ 1.71227216279092224e+11 +Plasma_upper_hybrid_frequency_at_point_445_______________________________ (freq_plasma_upper_hybrid_profile445)_ 1.71147800327406006e+11 +Plasma_upper_hybrid_frequency_at_point_446_______________________________ (freq_plasma_upper_hybrid_profile446)_ 1.71068432240357513e+11 +Plasma_upper_hybrid_frequency_at_point_447_______________________________ (freq_plasma_upper_hybrid_profile447)_ 1.70989111600834137e+11 +Plasma_upper_hybrid_frequency_at_point_448_______________________________ (freq_plasma_upper_hybrid_profile448)_ 1.70909837992578796e+11 +Plasma_upper_hybrid_frequency_at_point_449_______________________________ (freq_plasma_upper_hybrid_profile449)_ 1.70830611000186066e+11 +Plasma_upper_hybrid_frequency_at_point_450_______________________________ (freq_plasma_upper_hybrid_profile450)_ 1.70751430209098297e+11 +Plasma_upper_hybrid_frequency_at_point_451_______________________________ (freq_plasma_upper_hybrid_profile451)_ 1.70672295205602081e+11 +Plasma_upper_hybrid_frequency_at_point_452_______________________________ (freq_plasma_upper_hybrid_profile452)_ 1.70593205576824249e+11 +Plasma_upper_hybrid_frequency_at_point_453_______________________________ (freq_plasma_upper_hybrid_profile453)_ 1.70514160910728424e+11 +Plasma_upper_hybrid_frequency_at_point_454_______________________________ (freq_plasma_upper_hybrid_profile454)_ 1.70435160796111084e+11 +Plasma_upper_hybrid_frequency_at_point_455_______________________________ (freq_plasma_upper_hybrid_profile455)_ 1.70356204822597870e+11 +Plasma_upper_hybrid_frequency_at_point_456_______________________________ (freq_plasma_upper_hybrid_profile456)_ 1.70277292580639954e+11 +Plasma_upper_hybrid_frequency_at_point_457_______________________________ (freq_plasma_upper_hybrid_profile457)_ 1.70198423661510223e+11 +Plasma_upper_hybrid_frequency_at_point_458_______________________________ (freq_plasma_upper_hybrid_profile458)_ 1.70119597657299835e+11 +Plasma_upper_hybrid_frequency_at_point_459_______________________________ (freq_plasma_upper_hybrid_profile459)_ 1.70040814160914154e+11 +Plasma_upper_hybrid_frequency_at_point_460_______________________________ (freq_plasma_upper_hybrid_profile460)_ 1.69962072766069397e+11 +Plasma_upper_hybrid_frequency_at_point_461_______________________________ (freq_plasma_upper_hybrid_profile461)_ 1.69883373067288940e+11 +Plasma_upper_hybrid_frequency_at_point_462_______________________________ (freq_plasma_upper_hybrid_profile462)_ 1.69804714659899353e+11 +Plasma_upper_hybrid_frequency_at_point_463_______________________________ (freq_plasma_upper_hybrid_profile463)_ 1.69726097140027039e+11 +Plasma_upper_hybrid_frequency_at_point_464_______________________________ (freq_plasma_upper_hybrid_profile464)_ 1.69647520104594757e+11 +Plasma_upper_hybrid_frequency_at_point_465_______________________________ (freq_plasma_upper_hybrid_profile465)_ 1.69568983151317474e+11 +Plasma_upper_hybrid_frequency_at_point_466_______________________________ (freq_plasma_upper_hybrid_profile466)_ 1.69490485878699188e+11 +Plasma_upper_hybrid_frequency_at_point_467_______________________________ (freq_plasma_upper_hybrid_profile467)_ 1.69412027886029053e+11 +Plasma_upper_hybrid_frequency_at_point_468_______________________________ (freq_plasma_upper_hybrid_profile468)_ 1.69333608773377930e+11 +Plasma_upper_hybrid_frequency_at_point_469_______________________________ (freq_plasma_upper_hybrid_profile469)_ 1.69255228141594757e+11 +Plasma_upper_hybrid_frequency_at_point_470_______________________________ (freq_plasma_upper_hybrid_profile470)_ 1.69176885592302826e+11 +Plasma_upper_hybrid_frequency_at_point_471_______________________________ (freq_plasma_upper_hybrid_profile471)_ 1.69098580727896454e+11 +Plasma_upper_hybrid_frequency_at_point_472_______________________________ (freq_plasma_upper_hybrid_profile472)_ 1.69020313151537109e+11 +Plasma_upper_hybrid_frequency_at_point_473_______________________________ (freq_plasma_upper_hybrid_profile473)_ 1.68942082467150024e+11 +Plasma_upper_hybrid_frequency_at_point_474_______________________________ (freq_plasma_upper_hybrid_profile474)_ 1.68863888279420685e+11 +Plasma_upper_hybrid_frequency_at_point_475_______________________________ (freq_plasma_upper_hybrid_profile475)_ 1.68785730193791077e+11 +Plasma_upper_hybrid_frequency_at_point_476_______________________________ (freq_plasma_upper_hybrid_profile476)_ 1.68707607816456268e+11 +Plasma_upper_hybrid_frequency_at_point_477_______________________________ (freq_plasma_upper_hybrid_profile477)_ 1.68629520754360992e+11 +Plasma_upper_hybrid_frequency_at_point_478_______________________________ (freq_plasma_upper_hybrid_profile478)_ 1.68551468615195831e+11 +Plasma_upper_hybrid_frequency_at_point_479_______________________________ (freq_plasma_upper_hybrid_profile479)_ 1.68473451007393921e+11 +Plasma_upper_hybrid_frequency_at_point_480_______________________________ (freq_plasma_upper_hybrid_profile480)_ 1.68395467540127441e+11 +Plasma_upper_hybrid_frequency_at_point_481_______________________________ (freq_plasma_upper_hybrid_profile481)_ 1.68317517823303833e+11 +Plasma_upper_hybrid_frequency_at_point_482_______________________________ (freq_plasma_upper_hybrid_profile482)_ 1.68239601467562622e+11 +Plasma_upper_hybrid_frequency_at_point_483_______________________________ (freq_plasma_upper_hybrid_profile483)_ 1.68161718084271851e+11 +Plasma_upper_hybrid_frequency_at_point_484_______________________________ (freq_plasma_upper_hybrid_profile484)_ 1.68083867285524475e+11 +Plasma_upper_hybrid_frequency_at_point_485_______________________________ (freq_plasma_upper_hybrid_profile485)_ 1.68006048684134979e+11 +Plasma_upper_hybrid_frequency_at_point_486_______________________________ (freq_plasma_upper_hybrid_profile486)_ 1.67928261893635834e+11 +Plasma_upper_hybrid_frequency_at_point_487_______________________________ (freq_plasma_upper_hybrid_profile487)_ 1.67850506528274170e+11 +Plasma_upper_hybrid_frequency_at_point_488_______________________________ (freq_plasma_upper_hybrid_profile488)_ 1.67772782203008118e+11 +Plasma_upper_hybrid_frequency_at_point_489_______________________________ (freq_plasma_upper_hybrid_profile489)_ 1.67695088533503571e+11 +Plasma_upper_hybrid_frequency_at_point_490_______________________________ (freq_plasma_upper_hybrid_profile490)_ 1.67617425136130646e+11 +Plasma_upper_hybrid_frequency_at_point_491_______________________________ (freq_plasma_upper_hybrid_profile491)_ 1.67539791627960114e+11 +Plasma_upper_hybrid_frequency_at_point_492_______________________________ (freq_plasma_upper_hybrid_profile492)_ 1.67462187626760223e+11 +Plasma_upper_hybrid_frequency_at_point_493_______________________________ (freq_plasma_upper_hybrid_profile493)_ 1.67384612750993134e+11 +Plasma_upper_hybrid_frequency_at_point_494_______________________________ (freq_plasma_upper_hybrid_profile494)_ 1.67307066619811584e+11 +Plasma_upper_hybrid_frequency_at_point_495_______________________________ (freq_plasma_upper_hybrid_profile495)_ 1.67229548853055206e+11 +Plasma_upper_hybrid_frequency_at_point_496_______________________________ (freq_plasma_upper_hybrid_profile496)_ 1.67152059071247559e+11 +Plasma_upper_hybrid_frequency_at_point_497_______________________________ (freq_plasma_upper_hybrid_profile497)_ 1.67074596895592377e+11 +Plasma_upper_hybrid_frequency_at_point_498_______________________________ (freq_plasma_upper_hybrid_profile498)_ 1.66997161947970459e+11 +Plasma_upper_hybrid_frequency_at_point_499_______________________________ (freq_plasma_upper_hybrid_profile499)_ 1.66919753850935913e+11 +Plasma_upper_hybrid_frequency_at_point_500_______________________________ (freq_plasma_upper_hybrid_profile500)_ 1.66842372227713257e+11 +Plasma_upper_hybrid_frequency_at_point_501_______________________________ (freq_plasma_upper_hybrid_profile501)_ 1.66765063053072510e+11 +Plasma_upper_hybrid_frequency_at_point_502_______________________________ (freq_plasma_upper_hybrid_profile502)_ 1.66687826016038940e+11 +Plasma_upper_hybrid_frequency_at_point_503_______________________________ (freq_plasma_upper_hybrid_profile503)_ 1.66610614412502899e+11 +Plasma_upper_hybrid_frequency_at_point_504_______________________________ (freq_plasma_upper_hybrid_profile504)_ 1.66533427868413635e+11 +Plasma_upper_hybrid_frequency_at_point_505_______________________________ (freq_plasma_upper_hybrid_profile505)_ 1.66456266010374969e+11 +Plasma_upper_hybrid_frequency_at_point_506_______________________________ (freq_plasma_upper_hybrid_profile506)_ 1.66379128465641296e+11 +Plasma_upper_hybrid_frequency_at_point_507_______________________________ (freq_plasma_upper_hybrid_profile507)_ 1.66302014862114960e+11 +Plasma_upper_hybrid_frequency_at_point_508_______________________________ (freq_plasma_upper_hybrid_profile508)_ 1.66224924828342316e+11 +Plasma_upper_hybrid_frequency_at_point_509_______________________________ (freq_plasma_upper_hybrid_profile509)_ 1.66147857993510803e+11 +Plasma_upper_hybrid_frequency_at_point_510_______________________________ (freq_plasma_upper_hybrid_profile510)_ 1.66070813987445404e+11 +Plasma_upper_hybrid_frequency_at_point_511_______________________________ (freq_plasma_upper_hybrid_profile511)_ 1.65993792440605621e+11 +Plasma_upper_hybrid_frequency_at_point_512_______________________________ (freq_plasma_upper_hybrid_profile512)_ 1.65916792984081757e+11 +Plasma_upper_hybrid_frequency_at_point_513_______________________________ (freq_plasma_upper_hybrid_profile513)_ 1.65839815249592010e+11 +Plasma_upper_hybrid_frequency_at_point_514_______________________________ (freq_plasma_upper_hybrid_profile514)_ 1.65762858869479034e+11 +Plasma_upper_hybrid_frequency_at_point_515_______________________________ (freq_plasma_upper_hybrid_profile515)_ 1.65685923476706451e+11 +Plasma_upper_hybrid_frequency_at_point_516_______________________________ (freq_plasma_upper_hybrid_profile516)_ 1.65609008704855957e+11 +Plasma_upper_hybrid_frequency_at_point_517_______________________________ (freq_plasma_upper_hybrid_profile517)_ 1.65532114188123779e+11 +Plasma_upper_hybrid_frequency_at_point_518_______________________________ (freq_plasma_upper_hybrid_profile518)_ 1.65455239561317474e+11 +Plasma_upper_hybrid_frequency_at_point_519_______________________________ (freq_plasma_upper_hybrid_profile519)_ 1.65378384459852661e+11 +Plasma_upper_hybrid_frequency_at_point_520_______________________________ (freq_plasma_upper_hybrid_profile520)_ 1.65301548519749786e+11 +Plasma_upper_hybrid_frequency_at_point_521_______________________________ (freq_plasma_upper_hybrid_profile521)_ 1.65224731377630920e+11 +Plasma_upper_hybrid_frequency_at_point_522_______________________________ (freq_plasma_upper_hybrid_profile522)_ 1.65147932670716339e+11 +Plasma_upper_hybrid_frequency_at_point_523_______________________________ (freq_plasma_upper_hybrid_profile523)_ 1.65071152036821442e+11 +Plasma_upper_hybrid_frequency_at_point_524_______________________________ (freq_plasma_upper_hybrid_profile524)_ 1.64994389114353485e+11 +Plasma_upper_hybrid_frequency_at_point_525_______________________________ (freq_plasma_upper_hybrid_profile525)_ 1.64917643542308258e+11 +Plasma_upper_hybrid_frequency_at_point_526_______________________________ (freq_plasma_upper_hybrid_profile526)_ 1.64840914960266998e+11 +Plasma_upper_hybrid_frequency_at_point_527_______________________________ (freq_plasma_upper_hybrid_profile527)_ 1.64764203008393097e+11 +Plasma_upper_hybrid_frequency_at_point_528_______________________________ (freq_plasma_upper_hybrid_profile528)_ 1.64687507327428802e+11 +Plasma_upper_hybrid_frequency_at_point_529_______________________________ (freq_plasma_upper_hybrid_profile529)_ 1.64610827558692139e+11 +Plasma_upper_hybrid_frequency_at_point_530_______________________________ (freq_plasma_upper_hybrid_profile530)_ 1.64534163344073639e+11 +Plasma_upper_hybrid_frequency_at_point_531_______________________________ (freq_plasma_upper_hybrid_profile531)_ 1.64457514326033173e+11 +Plasma_upper_hybrid_frequency_at_point_532_______________________________ (freq_plasma_upper_hybrid_profile532)_ 1.64380880147596649e+11 +Plasma_upper_hybrid_frequency_at_point_533_______________________________ (freq_plasma_upper_hybrid_profile533)_ 1.64304260452353058e+11 +Plasma_upper_hybrid_frequency_at_point_534_______________________________ (freq_plasma_upper_hybrid_profile534)_ 1.64227654884450958e+11 +Plasma_upper_hybrid_frequency_at_point_535_______________________________ (freq_plasma_upper_hybrid_profile535)_ 1.64151063088595428e+11 +Plasma_upper_hybrid_frequency_at_point_536_______________________________ (freq_plasma_upper_hybrid_profile536)_ 1.64074484710045166e+11 +Plasma_upper_hybrid_frequency_at_point_537_______________________________ (freq_plasma_upper_hybrid_profile537)_ 1.63997919394608826e+11 +Plasma_upper_hybrid_frequency_at_point_538_______________________________ (freq_plasma_upper_hybrid_profile538)_ 1.63921366788642181e+11 +Plasma_upper_hybrid_frequency_at_point_539_______________________________ (freq_plasma_upper_hybrid_profile539)_ 1.63844826539044769e+11 +Plasma_upper_hybrid_frequency_at_point_540_______________________________ (freq_plasma_upper_hybrid_profile540)_ 1.63768298293256989e+11 +Plasma_upper_hybrid_frequency_at_point_541_______________________________ (freq_plasma_upper_hybrid_profile541)_ 1.63691781699256653e+11 +Plasma_upper_hybrid_frequency_at_point_542_______________________________ (freq_plasma_upper_hybrid_profile542)_ 1.63615276405556030e+11 +Plasma_upper_hybrid_frequency_at_point_543_______________________________ (freq_plasma_upper_hybrid_profile543)_ 1.63538782061198547e+11 +Plasma_upper_hybrid_frequency_at_point_544_______________________________ (freq_plasma_upper_hybrid_profile544)_ 1.63462298315755768e+11 +Plasma_upper_hybrid_frequency_at_point_545_______________________________ (freq_plasma_upper_hybrid_profile545)_ 1.63385824819324219e+11 +Plasma_upper_hybrid_frequency_at_point_546_______________________________ (freq_plasma_upper_hybrid_profile546)_ 1.63309361222522186e+11 +Plasma_upper_hybrid_frequency_at_point_547_______________________________ (freq_plasma_upper_hybrid_profile547)_ 1.63232907176486694e+11 +Plasma_upper_hybrid_frequency_at_point_548_______________________________ (freq_plasma_upper_hybrid_profile548)_ 1.63156462332870270e+11 +Plasma_upper_hybrid_frequency_at_point_549_______________________________ (freq_plasma_upper_hybrid_profile549)_ 1.63080026343837891e+11 +Plasma_upper_hybrid_frequency_at_point_550_______________________________ (freq_plasma_upper_hybrid_profile550)_ 1.63003598862063812e+11 +Plasma_upper_hybrid_frequency_at_point_551_______________________________ (freq_plasma_upper_hybrid_profile551)_ 1.62927179540728516e+11 +Plasma_upper_hybrid_frequency_at_point_552_______________________________ (freq_plasma_upper_hybrid_profile552)_ 1.62850768033515472e+11 +Plasma_upper_hybrid_frequency_at_point_553_______________________________ (freq_plasma_upper_hybrid_profile553)_ 1.62774363994608276e+11 +Plasma_upper_hybrid_frequency_at_point_554_______________________________ (freq_plasma_upper_hybrid_profile554)_ 1.62697967078687134e+11 +Plasma_upper_hybrid_frequency_at_point_555_______________________________ (freq_plasma_upper_hybrid_profile555)_ 1.62621576940926178e+11 +Plasma_upper_hybrid_frequency_at_point_556_______________________________ (freq_plasma_upper_hybrid_profile556)_ 1.62545193236990204e+11 +Plasma_upper_hybrid_frequency_at_point_557_______________________________ (freq_plasma_upper_hybrid_profile557)_ 1.62468815623031433e+11 +Plasma_upper_hybrid_frequency_at_point_558_______________________________ (freq_plasma_upper_hybrid_profile558)_ 1.62392443755686615e+11 +Plasma_upper_hybrid_frequency_at_point_559_______________________________ (freq_plasma_upper_hybrid_profile559)_ 1.62316077292073883e+11 +Plasma_upper_hybrid_frequency_at_point_560_______________________________ (freq_plasma_upper_hybrid_profile560)_ 1.62239715889789642e+11 +Plasma_upper_hybrid_frequency_at_point_561_______________________________ (freq_plasma_upper_hybrid_profile561)_ 1.62163359206905518e+11 +Plasma_upper_hybrid_frequency_at_point_562_______________________________ (freq_plasma_upper_hybrid_profile562)_ 1.62087006901965179e+11 +Plasma_upper_hybrid_frequency_at_point_563_______________________________ (freq_plasma_upper_hybrid_profile563)_ 1.62010658633981445e+11 +Plasma_upper_hybrid_frequency_at_point_564_______________________________ (freq_plasma_upper_hybrid_profile564)_ 1.61934314062432983e+11 +Plasma_upper_hybrid_frequency_at_point_565_______________________________ (freq_plasma_upper_hybrid_profile565)_ 1.61857972847261475e+11 +Plasma_upper_hybrid_frequency_at_point_566_______________________________ (freq_plasma_upper_hybrid_profile566)_ 1.61781634648868408e+11 +Plasma_upper_hybrid_frequency_at_point_567_______________________________ (freq_plasma_upper_hybrid_profile567)_ 1.61705299128112000e+11 +Plasma_upper_hybrid_frequency_at_point_568_______________________________ (freq_plasma_upper_hybrid_profile568)_ 1.61628965946304138e+11 +Plasma_upper_hybrid_frequency_at_point_569_______________________________ (freq_plasma_upper_hybrid_profile569)_ 1.61552634765207428e+11 +Plasma_upper_hybrid_frequency_at_point_570_______________________________ (freq_plasma_upper_hybrid_profile570)_ 1.61476305247032104e+11 +Plasma_upper_hybrid_frequency_at_point_571_______________________________ (freq_plasma_upper_hybrid_profile571)_ 1.61399977054432800e+11 +Plasma_upper_hybrid_frequency_at_point_572_______________________________ (freq_plasma_upper_hybrid_profile572)_ 1.61323649850505737e+11 +Plasma_upper_hybrid_frequency_at_point_573_______________________________ (freq_plasma_upper_hybrid_profile573)_ 1.61247323298785614e+11 +Plasma_upper_hybrid_frequency_at_point_574_______________________________ (freq_plasma_upper_hybrid_profile574)_ 1.61170997063242310e+11 +Plasma_upper_hybrid_frequency_at_point_575_______________________________ (freq_plasma_upper_hybrid_profile575)_ 1.61094670808278259e+11 +Plasma_upper_hybrid_frequency_at_point_576_______________________________ (freq_plasma_upper_hybrid_profile576)_ 1.61018344198725189e+11 +Plasma_upper_hybrid_frequency_at_point_577_______________________________ (freq_plasma_upper_hybrid_profile577)_ 1.60942016899840942e+11 +Plasma_upper_hybrid_frequency_at_point_578_______________________________ (freq_plasma_upper_hybrid_profile578)_ 1.60865688577306793e+11 +Plasma_upper_hybrid_frequency_at_point_579_______________________________ (freq_plasma_upper_hybrid_profile579)_ 1.60789358897223999e+11 +Plasma_upper_hybrid_frequency_at_point_580_______________________________ (freq_plasma_upper_hybrid_profile580)_ 1.60713027526111176e+11 +Plasma_upper_hybrid_frequency_at_point_581_______________________________ (freq_plasma_upper_hybrid_profile581)_ 1.60636694130901062e+11 +Plasma_upper_hybrid_frequency_at_point_582_______________________________ (freq_plasma_upper_hybrid_profile582)_ 1.60560358378937347e+11 +Plasma_upper_hybrid_frequency_at_point_583_______________________________ (freq_plasma_upper_hybrid_profile583)_ 1.60484019937971893e+11 +Plasma_upper_hybrid_frequency_at_point_584_______________________________ (freq_plasma_upper_hybrid_profile584)_ 1.60407678476161682e+11 +Plasma_upper_hybrid_frequency_at_point_585_______________________________ (freq_plasma_upper_hybrid_profile585)_ 1.60331333662065704e+11 +Plasma_upper_hybrid_frequency_at_point_586_______________________________ (freq_plasma_upper_hybrid_profile586)_ 1.60254985164641968e+11 +Plasma_upper_hybrid_frequency_at_point_587_______________________________ (freq_plasma_upper_hybrid_profile587)_ 1.60178632653244446e+11 +Plasma_upper_hybrid_frequency_at_point_588_______________________________ (freq_plasma_upper_hybrid_profile588)_ 1.60102275797620117e+11 +Plasma_upper_hybrid_frequency_at_point_589_______________________________ (freq_plasma_upper_hybrid_profile589)_ 1.60025914267906036e+11 +Plasma_upper_hybrid_frequency_at_point_590_______________________________ (freq_plasma_upper_hybrid_profile590)_ 1.59949547734626038e+11 +Plasma_upper_hybrid_frequency_at_point_591_______________________________ (freq_plasma_upper_hybrid_profile591)_ 1.59873175868688080e+11 +Plasma_upper_hybrid_frequency_at_point_592_______________________________ (freq_plasma_upper_hybrid_profile592)_ 1.59796798341381042e+11 +Plasma_upper_hybrid_frequency_at_point_593_______________________________ (freq_plasma_upper_hybrid_profile593)_ 1.59720414824371582e+11 +Plasma_upper_hybrid_frequency_at_point_594_______________________________ (freq_plasma_upper_hybrid_profile594)_ 1.59644024989701508e+11 +Plasma_upper_hybrid_frequency_at_point_595_______________________________ (freq_plasma_upper_hybrid_profile595)_ 1.59567628509784485e+11 +Plasma_upper_hybrid_frequency_at_point_596_______________________________ (freq_plasma_upper_hybrid_profile596)_ 1.59491225057402985e+11 +Plasma_upper_hybrid_frequency_at_point_597_______________________________ (freq_plasma_upper_hybrid_profile597)_ 1.59414814305705566e+11 +Plasma_upper_hybrid_frequency_at_point_598_______________________________ (freq_plasma_upper_hybrid_profile598)_ 1.59338395928203674e+11 +Plasma_upper_hybrid_frequency_at_point_599_______________________________ (freq_plasma_upper_hybrid_profile599)_ 1.59261969598768585e+11 +Plasma_upper_hybrid_frequency_at_point_600_______________________________ (freq_plasma_upper_hybrid_profile600)_ 1.59185534991628601e+11 +Plasma_upper_hybrid_frequency_at_point_601_______________________________ (freq_plasma_upper_hybrid_profile601)_ 1.59109091781365967e+11 +Plasma_upper_hybrid_frequency_at_point_602_______________________________ (freq_plasma_upper_hybrid_profile602)_ 1.59032639642913849e+11 +Plasma_upper_hybrid_frequency_at_point_603_______________________________ (freq_plasma_upper_hybrid_profile603)_ 1.58956178251553284e+11 +Plasma_upper_hybrid_frequency_at_point_604_______________________________ (freq_plasma_upper_hybrid_profile604)_ 1.58879707282910339e+11 +Plasma_upper_hybrid_frequency_at_point_605_______________________________ (freq_plasma_upper_hybrid_profile605)_ 1.58803226412953033e+11 +Plasma_upper_hybrid_frequency_at_point_606_______________________________ (freq_plasma_upper_hybrid_profile606)_ 1.58726735317988312e+11 +Plasma_upper_hybrid_frequency_at_point_607_______________________________ (freq_plasma_upper_hybrid_profile607)_ 1.58650233674659119e+11 +Plasma_upper_hybrid_frequency_at_point_608_______________________________ (freq_plasma_upper_hybrid_profile608)_ 1.58573721159941376e+11 +Plasma_upper_hybrid_frequency_at_point_609_______________________________ (freq_plasma_upper_hybrid_profile609)_ 1.58497197451141052e+11 +Plasma_upper_hybrid_frequency_at_point_610_______________________________ (freq_plasma_upper_hybrid_profile610)_ 1.58420662225890991e+11 +Plasma_upper_hybrid_frequency_at_point_611_______________________________ (freq_plasma_upper_hybrid_profile611)_ 1.58344115162148254e+11 +Plasma_upper_hybrid_frequency_at_point_612_______________________________ (freq_plasma_upper_hybrid_profile612)_ 1.58267555938190765e+11 +Plasma_upper_hybrid_frequency_at_point_613_______________________________ (freq_plasma_upper_hybrid_profile613)_ 1.58190984232614563e+11 +Plasma_upper_hybrid_frequency_at_point_614_______________________________ (freq_plasma_upper_hybrid_profile614)_ 1.58114399724330688e+11 +Plasma_upper_hybrid_frequency_at_point_615_______________________________ (freq_plasma_upper_hybrid_profile615)_ 1.58037802092562378e+11 +Plasma_upper_hybrid_frequency_at_point_616_______________________________ (freq_plasma_upper_hybrid_profile616)_ 1.57961191016841797e+11 +Plasma_upper_hybrid_frequency_at_point_617_______________________________ (freq_plasma_upper_hybrid_profile617)_ 1.57884566177007355e+11 +Plasma_upper_hybrid_frequency_at_point_618_______________________________ (freq_plasma_upper_hybrid_profile618)_ 1.57807927253200470e+11 +Plasma_upper_hybrid_frequency_at_point_619_______________________________ (freq_plasma_upper_hybrid_profile619)_ 1.57731273925862732e+11 +Plasma_upper_hybrid_frequency_at_point_620_______________________________ (freq_plasma_upper_hybrid_profile620)_ 1.57654605875732849e+11 +Plasma_upper_hybrid_frequency_at_point_621_______________________________ (freq_plasma_upper_hybrid_profile621)_ 1.57577922783843750e+11 +Plasma_upper_hybrid_frequency_at_point_622_______________________________ (freq_plasma_upper_hybrid_profile622)_ 1.57501224331519409e+11 +Plasma_upper_hybrid_frequency_at_point_623_______________________________ (freq_plasma_upper_hybrid_profile623)_ 1.57424510200372131e+11 +Plasma_upper_hybrid_frequency_at_point_624_______________________________ (freq_plasma_upper_hybrid_profile624)_ 1.57347780072299347e+11 +Plasma_upper_hybrid_frequency_at_point_625_______________________________ (freq_plasma_upper_hybrid_profile625)_ 1.57271033629480713e+11 +Plasma_upper_hybrid_frequency_at_point_626_______________________________ (freq_plasma_upper_hybrid_profile626)_ 1.57194270554375092e+11 +Plasma_upper_hybrid_frequency_at_point_627_______________________________ (freq_plasma_upper_hybrid_profile627)_ 1.57117490529717590e+11 +Plasma_upper_hybrid_frequency_at_point_628_______________________________ (freq_plasma_upper_hybrid_profile628)_ 1.57040693238516632e+11 +Plasma_upper_hybrid_frequency_at_point_629_______________________________ (freq_plasma_upper_hybrid_profile629)_ 1.56963878364050842e+11 +Plasma_upper_hybrid_frequency_at_point_630_______________________________ (freq_plasma_upper_hybrid_profile630)_ 1.56887045589866119e+11 +Plasma_upper_hybrid_frequency_at_point_631_______________________________ (freq_plasma_upper_hybrid_profile631)_ 1.56810194599772736e+11 +Plasma_upper_hybrid_frequency_at_point_632_______________________________ (freq_plasma_upper_hybrid_profile632)_ 1.56733325077842133e+11 +Plasma_upper_hybrid_frequency_at_point_633_______________________________ (freq_plasma_upper_hybrid_profile633)_ 1.56656436708404144e+11 +Plasma_upper_hybrid_frequency_at_point_634_______________________________ (freq_plasma_upper_hybrid_profile634)_ 1.56579529176043976e+11 +Plasma_upper_hybrid_frequency_at_point_635_______________________________ (freq_plasma_upper_hybrid_profile635)_ 1.56502602165599091e+11 +Plasma_upper_hybrid_frequency_at_point_636_______________________________ (freq_plasma_upper_hybrid_profile636)_ 1.56425655362156219e+11 +Plasma_upper_hybrid_frequency_at_point_637_______________________________ (freq_plasma_upper_hybrid_profile637)_ 1.56348688451048615e+11 +Plasma_upper_hybrid_frequency_at_point_638_______________________________ (freq_plasma_upper_hybrid_profile638)_ 1.56271701117852692e+11 +Plasma_upper_hybrid_frequency_at_point_639_______________________________ (freq_plasma_upper_hybrid_profile639)_ 1.56194693048385345e+11 +Plasma_upper_hybrid_frequency_at_point_640_______________________________ (freq_plasma_upper_hybrid_profile640)_ 1.56117663928700775e+11 +Plasma_upper_hybrid_frequency_at_point_641_______________________________ (freq_plasma_upper_hybrid_profile641)_ 1.56040613445087585e+11 +Plasma_upper_hybrid_frequency_at_point_642_______________________________ (freq_plasma_upper_hybrid_profile642)_ 1.55963541284065674e+11 +Plasma_upper_hybrid_frequency_at_point_643_______________________________ (freq_plasma_upper_hybrid_profile643)_ 1.55886447132383301e+11 +Plasma_upper_hybrid_frequency_at_point_644_______________________________ (freq_plasma_upper_hybrid_profile644)_ 1.55809330677014191e+11 +Plasma_upper_hybrid_frequency_at_point_645_______________________________ (freq_plasma_upper_hybrid_profile645)_ 1.55732191605154327e+11 +Plasma_upper_hybrid_frequency_at_point_646_______________________________ (freq_plasma_upper_hybrid_profile646)_ 1.55655029604218994e+11 +Plasma_upper_hybrid_frequency_at_point_647_______________________________ (freq_plasma_upper_hybrid_profile647)_ 1.55577844361839966e+11 +Plasma_upper_hybrid_frequency_at_point_648_______________________________ (freq_plasma_upper_hybrid_profile648)_ 1.55500635565862274e+11 +Plasma_upper_hybrid_frequency_at_point_649_______________________________ (freq_plasma_upper_hybrid_profile649)_ 1.55423402904341278e+11 +Plasma_upper_hybrid_frequency_at_point_650_______________________________ (freq_plasma_upper_hybrid_profile650)_ 1.55346146065539612e+11 +Plasma_upper_hybrid_frequency_at_point_651_______________________________ (freq_plasma_upper_hybrid_profile651)_ 1.55268864737924347e+11 +Plasma_upper_hybrid_frequency_at_point_652_______________________________ (freq_plasma_upper_hybrid_profile652)_ 1.55191558610163727e+11 +Plasma_upper_hybrid_frequency_at_point_653_______________________________ (freq_plasma_upper_hybrid_profile653)_ 1.55114227371124237e+11 +Plasma_upper_hybrid_frequency_at_point_654_______________________________ (freq_plasma_upper_hybrid_profile654)_ 1.55036870709867767e+11 +Plasma_upper_hybrid_frequency_at_point_655_______________________________ (freq_plasma_upper_hybrid_profile655)_ 1.54959488315648285e+11 +Plasma_upper_hybrid_frequency_at_point_656_______________________________ (freq_plasma_upper_hybrid_profile656)_ 1.54882079877909058e+11 +Plasma_upper_hybrid_frequency_at_point_657_______________________________ (freq_plasma_upper_hybrid_profile657)_ 1.54804645086279541e+11 +Plasma_upper_hybrid_frequency_at_point_658_______________________________ (freq_plasma_upper_hybrid_profile658)_ 1.54727183630572296e+11 +Plasma_upper_hybrid_frequency_at_point_659_______________________________ (freq_plasma_upper_hybrid_profile659)_ 1.54649695200779999e+11 +Plasma_upper_hybrid_frequency_at_point_660_______________________________ (freq_plasma_upper_hybrid_profile660)_ 1.54572179487072510e+11 +Plasma_upper_hybrid_frequency_at_point_661_______________________________ (freq_plasma_upper_hybrid_profile661)_ 1.54494636179793671e+11 +Plasma_upper_hybrid_frequency_at_point_662_______________________________ (freq_plasma_upper_hybrid_profile662)_ 1.54417064969458405e+11 +Plasma_upper_hybrid_frequency_at_point_663_______________________________ (freq_plasma_upper_hybrid_profile663)_ 1.54339465546749512e+11 +Plasma_upper_hybrid_frequency_at_point_664_______________________________ (freq_plasma_upper_hybrid_profile664)_ 1.54261837602514893e+11 +Plasma_upper_hybrid_frequency_at_point_665_______________________________ (freq_plasma_upper_hybrid_profile665)_ 1.54184180827764221e+11 +Plasma_upper_hybrid_frequency_at_point_666_______________________________ (freq_plasma_upper_hybrid_profile666)_ 1.54106494913666077e+11 +Plasma_upper_hybrid_frequency_at_point_667_______________________________ (freq_plasma_upper_hybrid_profile667)_ 1.54028779551544769e+11 +Plasma_upper_hybrid_frequency_at_point_668_______________________________ (freq_plasma_upper_hybrid_profile668)_ 1.53951034432877441e+11 +Plasma_upper_hybrid_frequency_at_point_669_______________________________ (freq_plasma_upper_hybrid_profile669)_ 1.53873259249290863e+11 +Plasma_upper_hybrid_frequency_at_point_670_______________________________ (freq_plasma_upper_hybrid_profile670)_ 1.53795453692558502e+11 +Plasma_upper_hybrid_frequency_at_point_671_______________________________ (freq_plasma_upper_hybrid_profile671)_ 1.53717617454597229e+11 +Plasma_upper_hybrid_frequency_at_point_672_______________________________ (freq_plasma_upper_hybrid_profile672)_ 1.53639750227464630e+11 +Plasma_upper_hybrid_frequency_at_point_673_______________________________ (freq_plasma_upper_hybrid_profile673)_ 1.53561851703355499e+11 +Plasma_upper_hybrid_frequency_at_point_674_______________________________ (freq_plasma_upper_hybrid_profile674)_ 1.53483921574599182e+11 +Plasma_upper_hybrid_frequency_at_point_675_______________________________ (freq_plasma_upper_hybrid_profile675)_ 1.53405959533656189e+11 +Plasma_upper_hybrid_frequency_at_point_676_______________________________ (freq_plasma_upper_hybrid_profile676)_ 1.53327965273115265e+11 +Plasma_upper_hybrid_frequency_at_point_677_______________________________ (freq_plasma_upper_hybrid_profile677)_ 1.53249938485690186e+11 +Plasma_upper_hybrid_frequency_at_point_678_______________________________ (freq_plasma_upper_hybrid_profile678)_ 1.53171878864216949e+11 +Plasma_upper_hybrid_frequency_at_point_679_______________________________ (freq_plasma_upper_hybrid_profile679)_ 1.53093786101650269e+11 +Plasma_upper_hybrid_frequency_at_point_680_______________________________ (freq_plasma_upper_hybrid_profile680)_ 1.53015659891060883e+11 +Plasma_upper_hybrid_frequency_at_point_681_______________________________ (freq_plasma_upper_hybrid_profile681)_ 1.52937499925632111e+11 +Plasma_upper_hybrid_frequency_at_point_682_______________________________ (freq_plasma_upper_hybrid_profile682)_ 1.52859305898657043e+11 +Plasma_upper_hybrid_frequency_at_point_683_______________________________ (freq_plasma_upper_hybrid_profile683)_ 1.52781077503535248e+11 +Plasma_upper_hybrid_frequency_at_point_684_______________________________ (freq_plasma_upper_hybrid_profile684)_ 1.52702814433769714e+11 +Plasma_upper_hybrid_frequency_at_point_685_______________________________ (freq_plasma_upper_hybrid_profile685)_ 1.52624516382963745e+11 +Plasma_upper_hybrid_frequency_at_point_686_______________________________ (freq_plasma_upper_hybrid_profile686)_ 1.52546183044817902e+11 +Plasma_upper_hybrid_frequency_at_point_687_______________________________ (freq_plasma_upper_hybrid_profile687)_ 1.52467814113126678e+11 +Plasma_upper_hybrid_frequency_at_point_688_______________________________ (freq_plasma_upper_hybrid_profile688)_ 1.52389409281775635e+11 +Plasma_upper_hybrid_frequency_at_point_689_______________________________ (freq_plasma_upper_hybrid_profile689)_ 1.52310968244738098e+11 +Plasma_upper_hybrid_frequency_at_point_690_______________________________ (freq_plasma_upper_hybrid_profile690)_ 1.52232490696071991e+11 +Plasma_upper_hybrid_frequency_at_point_691_______________________________ (freq_plasma_upper_hybrid_profile691)_ 1.52153976329916809e+11 +Plasma_upper_hybrid_frequency_at_point_692_______________________________ (freq_plasma_upper_hybrid_profile692)_ 1.52075424840490540e+11 +Plasma_upper_hybrid_frequency_at_point_693_______________________________ (freq_plasma_upper_hybrid_profile693)_ 1.51996835922086273e+11 +Plasma_upper_hybrid_frequency_at_point_694_______________________________ (freq_plasma_upper_hybrid_profile694)_ 1.51918209269069214e+11 +Plasma_upper_hybrid_frequency_at_point_695_______________________________ (freq_plasma_upper_hybrid_profile695)_ 1.51839544575873474e+11 +Plasma_upper_hybrid_frequency_at_point_696_______________________________ (freq_plasma_upper_hybrid_profile696)_ 1.51760841536998901e+11 +Plasma_upper_hybrid_frequency_at_point_697_______________________________ (freq_plasma_upper_hybrid_profile697)_ 1.51682099847007996e+11 +Plasma_upper_hybrid_frequency_at_point_698_______________________________ (freq_plasma_upper_hybrid_profile698)_ 1.51603319200522552e+11 +Plasma_upper_hybrid_frequency_at_point_699_______________________________ (freq_plasma_upper_hybrid_profile699)_ 1.51524499292220673e+11 +Plasma_upper_hybrid_frequency_at_point_700_______________________________ (freq_plasma_upper_hybrid_profile700)_ 1.51445639816833496e+11 +Plasma_upper_hybrid_frequency_at_point_701_______________________________ (freq_plasma_upper_hybrid_profile701)_ 1.51366740469141846e+11 +Plasma_upper_hybrid_frequency_at_point_702_______________________________ (freq_plasma_upper_hybrid_profile702)_ 1.51287800943973450e+11 +Plasma_upper_hybrid_frequency_at_point_703_______________________________ (freq_plasma_upper_hybrid_profile703)_ 1.51208820936199310e+11 +Plasma_upper_hybrid_frequency_at_point_704_______________________________ (freq_plasma_upper_hybrid_profile704)_ 1.51129800140730621e+11 +Plasma_upper_hybrid_frequency_at_point_705_______________________________ (freq_plasma_upper_hybrid_profile705)_ 1.51050738252515747e+11 +Plasma_upper_hybrid_frequency_at_point_706_______________________________ (freq_plasma_upper_hybrid_profile706)_ 1.50971634966536743e+11 +Plasma_upper_hybrid_frequency_at_point_707_______________________________ (freq_plasma_upper_hybrid_profile707)_ 1.50892489977806244e+11 +Plasma_upper_hybrid_frequency_at_point_708_______________________________ (freq_plasma_upper_hybrid_profile708)_ 1.50813302981364227e+11 +Plasma_upper_hybrid_frequency_at_point_709_______________________________ (freq_plasma_upper_hybrid_profile709)_ 1.50734073672274780e+11 +Plasma_upper_hybrid_frequency_at_point_710_______________________________ (freq_plasma_upper_hybrid_profile710)_ 1.50654801745622894e+11 +Plasma_upper_hybrid_frequency_at_point_711_______________________________ (freq_plasma_upper_hybrid_profile711)_ 1.50575486896511047e+11 +Plasma_upper_hybrid_frequency_at_point_712_______________________________ (freq_plasma_upper_hybrid_profile712)_ 1.50496128820056183e+11 +Plasma_upper_hybrid_frequency_at_point_713_______________________________ (freq_plasma_upper_hybrid_profile713)_ 1.50416727211386230e+11 +Plasma_upper_hybrid_frequency_at_point_714_______________________________ (freq_plasma_upper_hybrid_profile714)_ 1.50337281765636993e+11 +Plasma_upper_hybrid_frequency_at_point_715_______________________________ (freq_plasma_upper_hybrid_profile715)_ 1.50257792177948792e+11 +Plasma_upper_hybrid_frequency_at_point_716_______________________________ (freq_plasma_upper_hybrid_profile716)_ 1.50178258143463135e+11 +Plasma_upper_hybrid_frequency_at_point_717_______________________________ (freq_plasma_upper_hybrid_profile717)_ 1.50098679357319641e+11 +Plasma_upper_hybrid_frequency_at_point_718_______________________________ (freq_plasma_upper_hybrid_profile718)_ 1.50019055514652435e+11 +Plasma_upper_hybrid_frequency_at_point_719_______________________________ (freq_plasma_upper_hybrid_profile719)_ 1.49939386310587067e+11 +Plasma_upper_hybrid_frequency_at_point_720_______________________________ (freq_plasma_upper_hybrid_profile720)_ 1.49859671440237091e+11 +Plasma_upper_hybrid_frequency_at_point_721_______________________________ (freq_plasma_upper_hybrid_profile721)_ 1.49779910598700867e+11 +Plasma_upper_hybrid_frequency_at_point_722_______________________________ (freq_plasma_upper_hybrid_profile722)_ 1.49700103481058105e+11 +Plasma_upper_hybrid_frequency_at_point_723_______________________________ (freq_plasma_upper_hybrid_profile723)_ 1.49620249782366547e+11 +Plasma_upper_hybrid_frequency_at_point_724_______________________________ (freq_plasma_upper_hybrid_profile724)_ 1.49540349197658722e+11 +Plasma_upper_hybrid_frequency_at_point_725_______________________________ (freq_plasma_upper_hybrid_profile725)_ 1.49460401421938477e+11 +Plasma_upper_hybrid_frequency_at_point_726_______________________________ (freq_plasma_upper_hybrid_profile726)_ 1.49380406150177704e+11 +Plasma_upper_hybrid_frequency_at_point_727_______________________________ (freq_plasma_upper_hybrid_profile727)_ 1.49300363077312988e+11 +Plasma_upper_hybrid_frequency_at_point_728_______________________________ (freq_plasma_upper_hybrid_profile728)_ 1.49220271898242218e+11 +Plasma_upper_hybrid_frequency_at_point_729_______________________________ (freq_plasma_upper_hybrid_profile729)_ 1.49140132307821014e+11 +Plasma_upper_hybrid_frequency_at_point_730_______________________________ (freq_plasma_upper_hybrid_profile730)_ 1.49059944000859711e+11 +Plasma_upper_hybrid_frequency_at_point_731_______________________________ (freq_plasma_upper_hybrid_profile731)_ 1.48979706672119598e+11 +Plasma_upper_hybrid_frequency_at_point_732_______________________________ (freq_plasma_upper_hybrid_profile732)_ 1.48899420016309875e+11 +Plasma_upper_hybrid_frequency_at_point_733_______________________________ (freq_plasma_upper_hybrid_profile733)_ 1.48819083728083832e+11 +Plasma_upper_hybrid_frequency_at_point_734_______________________________ (freq_plasma_upper_hybrid_profile734)_ 1.48738697502035797e+11 +Plasma_upper_hybrid_frequency_at_point_735_______________________________ (freq_plasma_upper_hybrid_profile735)_ 1.48658261032697479e+11 +Plasma_upper_hybrid_frequency_at_point_736_______________________________ (freq_plasma_upper_hybrid_profile736)_ 1.48577774014534607e+11 +Plasma_upper_hybrid_frequency_at_point_737_______________________________ (freq_plasma_upper_hybrid_profile737)_ 1.48497236141943451e+11 +Plasma_upper_hybrid_frequency_at_point_738_______________________________ (freq_plasma_upper_hybrid_profile738)_ 1.48416647109247467e+11 +Plasma_upper_hybrid_frequency_at_point_739_______________________________ (freq_plasma_upper_hybrid_profile739)_ 1.48336006610693665e+11 +Plasma_upper_hybrid_frequency_at_point_740_______________________________ (freq_plasma_upper_hybrid_profile740)_ 1.48255314340449310e+11 +Plasma_upper_hybrid_frequency_at_point_741_______________________________ (freq_plasma_upper_hybrid_profile741)_ 1.48174569992598267e+11 +Plasma_upper_hybrid_frequency_at_point_742_______________________________ (freq_plasma_upper_hybrid_profile742)_ 1.48093773261137634e+11 +Plasma_upper_hybrid_frequency_at_point_743_______________________________ (freq_plasma_upper_hybrid_profile743)_ 1.48012923839974213e+11 +Plasma_upper_hybrid_frequency_at_point_744_______________________________ (freq_plasma_upper_hybrid_profile744)_ 1.47932021422920959e+11 +Plasma_upper_hybrid_frequency_at_point_745_______________________________ (freq_plasma_upper_hybrid_profile745)_ 1.47851065703693542e+11 +Plasma_upper_hybrid_frequency_at_point_746_______________________________ (freq_plasma_upper_hybrid_profile746)_ 1.47770056375906677e+11 +Plasma_upper_hybrid_frequency_at_point_747_______________________________ (freq_plasma_upper_hybrid_profile747)_ 1.47688993133070770e+11 +Plasma_upper_hybrid_frequency_at_point_748_______________________________ (freq_plasma_upper_hybrid_profile748)_ 1.47607875668588104e+11 +Plasma_upper_hybrid_frequency_at_point_749_______________________________ (freq_plasma_upper_hybrid_profile749)_ 1.47526703675749542e+11 +Plasma_upper_hybrid_frequency_at_point_750_______________________________ (freq_plasma_upper_hybrid_profile750)_ 1.47445476847730957e+11 +Plasma_upper_hybrid_frequency_at_point_751_______________________________ (freq_plasma_upper_hybrid_profile751)_ 1.47364194877589325e+11 +Plasma_upper_hybrid_frequency_at_point_752_______________________________ (freq_plasma_upper_hybrid_profile752)_ 1.47282857458259430e+11 +Plasma_upper_hybrid_frequency_at_point_753_______________________________ (freq_plasma_upper_hybrid_profile753)_ 1.47201464282550293e+11 +Plasma_upper_hybrid_frequency_at_point_754_______________________________ (freq_plasma_upper_hybrid_profile754)_ 1.47120015043141357e+11 +Plasma_upper_hybrid_frequency_at_point_755_______________________________ (freq_plasma_upper_hybrid_profile755)_ 1.47038509432578918e+11 +Plasma_upper_hybrid_frequency_at_point_756_______________________________ (freq_plasma_upper_hybrid_profile756)_ 1.46956947143272614e+11 +Plasma_upper_hybrid_frequency_at_point_757_______________________________ (freq_plasma_upper_hybrid_profile757)_ 1.46875327867491669e+11 +Plasma_upper_hybrid_frequency_at_point_758_______________________________ (freq_plasma_upper_hybrid_profile758)_ 1.46793651297361267e+11 +Plasma_upper_hybrid_frequency_at_point_759_______________________________ (freq_plasma_upper_hybrid_profile759)_ 1.46711917124858795e+11 +Plasma_upper_hybrid_frequency_at_point_760_______________________________ (freq_plasma_upper_hybrid_profile760)_ 1.46630125041810394e+11 +Plasma_upper_hybrid_frequency_at_point_761_______________________________ (freq_plasma_upper_hybrid_profile761)_ 1.46548274739887024e+11 +Plasma_upper_hybrid_frequency_at_point_762_______________________________ (freq_plasma_upper_hybrid_profile762)_ 1.46466365910600891e+11 +Plasma_upper_hybrid_frequency_at_point_763_______________________________ (freq_plasma_upper_hybrid_profile763)_ 1.46384398245301666e+11 +Plasma_upper_hybrid_frequency_at_point_764_______________________________ (freq_plasma_upper_hybrid_profile764)_ 1.46302371435172821e+11 +Plasma_upper_hybrid_frequency_at_point_765_______________________________ (freq_plasma_upper_hybrid_profile765)_ 1.46220285171227905e+11 +Plasma_upper_hybrid_frequency_at_point_766_______________________________ (freq_plasma_upper_hybrid_profile766)_ 1.46138139144306702e+11 +Plasma_upper_hybrid_frequency_at_point_767_______________________________ (freq_plasma_upper_hybrid_profile767)_ 1.46055933045071533e+11 +Plasma_upper_hybrid_frequency_at_point_768_______________________________ (freq_plasma_upper_hybrid_profile768)_ 1.45973666564003448e+11 +Plasma_upper_hybrid_frequency_at_point_769_______________________________ (freq_plasma_upper_hybrid_profile769)_ 1.45891339391398468e+11 +Plasma_upper_hybrid_frequency_at_point_770_______________________________ (freq_plasma_upper_hybrid_profile770)_ 1.45808951217363831e+11 +Plasma_upper_hybrid_frequency_at_point_771_______________________________ (freq_plasma_upper_hybrid_profile771)_ 1.45726501731814087e+11 +Plasma_upper_hybrid_frequency_at_point_772_______________________________ (freq_plasma_upper_hybrid_profile772)_ 1.45643990624467255e+11 +Plasma_upper_hybrid_frequency_at_point_773_______________________________ (freq_plasma_upper_hybrid_profile773)_ 1.45561417584841125e+11 +Plasma_upper_hybrid_frequency_at_point_774_______________________________ (freq_plasma_upper_hybrid_profile774)_ 1.45478782302249268e+11 +Plasma_upper_hybrid_frequency_at_point_775_______________________________ (freq_plasma_upper_hybrid_profile775)_ 1.45396084465797272e+11 +Plasma_upper_hybrid_frequency_at_point_776_______________________________ (freq_plasma_upper_hybrid_profile776)_ 1.45313323764378723e+11 +Plasma_upper_hybrid_frequency_at_point_777_______________________________ (freq_plasma_upper_hybrid_profile777)_ 1.45230499886671539e+11 +Plasma_upper_hybrid_frequency_at_point_778_______________________________ (freq_plasma_upper_hybrid_profile778)_ 1.45147612521133850e+11 +Plasma_upper_hybrid_frequency_at_point_779_______________________________ (freq_plasma_upper_hybrid_profile779)_ 1.45064661356000122e+11 +Plasma_upper_hybrid_frequency_at_point_780_______________________________ (freq_plasma_upper_hybrid_profile780)_ 1.44981646079277344e+11 +Plasma_upper_hybrid_frequency_at_point_781_______________________________ (freq_plasma_upper_hybrid_profile781)_ 1.44898566378740906e+11 +Plasma_upper_hybrid_frequency_at_point_782_______________________________ (freq_plasma_upper_hybrid_profile782)_ 1.44815421941930878e+11 +Plasma_upper_hybrid_frequency_at_point_783_______________________________ (freq_plasma_upper_hybrid_profile783)_ 1.44732212456147675e+11 +Plasma_upper_hybrid_frequency_at_point_784_______________________________ (freq_plasma_upper_hybrid_profile784)_ 1.44648937608448456e+11 +Plasma_upper_hybrid_frequency_at_point_785_______________________________ (freq_plasma_upper_hybrid_profile785)_ 1.44565597085642822e+11 +Plasma_upper_hybrid_frequency_at_point_786_______________________________ (freq_plasma_upper_hybrid_profile786)_ 1.44482190574288971e+11 +Plasma_upper_hybrid_frequency_at_point_787_______________________________ (freq_plasma_upper_hybrid_profile787)_ 1.44398717760689575e+11 +Plasma_upper_hybrid_frequency_at_point_788_______________________________ (freq_plasma_upper_hybrid_profile788)_ 1.44315178330887726e+11 +Plasma_upper_hybrid_frequency_at_point_789_______________________________ (freq_plasma_upper_hybrid_profile789)_ 1.44231571970662964e+11 +Plasma_upper_hybrid_frequency_at_point_790_______________________________ (freq_plasma_upper_hybrid_profile790)_ 1.44147898365527069e+11 +Plasma_upper_hybrid_frequency_at_point_791_______________________________ (freq_plasma_upper_hybrid_profile791)_ 1.44064157200720032e+11 +Plasma_upper_hybrid_frequency_at_point_792_______________________________ (freq_plasma_upper_hybrid_profile792)_ 1.43980348161205963e+11 +Plasma_upper_hybrid_frequency_at_point_793_______________________________ (freq_plasma_upper_hybrid_profile793)_ 1.43896470931668915e+11 +Plasma_upper_hybrid_frequency_at_point_794_______________________________ (freq_plasma_upper_hybrid_profile794)_ 1.43812525196508789e+11 +Plasma_upper_hybrid_frequency_at_point_795_______________________________ (freq_plasma_upper_hybrid_profile795)_ 1.43728510639837006e+11 +Plasma_upper_hybrid_frequency_at_point_796_______________________________ (freq_plasma_upper_hybrid_profile796)_ 1.43644426945472626e+11 +Plasma_upper_hybrid_frequency_at_point_797_______________________________ (freq_plasma_upper_hybrid_profile797)_ 1.43560273796937927e+11 +Plasma_upper_hybrid_frequency_at_point_798_______________________________ (freq_plasma_upper_hybrid_profile798)_ 1.43476050877454163e+11 +Plasma_upper_hybrid_frequency_at_point_799_______________________________ (freq_plasma_upper_hybrid_profile799)_ 1.43391757869937622e+11 +Plasma_upper_hybrid_frequency_at_point_800_______________________________ (freq_plasma_upper_hybrid_profile800)_ 1.43307394456994965e+11 +Plasma_upper_hybrid_frequency_at_point_801_______________________________ (freq_plasma_upper_hybrid_profile801)_ 1.43222960320919342e+11 +Plasma_upper_hybrid_frequency_at_point_802_______________________________ (freq_plasma_upper_hybrid_profile802)_ 1.43138455143685913e+11 +Plasma_upper_hybrid_frequency_at_point_803_______________________________ (freq_plasma_upper_hybrid_profile803)_ 1.43053878606947510e+11 +Plasma_upper_hybrid_frequency_at_point_804_______________________________ (freq_plasma_upper_hybrid_profile804)_ 1.42969230392030579e+11 +Plasma_upper_hybrid_frequency_at_point_805_______________________________ (freq_plasma_upper_hybrid_profile805)_ 1.42884510179930450e+11 +Plasma_upper_hybrid_frequency_at_point_806_______________________________ (freq_plasma_upper_hybrid_profile806)_ 1.42799717651307343e+11 +Plasma_upper_hybrid_frequency_at_point_807_______________________________ (freq_plasma_upper_hybrid_profile807)_ 1.42714852486481842e+11 +Plasma_upper_hybrid_frequency_at_point_808_______________________________ (freq_plasma_upper_hybrid_profile808)_ 1.42629914365430481e+11 +Plasma_upper_hybrid_frequency_at_point_809_______________________________ (freq_plasma_upper_hybrid_profile809)_ 1.42544902967781433e+11 +Plasma_upper_hybrid_frequency_at_point_810_______________________________ (freq_plasma_upper_hybrid_profile810)_ 1.42459817972809937e+11 +Plasma_upper_hybrid_frequency_at_point_811_______________________________ (freq_plasma_upper_hybrid_profile811)_ 1.42374659059434021e+11 +Plasma_upper_hybrid_frequency_at_point_812_______________________________ (freq_plasma_upper_hybrid_profile812)_ 1.42289425906209991e+11 +Plasma_upper_hybrid_frequency_at_point_813_______________________________ (freq_plasma_upper_hybrid_profile813)_ 1.42204118191327759e+11 +Plasma_upper_hybrid_frequency_at_point_814_______________________________ (freq_plasma_upper_hybrid_profile814)_ 1.42118735592606720e+11 +Plasma_upper_hybrid_frequency_at_point_815_______________________________ (freq_plasma_upper_hybrid_profile815)_ 1.42033277787490784e+11 +Plasma_upper_hybrid_frequency_at_point_816_______________________________ (freq_plasma_upper_hybrid_profile816)_ 1.41947744453044250e+11 +Plasma_upper_hybrid_frequency_at_point_817_______________________________ (freq_plasma_upper_hybrid_profile817)_ 1.41862135265946899e+11 +Plasma_upper_hybrid_frequency_at_point_818_______________________________ (freq_plasma_upper_hybrid_profile818)_ 1.41776449902489624e+11 +Plasma_upper_hybrid_frequency_at_point_819_______________________________ (freq_plasma_upper_hybrid_profile819)_ 1.41690688038569733e+11 +Plasma_upper_hybrid_frequency_at_point_820_______________________________ (freq_plasma_upper_hybrid_profile820)_ 1.41604849349686310e+11 +Plasma_upper_hybrid_frequency_at_point_821_______________________________ (freq_plasma_upper_hybrid_profile821)_ 1.41518933510935760e+11 +Plasma_upper_hybrid_frequency_at_point_822_______________________________ (freq_plasma_upper_hybrid_profile822)_ 1.41432940197006805e+11 +Plasma_upper_hybrid_frequency_at_point_823_______________________________ (freq_plasma_upper_hybrid_profile823)_ 1.41346869082176025e+11 +Plasma_upper_hybrid_frequency_at_point_824_______________________________ (freq_plasma_upper_hybrid_profile824)_ 1.41260719840303253e+11 +Plasma_upper_hybrid_frequency_at_point_825_______________________________ (freq_plasma_upper_hybrid_profile825)_ 1.41174492144826508e+11 +Plasma_upper_hybrid_frequency_at_point_826_______________________________ (freq_plasma_upper_hybrid_profile826)_ 1.41088185668757416e+11 +Plasma_upper_hybrid_frequency_at_point_827_______________________________ (freq_plasma_upper_hybrid_profile827)_ 1.41001800084676575e+11 +Plasma_upper_hybrid_frequency_at_point_828_______________________________ (freq_plasma_upper_hybrid_profile828)_ 1.40915335064728577e+11 +Plasma_upper_hybrid_frequency_at_point_829_______________________________ (freq_plasma_upper_hybrid_profile829)_ 1.40828790280617188e+11 +Plasma_upper_hybrid_frequency_at_point_830_______________________________ (freq_plasma_upper_hybrid_profile830)_ 1.40742165403600494e+11 +Plasma_upper_hybrid_frequency_at_point_831_______________________________ (freq_plasma_upper_hybrid_profile831)_ 1.40655460104486237e+11 +Plasma_upper_hybrid_frequency_at_point_832_______________________________ (freq_plasma_upper_hybrid_profile832)_ 1.40568674053626648e+11 +Plasma_upper_hybrid_frequency_at_point_833_______________________________ (freq_plasma_upper_hybrid_profile833)_ 1.40481806920913757e+11 +Plasma_upper_hybrid_frequency_at_point_834_______________________________ (freq_plasma_upper_hybrid_profile834)_ 1.40394858375774231e+11 +Plasma_upper_hybrid_frequency_at_point_835_______________________________ (freq_plasma_upper_hybrid_profile835)_ 1.40307828087164581e+11 +Plasma_upper_hybrid_frequency_at_point_836_______________________________ (freq_plasma_upper_hybrid_profile836)_ 1.40220715723566223e+11 +Plasma_upper_hybrid_frequency_at_point_837_______________________________ (freq_plasma_upper_hybrid_profile837)_ 1.40133520952980255e+11 +Plasma_upper_hybrid_frequency_at_point_838_______________________________ (freq_plasma_upper_hybrid_profile838)_ 1.40046243442922546e+11 +Plasma_upper_hybrid_frequency_at_point_839_______________________________ (freq_plasma_upper_hybrid_profile839)_ 1.39958882860418762e+11 +Plasma_upper_hybrid_frequency_at_point_840_______________________________ (freq_plasma_upper_hybrid_profile840)_ 1.39871438871999084e+11 +Plasma_upper_hybrid_frequency_at_point_841_______________________________ (freq_plasma_upper_hybrid_profile841)_ 1.39783911143693298e+11 +Plasma_upper_hybrid_frequency_at_point_842_______________________________ (freq_plasma_upper_hybrid_profile842)_ 1.39696299341025391e+11 +Plasma_upper_hybrid_frequency_at_point_843_______________________________ (freq_plasma_upper_hybrid_profile843)_ 1.39608603129008789e+11 +Plasma_upper_hybrid_frequency_at_point_844_______________________________ (freq_plasma_upper_hybrid_profile844)_ 1.39520822172140747e+11 +Plasma_upper_hybrid_frequency_at_point_845_______________________________ (freq_plasma_upper_hybrid_profile845)_ 1.39432956134397400e+11 +Plasma_upper_hybrid_frequency_at_point_846_______________________________ (freq_plasma_upper_hybrid_profile846)_ 1.39345004679228516e+11 +Plasma_upper_hybrid_frequency_at_point_847_______________________________ (freq_plasma_upper_hybrid_profile847)_ 1.39256967469551910e+11 +Plasma_upper_hybrid_frequency_at_point_848_______________________________ (freq_plasma_upper_hybrid_profile848)_ 1.39168844167748718e+11 +Plasma_upper_hybrid_frequency_at_point_849_______________________________ (freq_plasma_upper_hybrid_profile849)_ 1.39080634435657440e+11 +Plasma_upper_hybrid_frequency_at_point_850_______________________________ (freq_plasma_upper_hybrid_profile850)_ 1.38992337934569183e+11 +Plasma_upper_hybrid_frequency_at_point_851_______________________________ (freq_plasma_upper_hybrid_profile851)_ 1.38903954325221771e+11 +Plasma_upper_hybrid_frequency_at_point_852_______________________________ (freq_plasma_upper_hybrid_profile852)_ 1.38815483267794647e+11 +Plasma_upper_hybrid_frequency_at_point_853_______________________________ (freq_plasma_upper_hybrid_profile853)_ 1.38726924421903381e+11 +Plasma_upper_hybrid_frequency_at_point_854_______________________________ (freq_plasma_upper_hybrid_profile854)_ 1.38638277446594208e+11 +Plasma_upper_hybrid_frequency_at_point_855_______________________________ (freq_plasma_upper_hybrid_profile855)_ 1.38549542000338318e+11 +Plasma_upper_hybrid_frequency_at_point_856_______________________________ (freq_plasma_upper_hybrid_profile856)_ 1.38460717741026764e+11 +Plasma_upper_hybrid_frequency_at_point_857_______________________________ (freq_plasma_upper_hybrid_profile857)_ 1.38371804325964447e+11 +Plasma_upper_hybrid_frequency_at_point_858_______________________________ (freq_plasma_upper_hybrid_profile858)_ 1.38282801411864960e+11 +Plasma_upper_hybrid_frequency_at_point_859_______________________________ (freq_plasma_upper_hybrid_profile859)_ 1.38193708654844574e+11 +Plasma_upper_hybrid_frequency_at_point_860_______________________________ (freq_plasma_upper_hybrid_profile860)_ 1.38104525710416962e+11 +Plasma_upper_hybrid_frequency_at_point_861_______________________________ (freq_plasma_upper_hybrid_profile861)_ 1.38015252233487183e+11 +Plasma_upper_hybrid_frequency_at_point_862_______________________________ (freq_plasma_upper_hybrid_profile862)_ 1.37925887878346283e+11 +Plasma_upper_hybrid_frequency_at_point_863_______________________________ (freq_plasma_upper_hybrid_profile863)_ 1.37836432298665344e+11 +Plasma_upper_hybrid_frequency_at_point_864_______________________________ (freq_plasma_upper_hybrid_profile864)_ 1.37746885147489868e+11 +Plasma_upper_hybrid_frequency_at_point_865_______________________________ (freq_plasma_upper_hybrid_profile865)_ 1.37657246077233826e+11 +Plasma_upper_hybrid_frequency_at_point_866_______________________________ (freq_plasma_upper_hybrid_profile866)_ 1.37567514739673889e+11 +Plasma_upper_hybrid_frequency_at_point_867_______________________________ (freq_plasma_upper_hybrid_profile867)_ 1.37477690785943726e+11 +Plasma_upper_hybrid_frequency_at_point_868_______________________________ (freq_plasma_upper_hybrid_profile868)_ 1.37387773866527802e+11 +Plasma_upper_hybrid_frequency_at_point_869_______________________________ (freq_plasma_upper_hybrid_profile869)_ 1.37297763631255676e+11 +Plasma_upper_hybrid_frequency_at_point_870_______________________________ (freq_plasma_upper_hybrid_profile870)_ 1.37207659729295975e+11 +Plasma_upper_hybrid_frequency_at_point_871_______________________________ (freq_plasma_upper_hybrid_profile871)_ 1.37117461809150391e+11 +Plasma_upper_hybrid_frequency_at_point_872_______________________________ (freq_plasma_upper_hybrid_profile872)_ 1.37027169518647583e+11 +Plasma_upper_hybrid_frequency_at_point_873_______________________________ (freq_plasma_upper_hybrid_profile873)_ 1.36936782504937256e+11 +Plasma_upper_hybrid_frequency_at_point_874_______________________________ (freq_plasma_upper_hybrid_profile874)_ 1.36846300414484009e+11 +Plasma_upper_hybrid_frequency_at_point_875_______________________________ (freq_plasma_upper_hybrid_profile875)_ 1.36755722893061035e+11 +Plasma_upper_hybrid_frequency_at_point_876_______________________________ (freq_plasma_upper_hybrid_profile876)_ 1.36665049585744217e+11 +Plasma_upper_hybrid_frequency_at_point_877_______________________________ (freq_plasma_upper_hybrid_profile877)_ 1.36574280136905701e+11 +Plasma_upper_hybrid_frequency_at_point_878_______________________________ (freq_plasma_upper_hybrid_profile878)_ 1.36483414190207779e+11 +Plasma_upper_hybrid_frequency_at_point_879_______________________________ (freq_plasma_upper_hybrid_profile879)_ 1.36392451388596588e+11 +Plasma_upper_hybrid_frequency_at_point_880_______________________________ (freq_plasma_upper_hybrid_profile880)_ 1.36301391374295746e+11 +Plasma_upper_hybrid_frequency_at_point_881_______________________________ (freq_plasma_upper_hybrid_profile881)_ 1.36210233788800034e+11 +Plasma_upper_hybrid_frequency_at_point_882_______________________________ (freq_plasma_upper_hybrid_profile882)_ 1.36118978272869049e+11 +Plasma_upper_hybrid_frequency_at_point_883_______________________________ (freq_plasma_upper_hybrid_profile883)_ 1.36027624466520660e+11 +Plasma_upper_hybrid_frequency_at_point_884_______________________________ (freq_plasma_upper_hybrid_profile884)_ 1.35936172009024628e+11 +Plasma_upper_hybrid_frequency_at_point_885_______________________________ (freq_plasma_upper_hybrid_profile885)_ 1.35844620538896088e+11 +Plasma_upper_hybrid_frequency_at_point_886_______________________________ (freq_plasma_upper_hybrid_profile886)_ 1.35752969693888977e+11 +Plasma_upper_hybrid_frequency_at_point_887_______________________________ (freq_plasma_upper_hybrid_profile887)_ 1.35661219110989487e+11 +Plasma_upper_hybrid_frequency_at_point_888_______________________________ (freq_plasma_upper_hybrid_profile888)_ 1.35569368426409393e+11 +Plasma_upper_hybrid_frequency_at_point_889_______________________________ (freq_plasma_upper_hybrid_profile889)_ 1.35477417275579468e+11 +Plasma_upper_hybrid_frequency_at_point_890_______________________________ (freq_plasma_upper_hybrid_profile890)_ 1.35385365293142654e+11 +Plasma_upper_hybrid_frequency_at_point_891_______________________________ (freq_plasma_upper_hybrid_profile891)_ 1.35293212112947433e+11 +Plasma_upper_hybrid_frequency_at_point_892_______________________________ (freq_plasma_upper_hybrid_profile892)_ 1.35200957368041000e+11 +Plasma_upper_hybrid_frequency_at_point_893_______________________________ (freq_plasma_upper_hybrid_profile893)_ 1.35108600690662430e+11 +Plasma_upper_hybrid_frequency_at_point_894_______________________________ (freq_plasma_upper_hybrid_profile894)_ 1.35016141712235794e+11 +Plasma_upper_hybrid_frequency_at_point_895_______________________________ (freq_plasma_upper_hybrid_profile895)_ 1.34923580063363220e+11 +Plasma_upper_hybrid_frequency_at_point_896_______________________________ (freq_plasma_upper_hybrid_profile896)_ 1.34830915373818039e+11 +Plasma_upper_hybrid_frequency_at_point_897_______________________________ (freq_plasma_upper_hybrid_profile897)_ 1.34738147272537689e+11 +Plasma_upper_hybrid_frequency_at_point_898_______________________________ (freq_plasma_upper_hybrid_profile898)_ 1.34645275387616684e+11 +Plasma_upper_hybrid_frequency_at_point_899_______________________________ (freq_plasma_upper_hybrid_profile899)_ 1.34552299346299606e+11 +Plasma_upper_hybrid_frequency_at_point_900_______________________________ (freq_plasma_upper_hybrid_profile900)_ 1.34459218774973846e+11 +Plasma_upper_hybrid_frequency_at_point_901_______________________________ (freq_plasma_upper_hybrid_profile901)_ 1.34366033299162506e+11 +Plasma_upper_hybrid_frequency_at_point_902_______________________________ (freq_plasma_upper_hybrid_profile902)_ 1.34272742543517181e+11 +Plasma_upper_hybrid_frequency_at_point_903_______________________________ (freq_plasma_upper_hybrid_profile903)_ 1.34179346131810684e+11 +Plasma_upper_hybrid_frequency_at_point_904_______________________________ (freq_plasma_upper_hybrid_profile904)_ 1.34085843686929657e+11 +Plasma_upper_hybrid_frequency_at_point_905_______________________________ (freq_plasma_upper_hybrid_profile905)_ 1.33992234830867325e+11 +Plasma_upper_hybrid_frequency_at_point_906_______________________________ (freq_plasma_upper_hybrid_profile906)_ 1.33898519184716003e+11 +Plasma_upper_hybrid_frequency_at_point_907_______________________________ (freq_plasma_upper_hybrid_profile907)_ 1.33804696368659653e+11 +Plasma_upper_hybrid_frequency_at_point_908_______________________________ (freq_plasma_upper_hybrid_profile908)_ 1.33710766001966400e+11 +Plasma_upper_hybrid_frequency_at_point_909_______________________________ (freq_plasma_upper_hybrid_profile909)_ 1.33616727702980972e+11 +Plasma_upper_hybrid_frequency_at_point_910_______________________________ (freq_plasma_upper_hybrid_profile910)_ 1.33522581089117142e+11 +Plasma_upper_hybrid_frequency_at_point_911_______________________________ (freq_plasma_upper_hybrid_profile911)_ 1.33428325776849899e+11 +Plasma_upper_hybrid_frequency_at_point_912_______________________________ (freq_plasma_upper_hybrid_profile912)_ 1.33333961381707993e+11 +Plasma_upper_hybrid_frequency_at_point_913_______________________________ (freq_plasma_upper_hybrid_profile913)_ 1.33239487518265991e+11 +Plasma_upper_hybrid_frequency_at_point_914_______________________________ (freq_plasma_upper_hybrid_profile914)_ 1.33144903800136536e+11 +Plasma_upper_hybrid_frequency_at_point_915_______________________________ (freq_plasma_upper_hybrid_profile915)_ 1.33050209839962524e+11 +Plasma_upper_hybrid_frequency_at_point_916_______________________________ (freq_plasma_upper_hybrid_profile916)_ 1.32955405249409134e+11 +Plasma_upper_hybrid_frequency_at_point_917_______________________________ (freq_plasma_upper_hybrid_profile917)_ 1.32860489639155899e+11 +Plasma_upper_hybrid_frequency_at_point_918_______________________________ (freq_plasma_upper_hybrid_profile918)_ 1.32765462618888702e+11 +Plasma_upper_hybrid_frequency_at_point_919_______________________________ (freq_plasma_upper_hybrid_profile919)_ 1.32670323797291656e+11 +Plasma_upper_hybrid_frequency_at_point_920_______________________________ (freq_plasma_upper_hybrid_profile920)_ 1.32575072782039032e+11 +Plasma_upper_hybrid_frequency_at_point_921_______________________________ (freq_plasma_upper_hybrid_profile921)_ 1.32479709179787094e+11 +Plasma_upper_hybrid_frequency_at_point_922_______________________________ (freq_plasma_upper_hybrid_profile922)_ 1.32384232596165756e+11 +Plasma_upper_hybrid_frequency_at_point_923_______________________________ (freq_plasma_upper_hybrid_profile923)_ 1.32288642635770432e+11 +Plasma_upper_hybrid_frequency_at_point_924_______________________________ (freq_plasma_upper_hybrid_profile924)_ 1.32192938902153671e+11 +Plasma_upper_hybrid_frequency_at_point_925_______________________________ (freq_plasma_upper_hybrid_profile925)_ 1.32097120997816574e+11 +Plasma_upper_hybrid_frequency_at_point_926_______________________________ (freq_plasma_upper_hybrid_profile926)_ 1.32001188524200577e+11 +Plasma_upper_hybrid_frequency_at_point_927_______________________________ (freq_plasma_upper_hybrid_profile927)_ 1.31905141081678818e+11 +Plasma_upper_hybrid_frequency_at_point_928_______________________________ (freq_plasma_upper_hybrid_profile928)_ 1.31808978269547501e+11 +Plasma_upper_hybrid_frequency_at_point_929_______________________________ (freq_plasma_upper_hybrid_profile929)_ 1.31712699686017410e+11 +Plasma_upper_hybrid_frequency_at_point_930_______________________________ (freq_plasma_upper_hybrid_profile930)_ 1.31616304928205032e+11 +Plasma_upper_hybrid_frequency_at_point_931_______________________________ (freq_plasma_upper_hybrid_profile931)_ 1.31519793592124023e+11 +Plasma_upper_hybrid_frequency_at_point_932_______________________________ (freq_plasma_upper_hybrid_profile932)_ 1.31423165272676117e+11 +Plasma_upper_hybrid_frequency_at_point_933_______________________________ (freq_plasma_upper_hybrid_profile933)_ 1.31326419563642487e+11 +Plasma_upper_hybrid_frequency_at_point_934_______________________________ (freq_plasma_upper_hybrid_profile934)_ 1.31229556057674622e+11 +Plasma_upper_hybrid_frequency_at_point_935_______________________________ (freq_plasma_upper_hybrid_profile935)_ 1.31132574346285477e+11 +Plasma_upper_hybrid_frequency_at_point_936_______________________________ (freq_plasma_upper_hybrid_profile936)_ 1.31035474019840332e+11 +Plasma_upper_hybrid_frequency_at_point_937_______________________________ (freq_plasma_upper_hybrid_profile937)_ 1.30938254667547531e+11 +Plasma_upper_hybrid_frequency_at_point_938_______________________________ (freq_plasma_upper_hybrid_profile938)_ 1.30840915877449585e+11 +Plasma_upper_hybrid_frequency_at_point_939_______________________________ (freq_plasma_upper_hybrid_profile939)_ 1.30743457236413574e+11 +Plasma_upper_hybrid_frequency_at_point_940_______________________________ (freq_plasma_upper_hybrid_profile940)_ 1.30645878330122009e+11 +Plasma_upper_hybrid_frequency_at_point_941_______________________________ (freq_plasma_upper_hybrid_profile941)_ 1.30548178743063477e+11 +Plasma_upper_hybrid_frequency_at_point_942_______________________________ (freq_plasma_upper_hybrid_profile942)_ 1.30450358058522964e+11 +Plasma_upper_hybrid_frequency_at_point_943_______________________________ (freq_plasma_upper_hybrid_profile943)_ 1.30352415858572617e+11 +Plasma_upper_hybrid_frequency_at_point_944_______________________________ (freq_plasma_upper_hybrid_profile944)_ 1.30254351724061768e+11 +Plasma_upper_hybrid_frequency_at_point_945_______________________________ (freq_plasma_upper_hybrid_profile945)_ 1.30156165234607620e+11 +Plasma_upper_hybrid_frequency_at_point_946_______________________________ (freq_plasma_upper_hybrid_profile946)_ 1.30057855968585251e+11 +Plasma_upper_hybrid_frequency_at_point_947_______________________________ (freq_plasma_upper_hybrid_profile947)_ 1.29959423503118011e+11 +Plasma_upper_hybrid_frequency_at_point_948_______________________________ (freq_plasma_upper_hybrid_profile948)_ 1.29860867414067368e+11 +Plasma_upper_hybrid_frequency_at_point_949_______________________________ (freq_plasma_upper_hybrid_profile949)_ 1.29762187276023300e+11 +Plasma_upper_hybrid_frequency_at_point_950_______________________________ (freq_plasma_upper_hybrid_profile950)_ 1.29663382662293900e+11 +Plasma_upper_hybrid_frequency_at_point_951_______________________________ (freq_plasma_upper_hybrid_profile951)_ 1.29564453144895477e+11 +Plasma_upper_hybrid_frequency_at_point_952_______________________________ (freq_plasma_upper_hybrid_profile952)_ 1.29465398294542419e+11 +Plasma_upper_hybrid_frequency_at_point_953_______________________________ (freq_plasma_upper_hybrid_profile953)_ 1.29366217680636719e+11 +Plasma_upper_hybrid_frequency_at_point_954_______________________________ (freq_plasma_upper_hybrid_profile954)_ 1.29266910871257874e+11 +Plasma_upper_hybrid_frequency_at_point_955_______________________________ (freq_plasma_upper_hybrid_profile955)_ 1.29167477433152298e+11 +Plasma_upper_hybrid_frequency_at_point_956_______________________________ (freq_plasma_upper_hybrid_profile956)_ 1.29067916931722977e+11 +Plasma_upper_hybrid_frequency_at_point_957_______________________________ (freq_plasma_upper_hybrid_profile957)_ 1.28968228931018768e+11 +Plasma_upper_hybrid_frequency_at_point_958_______________________________ (freq_plasma_upper_hybrid_profile958)_ 1.28868412993723862e+11 +Plasma_upper_hybrid_frequency_at_point_959_______________________________ (freq_plasma_upper_hybrid_profile959)_ 1.28768468681146942e+11 +Plasma_upper_hybrid_frequency_at_point_960_______________________________ (freq_plasma_upper_hybrid_profile960)_ 1.28668395553210571e+11 +Plasma_upper_hybrid_frequency_at_point_961_______________________________ (freq_plasma_upper_hybrid_profile961)_ 1.28568193168440018e+11 +Plasma_upper_hybrid_frequency_at_point_962_______________________________ (freq_plasma_upper_hybrid_profile962)_ 1.28467861083952530e+11 +Plasma_upper_hybrid_frequency_at_point_963_______________________________ (freq_plasma_upper_hybrid_profile963)_ 1.28367398855446106e+11 +Plasma_upper_hybrid_frequency_at_point_964_______________________________ (freq_plasma_upper_hybrid_profile964)_ 1.28266806037188507e+11 +Plasma_upper_hybrid_frequency_at_point_965_______________________________ (freq_plasma_upper_hybrid_profile965)_ 1.28166082182005875e+11 +Plasma_upper_hybrid_frequency_at_point_966_______________________________ (freq_plasma_upper_hybrid_profile966)_ 1.28065226841271545e+11 +Plasma_upper_hybrid_frequency_at_point_967_______________________________ (freq_plasma_upper_hybrid_profile967)_ 1.27964239564894470e+11 +Plasma_upper_hybrid_frequency_at_point_968_______________________________ (freq_plasma_upper_hybrid_profile968)_ 1.27863119901308014e+11 +Plasma_upper_hybrid_frequency_at_point_969_______________________________ (freq_plasma_upper_hybrid_profile969)_ 1.27761867397458069e+11 +Plasma_upper_hybrid_frequency_at_point_970_______________________________ (freq_plasma_upper_hybrid_profile970)_ 1.27660481598791519e+11 +Plasma_upper_hybrid_frequency_at_point_971_______________________________ (freq_plasma_upper_hybrid_profile971)_ 1.27558962049244537e+11 +Plasma_upper_hybrid_frequency_at_point_972_______________________________ (freq_plasma_upper_hybrid_profile972)_ 1.27242502304333267e+11 +Plasma_upper_hybrid_frequency_at_point_973_______________________________ (freq_plasma_upper_hybrid_profile973)_ 1.26925321629350708e+11 +Plasma_upper_hybrid_frequency_at_point_974_______________________________ (freq_plasma_upper_hybrid_profile974)_ 1.26607414467797119e+11 +Plasma_upper_hybrid_frequency_at_point_975_______________________________ (freq_plasma_upper_hybrid_profile975)_ 1.26288775195099960e+11 +Plasma_upper_hybrid_frequency_at_point_976_______________________________ (freq_plasma_upper_hybrid_profile976)_ 1.25969398117428009e+11 +Plasma_upper_hybrid_frequency_at_point_977_______________________________ (freq_plasma_upper_hybrid_profile977)_ 1.25649277470479172e+11 +Plasma_upper_hybrid_frequency_at_point_978_______________________________ (freq_plasma_upper_hybrid_profile978)_ 1.25328407418240845e+11 +Plasma_upper_hybrid_frequency_at_point_979_______________________________ (freq_plasma_upper_hybrid_profile979)_ 1.25006782051722061e+11 +Plasma_upper_hybrid_frequency_at_point_980_______________________________ (freq_plasma_upper_hybrid_profile980)_ 1.24684395387656860e+11 +Plasma_upper_hybrid_frequency_at_point_981_______________________________ (freq_plasma_upper_hybrid_profile981)_ 1.24361241367177948e+11 +Plasma_upper_hybrid_frequency_at_point_982_______________________________ (freq_plasma_upper_hybrid_profile982)_ 1.24037313854459686e+11 +Plasma_upper_hybrid_frequency_at_point_983_______________________________ (freq_plasma_upper_hybrid_profile983)_ 1.23712606635329895e+11 +Plasma_upper_hybrid_frequency_at_point_984_______________________________ (freq_plasma_upper_hybrid_profile984)_ 1.23387113415849182e+11 +Plasma_upper_hybrid_frequency_at_point_985_______________________________ (freq_plasma_upper_hybrid_profile985)_ 1.23060827820857117e+11 +Plasma_upper_hybrid_frequency_at_point_986_______________________________ (freq_plasma_upper_hybrid_profile986)_ 1.22733743392484177e+11 +Plasma_upper_hybrid_frequency_at_point_987_______________________________ (freq_plasma_upper_hybrid_profile987)_ 1.22405853588628677e+11 +Plasma_upper_hybrid_frequency_at_point_988_______________________________ (freq_plasma_upper_hybrid_profile988)_ 1.22077151781397339e+11 +Plasma_upper_hybrid_frequency_at_point_989_______________________________ (freq_plasma_upper_hybrid_profile989)_ 1.21747631255508743e+11 +Plasma_upper_hybrid_frequency_at_point_990_______________________________ (freq_plasma_upper_hybrid_profile990)_ 1.21417285206658417e+11 +Plasma_upper_hybrid_frequency_at_point_991_______________________________ (freq_plasma_upper_hybrid_profile991)_ 1.21086106739844315e+11 +Plasma_upper_hybrid_frequency_at_point_992_______________________________ (freq_plasma_upper_hybrid_profile992)_ 1.20754088867652039e+11 +Plasma_upper_hybrid_frequency_at_point_993_______________________________ (freq_plasma_upper_hybrid_profile993)_ 1.20421224508497742e+11 +Plasma_upper_hybrid_frequency_at_point_994_______________________________ (freq_plasma_upper_hybrid_profile994)_ 1.20087506484828384e+11 +Plasma_upper_hybrid_frequency_at_point_995_______________________________ (freq_plasma_upper_hybrid_profile995)_ 1.19752927521277130e+11 +Plasma_upper_hybrid_frequency_at_point_996_______________________________ (freq_plasma_upper_hybrid_profile996)_ 1.19417480242773483e+11 +Plasma_upper_hybrid_frequency_at_point_997_______________________________ (freq_plasma_upper_hybrid_profile997)_ 1.19081157172605881e+11 +Plasma_upper_hybrid_frequency_at_point_998_______________________________ (freq_plasma_upper_hybrid_profile998)_ 1.18743950730435928e+11 +Plasma_upper_hybrid_frequency_at_point_999_______________________________ (freq_plasma_upper_hybrid_profile999)_ 1.18405853230262512e+11 +Plasma_upper_hybrid_frequency_at_point_1000______________________________ (freq_plasma_upper_hybrid_profile1000)_ 1.18066856878334183e+11 +Plasma_upper_hybrid_frequency_at_point_1001______________________________ (freq_plasma_upper_hybrid_profile1001)_ 1.17726953771008453e+11 +Volume_averaged_electron-electron_Coulomb_log_(Λₑₑ)______________________ (plasma_coulomb_log_electron_electron_vol_avg)_ 1.74245822345187911e+01 OP +Electron-electron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_electron_profile0)_ 1.79924170406808628e+01 +Electron-electron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_electron_profile1)_ 1.79924129780296589e+01 +Electron-electron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_electron_profile2)_ 1.79924007899874461e+01 +Electron-electron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_electron_profile3)_ 1.79923804762884032e+01 +Electron-electron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_electron_profile4)_ 1.79923520364894785e+01 +Electron-electron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_electron_profile5)_ 1.79923154699703716e+01 +Electron-electron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_electron_profile6)_ 1.79922707759334841e+01 +Electron-electron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_electron_profile7)_ 1.79922179534038875e+01 +Electron-electron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_electron_profile8)_ 1.79921570012292840e+01 +Electron-electron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_electron_profile9)_ 1.79920879180799034e+01 +Electron-electron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_electron_profile10)_ 1.79920107024484714e+01 +Electron-electron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_electron_profile11)_ 1.79919253526500995e+01 +Electron-electron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_electron_profile12)_ 1.79918318668222064e+01 +Electron-electron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_electron_profile13)_ 1.79917302429244117e+01 +Electron-electron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_electron_profile14)_ 1.79916204787384189e+01 +Electron-electron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_electron_profile15)_ 1.79915025718679047e+01 +Electron-electron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_electron_profile16)_ 1.79913765197383810e+01 +Electron-electron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_electron_profile17)_ 1.79912423195970455e+01 +Electron-electron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_electron_profile18)_ 1.79910999685126534e+01 +Electron-electron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_electron_profile19)_ 1.79909494633753262e+01 +Electron-electron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_electron_profile20)_ 1.79907908008964057e+01 +Electron-electron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_electron_profile21)_ 1.79906239776082586e+01 +Electron-electron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_electron_profile22)_ 1.79904489898640954e+01 +Electron-electron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_electron_profile23)_ 1.79902658338377641e+01 +Electron-electron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_electron_profile24)_ 1.79900745055235411e+01 +Electron-electron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_electron_profile25)_ 1.79898750007359105e+01 +Electron-electron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_electron_profile26)_ 1.79896673151093403e+01 +Electron-electron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_electron_profile27)_ 1.79894514440980231e+01 +Electron-electron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_electron_profile28)_ 1.79892273829756526e+01 +Electron-electron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_electron_profile29)_ 1.79889951268351460e+01 +Electron-electron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_electron_profile30)_ 1.79887546705883778e+01 +Electron-electron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_electron_profile31)_ 1.79885060089658957e+01 +Electron-electron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_electron_profile32)_ 1.79882491365166430e+01 +Electron-electron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_electron_profile33)_ 1.79879840476076396e+01 +Electron-electron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_electron_profile34)_ 1.79877107364236899e+01 +Electron-electron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_electron_profile35)_ 1.79874291969670530e+01 +Electron-electron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_electron_profile36)_ 1.79871394230571049e+01 +Electron-electron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_electron_profile37)_ 1.79868414083300188e+01 +Electron-electron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_electron_profile38)_ 1.79865351462383884e+01 +Electron-electron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_electron_profile39)_ 1.79862206300508838e+01 +Electron-electron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_electron_profile40)_ 1.79858978528518776e+01 +Electron-electron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_electron_profile41)_ 1.79855668075410513e+01 +Electron-electron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_electron_profile42)_ 1.79852274868330291e+01 +Electron-electron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_electron_profile43)_ 1.79848798832569337e+01 +Electron-electron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_electron_profile44)_ 1.79845239891560205e+01 +Electron-electron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_electron_profile45)_ 1.79841597966872193e+01 +Electron-electron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_electron_profile46)_ 1.79837872978207116e+01 +Electron-electron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_electron_profile47)_ 1.79834064843394934e+01 +Electron-electron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_electron_profile48)_ 1.79830173478389064e+01 +Electron-electron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_electron_profile49)_ 1.79826198797261831e+01 +Electron-electron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_electron_profile50)_ 1.79822140712199712e+01 +Electron-electron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_electron_profile51)_ 1.79817999133498354e+01 +Electron-electron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_electron_profile52)_ 1.79813773969557715e+01 +Electron-electron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_electron_profile53)_ 1.79809465126876944e+01 +Electron-electron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_electron_profile54)_ 1.79805072510049158e+01 +Electron-electron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_electron_profile55)_ 1.79800596021756220e+01 +Electron-electron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_electron_profile56)_ 1.79796035562763201e+01 +Electron-electron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_electron_profile57)_ 1.79791391031913079e+01 +Electron-electron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_electron_profile58)_ 1.79786662326120883e+01 +Electron-electron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_electron_profile59)_ 1.79781849340368076e+01 +Electron-electron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_electron_profile60)_ 1.79776951967696732e+01 +Electron-electron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_electron_profile61)_ 1.79771970099203564e+01 +Electron-electron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_electron_profile62)_ 1.79766903624033745e+01 +Electron-electron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_electron_profile63)_ 1.79761752429374901e+01 +Electron-electron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_electron_profile64)_ 1.79756516400450757e+01 +Electron-electron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_electron_profile65)_ 1.79751195420514662e+01 +Electron-electron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_electron_profile66)_ 1.79745789370843170e+01 +Electron-electron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_electron_profile67)_ 1.79740298130729386e+01 +Electron-electron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_electron_profile68)_ 1.79734721577476186e+01 +Electron-electron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_electron_profile69)_ 1.79729059586389397e+01 +Electron-electron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_electron_profile70)_ 1.79723312030770828e+01 +Electron-electron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_electron_profile71)_ 1.79717478781911133e+01 +Electron-electron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_electron_profile72)_ 1.79711559709082636e+01 +Electron-electron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_electron_profile73)_ 1.79705554679532042e+01 +Electron-electron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_electron_profile74)_ 1.79699463558473056e+01 +Electron-electron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_electron_profile75)_ 1.79693286209078522e+01 +Electron-electron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_electron_profile76)_ 1.79687022492473183e+01 +Electron-electron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_electron_profile77)_ 1.79680672267725541e+01 +Electron-electron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_electron_profile78)_ 1.79674235391840149e+01 +Electron-electron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_electron_profile79)_ 1.79667711719749406e+01 +Electron-electron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_electron_profile80)_ 1.79661101104305629e+01 +Electron-electron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_electron_profile81)_ 1.79654403396272606e+01 +Electron-electron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_electron_profile82)_ 1.79647618444317132e+01 +Electron-electron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_electron_profile83)_ 1.79640746095000772e+01 +Electron-electron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_electron_profile84)_ 1.79633786192770977e+01 +Electron-electron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_electron_profile85)_ 1.79626738579952310e+01 +Electron-electron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_electron_profile86)_ 1.79619603096737670e+01 +Electron-electron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_electron_profile87)_ 1.79612379581179340e+01 +Electron-electron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_electron_profile88)_ 1.79605067869179642e+01 +Electron-electron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_electron_profile89)_ 1.79597667794481772e+01 +Electron-electron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_electron_profile90)_ 1.79590179188660422e+01 +Electron-electron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_electron_profile91)_ 1.79582601881112218e+01 +Electron-electron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_electron_profile92)_ 1.79574935699046137e+01 +Electron-electron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_electron_profile93)_ 1.79567180467473655e+01 +Electron-electron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_electron_profile94)_ 1.79559336009198844e+01 +Electron-electron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_electron_profile95)_ 1.79551402144808314e+01 +Electron-electron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_electron_profile96)_ 1.79543378692661193e+01 +Electron-electron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_electron_profile97)_ 1.79535265468878613e+01 +Electron-electron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_electron_profile98)_ 1.79527062287333408e+01 +Electron-electron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_electron_profile99)_ 1.79518768959639523e+01 +Electron-electron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_electron_profile100)_ 1.79510385295141219e+01 +Electron-electron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_electron_profile101)_ 1.79501911100902447e+01 +Electron-electron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_electron_profile102)_ 1.79493346181695621e+01 +Electron-electron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_electron_profile103)_ 1.79484690339990784e+01 +Electron-electron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_electron_profile104)_ 1.79475943375944098e+01 +Electron-electron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_electron_profile105)_ 1.79467105087386578e+01 +Electron-electron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_electron_profile106)_ 1.79458175269812692e+01 +Electron-electron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_electron_profile107)_ 1.79449153716368457e+01 +Electron-electron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_electron_profile108)_ 1.79440040217839893e+01 +Electron-electron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_electron_profile109)_ 1.79430834562640911e+01 +Electron-electron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_electron_profile110)_ 1.79421536536801298e+01 +Electron-electron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_electron_profile111)_ 1.79412145923954505e+01 +Electron-electron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_electron_profile112)_ 1.79402662505325239e+01 +Electron-electron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_electron_profile113)_ 1.79393086059717071e+01 +Electron-electron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_electron_profile114)_ 1.79383416363499641e+01 +Electron-electron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_electron_profile115)_ 1.79373653190595981e+01 +Electron-electron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_electron_profile116)_ 1.79363796312469432e+01 +Electron-electron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_electron_profile117)_ 1.79353845498110829e+01 +Electron-electron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_electron_profile118)_ 1.79343800514024956e+01 +Electron-electron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_electron_profile119)_ 1.79333661124217372e+01 +Electron-electron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_electron_profile120)_ 1.79323427090180800e+01 +Electron-electron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_electron_profile121)_ 1.79313098170881489e+01 +Electron-electron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_electron_profile122)_ 1.79302674122745458e+01 +Electron-electron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_electron_profile123)_ 1.79292154699644293e+01 +Electron-electron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_electron_profile124)_ 1.79281539652881285e+01 +Electron-electron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_electron_profile125)_ 1.79270828731176977e+01 +Electron-electron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_electron_profile126)_ 1.79260021680654873e+01 +Electron-electron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_electron_profile127)_ 1.79249118244826668e+01 +Electron-electron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_electron_profile128)_ 1.79238118164577784e+01 +Electron-electron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_electron_profile129)_ 1.79227021178152199e+01 +Electron-electron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_electron_profile130)_ 1.79215827021137528e+01 +Electron-electron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_electron_profile131)_ 1.79204535426449958e+01 +Electron-electron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_electron_profile132)_ 1.79193146124318545e+01 +Electron-electron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_electron_profile133)_ 1.79181658842270117e+01 +Electron-electron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_electron_profile134)_ 1.79170073305113284e+01 +Electron-electron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_electron_profile135)_ 1.79158389234922772e+01 +Electron-electron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_electron_profile136)_ 1.79146606351023330e+01 +Electron-electron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_electron_profile137)_ 1.79134724369973775e+01 +Electron-electron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_electron_profile138)_ 1.79122743005550404e+01 +Electron-electron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_electron_profile139)_ 1.79110661968730795e+01 +Electron-electron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_electron_profile140)_ 1.79098480967677034e+01 +Electron-electron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_electron_profile141)_ 1.79086199707718912e+01 +Electron-electron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_electron_profile142)_ 1.79073817891337121e+01 +Electron-electron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_electron_profile143)_ 1.79061335218145921e+01 +Electron-electron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_electron_profile144)_ 1.79048751384876148e+01 +Electron-electron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_electron_profile145)_ 1.79036066085357497e+01 +Electron-electron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_electron_profile146)_ 1.79023279010501106e+01 +Electron-electron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_electron_profile147)_ 1.79010389848281726e+01 +Electron-electron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_electron_profile148)_ 1.78997398283719669e+01 +Electron-electron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_electron_profile149)_ 1.78984303998863084e+01 +Electron-electron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_electron_profile150)_ 1.78971106672769267e+01 +Electron-electron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_electron_profile151)_ 1.78957805981486509e+01 +Electron-electron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_electron_profile152)_ 1.78944401598035405e+01 +Electron-electron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_electron_profile153)_ 1.78930893192390101e+01 +Electron-electron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_electron_profile154)_ 1.78917280431459460e+01 +Electron-electron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_electron_profile155)_ 1.78903562979067843e+01 +Electron-electron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_electron_profile156)_ 1.78889740495935960e+01 +Electron-electron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_electron_profile157)_ 1.78875812639661440e+01 +Electron-electron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_electron_profile158)_ 1.78861779064699178e+01 +Electron-electron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_electron_profile159)_ 1.78847639422341693e+01 +Electron-electron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_electron_profile160)_ 1.78833393360699127e+01 +Electron-electron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_electron_profile161)_ 1.78819040524679203e+01 +Electron-electron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_electron_profile162)_ 1.78804580555966943e+01 +Electron-electron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_electron_profile163)_ 1.78790013093004383e+01 +Electron-electron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_electron_profile164)_ 1.78775337770969749e+01 +Electron-electron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_electron_profile165)_ 1.78760554221756998e+01 +Electron-electron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_electron_profile166)_ 1.78745662073954712e+01 +Electron-electron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_electron_profile167)_ 1.78730660952825176e+01 +Electron-electron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_electron_profile168)_ 1.78715550480282985e+01 +Electron-electron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_electron_profile169)_ 1.78700330274873771e+01 +Electron-electron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_electron_profile170)_ 1.78684999951752665e+01 +Electron-electron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_electron_profile171)_ 1.78669559122662491e+01 +Electron-electron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_electron_profile172)_ 1.78654007395911911e+01 +Electron-electron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_electron_profile173)_ 1.78638344376353437e+01 +Electron-electron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_electron_profile174)_ 1.78622569665361226e+01 +Electron-electron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_electron_profile175)_ 1.78606682860808625e+01 +Electron-electron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_electron_profile176)_ 1.78590683557045899e+01 +Electron-electron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_electron_profile177)_ 1.78574571344877242e+01 +Electron-electron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_electron_profile178)_ 1.78558345811538253e+01 +Electron-electron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_electron_profile179)_ 1.78542006540672880e+01 +Electron-electron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_electron_profile180)_ 1.78525553112310149e+01 +Electron-electron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_electron_profile181)_ 1.78508985102841145e+01 +Electron-electron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_electron_profile182)_ 1.78492302084995380e+01 +Electron-electron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_electron_profile183)_ 1.78475503627817460e+01 +Electron-electron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_electron_profile184)_ 1.78458589296643098e+01 +Electron-electron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_electron_profile185)_ 1.78441558653075560e+01 +Electron-electron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_electron_profile186)_ 1.78424411254961477e+01 +Electron-electron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_electron_profile187)_ 1.78407146656366891e+01 +Electron-electron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_electron_profile188)_ 1.78389764407552782e+01 +Electron-electron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_electron_profile189)_ 1.78372264054950911e+01 +Electron-electron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_electron_profile190)_ 1.78354645141139301e+01 +Electron-electron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_electron_profile191)_ 1.78336907204817443e+01 +Electron-electron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_electron_profile192)_ 1.78319049780781533e+01 +Electron-electron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_electron_profile193)_ 1.78301072399899923e+01 +Electron-electron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_electron_profile194)_ 1.78282974589087679e+01 +Electron-electron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_electron_profile195)_ 1.78264755871281935e+01 +Electron-electron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_electron_profile196)_ 1.78246415765416266e+01 +Electron-electron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_electron_profile197)_ 1.78227953786395723e+01 +Electron-electron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_electron_profile198)_ 1.78209369445071211e+01 +Electron-electron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_electron_profile199)_ 1.78190662248214160e+01 +Electron-electron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_electron_profile200)_ 1.78171831698490735e+01 +Electron-electron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_electron_profile201)_ 1.78152877294436323e+01 +Electron-electron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_electron_profile202)_ 1.78133798530429779e+01 +Electron-electron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_electron_profile203)_ 1.78114594896667562e+01 +Electron-electron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_electron_profile204)_ 1.78095265879137870e+01 +Electron-electron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_electron_profile205)_ 1.78075810959594669e+01 +Electron-electron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_electron_profile206)_ 1.78056229615531656e+01 +Electron-electron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_electron_profile207)_ 1.78036521320156318e+01 +Electron-electron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_electron_profile208)_ 1.78016685542363788e+01 +Electron-electron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_electron_profile209)_ 1.77996721746710733e+01 +Electron-electron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_electron_profile210)_ 1.77976629393389132e+01 +Electron-electron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_electron_profile211)_ 1.77956407938200236e+01 +Electron-electron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_electron_profile212)_ 1.77936056832528351e+01 +Electron-electron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_electron_profile213)_ 1.77915575523314651e+01 +Electron-electron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_electron_profile214)_ 1.77894963453030890e+01 +Electron-electron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_electron_profile215)_ 1.77874220059653609e+01 +Electron-electron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_electron_profile216)_ 1.77853344776637599e+01 +Electron-electron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_electron_profile217)_ 1.77832337032890138e+01 +Electron-electron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_electron_profile218)_ 1.77811196252744779e+01 +Electron-electron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_electron_profile219)_ 1.77789921855935482e+01 +Electron-electron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_electron_profile220)_ 1.77768513257570824e+01 +Electron-electron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_electron_profile221)_ 1.77746969868107776e+01 +Electron-electron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_electron_profile222)_ 1.77725291093326554e+01 +Electron-electron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_electron_profile223)_ 1.77703476334304575e+01 +Electron-electron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_electron_profile224)_ 1.77681524987391306e+01 +Electron-electron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_electron_profile225)_ 1.77659436444182646e+01 +Electron-electron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_electron_profile226)_ 1.77637210091496023e+01 +Electron-electron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_electron_profile227)_ 1.77614845311345135e+01 +Electron-electron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_electron_profile228)_ 1.77592341480915330e+01 +Electron-electron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_electron_profile229)_ 1.77569697972538911e+01 +Electron-electron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_electron_profile230)_ 1.77546914153670770e+01 +Electron-electron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_electron_profile231)_ 1.77523989386864152e+01 +Electron-electron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_electron_profile232)_ 1.77500923029746893e+01 +Electron-electron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_electron_profile233)_ 1.77477714434997687e+01 +Electron-electron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_electron_profile234)_ 1.77454362950322952e+01 +Electron-electron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_electron_profile235)_ 1.77430867918433570e+01 +Electron-electron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_electron_profile236)_ 1.77407228677022459e+01 +Electron-electron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_electron_profile237)_ 1.77383444558742305e+01 +Electron-electron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_electron_profile238)_ 1.77359514891183530e+01 +Electron-electron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_electron_profile239)_ 1.77335438996852908e+01 +Electron-electron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_electron_profile240)_ 1.77311216193152532e+01 +Electron-electron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_electron_profile241)_ 1.77286845792359351e+01 +Electron-electron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_electron_profile242)_ 1.77262327101604953e+01 +Electron-electron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_electron_profile243)_ 1.77237659422856204e+01 +Electron-electron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_electron_profile244)_ 1.77212842052896136e+01 +Electron-electron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_electron_profile245)_ 1.77187874283305788e+01 +Electron-electron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_electron_profile246)_ 1.77162755400446272e+01 +Electron-electron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_electron_profile247)_ 1.77137484685441713e+01 +Electron-electron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_electron_profile248)_ 1.77112061414163051e+01 +Electron-electron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_electron_profile249)_ 1.77086484857212128e+01 +Electron-electron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_electron_profile250)_ 1.77060754279906973e+01 +Electron-electron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_electron_profile251)_ 1.77034868942267778e+01 +Electron-electron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_electron_profile252)_ 1.77008828099003566e+01 +Electron-electron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_electron_profile253)_ 1.76982630999499833e+01 +Electron-electron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_electron_profile254)_ 1.76956276887807427e+01 +Electron-electron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_electron_profile255)_ 1.76929765002631854e+01 +Electron-electron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_electron_profile256)_ 1.76903094577324254e+01 +Electron-electron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_electron_profile257)_ 1.76876264839872945e+01 +Electron-electron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_electron_profile258)_ 1.76849275012896321e+01 +Electron-electron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_electron_profile259)_ 1.76822124313637055e+01 +Electron-electron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_electron_profile260)_ 1.76794811953957307e+01 +Electron-electron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_electron_profile261)_ 1.76767337140335599e+01 +Electron-electron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_electron_profile262)_ 1.76739699073864571e+01 +Electron-electron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_electron_profile263)_ 1.76711896950250669e+01 +Electron-electron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_electron_profile264)_ 1.76683929959815025e+01 +Electron-electron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_electron_profile265)_ 1.76655797287496128e+01 +Electron-electron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_electron_profile266)_ 1.76627498112853800e+01 +Electron-electron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_electron_profile267)_ 1.76599031610075272e+01 +Electron-electron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_electron_profile268)_ 1.76570396947982928e+01 +Electron-electron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_electron_profile269)_ 1.76541593290043863e+01 +Electron-electron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_electron_profile270)_ 1.76512619794381358e+01 +Electron-electron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_electron_profile271)_ 1.76483475613788627e+01 +Electron-electron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_electron_profile272)_ 1.76454159895744311e+01 +Electron-electron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_electron_profile273)_ 1.76424671782430735e+01 +Electron-electron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_electron_profile274)_ 1.76395010410754089e+01 +Electron-electron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_electron_profile275)_ 1.76365174912366989e+01 +Electron-electron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_electron_profile276)_ 1.76335164413694088e+01 +Electron-electron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_electron_profile277)_ 1.76304978035959650e+01 +Electron-electron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_electron_profile278)_ 1.76274614895218242e+01 +Electron-electron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_electron_profile279)_ 1.76244074102388524e+01 +Electron-electron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_electron_profile280)_ 1.76213354763289445e+01 +Electron-electron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_electron_profile281)_ 1.76182455978680110e+01 +Electron-electron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_electron_profile282)_ 1.76151376844302447e+01 +Electron-electron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_electron_profile283)_ 1.76120116450927853e+01 +Electron-electron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_electron_profile284)_ 1.76088673884406539e+01 +Electron-electron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_electron_profile285)_ 1.76057048225721466e+01 +Electron-electron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_electron_profile286)_ 1.76025238551045362e+01 +Electron-electron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_electron_profile287)_ 1.75993243931802184e+01 +Electron-electron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_electron_profile288)_ 1.75961063434732594e+01 +Electron-electron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_electron_profile289)_ 1.75928696121963668e+01 +Electron-electron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_electron_profile290)_ 1.75896141051083355e+01 +Electron-electron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_electron_profile291)_ 1.75863397275219384e+01 +Electron-electron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_electron_profile292)_ 1.75830463843123219e+01 +Electron-electron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_electron_profile293)_ 1.75797339799259049e+01 +Electron-electron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_electron_profile294)_ 1.75764024183897973e+01 +Electron-electron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_electron_profile295)_ 1.75730516033218009e+01 +Electron-electron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_electron_profile296)_ 1.75696814379409467e+01 +Electron-electron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_electron_profile297)_ 1.75662918250786575e+01 +Electron-electron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_electron_profile298)_ 1.75628826671905180e+01 +Electron-electron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_electron_profile299)_ 1.75594538663686919e+01 +Electron-electron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_electron_profile300)_ 1.75560053243550342e+01 +Electron-electron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_electron_profile301)_ 1.75525369425548661e+01 +Electron-electron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_electron_profile302)_ 1.75490486220515223e+01 +Electron-electron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_electron_profile303)_ 1.75455402636216142e+01 +Electron-electron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_electron_profile304)_ 1.75420117677511449e+01 +Electron-electron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_electron_profile305)_ 1.75384630346523487e+01 +Electron-electron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_electron_profile306)_ 1.75348939642815047e+01 +Electron-electron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_electron_profile307)_ 1.75313044563575424e+01 +Electron-electron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_electron_profile308)_ 1.75276944103816312e+01 +Electron-electron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_electron_profile309)_ 1.75240637256577045e+01 +Electron-electron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_electron_profile310)_ 1.75204123013139963e+01 +Electron-electron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_electron_profile311)_ 1.75167400363256327e+01 +Electron-electron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_electron_profile312)_ 1.75130468295382862e+01 +Electron-electron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_electron_profile313)_ 1.75093325796929804e+01 +Electron-electron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_electron_profile314)_ 1.75055971854520607e+01 +Electron-electron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_electron_profile315)_ 1.75018405454263863e+01 +Electron-electron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_electron_profile316)_ 1.74980625582037845e+01 +Electron-electron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_electron_profile317)_ 1.74942631223788609e+01 +Electron-electron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_electron_profile318)_ 1.74904421365841678e+01 +Electron-electron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_electron_profile319)_ 1.74865994995227858e+01 +Electron-electron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_electron_profile320)_ 1.74827351100024515e+01 +Electron-electron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_electron_profile321)_ 1.74788488669711448e+01 +Electron-electron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_electron_profile322)_ 1.74749406695544280e+01 +Electron-electron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_electron_profile323)_ 1.74710104170943232e+01 +Electron-electron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_electron_profile324)_ 1.74670580091900263e+01 +Electron-electron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_electron_profile325)_ 1.74630833457404258e+01 +Electron-electron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_electron_profile326)_ 1.74590863269884906e+01 +Electron-electron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_electron_profile327)_ 1.74550668535676614e+01 +Electron-electron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_electron_profile328)_ 1.74510248265502561e+01 +Electron-electron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_electron_profile329)_ 1.74469601474980678e+01 +Electron-electron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_electron_profile330)_ 1.74428727185151118e+01 +Electron-electron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_electron_profile331)_ 1.74387624423027496e+01 +Electron-electron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_electron_profile332)_ 1.74346292222171897e+01 +Electron-electron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_electron_profile333)_ 1.74304729623294818e+01 +Electron-electron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_electron_profile334)_ 1.74262935674881838e+01 +Electron-electron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_electron_profile335)_ 1.74220909433846458e+01 +Electron-electron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_electron_profile336)_ 1.74178649966212191e+01 +Electron-electron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_electron_profile337)_ 1.74136156347823459e+01 +Electron-electron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_electron_profile338)_ 1.74093427665087468e+01 +Electron-electron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_electron_profile339)_ 1.74050463015747816e+01 +Electron-electron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_electron_profile340)_ 1.74007261509691524e+01 +Electron-electron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_electron_profile341)_ 1.73963822269790533e+01 +Electron-electron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_electron_profile342)_ 1.73920144432779331e+01 +Electron-electron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_electron_profile343)_ 1.73876227150170060e+01 +Electron-electron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_electron_profile344)_ 1.73832069589206917e+01 +Electron-electron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_electron_profile345)_ 1.73787670933861129e+01 +Electron-electron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_electron_profile346)_ 1.73743030385868060e+01 +Electron-electron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_electron_profile347)_ 1.73698147165809473e+01 +Electron-electron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_electron_profile348)_ 1.73653020514240808e+01 +Electron-electron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_electron_profile349)_ 1.73607649692867021e+01 +Electron-electron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_electron_profile350)_ 1.73562033985768238e+01 +Electron-electron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_electron_profile351)_ 1.73516172700677807e+01 +Electron-electron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_electron_profile352)_ 1.73470065170314172e+01 +Electron-electron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_electron_profile353)_ 1.73423710753769882e+01 +Electron-electron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_electron_profile354)_ 1.73377108837959071e+01 +Electron-electron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_electron_profile355)_ 1.73330258839127040e+01 +Electron-electron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_electron_profile356)_ 1.73283160204423403e+01 +Electron-electron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_electron_profile357)_ 1.73235812413542583e+01 +Electron-electron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_electron_profile358)_ 1.73188214980433521e+01 +Electron-electron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_electron_profile359)_ 1.73140367455082576e+01 +Electron-electron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_electron_profile360)_ 1.73092269425371725e+01 +Electron-electron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_electron_profile361)_ 1.73043920519016616e+01 +Electron-electron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_electron_profile362)_ 1.72995320405586099e+01 +Electron-electron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_electron_profile363)_ 1.72946468798608635e+01 +Electron-electron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_electron_profile364)_ 1.72897365457768117e+01 +Electron-electron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_electron_profile365)_ 1.72848010191193566e+01 +Electron-electron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_electron_profile366)_ 1.72798402857846476e+01 +Electron-electron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_electron_profile367)_ 1.72748543370009990e+01 +Electron-electron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_electron_profile368)_ 1.72698431695885191e+01 +Electron-electron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_electron_profile369)_ 1.72648067862298120e+01 +Electron-electron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_electron_profile370)_ 1.72597451957522878e+01 +Electron-electron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_electron_profile371)_ 1.72546584134226393e+01 +Electron-electron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_electron_profile372)_ 1.72495464612539280e+01 +Electron-electron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_electron_profile373)_ 1.72444093683259467e+01 +Electron-electron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_electron_profile374)_ 1.72392471711193558e+01 +Electron-electron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_electron_profile375)_ 1.72340599138642716e+01 +Electron-electron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_electron_profile376)_ 1.72288476489039724e+01 +Electron-electron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_electron_profile377)_ 1.72236104370742957e+01 +Electron-electron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_electron_profile378)_ 1.72183483480996067e+01 +Electron-electron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_electron_profile379)_ 1.72130614610059283e+01 +Electron-electron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_electron_profile380)_ 1.72077498645521061e+01 +Electron-electron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_electron_profile381)_ 1.72024136576798661e+01 +Electron-electron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_electron_profile382)_ 1.71970529499835010e+01 +Electron-electron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_electron_profile383)_ 1.71916678622002514e+01 +Electron-electron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_electron_profile384)_ 1.71862585267222450e+01 +Electron-electron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_electron_profile385)_ 1.71808250881310158e+01 +Electron-electron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_electron_profile386)_ 1.71753677037556933e+01 +Electron-electron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_electron_profile387)_ 1.71698865442559701e+01 +Electron-electron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_electron_profile388)_ 1.71643817942309767e+01 +Electron-electron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_electron_profile389)_ 1.71588536528553810e+01 +Electron-electron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_electron_profile390)_ 1.71533023345439339e+01 +Electron-electron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_electron_profile391)_ 1.71477280696459005e+01 +Electron-electron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_electron_profile392)_ 1.71421311051708010e+01 +Electron-electron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_electron_profile393)_ 1.71365117055469582e+01 +Electron-electron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_electron_profile394)_ 1.71308701534145733e+01 +Electron-electron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_electron_profile395)_ 1.71252067504548720e+01 +Electron-electron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_electron_profile396)_ 1.71195218182573008e+01 +Electron-electron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_electron_profile397)_ 1.71138156992265742e+01 +Electron-electron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_electron_profile398)_ 1.71080887575316254e+01 +Electron-electron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_electron_profile399)_ 1.71023413800985757e+01 +Electron-electron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_electron_profile400)_ 1.70965739776501096e+01 +Electron-electron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_electron_profile401)_ 1.70907869857934820e+01 +Electron-electron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_electron_profile402)_ 1.70849808661598992e+01 +Electron-electron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_electron_profile403)_ 1.70791561075979139e+01 +Electron-electron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_electron_profile404)_ 1.70733132274236645e+01 +Electron-electron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_electron_profile405)_ 1.70674527727312899e+01 +Electron-electron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_electron_profile406)_ 1.70615753217664903e+01 +Electron-electron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_electron_profile407)_ 1.70556814853670673e+01 +Electron-electron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_electron_profile408)_ 1.70497719084739643e+01 +Electron-electron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_electron_profile409)_ 1.70438472717170448e+01 +Electron-electron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_electron_profile410)_ 1.70379082930797416e+01 +Electron-electron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_electron_profile411)_ 1.70319557296473967e+01 +Electron-electron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_electron_profile412)_ 1.70259903794441918e+01 +Electron-electron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_electron_profile413)_ 1.70200130833640344e+01 +Electron-electron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_electron_profile414)_ 1.70140247272012957e+01 +Electron-electron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_electron_profile415)_ 1.70080262437875973e+01 +Electron-electron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_electron_profile416)_ 1.70020186152414929e+01 +Electron-electron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_electron_profile417)_ 1.69960028753384265e+01 +Electron-electron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_electron_profile418)_ 1.69899801120089933e+01 +Electron-electron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_electron_profile419)_ 1.69839514699742118e+01 +Electron-electron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_electron_profile420)_ 1.69779181535274688e+01 +Electron-electron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_electron_profile421)_ 1.69718814294735161e+01 +Electron-electron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_electron_profile422)_ 1.69658426302360432e+01 +Electron-electron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_electron_profile423)_ 1.69598031571465633e+01 +Electron-electron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_electron_profile424)_ 1.69537644839284383e+01 +Electron-electron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_electron_profile425)_ 1.69477281603916339e+01 +Electron-electron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_electron_profile426)_ 1.69416958163553311e+01 +Electron-electron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_electron_profile427)_ 1.69356691658175045e+01 +Electron-electron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_electron_profile428)_ 1.69296500113928943e+01 +Electron-electron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_electron_profile429)_ 1.69236402490432596e+01 +Electron-electron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_electron_profile430)_ 1.69176418731268825e+01 +Electron-electron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_electron_profile431)_ 1.69116569817977904e+01 +Electron-electron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_electron_profile432)_ 1.69056877827891228e+01 +Electron-electron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_electron_profile433)_ 1.68997365996198745e+01 +Electron-electron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_electron_profile434)_ 1.68938058782698377e+01 +Electron-electron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_electron_profile435)_ 1.68878981943740598e+01 +Electron-electron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_electron_profile436)_ 1.68820162609961386e+01 +Electron-electron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_electron_profile437)_ 1.68761629370486546e+01 +Electron-electron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_electron_profile438)_ 1.68703412364406056e+01 +Electron-electron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_electron_profile439)_ 1.68645543380446910e+01 +Electron-electron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_electron_profile440)_ 1.68588055965939425e+01 +Electron-electron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_electron_profile441)_ 1.68530985546365386e+01 +Electron-electron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_electron_profile442)_ 1.68474369557023635e+01 +Electron-electron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_electron_profile443)_ 1.68418247588641243e+01 +Electron-electron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_electron_profile444)_ 1.68362661549134778e+01 +Electron-electron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_electron_profile445)_ 1.68307655844186321e+01 +Electron-electron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_electron_profile446)_ 1.68253277579881839e+01 +Electron-electron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_electron_profile447)_ 1.68199576791407353e+01 +Electron-electron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_electron_profile448)_ 1.68146606702742716e+01 +Electron-electron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_electron_profile449)_ 1.68094424023535716e+01 +Electron-electron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_electron_profile450)_ 1.68043089290945211e+01 +Electron-electron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_electron_profile451)_ 1.67992667266389333e+01 +Electron-electron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_electron_profile452)_ 1.67943227399998918e+01 +Electron-electron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_electron_profile453)_ 1.67894844379485271e+01 +Electron-electron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_electron_profile454)_ 1.67847598785517640e+01 +Electron-electron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_electron_profile455)_ 1.67801577883286761e+01 +Electron-electron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_electron_profile456)_ 1.67756876590770219e+01 +Electron-electron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_electron_profile457)_ 1.67713598680077425e+01 +Electron-electron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_electron_profile458)_ 1.67671858291999314e+01 +Electron-electron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_electron_profile459)_ 1.67631781880440833e+01 +Electron-electron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_electron_profile460)_ 1.67593510761451476e+01 +Electron-electron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_electron_profile461)_ 1.67557204537129927e+01 +Electron-electron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_electron_profile462)_ 1.67523045828890886e+01 +Electron-electron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_electron_profile463)_ 1.67491247051532710e+01 +Electron-electron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_electron_profile464)_ 1.67462060531027426e+01 +Electron-electron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_electron_profile465)_ 1.67435794457722942e+01 +Electron-electron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_electron_profile466)_ 1.67412839901048933e+01 +Electron-electron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_electron_profile467)_ 1.67393721320185485e+01 +Electron-electron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_electron_profile468)_ 1.67379206196265464e+01 +Electron-electron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_electron_profile469)_ 1.67370613738335194e+01 +Electron-electron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_electron_profile470)_ 1.67371708577298826e+01 +Electron-electron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_electron_profile471)_ 1.67110673085256884e+01 +Electron-electron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_electron_profile472)_ 1.66839152743851997e+01 +Electron-electron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_electron_profile473)_ 1.66556358286051953e+01 +Electron-electron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_electron_profile474)_ 1.66261411027551667e+01 +Electron-electron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_electron_profile475)_ 1.65953329018518438e+01 +Electron-electron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_electron_profile476)_ 1.65631010421072666e+01 +Electron-electron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_electron_profile477)_ 1.65293213419094940e+01 +Electron-electron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_electron_profile478)_ 1.64938531756093312e+01 +Electron-electron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_electron_profile479)_ 1.64565364709420301e+01 +Electron-electron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_electron_profile480)_ 1.64171879912298024e+01 +Electron-electron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_electron_profile481)_ 1.63755966879716404e+01 +Electron-electron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_electron_profile482)_ 1.63315178305290409e+01 +Electron-electron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_electron_profile483)_ 1.62846655056905405e+01 +Electron-electron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_electron_profile484)_ 1.62347029124187863e+01 +Electron-electron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_electron_profile485)_ 1.61812296259537902e+01 +Electron-electron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_electron_profile486)_ 1.61237646205131107e+01 +Electron-electron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_electron_profile487)_ 1.60617232351385368e+01 +Electron-electron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_electron_profile488)_ 1.59943852907283084e+01 +Electron-electron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_electron_profile489)_ 1.59208499391879013e+01 +Electron-electron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_electron_profile490)_ 1.58399700156424359e+01 +Electron-electron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_electron_profile491)_ 1.57502536067833105e+01 +Electron-electron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_electron_profile492)_ 1.56497109926828877e+01 +Electron-electron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_electron_profile493)_ 1.55356059967960487e+01 +Electron-electron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_electron_profile494)_ 1.54040297525156529e+01 +Electron-electron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_electron_profile495)_ 1.52491189491124253e+01 +Electron-electron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_electron_profile496)_ 1.50614901126814207e+01 +Electron-electron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_electron_profile497)_ 1.48247039401747802e+01 +Electron-electron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_electron_profile498)_ 1.45057501789659558e+01 +Electron-electron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_electron_profile499)_ 1.40208498772251744e+01 +Electron-electron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_electron_profile500)_ 1.30030271703655078e+01 +Volume_averaged_electron-deuteron_Coulomb_log_(ΛₑD)______________________ (plasma_coulomb_log_electron_deuteron_vol_avg)_ 1.77710246263724159e+01 OP +Electron-deuteron_Coulomb_log_at_point_0_________________________________ (plasma_coulomb_log_electron_deuteron_profile0)_ 1.83388647885484879e+01 +Electron-deuteron_Coulomb_log_at_point_1_________________________________ (plasma_coulomb_log_electron_deuteron_profile1)_ 1.83388607258434035e+01 +Electron-deuteron_Coulomb_log_at_point_2_________________________________ (plasma_coulomb_log_electron_deuteron_profile2)_ 1.83388485376395352e+01 +Electron-deuteron_Coulomb_log_at_point_3_________________________________ (plasma_coulomb_log_electron_deuteron_profile3)_ 1.83388282236710722e+01 +Electron-deuteron_Coulomb_log_at_point_4_________________________________ (plasma_coulomb_log_electron_deuteron_profile4)_ 1.83387997834949594e+01 +Electron-deuteron_Coulomb_log_at_point_5_________________________________ (plasma_coulomb_log_electron_deuteron_profile5)_ 1.83387632164909036e+01 +Electron-deuteron_Coulomb_log_at_point_6_________________________________ (plasma_coulomb_log_electron_deuteron_profile6)_ 1.83387185218613169e+01 +Electron-deuteron_Coulomb_log_at_point_7_________________________________ (plasma_coulomb_log_electron_deuteron_profile7)_ 1.83386656986312779e+01 +Electron-deuteron_Coulomb_log_at_point_8_________________________________ (plasma_coulomb_log_electron_deuteron_profile8)_ 1.83386047456484924e+01 +Electron-deuteron_Coulomb_log_at_point_9_________________________________ (plasma_coulomb_log_electron_deuteron_profile9)_ 1.83385356615832080e+01 +Electron-deuteron_Coulomb_log_at_point_10________________________________ (plasma_coulomb_log_electron_deuteron_profile10)_ 1.83384584449281540e+01 +Electron-deuteron_Coulomb_log_at_point_11________________________________ (plasma_coulomb_log_electron_deuteron_profile11)_ 1.83383730939984595e+01 +Electron-deuteron_Coulomb_log_at_point_12________________________________ (plasma_coulomb_log_electron_deuteron_profile12)_ 1.83382796069315539e+01 +Electron-deuteron_Coulomb_log_at_point_13________________________________ (plasma_coulomb_log_electron_deuteron_profile13)_ 1.83381779816870747e+01 +Electron-deuteron_Coulomb_log_at_point_14________________________________ (plasma_coulomb_log_electron_deuteron_profile14)_ 1.83380682160467430e+01 +Electron-deuteron_Coulomb_log_at_point_15________________________________ (plasma_coulomb_log_electron_deuteron_profile15)_ 1.83379503076142569e+01 +Electron-deuteron_Coulomb_log_at_point_16________________________________ (plasma_coulomb_log_electron_deuteron_profile16)_ 1.83378242538151426e+01 +Electron-deuteron_Coulomb_log_at_point_17________________________________ (plasma_coulomb_log_electron_deuteron_profile17)_ 1.83376900518966259e+01 +Electron-deuteron_Coulomb_log_at_point_18________________________________ (plasma_coulomb_log_electron_deuteron_profile18)_ 1.83375476989274730e+01 +Electron-deuteron_Coulomb_log_at_point_19________________________________ (plasma_coulomb_log_electron_deuteron_profile19)_ 1.83373971917978409e+01 +Electron-deuteron_Coulomb_log_at_point_20________________________________ (plasma_coulomb_log_electron_deuteron_profile20)_ 1.83372385272190925e+01 +Electron-deuteron_Coulomb_log_at_point_21________________________________ (plasma_coulomb_log_electron_deuteron_profile21)_ 1.83370717017236196e+01 +Electron-deuteron_Coulomb_log_at_point_22________________________________ (plasma_coulomb_log_electron_deuteron_profile22)_ 1.83368967116646644e+01 +Electron-deuteron_Coulomb_log_at_point_23________________________________ (plasma_coulomb_log_electron_deuteron_profile23)_ 1.83367135532161001e+01 +Electron-deuteron_Coulomb_log_at_point_24________________________________ (plasma_coulomb_log_electron_deuteron_profile24)_ 1.83365222223722348e+01 +Electron-deuteron_Coulomb_log_at_point_25________________________________ (plasma_coulomb_log_electron_deuteron_profile25)_ 1.83363227149475918e+01 +Electron-deuteron_Coulomb_log_at_point_26________________________________ (plasma_coulomb_log_electron_deuteron_profile26)_ 1.83361150265766639e+01 +Electron-deuteron_Coulomb_log_at_point_27________________________________ (plasma_coulomb_log_electron_deuteron_profile27)_ 1.83358991527136794e+01 +Electron-deuteron_Coulomb_log_at_point_28________________________________ (plasma_coulomb_log_electron_deuteron_profile28)_ 1.83356750886323745e+01 +Electron-deuteron_Coulomb_log_at_point_29________________________________ (plasma_coulomb_log_electron_deuteron_profile29)_ 1.83354428294256984e+01 +Electron-deuteron_Coulomb_log_at_point_30________________________________ (plasma_coulomb_log_electron_deuteron_profile30)_ 1.83352023700055646e+01 +Electron-deuteron_Coulomb_log_at_point_31________________________________ (plasma_coulomb_log_electron_deuteron_profile31)_ 1.83349537051025671e+01 +Electron-deuteron_Coulomb_log_at_point_32________________________________ (plasma_coulomb_log_electron_deuteron_profile32)_ 1.83346968292656882e+01 +Electron-deuteron_Coulomb_log_at_point_33________________________________ (plasma_coulomb_log_electron_deuteron_profile33)_ 1.83344317368619869e+01 +Electron-deuteron_Coulomb_log_at_point_34________________________________ (plasma_coulomb_log_electron_deuteron_profile34)_ 1.83341584220763210e+01 +Electron-deuteron_Coulomb_log_at_point_35________________________________ (plasma_coulomb_log_electron_deuteron_profile35)_ 1.83338768789109814e+01 +Electron-deuteron_Coulomb_log_at_point_36________________________________ (plasma_coulomb_log_electron_deuteron_profile36)_ 1.83335871011854046e+01 +Electron-deuteron_Coulomb_log_at_point_37________________________________ (plasma_coulomb_log_electron_deuteron_profile37)_ 1.83332890825358099e+01 +Electron-deuteron_Coulomb_log_at_point_38________________________________ (plasma_coulomb_log_electron_deuteron_profile38)_ 1.83329828164148374e+01 +Electron-deuteron_Coulomb_log_at_point_39________________________________ (plasma_coulomb_log_electron_deuteron_profile39)_ 1.83326682960912137e+01 +Electron-deuteron_Coulomb_log_at_point_40________________________________ (plasma_coulomb_log_electron_deuteron_profile40)_ 1.83323455146493579e+01 +Electron-deuteron_Coulomb_log_at_point_41________________________________ (plasma_coulomb_log_electron_deuteron_profile41)_ 1.83320144649890118e+01 +Electron-deuteron_Coulomb_log_at_point_42________________________________ (plasma_coulomb_log_electron_deuteron_profile42)_ 1.83316751398248527e+01 +Electron-deuteron_Coulomb_log_at_point_43________________________________ (plasma_coulomb_log_electron_deuteron_profile43)_ 1.83313275316860604e+01 +Electron-deuteron_Coulomb_log_at_point_44________________________________ (plasma_coulomb_log_electron_deuteron_profile44)_ 1.83309716329159507e+01 +Electron-deuteron_Coulomb_log_at_point_45________________________________ (plasma_coulomb_log_electron_deuteron_profile45)_ 1.83306074356715065e+01 +Electron-deuteron_Coulomb_log_at_point_46________________________________ (plasma_coulomb_log_electron_deuteron_profile46)_ 1.83302349319229840e+01 +Electron-deuteron_Coulomb_log_at_point_47________________________________ (plasma_coulomb_log_electron_deuteron_profile47)_ 1.83298541134534254e+01 +Electron-deuteron_Coulomb_log_at_point_48________________________________ (plasma_coulomb_log_electron_deuteron_profile48)_ 1.83294649718582541e+01 +Electron-deuteron_Coulomb_log_at_point_49________________________________ (plasma_coulomb_log_electron_deuteron_profile49)_ 1.83290674985447524e+01 +Electron-deuteron_Coulomb_log_at_point_50________________________________ (plasma_coulomb_log_electron_deuteron_profile50)_ 1.83286616847316459e+01 +Electron-deuteron_Coulomb_log_at_point_51________________________________ (plasma_coulomb_log_electron_deuteron_profile51)_ 1.83282475214485636e+01 +Electron-deuteron_Coulomb_log_at_point_52________________________________ (plasma_coulomb_log_electron_deuteron_profile52)_ 1.83278249995355651e+01 +Electron-deuteron_Coulomb_log_at_point_53________________________________ (plasma_coulomb_log_electron_deuteron_profile53)_ 1.83273941096426469e+01 +Electron-deuteron_Coulomb_log_at_point_54________________________________ (plasma_coulomb_log_electron_deuteron_profile54)_ 1.83269548422291884e+01 +Electron-deuteron_Coulomb_log_at_point_55________________________________ (plasma_coulomb_log_electron_deuteron_profile55)_ 1.83265071875634469e+01 +Electron-deuteron_Coulomb_log_at_point_56________________________________ (plasma_coulomb_log_electron_deuteron_profile56)_ 1.83260511357220111e+01 +Electron-deuteron_Coulomb_log_at_point_57________________________________ (plasma_coulomb_log_electron_deuteron_profile57)_ 1.83255866765892499e+01 +Electron-deuteron_Coulomb_log_at_point_58________________________________ (plasma_coulomb_log_electron_deuteron_profile58)_ 1.83251137998567479e+01 +Electron-deuteron_Coulomb_log_at_point_59________________________________ (plasma_coulomb_log_electron_deuteron_profile59)_ 1.83246324950227333e+01 +Electron-deuteron_Coulomb_log_at_point_60________________________________ (plasma_coulomb_log_electron_deuteron_profile60)_ 1.83241427513914914e+01 +Electron-deuteron_Coulomb_log_at_point_61________________________________ (plasma_coulomb_log_electron_deuteron_profile61)_ 1.83236445580727718e+01 +Electron-deuteron_Coulomb_log_at_point_62________________________________ (plasma_coulomb_log_electron_deuteron_profile62)_ 1.83231379039811770e+01 +Electron-deuteron_Coulomb_log_at_point_63________________________________ (plasma_coulomb_log_electron_deuteron_profile63)_ 1.83226227778355657e+01 +Electron-deuteron_Coulomb_log_at_point_64________________________________ (plasma_coulomb_log_electron_deuteron_profile64)_ 1.83220991681583847e+01 +Electron-deuteron_Coulomb_log_at_point_65________________________________ (plasma_coulomb_log_electron_deuteron_profile65)_ 1.83215670632750651e+01 +Electron-deuteron_Coulomb_log_at_point_66________________________________ (plasma_coulomb_log_electron_deuteron_profile66)_ 1.83210264513133438e+01 +Electron-deuteron_Coulomb_log_at_point_67________________________________ (plasma_coulomb_log_electron_deuteron_profile67)_ 1.83204773202026310e+01 +Electron-deuteron_Coulomb_log_at_point_68________________________________ (plasma_coulomb_log_electron_deuteron_profile68)_ 1.83199196576732994e+01 +Electron-deuteron_Coulomb_log_at_point_69________________________________ (plasma_coulomb_log_electron_deuteron_profile69)_ 1.83193534512560312e+01 +Electron-deuteron_Coulomb_log_at_point_70________________________________ (plasma_coulomb_log_electron_deuteron_profile70)_ 1.83187786882810997e+01 +Electron-deuteron_Coulomb_log_at_point_71________________________________ (plasma_coulomb_log_electron_deuteron_profile71)_ 1.83181953558776662e+01 +Electron-deuteron_Coulomb_log_at_point_72________________________________ (plasma_coulomb_log_electron_deuteron_profile72)_ 1.83176034409730661e+01 +Electron-deuteron_Coulomb_log_at_point_73________________________________ (plasma_coulomb_log_electron_deuteron_profile73)_ 1.83170029302920661e+01 +Electron-deuteron_Coulomb_log_at_point_74________________________________ (plasma_coulomb_log_electron_deuteron_profile74)_ 1.83163938103561357e+01 +Electron-deuteron_Coulomb_log_at_point_75________________________________ (plasma_coulomb_log_electron_deuteron_profile75)_ 1.83157760674826662e+01 +Electron-deuteron_Coulomb_log_at_point_76________________________________ (plasma_coulomb_log_electron_deuteron_profile76)_ 1.83151496877842312e+01 +Electron-deuteron_Coulomb_log_at_point_77________________________________ (plasma_coulomb_log_electron_deuteron_profile77)_ 1.83145146571677948e+01 +Electron-deuteron_Coulomb_log_at_point_78________________________________ (plasma_coulomb_log_electron_deuteron_profile78)_ 1.83138709613339117e+01 +Electron-deuteron_Coulomb_log_at_point_79________________________________ (plasma_coulomb_log_electron_deuteron_profile79)_ 1.83132185857759318e+01 +Electron-deuteron_Coulomb_log_at_point_80________________________________ (plasma_coulomb_log_electron_deuteron_profile80)_ 1.83125575157792007e+01 +Electron-deuteron_Coulomb_log_at_point_81________________________________ (plasma_coulomb_log_electron_deuteron_profile81)_ 1.83118877364202000e+01 +Electron-deuteron_Coulomb_log_at_point_82________________________________ (plasma_coulomb_log_electron_deuteron_profile82)_ 1.83112092325657301e+01 +Electron-deuteron_Coulomb_log_at_point_83________________________________ (plasma_coulomb_log_electron_deuteron_profile83)_ 1.83105219888720576e+01 +Electron-deuteron_Coulomb_log_at_point_84________________________________ (plasma_coulomb_log_electron_deuteron_profile84)_ 1.83098259897840450e+01 +Electron-deuteron_Coulomb_log_at_point_85________________________________ (plasma_coulomb_log_electron_deuteron_profile85)_ 1.83091212195342621e+01 +Electron-deuteron_Coulomb_log_at_point_86________________________________ (plasma_coulomb_log_electron_deuteron_profile86)_ 1.83084076621421268e+01 +Electron-deuteron_Coulomb_log_at_point_87________________________________ (plasma_coulomb_log_electron_deuteron_profile87)_ 1.83076853014129775e+01 +Electron-deuteron_Coulomb_log_at_point_88________________________________ (plasma_coulomb_log_electron_deuteron_profile88)_ 1.83069541209371742e+01 +Electron-deuteron_Coulomb_log_at_point_89________________________________ (plasma_coulomb_log_electron_deuteron_profile89)_ 1.83062141040891611e+01 +Electron-deuteron_Coulomb_log_at_point_90________________________________ (plasma_coulomb_log_electron_deuteron_profile90)_ 1.83054652340265207e+01 +Electron-deuteron_Coulomb_log_at_point_91________________________________ (plasma_coulomb_log_electron_deuteron_profile91)_ 1.83047074936890581e+01 +Electron-deuteron_Coulomb_log_at_point_92________________________________ (plasma_coulomb_log_electron_deuteron_profile92)_ 1.83039408657977845e+01 +Electron-deuteron_Coulomb_log_at_point_93________________________________ (plasma_coulomb_log_electron_deuteron_profile93)_ 1.83031653328539825e+01 +Electron-deuteron_Coulomb_log_at_point_94________________________________ (plasma_coulomb_log_electron_deuteron_profile94)_ 1.83023808771381944e+01 +Electron-deuteron_Coulomb_log_at_point_95________________________________ (plasma_coulomb_log_electron_deuteron_profile95)_ 1.83015874807092089e+01 +Electron-deuteron_Coulomb_log_at_point_96________________________________ (plasma_coulomb_log_electron_deuteron_profile96)_ 1.83007851254030740e+01 +Electron-deuteron_Coulomb_log_at_point_97________________________________ (plasma_coulomb_log_electron_deuteron_profile97)_ 1.82999737928320307e+01 +Electron-deuteron_Coulomb_log_at_point_98________________________________ (plasma_coulomb_log_electron_deuteron_profile98)_ 1.82991534643835081e+01 +Electron-deuteron_Coulomb_log_at_point_99________________________________ (plasma_coulomb_log_electron_deuteron_profile99)_ 1.82983241212190357e+01 +Electron-deuteron_Coulomb_log_at_point_100_______________________________ (plasma_coulomb_log_electron_deuteron_profile100)_ 1.82974857442731818e+01 +Electron-deuteron_Coulomb_log_at_point_101_______________________________ (plasma_coulomb_log_electron_deuteron_profile101)_ 1.82966383142524798e+01 +Electron-deuteron_Coulomb_log_at_point_102_______________________________ (plasma_coulomb_log_electron_deuteron_profile102)_ 1.82957818116343169e+01 +Electron-deuteron_Coulomb_log_at_point_103_______________________________ (plasma_coulomb_log_electron_deuteron_profile103)_ 1.82949162166658361e+01 +Electron-deuteron_Coulomb_log_at_point_104_______________________________ (plasma_coulomb_log_electron_deuteron_profile104)_ 1.82940415093628026e+01 +Electron-deuteron_Coulomb_log_at_point_105_______________________________ (plasma_coulomb_log_electron_deuteron_profile105)_ 1.82931576695084708e+01 +Electron-deuteron_Coulomb_log_at_point_106_______________________________ (plasma_coulomb_log_electron_deuteron_profile106)_ 1.82922646766524259e+01 +Electron-deuteron_Coulomb_log_at_point_107_______________________________ (plasma_coulomb_log_electron_deuteron_profile107)_ 1.82913625101094333e+01 +Electron-deuteron_Coulomb_log_at_point_108_______________________________ (plasma_coulomb_log_electron_deuteron_profile108)_ 1.82904511489582333e+01 +Electron-deuteron_Coulomb_log_at_point_109_______________________________ (plasma_coulomb_log_electron_deuteron_profile109)_ 1.82895305720403840e+01 +Electron-deuteron_Coulomb_log_at_point_110_______________________________ (plasma_coulomb_log_electron_deuteron_profile110)_ 1.82886007579590029e+01 +Electron-deuteron_Coulomb_log_at_point_111_______________________________ (plasma_coulomb_log_electron_deuteron_profile111)_ 1.82876616850776053e+01 +Electron-deuteron_Coulomb_log_at_point_112_______________________________ (plasma_coulomb_log_electron_deuteron_profile112)_ 1.82867133315188219e+01 +Electron-deuteron_Coulomb_log_at_point_113_______________________________ (plasma_coulomb_log_electron_deuteron_profile113)_ 1.82857556751631591e+01 +Electron-deuteron_Coulomb_log_at_point_114_______________________________ (plasma_coulomb_log_electron_deuteron_profile114)_ 1.82847886936477479e+01 +Electron-deuteron_Coulomb_log_at_point_115_______________________________ (plasma_coulomb_log_electron_deuteron_profile115)_ 1.82838123643650512e+01 +Electron-deuteron_Coulomb_log_at_point_116_______________________________ (plasma_coulomb_log_electron_deuteron_profile116)_ 1.82828266644615773e+01 +Electron-deuteron_Coulomb_log_at_point_117_______________________________ (plasma_coulomb_log_electron_deuteron_profile117)_ 1.82818315708365695e+01 +Electron-deuteron_Coulomb_log_at_point_118_______________________________ (plasma_coulomb_log_electron_deuteron_profile118)_ 1.82808270601406662e+01 +Electron-deuteron_Coulomb_log_at_point_119_______________________________ (plasma_coulomb_log_electron_deuteron_profile119)_ 1.82798131087746079e+01 +Electron-deuteron_Coulomb_log_at_point_120_______________________________ (plasma_coulomb_log_electron_deuteron_profile120)_ 1.82787896928878268e+01 +Electron-deuteron_Coulomb_log_at_point_121_______________________________ (plasma_coulomb_log_electron_deuteron_profile121)_ 1.82777567883771290e+01 +Electron-deuteron_Coulomb_log_at_point_122_______________________________ (plasma_coulomb_log_electron_deuteron_profile122)_ 1.82767143708852835e+01 +Electron-deuteron_Coulomb_log_at_point_123_______________________________ (plasma_coulomb_log_electron_deuteron_profile123)_ 1.82756624157996264e+01 +Electron-deuteron_Coulomb_log_at_point_124_______________________________ (plasma_coulomb_log_electron_deuteron_profile124)_ 1.82746008982506645e+01 +Electron-deuteron_Coulomb_log_at_point_125_______________________________ (plasma_coulomb_log_electron_deuteron_profile125)_ 1.82735297931106366e+01 +Electron-deuteron_Coulomb_log_at_point_126_______________________________ (plasma_coulomb_log_electron_deuteron_profile126)_ 1.82724490749920676e+01 +Electron-deuteron_Coulomb_log_at_point_127_______________________________ (plasma_coulomb_log_electron_deuteron_profile127)_ 1.82713587182463080e+01 +Electron-deuteron_Coulomb_log_at_point_128_______________________________ (plasma_coulomb_log_electron_deuteron_profile128)_ 1.82702586969620882e+01 +Electron-deuteron_Coulomb_log_at_point_129_______________________________ (plasma_coulomb_log_electron_deuteron_profile129)_ 1.82691489849639943e+01 +Electron-deuteron_Coulomb_log_at_point_130_______________________________ (plasma_coulomb_log_electron_deuteron_profile130)_ 1.82680295558109691e+01 +Electron-deuteron_Coulomb_log_at_point_131_______________________________ (plasma_coulomb_log_electron_deuteron_profile131)_ 1.82669003827948195e+01 +Electron-deuteron_Coulomb_log_at_point_132_______________________________ (plasma_coulomb_log_electron_deuteron_profile132)_ 1.82657614389386502e+01 +Electron-deuteron_Coulomb_log_at_point_133_______________________________ (plasma_coulomb_log_electron_deuteron_profile133)_ 1.82646126969953322e+01 +Electron-deuteron_Coulomb_log_at_point_134_______________________________ (plasma_coulomb_log_electron_deuteron_profile134)_ 1.82634541294459183e+01 +Electron-deuteron_Coulomb_log_at_point_135_______________________________ (plasma_coulomb_log_electron_deuteron_profile135)_ 1.82622857084980730e+01 +Electron-deuteron_Coulomb_log_at_point_136_______________________________ (plasma_coulomb_log_electron_deuteron_profile136)_ 1.82611074060844842e+01 +Electron-deuteron_Coulomb_log_at_point_137_______________________________ (plasma_coulomb_log_electron_deuteron_profile137)_ 1.82599191938612115e+01 +Electron-deuteron_Coulomb_log_at_point_138_______________________________ (plasma_coulomb_log_electron_deuteron_profile138)_ 1.82587210432061013e+01 +Electron-deuteron_Coulomb_log_at_point_139_______________________________ (plasma_coulomb_log_electron_deuteron_profile139)_ 1.82575129252171138e+01 +Electron-deuteron_Coulomb_log_at_point_140_______________________________ (plasma_coulomb_log_electron_deuteron_profile140)_ 1.82562948107106493e+01 +Electron-deuteron_Coulomb_log_at_point_141_______________________________ (plasma_coulomb_log_electron_deuteron_profile141)_ 1.82550666702199038e+01 +Electron-deuteron_Coulomb_log_at_point_142_______________________________ (plasma_coulomb_log_electron_deuteron_profile142)_ 1.82538284739931491e+01 +Electron-deuteron_Coulomb_log_at_point_143_______________________________ (plasma_coulomb_log_electron_deuteron_profile143)_ 1.82525801919920241e+01 +Electron-deuteron_Coulomb_log_at_point_144_______________________________ (plasma_coulomb_log_electron_deuteron_profile144)_ 1.82513217938898222e+01 +Electron-deuteron_Coulomb_log_at_point_145_______________________________ (plasma_coulomb_log_electron_deuteron_profile145)_ 1.82500532490697189e+01 +Electron-deuteron_Coulomb_log_at_point_146_______________________________ (plasma_coulomb_log_electron_deuteron_profile146)_ 1.82487745266230519e+01 +Electron-deuteron_Coulomb_log_at_point_147_______________________________ (plasma_coulomb_log_electron_deuteron_profile147)_ 1.82474855953475092e+01 +Electron-deuteron_Coulomb_log_at_point_148_______________________________ (plasma_coulomb_log_electron_deuteron_profile148)_ 1.82461864237453462e+01 +Electron-deuteron_Coulomb_log_at_point_149_______________________________ (plasma_coulomb_log_electron_deuteron_profile149)_ 1.82448769800215835e+01 +Electron-deuteron_Coulomb_log_at_point_150_______________________________ (plasma_coulomb_log_electron_deuteron_profile150)_ 1.82435572320821855e+01 +Electron-deuteron_Coulomb_log_at_point_151_______________________________ (plasma_coulomb_log_electron_deuteron_profile151)_ 1.82422271475321942e+01 +Electron-deuteron_Coulomb_log_at_point_152_______________________________ (plasma_coulomb_log_electron_deuteron_profile152)_ 1.82408866936739074e+01 +Electron-deuteron_Coulomb_log_at_point_153_______________________________ (plasma_coulomb_log_electron_deuteron_profile153)_ 1.82395358375049526e+01 +Electron-deuteron_Coulomb_log_at_point_154_______________________________ (plasma_coulomb_log_electron_deuteron_profile154)_ 1.82381745457164541e+01 +Electron-deuteron_Coulomb_log_at_point_155_______________________________ (plasma_coulomb_log_electron_deuteron_profile155)_ 1.82368027846910756e+01 +Electron-deuteron_Coulomb_log_at_point_156_______________________________ (plasma_coulomb_log_electron_deuteron_profile156)_ 1.82354205205011226e+01 +Electron-deuteron_Coulomb_log_at_point_157_______________________________ (plasma_coulomb_log_electron_deuteron_profile157)_ 1.82340277189065851e+01 +Electron-deuteron_Coulomb_log_at_point_158_______________________________ (plasma_coulomb_log_electron_deuteron_profile158)_ 1.82326243453532015e+01 +Electron-deuteron_Coulomb_log_at_point_159_______________________________ (plasma_coulomb_log_electron_deuteron_profile159)_ 1.82312103649704476e+01 +Electron-deuteron_Coulomb_log_at_point_160_______________________________ (plasma_coulomb_log_electron_deuteron_profile160)_ 1.82297857425695824e+01 +Electron-deuteron_Coulomb_log_at_point_161_______________________________ (plasma_coulomb_log_electron_deuteron_profile161)_ 1.82283504426416236e+01 +Electron-deuteron_Coulomb_log_at_point_162_______________________________ (plasma_coulomb_log_electron_deuteron_profile162)_ 1.82269044293553115e+01 +Electron-deuteron_Coulomb_log_at_point_163_______________________________ (plasma_coulomb_log_electron_deuteron_profile163)_ 1.82254476665550982e+01 +Electron-deuteron_Coulomb_log_at_point_164_______________________________ (plasma_coulomb_log_electron_deuteron_profile164)_ 1.82239801177590515e+01 +Electron-deuteron_Coulomb_log_at_point_165_______________________________ (plasma_coulomb_log_electron_deuteron_profile165)_ 1.82225017461568193e+01 +Electron-deuteron_Coulomb_log_at_point_166_______________________________ (plasma_coulomb_log_electron_deuteron_profile166)_ 1.82210125146075050e+01 +Electron-deuteron_Coulomb_log_at_point_167_______________________________ (plasma_coulomb_log_electron_deuteron_profile167)_ 1.82195123856375965e+01 +Electron-deuteron_Coulomb_log_at_point_168_______________________________ (plasma_coulomb_log_electron_deuteron_profile168)_ 1.82180013214388055e+01 +Electron-deuteron_Coulomb_log_at_point_169_______________________________ (plasma_coulomb_log_electron_deuteron_profile169)_ 1.82164792838659508e+01 +Electron-deuteron_Coulomb_log_at_point_170_______________________________ (plasma_coulomb_log_electron_deuteron_profile170)_ 1.82149462344348017e+01 +Electron-deuteron_Coulomb_log_at_point_171_______________________________ (plasma_coulomb_log_electron_deuteron_profile171)_ 1.82134021343199031e+01 +Electron-deuteron_Coulomb_log_at_point_172_______________________________ (plasma_coulomb_log_electron_deuteron_profile172)_ 1.82118469443523878e+01 +Electron-deuteron_Coulomb_log_at_point_173_______________________________ (plasma_coulomb_log_electron_deuteron_profile173)_ 1.82102806250177665e+01 +Electron-deuteron_Coulomb_log_at_point_174_______________________________ (plasma_coulomb_log_electron_deuteron_profile174)_ 1.82087031364537175e+01 +Electron-deuteron_Coulomb_log_at_point_175_______________________________ (plasma_coulomb_log_electron_deuteron_profile175)_ 1.82071144384478565e+01 +Electron-deuteron_Coulomb_log_at_point_176_______________________________ (plasma_coulomb_log_electron_deuteron_profile176)_ 1.82055144904354620e+01 +Electron-deuteron_Coulomb_log_at_point_177_______________________________ (plasma_coulomb_log_electron_deuteron_profile177)_ 1.82039032514972483e+01 +Electron-deuteron_Coulomb_log_at_point_178_______________________________ (plasma_coulomb_log_electron_deuteron_profile178)_ 1.82022806803570276e+01 +Electron-deuteron_Coulomb_log_at_point_179_______________________________ (plasma_coulomb_log_electron_deuteron_profile179)_ 1.82006467353794825e+01 +Electron-deuteron_Coulomb_log_at_point_180_______________________________ (plasma_coulomb_log_electron_deuteron_profile180)_ 1.81990013745677928e+01 +Electron-deuteron_Coulomb_log_at_point_181_______________________________ (plasma_coulomb_log_electron_deuteron_profile181)_ 1.81973445555613402e+01 +Electron-deuteron_Coulomb_log_at_point_182_______________________________ (plasma_coulomb_log_electron_deuteron_profile182)_ 1.81956762356333712e+01 +Electron-deuteron_Coulomb_log_at_point_183_______________________________ (plasma_coulomb_log_electron_deuteron_profile183)_ 1.81939963716886162e+01 +Electron-deuteron_Coulomb_log_at_point_184_______________________________ (plasma_coulomb_log_electron_deuteron_profile184)_ 1.81923049202609448e+01 +Electron-deuteron_Coulomb_log_at_point_185_______________________________ (plasma_coulomb_log_electron_deuteron_profile185)_ 1.81906018375109646e+01 +Electron-deuteron_Coulomb_log_at_point_186_______________________________ (plasma_coulomb_log_electron_deuteron_profile186)_ 1.81888870792236368e+01 +Electron-deuteron_Coulomb_log_at_point_187_______________________________ (plasma_coulomb_log_electron_deuteron_profile187)_ 1.81871606008058428e+01 +Electron-deuteron_Coulomb_log_at_point_188_______________________________ (plasma_coulomb_log_electron_deuteron_profile188)_ 1.81854223572839935e+01 +Electron-deuteron_Coulomb_log_at_point_189_______________________________ (plasma_coulomb_log_electron_deuteron_profile189)_ 1.81836723033015524e+01 +Electron-deuteron_Coulomb_log_at_point_190_______________________________ (plasma_coulomb_log_electron_deuteron_profile190)_ 1.81819103931166204e+01 +Electron-deuteron_Coulomb_log_at_point_191_______________________________ (plasma_coulomb_log_electron_deuteron_profile191)_ 1.81801365805994450e+01 +Electron-deuteron_Coulomb_log_at_point_192_______________________________ (plasma_coulomb_log_electron_deuteron_profile192)_ 1.81783508192299585e+01 +Electron-deuteron_Coulomb_log_at_point_193_______________________________ (plasma_coulomb_log_electron_deuteron_profile193)_ 1.81765530620952909e+01 +Electron-deuteron_Coulomb_log_at_point_194_______________________________ (plasma_coulomb_log_electron_deuteron_profile194)_ 1.81747432618872615e+01 +Electron-deuteron_Coulomb_log_at_point_195_______________________________ (plasma_coulomb_log_electron_deuteron_profile195)_ 1.81729213708998927e+01 +Electron-deuteron_Coulomb_log_at_point_196_______________________________ (plasma_coulomb_log_electron_deuteron_profile196)_ 1.81710873410268547e+01 +Electron-deuteron_Coulomb_log_at_point_197_______________________________ (plasma_coulomb_log_electron_deuteron_profile197)_ 1.81692411237589653e+01 +Electron-deuteron_Coulomb_log_at_point_198_______________________________ (plasma_coulomb_log_electron_deuteron_profile198)_ 1.81673826701816310e+01 +Electron-deuteron_Coulomb_log_at_point_199_______________________________ (plasma_coulomb_log_electron_deuteron_profile199)_ 1.81655119309723112e+01 +Electron-deuteron_Coulomb_log_at_point_200_______________________________ (plasma_coulomb_log_electron_deuteron_profile200)_ 1.81636288563979456e+01 +Electron-deuteron_Coulomb_log_at_point_201_______________________________ (plasma_coulomb_log_electron_deuteron_profile201)_ 1.81617333963123961e+01 +Electron-deuteron_Coulomb_log_at_point_202_______________________________ (plasma_coulomb_log_electron_deuteron_profile202)_ 1.81598255001538718e+01 +Electron-deuteron_Coulomb_log_at_point_203_______________________________ (plasma_coulomb_log_electron_deuteron_profile203)_ 1.81579051169423487e+01 +Electron-deuteron_Coulomb_log_at_point_204_______________________________ (plasma_coulomb_log_electron_deuteron_profile204)_ 1.81559721952769699e+01 +Electron-deuteron_Coulomb_log_at_point_205_______________________________ (plasma_coulomb_log_electron_deuteron_profile205)_ 1.81540266833334663e+01 +Electron-deuteron_Coulomb_log_at_point_206_______________________________ (plasma_coulomb_log_electron_deuteron_profile206)_ 1.81520685288615482e+01 +Electron-deuteron_Coulomb_log_at_point_207_______________________________ (plasma_coulomb_log_electron_deuteron_profile207)_ 1.81500976791822879e+01 +Electron-deuteron_Coulomb_log_at_point_208_______________________________ (plasma_coulomb_log_electron_deuteron_profile208)_ 1.81481140811855575e+01 +Electron-deuteron_Coulomb_log_at_point_209_______________________________ (plasma_coulomb_log_electron_deuteron_profile209)_ 1.81461176813273433e+01 +Electron-deuteron_Coulomb_log_at_point_210_______________________________ (plasma_coulomb_log_electron_deuteron_profile210)_ 1.81441084256272021e+01 +Electron-deuteron_Coulomb_log_at_point_211_______________________________ (plasma_coulomb_log_electron_deuteron_profile211)_ 1.81420862596655965e+01 +Electron-deuteron_Coulomb_log_at_point_212_______________________________ (plasma_coulomb_log_electron_deuteron_profile212)_ 1.81400511285813089e+01 +Electron-deuteron_Coulomb_log_at_point_213_______________________________ (plasma_coulomb_log_electron_deuteron_profile213)_ 1.81380029770688047e+01 +Electron-deuteron_Coulomb_log_at_point_214_______________________________ (plasma_coulomb_log_electron_deuteron_profile214)_ 1.81359417493756148e+01 +Electron-deuteron_Coulomb_log_at_point_215_______________________________ (plasma_coulomb_log_electron_deuteron_profile215)_ 1.81338673892997448e+01 +Electron-deuteron_Coulomb_log_at_point_216_______________________________ (plasma_coulomb_log_electron_deuteron_profile216)_ 1.81317798401870434e+01 +Electron-deuteron_Coulomb_log_at_point_217_______________________________ (plasma_coulomb_log_electron_deuteron_profile217)_ 1.81296790449285865e+01 +Electron-deuteron_Coulomb_log_at_point_218_______________________________ (plasma_coulomb_log_electron_deuteron_profile218)_ 1.81275649459580954e+01 +Electron-deuteron_Coulomb_log_at_point_219_______________________________ (plasma_coulomb_log_electron_deuteron_profile219)_ 1.81254374852493392e+01 +Electron-deuteron_Coulomb_log_at_point_220_______________________________ (plasma_coulomb_log_electron_deuteron_profile220)_ 1.81232966043135271e+01 +Electron-deuteron_Coulomb_log_at_point_221_______________________________ (plasma_coulomb_log_electron_deuteron_profile221)_ 1.81211422441967436e+01 +Electron-deuteron_Coulomb_log_at_point_222_______________________________ (plasma_coulomb_log_electron_deuteron_profile222)_ 1.81189743454773762e+01 +Electron-deuteron_Coulomb_log_at_point_223_______________________________ (plasma_coulomb_log_electron_deuteron_profile223)_ 1.81167928482635432e+01 +Electron-deuteron_Coulomb_log_at_point_224_______________________________ (plasma_coulomb_log_electron_deuteron_profile224)_ 1.81145976921905678e+01 +Electron-deuteron_Coulomb_log_at_point_225_______________________________ (plasma_coulomb_log_electron_deuteron_profile225)_ 1.81123888164184201e+01 +Electron-deuteron_Coulomb_log_at_point_226_______________________________ (plasma_coulomb_log_electron_deuteron_profile226)_ 1.81101661596292303e+01 +Electron-deuteron_Coulomb_log_at_point_227_______________________________ (plasma_coulomb_log_electron_deuteron_profile227)_ 1.81079296600247481e+01 +Electron-deuteron_Coulomb_log_at_point_228_______________________________ (plasma_coulomb_log_electron_deuteron_profile228)_ 1.81056792553239028e+01 +Electron-deuteron_Coulomb_log_at_point_229_______________________________ (plasma_coulomb_log_electron_deuteron_profile229)_ 1.81034148827603154e+01 +Electron-deuteron_Coulomb_log_at_point_230_______________________________ (plasma_coulomb_log_electron_deuteron_profile230)_ 1.81011364790798659e+01 +Electron-deuteron_Coulomb_log_at_point_231_______________________________ (plasma_coulomb_log_electron_deuteron_profile231)_ 1.80988439805382804e+01 +Electron-deuteron_Coulomb_log_at_point_232_______________________________ (plasma_coulomb_log_electron_deuteron_profile232)_ 1.80965373228987367e+01 +Electron-deuteron_Coulomb_log_at_point_233_______________________________ (plasma_coulomb_log_electron_deuteron_profile233)_ 1.80942164414295057e+01 +Electron-deuteron_Coulomb_log_at_point_234_______________________________ (plasma_coulomb_log_electron_deuteron_profile234)_ 1.80918812709016414e+01 +Electron-deuteron_Coulomb_log_at_point_235_______________________________ (plasma_coulomb_log_electron_deuteron_profile235)_ 1.80895317455866333e+01 +Electron-deuteron_Coulomb_log_at_point_236_______________________________ (plasma_coulomb_log_electron_deuteron_profile236)_ 1.80871677992541926e+01 +Electron-deuteron_Coulomb_log_at_point_237_______________________________ (plasma_coulomb_log_electron_deuteron_profile237)_ 1.80847893651699856e+01 +Electron-deuteron_Coulomb_log_at_point_238_______________________________ (plasma_coulomb_log_electron_deuteron_profile238)_ 1.80823963760934809e+01 +Electron-deuteron_Coulomb_log_at_point_239_______________________________ (plasma_coulomb_log_electron_deuteron_profile239)_ 1.80799887642757753e+01 +Electron-deuteron_Coulomb_log_at_point_240_______________________________ (plasma_coulomb_log_electron_deuteron_profile240)_ 1.80775664614575007e+01 +Electron-deuteron_Coulomb_log_at_point_241_______________________________ (plasma_coulomb_log_electron_deuteron_profile241)_ 1.80751293988667712e+01 +Electron-deuteron_Coulomb_log_at_point_242_______________________________ (plasma_coulomb_log_electron_deuteron_profile242)_ 1.80726775072171790e+01 +Electron-deuteron_Coulomb_log_at_point_243_______________________________ (plasma_coulomb_log_electron_deuteron_profile243)_ 1.80702107167058443e+01 +Electron-deuteron_Coulomb_log_at_point_244_______________________________ (plasma_coulomb_log_electron_deuteron_profile244)_ 1.80677289570114930e+01 +Electron-deuteron_Coulomb_log_at_point_245_______________________________ (plasma_coulomb_log_electron_deuteron_profile245)_ 1.80652321572926731e+01 +Electron-deuteron_Coulomb_log_at_point_246_______________________________ (plasma_coulomb_log_electron_deuteron_profile246)_ 1.80627202461859362e+01 +Electron-deuteron_Coulomb_log_at_point_247_______________________________ (plasma_coulomb_log_electron_deuteron_profile247)_ 1.80601931518041354e+01 +Electron-deuteron_Coulomb_log_at_point_248_______________________________ (plasma_coulomb_log_electron_deuteron_profile248)_ 1.80576508017348161e+01 +Electron-deuteron_Coulomb_log_at_point_249_______________________________ (plasma_coulomb_log_electron_deuteron_profile249)_ 1.80550931230385991e+01 +Electron-deuteron_Coulomb_log_at_point_250_______________________________ (plasma_coulomb_log_electron_deuteron_profile250)_ 1.80525200422477532e+01 +Electron-deuteron_Coulomb_log_at_point_251_______________________________ (plasma_coulomb_log_electron_deuteron_profile251)_ 1.80499314853647412e+01 +Electron-deuteron_Coulomb_log_at_point_252_______________________________ (plasma_coulomb_log_electron_deuteron_profile252)_ 1.80473273778609311e+01 +Electron-deuteron_Coulomb_log_at_point_253_______________________________ (plasma_coulomb_log_electron_deuteron_profile253)_ 1.80447076446753343e+01 +Electron-deuteron_Coulomb_log_at_point_254_______________________________ (plasma_coulomb_log_electron_deuteron_profile254)_ 1.80420722102134974e+01 +Electron-deuteron_Coulomb_log_at_point_255_______________________________ (plasma_coulomb_log_electron_deuteron_profile255)_ 1.80394209983464400e+01 +Electron-deuteron_Coulomb_log_at_point_256_______________________________ (plasma_coulomb_log_electron_deuteron_profile256)_ 1.80367539324097521e+01 +Electron-deuteron_Coulomb_log_at_point_257_______________________________ (plasma_coulomb_log_electron_deuteron_profile257)_ 1.80340709352027311e+01 +Electron-deuteron_Coulomb_log_at_point_258_______________________________ (plasma_coulomb_log_electron_deuteron_profile258)_ 1.80313719289877028e+01 +Electron-deuteron_Coulomb_log_at_point_259_______________________________ (plasma_coulomb_log_electron_deuteron_profile259)_ 1.80286568354894072e+01 +Electron-deuteron_Coulomb_log_at_point_260_______________________________ (plasma_coulomb_log_electron_deuteron_profile260)_ 1.80259255758945578e+01 +Electron-deuteron_Coulomb_log_at_point_261_______________________________ (plasma_coulomb_log_electron_deuteron_profile261)_ 1.80231780708514826e+01 +Electron-deuteron_Coulomb_log_at_point_262_______________________________ (plasma_coulomb_log_electron_deuteron_profile262)_ 1.80204142404699468e+01 +Electron-deuteron_Coulomb_log_at_point_263_______________________________ (plasma_coulomb_log_electron_deuteron_profile263)_ 1.80176340043210814e+01 +Electron-deuteron_Coulomb_log_at_point_264_______________________________ (plasma_coulomb_log_electron_deuteron_profile264)_ 1.80148372814375080e+01 +Electron-deuteron_Coulomb_log_at_point_265_______________________________ (plasma_coulomb_log_electron_deuteron_profile265)_ 1.80120239903135690e+01 +Electron-deuteron_Coulomb_log_at_point_266_______________________________ (plasma_coulomb_log_electron_deuteron_profile266)_ 1.80091940489057549e+01 +Electron-deuteron_Coulomb_log_at_point_267_______________________________ (plasma_coulomb_log_electron_deuteron_profile267)_ 1.80063473746333038e+01 +Electron-deuteron_Coulomb_log_at_point_268_______________________________ (plasma_coulomb_log_electron_deuteron_profile268)_ 1.80034838843789622e+01 +Electron-deuteron_Coulomb_log_at_point_269_______________________________ (plasma_coulomb_log_electron_deuteron_profile269)_ 1.80006034944899618e+01 +Electron-deuteron_Coulomb_log_at_point_270_______________________________ (plasma_coulomb_log_electron_deuteron_profile270)_ 1.79977061207791387e+01 +Electron-deuteron_Coulomb_log_at_point_271_______________________________ (plasma_coulomb_log_electron_deuteron_profile271)_ 1.79947916785263509e+01 +Electron-deuteron_Coulomb_log_at_point_272_______________________________ (plasma_coulomb_log_electron_deuteron_profile272)_ 1.79918600824799846e+01 +Electron-deuteron_Coulomb_log_at_point_273_______________________________ (plasma_coulomb_log_electron_deuteron_profile273)_ 1.79889112468588088e+01 +Electron-deuteron_Coulomb_log_at_point_274_______________________________ (plasma_coulomb_log_electron_deuteron_profile274)_ 1.79859450853539684e+01 +Electron-deuteron_Coulomb_log_at_point_275_______________________________ (plasma_coulomb_log_electron_deuteron_profile275)_ 1.79829615111312791e+01 +Electron-deuteron_Coulomb_log_at_point_276_______________________________ (plasma_coulomb_log_electron_deuteron_profile276)_ 1.79799604368337427e+01 +Electron-deuteron_Coulomb_log_at_point_277_______________________________ (plasma_coulomb_log_electron_deuteron_profile277)_ 1.79769417745843327e+01 +Electron-deuteron_Coulomb_log_at_point_278_______________________________ (plasma_coulomb_log_electron_deuteron_profile278)_ 1.79739054359890567e+01 +Electron-deuteron_Coulomb_log_at_point_279_______________________________ (plasma_coulomb_log_electron_deuteron_profile279)_ 1.79708513321403345e+01 +Electron-deuteron_Coulomb_log_at_point_280_______________________________ (plasma_coulomb_log_electron_deuteron_profile280)_ 1.79677793736206262e+01 +Electron-deuteron_Coulomb_log_at_point_281_______________________________ (plasma_coulomb_log_electron_deuteron_profile281)_ 1.79646894705064035e+01 +Electron-deuteron_Coulomb_log_at_point_282_______________________________ (plasma_coulomb_log_electron_deuteron_profile282)_ 1.79615815323724277e+01 +Electron-deuteron_Coulomb_log_at_point_283_______________________________ (plasma_coulomb_log_electron_deuteron_profile283)_ 1.79584554682964068e+01 +Electron-deuteron_Coulomb_log_at_point_284_______________________________ (plasma_coulomb_log_electron_deuteron_profile284)_ 1.79553111868639483e+01 +Electron-deuteron_Coulomb_log_at_point_285_______________________________ (plasma_coulomb_log_electron_deuteron_profile285)_ 1.79521485961739202e+01 +Electron-deuteron_Coulomb_log_at_point_286_______________________________ (plasma_coulomb_log_electron_deuteron_profile286)_ 1.79489676038441850e+01 +Electron-deuteron_Coulomb_log_at_point_287_______________________________ (plasma_coulomb_log_electron_deuteron_profile287)_ 1.79457681170177281e+01 +Electron-deuteron_Coulomb_log_at_point_288_______________________________ (plasma_coulomb_log_electron_deuteron_profile288)_ 1.79425500423692021e+01 +Electron-deuteron_Coulomb_log_at_point_289_______________________________ (plasma_coulomb_log_electron_deuteron_profile289)_ 1.79393132861119291e+01 +Electron-deuteron_Coulomb_log_at_point_290_______________________________ (plasma_coulomb_log_electron_deuteron_profile290)_ 1.79360577540052901e+01 +Electron-deuteron_Coulomb_log_at_point_291_______________________________ (plasma_coulomb_log_electron_deuteron_profile291)_ 1.79327833513626764e+01 +Electron-deuteron_Coulomb_log_at_point_292_______________________________ (plasma_coulomb_log_electron_deuteron_profile292)_ 1.79294899830598453e+01 +Electron-deuteron_Coulomb_log_at_point_293_______________________________ (plasma_coulomb_log_electron_deuteron_profile293)_ 1.79261775535438268e+01 +Electron-deuteron_Coulomb_log_at_point_294_______________________________ (plasma_coulomb_log_electron_deuteron_profile294)_ 1.79228459668423667e+01 +Electron-deuteron_Coulomb_log_at_point_295_______________________________ (plasma_coulomb_log_electron_deuteron_profile295)_ 1.79194951265738780e+01 +Electron-deuteron_Coulomb_log_at_point_296_______________________________ (plasma_coulomb_log_electron_deuteron_profile296)_ 1.79161249359580310e+01 +Electron-deuteron_Coulomb_log_at_point_297_______________________________ (plasma_coulomb_log_electron_deuteron_profile297)_ 1.79127352978268810e+01 +Electron-deuteron_Coulomb_log_at_point_298_______________________________ (plasma_coulomb_log_electron_deuteron_profile298)_ 1.79093261146366629e+01 +Electron-deuteron_Coulomb_log_at_point_299_______________________________ (plasma_coulomb_log_electron_deuteron_profile299)_ 1.79058972884801761e+01 +Electron-deuteron_Coulomb_log_at_point_300_______________________________ (plasma_coulomb_log_electron_deuteron_profile300)_ 1.79024487210999332e+01 +Electron-deuteron_Coulomb_log_at_point_301_______________________________ (plasma_coulomb_log_electron_deuteron_profile301)_ 1.78989803139019124e+01 +Electron-deuteron_Coulomb_log_at_point_302_______________________________ (plasma_coulomb_log_electron_deuteron_profile302)_ 1.78954919679701092e+01 +Electron-deuteron_Coulomb_log_at_point_303_______________________________ (plasma_coulomb_log_electron_deuteron_profile303)_ 1.78919835840818031e+01 +Electron-deuteron_Coulomb_log_at_point_304_______________________________ (plasma_coulomb_log_electron_deuteron_profile304)_ 1.78884550627236685e+01 +Electron-deuteron_Coulomb_log_at_point_305_______________________________ (plasma_coulomb_log_electron_deuteron_profile305)_ 1.78849063041086254e+01 +Electron-deuteron_Coulomb_log_at_point_306_______________________________ (plasma_coulomb_log_electron_deuteron_profile306)_ 1.78813372081936208e+01 +Electron-deuteron_Coulomb_log_at_point_307_______________________________ (plasma_coulomb_log_electron_deuteron_profile307)_ 1.78777476746982877e+01 +Electron-deuteron_Coulomb_log_at_point_308_______________________________ (plasma_coulomb_log_electron_deuteron_profile308)_ 1.78741376031244847e+01 +Electron-deuteron_Coulomb_log_at_point_309_______________________________ (plasma_coulomb_log_electron_deuteron_profile309)_ 1.78705068927768487e+01 +Electron-deuteron_Coulomb_log_at_point_310_______________________________ (plasma_coulomb_log_electron_deuteron_profile310)_ 1.78668554427843134e+01 +Electron-deuteron_Coulomb_log_at_point_311_______________________________ (plasma_coulomb_log_electron_deuteron_profile311)_ 1.78631831521227227e+01 +Electron-deuteron_Coulomb_log_at_point_312_______________________________ (plasma_coulomb_log_electron_deuteron_profile312)_ 1.78594899196384667e+01 +Electron-deuteron_Coulomb_log_at_point_313_______________________________ (plasma_coulomb_log_electron_deuteron_profile313)_ 1.78557756440732902e+01 +Electron-deuteron_Coulomb_log_at_point_314_______________________________ (plasma_coulomb_log_electron_deuteron_profile314)_ 1.78520402240902740e+01 +Electron-deuteron_Coulomb_log_at_point_315_______________________________ (plasma_coulomb_log_electron_deuteron_profile315)_ 1.78482835583010093e+01 +Electron-deuteron_Coulomb_log_at_point_316_______________________________ (plasma_coulomb_log_electron_deuteron_profile316)_ 1.78445055452940657e+01 +Electron-deuteron_Coulomb_log_at_point_317_______________________________ (plasma_coulomb_log_electron_deuteron_profile317)_ 1.78407060836647986e+01 +Electron-deuteron_Coulomb_log_at_point_318_______________________________ (plasma_coulomb_log_electron_deuteron_profile318)_ 1.78368850720465204e+01 +Electron-deuteron_Coulomb_log_at_point_319_______________________________ (plasma_coulomb_log_electron_deuteron_profile319)_ 1.78330424091430650e+01 +Electron-deuteron_Coulomb_log_at_point_320_______________________________ (plasma_coulomb_log_electron_deuteron_profile320)_ 1.78291779937629400e+01 +Electron-deuteron_Coulomb_log_at_point_321_______________________________ (plasma_coulomb_log_electron_deuteron_profile321)_ 1.78252917248549103e+01 +Electron-deuteron_Coulomb_log_at_point_322_______________________________ (plasma_coulomb_log_electron_deuteron_profile322)_ 1.78213835015453057e+01 +Electron-deuteron_Coulomb_log_at_point_323_______________________________ (plasma_coulomb_log_electron_deuteron_profile323)_ 1.78174532231769440e+01 +Electron-deuteron_Coulomb_log_at_point_324_______________________________ (plasma_coulomb_log_electron_deuteron_profile324)_ 1.78135007893498134e+01 +Electron-deuteron_Coulomb_log_at_point_325_______________________________ (plasma_coulomb_log_electron_deuteron_profile325)_ 1.78095260999636125e+01 +Electron-deuteron_Coulomb_log_at_point_326_______________________________ (plasma_coulomb_log_electron_deuteron_profile326)_ 1.78055290552621166e+01 +Electron-deuteron_Coulomb_log_at_point_327_______________________________ (plasma_coulomb_log_electron_deuteron_profile327)_ 1.78015095558795799e+01 +Electron-deuteron_Coulomb_log_at_point_328_______________________________ (plasma_coulomb_log_electron_deuteron_profile328)_ 1.77974675028891482e+01 +Electron-deuteron_Coulomb_log_at_point_329_______________________________ (plasma_coulomb_log_electron_deuteron_profile329)_ 1.77934027978534495e+01 +Electron-deuteron_Coulomb_log_at_point_330_______________________________ (plasma_coulomb_log_electron_deuteron_profile330)_ 1.77893153428773338e+01 +Electron-deuteron_Coulomb_log_at_point_331_______________________________ (plasma_coulomb_log_electron_deuteron_profile331)_ 1.77852050406630191e+01 +Electron-deuteron_Coulomb_log_at_point_332_______________________________ (plasma_coulomb_log_electron_deuteron_profile332)_ 1.77810717945675556e+01 +Electron-deuteron_Coulomb_log_at_point_333_______________________________ (plasma_coulomb_log_electron_deuteron_profile333)_ 1.77769155086628601e+01 +Electron-deuteron_Coulomb_log_at_point_334_______________________________ (plasma_coulomb_log_electron_deuteron_profile334)_ 1.77727360877983784e+01 +Electron-deuteron_Coulomb_log_at_point_335_______________________________ (plasma_coulomb_log_electron_deuteron_profile335)_ 1.77685334376663207e+01 +Electron-deuteron_Coulomb_log_at_point_336_______________________________ (plasma_coulomb_log_electron_deuteron_profile336)_ 1.77643074648699333e+01 +Electron-deuteron_Coulomb_log_at_point_337_______________________________ (plasma_coulomb_log_electron_deuteron_profile337)_ 1.77600580769945573e+01 +Electron-deuteron_Coulomb_log_at_point_338_______________________________ (plasma_coulomb_log_electron_deuteron_profile338)_ 1.77557851826818123e+01 +Electron-deuteron_Coulomb_log_at_point_339_______________________________ (plasma_coulomb_log_electron_deuteron_profile339)_ 1.77514886917069852e+01 +Electron-deuteron_Coulomb_log_at_point_340_______________________________ (plasma_coulomb_log_electron_deuteron_profile340)_ 1.77471685150596912e+01 +Electron-deuteron_Coulomb_log_at_point_341_______________________________ (plasma_coulomb_log_electron_deuteron_profile341)_ 1.77428245650280516e+01 +Electron-deuteron_Coulomb_log_at_point_342_______________________________ (plasma_coulomb_log_electron_deuteron_profile342)_ 1.77384567552864709e+01 +Electron-deuteron_Coulomb_log_at_point_343_______________________________ (plasma_coulomb_log_electron_deuteron_profile343)_ 1.77340650009871048e+01 +Electron-deuteron_Coulomb_log_at_point_344_______________________________ (plasma_coulomb_log_electron_deuteron_profile344)_ 1.77296492188553394e+01 +Electron-deuteron_Coulomb_log_at_point_345_______________________________ (plasma_coulomb_log_electron_deuteron_profile345)_ 1.77252093272892601e+01 +Electron-deuteron_Coulomb_log_at_point_346_______________________________ (plasma_coulomb_log_electron_deuteron_profile346)_ 1.77207452464633839e+01 +Electron-deuteron_Coulomb_log_at_point_347_______________________________ (plasma_coulomb_log_electron_deuteron_profile347)_ 1.77162568984368924e+01 +Electron-deuteron_Coulomb_log_at_point_348_______________________________ (plasma_coulomb_log_electron_deuteron_profile348)_ 1.77117442072663067e+01 +Electron-deuteron_Coulomb_log_at_point_349_______________________________ (plasma_coulomb_log_electron_deuteron_profile349)_ 1.77072070991231492e+01 +Electron-deuteron_Coulomb_log_at_point_350_______________________________ (plasma_coulomb_log_electron_deuteron_profile350)_ 1.77026455024164484e+01 +Electron-deuteron_Coulomb_log_at_point_351_______________________________ (plasma_coulomb_log_electron_deuteron_profile351)_ 1.76980593479205730e+01 +Electron-deuteron_Coulomb_log_at_point_352_______________________________ (plasma_coulomb_log_electron_deuteron_profile352)_ 1.76934485689084120e+01 +Electron-deuteron_Coulomb_log_at_point_353_______________________________ (plasma_coulomb_log_electron_deuteron_profile353)_ 1.76888131012902718e+01 +Electron-deuteron_Coulomb_log_at_point_354_______________________________ (plasma_coulomb_log_electron_deuteron_profile354)_ 1.76841528837586353e+01 +Electron-deuteron_Coulomb_log_at_point_355_______________________________ (plasma_coulomb_log_electron_deuteron_profile355)_ 1.76794678579391089e+01 +Electron-deuteron_Coulomb_log_at_point_356_______________________________ (plasma_coulomb_log_electron_deuteron_profile356)_ 1.76747579685477483e+01 +Electron-deuteron_Coulomb_log_at_point_357_______________________________ (plasma_coulomb_log_electron_deuteron_profile357)_ 1.76700231635550864e+01 +Electron-deuteron_Coulomb_log_at_point_358_______________________________ (plasma_coulomb_log_electron_deuteron_profile358)_ 1.76652633943571402e+01 +Electron-deuteron_Coulomb_log_at_point_359_______________________________ (plasma_coulomb_log_electron_deuteron_profile359)_ 1.76604786159536715e+01 +Electron-deuteron_Coulomb_log_at_point_360_______________________________ (plasma_coulomb_log_electron_deuteron_profile360)_ 1.76556687871340152e+01 +Electron-deuteron_Coulomb_log_at_point_361_______________________________ (plasma_coulomb_log_electron_deuteron_profile361)_ 1.76508338706708976e+01 +Electron-deuteron_Coulomb_log_at_point_362_______________________________ (plasma_coulomb_log_electron_deuteron_profile362)_ 1.76459738335223548e+01 +Electron-deuteron_Coulomb_log_at_point_363_______________________________ (plasma_coulomb_log_electron_deuteron_profile363)_ 1.76410886470424266e+01 +Electron-deuteron_Coulomb_log_at_point_364_______________________________ (plasma_coulomb_log_electron_deuteron_profile364)_ 1.76361782872006891e+01 +Electron-deuteron_Coulomb_log_at_point_365_______________________________ (plasma_coulomb_log_electron_deuteron_profile365)_ 1.76312427348112593e+01 +Electron-deuteron_Coulomb_log_at_point_366_______________________________ (plasma_coulomb_log_electron_deuteron_profile366)_ 1.76262819757714944e+01 +Electron-deuteron_Coulomb_log_at_point_367_______________________________ (plasma_coulomb_log_electron_deuteron_profile367)_ 1.76212960013109701e+01 +Electron-deuteron_Coulomb_log_at_point_368_______________________________ (plasma_coulomb_log_electron_deuteron_profile368)_ 1.76162848082510308e+01 +Electron-deuteron_Coulomb_log_at_point_369_______________________________ (plasma_coulomb_log_electron_deuteron_profile369)_ 1.76112483992755529e+01 +Electron-deuteron_Coulomb_log_at_point_370_______________________________ (plasma_coulomb_log_electron_deuteron_profile370)_ 1.76061867832132322e+01 +Electron-deuteron_Coulomb_log_at_point_371_______________________________ (plasma_coulomb_log_electron_deuteron_profile371)_ 1.76010999753320654e+01 +Electron-deuteron_Coulomb_log_at_point_372_______________________________ (plasma_coulomb_log_electron_deuteron_profile372)_ 1.75959879976464251e+01 +Electron-deuteron_Coulomb_log_at_point_373_______________________________ (plasma_coulomb_log_electron_deuteron_profile373)_ 1.75908508792374505e+01 +Electron-deuteron_Coulomb_log_at_point_374_______________________________ (plasma_coulomb_log_electron_deuteron_profile374)_ 1.75856886565871413e+01 +Electron-deuteron_Coulomb_log_at_point_375_______________________________ (plasma_coulomb_log_electron_deuteron_profile375)_ 1.75805013739269853e+01 +Electron-deuteron_Coulomb_log_at_point_376_______________________________ (plasma_coulomb_log_electron_deuteron_profile376)_ 1.75752890836016604e+01 +Electron-deuteron_Coulomb_log_at_point_377_______________________________ (plasma_coulomb_log_electron_deuteron_profile377)_ 1.75700518464484041e+01 +Electron-deuteron_Coulomb_log_at_point_378_______________________________ (plasma_coulomb_log_electron_deuteron_profile378)_ 1.75647897321929989e+01 +Electron-deuteron_Coulomb_log_at_point_379_______________________________ (plasma_coulomb_log_electron_deuteron_profile379)_ 1.75595028198629315e+01 +Electron-deuteron_Coulomb_log_at_point_380_______________________________ (plasma_coulomb_log_electron_deuteron_profile380)_ 1.75541911982185113e+01 +Electron-deuteron_Coulomb_log_at_point_381_______________________________ (plasma_coulomb_log_electron_deuteron_profile381)_ 1.75488549662029349e+01 +Electron-deuteron_Coulomb_log_at_point_382_______________________________ (plasma_coulomb_log_electron_deuteron_profile382)_ 1.75434942334120230e+01 +Electron-deuteron_Coulomb_log_at_point_383_______________________________ (plasma_coulomb_log_electron_deuteron_profile383)_ 1.75381091205845330e+01 +Electron-deuteron_Coulomb_log_at_point_384_______________________________ (plasma_coulomb_log_electron_deuteron_profile384)_ 1.75326997601141592e+01 +Electron-deuteron_Coulomb_log_at_point_385_______________________________ (plasma_coulomb_log_electron_deuteron_profile385)_ 1.75272662965839920e+01 +Electron-deuteron_Coulomb_log_at_point_386_______________________________ (plasma_coulomb_log_electron_deuteron_profile386)_ 1.75218088873247773e+01 +Electron-deuteron_Coulomb_log_at_point_387_______________________________ (plasma_coulomb_log_electron_deuteron_profile387)_ 1.75163277029978239e+01 +Electron-deuteron_Coulomb_log_at_point_388_______________________________ (plasma_coulomb_log_electron_deuteron_profile388)_ 1.75108229282039183e+01 +Electron-deuteron_Coulomb_log_at_point_389_______________________________ (plasma_coulomb_log_electron_deuteron_profile389)_ 1.75052947621193979e+01 +Electron-deuteron_Coulomb_log_at_point_390_______________________________ (plasma_coulomb_log_electron_deuteron_profile390)_ 1.74997434191607084e+01 +Electron-deuteron_Coulomb_log_at_point_391_______________________________ (plasma_coulomb_log_electron_deuteron_profile391)_ 1.74941691296788520e+01 +Electron-deuteron_Coulomb_log_at_point_392_______________________________ (plasma_coulomb_log_electron_deuteron_profile392)_ 1.74885721406851005e+01 +Electron-deuteron_Coulomb_log_at_point_393_______________________________ (plasma_coulomb_log_electron_deuteron_profile393)_ 1.74829527166095637e+01 +Electron-deuteron_Coulomb_log_at_point_394_______________________________ (plasma_coulomb_log_electron_deuteron_profile394)_ 1.74773111400942547e+01 +Electron-deuteron_Coulomb_log_at_point_395_______________________________ (plasma_coulomb_log_electron_deuteron_profile395)_ 1.74716477128222536e+01 +Electron-deuteron_Coulomb_log_at_point_396_______________________________ (plasma_coulomb_log_electron_deuteron_profile396)_ 1.74659627563848758e+01 +Electron-deuteron_Coulomb_log_at_point_397_______________________________ (plasma_coulomb_log_electron_deuteron_profile397)_ 1.74602566131887471e+01 +Electron-deuteron_Coulomb_log_at_point_398_______________________________ (plasma_coulomb_log_electron_deuteron_profile398)_ 1.74545296474047475e+01 +Electron-deuteron_Coulomb_log_at_point_399_______________________________ (plasma_coulomb_log_electron_deuteron_profile399)_ 1.74487822459609774e+01 +Electron-deuteron_Coulomb_log_at_point_400_______________________________ (plasma_coulomb_log_electron_deuteron_profile400)_ 1.74430148195821317e+01 +Electron-deuteron_Coulomb_log_at_point_401_______________________________ (plasma_coulomb_log_electron_deuteron_profile401)_ 1.74372278038775086e+01 +Electron-deuteron_Coulomb_log_at_point_402_______________________________ (plasma_coulomb_log_electron_deuteron_profile402)_ 1.74314216604804244e+01 +Electron-deuteron_Coulomb_log_at_point_403_______________________________ (plasma_coulomb_log_electron_deuteron_profile403)_ 1.74255968782415422e+01 +Electron-deuteron_Coulomb_log_at_point_404_______________________________ (plasma_coulomb_log_electron_deuteron_profile404)_ 1.74197539744791925e+01 +Electron-deuteron_Coulomb_log_at_point_405_______________________________ (plasma_coulomb_log_electron_deuteron_profile405)_ 1.74138934962897061e+01 +Electron-deuteron_Coulomb_log_at_point_406_______________________________ (plasma_coulomb_log_electron_deuteron_profile406)_ 1.74080160219210569e+01 +Electron-deuteron_Coulomb_log_at_point_407_______________________________ (plasma_coulomb_log_electron_deuteron_profile407)_ 1.74021221622133382e+01 +Electron-deuteron_Coulomb_log_at_point_408_______________________________ (plasma_coulomb_log_electron_deuteron_profile408)_ 1.73962125621098558e+01 +Electron-deuteron_Coulomb_log_at_point_409_______________________________ (plasma_coulomb_log_electron_deuteron_profile409)_ 1.73902879022428642e+01 +Electron-deuteron_Coulomb_log_at_point_410_______________________________ (plasma_coulomb_log_electron_deuteron_profile410)_ 1.73843489005982512e+01 +Electron-deuteron_Coulomb_log_at_point_411_______________________________ (plasma_coulomb_log_electron_deuteron_profile411)_ 1.73783963142638740e+01 +Electron-deuteron_Coulomb_log_at_point_412_______________________________ (plasma_coulomb_log_electron_deuteron_profile412)_ 1.73724309412664581e+01 +Electron-deuteron_Coulomb_log_at_point_413_______________________________ (plasma_coulomb_log_electron_deuteron_profile413)_ 1.73664536225025472e+01 +Electron-deuteron_Coulomb_log_at_point_414_______________________________ (plasma_coulomb_log_electron_deuteron_profile414)_ 1.73604652437691804e+01 +Electron-deuteron_Coulomb_log_at_point_415_______________________________ (plasma_coulomb_log_electron_deuteron_profile415)_ 1.73544667379007329e+01 +Electron-deuteron_Coulomb_log_at_point_416_______________________________ (plasma_coulomb_log_electron_deuteron_profile416)_ 1.73484590870185542e+01 +Electron-deuteron_Coulomb_log_at_point_417_______________________________ (plasma_coulomb_log_electron_deuteron_profile417)_ 1.73424433249009766e+01 +Electron-deuteron_Coulomb_log_at_point_418_______________________________ (plasma_coulomb_log_electron_deuteron_profile418)_ 1.73364205394815336e+01 +Electron-deuteron_Coulomb_log_at_point_419_______________________________ (plasma_coulomb_log_electron_deuteron_profile419)_ 1.73303918754842705e+01 +Electron-deuteron_Coulomb_log_at_point_420_______________________________ (plasma_coulomb_log_electron_deuteron_profile420)_ 1.73243585372056756e+01 +Electron-deuteron_Coulomb_log_at_point_421_______________________________ (plasma_coulomb_log_electron_deuteron_profile421)_ 1.73183217914536947e+01 +Electron-deuteron_Coulomb_log_at_point_422_______________________________ (plasma_coulomb_log_electron_deuteron_profile422)_ 1.73122829706552714e+01 +Electron-deuteron_Coulomb_log_at_point_423_______________________________ (plasma_coulomb_log_electron_deuteron_profile423)_ 1.73062434761452941e+01 +Electron-deuteron_Coulomb_log_at_point_424_______________________________ (plasma_coulomb_log_electron_deuteron_profile424)_ 1.73002047816505744e+01 +Electron-deuteron_Coulomb_log_at_point_425_______________________________ (plasma_coulomb_log_electron_deuteron_profile425)_ 1.72941684369846413e+01 +Electron-deuteron_Coulomb_log_at_point_426_______________________________ (plasma_coulomb_log_electron_deuteron_profile426)_ 1.72881360719703352e+01 +Electron-deuteron_Coulomb_log_at_point_427_______________________________ (plasma_coulomb_log_electron_deuteron_profile427)_ 1.72821094006094000e+01 +Electron-deuteron_Coulomb_log_at_point_428_______________________________ (plasma_coulomb_log_electron_deuteron_profile428)_ 1.72760902255204805e+01 +Electron-deuteron_Coulomb_log_at_point_429_______________________________ (plasma_coulomb_log_electron_deuteron_profile429)_ 1.72700804426693431e+01 +Electron-deuteron_Coulomb_log_at_point_430_______________________________ (plasma_coulomb_log_electron_deuteron_profile430)_ 1.72640820464184230e+01 +Electron-deuteron_Coulomb_log_at_point_431_______________________________ (plasma_coulomb_log_electron_deuteron_profile431)_ 1.72580971349260501e+01 +Electron-deuteron_Coulomb_log_at_point_432_______________________________ (plasma_coulomb_log_electron_deuteron_profile432)_ 1.72521279159297798e+01 +Electron-deuteron_Coulomb_log_at_point_433_______________________________ (plasma_coulomb_log_electron_deuteron_profile433)_ 1.72461767129532220e+01 +Electron-deuteron_Coulomb_log_at_point_434_______________________________ (plasma_coulomb_log_electron_deuteron_profile434)_ 1.72402459719809400e+01 +Electron-deuteron_Coulomb_log_at_point_435_______________________________ (plasma_coulomb_log_electron_deuteron_profile435)_ 1.72343382686529019e+01 +Electron-deuteron_Coulomb_log_at_point_436_______________________________ (plasma_coulomb_log_electron_deuteron_profile436)_ 1.72284563160378816e+01 +Electron-deuteron_Coulomb_log_at_point_437_______________________________ (plasma_coulomb_log_electron_deuteron_profile437)_ 1.72226029730537817e+01 +Electron-deuteron_Coulomb_log_at_point_438_______________________________ (plasma_coulomb_log_electron_deuteron_profile438)_ 1.72167812536151814e+01 +Electron-deuteron_Coulomb_log_at_point_439_______________________________ (plasma_coulomb_log_electron_deuteron_profile439)_ 1.72109943366005957e+01 +Electron-deuteron_Coulomb_log_at_point_440_______________________________ (plasma_coulomb_log_electron_deuteron_profile440)_ 1.72052455767491139e+01 +Electron-deuteron_Coulomb_log_at_point_441_______________________________ (plasma_coulomb_log_electron_deuteron_profile441)_ 1.71995385166152595e+01 +Electron-deuteron_Coulomb_log_at_point_442_______________________________ (plasma_coulomb_log_electron_deuteron_profile442)_ 1.71938768997355744e+01 +Electron-deuteron_Coulomb_log_at_point_443_______________________________ (plasma_coulomb_log_electron_deuteron_profile443)_ 1.71882646851897434e+01 +Electron-deuteron_Coulomb_log_at_point_444_______________________________ (plasma_coulomb_log_electron_deuteron_profile444)_ 1.71827060637767630e+01 +Electron-deuteron_Coulomb_log_at_point_445_______________________________ (plasma_coulomb_log_electron_deuteron_profile445)_ 1.71772054760725901e+01 +Electron-deuteron_Coulomb_log_at_point_446_______________________________ (plasma_coulomb_log_electron_deuteron_profile446)_ 1.71717676326939603e+01 +Electron-deuteron_Coulomb_log_at_point_447_______________________________ (plasma_coulomb_log_electron_deuteron_profile447)_ 1.71663975371681445e+01 +Electron-deuteron_Coulomb_log_at_point_448_______________________________ (plasma_coulomb_log_electron_deuteron_profile448)_ 1.71611005119022977e+01 +Electron-deuteron_Coulomb_log_at_point_449_______________________________ (plasma_coulomb_log_electron_deuteron_profile449)_ 1.71558822278709435e+01 +Electron-deuteron_Coulomb_log_at_point_450_______________________________ (plasma_coulomb_log_electron_deuteron_profile450)_ 1.71507487388004130e+01 +Electron-deuteron_Coulomb_log_at_point_451_______________________________ (plasma_coulomb_log_electron_deuteron_profile451)_ 1.71457065208436497e+01 +Electron-deuteron_Coulomb_log_at_point_452_______________________________ (plasma_coulomb_log_electron_deuteron_profile452)_ 1.71407625190257349e+01 +Electron-deuteron_Coulomb_log_at_point_453_______________________________ (plasma_coulomb_log_electron_deuteron_profile453)_ 1.71359242021307416e+01 +Electron-deuteron_Coulomb_log_at_point_454_______________________________ (plasma_coulomb_log_electron_deuteron_profile454)_ 1.71311996282396066e+01 +Electron-deuteron_Coulomb_log_at_point_455_______________________________ (plasma_coulomb_log_electron_deuteron_profile455)_ 1.71265975238867050e+01 +Electron-deuteron_Coulomb_log_at_point_456_______________________________ (plasma_coulomb_log_electron_deuteron_profile456)_ 1.71221273808865320e+01 +Electron-deuteron_Coulomb_log_at_point_457_______________________________ (plasma_coulomb_log_electron_deuteron_profile457)_ 1.71177995764684745e+01 +Electron-deuteron_Coulomb_log_at_point_458_______________________________ (plasma_coulomb_log_electron_deuteron_profile458)_ 1.71136255247321678e+01 +Electron-deuteron_Coulomb_log_at_point_459_______________________________ (plasma_coulomb_log_electron_deuteron_profile459)_ 1.71096178710910607e+01 +Electron-deuteron_Coulomb_log_at_point_460_______________________________ (plasma_coulomb_log_electron_deuteron_profile460)_ 1.71057907471761261e+01 +Electron-deuteron_Coulomb_log_at_point_461_______________________________ (plasma_coulomb_log_electron_deuteron_profile461)_ 1.71021601132270433e+01 +Electron-deuteron_Coulomb_log_at_point_462_______________________________ (plasma_coulomb_log_electron_deuteron_profile462)_ 1.70987442314198823e+01 +Electron-deuteron_Coulomb_log_at_point_463_______________________________ (plasma_coulomb_log_electron_deuteron_profile463)_ 1.70955643432754236e+01 +Electron-deuteron_Coulomb_log_at_point_464_______________________________ (plasma_coulomb_log_electron_deuteron_profile464)_ 1.70926456814403522e+01 +Electron-deuteron_Coulomb_log_at_point_465_______________________________ (plasma_coulomb_log_electron_deuteron_profile465)_ 1.70900190650110133e+01 +Electron-deuteron_Coulomb_log_at_point_466_______________________________ (plasma_coulomb_log_electron_deuteron_profile466)_ 1.70877236010100191e+01 +Electron-deuteron_Coulomb_log_at_point_467_______________________________ (plasma_coulomb_log_electron_deuteron_profile467)_ 1.70858117354642687e+01 +Electron-deuteron_Coulomb_log_at_point_468_______________________________ (plasma_coulomb_log_electron_deuteron_profile468)_ 1.70843602166495181e+01 +Electron-deuteron_Coulomb_log_at_point_469_______________________________ (plasma_coulomb_log_electron_deuteron_profile469)_ 1.70835009657550749e+01 +Electron-deuteron_Coulomb_log_at_point_470_______________________________ (plasma_coulomb_log_electron_deuteron_profile470)_ 1.70836104466990264e+01 +Electron-deuteron_Coulomb_log_at_point_471_______________________________ (plasma_coulomb_log_electron_deuteron_profile471)_ 1.70575068253065680e+01 +Electron-deuteron_Coulomb_log_at_point_472_______________________________ (plasma_coulomb_log_electron_deuteron_profile472)_ 1.70303547189861035e+01 +Electron-deuteron_Coulomb_log_at_point_473_______________________________ (plasma_coulomb_log_electron_deuteron_profile473)_ 1.70020752010344189e+01 +Electron-deuteron_Coulomb_log_at_point_474_______________________________ (plasma_coulomb_log_electron_deuteron_profile474)_ 1.69725804030209950e+01 +Electron-deuteron_Coulomb_log_at_point_475_______________________________ (plasma_coulomb_log_electron_deuteron_profile475)_ 1.69417721299625903e+01 +Electron-deuteron_Coulomb_log_at_point_476_______________________________ (plasma_coulomb_log_electron_deuteron_profile476)_ 1.69095401980712268e+01 +Electron-deuteron_Coulomb_log_at_point_477_______________________________ (plasma_coulomb_log_electron_deuteron_profile477)_ 1.68757604257349847e+01 +Electron-deuteron_Coulomb_log_at_point_478_______________________________ (plasma_coulomb_log_electron_deuteron_profile478)_ 1.68402921873046587e+01 +Electron-deuteron_Coulomb_log_at_point_479_______________________________ (plasma_coulomb_log_electron_deuteron_profile479)_ 1.68029754105155114e+01 +Electron-deuteron_Coulomb_log_at_point_480_______________________________ (plasma_coulomb_log_electron_deuteron_profile480)_ 1.67636268586897650e+01 +Electron-deuteron_Coulomb_log_at_point_481_______________________________ (plasma_coulomb_log_electron_deuteron_profile481)_ 1.67220354833264082e+01 +Electron-deuteron_Coulomb_log_at_point_482_______________________________ (plasma_coulomb_log_electron_deuteron_profile482)_ 1.66779565537869594e+01 +Electron-deuteron_Coulomb_log_at_point_483_______________________________ (plasma_coulomb_log_electron_deuteron_profile483)_ 1.66311041568599300e+01 +Electron-deuteron_Coulomb_log_at_point_484_______________________________ (plasma_coulomb_log_electron_deuteron_profile484)_ 1.65811414915079993e+01 +Electron-deuteron_Coulomb_log_at_point_485_______________________________ (plasma_coulomb_log_electron_deuteron_profile485)_ 1.65276681329711614e+01 +Electron-deuteron_Coulomb_log_at_point_486_______________________________ (plasma_coulomb_log_electron_deuteron_profile486)_ 1.64702030554669783e+01 +Electron-deuteron_Coulomb_log_at_point_487_______________________________ (plasma_coulomb_log_electron_deuteron_profile487)_ 1.64081615980372675e+01 +Electron-deuteron_Coulomb_log_at_point_488_______________________________ (plasma_coulomb_log_electron_deuteron_profile488)_ 1.63408235815802598e+01 +Electron-deuteron_Coulomb_log_at_point_489_______________________________ (plasma_coulomb_log_electron_deuteron_profile489)_ 1.62672881580014241e+01 +Electron-deuteron_Coulomb_log_at_point_490_______________________________ (plasma_coulomb_log_electron_deuteron_profile490)_ 1.61864081624258915e+01 +Electron-deuteron_Coulomb_log_at_point_491_______________________________ (plasma_coulomb_log_electron_deuteron_profile491)_ 1.60966916815450851e+01 +Electron-deuteron_Coulomb_log_at_point_492_______________________________ (plasma_coulomb_log_electron_deuteron_profile492)_ 1.59961489954313461e+01 +Electron-deuteron_Coulomb_log_at_point_493_______________________________ (plasma_coulomb_log_electron_deuteron_profile493)_ 1.58820439275395788e+01 +Electron-deuteron_Coulomb_log_at_point_494_______________________________ (plasma_coulomb_log_electron_deuteron_profile494)_ 1.57504676112626942e+01 +Electron-deuteron_Coulomb_log_at_point_495_______________________________ (plasma_coulomb_log_electron_deuteron_profile495)_ 1.55955567358712983e+01 +Electron-deuteron_Coulomb_log_at_point_496_______________________________ (plasma_coulomb_log_electron_deuteron_profile496)_ 1.54079278274605418e+01 +Electron-deuteron_Coulomb_log_at_point_497_______________________________ (plasma_coulomb_log_electron_deuteron_profile497)_ 1.51711415829825036e+01 +Electron-deuteron_Coulomb_log_at_point_498_______________________________ (plasma_coulomb_log_electron_deuteron_profile498)_ 1.48521877498107422e+01 +Electron-deuteron_Coulomb_log_at_point_499_______________________________ (plasma_coulomb_log_electron_deuteron_profile499)_ 1.43672873761153443e+01 +Electron-deuteron_Coulomb_log_at_point_500_______________________________ (plasma_coulomb_log_electron_deuteron_profile500)_ 1.33494645973096464e+01 +Volume_averaged_electron-triton_Coulomb_log_(ΛₑT)________________________ (plasma_coulomb_log_electron_triton_vol_avg)_ 1.77710682156161894e+01 OP +Electron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_electron_triton_profile0)_ 1.83389065988705831e+01 +Electron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_electron_triton_profile1)_ 1.83389025361833902e+01 +Electron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_electron_triton_profile2)_ 1.83388903480332175e+01 +Electron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_electron_triton_profile3)_ 1.83388700341542368e+01 +Electron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_electron_triton_profile4)_ 1.83388415941033998e+01 +Electron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_electron_triton_profile5)_ 1.83388050272604097e+01 +Electron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_electron_triton_profile6)_ 1.83387603328276789e+01 +Electron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_electron_triton_profile7)_ 1.83387075098302788e+01 +Electron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_electron_triton_profile8)_ 1.83386465571159185e+01 +Electron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_electron_triton_profile9)_ 1.83385774733548352e+01 +Electron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_electron_triton_profile10)_ 1.83385002570397546e+01 +Electron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_electron_triton_profile11)_ 1.83384149064858093e+01 +Electron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_electron_triton_profile12)_ 1.83383214198304216e+01 +Electron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_electron_triton_profile13)_ 1.83382197950332184e+01 +Electron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_electron_triton_profile14)_ 1.83381100298759208e+01 +Electron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_electron_triton_profile15)_ 1.83379921219622126e+01 +Electron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_electron_triton_profile16)_ 1.83378660687176271e+01 +Electron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_electron_triton_profile17)_ 1.83377318673893690e+01 +Electron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_electron_triton_profile18)_ 1.83375895150462043e+01 +Electron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_electron_triton_profile19)_ 1.83374390085782792e+01 +Electron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_electron_triton_profile20)_ 1.83372803446969499e+01 +Electron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_electron_triton_profile21)_ 1.83371135199346043e+01 +Electron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_electron_triton_profile22)_ 1.83369385306444634e+01 +Electron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_electron_triton_profile23)_ 1.83367553730004005e+01 +Electron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_electron_triton_profile24)_ 1.83365640429967129e+01 +Electron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_electron_triton_profile25)_ 1.83363645364479062e+01 +Electron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_electron_triton_profile26)_ 1.83361568489884661e+01 +Electron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_electron_triton_profile27)_ 1.83359409760726102e+01 +Electron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_electron_triton_profile28)_ 1.83357169129740640e+01 +Electron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_electron_triton_profile29)_ 1.83354846547857626e+01 +Electron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_electron_triton_profile30)_ 1.83352441964196053e+01 +Electron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_electron_triton_profile31)_ 1.83349955326061753e+01 +Electron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_electron_triton_profile32)_ 1.83347386578944302e+01 +Electron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_electron_triton_profile33)_ 1.83344735666514325e+01 +Electron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_electron_triton_profile34)_ 1.83342002530620150e+01 +Electron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_electron_triton_profile35)_ 1.83339187111284545e+01 +Electron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_electron_triton_profile36)_ 1.83336289346701697e+01 +Electron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_electron_triton_profile37)_ 1.83333309173233658e+01 +Electron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_electron_triton_profile38)_ 1.83330246525406686e+01 +Electron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_electron_triton_profile39)_ 1.83327101335907834e+01 +Electron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_electron_triton_profile40)_ 1.83323873535581114e+01 +Electron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_electron_triton_profile41)_ 1.83320563053423840e+01 +Electron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_electron_triton_profile42)_ 1.83317169816582499e+01 +Electron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_electron_triton_profile43)_ 1.83313693750348783e+01 +Electron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_electron_triton_profile44)_ 1.83310134778155565e+01 +Electron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_electron_triton_profile45)_ 1.83306492821572569e+01 +Electron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_electron_triton_profile46)_ 1.83302767800302107e+01 +Electron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_electron_triton_profile47)_ 1.83298959632174423e+01 +Electron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_electron_triton_profile48)_ 1.83295068233143432e+01 +Electron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_electron_triton_profile49)_ 1.83291093517281922e+01 +Electron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_electron_triton_profile50)_ 1.83287035396776723e+01 +Electron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_electron_triton_profile51)_ 1.83282893781924052e+01 +Electron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_electron_triton_profile52)_ 1.83278668581124222e+01 +Electron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_electron_triton_profile53)_ 1.83274359700876950e+01 +Electron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_electron_triton_profile54)_ 1.83269967045775815e+01 +Electron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_electron_triton_profile55)_ 1.83265490518503107e+01 +Electron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_electron_triton_profile56)_ 1.83260930019824535e+01 +Electron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_electron_triton_profile57)_ 1.83256285448583434e+01 +Electron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_electron_triton_profile58)_ 1.83251556701695435e+01 +Electron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_electron_triton_profile59)_ 1.83246743674142571e+01 +Electron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_electron_triton_profile60)_ 1.83241846258967414e+01 +Electron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_electron_triton_profile61)_ 1.83236864347267172e+01 +Electron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_electron_triton_profile62)_ 1.83231797828187659e+01 +Electron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_electron_triton_profile63)_ 1.83226646588917106e+01 +Electron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_electron_triton_profile64)_ 1.83221410514679697e+01 +Electron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_electron_triton_profile65)_ 1.83216089488729423e+01 +Electron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_electron_triton_profile66)_ 1.83210683392343476e+01 +Electron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_electron_triton_profile67)_ 1.83205192104815495e+01 +Electron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_electron_triton_profile68)_ 1.83199615503449067e+01 +Electron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_electron_triton_profile69)_ 1.83193953463550585e+01 +Electron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_electron_triton_profile70)_ 1.83188205858422464e+01 +Electron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_electron_triton_profile71)_ 1.83182372559356068e+01 +Electron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_electron_triton_profile72)_ 1.83176453435624360e+01 +Electron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_electron_triton_profile73)_ 1.83170448354474757e+01 +Electron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_electron_triton_profile74)_ 1.83164357181121531e+01 +Electron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_electron_triton_profile75)_ 1.83158179778738273e+01 +Electron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_electron_triton_profile76)_ 1.83151916008450399e+01 +Electron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_electron_triton_profile77)_ 1.83145565729327160e+01 +Electron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_electron_triton_profile78)_ 1.83139128798373783e+01 +Electron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_electron_triton_profile79)_ 1.83132605070523446e+01 +Electron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_electron_triton_profile80)_ 1.83125994398629111e+01 +Electron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_electron_triton_profile81)_ 1.83119296633455377e+01 +Electron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_electron_triton_profile82)_ 1.83112511623669789e+01 +Electron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_electron_triton_profile83)_ 1.83105639215834621e+01 +Electron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_electron_triton_profile84)_ 1.83098679254398142e+01 +Electron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_electron_triton_profile85)_ 1.83091631581685697e+01 +Electron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_electron_triton_profile86)_ 1.83084496037891000e+01 +Electron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_electron_triton_profile87)_ 1.83077272461067118e+01 +Electron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_electron_triton_profile88)_ 1.83069960687117117e+01 +Electron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_electron_triton_profile89)_ 1.83062560549785118e+01 +Electron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_electron_triton_profile90)_ 1.83055071880646558e+01 +Electron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_electron_triton_profile91)_ 1.83047494509099025e+01 +Electron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_electron_triton_profile92)_ 1.83039828262352202e+01 +Electron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_electron_triton_profile93)_ 1.83032072965418600e+01 +Electron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_electron_triton_profile94)_ 1.83024228441102963e+01 +Electron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_electron_triton_profile95)_ 1.83016294509992932e+01 +Electron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_electron_triton_profile96)_ 1.83008270990448487e+01 +Electron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_electron_triton_profile97)_ 1.83000157698591650e+01 +Electron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_electron_triton_profile98)_ 1.82991954448296177e+01 +Electron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_electron_triton_profile99)_ 1.82983661051176902e+01 +Electron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_electron_triton_profile100)_ 1.82975277316579081e+01 +Electron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_electron_triton_profile101)_ 1.82966803051567588e+01 +Electron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_electron_triton_profile102)_ 1.82958238060915797e+01 +Electron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_electron_triton_profile103)_ 1.82949582147094709e+01 +Electron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_electron_triton_profile104)_ 1.82940835110261411e+01 +Electron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_electron_triton_profile105)_ 1.82931996748247947e+01 +Electron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_electron_triton_profile106)_ 1.82923066856549816e+01 +Electron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_electron_triton_profile107)_ 1.82914045228313995e+01 +Electron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_electron_triton_profile108)_ 1.82904931654327534e+01 +Electron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_electron_triton_profile109)_ 1.82895725923005337e+01 +Electron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_electron_triton_profile110)_ 1.82886427820378259e+01 +Electron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_electron_triton_profile111)_ 1.82877037130080780e+01 +Electron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_electron_triton_profile112)_ 1.82867553633338744e+01 +Electron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_electron_triton_profile113)_ 1.82857977108956682e+01 +Electron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_electron_triton_profile114)_ 1.82848307333305371e+01 +Electron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_electron_triton_profile115)_ 1.82838544080308907e+01 +Electron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_electron_triton_profile116)_ 1.82828687121431734e+01 +Electron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_electron_triton_profile117)_ 1.82818736225665788e+01 +Electron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_electron_triton_profile118)_ 1.82808691159517025e+01 +Electron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_electron_triton_profile119)_ 1.82798551686992106e+01 +Electron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_electron_triton_profile120)_ 1.82788317569584891e+01 +Electron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_electron_triton_profile121)_ 1.82777988566262799e+01 +Electron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_electron_triton_profile122)_ 1.82767564433452918e+01 +Electron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_electron_triton_profile123)_ 1.82757044925028183e+01 +Electron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_electron_triton_profile124)_ 1.82746429792292915e+01 +Electron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_electron_triton_profile125)_ 1.82735718783968970e+01 +Electron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_electron_triton_profile126)_ 1.82724911646180956e+01 +Electron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_electron_triton_profile127)_ 1.82714008122441882e+01 +Electron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_electron_triton_profile128)_ 1.82703007953638341e+01 +Electron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_electron_triton_profile129)_ 1.82691910878015520e+01 +Electron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_electron_triton_profile130)_ 1.82680716631162348e+01 +Electron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_electron_triton_profile131)_ 1.82669424945996255e+01 +Electron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_electron_triton_profile132)_ 1.82658035552747613e+01 +Electron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_electron_triton_profile133)_ 1.82646548178944457e+01 +Electron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_electron_triton_profile134)_ 1.82634962549396747e+01 +Electron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_electron_triton_profile135)_ 1.82623278386180452e+01 +Electron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_electron_triton_profile136)_ 1.82611495408621742e+01 +Electron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_electron_triton_profile137)_ 1.82599613333280644e+01 +Electron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_electron_triton_profile138)_ 1.82587631873934910e+01 +Electron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_electron_triton_profile139)_ 1.82575550741563433e+01 +Electron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_electron_triton_profile140)_ 1.82563369644329576e+01 +Electron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_electron_triton_profile141)_ 1.82551088287564660e+01 +Electron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_electron_triton_profile142)_ 1.82538706373750621e+01 +Electron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_electron_triton_profile143)_ 1.82526223602503208e+01 +Electron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_electron_triton_profile144)_ 1.82513639670554646e+01 +Electron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_electron_triton_profile145)_ 1.82500954271736049e+01 +Electron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_electron_triton_profile146)_ 1.82488167096959941e+01 +Electron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_electron_triton_profile147)_ 1.82475277834202565e+01 +Electron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_electron_triton_profile148)_ 1.82462286168485726e+01 +Electron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_electron_triton_profile149)_ 1.82449191781858922e+01 +Electron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_electron_triton_profile150)_ 1.82435994353381083e+01 +Electron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_electron_triton_profile151)_ 1.82422693559101852e+01 +Electron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_electron_triton_profile152)_ 1.82409289072043421e+01 +Electron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_electron_triton_profile153)_ 1.82395780562181464e+01 +Electron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_electron_triton_profile154)_ 1.82382167696426265e+01 +Electron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_electron_triton_profile155)_ 1.82368450138603819e+01 +Electron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_electron_triton_profile156)_ 1.82354627549436330e+01 +Electron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_electron_triton_profile157)_ 1.82340699586523058e+01 +Electron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_electron_triton_profile158)_ 1.82326665904320464e+01 +Electron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_electron_triton_profile159)_ 1.82312526154122558e+01 +Electron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_electron_triton_profile160)_ 1.82298279984041187e+01 +Electron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_electron_triton_profile161)_ 1.82283927038985603e+01 +Electron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_electron_triton_profile162)_ 1.82269466960642568e+01 +Electron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_electron_triton_profile163)_ 1.82254899387455609e+01 +Electron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_electron_triton_profile164)_ 1.82240223954604730e+01 +Electron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_electron_triton_profile165)_ 1.82225440293985486e+01 +Electron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_electron_triton_profile166)_ 1.82210548034188164e+01 +Electron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_electron_triton_profile167)_ 1.82195546800476755e+01 +Electron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_electron_triton_profile168)_ 1.82180436214767525e+01 +Electron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_electron_triton_profile169)_ 1.82165215895607773e+01 +Electron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_electron_triton_profile170)_ 1.82149885458154444e+01 +Electron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_electron_triton_profile171)_ 1.82134444514152030e+01 +Electron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_electron_triton_profile172)_ 1.82118892671910970e+01 +Electron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_electron_triton_profile173)_ 1.82103229536285589e+01 +Electron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_electron_triton_profile174)_ 1.82087454708651748e+01 +Electron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_electron_triton_profile175)_ 1.82071567786884607e+01 +Electron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_electron_triton_profile176)_ 1.82055568365336278e+01 +Electron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_electron_triton_profile177)_ 1.82039456034812765e+01 +Electron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_electron_triton_profile178)_ 1.82023230382551446e+01 +Electron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_electron_triton_profile179)_ 1.82006890992198116e+01 +Electron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_electron_triton_profile180)_ 1.81990437443783684e+01 +Electron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_electron_triton_profile181)_ 1.81973869313701115e+01 +Electron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_electron_triton_profile182)_ 1.81957186174681844e+01 +Electron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_electron_triton_profile183)_ 1.81940387595772286e+01 +Electron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_electron_triton_profile184)_ 1.81923473142310108e+01 +Electron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_electron_triton_profile185)_ 1.81906442375900497e+01 +Electron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_electron_triton_profile186)_ 1.81889294854392105e+01 +Electron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_electron_triton_profile187)_ 1.81872030131852753e+01 +Electron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_electron_triton_profile188)_ 1.81854647758545553e+01 +Electron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_electron_triton_profile189)_ 1.81837147280904183e+01 +Electron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_electron_triton_profile190)_ 1.81819528241508621e+01 +Electron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_electron_triton_profile191)_ 1.81801790179060418e+01 +Electron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_electron_triton_profile192)_ 1.81783932628357832e+01 +Electron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_electron_triton_profile193)_ 1.81765955120271130e+01 +Electron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_electron_triton_profile194)_ 1.81747857181717585e+01 +Electron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_electron_triton_profile195)_ 1.81729638335636281e+01 +Electron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_electron_triton_profile196)_ 1.81711298100962928e+01 +Electron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_electron_triton_profile197)_ 1.81692835992604671e+01 +Electron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_electron_triton_profile198)_ 1.81674251521414512e+01 +Electron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_electron_triton_profile199)_ 1.81655544194165977e+01 +Electron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_electron_triton_profile200)_ 1.81636713513527397e+01 +Electron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_electron_triton_profile201)_ 1.81617758978036363e+01 +Electron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_electron_triton_profile202)_ 1.81598680082073862e+01 +Electron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_electron_triton_profile203)_ 1.81579476315838519e+01 +Electron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_electron_triton_profile204)_ 1.81560147165320771e+01 +Electron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_electron_triton_profile205)_ 1.81540692112276751e+01 +Electron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_electron_triton_profile206)_ 1.81521110634202465e+01 +Electron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_electron_triton_profile207)_ 1.81501402204307531e+01 +Electron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_electron_triton_profile208)_ 1.81481566291489465e+01 +Electron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_electron_triton_profile209)_ 1.81461602360307168e+01 +Electron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_electron_triton_profile210)_ 1.81441509870954896e+01 +Electron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_electron_triton_profile211)_ 1.81421288279236244e+01 +Electron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_electron_triton_profile212)_ 1.81400937036537790e+01 +Electron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_electron_triton_profile213)_ 1.81380455589803127e+01 +Electron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_electron_triton_profile214)_ 1.81359843381506280e+01 +Electron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_electron_triton_profile215)_ 1.81339099849626244e+01 +Electron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_electron_triton_profile216)_ 1.81318224427620116e+01 +Electron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_electron_triton_profile217)_ 1.81297216544397699e+01 +Electron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_electron_triton_profile218)_ 1.81276075624294855e+01 +Electron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_electron_triton_profile219)_ 1.81254801087048065e+01 +Electron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_electron_triton_profile220)_ 1.81233392347768287e+01 +Electron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_electron_triton_profile221)_ 1.81211848816915051e+01 +Electron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_electron_triton_profile222)_ 1.81190169900271023e+01 +Electron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_electron_triton_profile223)_ 1.81168354998916143e+01 +Electron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_electron_triton_profile224)_ 1.81146403509202365e+01 +Electron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_electron_triton_profile225)_ 1.81124314822728145e+01 +Electron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_electron_triton_profile226)_ 1.81102088326313471e+01 +Electron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_electron_triton_profile227)_ 1.81079723401974668e+01 +Electron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_electron_triton_profile228)_ 1.81057219426899643e+01 +Electron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_electron_triton_profile229)_ 1.81034575773423327e+01 +Electron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_electron_triton_profile230)_ 1.81011791809003206e+01 +Electron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_electron_triton_profile231)_ 1.80988866896195155e+01 +Electron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_electron_triton_profile232)_ 1.80965800392629781e+01 +Electron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_electron_triton_profile233)_ 1.80942591650988405e+01 +Electron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_electron_triton_profile234)_ 1.80919240018980112e+01 +Electron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_electron_triton_profile235)_ 1.80895744839318553e+01 +Electron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_electron_triton_profile236)_ 1.80872105449699454e+01 +Electron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_electron_triton_profile237)_ 1.80848321182778129e+01 +Electron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_electron_triton_profile238)_ 1.80824391366147808e+01 +Electron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_electron_triton_profile239)_ 1.80800315322318141e+01 +Electron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_electron_triton_profile240)_ 1.80776092368693959e+01 +Electron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_electron_triton_profile241)_ 1.80751721817555087e+01 +Electron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_electron_triton_profile242)_ 1.80727202976035990e+01 +Electron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_electron_triton_profile243)_ 1.80702535146106413e+01 +Electron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_electron_triton_profile244)_ 1.80677717624552230e+01 +Electron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_electron_triton_profile245)_ 1.80652749702957429e+01 +Electron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_electron_triton_profile246)_ 1.80627630667686034e+01 +Electron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_electron_triton_profile247)_ 1.80602359799865191e+01 +Electron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_electron_triton_profile248)_ 1.80576936375368788e+01 +Electron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_electron_triton_profile249)_ 1.80551359664801616e+01 +Electron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_electron_triton_profile250)_ 1.80525628933484761e+01 +Electron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_electron_triton_profile251)_ 1.80499743441441503e+01 +Electron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_electron_triton_profile252)_ 1.80473702443383814e+01 +Electron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_electron_triton_profile253)_ 1.80447505188700354e+01 +Electron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_electron_triton_profile254)_ 1.80421150921445097e+01 +Electron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_electron_triton_profile255)_ 1.80394638880326639e+01 +Electron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_electron_triton_profile256)_ 1.80367968298699282e+01 +Electron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_electron_triton_profile257)_ 1.80341138404554506e+01 +Electron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_electron_triton_profile258)_ 1.80314148420513902e+01 +Electron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_electron_triton_profile259)_ 1.80286997563823306e+01 +Electron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_electron_triton_profile260)_ 1.80259685046348217e+01 +Electron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_electron_triton_profile261)_ 1.80232210074570354e+01 +Electron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_electron_triton_profile262)_ 1.80204571849585626e+01 +Electron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_electron_triton_profile263)_ 1.80176769567103854e+01 +Electron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_electron_triton_profile264)_ 1.80148802417449438e+01 +Electron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_electron_triton_profile265)_ 1.80120669585564208e+01 +Electron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_electron_triton_profile266)_ 1.80092370251011396e+01 +Electron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_electron_triton_profile267)_ 1.80063903587981642e+01 +Electron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_electron_triton_profile268)_ 1.80035268765300813e+01 +Electron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_electron_triton_profile269)_ 1.80006464946439380e+01 +Electron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_electron_triton_profile270)_ 1.79977491289524139e+01 +Electron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_electron_triton_profile271)_ 1.79948346947351716e+01 +Electron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_electron_triton_profile272)_ 1.79919031067404376e+01 +Electron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_electron_triton_profile273)_ 1.79889542791868031e+01 +Electron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_electron_triton_profile274)_ 1.79859881257652319e+01 +Electron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_electron_triton_profile275)_ 1.79830045596413512e+01 +Electron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_electron_triton_profile276)_ 1.79800034934579962e+01 +Electron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_electron_triton_profile277)_ 1.79769848393379519e+01 +Electron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_electron_triton_profile278)_ 1.79739485088870445e+01 +Electron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_electron_triton_profile279)_ 1.79708944131975095e+01 +Electron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_electron_triton_profile280)_ 1.79678224628516254e+01 +Electron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_electron_triton_profile281)_ 1.79647325679256653e+01 +Electron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_electron_triton_profile282)_ 1.79616246379942126e+01 +Electron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_electron_triton_profile283)_ 1.79584985821347800e+01 +Electron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_electron_triton_profile284)_ 1.79553543089327796e+01 +Electron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_electron_triton_profile285)_ 1.79521917264869018e+01 +Electron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_electron_triton_profile286)_ 1.79490107424147958e+01 +Electron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_electron_triton_profile287)_ 1.79458112638592553e+01 +Electron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_electron_triton_profile288)_ 1.79425931974947517e+01 +Electron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_electron_triton_profile289)_ 1.79393564495343902e+01 +Electron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_electron_triton_profile290)_ 1.79361009257373567e+01 +Electron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_electron_triton_profile291)_ 1.79328265314168434e+01 +Electron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_electron_triton_profile292)_ 1.79295331714483979e+01 +Electron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_electron_triton_profile293)_ 1.79262207502788584e+01 +Electron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_electron_triton_profile294)_ 1.79228891719357470e+01 +Electron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_electron_triton_profile295)_ 1.79195383400372812e+01 +Electron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_electron_triton_profile296)_ 1.79161681578029146e+01 +Electron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_electron_triton_profile297)_ 1.79127785280645000e+01 +Electron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_electron_triton_profile298)_ 1.79093693532780449e+01 +Electron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_electron_triton_profile299)_ 1.79059405355361463e+01 +Electron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_electron_triton_profile300)_ 1.79024919765810928e+01 +Electron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_electron_triton_profile301)_ 1.78990235778186495e+01 +Electron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_electron_triton_profile302)_ 1.78955352403325882e+01 +Electron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_electron_triton_profile303)_ 1.78920268648999752e+01 +Electron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_electron_triton_profile304)_ 1.78884983520072502e+01 +Electron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_electron_triton_profile305)_ 1.78849496018671132e+01 +Electron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_electron_triton_profile306)_ 1.78813805144362838e+01 +Electron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_electron_triton_profile307)_ 1.78777909894341676e+01 +Electron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_electron_triton_profile308)_ 1.78741809263623850e+01 +Electron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_electron_triton_profile309)_ 1.78705502245253491e+01 +Electron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_electron_triton_profile310)_ 1.78668987830517558e+01 +Electron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_electron_triton_profile311)_ 1.78632265009172109e+01 +Electron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_electron_triton_profile312)_ 1.78595332769678699e+01 +Electron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_electron_triton_profile313)_ 1.78558190099452396e+01 +Electron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_electron_triton_profile314)_ 1.78520835985121451e+01 +Electron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_electron_triton_profile315)_ 1.78483269412799395e+01 +Electron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_electron_triton_profile316)_ 1.78445489368369579e+01 +Electron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_electron_triton_profile317)_ 1.78407494837782927e+01 +Electron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_electron_triton_profile318)_ 1.78369284807370079e+01 +Electron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_electron_triton_profile319)_ 1.78330858264166885e+01 +Electron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_electron_triton_profile320)_ 1.78292214196255827e+01 +Electron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_electron_triton_profile321)_ 1.78253351593121963e+01 +Electron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_electron_triton_profile322)_ 1.78214269446026066e+01 +Electron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_electron_triton_profile323)_ 1.78174966748393651e+01 +Electron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_electron_triton_profile324)_ 1.78135442496222005e+01 +Electron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_electron_triton_profile325)_ 1.78095695688505309e+01 +Electron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_electron_triton_profile326)_ 1.78055725327678722e+01 +Electron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_electron_triton_profile327)_ 1.78015530420082158e+01 +Electron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_electron_triton_profile328)_ 1.77975109976444195e+01 +Electron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_electron_triton_profile329)_ 1.77934463012388449e+01 +Electron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_electron_triton_profile330)_ 1.77893588548960508e+01 +Electron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_electron_triton_profile331)_ 1.77852485613179816e+01 +Electron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_electron_triton_profile332)_ 1.77811153238614068e+01 +Electron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_electron_triton_profile333)_ 1.77769590465979590e+01 +Electron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_electron_triton_profile334)_ 1.77727796343767714e+01 +Electron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_electron_triton_profile335)_ 1.77685769928897876e+01 +Electron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_electron_triton_profile336)_ 1.77643510287399486e+01 +Electron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_electron_triton_profile337)_ 1.77601016495123041e+01 +Electron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_electron_triton_profile338)_ 1.77558287638481609e+01 +Electron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_electron_triton_profile339)_ 1.77515322815225112e+01 +Electron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_electron_triton_profile340)_ 1.77472121135246574e+01 +Electron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_electron_triton_profile341)_ 1.77428681721424262e+01 +Electron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_electron_triton_profile342)_ 1.77385003710498914e+01 +Electron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_electron_triton_profile343)_ 1.77341086253988962e+01 +Electron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_electron_triton_profile344)_ 1.77296928519145141e+01 +Electron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_electron_triton_profile345)_ 1.77252529689945106e+01 +Electron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_electron_triton_profile346)_ 1.77207888968130725e+01 +Electron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_electron_triton_profile347)_ 1.77163005574290402e+01 +Electron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_electron_triton_profile348)_ 1.77117878748986222e+01 +Electron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_electron_triton_profile349)_ 1.77072507753929962e+01 +Electron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_electron_triton_profile350)_ 1.77026891873208569e+01 +Electron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_electron_triton_profile351)_ 1.76981030414562213e+01 +Electron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_electron_triton_profile352)_ 1.76934922710716371e+01 +Electron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_electron_triton_profile353)_ 1.76888568120770628e+01 +Electron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_electron_triton_profile354)_ 1.76841966031646187e+01 +Electron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_electron_triton_profile355)_ 1.76795115859595633e+01 +Electron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_electron_triton_profile356)_ 1.76748017051775754e+01 +Electron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_electron_triton_profile357)_ 1.76700669087888471e+01 +Electron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_electron_triton_profile358)_ 1.76653071481890009e+01 +Electron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_electron_triton_profile359)_ 1.76605223783774363e+01 +Electron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_electron_triton_profile360)_ 1.76557125581431045e+01 +Electron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_electron_triton_profile361)_ 1.76508776502583515e+01 +Electron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_electron_triton_profile362)_ 1.76460176216808300e+01 +Electron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_electron_triton_profile363)_ 1.76411324437641781e+01 +Electron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_electron_triton_profile364)_ 1.76362220924775812e+01 +Electron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_electron_triton_profile365)_ 1.76312865486347619e+01 +Electron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_electron_triton_profile366)_ 1.76263257981326618e+01 +Electron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_electron_triton_profile367)_ 1.76213398322004409e+01 +Electron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_electron_triton_profile368)_ 1.76163286476590351e+01 +Electron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_electron_triton_profile369)_ 1.76112922471919013e+01 +Electron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_electron_triton_profile370)_ 1.76062306396273058e+01 +Electron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_electron_triton_profile371)_ 1.76011438402328118e+01 +Electron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_electron_triton_profile372)_ 1.75960318710223547e+01 +Electron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_electron_triton_profile373)_ 1.75908947610766297e+01 +Electron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_electron_triton_profile374)_ 1.75857325468771961e+01 +Electron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_electron_triton_profile375)_ 1.75805452726550726e+01 +Electron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_electron_triton_profile376)_ 1.75753329907544824e+01 +Electron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_electron_triton_profile377)_ 1.75700957620121976e+01 +Electron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_electron_triton_profile378)_ 1.75648336561535316e+01 +Electron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_electron_triton_profile379)_ 1.75595467522054669e+01 +Electron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_electron_triton_profile380)_ 1.75542351389278508e+01 +Electron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_electron_triton_profile381)_ 1.75488989152633827e+01 +Electron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_electron_triton_profile382)_ 1.75435381908073751e+01 +Electron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_electron_triton_profile383)_ 1.75381530862980810e+01 +Electron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_electron_triton_profile384)_ 1.75327437341286725e+01 +Electron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_electron_triton_profile385)_ 1.75273102788817248e+01 +Electron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_electron_triton_profile386)_ 1.75218528778874543e+01 +Electron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_electron_triton_profile387)_ 1.75163717018066158e+01 +Electron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_electron_triton_profile388)_ 1.75108669352394628e+01 +Electron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_electron_triton_profile389)_ 1.75053387773617679e+01 +Electron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_electron_triton_profile390)_ 1.74997874425894189e+01 +Electron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_electron_triton_profile391)_ 1.74942131612728424e+01 +Electron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_electron_triton_profile392)_ 1.74886161804227207e+01 +Electron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_electron_triton_profile393)_ 1.74829967644685844e+01 +Electron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_electron_triton_profile394)_ 1.74773551960518247e+01 +Electron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_electron_triton_profile395)_ 1.74716917768549251e+01 +Electron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_electron_triton_profile396)_ 1.74660068284685615e+01 +Electron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_electron_triton_profile397)_ 1.74603006932987412e+01 +Electron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_electron_triton_profile398)_ 1.74545737355156909e+01 +Electron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_electron_triton_profile399)_ 1.74488263420468535e+01 +Electron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_electron_triton_profile400)_ 1.74430589236162561e+01 +Electron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_electron_triton_profile401)_ 1.74372719158325218e+01 +Electron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_electron_triton_profile402)_ 1.74314657803282600e+01 +Electron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_electron_triton_profile403)_ 1.74256410059534410e+01 +Electron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_electron_triton_profile404)_ 1.74197981100256527e+01 +Electron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_electron_triton_profile405)_ 1.74139376396405154e+01 +Electron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_electron_triton_profile406)_ 1.74080601730452393e+01 +Electron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_electron_triton_profile407)_ 1.74021663210791573e+01 +Electron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_electron_triton_profile408)_ 1.73962567286847829e+01 +Electron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_electron_triton_profile409)_ 1.73903320764935891e+01 +Electron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_electron_triton_profile410)_ 1.73843930824906465e+01 +Electron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_electron_triton_profile411)_ 1.73784405037629668e+01 +Electron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_electron_triton_profile412)_ 1.73724751383364406e+01 +Electron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_electron_triton_profile413)_ 1.73664978271067305e+01 +Electron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_electron_triton_profile414)_ 1.73605094558700017e+01 +Electron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_electron_triton_profile415)_ 1.73545109574596879e+01 +Electron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_electron_triton_profile416)_ 1.73485033139962432e+01 +Electron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_electron_triton_profile417)_ 1.73424875592570160e+01 +Electron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_electron_triton_profile418)_ 1.73364647811745698e+01 +Electron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_electron_triton_profile419)_ 1.73304361244719445e+01 +Electron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_electron_triton_profile420)_ 1.73244027934446123e+01 +Electron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_electron_triton_profile421)_ 1.73183660548994354e+01 +Electron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_electron_triton_profile422)_ 1.73123272412622917e+01 +Electron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_electron_triton_profile423)_ 1.73062877538669468e+01 +Electron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_electron_triton_profile424)_ 1.73002490664390542e+01 +Electron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_electron_triton_profile425)_ 1.72942127287909777e+01 +Electron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_electron_triton_profile426)_ 1.72881803707443282e+01 +Electron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_electron_triton_profile427)_ 1.72821537062996065e+01 +Electron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_electron_triton_profile428)_ 1.72761345380741602e+01 +Electron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_electron_triton_profile429)_ 1.72701247620324203e+01 +Electron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_electron_triton_profile430)_ 1.72641263725354506e+01 +Electron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_electron_triton_profile431)_ 1.72581414677401277e+01 +Electron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_electron_triton_profile432)_ 1.72521722553825718e+01 +Electron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_electron_triton_profile433)_ 1.72462210589848475e+01 +Electron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_electron_triton_profile434)_ 1.72402903245299122e+01 +Electron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_electron_triton_profile435)_ 1.72343826276561458e+01 +Electron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_electron_triton_profile436)_ 1.72285006814305675e+01 +Electron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_electron_triton_profile437)_ 1.72226473447693245e+01 +Electron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_electron_triton_profile438)_ 1.72168256315851238e+01 +Electron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_electron_triton_profile439)_ 1.72110387207545656e+01 +Electron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_electron_triton_profile440)_ 1.72052899670147355e+01 +Electron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_electron_triton_profile441)_ 1.71995829129180429e+01 +Electron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_electron_triton_profile442)_ 1.71939213019988060e+01 +Electron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_electron_triton_profile443)_ 1.71883090933344000e+01 +Electron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_electron_triton_profile444)_ 1.71827504777213917e+01 +Electron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_electron_triton_profile445)_ 1.71772498957331550e+01 +Electron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_electron_triton_profile446)_ 1.71718120579837255e+01 +Electron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_electron_triton_profile447)_ 1.71664419679974962e+01 +Electron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_electron_triton_profile448)_ 1.71611449481785669e+01 +Electron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_electron_triton_profile449)_ 1.71559266694982391e+01 +Electron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_electron_triton_profile450)_ 1.71507931856793583e+01 +Electron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_electron_triton_profile451)_ 1.71457509728711770e+01 +Electron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_electron_triton_profile452)_ 1.71408069760948152e+01 +Electron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_electron_triton_profile453)_ 1.71359686641300044e+01 +Electron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_electron_triton_profile454)_ 1.71312440950530629e+01 +Electron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_electron_triton_profile455)_ 1.71266419953932640e+01 +Electron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_electron_triton_profile456)_ 1.71221718569595538e+01 +Electron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_electron_triton_profile457)_ 1.71178440569751871e+01 +Electron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_electron_triton_profile458)_ 1.71136700095329672e+01 +Electron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_electron_triton_profile459)_ 1.71096623600387403e+01 +Electron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_electron_triton_profile460)_ 1.71058352401148177e+01 +Electron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_electron_triton_profile461)_ 1.71022046099909915e+01 +Electron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_electron_triton_profile462)_ 1.70987887318318421e+01 +Electron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_electron_triton_profile463)_ 1.70956088471445220e+01 +Electron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_electron_triton_profile464)_ 1.70926901885593097e+01 +Electron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_electron_triton_profile465)_ 1.70900635751521008e+01 +Electron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_electron_triton_profile466)_ 1.70877681139190400e+01 +Electron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_electron_triton_profile467)_ 1.70858562508508669e+01 +Electron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_electron_triton_profile468)_ 1.70844047341693930e+01 +Electron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_electron_triton_profile469)_ 1.70835454849693456e+01 +Electron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_electron_triton_profile470)_ 1.70836549668939064e+01 +Electron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_electron_triton_profile471)_ 1.70575513694782153e+01 +Electron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_electron_triton_profile472)_ 1.70303992871317682e+01 +Electron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_electron_triton_profile473)_ 1.70021197931513406e+01 +Electron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_electron_triton_profile474)_ 1.69726250191064523e+01 +Electron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_electron_triton_profile475)_ 1.69418167700138156e+01 +Electron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_electron_triton_profile476)_ 1.69095848620854774e+01 +Electron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_electron_triton_profile477)_ 1.68758051137095073e+01 +Electron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_electron_triton_profile478)_ 1.68403368992366822e+01 +Electron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_electron_triton_profile479)_ 1.68030201464022930e+01 +Electron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_electron_triton_profile480)_ 1.67636716185285479e+01 +Electron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_electron_triton_profile481)_ 1.67220802671144320e+01 +Electron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_electron_triton_profile482)_ 1.66780013615214600e+01 +Electron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_electron_triton_profile483)_ 1.66311489885381256e+01 +Electron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_electron_triton_profile484)_ 1.65811863471271437e+01 +Electron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_electron_triton_profile485)_ 1.65277130125284941e+01 +Electron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_electron_triton_profile486)_ 1.64702479589597424e+01 +Electron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_electron_triton_profile487)_ 1.64082065254626599e+01 +Electron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_electron_triton_profile488)_ 1.63408685329355343e+01 +Electron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_electron_triton_profile489)_ 1.62673331332838202e+01 +Electron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_electron_triton_profile490)_ 1.61864531616326524e+01 +Electron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_electron_triton_profile491)_ 1.60967367046734218e+01 +Electron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_electron_triton_profile492)_ 1.59961940424784448e+01 +Electron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_electron_triton_profile493)_ 1.58820889985027005e+01 +Electron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_electron_triton_profile494)_ 1.57505127061390056e+01 +Electron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_electron_triton_profile495)_ 1.55956018546580903e+01 +Electron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_electron_triton_profile496)_ 1.54079729701550168e+01 +Electron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_electron_triton_profile497)_ 1.51711867495818407e+01 +Electron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_electron_triton_profile498)_ 1.48522329403121756e+01 +Electron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_electron_triton_profile499)_ 1.43673325905161882e+01 +Electron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_electron_triton_profile500)_ 1.33495098356070390e+01 +Volume_averaged_deuteron-triton_Coulomb_log_(Λ_DT)_______________________ (plasma_coulomb_log_deuteron_triton_vol_avg)_ 2.05064732103303520e+01 OP +Deuteron-triton_Coulomb_log_at_point_0___________________________________ (plasma_coulomb_log_deuteron_triton_profile0)_ 2.14546726202543034e+01 +Deuteron-triton_Coulomb_log_at_point_1___________________________________ (plasma_coulomb_log_deuteron_triton_profile1)_ 2.14546657937233114e+01 +Deuteron-triton_Coulomb_log_at_point_2___________________________________ (plasma_coulomb_log_deuteron_triton_profile2)_ 2.14546453139929412e+01 +Deuteron-triton_Coulomb_log_at_point_3___________________________________ (plasma_coulomb_log_deuteron_triton_profile3)_ 2.14546111806510069e+01 +Deuteron-triton_Coulomb_log_at_point_4___________________________________ (plasma_coulomb_log_deuteron_triton_profile4)_ 2.14545633930177893e+01 +Deuteron-triton_Coulomb_log_at_point_5___________________________________ (plasma_coulomb_log_deuteron_triton_profile5)_ 2.14545019501581251e+01 +Deuteron-triton_Coulomb_log_at_point_6___________________________________ (plasma_coulomb_log_deuteron_triton_profile6)_ 2.14544268508692149e+01 +Deuteron-triton_Coulomb_log_at_point_7___________________________________ (plasma_coulomb_log_deuteron_triton_profile7)_ 2.14543380936222547e+01 +Deuteron-triton_Coulomb_log_at_point_8___________________________________ (plasma_coulomb_log_deuteron_triton_profile8)_ 2.14542356767080307e+01 +Deuteron-triton_Coulomb_log_at_point_9___________________________________ (plasma_coulomb_log_deuteron_triton_profile9)_ 2.14541195980935591e+01 +Deuteron-triton_Coulomb_log_at_point_10__________________________________ (plasma_coulomb_log_deuteron_triton_profile10)_ 2.14539898554559052e+01 +Deuteron-triton_Coulomb_log_at_point_11__________________________________ (plasma_coulomb_log_deuteron_triton_profile11)_ 2.14538464462524985e+01 +Deuteron-triton_Coulomb_log_at_point_12__________________________________ (plasma_coulomb_log_deuteron_triton_profile12)_ 2.14536893676213616e+01 +Deuteron-triton_Coulomb_log_at_point_13__________________________________ (plasma_coulomb_log_deuteron_triton_profile13)_ 2.14535186164756624e+01 +Deuteron-triton_Coulomb_log_at_point_14__________________________________ (plasma_coulomb_log_deuteron_triton_profile14)_ 2.14533341894160507e+01 +Deuteron-triton_Coulomb_log_at_point_15__________________________________ (plasma_coulomb_log_deuteron_triton_profile15)_ 2.14531360828033257e+01 +Deuteron-triton_Coulomb_log_at_point_16__________________________________ (plasma_coulomb_log_deuteron_triton_profile16)_ 2.14529242927241803e+01 +Deuteron-triton_Coulomb_log_at_point_17__________________________________ (plasma_coulomb_log_deuteron_triton_profile17)_ 2.14526988149641902e+01 +Deuteron-triton_Coulomb_log_at_point_18__________________________________ (plasma_coulomb_log_deuteron_triton_profile18)_ 2.14524596450585889e+01 +Deuteron-triton_Coulomb_log_at_point_19__________________________________ (plasma_coulomb_log_deuteron_triton_profile19)_ 2.14522067782798267e+01 +Deuteron-triton_Coulomb_log_at_point_20__________________________________ (plasma_coulomb_log_deuteron_triton_profile20)_ 2.14519402096007674e+01 +Deuteron-triton_Coulomb_log_at_point_21__________________________________ (plasma_coulomb_log_deuteron_triton_profile21)_ 2.14516599337624640e+01 +Deuteron-triton_Coulomb_log_at_point_22__________________________________ (plasma_coulomb_log_deuteron_triton_profile22)_ 2.14513659451789351e+01 +Deuteron-triton_Coulomb_log_at_point_23__________________________________ (plasma_coulomb_log_deuteron_triton_profile23)_ 2.14510582380268069e+01 +Deuteron-triton_Coulomb_log_at_point_24__________________________________ (plasma_coulomb_log_deuteron_triton_profile24)_ 2.14507368062254891e+01 +Deuteron-triton_Coulomb_log_at_point_25__________________________________ (plasma_coulomb_log_deuteron_triton_profile25)_ 2.14504016433783278e+01 +Deuteron-triton_Coulomb_log_at_point_26__________________________________ (plasma_coulomb_log_deuteron_triton_profile26)_ 2.14500527428257435e+01 +Deuteron-triton_Coulomb_log_at_point_27__________________________________ (plasma_coulomb_log_deuteron_triton_profile27)_ 2.14496900976472169e+01 +Deuteron-triton_Coulomb_log_at_point_28__________________________________ (plasma_coulomb_log_deuteron_triton_profile28)_ 2.14493137006486840e+01 +Deuteron-triton_Coulomb_log_at_point_29__________________________________ (plasma_coulomb_log_deuteron_triton_profile29)_ 2.14489235443376565e+01 +Deuteron-triton_Coulomb_log_at_point_30__________________________________ (plasma_coulomb_log_deuteron_triton_profile30)_ 2.14485196209836815e+01 +Deuteron-triton_Coulomb_log_at_point_31__________________________________ (plasma_coulomb_log_deuteron_triton_profile31)_ 2.14481019225397986e+01 +Deuteron-triton_Coulomb_log_at_point_32__________________________________ (plasma_coulomb_log_deuteron_triton_profile32)_ 2.14476704407029644e+01 +Deuteron-triton_Coulomb_log_at_point_33__________________________________ (plasma_coulomb_log_deuteron_triton_profile33)_ 2.14472251668866747e+01 +Deuteron-triton_Coulomb_log_at_point_34__________________________________ (plasma_coulomb_log_deuteron_triton_profile34)_ 2.14467660922423669e+01 +Deuteron-triton_Coulomb_log_at_point_35__________________________________ (plasma_coulomb_log_deuteron_triton_profile35)_ 2.14462932076002133e+01 +Deuteron-triton_Coulomb_log_at_point_36__________________________________ (plasma_coulomb_log_deuteron_triton_profile36)_ 2.14458065035882015e+01 +Deuteron-triton_Coulomb_log_at_point_37__________________________________ (plasma_coulomb_log_deuteron_triton_profile37)_ 2.14453059704776123e+01 +Deuteron-triton_Coulomb_log_at_point_38__________________________________ (plasma_coulomb_log_deuteron_triton_profile38)_ 2.14447915982971793e+01 +Deuteron-triton_Coulomb_log_at_point_39__________________________________ (plasma_coulomb_log_deuteron_triton_profile39)_ 2.14442633768006878e+01 +Deuteron-triton_Coulomb_log_at_point_40__________________________________ (plasma_coulomb_log_deuteron_triton_profile40)_ 2.14437212954173511e+01 +Deuteron-triton_Coulomb_log_at_point_41__________________________________ (plasma_coulomb_log_deuteron_triton_profile41)_ 2.14431653433734546e+01 +Deuteron-triton_Coulomb_log_at_point_42__________________________________ (plasma_coulomb_log_deuteron_triton_profile42)_ 2.14425955095398955e+01 +Deuteron-triton_Coulomb_log_at_point_43__________________________________ (plasma_coulomb_log_deuteron_triton_profile43)_ 2.14420117825464978e+01 +Deuteron-triton_Coulomb_log_at_point_44__________________________________ (plasma_coulomb_log_deuteron_triton_profile44)_ 2.14414141507126708e+01 +Deuteron-triton_Coulomb_log_at_point_45__________________________________ (plasma_coulomb_log_deuteron_triton_profile45)_ 2.14408026020907201e+01 +Deuteron-triton_Coulomb_log_at_point_46__________________________________ (plasma_coulomb_log_deuteron_triton_profile46)_ 2.14401771244749213e+01 +Deuteron-triton_Coulomb_log_at_point_47__________________________________ (plasma_coulomb_log_deuteron_triton_profile47)_ 2.14395377052951588e+01 +Deuteron-triton_Coulomb_log_at_point_48__________________________________ (plasma_coulomb_log_deuteron_triton_profile48)_ 2.14388843317903408e+01 +Deuteron-triton_Coulomb_log_at_point_49__________________________________ (plasma_coulomb_log_deuteron_triton_profile49)_ 2.14382169908283196e+01 +Deuteron-triton_Coulomb_log_at_point_50__________________________________ (plasma_coulomb_log_deuteron_triton_profile50)_ 2.14375356690572936e+01 +Deuteron-triton_Coulomb_log_at_point_51__________________________________ (plasma_coulomb_log_deuteron_triton_profile51)_ 2.14368403528017382e+01 +Deuteron-triton_Coulomb_log_at_point_52__________________________________ (plasma_coulomb_log_deuteron_triton_profile52)_ 2.14361310281056916e+01 +Deuteron-triton_Coulomb_log_at_point_53__________________________________ (plasma_coulomb_log_deuteron_triton_profile53)_ 2.14354076807146221e+01 +Deuteron-triton_Coulomb_log_at_point_54__________________________________ (plasma_coulomb_log_deuteron_triton_profile54)_ 2.14346702961064608e+01 +Deuteron-triton_Coulomb_log_at_point_55__________________________________ (plasma_coulomb_log_deuteron_triton_profile55)_ 2.14339188594487844e+01 +Deuteron-triton_Coulomb_log_at_point_56__________________________________ (plasma_coulomb_log_deuteron_triton_profile56)_ 2.14331533556051568e+01 +Deuteron-triton_Coulomb_log_at_point_57__________________________________ (plasma_coulomb_log_deuteron_triton_profile57)_ 2.14323737691834459e+01 +Deuteron-triton_Coulomb_log_at_point_58__________________________________ (plasma_coulomb_log_deuteron_triton_profile58)_ 2.14315800844657467e+01 +Deuteron-triton_Coulomb_log_at_point_59__________________________________ (plasma_coulomb_log_deuteron_triton_profile59)_ 2.14307722854640481e+01 +Deuteron-triton_Coulomb_log_at_point_60__________________________________ (plasma_coulomb_log_deuteron_triton_profile60)_ 2.14299503558673159e+01 +Deuteron-triton_Coulomb_log_at_point_61__________________________________ (plasma_coulomb_log_deuteron_triton_profile61)_ 2.14291142790996858e+01 +Deuteron-triton_Coulomb_log_at_point_62__________________________________ (plasma_coulomb_log_deuteron_triton_profile62)_ 2.14282640382476259e+01 +Deuteron-triton_Coulomb_log_at_point_63__________________________________ (plasma_coulomb_log_deuteron_triton_profile63)_ 2.14273996161503675e+01 +Deuteron-triton_Coulomb_log_at_point_64__________________________________ (plasma_coulomb_log_deuteron_triton_profile64)_ 2.14265209953021838e+01 +Deuteron-triton_Coulomb_log_at_point_65__________________________________ (plasma_coulomb_log_deuteron_triton_profile65)_ 2.14256281579279886e+01 +Deuteron-triton_Coulomb_log_at_point_66__________________________________ (plasma_coulomb_log_deuteron_triton_profile66)_ 2.14247210859300701e+01 +Deuteron-triton_Coulomb_log_at_point_67__________________________________ (plasma_coulomb_log_deuteron_triton_profile67)_ 2.14237997609290645e+01 +Deuteron-triton_Coulomb_log_at_point_68__________________________________ (plasma_coulomb_log_deuteron_triton_profile68)_ 2.14228641642204813e+01 +Deuteron-triton_Coulomb_log_at_point_69__________________________________ (plasma_coulomb_log_deuteron_triton_profile69)_ 2.14219142768106892e+01 +Deuteron-triton_Coulomb_log_at_point_70__________________________________ (plasma_coulomb_log_deuteron_triton_profile70)_ 2.14209500794007432e+01 +Deuteron-triton_Coulomb_log_at_point_71__________________________________ (plasma_coulomb_log_deuteron_triton_profile71)_ 2.14199715523875618e+01 +Deuteron-triton_Coulomb_log_at_point_72__________________________________ (plasma_coulomb_log_deuteron_triton_profile72)_ 2.14189786758451319e+01 +Deuteron-triton_Coulomb_log_at_point_73__________________________________ (plasma_coulomb_log_deuteron_triton_profile73)_ 2.14179714295480714e+01 +Deuteron-triton_Coulomb_log_at_point_74__________________________________ (plasma_coulomb_log_deuteron_triton_profile74)_ 2.14169497929627823e+01 +Deuteron-triton_Coulomb_log_at_point_75__________________________________ (plasma_coulomb_log_deuteron_triton_profile75)_ 2.14159137452610473e+01 +Deuteron-triton_Coulomb_log_at_point_76__________________________________ (plasma_coulomb_log_deuteron_triton_profile76)_ 2.14148632652586386e+01 +Deuteron-triton_Coulomb_log_at_point_77__________________________________ (plasma_coulomb_log_deuteron_triton_profile77)_ 2.14137983315063423e+01 +Deuteron-triton_Coulomb_log_at_point_78__________________________________ (plasma_coulomb_log_deuteron_triton_profile78)_ 2.14127189222260164e+01 +Deuteron-triton_Coulomb_log_at_point_79__________________________________ (plasma_coulomb_log_deuteron_triton_profile79)_ 2.14116250152965257e+01 +Deuteron-triton_Coulomb_log_at_point_80__________________________________ (plasma_coulomb_log_deuteron_triton_profile80)_ 2.14105165883148487e+01 +Deuteron-triton_Coulomb_log_at_point_81__________________________________ (plasma_coulomb_log_deuteron_triton_profile81)_ 2.14093936185369174e+01 +Deuteron-triton_Coulomb_log_at_point_82__________________________________ (plasma_coulomb_log_deuteron_triton_profile82)_ 2.14082560829187010e+01 +Deuteron-triton_Coulomb_log_at_point_83__________________________________ (plasma_coulomb_log_deuteron_triton_profile83)_ 2.14071039580920512e+01 +Deuteron-triton_Coulomb_log_at_point_84__________________________________ (plasma_coulomb_log_deuteron_triton_profile84)_ 2.14059372203429454e+01 +Deuteron-triton_Coulomb_log_at_point_85__________________________________ (plasma_coulomb_log_deuteron_triton_profile85)_ 2.14047558456702340e+01 +Deuteron-triton_Coulomb_log_at_point_86__________________________________ (plasma_coulomb_log_deuteron_triton_profile86)_ 2.14035598097236175e+01 +Deuteron-triton_Coulomb_log_at_point_87__________________________________ (plasma_coulomb_log_deuteron_triton_profile87)_ 2.14023490878245575e+01 +Deuteron-triton_Coulomb_log_at_point_88__________________________________ (plasma_coulomb_log_deuteron_triton_profile88)_ 2.14011236549898776e+01 +Deuteron-triton_Coulomb_log_at_point_89__________________________________ (plasma_coulomb_log_deuteron_triton_profile89)_ 2.13998834858896352e+01 +Deuteron-triton_Coulomb_log_at_point_90__________________________________ (plasma_coulomb_log_deuteron_triton_profile90)_ 2.13986285548604833e+01 +Deuteron-triton_Coulomb_log_at_point_91__________________________________ (plasma_coulomb_log_deuteron_triton_profile91)_ 2.13973588359368598e+01 +Deuteron-triton_Coulomb_log_at_point_92__________________________________ (plasma_coulomb_log_deuteron_triton_profile92)_ 2.13960743027731795e+01 +Deuteron-triton_Coulomb_log_at_point_93__________________________________ (plasma_coulomb_log_deuteron_triton_profile93)_ 2.13947749287434057e+01 +Deuteron-triton_Coulomb_log_at_point_94__________________________________ (plasma_coulomb_log_deuteron_triton_profile94)_ 2.13934606868301174e+01 +Deuteron-triton_Coulomb_log_at_point_95__________________________________ (plasma_coulomb_log_deuteron_triton_profile95)_ 2.13921315497241871e+01 +Deuteron-triton_Coulomb_log_at_point_96__________________________________ (plasma_coulomb_log_deuteron_triton_profile96)_ 2.13907874897492185e+01 +Deuteron-triton_Coulomb_log_at_point_97__________________________________ (plasma_coulomb_log_deuteron_triton_profile97)_ 2.13894284788951836e+01 +Deuteron-triton_Coulomb_log_at_point_98__________________________________ (plasma_coulomb_log_deuteron_triton_profile98)_ 2.13880544888241850e+01 +Deuteron-triton_Coulomb_log_at_point_99__________________________________ (plasma_coulomb_log_deuteron_triton_profile99)_ 2.13866654908250844e+01 +Deuteron-triton_Coulomb_log_at_point_100_________________________________ (plasma_coulomb_log_deuteron_triton_profile100)_ 2.13852614558830112e+01 +Deuteron-triton_Coulomb_log_at_point_101_________________________________ (plasma_coulomb_log_deuteron_triton_profile101)_ 2.13838423545904597e+01 +Deuteron-triton_Coulomb_log_at_point_102_________________________________ (plasma_coulomb_log_deuteron_triton_profile102)_ 2.13824081572193556e+01 +Deuteron-triton_Coulomb_log_at_point_103_________________________________ (plasma_coulomb_log_deuteron_triton_profile103)_ 2.13809588336934695e+01 +Deuteron-triton_Coulomb_log_at_point_104_________________________________ (plasma_coulomb_log_deuteron_triton_profile104)_ 2.13794943535631781e+01 +Deuteron-triton_Coulomb_log_at_point_105_________________________________ (plasma_coulomb_log_deuteron_triton_profile105)_ 2.13780146860495464e+01 +Deuteron-triton_Coulomb_log_at_point_106_________________________________ (plasma_coulomb_log_deuteron_triton_profile106)_ 2.13765197999830576e+01 +Deuteron-triton_Coulomb_log_at_point_107_________________________________ (plasma_coulomb_log_deuteron_triton_profile107)_ 2.13750096638992062e+01 +Deuteron-triton_Coulomb_log_at_point_108_________________________________ (plasma_coulomb_log_deuteron_triton_profile108)_ 2.13734842459050078e+01 +Deuteron-triton_Coulomb_log_at_point_109_________________________________ (plasma_coulomb_log_deuteron_triton_profile109)_ 2.13719435137848883e+01 +Deuteron-triton_Coulomb_log_at_point_110_________________________________ (plasma_coulomb_log_deuteron_triton_profile110)_ 2.13703874349443197e+01 +Deuteron-triton_Coulomb_log_at_point_111_________________________________ (plasma_coulomb_log_deuteron_triton_profile111)_ 2.13688159764385013e+01 +Deuteron-triton_Coulomb_log_at_point_112_________________________________ (plasma_coulomb_log_deuteron_triton_profile112)_ 2.13672291049675387e+01 +Deuteron-triton_Coulomb_log_at_point_113_________________________________ (plasma_coulomb_log_deuteron_triton_profile113)_ 2.13656267868248264e+01 +Deuteron-triton_Coulomb_log_at_point_114_________________________________ (plasma_coulomb_log_deuteron_triton_profile114)_ 2.13640089879516317e+01 +Deuteron-triton_Coulomb_log_at_point_115_________________________________ (plasma_coulomb_log_deuteron_triton_profile115)_ 2.13623756739243831e+01 +Deuteron-triton_Coulomb_log_at_point_116_________________________________ (plasma_coulomb_log_deuteron_triton_profile116)_ 2.13607268099496821e+01 +Deuteron-triton_Coulomb_log_at_point_117_________________________________ (plasma_coulomb_log_deuteron_triton_profile117)_ 2.13590623608357610e+01 +Deuteron-triton_Coulomb_log_at_point_118_________________________________ (plasma_coulomb_log_deuteron_triton_profile118)_ 2.13573822910238320e+01 +Deuteron-triton_Coulomb_log_at_point_119_________________________________ (plasma_coulomb_log_deuteron_triton_profile119)_ 2.13556865646039356e+01 +Deuteron-triton_Coulomb_log_at_point_120_________________________________ (plasma_coulomb_log_deuteron_triton_profile120)_ 2.13539751452182749e+01 +Deuteron-triton_Coulomb_log_at_point_121_________________________________ (plasma_coulomb_log_deuteron_triton_profile121)_ 2.13522479961893623e+01 +Deuteron-triton_Coulomb_log_at_point_122_________________________________ (plasma_coulomb_log_deuteron_triton_profile122)_ 2.13505050804153953e+01 +Deuteron-triton_Coulomb_log_at_point_123_________________________________ (plasma_coulomb_log_deuteron_triton_profile123)_ 2.13487463604226058e+01 +Deuteron-triton_Coulomb_log_at_point_124_________________________________ (plasma_coulomb_log_deuteron_triton_profile124)_ 2.13469717983389806e+01 +Deuteron-triton_Coulomb_log_at_point_125_________________________________ (plasma_coulomb_log_deuteron_triton_profile125)_ 2.13451813559310750e+01 +Deuteron-triton_Coulomb_log_at_point_126_________________________________ (plasma_coulomb_log_deuteron_triton_profile126)_ 2.13433749944853126e+01 +Deuteron-triton_Coulomb_log_at_point_127_________________________________ (plasma_coulomb_log_deuteron_triton_profile127)_ 2.13415526749765014e+01 +Deuteron-triton_Coulomb_log_at_point_128_________________________________ (plasma_coulomb_log_deuteron_triton_profile128)_ 2.13397143579676722e+01 +Deuteron-triton_Coulomb_log_at_point_129_________________________________ (plasma_coulomb_log_deuteron_triton_profile129)_ 2.13378600035779904e+01 +Deuteron-triton_Coulomb_log_at_point_130_________________________________ (plasma_coulomb_log_deuteron_triton_profile130)_ 2.13359895715459977e+01 +Deuteron-triton_Coulomb_log_at_point_131_________________________________ (plasma_coulomb_log_deuteron_triton_profile131)_ 2.13341030212454967e+01 +Deuteron-triton_Coulomb_log_at_point_132_________________________________ (plasma_coulomb_log_deuteron_triton_profile132)_ 2.13322003115391325e+01 +Deuteron-triton_Coulomb_log_at_point_133_________________________________ (plasma_coulomb_log_deuteron_triton_profile133)_ 2.13302814010040436e+01 +Deuteron-triton_Coulomb_log_at_point_134_________________________________ (plasma_coulomb_log_deuteron_triton_profile134)_ 2.13283462477081294e+01 +Deuteron-triton_Coulomb_log_at_point_135_________________________________ (plasma_coulomb_log_deuteron_triton_profile135)_ 2.13263948093293614e+01 +Deuteron-triton_Coulomb_log_at_point_136_________________________________ (plasma_coulomb_log_deuteron_triton_profile136)_ 2.13244270431636380e+01 +Deuteron-triton_Coulomb_log_at_point_137_________________________________ (plasma_coulomb_log_deuteron_triton_profile137)_ 2.13224429060280869e+01 +Deuteron-triton_Coulomb_log_at_point_138_________________________________ (plasma_coulomb_log_deuteron_triton_profile138)_ 2.13204423543730321e+01 +Deuteron-triton_Coulomb_log_at_point_139_________________________________ (plasma_coulomb_log_deuteron_triton_profile139)_ 2.13184253441797260e+01 +Deuteron-triton_Coulomb_log_at_point_140_________________________________ (plasma_coulomb_log_deuteron_triton_profile140)_ 2.13163918310241911e+01 +Deuteron-triton_Coulomb_log_at_point_141_________________________________ (plasma_coulomb_log_deuteron_triton_profile141)_ 2.13143417700472178e+01 +Deuteron-triton_Coulomb_log_at_point_142_________________________________ (plasma_coulomb_log_deuteron_triton_profile142)_ 2.13122751159564636e+01 +Deuteron-triton_Coulomb_log_at_point_143_________________________________ (plasma_coulomb_log_deuteron_triton_profile143)_ 2.13101918230123530e+01 +Deuteron-triton_Coulomb_log_at_point_144_________________________________ (plasma_coulomb_log_deuteron_triton_profile144)_ 2.13080918450626342e+01 +Deuteron-triton_Coulomb_log_at_point_145_________________________________ (plasma_coulomb_log_deuteron_triton_profile145)_ 2.13059751354849105e+01 +Deuteron-triton_Coulomb_log_at_point_146_________________________________ (plasma_coulomb_log_deuteron_triton_profile146)_ 2.13038416472265553e+01 +Deuteron-triton_Coulomb_log_at_point_147_________________________________ (plasma_coulomb_log_deuteron_triton_profile147)_ 2.13016913328068362e+01 +Deuteron-triton_Coulomb_log_at_point_148_________________________________ (plasma_coulomb_log_deuteron_triton_profile148)_ 2.12995241442563099e+01 +Deuteron-triton_Coulomb_log_at_point_149_________________________________ (plasma_coulomb_log_deuteron_triton_profile149)_ 2.12973400331813458e+01 +Deuteron-triton_Coulomb_log_at_point_150_________________________________ (plasma_coulomb_log_deuteron_triton_profile150)_ 2.12951389507498732e+01 +Deuteron-triton_Coulomb_log_at_point_151_________________________________ (plasma_coulomb_log_deuteron_triton_profile151)_ 2.12929208476001897e+01 +Deuteron-triton_Coulomb_log_at_point_152_________________________________ (plasma_coulomb_log_deuteron_triton_profile152)_ 2.12906856740180928e+01 +Deuteron-triton_Coulomb_log_at_point_153_________________________________ (plasma_coulomb_log_deuteron_triton_profile153)_ 2.12884333797194785e+01 +Deuteron-triton_Coulomb_log_at_point_154_________________________________ (plasma_coulomb_log_deuteron_triton_profile154)_ 2.12861639140415129e+01 +Deuteron-triton_Coulomb_log_at_point_155_________________________________ (plasma_coulomb_log_deuteron_triton_profile155)_ 2.12838772257822626e+01 +Deuteron-triton_Coulomb_log_at_point_156_________________________________ (plasma_coulomb_log_deuteron_triton_profile156)_ 2.12815732633263615e+01 +Deuteron-triton_Coulomb_log_at_point_157_________________________________ (plasma_coulomb_log_deuteron_triton_profile157)_ 2.12792519745447457e+01 +Deuteron-triton_Coulomb_log_at_point_158_________________________________ (plasma_coulomb_log_deuteron_triton_profile158)_ 2.12769133068599068e+01 +Deuteron-triton_Coulomb_log_at_point_159_________________________________ (plasma_coulomb_log_deuteron_triton_profile159)_ 2.12745572071644276e+01 +Deuteron-triton_Coulomb_log_at_point_160_________________________________ (plasma_coulomb_log_deuteron_triton_profile160)_ 2.12721836219197336e+01 +Deuteron-triton_Coulomb_log_at_point_161_________________________________ (plasma_coulomb_log_deuteron_triton_profile161)_ 2.12697924970884351e+01 +Deuteron-triton_Coulomb_log_at_point_162_________________________________ (plasma_coulomb_log_deuteron_triton_profile162)_ 2.12673837781274777e+01 +Deuteron-triton_Coulomb_log_at_point_163_________________________________ (plasma_coulomb_log_deuteron_triton_profile163)_ 2.12649574100007932e+01 +Deuteron-triton_Coulomb_log_at_point_164_________________________________ (plasma_coulomb_log_deuteron_triton_profile164)_ 2.12625133372033126e+01 +Deuteron-triton_Coulomb_log_at_point_165_________________________________ (plasma_coulomb_log_deuteron_triton_profile165)_ 2.12600515036981079e+01 +Deuteron-triton_Coulomb_log_at_point_166_________________________________ (plasma_coulomb_log_deuteron_triton_profile166)_ 2.12575718529626734e+01 +Deuteron-triton_Coulomb_log_at_point_167_________________________________ (plasma_coulomb_log_deuteron_triton_profile167)_ 2.12550743279933876e+01 +Deuteron-triton_Coulomb_log_at_point_168_________________________________ (plasma_coulomb_log_deuteron_triton_profile168)_ 2.12525588712139069e+01 +Deuteron-triton_Coulomb_log_at_point_169_________________________________ (plasma_coulomb_log_deuteron_triton_profile169)_ 2.12500254245723035e+01 +Deuteron-triton_Coulomb_log_at_point_170_________________________________ (plasma_coulomb_log_deuteron_triton_profile170)_ 2.12474739295371506e+01 +Deuteron-triton_Coulomb_log_at_point_171_________________________________ (plasma_coulomb_log_deuteron_triton_profile171)_ 2.12449043270025442e+01 +Deuteron-triton_Coulomb_log_at_point_172_________________________________ (plasma_coulomb_log_deuteron_triton_profile172)_ 2.12423165573658572e+01 +Deuteron-triton_Coulomb_log_at_point_173_________________________________ (plasma_coulomb_log_deuteron_triton_profile173)_ 2.12397105604864826e+01 +Deuteron-triton_Coulomb_log_at_point_174_________________________________ (plasma_coulomb_log_deuteron_triton_profile174)_ 2.12370862757298973e+01 +Deuteron-triton_Coulomb_log_at_point_175_________________________________ (plasma_coulomb_log_deuteron_triton_profile175)_ 2.12344436418689781e+01 +Deuteron-triton_Coulomb_log_at_point_176_________________________________ (plasma_coulomb_log_deuteron_triton_profile176)_ 2.12317825972109766e+01 +Deuteron-triton_Coulomb_log_at_point_177_________________________________ (plasma_coulomb_log_deuteron_triton_profile177)_ 2.12291030794900983e+01 +Deuteron-triton_Coulomb_log_at_point_178_________________________________ (plasma_coulomb_log_deuteron_triton_profile178)_ 2.12264050258568027e+01 +Deuteron-triton_Coulomb_log_at_point_179_________________________________ (plasma_coulomb_log_deuteron_triton_profile179)_ 2.12236883730027728e+01 +Deuteron-triton_Coulomb_log_at_point_180_________________________________ (plasma_coulomb_log_deuteron_triton_profile180)_ 2.12209530569921156e+01 +Deuteron-triton_Coulomb_log_at_point_181_________________________________ (plasma_coulomb_log_deuteron_triton_profile181)_ 2.12181990133951288e+01 +Deuteron-triton_Coulomb_log_at_point_182_________________________________ (plasma_coulomb_log_deuteron_triton_profile182)_ 2.12154261771940185e+01 +Deuteron-triton_Coulomb_log_at_point_183_________________________________ (plasma_coulomb_log_deuteron_triton_profile183)_ 2.12126344828069442e+01 +Deuteron-triton_Coulomb_log_at_point_184_________________________________ (plasma_coulomb_log_deuteron_triton_profile184)_ 2.12098238641181780e+01 +Deuteron-triton_Coulomb_log_at_point_185_________________________________ (plasma_coulomb_log_deuteron_triton_profile185)_ 2.12069942544033481e+01 +Deuteron-triton_Coulomb_log_at_point_186_________________________________ (plasma_coulomb_log_deuteron_triton_profile186)_ 2.12041455864208501e+01 +Deuteron-triton_Coulomb_log_at_point_187_________________________________ (plasma_coulomb_log_deuteron_triton_profile187)_ 2.12012777922928883e+01 +Deuteron-triton_Coulomb_log_at_point_188_________________________________ (plasma_coulomb_log_deuteron_triton_profile188)_ 2.11983908036205619e+01 +Deuteron-triton_Coulomb_log_at_point_189_________________________________ (plasma_coulomb_log_deuteron_triton_profile189)_ 2.11954845513820871e+01 +Deuteron-triton_Coulomb_log_at_point_190_________________________________ (plasma_coulomb_log_deuteron_triton_profile190)_ 2.11925589659864357e+01 +Deuteron-triton_Coulomb_log_at_point_191_________________________________ (plasma_coulomb_log_deuteron_triton_profile191)_ 2.11896139772624998e+01 +Deuteron-triton_Coulomb_log_at_point_192_________________________________ (plasma_coulomb_log_deuteron_triton_profile192)_ 2.11866495144243459e+01 +Deuteron-triton_Coulomb_log_at_point_193_________________________________ (plasma_coulomb_log_deuteron_triton_profile193)_ 2.11836655061223702e+01 +Deuteron-triton_Coulomb_log_at_point_194_________________________________ (plasma_coulomb_log_deuteron_triton_profile194)_ 2.11806618803578850e+01 +Deuteron-triton_Coulomb_log_at_point_195_________________________________ (plasma_coulomb_log_deuteron_triton_profile195)_ 2.11776385645879905e+01 +Deuteron-triton_Coulomb_log_at_point_196_________________________________ (plasma_coulomb_log_deuteron_triton_profile196)_ 2.11745954856070568e+01 +Deuteron-triton_Coulomb_log_at_point_197_________________________________ (plasma_coulomb_log_deuteron_triton_profile197)_ 2.11715325696369199e+01 +Deuteron-triton_Coulomb_log_at_point_198_________________________________ (plasma_coulomb_log_deuteron_triton_profile198)_ 2.11684497422617284e+01 +Deuteron-triton_Coulomb_log_at_point_199_________________________________ (plasma_coulomb_log_deuteron_triton_profile199)_ 2.11653469284525109e+01 +Deuteron-triton_Coulomb_log_at_point_200_________________________________ (plasma_coulomb_log_deuteron_triton_profile200)_ 2.11622240525436141e+01 +Deuteron-triton_Coulomb_log_at_point_201_________________________________ (plasma_coulomb_log_deuteron_triton_profile201)_ 2.11590810382756480e+01 +Deuteron-triton_Coulomb_log_at_point_202_________________________________ (plasma_coulomb_log_deuteron_triton_profile202)_ 2.11559178087234514e+01 +Deuteron-triton_Coulomb_log_at_point_203_________________________________ (plasma_coulomb_log_deuteron_triton_profile203)_ 2.11527342863572088e+01 +Deuteron-triton_Coulomb_log_at_point_204_________________________________ (plasma_coulomb_log_deuteron_triton_profile204)_ 2.11495303929577894e+01 +Deuteron-triton_Coulomb_log_at_point_205_________________________________ (plasma_coulomb_log_deuteron_triton_profile205)_ 2.11463060497299722e+01 +Deuteron-triton_Coulomb_log_at_point_206_________________________________ (plasma_coulomb_log_deuteron_triton_profile206)_ 2.11430611772054924e+01 +Deuteron-triton_Coulomb_log_at_point_207_________________________________ (plasma_coulomb_log_deuteron_triton_profile207)_ 2.11397956952032082e+01 +Deuteron-triton_Coulomb_log_at_point_208_________________________________ (plasma_coulomb_log_deuteron_triton_profile208)_ 2.11365095230169651e+01 +Deuteron-triton_Coulomb_log_at_point_209_________________________________ (plasma_coulomb_log_deuteron_triton_profile209)_ 2.11332025791392937e+01 +Deuteron-triton_Coulomb_log_at_point_210_________________________________ (plasma_coulomb_log_deuteron_triton_profile210)_ 2.11298747815142960e+01 +Deuteron-triton_Coulomb_log_at_point_211_________________________________ (plasma_coulomb_log_deuteron_triton_profile211)_ 2.11265260473529750e+01 +Deuteron-triton_Coulomb_log_at_point_212_________________________________ (plasma_coulomb_log_deuteron_triton_profile212)_ 2.11231562932106911e+01 +Deuteron-triton_Coulomb_log_at_point_213_________________________________ (plasma_coulomb_log_deuteron_triton_profile213)_ 2.11197654349877304e+01 +Deuteron-triton_Coulomb_log_at_point_214_________________________________ (plasma_coulomb_log_deuteron_triton_profile214)_ 2.11163533878735272e+01 +Deuteron-triton_Coulomb_log_at_point_215_________________________________ (plasma_coulomb_log_deuteron_triton_profile215)_ 2.11129200664125456e+01 +Deuteron-triton_Coulomb_log_at_point_216_________________________________ (plasma_coulomb_log_deuteron_triton_profile216)_ 2.11094653844263860e+01 +Deuteron-triton_Coulomb_log_at_point_217_________________________________ (plasma_coulomb_log_deuteron_triton_profile217)_ 2.11059892550799333e+01 +Deuteron-triton_Coulomb_log_at_point_218_________________________________ (plasma_coulomb_log_deuteron_triton_profile218)_ 2.11024915907840018e+01 +Deuteron-triton_Coulomb_log_at_point_219_________________________________ (plasma_coulomb_log_deuteron_triton_profile219)_ 2.10989723033598544e+01 +Deuteron-triton_Coulomb_log_at_point_220_________________________________ (plasma_coulomb_log_deuteron_triton_profile220)_ 2.10954313037896064e+01 +Deuteron-triton_Coulomb_log_at_point_221_________________________________ (plasma_coulomb_log_deuteron_triton_profile221)_ 2.10918685024667170e+01 +Deuteron-triton_Coulomb_log_at_point_222_________________________________ (plasma_coulomb_log_deuteron_triton_profile222)_ 2.10882838090187157e+01 +Deuteron-triton_Coulomb_log_at_point_223_________________________________ (plasma_coulomb_log_deuteron_triton_profile223)_ 2.10846771323548765e+01 +Deuteron-triton_Coulomb_log_at_point_224_________________________________ (plasma_coulomb_log_deuteron_triton_profile224)_ 2.10810483806696283e+01 +Deuteron-triton_Coulomb_log_at_point_225_________________________________ (plasma_coulomb_log_deuteron_triton_profile225)_ 2.10773974614751545e+01 +Deuteron-triton_Coulomb_log_at_point_226_________________________________ (plasma_coulomb_log_deuteron_triton_profile226)_ 2.10737242815052142e+01 +Deuteron-triton_Coulomb_log_at_point_227_________________________________ (plasma_coulomb_log_deuteron_triton_profile227)_ 2.10700287467892622e+01 +Deuteron-triton_Coulomb_log_at_point_228_________________________________ (plasma_coulomb_log_deuteron_triton_profile228)_ 2.10663107626368671e+01 +Deuteron-triton_Coulomb_log_at_point_229_________________________________ (plasma_coulomb_log_deuteron_triton_profile229)_ 2.10625702335990646e+01 +Deuteron-triton_Coulomb_log_at_point_230_________________________________ (plasma_coulomb_log_deuteron_triton_profile230)_ 2.10588070634781559e+01 +Deuteron-triton_Coulomb_log_at_point_231_________________________________ (plasma_coulomb_log_deuteron_triton_profile231)_ 2.10550211553509037e+01 +Deuteron-triton_Coulomb_log_at_point_232_________________________________ (plasma_coulomb_log_deuteron_triton_profile232)_ 2.10512124115461035e+01 +Deuteron-triton_Coulomb_log_at_point_233_________________________________ (plasma_coulomb_log_deuteron_triton_profile233)_ 2.10473807336416350e+01 +Deuteron-triton_Coulomb_log_at_point_234_________________________________ (plasma_coulomb_log_deuteron_triton_profile234)_ 2.10435260224780940e+01 +Deuteron-triton_Coulomb_log_at_point_235_________________________________ (plasma_coulomb_log_deuteron_triton_profile235)_ 2.10396481780333637e+01 +Deuteron-triton_Coulomb_log_at_point_236_________________________________ (plasma_coulomb_log_deuteron_triton_profile236)_ 2.10357470997143103e+01 +Deuteron-triton_Coulomb_log_at_point_237_________________________________ (plasma_coulomb_log_deuteron_triton_profile237)_ 2.10318226859729442e+01 +Deuteron-triton_Coulomb_log_at_point_238_________________________________ (plasma_coulomb_log_deuteron_triton_profile238)_ 2.10278748345986131e+01 +Deuteron-triton_Coulomb_log_at_point_239_________________________________ (plasma_coulomb_log_deuteron_triton_profile239)_ 2.10239034425925198e+01 +Deuteron-triton_Coulomb_log_at_point_240_________________________________ (plasma_coulomb_log_deuteron_triton_profile240)_ 2.10199084061646673e+01 +Deuteron-triton_Coulomb_log_at_point_241_________________________________ (plasma_coulomb_log_deuteron_triton_profile241)_ 2.10158896207341677e+01 +Deuteron-triton_Coulomb_log_at_point_242_________________________________ (plasma_coulomb_log_deuteron_triton_profile242)_ 2.10118469809974364e+01 +Deuteron-triton_Coulomb_log_at_point_243_________________________________ (plasma_coulomb_log_deuteron_triton_profile243)_ 2.10077803808006323e+01 +Deuteron-triton_Coulomb_log_at_point_244_________________________________ (plasma_coulomb_log_deuteron_triton_profile244)_ 2.10036897132211493e+01 +Deuteron-triton_Coulomb_log_at_point_245_________________________________ (plasma_coulomb_log_deuteron_triton_profile245)_ 2.09995748705959926e+01 +Deuteron-triton_Coulomb_log_at_point_246_________________________________ (plasma_coulomb_log_deuteron_triton_profile246)_ 2.09954357443896740e+01 +Deuteron-triton_Coulomb_log_at_point_247_________________________________ (plasma_coulomb_log_deuteron_triton_profile247)_ 2.09912722253107553e+01 +Deuteron-triton_Coulomb_log_at_point_248_________________________________ (plasma_coulomb_log_deuteron_triton_profile248)_ 2.09870842033099656e+01 +Deuteron-triton_Coulomb_log_at_point_249_________________________________ (plasma_coulomb_log_deuteron_triton_profile249)_ 2.09828715674434001e+01 +Deuteron-triton_Coulomb_log_at_point_250_________________________________ (plasma_coulomb_log_deuteron_triton_profile250)_ 2.09786342060526607e+01 +Deuteron-triton_Coulomb_log_at_point_251_________________________________ (plasma_coulomb_log_deuteron_triton_profile251)_ 2.09743720066211026e+01 +Deuteron-triton_Coulomb_log_at_point_252_________________________________ (plasma_coulomb_log_deuteron_triton_profile252)_ 2.09700848558615931e+01 +Deuteron-triton_Coulomb_log_at_point_253_________________________________ (plasma_coulomb_log_deuteron_triton_profile253)_ 2.09657726396588266e+01 +Deuteron-triton_Coulomb_log_at_point_254_________________________________ (plasma_coulomb_log_deuteron_triton_profile254)_ 2.09614352430915361e+01 +Deuteron-triton_Coulomb_log_at_point_255_________________________________ (plasma_coulomb_log_deuteron_triton_profile255)_ 2.09570725504164237e+01 +Deuteron-triton_Coulomb_log_at_point_256_________________________________ (plasma_coulomb_log_deuteron_triton_profile256)_ 2.09526844450802692e+01 +Deuteron-triton_Coulomb_log_at_point_257_________________________________ (plasma_coulomb_log_deuteron_triton_profile257)_ 2.09482708097465640e+01 +Deuteron-triton_Coulomb_log_at_point_258_________________________________ (plasma_coulomb_log_deuteron_triton_profile258)_ 2.09438315262230574e+01 +Deuteron-triton_Coulomb_log_at_point_259_________________________________ (plasma_coulomb_log_deuteron_triton_profile259)_ 2.09393664754952553e+01 +Deuteron-triton_Coulomb_log_at_point_260_________________________________ (plasma_coulomb_log_deuteron_triton_profile260)_ 2.09348755378001705e+01 +Deuteron-triton_Coulomb_log_at_point_261_________________________________ (plasma_coulomb_log_deuteron_triton_profile261)_ 2.09303585924605571e+01 +Deuteron-triton_Coulomb_log_at_point_262_________________________________ (plasma_coulomb_log_deuteron_triton_profile262)_ 2.09258155180445833e+01 +Deuteron-triton_Coulomb_log_at_point_263_________________________________ (plasma_coulomb_log_deuteron_triton_profile263)_ 2.09212461922933635e+01 +Deuteron-triton_Coulomb_log_at_point_264_________________________________ (plasma_coulomb_log_deuteron_triton_profile264)_ 2.09166504921198744e+01 +Deuteron-triton_Coulomb_log_at_point_265_________________________________ (plasma_coulomb_log_deuteron_triton_profile265)_ 2.09120282936079960e+01 +Deuteron-triton_Coulomb_log_at_point_266_________________________________ (plasma_coulomb_log_deuteron_triton_profile266)_ 2.09073794720336963e+01 +Deuteron-triton_Coulomb_log_at_point_267_________________________________ (plasma_coulomb_log_deuteron_triton_profile267)_ 2.09027039018794483e+01 +Deuteron-triton_Coulomb_log_at_point_268_________________________________ (plasma_coulomb_log_deuteron_triton_profile268)_ 2.08980014568012038e+01 +Deuteron-triton_Coulomb_log_at_point_269_________________________________ (plasma_coulomb_log_deuteron_triton_profile269)_ 2.08932720096207127e+01 +Deuteron-triton_Coulomb_log_at_point_270_________________________________ (plasma_coulomb_log_deuteron_triton_profile270)_ 2.08885154323587621e+01 +Deuteron-triton_Coulomb_log_at_point_271_________________________________ (plasma_coulomb_log_deuteron_triton_profile271)_ 2.08837315962096177e+01 +Deuteron-triton_Coulomb_log_at_point_272_________________________________ (plasma_coulomb_log_deuteron_triton_profile272)_ 2.08789203715862151e+01 +Deuteron-triton_Coulomb_log_at_point_273_________________________________ (plasma_coulomb_log_deuteron_triton_profile273)_ 2.08740816281252073e+01 +Deuteron-triton_Coulomb_log_at_point_274_________________________________ (plasma_coulomb_log_deuteron_triton_profile274)_ 2.08692152345529216e+01 +Deuteron-triton_Coulomb_log_at_point_275_________________________________ (plasma_coulomb_log_deuteron_triton_profile275)_ 2.08643210589040322e+01 +Deuteron-triton_Coulomb_log_at_point_276_________________________________ (plasma_coulomb_log_deuteron_triton_profile276)_ 2.08593989683922878e+01 +Deuteron-triton_Coulomb_log_at_point_277_________________________________ (plasma_coulomb_log_deuteron_triton_profile277)_ 2.08544488294119255e+01 +Deuteron-triton_Coulomb_log_at_point_278_________________________________ (plasma_coulomb_log_deuteron_triton_profile278)_ 2.08494705075928550e+01 +Deuteron-triton_Coulomb_log_at_point_279_________________________________ (plasma_coulomb_log_deuteron_triton_profile279)_ 2.08444638677574972e+01 +Deuteron-triton_Coulomb_log_at_point_280_________________________________ (plasma_coulomb_log_deuteron_triton_profile280)_ 2.08394287739924877e+01 +Deuteron-triton_Coulomb_log_at_point_281_________________________________ (plasma_coulomb_log_deuteron_triton_profile281)_ 2.08343650895945878e+01 +Deuteron-triton_Coulomb_log_at_point_282_________________________________ (plasma_coulomb_log_deuteron_triton_profile282)_ 2.08292726770932539e+01 +Deuteron-triton_Coulomb_log_at_point_283_________________________________ (plasma_coulomb_log_deuteron_triton_profile283)_ 2.08241513982427868e+01 +Deuteron-triton_Coulomb_log_at_point_284_________________________________ (plasma_coulomb_log_deuteron_triton_profile284)_ 2.08190011141005940e+01 +Deuteron-triton_Coulomb_log_at_point_285_________________________________ (plasma_coulomb_log_deuteron_triton_profile285)_ 2.08138216849426279e+01 +Deuteron-triton_Coulomb_log_at_point_286_________________________________ (plasma_coulomb_log_deuteron_triton_profile286)_ 2.08086129703110956e+01 +Deuteron-triton_Coulomb_log_at_point_287_________________________________ (plasma_coulomb_log_deuteron_triton_profile287)_ 2.08033748290319345e+01 +Deuteron-triton_Coulomb_log_at_point_288_________________________________ (plasma_coulomb_log_deuteron_triton_profile288)_ 2.07981071192289590e+01 +Deuteron-triton_Coulomb_log_at_point_289_________________________________ (plasma_coulomb_log_deuteron_triton_profile289)_ 2.07928096983306716e+01 +Deuteron-triton_Coulomb_log_at_point_290_________________________________ (plasma_coulomb_log_deuteron_triton_profile290)_ 2.07874824229934205e+01 +Deuteron-triton_Coulomb_log_at_point_291_________________________________ (plasma_coulomb_log_deuteron_triton_profile291)_ 2.07821251493325505e+01 +Deuteron-triton_Coulomb_log_at_point_292_________________________________ (plasma_coulomb_log_deuteron_triton_profile292)_ 2.07767377326710445e+01 +Deuteron-triton_Coulomb_log_at_point_293_________________________________ (plasma_coulomb_log_deuteron_triton_profile293)_ 2.07713200277240837e+01 +Deuteron-triton_Coulomb_log_at_point_294_________________________________ (plasma_coulomb_log_deuteron_triton_profile294)_ 2.07658718886134821e+01 +Deuteron-triton_Coulomb_log_at_point_295_________________________________ (plasma_coulomb_log_deuteron_triton_profile295)_ 2.07603931687315573e+01 +Deuteron-triton_Coulomb_log_at_point_296_________________________________ (plasma_coulomb_log_deuteron_triton_profile296)_ 2.07548837209466548e+01 +Deuteron-triton_Coulomb_log_at_point_297_________________________________ (plasma_coulomb_log_deuteron_triton_profile297)_ 2.07493433974927228e+01 +Deuteron-triton_Coulomb_log_at_point_298_________________________________ (plasma_coulomb_log_deuteron_triton_profile298)_ 2.07437720500757052e+01 +Deuteron-triton_Coulomb_log_at_point_299_________________________________ (plasma_coulomb_log_deuteron_triton_profile299)_ 2.07381695297628248e+01 +Deuteron-triton_Coulomb_log_at_point_300_________________________________ (plasma_coulomb_log_deuteron_triton_profile300)_ 2.07325356871697473e+01 +Deuteron-triton_Coulomb_log_at_point_301_________________________________ (plasma_coulomb_log_deuteron_triton_profile301)_ 2.07268703723302608e+01 +Deuteron-triton_Coulomb_log_at_point_302_________________________________ (plasma_coulomb_log_deuteron_triton_profile302)_ 2.07211734348238714e+01 +Deuteron-triton_Coulomb_log_at_point_303_________________________________ (plasma_coulomb_log_deuteron_triton_profile303)_ 2.07154447237633619e+01 +Deuteron-triton_Coulomb_log_at_point_304_________________________________ (plasma_coulomb_log_deuteron_triton_profile304)_ 2.07096840877824135e+01 +Deuteron-triton_Coulomb_log_at_point_305_________________________________ (plasma_coulomb_log_deuteron_triton_profile305)_ 2.07038913751255684e+01 +Deuteron-triton_Coulomb_log_at_point_306_________________________________ (plasma_coulomb_log_deuteron_triton_profile306)_ 2.06980664335654474e+01 +Deuteron-triton_Coulomb_log_at_point_307_________________________________ (plasma_coulomb_log_deuteron_triton_profile307)_ 2.06922091106363233e+01 +Deuteron-triton_Coulomb_log_at_point_308_________________________________ (plasma_coulomb_log_deuteron_triton_profile308)_ 2.06863192534251716e+01 +Deuteron-triton_Coulomb_log_at_point_309_________________________________ (plasma_coulomb_log_deuteron_triton_profile309)_ 2.06803967087826699e+01 +Deuteron-triton_Coulomb_log_at_point_310_________________________________ (plasma_coulomb_log_deuteron_triton_profile310)_ 2.06744413232004085e+01 +Deuteron-triton_Coulomb_log_at_point_311_________________________________ (plasma_coulomb_log_deuteron_triton_profile311)_ 2.06684529430134489e+01 +Deuteron-triton_Coulomb_log_at_point_312_________________________________ (plasma_coulomb_log_deuteron_triton_profile312)_ 2.06624314143362469e+01 +Deuteron-triton_Coulomb_log_at_point_313_________________________________ (plasma_coulomb_log_deuteron_triton_profile313)_ 2.06563765830458799e+01 +Deuteron-triton_Coulomb_log_at_point_314_________________________________ (plasma_coulomb_log_deuteron_triton_profile314)_ 2.06502882949869893e+01 +Deuteron-triton_Coulomb_log_at_point_315_________________________________ (plasma_coulomb_log_deuteron_triton_profile315)_ 2.06441663958575923e+01 +Deuteron-triton_Coulomb_log_at_point_316_________________________________ (plasma_coulomb_log_deuteron_triton_profile316)_ 2.06380107313428489e+01 +Deuteron-triton_Coulomb_log_at_point_317_________________________________ (plasma_coulomb_log_deuteron_triton_profile317)_ 2.06318211470641515e+01 +Deuteron-triton_Coulomb_log_at_point_318_________________________________ (plasma_coulomb_log_deuteron_triton_profile318)_ 2.06255974887576734e+01 +Deuteron-triton_Coulomb_log_at_point_319_________________________________ (plasma_coulomb_log_deuteron_triton_profile319)_ 2.06193396022451125e+01 +Deuteron-triton_Coulomb_log_at_point_320_________________________________ (plasma_coulomb_log_deuteron_triton_profile320)_ 2.06130473334360040e+01 +Deuteron-triton_Coulomb_log_at_point_321_________________________________ (plasma_coulomb_log_deuteron_triton_profile321)_ 2.06067205285184549e+01 +Deuteron-triton_Coulomb_log_at_point_322_________________________________ (plasma_coulomb_log_deuteron_triton_profile322)_ 2.06003590338750513e+01 +Deuteron-triton_Coulomb_log_at_point_323_________________________________ (plasma_coulomb_log_deuteron_triton_profile323)_ 2.05939626962650806e+01 +Deuteron-triton_Coulomb_log_at_point_324_________________________________ (plasma_coulomb_log_deuteron_triton_profile324)_ 2.05875313627337775e+01 +Deuteron-triton_Coulomb_log_at_point_325_________________________________ (plasma_coulomb_log_deuteron_triton_profile325)_ 2.05810648808602608e+01 +Deuteron-triton_Coulomb_log_at_point_326_________________________________ (plasma_coulomb_log_deuteron_triton_profile326)_ 2.05745630986473280e+01 +Deuteron-triton_Coulomb_log_at_point_327_________________________________ (plasma_coulomb_log_deuteron_triton_profile327)_ 2.05680258647526948e+01 +Deuteron-triton_Coulomb_log_at_point_328_________________________________ (plasma_coulomb_log_deuteron_triton_profile328)_ 2.05614530284196881e+01 +Deuteron-triton_Coulomb_log_at_point_329_________________________________ (plasma_coulomb_log_deuteron_triton_profile329)_ 2.05548444396682513e+01 +Deuteron-triton_Coulomb_log_at_point_330_________________________________ (plasma_coulomb_log_deuteron_triton_profile330)_ 2.05481999492195442e+01 +Deuteron-triton_Coulomb_log_at_point_331_________________________________ (plasma_coulomb_log_deuteron_triton_profile331)_ 2.05415194088419319e+01 +Deuteron-triton_Coulomb_log_at_point_332_________________________________ (plasma_coulomb_log_deuteron_triton_profile332)_ 2.05348026711474319e+01 +Deuteron-triton_Coulomb_log_at_point_333_________________________________ (plasma_coulomb_log_deuteron_triton_profile333)_ 2.05280495898148523e+01 +Deuteron-triton_Coulomb_log_at_point_334_________________________________ (plasma_coulomb_log_deuteron_triton_profile334)_ 2.05212600197860660e+01 +Deuteron-triton_Coulomb_log_at_point_335_________________________________ (plasma_coulomb_log_deuteron_triton_profile335)_ 2.05144338171647718e+01 +Deuteron-triton_Coulomb_log_at_point_336_________________________________ (plasma_coulomb_log_deuteron_triton_profile336)_ 2.05075708394135141e+01 +Deuteron-triton_Coulomb_log_at_point_337_________________________________ (plasma_coulomb_log_deuteron_triton_profile337)_ 2.05006709455276059e+01 +Deuteron-triton_Coulomb_log_at_point_338_________________________________ (plasma_coulomb_log_deuteron_triton_profile338)_ 2.04937339959809712e+01 +Deuteron-triton_Coulomb_log_at_point_339_________________________________ (plasma_coulomb_log_deuteron_triton_profile339)_ 2.04867598530614430e+01 +Deuteron-triton_Coulomb_log_at_point_340_________________________________ (plasma_coulomb_log_deuteron_triton_profile340)_ 2.04797483807591547e+01 +Deuteron-triton_Coulomb_log_at_point_341_________________________________ (plasma_coulomb_log_deuteron_triton_profile341)_ 2.04726994450466755e+01 +Deuteron-triton_Coulomb_log_at_point_342_________________________________ (plasma_coulomb_log_deuteron_triton_profile342)_ 2.04656129139957059e+01 +Deuteron-triton_Coulomb_log_at_point_343_________________________________ (plasma_coulomb_log_deuteron_triton_profile343)_ 2.04584886578469423e+01 +Deuteron-triton_Coulomb_log_at_point_344_________________________________ (plasma_coulomb_log_deuteron_triton_profile344)_ 2.04513265492370166e+01 +Deuteron-triton_Coulomb_log_at_point_345_________________________________ (plasma_coulomb_log_deuteron_triton_profile345)_ 2.04441264632628013e+01 +Deuteron-triton_Coulomb_log_at_point_346_________________________________ (plasma_coulomb_log_deuteron_triton_profile346)_ 2.04368882776574914e+01 +Deuteron-triton_Coulomb_log_at_point_347_________________________________ (plasma_coulomb_log_deuteron_triton_profile347)_ 2.04296118730879428e+01 +Deuteron-triton_Coulomb_log_at_point_348_________________________________ (plasma_coulomb_log_deuteron_triton_profile348)_ 2.04222971330788994e+01 +Deuteron-triton_Coulomb_log_at_point_349_________________________________ (plasma_coulomb_log_deuteron_triton_profile349)_ 2.04149439444264402e+01 +Deuteron-triton_Coulomb_log_at_point_350_________________________________ (plasma_coulomb_log_deuteron_triton_profile350)_ 2.04075521972327181e+01 +Deuteron-triton_Coulomb_log_at_point_351_________________________________ (plasma_coulomb_log_deuteron_triton_profile351)_ 2.04001217850919154e+01 +Deuteron-triton_Coulomb_log_at_point_352_________________________________ (plasma_coulomb_log_deuteron_triton_profile352)_ 2.03926526054708575e+01 +Deuteron-triton_Coulomb_log_at_point_353_________________________________ (plasma_coulomb_log_deuteron_triton_profile353)_ 2.03851445597034306e+01 +Deuteron-triton_Coulomb_log_at_point_354_________________________________ (plasma_coulomb_log_deuteron_triton_profile354)_ 2.03775975532621914e+01 +Deuteron-triton_Coulomb_log_at_point_355_________________________________ (plasma_coulomb_log_deuteron_triton_profile355)_ 2.03700114961325198e+01 +Deuteron-triton_Coulomb_log_at_point_356_________________________________ (plasma_coulomb_log_deuteron_triton_profile356)_ 2.03623863028046621e+01 +Deuteron-triton_Coulomb_log_at_point_357_________________________________ (plasma_coulomb_log_deuteron_triton_profile357)_ 2.03547218927574001e+01 +Deuteron-triton_Coulomb_log_at_point_358_________________________________ (plasma_coulomb_log_deuteron_triton_profile358)_ 2.03470181905312018e+01 +Deuteron-triton_Coulomb_log_at_point_359_________________________________ (plasma_coulomb_log_deuteron_triton_profile359)_ 2.03392751261282392e+01 +Deuteron-triton_Coulomb_log_at_point_360_________________________________ (plasma_coulomb_log_deuteron_triton_profile360)_ 2.03314926351626610e+01 +Deuteron-triton_Coulomb_log_at_point_361_________________________________ (plasma_coulomb_log_deuteron_triton_profile361)_ 2.03236706593554750e+01 +Deuteron-triton_Coulomb_log_at_point_362_________________________________ (plasma_coulomb_log_deuteron_triton_profile362)_ 2.03158091465697197e+01 +Deuteron-triton_Coulomb_log_at_point_363_________________________________ (plasma_coulomb_log_deuteron_triton_profile363)_ 2.03079080513444801e+01 +Deuteron-triton_Coulomb_log_at_point_364_________________________________ (plasma_coulomb_log_deuteron_triton_profile364)_ 2.02999673350972927e+01 +Deuteron-triton_Coulomb_log_at_point_365_________________________________ (plasma_coulomb_log_deuteron_triton_profile365)_ 2.02919869666173582e+01 +Deuteron-triton_Coulomb_log_at_point_366_________________________________ (plasma_coulomb_log_deuteron_triton_profile366)_ 2.02839669221634260e+01 +Deuteron-triton_Coulomb_log_at_point_367_________________________________ (plasma_coulomb_log_deuteron_triton_profile367)_ 2.02759071861857088e+01 +Deuteron-triton_Coulomb_log_at_point_368_________________________________ (plasma_coulomb_log_deuteron_triton_profile368)_ 2.02678077513790633e+01 +Deuteron-triton_Coulomb_log_at_point_369_________________________________ (plasma_coulomb_log_deuteron_triton_profile369)_ 2.02596686193304443e+01 +Deuteron-triton_Coulomb_log_at_point_370_________________________________ (plasma_coulomb_log_deuteron_triton_profile370)_ 2.02514898007786144e+01 +Deuteron-triton_Coulomb_log_at_point_371_________________________________ (plasma_coulomb_log_deuteron_triton_profile371)_ 2.02432713162429572e+01 +Deuteron-triton_Coulomb_log_at_point_372_________________________________ (plasma_coulomb_log_deuteron_triton_profile372)_ 2.02350131962467898e+01 +Deuteron-triton_Coulomb_log_at_point_373_________________________________ (plasma_coulomb_log_deuteron_triton_profile373)_ 2.02267154820524304e+01 +Deuteron-triton_Coulomb_log_at_point_374_________________________________ (plasma_coulomb_log_deuteron_triton_profile374)_ 2.02183782259466653e+01 +Deuteron-triton_Coulomb_log_at_point_375_________________________________ (plasma_coulomb_log_deuteron_triton_profile375)_ 2.02100014918743582e+01 +Deuteron-triton_Coulomb_log_at_point_376_________________________________ (plasma_coulomb_log_deuteron_triton_profile376)_ 2.02015853560332737e+01 +Deuteron-triton_Coulomb_log_at_point_377_________________________________ (plasma_coulomb_log_deuteron_triton_profile377)_ 2.01931299072727306e+01 +Deuteron-triton_Coulomb_log_at_point_378_________________________________ (plasma_coulomb_log_deuteron_triton_profile378)_ 2.01846352478570665e+01 +Deuteron-triton_Coulomb_log_at_point_379_________________________________ (plasma_coulomb_log_deuteron_triton_profile379)_ 2.01761014940743344e+01 +Deuteron-triton_Coulomb_log_at_point_380_________________________________ (plasma_coulomb_log_deuteron_triton_profile380)_ 2.01675287767782478e+01 +Deuteron-triton_Coulomb_log_at_point_381_________________________________ (plasma_coulomb_log_deuteron_triton_profile381)_ 2.01589172420899061e+01 +Deuteron-triton_Coulomb_log_at_point_382_________________________________ (plasma_coulomb_log_deuteron_triton_profile382)_ 2.01502670522214160e+01 +Deuteron-triton_Coulomb_log_at_point_383_________________________________ (plasma_coulomb_log_deuteron_triton_profile383)_ 2.01415783860322541e+01 +Deuteron-triton_Coulomb_log_at_point_384_________________________________ (plasma_coulomb_log_deuteron_triton_profile384)_ 2.01328514400412750e+01 +Deuteron-triton_Coulomb_log_at_point_385_________________________________ (plasma_coulomb_log_deuteron_triton_profile385)_ 2.01240864289063417e+01 +Deuteron-triton_Coulomb_log_at_point_386_________________________________ (plasma_coulomb_log_deuteron_triton_profile386)_ 2.01152835866388813e+01 +Deuteron-triton_Coulomb_log_at_point_387_________________________________ (plasma_coulomb_log_deuteron_triton_profile387)_ 2.01064431670807622e+01 +Deuteron-triton_Coulomb_log_at_point_388_________________________________ (plasma_coulomb_log_deuteron_triton_profile388)_ 2.00975654452319610e+01 +Deuteron-triton_Coulomb_log_at_point_389_________________________________ (plasma_coulomb_log_deuteron_triton_profile389)_ 2.00886507178614799e+01 +Deuteron-triton_Coulomb_log_at_point_390_________________________________ (plasma_coulomb_log_deuteron_triton_profile390)_ 2.00796993046737384e+01 +Deuteron-triton_Coulomb_log_at_point_391_________________________________ (plasma_coulomb_log_deuteron_triton_profile391)_ 2.00707115493272532e+01 +Deuteron-triton_Coulomb_log_at_point_392_________________________________ (plasma_coulomb_log_deuteron_triton_profile392)_ 2.00616878205724518e+01 +Deuteron-triton_Coulomb_log_at_point_393_________________________________ (plasma_coulomb_log_deuteron_triton_profile393)_ 2.00526285133274271e+01 +Deuteron-triton_Coulomb_log_at_point_394_________________________________ (plasma_coulomb_log_deuteron_triton_profile394)_ 2.00435340498272154e+01 +Deuteron-triton_Coulomb_log_at_point_395_________________________________ (plasma_coulomb_log_deuteron_triton_profile395)_ 2.00344048810455568e+01 +Deuteron-triton_Coulomb_log_at_point_396_________________________________ (plasma_coulomb_log_deuteron_triton_profile396)_ 2.00252414877745224e+01 +Deuteron-triton_Coulomb_log_at_point_397_________________________________ (plasma_coulomb_log_deuteron_triton_profile397)_ 2.00160443821679195e+01 +Deuteron-triton_Coulomb_log_at_point_398_________________________________ (plasma_coulomb_log_deuteron_triton_profile398)_ 2.00068141091559006e+01 +Deuteron-triton_Coulomb_log_at_point_399_________________________________ (plasma_coulomb_log_deuteron_triton_profile399)_ 1.99975512477958404e+01 +Deuteron-triton_Coulomb_log_at_point_400_________________________________ (plasma_coulomb_log_deuteron_triton_profile400)_ 1.99882564129466616e+01 +Deuteron-triton_Coulomb_log_at_point_401_________________________________ (plasma_coulomb_log_deuteron_triton_profile401)_ 1.99789302568442224e+01 +Deuteron-triton_Coulomb_log_at_point_402_________________________________ (plasma_coulomb_log_deuteron_triton_profile402)_ 1.99695734710566306e+01 +Deuteron-triton_Coulomb_log_at_point_403_________________________________ (plasma_coulomb_log_deuteron_triton_profile403)_ 1.99601867878465136e+01 +Deuteron-triton_Coulomb_log_at_point_404_________________________________ (plasma_coulomb_log_deuteron_triton_profile404)_ 1.99507709824290522e+01 +Deuteron-triton_Coulomb_log_at_point_405_________________________________ (plasma_coulomb_log_deuteron_triton_profile405)_ 1.99413268747669896e+01 +Deuteron-triton_Coulomb_log_at_point_406_________________________________ (plasma_coulomb_log_deuteron_triton_profile406)_ 1.99318553316789746e+01 +Deuteron-triton_Coulomb_log_at_point_407_________________________________ (plasma_coulomb_log_deuteron_triton_profile407)_ 1.99223572689639497e+01 +Deuteron-triton_Coulomb_log_at_point_408_________________________________ (plasma_coulomb_log_deuteron_triton_profile408)_ 1.99128336537939710e+01 +Deuteron-triton_Coulomb_log_at_point_409_________________________________ (plasma_coulomb_log_deuteron_triton_profile409)_ 1.99032855069634671e+01 +Deuteron-triton_Coulomb_log_at_point_410_________________________________ (plasma_coulomb_log_deuteron_triton_profile410)_ 1.98937139055378722e+01 +Deuteron-triton_Coulomb_log_at_point_411_________________________________ (plasma_coulomb_log_deuteron_triton_profile411)_ 1.98841199852788826e+01 +Deuteron-triton_Coulomb_log_at_point_412_________________________________ (plasma_coulomb_log_deuteron_triton_profile412)_ 1.98745049436215169e+01 +Deuteron-triton_Coulomb_log_at_point_413_________________________________ (plasma_coulomb_log_deuteron_triton_profile413)_ 1.98648700425151539e+01 +Deuteron-triton_Coulomb_log_at_point_414_________________________________ (plasma_coulomb_log_deuteron_triton_profile414)_ 1.98552166113996549e+01 +Deuteron-triton_Coulomb_log_at_point_415_________________________________ (plasma_coulomb_log_deuteron_triton_profile415)_ 1.98455460505391450e+01 +Deuteron-triton_Coulomb_log_at_point_416_________________________________ (plasma_coulomb_log_deuteron_triton_profile416)_ 1.98358598342838555e+01 +Deuteron-triton_Coulomb_log_at_point_417_________________________________ (plasma_coulomb_log_deuteron_triton_profile417)_ 1.98261595147853278e+01 +Deuteron-triton_Coulomb_log_at_point_418_________________________________ (plasma_coulomb_log_deuteron_triton_profile418)_ 1.98164467256266548e+01 +Deuteron-triton_Coulomb_log_at_point_419_________________________________ (plasma_coulomb_log_deuteron_triton_profile419)_ 1.98067231858834347e+01 +Deuteron-triton_Coulomb_log_at_point_420_________________________________ (plasma_coulomb_log_deuteron_triton_profile420)_ 1.97969907043097066e+01 +Deuteron-triton_Coulomb_log_at_point_421_________________________________ (plasma_coulomb_log_deuteron_triton_profile421)_ 1.97872511837202723e+01 +Deuteron-triton_Coulomb_log_at_point_422_________________________________ (plasma_coulomb_log_deuteron_triton_profile422)_ 1.97775066255855911e+01 +Deuteron-triton_Coulomb_log_at_point_423_________________________________ (plasma_coulomb_log_deuteron_triton_profile423)_ 1.97677591352827520e+01 +Deuteron-triton_Coulomb_log_at_point_424_________________________________ (plasma_coulomb_log_deuteron_triton_profile424)_ 1.97580109269253832e+01 +Deuteron-triton_Coulomb_log_at_point_425_________________________________ (plasma_coulomb_log_deuteron_triton_profile425)_ 1.97482643294098779e+01 +Deuteron-triton_Coulomb_log_at_point_426_________________________________ (plasma_coulomb_log_deuteron_triton_profile426)_ 1.97385217918724258e+01 +Deuteron-triton_Coulomb_log_at_point_427_________________________________ (plasma_coulomb_log_deuteron_triton_profile427)_ 1.97287858902185995e+01 +Deuteron-triton_Coulomb_log_at_point_428_________________________________ (plasma_coulomb_log_deuteron_triton_profile428)_ 1.97190593338849318e+01 +Deuteron-triton_Coulomb_log_at_point_429_________________________________ (plasma_coulomb_log_deuteron_triton_profile429)_ 1.97093449726991494e+01 +Deuteron-triton_Coulomb_log_at_point_430_________________________________ (plasma_coulomb_log_deuteron_triton_profile430)_ 1.96996458047303662e+01 +Deuteron-triton_Coulomb_log_at_point_431_________________________________ (plasma_coulomb_log_deuteron_triton_profile431)_ 1.96899649843644191e+01 +Deuteron-triton_Coulomb_log_at_point_432_________________________________ (plasma_coulomb_log_deuteron_triton_profile432)_ 1.96803058309326282e+01 +Deuteron-triton_Coulomb_log_at_point_433_________________________________ (plasma_coulomb_log_deuteron_triton_profile433)_ 1.96706718382512413e+01 +Deuteron-triton_Coulomb_log_at_point_434_________________________________ (plasma_coulomb_log_deuteron_triton_profile434)_ 1.96610666844337203e+01 +Deuteron-triton_Coulomb_log_at_point_435_________________________________ (plasma_coulomb_log_deuteron_triton_profile435)_ 1.96514942430319373e+01 +Deuteron-triton_Coulomb_log_at_point_436_________________________________ (plasma_coulomb_log_deuteron_triton_profile436)_ 1.96419585946286119e+01 +Deuteron-triton_Coulomb_log_at_point_437_________________________________ (plasma_coulomb_log_deuteron_triton_profile437)_ 1.96324640393499052e+01 +Deuteron-triton_Coulomb_log_at_point_438_________________________________ (plasma_coulomb_log_deuteron_triton_profile438)_ 1.96230151110622764e+01 +Deuteron-triton_Coulomb_log_at_point_439_________________________________ (plasma_coulomb_log_deuteron_triton_profile439)_ 1.96136165921295742e+01 +Deuteron-triton_Coulomb_log_at_point_440_________________________________ (plasma_coulomb_log_deuteron_triton_profile440)_ 1.96042735299540958e+01 +Deuteron-triton_Coulomb_log_at_point_441_________________________________ (plasma_coulomb_log_deuteron_triton_profile441)_ 1.95949912548809806e+01 +Deuteron-triton_Coulomb_log_at_point_442_________________________________ (plasma_coulomb_log_deuteron_triton_profile442)_ 1.95857754003256126e+01 +Deuteron-triton_Coulomb_log_at_point_443_________________________________ (plasma_coulomb_log_deuteron_triton_profile443)_ 1.95766319245811999e+01 +Deuteron-triton_Coulomb_log_at_point_444_________________________________ (plasma_coulomb_log_deuteron_triton_profile444)_ 1.95675671352872094e+01 +Deuteron-triton_Coulomb_log_at_point_445_________________________________ (plasma_coulomb_log_deuteron_triton_profile445)_ 1.95585877167664108e+01 +Deuteron-triton_Coulomb_log_at_point_446_________________________________ (plasma_coulomb_log_deuteron_triton_profile446)_ 1.95497007603327404e+01 +Deuteron-triton_Coulomb_log_at_point_447_________________________________ (plasma_coulomb_log_deuteron_triton_profile447)_ 1.95409137994063968e+01 +Deuteron-triton_Coulomb_log_at_point_448_________________________________ (plasma_coulomb_log_deuteron_triton_profile448)_ 1.95322348481180263e+01 +Deuteron-triton_Coulomb_log_at_point_449_________________________________ (plasma_coulomb_log_deuteron_triton_profile449)_ 1.95236724464753415e+01 +Deuteron-triton_Coulomb_log_at_point_450_________________________________ (plasma_coulomb_log_deuteron_triton_profile450)_ 1.95152357121476818e+01 +Deuteron-triton_Coulomb_log_at_point_451_________________________________ (plasma_coulomb_log_deuteron_triton_profile451)_ 1.95069344000178937e+01 +Deuteron-triton_Coulomb_log_at_point_452_________________________________ (plasma_coulomb_log_deuteron_triton_profile452)_ 1.94987789728400180e+01 +Deuteron-triton_Coulomb_log_at_point_453_________________________________ (plasma_coulomb_log_deuteron_triton_profile453)_ 1.94907806836217752e+01 +Deuteron-triton_Coulomb_log_at_point_454_________________________________ (plasma_coulomb_log_deuteron_triton_profile454)_ 1.94829516752728011e+01 +Deuteron-triton_Coulomb_log_at_point_455_________________________________ (plasma_coulomb_log_deuteron_triton_profile455)_ 1.94753050999076223e+01 +Deuteron-triton_Coulomb_log_at_point_456_________________________________ (plasma_coulomb_log_deuteron_triton_profile456)_ 1.94678552652083461e+01 +Deuteron-triton_Coulomb_log_at_point_457_________________________________ (plasma_coulomb_log_deuteron_triton_profile457)_ 1.94606178160288188e+01 +Deuteron-triton_Coulomb_log_at_point_458_________________________________ (plasma_coulomb_log_deuteron_triton_profile458)_ 1.94536099636217763e+01 +Deuteron-triton_Coulomb_log_at_point_459_________________________________ (plasma_coulomb_log_deuteron_triton_profile459)_ 1.94468507791607799e+01 +Deuteron-triton_Coulomb_log_at_point_460_________________________________ (plasma_coulomb_log_deuteron_triton_profile460)_ 1.94403615793921958e+01 +Deuteron-triton_Coulomb_log_at_point_461_________________________________ (plasma_coulomb_log_deuteron_triton_profile461)_ 1.94341664444047986e+01 +Deuteron-triton_Coulomb_log_at_point_462_________________________________ (plasma_coulomb_log_deuteron_triton_profile462)_ 1.94282929328612468e+01 +Deuteron-triton_Coulomb_log_at_point_463_________________________________ (plasma_coulomb_log_deuteron_triton_profile463)_ 1.94227731064956508e+01 +Deuteron-triton_Coulomb_log_at_point_464_________________________________ (plasma_coulomb_log_deuteron_triton_profile464)_ 1.94176450599458796e+01 +Deuteron-triton_Coulomb_log_at_point_465_________________________________ (plasma_coulomb_log_deuteron_triton_profile465)_ 1.94129553325187878e+01 +Deuteron-triton_Coulomb_log_at_point_466_________________________________ (plasma_coulomb_log_deuteron_triton_profile466)_ 1.94087629931591330e+01 +Deuteron-triton_Coulomb_log_at_point_467_________________________________ (plasma_coulomb_log_deuteron_triton_profile467)_ 1.94051472777210385e+01 +Deuteron-triton_Coulomb_log_at_point_468_________________________________ (plasma_coulomb_log_deuteron_triton_profile468)_ 1.94022241654020711e+01 +Deuteron-triton_Coulomb_log_at_point_469_________________________________ (plasma_coulomb_log_deuteron_triton_profile469)_ 1.94001930564583702e+01 +Deuteron-triton_Coulomb_log_at_point_470_________________________________ (plasma_coulomb_log_deuteron_triton_profile470)_ 1.93996231070673986e+01 +Deuteron-triton_Coulomb_log_at_point_471_________________________________ (plasma_coulomb_log_deuteron_triton_profile471)_ 1.93566213263266214e+01 +Deuteron-triton_Coulomb_log_at_point_472_________________________________ (plasma_coulomb_log_deuteron_triton_profile472)_ 1.93119982370041932e+01 +Deuteron-triton_Coulomb_log_at_point_473_________________________________ (plasma_coulomb_log_deuteron_triton_profile473)_ 1.92656340722877850e+01 +Deuteron-triton_Coulomb_log_at_point_474_________________________________ (plasma_coulomb_log_deuteron_triton_profile474)_ 1.92173955934608323e+01 +Deuteron-triton_Coulomb_log_at_point_475_________________________________ (plasma_coulomb_log_deuteron_triton_profile475)_ 1.91671340087770794e+01 +Deuteron-triton_Coulomb_log_at_point_476_________________________________ (plasma_coulomb_log_deuteron_triton_profile476)_ 1.91146824765165846e+01 +Deuteron-triton_Coulomb_log_at_point_477_________________________________ (plasma_coulomb_log_deuteron_triton_profile477)_ 1.90598530875503975e+01 +Deuteron-triton_Coulomb_log_at_point_478_________________________________ (plasma_coulomb_log_deuteron_triton_profile478)_ 1.90024331913152622e+01 +Deuteron-triton_Coulomb_log_at_point_479_________________________________ (plasma_coulomb_log_deuteron_triton_profile479)_ 1.89421808878464155e+01 +Deuteron-triton_Coulomb_log_at_point_480_________________________________ (plasma_coulomb_log_deuteron_triton_profile480)_ 1.88788194455476699e+01 +Deuteron-triton_Coulomb_log_at_point_481_________________________________ (plasma_coulomb_log_deuteron_triton_profile481)_ 1.88120303247315732e+01 +Deuteron-triton_Coulomb_log_at_point_482_________________________________ (plasma_coulomb_log_deuteron_triton_profile482)_ 1.87414443665783566e+01 +Deuteron-triton_Coulomb_log_at_point_483_________________________________ (plasma_coulomb_log_deuteron_triton_profile483)_ 1.86666305353878492e+01 +Deuteron-triton_Coulomb_log_at_point_484_________________________________ (plasma_coulomb_log_deuteron_triton_profile484)_ 1.85870813549020895e+01 +Deuteron-triton_Coulomb_log_at_point_485_________________________________ (plasma_coulomb_log_deuteron_triton_profile485)_ 1.85021937958235263e+01 +Deuteron-triton_Coulomb_log_at_point_486_________________________________ (plasma_coulomb_log_deuteron_triton_profile486)_ 1.84112438024186744e+01 +Deuteron-triton_Coulomb_log_at_point_487_________________________________ (plasma_coulomb_log_deuteron_triton_profile487)_ 1.83133517320763524e+01 +Deuteron-triton_Coulomb_log_at_point_488_________________________________ (plasma_coulomb_log_deuteron_triton_profile488)_ 1.82074345215678051e+01 +Deuteron-triton_Coulomb_log_at_point_489_________________________________ (plasma_coulomb_log_deuteron_triton_profile489)_ 1.80921379495687589e+01 +Deuteron-triton_Coulomb_log_at_point_490_________________________________ (plasma_coulomb_log_deuteron_triton_profile490)_ 1.79657381539688359e+01 +Deuteron-triton_Coulomb_log_at_point_491_________________________________ (plasma_coulomb_log_deuteron_triton_profile491)_ 1.78259939715025872e+01 +Deuteron-triton_Coulomb_log_at_point_492_________________________________ (plasma_coulomb_log_deuteron_triton_profile492)_ 1.76699173362351161e+01 +Deuteron-triton_Coulomb_log_at_point_493_________________________________ (plasma_coulomb_log_deuteron_triton_profile493)_ 1.74934002903825601e+01 +Deuteron-triton_Coulomb_log_at_point_494_________________________________ (plasma_coulomb_log_deuteron_triton_profile494)_ 1.72905756161436841e+01 +Deuteron-triton_Coulomb_log_at_point_495_________________________________ (plasma_coulomb_log_deuteron_triton_profile495)_ 1.70526441858531612e+01 +Deuteron-triton_Coulomb_log_at_point_496_________________________________ (plasma_coulomb_log_deuteron_triton_profile496)_ 1.67655263644234935e+01 +Deuteron-triton_Coulomb_log_at_point_497_________________________________ (plasma_coulomb_log_deuteron_triton_profile497)_ 1.64045584855859836e+01 +Deuteron-triton_Coulomb_log_at_point_498_________________________________ (plasma_coulomb_log_deuteron_triton_profile498)_ 1.59202201488664983e+01 +Deuteron-triton_Coulomb_log_at_point_499_________________________________ (plasma_coulomb_log_deuteron_triton_profile499)_ 1.51868375632329720e+01 +Deuteron-triton_Coulomb_log_at_point_500_________________________________ (plasma_coulomb_log_deuteron_triton_profile500)_ 1.36539411998133300e+01 +Volume_averaged_electron-alpha_thermal_Coulomb_log_(Λₑαₜₕ)_______________ (plasma_coulomb_log_electron_alpha_thermal_vol_avg)_ 1.77710898019661947e+01 OP +Electron-alpha_thermal_Coulomb_log_at_point_0____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile0)_ 1.83389273040549092e+01 +Electron-alpha_thermal_Coulomb_log_at_point_1____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile1)_ 1.83389232413765875e+01 +Electron-alpha_thermal_Coulomb_log_at_point_2____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile2)_ 1.83389110532530033e+01 +Electron-alpha_thermal_Coulomb_log_at_point_3____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile3)_ 1.83388907394183462e+01 +Electron-alpha_thermal_Coulomb_log_at_point_4____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile4)_ 1.83388622994295645e+01 +Electron-alpha_thermal_Coulomb_log_at_point_5____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile5)_ 1.83388257326663613e+01 +Electron-alpha_thermal_Coulomb_log_at_point_6____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile6)_ 1.83387810383311347e+01 +Electron-alpha_thermal_Coulomb_log_at_point_7____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile7)_ 1.83387282154489739e+01 +Electron-alpha_thermal_Coulomb_log_at_point_8____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile8)_ 1.83386672628675740e+01 +Electron-alpha_thermal_Coulomb_log_at_point_9____________________________ (plasma_coulomb_log_electron_alpha_thermal_profile9)_ 1.83385981792571719e+01 +Electron-alpha_thermal_Coulomb_log_at_point_10___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile10)_ 1.83385209631105006e+01 +Electron-alpha_thermal_Coulomb_log_at_point_11___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile11)_ 1.83384356127426784e+01 +Electron-alpha_thermal_Coulomb_log_at_point_12___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile12)_ 1.83383421262911277e+01 +Electron-alpha_thermal_Coulomb_log_at_point_13___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile13)_ 1.83382405017154788e+01 +Electron-alpha_thermal_Coulomb_log_at_point_14___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile14)_ 1.83381307367974493e+01 +Electron-alpha_thermal_Coulomb_log_at_point_15___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile15)_ 1.83380128291407161e+01 +Electron-alpha_thermal_Coulomb_log_at_point_16___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile16)_ 1.83378867761708051e+01 +Electron-alpha_thermal_Coulomb_log_at_point_17___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile17)_ 1.83377525751349282e+01 +Electron-alpha_thermal_Coulomb_log_at_point_18___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile18)_ 1.83376102231018407e+01 +Electron-alpha_thermal_Coulomb_log_at_point_19___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile19)_ 1.83374597169616891e+01 +Electron-alpha_thermal_Coulomb_log_at_point_20___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile20)_ 1.83373010534258185e+01 +Electron-alpha_thermal_Coulomb_log_at_point_21___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile21)_ 1.83371342290266170e+01 +Electron-alpha_thermal_Coulomb_log_at_point_22___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile22)_ 1.83369592401173058e+01 +Electron-alpha_thermal_Coulomb_log_at_point_23___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile23)_ 1.83367760828717437e+01 +Electron-alpha_thermal_Coulomb_log_at_point_24___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile24)_ 1.83365847532842281e+01 +Electron-alpha_thermal_Coulomb_log_at_point_25___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile25)_ 1.83363852471692574e+01 +Electron-alpha_thermal_Coulomb_log_at_point_26___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile26)_ 1.83361775601613175e+01 +Electron-alpha_thermal_Coulomb_log_at_point_27___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile27)_ 1.83359616877146152e+01 +Electron-alpha_thermal_Coulomb_log_at_point_28___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile28)_ 1.83357376251028690e+01 +Electron-alpha_thermal_Coulomb_log_at_point_29___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile29)_ 1.83355053674190067e+01 +Electron-alpha_thermal_Coulomb_log_at_point_30___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile30)_ 1.83352649095749278e+01 +Electron-alpha_thermal_Coulomb_log_at_point_31___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile31)_ 1.83350162463012012e+01 +Electron-alpha_thermal_Coulomb_log_at_point_32___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile32)_ 1.83347593721467845e+01 +Electron-alpha_thermal_Coulomb_log_at_point_33___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile33)_ 1.83344942814787295e+01 +Electron-alpha_thermal_Coulomb_log_at_point_34___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile34)_ 1.83342209684818584e+01 +Electron-alpha_thermal_Coulomb_log_at_point_35___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile35)_ 1.83339394271584517e+01 +Electron-alpha_thermal_Coulomb_log_at_point_36___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile36)_ 1.83336496513279066e+01 +Electron-alpha_thermal_Coulomb_log_at_point_37___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile37)_ 1.83333516346264247e+01 +Electron-alpha_thermal_Coulomb_log_at_point_38___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile38)_ 1.83330453705066319e+01 +Electron-alpha_thermal_Coulomb_log_at_point_39___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile39)_ 1.83327308522372157e+01 +Electron-alpha_thermal_Coulomb_log_at_point_40___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile40)_ 1.83324080729025702e+01 +Electron-alpha_thermal_Coulomb_log_at_point_41___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile41)_ 1.83320770254024232e+01 +Electron-alpha_thermal_Coulomb_log_at_point_42___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile42)_ 1.83317377024514023e+01 +Electron-alpha_thermal_Coulomb_log_at_point_43___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile43)_ 1.83313900965786800e+01 +Electron-alpha_thermal_Coulomb_log_at_point_44___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile44)_ 1.83310342001275295e+01 +Electron-alpha_thermal_Coulomb_log_at_point_45___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile45)_ 1.83306700052549125e+01 +Electron-alpha_thermal_Coulomb_log_at_point_46___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile46)_ 1.83302975039310461e+01 +Electron-alpha_thermal_Coulomb_log_at_point_47___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile47)_ 1.83299166879389510e+01 +Electron-alpha_thermal_Coulomb_log_at_point_48___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile48)_ 1.83295275488740046e+01 +Electron-alpha_thermal_Coulomb_log_at_point_49___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile49)_ 1.83291300781434749e+01 +Electron-alpha_thermal_Coulomb_log_at_point_50___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile50)_ 1.83287242669660451e+01 +Electron-alpha_thermal_Coulomb_log_at_point_51___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile51)_ 1.83283101063713048e+01 +Electron-alpha_thermal_Coulomb_log_at_point_52___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile52)_ 1.83278875871992923e+01 +Electron-alpha_thermal_Coulomb_log_at_point_53___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile53)_ 1.83274567000999546e+01 +Electron-alpha_thermal_Coulomb_log_at_point_54___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile54)_ 1.83270174355326425e+01 +Electron-alpha_thermal_Coulomb_log_at_point_55___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile55)_ 1.83265697837655743e+01 +Electron-alpha_thermal_Coulomb_log_at_point_56___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile56)_ 1.83261137348753067e+01 +Electron-alpha_thermal_Coulomb_log_at_point_57___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile57)_ 1.83256492787461660e+01 +Electron-alpha_thermal_Coulomb_log_at_point_58___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile58)_ 1.83251764050696941e+01 +Electron-alpha_thermal_Coulomb_log_at_point_59___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile59)_ 1.83246951033440872e+01 +Electron-alpha_thermal_Coulomb_log_at_point_60___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile60)_ 1.83242053628735846e+01 +Electron-alpha_thermal_Coulomb_log_at_point_61___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile61)_ 1.83237071727678966e+01 +Electron-alpha_thermal_Coulomb_log_at_point_62___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile62)_ 1.83232005219415903e+01 +Electron-alpha_thermal_Coulomb_log_at_point_63___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile63)_ 1.83226853991134746e+01 +Electron-alpha_thermal_Coulomb_log_at_point_64___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile64)_ 1.83221617928059537e+01 +Electron-alpha_thermal_Coulomb_log_at_point_65___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile65)_ 1.83216296913444125e+01 +Electron-alpha_thermal_Coulomb_log_at_point_66___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile66)_ 1.83210890828565525e+01 +Electron-alpha_thermal_Coulomb_log_at_point_67___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile67)_ 1.83205399552717303e+01 +Electron-alpha_thermal_Coulomb_log_at_point_68___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile68)_ 1.83199822963202799e+01 +Electron-alpha_thermal_Coulomb_log_at_point_69___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile69)_ 1.83194160935328263e+01 +Electron-alpha_thermal_Coulomb_log_at_point_70___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile70)_ 1.83188413342396075e+01 +Electron-alpha_thermal_Coulomb_log_at_point_71___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile71)_ 1.83182580055697279e+01 +Electron-alpha_thermal_Coulomb_log_at_point_72___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile72)_ 1.83176660944504803e+01 +Electron-alpha_thermal_Coulomb_log_at_point_73___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile73)_ 1.83170655876065780e+01 +Electron-alpha_thermal_Coulomb_log_at_point_74___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile74)_ 1.83164564715594373e+01 +Electron-alpha_thermal_Coulomb_log_at_point_75___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile75)_ 1.83158387326264069e+01 +Electron-alpha_thermal_Coulomb_log_at_point_76___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile76)_ 1.83152123569200000e+01 +Electron-alpha_thermal_Coulomb_log_at_point_77___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile77)_ 1.83145773303471344e+01 +Electron-alpha_thermal_Coulomb_log_at_point_78___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile78)_ 1.83139336386083116e+01 +Electron-alpha_thermal_Coulomb_log_at_point_79___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile79)_ 1.83132812671968246e+01 +Electron-alpha_thermal_Coulomb_log_at_point_80___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile80)_ 1.83126202013979622e+01 +Electron-alpha_thermal_Coulomb_log_at_point_81___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile81)_ 1.83119504262881598e+01 +Electron-alpha_thermal_Coulomb_log_at_point_82___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile82)_ 1.83112719267341539e+01 +Electron-alpha_thermal_Coulomb_log_at_point_83___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile83)_ 1.83105846873921543e+01 +Electron-alpha_thermal_Coulomb_log_at_point_84___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile84)_ 1.83098886927069699e+01 +Electron-alpha_thermal_Coulomb_log_at_point_85___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile85)_ 1.83091839269111141e+01 +Electron-alpha_thermal_Coulomb_log_at_point_86___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile86)_ 1.83084703740239370e+01 +Electron-alpha_thermal_Coulomb_log_at_point_87___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile87)_ 1.83077480178507308e+01 +Electron-alpha_thermal_Coulomb_log_at_point_88___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile88)_ 1.83070168419817776e+01 +Electron-alpha_thermal_Coulomb_log_at_point_89___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile89)_ 1.83062768297914715e+01 +Electron-alpha_thermal_Coulomb_log_at_point_90___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile90)_ 1.83055279644373350e+01 +Electron-alpha_thermal_Coulomb_log_at_point_91___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile91)_ 1.83047702288591019e+01 +Electron-alpha_thermal_Coulomb_log_at_point_92___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile92)_ 1.83040036057777300e+01 +Electron-alpha_thermal_Coulomb_log_at_point_93___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile93)_ 1.83032280776944347e+01 +Electron-alpha_thermal_Coulomb_log_at_point_94___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile94)_ 1.83024436268896835e+01 +Electron-alpha_thermal_Coulomb_log_at_point_95___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile95)_ 1.83016502354222119e+01 +Electron-alpha_thermal_Coulomb_log_at_point_96___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile96)_ 1.83008478851279932e+01 +Electron-alpha_thermal_Coulomb_log_at_point_97___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile97)_ 1.83000365576192117e+01 +Electron-alpha_thermal_Coulomb_log_at_point_98___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile98)_ 1.82992162342832181e+01 +Electron-alpha_thermal_Coulomb_log_at_point_99___________________________ (plasma_coulomb_log_electron_alpha_thermal_profile99)_ 1.82983868962814782e+01 +Electron-alpha_thermal_Coulomb_log_at_point_100__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile100)_ 1.82975485245484855e+01 +Electron-alpha_thermal_Coulomb_log_at_point_101__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile101)_ 1.82967010997907096e+01 +Electron-alpha_thermal_Coulomb_log_at_point_102__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile102)_ 1.82958446024854666e+01 +Electron-alpha_thermal_Coulomb_log_at_point_103__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile103)_ 1.82949790128798249e+01 +Electron-alpha_thermal_Coulomb_log_at_point_104__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile104)_ 1.82941043109894821e+01 +Electron-alpha_thermal_Coulomb_log_at_point_105__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile105)_ 1.82932204765976074e+01 +Electron-alpha_thermal_Coulomb_log_at_point_106__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile106)_ 1.82923274892537293e+01 +Electron-alpha_thermal_Coulomb_log_at_point_107__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile107)_ 1.82914253282725170e+01 +Electron-alpha_thermal_Coulomb_log_at_point_108__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile108)_ 1.82905139727326613e+01 +Electron-alpha_thermal_Coulomb_log_at_point_109__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile109)_ 1.82895934014756172e+01 +Electron-alpha_thermal_Coulomb_log_at_point_110__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile110)_ 1.82886635931044488e+01 +Electron-alpha_thermal_Coulomb_log_at_point_111__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile111)_ 1.82877245259825791e+01 +Electron-alpha_thermal_Coulomb_log_at_point_112__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile112)_ 1.82867761782325609e+01 +Electron-alpha_thermal_Coulomb_log_at_point_113__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile113)_ 1.82858185277348255e+01 +Electron-alpha_thermal_Coulomb_log_at_point_114__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile114)_ 1.82848515521264261e+01 +Electron-alpha_thermal_Coulomb_log_at_point_115__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile115)_ 1.82838752287997366e+01 +Electron-alpha_thermal_Coulomb_log_at_point_116__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile116)_ 1.82828895349011837e+01 +Electron-alpha_thermal_Coulomb_log_at_point_117__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile117)_ 1.82818944473299361e+01 +Electron-alpha_thermal_Coulomb_log_at_point_118__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile118)_ 1.82808899427365503e+01 +Electron-alpha_thermal_Coulomb_log_at_point_119__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile119)_ 1.82798759975216711e+01 +Electron-alpha_thermal_Coulomb_log_at_point_120__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile120)_ 1.82788525878346526e+01 +Electron-alpha_thermal_Coulomb_log_at_point_121__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile121)_ 1.82778196895722154e+01 +Electron-alpha_thermal_Coulomb_log_at_point_122__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile122)_ 1.82767772783770397e+01 +Electron-alpha_thermal_Coulomb_log_at_point_123__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile123)_ 1.82757253296363764e+01 +Electron-alpha_thermal_Coulomb_log_at_point_124__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile124)_ 1.82746638184806436e+01 +Electron-alpha_thermal_Coulomb_log_at_point_125__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile125)_ 1.82735927197819876e+01 +Electron-alpha_thermal_Coulomb_log_at_point_126__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile126)_ 1.82725120081528480e+01 +Electron-alpha_thermal_Coulomb_log_at_point_127__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile127)_ 1.82714216579444866e+01 +Electron-alpha_thermal_Coulomb_log_at_point_128__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile128)_ 1.82703216432455378e+01 +Electron-alpha_thermal_Coulomb_log_at_point_129__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile129)_ 1.82692119378804918e+01 +Electron-alpha_thermal_Coulomb_log_at_point_130__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile130)_ 1.82680925154082132e+01 +Electron-alpha_thermal_Coulomb_log_at_point_131__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile131)_ 1.82669633491203989e+01 +Electron-alpha_thermal_Coulomb_log_at_point_132__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile132)_ 1.82658244120400681e+01 +Electron-alpha_thermal_Coulomb_log_at_point_133__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile133)_ 1.82646756769199854e+01 +Electron-alpha_thermal_Coulomb_log_at_point_134__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile134)_ 1.82635171162411218e+01 +Electron-alpha_thermal_Coulomb_log_at_point_135__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile135)_ 1.82623487022110353e+01 +Electron-alpha_thermal_Coulomb_log_at_point_136__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile136)_ 1.82611704067623180e+01 +Electron-alpha_thermal_Coulomb_log_at_point_137__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile137)_ 1.82599822015509368e+01 +Electron-alpha_thermal_Coulomb_log_at_point_138__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile138)_ 1.82587840579546281e+01 +Electron-alpha_thermal_Coulomb_log_at_point_139__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile139)_ 1.82575759470712562e+01 +Electron-alpha_thermal_Coulomb_log_at_point_140__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile140)_ 1.82563578397171185e+01 +Electron-alpha_thermal_Coulomb_log_at_point_141__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile141)_ 1.82551297064253113e+01 +Electron-alpha_thermal_Coulomb_log_at_point_142__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile142)_ 1.82538915174440000e+01 +Electron-alpha_thermal_Coulomb_log_at_point_143__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile143)_ 1.82526432427347238e+01 +Electron-alpha_thermal_Coulomb_log_at_point_144__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile144)_ 1.82513848519706698e+01 +Electron-alpha_thermal_Coulomb_log_at_point_145__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile145)_ 1.82501163145349068e+01 +Electron-alpha_thermal_Coulomb_log_at_point_146__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile146)_ 1.82488375995186694e+01 +Electron-alpha_thermal_Coulomb_log_at_point_147__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile147)_ 1.82475486757195320e+01 +Electron-alpha_thermal_Coulomb_log_at_point_148__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile148)_ 1.82462495116396397e+01 +Electron-alpha_thermal_Coulomb_log_at_point_149__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile149)_ 1.82449400754839175e+01 +Electron-alpha_thermal_Coulomb_log_at_point_150__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile150)_ 1.82436203351582051e+01 +Electron-alpha_thermal_Coulomb_log_at_point_151__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile151)_ 1.82422902582674418e+01 +Electron-alpha_thermal_Coulomb_log_at_point_152__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile152)_ 1.82409498121138078e+01 +Electron-alpha_thermal_Coulomb_log_at_point_153__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile153)_ 1.82395989636948279e+01 +Electron-alpha_thermal_Coulomb_log_at_point_154__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile154)_ 1.82382376797015020e+01 +Electron-alpha_thermal_Coulomb_log_at_point_155__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile155)_ 1.82368659265163870e+01 +Electron-alpha_thermal_Coulomb_log_at_point_156__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile156)_ 1.82354836702116643e+01 +Electron-alpha_thermal_Coulomb_log_at_point_157__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile157)_ 1.82340908765472172e+01 +Electron-alpha_thermal_Coulomb_log_at_point_158__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile158)_ 1.82326875109686597e+01 +Electron-alpha_thermal_Coulomb_log_at_point_159__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile159)_ 1.82312735386053575e+01 +Electron-alpha_thermal_Coulomb_log_at_point_160__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile160)_ 1.82298489242684418e+01 +Electron-alpha_thermal_Coulomb_log_at_point_161__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile161)_ 1.82284136324488131e+01 +Electron-alpha_thermal_Coulomb_log_at_point_162__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile162)_ 1.82269676273150978e+01 +Electron-alpha_thermal_Coulomb_log_at_point_163__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile163)_ 1.82255108727116131e+01 +Electron-alpha_thermal_Coulomb_log_at_point_164__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile164)_ 1.82240433321563167e+01 +Electron-alpha_thermal_Coulomb_log_at_point_165__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile165)_ 1.82225649688387215e+01 +Electron-alpha_thermal_Coulomb_log_at_point_166__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile166)_ 1.82210757456178172e+01 +Electron-alpha_thermal_Coulomb_log_at_point_167__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile167)_ 1.82195756250199601e+01 +Electron-alpha_thermal_Coulomb_log_at_point_168__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile168)_ 1.82180645692367378e+01 +Electron-alpha_thermal_Coulomb_log_at_point_169__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile169)_ 1.82165425401228340e+01 +Electron-alpha_thermal_Coulomb_log_at_point_170__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile170)_ 1.82150094991939042e+01 +Electron-alpha_thermal_Coulomb_log_at_point_171__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile171)_ 1.82134654076243514e+01 +Electron-alpha_thermal_Coulomb_log_at_point_172__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile172)_ 1.82119102262451840e+01 +Electron-alpha_thermal_Coulomb_log_at_point_173__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile173)_ 1.82103439155417774e+01 +Electron-alpha_thermal_Coulomb_log_at_point_174__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile174)_ 1.82087664356516825e+01 +Electron-alpha_thermal_Coulomb_log_at_point_175__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile175)_ 1.82071777463623761e+01 +Electron-alpha_thermal_Coulomb_log_at_point_176__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile176)_ 1.82055778071090124e+01 +Electron-alpha_thermal_Coulomb_log_at_point_177__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile177)_ 1.82039665769721566e+01 +Electron-alpha_thermal_Coulomb_log_at_point_178__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile178)_ 1.82023440146754965e+01 +Electron-alpha_thermal_Coulomb_log_at_point_179__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile179)_ 1.82007100785835725e+01 +Electron-alpha_thermal_Coulomb_log_at_point_180__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile180)_ 1.81990647266994259e+01 +Electron-alpha_thermal_Coulomb_log_at_point_181__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile181)_ 1.81974079166623000e+01 +Electron-alpha_thermal_Coulomb_log_at_point_182__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile182)_ 1.81957396057453025e+01 +Electron-alpha_thermal_Coulomb_log_at_point_183__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile183)_ 1.81940597508530253e+01 +Electron-alpha_thermal_Coulomb_log_at_point_184__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile184)_ 1.81923683085191854e+01 +Electron-alpha_thermal_Coulomb_log_at_point_185__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile185)_ 1.81906652349042552e+01 +Electron-alpha_thermal_Coulomb_log_at_point_186__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile186)_ 1.81889504857930504e+01 +Electron-alpha_thermal_Coulomb_log_at_point_187__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile187)_ 1.81872240165923138e+01 +Electron-alpha_thermal_Coulomb_log_at_point_188__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile188)_ 1.81854857823282927e+01 +Electron-alpha_thermal_Coulomb_log_at_point_189__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile189)_ 1.81837357376443194e+01 +Electron-alpha_thermal_Coulomb_log_at_point_190__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile190)_ 1.81819738367983383e+01 +Electron-alpha_thermal_Coulomb_log_at_point_191__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile191)_ 1.81802000336604515e+01 +Electron-alpha_thermal_Coulomb_log_at_point_192__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile192)_ 1.81784142817104417e+01 +Electron-alpha_thermal_Coulomb_log_at_point_193__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile193)_ 1.81766165340352792e+01 +Electron-alpha_thermal_Coulomb_log_at_point_194__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile194)_ 1.81748067433266414e+01 +Electron-alpha_thermal_Coulomb_log_at_point_195__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile195)_ 1.81729848618783940e+01 +Electron-alpha_thermal_Coulomb_log_at_point_196__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile196)_ 1.81711508415840441e+01 +Electron-alpha_thermal_Coulomb_log_at_point_197__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile197)_ 1.81693046339342601e+01 +Electron-alpha_thermal_Coulomb_log_at_point_198__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile198)_ 1.81674461900142923e+01 +Electron-alpha_thermal_Coulomb_log_at_point_199__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile199)_ 1.81655754605014437e+01 +Electron-alpha_thermal_Coulomb_log_at_point_200__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile200)_ 1.81636923956624869e+01 +Electron-alpha_thermal_Coulomb_log_at_point_201__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile201)_ 1.81617969453511350e+01 +Electron-alpha_thermal_Coulomb_log_at_point_202__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile202)_ 1.81598890590054225e+01 +Electron-alpha_thermal_Coulomb_log_at_point_203__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile203)_ 1.81579686856451730e+01 +Electron-alpha_thermal_Coulomb_log_at_point_204__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile204)_ 1.81560357738693625e+01 +Electron-alpha_thermal_Coulomb_log_at_point_205__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile205)_ 1.81540902718535584e+01 +Electron-alpha_thermal_Coulomb_log_at_point_206__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile206)_ 1.81521321273473006e+01 +Electron-alpha_thermal_Coulomb_log_at_point_207__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile207)_ 1.81501612876715015e+01 +Electron-alpha_thermal_Coulomb_log_at_point_208__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile208)_ 1.81481776997158519e+01 +Electron-alpha_thermal_Coulomb_log_at_point_209__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile209)_ 1.81461813099361891e+01 +Electron-alpha_thermal_Coulomb_log_at_point_210__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile210)_ 1.81441720643518778e+01 +Electron-alpha_thermal_Coulomb_log_at_point_211__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile211)_ 1.81421499085432281e+01 +Electron-alpha_thermal_Coulomb_log_at_point_212__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile212)_ 1.81401147876488338e+01 +Electron-alpha_thermal_Coulomb_log_at_point_213__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile213)_ 1.81380666463629900e+01 +Electron-alpha_thermal_Coulomb_log_at_point_214__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile214)_ 1.81360054289330641e+01 +Electron-alpha_thermal_Coulomb_log_at_point_215__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile215)_ 1.81339310791568700e+01 +Electron-alpha_thermal_Coulomb_log_at_point_216__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile216)_ 1.81318435403800819e+01 +Electron-alpha_thermal_Coulomb_log_at_point_217__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile217)_ 1.81297427554936021e+01 +Electron-alpha_thermal_Coulomb_log_at_point_218__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile218)_ 1.81276286669309705e+01 +Electron-alpha_thermal_Coulomb_log_at_point_219__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile219)_ 1.81255012166657679e+01 +Electron-alpha_thermal_Coulomb_log_at_point_220__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile220)_ 1.81233603462090294e+01 +Electron-alpha_thermal_Coulomb_log_at_point_221__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile221)_ 1.81212059966066512e+01 +Electron-alpha_thermal_Coulomb_log_at_point_222__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile222)_ 1.81190381084368290e+01 +Electron-alpha_thermal_Coulomb_log_at_point_223__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile223)_ 1.81168566218075107e+01 +Electron-alpha_thermal_Coulomb_log_at_point_224__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile224)_ 1.81146614763538167e+01 +Electron-alpha_thermal_Coulomb_log_at_point_225__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile225)_ 1.81124526112355362e+01 +Electron-alpha_thermal_Coulomb_log_at_point_226__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile226)_ 1.81102299651346073e+01 +Electron-alpha_thermal_Coulomb_log_at_point_227__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile227)_ 1.81079934762525880e+01 +Electron-alpha_thermal_Coulomb_log_at_point_228__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile228)_ 1.81057430823082157e+01 +Electron-alpha_thermal_Coulomb_log_at_point_229__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile229)_ 1.81034787205349055e+01 +Electron-alpha_thermal_Coulomb_log_at_point_230__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile230)_ 1.81012003276783595e+01 +Electron-alpha_thermal_Coulomb_log_at_point_231__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile231)_ 1.80989078399940944e+01 +Electron-alpha_thermal_Coulomb_log_at_point_232__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile232)_ 1.80966011932451032e+01 +Electron-alpha_thermal_Coulomb_log_at_point_233__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile233)_ 1.80942803226994435e+01 +Electron-alpha_thermal_Coulomb_log_at_point_234__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile234)_ 1.80919451631279671e+01 +Electron-alpha_thermal_Coulomb_log_at_point_235__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile235)_ 1.80895956488019714e+01 +Electron-alpha_thermal_Coulomb_log_at_point_236__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile236)_ 1.80872317134909508e+01 +Electron-alpha_thermal_Coulomb_log_at_point_237__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile237)_ 1.80848532904603836e+01 +Electron-alpha_thermal_Coulomb_log_at_point_238__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile238)_ 1.80824603124695180e+01 +Electron-alpha_thermal_Coulomb_log_at_point_239__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile239)_ 1.80800527117692447e+01 +Electron-alpha_thermal_Coulomb_log_at_point_240__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile240)_ 1.80776304200999931e+01 +Electron-alpha_thermal_Coulomb_log_at_point_241__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile241)_ 1.80751933686896606e+01 +Electron-alpha_thermal_Coulomb_log_at_point_242__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile242)_ 1.80727414882516264e+01 +Electron-alpha_thermal_Coulomb_log_at_point_243__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile243)_ 1.80702747089827938e+01 +Electron-alpha_thermal_Coulomb_log_at_point_244__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile244)_ 1.80677929605616825e+01 +Electron-alpha_thermal_Coulomb_log_at_point_245__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile245)_ 1.80652961721466205e+01 +Electron-alpha_thermal_Coulomb_log_at_point_246__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile246)_ 1.80627842723739356e+01 +Electron-alpha_thermal_Coulomb_log_at_point_247__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile247)_ 1.80602571893562640e+01 +Electron-alpha_thermal_Coulomb_log_at_point_248__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile248)_ 1.80577148506809273e+01 +Electron-alpha_thermal_Coulomb_log_at_point_249__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile249)_ 1.80551571834083333e+01 +Electron-alpha_thermal_Coulomb_log_at_point_250__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile250)_ 1.80525841140705126e+01 +Electron-alpha_thermal_Coulomb_log_at_point_251__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile251)_ 1.80499955686697113e+01 +Electron-alpha_thermal_Coulomb_log_at_point_252__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile252)_ 1.80473914726770666e+01 +Electron-alpha_thermal_Coulomb_log_at_point_253__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile253)_ 1.80447717510313588e+01 +Electron-alpha_thermal_Coulomb_log_at_point_254__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile254)_ 1.80421363281379072e+01 +Electron-alpha_thermal_Coulomb_log_at_point_255__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile255)_ 1.80394851278674970e+01 +Electron-alpha_thermal_Coulomb_log_at_point_256__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile256)_ 1.80368180735554873e+01 +Electron-alpha_thermal_Coulomb_log_at_point_257__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile257)_ 1.80341350880009337e+01 +Electron-alpha_thermal_Coulomb_log_at_point_258__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile258)_ 1.80314360934659241e+01 +Electron-alpha_thermal_Coulomb_log_at_point_259__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile259)_ 1.80287210116749712e+01 +Electron-alpha_thermal_Coulomb_log_at_point_260__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile260)_ 1.80259897638145326e+01 +Electron-alpha_thermal_Coulomb_log_at_point_261__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile261)_ 1.80232422705327018e+01 +Electron-alpha_thermal_Coulomb_log_at_point_262__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile262)_ 1.80204784519389989e+01 +Electron-alpha_thermal_Coulomb_log_at_point_263__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile263)_ 1.80176982276043098e+01 +Electron-alpha_thermal_Coulomb_log_at_point_264__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile264)_ 1.80149015165610038e+01 +Electron-alpha_thermal_Coulomb_log_at_point_265__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile265)_ 1.80120882373031819e+01 +Electron-alpha_thermal_Coulomb_log_at_point_266__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile266)_ 1.80092583077870749e+01 +Electron-alpha_thermal_Coulomb_log_at_point_267__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile267)_ 1.80064116454316725e+01 +Electron-alpha_thermal_Coulomb_log_at_point_268__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile268)_ 1.80035481671194653e+01 +Electron-alpha_thermal_Coulomb_log_at_point_269__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile269)_ 1.80006677891974256e+01 +Electron-alpha_thermal_Coulomb_log_at_point_270__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile270)_ 1.79977704274781409e+01 +Electron-alpha_thermal_Coulomb_log_at_point_271__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile271)_ 1.79948559972411921e+01 +Electron-alpha_thermal_Coulomb_log_at_point_272__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile272)_ 1.79919244132347202e+01 +Electron-alpha_thermal_Coulomb_log_at_point_273__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile273)_ 1.79889755896772243e+01 +Electron-alpha_thermal_Coulomb_log_at_point_274__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile274)_ 1.79860094402595792e+01 +Electron-alpha_thermal_Coulomb_log_at_point_275__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile275)_ 1.79830258781473340e+01 +Electron-alpha_thermal_Coulomb_log_at_point_276__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile276)_ 1.79800248159832172e+01 +Electron-alpha_thermal_Coulomb_log_at_point_277__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile277)_ 1.79770061658899394e+01 +Electron-alpha_thermal_Coulomb_log_at_point_278__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile278)_ 1.79739698394732272e+01 +Electron-alpha_thermal_Coulomb_log_at_point_279__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile279)_ 1.79709157478252308e+01 +Electron-alpha_thermal_Coulomb_log_at_point_280__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile280)_ 1.79678438015281259e+01 +Electron-alpha_thermal_Coulomb_log_at_point_281__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile281)_ 1.79647539106581000e+01 +Electron-alpha_thermal_Coulomb_log_at_point_282__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile282)_ 1.79616459847896479e+01 +Electron-alpha_thermal_Coulomb_log_at_point_283__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile283)_ 1.79585199330001828e+01 +Electron-alpha_thermal_Coulomb_log_at_point_284__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile284)_ 1.79553756638750244e+01 +Electron-alpha_thermal_Coulomb_log_at_point_285__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile285)_ 1.79522130855127564e+01 +Electron-alpha_thermal_Coulomb_log_at_point_286__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile286)_ 1.79490321055309430e+01 +Electron-alpha_thermal_Coulomb_log_at_point_287__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile287)_ 1.79458326310722853e+01 +Electron-alpha_thermal_Coulomb_log_at_point_288__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile288)_ 1.79426145688111447e+01 +Electron-alpha_thermal_Coulomb_log_at_point_289__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile289)_ 1.79393778249605305e+01 +Electron-alpha_thermal_Coulomb_log_at_point_290__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile290)_ 1.79361223052795431e+01 +Electron-alpha_thermal_Coulomb_log_at_point_291__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile291)_ 1.79328479150812541e+01 +Electron-alpha_thermal_Coulomb_log_at_point_292__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile292)_ 1.79295545592411258e+01 +Electron-alpha_thermal_Coulomb_log_at_point_293__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile293)_ 1.79262421422058864e+01 +Electron-alpha_thermal_Coulomb_log_at_point_294__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile294)_ 1.79229105680029548e+01 +Electron-alpha_thermal_Coulomb_log_at_point_295__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile295)_ 1.79195597402504525e+01 +Electron-alpha_thermal_Coulomb_log_at_point_296__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile296)_ 1.79161895621677303e+01 +Electron-alpha_thermal_Coulomb_log_at_point_297__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile297)_ 1.79127999365865271e+01 +Electron-alpha_thermal_Coulomb_log_at_point_298__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile298)_ 1.79093907659627476e+01 +Electron-alpha_thermal_Coulomb_log_at_point_299__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile299)_ 1.79059619523888855e+01 +Electron-alpha_thermal_Coulomb_log_at_point_300__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile300)_ 1.79025133976071231e+01 +Electron-alpha_thermal_Coulomb_log_at_point_301__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile301)_ 1.78990450030231116e+01 +Electron-alpha_thermal_Coulomb_log_at_point_302__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile302)_ 1.78955566697205235e+01 +Electron-alpha_thermal_Coulomb_log_at_point_303__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile303)_ 1.78920482984763041e+01 +Electron-alpha_thermal_Coulomb_log_at_point_304__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile304)_ 1.78885197897767902e+01 +Electron-alpha_thermal_Coulomb_log_at_point_305__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile305)_ 1.78849710438345646e+01 +Electron-alpha_thermal_Coulomb_log_at_point_306__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile306)_ 1.78814019606062438e+01 +Electron-alpha_thermal_Coulomb_log_at_point_307__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile307)_ 1.78778124398111053e+01 +Electron-alpha_thermal_Coulomb_log_at_point_308__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile308)_ 1.78742023809506705e+01 +Electron-alpha_thermal_Coulomb_log_at_point_309__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile309)_ 1.78705716833292243e+01 +Electron-alpha_thermal_Coulomb_log_at_point_310__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile310)_ 1.78669202460753560e+01 +Electron-alpha_thermal_Coulomb_log_at_point_311__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile311)_ 1.78632479681645542e+01 +Electron-alpha_thermal_Coulomb_log_at_point_312__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile312)_ 1.78595547484428465e+01 +Electron-alpha_thermal_Coulomb_log_at_point_313__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile313)_ 1.78558404856516297e+01 +Electron-alpha_thermal_Coulomb_log_at_point_314__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile314)_ 1.78521050784536079e+01 +Electron-alpha_thermal_Coulomb_log_at_point_315__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile315)_ 1.78483484254600135e+01 +Electron-alpha_thermal_Coulomb_log_at_point_316__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile316)_ 1.78445704252590431e+01 +Electron-alpha_thermal_Coulomb_log_at_point_317__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile317)_ 1.78407709764456932e+01 +Electron-alpha_thermal_Coulomb_log_at_point_318__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile318)_ 1.78369499776528819e+01 +Electron-alpha_thermal_Coulomb_log_at_point_319__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile319)_ 1.78331073275840843e+01 +Electron-alpha_thermal_Coulomb_log_at_point_320__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile320)_ 1.78292429250474100e+01 +Electron-alpha_thermal_Coulomb_log_at_point_321__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile321)_ 1.78253566689912439e+01 +Electron-alpha_thermal_Coulomb_log_at_point_322__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile322)_ 1.78214484585415356e+01 +Electron-alpha_thermal_Coulomb_log_at_point_323__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile323)_ 1.78175181930406978e+01 +Electron-alpha_thermal_Coulomb_log_at_point_324__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile324)_ 1.78135657720883387e+01 +Electron-alpha_thermal_Coulomb_log_at_point_325__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile325)_ 1.78095910955837411e+01 +Electron-alpha_thermal_Coulomb_log_at_point_326__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile326)_ 1.78055940637702896e+01 +Electron-alpha_thermal_Coulomb_log_at_point_327__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile327)_ 1.78015745772818335e+01 +Electron-alpha_thermal_Coulomb_log_at_point_328__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile328)_ 1.77975325371911026e+01 +Electron-alpha_thermal_Coulomb_log_at_point_329__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile329)_ 1.77934678450603094e+01 +Electron-alpha_thermal_Coulomb_log_at_point_330__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile330)_ 1.77893804029938991e+01 +Electron-alpha_thermal_Coulomb_log_at_point_331__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile331)_ 1.77852701136936524e+01 +Electron-alpha_thermal_Coulomb_log_at_point_332__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile332)_ 1.77811368805162076e+01 +Electron-alpha_thermal_Coulomb_log_at_point_333__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile333)_ 1.77769806075330550e+01 +Electron-alpha_thermal_Coulomb_log_at_point_334__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile334)_ 1.77728011995931858e+01 +Electron-alpha_thermal_Coulomb_log_at_point_335__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile335)_ 1.77685985623883980e+01 +Electron-alpha_thermal_Coulomb_log_at_point_336__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile336)_ 1.77643726025214832e+01 +Electron-alpha_thermal_Coulomb_log_at_point_337__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile337)_ 1.77601232275773455e+01 +Electron-alpha_thermal_Coulomb_log_at_point_338__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile338)_ 1.77558503461971462e+01 +Electron-alpha_thermal_Coulomb_log_at_point_339__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile339)_ 1.77515538681557210e+01 +Electron-alpha_thermal_Coulomb_log_at_point_340__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile340)_ 1.77472337044422304e+01 +Electron-alpha_thermal_Coulomb_log_at_point_341__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile341)_ 1.77428897673443338e+01 +Electron-alpha_thermal_Coulomb_log_at_point_342__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile342)_ 1.77385219705359631e+01 +Electron-alpha_thermal_Coulomb_log_at_point_343__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile343)_ 1.77341302291687946e+01 +Electron-alpha_thermal_Coulomb_log_at_point_344__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile344)_ 1.77297144599677488e+01 +Electron-alpha_thermal_Coulomb_log_at_point_345__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile345)_ 1.77252745813304244e+01 +Electron-alpha_thermal_Coulomb_log_at_point_346__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile346)_ 1.77208105134308624e+01 +Electron-alpha_thermal_Coulomb_log_at_point_347__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile347)_ 1.77163221783277294e+01 +Electron-alpha_thermal_Coulomb_log_at_point_348__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile348)_ 1.77118095000770737e+01 +Electron-alpha_thermal_Coulomb_log_at_point_349__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile349)_ 1.77072724048499026e+01 +Electron-alpha_thermal_Coulomb_log_at_point_350__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile350)_ 1.77027108210547439e+01 +Electron-alpha_thermal_Coulomb_log_at_point_351__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile351)_ 1.76981246794654474e+01 +Electron-alpha_thermal_Coulomb_log_at_point_352__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile352)_ 1.76935139133543871e+01 +Electron-alpha_thermal_Coulomb_log_at_point_353__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile353)_ 1.76888784586313470e+01 +Electron-alpha_thermal_Coulomb_log_at_point_354__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile354)_ 1.76842182539882735e+01 +Electron-alpha_thermal_Coulomb_log_at_point_355__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile355)_ 1.76795332410502439e+01 +Electron-alpha_thermal_Coulomb_log_at_point_356__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile356)_ 1.76748233645327701e+01 +Electron-alpha_thermal_Coulomb_log_at_point_357__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile357)_ 1.76700885724058381e+01 +Electron-alpha_thermal_Coulomb_log_at_point_358__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile358)_ 1.76653288160649140e+01 +Electron-alpha_thermal_Coulomb_log_at_point_359__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile359)_ 1.76605440505091984e+01 +Electron-alpha_thermal_Coulomb_log_at_point_360__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile360)_ 1.76557342345274577e+01 +Electron-alpha_thermal_Coulomb_log_at_point_361__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile361)_ 1.76508993308918498e+01 +Electron-alpha_thermal_Coulomb_log_at_point_362__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile362)_ 1.76460393065598318e+01 +Electron-alpha_thermal_Coulomb_log_at_point_363__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile363)_ 1.76411541328848536e+01 +Electron-alpha_thermal_Coulomb_log_at_point_364__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile364)_ 1.76362437858358945e+01 +Electron-alpha_thermal_Coulomb_log_at_point_365__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile365)_ 1.76313082462264852e+01 +Electron-alpha_thermal_Coulomb_log_at_point_366__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile366)_ 1.76263474999533649e+01 +Electron-alpha_thermal_Coulomb_log_at_point_367__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile367)_ 1.76213615382454876e+01 +Electron-alpha_thermal_Coulomb_log_at_point_368__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile368)_ 1.76163503579235972e+01 +Electron-alpha_thermal_Coulomb_log_at_point_369__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile369)_ 1.76113139616709198e+01 +Electron-alpha_thermal_Coulomb_log_at_point_370__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile370)_ 1.76062523583155190e+01 +Electron-alpha_thermal_Coulomb_log_at_point_371__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile371)_ 1.76011655631247486e+01 +Electron-alpha_thermal_Coulomb_log_at_point_372__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile372)_ 1.75960535981123272e+01 +Electron-alpha_thermal_Coulomb_log_at_point_373__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile373)_ 1.75909164923587191e+01 +Electron-alpha_thermal_Coulomb_log_at_point_374__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile374)_ 1.75857542823452704e+01 +Electron-alpha_thermal_Coulomb_log_at_point_375__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile375)_ 1.75805670123027724e+01 +Electron-alpha_thermal_Coulomb_log_at_point_376__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile376)_ 1.75753547345752246e+01 +Electron-alpha_thermal_Coulomb_log_at_point_377__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile377)_ 1.75701175099991609e+01 +Electron-alpha_thermal_Coulomb_log_at_point_378__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile378)_ 1.75648554082996640e+01 +Electron-alpha_thermal_Coulomb_log_at_point_379__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile379)_ 1.75595685085034887e+01 +Electron-alpha_thermal_Coulomb_log_at_point_380__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile380)_ 1.75542568993702126e+01 +Electron-alpha_thermal_Coulomb_log_at_point_381__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile381)_ 1.75489206798423147e+01 +Electron-alpha_thermal_Coulomb_log_at_point_382__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile382)_ 1.75435599595148481e+01 +Electron-alpha_thermal_Coulomb_log_at_point_383__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile383)_ 1.75381748591258209e+01 +Electron-alpha_thermal_Coulomb_log_at_point_384__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile384)_ 1.75327655110681455e+01 +Electron-alpha_thermal_Coulomb_log_at_point_385__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile385)_ 1.75273320599241451e+01 +Electron-alpha_thermal_Coulomb_log_at_point_386__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile386)_ 1.75218746630237519e+01 +Electron-alpha_thermal_Coulomb_log_at_point_387__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile387)_ 1.75163934910274826e+01 +Electron-alpha_thermal_Coulomb_log_at_point_388__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile388)_ 1.75108887285352957e+01 +Electron-alpha_thermal_Coulomb_log_at_point_389__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile389)_ 1.75053605747227010e+01 +Electron-alpha_thermal_Coulomb_log_at_point_390__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile390)_ 1.74998092440053057e+01 +Electron-alpha_thermal_Coulomb_log_at_point_391__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile391)_ 1.74942349667332522e+01 +Electron-alpha_thermal_Coulomb_log_at_point_392__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile392)_ 1.74886379899169278e+01 +Electron-alpha_thermal_Coulomb_log_at_point_393__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile393)_ 1.74830185779855718e+01 +Electron-alpha_thermal_Coulomb_log_at_point_394__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile394)_ 1.74773770135802806e+01 +Electron-alpha_thermal_Coulomb_log_at_point_395__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile395)_ 1.74717135983832286e+01 +Electron-alpha_thermal_Coulomb_log_at_point_396__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile396)_ 1.74660286539847931e+01 +Electron-alpha_thermal_Coulomb_log_at_point_397__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile397)_ 1.74603225227906549e+01 +Electron-alpha_thermal_Coulomb_log_at_point_398__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile398)_ 1.74545955689707242e+01 +Electron-alpha_thermal_Coulomb_log_at_point_399__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile399)_ 1.74488481794521171e+01 +Electron-alpha_thermal_Coulomb_log_at_point_400__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile400)_ 1.74430807649585340e+01 +Electron-alpha_thermal_Coulomb_log_at_point_401__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile401)_ 1.74372937610982675e+01 +Electron-alpha_thermal_Coulomb_log_at_point_402__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile402)_ 1.74314876295035681e+01 +Electron-alpha_thermal_Coulomb_log_at_point_403__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile403)_ 1.74256628590240581e+01 +Electron-alpha_thermal_Coulomb_log_at_point_404__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile404)_ 1.74198199669769771e+01 +Electron-alpha_thermal_Coulomb_log_at_point_405__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile405)_ 1.74139595004575689e+01 +Electron-alpha_thermal_Coulomb_log_at_point_406__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile406)_ 1.74080820377126813e+01 +Electron-alpha_thermal_Coulomb_log_at_point_407__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile407)_ 1.74021881895812776e+01 +Electron-alpha_thermal_Coulomb_log_at_point_408__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile408)_ 1.73962786010054700e+01 +Electron-alpha_thermal_Coulomb_log_at_point_409__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile409)_ 1.73903539526163371e+01 +Electron-alpha_thermal_Coulomb_log_at_point_410__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile410)_ 1.73844149623985444e+01 +Electron-alpha_thermal_Coulomb_log_at_point_411__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile411)_ 1.73784623874386952e+01 +Electron-alpha_thermal_Coulomb_log_at_point_412__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile412)_ 1.73724970257622680e+01 +Electron-alpha_thermal_Coulomb_log_at_point_413__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile413)_ 1.73665197182644810e+01 +Electron-alpha_thermal_Coulomb_log_at_point_414__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile414)_ 1.73605313507410592e+01 +Electron-alpha_thermal_Coulomb_log_at_point_415__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile415)_ 1.73545328560249956e+01 +Electron-alpha_thermal_Coulomb_log_at_point_416__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile416)_ 1.73485252162362649e+01 +Electron-alpha_thermal_Coulomb_log_at_point_417__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile417)_ 1.73425094651517639e+01 +Electron-alpha_thermal_Coulomb_log_at_point_418__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile418)_ 1.73364866907035626e+01 +Electron-alpha_thermal_Coulomb_log_at_point_419__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile419)_ 1.73304580376141999e+01 +Electron-alpha_thermal_Coulomb_log_at_point_420__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile420)_ 1.73244247101786328e+01 +Electron-alpha_thermal_Coulomb_log_at_point_421__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile421)_ 1.73183879752032119e+01 +Electron-alpha_thermal_Coulomb_log_at_point_422__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile422)_ 1.73123491651132646e+01 +Electron-alpha_thermal_Coulomb_log_at_point_423__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile423)_ 1.73063096812420127e+01 +Electron-alpha_thermal_Coulomb_log_at_point_424__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile424)_ 1.73002709973145414e+01 +Electron-alpha_thermal_Coulomb_log_at_point_425__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile425)_ 1.72942346631426211e+01 +Electron-alpha_thermal_Coulomb_log_at_point_426__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile426)_ 1.72882023085472731e+01 +Electron-alpha_thermal_Coulomb_log_at_point_427__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile427)_ 1.72821756475283621e+01 +Electron-alpha_thermal_Coulomb_log_at_point_428__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile428)_ 1.72761564827026035e+01 +Electron-alpha_thermal_Coulomb_log_at_point_429__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile429)_ 1.72701467100337602e+01 +Electron-alpha_thermal_Coulomb_log_at_point_430__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile430)_ 1.72641483238822140e+01 +Electron-alpha_thermal_Coulomb_log_at_point_431__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile431)_ 1.72581634224041629e+01 +Electron-alpha_thermal_Coulomb_log_at_point_432__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile432)_ 1.72521942133349526e+01 +Electron-alpha_thermal_Coulomb_log_at_point_433__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile433)_ 1.72462430201959123e+01 +Electron-alpha_thermal_Coulomb_log_at_point_434__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile434)_ 1.72403122889692391e+01 +Electron-alpha_thermal_Coulomb_log_at_point_435__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile435)_ 1.72344045952924532e+01 +Electron-alpha_thermal_Coulomb_log_at_point_436__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile436)_ 1.72285226522317565e+01 +Electron-alpha_thermal_Coulomb_log_at_point_437__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile437)_ 1.72226693187024047e+01 +Electron-alpha_thermal_Coulomb_log_at_point_438__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile438)_ 1.72168476086162094e+01 +Electron-alpha_thermal_Coulomb_log_at_point_439__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile439)_ 1.72110607008487975e+01 +Electron-alpha_thermal_Coulomb_log_at_point_440__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile440)_ 1.72053119501362524e+01 +Electron-alpha_thermal_Coulomb_log_at_point_441__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile441)_ 1.71996048990299322e+01 +Electron-alpha_thermal_Coulomb_log_at_point_442__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile442)_ 1.71939432910630856e+01 +Electron-alpha_thermal_Coulomb_log_at_point_443__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile443)_ 1.71883310853119369e+01 +Electron-alpha_thermal_Coulomb_log_at_point_444__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile444)_ 1.71827724725718269e+01 +Electron-alpha_thermal_Coulomb_log_at_point_445__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile445)_ 1.71772718934148578e+01 +Electron-alpha_thermal_Coulomb_log_at_point_446__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile446)_ 1.71718340584537437e+01 +Electron-alpha_thermal_Coulomb_log_at_point_447__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile447)_ 1.71664639712114315e+01 +Electron-alpha_thermal_Coulomb_log_at_point_448__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile448)_ 1.71611669540905183e+01 +Electron-alpha_thermal_Coulomb_log_at_point_449__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile449)_ 1.71559486780607138e+01 +Electron-alpha_thermal_Coulomb_log_at_point_450__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile450)_ 1.71508151968431406e+01 +Electron-alpha_thermal_Coulomb_log_at_point_451__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile451)_ 1.71457729865852038e+01 +Electron-alpha_thermal_Coulomb_log_at_point_452__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile452)_ 1.71408289923060622e+01 +Electron-alpha_thermal_Coulomb_log_at_point_453__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile453)_ 1.71359906827833299e+01 +Electron-alpha_thermal_Coulomb_log_at_point_454__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile454)_ 1.71312661160909911e+01 +Electron-alpha_thermal_Coulomb_log_at_point_455__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile455)_ 1.71266640187558323e+01 +Electron-alpha_thermal_Coulomb_log_at_point_456__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile456)_ 1.71221938825840141e+01 +Electron-alpha_thermal_Coulomb_log_at_point_457__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile457)_ 1.71178660847957929e+01 +Electron-alpha_thermal_Coulomb_log_at_point_458__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile458)_ 1.71136920394805685e+01 +Electron-alpha_thermal_Coulomb_log_at_point_459__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile459)_ 1.71096843920404034e+01 +Electron-alpha_thermal_Coulomb_log_at_point_460__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile460)_ 1.71058572740933599e+01 +Electron-alpha_thermal_Coulomb_log_at_point_461__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile461)_ 1.71022266458642989e+01 +Electron-alpha_thermal_Coulomb_log_at_point_462__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile462)_ 1.70988107695121023e+01 +Electron-alpha_thermal_Coulomb_log_at_point_463__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile463)_ 1.70956308865372186e+01 +Electron-alpha_thermal_Coulomb_log_at_point_464__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile464)_ 1.70927122295617551e+01 +Electron-alpha_thermal_Coulomb_log_at_point_465__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile465)_ 1.70900856176514893e+01 +Electron-alpha_thermal_Coulomb_log_at_point_466__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile466)_ 1.70877901577894740e+01 +Electron-alpha_thermal_Coulomb_log_at_point_467__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile467)_ 1.70858782959485183e+01 +Electron-alpha_thermal_Coulomb_log_at_point_468__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile468)_ 1.70844267803237031e+01 +Electron-alpha_thermal_Coulomb_log_at_point_469__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile469)_ 1.70835675319629452e+01 +Electron-alpha_thermal_Coulomb_log_at_point_470__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile470)_ 1.70836770143732366e+01 +Electron-alpha_thermal_Coulomb_log_at_point_471__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile471)_ 1.70575734288339476e+01 +Electron-alpha_thermal_Coulomb_log_at_point_472__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile472)_ 1.70304213583625348e+01 +Electron-alpha_thermal_Coulomb_log_at_point_473__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile473)_ 1.70021418762557914e+01 +Electron-alpha_thermal_Coulomb_log_at_point_474__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile474)_ 1.69726471140831983e+01 +Electron-alpha_thermal_Coulomb_log_at_point_475__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile475)_ 1.69418388768614996e+01 +Electron-alpha_thermal_Coulomb_log_at_point_476__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile476)_ 1.69096069808027387e+01 +Electron-alpha_thermal_Coulomb_log_at_point_477__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile477)_ 1.68758272442949853e+01 +Electron-alpha_thermal_Coulomb_log_at_point_478__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile478)_ 1.68403590416890090e+01 +Electron-alpha_thermal_Coulomb_log_at_point_479__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile479)_ 1.68030423007200973e+01 +Electron-alpha_thermal_Coulomb_log_at_point_480__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile480)_ 1.67636937847104548e+01 +Electron-alpha_thermal_Coulomb_log_at_point_481__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile481)_ 1.67221024451590701e+01 +Electron-alpha_thermal_Coulomb_log_at_point_482__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile482)_ 1.66780235514274544e+01 +Electron-alpha_thermal_Coulomb_log_at_point_483__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile483)_ 1.66311711903041548e+01 +Electron-alpha_thermal_Coulomb_log_at_point_484__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile484)_ 1.65812085607517936e+01 +Electron-alpha_thermal_Coulomb_log_at_point_485__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile485)_ 1.65277352380103899e+01 +Electron-alpha_thermal_Coulomb_log_at_point_486__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile486)_ 1.64702701962975127e+01 +Electron-alpha_thermal_Coulomb_log_at_point_487__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile487)_ 1.64082287746549618e+01 +Electron-alpha_thermal_Coulomb_log_at_point_488__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile488)_ 1.63408907939809680e+01 +Electron-alpha_thermal_Coulomb_log_at_point_489__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile489)_ 1.62673554061810215e+01 +Electron-alpha_thermal_Coulomb_log_at_point_490__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile490)_ 1.61864754463802178e+01 +Electron-alpha_thermal_Coulomb_log_at_point_491__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile491)_ 1.60967590012699837e+01 +Electron-alpha_thermal_Coulomb_log_at_point_492__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile492)_ 1.59962163509226727e+01 +Electron-alpha_thermal_Coulomb_log_at_point_493__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile493)_ 1.58821113187931733e+01 +Electron-alpha_thermal_Coulomb_log_at_point_494__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile494)_ 1.57505350382743075e+01 +Electron-alpha_thermal_Coulomb_log_at_point_495__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile495)_ 1.55956241986369282e+01 +Electron-alpha_thermal_Coulomb_log_at_point_496__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile496)_ 1.54079953259759410e+01 +Electron-alpha_thermal_Coulomb_log_at_point_497__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile497)_ 1.51712091172435688e+01 +Electron-alpha_thermal_Coulomb_log_at_point_498__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile498)_ 1.48522553198132297e+01 +Electron-alpha_thermal_Coulomb_log_at_point_499__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile499)_ 1.43673549818551027e+01 +Electron-alpha_thermal_Coulomb_log_at_point_500__________________________ (plasma_coulomb_log_electron_alpha_thermal_profile500)_ 1.29605006186064990e+01 +Volume_averaged_electron-electron_collision_time_(τₑₑ)_(s)_______________ (t_plasma_electron_electron_collision_vol_avg)_ 6.89492933898491300e-04 OP +Electron-electron_collision_time_at_point_0______________________________ (t_plasma_electron_electron_collision_profile0)_ 1.50274719634883478e-03 +Electron-electron_collision_time_at_point_1______________________________ (t_plasma_electron_electron_collision_profile1)_ 1.50273864986995927e-03 +Electron-electron_collision_time_at_point_2______________________________ (t_plasma_electron_electron_collision_profile2)_ 1.50271301054497714e-03 +Electron-electron_collision_time_at_point_3______________________________ (t_plasma_electron_electron_collision_profile3)_ 1.50267027870882902e-03 +Electron-electron_collision_time_at_point_4______________________________ (t_plasma_electron_electron_collision_profile4)_ 1.50261045491976238e-03 +Electron-electron_collision_time_at_point_5______________________________ (t_plasma_electron_electron_collision_profile5)_ 1.50253353995935188e-03 +Electron-electron_collision_time_at_point_6______________________________ (t_plasma_electron_electron_collision_profile6)_ 1.50243953483252869e-03 +Electron-electron_collision_time_at_point_7______________________________ (t_plasma_electron_electron_collision_profile7)_ 1.50232844076761689e-03 +Electron-electron_collision_time_at_point_8______________________________ (t_plasma_electron_electron_collision_profile8)_ 1.50220025921637577e-03 +Electron-electron_collision_time_at_point_9______________________________ (t_plasma_electron_electron_collision_profile9)_ 1.50205499185405576e-03 +Electron-electron_collision_time_at_point_10_____________________________ (t_plasma_electron_electron_collision_profile10)_ 1.50189264057945982e-03 +Electron-electron_collision_time_at_point_11_____________________________ (t_plasma_electron_electron_collision_profile11)_ 1.50171320751500887e-03 +Electron-electron_collision_time_at_point_12_____________________________ (t_plasma_electron_electron_collision_profile12)_ 1.50151669500682276e-03 +Electron-electron_collision_time_at_point_13_____________________________ (t_plasma_electron_electron_collision_profile13)_ 1.50130310562480323e-03 +Electron-electron_collision_time_at_point_14_____________________________ (t_plasma_electron_electron_collision_profile14)_ 1.50107244216273112e-03 +Electron-electron_collision_time_at_point_15_____________________________ (t_plasma_electron_electron_collision_profile15)_ 1.50082470763836348e-03 +Electron-electron_collision_time_at_point_16_____________________________ (t_plasma_electron_electron_collision_profile16)_ 1.50055990529354591e-03 +Electron-electron_collision_time_at_point_17_____________________________ (t_plasma_electron_electron_collision_profile17)_ 1.50027803859433245e-03 +Electron-electron_collision_time_at_point_18_____________________________ (t_plasma_electron_electron_collision_profile18)_ 1.49997911123110725e-03 +Electron-electron_collision_time_at_point_19_____________________________ (t_plasma_electron_electron_collision_profile19)_ 1.49966312711872639e-03 +Electron-electron_collision_time_at_point_20_____________________________ (t_plasma_electron_electron_collision_profile20)_ 1.49933009039665294e-03 +Electron-electron_collision_time_at_point_21_____________________________ (t_plasma_electron_electron_collision_profile21)_ 1.49898000542911399e-03 +Electron-electron_collision_time_at_point_22_____________________________ (t_plasma_electron_electron_collision_profile22)_ 1.49861287680525456e-03 +Electron-electron_collision_time_at_point_23_____________________________ (t_plasma_electron_electron_collision_profile23)_ 1.49822870933931027e-03 +Electron-electron_collision_time_at_point_24_____________________________ (t_plasma_electron_electron_collision_profile24)_ 1.49782750807078181e-03 +Electron-electron_collision_time_at_point_25_____________________________ (t_plasma_electron_electron_collision_profile25)_ 1.49740927826461632e-03 +Electron-electron_collision_time_at_point_26_____________________________ (t_plasma_electron_electron_collision_profile26)_ 1.49697402541140051e-03 +Electron-electron_collision_time_at_point_27_____________________________ (t_plasma_electron_electron_collision_profile27)_ 1.49652175522756756e-03 +Electron-electron_collision_time_at_point_28_____________________________ (t_plasma_electron_electron_collision_profile28)_ 1.49605247365559662e-03 +Electron-electron_collision_time_at_point_29_____________________________ (t_plasma_electron_electron_collision_profile29)_ 1.49556618686423723e-03 +Electron-electron_collision_time_at_point_30_____________________________ (t_plasma_electron_electron_collision_profile30)_ 1.49506290124872964e-03 +Electron-electron_collision_time_at_point_31_____________________________ (t_plasma_electron_electron_collision_profile31)_ 1.49454262343104677e-03 +Electron-electron_collision_time_at_point_32_____________________________ (t_plasma_electron_electron_collision_profile32)_ 1.49400536026012671e-03 +Electron-electron_collision_time_at_point_33_____________________________ (t_plasma_electron_electron_collision_profile33)_ 1.49345111881213333e-03 +Electron-electron_collision_time_at_point_34_____________________________ (t_plasma_electron_electron_collision_profile34)_ 1.49287990639070762e-03 +Electron-electron_collision_time_at_point_35_____________________________ (t_plasma_electron_electron_collision_profile35)_ 1.49229173052724219e-03 +Electron-electron_collision_time_at_point_36_____________________________ (t_plasma_electron_electron_collision_profile36)_ 1.49168659898115167e-03 +Electron-electron_collision_time_at_point_37_____________________________ (t_plasma_electron_electron_collision_profile37)_ 1.49106451974016243e-03 +Electron-electron_collision_time_at_point_38_____________________________ (t_plasma_electron_electron_collision_profile38)_ 1.49042550102060334e-03 +Electron-electron_collision_time_at_point_39_____________________________ (t_plasma_electron_electron_collision_profile39)_ 1.48976955126770873e-03 +Electron-electron_collision_time_at_point_40_____________________________ (t_plasma_electron_electron_collision_profile40)_ 1.48909667915592646e-03 +Electron-electron_collision_time_at_point_41_____________________________ (t_plasma_electron_electron_collision_profile41)_ 1.48840689358924107e-03 +Electron-electron_collision_time_at_point_42_____________________________ (t_plasma_electron_electron_collision_profile42)_ 1.48770020370149816e-03 +Electron-electron_collision_time_at_point_43_____________________________ (t_plasma_electron_electron_collision_profile43)_ 1.48697661885674286e-03 +Electron-electron_collision_time_at_point_44_____________________________ (t_plasma_electron_electron_collision_profile44)_ 1.48623614864956156e-03 +Electron-electron_collision_time_at_point_45_____________________________ (t_plasma_electron_electron_collision_profile45)_ 1.48547880290543976e-03 +Electron-electron_collision_time_at_point_46_____________________________ (t_plasma_electron_electron_collision_profile46)_ 1.48470459168112195e-03 +Electron-electron_collision_time_at_point_47_____________________________ (t_plasma_electron_electron_collision_profile47)_ 1.48391352526498375e-03 +Electron-electron_collision_time_at_point_48_____________________________ (t_plasma_electron_electron_collision_profile48)_ 1.48310561417741029e-03 +Electron-electron_collision_time_at_point_49_____________________________ (t_plasma_electron_electron_collision_profile49)_ 1.48228086917118868e-03 +Electron-electron_collision_time_at_point_50_____________________________ (t_plasma_electron_electron_collision_profile50)_ 1.48143930123189943e-03 +Electron-electron_collision_time_at_point_51_____________________________ (t_plasma_electron_electron_collision_profile51)_ 1.48058092157833058e-03 +Electron-electron_collision_time_at_point_52_____________________________ (t_plasma_electron_electron_collision_profile52)_ 1.47970574166288670e-03 +Electron-electron_collision_time_at_point_53_____________________________ (t_plasma_electron_electron_collision_profile53)_ 1.47881377317201669e-03 +Electron-electron_collision_time_at_point_54_____________________________ (t_plasma_electron_electron_collision_profile54)_ 1.47790502802664595e-03 +Electron-electron_collision_time_at_point_55_____________________________ (t_plasma_electron_electron_collision_profile55)_ 1.47697951838261896e-03 +Electron-electron_collision_time_at_point_56_____________________________ (t_plasma_electron_electron_collision_profile56)_ 1.47603725663115201e-03 +Electron-electron_collision_time_at_point_57_____________________________ (t_plasma_electron_electron_collision_profile57)_ 1.47507825539929058e-03 +Electron-electron_collision_time_at_point_58_____________________________ (t_plasma_electron_electron_collision_profile58)_ 1.47410252755038091e-03 +Electron-electron_collision_time_at_point_59_____________________________ (t_plasma_electron_electron_collision_profile59)_ 1.47311008618454921e-03 +Electron-electron_collision_time_at_point_60_____________________________ (t_plasma_electron_electron_collision_profile60)_ 1.47210094463918941e-03 +Electron-electron_collision_time_at_point_61_____________________________ (t_plasma_electron_electron_collision_profile61)_ 1.47107511648945943e-03 +Electron-electron_collision_time_at_point_62_____________________________ (t_plasma_electron_electron_collision_profile62)_ 1.47003261554878688e-03 +Electron-electron_collision_time_at_point_63_____________________________ (t_plasma_electron_electron_collision_profile63)_ 1.46897345586938992e-03 +Electron-electron_collision_time_at_point_64_____________________________ (t_plasma_electron_electron_collision_profile64)_ 1.46789765174279419e-03 +Electron-electron_collision_time_at_point_65_____________________________ (t_plasma_electron_electron_collision_profile65)_ 1.46680521770037428e-03 +Electron-electron_collision_time_at_point_66_____________________________ (t_plasma_electron_electron_collision_profile66)_ 1.46569616851389408e-03 +Electron-electron_collision_time_at_point_67_____________________________ (t_plasma_electron_electron_collision_profile67)_ 1.46457051919606364e-03 +Electron-electron_collision_time_at_point_68_____________________________ (t_plasma_electron_electron_collision_profile68)_ 1.46342828500109663e-03 +Electron-electron_collision_time_at_point_69_____________________________ (t_plasma_electron_electron_collision_profile69)_ 1.46226948142528959e-03 +Electron-electron_collision_time_at_point_70_____________________________ (t_plasma_electron_electron_collision_profile70)_ 1.46109412420759735e-03 +Electron-electron_collision_time_at_point_71_____________________________ (t_plasma_electron_electron_collision_profile71)_ 1.45990222933023222e-03 +Electron-electron_collision_time_at_point_72_____________________________ (t_plasma_electron_electron_collision_profile72)_ 1.45869381301925896e-03 +Electron-electron_collision_time_at_point_73_____________________________ (t_plasma_electron_electron_collision_profile73)_ 1.45746889174520997e-03 +Electron-electron_collision_time_at_point_74_____________________________ (t_plasma_electron_electron_collision_profile74)_ 1.45622748222370502e-03 +Electron-electron_collision_time_at_point_75_____________________________ (t_plasma_electron_electron_collision_profile75)_ 1.45496960141608292e-03 +Electron-electron_collision_time_at_point_76_____________________________ (t_plasma_electron_electron_collision_profile76)_ 1.45369526653004399e-03 +Electron-electron_collision_time_at_point_77_____________________________ (t_plasma_electron_electron_collision_profile77)_ 1.45240449502029691e-03 +Electron-electron_collision_time_at_point_78_____________________________ (t_plasma_electron_electron_collision_profile78)_ 1.45109730458922313e-03 +Electron-electron_collision_time_at_point_79_____________________________ (t_plasma_electron_electron_collision_profile79)_ 1.44977371318754777e-03 +Electron-electron_collision_time_at_point_80_____________________________ (t_plasma_electron_electron_collision_profile80)_ 1.44843373901502089e-03 +Electron-electron_collision_time_at_point_81_____________________________ (t_plasma_electron_electron_collision_profile81)_ 1.44707740052110387e-03 +Electron-electron_collision_time_at_point_82_____________________________ (t_plasma_electron_electron_collision_profile82)_ 1.44570471640567970e-03 +Electron-electron_collision_time_at_point_83_____________________________ (t_plasma_electron_electron_collision_profile83)_ 1.44431570561975907e-03 +Electron-electron_collision_time_at_point_84_____________________________ (t_plasma_electron_electron_collision_profile84)_ 1.44291038736620372e-03 +Electron-electron_collision_time_at_point_85_____________________________ (t_plasma_electron_electron_collision_profile85)_ 1.44148878110046045e-03 +Electron-electron_collision_time_at_point_86_____________________________ (t_plasma_electron_electron_collision_profile86)_ 1.44005090653130338e-03 +Electron-electron_collision_time_at_point_87_____________________________ (t_plasma_electron_electron_collision_profile87)_ 1.43859678362158634e-03 +Electron-electron_collision_time_at_point_88_____________________________ (t_plasma_electron_electron_collision_profile88)_ 1.43712643258900991e-03 +Electron-electron_collision_time_at_point_89_____________________________ (t_plasma_electron_electron_collision_profile89)_ 1.43563987390689764e-03 +Electron-electron_collision_time_at_point_90_____________________________ (t_plasma_electron_electron_collision_profile90)_ 1.43413712830497606e-03 +Electron-electron_collision_time_at_point_91_____________________________ (t_plasma_electron_electron_collision_profile91)_ 1.43261821677017720e-03 +Electron-electron_collision_time_at_point_92_____________________________ (t_plasma_electron_electron_collision_profile92)_ 1.43108316054744219e-03 +Electron-electron_collision_time_at_point_93_____________________________ (t_plasma_electron_electron_collision_profile93)_ 1.42953198114054289e-03 +Electron-electron_collision_time_at_point_94_____________________________ (t_plasma_electron_electron_collision_profile94)_ 1.42796470031290867e-03 +Electron-electron_collision_time_at_point_95_____________________________ (t_plasma_electron_electron_collision_profile95)_ 1.42638134008846802e-03 +Electron-electron_collision_time_at_point_96_____________________________ (t_plasma_electron_electron_collision_profile96)_ 1.42478192275250133e-03 +Electron-electron_collision_time_at_point_97_____________________________ (t_plasma_electron_electron_collision_profile97)_ 1.42316647085250002e-03 +Electron-electron_collision_time_at_point_98_____________________________ (t_plasma_electron_electron_collision_profile98)_ 1.42153500719904694e-03 +Electron-electron_collision_time_at_point_99_____________________________ (t_plasma_electron_electron_collision_profile99)_ 1.41988755486669523e-03 +Electron-electron_collision_time_at_point_100____________________________ (t_plasma_electron_electron_collision_profile100)_ 1.41822413719487075e-03 +Electron-electron_collision_time_at_point_101____________________________ (t_plasma_electron_electron_collision_profile101)_ 1.41654477778877571e-03 +Electron-electron_collision_time_at_point_102____________________________ (t_plasma_electron_electron_collision_profile102)_ 1.41484950052031414e-03 +Electron-electron_collision_time_at_point_103____________________________ (t_plasma_electron_electron_collision_profile103)_ 1.41313832952901820e-03 +Electron-electron_collision_time_at_point_104____________________________ (t_plasma_electron_electron_collision_profile104)_ 1.41141128922299668e-03 +Electron-electron_collision_time_at_point_105____________________________ (t_plasma_electron_electron_collision_profile105)_ 1.40966840427988690e-03 +Electron-electron_collision_time_at_point_106____________________________ (t_plasma_electron_electron_collision_profile106)_ 1.40790969964782247e-03 +Electron-electron_collision_time_at_point_107____________________________ (t_plasma_electron_electron_collision_profile107)_ 1.40613520054641583e-03 +Electron-electron_collision_time_at_point_108____________________________ (t_plasma_electron_electron_collision_profile108)_ 1.40434493246774416e-03 +Electron-electron_collision_time_at_point_109____________________________ (t_plasma_electron_electron_collision_profile109)_ 1.40253892117735753e-03 +Electron-electron_collision_time_at_point_110____________________________ (t_plasma_electron_electron_collision_profile110)_ 1.40071719271529240e-03 +Electron-electron_collision_time_at_point_111____________________________ (t_plasma_electron_electron_collision_profile111)_ 1.39887977339710071e-03 +Electron-electron_collision_time_at_point_112____________________________ (t_plasma_electron_electron_collision_profile112)_ 1.39702668981489119e-03 +Electron-electron_collision_time_at_point_113____________________________ (t_plasma_electron_electron_collision_profile113)_ 1.39515796883837905e-03 +Electron-electron_collision_time_at_point_114____________________________ (t_plasma_electron_electron_collision_profile114)_ 1.39327363761595504e-03 +Electron-electron_collision_time_at_point_115____________________________ (t_plasma_electron_electron_collision_profile115)_ 1.39137372357576398e-03 +Electron-electron_collision_time_at_point_116____________________________ (t_plasma_electron_electron_collision_profile116)_ 1.38945825442679375e-03 +Electron-electron_collision_time_at_point_117____________________________ (t_plasma_electron_electron_collision_profile117)_ 1.38752725815998249e-03 +Electron-electron_collision_time_at_point_118____________________________ (t_plasma_electron_electron_collision_profile118)_ 1.38558076304933051e-03 +Electron-electron_collision_time_at_point_119____________________________ (t_plasma_electron_electron_collision_profile119)_ 1.38361879765303551e-03 +Electron-electron_collision_time_at_point_120____________________________ (t_plasma_electron_electron_collision_profile120)_ 1.38164139081463550e-03 +Electron-electron_collision_time_at_point_121____________________________ (t_plasma_electron_electron_collision_profile121)_ 1.37964857166416439e-03 +Electron-electron_collision_time_at_point_122____________________________ (t_plasma_electron_electron_collision_profile122)_ 1.37764036961931873e-03 +Electron-electron_collision_time_at_point_123____________________________ (t_plasma_electron_electron_collision_profile123)_ 1.37561681438664739e-03 +Electron-electron_collision_time_at_point_124____________________________ (t_plasma_electron_electron_collision_profile124)_ 1.37357793596274563e-03 +Electron-electron_collision_time_at_point_125____________________________ (t_plasma_electron_electron_collision_profile125)_ 1.37152376463546663e-03 +Electron-electron_collision_time_at_point_126____________________________ (t_plasma_electron_electron_collision_profile126)_ 1.36945433098514509e-03 +Electron-electron_collision_time_at_point_127____________________________ (t_plasma_electron_electron_collision_profile127)_ 1.36736966588583693e-03 +Electron-electron_collision_time_at_point_128____________________________ (t_plasma_electron_electron_collision_profile128)_ 1.36526980050657239e-03 +Electron-electron_collision_time_at_point_129____________________________ (t_plasma_electron_electron_collision_profile129)_ 1.36315476631262305e-03 +Electron-electron_collision_time_at_point_130____________________________ (t_plasma_electron_electron_collision_profile130)_ 1.36102459506678010e-03 +Electron-electron_collision_time_at_point_131____________________________ (t_plasma_electron_electron_collision_profile131)_ 1.35887931883065449e-03 +Electron-electron_collision_time_at_point_132____________________________ (t_plasma_electron_electron_collision_profile132)_ 1.35671896996598300e-03 +Electron-electron_collision_time_at_point_133____________________________ (t_plasma_electron_electron_collision_profile133)_ 1.35454358113595440e-03 +Electron-electron_collision_time_at_point_134____________________________ (t_plasma_electron_electron_collision_profile134)_ 1.35235318530655042e-03 +Electron-electron_collision_time_at_point_135____________________________ (t_plasma_electron_electron_collision_profile135)_ 1.35014781574789729e-03 +Electron-electron_collision_time_at_point_136____________________________ (t_plasma_electron_electron_collision_profile136)_ 1.34792750603563685e-03 +Electron-electron_collision_time_at_point_137____________________________ (t_plasma_electron_electron_collision_profile137)_ 1.34569229005230759e-03 +Electron-electron_collision_time_at_point_138____________________________ (t_plasma_electron_electron_collision_profile138)_ 1.34344220198875193e-03 +Electron-electron_collision_time_at_point_139____________________________ (t_plasma_electron_electron_collision_profile139)_ 1.34117727634552137e-03 +Electron-electron_collision_time_at_point_140____________________________ (t_plasma_electron_electron_collision_profile140)_ 1.33889754793431416e-03 +Electron-electron_collision_time_at_point_141____________________________ (t_plasma_electron_electron_collision_profile141)_ 1.33660305187941896e-03 +Electron-electron_collision_time_at_point_142____________________________ (t_plasma_electron_electron_collision_profile142)_ 1.33429382361917445e-03 +Electron-electron_collision_time_at_point_143____________________________ (t_plasma_electron_electron_collision_profile143)_ 1.33196989890745380e-03 +Electron-electron_collision_time_at_point_144____________________________ (t_plasma_electron_electron_collision_profile144)_ 1.32963131381515069e-03 +Electron-electron_collision_time_at_point_145____________________________ (t_plasma_electron_electron_collision_profile145)_ 1.32727810473169238e-03 +Electron-electron_collision_time_at_point_146____________________________ (t_plasma_electron_electron_collision_profile146)_ 1.32491030836656937e-03 +Electron-electron_collision_time_at_point_147____________________________ (t_plasma_electron_electron_collision_profile147)_ 1.32252796175087251e-03 +Electron-electron_collision_time_at_point_148____________________________ (t_plasma_electron_electron_collision_profile148)_ 1.32013110223885713e-03 +Electron-electron_collision_time_at_point_149____________________________ (t_plasma_electron_electron_collision_profile149)_ 1.31771976750951511e-03 +Electron-electron_collision_time_at_point_150____________________________ (t_plasma_electron_electron_collision_profile150)_ 1.31529399556817319e-03 +Electron-electron_collision_time_at_point_151____________________________ (t_plasma_electron_electron_collision_profile151)_ 1.31285382474809675e-03 +Electron-electron_collision_time_at_point_152____________________________ (t_plasma_electron_electron_collision_profile152)_ 1.31039929371212262e-03 +Electron-electron_collision_time_at_point_153____________________________ (t_plasma_electron_electron_collision_profile153)_ 1.30793044145430205e-03 +Electron-electron_collision_time_at_point_154____________________________ (t_plasma_electron_electron_collision_profile154)_ 1.30544730730156175e-03 +Electron-electron_collision_time_at_point_155____________________________ (t_plasma_electron_electron_collision_profile155)_ 1.30294993091538522e-03 +Electron-electron_collision_time_at_point_156____________________________ (t_plasma_electron_electron_collision_profile156)_ 1.30043835229351002e-03 +Electron-electron_collision_time_at_point_157____________________________ (t_plasma_electron_electron_collision_profile157)_ 1.29791261177164400e-03 +Electron-electron_collision_time_at_point_158____________________________ (t_plasma_electron_electron_collision_profile158)_ 1.29537275002520073e-03 +Electron-electron_collision_time_at_point_159____________________________ (t_plasma_electron_electron_collision_profile159)_ 1.29281880807104784e-03 +Electron-electron_collision_time_at_point_160____________________________ (t_plasma_electron_electron_collision_profile160)_ 1.29025082726928319e-03 +Electron-electron_collision_time_at_point_161____________________________ (t_plasma_electron_electron_collision_profile161)_ 1.28766884932502096e-03 +Electron-electron_collision_time_at_point_162____________________________ (t_plasma_electron_electron_collision_profile162)_ 1.28507291629020122e-03 +Electron-electron_collision_time_at_point_163____________________________ (t_plasma_electron_electron_collision_profile163)_ 1.28246307056541740e-03 +Electron-electron_collision_time_at_point_164____________________________ (t_plasma_electron_electron_collision_profile164)_ 1.27983935490176494e-03 +Electron-electron_collision_time_at_point_165____________________________ (t_plasma_electron_electron_collision_profile165)_ 1.27720181240270408e-03 +Electron-electron_collision_time_at_point_166____________________________ (t_plasma_electron_electron_collision_profile166)_ 1.27455048652594881e-03 +Electron-electron_collision_time_at_point_167____________________________ (t_plasma_electron_electron_collision_profile167)_ 1.27188542108537224e-03 +Electron-electron_collision_time_at_point_168____________________________ (t_plasma_electron_electron_collision_profile168)_ 1.26920666025293061e-03 +Electron-electron_collision_time_at_point_169____________________________ (t_plasma_electron_electron_collision_profile169)_ 1.26651424856061051e-03 +Electron-electron_collision_time_at_point_170____________________________ (t_plasma_electron_electron_collision_profile170)_ 1.26380823090239589e-03 +Electron-electron_collision_time_at_point_171____________________________ (t_plasma_electron_electron_collision_profile171)_ 1.26108865253625295e-03 +Electron-electron_collision_time_at_point_172____________________________ (t_plasma_electron_electron_collision_profile172)_ 1.25835555908614095e-03 +Electron-electron_collision_time_at_point_173____________________________ (t_plasma_electron_electron_collision_profile173)_ 1.25560899654403660e-03 +Electron-electron_collision_time_at_point_174____________________________ (t_plasma_electron_electron_collision_profile174)_ 1.25284901127198779e-03 +Electron-electron_collision_time_at_point_175____________________________ (t_plasma_electron_electron_collision_profile175)_ 1.25007565000418482e-03 +Electron-electron_collision_time_at_point_176____________________________ (t_plasma_electron_electron_collision_profile176)_ 1.24728895984905011e-03 +Electron-electron_collision_time_at_point_177____________________________ (t_plasma_electron_electron_collision_profile177)_ 1.24448898829135715e-03 +Electron-electron_collision_time_at_point_178____________________________ (t_plasma_electron_electron_collision_profile178)_ 1.24167578319436334e-03 +Electron-electron_collision_time_at_point_179____________________________ (t_plasma_electron_electron_collision_profile179)_ 1.23884939280197409e-03 +Electron-electron_collision_time_at_point_180____________________________ (t_plasma_electron_electron_collision_profile180)_ 1.23600986574092095e-03 +Electron-electron_collision_time_at_point_181____________________________ (t_plasma_electron_electron_collision_profile181)_ 1.23315725102296687e-03 +Electron-electron_collision_time_at_point_182____________________________ (t_plasma_electron_electron_collision_profile182)_ 1.23029159804713580e-03 +Electron-electron_collision_time_at_point_183____________________________ (t_plasma_electron_electron_collision_profile183)_ 1.22741295660195844e-03 +Electron-electron_collision_time_at_point_184____________________________ (t_plasma_electron_electron_collision_profile184)_ 1.22452137686775544e-03 +Electron-electron_collision_time_at_point_185____________________________ (t_plasma_electron_electron_collision_profile185)_ 1.22161690941892582e-03 +Electron-electron_collision_time_at_point_186____________________________ (t_plasma_electron_electron_collision_profile186)_ 1.21869960522627552e-03 +Electron-electron_collision_time_at_point_187____________________________ (t_plasma_electron_electron_collision_profile187)_ 1.21576951565936049e-03 +Electron-electron_collision_time_at_point_188____________________________ (t_plasma_electron_electron_collision_profile188)_ 1.21282669248885919e-03 +Electron-electron_collision_time_at_point_189____________________________ (t_plasma_electron_electron_collision_profile189)_ 1.20987118788896779e-03 +Electron-electron_collision_time_at_point_190____________________________ (t_plasma_electron_electron_collision_profile190)_ 1.20690305443981924e-03 +Electron-electron_collision_time_at_point_191____________________________ (t_plasma_electron_electron_collision_profile191)_ 1.20392234512993013e-03 +Electron-electron_collision_time_at_point_192____________________________ (t_plasma_electron_electron_collision_profile192)_ 1.20092911335867455e-03 +Electron-electron_collision_time_at_point_193____________________________ (t_plasma_electron_electron_collision_profile193)_ 1.19792341293877610e-03 +Electron-electron_collision_time_at_point_194____________________________ (t_plasma_electron_electron_collision_profile194)_ 1.19490529809883578e-03 +Electron-electron_collision_time_at_point_195____________________________ (t_plasma_electron_electron_collision_profile195)_ 1.19187482348587898e-03 +Electron-electron_collision_time_at_point_196____________________________ (t_plasma_electron_electron_collision_profile196)_ 1.18883204416793528e-03 +Electron-electron_collision_time_at_point_197____________________________ (t_plasma_electron_electron_collision_profile197)_ 1.18577701563663679e-03 +Electron-electron_collision_time_at_point_198____________________________ (t_plasma_electron_electron_collision_profile198)_ 1.18270979380985389e-03 +Electron-electron_collision_time_at_point_199____________________________ (t_plasma_electron_electron_collision_profile199)_ 1.17963043503435043e-03 +Electron-electron_collision_time_at_point_200____________________________ (t_plasma_electron_electron_collision_profile200)_ 1.17653899608847210e-03 +Electron-electron_collision_time_at_point_201____________________________ (t_plasma_electron_electron_collision_profile201)_ 1.17343553418485869e-03 +Electron-electron_collision_time_at_point_202____________________________ (t_plasma_electron_electron_collision_profile202)_ 1.17032010697318907e-03 +Electron-electron_collision_time_at_point_203____________________________ (t_plasma_electron_electron_collision_profile203)_ 1.16719277254295176e-03 +Electron-electron_collision_time_at_point_204____________________________ (t_plasma_electron_electron_collision_profile204)_ 1.16405358942624606e-03 +Electron-electron_collision_time_at_point_205____________________________ (t_plasma_electron_electron_collision_profile205)_ 1.16090261660061378e-03 +Electron-electron_collision_time_at_point_206____________________________ (t_plasma_electron_electron_collision_profile206)_ 1.15773991349189895e-03 +Electron-electron_collision_time_at_point_207____________________________ (t_plasma_electron_electron_collision_profile207)_ 1.15456553997713806e-03 +Electron-electron_collision_time_at_point_208____________________________ (t_plasma_electron_electron_collision_profile208)_ 1.15137955638748178e-03 +Electron-electron_collision_time_at_point_209____________________________ (t_plasma_electron_electron_collision_profile209)_ 1.14818202351114722e-03 +Electron-electron_collision_time_at_point_210____________________________ (t_plasma_electron_electron_collision_profile210)_ 1.14497300259640083e-03 +Electron-electron_collision_time_at_point_211____________________________ (t_plasma_electron_electron_collision_profile211)_ 1.14175255535457483e-03 +Electron-electron_collision_time_at_point_212____________________________ (t_plasma_electron_electron_collision_profile212)_ 1.13852074396311211e-03 +Electron-electron_collision_time_at_point_213____________________________ (t_plasma_electron_electron_collision_profile213)_ 1.13527763106864728e-03 +Electron-electron_collision_time_at_point_214____________________________ (t_plasma_electron_electron_collision_profile214)_ 1.13202327979011904e-03 +Electron-electron_collision_time_at_point_215____________________________ (t_plasma_electron_electron_collision_profile215)_ 1.12875775372191537e-03 +Electron-electron_collision_time_at_point_216____________________________ (t_plasma_electron_electron_collision_profile216)_ 1.12548111693705271e-03 +Electron-electron_collision_time_at_point_217____________________________ (t_plasma_electron_electron_collision_profile217)_ 1.12219343399038904e-03 +Electron-electron_collision_time_at_point_218____________________________ (t_plasma_electron_electron_collision_profile218)_ 1.11889476992187240e-03 +Electron-electron_collision_time_at_point_219____________________________ (t_plasma_electron_electron_collision_profile219)_ 1.11558519025982080e-03 +Electron-electron_collision_time_at_point_220____________________________ (t_plasma_electron_electron_collision_profile220)_ 1.11226476102424098e-03 +Electron-electron_collision_time_at_point_221____________________________ (t_plasma_electron_electron_collision_profile221)_ 1.10893354873018617e-03 +Electron-electron_collision_time_at_point_222____________________________ (t_plasma_electron_electron_collision_profile222)_ 1.10559162039113815e-03 +Electron-electron_collision_time_at_point_223____________________________ (t_plasma_electron_electron_collision_profile223)_ 1.10223904352243877e-03 +Electron-electron_collision_time_at_point_224____________________________ (t_plasma_electron_electron_collision_profile224)_ 1.09887588614475114e-03 +Electron-electron_collision_time_at_point_225____________________________ (t_plasma_electron_electron_collision_profile225)_ 1.09550221678756201e-03 +Electron-electron_collision_time_at_point_226____________________________ (t_plasma_electron_electron_collision_profile226)_ 1.09211810449271851e-03 +Electron-electron_collision_time_at_point_227____________________________ (t_plasma_electron_electron_collision_profile227)_ 1.08872361881800724e-03 +Electron-electron_collision_time_at_point_228____________________________ (t_plasma_electron_electron_collision_profile228)_ 1.08531882984076993e-03 +Electron-electron_collision_time_at_point_229____________________________ (t_plasma_electron_electron_collision_profile229)_ 1.08190380816156019e-03 +Electron-electron_collision_time_at_point_230____________________________ (t_plasma_electron_electron_collision_profile230)_ 1.07847862490783914e-03 +Electron-electron_collision_time_at_point_231____________________________ (t_plasma_electron_electron_collision_profile231)_ 1.07504335173771092e-03 +Electron-electron_collision_time_at_point_232____________________________ (t_plasma_electron_electron_collision_profile232)_ 1.07159806084370268e-03 +Electron-electron_collision_time_at_point_233____________________________ (t_plasma_electron_electron_collision_profile233)_ 1.06814282495658200e-03 +Electron-electron_collision_time_at_point_234____________________________ (t_plasma_electron_electron_collision_profile234)_ 1.06467771734921756e-03 +Electron-electron_collision_time_at_point_235____________________________ (t_plasma_electron_electron_collision_profile235)_ 1.06120281184048939e-03 +Electron-electron_collision_time_at_point_236____________________________ (t_plasma_electron_electron_collision_profile236)_ 1.05771818279922869e-03 +Electron-electron_collision_time_at_point_237____________________________ (t_plasma_electron_electron_collision_profile237)_ 1.05422390514821373e-03 +Electron-electron_collision_time_at_point_238____________________________ (t_plasma_electron_electron_collision_profile238)_ 1.05072005436820850e-03 +Electron-electron_collision_time_at_point_239____________________________ (t_plasma_electron_electron_collision_profile239)_ 1.04720670650203847e-03 +Electron-electron_collision_time_at_point_240____________________________ (t_plasma_electron_electron_collision_profile240)_ 1.04368393815872248e-03 +Electron-electron_collision_time_at_point_241____________________________ (t_plasma_electron_electron_collision_profile241)_ 1.04015182651764513e-03 +Electron-electron_collision_time_at_point_242____________________________ (t_plasma_electron_electron_collision_profile242)_ 1.03661044933277702e-03 +Electron-electron_collision_time_at_point_243____________________________ (t_plasma_electron_electron_collision_profile243)_ 1.03305988493694470e-03 +Electron-electron_collision_time_at_point_244____________________________ (t_plasma_electron_electron_collision_profile244)_ 1.02950021224614777e-03 +Electron-electron_collision_time_at_point_245____________________________ (t_plasma_electron_electron_collision_profile245)_ 1.02593151076392237e-03 +Electron-electron_collision_time_at_point_246____________________________ (t_plasma_electron_electron_collision_profile246)_ 1.02235386058576318e-03 +Electron-electron_collision_time_at_point_247____________________________ (t_plasma_electron_electron_collision_profile247)_ 1.01876734240358537e-03 +Electron-electron_collision_time_at_point_248____________________________ (t_plasma_electron_electron_collision_profile248)_ 1.01517203751024421e-03 +Electron-electron_collision_time_at_point_249____________________________ (t_plasma_electron_electron_collision_profile249)_ 1.01156802780410560e-03 +Electron-electron_collision_time_at_point_250____________________________ (t_plasma_electron_electron_collision_profile250)_ 1.00795539579367197e-03 +Electron-electron_collision_time_at_point_251____________________________ (t_plasma_electron_electron_collision_profile251)_ 1.00433422460225320e-03 +Electron-electron_collision_time_at_point_252____________________________ (t_plasma_electron_electron_collision_profile252)_ 1.00070459797270547e-03 +Electron-electron_collision_time_at_point_253____________________________ (t_plasma_electron_electron_collision_profile253)_ 9.97066600272211506e-04 +Electron-electron_collision_time_at_point_254____________________________ (t_plasma_electron_electron_collision_profile254)_ 9.93420316497128702e-04 +Electron-electron_collision_time_at_point_255____________________________ (t_plasma_electron_electron_collision_profile255)_ 9.89765832277886021e-04 +Electron-electron_collision_time_at_point_256____________________________ (t_plasma_electron_electron_collision_profile256)_ 9.86103233883944873e-04 +Electron-electron_collision_time_at_point_257____________________________ (t_plasma_electron_electron_collision_profile257)_ 9.82432608228812464e-04 +Electron-electron_collision_time_at_point_258____________________________ (t_plasma_electron_electron_collision_profile258)_ 9.78754042875123889e-04 +Electron-electron_collision_time_at_point_259____________________________ (t_plasma_electron_electron_collision_profile259)_ 9.75067626039774309e-04 +Electron-electron_collision_time_at_point_260____________________________ (t_plasma_electron_electron_collision_profile260)_ 9.71373446599122252e-04 +Electron-electron_collision_time_at_point_261____________________________ (t_plasma_electron_electron_collision_profile261)_ 9.67671594094249516e-04 +Electron-electron_collision_time_at_point_262____________________________ (t_plasma_electron_electron_collision_profile262)_ 9.63962158736289261e-04 +Electron-electron_collision_time_at_point_263____________________________ (t_plasma_electron_electron_collision_profile263)_ 9.60245231411815253e-04 +Electron-electron_collision_time_at_point_264____________________________ (t_plasma_electron_electron_collision_profile264)_ 9.56520903688298871e-04 +Electron-electron_collision_time_at_point_265____________________________ (t_plasma_electron_electron_collision_profile265)_ 9.52789267819633659e-04 +Electron-electron_collision_time_at_point_266____________________________ (t_plasma_electron_electron_collision_profile266)_ 9.49050416751726664e-04 +Electron-electron_collision_time_at_point_267____________________________ (t_plasma_electron_electron_collision_profile267)_ 9.45304444128159923e-04 +Electron-electron_collision_time_at_point_268____________________________ (t_plasma_electron_electron_collision_profile268)_ 9.41551444295925678e-04 +Electron-electron_collision_time_at_point_269____________________________ (t_plasma_electron_electron_collision_profile269)_ 9.37791512311222193e-04 +Electron-electron_collision_time_at_point_270____________________________ (t_plasma_electron_electron_collision_profile270)_ 9.34024743945341298e-04 +Electron-electron_collision_time_at_point_271____________________________ (t_plasma_electron_electron_collision_profile271)_ 9.30251235690608951e-04 +Electron-electron_collision_time_at_point_272____________________________ (t_plasma_electron_electron_collision_profile272)_ 9.26471084766422289e-04 +Electron-electron_collision_time_at_point_273____________________________ (t_plasma_electron_electron_collision_profile273)_ 9.22684389125344798e-04 +Electron-electron_collision_time_at_point_274____________________________ (t_plasma_electron_electron_collision_profile274)_ 9.18891247459295481e-04 +Electron-electron_collision_time_at_point_275____________________________ (t_plasma_electron_electron_collision_profile275)_ 9.15091759205806658e-04 +Electron-electron_collision_time_at_point_276____________________________ (t_plasma_electron_electron_collision_profile276)_ 9.11286024554370340e-04 +Electron-electron_collision_time_at_point_277____________________________ (t_plasma_electron_electron_collision_profile277)_ 9.07474144452865270e-04 +Electron-electron_collision_time_at_point_278____________________________ (t_plasma_electron_electron_collision_profile278)_ 9.03656220614066697e-04 +Electron-electron_collision_time_at_point_279____________________________ (t_plasma_electron_electron_collision_profile279)_ 8.99832355522243305e-04 +Electron-electron_collision_time_at_point_280____________________________ (t_plasma_electron_electron_collision_profile280)_ 8.96002652439846850e-04 +Electron-electron_collision_time_at_point_281____________________________ (t_plasma_electron_electron_collision_profile281)_ 8.92167215414280839e-04 +Electron-electron_collision_time_at_point_282____________________________ (t_plasma_electron_electron_collision_profile282)_ 8.88326149284771331e-04 +Electron-electron_collision_time_at_point_283____________________________ (t_plasma_electron_electron_collision_profile283)_ 8.84479559689322964e-04 +Electron-electron_collision_time_at_point_284____________________________ (t_plasma_electron_electron_collision_profile284)_ 8.80627553071776674e-04 +Electron-electron_collision_time_at_point_285____________________________ (t_plasma_electron_electron_collision_profile285)_ 8.76770236688957628e-04 +Electron-electron_collision_time_at_point_286____________________________ (t_plasma_electron_electron_collision_profile286)_ 8.72907718617926690e-04 +Electron-electron_collision_time_at_point_287____________________________ (t_plasma_electron_electron_collision_profile287)_ 8.69040107763332072e-04 +Electron-electron_collision_time_at_point_288____________________________ (t_plasma_electron_electron_collision_profile288)_ 8.65167513864861380e-04 +Electron-electron_collision_time_at_point_289____________________________ (t_plasma_electron_electron_collision_profile289)_ 8.61290047504804576e-04 +Electron-electron_collision_time_at_point_290____________________________ (t_plasma_electron_electron_collision_profile290)_ 8.57407820115716249e-04 +Electron-electron_collision_time_at_point_291____________________________ (t_plasma_electron_electron_collision_profile291)_ 8.53520943988198672e-04 +Electron-electron_collision_time_at_point_292____________________________ (t_plasma_electron_electron_collision_profile292)_ 8.49629532278783624e-04 +Electron-electron_collision_time_at_point_293____________________________ (t_plasma_electron_electron_collision_profile293)_ 8.45733699017942693e-04 +Electron-electron_collision_time_at_point_294____________________________ (t_plasma_electron_electron_collision_profile294)_ 8.41833559118206108e-04 +Electron-electron_collision_time_at_point_295____________________________ (t_plasma_electron_electron_collision_profile295)_ 8.37929228382402135e-04 +Electron-electron_collision_time_at_point_296____________________________ (t_plasma_electron_electron_collision_profile296)_ 8.34020823512025378e-04 +Electron-electron_collision_time_at_point_297____________________________ (t_plasma_electron_electron_collision_profile297)_ 8.30108462115721748e-04 +Electron-electron_collision_time_at_point_298____________________________ (t_plasma_electron_electron_collision_profile298)_ 8.26192262717910693e-04 +Electron-electron_collision_time_at_point_299____________________________ (t_plasma_electron_electron_collision_profile299)_ 8.22272344767531558e-04 +Electron-electron_collision_time_at_point_300____________________________ (t_plasma_electron_electron_collision_profile300)_ 8.18348828646929386e-04 +Electron-electron_collision_time_at_point_301____________________________ (t_plasma_electron_electron_collision_profile301)_ 8.14421835680879491e-04 +Electron-electron_collision_time_at_point_302____________________________ (t_plasma_electron_electron_collision_profile302)_ 8.10491488145745494e-04 +Electron-electron_collision_time_at_point_303____________________________ (t_plasma_electron_electron_collision_profile303)_ 8.06557909278793274e-04 +Electron-electron_collision_time_at_point_304____________________________ (t_plasma_electron_electron_collision_profile304)_ 8.02621223287644557e-04 +Electron-electron_collision_time_at_point_305____________________________ (t_plasma_electron_electron_collision_profile305)_ 7.98681555359887830e-04 +Electron-electron_collision_time_at_point_306____________________________ (t_plasma_electron_electron_collision_profile306)_ 7.94739031672842336e-04 +Electron-electron_collision_time_at_point_307____________________________ (t_plasma_electron_electron_collision_profile307)_ 7.90793779403483514e-04 +Electron-electron_collision_time_at_point_308____________________________ (t_plasma_electron_electron_collision_profile308)_ 7.86845926738531827e-04 +Electron-electron_collision_time_at_point_309____________________________ (t_plasma_electron_electron_collision_profile309)_ 7.82895602884712129e-04 +Electron-electron_collision_time_at_point_310____________________________ (t_plasma_electron_electron_collision_profile310)_ 7.78942938079183909e-04 +Electron-electron_collision_time_at_point_311____________________________ (t_plasma_electron_electron_collision_profile311)_ 7.74988063600151622e-04 +Electron-electron_collision_time_at_point_312____________________________ (t_plasma_electron_electron_collision_profile312)_ 7.71031111777653036e-04 +Electron-electron_collision_time_at_point_313____________________________ (t_plasma_electron_electron_collision_profile313)_ 7.67072216004543181e-04 +Electron-electron_collision_time_at_point_314____________________________ (t_plasma_electron_electron_collision_profile314)_ 7.63111510747662173e-04 +Electron-electron_collision_time_at_point_315____________________________ (t_plasma_electron_electron_collision_profile315)_ 7.59149131559208601e-04 +Electron-electron_collision_time_at_point_316____________________________ (t_plasma_electron_electron_collision_profile316)_ 7.55185215088315120e-04 +Electron-electron_collision_time_at_point_317____________________________ (t_plasma_electron_electron_collision_profile317)_ 7.51219899092829286e-04 +Electron-electron_collision_time_at_point_318____________________________ (t_plasma_electron_electron_collision_profile318)_ 7.47253322451318491e-04 +Electron-electron_collision_time_at_point_319____________________________ (t_plasma_electron_electron_collision_profile319)_ 7.43285625175291414e-04 +Electron-electron_collision_time_at_point_320____________________________ (t_plasma_electron_electron_collision_profile320)_ 7.39316948421649654e-04 +Electron-electron_collision_time_at_point_321____________________________ (t_plasma_electron_electron_collision_profile321)_ 7.35347434505379720e-04 +Electron-electron_collision_time_at_point_322____________________________ (t_plasma_electron_electron_collision_profile322)_ 7.31377226912480519e-04 +Electron-electron_collision_time_at_point_323____________________________ (t_plasma_electron_electron_collision_profile323)_ 7.27406470313150940e-04 +Electron-electron_collision_time_at_point_324____________________________ (t_plasma_electron_electron_collision_profile324)_ 7.23435310575226806e-04 +Electron-electron_collision_time_at_point_325____________________________ (t_plasma_electron_electron_collision_profile325)_ 7.19463894777893102e-04 +Electron-electron_collision_time_at_point_326____________________________ (t_plasma_electron_electron_collision_profile326)_ 7.15492371225664330e-04 +Electron-electron_collision_time_at_point_327____________________________ (t_plasma_electron_electron_collision_profile327)_ 7.11520889462657056e-04 +Electron-electron_collision_time_at_point_328____________________________ (t_plasma_electron_electron_collision_profile328)_ 7.07549600287147055e-04 +Electron-electron_collision_time_at_point_329____________________________ (t_plasma_electron_electron_collision_profile329)_ 7.03578655766438064e-04 +Electron-electron_collision_time_at_point_330____________________________ (t_plasma_electron_electron_collision_profile330)_ 6.99608209252038332e-04 +Electron-electron_collision_time_at_point_331____________________________ (t_plasma_electron_electron_collision_profile331)_ 6.95638415395165039e-04 +Electron-electron_collision_time_at_point_332____________________________ (t_plasma_electron_electron_collision_profile332)_ 6.91669430162580911e-04 +Electron-electron_collision_time_at_point_333____________________________ (t_plasma_electron_electron_collision_profile333)_ 6.87701410852780272e-04 +Electron-electron_collision_time_at_point_334____________________________ (t_plasma_electron_electron_collision_profile334)_ 6.83734516112531913e-04 +Electron-electron_collision_time_at_point_335____________________________ (t_plasma_electron_electron_collision_profile335)_ 6.79768905953794488e-04 +Electron-electron_collision_time_at_point_336____________________________ (t_plasma_electron_electron_collision_profile336)_ 6.75804741771016907e-04 +Electron-electron_collision_time_at_point_337____________________________ (t_plasma_electron_electron_collision_profile337)_ 6.71842186358837619e-04 +Electron-electron_collision_time_at_point_338____________________________ (t_plasma_electron_electron_collision_profile338)_ 6.67881403930196309e-04 +Electron-electron_collision_time_at_point_339____________________________ (t_plasma_electron_electron_collision_profile339)_ 6.63922560134874089e-04 +Electron-electron_collision_time_at_point_340____________________________ (t_plasma_electron_electron_collision_profile340)_ 6.59965822078480038e-04 +Electron-electron_collision_time_at_point_341____________________________ (t_plasma_electron_electron_collision_profile341)_ 6.56011358341897569e-04 +Electron-electron_collision_time_at_point_342____________________________ (t_plasma_electron_electron_collision_profile342)_ 6.52059339001208587e-04 +Electron-electron_collision_time_at_point_343____________________________ (t_plasma_electron_electron_collision_profile343)_ 6.48109935648117806e-04 +Electron-electron_collision_time_at_point_344____________________________ (t_plasma_electron_electron_collision_profile344)_ 6.44163321410892047e-04 +Electron-electron_collision_time_at_point_345____________________________ (t_plasma_electron_electron_collision_profile345)_ 6.40219670975833628e-04 +Electron-electron_collision_time_at_point_346____________________________ (t_plasma_electron_electron_collision_profile346)_ 6.36279160609319583e-04 +Electron-electron_collision_time_at_point_347____________________________ (t_plasma_electron_electron_collision_profile347)_ 6.32341968180413034e-04 +Electron-electron_collision_time_at_point_348____________________________ (t_plasma_electron_electron_collision_profile348)_ 6.28408273184084408e-04 +Electron-electron_collision_time_at_point_349____________________________ (t_plasma_electron_electron_collision_profile349)_ 6.24478256765057492e-04 +Electron-electron_collision_time_at_point_350____________________________ (t_plasma_electron_electron_collision_profile350)_ 6.20552101742316304e-04 +Electron-electron_collision_time_at_point_351____________________________ (t_plasma_electron_electron_collision_profile351)_ 6.16629992634286231e-04 +Electron-electron_collision_time_at_point_352____________________________ (t_plasma_electron_electron_collision_profile352)_ 6.12712115684734752e-04 +Electron-electron_collision_time_at_point_353____________________________ (t_plasma_electron_electron_collision_profile353)_ 6.08798658889405839e-04 +Electron-electron_collision_time_at_point_354____________________________ (t_plasma_electron_electron_collision_profile354)_ 6.04889812023434010e-04 +Electron-electron_collision_time_at_point_355____________________________ (t_plasma_electron_electron_collision_profile355)_ 6.00985766669561556e-04 +Electron-electron_collision_time_at_point_356____________________________ (t_plasma_electron_electron_collision_profile356)_ 5.97086716247200258e-04 +Electron-electron_collision_time_at_point_357____________________________ (t_plasma_electron_electron_collision_profile357)_ 5.93192856042371085e-04 +Electron-electron_collision_time_at_point_358____________________________ (t_plasma_electron_electron_collision_profile358)_ 5.89304383238566988e-04 +Electron-electron_collision_time_at_point_359____________________________ (t_plasma_electron_electron_collision_profile359)_ 5.85421496948570217e-04 +Electron-electron_collision_time_at_point_360____________________________ (t_plasma_electron_electron_collision_profile360)_ 5.81544398247284136e-04 +Electron-electron_collision_time_at_point_361____________________________ (t_plasma_electron_electron_collision_profile361)_ 5.77673290205604024e-04 +Electron-electron_collision_time_at_point_362____________________________ (t_plasma_electron_electron_collision_profile362)_ 5.73808377925400805e-04 +Electron-electron_collision_time_at_point_363____________________________ (t_plasma_electron_electron_collision_profile363)_ 5.69949868575647970e-04 +Electron-electron_collision_time_at_point_364____________________________ (t_plasma_electron_electron_collision_profile364)_ 5.66097971429759114e-04 +Electron-electron_collision_time_at_point_365____________________________ (t_plasma_electron_electron_collision_profile365)_ 5.62252897904189650e-04 +Electron-electron_collision_time_at_point_366____________________________ (t_plasma_electron_electron_collision_profile366)_ 5.58414861598364402e-04 +Electron-electron_collision_time_at_point_367____________________________ (t_plasma_electron_electron_collision_profile367)_ 5.54584078335996979e-04 +Electron-electron_collision_time_at_point_368____________________________ (t_plasma_electron_electron_collision_profile368)_ 5.50760766207868710e-04 +Electron-electron_collision_time_at_point_369____________________________ (t_plasma_electron_electron_collision_profile369)_ 5.46945145616138575e-04 +Electron-electron_collision_time_at_point_370____________________________ (t_plasma_electron_electron_collision_profile370)_ 5.43137439320265239e-04 +Electron-electron_collision_time_at_point_371____________________________ (t_plasma_electron_electron_collision_profile371)_ 5.39337872484618817e-04 +Electron-electron_collision_time_at_point_372____________________________ (t_plasma_electron_electron_collision_profile372)_ 5.35546672727874084e-04 +Electron-electron_collision_time_at_point_373____________________________ (t_plasma_electron_electron_collision_profile373)_ 5.31764070174268306e-04 +Electron-electron_collision_time_at_point_374____________________________ (t_plasma_electron_electron_collision_profile374)_ 5.27990297506836866e-04 +Electron-electron_collision_time_at_point_375____________________________ (t_plasma_electron_electron_collision_profile375)_ 5.24225590022711694e-04 +Electron-electron_collision_time_at_point_376____________________________ (t_plasma_electron_electron_collision_profile376)_ 5.20470185690611415e-04 +Electron-electron_collision_time_at_point_377____________________________ (t_plasma_electron_electron_collision_profile377)_ 5.16724325210626422e-04 +Electron-electron_collision_time_at_point_378____________________________ (t_plasma_electron_electron_collision_profile378)_ 5.12988252076433215e-04 +Electron-electron_collision_time_at_point_379____________________________ (t_plasma_electron_electron_collision_profile379)_ 5.09262212640067139e-04 +Electron-electron_collision_time_at_point_380____________________________ (t_plasma_electron_electron_collision_profile380)_ 5.05546456179397480e-04 +Electron-electron_collision_time_at_point_381____________________________ (t_plasma_electron_electron_collision_profile381)_ 5.01841234968454248e-04 +Electron-electron_collision_time_at_point_382____________________________ (t_plasma_electron_electron_collision_profile382)_ 4.98146804350768266e-04 +Electron-electron_collision_time_at_point_383____________________________ (t_plasma_electron_electron_collision_profile383)_ 4.94463422815901213e-04 +Electron-electron_collision_time_at_point_384____________________________ (t_plasma_electron_electron_collision_profile384)_ 4.90791352079340587e-04 +Electron-electron_collision_time_at_point_385____________________________ (t_plasma_electron_electron_collision_profile385)_ 4.87130857165966684e-04 +Electron-electron_collision_time_at_point_386____________________________ (t_plasma_electron_electron_collision_profile386)_ 4.83482206497292874e-04 +Electron-electron_collision_time_at_point_387____________________________ (t_plasma_electron_electron_collision_profile387)_ 4.79845671982707554e-04 +Electron-electron_collision_time_at_point_388____________________________ (t_plasma_electron_electron_collision_profile388)_ 4.76221529114958424e-04 +Electron-electron_collision_time_at_point_389____________________________ (t_plasma_electron_electron_collision_profile389)_ 4.72610057070136584e-04 +Electron-electron_collision_time_at_point_390____________________________ (t_plasma_electron_electron_collision_profile390)_ 4.69011538812431927e-04 +Electron-electron_collision_time_at_point_391____________________________ (t_plasma_electron_electron_collision_profile391)_ 4.65426261203965371e-04 +Electron-electron_collision_time_at_point_392____________________________ (t_plasma_electron_electron_collision_profile392)_ 4.61854515120003659e-04 +Electron-electron_collision_time_at_point_393____________________________ (t_plasma_electron_electron_collision_profile393)_ 4.58296595569907103e-04 +Electron-electron_collision_time_at_point_394____________________________ (t_plasma_electron_electron_collision_profile394)_ 4.54752801824172108e-04 +Electron-electron_collision_time_at_point_395____________________________ (t_plasma_electron_electron_collision_profile395)_ 4.51223437547964657e-04 +Electron-electron_collision_time_at_point_396____________________________ (t_plasma_electron_electron_collision_profile396)_ 4.47708810941567048e-04 +Electron-electron_collision_time_at_point_397____________________________ (t_plasma_electron_electron_collision_profile397)_ 4.44209234888198669e-04 +Electron-electron_collision_time_at_point_398____________________________ (t_plasma_electron_electron_collision_profile398)_ 4.40725027109697455e-04 +Electron-electron_collision_time_at_point_399____________________________ (t_plasma_electron_electron_collision_profile399)_ 4.37256510330604994e-04 +Electron-electron_collision_time_at_point_400____________________________ (t_plasma_electron_electron_collision_profile400)_ 4.33804012451213708e-04 +Electron-electron_collision_time_at_point_401____________________________ (t_plasma_electron_electron_collision_profile401)_ 4.30367866730214260e-04 +Electron-electron_collision_time_at_point_402____________________________ (t_plasma_electron_electron_collision_profile402)_ 4.26948411977601575e-04 +Electron-electron_collision_time_at_point_403____________________________ (t_plasma_electron_electron_collision_profile403)_ 4.23545992758575052e-04 +Electron-electron_collision_time_at_point_404____________________________ (t_plasma_electron_electron_collision_profile404)_ 4.20160959609219278e-04 +Electron-electron_collision_time_at_point_405____________________________ (t_plasma_electron_electron_collision_profile405)_ 4.16793669264821397e-04 +Electron-electron_collision_time_at_point_406____________________________ (t_plasma_electron_electron_collision_profile406)_ 4.13444484901755584e-04 +Electron-electron_collision_time_at_point_407____________________________ (t_plasma_electron_electron_collision_profile407)_ 4.10113776393946836e-04 +Electron-electron_collision_time_at_point_408____________________________ (t_plasma_electron_electron_collision_profile408)_ 4.06801920585013151e-04 +Electron-electron_collision_time_at_point_409____________________________ (t_plasma_electron_electron_collision_profile409)_ 4.03509301577292573e-04 +Electron-electron_collision_time_at_point_410____________________________ (t_plasma_electron_electron_collision_profile410)_ 4.00236311039056539e-04 +Electron-electron_collision_time_at_point_411____________________________ (t_plasma_electron_electron_collision_profile411)_ 3.96983348531350973e-04 +Electron-electron_collision_time_at_point_412____________________________ (t_plasma_electron_electron_collision_profile412)_ 3.93750821856022747e-04 +Electron-electron_collision_time_at_point_413____________________________ (t_plasma_electron_electron_collision_profile413)_ 3.90539147426656897e-04 +Electron-electron_collision_time_at_point_414____________________________ (t_plasma_electron_electron_collision_profile414)_ 3.87348750664300284e-04 +Electron-electron_collision_time_at_point_415____________________________ (t_plasma_electron_electron_collision_profile415)_ 3.84180066420046083e-04 +Electron-electron_collision_time_at_point_416____________________________ (t_plasma_electron_electron_collision_profile416)_ 3.81033539426753613e-04 +Electron-electron_collision_time_at_point_417____________________________ (t_plasma_electron_electron_collision_profile417)_ 3.77909624782413796e-04 +Electron-electron_collision_time_at_point_418____________________________ (t_plasma_electron_electron_collision_profile418)_ 3.74808788467930344e-04 +Electron-electron_collision_time_at_point_419____________________________ (t_plasma_electron_electron_collision_profile419)_ 3.71731507902380888e-04 +Electron-electron_collision_time_at_point_420____________________________ (t_plasma_electron_electron_collision_profile420)_ 3.68678272539149936e-04 +Electron-electron_collision_time_at_point_421____________________________ (t_plasma_electron_electron_collision_profile421)_ 3.65649584506700157e-04 +Electron-electron_collision_time_at_point_422____________________________ (t_plasma_electron_electron_collision_profile422)_ 3.62645959298169907e-04 +Electron-electron_collision_time_at_point_423____________________________ (t_plasma_electron_electron_collision_profile423)_ 3.59667926514459539e-04 +Electron-electron_collision_time_at_point_424____________________________ (t_plasma_electron_electron_collision_profile424)_ 3.56716030666014844e-04 +Electron-electron_collision_time_at_point_425____________________________ (t_plasma_electron_electron_collision_profile425)_ 3.53790832039138094e-04 +Electron-electron_collision_time_at_point_426____________________________ (t_plasma_electron_electron_collision_profile426)_ 3.50892907633352808e-04 +Electron-electron_collision_time_at_point_427____________________________ (t_plasma_electron_electron_collision_profile427)_ 3.48022852177173794e-04 +Electron-electron_collision_time_at_point_428____________________________ (t_plasma_electron_electron_collision_profile428)_ 3.45181279230554600e-04 +Electron-electron_collision_time_at_point_429____________________________ (t_plasma_electron_electron_collision_profile429)_ 3.42368822383362756e-04 +Electron-electron_collision_time_at_point_430____________________________ (t_plasma_electron_electron_collision_profile430)_ 3.39586136560476805e-04 +Electron-electron_collision_time_at_point_431____________________________ (t_plasma_electron_electron_collision_profile431)_ 3.36833899445537993e-04 +Electron-electron_collision_time_at_point_432____________________________ (t_plasma_electron_electron_collision_profile432)_ 3.34112813037072524e-04 +Electron-electron_collision_time_at_point_433____________________________ (t_plasma_electron_electron_collision_profile433)_ 3.31423605352659941e-04 +Electron-electron_collision_time_at_point_434____________________________ (t_plasma_electron_electron_collision_profile434)_ 3.28767032299136014e-04 +Electron-electron_collision_time_at_point_435____________________________ (t_plasma_electron_electron_collision_profile435)_ 3.26143879729522070e-04 +Electron-electron_collision_time_at_point_436____________________________ (t_plasma_electron_electron_collision_profile436)_ 3.23554965710605707e-04 +Electron-electron_collision_time_at_point_437____________________________ (t_plasma_electron_electron_collision_profile437)_ 3.21001143028904758e-04 +Electron-electron_collision_time_at_point_438____________________________ (t_plasma_electron_electron_collision_profile438)_ 3.18483301967328956e-04 +Electron-electron_collision_time_at_point_439____________________________ (t_plasma_electron_electron_collision_profile439)_ 3.16002373390335809e-04 +Electron-electron_collision_time_at_point_440____________________________ (t_plasma_electron_electron_collision_profile440)_ 3.13559332182004652e-04 +Electron-electron_collision_time_at_point_441____________________________ (t_plasma_electron_electron_collision_profile441)_ 3.11155201089508351e-04 +Electron-electron_collision_time_at_point_442____________________________ (t_plasma_electron_electron_collision_profile442)_ 3.08791055034288641e-04 +Electron-electron_collision_time_at_point_443____________________________ (t_plasma_electron_electron_collision_profile443)_ 3.06468025965352055e-04 +Electron-electron_collision_time_at_point_444____________________________ (t_plasma_electron_electron_collision_profile444)_ 3.04187308344078548e-04 +Electron-electron_collision_time_at_point_445____________________________ (t_plasma_electron_electron_collision_profile445)_ 3.01950165368632952e-04 +Electron-electron_collision_time_at_point_446____________________________ (t_plasma_electron_electron_collision_profile446)_ 2.99757936069594013e-04 +Electron-electron_collision_time_at_point_447____________________________ (t_plasma_electron_electron_collision_profile447)_ 2.97612043438227729e-04 +Electron-electron_collision_time_at_point_448____________________________ (t_plasma_electron_electron_collision_profile448)_ 2.95514003787037283e-04 +Electron-electron_collision_time_at_point_449____________________________ (t_plasma_electron_electron_collision_profile449)_ 2.93465437591572539e-04 +Electron-electron_collision_time_at_point_450____________________________ (t_plasma_electron_electron_collision_profile450)_ 2.91468082127036530e-04 +Electron-electron_collision_time_at_point_451____________________________ (t_plasma_electron_electron_collision_profile451)_ 2.89523806298529272e-04 +Electron-electron_collision_time_at_point_452____________________________ (t_plasma_electron_electron_collision_profile452)_ 2.87634628178069177e-04 +Electron-electron_collision_time_at_point_453____________________________ (t_plasma_electron_electron_collision_profile453)_ 2.85802735916738178e-04 +Electron-electron_collision_time_at_point_454____________________________ (t_plasma_electron_electron_collision_profile454)_ 2.84030512914391572e-04 +Electron-electron_collision_time_at_point_455____________________________ (t_plasma_electron_electron_collision_profile455)_ 2.82320568429732287e-04 +Electron-electron_collision_time_at_point_456____________________________ (t_plasma_electron_electron_collision_profile456)_ 2.80675775243042537e-04 +Electron-electron_collision_time_at_point_457____________________________ (t_plasma_electron_electron_collision_profile457)_ 2.79099316611151026e-04 +Electron-electron_collision_time_at_point_458____________________________ (t_plasma_electron_electron_collision_profile458)_ 2.77594745692665099e-04 +Electron-electron_collision_time_at_point_459____________________________ (t_plasma_electron_electron_collision_profile459)_ 2.76166062064195795e-04 +Electron-electron_collision_time_at_point_460____________________________ (t_plasma_electron_electron_collision_profile460)_ 2.74817812236749167e-04 +Electron-electron_collision_time_at_point_461____________________________ (t_plasma_electron_electron_collision_profile461)_ 2.73555224845704209e-04 +Electron-electron_collision_time_at_point_462____________________________ (t_plasma_electron_electron_collision_profile462)_ 2.72384397649875782e-04 +Electron-electron_collision_time_at_point_463____________________________ (t_plasma_electron_electron_collision_profile463)_ 2.71312565149759734e-04 +Electron-electron_collision_time_at_point_464____________________________ (t_plasma_electron_electron_collision_profile464)_ 2.70348498080985480e-04 +Electron-electron_collision_time_at_point_465____________________________ (t_plasma_electron_electron_collision_profile465)_ 2.69503132684882380e-04 +Electron-electron_collision_time_at_point_466____________________________ (t_plasma_electron_electron_collision_profile466)_ 2.68790634847359178e-04 +Electron-electron_collision_time_at_point_467____________________________ (t_plasma_electron_electron_collision_profile467)_ 2.68230386480026257e-04 +Electron-electron_collision_time_at_point_468____________________________ (t_plasma_electron_electron_collision_profile468)_ 2.67851288714323005e-04 +Electron-electron_collision_time_at_point_469____________________________ (t_plasma_electron_electron_collision_profile469)_ 2.67703852653243903e-04 +Electron-electron_collision_time_at_point_470____________________________ (t_plasma_electron_electron_collision_profile470)_ 2.67934137957129173e-04 +Electron-electron_collision_time_at_point_471____________________________ (t_plasma_electron_electron_collision_profile471)_ 2.58840075418854195e-04 +Electron-electron_collision_time_at_point_472____________________________ (t_plasma_electron_electron_collision_profile472)_ 2.49690068820795637e-04 +Electron-electron_collision_time_at_point_473____________________________ (t_plasma_electron_electron_collision_profile473)_ 2.40485381500156361e-04 +Electron-electron_collision_time_at_point_474____________________________ (t_plasma_electron_electron_collision_profile474)_ 2.31227555272255124e-04 +Electron-electron_collision_time_at_point_475____________________________ (t_plasma_electron_electron_collision_profile475)_ 2.21918450768933531e-04 +Electron-electron_collision_time_at_point_476____________________________ (t_plasma_electron_electron_collision_profile476)_ 2.12560294179859574e-04 +Electron-electron_collision_time_at_point_477____________________________ (t_plasma_electron_electron_collision_profile477)_ 2.03155731599093808e-04 +Electron-electron_collision_time_at_point_478____________________________ (t_plasma_electron_electron_collision_profile478)_ 1.93707892452017825e-04 +Electron-electron_collision_time_at_point_479____________________________ (t_plasma_electron_electron_collision_profile479)_ 1.84220463825437877e-04 +Electron-electron_collision_time_at_point_480____________________________ (t_plasma_electron_electron_collision_profile480)_ 1.74697777971265559e-04 +Electron-electron_collision_time_at_point_481____________________________ (t_plasma_electron_electron_collision_profile481)_ 1.65144915836393284e-04 +Electron-electron_collision_time_at_point_482____________________________ (t_plasma_electron_electron_collision_profile482)_ 1.55567830237488252e-04 +Electron-electron_collision_time_at_point_483____________________________ (t_plasma_electron_electron_collision_profile483)_ 1.45973493320396096e-04 +Electron-electron_collision_time_at_point_484____________________________ (t_plasma_electron_electron_collision_profile484)_ 1.36370074323748460e-04 +Electron-electron_collision_time_at_point_485____________________________ (t_plasma_electron_electron_collision_profile485)_ 1.26767155560792452e-04 +Electron-electron_collision_time_at_point_486____________________________ (t_plasma_electron_electron_collision_profile486)_ 1.17175997180175891e-04 +Electron-electron_collision_time_at_point_487____________________________ (t_plasma_electron_electron_collision_profile487)_ 1.07609865037497504e-04 +Electron-electron_collision_time_at_point_488____________________________ (t_plasma_electron_electron_collision_profile488)_ 9.80844415031639620e-05 +Electron-electron_collision_time_at_point_489____________________________ (t_plasma_electron_electron_collision_profile489)_ 8.86183472400986787e-05 +Electron-electron_collision_time_at_point_490____________________________ (t_plasma_electron_electron_collision_profile490)_ 7.92338146084660958e-05 +Electron-electron_collision_time_at_point_491____________________________ (t_plasma_electron_electron_collision_profile491)_ 6.99575734308230699e-05 +Electron-electron_collision_time_at_point_492____________________________ (t_plasma_electron_electron_collision_profile492)_ 6.08220430562244265e-05 +Electron-electron_collision_time_at_point_493____________________________ (t_plasma_electron_electron_collision_profile493)_ 5.18669821941866203e-05 +Electron-electron_collision_time_at_point_494____________________________ (t_plasma_electron_electron_collision_profile494)_ 4.31418534163404842e-05 +Electron-electron_collision_time_at_point_495____________________________ (t_plasma_electron_electron_collision_profile495)_ 3.47093662146238344e-05 +Electron-electron_collision_time_at_point_496____________________________ (t_plasma_electron_electron_collision_profile496)_ 2.66511059984216247e-05 +Electron-electron_collision_time_at_point_497____________________________ (t_plasma_electron_electron_collision_profile497)_ 1.90772223864610466e-05 +Electron-electron_collision_time_at_point_498____________________________ (t_plasma_electron_electron_collision_profile498)_ 1.21451574263122372e-05 +Electron-electron_collision_time_at_point_499____________________________ (t_plasma_electron_electron_collision_profile499)_ 6.10324178176170551e-06 +Electron-electron_collision_time_at_point_500____________________________ (t_plasma_electron_electron_collision_profile500)_ 1.43737642658788918e-06 +Volume_averaged_electron-deuteron_collision_time_(τₑD)_(s)_______________ (t_plasma_electron_deuteron_collision_vol_avg)_ 8.29937964988665790e-04 OP +Electron-deuteron_collision_time_at_point_0______________________________ (t_plasma_electron_deuteron_collision_profile0)_ 1.80995964913961130e-03 +Electron-deuteron_collision_time_at_point_1______________________________ (t_plasma_electron_deuteron_collision_profile1)_ 1.80994934775552917e-03 +Electron-deuteron_collision_time_at_point_2______________________________ (t_plasma_electron_deuteron_collision_profile2)_ 1.80991844373809335e-03 +Electron-deuteron_collision_time_at_point_3______________________________ (t_plasma_electron_deuteron_collision_profile3)_ 1.80986693749172643e-03 +Electron-deuteron_collision_time_at_point_4______________________________ (t_plasma_electron_deuteron_collision_profile4)_ 1.80979482969049078e-03 +Electron-deuteron_collision_time_at_point_5______________________________ (t_plasma_electron_deuteron_collision_profile5)_ 1.80970212127810524e-03 +Electron-deuteron_collision_time_at_point_6______________________________ (t_plasma_electron_deuteron_collision_profile6)_ 1.80958881346797917e-03 +Electron-deuteron_collision_time_at_point_7______________________________ (t_plasma_electron_deuteron_collision_profile7)_ 1.80945490774326212e-03 +Electron-deuteron_collision_time_at_point_8______________________________ (t_plasma_electron_deuteron_collision_profile8)_ 1.80930040585689195e-03 +Electron-deuteron_collision_time_at_point_9______________________________ (t_plasma_electron_deuteron_collision_profile9)_ 1.80912530983165965e-03 +Electron-deuteron_collision_time_at_point_10_____________________________ (t_plasma_electron_deuteron_collision_profile10)_ 1.80892962196028853e-03 +Electron-deuteron_collision_time_at_point_11_____________________________ (t_plasma_electron_deuteron_collision_profile11)_ 1.80871334480551052e-03 +Electron-deuteron_collision_time_at_point_12_____________________________ (t_plasma_electron_deuteron_collision_profile12)_ 1.80847648120016071e-03 +Electron-deuteron_collision_time_at_point_13_____________________________ (t_plasma_electron_deuteron_collision_profile13)_ 1.80821903424728341e-03 +Electron-deuteron_collision_time_at_point_14_____________________________ (t_plasma_electron_deuteron_collision_profile14)_ 1.80794100732024378e-03 +Electron-deuteron_collision_time_at_point_15_____________________________ (t_plasma_electron_deuteron_collision_profile15)_ 1.80764240406284778e-03 +Electron-deuteron_collision_time_at_point_16_____________________________ (t_plasma_electron_deuteron_collision_profile16)_ 1.80732322838947899e-03 +Electron-deuteron_collision_time_at_point_17_____________________________ (t_plasma_electron_deuteron_collision_profile17)_ 1.80698348448523932e-03 +Electron-deuteron_collision_time_at_point_18_____________________________ (t_plasma_electron_deuteron_collision_profile18)_ 1.80662317680609823e-03 +Electron-deuteron_collision_time_at_point_19_____________________________ (t_plasma_electron_deuteron_collision_profile19)_ 1.80624231007906226e-03 +Electron-deuteron_collision_time_at_point_20_____________________________ (t_plasma_electron_deuteron_collision_profile20)_ 1.80584088930233855e-03 +Electron-deuteron_collision_time_at_point_21_____________________________ (t_plasma_electron_deuteron_collision_profile21)_ 1.80541891974552436e-03 +Electron-deuteron_collision_time_at_point_22_____________________________ (t_plasma_electron_deuteron_collision_profile22)_ 1.80497640694979268e-03 +Electron-deuteron_collision_time_at_point_23_____________________________ (t_plasma_electron_deuteron_collision_profile23)_ 1.80451335672810039e-03 +Electron-deuteron_collision_time_at_point_24_____________________________ (t_plasma_electron_deuteron_collision_profile24)_ 1.80402977516539603e-03 +Electron-deuteron_collision_time_at_point_25_____________________________ (t_plasma_electron_deuteron_collision_profile25)_ 1.80352566861884198e-03 +Electron-deuteron_collision_time_at_point_26_____________________________ (t_plasma_electron_deuteron_collision_profile26)_ 1.80300104371804572e-03 +Electron-deuteron_collision_time_at_point_27_____________________________ (t_plasma_electron_deuteron_collision_profile27)_ 1.80245590736530822e-03 +Electron-deuteron_collision_time_at_point_28_____________________________ (t_plasma_electron_deuteron_collision_profile28)_ 1.80189026673586604e-03 +Electron-deuteron_collision_time_at_point_29_____________________________ (t_plasma_electron_deuteron_collision_profile29)_ 1.80130412927816098e-03 +Electron-deuteron_collision_time_at_point_30_____________________________ (t_plasma_electron_deuteron_collision_profile30)_ 1.80069750271410665e-03 +Electron-deuteron_collision_time_at_point_31_____________________________ (t_plasma_electron_deuteron_collision_profile31)_ 1.80007039503937705e-03 +Electron-deuteron_collision_time_at_point_32_____________________________ (t_plasma_electron_deuteron_collision_profile32)_ 1.79942281452369107e-03 +Electron-deuteron_collision_time_at_point_33_____________________________ (t_plasma_electron_deuteron_collision_profile33)_ 1.79875476971112368e-03 +Electron-deuteron_collision_time_at_point_34_____________________________ (t_plasma_electron_deuteron_collision_profile34)_ 1.79806626942040880e-03 +Electron-deuteron_collision_time_at_point_35_____________________________ (t_plasma_electron_deuteron_collision_profile35)_ 1.79735732274527243e-03 +Electron-deuteron_collision_time_at_point_36_____________________________ (t_plasma_electron_deuteron_collision_profile36)_ 1.79662793905475612e-03 +Electron-deuteron_collision_time_at_point_37_____________________________ (t_plasma_electron_deuteron_collision_profile37)_ 1.79587812799356723e-03 +Electron-deuteron_collision_time_at_point_38_____________________________ (t_plasma_electron_deuteron_collision_profile38)_ 1.79510789948243038e-03 +Electron-deuteron_collision_time_at_point_39_____________________________ (t_plasma_electron_deuteron_collision_profile39)_ 1.79431726371844847e-03 +Electron-deuteron_collision_time_at_point_40_____________________________ (t_plasma_electron_deuteron_collision_profile40)_ 1.79350623117548072e-03 +Electron-deuteron_collision_time_at_point_41_____________________________ (t_plasma_electron_deuteron_collision_profile41)_ 1.79267481260452616e-03 +Electron-deuteron_collision_time_at_point_42_____________________________ (t_plasma_electron_deuteron_collision_profile42)_ 1.79182301903411684e-03 +Electron-deuteron_collision_time_at_point_43_____________________________ (t_plasma_electron_deuteron_collision_profile43)_ 1.79095086177072675e-03 +Electron-deuteron_collision_time_at_point_44_____________________________ (t_plasma_electron_deuteron_collision_profile44)_ 1.79005835239918142e-03 +Electron-deuteron_collision_time_at_point_45_____________________________ (t_plasma_electron_deuteron_collision_profile45)_ 1.78914550278309165e-03 +Electron-deuteron_collision_time_at_point_46_____________________________ (t_plasma_electron_deuteron_collision_profile46)_ 1.78821232506528541e-03 +Electron-deuteron_collision_time_at_point_47_____________________________ (t_plasma_electron_deuteron_collision_profile47)_ 1.78725883166825652e-03 +Electron-deuteron_collision_time_at_point_48_____________________________ (t_plasma_electron_deuteron_collision_profile48)_ 1.78628503529462235e-03 +Electron-deuteron_collision_time_at_point_49_____________________________ (t_plasma_electron_deuteron_collision_profile49)_ 1.78529094892759376e-03 +Electron-deuteron_collision_time_at_point_50_____________________________ (t_plasma_electron_deuteron_collision_profile50)_ 1.78427658583145128e-03 +Electron-deuteron_collision_time_at_point_51_____________________________ (t_plasma_electron_deuteron_collision_profile51)_ 1.78324195955203882e-03 +Electron-deuteron_collision_time_at_point_52_____________________________ (t_plasma_electron_deuteron_collision_profile52)_ 1.78218708391726134e-03 +Electron-deuteron_collision_time_at_point_53_____________________________ (t_plasma_electron_deuteron_collision_profile53)_ 1.78111197303759770e-03 +Electron-deuteron_collision_time_at_point_54_____________________________ (t_plasma_electron_deuteron_collision_profile54)_ 1.78001664130662211e-03 +Electron-deuteron_collision_time_at_point_55_____________________________ (t_plasma_electron_deuteron_collision_profile55)_ 1.77890110340153803e-03 +Electron-deuteron_collision_time_at_point_56_____________________________ (t_plasma_electron_deuteron_collision_profile56)_ 1.77776537428372353e-03 +Electron-deuteron_collision_time_at_point_57_____________________________ (t_plasma_electron_deuteron_collision_profile57)_ 1.77660946919928182e-03 +Electron-deuteron_collision_time_at_point_58_____________________________ (t_plasma_electron_deuteron_collision_profile58)_ 1.77543340367961196e-03 +Electron-deuteron_collision_time_at_point_59_____________________________ (t_plasma_electron_deuteron_collision_profile59)_ 1.77423719354198139e-03 +Electron-deuteron_collision_time_at_point_60_____________________________ (t_plasma_electron_deuteron_collision_profile60)_ 1.77302085489012000e-03 +Electron-deuteron_collision_time_at_point_61_____________________________ (t_plasma_electron_deuteron_collision_profile61)_ 1.77178440411481473e-03 +Electron-deuteron_collision_time_at_point_62_____________________________ (t_plasma_electron_deuteron_collision_profile62)_ 1.77052785789451805e-03 +Electron-deuteron_collision_time_at_point_63_____________________________ (t_plasma_electron_deuteron_collision_profile63)_ 1.76925123319597653e-03 +Electron-deuteron_collision_time_at_point_64_____________________________ (t_plasma_electron_deuteron_collision_profile64)_ 1.76795454727485778e-03 +Electron-deuteron_collision_time_at_point_65_____________________________ (t_plasma_electron_deuteron_collision_profile65)_ 1.76663781767639571e-03 +Electron-deuteron_collision_time_at_point_66_____________________________ (t_plasma_electron_deuteron_collision_profile66)_ 1.76530106223604958e-03 +Electron-deuteron_collision_time_at_point_67_____________________________ (t_plasma_electron_deuteron_collision_profile67)_ 1.76394429908016724e-03 +Electron-deuteron_collision_time_at_point_68_____________________________ (t_plasma_electron_deuteron_collision_profile68)_ 1.76256754662666303e-03 +Electron-deuteron_collision_time_at_point_69_____________________________ (t_plasma_electron_deuteron_collision_profile69)_ 1.76117082358571270e-03 +Electron-deuteron_collision_time_at_point_70_____________________________ (t_plasma_electron_deuteron_collision_profile70)_ 1.75975414896044910e-03 +Electron-deuteron_collision_time_at_point_71_____________________________ (t_plasma_electron_deuteron_collision_profile71)_ 1.75831754204768139e-03 +Electron-deuteron_collision_time_at_point_72_____________________________ (t_plasma_electron_deuteron_collision_profile72)_ 1.75686102243861409e-03 +Electron-deuteron_collision_time_at_point_73_____________________________ (t_plasma_electron_deuteron_collision_profile73)_ 1.75538461001958934e-03 +Electron-deuteron_collision_time_at_point_74_____________________________ (t_plasma_electron_deuteron_collision_profile74)_ 1.75388832497283000e-03 +Electron-deuteron_collision_time_at_point_75_____________________________ (t_plasma_electron_deuteron_collision_profile75)_ 1.75237218777720533e-03 +Electron-deuteron_collision_time_at_point_76_____________________________ (t_plasma_electron_deuteron_collision_profile76)_ 1.75083621920900162e-03 +Electron-deuteron_collision_time_at_point_77_____________________________ (t_plasma_electron_deuteron_collision_profile77)_ 1.74928044034270390e-03 +Electron-deuteron_collision_time_at_point_78_____________________________ (t_plasma_electron_deuteron_collision_profile78)_ 1.74770487255179697e-03 +Electron-deuteron_collision_time_at_point_79_____________________________ (t_plasma_electron_deuteron_collision_profile79)_ 1.74610953750957030e-03 +Electron-deuteron_collision_time_at_point_80_____________________________ (t_plasma_electron_deuteron_collision_profile80)_ 1.74449445718994267e-03 +Electron-deuteron_collision_time_at_point_81_____________________________ (t_plasma_electron_deuteron_collision_profile81)_ 1.74285965386829092e-03 +Electron-deuteron_collision_time_at_point_82_____________________________ (t_plasma_electron_deuteron_collision_profile82)_ 1.74120515012229828e-03 +Electron-deuteron_collision_time_at_point_83_____________________________ (t_plasma_electron_deuteron_collision_profile83)_ 1.73953096883281387e-03 +Electron-deuteron_collision_time_at_point_84_____________________________ (t_plasma_electron_deuteron_collision_profile84)_ 1.73783713318471878e-03 +Electron-deuteron_collision_time_at_point_85_____________________________ (t_plasma_electron_deuteron_collision_profile85)_ 1.73612366666781254e-03 +Electron-deuteron_collision_time_at_point_86_____________________________ (t_plasma_electron_deuteron_collision_profile86)_ 1.73439059307770732e-03 +Electron-deuteron_collision_time_at_point_87_____________________________ (t_plasma_electron_deuteron_collision_profile87)_ 1.73263793651673589e-03 +Electron-deuteron_collision_time_at_point_88_____________________________ (t_plasma_electron_deuteron_collision_profile88)_ 1.73086572139487423e-03 +Electron-deuteron_collision_time_at_point_89_____________________________ (t_plasma_electron_deuteron_collision_profile89)_ 1.72907397243067550e-03 +Electron-deuteron_collision_time_at_point_90_____________________________ (t_plasma_electron_deuteron_collision_profile90)_ 1.72726271465221547e-03 +Electron-deuteron_collision_time_at_point_91_____________________________ (t_plasma_electron_deuteron_collision_profile91)_ 1.72543197339805111e-03 +Electron-deuteron_collision_time_at_point_92_____________________________ (t_plasma_electron_deuteron_collision_profile92)_ 1.72358177431819882e-03 +Electron-deuteron_collision_time_at_point_93_____________________________ (t_plasma_electron_deuteron_collision_profile93)_ 1.72171214337511541e-03 +Electron-deuteron_collision_time_at_point_94_____________________________ (t_plasma_electron_deuteron_collision_profile94)_ 1.71982310684469985e-03 +Electron-deuteron_collision_time_at_point_95_____________________________ (t_plasma_electron_deuteron_collision_profile95)_ 1.71791469131730642e-03 +Electron-deuteron_collision_time_at_point_96_____________________________ (t_plasma_electron_deuteron_collision_profile96)_ 1.71598692369877097e-03 +Electron-deuteron_collision_time_at_point_97_____________________________ (t_plasma_electron_deuteron_collision_profile97)_ 1.71403983121144765e-03 +Electron-deuteron_collision_time_at_point_98_____________________________ (t_plasma_electron_deuteron_collision_profile98)_ 1.71207344139526663e-03 +Electron-deuteron_collision_time_at_point_99_____________________________ (t_plasma_electron_deuteron_collision_profile99)_ 1.71008778210879949e-03 +Electron-deuteron_collision_time_at_point_100____________________________ (t_plasma_electron_deuteron_collision_profile100)_ 1.70808288153033797e-03 +Electron-deuteron_collision_time_at_point_101____________________________ (t_plasma_electron_deuteron_collision_profile101)_ 1.70605876815899159e-03 +Electron-deuteron_collision_time_at_point_102____________________________ (t_plasma_electron_deuteron_collision_profile102)_ 1.70401547081579577e-03 +Electron-deuteron_collision_time_at_point_103____________________________ (t_plasma_electron_deuteron_collision_profile103)_ 1.70195301864483109e-03 +Electron-deuteron_collision_time_at_point_104____________________________ (t_plasma_electron_deuteron_collision_profile104)_ 1.69987144111436741e-03 +Electron-deuteron_collision_time_at_point_105____________________________ (t_plasma_electron_deuteron_collision_profile105)_ 1.69777076801800675e-03 +Electron-deuteron_collision_time_at_point_106____________________________ (t_plasma_electron_deuteron_collision_profile106)_ 1.69565102947585476e-03 +Electron-deuteron_collision_time_at_point_107____________________________ (t_plasma_electron_deuteron_collision_profile107)_ 1.69351225593569765e-03 +Electron-deuteron_collision_time_at_point_108____________________________ (t_plasma_electron_deuteron_collision_profile108)_ 1.69135447817419854e-03 +Electron-deuteron_collision_time_at_point_109____________________________ (t_plasma_electron_deuteron_collision_profile109)_ 1.68917772729810308e-03 +Electron-deuteron_collision_time_at_point_110____________________________ (t_plasma_electron_deuteron_collision_profile110)_ 1.68698203474546959e-03 +Electron-deuteron_collision_time_at_point_111____________________________ (t_plasma_electron_deuteron_collision_profile111)_ 1.68476743228690180e-03 +Electron-deuteron_collision_time_at_point_112____________________________ (t_plasma_electron_deuteron_collision_profile112)_ 1.68253395202680521e-03 +Electron-deuteron_collision_time_at_point_113____________________________ (t_plasma_electron_deuteron_collision_profile113)_ 1.68028162640465628e-03 +Electron-deuteron_collision_time_at_point_114____________________________ (t_plasma_electron_deuteron_collision_profile114)_ 1.67801048819628479e-03 +Electron-deuteron_collision_time_at_point_115____________________________ (t_plasma_electron_deuteron_collision_profile115)_ 1.67572057051517515e-03 +Electron-deuteron_collision_time_at_point_116____________________________ (t_plasma_electron_deuteron_collision_profile116)_ 1.67341190681377953e-03 +Electron-deuteron_collision_time_at_point_117____________________________ (t_plasma_electron_deuteron_collision_profile117)_ 1.67108453088485038e-03 +Electron-deuteron_collision_time_at_point_118____________________________ (t_plasma_electron_deuteron_collision_profile118)_ 1.66873847686278181e-03 +Electron-deuteron_collision_time_at_point_119____________________________ (t_plasma_electron_deuteron_collision_profile119)_ 1.66637377922497498e-03 +Electron-deuteron_collision_time_at_point_120____________________________ (t_plasma_electron_deuteron_collision_profile120)_ 1.66399047279321838e-03 +Electron-deuteron_collision_time_at_point_121____________________________ (t_plasma_electron_deuteron_collision_profile121)_ 1.66158859273507421e-03 +Electron-deuteron_collision_time_at_point_122____________________________ (t_plasma_electron_deuteron_collision_profile122)_ 1.65916817456529119e-03 +Electron-deuteron_collision_time_at_point_123____________________________ (t_plasma_electron_deuteron_collision_profile123)_ 1.65672925414723365e-03 +Electron-deuteron_collision_time_at_point_124____________________________ (t_plasma_electron_deuteron_collision_profile124)_ 1.65427186769431973e-03 +Electron-deuteron_collision_time_at_point_125____________________________ (t_plasma_electron_deuteron_collision_profile125)_ 1.65179605177148236e-03 +Electron-deuteron_collision_time_at_point_126____________________________ (t_plasma_electron_deuteron_collision_profile126)_ 1.64930184329664426e-03 +Electron-deuteron_collision_time_at_point_127____________________________ (t_plasma_electron_deuteron_collision_profile127)_ 1.64678927954221019e-03 +Electron-deuteron_collision_time_at_point_128____________________________ (t_plasma_electron_deuteron_collision_profile128)_ 1.64425839813657449e-03 +Electron-deuteron_collision_time_at_point_129____________________________ (t_plasma_electron_deuteron_collision_profile129)_ 1.64170923706565106e-03 +Electron-deuteron_collision_time_at_point_130____________________________ (t_plasma_electron_deuteron_collision_profile130)_ 1.63914183467441313e-03 +Electron-deuteron_collision_time_at_point_131____________________________ (t_plasma_electron_deuteron_collision_profile131)_ 1.63655622966845586e-03 +Electron-deuteron_collision_time_at_point_132____________________________ (t_plasma_electron_deuteron_collision_profile132)_ 1.63395246111557382e-03 +Electron-deuteron_collision_time_at_point_133____________________________ (t_plasma_electron_deuteron_collision_profile133)_ 1.63133056844735566e-03 +Electron-deuteron_collision_time_at_point_134____________________________ (t_plasma_electron_deuteron_collision_profile134)_ 1.62869059146080039e-03 +Electron-deuteron_collision_time_at_point_135____________________________ (t_plasma_electron_deuteron_collision_profile135)_ 1.62603257031994786e-03 +Electron-deuteron_collision_time_at_point_136____________________________ (t_plasma_electron_deuteron_collision_profile136)_ 1.62335654555752587e-03 +Electron-deuteron_collision_time_at_point_137____________________________ (t_plasma_electron_deuteron_collision_profile137)_ 1.62066255807661935e-03 +Electron-deuteron_collision_time_at_point_138____________________________ (t_plasma_electron_deuteron_collision_profile138)_ 1.61795064915235898e-03 +Electron-deuteron_collision_time_at_point_139____________________________ (t_plasma_electron_deuteron_collision_profile139)_ 1.61522086043361835e-03 +Electron-deuteron_collision_time_at_point_140____________________________ (t_plasma_electron_deuteron_collision_profile140)_ 1.61247323394474781e-03 +Electron-deuteron_collision_time_at_point_141____________________________ (t_plasma_electron_deuteron_collision_profile141)_ 1.60970781208730641e-03 +Electron-deuteron_collision_time_at_point_142____________________________ (t_plasma_electron_deuteron_collision_profile142)_ 1.60692463764182695e-03 +Electron-deuteron_collision_time_at_point_143____________________________ (t_plasma_electron_deuteron_collision_profile143)_ 1.60412375376959909e-03 +Electron-deuteron_collision_time_at_point_144____________________________ (t_plasma_electron_deuteron_collision_profile144)_ 1.60130520401446388e-03 +Electron-deuteron_collision_time_at_point_145____________________________ (t_plasma_electron_deuteron_collision_profile145)_ 1.59846903230463373e-03 +Electron-deuteron_collision_time_at_point_146____________________________ (t_plasma_electron_deuteron_collision_profile146)_ 1.59561528295453121e-03 +Electron-deuteron_collision_time_at_point_147____________________________ (t_plasma_electron_deuteron_collision_profile147)_ 1.59274400066665000e-03 +Electron-deuteron_collision_time_at_point_148____________________________ (t_plasma_electron_deuteron_collision_profile148)_ 1.58985523053343006e-03 +Electron-deuteron_collision_time_at_point_149____________________________ (t_plasma_electron_deuteron_collision_profile149)_ 1.58694901803915723e-03 +Electron-deuteron_collision_time_at_point_150____________________________ (t_plasma_electron_deuteron_collision_profile150)_ 1.58402540906188070e-03 +Electron-deuteron_collision_time_at_point_151____________________________ (t_plasma_electron_deuteron_collision_profile151)_ 1.58108444987535546e-03 +Electron-deuteron_collision_time_at_point_152____________________________ (t_plasma_electron_deuteron_collision_profile152)_ 1.57812618715099848e-03 +Electron-deuteron_collision_time_at_point_153____________________________ (t_plasma_electron_deuteron_collision_profile153)_ 1.57515066795987642e-03 +Electron-deuteron_collision_time_at_point_154____________________________ (t_plasma_electron_deuteron_collision_profile154)_ 1.57215793977469797e-03 +Electron-deuteron_collision_time_at_point_155____________________________ (t_plasma_electron_deuteron_collision_profile155)_ 1.56914805047184548e-03 +Electron-deuteron_collision_time_at_point_156____________________________ (t_plasma_electron_deuteron_collision_profile156)_ 1.56612104833341601e-03 +Electron-deuteron_collision_time_at_point_157____________________________ (t_plasma_electron_deuteron_collision_profile157)_ 1.56307698204928959e-03 +Electron-deuteron_collision_time_at_point_158____________________________ (t_plasma_electron_deuteron_collision_profile158)_ 1.56001590071921654e-03 +Electron-deuteron_collision_time_at_point_159____________________________ (t_plasma_electron_deuteron_collision_profile159)_ 1.55693785385492946e-03 +Electron-deuteron_collision_time_at_point_160____________________________ (t_plasma_electron_deuteron_collision_profile160)_ 1.55384289138227479e-03 +Electron-deuteron_collision_time_at_point_161____________________________ (t_plasma_electron_deuteron_collision_profile161)_ 1.55073106364336799e-03 +Electron-deuteron_collision_time_at_point_162____________________________ (t_plasma_electron_deuteron_collision_profile162)_ 1.54760242139877300e-03 +Electron-deuteron_collision_time_at_point_163____________________________ (t_plasma_electron_deuteron_collision_profile163)_ 1.54445701582970230e-03 +Electron-deuteron_collision_time_at_point_164____________________________ (t_plasma_electron_deuteron_collision_profile164)_ 1.54129489854024342e-03 +Electron-deuteron_collision_time_at_point_165____________________________ (t_plasma_electron_deuteron_collision_profile165)_ 1.53811612155960132e-03 +Electron-deuteron_collision_time_at_point_166____________________________ (t_plasma_electron_deuteron_collision_profile166)_ 1.53492073734437561e-03 +Electron-deuteron_collision_time_at_point_167____________________________ (t_plasma_electron_deuteron_collision_profile167)_ 1.53170879878085147e-03 +Electron-deuteron_collision_time_at_point_168____________________________ (t_plasma_electron_deuteron_collision_profile168)_ 1.52848035918732032e-03 +Electron-deuteron_collision_time_at_point_169____________________________ (t_plasma_electron_deuteron_collision_profile169)_ 1.52523547231642447e-03 +Electron-deuteron_collision_time_at_point_170____________________________ (t_plasma_electron_deuteron_collision_profile170)_ 1.52197419235752199e-03 +Electron-deuteron_collision_time_at_point_171____________________________ (t_plasma_electron_deuteron_collision_profile171)_ 1.51869657393908109e-03 +Electron-deuteron_collision_time_at_point_172____________________________ (t_plasma_electron_deuteron_collision_profile172)_ 1.51540267213109959e-03 +Electron-deuteron_collision_time_at_point_173____________________________ (t_plasma_electron_deuteron_collision_profile173)_ 1.51209254244754352e-03 +Electron-deuteron_collision_time_at_point_174____________________________ (t_plasma_electron_deuteron_collision_profile174)_ 1.50876624084882128e-03 +Electron-deuteron_collision_time_at_point_175____________________________ (t_plasma_electron_deuteron_collision_profile175)_ 1.50542382374427232e-03 +Electron-deuteron_collision_time_at_point_176____________________________ (t_plasma_electron_deuteron_collision_profile176)_ 1.50206534799469222e-03 +Electron-deuteron_collision_time_at_point_177____________________________ (t_plasma_electron_deuteron_collision_profile177)_ 1.49869087091487408e-03 +Electron-deuteron_collision_time_at_point_178____________________________ (t_plasma_electron_deuteron_collision_profile178)_ 1.49530045027618849e-03 +Electron-deuteron_collision_time_at_point_179____________________________ (t_plasma_electron_deuteron_collision_profile179)_ 1.49189414430917736e-03 +Electron-deuteron_collision_time_at_point_180____________________________ (t_plasma_electron_deuteron_collision_profile180)_ 1.48847201170618487e-03 +Electron-deuteron_collision_time_at_point_181____________________________ (t_plasma_electron_deuteron_collision_profile181)_ 1.48503411162400961e-03 +Electron-deuteron_collision_time_at_point_182____________________________ (t_plasma_electron_deuteron_collision_profile182)_ 1.48158050368658845e-03 +Electron-deuteron_collision_time_at_point_183____________________________ (t_plasma_electron_deuteron_collision_profile183)_ 1.47811124798770421e-03 +Electron-deuteron_collision_time_at_point_184____________________________ (t_plasma_electron_deuteron_collision_profile184)_ 1.47462640509372954e-03 +Electron-deuteron_collision_time_at_point_185____________________________ (t_plasma_electron_deuteron_collision_profile185)_ 1.47112603604638691e-03 +Electron-deuteron_collision_time_at_point_186____________________________ (t_plasma_electron_deuteron_collision_profile186)_ 1.46761020236554842e-03 +Electron-deuteron_collision_time_at_point_187____________________________ (t_plasma_electron_deuteron_collision_profile187)_ 1.46407896605206078e-03 +Electron-deuteron_collision_time_at_point_188____________________________ (t_plasma_electron_deuteron_collision_profile188)_ 1.46053238959059704e-03 +Electron-deuteron_collision_time_at_point_189____________________________ (t_plasma_electron_deuteron_collision_profile189)_ 1.45697053595254485e-03 +Electron-deuteron_collision_time_at_point_190____________________________ (t_plasma_electron_deuteron_collision_profile190)_ 1.45339346859891584e-03 +Electron-deuteron_collision_time_at_point_191____________________________ (t_plasma_electron_deuteron_collision_profile191)_ 1.44980125148329504e-03 +Electron-deuteron_collision_time_at_point_192____________________________ (t_plasma_electron_deuteron_collision_profile192)_ 1.44619394905481057e-03 +Electron-deuteron_collision_time_at_point_193____________________________ (t_plasma_electron_deuteron_collision_profile193)_ 1.44257162626114724e-03 +Electron-deuteron_collision_time_at_point_194____________________________ (t_plasma_electron_deuteron_collision_profile194)_ 1.43893434855157801e-03 +Electron-deuteron_collision_time_at_point_195____________________________ (t_plasma_electron_deuteron_collision_profile195)_ 1.43528218188003595e-03 +Electron-deuteron_collision_time_at_point_196____________________________ (t_plasma_electron_deuteron_collision_profile196)_ 1.43161519270821745e-03 +Electron-deuteron_collision_time_at_point_197____________________________ (t_plasma_electron_deuteron_collision_profile197)_ 1.42793344800871448e-03 +Electron-deuteron_collision_time_at_point_198____________________________ (t_plasma_electron_deuteron_collision_profile198)_ 1.42423701526818002e-03 +Electron-deuteron_collision_time_at_point_199____________________________ (t_plasma_electron_deuteron_collision_profile199)_ 1.42052596249053384e-03 +Electron-deuteron_collision_time_at_point_200____________________________ (t_plasma_electron_deuteron_collision_profile200)_ 1.41680035820018931e-03 +Electron-deuteron_collision_time_at_point_201____________________________ (t_plasma_electron_deuteron_collision_profile201)_ 1.41306027144532547e-03 +Electron-deuteron_collision_time_at_point_202____________________________ (t_plasma_electron_deuteron_collision_profile202)_ 1.40930577180118743e-03 +Electron-deuteron_collision_time_at_point_203____________________________ (t_plasma_electron_deuteron_collision_profile203)_ 1.40553692937342217e-03 +Electron-deuteron_collision_time_at_point_204____________________________ (t_plasma_electron_deuteron_collision_profile204)_ 1.40175381480145303e-03 +Electron-deuteron_collision_time_at_point_205____________________________ (t_plasma_electron_deuteron_collision_profile205)_ 1.39795649926188260e-03 +Electron-deuteron_collision_time_at_point_206____________________________ (t_plasma_electron_deuteron_collision_profile206)_ 1.39414505447193961e-03 +Electron-deuteron_collision_time_at_point_207____________________________ (t_plasma_electron_deuteron_collision_profile207)_ 1.39031955269295813e-03 +Electron-deuteron_collision_time_at_point_208____________________________ (t_plasma_electron_deuteron_collision_profile208)_ 1.38648006673388951e-03 +Electron-deuteron_collision_time_at_point_209____________________________ (t_plasma_electron_deuteron_collision_profile209)_ 1.38262666995486098e-03 +Electron-deuteron_collision_time_at_point_210____________________________ (t_plasma_electron_deuteron_collision_profile210)_ 1.37875943627076324e-03 +Electron-deuteron_collision_time_at_point_211____________________________ (t_plasma_electron_deuteron_collision_profile211)_ 1.37487844015488168e-03 +Electron-deuteron_collision_time_at_point_212____________________________ (t_plasma_electron_deuteron_collision_profile212)_ 1.37098375664256034e-03 +Electron-deuteron_collision_time_at_point_213____________________________ (t_plasma_electron_deuteron_collision_profile213)_ 1.36707546133491118e-03 +Electron-deuteron_collision_time_at_point_214____________________________ (t_plasma_electron_deuteron_collision_profile214)_ 1.36315363040256064e-03 +Electron-deuteron_collision_time_at_point_215____________________________ (t_plasma_electron_deuteron_collision_profile215)_ 1.35921834058943245e-03 +Electron-deuteron_collision_time_at_point_216____________________________ (t_plasma_electron_deuteron_collision_profile216)_ 1.35526966921657504e-03 +Electron-deuteron_collision_time_at_point_217____________________________ (t_plasma_electron_deuteron_collision_profile217)_ 1.35130769418603087e-03 +Electron-deuteron_collision_time_at_point_218____________________________ (t_plasma_electron_deuteron_collision_profile218)_ 1.34733249398474083e-03 +Electron-deuteron_collision_time_at_point_219____________________________ (t_plasma_electron_deuteron_collision_profile219)_ 1.34334414768849447e-03 +Electron-deuteron_collision_time_at_point_220____________________________ (t_plasma_electron_deuteron_collision_profile220)_ 1.33934273496592719e-03 +Electron-deuteron_collision_time_at_point_221____________________________ (t_plasma_electron_deuteron_collision_profile221)_ 1.33532833608255306e-03 +Electron-deuteron_collision_time_at_point_222____________________________ (t_plasma_electron_deuteron_collision_profile222)_ 1.33130103190484119e-03 +Electron-deuteron_collision_time_at_point_223____________________________ (t_plasma_electron_deuteron_collision_profile223)_ 1.32726090390434290e-03 +Electron-deuteron_collision_time_at_point_224____________________________ (t_plasma_electron_deuteron_collision_profile224)_ 1.32320803416185692e-03 +Electron-deuteron_collision_time_at_point_225____________________________ (t_plasma_electron_deuteron_collision_profile225)_ 1.31914250537164377e-03 +Electron-deuteron_collision_time_at_point_226____________________________ (t_plasma_electron_deuteron_collision_profile226)_ 1.31506440084568164e-03 +Electron-deuteron_collision_time_at_point_227____________________________ (t_plasma_electron_deuteron_collision_profile227)_ 1.31097380451797372e-03 +Electron-deuteron_collision_time_at_point_228____________________________ (t_plasma_electron_deuteron_collision_profile228)_ 1.30687080094889674e-03 +Electron-deuteron_collision_time_at_point_229____________________________ (t_plasma_electron_deuteron_collision_profile229)_ 1.30275547532960386e-03 +Electron-deuteron_collision_time_at_point_230____________________________ (t_plasma_electron_deuteron_collision_profile230)_ 1.29862791348646931e-03 +Electron-deuteron_collision_time_at_point_231____________________________ (t_plasma_electron_deuteron_collision_profile231)_ 1.29448820188558279e-03 +Electron-deuteron_collision_time_at_point_232____________________________ (t_plasma_electron_deuteron_collision_profile232)_ 1.29033642763730079e-03 +Electron-deuteron_collision_time_at_point_233____________________________ (t_plasma_electron_deuteron_collision_profile233)_ 1.28617267850083443e-03 +Electron-deuteron_collision_time_at_point_234____________________________ (t_plasma_electron_deuteron_collision_profile234)_ 1.28199704288889859e-03 +Electron-deuteron_collision_time_at_point_235____________________________ (t_plasma_electron_deuteron_collision_profile235)_ 1.27780960987241361e-03 +Electron-deuteron_collision_time_at_point_236____________________________ (t_plasma_electron_deuteron_collision_profile236)_ 1.27361046918524783e-03 +Electron-deuteron_collision_time_at_point_237____________________________ (t_plasma_electron_deuteron_collision_profile237)_ 1.26939971122902472e-03 +Electron-deuteron_collision_time_at_point_238____________________________ (t_plasma_electron_deuteron_collision_profile238)_ 1.26517742707797838e-03 +Electron-deuteron_collision_time_at_point_239____________________________ (t_plasma_electron_deuteron_collision_profile239)_ 1.26094370848385930e-03 +Electron-deuteron_collision_time_at_point_240____________________________ (t_plasma_electron_deuteron_collision_profile240)_ 1.25669864788090766e-03 +Electron-deuteron_collision_time_at_point_241____________________________ (t_plasma_electron_deuteron_collision_profile241)_ 1.25244233839086772e-03 +Electron-deuteron_collision_time_at_point_242____________________________ (t_plasma_electron_deuteron_collision_profile242)_ 1.24817487382806623e-03 +Electron-deuteron_collision_time_at_point_243____________________________ (t_plasma_electron_deuteron_collision_profile243)_ 1.24389634870455197e-03 +Electron-deuteron_collision_time_at_point_244____________________________ (t_plasma_electron_deuteron_collision_profile244)_ 1.23960685823528587e-03 +Electron-deuteron_collision_time_at_point_245____________________________ (t_plasma_electron_deuteron_collision_profile245)_ 1.23530649834339046e-03 +Electron-deuteron_collision_time_at_point_246____________________________ (t_plasma_electron_deuteron_collision_profile246)_ 1.23099536566546918e-03 +Electron-deuteron_collision_time_at_point_247____________________________ (t_plasma_electron_deuteron_collision_profile247)_ 1.22667355755697277e-03 +Electron-deuteron_collision_time_at_point_248____________________________ (t_plasma_electron_deuteron_collision_profile248)_ 1.22234117209763871e-03 +Electron-deuteron_collision_time_at_point_249____________________________ (t_plasma_electron_deuteron_collision_profile249)_ 1.21799830809698551e-03 +Electron-deuteron_collision_time_at_point_250____________________________ (t_plasma_electron_deuteron_collision_profile250)_ 1.21364506509987640e-03 +Electron-deuteron_collision_time_at_point_251____________________________ (t_plasma_electron_deuteron_collision_profile251)_ 1.20928154339214073e-03 +Electron-deuteron_collision_time_at_point_252____________________________ (t_plasma_electron_deuteron_collision_profile252)_ 1.20490784400627076e-03 +Electron-deuteron_collision_time_at_point_253____________________________ (t_plasma_electron_deuteron_collision_profile253)_ 1.20052406872717100e-03 +Electron-deuteron_collision_time_at_point_254____________________________ (t_plasma_electron_deuteron_collision_profile254)_ 1.19613032009799228e-03 +Electron-deuteron_collision_time_at_point_255____________________________ (t_plasma_electron_deuteron_collision_profile255)_ 1.19172670142601660e-03 +Electron-deuteron_collision_time_at_point_256____________________________ (t_plasma_electron_deuteron_collision_profile256)_ 1.18731331678862675e-03 +Electron-deuteron_collision_time_at_point_257____________________________ (t_plasma_electron_deuteron_collision_profile257)_ 1.18289027103933510e-03 +Electron-deuteron_collision_time_at_point_258____________________________ (t_plasma_electron_deuteron_collision_profile258)_ 1.17845766981389201e-03 +Electron-deuteron_collision_time_at_point_259____________________________ (t_plasma_electron_deuteron_collision_profile259)_ 1.17401561953646406e-03 +Electron-deuteron_collision_time_at_point_260____________________________ (t_plasma_electron_deuteron_collision_profile260)_ 1.16956422742588531e-03 +Electron-deuteron_collision_time_at_point_261____________________________ (t_plasma_electron_deuteron_collision_profile261)_ 1.16510360150198626e-03 +Electron-deuteron_collision_time_at_point_262____________________________ (t_plasma_electron_deuteron_collision_profile262)_ 1.16063385059199842e-03 +Electron-deuteron_collision_time_at_point_263____________________________ (t_plasma_electron_deuteron_collision_profile263)_ 1.15615508433703743e-03 +Electron-deuteron_collision_time_at_point_264____________________________ (t_plasma_electron_deuteron_collision_profile264)_ 1.15166741319866332e-03 +Electron-deuteron_collision_time_at_point_265____________________________ (t_plasma_electron_deuteron_collision_profile265)_ 1.14717094846552301e-03 +Electron-deuteron_collision_time_at_point_266____________________________ (t_plasma_electron_deuteron_collision_profile266)_ 1.14266580226007604e-03 +Electron-deuteron_collision_time_at_point_267____________________________ (t_plasma_electron_deuteron_collision_profile267)_ 1.13815208754539858e-03 +Electron-deuteron_collision_time_at_point_268____________________________ (t_plasma_electron_deuteron_collision_profile268)_ 1.13362991813208136e-03 +Electron-deuteron_collision_time_at_point_269____________________________ (t_plasma_electron_deuteron_collision_profile269)_ 1.12909940868519761e-03 +Electron-deuteron_collision_time_at_point_270____________________________ (t_plasma_electron_deuteron_collision_profile270)_ 1.12456067473138354e-03 +Electron-deuteron_collision_time_at_point_271____________________________ (t_plasma_electron_deuteron_collision_profile271)_ 1.12001383266597718e-03 +Electron-deuteron_collision_time_at_point_272____________________________ (t_plasma_electron_deuteron_collision_profile272)_ 1.11545899976027907e-03 +Electron-deuteron_collision_time_at_point_273____________________________ (t_plasma_electron_deuteron_collision_profile273)_ 1.11089629416888012e-03 +Electron-deuteron_collision_time_at_point_274____________________________ (t_plasma_electron_deuteron_collision_profile274)_ 1.10632583493710320e-03 +Electron-deuteron_collision_time_at_point_275____________________________ (t_plasma_electron_deuteron_collision_profile275)_ 1.10174774200852183e-03 +Electron-deuteron_collision_time_at_point_276____________________________ (t_plasma_electron_deuteron_collision_profile276)_ 1.09716213623259557e-03 +Electron-deuteron_collision_time_at_point_277____________________________ (t_plasma_electron_deuteron_collision_profile277)_ 1.09256913937239280e-03 +Electron-deuteron_collision_time_at_point_278____________________________ (t_plasma_electron_deuteron_collision_profile278)_ 1.08796887411241714e-03 +Electron-deuteron_collision_time_at_point_279____________________________ (t_plasma_electron_deuteron_collision_profile279)_ 1.08336146406653837e-03 +Electron-deuteron_collision_time_at_point_280____________________________ (t_plasma_electron_deuteron_collision_profile280)_ 1.07874703378603117e-03 +Electron-deuteron_collision_time_at_point_281____________________________ (t_plasma_electron_deuteron_collision_profile281)_ 1.07412570876771573e-03 +Electron-deuteron_collision_time_at_point_282____________________________ (t_plasma_electron_deuteron_collision_profile282)_ 1.06949761546221308e-03 +Electron-deuteron_collision_time_at_point_283____________________________ (t_plasma_electron_deuteron_collision_profile283)_ 1.06486288128230860e-03 +Electron-deuteron_collision_time_at_point_284____________________________ (t_plasma_electron_deuteron_collision_profile284)_ 1.06022163461143293e-03 +Electron-deuteron_collision_time_at_point_285____________________________ (t_plasma_electron_deuteron_collision_profile285)_ 1.05557400481225637e-03 +Electron-deuteron_collision_time_at_point_286____________________________ (t_plasma_electron_deuteron_collision_profile286)_ 1.05092012223540181e-03 +Electron-deuteron_collision_time_at_point_287____________________________ (t_plasma_electron_deuteron_collision_profile287)_ 1.04626011822828288e-03 +Electron-deuteron_collision_time_at_point_288____________________________ (t_plasma_electron_deuteron_collision_profile288)_ 1.04159412514405968e-03 +Electron-deuteron_collision_time_at_point_289____________________________ (t_plasma_electron_deuteron_collision_profile289)_ 1.03692227635072769e-03 +Electron-deuteron_collision_time_at_point_290____________________________ (t_plasma_electron_deuteron_collision_profile290)_ 1.03224470624032824e-03 +Electron-deuteron_collision_time_at_point_291____________________________ (t_plasma_electron_deuteron_collision_profile291)_ 1.02756155023829999e-03 +Electron-deuteron_collision_time_at_point_292____________________________ (t_plasma_electron_deuteron_collision_profile292)_ 1.02287294481295354e-03 +Electron-deuteron_collision_time_at_point_293____________________________ (t_plasma_electron_deuteron_collision_profile293)_ 1.01817902748509745e-03 +Electron-deuteron_collision_time_at_point_294____________________________ (t_plasma_electron_deuteron_collision_profile294)_ 1.01347993683779144e-03 +Electron-deuteron_collision_time_at_point_295____________________________ (t_plasma_electron_deuteron_collision_profile295)_ 1.00877581252625478e-03 +Electron-deuteron_collision_time_at_point_296____________________________ (t_plasma_electron_deuteron_collision_profile296)_ 1.00406679528791502e-03 +Electron-deuteron_collision_time_at_point_297____________________________ (t_plasma_electron_deuteron_collision_profile297)_ 9.99353026952611067e-04 +Electron-deuteron_collision_time_at_point_298____________________________ (t_plasma_electron_deuteron_collision_profile298)_ 9.94634650452946379e-04 +Electron-deuteron_collision_time_at_point_299____________________________ (t_plasma_electron_deuteron_collision_profile299)_ 9.89911809834806422e-04 +Electron-deuteron_collision_time_at_point_300____________________________ (t_plasma_electron_deuteron_collision_profile300)_ 9.85184650268031105e-04 +Electron-deuteron_collision_time_at_point_301____________________________ (t_plasma_electron_deuteron_collision_profile301)_ 9.80453318057258752e-04 +Electron-deuteron_collision_time_at_point_302____________________________ (t_plasma_electron_deuteron_collision_profile302)_ 9.75717960652933147e-04 +Electron-deuteron_collision_time_at_point_303____________________________ (t_plasma_electron_deuteron_collision_profile303)_ 9.70978726662490867e-04 +Electron-deuteron_collision_time_at_point_304____________________________ (t_plasma_electron_deuteron_collision_profile304)_ 9.66235765861722423e-04 +Electron-deuteron_collision_time_at_point_305____________________________ (t_plasma_electron_deuteron_collision_profile305)_ 9.61489229206317930e-04 +Electron-deuteron_collision_time_at_point_306____________________________ (t_plasma_electron_deuteron_collision_profile306)_ 9.56739268843600664e-04 +Electron-deuteron_collision_time_at_point_307____________________________ (t_plasma_electron_deuteron_collision_profile307)_ 9.51986038124448628e-04 +Electron-deuteron_collision_time_at_point_308____________________________ (t_plasma_electron_deuteron_collision_profile308)_ 9.47229691615418101e-04 +Electron-deuteron_collision_time_at_point_309____________________________ (t_plasma_electron_deuteron_collision_profile309)_ 9.42470385111068842e-04 +Electron-deuteron_collision_time_at_point_310____________________________ (t_plasma_electron_deuteron_collision_profile310)_ 9.37708275646494767e-04 +Electron-deuteron_collision_time_at_point_311____________________________ (t_plasma_electron_deuteron_collision_profile311)_ 9.32943521510069275e-04 +Electron-deuteron_collision_time_at_point_312____________________________ (t_plasma_electron_deuteron_collision_profile312)_ 9.28176282256408742e-04 +Electron-deuteron_collision_time_at_point_313____________________________ (t_plasma_electron_deuteron_collision_profile313)_ 9.23406718719566272e-04 +Electron-deuteron_collision_time_at_point_314____________________________ (t_plasma_electron_deuteron_collision_profile314)_ 9.18634993026446866e-04 +Electron-deuteron_collision_time_at_point_315____________________________ (t_plasma_electron_deuteron_collision_profile315)_ 9.13861268610471835e-04 +Electron-deuteron_collision_time_at_point_316____________________________ (t_plasma_electron_deuteron_collision_profile316)_ 9.09085710225483691e-04 +Electron-deuteron_collision_time_at_point_317____________________________ (t_plasma_electron_deuteron_collision_profile317)_ 9.04308483959897482e-04 +Electron-deuteron_collision_time_at_point_318____________________________ (t_plasma_electron_deuteron_collision_profile318)_ 8.99529757251122200e-04 +Electron-deuteron_collision_time_at_point_319____________________________ (t_plasma_electron_deuteron_collision_profile319)_ 8.94749698900241955e-04 +Electron-deuteron_collision_time_at_point_320____________________________ (t_plasma_electron_deuteron_collision_profile320)_ 8.89968479086972013e-04 +Electron-deuteron_collision_time_at_point_321____________________________ (t_plasma_electron_deuteron_collision_profile321)_ 8.85186269384903861e-04 +Electron-deuteron_collision_time_at_point_322____________________________ (t_plasma_electron_deuteron_collision_profile322)_ 8.80403242777036302e-04 +Electron-deuteron_collision_time_at_point_323____________________________ (t_plasma_electron_deuteron_collision_profile323)_ 8.75619573671612499e-04 +Electron-deuteron_collision_time_at_point_324____________________________ (t_plasma_electron_deuteron_collision_profile324)_ 8.70835437918262125e-04 +Electron-deuteron_collision_time_at_point_325____________________________ (t_plasma_electron_deuteron_collision_profile325)_ 8.66051012824470170e-04 +Electron-deuteron_collision_time_at_point_326____________________________ (t_plasma_electron_deuteron_collision_profile326)_ 8.61266477172370698e-04 +Electron-deuteron_collision_time_at_point_327____________________________ (t_plasma_electron_deuteron_collision_profile327)_ 8.56482011235888837e-04 +Electron-deuteron_collision_time_at_point_328____________________________ (t_plasma_electron_deuteron_collision_profile328)_ 8.51697796798225816e-04 +Electron-deuteron_collision_time_at_point_329____________________________ (t_plasma_electron_deuteron_collision_profile329)_ 8.46914017169717406e-04 +Electron-deuteron_collision_time_at_point_330____________________________ (t_plasma_electron_deuteron_collision_profile330)_ 8.42130857206062496e-04 +Electron-deuteron_collision_time_at_point_331____________________________ (t_plasma_electron_deuteron_collision_profile331)_ 8.37348503326945139e-04 +Electron-deuteron_collision_time_at_point_332____________________________ (t_plasma_electron_deuteron_collision_profile332)_ 8.32567143535057307e-04 +Electron-deuteron_collision_time_at_point_333____________________________ (t_plasma_electron_deuteron_collision_profile333)_ 8.27786967435534954e-04 +Electron-deuteron_collision_time_at_point_334____________________________ (t_plasma_electron_deuteron_collision_profile334)_ 8.23008166255830465e-04 +Electron-deuteron_collision_time_at_point_335____________________________ (t_plasma_electron_deuteron_collision_profile335)_ 8.18230932866029735e-04 +Electron-deuteron_collision_time_at_point_336____________________________ (t_plasma_electron_deuteron_collision_profile336)_ 8.13455461799626788e-04 +Electron-deuteron_collision_time_at_point_337____________________________ (t_plasma_electron_deuteron_collision_profile337)_ 8.08681949274785844e-04 +Electron-deuteron_collision_time_at_point_338____________________________ (t_plasma_electron_deuteron_collision_profile338)_ 8.03910593216090852e-04 +Electron-deuteron_collision_time_at_point_339____________________________ (t_plasma_electron_deuteron_collision_profile339)_ 7.99141593276814243e-04 +Electron-deuteron_collision_time_at_point_340____________________________ (t_plasma_electron_deuteron_collision_profile340)_ 7.94375150861721712e-04 +Electron-deuteron_collision_time_at_point_341____________________________ (t_plasma_electron_deuteron_collision_profile341)_ 7.89611469150426366e-04 +Electron-deuteron_collision_time_at_point_342____________________________ (t_plasma_electron_deuteron_collision_profile342)_ 7.84850753121318586e-04 +Electron-deuteron_collision_time_at_point_343____________________________ (t_plasma_electron_deuteron_collision_profile343)_ 7.80093209576097403e-04 +Electron-deuteron_collision_time_at_point_344____________________________ (t_plasma_electron_deuteron_collision_profile344)_ 7.75339047164918778e-04 +Electron-deuteron_collision_time_at_point_345____________________________ (t_plasma_electron_deuteron_collision_profile345)_ 7.70588476412186721e-04 +Electron-deuteron_collision_time_at_point_346____________________________ (t_plasma_electron_deuteron_collision_profile346)_ 7.65841709743023103e-04 +Electron-deuteron_collision_time_at_point_347____________________________ (t_plasma_electron_deuteron_collision_profile347)_ 7.61098961510424431e-04 +Electron-deuteron_collision_time_at_point_348____________________________ (t_plasma_electron_deuteron_collision_profile348)_ 7.56360448023154467e-04 +Electron-deuteron_collision_time_at_point_349____________________________ (t_plasma_electron_deuteron_collision_profile349)_ 7.51626387574382449e-04 +Electron-deuteron_collision_time_at_point_350____________________________ (t_plasma_electron_deuteron_collision_profile350)_ 7.46897000471119401e-04 +Electron-deuteron_collision_time_at_point_351____________________________ (t_plasma_electron_deuteron_collision_profile351)_ 7.42172509064461627e-04 +Electron-deuteron_collision_time_at_point_352____________________________ (t_plasma_electron_deuteron_collision_profile352)_ 7.37453137780702431e-04 +Electron-deuteron_collision_time_at_point_353____________________________ (t_plasma_electron_deuteron_collision_profile353)_ 7.32739113153319226e-04 +Electron-deuteron_collision_time_at_point_354____________________________ (t_plasma_electron_deuteron_collision_profile354)_ 7.28030663855905747e-04 +Electron-deuteron_collision_time_at_point_355____________________________ (t_plasma_electron_deuteron_collision_profile355)_ 7.23328020736061059e-04 +Electron-deuteron_collision_time_at_point_356____________________________ (t_plasma_electron_deuteron_collision_profile356)_ 7.18631416850299353e-04 +Electron-deuteron_collision_time_at_point_357____________________________ (t_plasma_electron_deuteron_collision_profile357)_ 7.13941087500011631e-04 +Electron-deuteron_collision_time_at_point_358____________________________ (t_plasma_electron_deuteron_collision_profile358)_ 7.09257270268537723e-04 +Electron-deuteron_collision_time_at_point_359____________________________ (t_plasma_electron_deuteron_collision_profile359)_ 7.04580205059385928e-04 +Electron-deuteron_collision_time_at_point_360____________________________ (t_plasma_electron_deuteron_collision_profile360)_ 6.99910134135670221e-04 +Electron-deuteron_collision_time_at_point_361____________________________ (t_plasma_electron_deuteron_collision_profile361)_ 6.95247302160798193e-04 +Electron-deuteron_collision_time_at_point_362____________________________ (t_plasma_electron_deuteron_collision_profile362)_ 6.90591956240496456e-04 +Electron-deuteron_collision_time_at_point_363____________________________ (t_plasma_electron_deuteron_collision_profile363)_ 6.85944345966205517e-04 +Electron-deuteron_collision_time_at_point_364____________________________ (t_plasma_electron_deuteron_collision_profile364)_ 6.81304723459939397e-04 +Electron-deuteron_collision_time_at_point_365____________________________ (t_plasma_electron_deuteron_collision_profile365)_ 6.76673343420653491e-04 +Electron-deuteron_collision_time_at_point_366____________________________ (t_plasma_electron_deuteron_collision_profile366)_ 6.72050463172216067e-04 +Electron-deuteron_collision_time_at_point_367____________________________ (t_plasma_electron_deuteron_collision_profile367)_ 6.67436342713044776e-04 +Electron-deuteron_collision_time_at_point_368____________________________ (t_plasma_electron_deuteron_collision_profile368)_ 6.62831244767504344e-04 +Electron-deuteron_collision_time_at_point_369____________________________ (t_plasma_electron_deuteron_collision_profile369)_ 6.58235434839140243e-04 +Electron-deuteron_collision_time_at_point_370____________________________ (t_plasma_electron_deuteron_collision_profile370)_ 6.53649181265853309e-04 +Electron-deuteron_collision_time_at_point_371____________________________ (t_plasma_electron_deuteron_collision_profile371)_ 6.49072755277104092e-04 +Electron-deuteron_collision_time_at_point_372____________________________ (t_plasma_electron_deuteron_collision_profile372)_ 6.44506431053258936e-04 +Electron-deuteron_collision_time_at_point_373____________________________ (t_plasma_electron_deuteron_collision_profile373)_ 6.39950485787180363e-04 +Electron-deuteron_collision_time_at_point_374____________________________ (t_plasma_electron_deuteron_collision_profile374)_ 6.35405199748193049e-04 +Electron-deuteron_collision_time_at_point_375____________________________ (t_plasma_electron_deuteron_collision_profile375)_ 6.30870856348530128e-04 +Electron-deuteron_collision_time_at_point_376____________________________ (t_plasma_electron_deuteron_collision_profile376)_ 6.26347742212417149e-04 +Electron-deuteron_collision_time_at_point_377____________________________ (t_plasma_electron_deuteron_collision_profile377)_ 6.21836147247913041e-04 +Electron-deuteron_collision_time_at_point_378____________________________ (t_plasma_electron_deuteron_collision_profile378)_ 6.17336364721675942e-04 +Electron-deuteron_collision_time_at_point_379____________________________ (t_plasma_electron_deuteron_collision_profile379)_ 6.12848691336799261e-04 +Electron-deuteron_collision_time_at_point_380____________________________ (t_plasma_electron_deuteron_collision_profile380)_ 6.08373427313906316e-04 +Electron-deuteron_collision_time_at_point_381____________________________ (t_plasma_electron_deuteron_collision_profile381)_ 6.03910876475666279e-04 +Electron-deuteron_collision_time_at_point_382____________________________ (t_plasma_electron_deuteron_collision_profile382)_ 5.99461346334939811e-04 +Electron-deuteron_collision_time_at_point_383____________________________ (t_plasma_electron_deuteron_collision_profile383)_ 5.95025148186758440e-04 +Electron-deuteron_collision_time_at_point_384____________________________ (t_plasma_electron_deuteron_collision_profile384)_ 5.90602597204351585e-04 +Electron-deuteron_collision_time_at_point_385____________________________ (t_plasma_electron_deuteron_collision_profile385)_ 5.86194012539472233e-04 +Electron-deuteron_collision_time_at_point_386____________________________ (t_plasma_electron_deuteron_collision_profile386)_ 5.81799717427255439e-04 +Electron-deuteron_collision_time_at_point_387____________________________ (t_plasma_electron_deuteron_collision_profile387)_ 5.77420039295897412e-04 +Electron-deuteron_collision_time_at_point_388____________________________ (t_plasma_electron_deuteron_collision_profile388)_ 5.73055309881432087e-04 +Electron-deuteron_collision_time_at_point_389____________________________ (t_plasma_electron_deuteron_collision_profile389)_ 5.68705865347923605e-04 +Electron-deuteron_collision_time_at_point_390____________________________ (t_plasma_electron_deuteron_collision_profile390)_ 5.64372046413397048e-04 +Electron-deuteron_collision_time_at_point_391____________________________ (t_plasma_electron_deuteron_collision_profile391)_ 5.60054198481876159e-04 +Electron-deuteron_collision_time_at_point_392____________________________ (t_plasma_electron_deuteron_collision_profile392)_ 5.55752671781896564e-04 +Electron-deuteron_collision_time_at_point_393____________________________ (t_plasma_electron_deuteron_collision_profile393)_ 5.51467821511917775e-04 +Electron-deuteron_collision_time_at_point_394____________________________ (t_plasma_electron_deuteron_collision_profile394)_ 5.47200007993063967e-04 +Electron-deuteron_collision_time_at_point_395____________________________ (t_plasma_electron_deuteron_collision_profile395)_ 5.42949596829676536e-04 +Electron-deuteron_collision_time_at_point_396____________________________ (t_plasma_electron_deuteron_collision_profile396)_ 5.38716959078183472e-04 +Electron-deuteron_collision_time_at_point_397____________________________ (t_plasma_electron_deuteron_collision_profile397)_ 5.34502471424839554e-04 +Electron-deuteron_collision_time_at_point_398____________________________ (t_plasma_electron_deuteron_collision_profile398)_ 5.30306516372926651e-04 +Electron-deuteron_collision_time_at_point_399____________________________ (t_plasma_electron_deuteron_collision_profile399)_ 5.26129482440061604e-04 +Electron-deuteron_collision_time_at_point_400____________________________ (t_plasma_electron_deuteron_collision_profile400)_ 5.21971764366290837e-04 +Electron-deuteron_collision_time_at_point_401____________________________ (t_plasma_electron_deuteron_collision_profile401)_ 5.17833763333734208e-04 +Electron-deuteron_collision_time_at_point_402____________________________ (t_plasma_electron_deuteron_collision_profile402)_ 5.13715887198572187e-04 +Electron-deuteron_collision_time_at_point_403____________________________ (t_plasma_electron_deuteron_collision_profile403)_ 5.09618550736264846e-04 +Electron-deuteron_collision_time_at_point_404____________________________ (t_plasma_electron_deuteron_collision_profile404)_ 5.05542175900943001e-04 +Electron-deuteron_collision_time_at_point_405____________________________ (t_plasma_electron_deuteron_collision_profile405)_ 5.01487192100007239e-04 +Electron-deuteron_collision_time_at_point_406____________________________ (t_plasma_electron_deuteron_collision_profile406)_ 4.97454036485051780e-04 +Electron-deuteron_collision_time_at_point_407____________________________ (t_plasma_electron_deuteron_collision_profile407)_ 4.93443154260334309e-04 +Electron-deuteron_collision_time_at_point_408____________________________ (t_plasma_electron_deuteron_collision_profile408)_ 4.89454999010109832e-04 +Electron-deuteron_collision_time_at_point_409____________________________ (t_plasma_electron_deuteron_collision_profile409)_ 4.85490033046286290e-04 +Electron-deuteron_collision_time_at_point_410____________________________ (t_plasma_electron_deuteron_collision_profile410)_ 4.81548727777965705e-04 +Electron-deuteron_collision_time_at_point_411____________________________ (t_plasma_electron_deuteron_collision_profile411)_ 4.77631564104604453e-04 +Electron-deuteron_collision_time_at_point_412____________________________ (t_plasma_electron_deuteron_collision_profile412)_ 4.73739032834670406e-04 +Electron-deuteron_collision_time_at_point_413____________________________ (t_plasma_electron_deuteron_collision_profile413)_ 4.69871635131872186e-04 +Electron-deuteron_collision_time_at_point_414____________________________ (t_plasma_electron_deuteron_collision_profile414)_ 4.66029882991217924e-04 +Electron-deuteron_collision_time_at_point_415____________________________ (t_plasma_electron_deuteron_collision_profile415)_ 4.62214299747402046e-04 +Electron-deuteron_collision_time_at_point_416____________________________ (t_plasma_electron_deuteron_collision_profile416)_ 4.58425420618256306e-04 +Electron-deuteron_collision_time_at_point_417____________________________ (t_plasma_electron_deuteron_collision_profile417)_ 4.54663793286286873e-04 +Electron-deuteron_collision_time_at_point_418____________________________ (t_plasma_electron_deuteron_collision_profile418)_ 4.50929978521632299e-04 +Electron-deuteron_collision_time_at_point_419____________________________ (t_plasma_electron_deuteron_collision_profile419)_ 4.47224550850132082e-04 +Electron-deuteron_collision_time_at_point_420____________________________ (t_plasma_electron_deuteron_collision_profile420)_ 4.43548099270584689e-04 +Electron-deuteron_collision_time_at_point_421____________________________ (t_plasma_electron_deuteron_collision_profile421)_ 4.39901228025732982e-04 +Electron-deuteron_collision_time_at_point_422____________________________ (t_plasma_electron_deuteron_collision_profile422)_ 4.36284557432017319e-04 +Electron-deuteron_collision_time_at_point_423____________________________ (t_plasma_electron_deuteron_collision_profile423)_ 4.32698724773705485e-04 +Electron-deuteron_collision_time_at_point_424____________________________ (t_plasma_electron_deuteron_collision_profile424)_ 4.29144385267673134e-04 +Electron-deuteron_collision_time_at_point_425____________________________ (t_plasma_electron_deuteron_collision_profile425)_ 4.25622213105850470e-04 +Electron-deuteron_collision_time_at_point_426____________________________ (t_plasma_electron_deuteron_collision_profile426)_ 4.22132902583191377e-04 +Electron-deuteron_collision_time_at_point_427____________________________ (t_plasma_electron_deuteron_collision_profile427)_ 4.18677169320014664e-04 +Electron-deuteron_collision_time_at_point_428____________________________ (t_plasma_electron_deuteron_collision_profile428)_ 4.15255751588673846e-04 +Electron-deuteron_collision_time_at_point_429____________________________ (t_plasma_electron_deuteron_collision_profile429)_ 4.11869411755812968e-04 +Electron-deuteron_collision_time_at_point_430____________________________ (t_plasma_electron_deuteron_collision_profile430)_ 4.08518937852957425e-04 +Electron-deuteron_collision_time_at_point_431____________________________ (t_plasma_electron_deuteron_collision_profile431)_ 4.05205145289927503e-04 +Electron-deuteron_collision_time_at_point_432____________________________ (t_plasma_electron_deuteron_collision_profile432)_ 4.01928878727584584e-04 +Electron-deuteron_collision_time_at_point_433____________________________ (t_plasma_electron_deuteron_collision_profile433)_ 3.98691014128774548e-04 +Electron-deuteron_collision_time_at_point_434____________________________ (t_plasma_electron_deuteron_collision_profile434)_ 3.95492461009129147e-04 +Electron-deuteron_collision_time_at_point_435____________________________ (t_plasma_electron_deuteron_collision_profile435)_ 3.92334164912630252e-04 +Electron-deuteron_collision_time_at_point_436____________________________ (t_plasma_electron_deuteron_collision_profile436)_ 3.89217110140729840e-04 +Electron-deuteron_collision_time_at_point_437____________________________ (t_plasma_electron_deuteron_collision_profile437)_ 3.86142322768420461e-04 +Electron-deuteron_collision_time_at_point_438____________________________ (t_plasma_electron_deuteron_collision_profile438)_ 3.83110873986143422e-04 +Electron-deuteron_collision_time_at_point_439____________________________ (t_plasma_electron_deuteron_collision_profile439)_ 3.80123883813037139e-04 +Electron-deuteron_collision_time_at_point_440____________________________ (t_plasma_electron_deuteron_collision_profile440)_ 3.77182525235000832e-04 +Electron-deuteron_collision_time_at_point_441____________________________ (t_plasma_electron_deuteron_collision_profile441)_ 3.74288028830742825e-04 +Electron-deuteron_collision_time_at_point_442____________________________ (t_plasma_electron_deuteron_collision_profile442)_ 3.71441687960817244e-04 +Electron-deuteron_collision_time_at_point_443____________________________ (t_plasma_electron_deuteron_collision_profile443)_ 3.68644864609225689e-04 +Electron-deuteron_collision_time_at_point_444____________________________ (t_plasma_electron_deuteron_collision_profile444)_ 3.65898995985191320e-04 +Electron-deuteron_collision_time_at_point_445____________________________ (t_plasma_electron_deuteron_collision_profile445)_ 3.63205602015215093e-04 +Electron-deuteron_collision_time_at_point_446____________________________ (t_plasma_electron_deuteron_collision_profile446)_ 3.60566293883851868e-04 +Electron-deuteron_collision_time_at_point_447____________________________ (t_plasma_electron_deuteron_collision_profile447)_ 3.57982783817511726e-04 +Electron-deuteron_collision_time_at_point_448____________________________ (t_plasma_electron_deuteron_collision_profile448)_ 3.55456896351606362e-04 +Electron-deuteron_collision_time_at_point_449____________________________ (t_plasma_electron_deuteron_collision_profile449)_ 3.52990581380743101e-04 +Electron-deuteron_collision_time_at_point_450____________________________ (t_plasma_electron_deuteron_collision_profile450)_ 3.50585929369388784e-04 +Electron-deuteron_collision_time_at_point_451____________________________ (t_plasma_electron_deuteron_collision_profile451)_ 3.48245189203108432e-04 +Electron-deuteron_collision_time_at_point_452____________________________ (t_plasma_electron_deuteron_collision_profile452)_ 3.45970789298063509e-04 +Electron-deuteron_collision_time_at_point_453____________________________ (t_plasma_electron_deuteron_collision_profile453)_ 3.43765362773294043e-04 +Electron-deuteron_collision_time_at_point_454____________________________ (t_plasma_electron_deuteron_collision_profile454)_ 3.41631777748013733e-04 +Electron-deuteron_collision_time_at_point_455____________________________ (t_plasma_electron_deuteron_collision_profile455)_ 3.39573174187707846e-04 +Electron-deuteron_collision_time_at_point_456____________________________ (t_plasma_electron_deuteron_collision_profile456)_ 3.37593009239823280e-04 +Electron-deuteron_collision_time_at_point_457____________________________ (t_plasma_electron_deuteron_collision_profile457)_ 3.35695113754926814e-04 +Electron-deuteron_collision_time_at_point_458____________________________ (t_plasma_electron_deuteron_collision_profile458)_ 3.33883763818861555e-04 +Electron-deuteron_collision_time_at_point_459____________________________ (t_plasma_electron_deuteron_collision_profile459)_ 3.32163772858072635e-04 +Electron-deuteron_collision_time_at_point_460____________________________ (t_plasma_electron_deuteron_collision_profile460)_ 3.30540612634960601e-04 +Electron-deuteron_collision_time_at_point_461____________________________ (t_plasma_electron_deuteron_collision_profile461)_ 3.29020575981307860e-04 +Electron-deuteron_collision_time_at_point_462____________________________ (t_plasma_electron_deuteron_collision_profile462)_ 3.27611001896481783e-04 +Electron-deuteron_collision_time_at_point_463____________________________ (t_plasma_electron_deuteron_collision_profile463)_ 3.26320597690295429e-04 +Electron-deuteron_collision_time_at_point_464____________________________ (t_plasma_electron_deuteron_collision_profile464)_ 3.25159919869464449e-04 +Electron-deuteron_collision_time_at_point_465____________________________ (t_plasma_electron_deuteron_collision_profile465)_ 3.24142131616042745e-04 +Electron-deuteron_collision_time_at_point_466____________________________ (t_plasma_electron_deuteron_collision_profile466)_ 3.23284283734085181e-04 +Electron-deuteron_collision_time_at_point_467____________________________ (t_plasma_electron_deuteron_collision_profile467)_ 3.22609705735146552e-04 +Electron-deuteron_collision_time_at_point_468____________________________ (t_plasma_electron_deuteron_collision_profile468)_ 3.22153185759674831e-04 +Electron-deuteron_collision_time_at_point_469____________________________ (t_plasma_electron_deuteron_collision_profile469)_ 3.21975524669909088e-04 +Electron-deuteron_collision_time_at_point_470____________________________ (t_plasma_electron_deuteron_collision_profile470)_ 3.22252538577270757e-04 +Electron-deuteron_collision_time_at_point_471____________________________ (t_plasma_electron_deuteron_collision_profile471)_ 3.11304973039360010e-04 +Electron-deuteron_collision_time_at_point_472____________________________ (t_plasma_electron_deuteron_collision_profile472)_ 3.00290405948248635e-04 +Electron-deuteron_collision_time_at_point_473____________________________ (t_plasma_electron_deuteron_collision_profile473)_ 2.89210377084930207e-04 +Electron-deuteron_collision_time_at_point_474____________________________ (t_plasma_electron_deuteron_collision_profile474)_ 2.78066762732257714e-04 +Electron-deuteron_collision_time_at_point_475____________________________ (t_plasma_electron_deuteron_collision_profile475)_ 2.66861824337261610e-04 +Electron-deuteron_collision_time_at_point_476____________________________ (t_plasma_electron_deuteron_collision_profile476)_ 2.55598264890863369e-04 +Electron-deuteron_collision_time_at_point_477____________________________ (t_plasma_electron_deuteron_collision_profile477)_ 2.44279294473305681e-04 +Electron-deuteron_collision_time_at_point_478____________________________ (t_plasma_electron_deuteron_collision_profile478)_ 2.32908706741994287e-04 +Electron-deuteron_collision_time_at_point_479____________________________ (t_plasma_electron_deuteron_collision_profile479)_ 2.21490968557053105e-04 +Electron-deuteron_collision_time_at_point_480____________________________ (t_plasma_electron_deuteron_collision_profile480)_ 2.10031325478699665e-04 +Electron-deuteron_collision_time_at_point_481____________________________ (t_plasma_electron_deuteron_collision_profile481)_ 1.98535926571355648e-04 +Electron-deuteron_collision_time_at_point_482____________________________ (t_plasma_electron_deuteron_collision_profile482)_ 1.87011972871480156e-04 +Electron-deuteron_collision_time_at_point_483____________________________ (t_plasma_electron_deuteron_collision_profile483)_ 1.75467895104829510e-04 +Electron-deuteron_collision_time_at_point_484____________________________ (t_plasma_electron_deuteron_collision_profile484)_ 1.63913567899373375e-04 +Electron-deuteron_collision_time_at_point_485____________________________ (t_plasma_electron_deuteron_collision_profile485)_ 1.52360570019584795e-04 +Electron-deuteron_collision_time_at_point_486____________________________ (t_plasma_electron_deuteron_collision_profile486)_ 1.40822503332181762e-04 +Electron-deuteron_collision_time_at_point_487____________________________ (t_plasma_electron_deuteron_collision_profile487)_ 1.29315387750096155e-04 +Electron-deuteron_collision_time_at_point_488____________________________ (t_plasma_electron_deuteron_collision_profile488)_ 1.17858156009843413e-04 +Electron-deuteron_collision_time_at_point_489____________________________ (t_plasma_electron_deuteron_collision_profile489)_ 1.06473282009823326e-04 +Electron-deuteron_collision_time_at_point_490____________________________ (t_plasma_electron_deuteron_collision_profile490)_ 9.51875916187368244e-05 +Electron-deuteron_collision_time_at_point_491____________________________ (t_plasma_electron_deuteron_collision_profile491)_ 8.40333290049922630e-05 +Electron-deuteron_collision_time_at_point_492____________________________ (t_plasma_electron_deuteron_collision_profile492)_ 7.30495914622573023e-05 +Electron-deuteron_collision_time_at_point_493____________________________ (t_plasma_electron_deuteron_collision_profile493)_ 6.22843148715666883e-05 +Electron-deuteron_collision_time_at_point_494____________________________ (t_plasma_electron_deuteron_collision_profile494)_ 5.17971186665790238e-05 +Electron-deuteron_collision_time_at_point_495____________________________ (t_plasma_electron_deuteron_collision_profile495)_ 4.16635679394519075e-05 +Electron-deuteron_collision_time_at_point_496____________________________ (t_plasma_electron_deuteron_collision_profile496)_ 3.19819432430491082e-05 +Electron-deuteron_collision_time_at_point_497____________________________ (t_plasma_electron_deuteron_collision_profile497)_ 2.28848893038346602e-05 +Electron-deuteron_collision_time_at_point_498____________________________ (t_plasma_electron_deuteron_collision_profile498)_ 1.45619259313853674e-05 +Electron-deuteron_collision_time_at_point_499____________________________ (t_plasma_electron_deuteron_collision_profile499)_ 7.31182926314833917e-06 +Electron-deuteron_collision_time_at_point_500____________________________ (t_plasma_electron_deuteron_collision_profile500)_ 1.71876715621942392e-06 +Volume_averaged_electron-triton_collision_time_(τₑT)_(s)_________________ (t_plasma_electron_triton_collision_vol_avg)_ 8.29935929299655093e-04 OP +Electron-triton_collision_time_at_point_0________________________________ (t_plasma_electron_triton_collision_profile0)_ 1.80995552266699413e-03 +Electron-triton_collision_time_at_point_1________________________________ (t_plasma_electron_triton_collision_profile1)_ 1.80994522130371784e-03 +Electron-triton_collision_time_at_point_2________________________________ (t_plasma_electron_triton_collision_profile2)_ 1.80991431734869716e-03 +Electron-triton_collision_time_at_point_3________________________________ (t_plasma_electron_triton_collision_profile3)_ 1.80986281120635662e-03 +Electron-triton_collision_time_at_point_4________________________________ (t_plasma_electron_triton_collision_profile4)_ 1.80979070355075642e-03 +Electron-triton_collision_time_at_point_5________________________________ (t_plasma_electron_triton_collision_profile5)_ 1.80969799532561520e-03 +Electron-triton_collision_time_at_point_6________________________________ (t_plasma_electron_triton_collision_profile6)_ 1.80958468774434036e-03 +Electron-triton_collision_time_at_point_7________________________________ (t_plasma_electron_triton_collision_profile7)_ 1.80945078229008145e-03 +Electron-triton_collision_time_at_point_8________________________________ (t_plasma_electron_triton_collision_profile8)_ 1.80929628071577263e-03 +Electron-triton_collision_time_at_point_9________________________________ (t_plasma_electron_triton_collision_profile9)_ 1.80912118504420513e-03 +Electron-triton_collision_time_at_point_10_______________________________ (t_plasma_electron_triton_collision_profile10)_ 1.80892549756809899e-03 +Electron-triton_collision_time_at_point_11_______________________________ (t_plasma_electron_triton_collision_profile11)_ 1.80870922085018290e-03 +Electron-triton_collision_time_at_point_12_______________________________ (t_plasma_electron_triton_collision_profile12)_ 1.80847235772329043e-03 +Electron-triton_collision_time_at_point_13_______________________________ (t_plasma_electron_triton_collision_profile13)_ 1.80821491129046306e-03 +Electron-triton_collision_time_at_point_14_______________________________ (t_plasma_electron_triton_collision_profile14)_ 1.80793688492506118e-03 +Electron-triton_collision_time_at_point_15_______________________________ (t_plasma_electron_triton_collision_profile15)_ 1.80763828227088925e-03 +Electron-triton_collision_time_at_point_16_______________________________ (t_plasma_electron_triton_collision_profile16)_ 1.80731910724232542e-03 +Electron-triton_collision_time_at_point_17_______________________________ (t_plasma_electron_triton_collision_profile17)_ 1.80697936402446856e-03 +Electron-triton_collision_time_at_point_18_______________________________ (t_plasma_electron_triton_collision_profile18)_ 1.80661905707328336e-03 +Electron-triton_collision_time_at_point_19_______________________________ (t_plasma_electron_triton_collision_profile19)_ 1.80623819111577289e-03 +Electron-triton_collision_time_at_point_20_______________________________ (t_plasma_electron_triton_collision_profile20)_ 1.80583677115013800e-03 +Electron-triton_collision_time_at_point_21_______________________________ (t_plasma_electron_triton_collision_profile21)_ 1.80541480244597119e-03 +Electron-triton_collision_time_at_point_22_______________________________ (t_plasma_electron_triton_collision_profile22)_ 1.80497229054444111e-03 +Electron-triton_collision_time_at_point_23_______________________________ (t_plasma_electron_triton_collision_profile23)_ 1.80450924125849835e-03 +Electron-triton_collision_time_at_point_24_______________________________ (t_plasma_electron_triton_collision_profile24)_ 1.80402566067308472e-03 +Electron-triton_collision_time_at_point_25_______________________________ (t_plasma_electron_triton_collision_profile25)_ 1.80352155514535762e-03 +Electron-triton_collision_time_at_point_26_______________________________ (t_plasma_electron_triton_collision_profile26)_ 1.80299693130491845e-03 +Electron-triton_collision_time_at_point_27_______________________________ (t_plasma_electron_triton_collision_profile27)_ 1.80245179605406061e-03 +Electron-triton_collision_time_at_point_28_______________________________ (t_plasma_electron_triton_collision_profile28)_ 1.80188615656801370e-03 +Electron-triton_collision_time_at_point_29_______________________________ (t_plasma_electron_triton_collision_profile29)_ 1.80130002029521281e-03 +Electron-triton_collision_time_at_point_30_______________________________ (t_plasma_electron_triton_collision_profile30)_ 1.80069339495756396e-03 +Electron-triton_collision_time_at_point_31_______________________________ (t_plasma_electron_triton_collision_profile31)_ 1.80006628855073313e-03 +Electron-triton_collision_time_at_point_32_______________________________ (t_plasma_electron_triton_collision_profile32)_ 1.79941870934443226e-03 +Electron-triton_collision_time_at_point_33_______________________________ (t_plasma_electron_triton_collision_profile33)_ 1.79875066588272570e-03 +Electron-triton_collision_time_at_point_34_______________________________ (t_plasma_electron_triton_collision_profile34)_ 1.79806216698434086e-03 +Electron-triton_collision_time_at_point_35_______________________________ (t_plasma_electron_triton_collision_profile35)_ 1.79735322174299421e-03 +Electron-triton_collision_time_at_point_36_______________________________ (t_plasma_electron_triton_collision_profile36)_ 1.79662383952771841e-03 +Electron-triton_collision_time_at_point_37_______________________________ (t_plasma_electron_triton_collision_profile37)_ 1.79587402998321126e-03 +Electron-triton_collision_time_at_point_38_______________________________ (t_plasma_electron_triton_collision_profile38)_ 1.79510380303018698e-03 +Electron-triton_collision_time_at_point_39_______________________________ (t_plasma_electron_triton_collision_profile39)_ 1.79431316886573961e-03 +Electron-triton_collision_time_at_point_40_______________________________ (t_plasma_electron_triton_collision_profile40)_ 1.79350213796371834e-03 +Electron-triton_collision_time_at_point_41_______________________________ (t_plasma_electron_triton_collision_profile41)_ 1.79267072107510946e-03 +Electron-triton_collision_time_at_point_42_______________________________ (t_plasma_electron_triton_collision_profile42)_ 1.79181892922843696e-03 +Electron-triton_collision_time_at_point_43_______________________________ (t_plasma_electron_triton_collision_profile43)_ 1.79094677373016118e-03 +Electron-triton_collision_time_at_point_44_______________________________ (t_plasma_electron_triton_collision_profile44)_ 1.79005426616509877e-03 +Electron-triton_collision_time_at_point_45_______________________________ (t_plasma_electron_triton_collision_profile45)_ 1.78914141839684663e-03 +Electron-triton_collision_time_at_point_46_______________________________ (t_plasma_electron_triton_collision_profile46)_ 1.78820824256822192e-03 +Electron-triton_collision_time_at_point_47_______________________________ (t_plasma_electron_triton_collision_profile47)_ 1.78725475110170606e-03 +Electron-triton_collision_time_at_point_48_______________________________ (t_plasma_electron_triton_collision_profile48)_ 1.78628095669990409e-03 +Electron-triton_collision_time_at_point_49_______________________________ (t_plasma_electron_triton_collision_profile49)_ 1.78528687234601278e-03 +Electron-triton_collision_time_at_point_50_______________________________ (t_plasma_electron_triton_collision_profile50)_ 1.78427251130430157e-03 +Electron-triton_collision_time_at_point_51_______________________________ (t_plasma_electron_triton_collision_profile51)_ 1.78323788712059879e-03 +Electron-triton_collision_time_at_point_52_______________________________ (t_plasma_electron_triton_collision_profile52)_ 1.78218301362279637e-03 +Electron-triton_collision_time_at_point_53_______________________________ (t_plasma_electron_triton_collision_profile53)_ 1.78110790492135929e-03 +Electron-triton_collision_time_at_point_54_______________________________ (t_plasma_electron_triton_collision_profile54)_ 1.78001257540984789e-03 +Electron-triton_collision_time_at_point_55_______________________________ (t_plasma_electron_triton_collision_profile55)_ 1.77889703976545003e-03 +Electron-triton_collision_time_at_point_56_______________________________ (t_plasma_electron_triton_collision_profile56)_ 1.77776131294952902e-03 +Electron-triton_collision_time_at_point_57_______________________________ (t_plasma_electron_triton_collision_profile57)_ 1.77660541020817288e-03 +Electron-triton_collision_time_at_point_58_______________________________ (t_plasma_electron_triton_collision_profile58)_ 1.77542934707276509e-03 +Electron-triton_collision_time_at_point_59_______________________________ (t_plasma_electron_triton_collision_profile59)_ 1.77423313936055766e-03 +Electron-triton_collision_time_at_point_60_______________________________ (t_plasma_electron_triton_collision_profile60)_ 1.77301680317526250e-03 +Electron-triton_collision_time_at_point_61_______________________________ (t_plasma_electron_triton_collision_profile61)_ 1.77178035490765224e-03 +Electron-triton_collision_time_at_point_62_______________________________ (t_plasma_electron_triton_collision_profile62)_ 1.77052381123616047e-03 +Electron-triton_collision_time_at_point_63_______________________________ (t_plasma_electron_triton_collision_profile63)_ 1.76924718912751752e-03 +Electron-triton_collision_time_at_point_64_______________________________ (t_plasma_electron_triton_collision_profile64)_ 1.76795050583737363e-03 +Electron-triton_collision_time_at_point_65_______________________________ (t_plasma_electron_triton_collision_profile65)_ 1.76663377891094495e-03 +Electron-triton_collision_time_at_point_66_______________________________ (t_plasma_electron_triton_collision_profile66)_ 1.76529702618367142e-03 +Electron-triton_collision_time_at_point_67_______________________________ (t_plasma_electron_triton_collision_profile67)_ 1.76394026578188400e-03 +Electron-triton_collision_time_at_point_68_______________________________ (t_plasma_electron_triton_collision_profile68)_ 1.76256351612347597e-03 +Electron-triton_collision_time_at_point_69_______________________________ (t_plasma_electron_triton_collision_profile69)_ 1.76116679591860575e-03 +Electron-triton_collision_time_at_point_70_______________________________ (t_plasma_electron_triton_collision_profile70)_ 1.75975012417038603e-03 +Electron-triton_collision_time_at_point_71_______________________________ (t_plasma_electron_triton_collision_profile71)_ 1.75831352017560599e-03 +Electron-triton_collision_time_at_point_72_______________________________ (t_plasma_electron_triton_collision_profile72)_ 1.75685700352545067e-03 +Electron-triton_collision_time_at_point_73_______________________________ (t_plasma_electron_triton_collision_profile73)_ 1.75538059410623964e-03 +Electron-triton_collision_time_at_point_74_______________________________ (t_plasma_electron_triton_collision_profile74)_ 1.75388431210017647e-03 +Electron-triton_collision_time_at_point_75_______________________________ (t_plasma_electron_triton_collision_profile75)_ 1.75236817798610917e-03 +Electron-triton_collision_time_at_point_76_______________________________ (t_plasma_electron_triton_collision_profile76)_ 1.75083221254030167e-03 +Electron-triton_collision_time_at_point_77_______________________________ (t_plasma_electron_triton_collision_profile77)_ 1.74927643683721779e-03 +Electron-triton_collision_time_at_point_78_______________________________ (t_plasma_electron_triton_collision_profile78)_ 1.74770087225031910e-03 +Electron-triton_collision_time_at_point_79_______________________________ (t_plasma_electron_triton_collision_profile79)_ 1.74610554045287253e-03 +Electron-triton_collision_time_at_point_80_______________________________ (t_plasma_electron_triton_collision_profile80)_ 1.74449046341877451e-03 +Electron-triton_collision_time_at_point_81_______________________________ (t_plasma_electron_triton_collision_profile81)_ 1.74285566342337718e-03 +Electron-triton_collision_time_at_point_82_______________________________ (t_plasma_electron_triton_collision_profile82)_ 1.74120116304434121e-03 +Electron-triton_collision_time_at_point_83_______________________________ (t_plasma_electron_triton_collision_profile83)_ 1.73952698516249057e-03 +Electron-triton_collision_time_at_point_84_______________________________ (t_plasma_electron_triton_collision_profile84)_ 1.73783315296268206e-03 +Electron-triton_collision_time_at_point_85_______________________________ (t_plasma_electron_triton_collision_profile85)_ 1.73611968993469049e-03 +Electron-triton_collision_time_at_point_86_______________________________ (t_plasma_electron_triton_collision_profile86)_ 1.73438661987410201e-03 +Electron-triton_collision_time_at_point_87_______________________________ (t_plasma_electron_triton_collision_profile87)_ 1.73263396688322444e-03 +Electron-triton_collision_time_at_point_88_______________________________ (t_plasma_electron_triton_collision_profile88)_ 1.73086175537200690e-03 +Electron-triton_collision_time_at_point_89_______________________________ (t_plasma_electron_triton_collision_profile89)_ 1.72907001005897739e-03 +Electron-triton_collision_time_at_point_90_______________________________ (t_plasma_electron_triton_collision_profile90)_ 1.72725875597218238e-03 +Electron-triton_collision_time_at_point_91_______________________________ (t_plasma_electron_triton_collision_profile91)_ 1.72542801845015372e-03 +Electron-triton_collision_time_at_point_92_______________________________ (t_plasma_electron_triton_collision_profile92)_ 1.72357782314287874e-03 +Electron-triton_collision_time_at_point_93_______________________________ (t_plasma_electron_triton_collision_profile93)_ 1.72170819601278518e-03 +Electron-triton_collision_time_at_point_94_______________________________ (t_plasma_electron_triton_collision_profile94)_ 1.71981916333574687e-03 +Electron-triton_collision_time_at_point_95_______________________________ (t_plasma_electron_triton_collision_profile95)_ 1.71791075170208665e-03 +Electron-triton_collision_time_at_point_96_______________________________ (t_plasma_electron_triton_collision_profile96)_ 1.71598298801761110e-03 +Electron-triton_collision_time_at_point_97_______________________________ (t_plasma_electron_triton_collision_profile97)_ 1.71403589950464420e-03 +Electron-triton_collision_time_at_point_98_______________________________ (t_plasma_electron_triton_collision_profile98)_ 1.71206951370308710e-03 +Electron-triton_collision_time_at_point_99_______________________________ (t_plasma_electron_triton_collision_profile99)_ 1.71008385847148015e-03 +Electron-triton_collision_time_at_point_100______________________________ (t_plasma_electron_triton_collision_profile100)_ 1.70807896198808384e-03 +Electron-triton_collision_time_at_point_101______________________________ (t_plasma_electron_triton_collision_profile101)_ 1.70605485275197584e-03 +Electron-triton_collision_time_at_point_102______________________________ (t_plasma_electron_triton_collision_profile102)_ 1.70401155958416054e-03 +Electron-triton_collision_time_at_point_103______________________________ (t_plasma_electron_triton_collision_profile103)_ 1.70194911162868472e-03 +Electron-triton_collision_time_at_point_104______________________________ (t_plasma_electron_triton_collision_profile104)_ 1.69986753835378677e-03 +Electron-triton_collision_time_at_point_105______________________________ (t_plasma_electron_triton_collision_profile105)_ 1.69776686955303490e-03 +Electron-triton_collision_time_at_point_106______________________________ (t_plasma_electron_triton_collision_profile106)_ 1.69564713534649985e-03 +Electron-triton_collision_time_at_point_107______________________________ (t_plasma_electron_triton_collision_profile107)_ 1.69350836618193550e-03 +Electron-triton_collision_time_at_point_108______________________________ (t_plasma_electron_triton_collision_profile108)_ 1.69135059283596879e-03 +Electron-triton_collision_time_at_point_109______________________________ (t_plasma_electron_triton_collision_profile109)_ 1.68917384641531173e-03 +Electron-triton_collision_time_at_point_110______________________________ (t_plasma_electron_triton_collision_profile110)_ 1.68697815835798428e-03 +Electron-triton_collision_time_at_point_111______________________________ (t_plasma_electron_triton_collision_profile111)_ 1.68476356043455676e-03 +Electron-triton_collision_time_at_point_112______________________________ (t_plasma_electron_triton_collision_profile112)_ 1.68253008474939653e-03 +Electron-triton_collision_time_at_point_113______________________________ (t_plasma_electron_triton_collision_profile113)_ 1.68027776374194381e-03 +Electron-triton_collision_time_at_point_114______________________________ (t_plasma_electron_triton_collision_profile114)_ 1.67800663018799001e-03 +Electron-triton_collision_time_at_point_115______________________________ (t_plasma_electron_triton_collision_profile115)_ 1.67571671720098160e-03 +Electron-triton_collision_time_at_point_116______________________________ (t_plasma_electron_triton_collision_profile116)_ 1.67340805823333280e-03 +Electron-triton_collision_time_at_point_117______________________________ (t_plasma_electron_triton_collision_profile117)_ 1.67108068707775680e-03 +Electron-triton_collision_time_at_point_118______________________________ (t_plasma_electron_triton_collision_profile118)_ 1.66873463786860652e-03 +Electron-triton_collision_time_at_point_119______________________________ (t_plasma_electron_triton_collision_profile119)_ 1.66636994508324540e-03 +Electron-triton_collision_time_at_point_120______________________________ (t_plasma_electron_triton_collision_profile120)_ 1.66398664354341940e-03 +Electron-triton_collision_time_at_point_121______________________________ (t_plasma_electron_triton_collision_profile121)_ 1.66158476841665064e-03 +Electron-triton_collision_time_at_point_122______________________________ (t_plasma_electron_triton_collision_profile122)_ 1.65916435521764661e-03 +Electron-triton_collision_time_at_point_123______________________________ (t_plasma_electron_triton_collision_profile123)_ 1.65672543980972743e-03 +Electron-triton_collision_time_at_point_124______________________________ (t_plasma_electron_triton_collision_profile124)_ 1.65426805840627024e-03 +Electron-triton_collision_time_at_point_125______________________________ (t_plasma_electron_triton_collision_profile125)_ 1.65179224757216374e-03 +Electron-triton_collision_time_at_point_126______________________________ (t_plasma_electron_triton_collision_profile126)_ 1.64929804422528793e-03 +Electron-triton_collision_time_at_point_127______________________________ (t_plasma_electron_triton_collision_profile127)_ 1.64678548563800139e-03 +Electron-triton_collision_time_at_point_128______________________________ (t_plasma_electron_triton_collision_profile128)_ 1.64425460943865465e-03 +Electron-triton_collision_time_at_point_129______________________________ (t_plasma_electron_triton_collision_profile129)_ 1.64170545361311650e-03 +Electron-triton_collision_time_at_point_130______________________________ (t_plasma_electron_triton_collision_profile130)_ 1.63913805650631314e-03 +Electron-triton_collision_time_at_point_131______________________________ (t_plasma_electron_triton_collision_profile131)_ 1.63655245682379309e-03 +Electron-triton_collision_time_at_point_132______________________________ (t_plasma_electron_triton_collision_profile132)_ 1.63394869363330366e-03 +Electron-triton_collision_time_at_point_133______________________________ (t_plasma_electron_triton_collision_profile133)_ 1.63132680636638642e-03 +Electron-triton_collision_time_at_point_134______________________________ (t_plasma_electron_triton_collision_profile134)_ 1.62868683481999163e-03 +Electron-triton_collision_time_at_point_135______________________________ (t_plasma_electron_triton_collision_profile135)_ 1.62602881915810968e-03 +Electron-triton_collision_time_at_point_136______________________________ (t_plasma_electron_triton_collision_profile136)_ 1.62335279991341935e-03 +Electron-triton_collision_time_at_point_137______________________________ (t_plasma_electron_triton_collision_profile137)_ 1.62065881798895443e-03 +Electron-triton_collision_time_at_point_138______________________________ (t_plasma_electron_triton_collision_profile138)_ 1.61794691465979548e-03 +Electron-triton_collision_time_at_point_139______________________________ (t_plasma_electron_triton_collision_profile139)_ 1.61521713157476428e-03 +Electron-triton_collision_time_at_point_140______________________________ (t_plasma_electron_triton_collision_profile140)_ 1.61246951075815935e-03 +Electron-triton_collision_time_at_point_141______________________________ (t_plasma_electron_triton_collision_profile141)_ 1.60970409461148704e-03 +Electron-triton_collision_time_at_point_142______________________________ (t_plasma_electron_triton_collision_profile142)_ 1.60692092591522640e-03 +Electron-triton_collision_time_at_point_143______________________________ (t_plasma_electron_triton_collision_profile143)_ 1.60412004783061393e-03 +Electron-triton_collision_time_at_point_144______________________________ (t_plasma_electron_triton_collision_profile144)_ 1.60130150390143497e-03 +Electron-triton_collision_time_at_point_145______________________________ (t_plasma_electron_triton_collision_profile145)_ 1.59846533805584599e-03 +Electron-triton_collision_time_at_point_146______________________________ (t_plasma_electron_triton_collision_profile146)_ 1.59561159460821578e-03 +Electron-triton_collision_time_at_point_147______________________________ (t_plasma_electron_triton_collision_profile147)_ 1.59274031826098011e-03 +Electron-triton_collision_time_at_point_148______________________________ (t_plasma_electron_triton_collision_profile148)_ 1.58985155410652237e-03 +Electron-triton_collision_time_at_point_149______________________________ (t_plasma_electron_triton_collision_profile149)_ 1.58694534762906874e-03 +Electron-triton_collision_time_at_point_150______________________________ (t_plasma_electron_triton_collision_profile150)_ 1.58402174470661096e-03 +Electron-triton_collision_time_at_point_151______________________________ (t_plasma_electron_triton_collision_profile151)_ 1.58108079161284483e-03 +Electron-triton_collision_time_at_point_152______________________________ (t_plasma_electron_triton_collision_profile152)_ 1.57812253501912704e-03 +Electron-triton_collision_time_at_point_153______________________________ (t_plasma_electron_triton_collision_profile153)_ 1.57514702199646221e-03 +Electron-triton_collision_time_at_point_154______________________________ (t_plasma_electron_triton_collision_profile154)_ 1.57215430001749921e-03 +Electron-triton_collision_time_at_point_155______________________________ (t_plasma_electron_triton_collision_profile155)_ 1.56914441695855727e-03 +Electron-triton_collision_time_at_point_156______________________________ (t_plasma_electron_triton_collision_profile156)_ 1.56611742110167144e-03 +Electron-triton_collision_time_at_point_157______________________________ (t_plasma_electron_triton_collision_profile157)_ 1.56307336113665671e-03 +Electron-triton_collision_time_at_point_158______________________________ (t_plasma_electron_triton_collision_profile158)_ 1.56001228616320007e-03 +Electron-triton_collision_time_at_point_159______________________________ (t_plasma_electron_triton_collision_profile159)_ 1.55693424569296798e-03 +Electron-triton_collision_time_at_point_160______________________________ (t_plasma_electron_triton_collision_profile160)_ 1.55383928965174161e-03 +Electron-triton_collision_time_at_point_161______________________________ (t_plasma_electron_triton_collision_profile161)_ 1.55072746838157008e-03 +Electron-triton_collision_time_at_point_162______________________________ (t_plasma_electron_triton_collision_profile162)_ 1.54759883264294902e-03 +Electron-triton_collision_time_at_point_163______________________________ (t_plasma_electron_triton_collision_profile163)_ 1.54445343361702390e-03 +Electron-triton_collision_time_at_point_164______________________________ (t_plasma_electron_triton_collision_profile164)_ 1.54129132290781136e-03 +Electron-triton_collision_time_at_point_165______________________________ (t_plasma_electron_triton_collision_profile165)_ 1.53811255254444760e-03 +Electron-triton_collision_time_at_point_166______________________________ (t_plasma_electron_triton_collision_profile166)_ 1.53491717498346197e-03 +Electron-triton_collision_time_at_point_167______________________________ (t_plasma_electron_triton_collision_profile167)_ 1.53170524311106704e-03 +Electron-triton_collision_time_at_point_168______________________________ (t_plasma_electron_triton_collision_profile168)_ 1.52847681024548352e-03 +Electron-triton_collision_time_at_point_169______________________________ (t_plasma_electron_triton_collision_profile169)_ 1.52523193013927977e-03 +Electron-triton_collision_time_at_point_170______________________________ (t_plasma_electron_triton_collision_profile170)_ 1.52197065698173950e-03 +Electron-triton_collision_time_at_point_171______________________________ (t_plasma_electron_triton_collision_profile171)_ 1.51869304540125697e-03 +Electron-triton_collision_time_at_point_172______________________________ (t_plasma_electron_triton_collision_profile172)_ 1.51539915046775453e-03 +Electron-triton_collision_time_at_point_173______________________________ (t_plasma_electron_triton_collision_profile173)_ 1.51208902769512125e-03 +Electron-triton_collision_time_at_point_174______________________________ (t_plasma_electron_triton_collision_profile174)_ 1.50876273304368833e-03 +Electron-triton_collision_time_at_point_175______________________________ (t_plasma_electron_triton_collision_profile175)_ 1.50542032292271715e-03 +Electron-triton_collision_time_at_point_176______________________________ (t_plasma_electron_triton_collision_profile176)_ 1.50206185419292327e-03 +Electron-triton_collision_time_at_point_177______________________________ (t_plasma_electron_triton_collision_profile177)_ 1.49868738416902196e-03 +Electron-triton_collision_time_at_point_178______________________________ (t_plasma_electron_triton_collision_profile178)_ 1.49529697062230076e-03 +Electron-triton_collision_time_at_point_179______________________________ (t_plasma_electron_triton_collision_profile179)_ 1.49189067178322134e-03 +Electron-triton_collision_time_at_point_180______________________________ (t_plasma_electron_triton_collision_profile180)_ 1.48846854634404439e-03 +Electron-triton_collision_time_at_point_181______________________________ (t_plasma_electron_triton_collision_profile181)_ 1.48503065346148482e-03 +Electron-triton_collision_time_at_point_182______________________________ (t_plasma_electron_triton_collision_profile182)_ 1.48157705275939557e-03 +Electron-triton_collision_time_at_point_183______________________________ (t_plasma_electron_triton_collision_profile183)_ 1.47810780433147338e-03 +Electron-triton_collision_time_at_point_184______________________________ (t_plasma_electron_triton_collision_profile184)_ 1.47462296874400546e-03 +Electron-triton_collision_time_at_point_185______________________________ (t_plasma_electron_triton_collision_profile185)_ 1.47112260703862537e-03 +Electron-triton_collision_time_at_point_186______________________________ (t_plasma_electron_triton_collision_profile186)_ 1.46760678073511804e-03 +Electron-triton_collision_time_at_point_187______________________________ (t_plasma_electron_triton_collision_profile187)_ 1.46407555183424042e-03 +Electron-triton_collision_time_at_point_188______________________________ (t_plasma_electron_triton_collision_profile188)_ 1.46052898282057536e-03 +Electron-triton_collision_time_at_point_189______________________________ (t_plasma_electron_triton_collision_profile189)_ 1.45696713666541898e-03 +Electron-triton_collision_time_at_point_190______________________________ (t_plasma_electron_triton_collision_profile190)_ 1.45339007682969120e-03 +Electron-triton_collision_time_at_point_191______________________________ (t_plasma_electron_triton_collision_profile191)_ 1.44979786726688229e-03 +Electron-triton_collision_time_at_point_192______________________________ (t_plasma_electron_triton_collision_profile192)_ 1.44619057242602778e-03 +Electron-triton_collision_time_at_point_193______________________________ (t_plasma_electron_triton_collision_profile193)_ 1.44256825725471577e-03 +Electron-triton_collision_time_at_point_194______________________________ (t_plasma_electron_triton_collision_profile194)_ 1.43893098720212251e-03 +Electron-triton_collision_time_at_point_195______________________________ (t_plasma_electron_triton_collision_profile195)_ 1.43527882822208478e-03 +Electron-triton_collision_time_at_point_196______________________________ (t_plasma_electron_triton_collision_profile196)_ 1.43161184677619989e-03 +Electron-triton_collision_time_at_point_197______________________________ (t_plasma_electron_triton_collision_profile197)_ 1.42793010983695962e-03 +Electron-triton_collision_time_at_point_198______________________________ (t_plasma_electron_triton_collision_profile198)_ 1.42423368489091721e-03 +Electron-triton_collision_time_at_point_199______________________________ (t_plasma_electron_triton_collision_profile199)_ 1.42052263994188921e-03 +Electron-triton_collision_time_at_point_200______________________________ (t_plasma_electron_triton_collision_profile200)_ 1.41679704351418728e-03 +Electron-triton_collision_time_at_point_201______________________________ (t_plasma_electron_triton_collision_profile201)_ 1.41305696465588554e-03 +Electron-triton_collision_time_at_point_202______________________________ (t_plasma_electron_triton_collision_profile202)_ 1.40930247294212413e-03 +Electron-triton_collision_time_at_point_203______________________________ (t_plasma_electron_triton_collision_profile203)_ 1.40553363847844420e-03 +Electron-triton_collision_time_at_point_204______________________________ (t_plasma_electron_triton_collision_profile204)_ 1.40175053190416026e-03 +Electron-triton_collision_time_at_point_205______________________________ (t_plasma_electron_triton_collision_profile205)_ 1.39795322439576733e-03 +Electron-triton_collision_time_at_point_206______________________________ (t_plasma_electron_triton_collision_profile206)_ 1.39414178767038443e-03 +Electron-triton_collision_time_at_point_207______________________________ (t_plasma_electron_triton_collision_profile207)_ 1.39031629398923351e-03 +Electron-triton_collision_time_at_point_208______________________________ (t_plasma_electron_triton_collision_profile208)_ 1.38647681616115492e-03 +Electron-triton_collision_time_at_point_209______________________________ (t_plasma_electron_triton_collision_profile209)_ 1.38262342754616138e-03 +Electron-triton_collision_time_at_point_210______________________________ (t_plasma_electron_triton_collision_profile210)_ 1.37875620205902931e-03 +Electron-triton_collision_time_at_point_211______________________________ (t_plasma_electron_triton_collision_profile211)_ 1.37487521417292789e-03 +Electron-triton_collision_time_at_point_212______________________________ (t_plasma_electron_triton_collision_profile212)_ 1.37098053892308514e-03 +Electron-triton_collision_time_at_point_213______________________________ (t_plasma_electron_triton_collision_profile213)_ 1.36707225191049289e-03 +Electron-triton_collision_time_at_point_214______________________________ (t_plasma_electron_triton_collision_profile214)_ 1.36315042930565899e-03 +Electron-triton_collision_time_at_point_215______________________________ (t_plasma_electron_triton_collision_profile215)_ 1.35921514785238549e-03 +Electron-triton_collision_time_at_point_216______________________________ (t_plasma_electron_triton_collision_profile216)_ 1.35526648487160005e-03 +Electron-triton_collision_time_at_point_217______________________________ (t_plasma_electron_triton_collision_profile217)_ 1.35130451826521959e-03 +Electron-triton_collision_time_at_point_218______________________________ (t_plasma_electron_triton_collision_profile218)_ 1.34732932652006096e-03 +Electron-triton_collision_time_at_point_219______________________________ (t_plasma_electron_triton_collision_profile219)_ 1.34334098871178795e-03 +Electron-triton_collision_time_at_point_220______________________________ (t_plasma_electron_triton_collision_profile220)_ 1.33933958450890758e-03 +Electron-triton_collision_time_at_point_221______________________________ (t_plasma_electron_triton_collision_profile221)_ 1.33532519417680533e-03 +Electron-triton_collision_time_at_point_222______________________________ (t_plasma_electron_triton_collision_profile222)_ 1.33129789858181980e-03 +Electron-triton_collision_time_at_point_223______________________________ (t_plasma_electron_triton_collision_profile223)_ 1.32725777919537108e-03 +Electron-triton_collision_time_at_point_224______________________________ (t_plasma_electron_triton_collision_profile224)_ 1.32320491809812435e-03 +Electron-triton_collision_time_at_point_225______________________________ (t_plasma_electron_triton_collision_profile225)_ 1.31913939798420548e-03 +Electron-triton_collision_time_at_point_226______________________________ (t_plasma_electron_triton_collision_profile226)_ 1.31506130216545777e-03 +Electron-triton_collision_time_at_point_227______________________________ (t_plasma_electron_triton_collision_profile227)_ 1.31097071457574499e-03 +Electron-triton_collision_time_at_point_228______________________________ (t_plasma_electron_triton_collision_profile228)_ 1.30686771977530660e-03 +Electron-triton_collision_time_at_point_229______________________________ (t_plasma_electron_triton_collision_profile229)_ 1.30275240295515547e-03 +Electron-triton_collision_time_at_point_230______________________________ (t_plasma_electron_triton_collision_profile230)_ 1.29862484994152315e-03 +Electron-triton_collision_time_at_point_231______________________________ (t_plasma_electron_triton_collision_profile231)_ 1.29448514720035711e-03 +Electron-triton_collision_time_at_point_232______________________________ (t_plasma_electron_triton_collision_profile232)_ 1.29033338184186765e-03 +Electron-triton_collision_time_at_point_233______________________________ (t_plasma_electron_triton_collision_profile233)_ 1.28616964162512042e-03 +Electron-triton_collision_time_at_point_234______________________________ (t_plasma_electron_triton_collision_profile234)_ 1.28199401496268241e-03 +Electron-triton_collision_time_at_point_235______________________________ (t_plasma_electron_triton_collision_profile235)_ 1.27780659092532434e-03 +Electron-triton_collision_time_at_point_236______________________________ (t_plasma_electron_triton_collision_profile236)_ 1.27360745924676340e-03 +Electron-triton_collision_time_at_point_237______________________________ (t_plasma_electron_triton_collision_profile237)_ 1.26939671032847020e-03 +Electron-triton_collision_time_at_point_238______________________________ (t_plasma_electron_triton_collision_profile238)_ 1.26517443524452530e-03 +Electron-triton_collision_time_at_point_239______________________________ (t_plasma_electron_triton_collision_profile239)_ 1.26094072574652310e-03 +Electron-triton_collision_time_at_point_240______________________________ (t_plasma_electron_triton_collision_profile240)_ 1.25669567426854633e-03 +Electron-triton_collision_time_at_point_241______________________________ (t_plasma_electron_triton_collision_profile241)_ 1.25243937393217943e-03 +Electron-triton_collision_time_at_point_242______________________________ (t_plasma_electron_triton_collision_profile242)_ 1.24817191855158935e-03 +Electron-triton_collision_time_at_point_243______________________________ (t_plasma_electron_triton_collision_profile243)_ 1.24389340263866138e-03 +Electron-triton_collision_time_at_point_244______________________________ (t_plasma_electron_triton_collision_profile244)_ 1.23960392140819316e-03 +Electron-triton_collision_time_at_point_245______________________________ (t_plasma_electron_triton_collision_profile245)_ 1.23530357078314068e-03 +Electron-triton_collision_time_at_point_246______________________________ (t_plasma_electron_triton_collision_profile246)_ 1.23099244739993999e-03 +Electron-triton_collision_time_at_point_247______________________________ (t_plasma_electron_triton_collision_profile247)_ 1.22667064861387248e-03 +Electron-triton_collision_time_at_point_248______________________________ (t_plasma_electron_triton_collision_profile248)_ 1.22233827250450410e-03 +Electron-triton_collision_time_at_point_249______________________________ (t_plasma_electron_triton_collision_profile249)_ 1.21799541788118033e-03 +Electron-triton_collision_time_at_point_250______________________________ (t_plasma_electron_triton_collision_profile250)_ 1.21364218428859027e-03 +Electron-triton_collision_time_at_point_251______________________________ (t_plasma_electron_triton_collision_profile251)_ 1.20927867201238567e-03 +Electron-triton_collision_time_at_point_252______________________________ (t_plasma_electron_triton_collision_profile252)_ 1.20490498208488121e-03 +Electron-triton_collision_time_at_point_253______________________________ (t_plasma_electron_triton_collision_profile253)_ 1.20052121629080099e-03 +Electron-triton_collision_time_at_point_254______________________________ (t_plasma_electron_triton_collision_profile254)_ 1.19612747717311304e-03 +Electron-triton_collision_time_at_point_255______________________________ (t_plasma_electron_triton_collision_profile255)_ 1.19172386803891570e-03 +Electron-triton_collision_time_at_point_256______________________________ (t_plasma_electron_triton_collision_profile256)_ 1.18731049296540571e-03 +Electron-triton_collision_time_at_point_257______________________________ (t_plasma_electron_triton_collision_profile257)_ 1.18288745680590677e-03 +Electron-triton_collision_time_at_point_258______________________________ (t_plasma_electron_triton_collision_profile258)_ 1.17845486519598040e-03 +Electron-triton_collision_time_at_point_259______________________________ (t_plasma_electron_triton_collision_profile259)_ 1.17401282455960061e-03 +Electron-triton_collision_time_at_point_260______________________________ (t_plasma_electron_triton_collision_profile260)_ 1.16956144211540782e-03 +Electron-triton_collision_time_at_point_261______________________________ (t_plasma_electron_triton_collision_profile261)_ 1.16510082588303630e-03 +Electron-triton_collision_time_at_point_262______________________________ (t_plasma_electron_triton_collision_profile262)_ 1.16063108468952023e-03 +Electron-triton_collision_time_at_point_263______________________________ (t_plasma_electron_triton_collision_profile263)_ 1.15615232817577467e-03 +Electron-triton_collision_time_at_point_264______________________________ (t_plasma_electron_triton_collision_profile264)_ 1.15166466680315734e-03 +Electron-triton_collision_time_at_point_265______________________________ (t_plasma_electron_triton_collision_profile265)_ 1.14716821186011154e-03 +Electron-triton_collision_time_at_point_266______________________________ (t_plasma_electron_triton_collision_profile266)_ 1.14266307546889061e-03 +Electron-triton_collision_time_at_point_267______________________________ (t_plasma_electron_triton_collision_profile267)_ 1.13814937059236189e-03 +Electron-triton_collision_time_at_point_268______________________________ (t_plasma_electron_triton_collision_profile268)_ 1.13362721104090470e-03 +Electron-triton_collision_time_at_point_269______________________________ (t_plasma_electron_triton_collision_profile269)_ 1.12909671147938106e-03 +Electron-triton_collision_time_at_point_270______________________________ (t_plasma_electron_triton_collision_profile270)_ 1.12455798743421034e-03 +Electron-triton_collision_time_at_point_271______________________________ (t_plasma_electron_triton_collision_profile271)_ 1.12001115530051504e-03 +Electron-triton_collision_time_at_point_272______________________________ (t_plasma_electron_triton_collision_profile272)_ 1.11545633234937515e-03 +Electron-triton_collision_time_at_point_273______________________________ (t_plasma_electron_triton_collision_profile273)_ 1.11089363673515956e-03 +Electron-triton_collision_time_at_point_274______________________________ (t_plasma_electron_triton_collision_profile274)_ 1.10632318750296756e-03 +Electron-triton_collision_time_at_point_275______________________________ (t_plasma_electron_triton_collision_profile275)_ 1.10174510459614653e-03 +Electron-triton_collision_time_at_point_276______________________________ (t_plasma_electron_triton_collision_profile276)_ 1.09715950886392680e-03 +Electron-triton_collision_time_at_point_277______________________________ (t_plasma_electron_triton_collision_profile277)_ 1.09256652206914540e-03 +Electron-triton_collision_time_at_point_278______________________________ (t_plasma_electron_triton_collision_profile278)_ 1.08796626689607262e-03 +Electron-triton_collision_time_at_point_279______________________________ (t_plasma_electron_triton_collision_profile279)_ 1.08335886695834190e-03 +Electron-triton_collision_time_at_point_280______________________________ (t_plasma_electron_triton_collision_profile280)_ 1.07874444680699003e-03 +Electron-triton_collision_time_at_point_281______________________________ (t_plasma_electron_triton_collision_profile281)_ 1.07412313193859586e-03 +Electron-triton_collision_time_at_point_282______________________________ (t_plasma_electron_triton_collision_profile282)_ 1.06949504880353690e-03 +Electron-triton_collision_time_at_point_283______________________________ (t_plasma_electron_triton_collision_profile283)_ 1.06486032481435309e-03 +Electron-triton_collision_time_at_point_284______________________________ (t_plasma_electron_triton_collision_profile284)_ 1.06021908835422654e-03 +Electron-triton_collision_time_at_point_285______________________________ (t_plasma_electron_triton_collision_profile285)_ 1.05557146878557519e-03 +Electron-triton_collision_time_at_point_286______________________________ (t_plasma_electron_triton_collision_profile286)_ 1.05091759645876992e-03 +Electron-triton_collision_time_at_point_287______________________________ (t_plasma_electron_triton_collision_profile287)_ 1.04625760272096719e-03 +Electron-triton_collision_time_at_point_288______________________________ (t_plasma_electron_triton_collision_profile288)_ 1.04159161992506801e-03 +Electron-triton_collision_time_at_point_289______________________________ (t_plasma_electron_triton_collision_profile289)_ 1.03691978143880589e-03 +Electron-triton_collision_time_at_point_290______________________________ (t_plasma_electron_triton_collision_profile290)_ 1.03224222165395848e-03 +Electron-triton_collision_time_at_point_291______________________________ (t_plasma_electron_triton_collision_profile291)_ 1.02755907599569687e-03 +Electron-triton_collision_time_at_point_292______________________________ (t_plasma_electron_triton_collision_profile292)_ 1.02287048093206170e-03 +Electron-triton_collision_time_at_point_293______________________________ (t_plasma_electron_triton_collision_profile293)_ 1.01817657398358807e-03 +Electron-triton_collision_time_at_point_294______________________________ (t_plasma_electron_triton_collision_profile294)_ 1.01347749373306142e-03 +Electron-triton_collision_time_at_point_295______________________________ (t_plasma_electron_triton_collision_profile295)_ 1.00877337983542128e-03 +Electron-triton_collision_time_at_point_296______________________________ (t_plasma_electron_triton_collision_profile296)_ 1.00406437302781484e-03 +Electron-triton_collision_time_at_point_297______________________________ (t_plasma_electron_triton_collision_profile297)_ 9.99350615139795416e-04 +Electron-triton_collision_time_at_point_298______________________________ (t_plasma_electron_triton_collision_profile298)_ 9.94632249103680026e-04 +Electron-triton_collision_time_at_point_299______________________________ (t_plasma_electron_triton_collision_profile299)_ 9.89909418965063568e-04 +Electron-triton_collision_time_at_point_300______________________________ (t_plasma_electron_triton_collision_profile300)_ 9.85182269893492566e-04 +Electron-triton_collision_time_at_point_301______________________________ (t_plasma_electron_triton_collision_profile301)_ 9.80450948193308707e-04 +Electron-triton_collision_time_at_point_302______________________________ (t_plasma_electron_triton_collision_profile302)_ 9.75715601314656642e-04 +Electron-triton_collision_time_at_point_303______________________________ (t_plasma_electron_triton_collision_profile303)_ 9.70976377864669698e-04 +Electron-triton_collision_time_at_point_304______________________________ (t_plasma_electron_triton_collision_profile304)_ 9.66233427618832966e-04 +Electron-triton_collision_time_at_point_305______________________________ (t_plasma_electron_triton_collision_profile305)_ 9.61486901532527345e-04 +Electron-triton_collision_time_at_point_306______________________________ (t_plasma_electron_triton_collision_profile306)_ 9.56736951752763646e-04 +Electron-triton_collision_time_at_point_307______________________________ (t_plasma_electron_triton_collision_profile307)_ 9.51983731630104586e-04 +Electron-triton_collision_time_at_point_308______________________________ (t_plasma_electron_triton_collision_profile308)_ 9.47227395730787253e-04 +Electron-triton_collision_time_at_point_309______________________________ (t_plasma_electron_triton_collision_profile309)_ 9.42468099849049293e-04 +Electron-triton_collision_time_at_point_310______________________________ (t_plasma_electron_triton_collision_profile310)_ 9.37706001019658598e-04 +Electron-triton_collision_time_at_point_311______________________________ (t_plasma_electron_triton_collision_profile311)_ 9.32941257530659840e-04 +Electron-triton_collision_time_at_point_312______________________________ (t_plasma_electron_triton_collision_profile312)_ 9.28174028936336651e-04 +Electron-triton_collision_time_at_point_313______________________________ (t_plasma_electron_triton_collision_profile313)_ 9.23404476070405276e-04 +Electron-triton_collision_time_at_point_314______________________________ (t_plasma_electron_triton_collision_profile314)_ 9.18632761059432119e-04 +Electron-triton_collision_time_at_point_315______________________________ (t_plasma_electron_triton_collision_profile315)_ 9.13859047336495122e-04 +Electron-triton_collision_time_at_point_316______________________________ (t_plasma_electron_triton_collision_profile316)_ 9.09083499655088880e-04 +Electron-triton_collision_time_at_point_317______________________________ (t_plasma_electron_triton_collision_profile317)_ 9.04306284103278675e-04 +Electron-triton_collision_time_at_point_318______________________________ (t_plasma_electron_triton_collision_profile318)_ 8.99527568118118855e-04 +Electron-triton_collision_time_at_point_319______________________________ (t_plasma_electron_triton_collision_profile319)_ 8.94747520500335314e-04 +Electron-triton_collision_time_at_point_320______________________________ (t_plasma_electron_triton_collision_profile320)_ 8.89966311429281299e-04 +Electron-triton_collision_time_at_point_321______________________________ (t_plasma_electron_triton_collision_profile321)_ 8.85184112478182923e-04 +Electron-triton_collision_time_at_point_322______________________________ (t_plasma_electron_triton_collision_profile322)_ 8.80401096629668733e-04 +Electron-triton_collision_time_at_point_323______________________________ (t_plasma_electron_triton_collision_profile323)_ 8.75617438291608386e-04 +Electron-triton_collision_time_at_point_324______________________________ (t_plasma_electron_triton_collision_profile324)_ 8.70833313313253490e-04 +Electron-triton_collision_time_at_point_325______________________________ (t_plasma_electron_triton_collision_profile325)_ 8.66048899001707834e-04 +Electron-triton_collision_time_at_point_326______________________________ (t_plasma_electron_triton_collision_profile326)_ 8.61264374138719178e-04 +Electron-triton_collision_time_at_point_327______________________________ (t_plasma_electron_triton_collision_profile327)_ 8.56479918997822445e-04 +Electron-triton_collision_time_at_point_328______________________________ (t_plasma_electron_triton_collision_profile328)_ 8.51695715361824976e-04 +Electron-triton_collision_time_at_point_329______________________________ (t_plasma_electron_triton_collision_profile329)_ 8.46911946540663120e-04 +Electron-triton_collision_time_at_point_330______________________________ (t_plasma_electron_triton_collision_profile330)_ 8.42128797389633961e-04 +Electron-triton_collision_time_at_point_331______________________________ (t_plasma_electron_triton_collision_profile331)_ 8.37346454328013893e-04 +Electron-triton_collision_time_at_point_332______________________________ (t_plasma_electron_triton_collision_profile332)_ 8.32565105358082239e-04 +Electron-triton_collision_time_at_point_333______________________________ (t_plasma_electron_triton_collision_profile333)_ 8.27784940084559488e-04 +Electron-triton_collision_time_at_point_334______________________________ (t_plasma_electron_triton_collision_profile334)_ 8.23006149734477788e-04 +Electron-triton_collision_time_at_point_335______________________________ (t_plasma_electron_triton_collision_profile335)_ 8.18228927177496400e-04 +Electron-triton_collision_time_at_point_336______________________________ (t_plasma_electron_triton_collision_profile336)_ 8.13453466946679788e-04 +Electron-triton_collision_time_at_point_337______________________________ (t_plasma_electron_triton_collision_profile337)_ 8.08679965259756972e-04 +Electron-triton_collision_time_at_point_338______________________________ (t_plasma_electron_triton_collision_profile338)_ 8.03908620040872800e-04 +Electron-triton_collision_time_at_point_339______________________________ (t_plasma_electron_triton_collision_profile339)_ 7.99139630942854637e-04 +Electron-triton_collision_time_at_point_340______________________________ (t_plasma_electron_triton_collision_profile340)_ 7.94373199370018994e-04 +Electron-triton_collision_time_at_point_341______________________________ (t_plasma_electron_triton_collision_profile341)_ 7.89609528501523830e-04 +Electron-triton_collision_time_at_point_342______________________________ (t_plasma_electron_triton_collision_profile342)_ 7.84848823315300475e-04 +Electron-triton_collision_time_at_point_343______________________________ (t_plasma_electron_triton_collision_profile343)_ 7.80091290612583161e-04 +Electron-triton_collision_time_at_point_344______________________________ (t_plasma_electron_triton_collision_profile344)_ 7.75337139043057524e-04 +Electron-triton_collision_time_at_point_345______________________________ (t_plasma_electron_triton_collision_profile345)_ 7.70586579130652042e-04 +Electron-triton_collision_time_at_point_346______________________________ (t_plasma_electron_triton_collision_profile346)_ 7.65839823300008067e-04 +Electron-triton_collision_time_at_point_347______________________________ (t_plasma_electron_triton_collision_profile347)_ 7.61097085903636493e-04 +Electron-triton_collision_time_at_point_348______________________________ (t_plasma_electron_triton_collision_profile348)_ 7.56358583249808203e-04 +Electron-triton_collision_time_at_point_349______________________________ (t_plasma_electron_triton_collision_profile349)_ 7.51624533631195871e-04 +Electron-triton_collision_time_at_point_350______________________________ (t_plasma_electron_triton_collision_profile350)_ 7.46895157354306692e-04 +Electron-triton_collision_time_at_point_351______________________________ (t_plasma_electron_triton_collision_profile351)_ 7.42170676769728912e-04 +Electron-triton_collision_time_at_point_352______________________________ (t_plasma_electron_triton_collision_profile352)_ 7.37451316303240297e-04 +Electron-triton_collision_time_at_point_353______________________________ (t_plasma_electron_triton_collision_profile353)_ 7.32737302487797520e-04 +Electron-triton_collision_time_at_point_354______________________________ (t_plasma_electron_triton_collision_profile354)_ 7.28028863996467608e-04 +Electron-triton_collision_time_at_point_355______________________________ (t_plasma_electron_triton_collision_profile355)_ 7.23326231676316199e-04 +Electron-triton_collision_time_at_point_356______________________________ (t_plasma_electron_triton_collision_profile356)_ 7.18629638583318745e-04 +Electron-triton_collision_time_at_point_357______________________________ (t_plasma_electron_triton_collision_profile357)_ 7.13939320018319268e-04 +Electron-triton_collision_time_at_point_358______________________________ (t_plasma_electron_triton_collision_profile358)_ 7.09255513564106387e-04 +Electron-triton_collision_time_at_point_359______________________________ (t_plasma_electron_triton_collision_profile359)_ 7.04578459123628631e-04 +Electron-triton_collision_time_at_point_360______________________________ (t_plasma_electron_triton_collision_profile360)_ 6.99908398959435104e-04 +Electron-triton_collision_time_at_point_361______________________________ (t_plasma_electron_triton_collision_profile361)_ 6.95245577734360611e-04 +Electron-triton_collision_time_at_point_362______________________________ (t_plasma_electron_triton_collision_profile362)_ 6.90590242553551828e-04 +Electron-triton_collision_time_at_point_363______________________________ (t_plasma_electron_triton_collision_profile363)_ 6.85942643007863575e-04 +Electron-triton_collision_time_at_point_364______________________________ (t_plasma_electron_triton_collision_profile364)_ 6.81303031218715512e-04 +Electron-triton_collision_time_at_point_365______________________________ (t_plasma_electron_triton_collision_profile365)_ 6.76671661884461844e-04 +Electron-triton_collision_time_at_point_366______________________________ (t_plasma_electron_triton_collision_profile366)_ 6.72048792328362602e-04 +Electron-triton_collision_time_at_point_367______________________________ (t_plasma_electron_triton_collision_profile367)_ 6.67434682548219394e-04 +Electron-triton_collision_time_at_point_368______________________________ (t_plasma_electron_triton_collision_profile368)_ 6.62829595267772661e-04 +Electron-triton_collision_time_at_point_369______________________________ (t_plasma_electron_triton_collision_profile369)_ 6.58233795989936004e-04 +Electron-triton_collision_time_at_point_370______________________________ (t_plasma_electron_triton_collision_profile370)_ 6.53647553051970470e-04 +Electron-triton_collision_time_at_point_371______________________________ (t_plasma_electron_triton_collision_profile371)_ 6.49071137682688255e-04 +Electron-triton_collision_time_at_point_372______________________________ (t_plasma_electron_triton_collision_profile372)_ 6.44504824061799438e-04 +Electron-triton_collision_time_at_point_373______________________________ (t_plasma_electron_triton_collision_profile373)_ 6.39948889381501055e-04 +Electron-triton_collision_time_at_point_374______________________________ (t_plasma_electron_triton_collision_profile374)_ 6.35403613910443844e-04 +Electron-triton_collision_time_at_point_375______________________________ (t_plasma_electron_triton_collision_profile375)_ 6.30869281060178651e-04 +Electron-triton_collision_time_at_point_376______________________________ (t_plasma_electron_triton_collision_profile376)_ 6.26346177454238542e-04 +Electron-triton_collision_time_at_point_377______________________________ (t_plasma_electron_triton_collision_profile377)_ 6.21834592999981621e-04 +Electron-triton_collision_time_at_point_378______________________________ (t_plasma_electron_triton_collision_profile378)_ 6.17334820963354571e-04 +Electron-triton_collision_time_at_point_379______________________________ (t_plasma_electron_triton_collision_profile379)_ 6.12847158046731432e-04 +Electron-triton_collision_time_at_point_380______________________________ (t_plasma_electron_triton_collision_profile380)_ 6.08371904470004013e-04 +Electron-triton_collision_time_at_point_381______________________________ (t_plasma_electron_triton_collision_profile381)_ 6.03909364055101082e-04 +Electron-triton_collision_time_at_point_382______________________________ (t_plasma_electron_triton_collision_profile382)_ 5.99459844314132384e-04 +Electron-triton_collision_time_at_point_383______________________________ (t_plasma_electron_triton_collision_profile383)_ 5.95023656541367467e-04 +Electron-triton_collision_time_at_point_384______________________________ (t_plasma_electron_triton_collision_profile384)_ 5.90601115909263150e-04 +Electron-triton_collision_time_at_point_385______________________________ (t_plasma_electron_triton_collision_profile385)_ 5.86192541568788324e-04 +Electron-triton_collision_time_at_point_386______________________________ (t_plasma_electron_triton_collision_profile386)_ 5.81798256754282456e-04 +Electron-triton_collision_time_at_point_387______________________________ (t_plasma_electron_triton_collision_profile387)_ 5.77418588893135001e-04 +Electron-triton_collision_time_at_point_388______________________________ (t_plasma_electron_triton_collision_profile388)_ 5.73053869720560236e-04 +Electron-triton_collision_time_at_point_389______________________________ (t_plasma_electron_triton_collision_profile389)_ 5.68704435399790720e-04 +Electron-triton_collision_time_at_point_390______________________________ (t_plasma_electron_triton_collision_profile390)_ 5.64370626648006616e-04 +Electron-triton_collision_time_at_point_391______________________________ (t_plasma_electron_triton_collision_profile391)_ 5.60052788868373955e-04 +Electron-triton_collision_time_at_point_392______________________________ (t_plasma_electron_triton_collision_profile392)_ 5.55751272288557857e-04 +Electron-triton_collision_time_at_point_393______________________________ (t_plasma_electron_triton_collision_profile393)_ 5.51466432106132039e-04 +Electron-triton_collision_time_at_point_394______________________________ (t_plasma_electron_triton_collision_profile394)_ 5.47198628641321983e-04 +Electron-triton_collision_time_at_point_395______________________________ (t_plasma_electron_triton_collision_profile395)_ 5.42948227497554560e-04 +Electron-triton_collision_time_at_point_396______________________________ (t_plasma_electron_triton_collision_profile396)_ 5.38715599730329249e-04 +Electron-triton_collision_time_at_point_397______________________________ (t_plasma_electron_triton_collision_profile397)_ 5.34501122024955404e-04 +Electron-triton_collision_time_at_point_398______________________________ (t_plasma_electron_triton_collision_profile398)_ 5.30305176883754292e-04 +Electron-triton_collision_time_at_point_399______________________________ (t_plasma_electron_triton_collision_profile399)_ 5.26128152823365130e-04 +Electron-triton_collision_time_at_point_400______________________________ (t_plasma_electron_triton_collision_profile400)_ 5.21970444582839474e-04 +Electron-triton_collision_time_at_point_401______________________________ (t_plasma_electron_triton_collision_profile401)_ 5.17832453343284758e-04 +Electron-triton_collision_time_at_point_402______________________________ (t_plasma_electron_triton_collision_profile402)_ 5.13714586959850917e-04 +Electron-triton_collision_time_at_point_403______________________________ (t_plasma_electron_triton_collision_profile403)_ 5.09617260206947863e-04 +Electron-triton_collision_time_at_point_404______________________________ (t_plasma_electron_triton_collision_profile404)_ 5.05540895037637282e-04 +Electron-triton_collision_time_at_point_405______________________________ (t_plasma_electron_triton_collision_profile405)_ 5.01485920858229161e-04 +Electron-triton_collision_time_at_point_406______________________________ (t_plasma_electron_triton_collision_profile406)_ 4.97452774819207174e-04 +Electron-triton_collision_time_at_point_407______________________________ (t_plasma_electron_triton_collision_profile407)_ 4.93441902123695902e-04 +Electron-triton_collision_time_at_point_408______________________________ (t_plasma_electron_triton_collision_profile408)_ 4.89453756354794596e-04 +Electron-triton_collision_time_at_point_409______________________________ (t_plasma_electron_triton_collision_profile409)_ 4.85488799823231691e-04 +Electron-triton_collision_time_at_point_410______________________________ (t_plasma_electron_triton_collision_profile410)_ 4.81547503936904876e-04 +Electron-triton_collision_time_at_point_411______________________________ (t_plasma_electron_triton_collision_profile411)_ 4.77630349594040991e-04 +Electron-triton_collision_time_at_point_412______________________________ (t_plasma_electron_triton_collision_profile412)_ 4.73737827601851261e-04 +Electron-triton_collision_time_at_point_413______________________________ (t_plasma_electron_triton_collision_profile413)_ 4.69870439122760017e-04 +Electron-triton_collision_time_at_point_414______________________________ (t_plasma_electron_triton_collision_profile414)_ 4.66028696150461662e-04 +Electron-triton_collision_time_at_point_415______________________________ (t_plasma_electron_triton_collision_profile415)_ 4.62213122018307406e-04 +Electron-triton_collision_time_at_point_416______________________________ (t_plasma_electron_triton_collision_profile416)_ 4.58424251942752604e-04 +Electron-triton_collision_time_at_point_417______________________________ (t_plasma_electron_triton_collision_profile417)_ 4.54662633604895050e-04 +Electron-triton_collision_time_at_point_418______________________________ (t_plasma_electron_triton_collision_profile418)_ 4.50928827773429462e-04 +Electron-triton_collision_time_at_point_419______________________________ (t_plasma_electron_triton_collision_profile419)_ 4.47223408972715025e-04 +Electron-triton_collision_time_at_point_420______________________________ (t_plasma_electron_triton_collision_profile420)_ 4.43546966200031236e-04 +Electron-triton_collision_time_at_point_421______________________________ (t_plasma_electron_triton_collision_profile421)_ 4.39900103696562635e-04 +Electron-triton_collision_time_at_point_422______________________________ (t_plasma_electron_triton_collision_profile422)_ 4.36283441777147725e-04 +Electron-triton_collision_time_at_point_423______________________________ (t_plasma_electron_triton_collision_profile423)_ 4.32697617724408308e-04 +Electron-triton_collision_time_at_point_424______________________________ (t_plasma_electron_triton_collision_profile424)_ 4.29143286753527167e-04 +Electron-triton_collision_time_at_point_425______________________________ (t_plasma_electron_triton_collision_profile425)_ 4.25621123054691053e-04 +Electron-triton_collision_time_at_point_426______________________________ (t_plasma_electron_triton_collision_profile426)_ 4.22131820921058901e-04 +Electron-triton_collision_time_at_point_427______________________________ (t_plasma_electron_triton_collision_profile427)_ 4.18676095971097864e-04 +Electron-triton_collision_time_at_point_428______________________________ (t_plasma_electron_triton_collision_profile428)_ 4.15254686475251527e-04 +Electron-triton_collision_time_at_point_429______________________________ (t_plasma_electron_triton_collision_profile429)_ 4.11868354798191011e-04 +Electron-triton_collision_time_at_point_430______________________________ (t_plasma_electron_triton_collision_profile430)_ 4.08517888969402220e-04 +Electron-triton_collision_time_at_point_431______________________________ (t_plasma_electron_triton_collision_profile431)_ 4.05204104396595852e-04 +Electron-triton_collision_time_at_point_432______________________________ (t_plasma_electron_triton_collision_profile432)_ 4.01927845738446834e-04 +Electron-triton_collision_time_at_point_433______________________________ (t_plasma_electron_triton_collision_profile433)_ 3.98689988955534466e-04 +Electron-triton_collision_time_at_point_434______________________________ (t_plasma_electron_triton_collision_profile434)_ 3.95491443561138759e-04 +Electron-triton_collision_time_at_point_435______________________________ (t_plasma_electron_triton_collision_profile435)_ 3.92333155096794646e-04 +Electron-triton_collision_time_at_point_436______________________________ (t_plasma_electron_triton_collision_profile436)_ 3.89216107861410730e-04 +Electron-triton_collision_time_at_point_437______________________________ (t_plasma_electron_triton_collision_profile437)_ 3.86141327927327601e-04 +Electron-triton_collision_time_at_point_438______________________________ (t_plasma_electron_triton_collision_profile438)_ 3.83109886482220659e-04 +Electron-triton_collision_time_at_point_439______________________________ (t_plasma_electron_triton_collision_profile439)_ 3.80122903542336372e-04 +Electron-triton_collision_time_at_point_440______________________________ (t_plasma_electron_triton_collision_profile440)_ 3.77181552090548387e-04 +Electron-triton_collision_time_at_point_441______________________________ (t_plasma_electron_triton_collision_profile441)_ 3.74287062702393085e-04 +Electron-triton_collision_time_at_point_442______________________________ (t_plasma_electron_triton_collision_profile442)_ 3.71440728735093545e-04 +Electron-triton_collision_time_at_point_443______________________________ (t_plasma_electron_triton_collision_profile443)_ 3.68643912169146410e-04 +Electron-triton_collision_time_at_point_444______________________________ (t_plasma_electron_triton_collision_profile444)_ 3.65898050210079881e-04 +Electron-triton_collision_time_at_point_445______________________________ (t_plasma_electron_triton_collision_profile445)_ 3.63204662780491623e-04 +Electron-triton_collision_time_at_point_446______________________________ (t_plasma_electron_triton_collision_profile446)_ 3.60565361060802595e-04 +Electron-triton_collision_time_at_point_447______________________________ (t_plasma_electron_triton_collision_profile447)_ 3.57981857273035708e-04 +Electron-triton_collision_time_at_point_448______________________________ (t_plasma_electron_triton_collision_profile448)_ 3.55455975947933001e-04 +Electron-triton_collision_time_at_point_449______________________________ (t_plasma_electron_triton_collision_profile449)_ 3.52989666975117664e-04 +Electron-triton_collision_time_at_point_450______________________________ (t_plasma_electron_triton_collision_profile450)_ 3.50585020813720585e-04 +Electron-triton_collision_time_at_point_451______________________________ (t_plasma_electron_triton_collision_profile451)_ 3.48244286343574226e-04 +Electron-triton_collision_time_at_point_452______________________________ (t_plasma_electron_triton_collision_profile452)_ 3.45969891974658530e-04 +Electron-triton_collision_time_at_point_453______________________________ (t_plasma_electron_triton_collision_profile453)_ 3.43764470819322532e-04 +Electron-triton_collision_time_at_point_454______________________________ (t_plasma_electron_triton_collision_profile454)_ 3.41630890989501194e-04 +Electron-triton_collision_time_at_point_455______________________________ (t_plasma_electron_triton_collision_profile455)_ 3.39572292442725534e-04 +Electron-triton_collision_time_at_point_456______________________________ (t_plasma_electron_triton_collision_profile456)_ 3.37592132317698196e-04 +Electron-triton_collision_time_at_point_457______________________________ (t_plasma_electron_triton_collision_profile457)_ 3.35694241455313034e-04 +Electron-triton_collision_time_at_point_458______________________________ (t_plasma_electron_triton_collision_profile458)_ 3.33882895930634450e-04 +Electron-triton_collision_time_at_point_459______________________________ (t_plasma_electron_triton_collision_profile459)_ 3.32162909157994815e-04 +Electron-triton_collision_time_at_point_460______________________________ (t_plasma_electron_triton_collision_profile460)_ 3.30539752886049919e-04 +Electron-triton_collision_time_at_point_461______________________________ (t_plasma_electron_triton_collision_profile461)_ 3.29019719930802258e-04 +Electron-triton_collision_time_at_point_462______________________________ (t_plasma_electron_triton_collision_profile462)_ 3.27610149273247669e-04 +Electron-triton_collision_time_at_point_463______________________________ (t_plasma_electron_triton_collision_profile463)_ 3.26319748201441603e-04 +Electron-triton_collision_time_at_point_464______________________________ (t_plasma_electron_triton_collision_profile464)_ 3.25159073195765091e-04 +Electron-triton_collision_time_at_point_465______________________________ (t_plasma_electron_triton_collision_profile465)_ 3.24141287405490370e-04 +Electron-triton_collision_time_at_point_466______________________________ (t_plasma_electron_triton_collision_profile466)_ 3.23283441592278696e-04 +Electron-triton_collision_time_at_point_467______________________________ (t_plasma_electron_triton_collision_profile467)_ 3.22608865209769280e-04 +Electron-triton_collision_time_at_point_468______________________________ (t_plasma_electron_triton_collision_profile468)_ 3.22152346312174387e-04 +Electron-triton_collision_time_at_point_469______________________________ (t_plasma_electron_triton_collision_profile469)_ 3.21974685611214494e-04 +Electron-triton_collision_time_at_point_470______________________________ (t_plasma_electron_triton_collision_profile470)_ 3.22251698783570519e-04 +Electron-triton_collision_time_at_point_471______________________________ (t_plasma_electron_triton_collision_profile471)_ 3.11304160096056786e-04 +Electron-triton_collision_time_at_point_472______________________________ (t_plasma_electron_triton_collision_profile472)_ 3.00289620095472716e-04 +Electron-triton_collision_time_at_point_473______________________________ (t_plasma_electron_triton_collision_profile473)_ 2.89209618561692714e-04 +Electron-triton_collision_time_at_point_474______________________________ (t_plasma_electron_triton_collision_profile474)_ 2.78066031775765386e-04 +Electron-triton_collision_time_at_point_475______________________________ (t_plasma_electron_triton_collision_profile475)_ 2.66861121182123599e-04 +Electron-triton_collision_time_at_point_476______________________________ (t_plasma_electron_triton_collision_profile476)_ 2.55597589768165876e-04 +Electron-triton_collision_time_at_point_477______________________________ (t_plasma_electron_triton_collision_profile477)_ 2.44278647609537456e-04 +Electron-triton_collision_time_at_point_478______________________________ (t_plasma_electron_triton_collision_profile478)_ 2.32908088357794131e-04 +Electron-triton_collision_time_at_point_479______________________________ (t_plasma_electron_triton_collision_profile479)_ 2.21490378865747255e-04 +Electron-triton_collision_time_at_point_480______________________________ (t_plasma_electron_triton_collision_profile480)_ 2.10030764684591926e-04 +Electron-triton_collision_time_at_point_481______________________________ (t_plasma_electron_triton_collision_profile481)_ 1.98535394867721375e-04 +Electron-triton_collision_time_at_point_482______________________________ (t_plasma_electron_triton_collision_profile482)_ 1.87011470438206079e-04 +Electron-triton_collision_time_at_point_483______________________________ (t_plasma_electron_triton_collision_profile483)_ 1.75467422105627069e-04 +Electron-triton_collision_time_at_point_484______________________________ (t_plasma_electron_triton_collision_profile484)_ 1.63913124478473306e-04 +Electron-triton_collision_time_at_point_485______________________________ (t_plasma_electron_triton_collision_profile485)_ 1.52360156297799340e-04 +Electron-triton_collision_time_at_point_486______________________________ (t_plasma_electron_triton_collision_profile486)_ 1.40822119402184159e-04 +Electron-triton_collision_time_at_point_487______________________________ (t_plasma_electron_triton_collision_profile487)_ 1.29315033670725812e-04 +Electron-triton_collision_time_at_point_488______________________________ (t_plasma_electron_triton_collision_profile488)_ 1.17857831799179075e-04 +Electron-triton_collision_time_at_point_489______________________________ (t_plasma_electron_triton_collision_profile489)_ 1.06472987636683827e-04 +Electron-triton_collision_time_at_point_490______________________________ (t_plasma_electron_triton_collision_profile490)_ 9.51873269921337369e-05 +Electron-triton_collision_time_at_point_491______________________________ (t_plasma_electron_triton_collision_profile491)_ 8.40330939608696024e-05 +Electron-triton_collision_time_at_point_492______________________________ (t_plasma_electron_triton_collision_profile492)_ 7.30493857465490404e-05 +Electron-triton_collision_time_at_point_493______________________________ (t_plasma_electron_triton_collision_profile493)_ 6.22841381181144952e-05 +Electron-triton_collision_time_at_point_494______________________________ (t_plasma_electron_triton_collision_profile494)_ 5.17969703676186588e-05 +Electron-triton_collision_time_at_point_495______________________________ (t_plasma_electron_triton_collision_profile495)_ 4.16634474048514319e-05 +Electron-triton_collision_time_at_point_496______________________________ (t_plasma_electron_triton_collision_profile496)_ 3.19818495414898402e-05 +Electron-triton_collision_time_at_point_497______________________________ (t_plasma_electron_triton_collision_profile497)_ 2.28848211725379404e-05 +Electron-triton_collision_time_at_point_498______________________________ (t_plasma_electron_triton_collision_profile498)_ 1.45618816241934917e-05 +Electron-triton_collision_time_at_point_499______________________________ (t_plasma_electron_triton_collision_profile499)_ 7.31180625261544339e-06 +Electron-triton_collision_time_at_point_500______________________________ (t_plasma_electron_triton_collision_profile500)_ 1.71876133172843349e-06 +Volume_averaged_electron-alpha_thermal_collision_time_(τₑαₜₕ)_(s)________ (t_plasma_electron_alpha_thermal_collision_vol_avg)_ 1.08464474408016300e-03 OP +Electron-alpha_thermal_collision_time_at_point_0_________________________ (t_plasma_electron_alpha_thermal_collision_profile0)_ 2.36543429864584636e-03 +Electron-alpha_thermal_collision_time_at_point_1_________________________ (t_plasma_electron_alpha_thermal_collision_profile1)_ 2.36542083577294523e-03 +Electron-alpha_thermal_collision_time_at_point_2_________________________ (t_plasma_electron_alpha_thermal_collision_profile2)_ 2.36538044733042600e-03 +Electron-alpha_thermal_collision_time_at_point_3_________________________ (t_plasma_electron_alpha_thermal_collision_profile3)_ 2.36531313384682985e-03 +Electron-alpha_thermal_collision_time_at_point_4_________________________ (t_plasma_electron_alpha_thermal_collision_profile4)_ 2.36521889620308970e-03 +Electron-alpha_thermal_collision_time_at_point_5_________________________ (t_plasma_electron_alpha_thermal_collision_profile5)_ 2.36509773563255187e-03 +Electron-alpha_thermal_collision_time_at_point_6_________________________ (t_plasma_electron_alpha_thermal_collision_profile6)_ 2.36494965372102423e-03 +Electron-alpha_thermal_collision_time_at_point_7_________________________ (t_plasma_electron_alpha_thermal_collision_profile7)_ 2.36477465240683693e-03 +Electron-alpha_thermal_collision_time_at_point_8_________________________ (t_plasma_electron_alpha_thermal_collision_profile8)_ 2.36457273398090568e-03 +Electron-alpha_thermal_collision_time_at_point_9_________________________ (t_plasma_electron_alpha_thermal_collision_profile9)_ 2.36434390108682243e-03 +Electron-alpha_thermal_collision_time_at_point_10________________________ (t_plasma_electron_alpha_thermal_collision_profile10)_ 2.36408815672094772e-03 +Electron-alpha_thermal_collision_time_at_point_11________________________ (t_plasma_electron_alpha_thermal_collision_profile11)_ 2.36380550423251953e-03 +Electron-alpha_thermal_collision_time_at_point_12________________________ (t_plasma_electron_alpha_thermal_collision_profile12)_ 2.36349594732377646e-03 +Electron-alpha_thermal_collision_time_at_point_13________________________ (t_plasma_electron_alpha_thermal_collision_profile13)_ 2.36315949005009088e-03 +Electron-alpha_thermal_collision_time_at_point_14________________________ (t_plasma_electron_alpha_thermal_collision_profile14)_ 2.36279613682011634e-03 +Electron-alpha_thermal_collision_time_at_point_15________________________ (t_plasma_electron_alpha_thermal_collision_profile15)_ 2.36240589239595329e-03 +Electron-alpha_thermal_collision_time_at_point_16________________________ (t_plasma_electron_alpha_thermal_collision_profile16)_ 2.36198876189331122e-03 +Electron-alpha_thermal_collision_time_at_point_17________________________ (t_plasma_electron_alpha_thermal_collision_profile17)_ 2.36154475078170778e-03 +Electron-alpha_thermal_collision_time_at_point_18________________________ (t_plasma_electron_alpha_thermal_collision_profile18)_ 2.36107386488465520e-03 +Electron-alpha_thermal_collision_time_at_point_19________________________ (t_plasma_electron_alpha_thermal_collision_profile19)_ 2.36057611037988630e-03 +Electron-alpha_thermal_collision_time_at_point_20________________________ (t_plasma_electron_alpha_thermal_collision_profile20)_ 2.36005149379956564e-03 +Electron-alpha_thermal_collision_time_at_point_21________________________ (t_plasma_electron_alpha_thermal_collision_profile21)_ 2.35950002203053630e-03 +Electron-alpha_thermal_collision_time_at_point_22________________________ (t_plasma_electron_alpha_thermal_collision_profile22)_ 2.35892170231456798e-03 +Electron-alpha_thermal_collision_time_at_point_23________________________ (t_plasma_electron_alpha_thermal_collision_profile23)_ 2.35831654224862020e-03 +Electron-alpha_thermal_collision_time_at_point_24________________________ (t_plasma_electron_alpha_thermal_collision_profile24)_ 2.35768454978512116e-03 +Electron-alpha_thermal_collision_time_at_point_25________________________ (t_plasma_electron_alpha_thermal_collision_profile25)_ 2.35702573323225747e-03 +Electron-alpha_thermal_collision_time_at_point_26________________________ (t_plasma_electron_alpha_thermal_collision_profile26)_ 2.35634010125427250e-03 +Electron-alpha_thermal_collision_time_at_point_27________________________ (t_plasma_electron_alpha_thermal_collision_profile27)_ 2.35562766287179294e-03 +Electron-alpha_thermal_collision_time_at_point_28________________________ (t_plasma_electron_alpha_thermal_collision_profile28)_ 2.35488842746214627e-03 +Electron-alpha_thermal_collision_time_at_point_29________________________ (t_plasma_electron_alpha_thermal_collision_profile29)_ 2.35412240475971332e-03 +Electron-alpha_thermal_collision_time_at_point_30________________________ (t_plasma_electron_alpha_thermal_collision_profile30)_ 2.35332960485627263e-03 +Electron-alpha_thermal_collision_time_at_point_31________________________ (t_plasma_electron_alpha_thermal_collision_profile31)_ 2.35251003820138383e-03 +Electron-alpha_thermal_collision_time_at_point_32________________________ (t_plasma_electron_alpha_thermal_collision_profile32)_ 2.35166371560275363e-03 +Electron-alpha_thermal_collision_time_at_point_33________________________ (t_plasma_electron_alpha_thermal_collision_profile33)_ 2.35079064822664614e-03 +Electron-alpha_thermal_collision_time_at_point_34________________________ (t_plasma_electron_alpha_thermal_collision_profile34)_ 2.34989084759827747e-03 +Electron-alpha_thermal_collision_time_at_point_35________________________ (t_plasma_electron_alpha_thermal_collision_profile35)_ 2.34896432560225245e-03 +Electron-alpha_thermal_collision_time_at_point_36________________________ (t_plasma_electron_alpha_thermal_collision_profile36)_ 2.34801109448298535e-03 +Electron-alpha_thermal_collision_time_at_point_37________________________ (t_plasma_electron_alpha_thermal_collision_profile37)_ 2.34703116684515821e-03 +Electron-alpha_thermal_collision_time_at_point_38________________________ (t_plasma_electron_alpha_thermal_collision_profile38)_ 2.34602455565417756e-03 +Electron-alpha_thermal_collision_time_at_point_39________________________ (t_plasma_electron_alpha_thermal_collision_profile39)_ 2.34499127423665578e-03 +Electron-alpha_thermal_collision_time_at_point_40________________________ (t_plasma_electron_alpha_thermal_collision_profile40)_ 2.34393133628089468e-03 +Electron-alpha_thermal_collision_time_at_point_41________________________ (t_plasma_electron_alpha_thermal_collision_profile41)_ 2.34284475583738721e-03 +Electron-alpha_thermal_collision_time_at_point_42________________________ (t_plasma_electron_alpha_thermal_collision_profile42)_ 2.34173154731934187e-03 +Electron-alpha_thermal_collision_time_at_point_43________________________ (t_plasma_electron_alpha_thermal_collision_profile43)_ 2.34059172550320172e-03 +Electron-alpha_thermal_collision_time_at_point_44________________________ (t_plasma_electron_alpha_thermal_collision_profile44)_ 2.33942530552919527e-03 +Electron-alpha_thermal_collision_time_at_point_45________________________ (t_plasma_electron_alpha_thermal_collision_profile45)_ 2.33823230290189192e-03 +Electron-alpha_thermal_collision_time_at_point_46________________________ (t_plasma_electron_alpha_thermal_collision_profile46)_ 2.33701273349077058e-03 +Electron-alpha_thermal_collision_time_at_point_47________________________ (t_plasma_electron_alpha_thermal_collision_profile47)_ 2.33576661353080556e-03 +Electron-alpha_thermal_collision_time_at_point_48________________________ (t_plasma_electron_alpha_thermal_collision_profile48)_ 2.33449395962306763e-03 +Electron-alpha_thermal_collision_time_at_point_49________________________ (t_plasma_electron_alpha_thermal_collision_profile49)_ 2.33319478873533163e-03 +Electron-alpha_thermal_collision_time_at_point_50________________________ (t_plasma_electron_alpha_thermal_collision_profile50)_ 2.33186911820270487e-03 +Electron-alpha_thermal_collision_time_at_point_51________________________ (t_plasma_electron_alpha_thermal_collision_profile51)_ 2.33051696572827201e-03 +Electron-alpha_thermal_collision_time_at_point_52________________________ (t_plasma_electron_alpha_thermal_collision_profile52)_ 2.32913834938373995e-03 +Electron-alpha_thermal_collision_time_at_point_53________________________ (t_plasma_electron_alpha_thermal_collision_profile53)_ 2.32773328761011348e-03 +Electron-alpha_thermal_collision_time_at_point_54________________________ (t_plasma_electron_alpha_thermal_collision_profile54)_ 2.32630179921837661e-03 +Electron-alpha_thermal_collision_time_at_point_55________________________ (t_plasma_electron_alpha_thermal_collision_profile55)_ 2.32484390339018692e-03 +Electron-alpha_thermal_collision_time_at_point_56________________________ (t_plasma_electron_alpha_thermal_collision_profile56)_ 2.32335961967858893e-03 +Electron-alpha_thermal_collision_time_at_point_57________________________ (t_plasma_electron_alpha_thermal_collision_profile57)_ 2.32184896800873746e-03 +Electron-alpha_thermal_collision_time_at_point_58________________________ (t_plasma_electron_alpha_thermal_collision_profile58)_ 2.32031196867863972e-03 +Electron-alpha_thermal_collision_time_at_point_59________________________ (t_plasma_electron_alpha_thermal_collision_profile59)_ 2.31874864235990553e-03 +Electron-alpha_thermal_collision_time_at_point_60________________________ (t_plasma_electron_alpha_thermal_collision_profile60)_ 2.31715901009851974e-03 +Electron-alpha_thermal_collision_time_at_point_61________________________ (t_plasma_electron_alpha_thermal_collision_profile61)_ 2.31554309331562626e-03 +Electron-alpha_thermal_collision_time_at_point_62________________________ (t_plasma_electron_alpha_thermal_collision_profile62)_ 2.31390091380831789e-03 +Electron-alpha_thermal_collision_time_at_point_63________________________ (t_plasma_electron_alpha_thermal_collision_profile63)_ 2.31223249375045762e-03 +Electron-alpha_thermal_collision_time_at_point_64________________________ (t_plasma_electron_alpha_thermal_collision_profile64)_ 2.31053785569350313e-03 +Electron-alpha_thermal_collision_time_at_point_65________________________ (t_plasma_electron_alpha_thermal_collision_profile65)_ 2.30881702256734590e-03 +Electron-alpha_thermal_collision_time_at_point_66________________________ (t_plasma_electron_alpha_thermal_collision_profile66)_ 2.30707001768116820e-03 +Electron-alpha_thermal_collision_time_at_point_67________________________ (t_plasma_electron_alpha_thermal_collision_profile67)_ 2.30529686472432131e-03 +Electron-alpha_thermal_collision_time_at_point_68________________________ (t_plasma_electron_alpha_thermal_collision_profile68)_ 2.30349758776720280e-03 +Electron-alpha_thermal_collision_time_at_point_69________________________ (t_plasma_electron_alpha_thermal_collision_profile69)_ 2.30167221126216645e-03 +Electron-alpha_thermal_collision_time_at_point_70________________________ (t_plasma_electron_alpha_thermal_collision_profile70)_ 2.29982076004443207e-03 +Electron-alpha_thermal_collision_time_at_point_71________________________ (t_plasma_electron_alpha_thermal_collision_profile71)_ 2.29794325933302618e-03 +Electron-alpha_thermal_collision_time_at_point_72________________________ (t_plasma_electron_alpha_thermal_collision_profile72)_ 2.29603973473172006e-03 +Electron-alpha_thermal_collision_time_at_point_73________________________ (t_plasma_electron_alpha_thermal_collision_profile73)_ 2.29411021223000031e-03 +Electron-alpha_thermal_collision_time_at_point_74________________________ (t_plasma_electron_alpha_thermal_collision_profile74)_ 2.29215471820404292e-03 +Electron-alpha_thermal_collision_time_at_point_75________________________ (t_plasma_electron_alpha_thermal_collision_profile75)_ 2.29017327941770810e-03 +Electron-alpha_thermal_collision_time_at_point_76________________________ (t_plasma_electron_alpha_thermal_collision_profile76)_ 2.28816592302355298e-03 +Electron-alpha_thermal_collision_time_at_point_77________________________ (t_plasma_electron_alpha_thermal_collision_profile77)_ 2.28613267656384896e-03 +Electron-alpha_thermal_collision_time_at_point_78________________________ (t_plasma_electron_alpha_thermal_collision_profile78)_ 2.28407356797163215e-03 +Electron-alpha_thermal_collision_time_at_point_79________________________ (t_plasma_electron_alpha_thermal_collision_profile79)_ 2.28198862557175367e-03 +Electron-alpha_thermal_collision_time_at_point_80________________________ (t_plasma_electron_alpha_thermal_collision_profile80)_ 2.27987787808195657e-03 +Electron-alpha_thermal_collision_time_at_point_81________________________ (t_plasma_electron_alpha_thermal_collision_profile81)_ 2.27774135461395822e-03 +Electron-alpha_thermal_collision_time_at_point_82________________________ (t_plasma_electron_alpha_thermal_collision_profile82)_ 2.27557908467456490e-03 +Electron-alpha_thermal_collision_time_at_point_83________________________ (t_plasma_electron_alpha_thermal_collision_profile83)_ 2.27339109816678724e-03 +Electron-alpha_thermal_collision_time_at_point_84________________________ (t_plasma_electron_alpha_thermal_collision_profile84)_ 2.27117742539097514e-03 +Electron-alpha_thermal_collision_time_at_point_85________________________ (t_plasma_electron_alpha_thermal_collision_profile85)_ 2.26893809704598048e-03 +Electron-alpha_thermal_collision_time_at_point_86________________________ (t_plasma_electron_alpha_thermal_collision_profile86)_ 2.26667314423031722e-03 +Electron-alpha_thermal_collision_time_at_point_87________________________ (t_plasma_electron_alpha_thermal_collision_profile87)_ 2.26438259844335531e-03 +Electron-alpha_thermal_collision_time_at_point_88________________________ (t_plasma_electron_alpha_thermal_collision_profile88)_ 2.26206649158652417e-03 +Electron-alpha_thermal_collision_time_at_point_89________________________ (t_plasma_electron_alpha_thermal_collision_profile89)_ 2.25972485596453217e-03 +Electron-alpha_thermal_collision_time_at_point_90________________________ (t_plasma_electron_alpha_thermal_collision_profile90)_ 2.25735772428660268e-03 +Electron-alpha_thermal_collision_time_at_point_91________________________ (t_plasma_electron_alpha_thermal_collision_profile91)_ 2.25496512966772865e-03 +Electron-alpha_thermal_collision_time_at_point_92________________________ (t_plasma_electron_alpha_thermal_collision_profile92)_ 2.25254710562994721e-03 +Electron-alpha_thermal_collision_time_at_point_93________________________ (t_plasma_electron_alpha_thermal_collision_profile93)_ 2.25010368610362556e-03 +Electron-alpha_thermal_collision_time_at_point_94________________________ (t_plasma_electron_alpha_thermal_collision_profile94)_ 2.24763490542877198e-03 +Electron-alpha_thermal_collision_time_at_point_95________________________ (t_plasma_electron_alpha_thermal_collision_profile95)_ 2.24514079835635072e-03 +Electron-alpha_thermal_collision_time_at_point_96________________________ (t_plasma_electron_alpha_thermal_collision_profile96)_ 2.24262140004963121e-03 +Electron-alpha_thermal_collision_time_at_point_97________________________ (t_plasma_electron_alpha_thermal_collision_profile97)_ 2.24007674608554287e-03 +Electron-alpha_thermal_collision_time_at_point_98________________________ (t_plasma_electron_alpha_thermal_collision_profile98)_ 2.23750687245605467e-03 +Electron-alpha_thermal_collision_time_at_point_99________________________ (t_plasma_electron_alpha_thermal_collision_profile99)_ 2.23491181556956546e-03 +Electron-alpha_thermal_collision_time_at_point_100_______________________ (t_plasma_electron_alpha_thermal_collision_profile100)_ 2.23229161225232172e-03 +Electron-alpha_thermal_collision_time_at_point_101_______________________ (t_plasma_electron_alpha_thermal_collision_profile101)_ 2.22964629974984133e-03 +Electron-alpha_thermal_collision_time_at_point_102_______________________ (t_plasma_electron_alpha_thermal_collision_profile102)_ 2.22697591572837156e-03 +Electron-alpha_thermal_collision_time_at_point_103_______________________ (t_plasma_electron_alpha_thermal_collision_profile103)_ 2.22428049827634675e-03 +Electron-alpha_thermal_collision_time_at_point_104_______________________ (t_plasma_electron_alpha_thermal_collision_profile104)_ 2.22156008590588183e-03 +Electron-alpha_thermal_collision_time_at_point_105_______________________ (t_plasma_electron_alpha_thermal_collision_profile105)_ 2.21881471755427245e-03 +Electron-alpha_thermal_collision_time_at_point_106_______________________ (t_plasma_electron_alpha_thermal_collision_profile106)_ 2.21604443258551810e-03 +Electron-alpha_thermal_collision_time_at_point_107_______________________ (t_plasma_electron_alpha_thermal_collision_profile107)_ 2.21324927079186856e-03 +Electron-alpha_thermal_collision_time_at_point_108_______________________ (t_plasma_electron_alpha_thermal_collision_profile108)_ 2.21042927239537782e-03 +Electron-alpha_thermal_collision_time_at_point_109_______________________ (t_plasma_electron_alpha_thermal_collision_profile109)_ 2.20758447804949133e-03 +Electron-alpha_thermal_collision_time_at_point_110_______________________ (t_plasma_electron_alpha_thermal_collision_profile110)_ 2.20471492884064023e-03 +Electron-alpha_thermal_collision_time_at_point_111_______________________ (t_plasma_electron_alpha_thermal_collision_profile111)_ 2.20182066628986503e-03 +Electron-alpha_thermal_collision_time_at_point_112_______________________ (t_plasma_electron_alpha_thermal_collision_profile112)_ 2.19890173235444972e-03 +Electron-alpha_thermal_collision_time_at_point_113_______________________ (t_plasma_electron_alpha_thermal_collision_profile113)_ 2.19595816942958280e-03 +Electron-alpha_thermal_collision_time_at_point_114_______________________ (t_plasma_electron_alpha_thermal_collision_profile114)_ 2.19299002035003125e-03 +Electron-alpha_thermal_collision_time_at_point_115_______________________ (t_plasma_electron_alpha_thermal_collision_profile115)_ 2.18999732839184795e-03 +Electron-alpha_thermal_collision_time_at_point_116_______________________ (t_plasma_electron_alpha_thermal_collision_profile116)_ 2.18698013727407822e-03 +Electron-alpha_thermal_collision_time_at_point_117_______________________ (t_plasma_electron_alpha_thermal_collision_profile117)_ 2.18393849116050795e-03 +Electron-alpha_thermal_collision_time_at_point_118_______________________ (t_plasma_electron_alpha_thermal_collision_profile118)_ 2.18087243466141400e-03 +Electron-alpha_thermal_collision_time_at_point_119_______________________ (t_plasma_electron_alpha_thermal_collision_profile119)_ 2.17778201283535047e-03 +Electron-alpha_thermal_collision_time_at_point_120_______________________ (t_plasma_electron_alpha_thermal_collision_profile120)_ 2.17466727119094982e-03 +Electron-alpha_thermal_collision_time_at_point_121_______________________ (t_plasma_electron_alpha_thermal_collision_profile121)_ 2.17152825568873737e-03 +Electron-alpha_thermal_collision_time_at_point_122_______________________ (t_plasma_electron_alpha_thermal_collision_profile122)_ 2.16836501274297704e-03 +Electron-alpha_thermal_collision_time_at_point_123_______________________ (t_plasma_electron_alpha_thermal_collision_profile123)_ 2.16517758922353662e-03 +Electron-alpha_thermal_collision_time_at_point_124_______________________ (t_plasma_electron_alpha_thermal_collision_profile124)_ 2.16196603245777256e-03 +Electron-alpha_thermal_collision_time_at_point_125_______________________ (t_plasma_electron_alpha_thermal_collision_profile125)_ 2.15873039023243250e-03 +Electron-alpha_thermal_collision_time_at_point_126_______________________ (t_plasma_electron_alpha_thermal_collision_profile126)_ 2.15547071079558910e-03 +Electron-alpha_thermal_collision_time_at_point_127_______________________ (t_plasma_electron_alpha_thermal_collision_profile127)_ 2.15218704285858676e-03 +Electron-alpha_thermal_collision_time_at_point_128_______________________ (t_plasma_electron_alpha_thermal_collision_profile128)_ 2.14887943559801276e-03 +Electron-alpha_thermal_collision_time_at_point_129_______________________ (t_plasma_electron_alpha_thermal_collision_profile129)_ 2.14554793865769783e-03 +Electron-alpha_thermal_collision_time_at_point_130_______________________ (t_plasma_electron_alpha_thermal_collision_profile130)_ 2.14219260215072361e-03 +Electron-alpha_thermal_collision_time_at_point_131_______________________ (t_plasma_electron_alpha_thermal_collision_profile131)_ 2.13881347666147661e-03 +Electron-alpha_thermal_collision_time_at_point_132_______________________ (t_plasma_electron_alpha_thermal_collision_profile132)_ 2.13541061324769169e-03 +Electron-alpha_thermal_collision_time_at_point_133_______________________ (t_plasma_electron_alpha_thermal_collision_profile133)_ 2.13198406344255543e-03 +Electron-alpha_thermal_collision_time_at_point_134_______________________ (t_plasma_electron_alpha_thermal_collision_profile134)_ 2.12853387925680338e-03 +Electron-alpha_thermal_collision_time_at_point_135_______________________ (t_plasma_electron_alpha_thermal_collision_profile135)_ 2.12506011318085814e-03 +Electron-alpha_thermal_collision_time_at_point_136_______________________ (t_plasma_electron_alpha_thermal_collision_profile136)_ 2.12156281818698302e-03 +Electron-alpha_thermal_collision_time_at_point_137_______________________ (t_plasma_electron_alpha_thermal_collision_profile137)_ 2.11804204773145691e-03 +Electron-alpha_thermal_collision_time_at_point_138_______________________ (t_plasma_electron_alpha_thermal_collision_profile138)_ 2.11449785575678999e-03 +Electron-alpha_thermal_collision_time_at_point_139_______________________ (t_plasma_electron_alpha_thermal_collision_profile139)_ 2.11093029669393289e-03 +Electron-alpha_thermal_collision_time_at_point_140_______________________ (t_plasma_electron_alpha_thermal_collision_profile140)_ 2.10733942546455092e-03 +Electron-alpha_thermal_collision_time_at_point_141_______________________ (t_plasma_electron_alpha_thermal_collision_profile141)_ 2.10372529748328050e-03 +Electron-alpha_thermal_collision_time_at_point_142_______________________ (t_plasma_electron_alpha_thermal_collision_profile142)_ 2.10008796866003981e-03 +Electron-alpha_thermal_collision_time_at_point_143_______________________ (t_plasma_electron_alpha_thermal_collision_profile143)_ 2.09642749540235769e-03 +Electron-alpha_thermal_collision_time_at_point_144_______________________ (t_plasma_electron_alpha_thermal_collision_profile144)_ 2.09274393461771980e-03 +Electron-alpha_thermal_collision_time_at_point_145_______________________ (t_plasma_electron_alpha_thermal_collision_profile145)_ 2.08903734371594695e-03 +Electron-alpha_thermal_collision_time_at_point_146_______________________ (t_plasma_electron_alpha_thermal_collision_profile146)_ 2.08530778061159902e-03 +Electron-alpha_thermal_collision_time_at_point_147_______________________ (t_plasma_electron_alpha_thermal_collision_profile147)_ 2.08155530372640396e-03 +Electron-alpha_thermal_collision_time_at_point_148_______________________ (t_plasma_electron_alpha_thermal_collision_profile148)_ 2.07777997199171203e-03 +Electron-alpha_thermal_collision_time_at_point_149_______________________ (t_plasma_electron_alpha_thermal_collision_profile149)_ 2.07398184485097382e-03 +Electron-alpha_thermal_collision_time_at_point_150_______________________ (t_plasma_electron_alpha_thermal_collision_profile150)_ 2.07016098226225562e-03 +Electron-alpha_thermal_collision_time_at_point_151_______________________ (t_plasma_electron_alpha_thermal_collision_profile151)_ 2.06631744470076473e-03 +Electron-alpha_thermal_collision_time_at_point_152_______________________ (t_plasma_electron_alpha_thermal_collision_profile152)_ 2.06245129316141775e-03 +Electron-alpha_thermal_collision_time_at_point_153_______________________ (t_plasma_electron_alpha_thermal_collision_profile153)_ 2.05856258916142874e-03 +Electron-alpha_thermal_collision_time_at_point_154_______________________ (t_plasma_electron_alpha_thermal_collision_profile154)_ 2.05465139474292303e-03 +Electron-alpha_thermal_collision_time_at_point_155_______________________ (t_plasma_electron_alpha_thermal_collision_profile155)_ 2.05071777247558314e-03 +Electron-alpha_thermal_collision_time_at_point_156_______________________ (t_plasma_electron_alpha_thermal_collision_profile156)_ 2.04676178545932239e-03 +Electron-alpha_thermal_collision_time_at_point_157_______________________ (t_plasma_electron_alpha_thermal_collision_profile157)_ 2.04278349732698369e-03 +Electron-alpha_thermal_collision_time_at_point_158_______________________ (t_plasma_electron_alpha_thermal_collision_profile158)_ 2.03878297224707088e-03 +Electron-alpha_thermal_collision_time_at_point_159_______________________ (t_plasma_electron_alpha_thermal_collision_profile159)_ 2.03476027492650478e-03 +Electron-alpha_thermal_collision_time_at_point_160_______________________ (t_plasma_electron_alpha_thermal_collision_profile160)_ 2.03071547061341607e-03 +Electron-alpha_thermal_collision_time_at_point_161_______________________ (t_plasma_electron_alpha_thermal_collision_profile161)_ 2.02664862509995339e-03 +Electron-alpha_thermal_collision_time_at_point_162_______________________ (t_plasma_electron_alpha_thermal_collision_profile162)_ 2.02255980472513652e-03 +Electron-alpha_thermal_collision_time_at_point_163_______________________ (t_plasma_electron_alpha_thermal_collision_profile163)_ 2.01844907637773298e-03 +Electron-alpha_thermal_collision_time_at_point_164_______________________ (t_plasma_electron_alpha_thermal_collision_profile164)_ 2.01431650749916112e-03 +Electron-alpha_thermal_collision_time_at_point_165_______________________ (t_plasma_electron_alpha_thermal_collision_profile165)_ 2.01016216608642957e-03 +Electron-alpha_thermal_collision_time_at_point_166_______________________ (t_plasma_electron_alpha_thermal_collision_profile166)_ 2.00598612069510622e-03 +Electron-alpha_thermal_collision_time_at_point_167_______________________ (t_plasma_electron_alpha_thermal_collision_profile167)_ 2.00178844044231544e-03 +Electron-alpha_thermal_collision_time_at_point_168_______________________ (t_plasma_electron_alpha_thermal_collision_profile168)_ 1.99756919500977161e-03 +Electron-alpha_thermal_collision_time_at_point_169_______________________ (t_plasma_electron_alpha_thermal_collision_profile169)_ 1.99332845464684095e-03 +Electron-alpha_thermal_collision_time_at_point_170_______________________ (t_plasma_electron_alpha_thermal_collision_profile170)_ 1.98906629017363322e-03 +Electron-alpha_thermal_collision_time_at_point_171_______________________ (t_plasma_electron_alpha_thermal_collision_profile171)_ 1.98478277298413247e-03 +Electron-alpha_thermal_collision_time_at_point_172_______________________ (t_plasma_electron_alpha_thermal_collision_profile172)_ 1.98047797504935508e-03 +Electron-alpha_thermal_collision_time_at_point_173_______________________ (t_plasma_electron_alpha_thermal_collision_profile173)_ 1.97615196892054340e-03 +Electron-alpha_thermal_collision_time_at_point_174_______________________ (t_plasma_electron_alpha_thermal_collision_profile174)_ 1.97180482773238975e-03 +Electron-alpha_thermal_collision_time_at_point_175_______________________ (t_plasma_electron_alpha_thermal_collision_profile175)_ 1.96743662520629898e-03 +Electron-alpha_thermal_collision_time_at_point_176_______________________ (t_plasma_electron_alpha_thermal_collision_profile176)_ 1.96304743565367925e-03 +Electron-alpha_thermal_collision_time_at_point_177_______________________ (t_plasma_electron_alpha_thermal_collision_profile177)_ 1.95863733397927528e-03 +Electron-alpha_thermal_collision_time_at_point_178_______________________ (t_plasma_electron_alpha_thermal_collision_profile178)_ 1.95420639568452377e-03 +Electron-alpha_thermal_collision_time_at_point_179_______________________ (t_plasma_electron_alpha_thermal_collision_profile179)_ 1.94975469687095736e-03 +Electron-alpha_thermal_collision_time_at_point_180_______________________ (t_plasma_electron_alpha_thermal_collision_profile180)_ 1.94528231424363697e-03 +Electron-alpha_thermal_collision_time_at_point_181_______________________ (t_plasma_electron_alpha_thermal_collision_profile181)_ 1.94078932511461888e-03 +Electron-alpha_thermal_collision_time_at_point_182_______________________ (t_plasma_electron_alpha_thermal_collision_profile182)_ 1.93627580740646232e-03 +Electron-alpha_thermal_collision_time_at_point_183_______________________ (t_plasma_electron_alpha_thermal_collision_profile183)_ 1.93174183965576490e-03 +Electron-alpha_thermal_collision_time_at_point_184_______________________ (t_plasma_electron_alpha_thermal_collision_profile184)_ 1.92718750101675794e-03 +Electron-alpha_thermal_collision_time_at_point_185_______________________ (t_plasma_electron_alpha_thermal_collision_profile185)_ 1.92261287126490091e-03 +Electron-alpha_thermal_collision_time_at_point_186_______________________ (t_plasma_electron_alpha_thermal_collision_profile186)_ 1.91801803080055011e-03 +Electron-alpha_thermal_collision_time_at_point_187_______________________ (t_plasma_electron_alpha_thermal_collision_profile187)_ 1.91340306065264452e-03 +Electron-alpha_thermal_collision_time_at_point_188_______________________ (t_plasma_electron_alpha_thermal_collision_profile188)_ 1.90876804248244067e-03 +Electron-alpha_thermal_collision_time_at_point_189_______________________ (t_plasma_electron_alpha_thermal_collision_profile189)_ 1.90411305858727634e-03 +Electron-alpha_thermal_collision_time_at_point_190_______________________ (t_plasma_electron_alpha_thermal_collision_profile190)_ 1.89943819190438110e-03 +Electron-alpha_thermal_collision_time_at_point_191_______________________ (t_plasma_electron_alpha_thermal_collision_profile191)_ 1.89474352601472825e-03 +Electron-alpha_thermal_collision_time_at_point_192_______________________ (t_plasma_electron_alpha_thermal_collision_profile192)_ 1.89002914514691694e-03 +Electron-alpha_thermal_collision_time_at_point_193_______________________ (t_plasma_electron_alpha_thermal_collision_profile193)_ 1.88529513418110887e-03 +Electron-alpha_thermal_collision_time_at_point_194_______________________ (t_plasma_electron_alpha_thermal_collision_profile194)_ 1.88054157865298979e-03 +Electron-alpha_thermal_collision_time_at_point_195_______________________ (t_plasma_electron_alpha_thermal_collision_profile195)_ 1.87576856475778577e-03 +Electron-alpha_thermal_collision_time_at_point_196_______________________ (t_plasma_electron_alpha_thermal_collision_profile196)_ 1.87097617935432100e-03 +Electron-alpha_thermal_collision_time_at_point_197_______________________ (t_plasma_electron_alpha_thermal_collision_profile197)_ 1.86616450996910559e-03 +Electron-alpha_thermal_collision_time_at_point_198_______________________ (t_plasma_electron_alpha_thermal_collision_profile198)_ 1.86133364480047837e-03 +Electron-alpha_thermal_collision_time_at_point_199_______________________ (t_plasma_electron_alpha_thermal_collision_profile199)_ 1.85648367272278842e-03 +Electron-alpha_thermal_collision_time_at_point_200_______________________ (t_plasma_electron_alpha_thermal_collision_profile200)_ 1.85161468329062516e-03 +Electron-alpha_thermal_collision_time_at_point_201_______________________ (t_plasma_electron_alpha_thermal_collision_profile201)_ 1.84672676674308019e-03 +Electron-alpha_thermal_collision_time_at_point_202_______________________ (t_plasma_electron_alpha_thermal_collision_profile202)_ 1.84182001400807170e-03 +Electron-alpha_thermal_collision_time_at_point_203_______________________ (t_plasma_electron_alpha_thermal_collision_profile203)_ 1.83689451670669777e-03 +Electron-alpha_thermal_collision_time_at_point_204_______________________ (t_plasma_electron_alpha_thermal_collision_profile204)_ 1.83195036715764733e-03 +Electron-alpha_thermal_collision_time_at_point_205_______________________ (t_plasma_electron_alpha_thermal_collision_profile205)_ 1.82698765838165147e-03 +Electron-alpha_thermal_collision_time_at_point_206_______________________ (t_plasma_electron_alpha_thermal_collision_profile206)_ 1.82200648410598266e-03 +Electron-alpha_thermal_collision_time_at_point_207_______________________ (t_plasma_electron_alpha_thermal_collision_profile207)_ 1.81700693876900364e-03 +Electron-alpha_thermal_collision_time_at_point_208_______________________ (t_plasma_electron_alpha_thermal_collision_profile208)_ 1.81198911752476137e-03 +Electron-alpha_thermal_collision_time_at_point_209_______________________ (t_plasma_electron_alpha_thermal_collision_profile209)_ 1.80695311624762896e-03 +Electron-alpha_thermal_collision_time_at_point_210_______________________ (t_plasma_electron_alpha_thermal_collision_profile210)_ 1.80189903153700351e-03 +Electron-alpha_thermal_collision_time_at_point_211_______________________ (t_plasma_electron_alpha_thermal_collision_profile211)_ 1.79682696072204495e-03 +Electron-alpha_thermal_collision_time_at_point_212_______________________ (t_plasma_electron_alpha_thermal_collision_profile212)_ 1.79173700186646950e-03 +Electron-alpha_thermal_collision_time_at_point_213_______________________ (t_plasma_electron_alpha_thermal_collision_profile213)_ 1.78662925377339322e-03 +Electron-alpha_thermal_collision_time_at_point_214_______________________ (t_plasma_electron_alpha_thermal_collision_profile214)_ 1.78150381599022942e-03 +Electron-alpha_thermal_collision_time_at_point_215_______________________ (t_plasma_electron_alpha_thermal_collision_profile215)_ 1.77636078881363490e-03 +Electron-alpha_thermal_collision_time_at_point_216_______________________ (t_plasma_electron_alpha_thermal_collision_profile216)_ 1.77120027329450997e-03 +Electron-alpha_thermal_collision_time_at_point_217_______________________ (t_plasma_electron_alpha_thermal_collision_profile217)_ 1.76602237124305313e-03 +Electron-alpha_thermal_collision_time_at_point_218_______________________ (t_plasma_electron_alpha_thermal_collision_profile218)_ 1.76082718523386922e-03 +Electron-alpha_thermal_collision_time_at_point_219_______________________ (t_plasma_electron_alpha_thermal_collision_profile219)_ 1.75561481861112763e-03 +Electron-alpha_thermal_collision_time_at_point_220_______________________ (t_plasma_electron_alpha_thermal_collision_profile220)_ 1.75038537549378551e-03 +Electron-alpha_thermal_collision_time_at_point_221_______________________ (t_plasma_electron_alpha_thermal_collision_profile221)_ 1.74513896078086245e-03 +Electron-alpha_thermal_collision_time_at_point_222_______________________ (t_plasma_electron_alpha_thermal_collision_profile222)_ 1.73987568015676478e-03 +Electron-alpha_thermal_collision_time_at_point_223_______________________ (t_plasma_electron_alpha_thermal_collision_profile223)_ 1.73459564009667989e-03 +Electron-alpha_thermal_collision_time_at_point_224_______________________ (t_plasma_electron_alpha_thermal_collision_profile224)_ 1.72929894787201980e-03 +Electron-alpha_thermal_collision_time_at_point_225_______________________ (t_plasma_electron_alpha_thermal_collision_profile225)_ 1.72398571155592912e-03 +Electron-alpha_thermal_collision_time_at_point_226_______________________ (t_plasma_electron_alpha_thermal_collision_profile226)_ 1.71865604002884747e-03 +Electron-alpha_thermal_collision_time_at_point_227_______________________ (t_plasma_electron_alpha_thermal_collision_profile227)_ 1.71331004298413731e-03 +Electron-alpha_thermal_collision_time_at_point_228_______________________ (t_plasma_electron_alpha_thermal_collision_profile228)_ 1.70794783093376886e-03 +Electron-alpha_thermal_collision_time_at_point_229_______________________ (t_plasma_electron_alpha_thermal_collision_profile229)_ 1.70256951521407401e-03 +Electron-alpha_thermal_collision_time_at_point_230_______________________ (t_plasma_electron_alpha_thermal_collision_profile230)_ 1.69717520799155170e-03 +Electron-alpha_thermal_collision_time_at_point_231_______________________ (t_plasma_electron_alpha_thermal_collision_profile231)_ 1.69176502226874676e-03 +Electron-alpha_thermal_collision_time_at_point_232_______________________ (t_plasma_electron_alpha_thermal_collision_profile232)_ 1.68633907189019282e-03 +Electron-alpha_thermal_collision_time_at_point_233_______________________ (t_plasma_electron_alpha_thermal_collision_profile233)_ 1.68089747154841402e-03 +Electron-alpha_thermal_collision_time_at_point_234_______________________ (t_plasma_electron_alpha_thermal_collision_profile234)_ 1.67544033678999676e-03 +Electron-alpha_thermal_collision_time_at_point_235_______________________ (t_plasma_electron_alpha_thermal_collision_profile235)_ 1.66996778402173367e-03 +Electron-alpha_thermal_collision_time_at_point_236_______________________ (t_plasma_electron_alpha_thermal_collision_profile236)_ 1.66447993051682566e-03 +Electron-alpha_thermal_collision_time_at_point_237_______________________ (t_plasma_electron_alpha_thermal_collision_profile237)_ 1.65897689442115861e-03 +Electron-alpha_thermal_collision_time_at_point_238_______________________ (t_plasma_electron_alpha_thermal_collision_profile238)_ 1.65345879475965545e-03 +Electron-alpha_thermal_collision_time_at_point_239_______________________ (t_plasma_electron_alpha_thermal_collision_profile239)_ 1.64792575144268516e-03 +Electron-alpha_thermal_collision_time_at_point_240_______________________ (t_plasma_electron_alpha_thermal_collision_profile240)_ 1.64237788527255685e-03 +Electron-alpha_thermal_collision_time_at_point_241_______________________ (t_plasma_electron_alpha_thermal_collision_profile241)_ 1.63681531795008251e-03 +Electron-alpha_thermal_collision_time_at_point_242_______________________ (t_plasma_electron_alpha_thermal_collision_profile242)_ 1.63123817208120792e-03 +Electron-alpha_thermal_collision_time_at_point_243_______________________ (t_plasma_electron_alpha_thermal_collision_profile243)_ 1.62564657118373021e-03 +Electron-alpha_thermal_collision_time_at_point_244_______________________ (t_plasma_electron_alpha_thermal_collision_profile244)_ 1.62004063969408080e-03 +Electron-alpha_thermal_collision_time_at_point_245_______________________ (t_plasma_electron_alpha_thermal_collision_profile245)_ 1.61442050297418670e-03 +Electron-alpha_thermal_collision_time_at_point_246_______________________ (t_plasma_electron_alpha_thermal_collision_profile246)_ 1.60878628731842498e-03 +Electron-alpha_thermal_collision_time_at_point_247_______________________ (t_plasma_electron_alpha_thermal_collision_profile247)_ 1.60313811996063045e-03 +Electron-alpha_thermal_collision_time_at_point_248_______________________ (t_plasma_electron_alpha_thermal_collision_profile248)_ 1.59747612908120798e-03 +Electron-alpha_thermal_collision_time_at_point_249_______________________ (t_plasma_electron_alpha_thermal_collision_profile249)_ 1.59180044381431038e-03 +Electron-alpha_thermal_collision_time_at_point_250_______________________ (t_plasma_electron_alpha_thermal_collision_profile250)_ 1.58611119425511511e-03 +Electron-alpha_thermal_collision_time_at_point_251_______________________ (t_plasma_electron_alpha_thermal_collision_profile251)_ 1.58040851146716479e-03 +Electron-alpha_thermal_collision_time_at_point_252_______________________ (t_plasma_electron_alpha_thermal_collision_profile252)_ 1.57469252748981391e-03 +Electron-alpha_thermal_collision_time_at_point_253_______________________ (t_plasma_electron_alpha_thermal_collision_profile253)_ 1.56896337534574693e-03 +Electron-alpha_thermal_collision_time_at_point_254_______________________ (t_plasma_electron_alpha_thermal_collision_profile254)_ 1.56322118904859476e-03 +Electron-alpha_thermal_collision_time_at_point_255_______________________ (t_plasma_electron_alpha_thermal_collision_profile255)_ 1.55746610361063437e-03 +Electron-alpha_thermal_collision_time_at_point_256_______________________ (t_plasma_electron_alpha_thermal_collision_profile256)_ 1.55169825505058266e-03 +Electron-alpha_thermal_collision_time_at_point_257_______________________ (t_plasma_electron_alpha_thermal_collision_profile257)_ 1.54591778040148145e-03 +Electron-alpha_thermal_collision_time_at_point_258_______________________ (t_plasma_electron_alpha_thermal_collision_profile258)_ 1.54012481771867893e-03 +Electron-alpha_thermal_collision_time_at_point_259_______________________ (t_plasma_electron_alpha_thermal_collision_profile259)_ 1.53431950608789980e-03 +Electron-alpha_thermal_collision_time_at_point_260_______________________ (t_plasma_electron_alpha_thermal_collision_profile260)_ 1.52850198563342170e-03 +Electron-alpha_thermal_collision_time_at_point_261_______________________ (t_plasma_electron_alpha_thermal_collision_profile261)_ 1.52267239752634201e-03 +Electron-alpha_thermal_collision_time_at_point_262_______________________ (t_plasma_electron_alpha_thermal_collision_profile262)_ 1.51683088399294920e-03 +Electron-alpha_thermal_collision_time_at_point_263_______________________ (t_plasma_electron_alpha_thermal_collision_profile263)_ 1.51097758832319609e-03 +Electron-alpha_thermal_collision_time_at_point_264_______________________ (t_plasma_electron_alpha_thermal_collision_profile264)_ 1.50511265487927198e-03 +Electron-alpha_thermal_collision_time_at_point_265_______________________ (t_plasma_electron_alpha_thermal_collision_profile265)_ 1.49923622910428603e-03 +Electron-alpha_thermal_collision_time_at_point_266_______________________ (t_plasma_electron_alpha_thermal_collision_profile266)_ 1.49334845753105474e-03 +Electron-alpha_thermal_collision_time_at_point_267_______________________ (t_plasma_electron_alpha_thermal_collision_profile267)_ 1.48744948779099516e-03 +Electron-alpha_thermal_collision_time_at_point_268_______________________ (t_plasma_electron_alpha_thermal_collision_profile268)_ 1.48153946862314076e-03 +Electron-alpha_thermal_collision_time_at_point_269_______________________ (t_plasma_electron_alpha_thermal_collision_profile269)_ 1.47561854988324586e-03 +Electron-alpha_thermal_collision_time_at_point_270_______________________ (t_plasma_electron_alpha_thermal_collision_profile270)_ 1.46968688255303954e-03 +Electron-alpha_thermal_collision_time_at_point_271_______________________ (t_plasma_electron_alpha_thermal_collision_profile271)_ 1.46374461874955821e-03 +Electron-alpha_thermal_collision_time_at_point_272_______________________ (t_plasma_electron_alpha_thermal_collision_profile272)_ 1.45779191173462915e-03 +Electron-alpha_thermal_collision_time_at_point_273_______________________ (t_plasma_electron_alpha_thermal_collision_profile273)_ 1.45182891592445201e-03 +Electron-alpha_thermal_collision_time_at_point_274_______________________ (t_plasma_electron_alpha_thermal_collision_profile274)_ 1.44585578689932263e-03 +Electron-alpha_thermal_collision_time_at_point_275_______________________ (t_plasma_electron_alpha_thermal_collision_profile275)_ 1.43987268141345889e-03 +Electron-alpha_thermal_collision_time_at_point_276_______________________ (t_plasma_electron_alpha_thermal_collision_profile276)_ 1.43387975740497976e-03 +Electron-alpha_thermal_collision_time_at_point_277_______________________ (t_plasma_electron_alpha_thermal_collision_profile277)_ 1.42787717400599595e-03 +Electron-alpha_thermal_collision_time_at_point_278_______________________ (t_plasma_electron_alpha_thermal_collision_profile278)_ 1.42186509155284410e-03 +Electron-alpha_thermal_collision_time_at_point_279_______________________ (t_plasma_electron_alpha_thermal_collision_profile279)_ 1.41584367159644487e-03 +Electron-alpha_thermal_collision_time_at_point_280_______________________ (t_plasma_electron_alpha_thermal_collision_profile280)_ 1.40981307691281270e-03 +Electron-alpha_thermal_collision_time_at_point_281_______________________ (t_plasma_electron_alpha_thermal_collision_profile281)_ 1.40377347151369471e-03 +Electron-alpha_thermal_collision_time_at_point_282_______________________ (t_plasma_electron_alpha_thermal_collision_profile282)_ 1.39772502065735652e-03 +Electron-alpha_thermal_collision_time_at_point_283_______________________ (t_plasma_electron_alpha_thermal_collision_profile283)_ 1.39166789085951644e-03 +Electron-alpha_thermal_collision_time_at_point_284_______________________ (t_plasma_electron_alpha_thermal_collision_profile284)_ 1.38560224990442711e-03 +Electron-alpha_thermal_collision_time_at_point_285_______________________ (t_plasma_electron_alpha_thermal_collision_profile285)_ 1.37952826685610675e-03 +Electron-alpha_thermal_collision_time_at_point_286_______________________ (t_plasma_electron_alpha_thermal_collision_profile286)_ 1.37344611206972867e-03 +Electron-alpha_thermal_collision_time_at_point_287_______________________ (t_plasma_electron_alpha_thermal_collision_profile287)_ 1.36735595720316851e-03 +Electron-alpha_thermal_collision_time_at_point_288_______________________ (t_plasma_electron_alpha_thermal_collision_profile288)_ 1.36125797522871077e-03 +Electron-alpha_thermal_collision_time_at_point_289_______________________ (t_plasma_electron_alpha_thermal_collision_profile289)_ 1.35515234044492712e-03 +Electron-alpha_thermal_collision_time_at_point_290_______________________ (t_plasma_electron_alpha_thermal_collision_profile290)_ 1.34903922848871125e-03 +Electron-alpha_thermal_collision_time_at_point_291_______________________ (t_plasma_electron_alpha_thermal_collision_profile291)_ 1.34291881634750437e-03 +Electron-alpha_thermal_collision_time_at_point_292_______________________ (t_plasma_electron_alpha_thermal_collision_profile292)_ 1.33679128237167307e-03 +Electron-alpha_thermal_collision_time_at_point_293_______________________ (t_plasma_electron_alpha_thermal_collision_profile293)_ 1.33065680628709150e-03 +Electron-alpha_thermal_collision_time_at_point_294_______________________ (t_plasma_electron_alpha_thermal_collision_profile294)_ 1.32451556920789052e-03 +Electron-alpha_thermal_collision_time_at_point_295_______________________ (t_plasma_electron_alpha_thermal_collision_profile295)_ 1.31836775364940068e-03 +Electron-alpha_thermal_collision_time_at_point_296_______________________ (t_plasma_electron_alpha_thermal_collision_profile296)_ 1.31221354354129011e-03 +Electron-alpha_thermal_collision_time_at_point_297_______________________ (t_plasma_electron_alpha_thermal_collision_profile297)_ 1.30605312424089790e-03 +Electron-alpha_thermal_collision_time_at_point_298_______________________ (t_plasma_electron_alpha_thermal_collision_profile298)_ 1.29988668254676443e-03 +Electron-alpha_thermal_collision_time_at_point_299_______________________ (t_plasma_electron_alpha_thermal_collision_profile299)_ 1.29371440671237413e-03 +Electron-alpha_thermal_collision_time_at_point_300_______________________ (t_plasma_electron_alpha_thermal_collision_profile300)_ 1.28753648646010607e-03 +Electron-alpha_thermal_collision_time_at_point_301_______________________ (t_plasma_electron_alpha_thermal_collision_profile301)_ 1.28135311299540670e-03 +Electron-alpha_thermal_collision_time_at_point_302_______________________ (t_plasma_electron_alpha_thermal_collision_profile302)_ 1.27516447902117154e-03 +Electron-alpha_thermal_collision_time_at_point_303_______________________ (t_plasma_electron_alpha_thermal_collision_profile303)_ 1.26897077875236870e-03 +Electron-alpha_thermal_collision_time_at_point_304_______________________ (t_plasma_electron_alpha_thermal_collision_profile304)_ 1.26277220793088595e-03 +Electron-alpha_thermal_collision_time_at_point_305_______________________ (t_plasma_electron_alpha_thermal_collision_profile305)_ 1.25656896384061930e-03 +Electron-alpha_thermal_collision_time_at_point_306_______________________ (t_plasma_electron_alpha_thermal_collision_profile306)_ 1.25036124532280695e-03 +Electron-alpha_thermal_collision_time_at_point_307_______________________ (t_plasma_electron_alpha_thermal_collision_profile307)_ 1.24414925279161203e-03 +Electron-alpha_thermal_collision_time_at_point_308_______________________ (t_plasma_electron_alpha_thermal_collision_profile308)_ 1.23793318824996410e-03 +Electron-alpha_thermal_collision_time_at_point_309_______________________ (t_plasma_electron_alpha_thermal_collision_profile309)_ 1.23171325530566826e-03 +Electron-alpha_thermal_collision_time_at_point_310_______________________ (t_plasma_electron_alpha_thermal_collision_profile310)_ 1.22548965918778049e-03 +Electron-alpha_thermal_collision_time_at_point_311_______________________ (t_plasma_electron_alpha_thermal_collision_profile311)_ 1.21926260676326727e-03 +Electron-alpha_thermal_collision_time_at_point_312_______________________ (t_plasma_electron_alpha_thermal_collision_profile312)_ 1.21303230655394386e-03 +Electron-alpha_thermal_collision_time_at_point_313_______________________ (t_plasma_electron_alpha_thermal_collision_profile313)_ 1.20679896875371812e-03 +Electron-alpha_thermal_collision_time_at_point_314_______________________ (t_plasma_electron_alpha_thermal_collision_profile314)_ 1.20056280524612593e-03 +Electron-alpha_thermal_collision_time_at_point_315_______________________ (t_plasma_electron_alpha_thermal_collision_profile315)_ 1.19432402962218456e-03 +Electron-alpha_thermal_collision_time_at_point_316_______________________ (t_plasma_electron_alpha_thermal_collision_profile316)_ 1.18808285719856866e-03 +Electron-alpha_thermal_collision_time_at_point_317_______________________ (t_plasma_electron_alpha_thermal_collision_profile317)_ 1.18183950503610046e-03 +Electron-alpha_thermal_collision_time_at_point_318_______________________ (t_plasma_electron_alpha_thermal_collision_profile318)_ 1.17559419195860317e-03 +Electron-alpha_thermal_collision_time_at_point_319_______________________ (t_plasma_electron_alpha_thermal_collision_profile319)_ 1.16934713857208073e-03 +Electron-alpha_thermal_collision_time_at_point_320_______________________ (t_plasma_electron_alpha_thermal_collision_profile320)_ 1.16309856728427012e-03 +Electron-alpha_thermal_collision_time_at_point_321_______________________ (t_plasma_electron_alpha_thermal_collision_profile321)_ 1.15684870232456096e-03 +Electron-alpha_thermal_collision_time_at_point_322_______________________ (t_plasma_electron_alpha_thermal_collision_profile322)_ 1.15059776976429370e-03 +Electron-alpha_thermal_collision_time_at_point_323_______________________ (t_plasma_electron_alpha_thermal_collision_profile323)_ 1.14434599753745949e-03 +Electron-alpha_thermal_collision_time_at_point_324_______________________ (t_plasma_electron_alpha_thermal_collision_profile324)_ 1.13809361546179239e-03 +Electron-alpha_thermal_collision_time_at_point_325_______________________ (t_plasma_electron_alpha_thermal_collision_profile325)_ 1.13184085526029710e-03 +Electron-alpha_thermal_collision_time_at_point_326_______________________ (t_plasma_electron_alpha_thermal_collision_profile326)_ 1.12558795058319196e-03 +Electron-alpha_thermal_collision_time_at_point_327_______________________ (t_plasma_electron_alpha_thermal_collision_profile327)_ 1.11933513703031456e-03 +Electron-alpha_thermal_collision_time_at_point_328_______________________ (t_plasma_electron_alpha_thermal_collision_profile328)_ 1.11308265217397264e-03 +Electron-alpha_thermal_collision_time_at_point_329_______________________ (t_plasma_electron_alpha_thermal_collision_profile329)_ 1.10683073558228286e-03 +Electron-alpha_thermal_collision_time_at_point_330_______________________ (t_plasma_electron_alpha_thermal_collision_profile330)_ 1.10057962884299240e-03 +Electron-alpha_thermal_collision_time_at_point_331_______________________ (t_plasma_electron_alpha_thermal_collision_profile331)_ 1.09432957558782003e-03 +Electron-alpha_thermal_collision_time_at_point_332_______________________ (t_plasma_electron_alpha_thermal_collision_profile332)_ 1.08808082151731051e-03 +Electron-alpha_thermal_collision_time_at_point_333_______________________ (t_plasma_electron_alpha_thermal_collision_profile333)_ 1.08183361442624245e-03 +Electron-alpha_thermal_collision_time_at_point_334_______________________ (t_plasma_electron_alpha_thermal_collision_profile334)_ 1.07558820422959628e-03 +Electron-alpha_thermal_collision_time_at_point_335_______________________ (t_plasma_electron_alpha_thermal_collision_profile335)_ 1.06934484298910307e-03 +Electron-alpha_thermal_collision_time_at_point_336_______________________ (t_plasma_electron_alpha_thermal_collision_profile336)_ 1.06310378494040340e-03 +Electron-alpha_thermal_collision_time_at_point_337_______________________ (t_plasma_electron_alpha_thermal_collision_profile337)_ 1.05686528652082501e-03 +Electron-alpha_thermal_collision_time_at_point_338_______________________ (t_plasma_electron_alpha_thermal_collision_profile338)_ 1.05062960639781518e-03 +Electron-alpha_thermal_collision_time_at_point_339_______________________ (t_plasma_electron_alpha_thermal_collision_profile339)_ 1.04439700549804003e-03 +Electron-alpha_thermal_collision_time_at_point_340_______________________ (t_plasma_electron_alpha_thermal_collision_profile340)_ 1.03816774703718666e-03 +Electron-alpha_thermal_collision_time_at_point_341_______________________ (t_plasma_electron_alpha_thermal_collision_profile341)_ 1.03194209655048841e-03 +Electron-alpha_thermal_collision_time_at_point_342_______________________ (t_plasma_electron_alpha_thermal_collision_profile342)_ 1.02572032192399585e-03 +Electron-alpha_thermal_collision_time_at_point_343_______________________ (t_plasma_electron_alpha_thermal_collision_profile343)_ 1.01950269342663755e-03 +Electron-alpha_thermal_collision_time_at_point_344_______________________ (t_plasma_electron_alpha_thermal_collision_profile344)_ 1.01328948374308672e-03 +Electron-alpha_thermal_collision_time_at_point_345_______________________ (t_plasma_electron_alpha_thermal_collision_profile345)_ 1.00708096800746719e-03 +Electron-alpha_thermal_collision_time_at_point_346_______________________ (t_plasma_electron_alpha_thermal_collision_profile346)_ 1.00087742383794635e-03 +Electron-alpha_thermal_collision_time_at_point_347_______________________ (t_plasma_electron_alpha_thermal_collision_profile347)_ 9.94679131372228900e-04 +Electron-alpha_thermal_collision_time_at_point_348_______________________ (t_plasma_electron_alpha_thermal_collision_profile348)_ 9.88486373304003820e-04 +Electron-alpha_thermal_collision_time_at_point_349_______________________ (t_plasma_electron_alpha_thermal_collision_profile349)_ 9.82299434920378420e-04 +Electron-alpha_thermal_collision_time_at_point_350_______________________ (t_plasma_electron_alpha_thermal_collision_profile350)_ 9.76118604140343757e-04 +Electron-alpha_thermal_collision_time_at_point_351_______________________ (t_plasma_electron_alpha_thermal_collision_profile351)_ 9.69944171554302918e-04 +Electron-alpha_thermal_collision_time_at_point_352_______________________ (t_plasma_electron_alpha_thermal_collision_profile352)_ 9.63776430464727512e-04 +Electron-alpha_thermal_collision_time_at_point_353_______________________ (t_plasma_electron_alpha_thermal_collision_profile353)_ 9.57615676927965165e-04 +Electron-alpha_thermal_collision_time_at_point_354_______________________ (t_plasma_electron_alpha_thermal_collision_profile354)_ 9.51462209797275939e-04 +Electron-alpha_thermal_collision_time_at_point_355_______________________ (t_plasma_electron_alpha_thermal_collision_profile355)_ 9.45316330767122866e-04 +Electron-alpha_thermal_collision_time_at_point_356_______________________ (t_plasma_electron_alpha_thermal_collision_profile356)_ 9.39178344418794956e-04 +Electron-alpha_thermal_collision_time_at_point_357_______________________ (t_plasma_electron_alpha_thermal_collision_profile357)_ 9.33048558267406711e-04 +Electron-alpha_thermal_collision_time_at_point_358_______________________ (t_plasma_electron_alpha_thermal_collision_profile358)_ 9.26927282810345479e-04 +Electron-alpha_thermal_collision_time_at_point_359_______________________ (t_plasma_electron_alpha_thermal_collision_profile359)_ 9.20814831577222281e-04 +Electron-alpha_thermal_collision_time_at_point_360_______________________ (t_plasma_electron_alpha_thermal_collision_profile360)_ 9.14711521181411414e-04 +Electron-alpha_thermal_collision_time_at_point_361_______________________ (t_plasma_electron_alpha_thermal_collision_profile361)_ 9.08617671373226129e-04 +Electron-alpha_thermal_collision_time_at_point_362_______________________ (t_plasma_electron_alpha_thermal_collision_profile362)_ 9.02533605094839753e-04 +Electron-alpha_thermal_collision_time_at_point_363_______________________ (t_plasma_electron_alpha_thermal_collision_profile363)_ 8.96459648537001395e-04 +Electron-alpha_thermal_collision_time_at_point_364_______________________ (t_plasma_electron_alpha_thermal_collision_profile364)_ 8.90396131197659512e-04 +Electron-alpha_thermal_collision_time_at_point_365_______________________ (t_plasma_electron_alpha_thermal_collision_profile365)_ 8.84343385942562197e-04 +Electron-alpha_thermal_collision_time_at_point_366_______________________ (t_plasma_electron_alpha_thermal_collision_profile366)_ 8.78301749067951065e-04 +Electron-alpha_thermal_collision_time_at_point_367_______________________ (t_plasma_electron_alpha_thermal_collision_profile367)_ 8.72271560365429606e-04 +Electron-alpha_thermal_collision_time_at_point_368_______________________ (t_plasma_electron_alpha_thermal_collision_profile368)_ 8.66253163189134937e-04 +Electron-alpha_thermal_collision_time_at_point_369_______________________ (t_plasma_electron_alpha_thermal_collision_profile369)_ 8.60246904525311263e-04 +Electron-alpha_thermal_collision_time_at_point_370_______________________ (t_plasma_electron_alpha_thermal_collision_profile370)_ 8.54253135064414536e-04 +Electron-alpha_thermal_collision_time_at_point_371_______________________ (t_plasma_electron_alpha_thermal_collision_profile371)_ 8.48272209275872631e-04 +Electron-alpha_thermal_collision_time_at_point_372_______________________ (t_plasma_electron_alpha_thermal_collision_profile372)_ 8.42304485485648202e-04 +Electron-alpha_thermal_collision_time_at_point_373_______________________ (t_plasma_electron_alpha_thermal_collision_profile373)_ 8.36350325956726698e-04 +Electron-alpha_thermal_collision_time_at_point_374_______________________ (t_plasma_electron_alpha_thermal_collision_profile374)_ 8.30410096972715082e-04 +Electron-alpha_thermal_collision_time_at_point_375_______________________ (t_plasma_electron_alpha_thermal_collision_profile375)_ 8.24484168924682730e-04 +Electron-alpha_thermal_collision_time_at_point_376_______________________ (t_plasma_electron_alpha_thermal_collision_profile376)_ 8.18572916401441759e-04 +Electron-alpha_thermal_collision_time_at_point_377_______________________ (t_plasma_electron_alpha_thermal_collision_profile377)_ 8.12676718283441646e-04 +Electron-alpha_thermal_collision_time_at_point_378_______________________ (t_plasma_electron_alpha_thermal_collision_profile378)_ 8.06795957840476005e-04 +Electron-alpha_thermal_collision_time_at_point_379_______________________ (t_plasma_electron_alpha_thermal_collision_profile379)_ 8.00931022833409919e-04 +Electron-alpha_thermal_collision_time_at_point_380_______________________ (t_plasma_electron_alpha_thermal_collision_profile380)_ 7.95082305620159512e-04 +Electron-alpha_thermal_collision_time_at_point_381_______________________ (t_plasma_electron_alpha_thermal_collision_profile381)_ 7.89250203266146991e-04 +Electron-alpha_thermal_collision_time_at_point_382_______________________ (t_plasma_electron_alpha_thermal_collision_profile382)_ 7.83435117659498107e-04 +Electron-alpha_thermal_collision_time_at_point_383_______________________ (t_plasma_electron_alpha_thermal_collision_profile383)_ 7.77637455631249495e-04 +Electron-alpha_thermal_collision_time_at_point_384_______________________ (t_plasma_electron_alpha_thermal_collision_profile384)_ 7.71857629080846476e-04 +Electron-alpha_thermal_collision_time_at_point_385_______________________ (t_plasma_electron_alpha_thermal_collision_profile385)_ 7.66096055107257589e-04 +Electron-alpha_thermal_collision_time_at_point_386_______________________ (t_plasma_electron_alpha_thermal_collision_profile386)_ 7.60353156146016543e-04 +Electron-alpha_thermal_collision_time_at_point_387_______________________ (t_plasma_electron_alpha_thermal_collision_profile387)_ 7.54629360112557004e-04 +Electron-alpha_thermal_collision_time_at_point_388_______________________ (t_plasma_electron_alpha_thermal_collision_profile388)_ 7.48925100552219006e-04 +Electron-alpha_thermal_collision_time_at_point_389_______________________ (t_plasma_electron_alpha_thermal_collision_profile389)_ 7.43240816797324485e-04 +Electron-alpha_thermal_collision_time_at_point_390_______________________ (t_plasma_electron_alpha_thermal_collision_profile390)_ 7.37576954131757855e-04 +Electron-alpha_thermal_collision_time_at_point_391_______________________ (t_plasma_electron_alpha_thermal_collision_profile391)_ 7.31933963963524604e-04 +Electron-alpha_thermal_collision_time_at_point_392_______________________ (t_plasma_electron_alpha_thermal_collision_profile392)_ 7.26312304005776615e-04 +Electron-alpha_thermal_collision_time_at_point_393_______________________ (t_plasma_electron_alpha_thermal_collision_profile393)_ 7.20712438466846470e-04 +Electron-alpha_thermal_collision_time_at_point_394_______________________ (t_plasma_electron_alpha_thermal_collision_profile394)_ 7.15134838249868688e-04 +Electron-alpha_thermal_collision_time_at_point_395_______________________ (t_plasma_electron_alpha_thermal_collision_profile395)_ 7.09579981162601365e-04 +Electron-alpha_thermal_collision_time_at_point_396_______________________ (t_plasma_electron_alpha_thermal_collision_profile396)_ 7.04048352138125604e-04 +Electron-alpha_thermal_collision_time_at_point_397_______________________ (t_plasma_electron_alpha_thermal_collision_profile397)_ 6.98540443467129545e-04 +Electron-alpha_thermal_collision_time_at_point_398_______________________ (t_plasma_electron_alpha_thermal_collision_profile398)_ 6.93056755042563573e-04 +Electron-alpha_thermal_collision_time_at_point_399_______________________ (t_plasma_electron_alpha_thermal_collision_profile399)_ 6.87597794617499048e-04 +Electron-alpha_thermal_collision_time_at_point_400_______________________ (t_plasma_electron_alpha_thermal_collision_profile400)_ 6.82164078077088926e-04 +Electron-alpha_thermal_collision_time_at_point_401_______________________ (t_plasma_electron_alpha_thermal_collision_profile401)_ 6.76756129725617763e-04 +Electron-alpha_thermal_collision_time_at_point_402_______________________ (t_plasma_electron_alpha_thermal_collision_profile402)_ 6.71374482589688236e-04 +Electron-alpha_thermal_collision_time_at_point_403_______________________ (t_plasma_electron_alpha_thermal_collision_profile403)_ 6.66019678738694488e-04 +Electron-alpha_thermal_collision_time_at_point_404_______________________ (t_plasma_electron_alpha_thermal_collision_profile404)_ 6.60692269623821258e-04 +Electron-alpha_thermal_collision_time_at_point_405_______________________ (t_plasma_electron_alpha_thermal_collision_profile405)_ 6.55392816436916963e-04 +Electron-alpha_thermal_collision_time_at_point_406_______________________ (t_plasma_electron_alpha_thermal_collision_profile406)_ 6.50121890490701609e-04 +Electron-alpha_thermal_collision_time_at_point_407_______________________ (t_plasma_electron_alpha_thermal_collision_profile407)_ 6.44880073621904707e-04 +Electron-alpha_thermal_collision_time_at_point_408_______________________ (t_plasma_electron_alpha_thermal_collision_profile408)_ 6.39667958619058929e-04 +Electron-alpha_thermal_collision_time_at_point_409_______________________ (t_plasma_electron_alpha_thermal_collision_profile409)_ 6.34486149676849335e-04 +Electron-alpha_thermal_collision_time_at_point_410_______________________ (t_plasma_electron_alpha_thermal_collision_profile410)_ 6.29335262879065918e-04 +Electron-alpha_thermal_collision_time_at_point_411_______________________ (t_plasma_electron_alpha_thermal_collision_profile411)_ 6.24215926712425235e-04 +Electron-alpha_thermal_collision_time_at_point_412_______________________ (t_plasma_electron_alpha_thermal_collision_profile412)_ 6.19128782613711181e-04 +Electron-alpha_thermal_collision_time_at_point_413_______________________ (t_plasma_electron_alpha_thermal_collision_profile413)_ 6.14074485552953682e-04 +Electron-alpha_thermal_collision_time_at_point_414_______________________ (t_plasma_electron_alpha_thermal_collision_profile414)_ 6.09053704655586076e-04 +Electron-alpha_thermal_collision_time_at_point_415_______________________ (t_plasma_electron_alpha_thermal_collision_profile415)_ 6.04067123866858409e-04 +Electron-alpha_thermal_collision_time_at_point_416_______________________ (t_plasma_electron_alpha_thermal_collision_profile416)_ 5.99115442662068675e-04 +Electron-alpha_thermal_collision_time_at_point_417_______________________ (t_plasma_electron_alpha_thermal_collision_profile417)_ 5.94199376806576075e-04 +Electron-alpha_thermal_collision_time_at_point_418_______________________ (t_plasma_electron_alpha_thermal_collision_profile418)_ 5.89319659169942845e-04 +Electron-alpha_thermal_collision_time_at_point_419_______________________ (t_plasma_electron_alpha_thermal_collision_profile419)_ 5.84477040599030561e-04 +Electron-alpha_thermal_collision_time_at_point_420_______________________ (t_plasma_electron_alpha_thermal_collision_profile420)_ 5.79672290855385718e-04 +Electron-alpha_thermal_collision_time_at_point_421_______________________ (t_plasma_electron_alpha_thermal_collision_profile421)_ 5.74906199622838144e-04 +Electron-alpha_thermal_collision_time_at_point_422_______________________ (t_plasma_electron_alpha_thermal_collision_profile422)_ 5.70179577591903861e-04 +Electron-alpha_thermal_collision_time_at_point_423_______________________ (t_plasma_electron_alpha_thermal_collision_profile423)_ 5.65493257628322025e-04 +Electron-alpha_thermal_collision_time_at_point_424_______________________ (t_plasma_electron_alpha_thermal_collision_profile424)_ 5.60848096033926438e-04 +Electron-alpha_thermal_collision_time_at_point_425_______________________ (t_plasma_electron_alpha_thermal_collision_profile425)_ 5.56244973909015292e-04 +Electron-alpha_thermal_collision_time_at_point_426_______________________ (t_plasma_electron_alpha_thermal_collision_profile426)_ 5.51684798626494131e-04 +Electron-alpha_thermal_collision_time_at_point_427_______________________ (t_plasma_electron_alpha_thermal_collision_profile427)_ 5.47168505429350719e-04 +Electron-alpha_thermal_collision_time_at_point_428_______________________ (t_plasma_electron_alpha_thermal_collision_profile428)_ 5.42697059164477975e-04 +Electron-alpha_thermal_collision_time_at_point_429_______________________ (t_plasma_electron_alpha_thermal_collision_profile429)_ 5.38271456167555874e-04 +Electron-alpha_thermal_collision_time_at_point_430_______________________ (t_plasma_electron_alpha_thermal_collision_profile430)_ 5.33892726315654325e-04 +Electron-alpha_thermal_collision_time_at_point_431_______________________ (t_plasma_electron_alpha_thermal_collision_profile431)_ 5.29561935266490238e-04 +Electron-alpha_thermal_collision_time_at_point_432_______________________ (t_plasma_electron_alpha_thermal_collision_profile432)_ 5.25280186905917323e-04 +Electron-alpha_thermal_collision_time_at_point_433_______________________ (t_plasma_electron_alpha_thermal_collision_profile433)_ 5.21048626028300789e-04 +Electron-alpha_thermal_collision_time_at_point_434_______________________ (t_plasma_electron_alpha_thermal_collision_profile434)_ 5.16868441278085658e-04 +Electron-alpha_thermal_collision_time_at_point_435_______________________ (t_plasma_electron_alpha_thermal_collision_profile435)_ 5.12740868385108206e-04 +Electron-alpha_thermal_collision_time_at_point_436_______________________ (t_plasma_electron_alpha_thermal_collision_profile436)_ 5.08667193731279148e-04 +Electron-alpha_thermal_collision_time_at_point_437_______________________ (t_plasma_electron_alpha_thermal_collision_profile437)_ 5.04648758292281624e-04 +Electron-alpha_thermal_collision_time_at_point_438_______________________ (t_plasma_electron_alpha_thermal_collision_profile438)_ 5.00686962005105212e-04 +Electron-alpha_thermal_collision_time_at_point_439_______________________ (t_plasma_electron_alpha_thermal_collision_profile439)_ 4.96783268620884966e-04 +Electron-alpha_thermal_collision_time_at_point_440_______________________ (t_plasma_electron_alpha_thermal_collision_profile440)_ 4.92939211112930812e-04 +Electron-alpha_thermal_collision_time_at_point_441_______________________ (t_plasma_electron_alpha_thermal_collision_profile441)_ 4.89156397722503833e-04 +Electron-alpha_thermal_collision_time_at_point_442_______________________ (t_plasma_electron_alpha_thermal_collision_profile442)_ 4.85436518740359213e-04 +Electron-alpha_thermal_collision_time_at_point_443_______________________ (t_plasma_electron_alpha_thermal_collision_profile443)_ 4.81781354141127042e-04 +Electron-alpha_thermal_collision_time_at_point_444_______________________ (t_plasma_electron_alpha_thermal_collision_profile444)_ 4.78192782211162275e-04 +Electron-alpha_thermal_collision_time_at_point_445_______________________ (t_plasma_electron_alpha_thermal_collision_profile445)_ 4.74672789339901477e-04 +Electron-alpha_thermal_collision_time_at_point_446_______________________ (t_plasma_electron_alpha_thermal_collision_profile446)_ 4.71223481181787826e-04 +Electron-alpha_thermal_collision_time_at_point_447_______________________ (t_plasma_electron_alpha_thermal_collision_profile447)_ 4.67847095442712078e-04 +Electron-alpha_thermal_collision_time_at_point_448_______________________ (t_plasma_electron_alpha_thermal_collision_profile448)_ 4.64546016605023868e-04 +Electron-alpha_thermal_collision_time_at_point_449_______________________ (t_plasma_electron_alpha_thermal_collision_profile449)_ 4.61322792982814028e-04 +Electron-alpha_thermal_collision_time_at_point_450_______________________ (t_plasma_electron_alpha_thermal_collision_profile450)_ 4.58180156600708998e-04 +Electron-alpha_thermal_collision_time_at_point_451_______________________ (t_plasma_electron_alpha_thermal_collision_profile451)_ 4.55121046523626811e-04 +Electron-alpha_thermal_collision_time_at_point_452_______________________ (t_plasma_electron_alpha_thermal_collision_profile452)_ 4.52148636444750073e-04 +Electron-alpha_thermal_collision_time_at_point_453_______________________ (t_plasma_electron_alpha_thermal_collision_profile453)_ 4.49266367583145377e-04 +Electron-alpha_thermal_collision_time_at_point_454_______________________ (t_plasma_electron_alpha_thermal_collision_profile454)_ 4.46477988279252462e-04 +Electron-alpha_thermal_collision_time_at_point_455_______________________ (t_plasma_electron_alpha_thermal_collision_profile455)_ 4.43787602148995770e-04 +Electron-alpha_thermal_collision_time_at_point_456_______________________ (t_plasma_electron_alpha_thermal_collision_profile456)_ 4.41199727332932735e-04 +Electron-alpha_thermal_collision_time_at_point_457_______________________ (t_plasma_electron_alpha_thermal_collision_profile457)_ 4.38719370363670137e-04 +Electron-alpha_thermal_collision_time_at_point_458_______________________ (t_plasma_electron_alpha_thermal_collision_profile458)_ 4.36352119651137833e-04 +Electron-alpha_thermal_collision_time_at_point_459_______________________ (t_plasma_electron_alpha_thermal_collision_profile459)_ 4.34104265854901180e-04 +Electron-alpha_thermal_collision_time_at_point_460_______________________ (t_plasma_electron_alpha_thermal_collision_profile460)_ 4.31982960012813194e-04 +Electron-alpha_thermal_collision_time_at_point_461_______________________ (t_plasma_electron_alpha_thermal_collision_profile461)_ 4.29996426217092254e-04 +Electron-alpha_thermal_collision_time_at_point_462_______________________ (t_plasma_electron_alpha_thermal_collision_profile462)_ 4.28154255794832941e-04 +Electron-alpha_thermal_collision_time_at_point_463_______________________ (t_plasma_electron_alpha_thermal_collision_profile463)_ 4.26467828316041985e-04 +Electron-alpha_thermal_collision_time_at_point_464_______________________ (t_plasma_electron_alpha_thermal_collision_profile464)_ 4.24950940063445004e-04 +Electron-alpha_thermal_collision_time_at_point_465_______________________ (t_plasma_electron_alpha_thermal_collision_profile465)_ 4.23620793979948885e-04 +Electron-alpha_thermal_collision_time_at_point_466_______________________ (t_plasma_electron_alpha_thermal_collision_profile466)_ 4.22499673735964813e-04 +Electron-alpha_thermal_collision_time_at_point_467_______________________ (t_plasma_electron_alpha_thermal_collision_profile467)_ 4.21618068635555099e-04 +Electron-alpha_thermal_collision_time_at_point_468_______________________ (t_plasma_electron_alpha_thermal_collision_profile468)_ 4.21021443248139032e-04 +Electron-alpha_thermal_collision_time_at_point_469_______________________ (t_plasma_electron_alpha_thermal_collision_profile469)_ 4.20789258131249420e-04 +Electron-alpha_thermal_collision_time_at_point_470_______________________ (t_plasma_electron_alpha_thermal_collision_profile470)_ 4.21151287103598796e-04 +Electron-alpha_thermal_collision_time_at_point_471_______________________ (t_plasma_electron_alpha_thermal_collision_profile471)_ 4.06843929294528909e-04 +Electron-alpha_thermal_collision_time_at_point_472_______________________ (t_plasma_electron_alpha_thermal_collision_profile472)_ 3.92449007399135784e-04 +Electron-alpha_thermal_collision_time_at_point_473_______________________ (t_plasma_electron_alpha_thermal_collision_profile473)_ 3.77968533760199299e-04 +Electron-alpha_thermal_collision_time_at_point_474_______________________ (t_plasma_electron_alpha_thermal_collision_profile474)_ 3.63404960494575699e-04 +Electron-alpha_thermal_collision_time_at_point_475_______________________ (t_plasma_electron_alpha_thermal_collision_profile475)_ 3.48761243089929212e-04 +Electron-alpha_thermal_collision_time_at_point_476_______________________ (t_plasma_electron_alpha_thermal_collision_profile476)_ 3.34040914087316222e-04 +Electron-alpha_thermal_collision_time_at_point_477_______________________ (t_plasma_electron_alpha_thermal_collision_profile477)_ 3.19248168742434688e-04 +Electron-alpha_thermal_collision_time_at_point_478_______________________ (t_plasma_electron_alpha_thermal_collision_profile478)_ 3.04387964987495765e-04 +Electron-alpha_thermal_collision_time_at_point_479_______________________ (t_plasma_electron_alpha_thermal_collision_profile479)_ 2.89466140562752243e-04 +Electron-alpha_thermal_collision_time_at_point_480_______________________ (t_plasma_electron_alpha_thermal_collision_profile480)_ 2.74489550890890895e-04 +Electron-alpha_thermal_collision_time_at_point_481_______________________ (t_plasma_electron_alpha_thermal_collision_profile481)_ 2.59466232183366255e-04 +Electron-alpha_thermal_collision_time_at_point_482_______________________ (t_plasma_electron_alpha_thermal_collision_profile482)_ 2.44405595472820089e-04 +Electron-alpha_thermal_collision_time_at_point_483_______________________ (t_plasma_electron_alpha_thermal_collision_profile483)_ 2.29318658871532558e-04 +Electron-alpha_thermal_collision_time_at_point_484_______________________ (t_plasma_electron_alpha_thermal_collision_profile484)_ 2.14218327525993375e-04 +Electron-alpha_thermal_collision_time_at_point_485_______________________ (t_plasma_electron_alpha_thermal_collision_profile485)_ 1.99119733716731539e-04 +Electron-alpha_thermal_collision_time_at_point_486_______________________ (t_plasma_electron_alpha_thermal_collision_profile486)_ 1.84040653714191130e-04 +Electron-alpha_thermal_collision_time_at_point_487_______________________ (t_plasma_electron_alpha_thermal_collision_profile487)_ 1.69002023930429082e-04 +Electron-alpha_thermal_collision_time_at_point_488_______________________ (t_plasma_electron_alpha_thermal_collision_profile488)_ 1.54028587542921281e-04 +Electron-alpha_thermal_collision_time_at_point_489_______________________ (t_plasma_electron_alpha_thermal_collision_profile489)_ 1.39149715668928259e-04 +Electron-alpha_thermal_collision_time_at_point_490_______________________ (t_plasma_electron_alpha_thermal_collision_profile490)_ 1.24400467009746753e-04 +Electron-alpha_thermal_collision_time_at_point_491_______________________ (t_plasma_electron_alpha_thermal_collision_profile491)_ 1.09822981434899299e-04 +Electron-alpha_thermal_collision_time_at_point_492_______________________ (t_plasma_electron_alpha_thermal_collision_profile492)_ 9.54683551532867181e-05 +Electron-alpha_thermal_collision_time_at_point_493_______________________ (t_plasma_electron_alpha_thermal_collision_profile493)_ 8.13992355102621145e-05 +Electron-alpha_thermal_collision_time_at_point_494_______________________ (t_plasma_electron_alpha_thermal_collision_profile494)_ 6.76935390677836743e-05 +Electron-alpha_thermal_collision_time_at_point_495_______________________ (t_plasma_electron_alpha_thermal_collision_profile495)_ 5.44500217429608343e-05 +Electron-alpha_thermal_collision_time_at_point_496_______________________ (t_plasma_electron_alpha_thermal_collision_profile496)_ 4.17971262500771852e-05 +Electron-alpha_thermal_collision_time_at_point_497_______________________ (t_plasma_electron_alpha_thermal_collision_profile497)_ 2.99082057812428443e-05 +Electron-alpha_thermal_collision_time_at_point_498_______________________ (t_plasma_electron_alpha_thermal_collision_profile498)_ 1.90309434694019445e-05 +Electron-alpha_thermal_collision_time_at_point_499_______________________ (t_plasma_electron_alpha_thermal_collision_profile499)_ 9.55580932826639103e-06 +Electron-alpha_thermal_collision_time_at_point_500_______________________ (t_plasma_electron_alpha_thermal_collision_profile500)_ 2.31367628078311617e-06 +Volume_averaged_electron-electron_collision_frequency_(Hz)_______________ (freq_plasma_electron_electron_collision_vol_avg)_ 1.45034118674118599e+03 +Electron-electron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_electron_collision_profile0)_ 6.65447922597799788e+02 +Electron-electron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_electron_collision_profile1)_ 6.65451707179113214e+02 +Electron-electron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_electron_collision_profile2)_ 6.65463061131904283e+02 +Electron-electron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_electron_collision_profile3)_ 6.65481985082749475e+02 +Electron-electron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_electron_collision_profile4)_ 6.65508480076027922e+02 +Electron-electron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_electron_collision_profile5)_ 6.65542547574048172e+02 +Electron-electron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_electron_collision_profile6)_ 6.65584189457225762e+02 +Electron-electron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_electron_collision_profile7)_ 6.65633408024312303e+02 +Electron-electron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_electron_collision_profile8)_ 6.65690205992675715e+02 +Electron-electron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_electron_collision_profile9)_ 6.65754586498630033e+02 +Electron-electron_collision_frequency_at_point_10________________________ (freq_plasma_electron_electron_collision_profile10)_ 6.65826553097816827e+02 +Electron-electron_collision_frequency_at_point_11________________________ (freq_plasma_electron_electron_collision_profile11)_ 6.65906109765639485e+02 +Electron-electron_collision_frequency_at_point_12________________________ (freq_plasma_electron_electron_collision_profile12)_ 6.65993260897745813e+02 +Electron-electron_collision_frequency_at_point_13________________________ (freq_plasma_electron_electron_collision_profile13)_ 6.66088011310564752e+02 +Electron-electron_collision_frequency_at_point_14________________________ (freq_plasma_electron_electron_collision_profile14)_ 6.66190366241891297e+02 +Electron-electron_collision_frequency_at_point_15________________________ (freq_plasma_electron_electron_collision_profile15)_ 6.66300331351526893e+02 +Electron-electron_collision_frequency_at_point_16________________________ (freq_plasma_electron_electron_collision_profile16)_ 6.66417912721968719e+02 +Electron-electron_collision_frequency_at_point_17________________________ (freq_plasma_electron_electron_collision_profile17)_ 6.66543116859151041e+02 +Electron-electron_collision_frequency_at_point_18________________________ (freq_plasma_electron_electron_collision_profile18)_ 6.66675950693240225e+02 +Electron-electron_collision_frequency_at_point_19________________________ (freq_plasma_electron_electron_collision_profile19)_ 6.66816421579478742e+02 +Electron-electron_collision_frequency_at_point_20________________________ (freq_plasma_electron_electron_collision_profile20)_ 6.66964537299085691e+02 +Electron-electron_collision_frequency_at_point_21________________________ (freq_plasma_electron_electron_collision_profile21)_ 6.67120306060206190e+02 +Electron-electron_collision_frequency_at_point_22________________________ (freq_plasma_electron_electron_collision_profile22)_ 6.67283736498916028e+02 +Electron-electron_collision_frequency_at_point_23________________________ (freq_plasma_electron_electron_collision_profile23)_ 6.67454837680276796e+02 +Electron-electron_collision_frequency_at_point_24________________________ (freq_plasma_electron_electron_collision_profile24)_ 6.67633619099445468e+02 +Electron-electron_collision_frequency_at_point_25________________________ (freq_plasma_electron_electron_collision_profile25)_ 6.67820090682838668e+02 +Electron-electron_collision_frequency_at_point_26________________________ (freq_plasma_electron_electron_collision_profile26)_ 6.68014262789348436e+02 +Electron-electron_collision_frequency_at_point_27________________________ (freq_plasma_electron_electron_collision_profile27)_ 6.68216146211610294e+02 +Electron-electron_collision_frequency_at_point_28________________________ (freq_plasma_electron_electron_collision_profile28)_ 6.68425752177331788e+02 +Electron-electron_collision_frequency_at_point_29________________________ (freq_plasma_electron_electron_collision_profile29)_ 6.68643092350667644e+02 +Electron-electron_collision_frequency_at_point_30________________________ (freq_plasma_electron_electron_collision_profile30)_ 6.68868178833656088e+02 +Electron-electron_collision_frequency_at_point_31________________________ (freq_plasma_electron_electron_collision_profile31)_ 6.69101024167703599e+02 +Electron-electron_collision_frequency_at_point_32________________________ (freq_plasma_electron_electron_collision_profile32)_ 6.69341641335133090e+02 +Electron-electron_collision_frequency_at_point_33________________________ (freq_plasma_electron_electron_collision_profile33)_ 6.69590043760778485e+02 +Electron-electron_collision_frequency_at_point_34________________________ (freq_plasma_electron_electron_collision_profile34)_ 6.69846245313644090e+02 +Electron-electron_collision_frequency_at_point_35________________________ (freq_plasma_electron_electron_collision_profile35)_ 6.70110260308612396e+02 +Electron-electron_collision_frequency_at_point_36________________________ (freq_plasma_electron_electron_collision_profile36)_ 6.70382103508215209e+02 +Electron-electron_collision_frequency_at_point_37________________________ (freq_plasma_electron_electron_collision_profile37)_ 6.70661790124456274e+02 +Electron-electron_collision_frequency_at_point_38________________________ (freq_plasma_electron_electron_collision_profile38)_ 6.70949335820694728e+02 +Electron-electron_collision_frequency_at_point_39________________________ (freq_plasma_electron_electron_collision_profile39)_ 6.71244756713585161e+02 +Electron-electron_collision_frequency_at_point_40________________________ (freq_plasma_electron_electron_collision_profile40)_ 6.71548069375076466e+02 +Electron-electron_collision_frequency_at_point_41________________________ (freq_plasma_electron_electron_collision_profile41)_ 6.71859290834467288e+02 +Electron-electron_collision_frequency_at_point_42________________________ (freq_plasma_electron_electron_collision_profile42)_ 6.72178438580523675e+02 +Electron-electron_collision_frequency_at_point_43________________________ (freq_plasma_electron_electron_collision_profile43)_ 6.72505530563652542e+02 +Electron-electron_collision_frequency_at_point_44________________________ (freq_plasma_electron_electron_collision_profile44)_ 6.72840585198139479e+02 +Electron-electron_collision_frequency_at_point_45________________________ (freq_plasma_electron_electron_collision_profile45)_ 6.73183621364441933e+02 +Electron-electron_collision_frequency_at_point_46________________________ (freq_plasma_electron_electron_collision_profile46)_ 6.73534658411547071e+02 +Electron-electron_collision_frequency_at_point_47________________________ (freq_plasma_electron_electron_collision_profile47)_ 6.73893716159389442e+02 +Electron-electron_collision_frequency_at_point_48________________________ (freq_plasma_electron_electron_collision_profile48)_ 6.74260814901331173e+02 +Electron-electron_collision_frequency_at_point_49________________________ (freq_plasma_electron_electron_collision_profile49)_ 6.74635975406702755e+02 +Electron-electron_collision_frequency_at_point_50________________________ (freq_plasma_electron_electron_collision_profile50)_ 6.75019218923410676e+02 +Electron-electron_collision_frequency_at_point_51________________________ (freq_plasma_electron_electron_collision_profile51)_ 6.75410567180602925e+02 +Electron-electron_collision_frequency_at_point_52________________________ (freq_plasma_electron_electron_collision_profile52)_ 6.75810042391404409e+02 +Electron-electron_collision_frequency_at_point_53________________________ (freq_plasma_electron_electron_collision_profile53)_ 6.76217667255712854e+02 +Electron-electron_collision_frequency_at_point_54________________________ (freq_plasma_electron_electron_collision_profile54)_ 6.76633464963061556e+02 +Electron-electron_collision_frequency_at_point_55________________________ (freq_plasma_electron_electron_collision_profile55)_ 6.77057459195547835e+02 +Electron-electron_collision_frequency_at_point_56________________________ (freq_plasma_electron_electron_collision_profile56)_ 6.77489674130827666e+02 +Electron-electron_collision_frequency_at_point_57________________________ (freq_plasma_electron_electron_collision_profile57)_ 6.77930134445178169e+02 +Electron-electron_collision_frequency_at_point_58________________________ (freq_plasma_electron_electron_collision_profile58)_ 6.78378865316627525e+02 +Electron-electron_collision_frequency_at_point_59________________________ (freq_plasma_electron_electron_collision_profile59)_ 6.78835892428151737e+02 +Electron-electron_collision_frequency_at_point_60________________________ (freq_plasma_electron_electron_collision_profile60)_ 6.79301241970943124e+02 +Electron-electron_collision_frequency_at_point_61________________________ (freq_plasma_electron_electron_collision_profile61)_ 6.79774940647747144e+02 +Electron-electron_collision_frequency_at_point_62________________________ (freq_plasma_electron_electron_collision_profile62)_ 6.80257015676270498e+02 +Electron-electron_collision_frequency_at_point_63________________________ (freq_plasma_electron_electron_collision_profile63)_ 6.80747494792657790e+02 +Electron-electron_collision_frequency_at_point_64________________________ (freq_plasma_electron_electron_collision_profile64)_ 6.81246406255046281e+02 +Electron-electron_collision_frequency_at_point_65________________________ (freq_plasma_electron_electron_collision_profile65)_ 6.81753778847186368e+02 +Electron-electron_collision_frequency_at_point_66________________________ (freq_plasma_electron_electron_collision_profile66)_ 6.82269641882140490e+02 +Electron-electron_collision_frequency_at_point_67________________________ (freq_plasma_electron_electron_collision_profile67)_ 6.82794025206053561e+02 +Electron-electron_collision_frequency_at_point_68________________________ (freq_plasma_electron_electron_collision_profile68)_ 6.83326959202001945e+02 +Electron-electron_collision_frequency_at_point_69________________________ (freq_plasma_electron_electron_collision_profile69)_ 6.83868474793913720e+02 +Electron-electron_collision_frequency_at_point_70________________________ (freq_plasma_electron_electron_collision_profile70)_ 6.84418603450571709e+02 +Electron-electron_collision_frequency_at_point_71________________________ (freq_plasma_electron_electron_collision_profile71)_ 6.84977377189687445e+02 +Electron-electron_collision_frequency_at_point_72________________________ (freq_plasma_electron_electron_collision_profile72)_ 6.85544828582060404e+02 +Electron-electron_collision_frequency_at_point_73________________________ (freq_plasma_electron_electron_collision_profile73)_ 6.86120990755812841e+02 +Electron-electron_collision_frequency_at_point_74________________________ (freq_plasma_electron_electron_collision_profile74)_ 6.86705897400706021e+02 +Electron-electron_collision_frequency_at_point_75________________________ (freq_plasma_electron_electron_collision_profile75)_ 6.87299582772538201e+02 +Electron-electron_collision_frequency_at_point_76________________________ (freq_plasma_electron_electron_collision_profile76)_ 6.87902081697624226e+02 +Electron-electron_collision_frequency_at_point_77________________________ (freq_plasma_electron_electron_collision_profile77)_ 6.88513429577361194e+02 +Electron-electron_collision_frequency_at_point_78________________________ (freq_plasma_electron_electron_collision_profile78)_ 6.89133662392874612e+02 +Electron-electron_collision_frequency_at_point_79________________________ (freq_plasma_electron_electron_collision_profile79)_ 6.89762816709752656e+02 +Electron-electron_collision_frequency_at_point_80________________________ (freq_plasma_electron_electron_collision_profile80)_ 6.90400929682865922e+02 +Electron-electron_collision_frequency_at_point_81________________________ (freq_plasma_electron_electron_collision_profile81)_ 6.91048039061277677e+02 +Electron-electron_collision_frequency_at_point_82________________________ (freq_plasma_electron_electron_collision_profile82)_ 6.91704183193236304e+02 +Electron-electron_collision_frequency_at_point_83________________________ (freq_plasma_electron_electron_collision_profile83)_ 6.92369401031264033e+02 +Electron-electron_collision_frequency_at_point_84________________________ (freq_plasma_electron_electron_collision_profile84)_ 6.93043732137333905e+02 +Electron-electron_collision_frequency_at_point_85________________________ (freq_plasma_electron_electron_collision_profile85)_ 6.93727216688138697e+02 +Electron-electron_collision_frequency_at_point_86________________________ (freq_plasma_electron_electron_collision_profile86)_ 6.94419895480453533e+02 +Electron-electron_collision_frequency_at_point_87________________________ (freq_plasma_electron_electron_collision_profile87)_ 6.95121809936594104e+02 +Electron-electron_collision_frequency_at_point_88________________________ (freq_plasma_electron_electron_collision_profile88)_ 6.95833002109968447e+02 +Electron-electron_collision_frequency_at_point_89________________________ (freq_plasma_electron_electron_collision_profile89)_ 6.96553514690725819e+02 +Electron-electron_collision_frequency_at_point_90________________________ (freq_plasma_electron_electron_collision_profile90)_ 6.97283391011508115e+02 +Electron-electron_collision_frequency_at_point_91________________________ (freq_plasma_electron_electron_collision_profile91)_ 6.98022675053294734e+02 +Electron-electron_collision_frequency_at_point_92________________________ (freq_plasma_electron_electron_collision_profile92)_ 6.98771411451353401e+02 +Electron-electron_collision_frequency_at_point_93________________________ (freq_plasma_electron_electron_collision_profile93)_ 6.99529645501289451e+02 +Electron-electron_collision_frequency_at_point_94________________________ (freq_plasma_electron_electron_collision_profile94)_ 7.00297423165202076e+02 +Electron-electron_collision_frequency_at_point_95________________________ (freq_plasma_electron_electron_collision_profile95)_ 7.01074791077943587e+02 +Electron-electron_collision_frequency_at_point_96________________________ (freq_plasma_electron_electron_collision_profile96)_ 7.01861796553485533e+02 +Electron-electron_collision_frequency_at_point_97________________________ (freq_plasma_electron_electron_collision_profile97)_ 7.02658487591394419e+02 +Electron-electron_collision_frequency_at_point_98________________________ (freq_plasma_electron_electron_collision_profile98)_ 7.03464912883413376e+02 +Electron-electron_collision_frequency_at_point_99________________________ (freq_plasma_electron_electron_collision_profile99)_ 7.04281121820159910e+02 +Electron-electron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_electron_collision_profile100)_ 7.05107164497930967e+02 +Electron-electron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_electron_collision_profile101)_ 7.05943091725627255e+02 +Electron-electron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_electron_collision_profile102)_ 7.06788955031787964e+02 +Electron-electron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_electron_collision_profile103)_ 7.07644806671748711e+02 +Electron-electron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_electron_collision_profile104)_ 7.08510699634913067e+02 +Electron-electron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_electron_collision_profile105)_ 7.09386687652149362e+02 +Electron-electron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_electron_collision_profile106)_ 7.10272825203308230e+02 +Electron-electron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_electron_collision_profile107)_ 7.11169167524862360e+02 +Electron-electron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_electron_collision_profile108)_ 7.12075770617678131e+02 +Electron-electron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_electron_collision_profile109)_ 7.12992691254908436e+02 +Electron-electron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_electron_collision_profile110)_ 7.13919986990020789e+02 +Electron-electron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_electron_collision_profile111)_ 7.14857716164954127e+02 +Electron-electron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_electron_collision_profile112)_ 7.15805937918410109e+02 +Electron-electron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_electron_collision_profile113)_ 7.16764712194282083e+02 +Electron-electron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_electron_collision_profile114)_ 7.17734099750218775e+02 +Electron-electron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_electron_collision_profile115)_ 7.18714162166328492e+02 +Electron-electron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_electron_collision_profile116)_ 7.19704961854028056e+02 +Electron-electron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_electron_collision_profile117)_ 7.20706562065031221e+02 +Electron-electron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_electron_collision_profile118)_ 7.21719026900489098e+02 +Electron-electron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_electron_collision_profile119)_ 7.22742421320273138e+02 +Electron-electron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_electron_collision_profile120)_ 7.23776811152411824e+02 +Electron-electron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_electron_collision_profile121)_ 7.24822263102680267e+02 +Electron-electron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_electron_collision_profile122)_ 7.25878844764347718e+02 +Electron-electron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_electron_collision_profile123)_ 7.26946624628076052e+02 +Electron-electron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_electron_collision_profile124)_ 7.28025672091985371e+02 +Electron-electron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_electron_collision_profile125)_ 7.29116057471878435e+02 +Electron-electron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_electron_collision_profile126)_ 7.30217852011632544e+02 +Electron-electron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_electron_collision_profile127)_ 7.31331127893757866e+02 +Electron-electron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_electron_collision_profile128)_ 7.32455958250126173e+02 +Electron-electron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_electron_collision_profile129)_ 7.33592417172873070e+02 +Electron-electron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_electron_collision_profile130)_ 7.34740579725478028e+02 +Electron-electron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_electron_collision_profile131)_ 7.35900521954018700e+02 +Electron-electron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_electron_collision_profile132)_ 7.37072320898610997e+02 +Electron-electron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_electron_collision_profile133)_ 7.38256054605031409e+02 +Electron-electron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_electron_collision_profile134)_ 7.39451802136525998e+02 +Electron-electron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_electron_collision_profile135)_ 7.40659643585811864e+02 +Electron-electron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_electron_collision_profile136)_ 7.41879660087270167e+02 +Electron-electron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_electron_collision_profile137)_ 7.43111933829337431e+02 +Electron-electron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_electron_collision_profile138)_ 7.44356548067091694e+02 +Electron-electron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_electron_collision_profile139)_ 7.45613587135049670e+02 +Electron-electron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_electron_collision_profile140)_ 7.46883136460161495e+02 +Electron-electron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_electron_collision_profile141)_ 7.48165282575020342e+02 +Electron-electron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_electron_collision_profile142)_ 7.49460113131284061e+02 +Electron-electron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_electron_collision_profile143)_ 7.50767716913308959e+02 +Electron-electron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_electron_collision_profile144)_ 7.52088183852010957e+02 +Electron-electron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_electron_collision_profile145)_ 7.53421605038944563e+02 +Electron-electron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_electron_collision_profile146)_ 7.54768072740607863e+02 +Electron-electron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_electron_collision_profile147)_ 7.56127680412984887e+02 +Electron-electron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_electron_collision_profile148)_ 7.57500522716315459e+02 +Electron-electron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_electron_collision_profile149)_ 7.58886695530109478e+02 +Electron-electron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_electron_collision_profile150)_ 7.60286295968397326e+02 +Electron-electron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_electron_collision_profile151)_ 7.61699422395234706e+02 +Electron-electron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_electron_collision_profile152)_ 7.63126174440450200e+02 +Electron-electron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_electron_collision_profile153)_ 7.64566653015652037e+02 +Electron-electron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_electron_collision_profile154)_ 7.66020960330494177e+02 +Electron-electron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_electron_collision_profile155)_ 7.67489199909202739e+02 +Electron-electron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_electron_collision_profile156)_ 7.68971476607373347e+02 +Electron-electron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_electron_collision_profile157)_ 7.70467896629038250e+02 +Electron-electron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_electron_collision_profile158)_ 7.71978567544010502e+02 +Electron-electron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_electron_collision_profile159)_ 7.73503598305513037e+02 +Electron-electron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_electron_collision_profile160)_ 7.75043099268088213e+02 +Electron-electron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_electron_collision_profile161)_ 7.76597182205803051e+02 +Electron-electron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_electron_collision_profile162)_ 7.78165960330748476e+02 +Electron-electron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_electron_collision_profile163)_ 7.79749548311840272e+02 +Electron-electron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_electron_collision_profile164)_ 7.81348062293924158e+02 +Electron-electron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_electron_collision_profile165)_ 7.82961619917196117e+02 +Electron-electron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_electron_collision_profile166)_ 7.84590340336934787e+02 +Electron-electron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_electron_collision_profile167)_ 7.86234344243558553e+02 +Electron-electron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_electron_collision_profile168)_ 7.87893753883010277e+02 +Electron-electron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_electron_collision_profile169)_ 7.89568693077473768e+02 +Electron-electron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_electron_collision_profile170)_ 7.91259287246428926e+02 +Electron-electron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_electron_collision_profile171)_ 7.92965663428053631e+02 +Electron-electron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_electron_collision_profile172)_ 7.94687950300972830e+02 +Electron-electron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_electron_collision_profile173)_ 7.96426278206368465e+02 +Electron-electron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_electron_collision_profile174)_ 7.98180779170447522e+02 +Electron-electron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_electron_collision_profile175)_ 7.99951586927281028e+02 +Electron-electron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_electron_collision_profile176)_ 8.01738836942020498e+02 +Electron-electron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_electron_collision_profile177)_ 8.03542666434491707e+02 +Electron-electron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_electron_collision_profile178)_ 8.05363214403181246e+02 +Electron-electron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_electron_collision_profile179)_ 8.07200621649613709e+02 +Electron-electron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_electron_collision_profile180)_ 8.09055030803135310e+02 +Electron-electron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_electron_collision_profile181)_ 8.10926586346103818e+02 +Electron-electron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_electron_collision_profile182)_ 8.12815434639493787e+02 +Electron-electron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_electron_collision_profile183)_ 8.14721723948929366e+02 +Electron-electron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_electron_collision_profile184)_ 8.16645604471139336e+02 +Electron-electron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_electron_collision_profile185)_ 8.18587228360861445e+02 +Electron-electron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_electron_collision_profile186)_ 8.20546749758182045e+02 +Electron-electron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_electron_collision_profile187)_ 8.22524324816336502e+02 +Electron-electron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_electron_collision_profile188)_ 8.24520111729966629e+02 +Electron-electron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_electron_collision_profile189)_ 8.26534270763849236e+02 +Electron-electron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_electron_collision_profile190)_ 8.28566964282104095e+02 +Electron-electron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_electron_collision_profile191)_ 8.30618356777884742e+02 +Electron-electron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_electron_collision_profile192)_ 8.32688614903564030e+02 +Electron-electron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_electron_collision_profile193)_ 8.34777907501427535e+02 +Electron-electron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_electron_collision_profile194)_ 8.36886405634872062e+02 +Electron-electron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_electron_collision_profile195)_ 8.39014282620130984e+02 +Electron-electron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_electron_collision_profile196)_ 8.41161714058524581e+02 +Electron-electron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_electron_collision_profile197)_ 8.43328877869255848e+02 +Electron-electron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_electron_collision_profile198)_ 8.45515954322748712e+02 +Electron-electron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_electron_collision_profile199)_ 8.47723126074549214e+02 +Electron-electron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_electron_collision_profile200)_ 8.49950578199792290e+02 +Electron-electron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_electron_collision_profile201)_ 8.52198498228249264e+02 +Electron-electron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_electron_collision_profile202)_ 8.54467076179960941e+02 +Electron-electron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_electron_collision_profile203)_ 8.56756504601471761e+02 +Electron-electron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_electron_collision_profile204)_ 8.59066978602671611e+02 +Electron-electron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_electron_collision_profile205)_ 8.61398695894257571e+02 +Electron-electron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_electron_collision_profile206)_ 8.63751856825826962e+02 +Electron-electron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_electron_collision_profile207)_ 8.66126664424612386e+02 +Electron-electron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_electron_collision_profile208)_ 8.68523324434868641e+02 +Electron-electron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_electron_collision_profile209)_ 8.70942045357925281e+02 +Electron-electron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_electron_collision_profile210)_ 8.73383038492914238e+02 +Electron-electron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_electron_collision_profile211)_ 8.75846517978185602e+02 +Electron-electron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_electron_collision_profile212)_ 8.78332700833424497e+02 +Electron-electron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_electron_collision_profile213)_ 8.80841807002478163e+02 +Electron-electron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_electron_collision_profile214)_ 8.83374059396908706e+02 +Electron-electron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_electron_collision_profile215)_ 8.85929683940282757e+02 +Electron-electron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_electron_collision_profile216)_ 8.88508909613211472e+02 +Electron-electron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_electron_collision_profile217)_ 8.91111968499153136e+02 +Electron-electron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_electron_collision_profile218)_ 8.93739095830991914e+02 +Electron-electron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_electron_collision_profile219)_ 8.96390530038408883e+02 +Electron-electron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_electron_collision_profile220)_ 8.99066512796053416e+02 +Electron-electron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_electron_collision_profile221)_ 9.01767289072529707e+02 +Electron-electron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_electron_collision_profile222)_ 9.04493107180224683e+02 +Electron-electron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_electron_collision_profile223)_ 9.07244218825970620e+02 +Electron-electron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_electron_collision_profile224)_ 9.10020879162574943e+02 +Electron-electron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_electron_collision_profile225)_ 9.12823346841221678e+02 +Electron-electron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_electron_collision_profile226)_ 9.15651884064767160e+02 +Electron-electron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_electron_collision_profile227)_ 9.18506756641936704e+02 +Electron-electron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_electron_collision_profile228)_ 9.21388234042445106e+02 +Electron-electron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_electron_collision_profile229)_ 9.24296589453052775e+02 +Electron-electron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_electron_collision_profile230)_ 9.27232099834574342e+02 +Electron-electron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_electron_collision_profile231)_ 9.30195045979857355e+02 +Electron-electron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_electron_collision_profile232)_ 9.33185712572742773e+02 +Electron-electron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_electron_collision_profile233)_ 9.36204388248030568e+02 +Electron-electron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_electron_collision_profile234)_ 9.39251365652463392e+02 +Electron-electron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_electron_collision_profile235)_ 9.42326941506739217e+02 +Electron-electron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_electron_collision_profile236)_ 9.45431416668588668e+02 +Electron-electron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_electron_collision_profile237)_ 9.48565096196912350e+02 +Electron-electron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_electron_collision_profile238)_ 9.51728289417007318e+02 +Electron-electron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_electron_collision_profile239)_ 9.54921309986906067e+02 +Electron-electron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_electron_collision_profile240)_ 9.58144475964830804e+02 +Electron-electron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_electron_collision_profile241)_ 9.61398109877794809e+02 +Electron-electron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_electron_collision_profile242)_ 9.64682538791364095e+02 +Electron-electron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_electron_collision_profile243)_ 9.67998094380595717e+02 +Electron-electron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_electron_collision_profile244)_ 9.71345113002177413e+02 +Electron-electron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_electron_collision_profile245)_ 9.74723935767784951e+02 +Electron-electron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_electron_collision_profile246)_ 9.78134908618670011e+02 +Electron-electron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_electron_collision_profile247)_ 9.81578382401513295e+02 +Electron-electron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_electron_collision_profile248)_ 9.85054712945547294e+02 +Electron-electron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_electron_collision_profile249)_ 9.88564261140976100e+02 +Electron-electron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_electron_collision_profile250)_ 9.92107393018708080e+02 +Electron-electron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_electron_collision_profile251)_ 9.95684479831432895e+02 +Electron-electron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_electron_collision_profile252)_ 9.99295898136040478e+02 +Electron-electron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_electron_collision_profile253)_ 1.00294202987743006e+03 +Electron-electron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_electron_collision_profile254)_ 1.00662326247370470e+03 +Electron-electron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_electron_collision_profile255)_ 1.01033998890278997e+03 +Electron-electron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_electron_collision_profile256)_ 1.01409260779048475e+03 +Electron-electron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_electron_collision_profile257)_ 1.01788152349997733e+03 +Electron-electron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_electron_collision_profile258)_ 1.02170714622282981e+03 +Electron-electron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_electron_collision_profile259)_ 1.02556989207147421e+03 +Electron-electron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_electron_collision_profile260)_ 1.02947018317321954e+03 +Electron-electron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_electron_collision_profile261)_ 1.03340844776580457e+03 +Electron-electron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_electron_collision_profile262)_ 1.03738512029450908e+03 +Electron-electron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_electron_collision_profile263)_ 1.04140064151085107e+03 +Electron-electron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_electron_collision_profile264)_ 1.04545545857288403e+03 +Electron-electron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_electron_collision_profile265)_ 1.04955002514711737e+03 +Electron-electron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_electron_collision_profile266)_ 1.05368480151208018e+03 +Electron-electron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_electron_collision_profile267)_ 1.05786025466354909e+03 +Electron-electron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_electron_collision_profile268)_ 1.06207685842145474e+03 +Electron-electron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_electron_collision_profile269)_ 1.06633509353850150e+03 +Electron-electron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_electron_collision_profile270)_ 1.07063544781049131e+03 +Electron-electron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_electron_collision_profile271)_ 1.07497841618840766e+03 +Electron-electron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_electron_collision_profile272)_ 1.07936450089223831e+03 +Electron-electron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_electron_collision_profile273)_ 1.08379421152659393e+03 +Electron-electron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_electron_collision_profile274)_ 1.08826806519810430e+03 +Electron-electron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_electron_collision_profile275)_ 1.09278658663463852e+03 +Electron-electron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_electron_collision_profile276)_ 1.09735030830634309e+03 +Electron-electron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_electron_collision_profile277)_ 1.10195977054852665e+03 +Electron-electron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_electron_collision_profile278)_ 1.10661552168640446e+03 +Electron-electron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_electron_collision_profile279)_ 1.11131811816171194e+03 +Electron-electron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_electron_collision_profile280)_ 1.11606812466119914e+03 +Electron-electron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_electron_collision_profile281)_ 1.12086611424703233e+03 +Electron-electron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_electron_collision_profile282)_ 1.12571266848909272e+03 +Electron-electron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_electron_collision_profile283)_ 1.13060837759919968e+03 +Electron-electron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_electron_collision_profile284)_ 1.13555384056725484e+03 +Electron-electron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_electron_collision_profile285)_ 1.14054966529932426e+03 +Electron-electron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_electron_collision_profile286)_ 1.14559646875765770e+03 +Electron-electron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_electron_collision_profile287)_ 1.15069487710264866e+03 +Electron-electron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_electron_collision_profile288)_ 1.15584552583674486e+03 +Electron-electron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_electron_collision_profile289)_ 1.16104905995029708e+03 +Electron-electron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_electron_collision_profile290)_ 1.16630613406936209e+03 +Electron-electron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_electron_collision_profile291)_ 1.17161741260543295e+03 +Electron-electron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_electron_collision_profile292)_ 1.17698356990712068e+03 +Electron-electron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_electron_collision_profile293)_ 1.18240529041374339e+03 +Electron-electron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_electron_collision_profile294)_ 1.18788326881084208e+03 +Electron-electron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_electron_collision_profile295)_ 1.19341821018759629e+03 +Electron-electron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_electron_collision_profile296)_ 1.19901083019611383e+03 +Electron-electron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_electron_collision_profile297)_ 1.20466185521259558e+03 +Electron-electron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_electron_collision_profile298)_ 1.21037202250032806e+03 +Electron-electron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_electron_collision_profile299)_ 1.21614208037449521e+03 +Electron-electron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_electron_collision_profile300)_ 1.22197278836876376e+03 +Electron-electron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_electron_collision_profile301)_ 1.22786491740361066e+03 +Electron-electron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_electron_collision_profile302)_ 1.23381924995636268e+03 +Electron-electron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_electron_collision_profile303)_ 1.23983658023287944e+03 +Electron-electron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_electron_collision_profile304)_ 1.24591771434085103e+03 +Electron-electron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_electron_collision_profile305)_ 1.25206347046464293e+03 +Electron-electron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_electron_collision_profile306)_ 1.25827467904162813e+03 +Electron-electron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_electron_collision_profile307)_ 1.26455218293993948e+03 +Electron-electron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_electron_collision_profile308)_ 1.27089683763756602e+03 +Electron-electron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_electron_collision_profile309)_ 1.27730951140270781e+03 +Electron-electron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_electron_collision_profile310)_ 1.28379108547530655e+03 +Electron-electron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_electron_collision_profile311)_ 1.29034245424964547e+03 +Electron-electron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_electron_collision_profile312)_ 1.29696452545792476e+03 +Electron-electron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_electron_collision_profile313)_ 1.30365822035467545e+03 +Electron-electron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_electron_collision_profile314)_ 1.31042447390191410e+03 +Electron-electron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_electron_collision_profile315)_ 1.31726423495487666e+03 +Electron-electron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_electron_collision_profile316)_ 1.32417846644820111e+03 +Electron-electron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_electron_collision_profile317)_ 1.33116814558240094e+03 +Electron-electron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_electron_collision_profile318)_ 1.33823426401044503e+03 +Electron-electron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_electron_collision_profile319)_ 1.34537782802427637e+03 +Electron-electron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_electron_collision_profile320)_ 1.35259985874106701e+03 +Electron-electron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_electron_collision_profile321)_ 1.35990139228898624e+03 +Electron-electron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_electron_collision_profile322)_ 1.36728347999228026e+03 +Electron-electron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_electron_collision_profile323)_ 1.37474718855538458e+03 +Electron-electron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_electron_collision_profile324)_ 1.38229360024584321e+03 +Electron-electron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_electron_collision_profile325)_ 1.38992381307572305e+03 +Electron-electron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_electron_collision_profile326)_ 1.39763894098124865e+03 +Electron-electron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_electron_collision_profile327)_ 1.40544011400031172e+03 +Electron-electron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_electron_collision_profile328)_ 1.41332847844754178e+03 +Electron-electron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_electron_collision_profile329)_ 1.42130519708653992e+03 +Electron-electron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_electron_collision_profile330)_ 1.42937144929890837e+03 +Electron-electron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_electron_collision_profile331)_ 1.43752843124964420e+03 +Electron-electron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_electron_collision_profile332)_ 1.44577735604845839e+03 +Electron-electron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_electron_collision_profile333)_ 1.45411945390653727e+03 +Electron-electron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_electron_collision_profile334)_ 1.46255597228824968e+03 +Electron-electron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_electron_collision_profile335)_ 1.47108817605725017e+03 +Electron-electron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_electron_collision_profile336)_ 1.47971734761640710e+03 +Electron-electron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_electron_collision_profile337)_ 1.48844478704094058e+03 +Electron-electron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_electron_collision_profile338)_ 1.49727181220412467e+03 +Electron-electron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_electron_collision_profile339)_ 1.50619975889485158e+03 +Electron-electron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_electron_collision_profile340)_ 1.51522998092632247e+03 +Electron-electron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_electron_collision_profile341)_ 1.52436385023508046e+03 +Electron-electron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_electron_collision_profile342)_ 1.53360275696955637e+03 +Electron-electron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_electron_collision_profile343)_ 1.54294810956722631e+03 +Electron-electron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_electron_collision_profile344)_ 1.55240133481945122e+03 +Electron-electron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_electron_collision_profile345)_ 1.56196387792299970e+03 +Electron-electron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_electron_collision_profile346)_ 1.57163720251716359e+03 +Electron-electron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_electron_collision_profile347)_ 1.58142279070537779e+03 +Electron-electron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_electron_collision_profile348)_ 1.59132214306010951e+03 +Electron-electron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_electron_collision_profile349)_ 1.60133677860976695e+03 +Electron-electron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_electron_collision_profile350)_ 1.61146823480625176e+03 +Electron-electron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_electron_collision_profile351)_ 1.62171806747175947e+03 +Electron-electron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_electron_collision_profile352)_ 1.63208785072325963e+03 +Electron-electron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_electron_collision_profile353)_ 1.64257917687308782e+03 +Electron-electron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_electron_collision_profile354)_ 1.65319365630390053e+03 +Electron-electron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_electron_collision_profile355)_ 1.66393291731620570e+03 +Electron-electron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_electron_collision_profile356)_ 1.67479860594652610e+03 +Electron-electron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_electron_collision_profile357)_ 1.68579238575417230e+03 +Electron-electron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_electron_collision_profile358)_ 1.69691593757444002e+03 +Electron-electron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_electron_collision_profile359)_ 1.70817095923597572e+03 +Electron-electron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_electron_collision_profile360)_ 1.71955916523983137e+03 +Electron-electron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_electron_collision_profile361)_ 1.73108228639770164e+03 +Electron-electron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_electron_collision_profile362)_ 1.74274206942654155e+03 +Electron-electron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_electron_collision_profile363)_ 1.75454027649674345e+03 +Electron-electron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_electron_collision_profile364)_ 1.76647868473077369e+03 +Electron-electron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_electron_collision_profile365)_ 1.77855908564904257e+03 +Electron-electron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_electron_collision_profile366)_ 1.79078328455957580e+03 +Electron-electron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_electron_collision_profile367)_ 1.80315309988785157e+03 +Electron-electron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_electron_collision_profile368)_ 1.81567036244295400e+03 +Electron-electron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_electron_collision_profile369)_ 1.82833691461598232e+03 +Electron-electron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_electron_collision_profile370)_ 1.84115460950638339e+03 +Electron-electron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_electron_collision_profile371)_ 1.85412530997166095e+03 +Electron-electron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_electron_collision_profile372)_ 1.86725088759561277e+03 +Electron-electron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_electron_collision_profile373)_ 1.88053322157001435e+03 +Electron-electron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_electron_collision_profile374)_ 1.89397419748428456e+03 +Electron-electron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_electron_collision_profile375)_ 1.90757570601747193e+03 +Electron-electron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_electron_collision_profile376)_ 1.92133964152644194e+03 +Electron-electron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_electron_collision_profile377)_ 1.93526790052390402e+03 +Electron-electron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_electron_collision_profile378)_ 1.94936238003946323e+03 +Electron-electron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_electron_collision_profile379)_ 1.96362497585654000e+03 +Electron-electron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_electron_collision_profile380)_ 1.97805758061755932e+03 +Electron-electron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_electron_collision_profile381)_ 1.99266208178939314e+03 +Electron-electron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_electron_collision_profile382)_ 2.00744035948056307e+03 +Electron-electron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_electron_collision_profile383)_ 2.02239428410121309e+03 +Electron-electron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_electron_collision_profile384)_ 2.03752571385638748e+03 +Electron-electron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_electron_collision_profile385)_ 2.05283649206253722e+03 +Electron-electron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_electron_collision_profile386)_ 2.06832844427667533e+03 +Electron-electron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_electron_collision_profile387)_ 2.08400337522693644e+03 +Electron-electron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_electron_collision_profile388)_ 2.09986306553268605e+03 +Electron-electron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_electron_collision_profile389)_ 2.11590926820162304e+03 +Electron-electron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_electron_collision_profile390)_ 2.13214370489064277e+03 +Electron-electron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_electron_collision_profile391)_ 2.14856806191639998e+03 +Electron-electron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_electron_collision_profile392)_ 2.16518398600080809e+03 +Electron-electron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_electron_collision_profile393)_ 2.18199307973576924e+03 +Electron-electron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_electron_collision_profile394)_ 2.19899689675061109e+03 +Electron-electron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_electron_collision_profile395)_ 2.21619693656471645e+03 +Electron-electron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_electron_collision_profile396)_ 2.23359463910688055e+03 +Electron-electron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_electron_collision_profile397)_ 2.25119137888181513e+03 +Electron-electron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_electron_collision_profile398)_ 2.26898845876319547e+03 +Electron-electron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_electron_collision_profile399)_ 2.28698710339134959e+03 +Electron-electron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_electron_collision_profile400)_ 2.30518845215259853e+03 +Electron-electron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_electron_collision_profile401)_ 2.32359355171577545e+03 +Electron-electron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_electron_collision_profile402)_ 2.34220334810019540e+03 +Electron-electron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_electron_collision_profile403)_ 2.36101867824779265e+03 +Electron-electron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_electron_collision_profile404)_ 2.38004026107059963e+03 +Electron-electron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_electron_collision_profile405)_ 2.39926868794310394e+03 +Electron-electron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_electron_collision_profile406)_ 2.41870441260723101e+03 +Electron-electron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_electron_collision_profile407)_ 2.43834774045585982e+03 +Electron-electron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_electron_collision_profile408)_ 2.45819881715878182e+03 +Electron-electron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_electron_collision_profile409)_ 2.47825761659288310e+03 +Electron-electron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_electron_collision_profile410)_ 2.49852392803614521e+03 +Electron-electron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_electron_collision_profile411)_ 2.51899734258256149e+03 +Electron-electron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_electron_collision_profile412)_ 2.53967723873261093e+03 +Electron-electron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_electron_collision_profile413)_ 2.56056276711107330e+03 +Electron-electron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_electron_collision_profile414)_ 2.58165283426113365e+03 +Electron-electron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_electron_collision_profile415)_ 2.60294608546046402e+03 +Electron-electron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_electron_collision_profile416)_ 2.62444088650162212e+03 +Electron-electron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_electron_collision_profile417)_ 2.64613530437538475e+03 +Electron-electron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_electron_collision_profile418)_ 2.66802708679165016e+03 +Electron-electron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_electron_collision_profile419)_ 2.69011364046818017e+03 +Electron-electron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_electron_collision_profile420)_ 2.71239200811273759e+03 +Electron-electron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_electron_collision_profile421)_ 2.73485884401894100e+03 +Electron-electron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_electron_collision_profile422)_ 2.75751038819046471e+03 +Electron-electron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_electron_collision_profile423)_ 2.78034243890189509e+03 +Electron-electron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_electron_collision_profile424)_ 2.80335032359753222e+03 +Electron-electron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_electron_collision_profile425)_ 2.82652886802158582e+03 +Electron-electron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_electron_collision_profile426)_ 2.84987236346451800e+03 +Electron-electron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_electron_collision_profile427)_ 2.87337453200031041e+03 +Electron-electron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_electron_collision_profile428)_ 2.89702848957830292e+03 +Electron-electron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_electron_collision_profile429)_ 2.92082670682047046e+03 +Electron-electron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_electron_collision_profile430)_ 2.94476096736036880e+03 +Electron-electron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_electron_collision_profile431)_ 2.96882232354314465e+03 +Electron-electron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_electron_collision_profile432)_ 2.99300104928643350e+03 +Electron-electron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_electron_collision_profile433)_ 3.01728658987920880e+03 +Electron-electron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_electron_collision_profile434)_ 3.04166750846881678e+03 +Electron-electron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_electron_collision_profile435)_ 3.06613142895497822e+03 +Electron-electron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_electron_collision_profile436)_ 3.09066497497189039e+03 +Electron-electron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_electron_collision_profile437)_ 3.11525370459492206e+03 +Electron-electron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_electron_collision_profile438)_ 3.13988204035445233e+03 +Electron-electron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_electron_collision_profile439)_ 3.16453319407436675e+03 +Electron-electron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_electron_collision_profile440)_ 3.18918908597353675e+03 +Electron-electron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_electron_collision_profile441)_ 3.21383025737157868e+03 +Electron-electron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_electron_collision_profile442)_ 3.23843577622077964e+03 +Electron-electron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_electron_collision_profile443)_ 3.26298313453768151e+03 +Electron-electron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_electron_collision_profile444)_ 3.28744813662264824e+03 +Electron-electron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_electron_collision_profile445)_ 3.31180477672254165e+03 +Electron-electron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_electron_collision_profile446)_ 3.33602510449575766e+03 +Electron-electron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_electron_collision_profile447)_ 3.36007907626076894e+03 +Electron-electron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_electron_collision_profile448)_ 3.38393438952101860e+03 +Electron-electron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_electron_collision_profile449)_ 3.40755629762350281e+03 +Electron-electron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_electron_collision_profile450)_ 3.43090740057139237e+03 +Electron-electron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_electron_collision_profile451)_ 3.45394740689784794e+03 +Electron-electron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_electron_collision_profile452)_ 3.47663286000779726e+03 +Electron-electron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_electron_collision_profile453)_ 3.49891682034606629e+03 +Electron-electron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_electron_collision_profile454)_ 3.52074849191081694e+03 +Electron-electron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_electron_collision_profile455)_ 3.54207277763006277e+03 +Electron-electron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_electron_collision_profile456)_ 3.56282974237474127e+03 +Electron-electron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_electron_collision_profile457)_ 3.58295395396194363e+03 +Electron-electron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_electron_collision_profile458)_ 3.60237365986435179e+03 +Electron-electron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_electron_collision_profile459)_ 3.62100973785673341e+03 +Electron-electron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_electron_collision_profile460)_ 3.63877432783914037e+03 +Electron-electron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_electron_collision_profile461)_ 3.65556900097243215e+03 +Electron-electron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_electron_collision_profile462)_ 3.67128223432755067e+03 +Electron-electron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_electron_collision_profile463)_ 3.68578580003479647e+03 +Electron-electron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_electron_collision_profile464)_ 3.69892937115722543e+03 +Electron-electron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_electron_collision_profile465)_ 3.71053200769007026e+03 +Electron-electron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_electron_collision_profile466)_ 3.72036771507266258e+03 +Electron-electron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_electron_collision_profile467)_ 3.72813838552353900e+03 +Electron-electron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_electron_collision_profile468)_ 3.73341492885834396e+03 +Electron-electron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_electron_collision_profile469)_ 3.73547108152865258e+03 +Electron-electron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_electron_collision_profile470)_ 3.73226050112361963e+03 +Electron-electron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_electron_collision_profile471)_ 3.86338938582753508e+03 +Electron-electron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_electron_collision_profile472)_ 4.00496505416764194e+03 +Electron-electron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_electron_collision_profile473)_ 4.15825691259054656e+03 +Electron-electron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_electron_collision_profile474)_ 4.32474407655509003e+03 +Electron-electron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_electron_collision_profile475)_ 4.50615979218971006e+03 +Electron-electron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_electron_collision_profile476)_ 4.70454749725667079e+03 +Electron-electron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_electron_collision_profile477)_ 4.92233220361901203e+03 +Electron-electron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_electron_collision_profile478)_ 5.16241226592098610e+03 +Electron-electron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_electron_collision_profile479)_ 5.42827859204378001e+03 +Electron-electron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_electron_collision_profile480)_ 5.72417126086446751e+03 +Electron-electron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_electron_collision_profile481)_ 6.05528783574957743e+03 +Electron-electron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_electron_collision_profile482)_ 6.42806419857762558e+03 +Electron-electron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_electron_collision_profile483)_ 6.85055880525588054e+03 +Electron-electron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_electron_collision_profile484)_ 7.33298713048990976e+03 +Electron-electron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_electron_collision_profile485)_ 7.88847864871780621e+03 +Electron-electron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_electron_collision_profile486)_ 8.53417102533676916e+03 +Electron-electron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_electron_collision_profile487)_ 9.29282830762348931e+03 +Electron-electron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_electron_collision_profile488)_ 1.01952968755777893e+04 +Electron-electron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_electron_collision_profile489)_ 1.12843449595222501e+04 +Electron-electron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_electron_collision_profile490)_ 1.26208741172124573e+04 +Electron-electron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_electron_collision_profile491)_ 1.42943780202559647e+04 +Electron-electron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_electron_collision_profile492)_ 1.64414075843455503e+04 +Electron-electron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_electron_collision_profile493)_ 1.92800883663534696e+04 +Electron-electron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_electron_collision_profile494)_ 2.31793472188016422e+04 +Electron-electron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_electron_collision_profile495)_ 2.88106672365189297e+04 +Electron-electron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_electron_collision_profile496)_ 3.75218949659809077e+04 +Electron-electron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_electron_collision_profile497)_ 5.24185324122285238e+04 +Electron-electron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_electron_collision_profile498)_ 8.23373435928891558e+04 +Electron-electron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_electron_collision_profile499)_ 1.63847351253279252e+05 +Electron-electron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_electron_collision_profile500)_ 6.95711980176164652e+05 +Volume_averaged_electron-deuteron_collision_frequency_(Hz)_______________ (freq_plasma_electron_deuteron_collision_vol_avg)_ 1.20490933320981003e+03 +Electron-deuteron_collision_frequency_at_point_0_________________________ (freq_plasma_electron_deuteron_collision_profile0)_ 5.52498504856372620e+02 +Electron-deuteron_collision_frequency_at_point_1_________________________ (freq_plasma_electron_deuteron_collision_profile1)_ 5.52501649419125329e+02 +Electron-deuteron_collision_frequency_at_point_2_________________________ (freq_plasma_electron_deuteron_collision_profile2)_ 5.52511083281002470e+02 +Electron-deuteron_collision_frequency_at_point_3_________________________ (freq_plasma_electron_deuteron_collision_profile3)_ 5.52526806962885530e+02 +Electron-deuteron_collision_frequency_at_point_4_________________________ (freq_plasma_electron_deuteron_collision_profile4)_ 5.52548821332978946e+02 +Electron-deuteron_collision_frequency_at_point_5_________________________ (freq_plasma_electron_deuteron_collision_profile5)_ 5.52577127606917088e+02 +Electron-deuteron_collision_frequency_at_point_6_________________________ (freq_plasma_electron_deuteron_collision_profile6)_ 5.52611727347912847e+02 +Electron-deuteron_collision_frequency_at_point_7_________________________ (freq_plasma_electron_deuteron_collision_profile7)_ 5.52652622466946241e+02 +Electron-deuteron_collision_frequency_at_point_8_________________________ (freq_plasma_electron_deuteron_collision_profile8)_ 5.52699815222998268e+02 +Electron-deuteron_collision_frequency_at_point_9_________________________ (freq_plasma_electron_deuteron_collision_profile9)_ 5.52753308223326258e+02 +Electron-deuteron_collision_frequency_at_point_10________________________ (freq_plasma_electron_deuteron_collision_profile10)_ 5.52813104423779009e+02 +Electron-deuteron_collision_frequency_at_point_11________________________ (freq_plasma_electron_deuteron_collision_profile11)_ 5.52879207129159113e+02 +Electron-deuteron_collision_frequency_at_point_12________________________ (freq_plasma_electron_deuteron_collision_profile12)_ 5.52951619993625400e+02 +Electron-deuteron_collision_frequency_at_point_13________________________ (freq_plasma_electron_deuteron_collision_profile13)_ 5.53030347021136777e+02 +Electron-deuteron_collision_frequency_at_point_14________________________ (freq_plasma_electron_deuteron_collision_profile14)_ 5.53115392565941306e+02 +Electron-deuteron_collision_frequency_at_point_15________________________ (freq_plasma_electron_deuteron_collision_profile15)_ 5.53206761333107238e+02 +Electron-deuteron_collision_frequency_at_point_16________________________ (freq_plasma_electron_deuteron_collision_profile16)_ 5.53304458379096104e+02 +Electron-deuteron_collision_frequency_at_point_17________________________ (freq_plasma_electron_deuteron_collision_profile17)_ 5.53408489112379925e+02 +Electron-deuteron_collision_frequency_at_point_18________________________ (freq_plasma_electron_deuteron_collision_profile18)_ 5.53518859294102981e+02 +Electron-deuteron_collision_frequency_at_point_19________________________ (freq_plasma_electron_deuteron_collision_profile19)_ 5.53635575038782235e+02 +Electron-deuteron_collision_frequency_at_point_20________________________ (freq_plasma_electron_deuteron_collision_profile20)_ 5.53758642815057783e+02 +Electron-deuteron_collision_frequency_at_point_21________________________ (freq_plasma_electron_deuteron_collision_profile21)_ 5.53888069446481154e+02 +Electron-deuteron_collision_frequency_at_point_22________________________ (freq_plasma_electron_deuteron_collision_profile22)_ 5.54023862112351708e+02 +Electron-deuteron_collision_frequency_at_point_23________________________ (freq_plasma_electron_deuteron_collision_profile23)_ 5.54166028348593500e+02 +Electron-deuteron_collision_frequency_at_point_24________________________ (freq_plasma_electron_deuteron_collision_profile24)_ 5.54314576048678873e+02 +Electron-deuteron_collision_frequency_at_point_25________________________ (freq_plasma_electron_deuteron_collision_profile25)_ 5.54469513464596275e+02 +Electron-deuteron_collision_frequency_at_point_26________________________ (freq_plasma_electron_deuteron_collision_profile26)_ 5.54630849207861274e+02 +Electron-deuteron_collision_frequency_at_point_27________________________ (freq_plasma_electron_deuteron_collision_profile27)_ 5.54798592250571801e+02 +Electron-deuteron_collision_frequency_at_point_28________________________ (freq_plasma_electron_deuteron_collision_profile28)_ 5.54972751926511819e+02 +Electron-deuteron_collision_frequency_at_point_29________________________ (freq_plasma_electron_deuteron_collision_profile29)_ 5.55153337932296495e+02 +Electron-deuteron_collision_frequency_at_point_30________________________ (freq_plasma_electron_deuteron_collision_profile30)_ 5.55340360328565453e+02 +Electron-deuteron_collision_frequency_at_point_31________________________ (freq_plasma_electron_deuteron_collision_profile31)_ 5.55533829541219006e+02 +Electron-deuteron_collision_frequency_at_point_32________________________ (freq_plasma_electron_deuteron_collision_profile32)_ 5.55733756362703957e+02 +Electron-deuteron_collision_frequency_at_point_33________________________ (freq_plasma_electron_deuteron_collision_profile33)_ 5.55940151953341569e+02 +Electron-deuteron_collision_frequency_at_point_34________________________ (freq_plasma_electron_deuteron_collision_profile34)_ 5.56153027842706479e+02 +Electron-deuteron_collision_frequency_at_point_35________________________ (freq_plasma_electron_deuteron_collision_profile35)_ 5.56372395931047322e+02 +Electron-deuteron_collision_frequency_at_point_36________________________ (freq_plasma_electron_deuteron_collision_profile36)_ 5.56598268490760006e+02 +Electron-deuteron_collision_frequency_at_point_37________________________ (freq_plasma_electron_deuteron_collision_profile37)_ 5.56830658167903266e+02 +Electron-deuteron_collision_frequency_at_point_38________________________ (freq_plasma_electron_deuteron_collision_profile38)_ 5.57069577983764816e+02 +Electron-deuteron_collision_frequency_at_point_39________________________ (freq_plasma_electron_deuteron_collision_profile39)_ 5.57315041336476156e+02 +Electron-deuteron_collision_frequency_at_point_40________________________ (freq_plasma_electron_deuteron_collision_profile40)_ 5.57567062002673197e+02 +Electron-deuteron_collision_frequency_at_point_41________________________ (freq_plasma_electron_deuteron_collision_profile41)_ 5.57825654139206904e+02 +Electron-deuteron_collision_frequency_at_point_42________________________ (freq_plasma_electron_deuteron_collision_profile42)_ 5.58090832284904195e+02 +Electron-deuteron_collision_frequency_at_point_43________________________ (freq_plasma_electron_deuteron_collision_profile43)_ 5.58362611362375674e+02 +Electron-deuteron_collision_frequency_at_point_44________________________ (freq_plasma_electron_deuteron_collision_profile44)_ 5.58641006679876568e+02 +Electron-deuteron_collision_frequency_at_point_45________________________ (freq_plasma_electron_deuteron_collision_profile45)_ 5.58926033933214285e+02 +Electron-deuteron_collision_frequency_at_point_46________________________ (freq_plasma_electron_deuteron_collision_profile46)_ 5.59217709207709049e+02 +Electron-deuteron_collision_frequency_at_point_47________________________ (freq_plasma_electron_deuteron_collision_profile47)_ 5.59516048980204914e+02 +Electron-deuteron_collision_frequency_at_point_48________________________ (freq_plasma_electron_deuteron_collision_profile48)_ 5.59821070121132266e+02 +Electron-deuteron_collision_frequency_at_point_49________________________ (freq_plasma_electron_deuteron_collision_profile49)_ 5.60132789896621603e+02 +Electron-deuteron_collision_frequency_at_point_50________________________ (freq_plasma_electron_deuteron_collision_profile50)_ 5.60451225970670976e+02 +Electron-deuteron_collision_frequency_at_point_51________________________ (freq_plasma_electron_deuteron_collision_profile51)_ 5.60776396407364700e+02 +Electron-deuteron_collision_frequency_at_point_52________________________ (freq_plasma_electron_deuteron_collision_profile52)_ 5.61108319673146866e+02 +Electron-deuteron_collision_frequency_at_point_53________________________ (freq_plasma_electron_deuteron_collision_profile53)_ 5.61447014639146914e+02 +Electron-deuteron_collision_frequency_at_point_54________________________ (freq_plasma_electron_deuteron_collision_profile54)_ 5.61792500583561718e+02 +Electron-deuteron_collision_frequency_at_point_55________________________ (freq_plasma_electron_deuteron_collision_profile55)_ 5.62144797194089733e+02 +Electron-deuteron_collision_frequency_at_point_56________________________ (freq_plasma_electron_deuteron_collision_profile56)_ 5.62503924570422214e+02 +Electron-deuteron_collision_frequency_at_point_57________________________ (freq_plasma_electron_deuteron_collision_profile57)_ 5.62869903226790825e+02 +Electron-deuteron_collision_frequency_at_point_58________________________ (freq_plasma_electron_deuteron_collision_profile58)_ 5.63242754094569364e+02 +Electron-deuteron_collision_frequency_at_point_59________________________ (freq_plasma_electron_deuteron_collision_profile59)_ 5.63622498524934826e+02 +Electron-deuteron_collision_frequency_at_point_60________________________ (freq_plasma_electron_deuteron_collision_profile60)_ 5.64009158291583276e+02 +Electron-deuteron_collision_frequency_at_point_61________________________ (freq_plasma_electron_deuteron_collision_profile61)_ 5.64402755593506299e+02 +Electron-deuteron_collision_frequency_at_point_62________________________ (freq_plasma_electron_deuteron_collision_profile62)_ 5.64803313057826244e+02 +Electron-deuteron_collision_frequency_at_point_63________________________ (freq_plasma_electron_deuteron_collision_profile63)_ 5.65210853742687164e+02 +Electron-deuteron_collision_frequency_at_point_64________________________ (freq_plasma_electron_deuteron_collision_profile64)_ 5.65625401140210101e+02 +Electron-deuteron_collision_frequency_at_point_65________________________ (freq_plasma_electron_deuteron_collision_profile65)_ 5.66046979179506707e+02 +Electron-deuteron_collision_frequency_at_point_66________________________ (freq_plasma_electron_deuteron_collision_profile66)_ 5.66475612229753324e+02 +Electron-deuteron_collision_frequency_at_point_67________________________ (freq_plasma_electron_deuteron_collision_profile67)_ 5.66911325103328750e+02 +Electron-deuteron_collision_frequency_at_point_68________________________ (freq_plasma_electron_deuteron_collision_profile68)_ 5.67354143059014518e+02 +Electron-deuteron_collision_frequency_at_point_69________________________ (freq_plasma_electron_deuteron_collision_profile69)_ 5.67804091805255780e+02 +Electron-deuteron_collision_frequency_at_point_70________________________ (freq_plasma_electron_deuteron_collision_profile70)_ 5.68261197503490166e+02 +Electron-deuteron_collision_frequency_at_point_71________________________ (freq_plasma_electron_deuteron_collision_profile71)_ 5.68725486771536907e+02 +Electron-deuteron_collision_frequency_at_point_72________________________ (freq_plasma_electron_deuteron_collision_profile72)_ 5.69196986687056324e+02 +Electron-deuteron_collision_frequency_at_point_73________________________ (freq_plasma_electron_deuteron_collision_profile73)_ 5.69675724791070365e+02 +Electron-deuteron_collision_frequency_at_point_74________________________ (freq_plasma_electron_deuteron_collision_profile74)_ 5.70161729091555117e+02 +Electron-deuteron_collision_frequency_at_point_75________________________ (freq_plasma_electron_deuteron_collision_profile75)_ 5.70655028067096282e+02 +Electron-deuteron_collision_frequency_at_point_76________________________ (freq_plasma_electron_deuteron_collision_profile76)_ 5.71155650670616751e+02 +Electron-deuteron_collision_frequency_at_point_77________________________ (freq_plasma_electron_deuteron_collision_profile77)_ 5.71663626333173056e+02 +Electron-deuteron_collision_frequency_at_point_78________________________ (freq_plasma_electron_deuteron_collision_profile78)_ 5.72178984967819815e+02 +Electron-deuteron_collision_frequency_at_point_79________________________ (freq_plasma_electron_deuteron_collision_profile79)_ 5.72701756973547845e+02 +Electron-deuteron_collision_frequency_at_point_80________________________ (freq_plasma_electron_deuteron_collision_profile80)_ 5.73231973239292870e+02 +Electron-deuteron_collision_frequency_at_point_81________________________ (freq_plasma_electron_deuteron_collision_profile81)_ 5.73769665148018134e+02 +Electron-deuteron_collision_frequency_at_point_82________________________ (freq_plasma_electron_deuteron_collision_profile82)_ 5.74314864580869312e+02 +Electron-deuteron_collision_frequency_at_point_83________________________ (freq_plasma_electron_deuteron_collision_profile83)_ 5.74867603921405021e+02 +Electron-deuteron_collision_frequency_at_point_84________________________ (freq_plasma_electron_deuteron_collision_profile84)_ 5.75427916059903623e+02 +Electron-deuteron_collision_frequency_at_point_85________________________ (freq_plasma_electron_deuteron_collision_profile85)_ 5.75995834397745512e+02 +Electron-deuteron_collision_frequency_at_point_86________________________ (freq_plasma_electron_deuteron_collision_profile86)_ 5.76571392851873156e+02 +Electron-deuteron_collision_frequency_at_point_87________________________ (freq_plasma_electron_deuteron_collision_profile87)_ 5.77154625859330963e+02 +Electron-deuteron_collision_frequency_at_point_88________________________ (freq_plasma_electron_deuteron_collision_profile88)_ 5.77745568381883231e+02 +Electron-deuteron_collision_frequency_at_point_89________________________ (freq_plasma_electron_deuteron_collision_profile89)_ 5.78344255910713173e+02 +Electron-deuteron_collision_frequency_at_point_90________________________ (freq_plasma_electron_deuteron_collision_profile90)_ 5.78950724471204808e+02 +Electron-deuteron_collision_frequency_at_point_91________________________ (freq_plasma_electron_deuteron_collision_profile91)_ 5.79565010627807283e+02 +Electron-deuteron_collision_frequency_at_point_92________________________ (freq_plasma_electron_deuteron_collision_profile92)_ 5.80187151488981272e+02 +Electron-deuteron_collision_frequency_at_point_93________________________ (freq_plasma_electron_deuteron_collision_profile93)_ 5.80817184712233598e+02 +Electron-deuteron_collision_frequency_at_point_94________________________ (freq_plasma_electron_deuteron_collision_profile94)_ 5.81455148509235642e+02 +Electron-deuteron_collision_frequency_at_point_95________________________ (freq_plasma_electron_deuteron_collision_profile95)_ 5.82101081651030313e+02 +Electron-deuteron_collision_frequency_at_point_96________________________ (freq_plasma_electron_deuteron_collision_profile96)_ 5.82755023473327356e+02 +Electron-deuteron_collision_frequency_at_point_97________________________ (freq_plasma_electron_deuteron_collision_profile97)_ 5.83417013881889147e+02 +Electron-deuteron_collision_frequency_at_point_98________________________ (freq_plasma_electron_deuteron_collision_profile98)_ 5.84087093358006200e+02 +Electron-deuteron_collision_frequency_at_point_99________________________ (freq_plasma_electron_deuteron_collision_profile99)_ 5.84765302964066109e+02 +Electron-deuteron_collision_frequency_at_point_100_______________________ (freq_plasma_electron_deuteron_collision_profile100)_ 5.85451684349216748e+02 +Electron-deuteron_collision_frequency_at_point_101_______________________ (freq_plasma_electron_deuteron_collision_profile101)_ 5.86146279755122578e+02 +Electron-deuteron_collision_frequency_at_point_102_______________________ (freq_plasma_electron_deuteron_collision_profile102)_ 5.86849132021818377e+02 +Electron-deuteron_collision_frequency_at_point_103_______________________ (freq_plasma_electron_deuteron_collision_profile103)_ 5.87560284593662573e+02 +Electron-deuteron_collision_frequency_at_point_104_______________________ (freq_plasma_electron_deuteron_collision_profile104)_ 5.88279781525384124e+02 +Electron-deuteron_collision_frequency_at_point_105_______________________ (freq_plasma_electron_deuteron_collision_profile105)_ 5.89007667488237644e+02 +Electron-deuteron_collision_frequency_at_point_106_______________________ (freq_plasma_electron_deuteron_collision_profile106)_ 5.89743987776253448e+02 +Electron-deuteron_collision_frequency_at_point_107_______________________ (freq_plasma_electron_deuteron_collision_profile107)_ 5.90488788312595375e+02 +Electron-deuteron_collision_frequency_at_point_108_______________________ (freq_plasma_electron_deuteron_collision_profile108)_ 5.91242115656021838e+02 +Electron-deuteron_collision_frequency_at_point_109_______________________ (freq_plasma_electron_deuteron_collision_profile109)_ 5.92004017007454763e+02 +Electron-deuteron_collision_frequency_at_point_110_______________________ (freq_plasma_electron_deuteron_collision_profile110)_ 5.92774540216653349e+02 +Electron-deuteron_collision_frequency_at_point_111_______________________ (freq_plasma_electron_deuteron_collision_profile111)_ 5.93553733789001853e+02 +Electron-deuteron_collision_frequency_at_point_112_______________________ (freq_plasma_electron_deuteron_collision_profile112)_ 5.94341646892406061e+02 +Electron-deuteron_collision_frequency_at_point_113_______________________ (freq_plasma_electron_deuteron_collision_profile113)_ 5.95138329364302422e+02 +Electron-deuteron_collision_frequency_at_point_114_______________________ (freq_plasma_electron_deuteron_collision_profile114)_ 5.95943831718783258e+02 +Electron-deuteron_collision_frequency_at_point_115_______________________ (freq_plasma_electron_deuteron_collision_profile115)_ 5.96758205153837139e+02 +Electron-deuteron_collision_frequency_at_point_116_______________________ (freq_plasma_electron_deuteron_collision_profile116)_ 5.97581501558708510e+02 +Electron-deuteron_collision_frequency_at_point_117_______________________ (freq_plasma_electron_deuteron_collision_profile117)_ 5.98413773521374992e+02 +Electron-deuteron_collision_frequency_at_point_118_______________________ (freq_plasma_electron_deuteron_collision_profile118)_ 5.99255074336149960e+02 +Electron-deuteron_collision_frequency_at_point_119_______________________ (freq_plasma_electron_deuteron_collision_profile119)_ 6.00105458011405290e+02 +Electron-deuteron_collision_frequency_at_point_120_______________________ (freq_plasma_electron_deuteron_collision_profile120)_ 6.00964979277419502e+02 +Electron-deuteron_collision_frequency_at_point_121_______________________ (freq_plasma_electron_deuteron_collision_profile121)_ 6.01833693594357328e+02 +Electron-deuteron_collision_frequency_at_point_122_______________________ (freq_plasma_electron_deuteron_collision_profile122)_ 6.02711657160374443e+02 +Electron-deuteron_collision_frequency_at_point_123_______________________ (freq_plasma_electron_deuteron_collision_profile123)_ 6.03598926919853852e+02 +Electron-deuteron_collision_frequency_at_point_124_______________________ (freq_plasma_electron_deuteron_collision_profile124)_ 6.04495560571778014e+02 +Electron-deuteron_collision_frequency_at_point_125_______________________ (freq_plasma_electron_deuteron_collision_profile125)_ 6.05401616578234211e+02 +Electron-deuteron_collision_frequency_at_point_126_______________________ (freq_plasma_electron_deuteron_collision_profile126)_ 6.06317154173057929e+02 +Electron-deuteron_collision_frequency_at_point_127_______________________ (freq_plasma_electron_deuteron_collision_profile127)_ 6.07242233370616418e+02 +Electron-deuteron_collision_frequency_at_point_128_______________________ (freq_plasma_electron_deuteron_collision_profile128)_ 6.08176914974734132e+02 +Electron-deuteron_collision_frequency_at_point_129_______________________ (freq_plasma_electron_deuteron_collision_profile129)_ 6.09121260587760503e+02 +Electron-deuteron_collision_frequency_at_point_130_______________________ (freq_plasma_electron_deuteron_collision_profile130)_ 6.10075332619786650e+02 +Electron-deuteron_collision_frequency_at_point_131_______________________ (freq_plasma_electron_deuteron_collision_profile131)_ 6.11039194298008624e+02 +Electron-deuteron_collision_frequency_at_point_132_______________________ (freq_plasma_electron_deuteron_collision_profile132)_ 6.12012909676242657e+02 +Electron-deuteron_collision_frequency_at_point_133_______________________ (freq_plasma_electron_deuteron_collision_profile133)_ 6.12996543644594112e+02 +Electron-deuteron_collision_frequency_at_point_134_______________________ (freq_plasma_electron_deuteron_collision_profile134)_ 6.13990161939280938e+02 +Electron-deuteron_collision_frequency_at_point_135_______________________ (freq_plasma_electron_deuteron_collision_profile135)_ 6.14993831152615826e+02 +Electron-deuteron_collision_frequency_at_point_136_______________________ (freq_plasma_electron_deuteron_collision_profile136)_ 6.16007618743151625e+02 +Electron-deuteron_collision_frequency_at_point_137_______________________ (freq_plasma_electron_deuteron_collision_profile137)_ 6.17031593045986483e+02 +Electron-deuteron_collision_frequency_at_point_138_______________________ (freq_plasma_electron_deuteron_collision_profile138)_ 6.18065823283236682e+02 +Electron-deuteron_collision_frequency_at_point_139_______________________ (freq_plasma_electron_deuteron_collision_profile139)_ 6.19110379574680792e+02 +Electron-deuteron_collision_frequency_at_point_140_______________________ (freq_plasma_electron_deuteron_collision_profile140)_ 6.20165332948568789e+02 +Electron-deuteron_collision_frequency_at_point_141_______________________ (freq_plasma_electron_deuteron_collision_profile141)_ 6.21230755352613414e+02 +Electron-deuteron_collision_frequency_at_point_142_______________________ (freq_plasma_electron_deuteron_collision_profile142)_ 6.22306719665152968e+02 +Electron-deuteron_collision_frequency_at_point_143_______________________ (freq_plasma_electron_deuteron_collision_profile143)_ 6.23393299706495327e+02 +Electron-deuteron_collision_frequency_at_point_144_______________________ (freq_plasma_electron_deuteron_collision_profile144)_ 6.24490570250446467e+02 +Electron-deuteron_collision_frequency_at_point_145_______________________ (freq_plasma_electron_deuteron_collision_profile145)_ 6.25598607036023964e+02 +Electron-deuteron_collision_frequency_at_point_146_______________________ (freq_plasma_electron_deuteron_collision_profile146)_ 6.26717486779359206e+02 +Electron-deuteron_collision_frequency_at_point_147_______________________ (freq_plasma_electron_deuteron_collision_profile147)_ 6.27847287185791060e+02 +Electron-deuteron_collision_frequency_at_point_148_______________________ (freq_plasma_electron_deuteron_collision_profile148)_ 6.28988086962156217e+02 +Electron-deuteron_collision_frequency_at_point_149_______________________ (freq_plasma_electron_deuteron_collision_profile149)_ 6.30139965829277457e+02 +Electron-deuteron_collision_frequency_at_point_150_______________________ (freq_plasma_electron_deuteron_collision_profile150)_ 6.31303004534654292e+02 +Electron-deuteron_collision_frequency_at_point_151_______________________ (freq_plasma_electron_deuteron_collision_profile151)_ 6.32477284865356069e+02 +Electron-deuteron_collision_frequency_at_point_152_______________________ (freq_plasma_electron_deuteron_collision_profile152)_ 6.33662889661128133e+02 +Electron-deuteron_collision_frequency_at_point_153_______________________ (freq_plasma_electron_deuteron_collision_profile153)_ 6.34859902827703877e+02 +Electron-deuteron_collision_frequency_at_point_154_______________________ (freq_plasma_electron_deuteron_collision_profile154)_ 6.36068409350340175e+02 +Electron-deuteron_collision_frequency_at_point_155_______________________ (freq_plasma_electron_deuteron_collision_profile155)_ 6.37288495307564062e+02 +Electron-deuteron_collision_frequency_at_point_156_______________________ (freq_plasma_electron_deuteron_collision_profile156)_ 6.38520247885147569e+02 +Electron-deuteron_collision_frequency_at_point_157_______________________ (freq_plasma_electron_deuteron_collision_profile157)_ 6.39763755390306414e+02 +Electron-deuteron_collision_frequency_at_point_158_______________________ (freq_plasma_electron_deuteron_collision_profile158)_ 6.41019107266130050e+02 +Electron-deuteron_collision_frequency_at_point_159_______________________ (freq_plasma_electron_deuteron_collision_profile159)_ 6.42286394106246007e+02 +Electron-deuteron_collision_frequency_at_point_160_______________________ (freq_plasma_electron_deuteron_collision_profile160)_ 6.43565707669721633e+02 +Electron-deuteron_collision_frequency_at_point_161_______________________ (freq_plasma_electron_deuteron_collision_profile161)_ 6.44857140896209444e+02 +Electron-deuteron_collision_frequency_at_point_162_______________________ (freq_plasma_electron_deuteron_collision_profile162)_ 6.46160787921336919e+02 +Electron-deuteron_collision_frequency_at_point_163_______________________ (freq_plasma_electron_deuteron_collision_profile163)_ 6.47476744092348213e+02 +Electron-deuteron_collision_frequency_at_point_164_______________________ (freq_plasma_electron_deuteron_collision_profile164)_ 6.48805105983999283e+02 +Electron-deuteron_collision_frequency_at_point_165_______________________ (freq_plasma_electron_deuteron_collision_profile165)_ 6.50145971414714495e+02 +Electron-deuteron_collision_frequency_at_point_166_______________________ (freq_plasma_electron_deuteron_collision_profile166)_ 6.51499439463003000e+02 +Electron-deuteron_collision_frequency_at_point_167_______________________ (freq_plasma_electron_deuteron_collision_profile167)_ 6.52865610484146941e+02 +Electron-deuteron_collision_frequency_at_point_168_______________________ (freq_plasma_electron_deuteron_collision_profile168)_ 6.54244586127159209e+02 +Electron-deuteron_collision_frequency_at_point_169_______________________ (freq_plasma_electron_deuteron_collision_profile169)_ 6.55636469352019276e+02 +Electron-deuteron_collision_frequency_at_point_170_______________________ (freq_plasma_electron_deuteron_collision_profile170)_ 6.57041364447192450e+02 +Electron-deuteron_collision_frequency_at_point_171_______________________ (freq_plasma_electron_deuteron_collision_profile171)_ 6.58459377047434259e+02 +Electron-deuteron_collision_frequency_at_point_172_______________________ (freq_plasma_electron_deuteron_collision_profile172)_ 6.59890614151885757e+02 +Electron-deuteron_collision_frequency_at_point_173_______________________ (freq_plasma_electron_deuteron_collision_profile173)_ 6.61335184142468847e+02 +Electron-deuteron_collision_frequency_at_point_174_______________________ (freq_plasma_electron_deuteron_collision_profile174)_ 6.62793196802578905e+02 +Electron-deuteron_collision_frequency_at_point_175_______________________ (freq_plasma_electron_deuteron_collision_profile175)_ 6.64264763336089572e+02 +Electron-deuteron_collision_frequency_at_point_176_______________________ (freq_plasma_electron_deuteron_collision_profile176)_ 6.65749996386664293e+02 +Electron-deuteron_collision_frequency_at_point_177_______________________ (freq_plasma_electron_deuteron_collision_profile177)_ 6.67249010057391729e+02 +Electron-deuteron_collision_frequency_at_point_178_______________________ (freq_plasma_electron_deuteron_collision_profile178)_ 6.68761919930737463e+02 +Electron-deuteron_collision_frequency_at_point_179_______________________ (freq_plasma_electron_deuteron_collision_profile179)_ 6.70288843088831072e+02 +Electron-deuteron_collision_frequency_at_point_180_______________________ (freq_plasma_electron_deuteron_collision_profile180)_ 6.71829898134083123e+02 +Electron-deuteron_collision_frequency_at_point_181_______________________ (freq_plasma_electron_deuteron_collision_profile181)_ 6.73385205210145614e+02 +Electron-deuteron_collision_frequency_at_point_182_______________________ (freq_plasma_electron_deuteron_collision_profile182)_ 6.74954886023215863e+02 +Electron-deuteron_collision_frequency_at_point_183_______________________ (freq_plasma_electron_deuteron_collision_profile183)_ 6.76539063863695446e+02 +Electron-deuteron_collision_frequency_at_point_184_______________________ (freq_plasma_electron_deuteron_collision_profile184)_ 6.78137863628203831e+02 +Electron-deuteron_collision_frequency_at_point_185_______________________ (freq_plasma_electron_deuteron_collision_profile185)_ 6.79751411841961612e+02 +Electron-deuteron_collision_frequency_at_point_186_______________________ (freq_plasma_electron_deuteron_collision_profile186)_ 6.81379836681540496e+02 +Electron-deuteron_collision_frequency_at_point_187_______________________ (freq_plasma_electron_deuteron_collision_profile187)_ 6.83023267997992207e+02 +Electron-deuteron_collision_frequency_at_point_188_______________________ (freq_plasma_electron_deuteron_collision_profile188)_ 6.84681837340362449e+02 +Electron-deuteron_collision_frequency_at_point_189_______________________ (freq_plasma_electron_deuteron_collision_profile189)_ 6.86355677979593111e+02 +Electron-deuteron_collision_frequency_at_point_190_______________________ (freq_plasma_electron_deuteron_collision_profile190)_ 6.88044924932825552e+02 +Electron-deuteron_collision_frequency_at_point_191_______________________ (freq_plasma_electron_deuteron_collision_profile191)_ 6.89749714988104529e+02 +Electron-deuteron_collision_frequency_at_point_192_______________________ (freq_plasma_electron_deuteron_collision_profile192)_ 6.91470186729497982e+02 +Electron-deuteron_collision_frequency_at_point_193_______________________ (freq_plasma_electron_deuteron_collision_profile193)_ 6.93206480562630304e+02 +Electron-deuteron_collision_frequency_at_point_194_______________________ (freq_plasma_electron_deuteron_collision_profile194)_ 6.94958738740647618e+02 +Electron-deuteron_collision_frequency_at_point_195_______________________ (freq_plasma_electron_deuteron_collision_profile195)_ 6.96727105390612451e+02 +Electron-deuteron_collision_frequency_at_point_196_______________________ (freq_plasma_electron_deuteron_collision_profile196)_ 6.98511726540340987e+02 +Electron-deuteron_collision_frequency_at_point_197_______________________ (freq_plasma_electron_deuteron_collision_profile197)_ 7.00312750145689620e+02 +Electron-deuteron_collision_frequency_at_point_198_______________________ (freq_plasma_electron_deuteron_collision_profile198)_ 7.02130326118298967e+02 +Electron-deuteron_collision_frequency_at_point_199_______________________ (freq_plasma_electron_deuteron_collision_profile199)_ 7.03964606353798899e+02 +Electron-deuteron_collision_frequency_at_point_200_______________________ (freq_plasma_electron_deuteron_collision_profile200)_ 7.05815744760493089e+02 +Electron-deuteron_collision_frequency_at_point_201_______________________ (freq_plasma_electron_deuteron_collision_profile201)_ 7.07683897288518665e+02 +Electron-deuteron_collision_frequency_at_point_202_______________________ (freq_plasma_electron_deuteron_collision_profile202)_ 7.09569221959499146e+02 +Electron-deuteron_collision_frequency_at_point_203_______________________ (freq_plasma_electron_deuteron_collision_profile203)_ 7.11471878896694989e+02 +Electron-deuteron_collision_frequency_at_point_204_______________________ (freq_plasma_electron_deuteron_collision_profile204)_ 7.13392030355659699e+02 +Electron-deuteron_collision_frequency_at_point_205_______________________ (freq_plasma_electron_deuteron_collision_profile205)_ 7.15329840755415034e+02 +Electron-deuteron_collision_frequency_at_point_206_______________________ (freq_plasma_electron_deuteron_collision_profile206)_ 7.17285476710147691e+02 +Electron-deuteron_collision_frequency_at_point_207_______________________ (freq_plasma_electron_deuteron_collision_profile207)_ 7.19259107061441568e+02 +Electron-deuteron_collision_frequency_at_point_208_______________________ (freq_plasma_electron_deuteron_collision_profile208)_ 7.21250902911056755e+02 +Electron-deuteron_collision_frequency_at_point_209_______________________ (freq_plasma_electron_deuteron_collision_profile209)_ 7.23261037654255119e+02 +Electron-deuteron_collision_frequency_at_point_210_______________________ (freq_plasma_electron_deuteron_collision_profile210)_ 7.25289687013694675e+02 +Electron-deuteron_collision_frequency_at_point_211_______________________ (freq_plasma_electron_deuteron_collision_profile211)_ 7.27337029073893177e+02 +Electron-deuteron_collision_frequency_at_point_212_______________________ (freq_plasma_electron_deuteron_collision_profile212)_ 7.29403244316276528e+02 +Electron-deuteron_collision_frequency_at_point_213_______________________ (freq_plasma_electron_deuteron_collision_profile213)_ 7.31488515654818229e+02 +Electron-deuteron_collision_frequency_at_point_214_______________________ (freq_plasma_electron_deuteron_collision_profile214)_ 7.33593028472281844e+02 +Electron-deuteron_collision_frequency_at_point_215_______________________ (freq_plasma_electron_deuteron_collision_profile215)_ 7.35716970657079628e+02 +Electron-deuteron_collision_frequency_at_point_216_______________________ (freq_plasma_electron_deuteron_collision_profile216)_ 7.37860532640753604e+02 +Electron-deuteron_collision_frequency_at_point_217_______________________ (freq_plasma_electron_deuteron_collision_profile217)_ 7.40023907436090326e+02 +Electron-deuteron_collision_frequency_at_point_218_______________________ (freq_plasma_electron_deuteron_collision_profile218)_ 7.42207290675886725e+02 +Electron-deuteron_collision_frequency_at_point_219_______________________ (freq_plasma_electron_deuteron_collision_profile219)_ 7.44410880652370338e+02 +Electron-deuteron_collision_frequency_at_point_220_______________________ (freq_plasma_electron_deuteron_collision_profile220)_ 7.46634878357286198e+02 +Electron-deuteron_collision_frequency_at_point_221_______________________ (freq_plasma_electron_deuteron_collision_profile221)_ 7.48879487522668569e+02 +Electron-deuteron_collision_frequency_at_point_222_______________________ (freq_plasma_electron_deuteron_collision_profile222)_ 7.51144914662304586e+02 +Electron-deuteron_collision_frequency_at_point_223_______________________ (freq_plasma_electron_deuteron_collision_profile223)_ 7.53431369113898882e+02 +Electron-deuteron_collision_frequency_at_point_224_______________________ (freq_plasma_electron_deuteron_collision_profile224)_ 7.55739063081957056e+02 +Electron-deuteron_collision_frequency_at_point_225_______________________ (freq_plasma_electron_deuteron_collision_profile225)_ 7.58068211681397315e+02 +Electron-deuteron_collision_frequency_at_point_226_______________________ (freq_plasma_electron_deuteron_collision_profile226)_ 7.60419032981903797e+02 +Electron-deuteron_collision_frequency_at_point_227_______________________ (freq_plasma_electron_deuteron_collision_profile227)_ 7.62791748053032734e+02 +Electron-deuteron_collision_frequency_at_point_228_______________________ (freq_plasma_electron_deuteron_collision_profile228)_ 7.65186581010086798e+02 +Electron-deuteron_collision_frequency_at_point_229_______________________ (freq_plasma_electron_deuteron_collision_profile229)_ 7.67603759060766833e+02 +Electron-deuteron_collision_frequency_at_point_230_______________________ (freq_plasma_electron_deuteron_collision_profile230)_ 7.70043512552619404e+02 +Electron-deuteron_collision_frequency_at_point_231_______________________ (freq_plasma_electron_deuteron_collision_profile231)_ 7.72506075021290940e+02 +Electron-deuteron_collision_frequency_at_point_232_______________________ (freq_plasma_electron_deuteron_collision_profile232)_ 7.74991683239596910e+02 +Electron-deuteron_collision_frequency_at_point_233_______________________ (freq_plasma_electron_deuteron_collision_profile233)_ 7.77500577267433528e+02 +Electron-deuteron_collision_frequency_at_point_234_______________________ (freq_plasma_electron_deuteron_collision_profile234)_ 7.80033000502531422e+02 +Electron-deuteron_collision_frequency_at_point_235_______________________ (freq_plasma_electron_deuteron_collision_profile235)_ 7.82589199732069460e+02 +Electron-deuteron_collision_frequency_at_point_236_______________________ (freq_plasma_electron_deuteron_collision_profile236)_ 7.85169425185173395e+02 +Electron-deuteron_collision_frequency_at_point_237_______________________ (freq_plasma_electron_deuteron_collision_profile237)_ 7.87773930586297638e+02 +Electron-deuteron_collision_frequency_at_point_238_______________________ (freq_plasma_electron_deuteron_collision_profile238)_ 7.90402973209516176e+02 +Electron-deuteron_collision_frequency_at_point_239_______________________ (freq_plasma_electron_deuteron_collision_profile239)_ 7.93056813933736748e+02 +Electron-deuteron_collision_frequency_at_point_240_______________________ (freq_plasma_electron_deuteron_collision_profile240)_ 7.95735717298842815e+02 +Electron-deuteron_collision_frequency_at_point_241_______________________ (freq_plasma_electron_deuteron_collision_profile241)_ 7.98439951562796523e+02 +Electron-deuteron_collision_frequency_at_point_242_______________________ (freq_plasma_electron_deuteron_collision_profile242)_ 8.01169788759702442e+02 +Electron-deuteron_collision_frequency_at_point_243_______________________ (freq_plasma_electron_deuteron_collision_profile243)_ 8.03925504758852071e+02 +Electron-deuteron_collision_frequency_at_point_244_______________________ (freq_plasma_electron_deuteron_collision_profile244)_ 8.06707379324770727e+02 +Electron-deuteron_collision_frequency_at_point_245_______________________ (freq_plasma_electron_deuteron_collision_profile245)_ 8.09515696178277608e+02 +Electron-deuteron_collision_frequency_at_point_246_______________________ (freq_plasma_electron_deuteron_collision_profile246)_ 8.12350743058570060e+02 +Electron-deuteron_collision_frequency_at_point_247_______________________ (freq_plasma_electron_deuteron_collision_profile247)_ 8.15212811786362408e+02 +Electron-deuteron_collision_frequency_at_point_248_______________________ (freq_plasma_electron_deuteron_collision_profile248)_ 8.18102198328079794e+02 +Electron-deuteron_collision_frequency_at_point_249_______________________ (freq_plasma_electron_deuteron_collision_profile249)_ 8.21019202861136478e+02 +Electron-deuteron_collision_frequency_at_point_250_______________________ (freq_plasma_electron_deuteron_collision_profile250)_ 8.23964129840305077e+02 +Electron-deuteron_collision_frequency_at_point_251_______________________ (freq_plasma_electron_deuteron_collision_profile251)_ 8.26937288065203006e+02 +Electron-deuteron_collision_frequency_at_point_252_______________________ (freq_plasma_electron_deuteron_collision_profile252)_ 8.29938990748902143e+02 +Electron-deuteron_collision_frequency_at_point_253_______________________ (freq_plasma_electron_deuteron_collision_profile253)_ 8.32969555587692525e+02 +Electron-deuteron_collision_frequency_at_point_254_______________________ (freq_plasma_electron_deuteron_collision_profile254)_ 8.36029304831998274e+02 +Electron-deuteron_collision_frequency_at_point_255_______________________ (freq_plasma_electron_deuteron_collision_profile255)_ 8.39118565358486080e+02 +Electron-deuteron_collision_frequency_at_point_256_______________________ (freq_plasma_electron_deuteron_collision_profile256)_ 8.42237668743360473e+02 +Electron-deuteron_collision_frequency_at_point_257_______________________ (freq_plasma_electron_deuteron_collision_profile257)_ 8.45386951336880657e+02 +Electron-deuteron_collision_frequency_at_point_258_______________________ (freq_plasma_electron_deuteron_collision_profile258)_ 8.48566754339105842e+02 +Electron-deuteron_collision_frequency_at_point_259_______________________ (freq_plasma_electron_deuteron_collision_profile259)_ 8.51777423876889657e+02 +Electron-deuteron_collision_frequency_at_point_260_______________________ (freq_plasma_electron_deuteron_collision_profile260)_ 8.55019311082143645e+02 +Electron-deuteron_collision_frequency_at_point_261_______________________ (freq_plasma_electron_deuteron_collision_profile261)_ 8.58292772171381216e+02 +Electron-deuteron_collision_frequency_at_point_262_______________________ (freq_plasma_electron_deuteron_collision_profile262)_ 8.61598168526564336e+02 +Electron-deuteron_collision_frequency_at_point_263_______________________ (freq_plasma_electron_deuteron_collision_profile263)_ 8.64935866777267279e+02 +Electron-deuteron_collision_frequency_at_point_264_______________________ (freq_plasma_electron_deuteron_collision_profile264)_ 8.68306238884176310e+02 +Electron-deuteron_collision_frequency_at_point_265_______________________ (freq_plasma_electron_deuteron_collision_profile265)_ 8.71709662223941791e+02 +Electron-deuteron_collision_frequency_at_point_266_______________________ (freq_plasma_electron_deuteron_collision_profile266)_ 8.75146519675396235e+02 +Electron-deuteron_collision_frequency_at_point_267_______________________ (freq_plasma_electron_deuteron_collision_profile267)_ 8.78617199707163081e+02 +Electron-deuteron_collision_frequency_at_point_268_______________________ (freq_plasma_electron_deuteron_collision_profile268)_ 8.82122096466660196e+02 +Electron-deuteron_collision_frequency_at_point_269_______________________ (freq_plasma_electron_deuteron_collision_profile269)_ 8.85661609870533880e+02 +Electron-deuteron_collision_frequency_at_point_270_______________________ (freq_plasma_electron_deuteron_collision_profile270)_ 8.89236145696508061e+02 +Electron-deuteron_collision_frequency_at_point_271_______________________ (freq_plasma_electron_deuteron_collision_profile271)_ 8.92846115676707882e+02 +Electron-deuteron_collision_frequency_at_point_272_______________________ (freq_plasma_electron_deuteron_collision_profile272)_ 8.96491937592424165e+02 +Electron-deuteron_collision_frequency_at_point_273_______________________ (freq_plasma_electron_deuteron_collision_profile273)_ 9.00174035370378647e+02 +Electron-deuteron_collision_frequency_at_point_274_______________________ (freq_plasma_electron_deuteron_collision_profile274)_ 9.03892839180467945e+02 +Electron-deuteron_collision_frequency_at_point_275_______________________ (freq_plasma_electron_deuteron_collision_profile275)_ 9.07648785535033312e+02 +Electron-deuteron_collision_frequency_at_point_276_______________________ (freq_plasma_electron_deuteron_collision_profile276)_ 9.11442317389635605e+02 +Electron-deuteron_collision_frequency_at_point_277_______________________ (freq_plasma_electron_deuteron_collision_profile277)_ 9.15273884245378213e+02 +Electron-deuteron_collision_frequency_at_point_278_______________________ (freq_plasma_electron_deuteron_collision_profile278)_ 9.19143942252774877e+02 +Electron-deuteron_collision_frequency_at_point_279_______________________ (freq_plasma_electron_deuteron_collision_profile279)_ 9.23052954317176614e+02 +Electron-deuteron_collision_frequency_at_point_280_______________________ (freq_plasma_electron_deuteron_collision_profile280)_ 9.27001390205768530e+02 +Electron-deuteron_collision_frequency_at_point_281_______________________ (freq_plasma_electron_deuteron_collision_profile281)_ 9.30989726656150879e+02 +Electron-deuteron_collision_frequency_at_point_282_______________________ (freq_plasma_electron_deuteron_collision_profile282)_ 9.35018447486507284e+02 +Electron-deuteron_collision_frequency_at_point_283_______________________ (freq_plasma_electron_deuteron_collision_profile283)_ 9.39088043707373231e+02 +Electron-deuteron_collision_frequency_at_point_284_______________________ (freq_plasma_electron_deuteron_collision_profile284)_ 9.43199013635008555e+02 +Electron-deuteron_collision_frequency_at_point_285_______________________ (freq_plasma_electron_deuteron_collision_profile285)_ 9.47351863006383269e+02 +Electron-deuteron_collision_frequency_at_point_286_______________________ (freq_plasma_electron_deuteron_collision_profile286)_ 9.51547105095780125e+02 +Electron-deuteron_collision_frequency_at_point_287_______________________ (freq_plasma_electron_deuteron_collision_profile287)_ 9.55785260833014604e+02 +Electron-deuteron_collision_frequency_at_point_288_______________________ (freq_plasma_electron_deuteron_collision_profile288)_ 9.60066858923280734e+02 +Electron-deuteron_collision_frequency_at_point_289_______________________ (freq_plasma_electron_deuteron_collision_profile289)_ 9.64392435968615359e+02 +Electron-deuteron_collision_frequency_at_point_290_______________________ (freq_plasma_electron_deuteron_collision_profile290)_ 9.68762536590988361e+02 +Electron-deuteron_collision_frequency_at_point_291_______________________ (freq_plasma_electron_deuteron_collision_profile291)_ 9.73177713557004722e+02 +Electron-deuteron_collision_frequency_at_point_292_______________________ (freq_plasma_electron_deuteron_collision_profile292)_ 9.77638527904229363e+02 +Electron-deuteron_collision_frequency_at_point_293_______________________ (freq_plasma_electron_deuteron_collision_profile293)_ 9.82145549069106551e+02 +Electron-deuteron_collision_frequency_at_point_294_______________________ (freq_plasma_electron_deuteron_collision_profile294)_ 9.86699355016488198e+02 +Electron-deuteron_collision_frequency_at_point_295_______________________ (freq_plasma_electron_deuteron_collision_profile295)_ 9.91300532370737869e+02 +Electron-deuteron_collision_frequency_at_point_296_______________________ (freq_plasma_electron_deuteron_collision_profile296)_ 9.95949676548412413e+02 +Electron-deuteron_collision_frequency_at_point_297_______________________ (freq_plasma_electron_deuteron_collision_profile297)_ 1.00064739189249451e+03 +Electron-deuteron_collision_frequency_at_point_298_______________________ (freq_plasma_electron_deuteron_collision_profile298)_ 1.00539429180816319e+03 +Electron-deuteron_collision_frequency_at_point_299_______________________ (freq_plasma_electron_deuteron_collision_profile299)_ 1.01019099890007078e+03 +Electron-deuteron_collision_frequency_at_point_300_______________________ (freq_plasma_electron_deuteron_collision_profile300)_ 1.01503814511111011e+03 +Electron-deuteron_collision_frequency_at_point_301_______________________ (freq_plasma_electron_deuteron_collision_profile301)_ 1.01993637186263231e+03 +Electron-deuteron_collision_frequency_at_point_302_______________________ (freq_plasma_electron_deuteron_collision_profile302)_ 1.02488633019609256e+03 +Electron-deuteron_collision_frequency_at_point_303_______________________ (freq_plasma_electron_deuteron_collision_profile303)_ 1.02988868091607196e+03 +Electron-deuteron_collision_frequency_at_point_304_______________________ (freq_plasma_electron_deuteron_collision_profile304)_ 1.03494409473464839e+03 +Electron-deuteron_collision_frequency_at_point_305_______________________ (freq_plasma_electron_deuteron_collision_profile305)_ 1.04005325241705691e+03 +Electron-deuteron_collision_frequency_at_point_306_______________________ (freq_plasma_electron_deuteron_collision_profile306)_ 1.04521684492859595e+03 +Electron-deuteron_collision_frequency_at_point_307_______________________ (freq_plasma_electron_deuteron_collision_profile307)_ 1.05043557358272392e+03 +Electron-deuteron_collision_frequency_at_point_308_______________________ (freq_plasma_electron_deuteron_collision_profile308)_ 1.05571015019027413e+03 +Electron-deuteron_collision_frequency_at_point_309_______________________ (freq_plasma_electron_deuteron_collision_profile309)_ 1.06104129720972765e+03 +Electron-deuteron_collision_frequency_at_point_310_______________________ (freq_plasma_electron_deuteron_collision_profile310)_ 1.06642974789846949e+03 +Electron-deuteron_collision_frequency_at_point_311_______________________ (freq_plasma_electron_deuteron_collision_profile311)_ 1.07187624646494419e+03 +Electron-deuteron_collision_frequency_at_point_312_______________________ (freq_plasma_electron_deuteron_collision_profile312)_ 1.07738154822162323e+03 +Electron-deuteron_collision_frequency_at_point_313_______________________ (freq_plasma_electron_deuteron_collision_profile313)_ 1.08294641973868374e+03 +Electron-deuteron_collision_frequency_at_point_314_______________________ (freq_plasma_electron_deuteron_collision_profile314)_ 1.08857163899830971e+03 +Electron-deuteron_collision_frequency_at_point_315_______________________ (freq_plasma_electron_deuteron_collision_profile315)_ 1.09425799554948026e+03 +Electron-deuteron_collision_frequency_at_point_316_______________________ (freq_plasma_electron_deuteron_collision_profile316)_ 1.10000629066313945e+03 +Electron-deuteron_collision_frequency_at_point_317_______________________ (freq_plasma_electron_deuteron_collision_profile317)_ 1.10581733748762008e+03 +Electron-deuteron_collision_frequency_at_point_318_______________________ (freq_plasma_electron_deuteron_collision_profile318)_ 1.11169196120415768e+03 +Electron-deuteron_collision_frequency_at_point_319_______________________ (freq_plasma_electron_deuteron_collision_profile319)_ 1.11763099918236753e+03 +Electron-deuteron_collision_frequency_at_point_320_______________________ (freq_plasma_electron_deuteron_collision_profile320)_ 1.12363530113550814e+03 +Electron-deuteron_collision_frequency_at_point_321_______________________ (freq_plasma_electron_deuteron_collision_profile321)_ 1.12970572927535090e+03 +Electron-deuteron_collision_frequency_at_point_322_______________________ (freq_plasma_electron_deuteron_collision_profile322)_ 1.13584315846647996e+03 +Electron-deuteron_collision_frequency_at_point_323_______________________ (freq_plasma_electron_deuteron_collision_profile323)_ 1.14204847637980561e+03 +Electron-deuteron_collision_frequency_at_point_324_______________________ (freq_plasma_electron_deuteron_collision_profile324)_ 1.14832258364508743e+03 +Electron-deuteron_collision_frequency_at_point_325_______________________ (freq_plasma_electron_deuteron_collision_profile325)_ 1.15466639400221834e+03 +Electron-deuteron_collision_frequency_at_point_326_______________________ (freq_plasma_electron_deuteron_collision_profile326)_ 1.16108083445103557e+03 +Electron-deuteron_collision_frequency_at_point_327_______________________ (freq_plasma_electron_deuteron_collision_profile327)_ 1.16756684539937646e+03 +Electron-deuteron_collision_frequency_at_point_328_______________________ (freq_plasma_electron_deuteron_collision_profile328)_ 1.17412538080911372e+03 +Electron-deuteron_collision_frequency_at_point_329_______________________ (freq_plasma_electron_deuteron_collision_profile329)_ 1.18075740833984196e+03 +Electron-deuteron_collision_frequency_at_point_330_______________________ (freq_plasma_electron_deuteron_collision_profile330)_ 1.18746390948990984e+03 +Electron-deuteron_collision_frequency_at_point_331_______________________ (freq_plasma_electron_deuteron_collision_profile331)_ 1.19424587973443499e+03 +Electron-deuteron_collision_frequency_at_point_332_______________________ (freq_plasma_electron_deuteron_collision_profile332)_ 1.20110432865994130e+03 +Electron-deuteron_collision_frequency_at_point_333_______________________ (freq_plasma_electron_deuteron_collision_profile333)_ 1.20804028009522426e+03 +Electron-deuteron_collision_frequency_at_point_334_______________________ (freq_plasma_electron_deuteron_collision_profile334)_ 1.21505477223800949e+03 +Electron-deuteron_collision_frequency_at_point_335_______________________ (freq_plasma_electron_deuteron_collision_profile335)_ 1.22214885777696645e+03 +Electron-deuteron_collision_frequency_at_point_336_______________________ (freq_plasma_electron_deuteron_collision_profile336)_ 1.22932360400860330e+03 +Electron-deuteron_collision_frequency_at_point_337_______________________ (freq_plasma_electron_deuteron_collision_profile337)_ 1.23658009294851377e+03 +Electron-deuteron_collision_frequency_at_point_338_______________________ (freq_plasma_electron_deuteron_collision_profile338)_ 1.24391942143645861e+03 +Electron-deuteron_collision_frequency_at_point_339_______________________ (freq_plasma_electron_deuteron_collision_profile339)_ 1.25134270123468650e+03 +Electron-deuteron_collision_frequency_at_point_340_______________________ (freq_plasma_electron_deuteron_collision_profile340)_ 1.25885105911888195e+03 +Electron-deuteron_collision_frequency_at_point_341_______________________ (freq_plasma_electron_deuteron_collision_profile341)_ 1.26644563696109776e+03 +Electron-deuteron_collision_frequency_at_point_342_______________________ (freq_plasma_electron_deuteron_collision_profile342)_ 1.27412759180397279e+03 +Electron-deuteron_collision_frequency_at_point_343_______________________ (freq_plasma_electron_deuteron_collision_profile343)_ 1.28189809592548545e+03 +Electron-deuteron_collision_frequency_at_point_344_______________________ (freq_plasma_electron_deuteron_collision_profile344)_ 1.28975833689347860e+03 +Electron-deuteron_collision_frequency_at_point_345_______________________ (freq_plasma_electron_deuteron_collision_profile345)_ 1.29770951760911271e+03 +Electron-deuteron_collision_frequency_at_point_346_______________________ (freq_plasma_electron_deuteron_collision_profile346)_ 1.30575285633835256e+03 +Electron-deuteron_collision_frequency_at_point_347_______________________ (freq_plasma_electron_deuteron_collision_profile347)_ 1.31388958673057323e+03 +Electron-deuteron_collision_frequency_at_point_348_______________________ (freq_plasma_electron_deuteron_collision_profile348)_ 1.32212095782325605e+03 +Electron-deuteron_collision_frequency_at_point_349_______________________ (freq_plasma_electron_deuteron_collision_profile349)_ 1.33044823403174883e+03 +Electron-deuteron_collision_frequency_at_point_350_______________________ (freq_plasma_electron_deuteron_collision_profile350)_ 1.33887269512293005e+03 +Electron-deuteron_collision_frequency_at_point_351_______________________ (freq_plasma_electron_deuteron_collision_profile351)_ 1.34739563617162321e+03 +Electron-deuteron_collision_frequency_at_point_352_______________________ (freq_plasma_electron_deuteron_collision_profile352)_ 1.35601836749845324e+03 +Electron-deuteron_collision_frequency_at_point_353_______________________ (freq_plasma_electron_deuteron_collision_profile353)_ 1.36474221458785269e+03 +Electron-deuteron_collision_frequency_at_point_354_______________________ (freq_plasma_electron_deuteron_collision_profile354)_ 1.37356851798473599e+03 +Electron-deuteron_collision_frequency_at_point_355_______________________ (freq_plasma_electron_deuteron_collision_profile355)_ 1.38249863316838832e+03 +Electron-deuteron_collision_frequency_at_point_356_______________________ (freq_plasma_electron_deuteron_collision_profile356)_ 1.39153393040192327e+03 +Electron-deuteron_collision_frequency_at_point_357_______________________ (freq_plasma_electron_deuteron_collision_profile357)_ 1.40067579455564487e+03 +Electron-deuteron_collision_frequency_at_point_358_______________________ (freq_plasma_electron_deuteron_collision_profile358)_ 1.40992562490248679e+03 +Electron-deuteron_collision_frequency_at_point_359_______________________ (freq_plasma_electron_deuteron_collision_profile359)_ 1.41928483488365168e+03 +Electron-deuteron_collision_frequency_at_point_360_______________________ (freq_plasma_electron_deuteron_collision_profile360)_ 1.42875485184239460e+03 +Electron-deuteron_collision_frequency_at_point_361_______________________ (freq_plasma_electron_deuteron_collision_profile361)_ 1.43833711672385311e+03 +Electron-deuteron_collision_frequency_at_point_362_______________________ (freq_plasma_electron_deuteron_collision_profile362)_ 1.44803308373860227e+03 +Electron-deuteron_collision_frequency_at_point_363_______________________ (freq_plasma_electron_deuteron_collision_profile363)_ 1.45784421998758944e+03 +Electron-deuteron_collision_frequency_at_point_364_______________________ (freq_plasma_electron_deuteron_collision_profile364)_ 1.46777200504584471e+03 +Electron-deuteron_collision_frequency_at_point_365_______________________ (freq_plasma_electron_deuteron_collision_profile365)_ 1.47781793050232613e+03 +Electron-deuteron_collision_frequency_at_point_366_______________________ (freq_plasma_electron_deuteron_collision_profile366)_ 1.48798349945299469e+03 +Electron-deuteron_collision_frequency_at_point_367_______________________ (freq_plasma_electron_deuteron_collision_profile367)_ 1.49827022594413393e+03 +Electron-deuteron_collision_frequency_at_point_368_______________________ (freq_plasma_electron_deuteron_collision_profile368)_ 1.50867963436268224e+03 +Electron-deuteron_collision_frequency_at_point_369_______________________ (freq_plasma_electron_deuteron_collision_profile369)_ 1.51921325877021536e+03 +Electron-deuteron_collision_frequency_at_point_370_______________________ (freq_plasma_electron_deuteron_collision_profile370)_ 1.52987264217696361e+03 +Electron-deuteron_collision_frequency_at_point_371_______________________ (freq_plasma_electron_deuteron_collision_profile371)_ 1.54065933575208692e+03 +Electron-deuteron_collision_frequency_at_point_372_______________________ (freq_plasma_electron_deuteron_collision_profile372)_ 1.55157489796616915e+03 +Electron-deuteron_collision_frequency_at_point_373_______________________ (freq_plasma_electron_deuteron_collision_profile373)_ 1.56262089366169562e+03 +Electron-deuteron_collision_frequency_at_point_374_______________________ (freq_plasma_electron_deuteron_collision_profile374)_ 1.57379889304697781e+03 +Electron-deuteron_collision_frequency_at_point_375_______________________ (freq_plasma_electron_deuteron_collision_profile375)_ 1.58511047060880742e+03 +Electron-deuteron_collision_frequency_at_point_376_______________________ (freq_plasma_electron_deuteron_collision_profile376)_ 1.59655720393874094e+03 +Electron-deuteron_collision_frequency_at_point_377_______________________ (freq_plasma_electron_deuteron_collision_profile377)_ 1.60814067246772788e+03 +Electron-deuteron_collision_frequency_at_point_378_______________________ (freq_plasma_electron_deuteron_collision_profile378)_ 1.61986245610340279e+03 +Electron-deuteron_collision_frequency_at_point_379_______________________ (freq_plasma_electron_deuteron_collision_profile379)_ 1.63172413376409827e+03 +Electron-deuteron_collision_frequency_at_point_380_______________________ (freq_plasma_electron_deuteron_collision_profile380)_ 1.64372728180322656e+03 +Electron-deuteron_collision_frequency_at_point_381_______________________ (freq_plasma_electron_deuteron_collision_profile381)_ 1.65587347231739022e+03 +Electron-deuteron_collision_frequency_at_point_382_______________________ (freq_plasma_electron_deuteron_collision_profile382)_ 1.66816427133112484e+03 +Electron-deuteron_collision_frequency_at_point_383_______________________ (freq_plasma_electron_deuteron_collision_profile383)_ 1.68060123685080544e+03 +Electron-deuteron_collision_frequency_at_point_384_______________________ (freq_plasma_electron_deuteron_collision_profile384)_ 1.69318591677983227e+03 +Electron-deuteron_collision_frequency_at_point_385_______________________ (freq_plasma_electron_deuteron_collision_profile385)_ 1.70591984668670352e+03 +Electron-deuteron_collision_frequency_at_point_386_______________________ (freq_plasma_electron_deuteron_collision_profile386)_ 1.71880454741718518e+03 +Electron-deuteron_collision_frequency_at_point_387_______________________ (freq_plasma_electron_deuteron_collision_profile387)_ 1.73184152254118862e+03 +Electron-deuteron_collision_frequency_at_point_388_______________________ (freq_plasma_electron_deuteron_collision_profile388)_ 1.74503225562451348e+03 +Electron-deuteron_collision_frequency_at_point_389_______________________ (freq_plasma_electron_deuteron_collision_profile389)_ 1.75837820731498641e+03 +Electron-deuteron_collision_frequency_at_point_390_______________________ (freq_plasma_electron_deuteron_collision_profile390)_ 1.77188081223198947e+03 +Electron-deuteron_collision_frequency_at_point_391_______________________ (freq_plasma_electron_deuteron_collision_profile391)_ 1.78554147564766595e+03 +Electron-deuteron_collision_frequency_at_point_392_______________________ (freq_plasma_electron_deuteron_collision_profile392)_ 1.79936156994751605e+03 +Electron-deuteron_collision_frequency_at_point_393_______________________ (freq_plasma_electron_deuteron_collision_profile393)_ 1.81334243085729895e+03 +Electron-deuteron_collision_frequency_at_point_394_______________________ (freq_plasma_electron_deuteron_collision_profile394)_ 1.82748535342250125e+03 +Electron-deuteron_collision_frequency_at_point_395_______________________ (freq_plasma_electron_deuteron_collision_profile395)_ 1.84179158772577625e+03 +Electron-deuteron_collision_frequency_at_point_396_______________________ (freq_plasma_electron_deuteron_collision_profile396)_ 1.85626233432697813e+03 +Electron-deuteron_collision_frequency_at_point_397_______________________ (freq_plasma_electron_deuteron_collision_profile397)_ 1.87089873940950997e+03 +Electron-deuteron_collision_frequency_at_point_398_______________________ (freq_plasma_electron_deuteron_collision_profile398)_ 1.88570188961580016e+03 +Electron-deuteron_collision_frequency_at_point_399_______________________ (freq_plasma_electron_deuteron_collision_profile399)_ 1.90067280655370473e+03 +Electron-deuteron_collision_frequency_at_point_400_______________________ (freq_plasma_electron_deuteron_collision_profile400)_ 1.91581244095467105e+03 +Electron-deuteron_collision_frequency_at_point_401_______________________ (freq_plasma_electron_deuteron_collision_profile401)_ 1.93112166646329433e+03 +Electron-deuteron_collision_frequency_at_point_402_______________________ (freq_plasma_electron_deuteron_collision_profile402)_ 1.94660127303685886e+03 +Electron-deuteron_collision_frequency_at_point_403_______________________ (freq_plasma_electron_deuteron_collision_profile403)_ 1.96225195993211560e+03 +Electron-deuteron_collision_frequency_at_point_404_______________________ (freq_plasma_electron_deuteron_collision_profile404)_ 1.97807432825533851e+03 +Electron-deuteron_collision_frequency_at_point_405_______________________ (freq_plasma_electron_deuteron_collision_profile405)_ 1.99406887305025862e+03 +Electron-deuteron_collision_frequency_at_point_406_______________________ (freq_plasma_electron_deuteron_collision_profile406)_ 2.01023597489704844e+03 +Electron-deuteron_collision_frequency_at_point_407_______________________ (freq_plasma_electron_deuteron_collision_profile407)_ 2.02657589099394568e+03 +Electron-deuteron_collision_frequency_at_point_408_______________________ (freq_plasma_electron_deuteron_collision_profile408)_ 2.04308874569150066e+03 +Electron-deuteron_collision_frequency_at_point_409_______________________ (freq_plasma_electron_deuteron_collision_profile409)_ 2.05977452044759229e+03 +Electron-deuteron_collision_frequency_at_point_410_______________________ (freq_plasma_electron_deuteron_collision_profile410)_ 2.07663304316958693e+03 +Electron-deuteron_collision_frequency_at_point_411_______________________ (freq_plasma_electron_deuteron_collision_profile411)_ 2.09366397690792792e+03 +Electron-deuteron_collision_frequency_at_point_412_______________________ (freq_plasma_electron_deuteron_collision_profile412)_ 2.11086680786336819e+03 +Electron-deuteron_collision_frequency_at_point_413_______________________ (freq_plasma_electron_deuteron_collision_profile413)_ 2.12824083266772277e+03 +Electron-deuteron_collision_frequency_at_point_414_______________________ (freq_plasma_electron_deuteron_collision_profile414)_ 2.14578514489562122e+03 +Electron-deuteron_collision_frequency_at_point_415_______________________ (freq_plasma_electron_deuteron_collision_profile415)_ 2.16349862076204772e+03 +Electron-deuteron_collision_frequency_at_point_416_______________________ (freq_plasma_electron_deuteron_collision_profile416)_ 2.18137990395765610e+03 +Electron-deuteron_collision_frequency_at_point_417_______________________ (freq_plasma_electron_deuteron_collision_profile417)_ 2.19942738957076517e+03 +Electron-deuteron_collision_frequency_at_point_418_______________________ (freq_plasma_electron_deuteron_collision_profile418)_ 2.21763920704160364e+03 +Electron-deuteron_collision_frequency_at_point_419_______________________ (freq_plasma_electron_deuteron_collision_profile419)_ 2.23601320209074720e+03 +Electron-deuteron_collision_frequency_at_point_420_______________________ (freq_plasma_electron_deuteron_collision_profile420)_ 2.25454691755978911e+03 +Electron-deuteron_collision_frequency_at_point_421_______________________ (freq_plasma_electron_deuteron_collision_profile421)_ 2.27323757309789289e+03 +Electron-deuteron_collision_frequency_at_point_422_______________________ (freq_plasma_electron_deuteron_collision_profile422)_ 2.29208204362315064e+03 +Electron-deuteron_collision_frequency_at_point_423_______________________ (freq_plasma_electron_deuteron_collision_profile423)_ 2.31107683648243710e+03 +Electron-deuteron_collision_frequency_at_point_424_______________________ (freq_plasma_electron_deuteron_collision_profile424)_ 2.33021806722756764e+03 +Electron-deuteron_collision_frequency_at_point_425_______________________ (freq_plasma_electron_deuteron_collision_profile425)_ 2.34950143391906158e+03 +Electron-deuteron_collision_frequency_at_point_426_______________________ (freq_plasma_electron_deuteron_collision_profile426)_ 2.36892218986158286e+03 +Electron-deuteron_collision_frequency_at_point_427_______________________ (freq_plasma_electron_deuteron_collision_profile427)_ 2.38847511466681590e+03 +Electron-deuteron_collision_frequency_at_point_428_______________________ (freq_plasma_electron_deuteron_collision_profile428)_ 2.40815448353027750e+03 +Electron-deuteron_collision_frequency_at_point_429_______________________ (freq_plasma_electron_deuteron_collision_profile429)_ 2.42795403459792487e+03 +Electron-deuteron_collision_frequency_at_point_430_______________________ (freq_plasma_electron_deuteron_collision_profile430)_ 2.44786693428626495e+03 +Electron-deuteron_collision_frequency_at_point_431_______________________ (freq_plasma_electron_deuteron_collision_profile431)_ 2.46788574040562116e+03 +Electron-deuteron_collision_frequency_at_point_432_______________________ (freq_plasma_electron_deuteron_collision_profile432)_ 2.48800236291995861e+03 +Electron-deuteron_collision_frequency_at_point_433_______________________ (freq_plasma_electron_deuteron_collision_profile433)_ 2.50820802215774711e+03 +Electron-deuteron_collision_frequency_at_point_434_______________________ (freq_plasma_electron_deuteron_collision_profile434)_ 2.52849320426595204e+03 +Electron-deuteron_collision_frequency_at_point_435_______________________ (freq_plasma_electron_deuteron_collision_profile435)_ 2.54884761367313558e+03 +Electron-deuteron_collision_frequency_at_point_436_______________________ (freq_plasma_electron_deuteron_collision_profile436)_ 2.56926012229634125e+03 +Electron-deuteron_collision_frequency_at_point_437_______________________ (freq_plasma_electron_deuteron_collision_profile437)_ 2.58971871518918124e+03 +Electron-deuteron_collision_frequency_at_point_438_______________________ (freq_plasma_electron_deuteron_collision_profile438)_ 2.61021043228381086e+03 +Electron-deuteron_collision_frequency_at_point_439_______________________ (freq_plasma_electron_deuteron_collision_profile439)_ 2.63072130582525369e+03 +Electron-deuteron_collision_frequency_at_point_440_______________________ (freq_plasma_electron_deuteron_collision_profile440)_ 2.65123629303069447e+03 +Electron-deuteron_collision_frequency_at_point_441_______________________ (freq_plasma_electron_deuteron_collision_profile441)_ 2.67173920342563497e+03 +Electron-deuteron_collision_frequency_at_point_442_______________________ (freq_plasma_electron_deuteron_collision_profile442)_ 2.69221262020941595e+03 +Electron-deuteron_collision_frequency_at_point_443_______________________ (freq_plasma_electron_deuteron_collision_profile443)_ 2.71263781487917686e+03 +Electron-deuteron_collision_frequency_at_point_444_______________________ (freq_plasma_electron_deuteron_collision_profile444)_ 2.73299465418722275e+03 +Electron-deuteron_collision_frequency_at_point_445_______________________ (freq_plasma_electron_deuteron_collision_profile445)_ 2.75326149831276234e+03 +Electron-deuteron_collision_frequency_at_point_446_______________________ (freq_plasma_electron_deuteron_collision_profile446)_ 2.77341508888273120e+03 +Electron-deuteron_collision_frequency_at_point_447_______________________ (freq_plasma_electron_deuteron_collision_profile447)_ 2.79343042516192145e+03 +Electron-deuteron_collision_frequency_at_point_448_______________________ (freq_plasma_electron_deuteron_collision_profile448)_ 2.81328062632615956e+03 +Electron-deuteron_collision_frequency_at_point_449_______________________ (freq_plasma_electron_deuteron_collision_profile449)_ 2.83293677720363576e+03 +Electron-deuteron_collision_frequency_at_point_450_______________________ (freq_plasma_electron_deuteron_collision_profile450)_ 2.85236775417295030e+03 +Electron-deuteron_collision_frequency_at_point_451_______________________ (freq_plasma_electron_deuteron_collision_profile451)_ 2.87154002698014574e+03 +Electron-deuteron_collision_frequency_at_point_452_______________________ (freq_plasma_electron_deuteron_collision_profile452)_ 2.89041743098857978e+03 +Electron-deuteron_collision_frequency_at_point_453_______________________ (freq_plasma_electron_deuteron_collision_profile453)_ 2.90896090267092677e+03 +Electron-deuteron_collision_frequency_at_point_454_______________________ (freq_plasma_electron_deuteron_collision_profile454)_ 2.92712816878995409e+03 +Electron-deuteron_collision_frequency_at_point_455_______________________ (freq_plasma_electron_deuteron_collision_profile455)_ 2.94487337638521512e+03 +Electron-deuteron_collision_frequency_at_point_456_______________________ (freq_plasma_electron_deuteron_collision_profile456)_ 2.96214664590287248e+03 +Electron-deuteron_collision_frequency_at_point_457_______________________ (freq_plasma_electron_deuteron_collision_profile457)_ 2.97889352279952118e+03 +Electron-deuteron_collision_frequency_at_point_458_______________________ (freq_plasma_electron_deuteron_collision_profile458)_ 2.99505429243489516e+03 +Electron-deuteron_collision_frequency_at_point_459_______________________ (freq_plasma_electron_deuteron_collision_profile459)_ 3.01056310685416383e+03 +Electron-deuteron_collision_frequency_at_point_460_______________________ (freq_plasma_electron_deuteron_collision_profile460)_ 3.02534684627202159e+03 +Electron-deuteron_collision_frequency_at_point_461_______________________ (freq_plasma_electron_deuteron_collision_profile461)_ 3.03932359554562163e+03 +Electron-deuteron_collision_frequency_at_point_462_______________________ (freq_plasma_electron_deuteron_collision_profile462)_ 3.05240054275093917e+03 +Electron-deuteron_collision_frequency_at_point_463_______________________ (freq_plasma_electron_deuteron_collision_profile463)_ 3.06447097448957447e+03 +Electron-deuteron_collision_frequency_at_point_464_______________________ (freq_plasma_electron_deuteron_collision_profile464)_ 3.07540978728697655e+03 +Electron-deuteron_collision_frequency_at_point_465_______________________ (freq_plasma_electron_deuteron_collision_profile465)_ 3.08506640285976027e+03 +Electron-deuteron_collision_frequency_at_point_466_______________________ (freq_plasma_electron_deuteron_collision_profile466)_ 3.09325275095198185e+03 +Electron-deuteron_collision_frequency_at_point_467_______________________ (freq_plasma_electron_deuteron_collision_profile467)_ 3.09972075304198006e+03 +Electron-deuteron_collision_frequency_at_point_468_______________________ (freq_plasma_electron_deuteron_collision_profile468)_ 3.10411333552975202e+03 +Electron-deuteron_collision_frequency_at_point_469_______________________ (freq_plasma_electron_deuteron_collision_profile469)_ 3.10582613701834953e+03 +Electron-deuteron_collision_frequency_at_point_470_______________________ (freq_plasma_electron_deuteron_collision_profile470)_ 3.10315631465604974e+03 +Electron-deuteron_collision_frequency_at_point_471_______________________ (freq_plasma_electron_deuteron_collision_profile471)_ 3.21228405134910736e+03 +Electron-deuteron_collision_frequency_at_point_472_______________________ (freq_plasma_electron_deuteron_collision_profile472)_ 3.33010972109557724e+03 +Electron-deuteron_collision_frequency_at_point_473_______________________ (freq_plasma_electron_deuteron_collision_profile473)_ 3.45769059215443576e+03 +Electron-deuteron_collision_frequency_at_point_474_______________________ (freq_plasma_electron_deuteron_collision_profile474)_ 3.59625864729065279e+03 +Electron-deuteron_collision_frequency_at_point_475_______________________ (freq_plasma_electron_deuteron_collision_profile475)_ 3.74725760225709109e+03 +Electron-deuteron_collision_frequency_at_point_476_______________________ (freq_plasma_electron_deuteron_collision_profile476)_ 3.91238962606802124e+03 +Electron-deuteron_collision_frequency_at_point_477_______________________ (freq_plasma_electron_deuteron_collision_profile477)_ 4.09367483296574619e+03 +Electron-deuteron_collision_frequency_at_point_478_______________________ (freq_plasma_electron_deuteron_collision_profile478)_ 4.29352776883414117e+03 +Electron-deuteron_collision_frequency_at_point_479_______________________ (freq_plasma_electron_deuteron_collision_profile479)_ 4.51485677504007799e+03 +Electron-deuteron_collision_frequency_at_point_480_______________________ (freq_plasma_electron_deuteron_collision_profile480)_ 4.76119453953269931e+03 +Electron-deuteron_collision_frequency_at_point_481_______________________ (freq_plasma_electron_deuteron_collision_profile481)_ 5.03687175046673838e+03 +Electron-deuteron_collision_frequency_at_point_482_______________________ (freq_plasma_electron_deuteron_collision_profile482)_ 5.34725121951003621e+03 +Electron-deuteron_collision_frequency_at_point_483_______________________ (freq_plasma_electron_deuteron_collision_profile483)_ 5.69904824698883840e+03 +Electron-deuteron_collision_frequency_at_point_484_______________________ (freq_plasma_electron_deuteron_collision_profile484)_ 6.10077623722949193e+03 +Electron-deuteron_collision_frequency_at_point_485_______________________ (freq_plasma_electron_deuteron_collision_profile485)_ 6.56337791248390295e+03 +Electron-deuteron_collision_frequency_at_point_486_______________________ (freq_plasma_electron_deuteron_collision_profile486)_ 7.10113778932853893e+03 +Electron-deuteron_collision_frequency_at_point_487_______________________ (freq_plasma_electron_deuteron_collision_profile487)_ 7.73303175591534637e+03 +Electron-deuteron_collision_frequency_at_point_488_______________________ (freq_plasma_electron_deuteron_collision_profile488)_ 8.48477554592387241e+03 +Electron-deuteron_collision_frequency_at_point_489_______________________ (freq_plasma_electron_deuteron_collision_profile489)_ 9.39202756901716566e+03 +Electron-deuteron_collision_frequency_at_point_490_______________________ (freq_plasma_electron_deuteron_collision_profile490)_ 1.05055709782572012e+04 +Electron-deuteron_collision_frequency_at_point_491_______________________ (freq_plasma_electron_deuteron_collision_profile491)_ 1.19000402797393854e+04 +Electron-deuteron_collision_frequency_at_point_492_______________________ (freq_plasma_electron_deuteron_collision_profile492)_ 1.36893304942940340e+04 +Electron-deuteron_collision_frequency_at_point_493_______________________ (freq_plasma_electron_deuteron_collision_profile493)_ 1.60554065989494957e+04 +Electron-deuteron_collision_frequency_at_point_494_______________________ (freq_plasma_electron_deuteron_collision_profile494)_ 1.93060931909563624e+04 +Electron-deuteron_collision_frequency_at_point_495_______________________ (freq_plasma_electron_deuteron_collision_profile495)_ 2.40017849996251462e+04 +Electron-deuteron_collision_frequency_at_point_496_______________________ (freq_plasma_electron_deuteron_collision_profile496)_ 3.12676435074762994e+04 +Electron-deuteron_collision_frequency_at_point_497_______________________ (freq_plasma_electron_deuteron_collision_profile497)_ 4.36969559574158411e+04 +Electron-deuteron_collision_frequency_at_point_498_______________________ (freq_plasma_electron_deuteron_collision_profile498)_ 6.86722350265974528e+04 +Electron-deuteron_collision_frequency_at_point_499_______________________ (freq_plasma_electron_deuteron_collision_profile499)_ 1.36764681451193843e+05 +Electron-deuteron_collision_frequency_at_point_500_______________________ (freq_plasma_electron_deuteron_collision_profile500)_ 5.81812374283196055e+05 +Volume_averaged_electron-triton_collision_frequency_(Hz)_________________ (freq_plasma_electron_triton_collision_vol_avg)_ 1.20491228864359960e+03 +Electron-triton_collision_frequency_at_point_0___________________________ (freq_plasma_electron_triton_collision_profile0)_ 5.52499764483983768e+02 +Electron-triton_collision_frequency_at_point_1___________________________ (freq_plasma_electron_triton_collision_profile1)_ 5.52502909054723773e+02 +Electron-triton_collision_frequency_at_point_2___________________________ (freq_plasma_electron_triton_collision_profile2)_ 5.52512342940563940e+02 +Electron-triton_collision_frequency_at_point_3___________________________ (freq_plasma_electron_triton_collision_profile3)_ 5.52528066662386436e+02 +Electron-triton_collision_frequency_at_point_4___________________________ (freq_plasma_electron_triton_collision_profile4)_ 5.52550081088398315e+02 +Electron-triton_collision_frequency_at_point_5___________________________ (freq_plasma_electron_triton_collision_profile5)_ 5.52578387434237129e+02 +Electron-triton_collision_frequency_at_point_6___________________________ (freq_plasma_electron_triton_collision_profile6)_ 5.52612987263119976e+02 +Electron-triton_collision_frequency_at_point_7___________________________ (freq_plasma_electron_triton_collision_profile7)_ 5.52653882486031307e+02 +Electron-triton_collision_frequency_at_point_8___________________________ (freq_plasma_electron_triton_collision_profile8)_ 5.52701075361958829e+02 +Electron-triton_collision_frequency_at_point_9___________________________ (freq_plasma_electron_triton_collision_profile9)_ 5.52754568498165781e+02 +Electron-triton_collision_frequency_at_point_10__________________________ (freq_plasma_electron_triton_collision_profile10)_ 5.52814364850509264e+02 +Electron-triton_collision_frequency_at_point_11__________________________ (freq_plasma_electron_triton_collision_profile11)_ 5.52880467723800507e+02 +Electron-triton_collision_frequency_at_point_12__________________________ (freq_plasma_electron_triton_collision_profile12)_ 5.52952880772207664e+02 +Electron-triton_collision_frequency_at_point_13__________________________ (freq_plasma_electron_triton_collision_profile13)_ 5.53031607999700213e+02 +Electron-triton_collision_frequency_at_point_14__________________________ (freq_plasma_electron_triton_collision_profile14)_ 5.53116653760537588e+02 +Electron-triton_collision_frequency_at_point_15__________________________ (freq_plasma_electron_triton_collision_profile15)_ 5.53208022759800087e+02 +Electron-triton_collision_frequency_at_point_16__________________________ (freq_plasma_electron_triton_collision_profile16)_ 5.53305720053962773e+02 +Electron-triton_collision_frequency_at_point_17__________________________ (freq_plasma_electron_triton_collision_profile17)_ 5.53409751051511648e+02 +Electron-triton_collision_frequency_at_point_18__________________________ (freq_plasma_electron_triton_collision_profile18)_ 5.53520121513606000e+02 +Electron-triton_collision_frequency_at_point_19__________________________ (freq_plasma_electron_triton_collision_profile19)_ 5.53636837554778481e+02 +Electron-triton_collision_frequency_at_point_20__________________________ (freq_plasma_electron_triton_collision_profile20)_ 5.53759905643686579e+02 +Electron-triton_collision_frequency_at_point_21__________________________ (freq_plasma_electron_triton_collision_profile21)_ 5.53889332603899447e+02 +Electron-triton_collision_frequency_at_point_22__________________________ (freq_plasma_electron_triton_collision_profile22)_ 5.54025125614734975e+02 +Electron-triton_collision_frequency_at_point_23__________________________ (freq_plasma_electron_triton_collision_profile23)_ 5.54167292212137113e+02 +Electron-triton_collision_frequency_at_point_24__________________________ (freq_plasma_electron_triton_collision_profile24)_ 5.54315840289599009e+02 +Electron-triton_collision_frequency_at_point_25__________________________ (freq_plasma_electron_triton_collision_profile25)_ 5.54470778099130257e+02 +Electron-triton_collision_frequency_at_point_26__________________________ (freq_plasma_electron_triton_collision_profile26)_ 5.54632114252269048e+02 +Electron-triton_collision_frequency_at_point_27__________________________ (freq_plasma_electron_triton_collision_profile27)_ 5.54799857721136618e+02 +Electron-triton_collision_frequency_at_point_28__________________________ (freq_plasma_electron_triton_collision_profile28)_ 5.54974017839541716e+02 +Electron-triton_collision_frequency_at_point_29__________________________ (freq_plasma_electron_triton_collision_profile29)_ 5.55154604304124291e+02 +Electron-triton_collision_frequency_at_point_30__________________________ (freq_plasma_electron_triton_collision_profile30)_ 5.55341627175550570e+02 +Electron-triton_collision_frequency_at_point_31__________________________ (freq_plasma_electron_triton_collision_profile31)_ 5.55535096879748039e+02 +Electron-triton_collision_frequency_at_point_32__________________________ (freq_plasma_electron_triton_collision_profile32)_ 5.55735024209191351e+02 +Electron-triton_collision_frequency_at_point_33__________________________ (freq_plasma_electron_triton_collision_profile33)_ 5.55941420324231672e+02 +Electron-triton_collision_frequency_at_point_34__________________________ (freq_plasma_electron_triton_collision_profile34)_ 5.56154296754473080e+02 +Electron-triton_collision_frequency_at_point_35__________________________ (freq_plasma_electron_triton_collision_profile35)_ 5.56373665400195478e+02 +Electron-triton_collision_frequency_at_point_36__________________________ (freq_plasma_electron_triton_collision_profile36)_ 5.56599538533826717e+02 +Electron-triton_collision_frequency_at_point_37__________________________ (freq_plasma_electron_triton_collision_profile37)_ 5.56831928801458616e+02 +Electron-triton_collision_frequency_at_point_38__________________________ (freq_plasma_electron_triton_collision_profile38)_ 5.57070849224413223e+02 +Electron-triton_collision_frequency_at_point_39__________________________ (freq_plasma_electron_triton_collision_profile39)_ 5.57316313200856598e+02 +Electron-triton_collision_frequency_at_point_40__________________________ (freq_plasma_electron_triton_collision_profile40)_ 5.57568334507460463e+02 +Electron-triton_collision_frequency_at_point_41__________________________ (freq_plasma_electron_triton_collision_profile41)_ 5.57826927301113642e+02 +Electron-triton_collision_frequency_at_point_42__________________________ (freq_plasma_electron_triton_collision_profile42)_ 5.58092106120680000e+02 +Electron-triton_collision_frequency_at_point_43__________________________ (freq_plasma_electron_triton_collision_profile43)_ 5.58363885888809932e+02 +Electron-triton_collision_frequency_at_point_44__________________________ (freq_plasma_electron_triton_collision_profile44)_ 5.58642281913798001e+02 +Electron-triton_collision_frequency_at_point_45__________________________ (freq_plasma_electron_triton_collision_profile45)_ 5.58927309891493223e+02 +Electron-triton_collision_frequency_at_point_46__________________________ (freq_plasma_electron_triton_collision_profile46)_ 5.59218985907257434e+02 +Electron-triton_collision_frequency_at_point_47__________________________ (freq_plasma_electron_triton_collision_profile47)_ 5.59517326437977772e+02 +Electron-triton_collision_frequency_at_point_48__________________________ (freq_plasma_electron_triton_collision_profile48)_ 5.59822348354128735e+02 +Electron-triton_collision_frequency_at_point_49__________________________ (freq_plasma_electron_triton_collision_profile49)_ 5.60134068921886069e+02 +Electron-triton_collision_frequency_at_point_50__________________________ (freq_plasma_electron_triton_collision_profile50)_ 5.60452505805293640e+02 +Electron-triton_collision_frequency_at_point_51__________________________ (freq_plasma_electron_triton_collision_profile51)_ 5.60777677068483513e+02 +Electron-triton_collision_frequency_at_point_52__________________________ (freq_plasma_electron_triton_collision_profile52)_ 5.61109601177947638e+02 +Electron-triton_collision_frequency_at_point_53__________________________ (freq_plasma_electron_triton_collision_profile53)_ 5.61448297004864912e+02 +Electron-triton_collision_frequency_at_point_54__________________________ (freq_plasma_electron_triton_collision_profile54)_ 5.61793783827482230e+02 +Electron-triton_collision_frequency_at_point_55__________________________ (freq_plasma_electron_triton_collision_profile55)_ 5.62146081333550001e+02 +Electron-triton_collision_frequency_at_point_56__________________________ (freq_plasma_electron_triton_collision_profile56)_ 5.62505209622811776e+02 +Electron-triton_collision_frequency_at_point_57__________________________ (freq_plasma_electron_triton_collision_profile57)_ 5.62871189209552995e+02 +Electron-triton_collision_frequency_at_point_58__________________________ (freq_plasma_electron_triton_collision_profile58)_ 5.63244041025201909e+02 +Electron-triton_collision_frequency_at_point_59__________________________ (freq_plasma_electron_triton_collision_profile59)_ 5.63623786420991337e+02 +Electron-triton_collision_frequency_at_point_60__________________________ (freq_plasma_electron_triton_collision_profile60)_ 5.64010447170674752e+02 +Electron-triton_collision_frequency_at_point_61__________________________ (freq_plasma_electron_triton_collision_profile61)_ 5.64404045473301039e+02 +Electron-triton_collision_frequency_at_point_62__________________________ (freq_plasma_electron_triton_collision_profile62)_ 5.64804603956052347e+02 +Electron-triton_collision_frequency_at_point_63__________________________ (freq_plasma_electron_triton_collision_profile63)_ 5.65212145677132753e+02 +Electron-triton_collision_frequency_at_point_64__________________________ (freq_plasma_electron_triton_collision_profile64)_ 5.65626694128724580e+02 +Electron-triton_collision_frequency_at_point_65__________________________ (freq_plasma_electron_triton_collision_profile65)_ 5.66048273240002118e+02 +Electron-triton_collision_frequency_at_point_66__________________________ (freq_plasma_electron_triton_collision_profile66)_ 5.66476907380205603e+02 +Electron-triton_collision_frequency_at_point_67__________________________ (freq_plasma_electron_triton_collision_profile67)_ 5.66912621361778406e+02 +Electron-triton_collision_frequency_at_point_68__________________________ (freq_plasma_electron_triton_collision_profile68)_ 5.67355440443568796e+02 +Electron-triton_collision_frequency_at_point_69__________________________ (freq_plasma_electron_triton_collision_profile69)_ 5.67805390334088543e+02 +Electron-triton_collision_frequency_at_point_70__________________________ (freq_plasma_electron_triton_collision_profile70)_ 5.68262497194843831e+02 +Electron-triton_collision_frequency_at_point_71__________________________ (freq_plasma_electron_triton_collision_profile71)_ 5.68726787643723583e+02 +Electron-triton_collision_frequency_at_point_72__________________________ (freq_plasma_electron_triton_collision_profile72)_ 5.69198288758458716e+02 +Electron-triton_collision_frequency_at_point_73__________________________ (freq_plasma_electron_triton_collision_profile73)_ 5.69677028080143941e+02 +Electron-triton_collision_frequency_at_point_74__________________________ (freq_plasma_electron_triton_collision_profile74)_ 5.70163033616827875e+02 +Electron-triton_collision_frequency_at_point_75__________________________ (freq_plasma_electron_triton_collision_profile75)_ 5.70656333847171027e+02 +Electron-triton_collision_frequency_at_point_76__________________________ (freq_plasma_electron_triton_collision_profile76)_ 5.71156957724172230e+02 +Electron-triton_collision_frequency_at_point_77__________________________ (freq_plasma_electron_triton_collision_profile77)_ 5.71664934678964528e+02 +Electron-triton_collision_frequency_at_point_78__________________________ (freq_plasma_electron_triton_collision_profile78)_ 5.72180294624681210e+02 +Electron-triton_collision_frequency_at_point_79__________________________ (freq_plasma_electron_triton_collision_profile79)_ 5.72703067960392900e+02 +Electron-triton_collision_frequency_at_point_80__________________________ (freq_plasma_electron_triton_collision_profile80)_ 5.73233285575115474e+02 +Electron-triton_collision_frequency_at_point_81__________________________ (freq_plasma_electron_triton_collision_profile81)_ 5.73770978851895052e+02 +Electron-triton_collision_frequency_at_point_82__________________________ (freq_plasma_electron_triton_collision_profile82)_ 5.74316179671960185e+02 +Electron-triton_collision_frequency_at_point_83__________________________ (freq_plasma_electron_triton_collision_profile83)_ 5.74868920418954758e+02 +Electron-triton_collision_frequency_at_point_84__________________________ (freq_plasma_electron_triton_collision_profile84)_ 5.75429233983242966e+02 +Electron-triton_collision_frequency_at_point_85__________________________ (freq_plasma_electron_triton_collision_profile85)_ 5.75997153766292513e+02 +Electron-triton_collision_frequency_at_point_86__________________________ (freq_plasma_electron_triton_collision_profile86)_ 5.76572713685135227e+02 +Electron-triton_collision_frequency_at_point_87__________________________ (freq_plasma_electron_triton_collision_profile87)_ 5.77155948176905213e+02 +Electron-triton_collision_frequency_at_point_88__________________________ (freq_plasma_electron_triton_collision_profile88)_ 5.77746892203458629e+02 +Electron-triton_collision_frequency_at_point_89__________________________ (freq_plasma_electron_triton_collision_profile89)_ 5.78345581256071114e+02 +Electron-triton_collision_frequency_at_point_90__________________________ (freq_plasma_electron_triton_collision_profile90)_ 5.78952051360221958e+02 +Electron-triton_collision_frequency_at_point_91__________________________ (freq_plasma_electron_triton_collision_profile91)_ 5.79566339080455350e+02 +Electron-triton_collision_frequency_at_point_92__________________________ (freq_plasma_electron_triton_collision_profile92)_ 5.80188481525329621e+02 +Electron-triton_collision_frequency_at_point_93__________________________ (freq_plasma_electron_triton_collision_profile93)_ 5.80818516352450501e+02 +Electron-triton_collision_frequency_at_point_94__________________________ (freq_plasma_electron_triton_collision_profile94)_ 5.81456481773588507e+02 +Electron-triton_collision_frequency_at_point_95__________________________ (freq_plasma_electron_triton_collision_profile95)_ 5.82102416559888979e+02 +Electron-triton_collision_frequency_at_point_96__________________________ (freq_plasma_electron_triton_collision_profile96)_ 5.82756360047164435e+02 +Electron-triton_collision_frequency_at_point_97__________________________ (freq_plasma_electron_triton_collision_profile97)_ 5.83418352141282298e+02 +Electron-triton_collision_frequency_at_point_98__________________________ (freq_plasma_electron_triton_collision_profile98)_ 5.84088433323638583e+02 +Electron-triton_collision_frequency_at_point_99__________________________ (freq_plasma_electron_triton_collision_profile99)_ 5.84766644656729000e+02 +Electron-triton_collision_frequency_at_point_100_________________________ (freq_plasma_electron_triton_collision_profile100)_ 5.85453027789810335e+02 +Electron-triton_collision_frequency_at_point_101_________________________ (freq_plasma_electron_triton_collision_profile101)_ 5.86147624964658007e+02 +Electron-triton_collision_frequency_at_point_102_________________________ (freq_plasma_electron_triton_collision_profile102)_ 5.86850479021419119e+02 +Electron-triton_collision_frequency_at_point_103_________________________ (freq_plasma_electron_triton_collision_profile103)_ 5.87561633404566010e+02 +Electron-triton_collision_frequency_at_point_104_________________________ (freq_plasma_electron_triton_collision_profile104)_ 5.88281132168943145e+02 +Electron-triton_collision_frequency_at_point_105_________________________ (freq_plasma_electron_triton_collision_profile105)_ 5.89009019985922123e+02 +Electron-triton_collision_frequency_at_point_106_________________________ (freq_plasma_electron_triton_collision_profile106)_ 5.89745342149652743e+02 +Electron-triton_collision_frequency_at_point_107_________________________ (freq_plasma_electron_triton_collision_profile107)_ 5.90490144583418555e+02 +Electron-triton_collision_frequency_at_point_108_________________________ (freq_plasma_electron_triton_collision_profile108)_ 5.91243473846100642e+02 +Electron-triton_collision_frequency_at_point_109_________________________ (freq_plasma_electron_triton_collision_profile109)_ 5.92005377138744279e+02 +Electron-triton_collision_frequency_at_point_110_________________________ (freq_plasma_electron_triton_collision_profile110)_ 5.92775902311235200e+02 +Electron-triton_collision_frequency_at_point_111_________________________ (freq_plasma_electron_triton_collision_profile111)_ 5.93555097869084193e+02 +Electron-triton_collision_frequency_at_point_112_________________________ (freq_plasma_electron_triton_collision_profile112)_ 5.94343012980326193e+02 +Electron-triton_collision_frequency_at_point_113_________________________ (freq_plasma_electron_triton_collision_profile113)_ 5.95139697482528504e+02 +Electron-triton_collision_frequency_at_point_114_________________________ (freq_plasma_electron_triton_collision_profile114)_ 5.95945201889916348e+02 +Electron-triton_collision_frequency_at_point_115_________________________ (freq_plasma_electron_triton_collision_profile115)_ 5.96759577400612784e+02 +Electron-triton_collision_frequency_at_point_116_________________________ (freq_plasma_electron_triton_collision_profile116)_ 5.97582875903998001e+02 +Electron-triton_collision_frequency_at_point_117_________________________ (freq_plasma_electron_triton_collision_profile117)_ 5.98415149988187977e+02 +Electron-triton_collision_frequency_at_point_118_________________________ (freq_plasma_electron_triton_collision_profile118)_ 5.99256452947636603e+02 +Electron-triton_collision_frequency_at_point_119_________________________ (freq_plasma_electron_triton_collision_profile119)_ 6.00106838790856727e+02 +Electron-triton_collision_frequency_at_point_120_________________________ (freq_plasma_electron_triton_collision_profile120)_ 6.00966362248271480e+02 +Electron-triton_collision_frequency_at_point_121_________________________ (freq_plasma_electron_triton_collision_profile121)_ 6.01835078780190770e+02 +Electron-triton_collision_frequency_at_point_122_________________________ (freq_plasma_electron_triton_collision_profile122)_ 6.02713044584917952e+02 +Electron-triton_collision_frequency_at_point_123_________________________ (freq_plasma_electron_triton_collision_profile123)_ 6.03600316606986212e+02 +Electron-triton_collision_frequency_at_point_124_________________________ (freq_plasma_electron_triton_collision_profile124)_ 6.04496952545529325e+02 +Electron-triton_collision_frequency_at_point_125_________________________ (freq_plasma_electron_triton_collision_profile125)_ 6.05403010862788165e+02 +Electron-triton_collision_frequency_at_point_126_________________________ (freq_plasma_electron_triton_collision_profile126)_ 6.06318550792753967e+02 +Electron-triton_collision_frequency_at_point_127_________________________ (freq_plasma_electron_triton_collision_profile127)_ 6.07243632349952236e+02 +Electron-triton_collision_frequency_at_point_128_________________________ (freq_plasma_electron_triton_collision_profile128)_ 6.08178316338366926e+02 +Electron-triton_collision_frequency_at_point_129_________________________ (freq_plasma_electron_triton_collision_profile129)_ 6.09122664360509248e+02 +Electron-triton_collision_frequency_at_point_130_________________________ (freq_plasma_electron_triton_collision_profile130)_ 6.10076738826634937e+02 +Electron-triton_collision_frequency_at_point_131_________________________ (freq_plasma_electron_triton_collision_profile131)_ 6.11040602964106256e+02 +Electron-triton_collision_frequency_at_point_132_________________________ (freq_plasma_electron_triton_collision_profile132)_ 6.12014320826908033e+02 +Electron-triton_collision_frequency_at_point_133_________________________ (freq_plasma_electron_triton_collision_profile133)_ 6.12997957305316163e+02 +Electron-triton_collision_frequency_at_point_134_________________________ (freq_plasma_electron_triton_collision_profile134)_ 6.13991578135721625e+02 +Electron-triton_collision_frequency_at_point_135_________________________ (freq_plasma_electron_triton_collision_profile135)_ 6.14995249910612642e+02 +Electron-triton_collision_frequency_at_point_136_________________________ (freq_plasma_electron_triton_collision_profile136)_ 6.16009040088719189e+02 +Electron-triton_collision_frequency_at_point_137_________________________ (freq_plasma_electron_triton_collision_profile137)_ 6.17033017005319834e+02 +Electron-triton_collision_frequency_at_point_138_________________________ (freq_plasma_electron_triton_collision_profile138)_ 6.18067249882712758e+02 +Electron-triton_collision_frequency_at_point_139_________________________ (freq_plasma_electron_triton_collision_profile139)_ 6.19111808840861386e+02 +Electron-triton_collision_frequency_at_point_140_________________________ (freq_plasma_electron_triton_collision_profile140)_ 6.20166764908202708e+02 +Electron-triton_collision_frequency_at_point_141_________________________ (freq_plasma_electron_triton_collision_profile141)_ 6.21232190032638755e+02 +Electron-triton_collision_frequency_at_point_142_________________________ (freq_plasma_electron_triton_collision_profile142)_ 6.22308157092700185e+02 +Electron-triton_collision_frequency_at_point_143_________________________ (freq_plasma_electron_triton_collision_profile143)_ 6.23394739908888937e+02 +Electron-triton_collision_frequency_at_point_144_________________________ (freq_plasma_electron_triton_collision_profile144)_ 6.24492013255208349e+02 +Electron-triton_collision_frequency_at_point_145_________________________ (freq_plasma_electron_triton_collision_profile145)_ 6.25600052870876084e+02 +Electron-triton_collision_frequency_at_point_146_________________________ (freq_plasma_electron_triton_collision_profile146)_ 6.26718935472224757e+02 +Electron-triton_collision_frequency_at_point_147_________________________ (freq_plasma_electron_triton_collision_profile147)_ 6.27848738764798441e+02 +Electron-triton_collision_frequency_at_point_148_________________________ (freq_plasma_electron_triton_collision_profile148)_ 6.28989541455641188e+02 +Electron-triton_collision_frequency_at_point_149_________________________ (freq_plasma_electron_triton_collision_profile149)_ 6.30141423265786671e+02 +Electron-triton_collision_frequency_at_point_150_________________________ (freq_plasma_electron_triton_collision_profile150)_ 6.31304464942946765e+02 +Electron-triton_collision_frequency_at_point_151_________________________ (freq_plasma_electron_triton_collision_profile151)_ 6.32478748274406598e+02 +Electron-triton_collision_frequency_at_point_152_________________________ (freq_plasma_electron_triton_collision_profile152)_ 6.33664356100130021e+02 +Electron-triton_collision_frequency_at_point_153_________________________ (freq_plasma_electron_triton_collision_profile153)_ 6.34861372326072342e+02 +Electron-triton_collision_frequency_at_point_154_________________________ (freq_plasma_electron_triton_collision_profile154)_ 6.36069881937713944e+02 +Electron-triton_collision_frequency_at_point_155_________________________ (freq_plasma_electron_triton_collision_profile155)_ 6.37289971013809463e+02 +Electron-triton_collision_frequency_at_point_156_________________________ (freq_plasma_electron_triton_collision_profile156)_ 6.38521726740360805e+02 +Electron-triton_collision_frequency_at_point_157_________________________ (freq_plasma_electron_triton_collision_profile157)_ 6.39765237424817087e+02 +Electron-triton_collision_frequency_at_point_158_________________________ (freq_plasma_electron_triton_collision_profile158)_ 6.41020592510503775e+02 +Electron-triton_collision_frequency_at_point_159_________________________ (freq_plasma_electron_triton_collision_profile159)_ 6.42287882591287598e+02 +Electron-triton_collision_frequency_at_point_160_________________________ (freq_plasma_electron_triton_collision_profile160)_ 6.43567199426478396e+02 +Electron-triton_collision_frequency_at_point_161_________________________ (freq_plasma_electron_triton_collision_profile161)_ 6.44858635955973909e+02 +Electron-triton_collision_frequency_at_point_162_________________________ (freq_plasma_electron_triton_collision_profile162)_ 6.46162286315650704e+02 +Electron-triton_collision_frequency_at_point_163_________________________ (freq_plasma_electron_triton_collision_profile163)_ 6.47478245853004296e+02 +Electron-triton_collision_frequency_at_point_164_________________________ (freq_plasma_electron_triton_collision_profile164)_ 6.48806611143046439e+02 +Electron-triton_collision_frequency_at_point_165_________________________ (freq_plasma_electron_triton_collision_profile165)_ 6.50147480004459908e+02 +Electron-triton_collision_frequency_at_point_166_________________________ (freq_plasma_electron_triton_collision_profile166)_ 6.51500951516015562e+02 +Electron-triton_collision_frequency_at_point_167_________________________ (freq_plasma_electron_triton_collision_profile167)_ 6.52867126033261229e+02 +Electron-triton_collision_frequency_at_point_168_________________________ (freq_plasma_electron_triton_collision_profile168)_ 6.54246105205477988e+02 +Electron-triton_collision_frequency_at_point_169_________________________ (freq_plasma_electron_triton_collision_profile169)_ 6.55637991992918046e+02 +Electron-triton_collision_frequency_at_point_170_________________________ (freq_plasma_electron_triton_collision_profile170)_ 6.57042890684322742e+02 +Electron-triton_collision_frequency_at_point_171_________________________ (freq_plasma_electron_triton_collision_profile171)_ 6.58460906914726820e+02 +Electron-triton_collision_frequency_at_point_172_________________________ (freq_plasma_electron_triton_collision_profile172)_ 6.59892147683554185e+02 +Electron-triton_collision_frequency_at_point_173_________________________ (freq_plasma_electron_triton_collision_profile173)_ 6.61336721373013916e+02 +Electron-triton_collision_frequency_at_point_174_________________________ (freq_plasma_electron_triton_collision_profile174)_ 6.62794737766792082e+02 +Electron-triton_collision_frequency_at_point_175_________________________ (freq_plasma_electron_triton_collision_profile175)_ 6.64266308069056436e+02 +Electron-triton_collision_frequency_at_point_176_________________________ (freq_plasma_electron_triton_collision_profile176)_ 6.65751544923769188e+02 +Electron-triton_collision_frequency_at_point_177_________________________ (freq_plasma_electron_triton_collision_profile177)_ 6.67250562434320159e+02 +Electron-triton_collision_frequency_at_point_178_________________________ (freq_plasma_electron_triton_collision_profile178)_ 6.68763476183482112e+02 +Electron-triton_collision_frequency_at_point_179_________________________ (freq_plasma_electron_triton_collision_profile179)_ 6.70290403253694080e+02 +Electron-triton_collision_frequency_at_point_180_________________________ (freq_plasma_electron_triton_collision_profile180)_ 6.71831462247681316e+02 +Electron-triton_collision_frequency_at_point_181_________________________ (freq_plasma_electron_triton_collision_profile181)_ 6.73386773309414139e+02 +Electron-triton_collision_frequency_at_point_182_________________________ (freq_plasma_electron_triton_collision_profile182)_ 6.74956458145412057e+02 +Electron-triton_collision_frequency_at_point_183_________________________ (freq_plasma_electron_triton_collision_profile183)_ 6.76540640046404064e+02 +Electron-triton_collision_frequency_at_point_184_________________________ (freq_plasma_electron_triton_collision_profile184)_ 6.78139443909340002e+02 +Electron-triton_collision_frequency_at_point_185_________________________ (freq_plasma_electron_triton_collision_profile185)_ 6.79752996259776978e+02 +Electron-triton_collision_frequency_at_point_186_________________________ (freq_plasma_electron_triton_collision_profile186)_ 6.81381425274625826e+02 +Electron-triton_collision_frequency_at_point_187_________________________ (freq_plasma_electron_triton_collision_profile187)_ 6.83024860805282970e+02 +Electron-triton_collision_frequency_at_point_188_________________________ (freq_plasma_electron_triton_collision_profile188)_ 6.84683434401143359e+02 +Electron-triton_collision_frequency_at_point_189_________________________ (freq_plasma_electron_triton_collision_profile189)_ 6.86357279333502333e+02 +Electron-triton_collision_frequency_at_point_190_________________________ (freq_plasma_electron_triton_collision_profile190)_ 6.88046530619859482e+02 +Electron-triton_collision_frequency_at_point_191_________________________ (freq_plasma_electron_triton_collision_profile191)_ 6.89751325048623244e+02 +Electron-triton_collision_frequency_at_point_192_________________________ (freq_plasma_electron_triton_collision_profile192)_ 6.91471801204228655e+02 +Electron-triton_collision_frequency_at_point_193_________________________ (freq_plasma_electron_triton_collision_profile193)_ 6.93208099492673796e+02 +Electron-triton_collision_frequency_at_point_194_________________________ (freq_plasma_electron_triton_collision_profile194)_ 6.94960362167482344e+02 +Electron-triton_collision_frequency_at_point_195_________________________ (freq_plasma_electron_triton_collision_profile195)_ 6.96728733356099610e+02 +Electron-triton_collision_frequency_at_point_196_________________________ (freq_plasma_electron_triton_collision_profile196)_ 6.98513359086729679e+02 +Electron-triton_collision_frequency_at_point_197_________________________ (freq_plasma_electron_triton_collision_profile197)_ 7.00314387315622525e+02 +Electron-triton_collision_frequency_at_point_198_________________________ (freq_plasma_electron_triton_collision_profile198)_ 7.02131967954816673e+02 +Electron-triton_collision_frequency_at_point_199_________________________ (freq_plasma_electron_triton_collision_profile199)_ 7.03966252900346603e+02 +Electron-triton_collision_frequency_at_point_200_________________________ (freq_plasma_electron_triton_collision_profile200)_ 7.05817396060924466e+02 +Electron-triton_collision_frequency_at_point_201_________________________ (freq_plasma_electron_triton_collision_profile201)_ 7.07685553387102686e+02 +Electron-triton_collision_frequency_at_point_202_________________________ (freq_plasma_electron_triton_collision_profile202)_ 7.09570882900924971e+02 +Electron-triton_collision_frequency_at_point_203_________________________ (freq_plasma_electron_triton_collision_profile203)_ 7.11473544726077648e+02 +Electron-triton_collision_frequency_at_point_204_________________________ (freq_plasma_electron_triton_collision_profile204)_ 7.13393701118546460e+02 +Electron-triton_collision_frequency_at_point_205_________________________ (freq_plasma_electron_triton_collision_profile205)_ 7.15331516497790290e+02 +Electron-triton_collision_frequency_at_point_206_________________________ (freq_plasma_electron_triton_collision_profile206)_ 7.17287157478439326e+02 +Electron-triton_collision_frequency_at_point_207_________________________ (freq_plasma_electron_triton_collision_profile207)_ 7.19260792902527783e+02 +Electron-triton_collision_frequency_at_point_208_________________________ (freq_plasma_electron_triton_collision_profile208)_ 7.21252593872270381e+02 +Electron-triton_collision_frequency_at_point_209_________________________ (freq_plasma_electron_triton_collision_profile209)_ 7.23262733783391809e+02 +Electron-triton_collision_frequency_at_point_210_________________________ (freq_plasma_electron_triton_collision_profile210)_ 7.25291388359017901e+02 +Electron-triton_collision_frequency_at_point_211_________________________ (freq_plasma_electron_triton_collision_profile211)_ 7.27338735684141056e+02 +Electron-triton_collision_frequency_at_point_212_________________________ (freq_plasma_electron_triton_collision_profile212)_ 7.29404956240667730e+02 +Electron-triton_collision_frequency_at_point_213_________________________ (freq_plasma_electron_triton_collision_profile213)_ 7.31490232943059937e+02 +Electron-triton_collision_frequency_at_point_214_________________________ (freq_plasma_electron_triton_collision_profile214)_ 7.33594751174574981e+02 +Electron-triton_collision_frequency_at_point_215_________________________ (freq_plasma_electron_triton_collision_profile215)_ 7.35718698824126704e+02 +Electron-triton_collision_frequency_at_point_216_________________________ (freq_plasma_electron_triton_collision_profile216)_ 7.37862266323763947e+02 +Electron-triton_collision_frequency_at_point_217_________________________ (freq_plasma_electron_triton_collision_profile217)_ 7.40025646686789742e+02 +Electron-triton_collision_frequency_at_point_218_________________________ (freq_plasma_electron_triton_collision_profile218)_ 7.42209035546522387e+02 +Electron-triton_collision_frequency_at_point_219_________________________ (freq_plasma_electron_triton_collision_profile219)_ 7.44412631195718518e+02 +Electron-triton_collision_frequency_at_point_220_________________________ (freq_plasma_electron_triton_collision_profile220)_ 7.46636634626660111e+02 +Electron-triton_collision_frequency_at_point_221_________________________ (freq_plasma_electron_triton_collision_profile221)_ 7.48881249571925423e+02 +Electron-triton_collision_frequency_at_point_222_________________________ (freq_plasma_electron_triton_collision_profile222)_ 7.51146682545853423e+02 +Electron-triton_collision_frequency_at_point_223_________________________ (freq_plasma_electron_triton_collision_profile223)_ 7.53433142886707401e+02 +Electron-triton_collision_frequency_at_point_224_________________________ (freq_plasma_electron_triton_collision_profile224)_ 7.55740842799560596e+02 +Electron-triton_collision_frequency_at_point_225_________________________ (freq_plasma_electron_triton_collision_profile225)_ 7.58069997399905787e+02 +Electron-triton_collision_frequency_at_point_226_________________________ (freq_plasma_electron_triton_collision_profile226)_ 7.60420824758009985e+02 +Electron-triton_collision_frequency_at_point_227_________________________ (freq_plasma_electron_triton_collision_profile227)_ 7.62793545944021275e+02 +Electron-triton_collision_frequency_at_point_228_________________________ (freq_plasma_electron_triton_collision_profile228)_ 7.65188385073841118e+02 +Electron-triton_collision_frequency_at_point_229_________________________ (freq_plasma_electron_triton_collision_profile229)_ 7.67605569355778016e+02 +Electron-triton_collision_frequency_at_point_230_________________________ (freq_plasma_electron_triton_collision_profile230)_ 7.70045329137995282e+02 +Electron-triton_collision_frequency_at_point_231_________________________ (freq_plasma_electron_triton_collision_profile231)_ 7.72507897956763941e+02 +Electron-triton_collision_frequency_at_point_232_________________________ (freq_plasma_electron_triton_collision_profile232)_ 7.74993512585533949e+02 +Electron-triton_collision_frequency_at_point_233_________________________ (freq_plasma_electron_triton_collision_profile233)_ 7.77502413084843852e+02 +Electron-triton_collision_frequency_at_point_234_________________________ (freq_plasma_electron_triton_collision_profile234)_ 7.80034842853076043e+02 +Electron-triton_collision_frequency_at_point_235_________________________ (freq_plasma_electron_triton_collision_profile235)_ 7.82591048678070592e+02 +Electron-triton_collision_frequency_at_point_236_________________________ (freq_plasma_electron_triton_collision_profile236)_ 7.85171280789623893e+02 +Electron-triton_collision_frequency_at_point_237_________________________ (freq_plasma_electron_triton_collision_profile237)_ 7.87775792912870543e+02 +Electron-triton_collision_frequency_at_point_238_________________________ (freq_plasma_electron_triton_collision_profile238)_ 7.90404842322573472e+02 +Electron-triton_collision_frequency_at_point_239_________________________ (freq_plasma_electron_triton_collision_profile239)_ 7.93058689898340276e+02 +Electron-triton_collision_frequency_at_point_240_________________________ (freq_plasma_electron_triton_collision_profile240)_ 7.95737600180763934e+02 +Electron-triton_collision_frequency_at_point_241_________________________ (freq_plasma_electron_triton_collision_profile241)_ 7.98441841428526345e+02 +Electron-triton_collision_frequency_at_point_242_________________________ (freq_plasma_electron_triton_collision_profile242)_ 8.01171685676461607e+02 +Electron-triton_collision_frequency_at_point_243_________________________ (freq_plasma_electron_triton_collision_profile243)_ 8.03927408794602343e+02 +Electron-triton_collision_frequency_at_point_244_________________________ (freq_plasma_electron_triton_collision_profile244)_ 8.06709290548224089e+02 +Electron-triton_collision_frequency_at_point_245_________________________ (freq_plasma_electron_triton_collision_profile245)_ 8.09517614658908315e+02 +Electron-triton_collision_frequency_at_point_246_________________________ (freq_plasma_electron_triton_collision_profile246)_ 8.12352668866625208e+02 +Electron-triton_collision_frequency_at_point_247_________________________ (freq_plasma_electron_triton_collision_profile247)_ 8.15214744992872852e+02 +Electron-triton_collision_frequency_at_point_248_________________________ (freq_plasma_electron_triton_collision_profile248)_ 8.18104139004872081e+02 +Electron-triton_collision_frequency_at_point_249_________________________ (freq_plasma_electron_triton_collision_profile249)_ 8.21021151080843765e+02 +Electron-triton_collision_frequency_at_point_250_________________________ (freq_plasma_electron_triton_collision_profile250)_ 8.23966085676378725e+02 +Electron-triton_collision_frequency_at_point_251_________________________ (freq_plasma_electron_triton_collision_profile251)_ 8.26939251591925654e+02 +Electron-triton_collision_frequency_at_point_252_________________________ (freq_plasma_electron_triton_collision_profile252)_ 8.29940962041398166e+02 +Electron-triton_collision_frequency_at_point_253_________________________ (freq_plasma_electron_triton_collision_profile253)_ 8.32971534721941225e+02 +Electron-triton_collision_frequency_at_point_254_________________________ (freq_plasma_electron_triton_collision_profile254)_ 8.36031291884846496e+02 +Electron-triton_collision_frequency_at_point_255_________________________ (freq_plasma_electron_triton_collision_profile255)_ 8.39120560407660719e+02 +Electron-triton_collision_frequency_at_point_256_________________________ (freq_plasma_electron_triton_collision_profile256)_ 8.42239671867480638e+02 +Electron-triton_collision_frequency_at_point_257_________________________ (freq_plasma_electron_triton_collision_profile257)_ 8.45388962615472451e+02 +Electron-triton_collision_frequency_at_point_258_________________________ (freq_plasma_electron_triton_collision_profile258)_ 8.48568773852613504e+02 +Electron-triton_collision_frequency_at_point_259_________________________ (freq_plasma_electron_triton_collision_profile259)_ 8.51779451706690793e+02 +Electron-triton_collision_frequency_at_point_260_________________________ (freq_plasma_electron_triton_collision_profile260)_ 8.55021347310562078e+02 +Electron-triton_collision_frequency_at_point_261_________________________ (freq_plasma_electron_triton_collision_profile261)_ 8.58294816881701649e+02 +Electron-triton_collision_frequency_at_point_262_________________________ (freq_plasma_electron_triton_collision_profile262)_ 8.61600221803045542e+02 +Electron-triton_collision_frequency_at_point_263_________________________ (freq_plasma_electron_triton_collision_profile263)_ 8.64937928705157447e+02 +Electron-triton_collision_frequency_at_point_264_________________________ (freq_plasma_electron_triton_collision_profile264)_ 8.68308309549727710e+02 +Electron-triton_collision_frequency_at_point_265_________________________ (freq_plasma_electron_triton_collision_profile265)_ 8.71711741714424761e+02 +Electron-triton_collision_frequency_at_point_266_________________________ (freq_plasma_electron_triton_collision_profile266)_ 8.75148608079114638e+02 +Electron-triton_collision_frequency_at_point_267_________________________ (freq_plasma_electron_triton_collision_profile267)_ 8.78619297113470680e+02 +Electron-triton_collision_frequency_at_point_268_________________________ (freq_plasma_electron_triton_collision_profile268)_ 8.82124202965975655e+02 +Electron-triton_collision_frequency_at_point_269_________________________ (freq_plasma_electron_triton_collision_profile269)_ 8.85663725554355665e+02 +Electron-triton_collision_frequency_at_point_270_________________________ (freq_plasma_electron_triton_collision_profile270)_ 8.89238270657432622e+02 +Electron-triton_collision_frequency_at_point_271_________________________ (freq_plasma_electron_triton_collision_profile271)_ 8.92848250008443642e+02 +Electron-triton_collision_frequency_at_point_272_________________________ (freq_plasma_electron_triton_collision_profile272)_ 8.96494081389810276e+02 +Electron-triton_collision_frequency_at_point_273_________________________ (freq_plasma_electron_triton_collision_profile273)_ 9.00176188729401360e+02 +Electron-triton_collision_frequency_at_point_274_________________________ (freq_plasma_electron_triton_collision_profile274)_ 9.03895002198277325e+02 +Electron-triton_collision_frequency_at_point_275_________________________ (freq_plasma_electron_triton_collision_profile275)_ 9.07650958309960401e+02 +Electron-triton_collision_frequency_at_point_276_________________________ (freq_plasma_electron_triton_collision_profile276)_ 9.11444500021211752e+02 +Electron-triton_collision_frequency_at_point_277_________________________ (freq_plasma_electron_triton_collision_profile277)_ 9.15276076834352125e+02 +Electron-triton_collision_frequency_at_point_278_________________________ (freq_plasma_electron_triton_collision_profile278)_ 9.19146144901130924e+02 +Electron-triton_collision_frequency_at_point_279_________________________ (freq_plasma_electron_triton_collision_profile279)_ 9.23055167128154153e+02 +Electron-triton_collision_frequency_at_point_280_________________________ (freq_plasma_electron_triton_collision_profile280)_ 9.27003613283879986e+02 +Electron-triton_collision_frequency_at_point_281_________________________ (freq_plasma_electron_triton_collision_profile281)_ 9.30991960107201862e+02 +Electron-triton_collision_frequency_at_point_282_________________________ (freq_plasma_electron_triton_collision_profile282)_ 9.35020691417615922e+02 +Electron-triton_collision_frequency_at_point_283_________________________ (freq_plasma_electron_triton_collision_profile283)_ 9.39090298226989717e+02 +Electron-triton_collision_frequency_at_point_284_________________________ (freq_plasma_electron_triton_collision_profile284)_ 9.43201278852935616e+02 +Electron-triton_collision_frequency_at_point_285_________________________ (freq_plasma_electron_triton_collision_profile285)_ 9.47354139033797878e+02 +Electron-triton_collision_frequency_at_point_286_________________________ (freq_plasma_electron_triton_collision_profile286)_ 9.51549392045252034e+02 +Electron-triton_collision_frequency_at_point_287_________________________ (freq_plasma_electron_triton_collision_profile287)_ 9.55787558818529419e+02 +Electron-triton_collision_frequency_at_point_288_________________________ (freq_plasma_electron_triton_collision_profile288)_ 9.60069168060261404e+02 +Electron-triton_collision_frequency_at_point_289_________________________ (freq_plasma_electron_triton_collision_profile289)_ 9.64394756373943551e+02 +Electron-triton_collision_frequency_at_point_290_________________________ (freq_plasma_electron_triton_collision_profile290)_ 9.68764868383026510e+02 +Electron-triton_collision_frequency_at_point_291_________________________ (freq_plasma_electron_triton_collision_profile291)_ 9.73180056855619341e+02 +Electron-triton_collision_frequency_at_point_292_________________________ (freq_plasma_electron_triton_collision_profile292)_ 9.77640882830813894e+02 +Electron-triton_collision_frequency_at_point_293_________________________ (freq_plasma_electron_triton_collision_profile293)_ 9.82147915746605008e+02 +Electron-triton_collision_frequency_at_point_294_________________________ (freq_plasma_electron_triton_collision_profile294)_ 9.86701733569417343e+02 +Electron-triton_collision_frequency_at_point_295_________________________ (freq_plasma_electron_triton_collision_profile295)_ 9.91302922925213807e+02 +Electron-triton_collision_frequency_at_point_296_________________________ (freq_plasma_electron_triton_collision_profile296)_ 9.95952079232172650e+02 +Electron-triton_collision_frequency_at_point_297_________________________ (freq_plasma_electron_triton_collision_profile297)_ 1.00064980683492524e+03 +Electron-triton_collision_frequency_at_point_298_________________________ (freq_plasma_electron_triton_collision_profile298)_ 1.00539671914032260e+03 +Electron-triton_collision_frequency_at_point_299_________________________ (freq_plasma_electron_triton_collision_profile299)_ 1.01019343875471554e+03 +Electron-triton_collision_frequency_at_point_300_________________________ (freq_plasma_electron_triton_collision_profile300)_ 1.01504059762272152e+03 +Electron-triton_collision_frequency_at_point_301_________________________ (freq_plasma_electron_triton_collision_profile301)_ 1.01993883716744278e+03 +Electron-triton_collision_frequency_at_point_302_________________________ (freq_plasma_electron_triton_collision_profile302)_ 1.02488880843211200e+03 +Electron-triton_collision_frequency_at_point_303_________________________ (freq_plasma_electron_triton_collision_profile303)_ 1.02989117222311620e+03 +Electron-triton_collision_frequency_at_point_304_________________________ (freq_plasma_electron_triton_collision_profile304)_ 1.03494659925436508e+03 +Electron-triton_collision_frequency_at_point_305_________________________ (freq_plasma_electron_triton_collision_profile305)_ 1.04005577029295569e+03 +Electron-triton_collision_frequency_at_point_306_________________________ (freq_plasma_electron_triton_collision_profile306)_ 1.04521937630607613e+03 +Electron-triton_collision_frequency_at_point_307_________________________ (freq_plasma_electron_triton_collision_profile307)_ 1.05043811860910273e+03 +Electron-triton_collision_frequency_at_point_308_________________________ (freq_plasma_electron_triton_collision_profile308)_ 1.05571270901481762e+03 +Electron-triton_collision_frequency_at_point_309_________________________ (freq_plasma_electron_triton_collision_profile309)_ 1.06104386998367931e+03 +Electron-triton_collision_frequency_at_point_310_________________________ (freq_plasma_electron_triton_collision_profile310)_ 1.06643233477508215e+03 +Electron-triton_collision_frequency_at_point_311_________________________ (freq_plasma_electron_triton_collision_profile311)_ 1.07187884759950862e+03 +Electron-triton_collision_frequency_at_point_312_________________________ (freq_plasma_electron_triton_collision_profile312)_ 1.07738416377150088e+03 +Electron-triton_collision_frequency_at_point_313_________________________ (freq_plasma_electron_triton_collision_profile313)_ 1.08294904986333927e+03 +Electron-triton_collision_frequency_at_point_314_________________________ (freq_plasma_electron_triton_collision_profile314)_ 1.08857428385934054e+03 +Electron-triton_collision_frequency_at_point_315_________________________ (freq_plasma_electron_triton_collision_profile315)_ 1.09426065531065069e+03 +Electron-triton_collision_frequency_at_point_316_________________________ (freq_plasma_electron_triton_collision_profile316)_ 1.10000896549041454e+03 +Electron-triton_collision_frequency_at_point_317_________________________ (freq_plasma_electron_triton_collision_profile317)_ 1.10582002754919745e+03 +Electron-triton_collision_frequency_at_point_318_________________________ (freq_plasma_electron_triton_collision_profile318)_ 1.11169466667050256e+03 +Electron-triton_collision_frequency_at_point_319_________________________ (freq_plasma_electron_triton_collision_profile319)_ 1.11763372022624708e+03 +Electron-triton_collision_frequency_at_point_320_________________________ (freq_plasma_electron_triton_collision_profile320)_ 1.12363803793202601e+03 +Electron-triton_collision_frequency_at_point_321_________________________ (freq_plasma_electron_triton_collision_profile321)_ 1.12970848200198225e+03 +Electron-triton_collision_frequency_at_point_322_________________________ (freq_plasma_electron_triton_collision_profile322)_ 1.13584592730310874e+03 +Electron-triton_collision_frequency_at_point_323_________________________ (freq_plasma_electron_triton_collision_profile323)_ 1.14205126150875981e+03 +Electron-triton_collision_frequency_at_point_324_________________________ (freq_plasma_electron_triton_collision_profile324)_ 1.14832538525117616e+03 +Electron-triton_collision_frequency_at_point_325_________________________ (freq_plasma_electron_triton_collision_profile325)_ 1.15466921227276794e+03 +Electron-triton_collision_frequency_at_point_326_________________________ (freq_plasma_electron_triton_collision_profile326)_ 1.16108366957592921e+03 +Electron-triton_collision_frequency_at_point_327_________________________ (freq_plasma_electron_triton_collision_profile327)_ 1.16756969757109096e+03 +Electron-triton_collision_frequency_at_point_328_________________________ (freq_plasma_electron_triton_collision_profile328)_ 1.17412825022275842e+03 +Electron-triton_collision_frequency_at_point_329_________________________ (freq_plasma_electron_triton_collision_profile329)_ 1.18076029519319877e+03 +Electron-triton_collision_frequency_at_point_330_________________________ (freq_plasma_electron_triton_collision_profile330)_ 1.18746681398347027e+03 +Electron-triton_collision_frequency_at_point_331_________________________ (freq_plasma_electron_triton_collision_profile331)_ 1.19424880207144201e+03 +Electron-triton_collision_frequency_at_point_332_________________________ (freq_plasma_electron_triton_collision_profile332)_ 1.20110726904643070e+03 +Electron-triton_collision_frequency_at_point_333_________________________ (freq_plasma_electron_triton_collision_profile333)_ 1.20804323874006263e+03 +Electron-triton_collision_frequency_at_point_334_________________________ (freq_plasma_electron_triton_collision_profile334)_ 1.21505774935293607e+03 +Electron-triton_collision_frequency_at_point_335_________________________ (freq_plasma_electron_triton_collision_profile335)_ 1.22215185357663654e+03 +Electron-triton_collision_frequency_at_point_336_________________________ (freq_plasma_electron_triton_collision_profile336)_ 1.22932661871062874e+03 +Electron-triton_collision_frequency_at_point_337_________________________ (freq_plasma_electron_triton_collision_profile337)_ 1.23658312677350546e+03 +Electron-triton_collision_frequency_at_point_338_________________________ (freq_plasma_electron_triton_collision_profile338)_ 1.24392247460806857e+03 +Electron-triton_collision_frequency_at_point_339_________________________ (freq_plasma_electron_triton_collision_profile339)_ 1.25134577397965222e+03 +Electron-triton_collision_frequency_at_point_340_________________________ (freq_plasma_electron_triton_collision_profile340)_ 1.25885415166706798e+03 +Electron-triton_collision_frequency_at_point_341_________________________ (freq_plasma_electron_triton_collision_profile341)_ 1.26644874954554211e+03 +Electron-triton_collision_frequency_at_point_342_________________________ (freq_plasma_electron_triton_collision_profile342)_ 1.27413072466092740e+03 +Electron-triton_collision_frequency_at_point_343_________________________ (freq_plasma_electron_triton_collision_profile343)_ 1.28190124929446256e+03 +Electron-triton_collision_frequency_at_point_344_________________________ (freq_plasma_electron_triton_collision_profile344)_ 1.28976151101729442e+03 +Electron-triton_collision_frequency_at_point_345_________________________ (freq_plasma_electron_triton_collision_profile345)_ 1.29771271273393313e+03 +Electron-triton_collision_frequency_at_point_346_________________________ (freq_plasma_electron_triton_collision_profile346)_ 1.30575607271373588e+03 +Electron-triton_collision_frequency_at_point_347_________________________ (freq_plasma_electron_triton_collision_profile347)_ 1.31389282460951540e+03 +Electron-triton_collision_frequency_at_point_348_________________________ (freq_plasma_electron_triton_collision_profile348)_ 1.32212421746223845e+03 +Electron-triton_collision_frequency_at_point_349_________________________ (freq_plasma_electron_triton_collision_profile349)_ 1.33045151569077984e+03 +Electron-triton_collision_frequency_at_point_350_________________________ (freq_plasma_electron_triton_collision_profile350)_ 1.33887599906559217e+03 +Electron-triton_collision_frequency_at_point_351_________________________ (freq_plasma_electron_triton_collision_profile351)_ 1.34739896266511619e+03 +Electron-triton_collision_frequency_at_point_352_________________________ (freq_plasma_electron_triton_collision_profile352)_ 1.35602171681364189e+03 +Electron-triton_collision_frequency_at_point_353_________________________ (freq_plasma_electron_triton_collision_profile353)_ 1.36474558699930981e+03 +Electron-triton_collision_frequency_at_point_354_________________________ (freq_plasma_electron_triton_collision_profile354)_ 1.37357191377078698e+03 +Electron-triton_collision_frequency_at_point_355_________________________ (freq_plasma_electron_triton_collision_profile355)_ 1.38250205261115639e+03 +Electron-triton_collision_frequency_at_point_356_________________________ (freq_plasma_electron_triton_collision_profile356)_ 1.39153737378737242e+03 +Electron-triton_collision_frequency_at_point_357_________________________ (freq_plasma_electron_triton_collision_profile357)_ 1.40067926217362651e+03 +Electron-triton_collision_frequency_at_point_358_________________________ (freq_plasma_electron_triton_collision_profile358)_ 1.40992911704677863e+03 +Electron-triton_collision_frequency_at_point_359_________________________ (freq_plasma_electron_triton_collision_profile359)_ 1.41928835185200478e+03 +Electron-triton_collision_frequency_at_point_360_________________________ (freq_plasma_electron_triton_collision_profile360)_ 1.42875839393657202e+03 +Electron-triton_collision_frequency_at_point_361_________________________ (freq_plasma_electron_triton_collision_profile361)_ 1.43834068424967381e+03 +Electron-triton_collision_frequency_at_point_362_________________________ (freq_plasma_electron_triton_collision_profile362)_ 1.44803667700598157e+03 +Electron-triton_collision_frequency_at_point_363_________________________ (freq_plasma_electron_triton_collision_profile363)_ 1.45784783931057655e+03 +Electron-triton_collision_frequency_at_point_364_________________________ (freq_plasma_electron_triton_collision_profile364)_ 1.46777565074266454e+03 +Electron-triton_collision_frequency_at_point_365_________________________ (freq_plasma_electron_triton_collision_profile365)_ 1.47782160289541548e+03 +Electron-triton_collision_frequency_at_point_366_________________________ (freq_plasma_electron_triton_collision_profile366)_ 1.48798719886903791e+03 +Electron-triton_collision_frequency_at_point_367_________________________ (freq_plasma_electron_triton_collision_profile367)_ 1.49827395271409819e+03 +Electron-triton_collision_frequency_at_point_368_________________________ (freq_plasma_electron_triton_collision_profile368)_ 1.50868338882185230e+03 +Electron-triton_collision_frequency_at_point_369_________________________ (freq_plasma_electron_triton_collision_profile369)_ 1.51921704125822407e+03 +Electron-triton_collision_frequency_at_point_370_________________________ (freq_plasma_electron_triton_collision_profile370)_ 1.52987645303782165e+03 +Electron-triton_collision_frequency_at_point_371_________________________ (freq_plasma_electron_triton_collision_profile371)_ 1.54066317533421193e+03 +Electron-triton_collision_frequency_at_point_372_________________________ (freq_plasma_electron_triton_collision_profile372)_ 1.55157876662240983e+03 +Electron-triton_collision_frequency_at_point_373_________________________ (freq_plasma_electron_triton_collision_profile373)_ 1.56262479174935629e+03 +Electron-triton_collision_frequency_at_point_374_________________________ (freq_plasma_electron_triton_collision_profile374)_ 1.57380282092783909e+03 +Electron-triton_collision_frequency_at_point_375_________________________ (freq_plasma_electron_triton_collision_profile375)_ 1.58511442864914193e+03 +Electron-triton_collision_frequency_at_point_376_________________________ (freq_plasma_electron_triton_collision_profile376)_ 1.59656119250933079e+03 +Electron-triton_collision_frequency_at_point_377_________________________ (freq_plasma_electron_triton_collision_profile377)_ 1.60814469194387448e+03 +Electron-triton_collision_frequency_at_point_378_________________________ (freq_plasma_electron_triton_collision_profile378)_ 1.61986650686493635e+03 +Electron-triton_collision_frequency_at_point_379_________________________ (freq_plasma_electron_triton_collision_profile379)_ 1.63172821619537808e+03 +Electron-triton_collision_frequency_at_point_380_________________________ (freq_plasma_electron_triton_collision_profile380)_ 1.64373139629314574e+03 +Electron-triton_collision_frequency_at_point_381_________________________ (freq_plasma_electron_triton_collision_profile381)_ 1.65587761925936843e+03 +Electron-triton_collision_frequency_at_point_382_________________________ (freq_plasma_electron_triton_collision_profile382)_ 1.66816845112309852e+03 +Electron-triton_collision_frequency_at_point_383_________________________ (freq_plasma_electron_triton_collision_profile383)_ 1.68060544989521372e+03 +Electron-triton_collision_frequency_at_point_384_________________________ (freq_plasma_electron_triton_collision_profile384)_ 1.69319016348359673e+03 +Electron-triton_collision_frequency_at_point_385_________________________ (freq_plasma_electron_triton_collision_profile385)_ 1.70592412746120272e+03 +Electron-triton_collision_frequency_at_point_386_________________________ (freq_plasma_electron_triton_collision_profile386)_ 1.71880886267822120e+03 +Electron-triton_collision_frequency_at_point_387_________________________ (freq_plasma_electron_triton_collision_profile387)_ 1.73184587270894690e+03 +Electron-triton_collision_frequency_at_point_388_________________________ (freq_plasma_electron_triton_collision_profile388)_ 1.74503664112351703e+03 +Electron-triton_collision_frequency_at_point_389_________________________ (freq_plasma_electron_triton_collision_profile389)_ 1.75838262857404106e+03 +Electron-triton_collision_frequency_at_point_390_________________________ (freq_plasma_electron_triton_collision_profile390)_ 1.77188526968412179e+03 +Electron-triton_collision_frequency_at_point_391_________________________ (freq_plasma_electron_triton_collision_profile391)_ 1.78554596973005050e+03 +Electron-triton_collision_frequency_at_point_392_________________________ (freq_plasma_electron_triton_collision_profile392)_ 1.79936610110139122e+03 +Electron-triton_collision_frequency_at_point_393_________________________ (freq_plasma_electron_triton_collision_profile393)_ 1.81334699952788014e+03 +Electron-triton_collision_frequency_at_point_394_________________________ (freq_plasma_electron_triton_collision_profile394)_ 1.82748996005887375e+03 +Electron-triton_collision_frequency_at_point_395_________________________ (freq_plasma_electron_triton_collision_profile395)_ 1.84179623278078384e+03 +Electron-triton_collision_frequency_at_point_396_________________________ (freq_plasma_electron_triton_collision_profile396)_ 1.85626701825709324e+03 +Electron-triton_collision_frequency_at_point_397_________________________ (freq_plasma_electron_triton_collision_profile397)_ 1.87090346267469727e+03 +Electron-triton_collision_frequency_at_point_398_________________________ (freq_plasma_electron_triton_collision_profile398)_ 1.88570665267935965e+03 +Electron-triton_collision_frequency_at_point_399_________________________ (freq_plasma_electron_triton_collision_profile399)_ 1.90067760988210398e+03 +Electron-triton_collision_frequency_at_point_400_________________________ (freq_plasma_electron_triton_collision_profile400)_ 1.91581728501736029e+03 +Electron-triton_collision_frequency_at_point_401_________________________ (freq_plasma_electron_triton_collision_profile401)_ 1.93112655173250346e+03 +Electron-triton_collision_frequency_at_point_402_________________________ (freq_plasma_electron_triton_collision_profile402)_ 1.94660619998737639e+03 +Electron-triton_collision_frequency_at_point_403_________________________ (freq_plasma_electron_triton_collision_profile403)_ 1.96225692904105154e+03 +Electron-triton_collision_frequency_at_point_404_________________________ (freq_plasma_electron_triton_collision_profile404)_ 1.97807934000186174e+03 +Electron-triton_collision_frequency_at_point_405_________________________ (freq_plasma_electron_triton_collision_profile405)_ 1.99407392791531925e+03 +Electron-triton_collision_frequency_at_point_406_________________________ (freq_plasma_electron_triton_collision_profile406)_ 2.01024107336306884e+03 +Electron-triton_collision_frequency_at_point_407_________________________ (freq_plasma_electron_triton_collision_profile407)_ 2.02658103354449258e+03 +Electron-triton_collision_frequency_at_point_408_________________________ (freq_plasma_electron_triton_collision_profile408)_ 2.04309393281093003e+03 +Electron-triton_collision_frequency_at_point_409_________________________ (freq_plasma_electron_triton_collision_profile409)_ 2.05977975262066548e+03 +Electron-triton_collision_frequency_at_point_410_________________________ (freq_plasma_electron_triton_collision_profile410)_ 2.07663832088106028e+03 +Electron-triton_collision_frequency_at_point_411_________________________ (freq_plasma_electron_triton_collision_profile411)_ 2.09366930064210510e+03 +Electron-triton_collision_frequency_at_point_412_________________________ (freq_plasma_electron_triton_collision_profile412)_ 2.11087217810362654e+03 +Electron-triton_collision_frequency_at_point_413_________________________ (freq_plasma_electron_triton_collision_profile413)_ 2.12824624989599852e+03 +Electron-triton_collision_frequency_at_point_414_________________________ (freq_plasma_electron_triton_collision_profile414)_ 2.14579060959186245e+03 +Electron-triton_collision_frequency_at_point_415_________________________ (freq_plasma_electron_triton_collision_profile415)_ 2.16350413340362047e+03 +Electron-triton_collision_frequency_at_point_416_________________________ (freq_plasma_electron_triton_collision_profile416)_ 2.18138546501871951e+03 +Electron-triton_collision_frequency_at_point_417_________________________ (freq_plasma_electron_triton_collision_profile417)_ 2.19943299952158986e+03 +Electron-triton_collision_frequency_at_point_418_________________________ (freq_plasma_electron_triton_collision_profile418)_ 2.21764486634785089e+03 +Electron-triton_collision_frequency_at_point_419_________________________ (freq_plasma_electron_triton_collision_profile419)_ 2.23601891121269500e+03 +Electron-triton_collision_frequency_at_point_420_________________________ (freq_plasma_electron_triton_collision_profile420)_ 2.25455267695150678e+03 +Electron-triton_collision_frequency_at_point_421_________________________ (freq_plasma_electron_triton_collision_profile421)_ 2.27324338320635388e+03 +Electron-triton_collision_frequency_at_point_422_________________________ (freq_plasma_electron_triton_collision_profile422)_ 2.29208790488729346e+03 +Electron-triton_collision_frequency_at_point_423_________________________ (freq_plasma_electron_triton_collision_profile423)_ 2.31108274933215671e+03 +Electron-triton_collision_frequency_at_point_424_________________________ (freq_plasma_electron_triton_collision_profile424)_ 2.33022403208263859e+03 +Electron-triton_collision_frequency_at_point_425_________________________ (freq_plasma_electron_triton_collision_profile425)_ 2.34950745118799705e+03 +Electron-triton_collision_frequency_at_point_426_________________________ (freq_plasma_electron_triton_collision_profile426)_ 2.36892825994040822e+03 +Electron-triton_collision_frequency_at_point_427_________________________ (freq_plasma_electron_triton_collision_profile427)_ 2.38848123793776904e+03 +Electron-triton_collision_frequency_at_point_428_________________________ (freq_plasma_electron_triton_collision_profile428)_ 2.40816066036041775e+03 +Electron-triton_collision_frequency_at_point_429_________________________ (freq_plasma_electron_triton_collision_profile429)_ 2.42796026533765689e+03 +Electron-triton_collision_frequency_at_point_430_________________________ (freq_plasma_electron_triton_collision_profile430)_ 2.44787321926776031e+03 +Electron-triton_collision_frequency_at_point_431_________________________ (freq_plasma_electron_triton_collision_profile431)_ 2.46789207994113576e+03 +Electron-triton_collision_frequency_at_point_432_________________________ (freq_plasma_electron_triton_collision_profile432)_ 2.48800875730005191e+03 +Electron-triton_collision_frequency_at_point_433_________________________ (freq_plasma_electron_triton_collision_profile433)_ 2.50821447164937263e+03 +Electron-triton_collision_frequency_at_point_434_________________________ (freq_plasma_electron_triton_collision_profile434)_ 2.52849970911042146e+03 +Electron-triton_collision_frequency_at_point_435_________________________ (freq_plasma_electron_triton_collision_profile435)_ 2.54885417408397370e+03 +Electron-triton_collision_frequency_at_point_436_________________________ (freq_plasma_electron_triton_collision_profile436)_ 2.56926673845696223e+03 +Electron-triton_collision_frequency_at_point_437_________________________ (freq_plasma_electron_triton_collision_profile437)_ 2.58972538725044615e+03 +Electron-triton_collision_frequency_at_point_438_________________________ (freq_plasma_electron_triton_collision_profile438)_ 2.61021716036139924e+03 +Electron-triton_collision_frequency_at_point_439_________________________ (freq_plasma_electron_triton_collision_profile439)_ 2.63072808999688323e+03 +Electron-triton_collision_frequency_at_point_440_________________________ (freq_plasma_electron_triton_collision_profile440)_ 2.65124313333313330e+03 +Electron-triton_collision_frequency_at_point_441_________________________ (freq_plasma_electron_triton_collision_profile441)_ 2.67174609985151983e+03 +Electron-triton_collision_frequency_at_point_442_________________________ (freq_plasma_electron_triton_collision_profile442)_ 2.69221957270384928e+03 +Electron-triton_collision_frequency_at_point_443_________________________ (freq_plasma_electron_triton_collision_profile443)_ 2.71264482333609203e+03 +Electron-triton_collision_frequency_at_point_444_________________________ (freq_plasma_electron_triton_collision_profile444)_ 2.73300171844548322e+03 +Electron-triton_collision_frequency_at_point_445_________________________ (freq_plasma_electron_triton_collision_profile445)_ 2.75326861815197981e+03 +Electron-triton_collision_frequency_at_point_446_________________________ (freq_plasma_electron_triton_collision_profile446)_ 2.77342226401877997e+03 +Electron-triton_collision_frequency_at_point_447_________________________ (freq_plasma_electron_triton_collision_profile447)_ 2.79343765524209721e+03 +Electron-triton_collision_frequency_at_point_448_________________________ (freq_plasma_electron_triton_collision_profile448)_ 2.81328791092396614e+03 +Electron-triton_collision_frequency_at_point_449_________________________ (freq_plasma_electron_triton_collision_profile449)_ 2.83294411581314171e+03 +Electron-triton_collision_frequency_at_point_450_________________________ (freq_plasma_electron_triton_collision_profile450)_ 2.85237514620266347e+03 +Electron-triton_collision_frequency_at_point_451_________________________ (freq_plasma_electron_triton_collision_profile451)_ 2.87154747174634258e+03 +Electron-triton_collision_frequency_at_point_452_________________________ (freq_plasma_electron_triton_collision_profile452)_ 2.89042492770800891e+03 +Electron-triton_collision_frequency_at_point_453_________________________ (freq_plasma_electron_triton_collision_profile453)_ 2.90896845045276677e+03 +Electron-triton_collision_frequency_at_point_454_________________________ (freq_plasma_electron_triton_collision_profile454)_ 2.92713576662694550e+03 +Electron-triton_collision_frequency_at_point_455_________________________ (freq_plasma_electron_triton_collision_profile455)_ 2.94488102314374328e+03 +Electron-triton_collision_frequency_at_point_456_________________________ (freq_plasma_electron_triton_collision_profile456)_ 2.96215434031184395e+03 +Electron-triton_collision_frequency_at_point_457_________________________ (freq_plasma_electron_triton_collision_profile457)_ 2.97890126343772272e+03 +Electron-triton_collision_frequency_at_point_458_________________________ (freq_plasma_electron_triton_collision_profile458)_ 2.99506207771647632e+03 +Electron-triton_collision_frequency_at_point_459_________________________ (freq_plasma_electron_triton_collision_profile459)_ 3.01057093501172767e+03 +Electron-triton_collision_frequency_at_point_460_________________________ (freq_plasma_electron_triton_collision_profile460)_ 3.02535471533658301e+03 +Electron-triton_collision_frequency_at_point_461_________________________ (freq_plasma_electron_triton_collision_profile461)_ 3.03933150332239939e+03 +Electron-triton_collision_frequency_at_point_462_________________________ (freq_plasma_electron_triton_collision_profile462)_ 3.05240848678938983e+03 +Electron-triton_collision_frequency_at_point_463_________________________ (freq_plasma_electron_triton_collision_profile463)_ 3.06447895204517772e+03 +Electron-triton_collision_frequency_at_point_464_________________________ (freq_plasma_electron_triton_collision_profile464)_ 3.07541779527074914e+03 +Electron-triton_collision_frequency_at_point_465_________________________ (freq_plasma_electron_triton_collision_profile465)_ 3.08507443776834270e+03 +Electron-triton_collision_frequency_at_point_466_________________________ (freq_plasma_electron_triton_collision_profile466)_ 3.09326080876480000e+03 +Electron-triton_collision_frequency_at_point_467_________________________ (freq_plasma_electron_triton_collision_profile467)_ 3.09972882905673441e+03 +Electron-triton_collision_frequency_at_point_468_________________________ (freq_plasma_electron_triton_collision_profile468)_ 3.10412142406367184e+03 +Electron-triton_collision_frequency_at_point_469_________________________ (freq_plasma_electron_triton_collision_profile469)_ 3.10583423073049698e+03 +Electron-triton_collision_frequency_at_point_470_________________________ (freq_plasma_electron_triton_collision_profile470)_ 3.10316440153699932e+03 +Electron-triton_collision_frequency_at_point_471_________________________ (freq_plasma_electron_triton_collision_profile471)_ 3.21229243994502849e+03 +Electron-triton_collision_frequency_at_point_472_________________________ (freq_plasma_electron_triton_collision_profile472)_ 3.33011843593549656e+03 +Electron-triton_collision_frequency_at_point_473_________________________ (freq_plasma_electron_triton_collision_profile473)_ 3.45769966079701862e+03 +Electron-triton_collision_frequency_at_point_474_________________________ (freq_plasma_electron_triton_collision_profile474)_ 3.59626810083155988e+03 +Electron-triton_collision_frequency_at_point_475_________________________ (freq_plasma_electron_triton_collision_profile475)_ 3.74726747594504104e+03 +Electron-triton_collision_frequency_at_point_476_________________________ (freq_plasma_electron_triton_collision_profile476)_ 3.91239996005841749e+03 +Electron-triton_collision_frequency_at_point_477_________________________ (freq_plasma_electron_triton_collision_profile477)_ 4.09368567324979995e+03 +Electron-triton_collision_frequency_at_point_478_________________________ (freq_plasma_electron_triton_collision_profile478)_ 4.29353916839417343e+03 +Electron-triton_collision_frequency_at_point_479_________________________ (freq_plasma_electron_triton_collision_profile479)_ 4.51486879529938233e+03 +Electron-triton_collision_frequency_at_point_480_________________________ (freq_plasma_electron_triton_collision_profile480)_ 4.76120725219337874e+03 +Electron-triton_collision_frequency_at_point_481_________________________ (freq_plasma_electron_triton_collision_profile481)_ 5.03688523986502423e+03 +Electron-triton_collision_frequency_at_point_482_________________________ (freq_plasma_electron_triton_collision_profile482)_ 5.34726558567127267e+03 +Electron-triton_collision_frequency_at_point_483_________________________ (freq_plasma_electron_triton_collision_profile483)_ 5.69906360964273244e+03 +Electron-triton_collision_frequency_at_point_484_________________________ (freq_plasma_electron_triton_collision_profile484)_ 6.10079274116533543e+03 +Electron-triton_collision_frequency_at_point_485_________________________ (freq_plasma_electron_triton_collision_profile485)_ 6.56339573481025491e+03 +Electron-triton_collision_frequency_at_point_486_________________________ (freq_plasma_electron_triton_collision_profile486)_ 7.10115714949600442e+03 +Electron-triton_collision_frequency_at_point_487_________________________ (freq_plasma_electron_triton_collision_profile487)_ 7.73305292984182142e+03 +Electron-triton_collision_frequency_at_point_488_________________________ (freq_plasma_electron_triton_collision_profile488)_ 8.48479888637290605e+03 +Electron-triton_collision_frequency_at_point_489_________________________ (freq_plasma_electron_triton_collision_profile489)_ 9.39205353579712573e+03 +Electron-triton_collision_frequency_at_point_490_________________________ (freq_plasma_electron_triton_collision_profile490)_ 1.05056001843884096e+04 +Electron-triton_collision_frequency_at_point_491_________________________ (freq_plasma_electron_triton_collision_profile491)_ 1.19000735646560224e+04 +Electron-triton_collision_frequency_at_point_492_________________________ (freq_plasma_electron_triton_collision_profile492)_ 1.36893690450674530e+04 +Electron-triton_collision_frequency_at_point_493_________________________ (freq_plasma_electron_triton_collision_profile493)_ 1.60554521618910167e+04 +Electron-triton_collision_frequency_at_point_494_________________________ (freq_plasma_electron_triton_collision_profile494)_ 1.93061484658793670e+04 +Electron-triton_collision_frequency_at_point_495_________________________ (freq_plasma_electron_triton_collision_profile495)_ 2.40018544380836975e+04 +Electron-triton_collision_frequency_at_point_496_________________________ (freq_plasma_electron_triton_collision_profile496)_ 3.12677351165293512e+04 +Electron-triton_collision_frequency_at_point_497_________________________ (freq_plasma_electron_triton_collision_profile497)_ 4.36970860493335204e+04 +Electron-triton_collision_frequency_at_point_498_________________________ (freq_plasma_electron_triton_collision_profile498)_ 6.86724439744499687e+04 +Electron-triton_collision_frequency_at_point_499_________________________ (freq_plasma_electron_triton_collision_profile499)_ 1.36765111854857823e+05 +Electron-triton_collision_frequency_at_point_500_________________________ (freq_plasma_electron_triton_collision_profile500)_ 5.81814345912921242e+05 +Volume_averaged_electron-alpha_thermal_collision_frequency_(Hz)__________ (freq_plasma_electron_alpha_thermal_collision_vol_avg)_ 9.21960859035050930e+02 +Electron-alpha_thermal_collision_frequency_at_point_0____________________ (freq_plasma_electron_alpha_thermal_collision_profile0)_ 4.22755347959770290e+02 +Electron-alpha_thermal_collision_frequency_at_point_1____________________ (freq_plasma_electron_alpha_thermal_collision_profile1)_ 4.22757754086169371e+02 +Electron-alpha_thermal_collision_frequency_at_point_2____________________ (freq_plasma_electron_alpha_thermal_collision_profile2)_ 4.22764972598214513e+02 +Electron-alpha_thermal_collision_frequency_at_point_3____________________ (freq_plasma_electron_alpha_thermal_collision_profile3)_ 4.22777003894469033e+02 +Electron-alpha_thermal_collision_frequency_at_point_4____________________ (freq_plasma_electron_alpha_thermal_collision_profile4)_ 4.22793848639257135e+02 +Electron-alpha_thermal_collision_frequency_at_point_5____________________ (freq_plasma_electron_alpha_thermal_collision_profile5)_ 4.22815507762746734e+02 +Electron-alpha_thermal_collision_frequency_at_point_6____________________ (freq_plasma_electron_alpha_thermal_collision_profile6)_ 4.22841982461062003e+02 +Electron-alpha_thermal_collision_frequency_at_point_7____________________ (freq_plasma_electron_alpha_thermal_collision_profile7)_ 4.22873274196428383e+02 +Electron-alpha_thermal_collision_frequency_at_point_8____________________ (freq_plasma_electron_alpha_thermal_collision_profile8)_ 4.22909384697351925e+02 +Electron-alpha_thermal_collision_frequency_at_point_9____________________ (freq_plasma_electron_alpha_thermal_collision_profile9)_ 4.22950315958828185e+02 +Electron-alpha_thermal_collision_frequency_at_point_10___________________ (freq_plasma_electron_alpha_thermal_collision_profile10)_ 4.22996070242586143e+02 +Electron-alpha_thermal_collision_frequency_at_point_11___________________ (freq_plasma_electron_alpha_thermal_collision_profile11)_ 4.23046650077363324e+02 +Electron-alpha_thermal_collision_frequency_at_point_12___________________ (freq_plasma_electron_alpha_thermal_collision_profile12)_ 4.23102058259213720e+02 +Electron-alpha_thermal_collision_frequency_at_point_13___________________ (freq_plasma_electron_alpha_thermal_collision_profile13)_ 4.23162297851848962e+02 +Electron-alpha_thermal_collision_frequency_at_point_14___________________ (freq_plasma_electron_alpha_thermal_collision_profile14)_ 4.23227372187011383e+02 +Electron-alpha_thermal_collision_frequency_at_point_15___________________ (freq_plasma_electron_alpha_thermal_collision_profile15)_ 4.23297284864879600e+02 +Electron-alpha_thermal_collision_frequency_at_point_16___________________ (freq_plasma_electron_alpha_thermal_collision_profile16)_ 4.23372039754509672e+02 +Electron-alpha_thermal_collision_frequency_at_point_17___________________ (freq_plasma_electron_alpha_thermal_collision_profile17)_ 4.23451640994304512e+02 +Electron-alpha_thermal_collision_frequency_at_point_18___________________ (freq_plasma_electron_alpha_thermal_collision_profile18)_ 4.23536092992521731e+02 +Electron-alpha_thermal_collision_frequency_at_point_19___________________ (freq_plasma_electron_alpha_thermal_collision_profile19)_ 4.23625400427809325e+02 +Electron-alpha_thermal_collision_frequency_at_point_20___________________ (freq_plasma_electron_alpha_thermal_collision_profile20)_ 4.23719568249779854e+02 +Electron-alpha_thermal_collision_frequency_at_point_21___________________ (freq_plasma_electron_alpha_thermal_collision_profile21)_ 4.23818601679613892e+02 +Electron-alpha_thermal_collision_frequency_at_point_22___________________ (freq_plasma_electron_alpha_thermal_collision_profile22)_ 4.23922506210698941e+02 +Electron-alpha_thermal_collision_frequency_at_point_23___________________ (freq_plasma_electron_alpha_thermal_collision_profile23)_ 4.24031287609302296e+02 +Electron-alpha_thermal_collision_frequency_at_point_24___________________ (freq_plasma_electron_alpha_thermal_collision_profile24)_ 4.24144951915276295e+02 +Electron-alpha_thermal_collision_frequency_at_point_25___________________ (freq_plasma_electron_alpha_thermal_collision_profile25)_ 4.24263505442798476e+02 +Electron-alpha_thermal_collision_frequency_at_point_26___________________ (freq_plasma_electron_alpha_thermal_collision_profile26)_ 4.24386954781146869e+02 +Electron-alpha_thermal_collision_frequency_at_point_27___________________ (freq_plasma_electron_alpha_thermal_collision_profile27)_ 4.24515306795506035e+02 +Electron-alpha_thermal_collision_frequency_at_point_28___________________ (freq_plasma_electron_alpha_thermal_collision_profile28)_ 4.24648568627812210e+02 +Electron-alpha_thermal_collision_frequency_at_point_29___________________ (freq_plasma_electron_alpha_thermal_collision_profile29)_ 4.24786747697628982e+02 +Electron-alpha_thermal_collision_frequency_at_point_30___________________ (freq_plasma_electron_alpha_thermal_collision_profile30)_ 4.24929851703061388e+02 +Electron-alpha_thermal_collision_frequency_at_point_31___________________ (freq_plasma_electron_alpha_thermal_collision_profile31)_ 4.25077888621700424e+02 +Electron-alpha_thermal_collision_frequency_at_point_32___________________ (freq_plasma_electron_alpha_thermal_collision_profile32)_ 4.25230866711608257e+02 +Electron-alpha_thermal_collision_frequency_at_point_33___________________ (freq_plasma_electron_alpha_thermal_collision_profile33)_ 4.25388794512333504e+02 +Electron-alpha_thermal_collision_frequency_at_point_34___________________ (freq_plasma_electron_alpha_thermal_collision_profile34)_ 4.25551680845966530e+02 +Electron-alpha_thermal_collision_frequency_at_point_35___________________ (freq_plasma_electron_alpha_thermal_collision_profile35)_ 4.25719534818226464e+02 +Electron-alpha_thermal_collision_frequency_at_point_36___________________ (freq_plasma_electron_alpha_thermal_collision_profile36)_ 4.25892365819588520e+02 +Electron-alpha_thermal_collision_frequency_at_point_37___________________ (freq_plasma_electron_alpha_thermal_collision_profile37)_ 4.26070183526443770e+02 +Electron-alpha_thermal_collision_frequency_at_point_38___________________ (freq_plasma_electron_alpha_thermal_collision_profile38)_ 4.26252997902298091e+02 +Electron-alpha_thermal_collision_frequency_at_point_39___________________ (freq_plasma_electron_alpha_thermal_collision_profile39)_ 4.26440819199005830e+02 +Electron-alpha_thermal_collision_frequency_at_point_40___________________ (freq_plasma_electron_alpha_thermal_collision_profile40)_ 4.26633657958042193e+02 +Electron-alpha_thermal_collision_frequency_at_point_41___________________ (freq_plasma_electron_alpha_thermal_collision_profile41)_ 4.26831525011812744e+02 +Electron-alpha_thermal_collision_frequency_at_point_42___________________ (freq_plasma_electron_alpha_thermal_collision_profile42)_ 4.27034431484998038e+02 +Electron-alpha_thermal_collision_frequency_at_point_43___________________ (freq_plasma_electron_alpha_thermal_collision_profile43)_ 4.27242388795940428e+02 +Electron-alpha_thermal_collision_frequency_at_point_44___________________ (freq_plasma_electron_alpha_thermal_collision_profile44)_ 4.27455408658064698e+02 +Electron-alpha_thermal_collision_frequency_at_point_45___________________ (freq_plasma_electron_alpha_thermal_collision_profile45)_ 4.27673503081339561e+02 +Electron-alpha_thermal_collision_frequency_at_point_46___________________ (freq_plasma_electron_alpha_thermal_collision_profile46)_ 4.27896684373777816e+02 +Electron-alpha_thermal_collision_frequency_at_point_47___________________ (freq_plasma_electron_alpha_thermal_collision_profile47)_ 4.28124965142974645e+02 +Electron-alpha_thermal_collision_frequency_at_point_48___________________ (freq_plasma_electron_alpha_thermal_collision_profile48)_ 4.28358358297685243e+02 +Electron-alpha_thermal_collision_frequency_at_point_49___________________ (freq_plasma_electron_alpha_thermal_collision_profile49)_ 4.28596877049443833e+02 +Electron-alpha_thermal_collision_frequency_at_point_50___________________ (freq_plasma_electron_alpha_thermal_collision_profile50)_ 4.28840534914220655e+02 +Electron-alpha_thermal_collision_frequency_at_point_51___________________ (freq_plasma_electron_alpha_thermal_collision_profile51)_ 4.29089345714119816e+02 +Electron-alpha_thermal_collision_frequency_at_point_52___________________ (freq_plasma_electron_alpha_thermal_collision_profile52)_ 4.29343323579119783e+02 +Electron-alpha_thermal_collision_frequency_at_point_53___________________ (freq_plasma_electron_alpha_thermal_collision_profile53)_ 4.29602482948852412e+02 +Electron-alpha_thermal_collision_frequency_at_point_54___________________ (freq_plasma_electron_alpha_thermal_collision_profile54)_ 4.29866838574424833e+02 +Electron-alpha_thermal_collision_frequency_at_point_55___________________ (freq_plasma_electron_alpha_thermal_collision_profile55)_ 4.30136405520283404e+02 +Electron-alpha_thermal_collision_frequency_at_point_56___________________ (freq_plasma_electron_alpha_thermal_collision_profile56)_ 4.30411199166119161e+02 +Electron-alpha_thermal_collision_frequency_at_point_57___________________ (freq_plasma_electron_alpha_thermal_collision_profile57)_ 4.30691235208816920e+02 +Electron-alpha_thermal_collision_frequency_at_point_58___________________ (freq_plasma_electron_alpha_thermal_collision_profile58)_ 4.30976529664446502e+02 +Electron-alpha_thermal_collision_frequency_at_point_59___________________ (freq_plasma_electron_alpha_thermal_collision_profile59)_ 4.31267098870298582e+02 +Electron-alpha_thermal_collision_frequency_at_point_60___________________ (freq_plasma_electron_alpha_thermal_collision_profile60)_ 4.31562959486963507e+02 +Electron-alpha_thermal_collision_frequency_at_point_61___________________ (freq_plasma_electron_alpha_thermal_collision_profile61)_ 4.31864128500454683e+02 +Electron-alpha_thermal_collision_frequency_at_point_62___________________ (freq_plasma_electron_alpha_thermal_collision_profile62)_ 4.32170623224378630e+02 +Electron-alpha_thermal_collision_frequency_at_point_63___________________ (freq_plasma_electron_alpha_thermal_collision_profile63)_ 4.32482461302147385e+02 +Electron-alpha_thermal_collision_frequency_at_point_64___________________ (freq_plasma_electron_alpha_thermal_collision_profile64)_ 4.32799660709238651e+02 +Electron-alpha_thermal_collision_frequency_at_point_65___________________ (freq_plasma_electron_alpha_thermal_collision_profile65)_ 4.33122239755502733e+02 +Electron-alpha_thermal_collision_frequency_at_point_66___________________ (freq_plasma_electron_alpha_thermal_collision_profile66)_ 4.33450217087515227e+02 +Electron-alpha_thermal_collision_frequency_at_point_67___________________ (freq_plasma_electron_alpha_thermal_collision_profile67)_ 4.33783611690976272e+02 +Electron-alpha_thermal_collision_frequency_at_point_68___________________ (freq_plasma_electron_alpha_thermal_collision_profile68)_ 4.34122442893160326e+02 +Electron-alpha_thermal_collision_frequency_at_point_69___________________ (freq_plasma_electron_alpha_thermal_collision_profile69)_ 4.34466730365411422e+02 +Electron-alpha_thermal_collision_frequency_at_point_70___________________ (freq_plasma_electron_alpha_thermal_collision_profile70)_ 4.34816494125690156e+02 +Electron-alpha_thermal_collision_frequency_at_point_71___________________ (freq_plasma_electron_alpha_thermal_collision_profile71)_ 4.35171754541166592e+02 +Electron-alpha_thermal_collision_frequency_at_point_72___________________ (freq_plasma_electron_alpha_thermal_collision_profile72)_ 4.35532532330867809e+02 +Electron-alpha_thermal_collision_frequency_at_point_73___________________ (freq_plasma_electron_alpha_thermal_collision_profile73)_ 4.35898848568371704e+02 +Electron-alpha_thermal_collision_frequency_at_point_74___________________ (freq_plasma_electron_alpha_thermal_collision_profile74)_ 4.36270724684555091e+02 +Electron-alpha_thermal_collision_frequency_at_point_75___________________ (freq_plasma_electron_alpha_thermal_collision_profile75)_ 4.36648182470392214e+02 +Electron-alpha_thermal_collision_frequency_at_point_76___________________ (freq_plasma_electron_alpha_thermal_collision_profile76)_ 4.37031244079805560e+02 +Electron-alpha_thermal_collision_frequency_at_point_77___________________ (freq_plasma_electron_alpha_thermal_collision_profile77)_ 4.37419932032571694e+02 +Electron-alpha_thermal_collision_frequency_at_point_78___________________ (freq_plasma_electron_alpha_thermal_collision_profile78)_ 4.37814269217277626e+02 +Electron-alpha_thermal_collision_frequency_at_point_79___________________ (freq_plasma_electron_alpha_thermal_collision_profile79)_ 4.38214278894334711e+02 +Electron-alpha_thermal_collision_frequency_at_point_80___________________ (freq_plasma_electron_alpha_thermal_collision_profile80)_ 4.38619984699045460e+02 +Electron-alpha_thermal_collision_frequency_at_point_81___________________ (freq_plasma_electron_alpha_thermal_collision_profile81)_ 4.39031410644728112e+02 +Electron-alpha_thermal_collision_frequency_at_point_82___________________ (freq_plasma_electron_alpha_thermal_collision_profile82)_ 4.39448581125894805e+02 +Electron-alpha_thermal_collision_frequency_at_point_83___________________ (freq_plasma_electron_alpha_thermal_collision_profile83)_ 4.39871520921489548e+02 +Electron-alpha_thermal_collision_frequency_at_point_84___________________ (freq_plasma_electron_alpha_thermal_collision_profile84)_ 4.40300255198183606e+02 +Electron-alpha_thermal_collision_frequency_at_point_85___________________ (freq_plasma_electron_alpha_thermal_collision_profile85)_ 4.40734809513727669e+02 +Electron-alpha_thermal_collision_frequency_at_point_86___________________ (freq_plasma_electron_alpha_thermal_collision_profile86)_ 4.41175209820366490e+02 +Electron-alpha_thermal_collision_frequency_at_point_87___________________ (freq_plasma_electron_alpha_thermal_collision_profile87)_ 4.41621482468310660e+02 +Electron-alpha_thermal_collision_frequency_at_point_88___________________ (freq_plasma_electron_alpha_thermal_collision_profile88)_ 4.42073654209271012e+02 +Electron-alpha_thermal_collision_frequency_at_point_89___________________ (freq_plasma_electron_alpha_thermal_collision_profile89)_ 4.42531752200054427e+02 +Electron-alpha_thermal_collision_frequency_at_point_90___________________ (freq_plasma_electron_alpha_thermal_collision_profile90)_ 4.42995804006222386e+02 +Electron-alpha_thermal_collision_frequency_at_point_91___________________ (freq_plasma_electron_alpha_thermal_collision_profile91)_ 4.43465837605813022e+02 +Electron-alpha_thermal_collision_frequency_at_point_92___________________ (freq_plasma_electron_alpha_thermal_collision_profile92)_ 4.43941881393126323e+02 +Electron-alpha_thermal_collision_frequency_at_point_93___________________ (freq_plasma_electron_alpha_thermal_collision_profile93)_ 4.44423964182576015e+02 +Electron-alpha_thermal_collision_frequency_at_point_94___________________ (freq_plasma_electron_alpha_thermal_collision_profile94)_ 4.44912115212605727e+02 +Electron-alpha_thermal_collision_frequency_at_point_95___________________ (freq_plasma_electron_alpha_thermal_collision_profile95)_ 4.45406364149674630e+02 +Electron-alpha_thermal_collision_frequency_at_point_96___________________ (freq_plasma_electron_alpha_thermal_collision_profile96)_ 4.45906741092307925e+02 +Electron-alpha_thermal_collision_frequency_at_point_97___________________ (freq_plasma_electron_alpha_thermal_collision_profile97)_ 4.46413276575218049e+02 +Electron-alpha_thermal_collision_frequency_at_point_98___________________ (freq_plasma_electron_alpha_thermal_collision_profile98)_ 4.46926001573494773e+02 +Electron-alpha_thermal_collision_frequency_at_point_99___________________ (freq_plasma_electron_alpha_thermal_collision_profile99)_ 4.47444947506866527e+02 +Electron-alpha_thermal_collision_frequency_at_point_100__________________ (freq_plasma_electron_alpha_thermal_collision_profile100)_ 4.47970146244032662e+02 +Electron-alpha_thermal_collision_frequency_at_point_101__________________ (freq_plasma_electron_alpha_thermal_collision_profile101)_ 4.48501630107069730e+02 +Electron-alpha_thermal_collision_frequency_at_point_102__________________ (freq_plasma_electron_alpha_thermal_collision_profile102)_ 4.49039431875908917e+02 +Electron-alpha_thermal_collision_frequency_at_point_103__________________ (freq_plasma_electron_alpha_thermal_collision_profile103)_ 4.49583584792891997e+02 +Electron-alpha_thermal_collision_frequency_at_point_104__________________ (freq_plasma_electron_alpha_thermal_collision_profile104)_ 4.50134122567399174e+02 +Electron-alpha_thermal_collision_frequency_at_point_105__________________ (freq_plasma_electron_alpha_thermal_collision_profile105)_ 4.50691079380556630e+02 +Electron-alpha_thermal_collision_frequency_at_point_106__________________ (freq_plasma_electron_alpha_thermal_collision_profile106)_ 4.51254489890021432e+02 +Electron-alpha_thermal_collision_frequency_at_point_107__________________ (freq_plasma_electron_alpha_thermal_collision_profile107)_ 4.51824389234844034e+02 +Electron-alpha_thermal_collision_frequency_at_point_108__________________ (freq_plasma_electron_alpha_thermal_collision_profile108)_ 4.52400813040414164e+02 +Electron-alpha_thermal_collision_frequency_at_point_109__________________ (freq_plasma_electron_alpha_thermal_collision_profile109)_ 4.52983797423484702e+02 +Electron-alpha_thermal_collision_frequency_at_point_110__________________ (freq_plasma_electron_alpha_thermal_collision_profile110)_ 4.53573378997281395e+02 +Electron-alpha_thermal_collision_frequency_at_point_111__________________ (freq_plasma_electron_alpha_thermal_collision_profile111)_ 4.54169594876693793e+02 +Electron-alpha_thermal_collision_frequency_at_point_112__________________ (freq_plasma_electron_alpha_thermal_collision_profile112)_ 4.54772482683553619e+02 +Electron-alpha_thermal_collision_frequency_at_point_113__________________ (freq_plasma_electron_alpha_thermal_collision_profile113)_ 4.55382080551997831e+02 +Electron-alpha_thermal_collision_frequency_at_point_114__________________ (freq_plasma_electron_alpha_thermal_collision_profile114)_ 4.55998427133921155e+02 +Electron-alpha_thermal_collision_frequency_at_point_115__________________ (freq_plasma_electron_alpha_thermal_collision_profile115)_ 4.56621561604514341e+02 +Electron-alpha_thermal_collision_frequency_at_point_116__________________ (freq_plasma_electron_alpha_thermal_collision_profile116)_ 4.57251523667897573e+02 +Electron-alpha_thermal_collision_frequency_at_point_117__________________ (freq_plasma_electron_alpha_thermal_collision_profile117)_ 4.57888353562840905e+02 +Electron-alpha_thermal_collision_frequency_at_point_118__________________ (freq_plasma_electron_alpha_thermal_collision_profile118)_ 4.58532092068581960e+02 +Electron-alpha_thermal_collision_frequency_at_point_119__________________ (freq_plasma_electron_alpha_thermal_collision_profile119)_ 4.59182780510734347e+02 +Electron-alpha_thermal_collision_frequency_at_point_120__________________ (freq_plasma_electron_alpha_thermal_collision_profile120)_ 4.59840460767293905e+02 +Electron-alpha_thermal_collision_frequency_at_point_121__________________ (freq_plasma_electron_alpha_thermal_collision_profile121)_ 4.60505175274743465e+02 +Electron-alpha_thermal_collision_frequency_at_point_122__________________ (freq_plasma_electron_alpha_thermal_collision_profile122)_ 4.61176967034255085e+02 +Electron-alpha_thermal_collision_frequency_at_point_123__________________ (freq_plasma_electron_alpha_thermal_collision_profile123)_ 4.61855879617992059e+02 +Electron-alpha_thermal_collision_frequency_at_point_124__________________ (freq_plasma_electron_alpha_thermal_collision_profile124)_ 4.62541957175514483e+02 +Electron-alpha_thermal_collision_frequency_at_point_125__________________ (freq_plasma_electron_alpha_thermal_collision_profile125)_ 4.63235244440288398e+02 +Electron-alpha_thermal_collision_frequency_at_point_126__________________ (freq_plasma_electron_alpha_thermal_collision_profile126)_ 4.63935786736298439e+02 +Electron-alpha_thermal_collision_frequency_at_point_127__________________ (freq_plasma_electron_alpha_thermal_collision_profile127)_ 4.64643629984769291e+02 +Electron-alpha_thermal_collision_frequency_at_point_128__________________ (freq_plasma_electron_alpha_thermal_collision_profile128)_ 4.65358820710995133e+02 +Electron-alpha_thermal_collision_frequency_at_point_129__________________ (freq_plasma_electron_alpha_thermal_collision_profile129)_ 4.66081406051277554e+02 +Electron-alpha_thermal_collision_frequency_at_point_130__________________ (freq_plasma_electron_alpha_thermal_collision_profile130)_ 4.66811433759979195e+02 +Electron-alpha_thermal_collision_frequency_at_point_131__________________ (freq_plasma_electron_alpha_thermal_collision_profile131)_ 4.67548952216685620e+02 +Electron-alpha_thermal_collision_frequency_at_point_132__________________ (freq_plasma_electron_alpha_thermal_collision_profile132)_ 4.68294010433490087e+02 +Electron-alpha_thermal_collision_frequency_at_point_133__________________ (freq_plasma_electron_alpha_thermal_collision_profile133)_ 4.69046658062387621e+02 +Electron-alpha_thermal_collision_frequency_at_point_134__________________ (freq_plasma_electron_alpha_thermal_collision_profile134)_ 4.69806945402794781e+02 +Electron-alpha_thermal_collision_frequency_at_point_135__________________ (freq_plasma_electron_alpha_thermal_collision_profile135)_ 4.70574923409186738e+02 +Electron-alpha_thermal_collision_frequency_at_point_136__________________ (freq_plasma_electron_alpha_thermal_collision_profile136)_ 4.71350643698859074e+02 +Electron-alpha_thermal_collision_frequency_at_point_137__________________ (freq_plasma_electron_alpha_thermal_collision_profile137)_ 4.72134158559815489e+02 +Electron-alpha_thermal_collision_frequency_at_point_138__________________ (freq_plasma_electron_alpha_thermal_collision_profile138)_ 4.72925520958778520e+02 +Electron-alpha_thermal_collision_frequency_at_point_139__________________ (freq_plasma_electron_alpha_thermal_collision_profile139)_ 4.73724784549336334e+02 +Electron-alpha_thermal_collision_frequency_at_point_140__________________ (freq_plasma_electron_alpha_thermal_collision_profile140)_ 4.74532003680211972e+02 +Electron-alpha_thermal_collision_frequency_at_point_141__________________ (freq_plasma_electron_alpha_thermal_collision_profile141)_ 4.75347233403674750e+02 +Electron-alpha_thermal_collision_frequency_at_point_142__________________ (freq_plasma_electron_alpha_thermal_collision_profile142)_ 4.76170529484081328e+02 +Electron-alpha_thermal_collision_frequency_at_point_143__________________ (freq_plasma_electron_alpha_thermal_collision_profile143)_ 4.77001948406555584e+02 +Electron-alpha_thermal_collision_frequency_at_point_144__________________ (freq_plasma_electron_alpha_thermal_collision_profile144)_ 4.77841547385810202e+02 +Electron-alpha_thermal_collision_frequency_at_point_145__________________ (freq_plasma_electron_alpha_thermal_collision_profile145)_ 4.78689384375109171e+02 +Electron-alpha_thermal_collision_frequency_at_point_146__________________ (freq_plasma_electron_alpha_thermal_collision_profile146)_ 4.79545518075375128e+02 +Electron-alpha_thermal_collision_frequency_at_point_147__________________ (freq_plasma_electron_alpha_thermal_collision_profile147)_ 4.80410007944443407e+02 +Electron-alpha_thermal_collision_frequency_at_point_148__________________ (freq_plasma_electron_alpha_thermal_collision_profile148)_ 4.81282914206465762e+02 +Electron-alpha_thermal_collision_frequency_at_point_149__________________ (freq_plasma_electron_alpha_thermal_collision_profile149)_ 4.82164297861467105e+02 +Electron-alpha_thermal_collision_frequency_at_point_150__________________ (freq_plasma_electron_alpha_thermal_collision_profile150)_ 4.83054220695053345e+02 +Electron-alpha_thermal_collision_frequency_at_point_151__________________ (freq_plasma_electron_alpha_thermal_collision_profile151)_ 4.83952745288280596e+02 +Electron-alpha_thermal_collision_frequency_at_point_152__________________ (freq_plasma_electron_alpha_thermal_collision_profile152)_ 4.84859935027680194e+02 +Electron-alpha_thermal_collision_frequency_at_point_153__________________ (freq_plasma_electron_alpha_thermal_collision_profile153)_ 4.85775854115447430e+02 +Electron-alpha_thermal_collision_frequency_at_point_154__________________ (freq_plasma_electron_alpha_thermal_collision_profile154)_ 4.86700567579795916e+02 +Electron-alpha_thermal_collision_frequency_at_point_155__________________ (freq_plasma_electron_alpha_thermal_collision_profile155)_ 4.87634141285478393e+02 +Electron-alpha_thermal_collision_frequency_at_point_156__________________ (freq_plasma_electron_alpha_thermal_collision_profile156)_ 4.88576641944478069e+02 +Electron-alpha_thermal_collision_frequency_at_point_157__________________ (freq_plasma_electron_alpha_thermal_collision_profile157)_ 4.89528137126874526e+02 +Electron-alpha_thermal_collision_frequency_at_point_158__________________ (freq_plasma_electron_alpha_thermal_collision_profile158)_ 4.90488695271884239e+02 +Electron-alpha_thermal_collision_frequency_at_point_159__________________ (freq_plasma_electron_alpha_thermal_collision_profile159)_ 4.91458385699081873e+02 +Electron-alpha_thermal_collision_frequency_at_point_160__________________ (freq_plasma_electron_alpha_thermal_collision_profile160)_ 4.92437278619801475e+02 +Electron-alpha_thermal_collision_frequency_at_point_161__________________ (freq_plasma_electron_alpha_thermal_collision_profile161)_ 4.93425445148726965e+02 +Electron-alpha_thermal_collision_frequency_at_point_162__________________ (freq_plasma_electron_alpha_thermal_collision_profile162)_ 4.94422957315667020e+02 +Electron-alpha_thermal_collision_frequency_at_point_163__________________ (freq_plasma_electron_alpha_thermal_collision_profile163)_ 4.95429888077523060e+02 +Electron-alpha_thermal_collision_frequency_at_point_164__________________ (freq_plasma_electron_alpha_thermal_collision_profile164)_ 4.96446311330453341e+02 +Electron-alpha_thermal_collision_frequency_at_point_165__________________ (freq_plasma_electron_alpha_thermal_collision_profile165)_ 4.97472301922233896e+02 +Electron-alpha_thermal_collision_frequency_at_point_166__________________ (freq_plasma_electron_alpha_thermal_collision_profile166)_ 4.98507935664821048e+02 +Electron-alpha_thermal_collision_frequency_at_point_167__________________ (freq_plasma_electron_alpha_thermal_collision_profile167)_ 4.99553289347119971e+02 +Electron-alpha_thermal_collision_frequency_at_point_168__________________ (freq_plasma_electron_alpha_thermal_collision_profile168)_ 5.00608440747960287e+02 +Electron-alpha_thermal_collision_frequency_at_point_169__________________ (freq_plasma_electron_alpha_thermal_collision_profile169)_ 5.01673468649285155e+02 +Electron-alpha_thermal_collision_frequency_at_point_170__________________ (freq_plasma_electron_alpha_thermal_collision_profile170)_ 5.02748452849555918e+02 +Electron-alpha_thermal_collision_frequency_at_point_171__________________ (freq_plasma_electron_alpha_thermal_collision_profile171)_ 5.03833474177375194e+02 +Electron-alpha_thermal_collision_frequency_at_point_172__________________ (freq_plasma_electron_alpha_thermal_collision_profile172)_ 5.04928614505333826e+02 +Electron-alpha_thermal_collision_frequency_at_point_173__________________ (freq_plasma_electron_alpha_thermal_collision_profile173)_ 5.06033956764085133e+02 +Electron-alpha_thermal_collision_frequency_at_point_174__________________ (freq_plasma_electron_alpha_thermal_collision_profile174)_ 5.07149584956649903e+02 +Electron-alpha_thermal_collision_frequency_at_point_175__________________ (freq_plasma_electron_alpha_thermal_collision_profile175)_ 5.08275584172955632e+02 +Electron-alpha_thermal_collision_frequency_at_point_176__________________ (freq_plasma_electron_alpha_thermal_collision_profile176)_ 5.09412040604616323e+02 +Electron-alpha_thermal_collision_frequency_at_point_177__________________ (freq_plasma_electron_alpha_thermal_collision_profile177)_ 5.10559041559952846e+02 +Electron-alpha_thermal_collision_frequency_at_point_178__________________ (freq_plasma_electron_alpha_thermal_collision_profile178)_ 5.11716675479264211e+02 +Electron-alpha_thermal_collision_frequency_at_point_179__________________ (freq_plasma_electron_alpha_thermal_collision_profile179)_ 5.12885031950346956e+02 +Electron-alpha_thermal_collision_frequency_at_point_180__________________ (freq_plasma_electron_alpha_thermal_collision_profile180)_ 5.14064201724272152e+02 +Electron-alpha_thermal_collision_frequency_at_point_181__________________ (freq_plasma_electron_alpha_thermal_collision_profile181)_ 5.15254276731423261e+02 +Electron-alpha_thermal_collision_frequency_at_point_182__________________ (freq_plasma_electron_alpha_thermal_collision_profile182)_ 5.16455350097797464e+02 +Electron-alpha_thermal_collision_frequency_at_point_183__________________ (freq_plasma_electron_alpha_thermal_collision_profile183)_ 5.17667516161579556e+02 +Electron-alpha_thermal_collision_frequency_at_point_184__________________ (freq_plasma_electron_alpha_thermal_collision_profile184)_ 5.18890870489982717e+02 +Electron-alpha_thermal_collision_frequency_at_point_185__________________ (freq_plasma_electron_alpha_thermal_collision_profile185)_ 5.20125509896380095e+02 +Electron-alpha_thermal_collision_frequency_at_point_186__________________ (freq_plasma_electron_alpha_thermal_collision_profile186)_ 5.21371532457708895e+02 +Electron-alpha_thermal_collision_frequency_at_point_187__________________ (freq_plasma_electron_alpha_thermal_collision_profile187)_ 5.22629037532170059e+02 +Electron-alpha_thermal_collision_frequency_at_point_188__________________ (freq_plasma_electron_alpha_thermal_collision_profile188)_ 5.23898125777218070e+02 +Electron-alpha_thermal_collision_frequency_at_point_189__________________ (freq_plasma_electron_alpha_thermal_collision_profile189)_ 5.25178899167853274e+02 +Electron-alpha_thermal_collision_frequency_at_point_190__________________ (freq_plasma_electron_alpha_thermal_collision_profile190)_ 5.26471461015216164e+02 +Electron-alpha_thermal_collision_frequency_at_point_191__________________ (freq_plasma_electron_alpha_thermal_collision_profile191)_ 5.27775915985489860e+02 +Electron-alpha_thermal_collision_frequency_at_point_192__________________ (freq_plasma_electron_alpha_thermal_collision_profile192)_ 5.29092370119121824e+02 +Electron-alpha_thermal_collision_frequency_at_point_193__________________ (freq_plasma_electron_alpha_thermal_collision_profile193)_ 5.30420930850360946e+02 +Electron-alpha_thermal_collision_frequency_at_point_194__________________ (freq_plasma_electron_alpha_thermal_collision_profile194)_ 5.31761707027125908e+02 +Electron-alpha_thermal_collision_frequency_at_point_195__________________ (freq_plasma_electron_alpha_thermal_collision_profile195)_ 5.33114808931200969e+02 +Electron-alpha_thermal_collision_frequency_at_point_196__________________ (freq_plasma_electron_alpha_thermal_collision_profile196)_ 5.34480348298770309e+02 +Electron-alpha_thermal_collision_frequency_at_point_197__________________ (freq_plasma_electron_alpha_thermal_collision_profile197)_ 5.35858438341298779e+02 +Electron-alpha_thermal_collision_frequency_at_point_198__________________ (freq_plasma_electron_alpha_thermal_collision_profile198)_ 5.37249193766759049e+02 +Electron-alpha_thermal_collision_frequency_at_point_199__________________ (freq_plasma_electron_alpha_thermal_collision_profile199)_ 5.38652730801215512e+02 +Electron-alpha_thermal_collision_frequency_at_point_200__________________ (freq_plasma_electron_alpha_thermal_collision_profile200)_ 5.40069167210769137e+02 +Electron-alpha_thermal_collision_frequency_at_point_201__________________ (freq_plasma_electron_alpha_thermal_collision_profile201)_ 5.41498622323873974e+02 +Electron-alpha_thermal_collision_frequency_at_point_202__________________ (freq_plasma_electron_alpha_thermal_collision_profile202)_ 5.42941217054022900e+02 +Electron-alpha_thermal_collision_frequency_at_point_203__________________ (freq_plasma_electron_alpha_thermal_collision_profile203)_ 5.44397073922820596e+02 +Electron-alpha_thermal_collision_frequency_at_point_204__________________ (freq_plasma_electron_alpha_thermal_collision_profile204)_ 5.45866317083439640e+02 +Electron-alpha_thermal_collision_frequency_at_point_205__________________ (freq_plasma_electron_alpha_thermal_collision_profile205)_ 5.47349072344474166e+02 +Electron-alpha_thermal_collision_frequency_at_point_206__________________ (freq_plasma_electron_alpha_thermal_collision_profile206)_ 5.48845467194194612e+02 +Electron-alpha_thermal_collision_frequency_at_point_207__________________ (freq_plasma_electron_alpha_thermal_collision_profile207)_ 5.50355630825210710e+02 +Electron-alpha_thermal_collision_frequency_at_point_208__________________ (freq_plasma_electron_alpha_thermal_collision_profile208)_ 5.51879694159551036e+02 +Electron-alpha_thermal_collision_frequency_at_point_209__________________ (freq_plasma_electron_alpha_thermal_collision_profile209)_ 5.53417789874166147e+02 +Electron-alpha_thermal_collision_frequency_at_point_210__________________ (freq_plasma_electron_alpha_thermal_collision_profile210)_ 5.54970052426860548e+02 +Electron-alpha_thermal_collision_frequency_at_point_211__________________ (freq_plasma_electron_alpha_thermal_collision_profile211)_ 5.56536618082664745e+02 +Electron-alpha_thermal_collision_frequency_at_point_212__________________ (freq_plasma_electron_alpha_thermal_collision_profile212)_ 5.58117624940652831e+02 +Electron-alpha_thermal_collision_frequency_at_point_213__________________ (freq_plasma_electron_alpha_thermal_collision_profile213)_ 5.59713212961212776e+02 +Electron-alpha_thermal_collision_frequency_at_point_214__________________ (freq_plasma_electron_alpha_thermal_collision_profile214)_ 5.61323523993778736e+02 +Electron-alpha_thermal_collision_frequency_at_point_215__________________ (freq_plasma_electron_alpha_thermal_collision_profile215)_ 5.62948701805032897e+02 +Electron-alpha_thermal_collision_frequency_at_point_216__________________ (freq_plasma_electron_alpha_thermal_collision_profile216)_ 5.64588892107585480e+02 +Electron-alpha_thermal_collision_frequency_at_point_217__________________ (freq_plasma_electron_alpha_thermal_collision_profile217)_ 5.66244242589140185e+02 +Electron-alpha_thermal_collision_frequency_at_point_218__________________ (freq_plasma_electron_alpha_thermal_collision_profile218)_ 5.67914902942154526e+02 +Electron-alpha_thermal_collision_frequency_at_point_219__________________ (freq_plasma_electron_alpha_thermal_collision_profile219)_ 5.69601024894004468e+02 +Electron-alpha_thermal_collision_frequency_at_point_220__________________ (freq_plasma_electron_alpha_thermal_collision_profile220)_ 5.71302762237658044e+02 +Electron-alpha_thermal_collision_frequency_at_point_221__________________ (freq_plasma_electron_alpha_thermal_collision_profile221)_ 5.73020270862871598e+02 +Electron-alpha_thermal_collision_frequency_at_point_222__________________ (freq_plasma_electron_alpha_thermal_collision_profile222)_ 5.74753708787916935e+02 +Electron-alpha_thermal_collision_frequency_at_point_223__________________ (freq_plasma_electron_alpha_thermal_collision_profile223)_ 5.76503236191844508e+02 +Electron-alpha_thermal_collision_frequency_at_point_224__________________ (freq_plasma_electron_alpha_thermal_collision_profile224)_ 5.78269015447297306e+02 +Electron-alpha_thermal_collision_frequency_at_point_225__________________ (freq_plasma_electron_alpha_thermal_collision_profile225)_ 5.80051211153879876e+02 +Electron-alpha_thermal_collision_frequency_at_point_226__________________ (freq_plasma_electron_alpha_thermal_collision_profile226)_ 5.81849990172097023e+02 +Electron-alpha_thermal_collision_frequency_at_point_227__________________ (freq_plasma_electron_alpha_thermal_collision_profile227)_ 5.83665521657867544e+02 +Electron-alpha_thermal_collision_frequency_at_point_228__________________ (freq_plasma_electron_alpha_thermal_collision_profile228)_ 5.85497977097626062e+02 +Electron-alpha_thermal_collision_frequency_at_point_229__________________ (freq_plasma_electron_alpha_thermal_collision_profile229)_ 5.87347530344018992e+02 +Electron-alpha_thermal_collision_frequency_at_point_230__________________ (freq_plasma_electron_alpha_thermal_collision_profile230)_ 5.89214357652211106e+02 +Electron-alpha_thermal_collision_frequency_at_point_231__________________ (freq_plasma_electron_alpha_thermal_collision_profile231)_ 5.91098637716807048e+02 +Electron-alpha_thermal_collision_frequency_at_point_232__________________ (freq_plasma_electron_alpha_thermal_collision_profile232)_ 5.93000551709398906e+02 +Electron-alpha_thermal_collision_frequency_at_point_233__________________ (freq_plasma_electron_alpha_thermal_collision_profile233)_ 5.94920283316755217e+02 +Electron-alpha_thermal_collision_frequency_at_point_234__________________ (freq_plasma_electron_alpha_thermal_collision_profile234)_ 5.96858018779657755e+02 +Electron-alpha_thermal_collision_frequency_at_point_235__________________ (freq_plasma_electron_alpha_thermal_collision_profile235)_ 5.98813946932395197e+02 +Electron-alpha_thermal_collision_frequency_at_point_236__________________ (freq_plasma_electron_alpha_thermal_collision_profile236)_ 6.00788259242931986e+02 +Electron-alpha_thermal_collision_frequency_at_point_237__________________ (freq_plasma_electron_alpha_thermal_collision_profile237)_ 6.02781149853756460e+02 +Electron-alpha_thermal_collision_frequency_at_point_238__________________ (freq_plasma_electron_alpha_thermal_collision_profile238)_ 6.04792815623420893e+02 +Electron-alpha_thermal_collision_frequency_at_point_239__________________ (freq_plasma_electron_alpha_thermal_collision_profile239)_ 6.06823456168789676e+02 +Electron-alpha_thermal_collision_frequency_at_point_240__________________ (freq_plasma_electron_alpha_thermal_collision_profile240)_ 6.08873273908000442e+02 +Electron-alpha_thermal_collision_frequency_at_point_241__________________ (freq_plasma_electron_alpha_thermal_collision_profile241)_ 6.10942474104153462e+02 +Electron-alpha_thermal_collision_frequency_at_point_242__________________ (freq_plasma_electron_alpha_thermal_collision_profile242)_ 6.13031264909743072e+02 +Electron-alpha_thermal_collision_frequency_at_point_243__________________ (freq_plasma_electron_alpha_thermal_collision_profile243)_ 6.15139857411836033e+02 +Electron-alpha_thermal_collision_frequency_at_point_244__________________ (freq_plasma_electron_alpha_thermal_collision_profile244)_ 6.17268465678017947e+02 +Electron-alpha_thermal_collision_frequency_at_point_245__________________ (freq_plasma_electron_alpha_thermal_collision_profile245)_ 6.19417306803114343e+02 +Electron-alpha_thermal_collision_frequency_at_point_246__________________ (freq_plasma_electron_alpha_thermal_collision_profile246)_ 6.21586600956694610e+02 +Electron-alpha_thermal_collision_frequency_at_point_247__________________ (freq_plasma_electron_alpha_thermal_collision_profile247)_ 6.23776571431385946e+02 +Electron-alpha_thermal_collision_frequency_at_point_248__________________ (freq_plasma_electron_alpha_thermal_collision_profile248)_ 6.25987444691991868e+02 +Electron-alpha_thermal_collision_frequency_at_point_249__________________ (freq_plasma_electron_alpha_thermal_collision_profile249)_ 6.28219450425441551e+02 +Electron-alpha_thermal_collision_frequency_at_point_250__________________ (freq_plasma_electron_alpha_thermal_collision_profile250)_ 6.30472821591571801e+02 +Electron-alpha_thermal_collision_frequency_at_point_251__________________ (freq_plasma_electron_alpha_thermal_collision_profile251)_ 6.32747794474768284e+02 +Electron-alpha_thermal_collision_frequency_at_point_252__________________ (freq_plasma_electron_alpha_thermal_collision_profile252)_ 6.35044608736462465e+02 +Electron-alpha_thermal_collision_frequency_at_point_253__________________ (freq_plasma_electron_alpha_thermal_collision_profile253)_ 6.37363507468511557e+02 +Electron-alpha_thermal_collision_frequency_at_point_254__________________ (freq_plasma_electron_alpha_thermal_collision_profile254)_ 6.39704737247464323e+02 +Electron-alpha_thermal_collision_frequency_at_point_255__________________ (freq_plasma_electron_alpha_thermal_collision_profile255)_ 6.42068548189732837e+02 +Electron-alpha_thermal_collision_frequency_at_point_256__________________ (freq_plasma_electron_alpha_thermal_collision_profile256)_ 6.44455194007678870e+02 +Electron-alpha_thermal_collision_frequency_at_point_257__________________ (freq_plasma_electron_alpha_thermal_collision_profile257)_ 6.46864932066630217e+02 +Electron-alpha_thermal_collision_frequency_at_point_258__________________ (freq_plasma_electron_alpha_thermal_collision_profile258)_ 6.49298023442838371e+02 +Electron-alpha_thermal_collision_frequency_at_point_259__________________ (freq_plasma_electron_alpha_thermal_collision_profile259)_ 6.51754732982395467e+02 +Electron-alpha_thermal_collision_frequency_at_point_260__________________ (freq_plasma_electron_alpha_thermal_collision_profile260)_ 6.54235329361115078e+02 +Electron-alpha_thermal_collision_frequency_at_point_261__________________ (freq_plasma_electron_alpha_thermal_collision_profile261)_ 6.56740085145399917e+02 +Electron-alpha_thermal_collision_frequency_at_point_262__________________ (freq_plasma_electron_alpha_thermal_collision_profile262)_ 6.59269276854102031e+02 +Electron-alpha_thermal_collision_frequency_at_point_263__________________ (freq_plasma_electron_alpha_thermal_collision_profile263)_ 6.61823185021392533e+02 +Electron-alpha_thermal_collision_frequency_at_point_264__________________ (freq_plasma_electron_alpha_thermal_collision_profile264)_ 6.64402094260653143e+02 +Electron-alpha_thermal_collision_frequency_at_point_265__________________ (freq_plasma_electron_alpha_thermal_collision_profile265)_ 6.67006293329402070e+02 +Electron-alpha_thermal_collision_frequency_at_point_266__________________ (freq_plasma_electron_alpha_thermal_collision_profile266)_ 6.69636075195266130e+02 +Electron-alpha_thermal_collision_frequency_at_point_267__________________ (freq_plasma_electron_alpha_thermal_collision_profile267)_ 6.72291737103016317e+02 +Electron-alpha_thermal_collision_frequency_at_point_268__________________ (freq_plasma_electron_alpha_thermal_collision_profile268)_ 6.74973580642670072e+02 +Electron-alpha_thermal_collision_frequency_at_point_269__________________ (freq_plasma_electron_alpha_thermal_collision_profile269)_ 6.77681911818689287e+02 +Electron-alpha_thermal_collision_frequency_at_point_270__________________ (freq_plasma_electron_alpha_thermal_collision_profile270)_ 6.80417041120261160e+02 +Electron-alpha_thermal_collision_frequency_at_point_271__________________ (freq_plasma_electron_alpha_thermal_collision_profile271)_ 6.83179283592704792e+02 +Electron-alpha_thermal_collision_frequency_at_point_272__________________ (freq_plasma_electron_alpha_thermal_collision_profile272)_ 6.85968958909984849e+02 +Electron-alpha_thermal_collision_frequency_at_point_273__________________ (freq_plasma_electron_alpha_thermal_collision_profile273)_ 6.88786391448368477e+02 +Electron-alpha_thermal_collision_frequency_at_point_274__________________ (freq_plasma_electron_alpha_thermal_collision_profile274)_ 6.91631910361217592e+02 +Electron-alpha_thermal_collision_frequency_at_point_275__________________ (freq_plasma_electron_alpha_thermal_collision_profile275)_ 6.94505849654946246e+02 +Electron-alpha_thermal_collision_frequency_at_point_276__________________ (freq_plasma_electron_alpha_thermal_collision_profile276)_ 6.97408548266131675e+02 +Electron-alpha_thermal_collision_frequency_at_point_277__________________ (freq_plasma_electron_alpha_thermal_collision_profile277)_ 7.00340350139808834e+02 +Electron-alpha_thermal_collision_frequency_at_point_278__________________ (freq_plasma_electron_alpha_thermal_collision_profile278)_ 7.03301604308944889e+02 +Electron-alpha_thermal_collision_frequency_at_point_279__________________ (freq_plasma_electron_alpha_thermal_collision_profile279)_ 7.06292664975111734e+02 +Electron-alpha_thermal_collision_frequency_at_point_280__________________ (freq_plasma_electron_alpha_thermal_collision_profile280)_ 7.09313891590355297e+02 +Electron-alpha_thermal_collision_frequency_at_point_281__________________ (freq_plasma_electron_alpha_thermal_collision_profile281)_ 7.12365648940277993e+02 +Electron-alpha_thermal_collision_frequency_at_point_282__________________ (freq_plasma_electron_alpha_thermal_collision_profile282)_ 7.15448307228338422e+02 +Electron-alpha_thermal_collision_frequency_at_point_283__________________ (freq_plasma_electron_alpha_thermal_collision_profile283)_ 7.18562242161370818e+02 +Electron-alpha_thermal_collision_frequency_at_point_284__________________ (freq_plasma_electron_alpha_thermal_collision_profile284)_ 7.21707835036335837e+02 +Electron-alpha_thermal_collision_frequency_at_point_285__________________ (freq_plasma_electron_alpha_thermal_collision_profile285)_ 7.24885472828304273e+02 +Electron-alpha_thermal_collision_frequency_at_point_286__________________ (freq_plasma_electron_alpha_thermal_collision_profile286)_ 7.28095548279677132e+02 +Electron-alpha_thermal_collision_frequency_at_point_287__________________ (freq_plasma_electron_alpha_thermal_collision_profile287)_ 7.31338459990645333e+02 +Electron-alpha_thermal_collision_frequency_at_point_288__________________ (freq_plasma_electron_alpha_thermal_collision_profile288)_ 7.34614612510891448e+02 +Electron-alpha_thermal_collision_frequency_at_point_289__________________ (freq_plasma_electron_alpha_thermal_collision_profile289)_ 7.37924416432529938e+02 +Electron-alpha_thermal_collision_frequency_at_point_290__________________ (freq_plasma_electron_alpha_thermal_collision_profile290)_ 7.41268288484294430e+02 +Electron-alpha_thermal_collision_frequency_at_point_291__________________ (freq_plasma_electron_alpha_thermal_collision_profile291)_ 7.44646651626952917e+02 +Electron-alpha_thermal_collision_frequency_at_point_292__________________ (freq_plasma_electron_alpha_thermal_collision_profile292)_ 7.48059935149970784e+02 +Electron-alpha_thermal_collision_frequency_at_point_293__________________ (freq_plasma_electron_alpha_thermal_collision_profile293)_ 7.51508574769389725e+02 +Electron-alpha_thermal_collision_frequency_at_point_294__________________ (freq_plasma_electron_alpha_thermal_collision_profile294)_ 7.54993012726937650e+02 +Electron-alpha_thermal_collision_frequency_at_point_295__________________ (freq_plasma_electron_alpha_thermal_collision_profile295)_ 7.58513697890349363e+02 +Electron-alpha_thermal_collision_frequency_at_point_296__________________ (freq_plasma_electron_alpha_thermal_collision_profile296)_ 7.62071085854886974e+02 +Electron-alpha_thermal_collision_frequency_at_point_297__________________ (freq_plasma_electron_alpha_thermal_collision_profile297)_ 7.65665639046052092e+02 +Electron-alpha_thermal_collision_frequency_at_point_298__________________ (freq_plasma_electron_alpha_thermal_collision_profile298)_ 7.69297826823473315e+02 +Electron-alpha_thermal_collision_frequency_at_point_299__________________ (freq_plasma_electron_alpha_thermal_collision_profile299)_ 7.72968125585947519e+02 +Electron-alpha_thermal_collision_frequency_at_point_300__________________ (freq_plasma_electron_alpha_thermal_collision_profile300)_ 7.76677018877619730e+02 +Electron-alpha_thermal_collision_frequency_at_point_301__________________ (freq_plasma_electron_alpha_thermal_collision_profile301)_ 7.80424997495272578e+02 +Electron-alpha_thermal_collision_frequency_at_point_302__________________ (freq_plasma_electron_alpha_thermal_collision_profile302)_ 7.84212559596711458e+02 +Electron-alpha_thermal_collision_frequency_at_point_303__________________ (freq_plasma_electron_alpha_thermal_collision_profile303)_ 7.88040210810199710e+02 +Electron-alpha_thermal_collision_frequency_at_point_304__________________ (freq_plasma_electron_alpha_thermal_collision_profile304)_ 7.91908464344926415e+02 +Electron-alpha_thermal_collision_frequency_at_point_305__________________ (freq_plasma_electron_alpha_thermal_collision_profile305)_ 7.95817841102462580e+02 +Electron-alpha_thermal_collision_frequency_at_point_306__________________ (freq_plasma_electron_alpha_thermal_collision_profile306)_ 7.99768869789169685e+02 +Electron-alpha_thermal_collision_frequency_at_point_307__________________ (freq_plasma_electron_alpha_thermal_collision_profile307)_ 8.03762087029516806e+02 +Electron-alpha_thermal_collision_frequency_at_point_308__________________ (freq_plasma_electron_alpha_thermal_collision_profile308)_ 8.07798037480258131e+02 +Electron-alpha_thermal_collision_frequency_at_point_309__________________ (freq_plasma_electron_alpha_thermal_collision_profile309)_ 8.11877273945415823e+02 +Electron-alpha_thermal_collision_frequency_at_point_310__________________ (freq_plasma_electron_alpha_thermal_collision_profile310)_ 8.16000357492017883e+02 +Electron-alpha_thermal_collision_frequency_at_point_311__________________ (freq_plasma_electron_alpha_thermal_collision_profile311)_ 8.20167857566520638e+02 +Electron-alpha_thermal_collision_frequency_at_point_312__________________ (freq_plasma_electron_alpha_thermal_collision_profile312)_ 8.24380352111858429e+02 +Electron-alpha_thermal_collision_frequency_at_point_313__________________ (freq_plasma_electron_alpha_thermal_collision_profile313)_ 8.28638427685032752e+02 +Electron-alpha_thermal_collision_frequency_at_point_314__________________ (freq_plasma_electron_alpha_thermal_collision_profile314)_ 8.32942679575177408e+02 +Electron-alpha_thermal_collision_frequency_at_point_315__________________ (freq_plasma_electron_alpha_thermal_collision_profile315)_ 8.37293711922000284e+02 +Electron-alpha_thermal_collision_frequency_at_point_316__________________ (freq_plasma_electron_alpha_thermal_collision_profile316)_ 8.41692137834513233e+02 +Electron-alpha_thermal_collision_frequency_at_point_317__________________ (freq_plasma_electron_alpha_thermal_collision_profile317)_ 8.46138579509959754e+02 +Electron-alpha_thermal_collision_frequency_at_point_318__________________ (freq_plasma_electron_alpha_thermal_collision_profile318)_ 8.50633668352806467e+02 +Electron-alpha_thermal_collision_frequency_at_point_319__________________ (freq_plasma_electron_alpha_thermal_collision_profile319)_ 8.55178045093713763e+02 +Electron-alpha_thermal_collision_frequency_at_point_320__________________ (freq_plasma_electron_alpha_thermal_collision_profile320)_ 8.59772359908334806e+02 +Electron-alpha_thermal_collision_frequency_at_point_321__________________ (freq_plasma_electron_alpha_thermal_collision_profile321)_ 8.64417272535820302e+02 +Electron-alpha_thermal_collision_frequency_at_point_322__________________ (freq_plasma_electron_alpha_thermal_collision_profile322)_ 8.69113452396883645e+02 +Electron-alpha_thermal_collision_frequency_at_point_323__________________ (freq_plasma_electron_alpha_thermal_collision_profile323)_ 8.73861578711263519e+02 +Electron-alpha_thermal_collision_frequency_at_point_324__________________ (freq_plasma_electron_alpha_thermal_collision_profile324)_ 8.78662340614432196e+02 +Electron-alpha_thermal_collision_frequency_at_point_325__________________ (freq_plasma_electron_alpha_thermal_collision_profile325)_ 8.83516437273350789e+02 +Electron-alpha_thermal_collision_frequency_at_point_326__________________ (freq_plasma_electron_alpha_thermal_collision_profile326)_ 8.88424578001104123e+02 +Electron-alpha_thermal_collision_frequency_at_point_327__________________ (freq_plasma_electron_alpha_thermal_collision_profile327)_ 8.93387482370186149e+02 +Electron-alpha_thermal_collision_frequency_at_point_328__________________ (freq_plasma_electron_alpha_thermal_collision_profile328)_ 8.98405880324242048e+02 +Electron-alpha_thermal_collision_frequency_at_point_329__________________ (freq_plasma_electron_alpha_thermal_collision_profile329)_ 9.03480512288013756e+02 +Electron-alpha_thermal_collision_frequency_at_point_330__________________ (freq_plasma_electron_alpha_thermal_collision_profile330)_ 9.08612129275253892e+02 +Electron-alpha_thermal_collision_frequency_at_point_331__________________ (freq_plasma_electron_alpha_thermal_collision_profile331)_ 9.13801492994328669e+02 +Electron-alpha_thermal_collision_frequency_at_point_332__________________ (freq_plasma_electron_alpha_thermal_collision_profile332)_ 9.19049375951242951e+02 +Electron-alpha_thermal_collision_frequency_at_point_333__________________ (freq_plasma_electron_alpha_thermal_collision_profile333)_ 9.24356561549768912e+02 +Electron-alpha_thermal_collision_frequency_at_point_334__________________ (freq_plasma_electron_alpha_thermal_collision_profile334)_ 9.29723844188364524e+02 +Electron-alpha_thermal_collision_frequency_at_point_335__________________ (freq_plasma_electron_alpha_thermal_collision_profile335)_ 9.35152029353537841e+02 +Electron-alpha_thermal_collision_frequency_at_point_336__________________ (freq_plasma_electron_alpha_thermal_collision_profile336)_ 9.40641933709284103e+02 +Electron-alpha_thermal_collision_frequency_at_point_337__________________ (freq_plasma_electron_alpha_thermal_collision_profile337)_ 9.46194385182217388e+02 +Electron-alpha_thermal_collision_frequency_at_point_338__________________ (freq_plasma_electron_alpha_thermal_collision_profile338)_ 9.51810223041968470e+02 +Electron-alpha_thermal_collision_frequency_at_point_339__________________ (freq_plasma_electron_alpha_thermal_collision_profile339)_ 9.57490297976420834e+02 +Electron-alpha_thermal_collision_frequency_at_point_340__________________ (freq_plasma_electron_alpha_thermal_collision_profile340)_ 9.63235472161302368e+02 +Electron-alpha_thermal_collision_frequency_at_point_341__________________ (freq_plasma_electron_alpha_thermal_collision_profile341)_ 9.69046619323639902e+02 +Electron-alpha_thermal_collision_frequency_at_point_342__________________ (freq_plasma_electron_alpha_thermal_collision_profile342)_ 9.74924624798550440e+02 +Electron-alpha_thermal_collision_frequency_at_point_343__________________ (freq_plasma_electron_alpha_thermal_collision_profile343)_ 9.80870385578789069e+02 +Electron-alpha_thermal_collision_frequency_at_point_344__________________ (freq_plasma_electron_alpha_thermal_collision_profile344)_ 9.86884810356468506e+02 +Electron-alpha_thermal_collision_frequency_at_point_345__________________ (freq_plasma_electron_alpha_thermal_collision_profile345)_ 9.92968819556309313e+02 +Electron-alpha_thermal_collision_frequency_at_point_346__________________ (freq_plasma_electron_alpha_thermal_collision_profile346)_ 9.99123345359732639e+02 +Electron-alpha_thermal_collision_frequency_at_point_347__________________ (freq_plasma_electron_alpha_thermal_collision_profile347)_ 1.00534933171909472e+03 +Electron-alpha_thermal_collision_frequency_at_point_348__________________ (freq_plasma_electron_alpha_thermal_collision_profile348)_ 1.01164773436128621e+03 +Electron-alpha_thermal_collision_frequency_at_point_349__________________ (freq_plasma_electron_alpha_thermal_collision_profile349)_ 1.01801952077988960e+03 +Electron-alpha_thermal_collision_frequency_at_point_350__________________ (freq_plasma_electron_alpha_thermal_collision_profile350)_ 1.02446567021503324e+03 +Electron-alpha_thermal_collision_frequency_at_point_351__________________ (freq_plasma_electron_alpha_thermal_collision_profile351)_ 1.03098717362003799e+03 +Electron-alpha_thermal_collision_frequency_at_point_352__________________ (freq_plasma_electron_alpha_thermal_collision_profile352)_ 1.03758503361387011e+03 +Electron-alpha_thermal_collision_frequency_at_point_353__________________ (freq_plasma_electron_alpha_thermal_collision_profile353)_ 1.04426026441839781e+03 +Electron-alpha_thermal_collision_frequency_at_point_354__________________ (freq_plasma_electron_alpha_thermal_collision_profile354)_ 1.05101389177933379e+03 +Electron-alpha_thermal_collision_frequency_at_point_355__________________ (freq_plasma_electron_alpha_thermal_collision_profile355)_ 1.05784695286973556e+03 +Electron-alpha_thermal_collision_frequency_at_point_356__________________ (freq_plasma_electron_alpha_thermal_collision_profile356)_ 1.06476049617481772e+03 +Electron-alpha_thermal_collision_frequency_at_point_357__________________ (freq_plasma_electron_alpha_thermal_collision_profile357)_ 1.07175558135679080e+03 +Electron-alpha_thermal_collision_frequency_at_point_358__________________ (freq_plasma_electron_alpha_thermal_collision_profile358)_ 1.07883327909834065e+03 +Electron-alpha_thermal_collision_frequency_at_point_359__________________ (freq_plasma_electron_alpha_thermal_collision_profile359)_ 1.08599467092330065e+03 +Electron-alpha_thermal_collision_frequency_at_point_360__________________ (freq_plasma_electron_alpha_thermal_collision_profile360)_ 1.09324084899295121e+03 +Electron-alpha_thermal_collision_frequency_at_point_361__________________ (freq_plasma_electron_alpha_thermal_collision_profile361)_ 1.10057291587633836e+03 +Electron-alpha_thermal_collision_frequency_at_point_362__________________ (freq_plasma_electron_alpha_thermal_collision_profile362)_ 1.10799198429283774e+03 +Electron-alpha_thermal_collision_frequency_at_point_363__________________ (freq_plasma_electron_alpha_thermal_collision_profile363)_ 1.11549917682516298e+03 +Electron-alpha_thermal_collision_frequency_at_point_364__________________ (freq_plasma_electron_alpha_thermal_collision_profile364)_ 1.12309562560083668e+03 +Electron-alpha_thermal_collision_frequency_at_point_365__________________ (freq_plasma_electron_alpha_thermal_collision_profile365)_ 1.13078247194009055e+03 +Electron-alpha_thermal_collision_frequency_at_point_366__________________ (freq_plasma_electron_alpha_thermal_collision_profile366)_ 1.13856086596798241e+03 +Electron-alpha_thermal_collision_frequency_at_point_367__________________ (freq_plasma_electron_alpha_thermal_collision_profile367)_ 1.14643196618844240e+03 +Electron-alpha_thermal_collision_frequency_at_point_368__________________ (freq_plasma_electron_alpha_thermal_collision_profile368)_ 1.15439693901777218e+03 +Electron-alpha_thermal_collision_frequency_at_point_369__________________ (freq_plasma_electron_alpha_thermal_collision_profile369)_ 1.16245695827502595e+03 +Electron-alpha_thermal_collision_frequency_at_point_370__________________ (freq_plasma_electron_alpha_thermal_collision_profile370)_ 1.17061320462651338e+03 +Electron-alpha_thermal_collision_frequency_at_point_371__________________ (freq_plasma_electron_alpha_thermal_collision_profile371)_ 1.17886686498152494e+03 +Electron-alpha_thermal_collision_frequency_at_point_372__________________ (freq_plasma_electron_alpha_thermal_collision_profile372)_ 1.18721913183618994e+03 +Electron-alpha_thermal_collision_frequency_at_point_373__________________ (freq_plasma_electron_alpha_thermal_collision_profile373)_ 1.19567120256223893e+03 +Electron-alpha_thermal_collision_frequency_at_point_374__________________ (freq_plasma_electron_alpha_thermal_collision_profile374)_ 1.20422427863718190e+03 +Electron-alpha_thermal_collision_frequency_at_point_375__________________ (freq_plasma_electron_alpha_thermal_collision_profile375)_ 1.21287956481230003e+03 +Electron-alpha_thermal_collision_frequency_at_point_376__________________ (freq_plasma_electron_alpha_thermal_collision_profile376)_ 1.22163826821456109e+03 +Electron-alpha_thermal_collision_frequency_at_point_377__________________ (freq_plasma_electron_alpha_thermal_collision_profile377)_ 1.23050159737838658e+03 +Electron-alpha_thermal_collision_frequency_at_point_378__________________ (freq_plasma_electron_alpha_thermal_collision_profile378)_ 1.23947076120295264e+03 +Electron-alpha_thermal_collision_frequency_at_point_379__________________ (freq_plasma_electron_alpha_thermal_collision_profile379)_ 1.24854696783045642e+03 +Electron-alpha_thermal_collision_frequency_at_point_380__________________ (freq_plasma_electron_alpha_thermal_collision_profile380)_ 1.25773142344050257e+03 +Electron-alpha_thermal_collision_frequency_at_point_381__________________ (freq_plasma_electron_alpha_thermal_collision_profile381)_ 1.26702533095551826e+03 +Electron-alpha_thermal_collision_frequency_at_point_382__________________ (freq_plasma_electron_alpha_thermal_collision_profile382)_ 1.27642988865177063e+03 +Electron-alpha_thermal_collision_frequency_at_point_383__________________ (freq_plasma_electron_alpha_thermal_collision_profile383)_ 1.28594628867027382e+03 +Electron-alpha_thermal_collision_frequency_at_point_384__________________ (freq_plasma_electron_alpha_thermal_collision_profile384)_ 1.29557571542155119e+03 +Electron-alpha_thermal_collision_frequency_at_point_385__________________ (freq_plasma_electron_alpha_thermal_collision_profile385)_ 1.30531934387783076e+03 +Electron-alpha_thermal_collision_frequency_at_point_386__________________ (freq_plasma_electron_alpha_thermal_collision_profile386)_ 1.31517833774594374e+03 +Electron-alpha_thermal_collision_frequency_at_point_387__________________ (freq_plasma_electron_alpha_thermal_collision_profile387)_ 1.32515384751375791e+03 +Electron-alpha_thermal_collision_frequency_at_point_388__________________ (freq_plasma_electron_alpha_thermal_collision_profile388)_ 1.33524700836258694e+03 +Electron-alpha_thermal_collision_frequency_at_point_389__________________ (freq_plasma_electron_alpha_thermal_collision_profile389)_ 1.34545893793759660e+03 +Electron-alpha_thermal_collision_frequency_at_point_390__________________ (freq_plasma_electron_alpha_thermal_collision_profile390)_ 1.35579073396775880e+03 +Electron-alpha_thermal_collision_frequency_at_point_391__________________ (freq_plasma_electron_alpha_thermal_collision_profile391)_ 1.36624347172641137e+03 +Electron-alpha_thermal_collision_frequency_at_point_392__________________ (freq_plasma_electron_alpha_thermal_collision_profile392)_ 1.37681820132300368e+03 +Electron-alpha_thermal_collision_frequency_at_point_393__________________ (freq_plasma_electron_alpha_thermal_collision_profile393)_ 1.38751594481604207e+03 +Electron-alpha_thermal_collision_frequency_at_point_394__________________ (freq_plasma_electron_alpha_thermal_collision_profile394)_ 1.39833769313668813e+03 +Electron-alpha_thermal_collision_frequency_at_point_395__________________ (freq_plasma_electron_alpha_thermal_collision_profile395)_ 1.40928440281187750e+03 +Electron-alpha_thermal_collision_frequency_at_point_396__________________ (freq_plasma_electron_alpha_thermal_collision_profile396)_ 1.42035699247515936e+03 +Electron-alpha_thermal_collision_frequency_at_point_397__________________ (freq_plasma_electron_alpha_thermal_collision_profile397)_ 1.43155633915283238e+03 +Electron-alpha_thermal_collision_frequency_at_point_398__________________ (freq_plasma_electron_alpha_thermal_collision_profile398)_ 1.44288327431219636e+03 +Electron-alpha_thermal_collision_frequency_at_point_399__________________ (freq_plasma_electron_alpha_thermal_collision_profile399)_ 1.45433857965801917e+03 +Electron-alpha_thermal_collision_frequency_at_point_400__________________ (freq_plasma_electron_alpha_thermal_collision_profile400)_ 1.46592298266252828e+03 +Electron-alpha_thermal_collision_frequency_at_point_401__________________ (freq_plasma_electron_alpha_thermal_collision_profile401)_ 1.47763715181336806e+03 +Electron-alpha_thermal_collision_frequency_at_point_402__________________ (freq_plasma_electron_alpha_thermal_collision_profile402)_ 1.48948169156311519e+03 +Electron-alpha_thermal_collision_frequency_at_point_403__________________ (freq_plasma_electron_alpha_thermal_collision_profile403)_ 1.50145713696297412e+03 +Electron-alpha_thermal_collision_frequency_at_point_404__________________ (freq_plasma_electron_alpha_thermal_collision_profile404)_ 1.51356394796229506e+03 +Electron-alpha_thermal_collision_frequency_at_point_405__________________ (freq_plasma_electron_alpha_thermal_collision_profile405)_ 1.52580250335449364e+03 +Electron-alpha_thermal_collision_frequency_at_point_406__________________ (freq_plasma_electron_alpha_thermal_collision_profile406)_ 1.53817309434883964e+03 +Electron-alpha_thermal_collision_frequency_at_point_407__________________ (freq_plasma_electron_alpha_thermal_collision_profile407)_ 1.55067591774637981e+03 +Electron-alpha_thermal_collision_frequency_at_point_408__________________ (freq_plasma_electron_alpha_thermal_collision_profile408)_ 1.56331106869701648e+03 +Electron-alpha_thermal_collision_frequency_at_point_409__________________ (freq_plasma_electron_alpha_thermal_collision_profile409)_ 1.57607853301338537e+03 +Electron-alpha_thermal_collision_frequency_at_point_410__________________ (freq_plasma_electron_alpha_thermal_collision_profile410)_ 1.58897817901578742e+03 +Electron-alpha_thermal_collision_frequency_at_point_411__________________ (freq_plasma_electron_alpha_thermal_collision_profile411)_ 1.60200974888085102e+03 +Electron-alpha_thermal_collision_frequency_at_point_412__________________ (freq_plasma_electron_alpha_thermal_collision_profile412)_ 1.61517284946502514e+03 +Electron-alpha_thermal_collision_frequency_at_point_413__________________ (freq_plasma_electron_alpha_thermal_collision_profile413)_ 1.62846694257217541e+03 +Electron-alpha_thermal_collision_frequency_at_point_414__________________ (freq_plasma_electron_alpha_thermal_collision_profile414)_ 1.64189133463278131e+03 +Electron-alpha_thermal_collision_frequency_at_point_415__________________ (freq_plasma_electron_alpha_thermal_collision_profile415)_ 1.65544516576010278e+03 +Electron-alpha_thermal_collision_frequency_at_point_416__________________ (freq_plasma_electron_alpha_thermal_collision_profile416)_ 1.66912739814662132e+03 +Electron-alpha_thermal_collision_frequency_at_point_417__________________ (freq_plasma_electron_alpha_thermal_collision_profile417)_ 1.68293680376161046e+03 +Electron-alpha_thermal_collision_frequency_at_point_418__________________ (freq_plasma_electron_alpha_thermal_collision_profile418)_ 1.69687195130822670e+03 +Electron-alpha_thermal_collision_frequency_at_point_419__________________ (freq_plasma_electron_alpha_thermal_collision_profile419)_ 1.71093119239568409e+03 +Electron-alpha_thermal_collision_frequency_at_point_420__________________ (freq_plasma_electron_alpha_thermal_collision_profile420)_ 1.72511264687908965e+03 +Electron-alpha_thermal_collision_frequency_at_point_421__________________ (freq_plasma_electron_alpha_thermal_collision_profile421)_ 1.73941418731619297e+03 +Electron-alpha_thermal_collision_frequency_at_point_422__________________ (freq_plasma_electron_alpha_thermal_collision_profile422)_ 1.75383342248664803e+03 +Electron-alpha_thermal_collision_frequency_at_point_423__________________ (freq_plasma_electron_alpha_thermal_collision_profile423)_ 1.76836767991540455e+03 +Electron-alpha_thermal_collision_frequency_at_point_424__________________ (freq_plasma_electron_alpha_thermal_collision_profile424)_ 1.78301398733732822e+03 +Electron-alpha_thermal_collision_frequency_at_point_425__________________ (freq_plasma_electron_alpha_thermal_collision_profile425)_ 1.79776905303520016e+03 +Electron-alpha_thermal_collision_frequency_at_point_426__________________ (freq_plasma_electron_alpha_thermal_collision_profile426)_ 1.81262924497766994e+03 +Electron-alpha_thermal_collision_frequency_at_point_427__________________ (freq_plasma_electron_alpha_thermal_collision_profile427)_ 1.82759056867741810e+03 +Electron-alpha_thermal_collision_frequency_at_point_428__________________ (freq_plasma_electron_alpha_thermal_collision_profile428)_ 1.84264864368267172e+03 +Electron-alpha_thermal_collision_frequency_at_point_429__________________ (freq_plasma_electron_alpha_thermal_collision_profile429)_ 1.85779867860709101e+03 +Electron-alpha_thermal_collision_frequency_at_point_430__________________ (freq_plasma_electron_alpha_thermal_collision_profile430)_ 1.87303544459372961e+03 +Electron-alpha_thermal_collision_frequency_at_point_431__________________ (freq_plasma_electron_alpha_thermal_collision_profile431)_ 1.88835324709804217e+03 +Electron-alpha_thermal_collision_frequency_at_point_432__________________ (freq_plasma_electron_alpha_thermal_collision_profile432)_ 1.90374589586244861e+03 +Electron-alpha_thermal_collision_frequency_at_point_433__________________ (freq_plasma_electron_alpha_thermal_collision_profile433)_ 1.91920667294051168e+03 +Electron-alpha_thermal_collision_frequency_at_point_434__________________ (freq_plasma_electron_alpha_thermal_collision_profile434)_ 1.93472829861163791e+03 +Electron-alpha_thermal_collision_frequency_at_point_435__________________ (freq_plasma_electron_alpha_thermal_collision_profile435)_ 1.95030289500723461e+03 +Electron-alpha_thermal_collision_frequency_at_point_436__________________ (freq_plasma_electron_alpha_thermal_collision_profile436)_ 1.96592194724530282e+03 +Electron-alpha_thermal_collision_frequency_at_point_437__________________ (freq_plasma_electron_alpha_thermal_collision_profile437)_ 1.98157626184194760e+03 +Electron-alpha_thermal_collision_frequency_at_point_438__________________ (freq_plasma_electron_alpha_thermal_collision_profile438)_ 1.99725592213404502e+03 +Electron-alpha_thermal_collision_frequency_at_point_439__________________ (freq_plasma_electron_alpha_thermal_collision_profile439)_ 2.01295024040582121e+03 +Electron-alpha_thermal_collision_frequency_at_point_440__________________ (freq_plasma_electron_alpha_thermal_collision_profile440)_ 2.02864770636171443e+03 +Electron-alpha_thermal_collision_frequency_at_point_441__________________ (freq_plasma_electron_alpha_thermal_collision_profile441)_ 2.04433593152612798e+03 +Electron-alpha_thermal_collision_frequency_at_point_442__________________ (freq_plasma_electron_alpha_thermal_collision_profile442)_ 2.06000158907463765e+03 +Electron-alpha_thermal_collision_frequency_at_point_443__________________ (freq_plasma_electron_alpha_thermal_collision_profile443)_ 2.07563034850674694e+03 +Electron-alpha_thermal_collision_frequency_at_point_444__________________ (freq_plasma_electron_alpha_thermal_collision_profile444)_ 2.09120680445238531e+03 +Electron-alpha_thermal_collision_frequency_at_point_445__________________ (freq_plasma_electron_alpha_thermal_collision_profile445)_ 2.10671439875590750e+03 +Electron-alpha_thermal_collision_frequency_at_point_446__________________ (freq_plasma_electron_alpha_thermal_collision_profile446)_ 2.12213533479292300e+03 +Electron-alpha_thermal_collision_frequency_at_point_447__________________ (freq_plasma_electron_alpha_thermal_collision_profile447)_ 2.13745048273458860e+03 +Electron-alpha_thermal_collision_frequency_at_point_448__________________ (freq_plasma_electron_alpha_thermal_collision_profile448)_ 2.15263927416310435e+03 +Electron-alpha_thermal_collision_frequency_at_point_449__________________ (freq_plasma_electron_alpha_thermal_collision_profile449)_ 2.16767958403749117e+03 +Electron-alpha_thermal_collision_frequency_at_point_450__________________ (freq_plasma_electron_alpha_thermal_collision_profile450)_ 2.18254759747588014e+03 +Electron-alpha_thermal_collision_frequency_at_point_451__________________ (freq_plasma_electron_alpha_thermal_collision_profile451)_ 2.19721765811172327e+03 +Electron-alpha_thermal_collision_frequency_at_point_452__________________ (freq_plasma_electron_alpha_thermal_collision_profile452)_ 2.21166209382607349e+03 +Electron-alpha_thermal_collision_frequency_at_point_453__________________ (freq_plasma_electron_alpha_thermal_collision_profile453)_ 2.22585101435381921e+03 +Electron-alpha_thermal_collision_frequency_at_point_454__________________ (freq_plasma_electron_alpha_thermal_collision_profile454)_ 2.23975207345394074e+03 +Electron-alpha_thermal_collision_frequency_at_point_455__________________ (freq_plasma_electron_alpha_thermal_collision_profile455)_ 2.25333018578618021e+03 +Electron-alpha_thermal_collision_frequency_at_point_456__________________ (freq_plasma_electron_alpha_thermal_collision_profile456)_ 2.26654718497908834e+03 +Electron-alpha_thermal_collision_frequency_at_point_457__________________ (freq_plasma_electron_alpha_thermal_collision_profile457)_ 2.27936140401337707e+03 +Electron-alpha_thermal_collision_frequency_at_point_458__________________ (freq_plasma_electron_alpha_thermal_collision_profile458)_ 2.29172715099790730e+03 +Electron-alpha_thermal_collision_frequency_at_point_459__________________ (freq_plasma_electron_alpha_thermal_collision_profile459)_ 2.30359404100914480e+03 +Electron-alpha_thermal_collision_frequency_at_point_460__________________ (freq_plasma_electron_alpha_thermal_collision_profile460)_ 2.31490612493219351e+03 +Electron-alpha_thermal_collision_frequency_at_point_461__________________ (freq_plasma_electron_alpha_thermal_collision_profile461)_ 2.32560072370259695e+03 +Electron-alpha_thermal_collision_frequency_at_point_462__________________ (freq_plasma_electron_alpha_thermal_collision_profile462)_ 2.33560682035866421e+03 +Electron-alpha_thermal_collision_frequency_at_point_463__________________ (freq_plasma_electron_alpha_thermal_collision_profile463)_ 2.34484276093842027e+03 +Electron-alpha_thermal_collision_frequency_at_point_464__________________ (freq_plasma_electron_alpha_thermal_collision_profile464)_ 2.35321281993328557e+03 +Electron-alpha_thermal_collision_frequency_at_point_465__________________ (freq_plasma_electron_alpha_thermal_collision_profile465)_ 2.36060177925858079e+03 +Electron-alpha_thermal_collision_frequency_at_point_466__________________ (freq_plasma_electron_alpha_thermal_collision_profile466)_ 2.36686573307257959e+03 +Electron-alpha_thermal_collision_frequency_at_point_467__________________ (freq_plasma_electron_alpha_thermal_collision_profile467)_ 2.37181485896989807e+03 +Electron-alpha_thermal_collision_frequency_at_point_468__________________ (freq_plasma_electron_alpha_thermal_collision_profile468)_ 2.37517593471035207e+03 +Electron-alpha_thermal_collision_frequency_at_point_469__________________ (freq_plasma_electron_alpha_thermal_collision_profile469)_ 2.37648652068985939e+03 +Electron-alpha_thermal_collision_frequency_at_point_470__________________ (freq_plasma_electron_alpha_thermal_collision_profile470)_ 2.37444365153753051e+03 +Electron-alpha_thermal_collision_frequency_at_point_471__________________ (freq_plasma_electron_alpha_thermal_collision_profile471)_ 2.45794499560066970e+03 +Electron-alpha_thermal_collision_frequency_at_point_472__________________ (freq_plasma_electron_alpha_thermal_collision_profile472)_ 2.54810174352909326e+03 +Electron-alpha_thermal_collision_frequency_at_point_473__________________ (freq_plasma_electron_alpha_thermal_collision_profile473)_ 2.64572288611317617e+03 +Electron-alpha_thermal_collision_frequency_at_point_474__________________ (freq_plasma_electron_alpha_thermal_collision_profile474)_ 2.75175110058775954e+03 +Electron-alpha_thermal_collision_frequency_at_point_475__________________ (freq_plasma_electron_alpha_thermal_collision_profile475)_ 2.86729107609628181e+03 +Electron-alpha_thermal_collision_frequency_at_point_476__________________ (freq_plasma_electron_alpha_thermal_collision_profile476)_ 2.99364526268361897e+03 +Electron-alpha_thermal_collision_frequency_at_point_477__________________ (freq_plasma_electron_alpha_thermal_collision_profile477)_ 3.13235939281702531e+03 +Electron-alpha_thermal_collision_frequency_at_point_478__________________ (freq_plasma_electron_alpha_thermal_collision_profile478)_ 3.28528100656371180e+03 +Electron-alpha_thermal_collision_frequency_at_point_479__________________ (freq_plasma_electron_alpha_thermal_collision_profile479)_ 3.45463548191127347e+03 +Electron-alpha_thermal_collision_frequency_at_point_480__________________ (freq_plasma_electron_alpha_thermal_collision_profile480)_ 3.64312592867150033e+03 +Electron-alpha_thermal_collision_frequency_at_point_481__________________ (freq_plasma_electron_alpha_thermal_collision_profile481)_ 3.85406606318349122e+03 +Electron-alpha_thermal_collision_frequency_at_point_482__________________ (freq_plasma_electron_alpha_thermal_collision_profile482)_ 4.09155935266305414e+03 +Electron-alpha_thermal_collision_frequency_at_point_483__________________ (freq_plasma_electron_alpha_thermal_collision_profile483)_ 4.36074414930279909e+03 +Electron-alpha_thermal_collision_frequency_at_point_484__________________ (freq_plasma_electron_alpha_thermal_collision_profile484)_ 4.66813466218785288e+03 +Electron-alpha_thermal_collision_frequency_at_point_485__________________ (freq_plasma_electron_alpha_thermal_collision_profile485)_ 5.02210394386426651e+03 +Electron-alpha_thermal_collision_frequency_at_point_486__________________ (freq_plasma_electron_alpha_thermal_collision_profile486)_ 5.43358209079699282e+03 +Electron-alpha_thermal_collision_frequency_at_point_487__________________ (freq_plasma_electron_alpha_thermal_collision_profile487)_ 5.91708890073208386e+03 +Electron-alpha_thermal_collision_frequency_at_point_488__________________ (freq_plasma_electron_alpha_thermal_collision_profile488)_ 6.49230130556992935e+03 +Electron-alpha_thermal_collision_frequency_at_point_489__________________ (freq_plasma_electron_alpha_thermal_collision_profile489)_ 7.18650408441543914e+03 +Electron-alpha_thermal_collision_frequency_at_point_490__________________ (freq_plasma_electron_alpha_thermal_collision_profile490)_ 8.03855503148272055e+03 +Electron-alpha_thermal_collision_frequency_at_point_491__________________ (freq_plasma_electron_alpha_thermal_collision_profile491)_ 9.10556230521549332e+03 +Electron-alpha_thermal_collision_frequency_at_point_492__________________ (freq_plasma_electron_alpha_thermal_collision_profile492)_ 1.04746750731629490e+04 +Electron-alpha_thermal_collision_frequency_at_point_493__________________ (freq_plasma_electron_alpha_thermal_collision_profile493)_ 1.22851276640543947e+04 +Electron-alpha_thermal_collision_frequency_at_point_494__________________ (freq_plasma_electron_alpha_thermal_collision_profile494)_ 1.47724585502712234e+04 +Electron-alpha_thermal_collision_frequency_at_point_495__________________ (freq_plasma_electron_alpha_thermal_collision_profile495)_ 1.83654655772341830e+04 +Electron-alpha_thermal_collision_frequency_at_point_496__________________ (freq_plasma_electron_alpha_thermal_collision_profile496)_ 2.39250898259579117e+04 +Electron-alpha_thermal_collision_frequency_at_point_497__________________ (freq_plasma_electron_alpha_thermal_collision_profile497)_ 3.34356399482565248e+04 +Electron-alpha_thermal_collision_frequency_at_point_498__________________ (freq_plasma_electron_alpha_thermal_collision_profile498)_ 5.25460023360273990e+04 +Electron-alpha_thermal_collision_frequency_at_point_499__________________ (freq_plasma_electron_alpha_thermal_collision_profile499)_ 1.04648383579815461e+05 +Electron-alpha_thermal_collision_frequency_at_point_500__________________ (freq_plasma_electron_alpha_thermal_collision_profile500)_ 4.32212582333051076e+05 +Volume_averaged_electron-electron_mean_free_path_(λₑₑ)_(m)_______________ (len_plasma_electron_electron_mean_free_path_vol_avg)_ 4.48543049996867849e+04 +Electron-electron_mean_free_path_at_point_0______________________________ (len_plasma_electron_electron_mean_free_path_profile0)_ 1.37777887078541593e+05 +Electron-electron_mean_free_path_at_point_1______________________________ (len_plasma_electron_electron_mean_free_path_profile1)_ 1.37776773367602902e+05 +Electron-electron_mean_free_path_at_point_2______________________________ (len_plasma_electron_electron_mean_free_path_profile2)_ 1.37773432265373471e+05 +Electron-electron_mean_free_path_at_point_3______________________________ (len_plasma_electron_electron_mean_free_path_profile3)_ 1.37767863863613049e+05 +Electron-electron_mean_free_path_at_point_4______________________________ (len_plasma_electron_electron_mean_free_path_profile4)_ 1.37760068315254030e+05 +Electron-electron_mean_free_path_at_point_5______________________________ (len_plasma_electron_electron_mean_free_path_profile5)_ 1.37750045834402903e+05 +Electron-electron_mean_free_path_at_point_6______________________________ (len_plasma_electron_electron_mean_free_path_profile6)_ 1.37737796696339123e+05 +Electron-electron_mean_free_path_at_point_7______________________________ (len_plasma_electron_electron_mean_free_path_profile7)_ 1.37723321237515687e+05 +Electron-electron_mean_free_path_at_point_8______________________________ (len_plasma_electron_electron_mean_free_path_profile8)_ 1.37706619855560712e+05 +Electron-electron_mean_free_path_at_point_9______________________________ (len_plasma_electron_electron_mean_free_path_profile9)_ 1.37687693009275332e+05 +Electron-electron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_electron_mean_free_path_profile10)_ 1.37666541218636296e+05 +Electron-electron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_electron_mean_free_path_profile11)_ 1.37643165064796107e+05 +Electron-electron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_electron_mean_free_path_profile12)_ 1.37617565190081805e+05 +Electron-electron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_electron_mean_free_path_profile13)_ 1.37589742297997698e+05 +Electron-electron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_electron_mean_free_path_profile14)_ 1.37559697153225075e+05 +Electron-electron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_electron_mean_free_path_profile15)_ 1.37527430581622466e+05 +Electron-electron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_electron_mean_free_path_profile16)_ 1.37492943470227387e+05 +Electron-electron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_electron_mean_free_path_profile17)_ 1.37456236767255818e+05 +Electron-electron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_electron_mean_free_path_profile18)_ 1.37417311482104298e+05 +Electron-electron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_electron_mean_free_path_profile19)_ 1.37376168685350072e+05 +Electron-electron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_electron_mean_free_path_profile20)_ 1.37332809508751991e+05 +Electron-electron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_electron_mean_free_path_profile21)_ 1.37287235145251587e+05 +Electron-electron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_electron_mean_free_path_profile22)_ 1.37239446848974301e+05 +Electron-electron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_electron_mean_free_path_profile23)_ 1.37189445935230091e+05 +Electron-electron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_electron_mean_free_path_profile24)_ 1.37137233780515031e+05 +Electron-electron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_electron_mean_free_path_profile25)_ 1.37082811822512333e+05 +Electron-electron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_electron_mean_free_path_profile26)_ 1.37026181560092315e+05 +Electron-electron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_electron_mean_free_path_profile27)_ 1.36967344553315168e+05 +Electron-electron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_electron_mean_free_path_profile28)_ 1.36906302423432324e+05 +Electron-electron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_electron_mean_free_path_profile29)_ 1.36843056852885551e+05 +Electron-electron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_electron_mean_free_path_profile30)_ 1.36777609585310449e+05 +Electron-electron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_electron_mean_free_path_profile31)_ 1.36709962425537262e+05 +Electron-electron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_electron_mean_free_path_profile32)_ 1.36640117239590880e+05 +Electron-electron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_electron_mean_free_path_profile33)_ 1.36568075954694272e+05 +Electron-electron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_electron_mean_free_path_profile34)_ 1.36493840559268137e+05 +Electron-electron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_electron_mean_free_path_profile35)_ 1.36417413102933177e+05 +Electron-electron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_electron_mean_free_path_profile36)_ 1.36338795696511079e+05 +Electron-electron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_electron_mean_free_path_profile37)_ 1.36257990512026765e+05 +Electron-electron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_electron_mean_free_path_profile38)_ 1.36174999782708881e+05 +Electron-electron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_electron_mean_free_path_profile39)_ 1.36089825802991312e+05 +Electron-electron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_electron_mean_free_path_profile40)_ 1.36002470928515017e+05 +Electron-electron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_electron_mean_free_path_profile41)_ 1.35912937576129480e+05 +Electron-electron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_electron_mean_free_path_profile42)_ 1.35821228223894606e+05 +Electron-electron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_electron_mean_free_path_profile43)_ 1.35727345411080169e+05 +Electron-electron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_electron_mean_free_path_profile44)_ 1.35631291738170199e+05 +Electron-electron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_electron_mean_free_path_profile45)_ 1.35533069866862148e+05 +Electron-electron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_electron_mean_free_path_profile46)_ 1.35432682520069211e+05 +Electron-electron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_electron_mean_free_path_profile47)_ 1.35330132481921552e+05 +Electron-electron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_electron_mean_free_path_profile48)_ 1.35225422597768018e+05 +Electron-electron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_electron_mean_free_path_profile49)_ 1.35118555774176901e+05 +Electron-electron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_electron_mean_free_path_profile50)_ 1.35009534978937765e+05 +Electron-electron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_electron_mean_free_path_profile51)_ 1.34898363241062558e+05 +Electron-electron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_electron_mean_free_path_profile52)_ 1.34785043650786625e+05 +Electron-electron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_electron_mean_free_path_profile53)_ 1.34669579359571333e+05 +Electron-electron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_electron_mean_free_path_profile54)_ 1.34551973580102931e+05 +Electron-electron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_electron_mean_free_path_profile55)_ 1.34432229586295318e+05 +Electron-electron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_electron_mean_free_path_profile56)_ 1.34310350713291351e+05 +Electron-electron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_electron_mean_free_path_profile57)_ 1.34186340357462439e+05 +Electron-electron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_electron_mean_free_path_profile58)_ 1.34060201976411627e+05 +Electron-electron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_electron_mean_free_path_profile59)_ 1.33931939088972082e+05 +Electron-electron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_electron_mean_free_path_profile60)_ 1.33801555275209917e+05 +Electron-electron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_electron_mean_free_path_profile61)_ 1.33669054176424223e+05 +Electron-electron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_electron_mean_free_path_profile62)_ 1.33534439495147381e+05 +Electron-electron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_electron_mean_free_path_profile63)_ 1.33397714995147340e+05 +Electron-electron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_electron_mean_free_path_profile64)_ 1.33258884501425840e+05 +Electron-electron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_electron_mean_free_path_profile65)_ 1.33117951900220214e+05 +Electron-electron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_electron_mean_free_path_profile66)_ 1.32974921139004116e+05 +Electron-electron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_electron_mean_free_path_profile67)_ 1.32829796226486913e+05 +Electron-electron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_electron_mean_free_path_profile68)_ 1.32682581232614699e+05 +Electron-electron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_electron_mean_free_path_profile69)_ 1.32533280288569309e+05 +Electron-electron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_electron_mean_free_path_profile70)_ 1.32381897586768755e+05 +Electron-electron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_electron_mean_free_path_profile71)_ 1.32228437380867806e+05 +Electron-electron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_electron_mean_free_path_profile72)_ 1.32072903985756071e+05 +Electron-electron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_electron_mean_free_path_profile73)_ 1.31915301777559536e+05 +Electron-electron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_electron_mean_free_path_profile74)_ 1.31755635193638533e+05 +Electron-electron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_electron_mean_free_path_profile75)_ 1.31593908732586366e+05 +Electron-electron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_electron_mean_free_path_profile76)_ 1.31430126954231615e+05 +Electron-electron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_electron_mean_free_path_profile77)_ 1.31264294479633594e+05 +Electron-electron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_electron_mean_free_path_profile78)_ 1.31096415991082613e+05 +Electron-electron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_electron_mean_free_path_profile79)_ 1.30926496232098769e+05 +Electron-electron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_electron_mean_free_path_profile80)_ 1.30754540007430987e+05 +Electron-electron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_electron_mean_free_path_profile81)_ 1.30580552183053631e+05 +Electron-electron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_electron_mean_free_path_profile82)_ 1.30404537686165408e+05 +Electron-electron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_electron_mean_free_path_profile83)_ 1.30226501505188426e+05 +Electron-electron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_electron_mean_free_path_profile84)_ 1.30046448689764526e+05 +Electron-electron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_electron_mean_free_path_profile85)_ 1.29864384350752487e+05 +Electron-electron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_electron_mean_free_path_profile86)_ 1.29680313660226559e+05 +Electron-electron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_electron_mean_free_path_profile87)_ 1.29494241851473023e+05 +Electron-electron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_electron_mean_free_path_profile88)_ 1.29306174218986562e+05 +Electron-electron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_electron_mean_free_path_profile89)_ 1.29116116118468010e+05 +Electron-electron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_electron_mean_free_path_profile90)_ 1.28924072966818538e+05 +Electron-electron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_electron_mean_free_path_profile91)_ 1.28730050242138313e+05 +Electron-electron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_electron_mean_free_path_profile92)_ 1.28534053483720651e+05 +Electron-electron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_electron_mean_free_path_profile93)_ 1.28336088292048677e+05 +Electron-electron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_electron_mean_free_path_profile94)_ 1.28136160328789032e+05 +Electron-electron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_electron_mean_free_path_profile95)_ 1.27934275316788422e+05 +Electron-electron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_electron_mean_free_path_profile96)_ 1.27730439040068188e+05 +Electron-electron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_electron_mean_free_path_profile97)_ 1.27524657343817249e+05 +Electron-electron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_electron_mean_free_path_profile98)_ 1.27316936134388234e+05 +Electron-electron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_electron_mean_free_path_profile99)_ 1.27107281379290114e+05 +Electron-electron_mean_free_path_at_point_100____________________________ (len_plasma_electron_electron_mean_free_path_profile100)_ 1.26895699107181266e+05 +Electron-electron_mean_free_path_at_point_101____________________________ (len_plasma_electron_electron_mean_free_path_profile101)_ 1.26682195407863692e+05 +Electron-electron_mean_free_path_at_point_102____________________________ (len_plasma_electron_electron_mean_free_path_profile102)_ 1.26466776432275044e+05 +Electron-electron_mean_free_path_at_point_103____________________________ (len_plasma_electron_electron_mean_free_path_profile103)_ 1.26249448392481587e+05 +Electron-electron_mean_free_path_at_point_104____________________________ (len_plasma_electron_electron_mean_free_path_profile104)_ 1.26030217561669342e+05 +Electron-electron_mean_free_path_at_point_105____________________________ (len_plasma_electron_electron_mean_free_path_profile105)_ 1.25809090274136572e+05 +Electron-electron_mean_free_path_at_point_106____________________________ (len_plasma_electron_electron_mean_free_path_profile106)_ 1.25586072925285334e+05 +Electron-electron_mean_free_path_at_point_107____________________________ (len_plasma_electron_electron_mean_free_path_profile107)_ 1.25361171971610907e+05 +Electron-electron_mean_free_path_at_point_108____________________________ (len_plasma_electron_electron_mean_free_path_profile108)_ 1.25134393930694321e+05 +Electron-electron_mean_free_path_at_point_109____________________________ (len_plasma_electron_electron_mean_free_path_profile109)_ 1.24905745381190747e+05 +Electron-electron_mean_free_path_at_point_110____________________________ (len_plasma_electron_electron_mean_free_path_profile110)_ 1.24675232962819675e+05 +Electron-electron_mean_free_path_at_point_111____________________________ (len_plasma_electron_electron_mean_free_path_profile111)_ 1.24442863376354682e+05 +Electron-electron_mean_free_path_at_point_112____________________________ (len_plasma_electron_electron_mean_free_path_profile112)_ 1.24208643383612012e+05 +Electron-electron_mean_free_path_at_point_113____________________________ (len_plasma_electron_electron_mean_free_path_profile113)_ 1.23972579807438233e+05 +Electron-electron_mean_free_path_at_point_114____________________________ (len_plasma_electron_electron_mean_free_path_profile114)_ 1.23734679531698508e+05 +Electron-electron_mean_free_path_at_point_115____________________________ (len_plasma_electron_electron_mean_free_path_profile115)_ 1.23494949501264389e+05 +Electron-electron_mean_free_path_at_point_116____________________________ (len_plasma_electron_electron_mean_free_path_profile116)_ 1.23253396721999758e+05 +Electron-electron_mean_free_path_at_point_117____________________________ (len_plasma_electron_electron_mean_free_path_profile117)_ 1.23010028260748993e+05 +Electron-electron_mean_free_path_at_point_118____________________________ (len_plasma_electron_electron_mean_free_path_profile118)_ 1.22764851245320489e+05 +Electron-electron_mean_free_path_at_point_119____________________________ (len_plasma_electron_electron_mean_free_path_profile119)_ 1.22517872864473524e+05 +Electron-electron_mean_free_path_at_point_120____________________________ (len_plasma_electron_electron_mean_free_path_profile120)_ 1.22269100367902705e+05 +Electron-electron_mean_free_path_at_point_121____________________________ (len_plasma_electron_electron_mean_free_path_profile121)_ 1.22018541066223130e+05 +Electron-electron_mean_free_path_at_point_122____________________________ (len_plasma_electron_electron_mean_free_path_profile122)_ 1.21766202330952074e+05 +Electron-electron_mean_free_path_at_point_123____________________________ (len_plasma_electron_electron_mean_free_path_profile123)_ 1.21512091594493933e+05 +Electron-electron_mean_free_path_at_point_124____________________________ (len_plasma_electron_electron_mean_free_path_profile124)_ 1.21256216350122311e+05 +Electron-electron_mean_free_path_at_point_125____________________________ (len_plasma_electron_electron_mean_free_path_profile125)_ 1.20998584151961390e+05 +Electron-electron_mean_free_path_at_point_126____________________________ (len_plasma_electron_electron_mean_free_path_profile126)_ 1.20739202614968424e+05 +Electron-electron_mean_free_path_at_point_127____________________________ (len_plasma_electron_electron_mean_free_path_profile127)_ 1.20478079414912834e+05 +Electron-electron_mean_free_path_at_point_128____________________________ (len_plasma_electron_electron_mean_free_path_profile128)_ 1.20215222288358578e+05 +Electron-electron_mean_free_path_at_point_129____________________________ (len_plasma_electron_electron_mean_free_path_profile129)_ 1.19950639032641411e+05 +Electron-electron_mean_free_path_at_point_130____________________________ (len_plasma_electron_electron_mean_free_path_profile130)_ 1.19684337505848569e+05 +Electron-electron_mean_free_path_at_point_131____________________________ (len_plasma_electron_electron_mean_free_path_profile131)_ 1.19416325626797217e+05 +Electron-electron_mean_free_path_at_point_132____________________________ (len_plasma_electron_electron_mean_free_path_profile132)_ 1.19146611375011285e+05 +Electron-electron_mean_free_path_at_point_133____________________________ (len_plasma_electron_electron_mean_free_path_profile133)_ 1.18875202790698313e+05 +Electron-electron_mean_free_path_at_point_134____________________________ (len_plasma_electron_electron_mean_free_path_profile134)_ 1.18602107974725877e+05 +Electron-electron_mean_free_path_at_point_135____________________________ (len_plasma_electron_electron_mean_free_path_profile135)_ 1.18327335088595995e+05 +Electron-electron_mean_free_path_at_point_136____________________________ (len_plasma_electron_electron_mean_free_path_profile136)_ 1.18050892354420881e+05 +Electron-electron_mean_free_path_at_point_137____________________________ (len_plasma_electron_electron_mean_free_path_profile137)_ 1.17772788054895005e+05 +Electron-electron_mean_free_path_at_point_138____________________________ (len_plasma_electron_electron_mean_free_path_profile138)_ 1.17493030533269732e+05 +Electron-electron_mean_free_path_at_point_139____________________________ (len_plasma_electron_electron_mean_free_path_profile139)_ 1.17211628193324665e+05 +Electron-electron_mean_free_path_at_point_140____________________________ (len_plasma_electron_electron_mean_free_path_profile140)_ 1.16928589499338326e+05 +Electron-electron_mean_free_path_at_point_141____________________________ (len_plasma_electron_electron_mean_free_path_profile141)_ 1.16643922976060421e+05 +Electron-electron_mean_free_path_at_point_142____________________________ (len_plasma_electron_electron_mean_free_path_profile142)_ 1.16357637208679822e+05 +Electron-electron_mean_free_path_at_point_143____________________________ (len_plasma_electron_electron_mean_free_path_profile143)_ 1.16069740842794621e+05 +Electron-electron_mean_free_path_at_point_144____________________________ (len_plasma_electron_electron_mean_free_path_profile144)_ 1.15780242584379361e+05 +Electron-electron_mean_free_path_at_point_145____________________________ (len_plasma_electron_electron_mean_free_path_profile145)_ 1.15489151199752057e+05 +Electron-electron_mean_free_path_at_point_146____________________________ (len_plasma_electron_electron_mean_free_path_profile146)_ 1.15196475515541213e+05 +Electron-electron_mean_free_path_at_point_147____________________________ (len_plasma_electron_electron_mean_free_path_profile147)_ 1.14902224418650032e+05 +Electron-electron_mean_free_path_at_point_148____________________________ (len_plasma_electron_electron_mean_free_path_profile148)_ 1.14606406856220594e+05 +Electron-electron_mean_free_path_at_point_149____________________________ (len_plasma_electron_electron_mean_free_path_profile149)_ 1.14309031835598420e+05 +Electron-electron_mean_free_path_at_point_150____________________________ (len_plasma_electron_electron_mean_free_path_profile150)_ 1.14010108424294085e+05 +Electron-electron_mean_free_path_at_point_151____________________________ (len_plasma_electron_electron_mean_free_path_profile151)_ 1.13709645749943869e+05 +Electron-electron_mean_free_path_at_point_152____________________________ (len_plasma_electron_electron_mean_free_path_profile152)_ 1.13407653000271574e+05 +Electron-electron_mean_free_path_at_point_153____________________________ (len_plasma_electron_electron_mean_free_path_profile153)_ 1.13104139423046290e+05 +Electron-electron_mean_free_path_at_point_154____________________________ (len_plasma_electron_electron_mean_free_path_profile154)_ 1.12799114326041541e+05 +Electron-electron_mean_free_path_at_point_155____________________________ (len_plasma_electron_electron_mean_free_path_profile155)_ 1.12492587076992510e+05 +Electron-electron_mean_free_path_at_point_156____________________________ (len_plasma_electron_electron_mean_free_path_profile156)_ 1.12184567103551119e+05 +Electron-electron_mean_free_path_at_point_157____________________________ (len_plasma_electron_electron_mean_free_path_profile157)_ 1.11875063893242506e+05 +Electron-electron_mean_free_path_at_point_158____________________________ (len_plasma_electron_electron_mean_free_path_profile158)_ 1.11564086993417863e+05 +Electron-electron_mean_free_path_at_point_159____________________________ (len_plasma_electron_electron_mean_free_path_profile159)_ 1.11251646011206496e+05 +Electron-electron_mean_free_path_at_point_160____________________________ (len_plasma_electron_electron_mean_free_path_profile160)_ 1.10937750613469136e+05 +Electron-electron_mean_free_path_at_point_161____________________________ (len_plasma_electron_electron_mean_free_path_profile161)_ 1.10622410526746811e+05 +Electron-electron_mean_free_path_at_point_162____________________________ (len_plasma_electron_electron_mean_free_path_profile162)_ 1.10305635537210081e+05 +Electron-electron_mean_free_path_at_point_163____________________________ (len_plasma_electron_electron_mean_free_path_profile163)_ 1.09987435490607881e+05 +Electron-electron_mean_free_path_at_point_164____________________________ (len_plasma_electron_electron_mean_free_path_profile164)_ 1.09667820292212506e+05 +Electron-electron_mean_free_path_at_point_165____________________________ (len_plasma_electron_electron_mean_free_path_profile165)_ 1.09346799906766362e+05 +Electron-electron_mean_free_path_at_point_166____________________________ (len_plasma_electron_electron_mean_free_path_profile166)_ 1.09024384358425465e+05 +Electron-electron_mean_free_path_at_point_167____________________________ (len_plasma_electron_electron_mean_free_path_profile167)_ 1.08700583730702099e+05 +Electron-electron_mean_free_path_at_point_168____________________________ (len_plasma_electron_electron_mean_free_path_profile168)_ 1.08375408166406080e+05 +Electron-electron_mean_free_path_at_point_169____________________________ (len_plasma_electron_electron_mean_free_path_profile169)_ 1.08048867867584515e+05 +Electron-electron_mean_free_path_at_point_170____________________________ (len_plasma_electron_electron_mean_free_path_profile170)_ 1.07720973095461653e+05 +Electron-electron_mean_free_path_at_point_171____________________________ (len_plasma_electron_electron_mean_free_path_profile171)_ 1.07391734170374169e+05 +Electron-electron_mean_free_path_at_point_172____________________________ (len_plasma_electron_electron_mean_free_path_profile172)_ 1.07061161471708620e+05 +Electron-electron_mean_free_path_at_point_173____________________________ (len_plasma_electron_electron_mean_free_path_profile173)_ 1.06729265437834256e+05 +Electron-electron_mean_free_path_at_point_174____________________________ (len_plasma_electron_electron_mean_free_path_profile174)_ 1.06396056566036787e+05 +Electron-electron_mean_free_path_at_point_175____________________________ (len_plasma_electron_electron_mean_free_path_profile175)_ 1.06061545412449792e+05 +Electron-electron_mean_free_path_at_point_176____________________________ (len_plasma_electron_electron_mean_free_path_profile176)_ 1.05725742591983260e+05 +Electron-electron_mean_free_path_at_point_177____________________________ (len_plasma_electron_electron_mean_free_path_profile177)_ 1.05388658778253113e+05 +Electron-electron_mean_free_path_at_point_178____________________________ (len_plasma_electron_electron_mean_free_path_profile178)_ 1.05050304703506321e+05 +Electron-electron_mean_free_path_at_point_179____________________________ (len_plasma_electron_electron_mean_free_path_profile179)_ 1.04710691158547736e+05 +Electron-electron_mean_free_path_at_point_180____________________________ (len_plasma_electron_electron_mean_free_path_profile180)_ 1.04369828992661729e+05 +Electron-electron_mean_free_path_at_point_181____________________________ (len_plasma_electron_electron_mean_free_path_profile181)_ 1.04027729113534398e+05 +Electron-electron_mean_free_path_at_point_182____________________________ (len_plasma_electron_electron_mean_free_path_profile182)_ 1.03684402487174040e+05 +Electron-electron_mean_free_path_at_point_183____________________________ (len_plasma_electron_electron_mean_free_path_profile183)_ 1.03339860137828611e+05 +Electron-electron_mean_free_path_at_point_184____________________________ (len_plasma_electron_electron_mean_free_path_profile184)_ 1.02994113147902244e+05 +Electron-electron_mean_free_path_at_point_185____________________________ (len_plasma_electron_electron_mean_free_path_profile185)_ 1.02647172657870804e+05 +Electron-electron_mean_free_path_at_point_186____________________________ (len_plasma_electron_electron_mean_free_path_profile186)_ 1.02299049866193673e+05 +Electron-electron_mean_free_path_at_point_187____________________________ (len_plasma_electron_electron_mean_free_path_profile187)_ 1.01949756029225464e+05 +Electron-electron_mean_free_path_at_point_188____________________________ (len_plasma_electron_electron_mean_free_path_profile188)_ 1.01599302461124840e+05 +Electron-electron_mean_free_path_at_point_189____________________________ (len_plasma_electron_electron_mean_free_path_profile189)_ 1.01247700533761876e+05 +Electron-electron_mean_free_path_at_point_190____________________________ (len_plasma_electron_electron_mean_free_path_profile190)_ 1.00894961676624094e+05 +Electron-electron_mean_free_path_at_point_191____________________________ (len_plasma_electron_electron_mean_free_path_profile191)_ 1.00541097376718812e+05 +Electron-electron_mean_free_path_at_point_192____________________________ (len_plasma_electron_electron_mean_free_path_profile192)_ 1.00186119178474619e+05 +Electron-electron_mean_free_path_at_point_193____________________________ (len_plasma_electron_electron_mean_free_path_profile193)_ 9.98300386836417601e+04 +Electron-electron_mean_free_path_at_point_194____________________________ (len_plasma_electron_electron_mean_free_path_profile194)_ 9.94728675511882902e+04 +Electron-electron_mean_free_path_at_point_195____________________________ (len_plasma_electron_electron_mean_free_path_profile195)_ 9.91146174971967703e+04 +Electron-electron_mean_free_path_at_point_196____________________________ (len_plasma_electron_electron_mean_free_path_profile196)_ 9.87553002947556233e+04 +Electron-electron_mean_free_path_at_point_197____________________________ (len_plasma_electron_electron_mean_free_path_profile197)_ 9.83949277738513483e+04 +Electron-electron_mean_free_path_at_point_198____________________________ (len_plasma_electron_electron_mean_free_path_profile198)_ 9.80335118212570524e+04 +Electron-electron_mean_free_path_at_point_199____________________________ (len_plasma_electron_electron_mean_free_path_profile199)_ 9.76710643804191641e+04 +Electron-electron_mean_free_path_at_point_200____________________________ (len_plasma_electron_electron_mean_free_path_profile200)_ 9.73075974513415276e+04 +Electron-electron_mean_free_path_at_point_201____________________________ (len_plasma_electron_electron_mean_free_path_profile201)_ 9.69431230904672411e+04 +Electron-electron_mean_free_path_at_point_202____________________________ (len_plasma_electron_electron_mean_free_path_profile202)_ 9.65776534105589672e+04 +Electron-electron_mean_free_path_at_point_203____________________________ (len_plasma_electron_electron_mean_free_path_profile203)_ 9.62112005805767549e+04 +Electron-electron_mean_free_path_at_point_204____________________________ (len_plasma_electron_electron_mean_free_path_profile204)_ 9.58437768255516276e+04 +Electron-electron_mean_free_path_at_point_205____________________________ (len_plasma_electron_electron_mean_free_path_profile205)_ 9.54753944264593010e+04 +Electron-electron_mean_free_path_at_point_206____________________________ (len_plasma_electron_electron_mean_free_path_profile206)_ 9.51060657200900168e+04 +Electron-electron_mean_free_path_at_point_207____________________________ (len_plasma_electron_electron_mean_free_path_profile207)_ 9.47358030989157414e+04 +Electron-electron_mean_free_path_at_point_208____________________________ (len_plasma_electron_electron_mean_free_path_profile208)_ 9.43646190109565650e+04 +Electron-electron_mean_free_path_at_point_209____________________________ (len_plasma_electron_electron_mean_free_path_profile209)_ 9.39925259596418909e+04 +Electron-electron_mean_free_path_at_point_210____________________________ (len_plasma_electron_electron_mean_free_path_profile210)_ 9.36195365036705480e+04 +Electron-electron_mean_free_path_at_point_211____________________________ (len_plasma_electron_electron_mean_free_path_profile211)_ 9.32456632568689674e+04 +Electron-electron_mean_free_path_at_point_212____________________________ (len_plasma_electron_electron_mean_free_path_profile212)_ 9.28709188880446454e+04 +Electron-electron_mean_free_path_at_point_213____________________________ (len_plasma_electron_electron_mean_free_path_profile213)_ 9.24953161208394449e+04 +Electron-electron_mean_free_path_at_point_214____________________________ (len_plasma_electron_electron_mean_free_path_profile214)_ 9.21188677335764369e+04 +Electron-electron_mean_free_path_at_point_215____________________________ (len_plasma_electron_electron_mean_free_path_profile215)_ 9.17415865591090260e+04 +Electron-electron_mean_free_path_at_point_216____________________________ (len_plasma_electron_electron_mean_free_path_profile216)_ 9.13634854846620583e+04 +Electron-electron_mean_free_path_at_point_217____________________________ (len_plasma_electron_electron_mean_free_path_profile217)_ 9.09845774516737001e+04 +Electron-electron_mean_free_path_at_point_218____________________________ (len_plasma_electron_electron_mean_free_path_profile218)_ 9.06048754556326894e+04 +Electron-electron_mean_free_path_at_point_219____________________________ (len_plasma_electron_electron_mean_free_path_profile219)_ 9.02243925459125603e+04 +Electron-electron_mean_free_path_at_point_220____________________________ (len_plasma_electron_electron_mean_free_path_profile220)_ 8.98431418256048782e+04 +Electron-electron_mean_free_path_at_point_221____________________________ (len_plasma_electron_electron_mean_free_path_profile221)_ 8.94611364513454173e+04 +Electron-electron_mean_free_path_at_point_222____________________________ (len_plasma_electron_electron_mean_free_path_profile222)_ 8.90783896331419237e+04 +Electron-electron_mean_free_path_at_point_223____________________________ (len_plasma_electron_electron_mean_free_path_profile223)_ 8.86949146341952437e+04 +Electron-electron_mean_free_path_at_point_224____________________________ (len_plasma_electron_electron_mean_free_path_profile224)_ 8.83107247707188653e+04 +Electron-electron_mean_free_path_at_point_225____________________________ (len_plasma_electron_electron_mean_free_path_profile225)_ 8.79258334117544728e+04 +Electron-electron_mean_free_path_at_point_226____________________________ (len_plasma_electron_electron_mean_free_path_profile226)_ 8.75402539789859584e+04 +Electron-electron_mean_free_path_at_point_227____________________________ (len_plasma_electron_electron_mean_free_path_profile227)_ 8.71539999465468427e+04 +Electron-electron_mean_free_path_at_point_228____________________________ (len_plasma_electron_electron_mean_free_path_profile228)_ 8.67670848408275197e+04 +Electron-electron_mean_free_path_at_point_229____________________________ (len_plasma_electron_electron_mean_free_path_profile229)_ 8.63795222402776999e+04 +Electron-electron_mean_free_path_at_point_230____________________________ (len_plasma_electron_electron_mean_free_path_profile230)_ 8.59913257752055797e+04 +Electron-electron_mean_free_path_at_point_231____________________________ (len_plasma_electron_electron_mean_free_path_profile231)_ 8.56025091275727900e+04 +Electron-electron_mean_free_path_at_point_232____________________________ (len_plasma_electron_electron_mean_free_path_profile232)_ 8.52130860307873518e+04 +Electron-electron_mean_free_path_at_point_233____________________________ (len_plasma_electron_electron_mean_free_path_profile233)_ 8.48230702694910869e+04 +Electron-electron_mean_free_path_at_point_234____________________________ (len_plasma_electron_electron_mean_free_path_profile234)_ 8.44324756793457200e+04 +Electron-electron_mean_free_path_at_point_235____________________________ (len_plasma_electron_electron_mean_free_path_profile235)_ 8.40413161468133330e+04 +Electron-electron_mean_free_path_at_point_236____________________________ (len_plasma_electron_electron_mean_free_path_profile236)_ 8.36496056089330232e+04 +Electron-electron_mean_free_path_at_point_237____________________________ (len_plasma_electron_electron_mean_free_path_profile237)_ 8.32573580530956679e+04 +Electron-electron_mean_free_path_at_point_238____________________________ (len_plasma_electron_electron_mean_free_path_profile238)_ 8.28645875168129423e+04 +Electron-electron_mean_free_path_at_point_239____________________________ (len_plasma_electron_electron_mean_free_path_profile239)_ 8.24713080874832813e+04 +Electron-electron_mean_free_path_at_point_240____________________________ (len_plasma_electron_electron_mean_free_path_profile240)_ 8.20775339021537366e+04 +Electron-electron_mean_free_path_at_point_241____________________________ (len_plasma_electron_electron_mean_free_path_profile241)_ 8.16832791472778918e+04 +Electron-electron_mean_free_path_at_point_242____________________________ (len_plasma_electron_electron_mean_free_path_profile242)_ 8.12885580584692798e+04 +Electron-electron_mean_free_path_at_point_243____________________________ (len_plasma_electron_electron_mean_free_path_profile243)_ 8.08933849202521087e+04 +Electron-electron_mean_free_path_at_point_244____________________________ (len_plasma_electron_electron_mean_free_path_profile244)_ 8.04977740658048133e+04 +Electron-electron_mean_free_path_at_point_245____________________________ (len_plasma_electron_electron_mean_free_path_profile245)_ 8.01017398767040431e+04 +Electron-electron_mean_free_path_at_point_246____________________________ (len_plasma_electron_electron_mean_free_path_profile246)_ 7.97052967826595268e+04 +Electron-electron_mean_free_path_at_point_247____________________________ (len_plasma_electron_electron_mean_free_path_profile247)_ 7.93084592612474808e+04 +Electron-electron_mean_free_path_at_point_248____________________________ (len_plasma_electron_electron_mean_free_path_profile248)_ 7.89112418376399000e+04 +Electron-electron_mean_free_path_at_point_249____________________________ (len_plasma_electron_electron_mean_free_path_profile249)_ 7.85136590843265294e+04 +Electron-electron_mean_free_path_at_point_250____________________________ (len_plasma_electron_electron_mean_free_path_profile250)_ 7.81157256208361796e+04 +Electron-electron_mean_free_path_at_point_251____________________________ (len_plasma_electron_electron_mean_free_path_profile251)_ 7.77174561134510586e+04 +Electron-electron_mean_free_path_at_point_252____________________________ (len_plasma_electron_electron_mean_free_path_profile252)_ 7.73188652749169269e+04 +Electron-electron_mean_free_path_at_point_253____________________________ (len_plasma_electron_electron_mean_free_path_profile253)_ 7.69199678641481732e+04 +Electron-electron_mean_free_path_at_point_254____________________________ (len_plasma_electron_electron_mean_free_path_profile254)_ 7.65207786859306070e+04 +Electron-electron_mean_free_path_at_point_255____________________________ (len_plasma_electron_electron_mean_free_path_profile255)_ 7.61213125906150526e+04 +Electron-electron_mean_free_path_at_point_256____________________________ (len_plasma_electron_electron_mean_free_path_profile256)_ 7.57215844738119195e+04 +Electron-electron_mean_free_path_at_point_257____________________________ (len_plasma_electron_electron_mean_free_path_profile257)_ 7.53216092760749598e+04 +Electron-electron_mean_free_path_at_point_258____________________________ (len_plasma_electron_electron_mean_free_path_profile258)_ 7.49214019825842697e+04 +Electron-electron_mean_free_path_at_point_259____________________________ (len_plasma_electron_electron_mean_free_path_profile259)_ 7.45209776228228729e+04 +Electron-electron_mean_free_path_at_point_260____________________________ (len_plasma_electron_electron_mean_free_path_profile260)_ 7.41203512702477892e+04 +Electron-electron_mean_free_path_at_point_261____________________________ (len_plasma_electron_electron_mean_free_path_profile261)_ 7.37195380419570574e+04 +Electron-electron_mean_free_path_at_point_262____________________________ (len_plasma_electron_electron_mean_free_path_profile262)_ 7.33185530983509525e+04 +Electron-electron_mean_free_path_at_point_263____________________________ (len_plasma_electron_electron_mean_free_path_profile263)_ 7.29174116427876579e+04 +Electron-electron_mean_free_path_at_point_264____________________________ (len_plasma_electron_electron_mean_free_path_profile264)_ 7.25161289212349948e+04 +Electron-electron_mean_free_path_at_point_265____________________________ (len_plasma_electron_electron_mean_free_path_profile265)_ 7.21147202219157480e+04 +Electron-electron_mean_free_path_at_point_266____________________________ (len_plasma_electron_electron_mean_free_path_profile266)_ 7.17132008749467786e+04 +Electron-electron_mean_free_path_at_point_267____________________________ (len_plasma_electron_electron_mean_free_path_profile267)_ 7.13115862519750663e+04 +Electron-electron_mean_free_path_at_point_268____________________________ (len_plasma_electron_electron_mean_free_path_profile268)_ 7.09098917658067803e+04 +Electron-electron_mean_free_path_at_point_269____________________________ (len_plasma_electron_electron_mean_free_path_profile269)_ 7.05081328700306622e+04 +Electron-electron_mean_free_path_at_point_270____________________________ (len_plasma_electron_electron_mean_free_path_profile270)_ 7.01063250586358627e+04 +Electron-electron_mean_free_path_at_point_271____________________________ (len_plasma_electron_electron_mean_free_path_profile271)_ 6.97044838656253123e+04 +Electron-electron_mean_free_path_at_point_272____________________________ (len_plasma_electron_electron_mean_free_path_profile272)_ 6.93026248646214226e+04 +Electron-electron_mean_free_path_at_point_273____________________________ (len_plasma_electron_electron_mean_free_path_profile273)_ 6.89007636684677273e+04 +Electron-electron_mean_free_path_at_point_274____________________________ (len_plasma_electron_electron_mean_free_path_profile274)_ 6.84989159288242226e+04 +Electron-electron_mean_free_path_at_point_275____________________________ (len_plasma_electron_electron_mean_free_path_profile275)_ 6.80970973357556359e+04 +Electron-electron_mean_free_path_at_point_276____________________________ (len_plasma_electron_electron_mean_free_path_profile276)_ 6.76953236173165787e+04 +Electron-electron_mean_free_path_at_point_277____________________________ (len_plasma_electron_electron_mean_free_path_profile277)_ 6.72936105391272140e+04 +Electron-electron_mean_free_path_at_point_278____________________________ (len_plasma_electron_electron_mean_free_path_profile278)_ 6.68919739039448468e+04 +Electron-electron_mean_free_path_at_point_279____________________________ (len_plasma_electron_electron_mean_free_path_profile279)_ 6.64904295512306999e+04 +Electron-electron_mean_free_path_at_point_280____________________________ (len_plasma_electron_electron_mean_free_path_profile280)_ 6.60889933567077387e+04 +Electron-electron_mean_free_path_at_point_281____________________________ (len_plasma_electron_electron_mean_free_path_profile281)_ 6.56876812319136807e+04 +Electron-electron_mean_free_path_at_point_282____________________________ (len_plasma_electron_electron_mean_free_path_profile282)_ 6.52865091237481320e+04 +Electron-electron_mean_free_path_at_point_283____________________________ (len_plasma_electron_electron_mean_free_path_profile283)_ 6.48854930140136566e+04 +Electron-electron_mean_free_path_at_point_284____________________________ (len_plasma_electron_electron_mean_free_path_profile284)_ 6.44846489189488857e+04 +Electron-electron_mean_free_path_at_point_285____________________________ (len_plasma_electron_electron_mean_free_path_profile285)_ 6.40839928887572532e+04 +Electron-electron_mean_free_path_at_point_286____________________________ (len_plasma_electron_electron_mean_free_path_profile286)_ 6.36835410071277365e+04 +Electron-electron_mean_free_path_at_point_287____________________________ (len_plasma_electron_electron_mean_free_path_profile287)_ 6.32833093907505536e+04 +Electron-electron_mean_free_path_at_point_288____________________________ (len_plasma_electron_electron_mean_free_path_profile288)_ 6.28833141888254104e+04 +Electron-electron_mean_free_path_at_point_289____________________________ (len_plasma_electron_electron_mean_free_path_profile289)_ 6.24835715825635416e+04 +Electron-electron_mean_free_path_at_point_290____________________________ (len_plasma_electron_electron_mean_free_path_profile290)_ 6.20840977846829483e+04 +Electron-electron_mean_free_path_at_point_291____________________________ (len_plasma_electron_electron_mean_free_path_profile291)_ 6.16849090388982368e+04 +Electron-electron_mean_free_path_at_point_292____________________________ (len_plasma_electron_electron_mean_free_path_profile292)_ 6.12860216194019595e+04 +Electron-electron_mean_free_path_at_point_293____________________________ (len_plasma_electron_electron_mean_free_path_profile293)_ 6.08874518303409204e+04 +Electron-electron_mean_free_path_at_point_294____________________________ (len_plasma_electron_electron_mean_free_path_profile294)_ 6.04892160052846739e+04 +Electron-electron_mean_free_path_at_point_295____________________________ (len_plasma_electron_electron_mean_free_path_profile295)_ 6.00913305066885587e+04 +Electron-electron_mean_free_path_at_point_296____________________________ (len_plasma_electron_electron_mean_free_path_profile296)_ 5.96938117253490564e+04 +Electron-electron_mean_free_path_at_point_297____________________________ (len_plasma_electron_electron_mean_free_path_profile297)_ 5.92966760798529212e+04 +Electron-electron_mean_free_path_at_point_298____________________________ (len_plasma_electron_electron_mean_free_path_profile298)_ 5.88999400160192745e+04 +Electron-electron_mean_free_path_at_point_299____________________________ (len_plasma_electron_electron_mean_free_path_profile299)_ 5.85036200063348952e+04 +Electron-electron_mean_free_path_at_point_300____________________________ (len_plasma_electron_electron_mean_free_path_profile300)_ 5.81077325493838798e+04 +Electron-electron_mean_free_path_at_point_301____________________________ (len_plasma_electron_electron_mean_free_path_profile301)_ 5.77122941692690438e+04 +Electron-electron_mean_free_path_at_point_302____________________________ (len_plasma_electron_electron_mean_free_path_profile302)_ 5.73173214150275453e+04 +Electron-electron_mean_free_path_at_point_303____________________________ (len_plasma_electron_electron_mean_free_path_profile303)_ 5.69228308600390010e+04 +Electron-electron_mean_free_path_at_point_304____________________________ (len_plasma_electron_electron_mean_free_path_profile304)_ 5.65288391014290464e+04 +Electron-electron_mean_free_path_at_point_305____________________________ (len_plasma_electron_electron_mean_free_path_profile305)_ 5.61353627594623540e+04 +Electron-electron_mean_free_path_at_point_306____________________________ (len_plasma_electron_electron_mean_free_path_profile306)_ 5.57424184769331987e+04 +Electron-electron_mean_free_path_at_point_307____________________________ (len_plasma_electron_electron_mean_free_path_profile307)_ 5.53500229185467470e+04 +Electron-electron_mean_free_path_at_point_308____________________________ (len_plasma_electron_electron_mean_free_path_profile308)_ 5.49581927702944959e+04 +Electron-electron_mean_free_path_at_point_309____________________________ (len_plasma_electron_electron_mean_free_path_profile309)_ 5.45669447388235058e+04 +Electron-electron_mean_free_path_at_point_310____________________________ (len_plasma_electron_electron_mean_free_path_profile310)_ 5.41762955507981751e+04 +Electron-electron_mean_free_path_at_point_311____________________________ (len_plasma_electron_electron_mean_free_path_profile311)_ 5.37862619522576715e+04 +Electron-electron_mean_free_path_at_point_312____________________________ (len_plasma_electron_electron_mean_free_path_profile312)_ 5.33968607079640569e+04 +Electron-electron_mean_free_path_at_point_313____________________________ (len_plasma_electron_electron_mean_free_path_profile313)_ 5.30081086007471094e+04 +Electron-electron_mean_free_path_at_point_314____________________________ (len_plasma_electron_electron_mean_free_path_profile314)_ 5.26200224308407487e+04 +Electron-electron_mean_free_path_at_point_315____________________________ (len_plasma_electron_electron_mean_free_path_profile315)_ 5.22326190152148920e+04 +Electron-electron_mean_free_path_at_point_316____________________________ (len_plasma_electron_electron_mean_free_path_profile316)_ 5.18459151868998451e+04 +Electron-electron_mean_free_path_at_point_317____________________________ (len_plasma_electron_electron_mean_free_path_profile317)_ 5.14599277943065463e+04 +Electron-electron_mean_free_path_at_point_318____________________________ (len_plasma_electron_electron_mean_free_path_profile318)_ 5.10746737005402028e+04 +Electron-electron_mean_free_path_at_point_319____________________________ (len_plasma_electron_electron_mean_free_path_profile319)_ 5.06901697827074022e+04 +Electron-electron_mean_free_path_at_point_320____________________________ (len_plasma_electron_electron_mean_free_path_profile320)_ 5.03064329312205518e+04 +Electron-electron_mean_free_path_at_point_321____________________________ (len_plasma_electron_electron_mean_free_path_profile321)_ 4.99234800490930065e+04 +Electron-electron_mean_free_path_at_point_322____________________________ (len_plasma_electron_electron_mean_free_path_profile322)_ 4.95413280512338097e+04 +Electron-electron_mean_free_path_at_point_323____________________________ (len_plasma_electron_electron_mean_free_path_profile323)_ 4.91599938637333835e+04 +Electron-electron_mean_free_path_at_point_324____________________________ (len_plasma_electron_electron_mean_free_path_profile324)_ 4.87794944231473055e+04 +Electron-electron_mean_free_path_at_point_325____________________________ (len_plasma_electron_electron_mean_free_path_profile325)_ 4.83998466757743299e+04 +Electron-electron_mean_free_path_at_point_326____________________________ (len_plasma_electron_electron_mean_free_path_profile326)_ 4.80210675769307345e+04 +Electron-electron_mean_free_path_at_point_327____________________________ (len_plasma_electron_electron_mean_free_path_profile327)_ 4.76431740902205638e+04 +Electron-electron_mean_free_path_at_point_328____________________________ (len_plasma_electron_electron_mean_free_path_profile328)_ 4.72661831868020963e+04 +Electron-electron_mean_free_path_at_point_329____________________________ (len_plasma_electron_electron_mean_free_path_profile329)_ 4.68901118446522742e+04 +Electron-electron_mean_free_path_at_point_330____________________________ (len_plasma_electron_electron_mean_free_path_profile330)_ 4.65149770478255377e+04 +Electron-electron_mean_free_path_at_point_331____________________________ (len_plasma_electron_electron_mean_free_path_profile331)_ 4.61407957857128567e+04 +Electron-electron_mean_free_path_at_point_332____________________________ (len_plasma_electron_electron_mean_free_path_profile332)_ 4.57675850522968612e+04 +Electron-electron_mean_free_path_at_point_333____________________________ (len_plasma_electron_electron_mean_free_path_profile333)_ 4.53953618454051684e+04 +Electron-electron_mean_free_path_at_point_334____________________________ (len_plasma_electron_electron_mean_free_path_profile334)_ 4.50241431659641967e+04 +Electron-electron_mean_free_path_at_point_335____________________________ (len_plasma_electron_electron_mean_free_path_profile335)_ 4.46539460172483959e+04 +Electron-electron_mean_free_path_at_point_336____________________________ (len_plasma_electron_electron_mean_free_path_profile336)_ 4.42847874041333416e+04 +Electron-electron_mean_free_path_at_point_337____________________________ (len_plasma_electron_electron_mean_free_path_profile337)_ 4.39166843323454887e+04 +Electron-electron_mean_free_path_at_point_338____________________________ (len_plasma_electron_electron_mean_free_path_profile338)_ 4.35496538077148216e+04 +Electron-electron_mean_free_path_at_point_339____________________________ (len_plasma_electron_electron_mean_free_path_profile339)_ 4.31837128354275701e+04 +Electron-electron_mean_free_path_at_point_340____________________________ (len_plasma_electron_electron_mean_free_path_profile340)_ 4.28188784192811072e+04 +Electron-electron_mean_free_path_at_point_341____________________________ (len_plasma_electron_electron_mean_free_path_profile341)_ 4.24551675609421291e+04 +Electron-electron_mean_free_path_at_point_342____________________________ (len_plasma_electron_electron_mean_free_path_profile342)_ 4.20925972592074686e+04 +Electron-electron_mean_free_path_at_point_343____________________________ (len_plasma_electron_electron_mean_free_path_profile343)_ 4.17311845092685762e+04 +Electron-electron_mean_free_path_at_point_344____________________________ (len_plasma_electron_electron_mean_free_path_profile344)_ 4.13709463019833129e+04 +Electron-electron_mean_free_path_at_point_345____________________________ (len_plasma_electron_electron_mean_free_path_profile345)_ 4.10118996231503916e+04 +Electron-electron_mean_free_path_at_point_346____________________________ (len_plasma_electron_electron_mean_free_path_profile346)_ 4.06540614527923244e+04 +Electron-electron_mean_free_path_at_point_347____________________________ (len_plasma_electron_electron_mean_free_path_profile347)_ 4.02974487644472174e+04 +Electron-electron_mean_free_path_at_point_348____________________________ (len_plasma_electron_electron_mean_free_path_profile348)_ 3.99420785244668878e+04 +Electron-electron_mean_free_path_at_point_349____________________________ (len_plasma_electron_electron_mean_free_path_profile349)_ 3.95879676913272633e+04 +Electron-electron_mean_free_path_at_point_350____________________________ (len_plasma_electron_electron_mean_free_path_profile350)_ 3.92351332149481968e+04 +Electron-electron_mean_free_path_at_point_351____________________________ (len_plasma_electron_electron_mean_free_path_profile351)_ 3.88835920360275559e+04 +Electron-electron_mean_free_path_at_point_352____________________________ (len_plasma_electron_electron_mean_free_path_profile352)_ 3.85333610853871214e+04 +Electron-electron_mean_free_path_at_point_353____________________________ (len_plasma_electron_electron_mean_free_path_profile353)_ 3.81844572833359780e+04 +Electron-electron_mean_free_path_at_point_354____________________________ (len_plasma_electron_electron_mean_free_path_profile354)_ 3.78368975390483902e+04 +Electron-electron_mean_free_path_at_point_355____________________________ (len_plasma_electron_electron_mean_free_path_profile355)_ 3.74906987499622701e+04 +Electron-electron_mean_free_path_at_point_356____________________________ (len_plasma_electron_electron_mean_free_path_profile356)_ 3.71458778011963368e+04 +Electron-electron_mean_free_path_at_point_357____________________________ (len_plasma_electron_electron_mean_free_path_profile357)_ 3.68024515649900059e+04 +Electron-electron_mean_free_path_at_point_358____________________________ (len_plasma_electron_electron_mean_free_path_profile358)_ 3.64604369001670857e+04 +Electron-electron_mean_free_path_at_point_359____________________________ (len_plasma_electron_electron_mean_free_path_profile359)_ 3.61198506516254638e+04 +Electron-electron_mean_free_path_at_point_360____________________________ (len_plasma_electron_electron_mean_free_path_profile360)_ 3.57807096498548708e+04 +Electron-electron_mean_free_path_at_point_361____________________________ (len_plasma_electron_electron_mean_free_path_profile361)_ 3.54430307104866588e+04 +Electron-electron_mean_free_path_at_point_362____________________________ (len_plasma_electron_electron_mean_free_path_profile362)_ 3.51068306338737020e+04 +Electron-electron_mean_free_path_at_point_363____________________________ (len_plasma_electron_electron_mean_free_path_profile363)_ 3.47721262047097844e+04 +Electron-electron_mean_free_path_at_point_364____________________________ (len_plasma_electron_electron_mean_free_path_profile364)_ 3.44389341916845224e+04 +Electron-electron_mean_free_path_at_point_365____________________________ (len_plasma_electron_electron_mean_free_path_profile365)_ 3.41072713471822208e+04 +Electron-electron_mean_free_path_at_point_366____________________________ (len_plasma_electron_electron_mean_free_path_profile366)_ 3.37771544070236414e+04 +Electron-electron_mean_free_path_at_point_367____________________________ (len_plasma_electron_electron_mean_free_path_profile367)_ 3.34486000902570377e+04 +Electron-electron_mean_free_path_at_point_368____________________________ (len_plasma_electron_electron_mean_free_path_profile368)_ 3.31216250990010521e+04 +Electron-electron_mean_free_path_at_point_369____________________________ (len_plasma_electron_electron_mean_free_path_profile369)_ 3.27962461183431078e+04 +Electron-electron_mean_free_path_at_point_370____________________________ (len_plasma_electron_electron_mean_free_path_profile370)_ 3.24724798162971529e+04 +Electron-electron_mean_free_path_at_point_371____________________________ (len_plasma_electron_electron_mean_free_path_profile371)_ 3.21503428438265655e+04 +Electron-electron_mean_free_path_at_point_372____________________________ (len_plasma_electron_electron_mean_free_path_profile372)_ 3.18298518349346596e+04 +Electron-electron_mean_free_path_at_point_373____________________________ (len_plasma_electron_electron_mean_free_path_profile373)_ 3.15110234068302489e+04 +Electron-electron_mean_free_path_at_point_374____________________________ (len_plasma_electron_electron_mean_free_path_profile374)_ 3.11938741601711372e+04 +Electron-electron_mean_free_path_at_point_375____________________________ (len_plasma_electron_electron_mean_free_path_profile375)_ 3.08784206793923076e+04 +Electron-electron_mean_free_path_at_point_376____________________________ (len_plasma_electron_electron_mean_free_path_profile376)_ 3.05646795331267967e+04 +Electron-electron_mean_free_path_at_point_377____________________________ (len_plasma_electron_electron_mean_free_path_profile377)_ 3.02526672747200901e+04 +Electron-electron_mean_free_path_at_point_378____________________________ (len_plasma_electron_electron_mean_free_path_profile378)_ 2.99424004428517073e+04 +Electron-electron_mean_free_path_at_point_379____________________________ (len_plasma_electron_electron_mean_free_path_profile379)_ 2.96338955622663088e+04 +Electron-electron_mean_free_path_at_point_380____________________________ (len_plasma_electron_electron_mean_free_path_profile380)_ 2.93271691446240511e+04 +Electron-electron_mean_free_path_at_point_381____________________________ (len_plasma_electron_electron_mean_free_path_profile381)_ 2.90222376894787521e+04 +Electron-electron_mean_free_path_at_point_382____________________________ (len_plasma_electron_electron_mean_free_path_profile382)_ 2.87191176853916368e+04 +Electron-electron_mean_free_path_at_point_383____________________________ (len_plasma_electron_electron_mean_free_path_profile383)_ 2.84178256111911105e+04 +Electron-electron_mean_free_path_at_point_384____________________________ (len_plasma_electron_electron_mean_free_path_profile384)_ 2.81183779373883372e+04 +Electron-electron_mean_free_path_at_point_385____________________________ (len_plasma_electron_electron_mean_free_path_profile385)_ 2.78207911277598396e+04 +Electron-electron_mean_free_path_at_point_386____________________________ (len_plasma_electron_electron_mean_free_path_profile386)_ 2.75250816411079977e+04 +Electron-electron_mean_free_path_at_point_387____________________________ (len_plasma_electron_electron_mean_free_path_profile387)_ 2.72312659332133371e+04 +Electron-electron_mean_free_path_at_point_388____________________________ (len_plasma_electron_electron_mean_free_path_profile388)_ 2.69393604589901479e+04 +Electron-electron_mean_free_path_at_point_389____________________________ (len_plasma_electron_electron_mean_free_path_profile389)_ 2.66493816748614627e+04 +Electron-electron_mean_free_path_at_point_390____________________________ (len_plasma_electron_electron_mean_free_path_profile390)_ 2.63613460413678004e+04 +Electron-electron_mean_free_path_at_point_391____________________________ (len_plasma_electron_electron_mean_free_path_profile391)_ 2.60752700260269085e+04 +Electron-electron_mean_free_path_at_point_392____________________________ (len_plasma_electron_electron_mean_free_path_profile392)_ 2.57911701064612789e+04 +Electron-electron_mean_free_path_at_point_393____________________________ (len_plasma_electron_electron_mean_free_path_profile393)_ 2.55090627738135772e+04 +Electron-electron_mean_free_path_at_point_394____________________________ (len_plasma_electron_electron_mean_free_path_profile394)_ 2.52289645364709468e+04 +Electron-electron_mean_free_path_at_point_395____________________________ (len_plasma_electron_electron_mean_free_path_profile395)_ 2.49508919241176591e+04 +Electron-electron_mean_free_path_at_point_396____________________________ (len_plasma_electron_electron_mean_free_path_profile396)_ 2.46748614921435183e+04 +Electron-electron_mean_free_path_at_point_397____________________________ (len_plasma_electron_electron_mean_free_path_profile397)_ 2.44008898264320014e+04 +Electron-electron_mean_free_path_at_point_398____________________________ (len_plasma_electron_electron_mean_free_path_profile398)_ 2.41289935485548558e+04 +Electron-electron_mean_free_path_at_point_399____________________________ (len_plasma_electron_electron_mean_free_path_profile399)_ 2.38591893214049232e+04 +Electron-electron_mean_free_path_at_point_400____________________________ (len_plasma_electron_electron_mean_free_path_profile400)_ 2.35914938552997774e+04 +Electron-electron_mean_free_path_at_point_401____________________________ (len_plasma_electron_electron_mean_free_path_profile401)_ 2.33259239145886058e+04 +Electron-electron_mean_free_path_at_point_402____________________________ (len_plasma_electron_electron_mean_free_path_profile402)_ 2.30624963248036001e+04 +Electron-electron_mean_free_path_at_point_403____________________________ (len_plasma_electron_electron_mean_free_path_profile403)_ 2.28012279803951751e+04 +Electron-electron_mean_free_path_at_point_404____________________________ (len_plasma_electron_electron_mean_free_path_profile404)_ 2.25421358530944344e+04 +Electron-electron_mean_free_path_at_point_405____________________________ (len_plasma_electron_electron_mean_free_path_profile405)_ 2.22852370009556107e+04 +Electron-electron_mean_free_path_at_point_406____________________________ (len_plasma_electron_electron_mean_free_path_profile406)_ 2.20305485781255156e+04 +Electron-electron_mean_free_path_at_point_407____________________________ (len_plasma_electron_electron_mean_free_path_profile407)_ 2.17780878454023259e+04 +Electron-electron_mean_free_path_at_point_408____________________________ (len_plasma_electron_electron_mean_free_path_profile408)_ 2.15278721816422767e+04 +Electron-electron_mean_free_path_at_point_409____________________________ (len_plasma_electron_electron_mean_free_path_profile409)_ 2.12799190960858432e+04 +Electron-electron_mean_free_path_at_point_410____________________________ (len_plasma_electron_electron_mean_free_path_profile410)_ 2.10342462416739472e+04 +Electron-electron_mean_free_path_at_point_411____________________________ (len_plasma_electron_electron_mean_free_path_profile411)_ 2.07908714294395213e+04 +Electron-electron_mean_free_path_at_point_412____________________________ (len_plasma_electron_electron_mean_free_path_profile412)_ 2.05498126440601918e+04 +Electron-electron_mean_free_path_at_point_413____________________________ (len_plasma_electron_electron_mean_free_path_profile413)_ 2.03110880606712963e+04 +Electron-electron_mean_free_path_at_point_414____________________________ (len_plasma_electron_electron_mean_free_path_profile414)_ 2.00747160630460094e+04 +Electron-electron_mean_free_path_at_point_415____________________________ (len_plasma_electron_electron_mean_free_path_profile415)_ 1.98407152632599646e+04 +Electron-electron_mean_free_path_at_point_416____________________________ (len_plasma_electron_electron_mean_free_path_profile416)_ 1.96091045229708179e+04 +Electron-electron_mean_free_path_at_point_417____________________________ (len_plasma_electron_electron_mean_free_path_profile417)_ 1.93799029764545376e+04 +Electron-electron_mean_free_path_at_point_418____________________________ (len_plasma_electron_electron_mean_free_path_profile418)_ 1.91531300555577982e+04 +Electron-electron_mean_free_path_at_point_419____________________________ (len_plasma_electron_electron_mean_free_path_profile419)_ 1.89288055167391394e+04 +Electron-electron_mean_free_path_at_point_420____________________________ (len_plasma_electron_electron_mean_free_path_profile420)_ 1.87069494703948294e+04 +Electron-electron_mean_free_path_at_point_421____________________________ (len_plasma_electron_electron_mean_free_path_profile421)_ 1.84875824126824155e+04 +Electron-electron_mean_free_path_at_point_422____________________________ (len_plasma_electron_electron_mean_free_path_profile422)_ 1.82707252600820502e+04 +Electron-electron_mean_free_path_at_point_423____________________________ (len_plasma_electron_electron_mean_free_path_profile423)_ 1.80563993869629085e+04 +Electron-electron_mean_free_path_at_point_424____________________________ (len_plasma_electron_electron_mean_free_path_profile424)_ 1.78446266664505747e+04 +Electron-electron_mean_free_path_at_point_425____________________________ (len_plasma_electron_electron_mean_free_path_profile425)_ 1.76354295149305908e+04 +Electron-electron_mean_free_path_at_point_426____________________________ (len_plasma_electron_electron_mean_free_path_profile426)_ 1.74288309405615037e+04 +Electron-electron_mean_free_path_at_point_427____________________________ (len_plasma_electron_electron_mean_free_path_profile427)_ 1.72248545962182761e+04 +Electron-electron_mean_free_path_at_point_428____________________________ (len_plasma_electron_electron_mean_free_path_profile428)_ 1.70235248373408649e+04 +Electron-electron_mean_free_path_at_point_429____________________________ (len_plasma_electron_electron_mean_free_path_profile429)_ 1.68248667852239851e+04 +Electron-electron_mean_free_path_at_point_430____________________________ (len_plasma_electron_electron_mean_free_path_profile430)_ 1.66289063963560038e+04 +Electron-electron_mean_free_path_at_point_431____________________________ (len_plasma_electron_electron_mean_free_path_profile431)_ 1.64356705384988891e+04 +Electron-electron_mean_free_path_at_point_432____________________________ (len_plasma_electron_electron_mean_free_path_profile432)_ 1.62451870742974716e+04 +Electron-electron_mean_free_path_at_point_433____________________________ (len_plasma_electron_electron_mean_free_path_profile433)_ 1.60574849533192246e+04 +Electron-electron_mean_free_path_at_point_434____________________________ (len_plasma_electron_electron_mean_free_path_profile434)_ 1.58725943135607959e+04 +Electron-electron_mean_free_path_at_point_435____________________________ (len_plasma_electron_electron_mean_free_path_profile435)_ 1.56905465936119344e+04 +Electron-electron_mean_free_path_at_point_436____________________________ (len_plasma_electron_electron_mean_free_path_profile436)_ 1.55113746568583083e+04 +Electron-electron_mean_free_path_at_point_437____________________________ (len_plasma_electron_electron_mean_free_path_profile437)_ 1.53351129293193499e+04 +Electron-electron_mean_free_path_at_point_438____________________________ (len_plasma_electron_electron_mean_free_path_profile438)_ 1.51617975529898740e+04 +Electron-electron_mean_free_path_at_point_439____________________________ (len_plasma_electron_electron_mean_free_path_profile439)_ 1.49914665568659620e+04 +Electron-electron_mean_free_path_at_point_440____________________________ (len_plasma_electron_electron_mean_free_path_profile440)_ 1.48241600482242829e+04 +Electron-electron_mean_free_path_at_point_441____________________________ (len_plasma_electron_electron_mean_free_path_profile441)_ 1.46599204271888866e+04 +Electron-electron_mean_free_path_at_point_442____________________________ (len_plasma_electron_electron_mean_free_path_profile442)_ 1.44987926281933142e+04 +Electron-electron_mean_free_path_at_point_443____________________________ (len_plasma_electron_electron_mean_free_path_profile443)_ 1.43408243926447594e+04 +Electron-electron_mean_free_path_at_point_444____________________________ (len_plasma_electron_electron_mean_free_path_profile444)_ 1.41860665779732153e+04 +Electron-electron_mean_free_path_at_point_445____________________________ (len_plasma_electron_electron_mean_free_path_profile445)_ 1.40345735093323965e+04 +Electron-electron_mean_free_path_at_point_446____________________________ (len_plasma_electron_electron_mean_free_path_profile446)_ 1.38864033815862622e+04 +Electron-electron_mean_free_path_at_point_447____________________________ (len_plasma_electron_electron_mean_free_path_profile447)_ 1.37416187209575382e+04 +Electron-electron_mean_free_path_at_point_448____________________________ (len_plasma_electron_electron_mean_free_path_profile448)_ 1.36002869179275058e+04 +Electron-electron_mean_free_path_at_point_449____________________________ (len_plasma_electron_electron_mean_free_path_profile449)_ 1.34624808458648804e+04 +Electron-electron_mean_free_path_at_point_450____________________________ (len_plasma_electron_electron_mean_free_path_profile450)_ 1.33282795836088153e+04 +Electron-electron_mean_free_path_at_point_451____________________________ (len_plasma_electron_electron_mean_free_path_profile451)_ 1.31977692652151818e+04 +Electron-electron_mean_free_path_at_point_452____________________________ (len_plasma_electron_electron_mean_free_path_profile452)_ 1.30710440867314101e+04 +Electron-electron_mean_free_path_at_point_453____________________________ (len_plasma_electron_electron_mean_free_path_profile453)_ 1.29482075089232585e+04 +Electron-electron_mean_free_path_at_point_454____________________________ (len_plasma_electron_electron_mean_free_path_profile454)_ 1.28293737073619232e+04 +Electron-electron_mean_free_path_at_point_455____________________________ (len_plasma_electron_electron_mean_free_path_profile455)_ 1.27146693388146541e+04 +Electron-electron_mean_free_path_at_point_456____________________________ (len_plasma_electron_electron_mean_free_path_profile456)_ 1.26042357179463834e+04 +Electron-electron_mean_free_path_at_point_457____________________________ (len_plasma_electron_electron_mean_free_path_profile457)_ 1.24982315349721939e+04 +Electron-electron_mean_free_path_at_point_458____________________________ (len_plasma_electron_electron_mean_free_path_profile458)_ 1.23968362997038676e+04 +Electron-electron_mean_free_path_at_point_459____________________________ (len_plasma_electron_electron_mean_free_path_profile459)_ 1.23002547817124323e+04 +Electron-electron_mean_free_path_at_point_460____________________________ (len_plasma_electron_electron_mean_free_path_profile460)_ 1.22087228500400815e+04 +Electron-electron_mean_free_path_at_point_461____________________________ (len_plasma_electron_electron_mean_free_path_profile461)_ 1.21225153358794960e+04 +Electron-electron_mean_free_path_at_point_462____________________________ (len_plasma_electron_electron_mean_free_path_profile462)_ 1.20419569193667030e+04 +Electron-electron_mean_free_path_at_point_463____________________________ (len_plasma_electron_electron_mean_free_path_profile463)_ 1.19674377241692091e+04 +Electron-electron_mean_free_path_at_point_464____________________________ (len_plasma_electron_electron_mean_free_path_profile464)_ 1.18994366160580466e+04 +Electron-electron_mean_free_path_at_point_465____________________________ (len_plasma_electron_electron_mean_free_path_profile465)_ 1.18385579296887063e+04 +Electron-electron_mean_free_path_at_point_466____________________________ (len_plasma_electron_electron_mean_free_path_profile466)_ 1.17855936176744508e+04 +Electron-electron_mean_free_path_at_point_467____________________________ (len_plasma_electron_electron_mean_free_path_profile467)_ 1.17416393301990811e+04 +Electron-electron_mean_free_path_at_point_468____________________________ (len_plasma_electron_electron_mean_free_path_profile468)_ 1.17083460140918833e+04 +Electron-electron_mean_free_path_at_point_469____________________________ (len_plasma_electron_electron_mean_free_path_profile469)_ 1.16886271531329785e+04 +Electron-electron_mean_free_path_at_point_470____________________________ (len_plasma_electron_electron_mean_free_path_profile470)_ 1.16909856444764209e+04 +Electron-electron_mean_free_path_at_point_471____________________________ (len_plasma_electron_electron_mean_free_path_profile471)_ 1.11107250181860363e+04 +Electron-electron_mean_free_path_at_point_472____________________________ (len_plasma_electron_electron_mean_free_path_profile472)_ 1.05378320941425827e+04 +Electron-electron_mean_free_path_at_point_473____________________________ (len_plasma_electron_electron_mean_free_path_profile473)_ 9.97266871933997936e+03 +Electron-electron_mean_free_path_at_point_474____________________________ (len_plasma_electron_electron_mean_free_path_profile474)_ 9.41561909467979240e+03 +Electron-electron_mean_free_path_at_point_475____________________________ (len_plasma_electron_electron_mean_free_path_profile475)_ 8.86709153856129888e+03 +Electron-electron_mean_free_path_at_point_476____________________________ (len_plasma_electron_electron_mean_free_path_profile476)_ 8.32752042401666222e+03 +Electron-electron_mean_free_path_at_point_477____________________________ (len_plasma_electron_electron_mean_free_path_profile477)_ 7.79736831051604167e+03 +Electron-electron_mean_free_path_at_point_478____________________________ (len_plasma_electron_electron_mean_free_path_profile478)_ 7.27712829476417846e+03 +Electron-electron_mean_free_path_at_point_479____________________________ (len_plasma_electron_electron_mean_free_path_profile479)_ 6.76732660862828743e+03 +Electron-electron_mean_free_path_at_point_480____________________________ (len_plasma_electron_electron_mean_free_path_profile480)_ 6.26852549692101366e+03 +Electron-electron_mean_free_path_at_point_481____________________________ (len_plasma_electron_electron_mean_free_path_profile481)_ 5.78132641331261220e+03 +Electron-electron_mean_free_path_at_point_482____________________________ (len_plasma_electron_electron_mean_free_path_profile482)_ 5.30637357943846291e+03 +Electron-electron_mean_free_path_at_point_483____________________________ (len_plasma_electron_electron_mean_free_path_profile483)_ 4.84435796066167313e+03 +Electron-electron_mean_free_path_at_point_484____________________________ (len_plasma_electron_electron_mean_free_path_profile484)_ 4.39602172246163173e+03 +Electron-electron_mean_free_path_at_point_485____________________________ (len_plasma_electron_electron_mean_free_path_profile485)_ 3.96216324477222543e+03 +Electron-electron_mean_free_path_at_point_486____________________________ (len_plasma_electron_electron_mean_free_path_profile486)_ 3.54364278883434145e+03 +Electron-electron_mean_free_path_at_point_487____________________________ (len_plasma_electron_electron_mean_free_path_profile487)_ 3.14138893382912102e+03 +Electron-electron_mean_free_path_at_point_488____________________________ (len_plasma_electron_electron_mean_free_path_profile488)_ 2.75640593111835415e+03 +Electron-electron_mean_free_path_at_point_489____________________________ (len_plasma_electron_electron_mean_free_path_profile489)_ 2.38978216613328095e+03 +Electron-electron_mean_free_path_at_point_490____________________________ (len_plasma_electron_electron_mean_free_path_profile490)_ 2.04269997804999844e+03 +Electron-electron_mean_free_path_at_point_491____________________________ (len_plasma_electron_electron_mean_free_path_profile491)_ 1.71644717598342800e+03 +Electron-electron_mean_free_path_at_point_492____________________________ (len_plasma_electron_electron_mean_free_path_profile492)_ 1.41243072650601675e+03 +Electron-electron_mean_free_path_at_point_493____________________________ (len_plasma_electron_electron_mean_free_path_profile493)_ 1.13219330658992521e+03 +Electron-electron_mean_free_path_at_point_494____________________________ (len_plasma_electron_electron_mean_free_path_profile494)_ 8.77433790331494379e+02 +Electron-electron_mean_free_path_at_point_495____________________________ (len_plasma_electron_electron_mean_free_path_profile495)_ 6.50033422301078417e+02 +Electron-electron_mean_free_path_at_point_496____________________________ (len_plasma_electron_electron_mean_free_path_profile496)_ 4.52090794330061726e+02 +Electron-electron_mean_free_path_at_point_497____________________________ (len_plasma_electron_electron_mean_free_path_profile497)_ 2.85971777663929913e+02 +Electron-electron_mean_free_path_at_point_498____________________________ (len_plasma_electron_electron_mean_free_path_profile498)_ 1.54388412543158921e+02 +Electron-electron_mean_free_path_at_point_499____________________________ (len_plasma_electron_electron_mean_free_path_profile499)_ 6.05461965974069400e+01 +Electron-electron_mean_free_path_at_point_500____________________________ (len_plasma_electron_electron_mean_free_path_profile500)_ 8.52378486584074935e+00 +Volume_averaged_electron-deuteron_mean_free_path_(λₑD)_(m)_______________ (len_plasma_electron_deuteron_mean_free_path_vol_avg)_ 5.39908225047909291e+04 +Electron-deuteron_mean_free_path_at_point_0______________________________ (len_plasma_electron_deuteron_mean_free_path_profile0)_ 1.65944356284120411e+05 +Electron-deuteron_mean_free_path_at_point_1______________________________ (len_plasma_electron_deuteron_mean_free_path_profile1)_ 1.65943014185556211e+05 +Electron-deuteron_mean_free_path_at_point_2______________________________ (len_plasma_electron_deuteron_mean_free_path_profile2)_ 1.65938987926754809e+05 +Electron-deuteron_mean_free_path_at_point_3______________________________ (len_plasma_electron_deuteron_mean_free_path_profile3)_ 1.65932277618388354e+05 +Electron-deuteron_mean_free_path_at_point_4______________________________ (len_plasma_electron_deuteron_mean_free_path_profile4)_ 1.65922883444910432e+05 +Electron-deuteron_mean_free_path_at_point_5______________________________ (len_plasma_electron_deuteron_mean_free_path_profile5)_ 1.65910805664557149e+05 +Electron-deuteron_mean_free_path_at_point_6______________________________ (len_plasma_electron_deuteron_mean_free_path_profile6)_ 1.65896044609345874e+05 +Electron-deuteron_mean_free_path_at_point_7______________________________ (len_plasma_electron_deuteron_mean_free_path_profile7)_ 1.65878600685076177e+05 +Electron-deuteron_mean_free_path_at_point_8______________________________ (len_plasma_electron_deuteron_mean_free_path_profile8)_ 1.65858474371331453e+05 +Electron-deuteron_mean_free_path_at_point_9______________________________ (len_plasma_electron_deuteron_mean_free_path_profile9)_ 1.65835666221476393e+05 +Electron-deuteron_mean_free_path_at_point_10_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile10)_ 1.65810176862660388e+05 +Electron-deuteron_mean_free_path_at_point_11_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile11)_ 1.65782006995817239e+05 +Electron-deuteron_mean_free_path_at_point_12_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile12)_ 1.65751157395663846e+05 +Electron-deuteron_mean_free_path_at_point_13_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile13)_ 1.65717628910703614e+05 +Electron-deuteron_mean_free_path_at_point_14_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile14)_ 1.65681422463225725e+05 +Electron-deuteron_mean_free_path_at_point_15_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile15)_ 1.65642539049305691e+05 +Electron-deuteron_mean_free_path_at_point_16_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile16)_ 1.65600979738807568e+05 +Electron-deuteron_mean_free_path_at_point_17_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile17)_ 1.65556745675382757e+05 +Electron-deuteron_mean_free_path_at_point_18_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile18)_ 1.65509838076472981e+05 +Electron-deuteron_mean_free_path_at_point_19_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile19)_ 1.65460258233309985e+05 +Electron-deuteron_mean_free_path_at_point_20_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile20)_ 1.65408007510916941e+05 +Electron-deuteron_mean_free_path_at_point_21_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile21)_ 1.65353087348109490e+05 +Electron-deuteron_mean_free_path_at_point_22_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile22)_ 1.65295499257497198e+05 +Electron-deuteron_mean_free_path_at_point_23_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile23)_ 1.65235244825484318e+05 +Electron-deuteron_mean_free_path_at_point_24_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile24)_ 1.65172325712271326e+05 +Electron-deuteron_mean_free_path_at_point_25_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile25)_ 1.65106743651856494e+05 +Electron-deuteron_mean_free_path_at_point_26_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile26)_ 1.65038500452035543e+05 +Electron-deuteron_mean_free_path_at_point_27_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile27)_ 1.64967597994404845e+05 +Electron-deuteron_mean_free_path_at_point_28_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile28)_ 1.64894038234363223e+05 +Electron-deuteron_mean_free_path_at_point_29_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile29)_ 1.64817823201110557e+05 +Electron-deuteron_mean_free_path_at_point_30_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile30)_ 1.64738954997652065e+05 +Electron-deuteron_mean_free_path_at_point_31_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile31)_ 1.64657435800798965e+05 +Electron-deuteron_mean_free_path_at_point_32_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile32)_ 1.64573267861168773e+05 +Electron-deuteron_mean_free_path_at_point_33_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile33)_ 1.64486453503188852e+05 +Electron-deuteron_mean_free_path_at_point_34_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile34)_ 1.64396995125096262e+05 +Electron-deuteron_mean_free_path_at_point_35_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile35)_ 1.64304895198940329e+05 +Electron-deuteron_mean_free_path_at_point_36_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile36)_ 1.64210156270583509e+05 +Electron-deuteron_mean_free_path_at_point_37_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile37)_ 1.64112780959704221e+05 +Electron-deuteron_mean_free_path_at_point_38_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile38)_ 1.64012771959797363e+05 +Electron-deuteron_mean_free_path_at_point_39_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile39)_ 1.63910132038175565e+05 +Electron-deuteron_mean_free_path_at_point_40_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile40)_ 1.63804864035971928e+05 +Electron-deuteron_mean_free_path_at_point_41_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile41)_ 1.63696970868141245e+05 +Electron-deuteron_mean_free_path_at_point_42_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile42)_ 1.63586455523462093e+05 +Electron-deuteron_mean_free_path_at_point_43_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile43)_ 1.63473321064536402e+05 +Electron-deuteron_mean_free_path_at_point_44_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile44)_ 1.63357570627794252e+05 +Electron-deuteron_mean_free_path_at_point_45_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile45)_ 1.63239207423492888e+05 +Electron-deuteron_mean_free_path_at_point_46_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile46)_ 1.63118234735719336e+05 +Electron-deuteron_mean_free_path_at_point_47_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile47)_ 1.62994655922391801e+05 +Electron-deuteron_mean_free_path_at_point_48_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile48)_ 1.62868474415261531e+05 +Electron-deuteron_mean_free_path_at_point_49_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile49)_ 1.62739693719913426e+05 +Electron-deuteron_mean_free_path_at_point_50_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile50)_ 1.62608317415768484e+05 +Electron-deuteron_mean_free_path_at_point_51_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile51)_ 1.62474349156084558e+05 +Electron-deuteron_mean_free_path_at_point_52_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile52)_ 1.62337792667957663e+05 +Electron-deuteron_mean_free_path_at_point_53_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile53)_ 1.62198651752324833e+05 +Electron-deuteron_mean_free_path_at_point_54_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile54)_ 1.62056930283962720e+05 +Electron-deuteron_mean_free_path_at_point_55_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile55)_ 1.61912632211490680e+05 +Electron-deuteron_mean_free_path_at_point_56_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile56)_ 1.61765761557372083e+05 +Electron-deuteron_mean_free_path_at_point_57_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile57)_ 1.61616322417913791e+05 +Electron-deuteron_mean_free_path_at_point_58_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile58)_ 1.61464318963269703e+05 +Electron-deuteron_mean_free_path_at_point_59_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile59)_ 1.61309755437438405e+05 +Electron-deuteron_mean_free_path_at_point_60_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile60)_ 1.61152636158266920e+05 +Electron-deuteron_mean_free_path_at_point_61_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile61)_ 1.60992965517450270e+05 +Electron-deuteron_mean_free_path_at_point_62_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile62)_ 1.60830747980531451e+05 +Electron-deuteron_mean_free_path_at_point_63_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile63)_ 1.60665988086904195e+05 +Electron-deuteron_mean_free_path_at_point_64_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile64)_ 1.60498690449810761e+05 +Electron-deuteron_mean_free_path_at_point_65_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile65)_ 1.60328859756343678e+05 +Electron-deuteron_mean_free_path_at_point_66_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile66)_ 1.60156500767446501e+05 +Electron-deuteron_mean_free_path_at_point_67_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile67)_ 1.59981618317912711e+05 +Electron-deuteron_mean_free_path_at_point_68_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile68)_ 1.59804217316386872e+05 +Electron-deuteron_mean_free_path_at_point_69_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile69)_ 1.59624302745363209e+05 +Electron-deuteron_mean_free_path_at_point_70_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile70)_ 1.59441879661185929e+05 +Electron-deuteron_mean_free_path_at_point_71_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile71)_ 1.59256953194049449e+05 +Electron-deuteron_mean_free_path_at_point_72_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile72)_ 1.59069528547996102e+05 +Electron-deuteron_mean_free_path_at_point_73_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile73)_ 1.58879611000917823e+05 +Electron-deuteron_mean_free_path_at_point_74_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile74)_ 1.58687205904553033e+05 +Electron-deuteron_mean_free_path_at_point_75_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile75)_ 1.58492318684485217e+05 +Electron-deuteron_mean_free_path_at_point_76_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile76)_ 1.58294954840145074e+05 +Electron-deuteron_mean_free_path_at_point_77_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile77)_ 1.58095119944805017e+05 +Electron-deuteron_mean_free_path_at_point_78_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile78)_ 1.57892819645579235e+05 +Electron-deuteron_mean_free_path_at_point_79_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile79)_ 1.57688059663421736e+05 +Electron-deuteron_mean_free_path_at_point_80_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile80)_ 1.57480845793125016e+05 +Electron-deuteron_mean_free_path_at_point_81_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile81)_ 1.57271183903316123e+05 +Electron-deuteron_mean_free_path_at_point_82_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile82)_ 1.57059079936454247e+05 +Electron-deuteron_mean_free_path_at_point_83_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile83)_ 1.56844539908830047e+05 +Electron-deuteron_mean_free_path_at_point_84_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile84)_ 1.56627569910560502e+05 +Electron-deuteron_mean_free_path_at_point_85_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile85)_ 1.56408176105585444e+05 +Electron-deuteron_mean_free_path_at_point_86_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile86)_ 1.56186364731665322e+05 +Electron-deuteron_mean_free_path_at_point_87_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile87)_ 1.55962142100377154e+05 +Electron-deuteron_mean_free_path_at_point_88_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile88)_ 1.55735514597109373e+05 +Electron-deuteron_mean_free_path_at_point_89_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile89)_ 1.55506488681058952e+05 +Electron-deuteron_mean_free_path_at_point_90_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile90)_ 1.55275070885224384e+05 +Electron-deuteron_mean_free_path_at_point_91_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile91)_ 1.55041267816403153e+05 +Electron-deuteron_mean_free_path_at_point_92_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile92)_ 1.54805086155185185e+05 +Electron-deuteron_mean_free_path_at_point_93_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile93)_ 1.54566532655947580e+05 +Electron-deuteron_mean_free_path_at_point_94_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile94)_ 1.54325614146847394e+05 +Electron-deuteron_mean_free_path_at_point_95_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile95)_ 1.54082337529816898e+05 +Electron-deuteron_mean_free_path_at_point_96_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile96)_ 1.53836709780556615e+05 +Electron-deuteron_mean_free_path_at_point_97_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile97)_ 1.53588737948526716e+05 +Electron-deuteron_mean_free_path_at_point_98_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile98)_ 1.53338429156941536e+05 +Electron-deuteron_mean_free_path_at_point_99_____________________________ (len_plasma_electron_deuteron_mean_free_path_profile99)_ 1.53085790602761088e+05 +Electron-deuteron_mean_free_path_at_point_100____________________________ (len_plasma_electron_deuteron_mean_free_path_profile100)_ 1.52830829556681449e+05 +Electron-deuteron_mean_free_path_at_point_101____________________________ (len_plasma_electron_deuteron_mean_free_path_profile101)_ 1.52573553363128391e+05 +Electron-deuteron_mean_free_path_at_point_102____________________________ (len_plasma_electron_deuteron_mean_free_path_profile102)_ 1.52313969440246496e+05 +Electron-deuteron_mean_free_path_at_point_103____________________________ (len_plasma_electron_deuteron_mean_free_path_profile103)_ 1.52052085279890918e+05 +Electron-deuteron_mean_free_path_at_point_104____________________________ (len_plasma_electron_deuteron_mean_free_path_profile104)_ 1.51787908447616152e+05 +Electron-deuteron_mean_free_path_at_point_105____________________________ (len_plasma_electron_deuteron_mean_free_path_profile105)_ 1.51521446582666482e+05 +Electron-deuteron_mean_free_path_at_point_106____________________________ (len_plasma_electron_deuteron_mean_free_path_profile106)_ 1.51252707397965685e+05 +Electron-deuteron_mean_free_path_at_point_107____________________________ (len_plasma_electron_deuteron_mean_free_path_profile107)_ 1.50981698680103407e+05 +Electron-deuteron_mean_free_path_at_point_108____________________________ (len_plasma_electron_deuteron_mean_free_path_profile108)_ 1.50708428289326490e+05 +Electron-deuteron_mean_free_path_at_point_109____________________________ (len_plasma_electron_deuteron_mean_free_path_profile109)_ 1.50432904159523780e+05 +Electron-deuteron_mean_free_path_at_point_110____________________________ (len_plasma_electron_deuteron_mean_free_path_profile110)_ 1.50155134298214660e+05 +Electron-deuteron_mean_free_path_at_point_111____________________________ (len_plasma_electron_deuteron_mean_free_path_profile111)_ 1.49875126786535693e+05 +Electron-deuteron_mean_free_path_at_point_112____________________________ (len_plasma_electron_deuteron_mean_free_path_profile112)_ 1.49592889779226593e+05 +Electron-deuteron_mean_free_path_at_point_113____________________________ (len_plasma_electron_deuteron_mean_free_path_profile113)_ 1.49308431504615321e+05 +Electron-deuteron_mean_free_path_at_point_114____________________________ (len_plasma_electron_deuteron_mean_free_path_profile114)_ 1.49021760264603043e+05 +Electron-deuteron_mean_free_path_at_point_115____________________________ (len_plasma_electron_deuteron_mean_free_path_profile115)_ 1.48732884434649110e+05 +Electron-deuteron_mean_free_path_at_point_116____________________________ (len_plasma_electron_deuteron_mean_free_path_profile116)_ 1.48441812463753828e+05 +Electron-deuteron_mean_free_path_at_point_117____________________________ (len_plasma_electron_deuteron_mean_free_path_profile117)_ 1.48148552874443616e+05 +Electron-deuteron_mean_free_path_at_point_118____________________________ (len_plasma_electron_deuteron_mean_free_path_profile118)_ 1.47853114262750809e+05 +Electron-deuteron_mean_free_path_at_point_119____________________________ (len_plasma_electron_deuteron_mean_free_path_profile119)_ 1.47555505298197240e+05 +Electron-deuteron_mean_free_path_at_point_120____________________________ (len_plasma_electron_deuteron_mean_free_path_profile120)_ 1.47255734723775298e+05 +Electron-deuteron_mean_free_path_at_point_121____________________________ (len_plasma_electron_deuteron_mean_free_path_profile121)_ 1.46953811355929036e+05 +Electron-deuteron_mean_free_path_at_point_122____________________________ (len_plasma_electron_deuteron_mean_free_path_profile122)_ 1.46649744084532344e+05 +Electron-deuteron_mean_free_path_at_point_123____________________________ (len_plasma_electron_deuteron_mean_free_path_profile123)_ 1.46343541872869944e+05 +Electron-deuteron_mean_free_path_at_point_124____________________________ (len_plasma_electron_deuteron_mean_free_path_profile124)_ 1.46035213757615129e+05 +Electron-deuteron_mean_free_path_at_point_125____________________________ (len_plasma_electron_deuteron_mean_free_path_profile125)_ 1.45724768848807231e+05 +Electron-deuteron_mean_free_path_at_point_126____________________________ (len_plasma_electron_deuteron_mean_free_path_profile126)_ 1.45412216329829913e+05 +Electron-deuteron_mean_free_path_at_point_127____________________________ (len_plasma_electron_deuteron_mean_free_path_profile127)_ 1.45097565457385441e+05 +Electron-deuteron_mean_free_path_at_point_128____________________________ (len_plasma_electron_deuteron_mean_free_path_profile128)_ 1.44780825561472710e+05 +Electron-deuteron_mean_free_path_at_point_129____________________________ (len_plasma_electron_deuteron_mean_free_path_profile129)_ 1.44462006045359682e+05 +Electron-deuteron_mean_free_path_at_point_130____________________________ (len_plasma_electron_deuteron_mean_free_path_profile130)_ 1.44141116385558445e+05 +Electron-deuteron_mean_free_path_at_point_131____________________________ (len_plasma_electron_deuteron_mean_free_path_profile131)_ 1.43818166131798207e+05 +Electron-deuteron_mean_free_path_at_point_132____________________________ (len_plasma_electron_deuteron_mean_free_path_profile132)_ 1.43493164906997437e+05 +Electron-deuteron_mean_free_path_at_point_133____________________________ (len_plasma_electron_deuteron_mean_free_path_profile133)_ 1.43166122407235031e+05 +Electron-deuteron_mean_free_path_at_point_134____________________________ (len_plasma_electron_deuteron_mean_free_path_profile134)_ 1.42837048401721520e+05 +Electron-deuteron_mean_free_path_at_point_135____________________________ (len_plasma_electron_deuteron_mean_free_path_profile135)_ 1.42505952732767793e+05 +Electron-deuteron_mean_free_path_at_point_136____________________________ (len_plasma_electron_deuteron_mean_free_path_profile136)_ 1.42172845315755025e+05 +Electron-deuteron_mean_free_path_at_point_137____________________________ (len_plasma_electron_deuteron_mean_free_path_profile137)_ 1.41837736139100918e+05 +Electron-deuteron_mean_free_path_at_point_138____________________________ (len_plasma_electron_deuteron_mean_free_path_profile138)_ 1.41500635264228011e+05 +Electron-deuteron_mean_free_path_at_point_139____________________________ (len_plasma_electron_deuteron_mean_free_path_profile139)_ 1.41161552825528837e+05 +Electron-deuteron_mean_free_path_at_point_140____________________________ (len_plasma_electron_deuteron_mean_free_path_profile140)_ 1.40820499030330480e+05 +Electron-deuteron_mean_free_path_at_point_141____________________________ (len_plasma_electron_deuteron_mean_free_path_profile141)_ 1.40477484158859646e+05 +Electron-deuteron_mean_free_path_at_point_142____________________________ (len_plasma_electron_deuteron_mean_free_path_profile142)_ 1.40132518564204191e+05 +Electron-deuteron_mean_free_path_at_point_143____________________________ (len_plasma_electron_deuteron_mean_free_path_profile143)_ 1.39785612672276242e+05 +Electron-deuteron_mean_free_path_at_point_144____________________________ (len_plasma_electron_deuteron_mean_free_path_profile144)_ 1.39436776981772040e+05 +Electron-deuteron_mean_free_path_at_point_145____________________________ (len_plasma_electron_deuteron_mean_free_path_profile145)_ 1.39086022064131801e+05 +Electron-deuteron_mean_free_path_at_point_146____________________________ (len_plasma_electron_deuteron_mean_free_path_profile146)_ 1.38733358563498798e+05 +Electron-deuteron_mean_free_path_at_point_147____________________________ (len_plasma_electron_deuteron_mean_free_path_profile147)_ 1.38378797196676489e+05 +Electron-deuteron_mean_free_path_at_point_148____________________________ (len_plasma_electron_deuteron_mean_free_path_profile148)_ 1.38022348753083963e+05 +Electron-deuteron_mean_free_path_at_point_149____________________________ (len_plasma_electron_deuteron_mean_free_path_profile149)_ 1.37664024094713124e+05 +Electron-deuteron_mean_free_path_at_point_150____________________________ (len_plasma_electron_deuteron_mean_free_path_profile150)_ 1.37303834156081168e+05 +Electron-deuteron_mean_free_path_at_point_151____________________________ (len_plasma_electron_deuteron_mean_free_path_profile151)_ 1.36941789944183343e+05 +Electron-deuteron_mean_free_path_at_point_152____________________________ (len_plasma_electron_deuteron_mean_free_path_profile152)_ 1.36577902538445487e+05 +Electron-deuteron_mean_free_path_at_point_153____________________________ (len_plasma_electron_deuteron_mean_free_path_profile153)_ 1.36212183090673148e+05 +Electron-deuteron_mean_free_path_at_point_154____________________________ (len_plasma_electron_deuteron_mean_free_path_profile154)_ 1.35844642825001094e+05 +Electron-deuteron_mean_free_path_at_point_155____________________________ (len_plasma_electron_deuteron_mean_free_path_profile155)_ 1.35475293037841475e+05 +Electron-deuteron_mean_free_path_at_point_156____________________________ (len_plasma_electron_deuteron_mean_free_path_profile156)_ 1.35104145097828907e+05 +Electron-deuteron_mean_free_path_at_point_157____________________________ (len_plasma_electron_deuteron_mean_free_path_profile157)_ 1.34731210445767385e+05 +Electron-deuteron_mean_free_path_at_point_158____________________________ (len_plasma_electron_deuteron_mean_free_path_profile158)_ 1.34356500594572426e+05 +Electron-deuteron_mean_free_path_at_point_159____________________________ (len_plasma_electron_deuteron_mean_free_path_profile159)_ 1.33980027129213267e+05 +Electron-deuteron_mean_free_path_at_point_160____________________________ (len_plasma_electron_deuteron_mean_free_path_profile160)_ 1.33601801706655213e+05 +Electron-deuteron_mean_free_path_at_point_161____________________________ (len_plasma_electron_deuteron_mean_free_path_profile161)_ 1.33221836055797525e+05 +Electron-deuteron_mean_free_path_at_point_162____________________________ (len_plasma_electron_deuteron_mean_free_path_profile162)_ 1.32840141977411724e+05 +Electron-deuteron_mean_free_path_at_point_163____________________________ (len_plasma_electron_deuteron_mean_free_path_profile163)_ 1.32456731344079017e+05 +Electron-deuteron_mean_free_path_at_point_164____________________________ (len_plasma_electron_deuteron_mean_free_path_profile164)_ 1.32071616100123269e+05 +Electron-deuteron_mean_free_path_at_point_165____________________________ (len_plasma_electron_deuteron_mean_free_path_profile165)_ 1.31684808261546073e+05 +Electron-deuteron_mean_free_path_at_point_166____________________________ (len_plasma_electron_deuteron_mean_free_path_profile166)_ 1.31296319915958098e+05 +Electron-deuteron_mean_free_path_at_point_167____________________________ (len_plasma_electron_deuteron_mean_free_path_profile167)_ 1.30906163222508811e+05 +Electron-deuteron_mean_free_path_at_point_168____________________________ (len_plasma_electron_deuteron_mean_free_path_profile168)_ 1.30514350411815307e+05 +Electron-deuteron_mean_free_path_at_point_169____________________________ (len_plasma_electron_deuteron_mean_free_path_profile169)_ 1.30120893785888984e+05 +Electron-deuteron_mean_free_path_at_point_170____________________________ (len_plasma_electron_deuteron_mean_free_path_profile170)_ 1.29725805718061805e+05 +Electron-deuteron_mean_free_path_at_point_171____________________________ (len_plasma_electron_deuteron_mean_free_path_profile171)_ 1.29329098652907924e+05 +Electron-deuteron_mean_free_path_at_point_172____________________________ (len_plasma_electron_deuteron_mean_free_path_profile172)_ 1.28930785106167386e+05 +Electron-deuteron_mean_free_path_at_point_173____________________________ (len_plasma_electron_deuteron_mean_free_path_profile173)_ 1.28530877664664367e+05 +Electron-deuteron_mean_free_path_at_point_174____________________________ (len_plasma_electron_deuteron_mean_free_path_profile174)_ 1.28129388986226564e+05 +Electron-deuteron_mean_free_path_at_point_175____________________________ (len_plasma_electron_deuteron_mean_free_path_profile175)_ 1.27726331799601438e+05 +Electron-deuteron_mean_free_path_at_point_176____________________________ (len_plasma_electron_deuteron_mean_free_path_profile176)_ 1.27321718904369831e+05 +Electron-deuteron_mean_free_path_at_point_177____________________________ (len_plasma_electron_deuteron_mean_free_path_profile177)_ 1.26915563170859416e+05 +Electron-deuteron_mean_free_path_at_point_178____________________________ (len_plasma_electron_deuteron_mean_free_path_profile178)_ 1.26507877540054527e+05 +Electron-deuteron_mean_free_path_at_point_179____________________________ (len_plasma_electron_deuteron_mean_free_path_profile179)_ 1.26098675023506206e+05 +Electron-deuteron_mean_free_path_at_point_180____________________________ (len_plasma_electron_deuteron_mean_free_path_profile180)_ 1.25687968703237537e+05 +Electron-deuteron_mean_free_path_at_point_181____________________________ (len_plasma_electron_deuteron_mean_free_path_profile181)_ 1.25275771731648754e+05 +Electron-deuteron_mean_free_path_at_point_182____________________________ (len_plasma_electron_deuteron_mean_free_path_profile182)_ 1.24862097331420446e+05 +Electron-deuteron_mean_free_path_at_point_183____________________________ (len_plasma_electron_deuteron_mean_free_path_profile183)_ 1.24446958795413564e+05 +Electron-deuteron_mean_free_path_at_point_184____________________________ (len_plasma_electron_deuteron_mean_free_path_profile184)_ 1.24030369486567361e+05 +Electron-deuteron_mean_free_path_at_point_185____________________________ (len_plasma_electron_deuteron_mean_free_path_profile185)_ 1.23612342837797230e+05 +Electron-deuteron_mean_free_path_at_point_186____________________________ (len_plasma_electron_deuteron_mean_free_path_profile186)_ 1.23192892351887058e+05 +Electron-deuteron_mean_free_path_at_point_187____________________________ (len_plasma_electron_deuteron_mean_free_path_profile187)_ 1.22772031601382303e+05 +Electron-deuteron_mean_free_path_at_point_188____________________________ (len_plasma_electron_deuteron_mean_free_path_profile188)_ 1.22349774228478709e+05 +Electron-deuteron_mean_free_path_at_point_189____________________________ (len_plasma_electron_deuteron_mean_free_path_profile189)_ 1.21926133944910121e+05 +Electron-deuteron_mean_free_path_at_point_190____________________________ (len_plasma_electron_deuteron_mean_free_path_profile190)_ 1.21501124531834066e+05 +Electron-deuteron_mean_free_path_at_point_191____________________________ (len_plasma_electron_deuteron_mean_free_path_profile191)_ 1.21074759839713326e+05 +Electron-deuteron_mean_free_path_at_point_192____________________________ (len_plasma_electron_deuteron_mean_free_path_profile192)_ 1.20647053788195641e+05 +Electron-deuteron_mean_free_path_at_point_193____________________________ (len_plasma_electron_deuteron_mean_free_path_profile193)_ 1.20218020365993580e+05 +Electron-deuteron_mean_free_path_at_point_194____________________________ (len_plasma_electron_deuteron_mean_free_path_profile194)_ 1.19787673630757650e+05 +Electron-deuteron_mean_free_path_at_point_195____________________________ (len_plasma_electron_deuteron_mean_free_path_profile195)_ 1.19356027708951093e+05 +Electron-deuteron_mean_free_path_at_point_196____________________________ (len_plasma_electron_deuteron_mean_free_path_profile196)_ 1.18923096795717822e+05 +Electron-deuteron_mean_free_path_at_point_197____________________________ (len_plasma_electron_deuteron_mean_free_path_profile197)_ 1.18488895154751837e+05 +Electron-deuteron_mean_free_path_at_point_198____________________________ (len_plasma_electron_deuteron_mean_free_path_profile198)_ 1.18053437118161193e+05 +Electron-deuteron_mean_free_path_at_point_199____________________________ (len_plasma_electron_deuteron_mean_free_path_profile199)_ 1.17616737086331326e+05 +Electron-deuteron_mean_free_path_at_point_200____________________________ (len_plasma_electron_deuteron_mean_free_path_profile200)_ 1.17178809527783349e+05 +Electron-deuteron_mean_free_path_at_point_201____________________________ (len_plasma_electron_deuteron_mean_free_path_profile201)_ 1.16739668979031369e+05 +Electron-deuteron_mean_free_path_at_point_202____________________________ (len_plasma_electron_deuteron_mean_free_path_profile202)_ 1.16299330044436705e+05 +Electron-deuteron_mean_free_path_at_point_203____________________________ (len_plasma_electron_deuteron_mean_free_path_profile203)_ 1.15857807396059739e+05 +Electron-deuteron_mean_free_path_at_point_204____________________________ (len_plasma_electron_deuteron_mean_free_path_profile204)_ 1.15415115773506594e+05 +Electron-deuteron_mean_free_path_at_point_205____________________________ (len_plasma_electron_deuteron_mean_free_path_profile205)_ 1.14971269983775434e+05 +Electron-deuteron_mean_free_path_at_point_206____________________________ (len_plasma_electron_deuteron_mean_free_path_profile206)_ 1.14526284901098858e+05 +Electron-deuteron_mean_free_path_at_point_207____________________________ (len_plasma_electron_deuteron_mean_free_path_profile207)_ 1.14080175466782763e+05 +Electron-deuteron_mean_free_path_at_point_208____________________________ (len_plasma_electron_deuteron_mean_free_path_profile208)_ 1.13632956689043742e+05 +Electron-deuteron_mean_free_path_at_point_209____________________________ (len_plasma_electron_deuteron_mean_free_path_profile209)_ 1.13184643642841169e+05 +Electron-deuteron_mean_free_path_at_point_210____________________________ (len_plasma_electron_deuteron_mean_free_path_profile210)_ 1.12735251469707189e+05 +Electron-deuteron_mean_free_path_at_point_211____________________________ (len_plasma_electron_deuteron_mean_free_path_profile211)_ 1.12284795377574628e+05 +Electron-deuteron_mean_free_path_at_point_212____________________________ (len_plasma_electron_deuteron_mean_free_path_profile212)_ 1.11833290640599211e+05 +Electron-deuteron_mean_free_path_at_point_213____________________________ (len_plasma_electron_deuteron_mean_free_path_profile213)_ 1.11380752598981708e+05 +Electron-deuteron_mean_free_path_at_point_214____________________________ (len_plasma_electron_deuteron_mean_free_path_profile214)_ 1.10927196658782093e+05 +Electron-deuteron_mean_free_path_at_point_215____________________________ (len_plasma_electron_deuteron_mean_free_path_profile215)_ 1.10472638291736337e+05 +Electron-deuteron_mean_free_path_at_point_216____________________________ (len_plasma_electron_deuteron_mean_free_path_profile216)_ 1.10017093035063837e+05 +Electron-deuteron_mean_free_path_at_point_217____________________________ (len_plasma_electron_deuteron_mean_free_path_profile217)_ 1.09560576491275846e+05 +Electron-deuteron_mean_free_path_at_point_218____________________________ (len_plasma_electron_deuteron_mean_free_path_profile218)_ 1.09103104327977504e+05 +Electron-deuteron_mean_free_path_at_point_219____________________________ (len_plasma_electron_deuteron_mean_free_path_profile219)_ 1.08644692277667215e+05 +Electron-deuteron_mean_free_path_at_point_220____________________________ (len_plasma_electron_deuteron_mean_free_path_profile220)_ 1.08185356137534589e+05 +Electron-deuteron_mean_free_path_at_point_221____________________________ (len_plasma_electron_deuteron_mean_free_path_profile221)_ 1.07725111769249066e+05 +Electron-deuteron_mean_free_path_at_point_222____________________________ (len_plasma_electron_deuteron_mean_free_path_profile222)_ 1.07263975098751500e+05 +Electron-deuteron_mean_free_path_at_point_223____________________________ (len_plasma_electron_deuteron_mean_free_path_profile223)_ 1.06801962116037117e+05 +Electron-deuteron_mean_free_path_at_point_224____________________________ (len_plasma_electron_deuteron_mean_free_path_profile224)_ 1.06339088874936890e+05 +Electron-deuteron_mean_free_path_at_point_225____________________________ (len_plasma_electron_deuteron_mean_free_path_profile225)_ 1.05875371492893595e+05 +Electron-deuteron_mean_free_path_at_point_226____________________________ (len_plasma_electron_deuteron_mean_free_path_profile226)_ 1.05410826150736626e+05 +Electron-deuteron_mean_free_path_at_point_227____________________________ (len_plasma_electron_deuteron_mean_free_path_profile227)_ 1.04945469092448431e+05 +Electron-deuteron_mean_free_path_at_point_228____________________________ (len_plasma_electron_deuteron_mean_free_path_profile228)_ 1.04479316624930754e+05 +Electron-deuteron_mean_free_path_at_point_229____________________________ (len_plasma_electron_deuteron_mean_free_path_profile229)_ 1.04012385117765298e+05 +Electron-deuteron_mean_free_path_at_point_230____________________________ (len_plasma_electron_deuteron_mean_free_path_profile230)_ 1.03544691002970270e+05 +Electron-deuteron_mean_free_path_at_point_231____________________________ (len_plasma_electron_deuteron_mean_free_path_profile231)_ 1.03076250774751694e+05 +Electron-deuteron_mean_free_path_at_point_232____________________________ (len_plasma_electron_deuteron_mean_free_path_profile232)_ 1.02607080989252878e+05 +Electron-deuteron_mean_free_path_at_point_233____________________________ (len_plasma_electron_deuteron_mean_free_path_profile233)_ 1.02137198264296196e+05 +Electron-deuteron_mean_free_path_at_point_234____________________________ (len_plasma_electron_deuteron_mean_free_path_profile234)_ 1.01666619279124352e+05 +Electron-deuteron_mean_free_path_at_point_235____________________________ (len_plasma_electron_deuteron_mean_free_path_profile235)_ 1.01195360774133966e+05 +Electron-deuteron_mean_free_path_at_point_236____________________________ (len_plasma_electron_deuteron_mean_free_path_profile236)_ 1.00723439550605224e+05 +Electron-deuteron_mean_free_path_at_point_237____________________________ (len_plasma_electron_deuteron_mean_free_path_profile237)_ 1.00250872470428949e+05 +Electron-deuteron_mean_free_path_at_point_238____________________________ (len_plasma_electron_deuteron_mean_free_path_profile238)_ 9.97776764558263385e+04 +Electron-deuteron_mean_free_path_at_point_239____________________________ (len_plasma_electron_deuteron_mean_free_path_profile239)_ 9.93038684890657169e+04 +Electron-deuteron_mean_free_path_at_point_240____________________________ (len_plasma_electron_deuteron_mean_free_path_profile240)_ 9.88294656121741573e+04 +Electron-deuteron_mean_free_path_at_point_241____________________________ (len_plasma_electron_deuteron_mean_free_path_profile241)_ 9.83544849266437814e+04 +Electron-deuteron_mean_free_path_at_point_242____________________________ (len_plasma_electron_deuteron_mean_free_path_profile242)_ 9.78789435931331827e+04 +Electron-deuteron_mean_free_path_at_point_243____________________________ (len_plasma_electron_deuteron_mean_free_path_profile243)_ 9.74028588311656495e+04 +Electron-deuteron_mean_free_path_at_point_244____________________________ (len_plasma_electron_deuteron_mean_free_path_profile244)_ 9.69262479188183061e+04 +Electron-deuteron_mean_free_path_at_point_245____________________________ (len_plasma_electron_deuteron_mean_free_path_profile245)_ 9.64491281924119394e+04 +Electron-deuteron_mean_free_path_at_point_246____________________________ (len_plasma_electron_deuteron_mean_free_path_profile246)_ 9.59715170461899834e+04 +Electron-deuteron_mean_free_path_at_point_247____________________________ (len_plasma_electron_deuteron_mean_free_path_profile247)_ 9.54934319319954666e+04 +Electron-deuteron_mean_free_path_at_point_248____________________________ (len_plasma_electron_deuteron_mean_free_path_profile248)_ 9.50148903589433612e+04 +Electron-deuteron_mean_free_path_at_point_249____________________________ (len_plasma_electron_deuteron_mean_free_path_profile249)_ 9.45359098930836044e+04 +Electron-deuteron_mean_free_path_at_point_250____________________________ (len_plasma_electron_deuteron_mean_free_path_profile250)_ 9.40565081570636394e+04 +Electron-deuteron_mean_free_path_at_point_251____________________________ (len_plasma_electron_deuteron_mean_free_path_profile251)_ 9.35767028297824727e+04 +Electron-deuteron_mean_free_path_at_point_252____________________________ (len_plasma_electron_deuteron_mean_free_path_profile252)_ 9.30965116460397112e+04 +Electron-deuteron_mean_free_path_at_point_253____________________________ (len_plasma_electron_deuteron_mean_free_path_profile253)_ 9.26159523961782252e+04 +Electron-deuteron_mean_free_path_at_point_254____________________________ (len_plasma_electron_deuteron_mean_free_path_profile254)_ 9.21350429257245269e+04 +Electron-deuteron_mean_free_path_at_point_255____________________________ (len_plasma_electron_deuteron_mean_free_path_profile255)_ 9.16538011350174347e+04 +Electron-deuteron_mean_free_path_at_point_256____________________________ (len_plasma_electron_deuteron_mean_free_path_profile256)_ 9.11722449788384110e+04 +Electron-deuteron_mean_free_path_at_point_257____________________________ (len_plasma_electron_deuteron_mean_free_path_profile257)_ 9.06903924660286866e+04 +Electron-deuteron_mean_free_path_at_point_258____________________________ (len_plasma_electron_deuteron_mean_free_path_profile258)_ 9.02082616591051192e+04 +Electron-deuteron_mean_free_path_at_point_259____________________________ (len_plasma_electron_deuteron_mean_free_path_profile259)_ 8.97258706738691253e+04 +Electron-deuteron_mean_free_path_at_point_260____________________________ (len_plasma_electron_deuteron_mean_free_path_profile260)_ 8.92432376790079288e+04 +Electron-deuteron_mean_free_path_at_point_261____________________________ (len_plasma_electron_deuteron_mean_free_path_profile261)_ 8.87603808956917928e+04 +Electron-deuteron_mean_free_path_at_point_262____________________________ (len_plasma_electron_deuteron_mean_free_path_profile262)_ 8.82773185971635539e+04 +Electron-deuteron_mean_free_path_at_point_263____________________________ (len_plasma_electron_deuteron_mean_free_path_profile263)_ 8.77940691083220736e+04 +Electron-deuteron_mean_free_path_at_point_264____________________________ (len_plasma_electron_deuteron_mean_free_path_profile264)_ 8.73106508053004363e+04 +Electron-deuteron_mean_free_path_at_point_265____________________________ (len_plasma_electron_deuteron_mean_free_path_profile265)_ 8.68270821150365809e+04 +Electron-deuteron_mean_free_path_at_point_266____________________________ (len_plasma_electron_deuteron_mean_free_path_profile266)_ 8.63433815148366411e+04 +Electron-deuteron_mean_free_path_at_point_267____________________________ (len_plasma_electron_deuteron_mean_free_path_profile267)_ 8.58595675319340953e+04 +Electron-deuteron_mean_free_path_at_point_268____________________________ (len_plasma_electron_deuteron_mean_free_path_profile268)_ 8.53756587430409563e+04 +Electron-deuteron_mean_free_path_at_point_269____________________________ (len_plasma_electron_deuteron_mean_free_path_profile269)_ 8.48916737738918600e+04 +Electron-deuteron_mean_free_path_at_point_270____________________________ (len_plasma_electron_deuteron_mean_free_path_profile270)_ 8.44076312987815763e+04 +Electron-deuteron_mean_free_path_at_point_271____________________________ (len_plasma_electron_deuteron_mean_free_path_profile271)_ 8.39235500400968886e+04 +Electron-deuteron_mean_free_path_at_point_272____________________________ (len_plasma_electron_deuteron_mean_free_path_profile272)_ 8.34394487678393634e+04 +Electron-deuteron_mean_free_path_at_point_273____________________________ (len_plasma_electron_deuteron_mean_free_path_profile273)_ 8.29553462991434499e+04 +Electron-deuteron_mean_free_path_at_point_274____________________________ (len_plasma_electron_deuteron_mean_free_path_profile274)_ 8.24712614977866033e+04 +Electron-deuteron_mean_free_path_at_point_275____________________________ (len_plasma_electron_deuteron_mean_free_path_profile275)_ 8.19872132736907224e+04 +Electron-deuteron_mean_free_path_at_point_276____________________________ (len_plasma_electron_deuteron_mean_free_path_profile276)_ 8.15032205824205303e+04 +Electron-deuteron_mean_free_path_at_point_277____________________________ (len_plasma_electron_deuteron_mean_free_path_profile277)_ 8.10193024246698187e+04 +Electron-deuteron_mean_free_path_at_point_278____________________________ (len_plasma_electron_deuteron_mean_free_path_profile278)_ 8.05354778457430511e+04 +Electron-deuteron_mean_free_path_at_point_279____________________________ (len_plasma_electron_deuteron_mean_free_path_profile279)_ 8.00517659350311151e+04 +Electron-deuteron_mean_free_path_at_point_280____________________________ (len_plasma_electron_deuteron_mean_free_path_profile280)_ 7.95681858254760737e+04 +Electron-deuteron_mean_free_path_at_point_281____________________________ (len_plasma_electron_deuteron_mean_free_path_profile281)_ 7.90847566930306348e+04 +Electron-deuteron_mean_free_path_at_point_282____________________________ (len_plasma_electron_deuteron_mean_free_path_profile282)_ 7.86014977561098349e+04 +Electron-deuteron_mean_free_path_at_point_283____________________________ (len_plasma_electron_deuteron_mean_free_path_profile283)_ 7.81184282750358689e+04 +Electron-deuteron_mean_free_path_at_point_284____________________________ (len_plasma_electron_deuteron_mean_free_path_profile284)_ 7.76355675514730683e+04 +Electron-deuteron_mean_free_path_at_point_285____________________________ (len_plasma_electron_deuteron_mean_free_path_profile285)_ 7.71529349278578302e+04 +Electron-deuteron_mean_free_path_at_point_286____________________________ (len_plasma_electron_deuteron_mean_free_path_profile286)_ 7.66705497868185048e+04 +Electron-deuteron_mean_free_path_at_point_287____________________________ (len_plasma_electron_deuteron_mean_free_path_profile287)_ 7.61884315505896520e+04 +Electron-deuteron_mean_free_path_at_point_288____________________________ (len_plasma_electron_deuteron_mean_free_path_profile288)_ 7.57065996804169408e+04 +Electron-deuteron_mean_free_path_at_point_289____________________________ (len_plasma_electron_deuteron_mean_free_path_profile289)_ 7.52250736759546708e+04 +Electron-deuteron_mean_free_path_at_point_290____________________________ (len_plasma_electron_deuteron_mean_free_path_profile290)_ 7.47438730746551591e+04 +Electron-deuteron_mean_free_path_at_point_291____________________________ (len_plasma_electron_deuteron_mean_free_path_profile291)_ 7.42630174511513760e+04 +Electron-deuteron_mean_free_path_at_point_292____________________________ (len_plasma_electron_deuteron_mean_free_path_profile292)_ 7.37825264166296110e+04 +Electron-deuteron_mean_free_path_at_point_293____________________________ (len_plasma_electron_deuteron_mean_free_path_profile293)_ 7.33024196181958978e+04 +Electron-deuteron_mean_free_path_at_point_294____________________________ (len_plasma_electron_deuteron_mean_free_path_profile294)_ 7.28227167382327461e+04 +Electron-deuteron_mean_free_path_at_point_295____________________________ (len_plasma_electron_deuteron_mean_free_path_profile295)_ 7.23434374937499961e+04 +Electron-deuteron_mean_free_path_at_point_296____________________________ (len_plasma_electron_deuteron_mean_free_path_profile296)_ 7.18646016357254557e+04 +Electron-deuteron_mean_free_path_at_point_297____________________________ (len_plasma_electron_deuteron_mean_free_path_profile297)_ 7.13862289484389912e+04 +Electron-deuteron_mean_free_path_at_point_298____________________________ (len_plasma_electron_deuteron_mean_free_path_profile298)_ 7.09083392487970123e+04 +Electron-deuteron_mean_free_path_at_point_299____________________________ (len_plasma_electron_deuteron_mean_free_path_profile299)_ 7.04309523856499582e+04 +Electron-deuteron_mean_free_path_at_point_300____________________________ (len_plasma_electron_deuteron_mean_free_path_profile300)_ 6.99540882391019841e+04 +Electron-deuteron_mean_free_path_at_point_301____________________________ (len_plasma_electron_deuteron_mean_free_path_profile301)_ 6.94777667198110430e+04 +Electron-deuteron_mean_free_path_at_point_302____________________________ (len_plasma_electron_deuteron_mean_free_path_profile302)_ 6.90020077682822448e+04 +Electron-deuteron_mean_free_path_at_point_303____________________________ (len_plasma_electron_deuteron_mean_free_path_profile303)_ 6.85268313541516400e+04 +Electron-deuteron_mean_free_path_at_point_304____________________________ (len_plasma_electron_deuteron_mean_free_path_profile304)_ 6.80522574754648813e+04 +Electron-deuteron_mean_free_path_at_point_305____________________________ (len_plasma_electron_deuteron_mean_free_path_profile305)_ 6.75783061579428759e+04 +Electron-deuteron_mean_free_path_at_point_306____________________________ (len_plasma_electron_deuteron_mean_free_path_profile306)_ 6.71049974542448326e+04 +Electron-deuteron_mean_free_path_at_point_307____________________________ (len_plasma_electron_deuteron_mean_free_path_profile307)_ 6.66323514432195516e+04 +Electron-deuteron_mean_free_path_at_point_308____________________________ (len_plasma_electron_deuteron_mean_free_path_profile308)_ 6.61603882291502232e+04 +Electron-deuteron_mean_free_path_at_point_309____________________________ (len_plasma_electron_deuteron_mean_free_path_profile309)_ 6.56891279409913404e+04 +Electron-deuteron_mean_free_path_at_point_310____________________________ (len_plasma_electron_deuteron_mean_free_path_profile310)_ 6.52185907315967779e+04 +Electron-deuteron_mean_free_path_at_point_311____________________________ (len_plasma_electron_deuteron_mean_free_path_profile311)_ 6.47487967769423922e+04 +Electron-deuteron_mean_free_path_at_point_312____________________________ (len_plasma_electron_deuteron_mean_free_path_profile312)_ 6.42797662753377954e+04 +Electron-deuteron_mean_free_path_at_point_313____________________________ (len_plasma_electron_deuteron_mean_free_path_profile313)_ 6.38115194466336907e+04 +Electron-deuteron_mean_free_path_at_point_314____________________________ (len_plasma_electron_deuteron_mean_free_path_profile314)_ 6.33440765314192395e+04 +Electron-deuteron_mean_free_path_at_point_315____________________________ (len_plasma_electron_deuteron_mean_free_path_profile315)_ 6.28774577902139717e+04 +Electron-deuteron_mean_free_path_at_point_316____________________________ (len_plasma_electron_deuteron_mean_free_path_profile316)_ 6.24116835026505942e+04 +Electron-deuteron_mean_free_path_at_point_317____________________________ (len_plasma_electron_deuteron_mean_free_path_profile317)_ 6.19467739666526977e+04 +Electron-deuteron_mean_free_path_at_point_318____________________________ (len_plasma_electron_deuteron_mean_free_path_profile318)_ 6.14827494976046437e+04 +Electron-deuteron_mean_free_path_at_point_319____________________________ (len_plasma_electron_deuteron_mean_free_path_profile319)_ 6.10196304275134753e+04 +Electron-deuteron_mean_free_path_at_point_320____________________________ (len_plasma_electron_deuteron_mean_free_path_profile320)_ 6.05574371041675331e+04 +Electron-deuteron_mean_free_path_at_point_321____________________________ (len_plasma_electron_deuteron_mean_free_path_profile321)_ 6.00961898902837784e+04 +Electron-deuteron_mean_free_path_at_point_322____________________________ (len_plasma_electron_deuteron_mean_free_path_profile322)_ 5.96359091626549998e+04 +Electron-deuteron_mean_free_path_at_point_323____________________________ (len_plasma_electron_deuteron_mean_free_path_profile323)_ 5.91766153112854445e+04 +Electron-deuteron_mean_free_path_at_point_324____________________________ (len_plasma_electron_deuteron_mean_free_path_profile324)_ 5.87183287385247386e+04 +Electron-deuteron_mean_free_path_at_point_325____________________________ (len_plasma_electron_deuteron_mean_free_path_profile325)_ 5.82610698581943579e+04 +Electron-deuteron_mean_free_path_at_point_326____________________________ (len_plasma_electron_deuteron_mean_free_path_profile326)_ 5.78048590947100238e+04 +Electron-deuteron_mean_free_path_at_point_327____________________________ (len_plasma_electron_deuteron_mean_free_path_profile327)_ 5.73497168821988671e+04 +Electron-deuteron_mean_free_path_at_point_328____________________________ (len_plasma_electron_deuteron_mean_free_path_profile328)_ 5.68956636636120893e+04 +Electron-deuteron_mean_free_path_at_point_329____________________________ (len_plasma_electron_deuteron_mean_free_path_profile329)_ 5.64427198898351417e+04 +Electron-deuteron_mean_free_path_at_point_330____________________________ (len_plasma_electron_deuteron_mean_free_path_profile330)_ 5.59909060187911382e+04 +Electron-deuteron_mean_free_path_at_point_331____________________________ (len_plasma_electron_deuteron_mean_free_path_profile331)_ 5.55402425145444504e+04 +Electron-deuteron_mean_free_path_at_point_332____________________________ (len_plasma_electron_deuteron_mean_free_path_profile332)_ 5.50907498463997108e+04 +Electron-deuteron_mean_free_path_at_point_333____________________________ (len_plasma_electron_deuteron_mean_free_path_profile333)_ 5.46424484879982047e+04 +Electron-deuteron_mean_free_path_at_point_334____________________________ (len_plasma_electron_deuteron_mean_free_path_profile334)_ 5.41953589164152509e+04 +Electron-deuteron_mean_free_path_at_point_335____________________________ (len_plasma_electron_deuteron_mean_free_path_profile335)_ 5.37495016112520025e+04 +Electron-deuteron_mean_free_path_at_point_336____________________________ (len_plasma_electron_deuteron_mean_free_path_profile336)_ 5.33048970537313944e+04 +Electron-deuteron_mean_free_path_at_point_337____________________________ (len_plasma_electron_deuteron_mean_free_path_profile337)_ 5.28615657257906714e+04 +Electron-deuteron_mean_free_path_at_point_338____________________________ (len_plasma_electron_deuteron_mean_free_path_profile338)_ 5.24195281091768338e+04 +Electron-deuteron_mean_free_path_at_point_339____________________________ (len_plasma_electron_deuteron_mean_free_path_profile339)_ 5.19788046845424324e+04 +Electron-deuteron_mean_free_path_at_point_340____________________________ (len_plasma_electron_deuteron_mean_free_path_profile340)_ 5.15394159305439534e+04 +Electron-deuteron_mean_free_path_at_point_341____________________________ (len_plasma_electron_deuteron_mean_free_path_profile341)_ 5.11013823229438640e+04 +Electron-deuteron_mean_free_path_at_point_342____________________________ (len_plasma_electron_deuteron_mean_free_path_profile342)_ 5.06647243337160398e+04 +Electron-deuteron_mean_free_path_at_point_343____________________________ (len_plasma_electron_deuteron_mean_free_path_profile343)_ 5.02294624301555159e+04 +Electron-deuteron_mean_free_path_at_point_344____________________________ (len_plasma_electron_deuteron_mean_free_path_profile344)_ 4.97956170739968875e+04 +Electron-deuteron_mean_free_path_at_point_345____________________________ (len_plasma_electron_deuteron_mean_free_path_profile345)_ 4.93632087205360513e+04 +Electron-deuteron_mean_free_path_at_point_346____________________________ (len_plasma_electron_deuteron_mean_free_path_profile346)_ 4.89322578177619725e+04 +Electron-deuteron_mean_free_path_at_point_347____________________________ (len_plasma_electron_deuteron_mean_free_path_profile347)_ 4.85027848054990754e+04 +Electron-deuteron_mean_free_path_at_point_348____________________________ (len_plasma_electron_deuteron_mean_free_path_profile348)_ 4.80748101145574328e+04 +Electron-deuteron_mean_free_path_at_point_349____________________________ (len_plasma_electron_deuteron_mean_free_path_profile349)_ 4.76483541658974063e+04 +Electron-deuteron_mean_free_path_at_point_350____________________________ (len_plasma_electron_deuteron_mean_free_path_profile350)_ 4.72234373698057461e+04 +Electron-deuteron_mean_free_path_at_point_351____________________________ (len_plasma_electron_deuteron_mean_free_path_profile351)_ 4.68000801250887671e+04 +Electron-deuteron_mean_free_path_at_point_352____________________________ (len_plasma_electron_deuteron_mean_free_path_profile352)_ 4.63783028182798516e+04 +Electron-deuteron_mean_free_path_at_point_353____________________________ (len_plasma_electron_deuteron_mean_free_path_profile353)_ 4.59581258228676670e+04 +Electron-deuteron_mean_free_path_at_point_354____________________________ (len_plasma_electron_deuteron_mean_free_path_profile354)_ 4.55395694985421724e+04 +Electron-deuteron_mean_free_path_at_point_355____________________________ (len_plasma_electron_deuteron_mean_free_path_profile355)_ 4.51226541904650294e+04 +Electron-deuteron_mean_free_path_at_point_356____________________________ (len_plasma_electron_deuteron_mean_free_path_profile356)_ 4.47074002285626557e+04 +Electron-deuteron_mean_free_path_at_point_357____________________________ (len_plasma_electron_deuteron_mean_free_path_profile357)_ 4.42938279268465922e+04 +Electron-deuteron_mean_free_path_at_point_358____________________________ (len_plasma_electron_deuteron_mean_free_path_profile358)_ 4.38819575827624285e+04 +Electron-deuteron_mean_free_path_at_point_359____________________________ (len_plasma_electron_deuteron_mean_free_path_profile359)_ 4.34718094765700225e+04 +Electron-deuteron_mean_free_path_at_point_360____________________________ (len_plasma_electron_deuteron_mean_free_path_profile360)_ 4.30634038707574218e+04 +Electron-deuteron_mean_free_path_at_point_361____________________________ (len_plasma_electron_deuteron_mean_free_path_profile361)_ 4.26567610094933843e+04 +Electron-deuteron_mean_free_path_at_point_362____________________________ (len_plasma_electron_deuteron_mean_free_path_profile362)_ 4.22519011181161040e+04 +Electron-deuteron_mean_free_path_at_point_363____________________________ (len_plasma_electron_deuteron_mean_free_path_profile363)_ 4.18488444026691213e+04 +Electron-deuteron_mean_free_path_at_point_364____________________________ (len_plasma_electron_deuteron_mean_free_path_profile364)_ 4.14476110494806708e+04 +Electron-deuteron_mean_free_path_at_point_365____________________________ (len_plasma_electron_deuteron_mean_free_path_profile365)_ 4.10482212247949938e+04 +Electron-deuteron_mean_free_path_at_point_366____________________________ (len_plasma_electron_deuteron_mean_free_path_profile366)_ 4.06506950744560672e+04 +Electron-deuteron_mean_free_path_at_point_367____________________________ (len_plasma_electron_deuteron_mean_free_path_profile367)_ 4.02550527236499620e+04 +Electron-deuteron_mean_free_path_at_point_368____________________________ (len_plasma_electron_deuteron_mean_free_path_profile368)_ 3.98613142767100435e+04 +Electron-deuteron_mean_free_path_at_point_369____________________________ (len_plasma_electron_deuteron_mean_free_path_profile369)_ 3.94694998169887040e+04 +Electron-deuteron_mean_free_path_at_point_370____________________________ (len_plasma_electron_deuteron_mean_free_path_profile370)_ 3.90796294068005373e+04 +Electron-deuteron_mean_free_path_at_point_371____________________________ (len_plasma_electron_deuteron_mean_free_path_profile371)_ 3.86917230874439629e+04 +Electron-deuteron_mean_free_path_at_point_372____________________________ (len_plasma_electron_deuteron_mean_free_path_profile372)_ 3.83058008793040572e+04 +Electron-deuteron_mean_free_path_at_point_373____________________________ (len_plasma_electron_deuteron_mean_free_path_profile373)_ 3.79218827820458901e+04 +Electron-deuteron_mean_free_path_at_point_374____________________________ (len_plasma_electron_deuteron_mean_free_path_profile374)_ 3.75399887749014597e+04 +Electron-deuteron_mean_free_path_at_point_375____________________________ (len_plasma_electron_deuteron_mean_free_path_profile375)_ 3.71601388170585415e+04 +Electron-deuteron_mean_free_path_at_point_376____________________________ (len_plasma_electron_deuteron_mean_free_path_profile376)_ 3.67823528481611938e+04 +Electron-deuteron_mean_free_path_at_point_377____________________________ (len_plasma_electron_deuteron_mean_free_path_profile377)_ 3.64066507889226268e+04 +Electron-deuteron_mean_free_path_at_point_378____________________________ (len_plasma_electron_deuteron_mean_free_path_profile378)_ 3.60330525418672769e+04 +Electron-deuteron_mean_free_path_at_point_379____________________________ (len_plasma_electron_deuteron_mean_free_path_profile379)_ 3.56615779922043075e+04 +Electron-deuteron_mean_free_path_at_point_380____________________________ (len_plasma_electron_deuteron_mean_free_path_profile380)_ 3.52922470088450937e+04 +Electron-deuteron_mean_free_path_at_point_381____________________________ (len_plasma_electron_deuteron_mean_free_path_profile381)_ 3.49250794455739888e+04 +Electron-deuteron_mean_free_path_at_point_382____________________________ (len_plasma_electron_deuteron_mean_free_path_profile382)_ 3.45600951423826991e+04 +Electron-deuteron_mean_free_path_at_point_383____________________________ (len_plasma_electron_deuteron_mean_free_path_profile383)_ 3.41973139269800595e+04 +Electron-deuteron_mean_free_path_at_point_384____________________________ (len_plasma_electron_deuteron_mean_free_path_profile384)_ 3.38367556164894704e+04 +Electron-deuteron_mean_free_path_at_point_385____________________________ (len_plasma_electron_deuteron_mean_free_path_profile385)_ 3.34784400193473775e+04 +Electron-deuteron_mean_free_path_at_point_386____________________________ (len_plasma_electron_deuteron_mean_free_path_profile386)_ 3.31223869374155256e+04 +Electron-deuteron_mean_free_path_at_point_387____________________________ (len_plasma_electron_deuteron_mean_free_path_profile387)_ 3.27686161683244791e+04 +Electron-deuteron_mean_free_path_at_point_388____________________________ (len_plasma_electron_deuteron_mean_free_path_profile388)_ 3.24171475080614728e+04 +Electron-deuteron_mean_free_path_at_point_389____________________________ (len_plasma_electron_deuteron_mean_free_path_profile389)_ 3.20680007538223981e+04 +Electron-deuteron_mean_free_path_at_point_390____________________________ (len_plasma_electron_deuteron_mean_free_path_profile390)_ 3.17211957071451325e+04 +Electron-deuteron_mean_free_path_at_point_391____________________________ (len_plasma_electron_deuteron_mean_free_path_profile391)_ 3.13767521773448461e+04 +Electron-deuteron_mean_free_path_at_point_392____________________________ (len_plasma_electron_deuteron_mean_free_path_profile392)_ 3.10346899852715760e+04 +Electron-deuteron_mean_free_path_at_point_393____________________________ (len_plasma_electron_deuteron_mean_free_path_profile393)_ 3.06950289674144697e+04 +Electron-deuteron_mean_free_path_at_point_394____________________________ (len_plasma_electron_deuteron_mean_free_path_profile394)_ 3.03577889803774669e+04 +Electron-deuteron_mean_free_path_at_point_395____________________________ (len_plasma_electron_deuteron_mean_free_path_profile395)_ 3.00229899057503499e+04 +Electron-deuteron_mean_free_path_at_point_396____________________________ (len_plasma_electron_deuteron_mean_free_path_profile396)_ 2.96906516554078662e+04 +Electron-deuteron_mean_free_path_at_point_397____________________________ (len_plasma_electron_deuteron_mean_free_path_profile397)_ 2.93607941772658232e+04 +Electron-deuteron_mean_free_path_at_point_398____________________________ (len_plasma_electron_deuteron_mean_free_path_profile398)_ 2.90334374615264423e+04 +Electron-deuteron_mean_free_path_at_point_399____________________________ (len_plasma_electron_deuteron_mean_free_path_profile399)_ 2.87086015474509695e+04 +Electron-deuteron_mean_free_path_at_point_400____________________________ (len_plasma_electron_deuteron_mean_free_path_profile400)_ 2.83863065306990393e+04 +Electron-deuteron_mean_free_path_at_point_401____________________________ (len_plasma_electron_deuteron_mean_free_path_profile401)_ 2.80665725712736094e+04 +Electron-deuteron_mean_free_path_at_point_402____________________________ (len_plasma_electron_deuteron_mean_free_path_profile402)_ 2.77494199021211825e+04 +Electron-deuteron_mean_free_path_at_point_403____________________________ (len_plasma_electron_deuteron_mean_free_path_profile403)_ 2.74348688384347952e+04 +Electron-deuteron_mean_free_path_at_point_404____________________________ (len_plasma_electron_deuteron_mean_free_path_profile404)_ 2.71229397877116971e+04 +Electron-deuteron_mean_free_path_at_point_405____________________________ (len_plasma_electron_deuteron_mean_free_path_profile405)_ 2.68136532606295077e+04 +Electron-deuteron_mean_free_path_at_point_406____________________________ (len_plasma_electron_deuteron_mean_free_path_profile406)_ 2.65070298827972583e+04 +Electron-deuteron_mean_free_path_at_point_407____________________________ (len_plasma_electron_deuteron_mean_free_path_profile407)_ 2.62030904074564605e+04 +Electron-deuteron_mean_free_path_at_point_408____________________________ (len_plasma_electron_deuteron_mean_free_path_profile408)_ 2.59018557292024707e+04 +Electron-deuteron_mean_free_path_at_point_409____________________________ (len_plasma_electron_deuteron_mean_free_path_profile409)_ 2.56033468988126042e+04 +Electron-deuteron_mean_free_path_at_point_410____________________________ (len_plasma_electron_deuteron_mean_free_path_profile410)_ 2.53075851392656841e+04 +Electron-deuteron_mean_free_path_at_point_411____________________________ (len_plasma_electron_deuteron_mean_free_path_profile411)_ 2.50145918630556880e+04 +Electron-deuteron_mean_free_path_at_point_412____________________________ (len_plasma_electron_deuteron_mean_free_path_profile412)_ 2.47243886909028624e+04 +Electron-deuteron_mean_free_path_at_point_413____________________________ (len_plasma_electron_deuteron_mean_free_path_profile413)_ 2.44369974719816128e+04 +Electron-deuteron_mean_free_path_at_point_414____________________________ (len_plasma_electron_deuteron_mean_free_path_profile414)_ 2.41524403057936324e+04 +Electron-deuteron_mean_free_path_at_point_415____________________________ (len_plasma_electron_deuteron_mean_free_path_profile415)_ 2.38707395658276691e+04 +Electron-deuteron_mean_free_path_at_point_416____________________________ (len_plasma_electron_deuteron_mean_free_path_profile416)_ 2.35919179251627866e+04 +Electron-deuteron_mean_free_path_at_point_417____________________________ (len_plasma_electron_deuteron_mean_free_path_profile417)_ 2.33159983841857975e+04 +Electron-deuteron_mean_free_path_at_point_418____________________________ (len_plasma_electron_deuteron_mean_free_path_profile418)_ 2.30430043006147062e+04 +Electron-deuteron_mean_free_path_at_point_419____________________________ (len_plasma_electron_deuteron_mean_free_path_profile419)_ 2.27729594220359722e+04 +Electron-deuteron_mean_free_path_at_point_420____________________________ (len_plasma_electron_deuteron_mean_free_path_profile420)_ 2.25058879211912172e+04 +Electron-deuteron_mean_free_path_at_point_421____________________________ (len_plasma_electron_deuteron_mean_free_path_profile421)_ 2.22418144342699634e+04 +Electron-deuteron_mean_free_path_at_point_422____________________________ (len_plasma_electron_deuteron_mean_free_path_profile422)_ 2.19807641024972072e+04 +Electron-deuteron_mean_free_path_at_point_423____________________________ (len_plasma_electron_deuteron_mean_free_path_profile423)_ 2.17227626173374338e+04 +Electron-deuteron_mean_free_path_at_point_424____________________________ (len_plasma_electron_deuteron_mean_free_path_profile424)_ 2.14678362696713193e+04 +Electron-deuteron_mean_free_path_at_point_425____________________________ (len_plasma_electron_deuteron_mean_free_path_profile425)_ 2.12160120033484600e+04 +Electron-deuteron_mean_free_path_at_point_426____________________________ (len_plasma_electron_deuteron_mean_free_path_profile426)_ 2.09673174735653811e+04 +Electron-deuteron_mean_free_path_at_point_427____________________________ (len_plasma_electron_deuteron_mean_free_path_profile427)_ 2.07217811105753317e+04 +Electron-deuteron_mean_free_path_at_point_428____________________________ (len_plasma_electron_deuteron_mean_free_path_profile428)_ 2.04794321893013512e+04 +Electron-deuteron_mean_free_path_at_point_429____________________________ (len_plasma_electron_deuteron_mean_free_path_profile429)_ 2.02403009054975810e+04 +Electron-deuteron_mean_free_path_at_point_430____________________________ (len_plasma_electron_deuteron_mean_free_path_profile430)_ 2.00044184591905469e+04 +Electron-deuteron_mean_free_path_at_point_431____________________________ (len_plasma_electron_deuteron_mean_free_path_profile431)_ 1.97718171462330392e+04 +Electron-deuteron_mean_free_path_at_point_432____________________________ (len_plasma_electron_deuteron_mean_free_path_profile432)_ 1.95425304589194020e+04 +Electron-deuteron_mean_free_path_at_point_433____________________________ (len_plasma_electron_deuteron_mean_free_path_profile433)_ 1.93165931967464749e+04 +Electron-deuteron_mean_free_path_at_point_434____________________________ (len_plasma_electron_deuteron_mean_free_path_profile434)_ 1.90940415885676521e+04 +Electron-deuteron_mean_free_path_at_point_435____________________________ (len_plasma_electron_deuteron_mean_free_path_profile435)_ 1.88749134275728284e+04 +Electron-deuteron_mean_free_path_at_point_436____________________________ (len_plasma_electron_deuteron_mean_free_path_profile436)_ 1.86592482207564863e+04 +Electron-deuteron_mean_free_path_at_point_437____________________________ (len_plasma_electron_deuteron_mean_free_path_profile437)_ 1.84470873547954980e+04 +Electron-deuteron_mean_free_path_at_point_438____________________________ (len_plasma_electron_deuteron_mean_free_path_profile438)_ 1.82384742805850183e+04 +Electron-deuteron_mean_free_path_at_point_439____________________________ (len_plasma_electron_deuteron_mean_free_path_profile439)_ 1.80334547190569538e+04 +Electron-deuteron_mean_free_path_at_point_440____________________________ (len_plasma_electron_deuteron_mean_free_path_profile440)_ 1.78320768913729080e+04 +Electron-deuteron_mean_free_path_at_point_441____________________________ (len_plasma_electron_deuteron_mean_free_path_profile441)_ 1.76343917771428933e+04 +Electron-deuteron_mean_free_path_at_point_442____________________________ (len_plasma_electron_deuteron_mean_free_path_profile442)_ 1.74404534050119073e+04 +Electron-deuteron_mean_free_path_at_point_443____________________________ (len_plasma_electron_deuteron_mean_free_path_profile443)_ 1.72503191807973344e+04 +Electron-deuteron_mean_free_path_at_point_444____________________________ (len_plasma_electron_deuteron_mean_free_path_profile444)_ 1.70640502594148493e+04 +Electron-deuteron_mean_free_path_at_point_445____________________________ (len_plasma_electron_deuteron_mean_free_path_profile445)_ 1.68817119681345685e+04 +Electron-deuteron_mean_free_path_at_point_446____________________________ (len_plasma_electron_deuteron_mean_free_path_profile446)_ 1.67033742903550410e+04 +Electron-deuteron_mean_free_path_at_point_447____________________________ (len_plasma_electron_deuteron_mean_free_path_profile447)_ 1.65291124211788010e+04 +Electron-deuteron_mean_free_path_at_point_448____________________________ (len_plasma_electron_deuteron_mean_free_path_profile448)_ 1.63590074087376379e+04 +Electron-deuteron_mean_free_path_at_point_449____________________________ (len_plasma_electron_deuteron_mean_free_path_profile449)_ 1.61931468986909749e+04 +Electron-deuteron_mean_free_path_at_point_450____________________________ (len_plasma_electron_deuteron_mean_free_path_profile450)_ 1.60316260038309938e+04 +Electron-deuteron_mean_free_path_at_point_451____________________________ (len_plasma_electron_deuteron_mean_free_path_profile451)_ 1.58745483267265863e+04 +Electron-deuteron_mean_free_path_at_point_452____________________________ (len_plasma_electron_deuteron_mean_free_path_profile452)_ 1.57220271713482398e+04 +Electron-deuteron_mean_free_path_at_point_453____________________________ (len_plasma_electron_deuteron_mean_free_path_profile453)_ 1.55741869905179246e+04 +Electron-deuteron_mean_free_path_at_point_454____________________________ (len_plasma_electron_deuteron_mean_free_path_profile454)_ 1.54311651310530760e+04 +Electron-deuteron_mean_free_path_at_point_455____________________________ (len_plasma_electron_deuteron_mean_free_path_profile455)_ 1.52931139595768727e+04 +Electron-deuteron_mean_free_path_at_point_456____________________________ (len_plasma_electron_deuteron_mean_free_path_profile456)_ 1.51602034821316865e+04 +Electron-deuteron_mean_free_path_at_point_457____________________________ (len_plasma_electron_deuteron_mean_free_path_profile457)_ 1.50326246148188366e+04 +Electron-deuteron_mean_free_path_at_point_458____________________________ (len_plasma_electron_deuteron_mean_free_path_profile458)_ 1.49105933286430463e+04 +Electron-deuteron_mean_free_path_at_point_459____________________________ (len_plasma_electron_deuteron_mean_free_path_profile459)_ 1.47943559931683958e+04 +Electron-deuteron_mean_free_path_at_point_460____________________________ (len_plasma_electron_deuteron_mean_free_path_profile460)_ 1.46841964045118712e+04 +Electron-deuteron_mean_free_path_at_point_461____________________________ (len_plasma_electron_deuteron_mean_free_path_profile461)_ 1.45804452479495158e+04 +Electron-deuteron_mean_free_path_at_point_462____________________________ (len_plasma_electron_deuteron_mean_free_path_profile462)_ 1.44834931999997243e+04 +Electron-deuteron_mean_free_path_at_point_463____________________________ (len_plasma_electron_deuteron_mean_free_path_profile463)_ 1.43938096962692161e+04 +Electron-deuteron_mean_free_path_at_point_464____________________________ (len_plasma_electron_deuteron_mean_free_path_profile464)_ 1.43119709709285817e+04 +Electron-deuteron_mean_free_path_at_point_465____________________________ (len_plasma_electron_deuteron_mean_free_path_profile465)_ 1.42387042568301786e+04 +Electron-deuteron_mean_free_path_at_point_466____________________________ (len_plasma_electron_deuteron_mean_free_path_profile466)_ 1.41749625809491772e+04 +Electron-deuteron_mean_free_path_at_point_467____________________________ (len_plasma_electron_deuteron_mean_free_path_profile467)_ 1.41220644643324904e+04 +Electron-deuteron_mean_free_path_at_point_468____________________________ (len_plasma_electron_deuteron_mean_free_path_profile468)_ 1.40819967173620498e+04 +Electron-deuteron_mean_free_path_at_point_469____________________________ (len_plasma_electron_deuteron_mean_free_path_profile469)_ 1.40582655908793586e+04 +Electron-deuteron_mean_free_path_at_point_470____________________________ (len_plasma_electron_deuteron_mean_free_path_profile470)_ 1.40611040874745395e+04 +Electron-deuteron_mean_free_path_at_point_471____________________________ (len_plasma_electron_deuteron_mean_free_path_profile471)_ 1.33627837445074474e+04 +Electron-deuteron_mean_free_path_at_point_472____________________________ (len_plasma_electron_deuteron_mean_free_path_profile472)_ 1.26733509759079734e+04 +Electron-deuteron_mean_free_path_at_point_473____________________________ (len_plasma_electron_deuteron_mean_free_path_profile473)_ 1.19932415969389313e+04 +Electron-deuteron_mean_free_path_at_point_474____________________________ (len_plasma_electron_deuteron_mean_free_path_profile474)_ 1.13229183160930734e+04 +Electron-deuteron_mean_free_path_at_point_475____________________________ (len_plasma_electron_deuteron_mean_free_path_profile475)_ 1.06628728541809996e+04 +Electron-deuteron_mean_free_path_at_point_476____________________________ (len_plasma_electron_deuteron_mean_free_path_profile476)_ 1.00136282716133192e+04 +Electron-deuteron_mean_free_path_at_point_477____________________________ (len_plasma_electron_deuteron_mean_free_path_profile477)_ 9.37574152916425192e+03 +Electron-deuteron_mean_free_path_at_point_478____________________________ (len_plasma_electron_deuteron_mean_free_path_profile478)_ 8.74980631131967675e+03 +Electron-deuteron_mean_free_path_at_point_479____________________________ (len_plasma_electron_deuteron_mean_free_path_profile479)_ 8.13645614586723605e+03 +Electron-deuteron_mean_free_path_at_point_480____________________________ (len_plasma_electron_deuteron_mean_free_path_profile480)_ 7.53636785885106292e+03 +Electron-deuteron_mean_free_path_at_point_481____________________________ (len_plasma_electron_deuteron_mean_free_path_profile481)_ 6.95026541062627621e+03 +Electron-deuteron_mean_free_path_at_point_482____________________________ (len_plasma_electron_deuteron_mean_free_path_profile482)_ 6.37892416683427018e+03 +Electron-deuteron_mean_free_path_at_point_483____________________________ (len_plasma_electron_deuteron_mean_free_path_profile483)_ 5.82317566810506833e+03 +Electron-deuteron_mean_free_path_at_point_484____________________________ (len_plasma_electron_deuteron_mean_free_path_profile484)_ 5.28391297478636170e+03 +Electron-deuteron_mean_free_path_at_point_485____________________________ (len_plasma_electron_deuteron_mean_free_path_profile485)_ 4.76209667885657018e+03 +Electron-deuteron_mean_free_path_at_point_486____________________________ (len_plasma_electron_deuteron_mean_free_path_profile486)_ 4.25876169563430085e+03 +Electron-deuteron_mean_free_path_at_point_487____________________________ (len_plasma_electron_deuteron_mean_free_path_profile487)_ 3.77502497480523698e+03 +Electron-deuteron_mean_free_path_at_point_488____________________________ (len_plasma_electron_deuteron_mean_free_path_profile488)_ 3.31209430647291128e+03 +Electron-deuteron_mean_free_path_at_point_489____________________________ (len_plasma_electron_deuteron_mean_free_path_profile489)_ 2.87127844787451386e+03 +Electron-deuteron_mean_free_path_at_point_490____________________________ (len_plasma_electron_deuteron_mean_free_path_profile490)_ 2.45399886741600994e+03 +Electron-deuteron_mean_free_path_at_point_491____________________________ (len_plasma_electron_deuteron_mean_free_path_profile491)_ 2.06180350726050392e+03 +Electron-deuteron_mean_free_path_at_point_492____________________________ (len_plasma_electron_deuteron_mean_free_path_profile492)_ 1.69638312617393717e+03 +Electron-deuteron_mean_free_path_at_point_493____________________________ (len_plasma_electron_deuteron_mean_free_path_profile493)_ 1.35959104270059015e+03 +Electron-deuteron_mean_free_path_at_point_494____________________________ (len_plasma_electron_deuteron_mean_free_path_profile494)_ 1.05346753931189392e+03 +Electron-deuteron_mean_free_path_at_point_495____________________________ (len_plasma_electron_deuteron_mean_free_path_profile495)_ 7.80270993295892026e+02 +Electron-deuteron_mean_free_path_at_point_496____________________________ (len_plasma_electron_deuteron_mean_free_path_profile496)_ 5.42519403353291295e+02 +Electron-deuteron_mean_free_path_at_point_497____________________________ (len_plasma_electron_deuteron_mean_free_path_profile497)_ 3.43049545855500696e+02 +Electron-deuteron_mean_free_path_at_point_498____________________________ (len_plasma_electron_deuteron_mean_free_path_profile498)_ 1.85110208884323242e+02 +Electron-deuteron_mean_free_path_at_point_499____________________________ (len_plasma_electron_deuteron_mean_free_path_profile499)_ 7.25357880096085239e+01 +Electron-deuteron_mean_free_path_at_point_500____________________________ (len_plasma_electron_deuteron_mean_free_path_profile500)_ 1.01924598199130561e+01 +Volume_averaged_electron-triton_mean_free_path_(λₑT)_(m)_________________ (len_plasma_electron_triton_mean_free_path_vol_avg)_ 5.39906900749845008e+04 +Electron-triton_mean_free_path_at_point_0________________________________ (len_plasma_electron_triton_mean_free_path_profile0)_ 1.65943977952568937e+05 +Electron-triton_mean_free_path_at_point_1________________________________ (len_plasma_electron_triton_mean_free_path_profile1)_ 1.65942635856818815e+05 +Electron-triton_mean_free_path_at_point_2________________________________ (len_plasma_electron_triton_mean_free_path_profile2)_ 1.65938609606459475e+05 +Electron-triton_mean_free_path_at_point_3________________________________ (len_plasma_electron_triton_mean_free_path_profile3)_ 1.65931899312163005e+05 +Electron-triton_mean_free_path_at_point_4________________________________ (len_plasma_electron_triton_mean_free_path_profile4)_ 1.65922505158382584e+05 +Electron-triton_mean_free_path_at_point_5________________________________ (len_plasma_electron_triton_mean_free_path_profile5)_ 1.65910427403353999e+05 +Electron-triton_mean_free_path_at_point_6________________________________ (len_plasma_electron_triton_mean_free_path_profile6)_ 1.65895666379093920e+05 +Electron-triton_mean_free_path_at_point_7________________________________ (len_plasma_electron_triton_mean_free_path_profile7)_ 1.65878222491401451e+05 +Electron-triton_mean_free_path_at_point_8________________________________ (len_plasma_electron_triton_mean_free_path_profile8)_ 1.65858096219858970e+05 +Electron-triton_mean_free_path_at_point_9________________________________ (len_plasma_electron_triton_mean_free_path_profile9)_ 1.65835288117830496e+05 +Electron-triton_mean_free_path_at_point_10_______________________________ (len_plasma_electron_triton_mean_free_path_profile10)_ 1.65809798812464229e+05 +Electron-triton_mean_free_path_at_point_11_______________________________ (len_plasma_electron_triton_mean_free_path_profile11)_ 1.65781629004692804e+05 +Electron-triton_mean_free_path_at_point_12_______________________________ (len_plasma_electron_triton_mean_free_path_profile12)_ 1.65750779469231929e+05 +Electron-triton_mean_free_path_at_point_13_______________________________ (len_plasma_electron_triton_mean_free_path_profile13)_ 1.65717251054583641e+05 +Electron-triton_mean_free_path_at_point_14_______________________________ (len_plasma_electron_triton_mean_free_path_profile14)_ 1.65681044683035434e+05 +Electron-triton_mean_free_path_at_point_15_______________________________ (len_plasma_electron_triton_mean_free_path_profile15)_ 1.65642161350661365e+05 +Electron-triton_mean_free_path_at_point_16_______________________________ (len_plasma_electron_triton_mean_free_path_profile16)_ 1.65600602127323597e+05 +Electron-triton_mean_free_path_at_point_17_______________________________ (len_plasma_electron_triton_mean_free_path_profile17)_ 1.65556368156671757e+05 +Electron-triton_mean_free_path_at_point_18_______________________________ (len_plasma_electron_triton_mean_free_path_profile18)_ 1.65509460656145442e+05 +Electron-triton_mean_free_path_at_point_19_______________________________ (len_plasma_electron_triton_mean_free_path_profile19)_ 1.65459880916974449e+05 +Electron-triton_mean_free_path_at_point_20_______________________________ (len_plasma_electron_triton_mean_free_path_profile20)_ 1.65407630304179533e+05 +Electron-triton_mean_free_path_at_point_21_______________________________ (len_plasma_electron_triton_mean_free_path_profile21)_ 1.65352710256574006e+05 +Electron-triton_mean_free_path_at_point_22_______________________________ (len_plasma_electron_triton_mean_free_path_profile22)_ 1.65295122286764992e+05 +Electron-triton_mean_free_path_at_point_23_______________________________ (len_plasma_electron_triton_mean_free_path_profile23)_ 1.65234867981154122e+05 +Electron-triton_mean_free_path_at_point_24_______________________________ (len_plasma_electron_triton_mean_free_path_profile24)_ 1.65171948999938992e+05 +Electron-triton_mean_free_path_at_point_25_______________________________ (len_plasma_electron_triton_mean_free_path_profile25)_ 1.65106367077115166e+05 +Electron-triton_mean_free_path_at_point_26_______________________________ (len_plasma_electron_triton_mean_free_path_profile26)_ 1.65038124020475429e+05 +Electron-triton_mean_free_path_at_point_27_______________________________ (len_plasma_electron_triton_mean_free_path_profile27)_ 1.64967221711612918e+05 +Electron-triton_mean_free_path_at_point_28_______________________________ (len_plasma_electron_triton_mean_free_path_profile28)_ 1.64893662105923257e+05 +Electron-triton_mean_free_path_at_point_29_______________________________ (len_plasma_electron_triton_mean_free_path_profile29)_ 1.64817447232603008e+05 +Electron-triton_mean_free_path_at_point_30_______________________________ (len_plasma_electron_triton_mean_free_path_profile30)_ 1.64738579194653954e+05 +Electron-triton_mean_free_path_at_point_31_______________________________ (len_plasma_electron_triton_mean_free_path_profile31)_ 1.64657060168883618e+05 +Electron-triton_mean_free_path_at_point_32_______________________________ (len_plasma_electron_triton_mean_free_path_profile32)_ 1.64572892405905935e+05 +Electron-triton_mean_free_path_at_point_33_______________________________ (len_plasma_electron_triton_mean_free_path_profile33)_ 1.64486078230144223e+05 +Electron-triton_mean_free_path_at_point_34_______________________________ (len_plasma_electron_triton_mean_free_path_profile34)_ 1.64396620039831760e+05 +Electron-triton_mean_free_path_at_point_35_______________________________ (len_plasma_electron_triton_mean_free_path_profile35)_ 1.64304520307013736e+05 +Electron-triton_mean_free_path_at_point_36_______________________________ (len_plasma_electron_triton_mean_free_path_profile36)_ 1.64209781577548361e+05 +Electron-triton_mean_free_path_at_point_37_______________________________ (len_plasma_electron_triton_mean_free_path_profile37)_ 1.64112406471109804e+05 +Electron-triton_mean_free_path_at_point_38_______________________________ (len_plasma_electron_triton_mean_free_path_profile38)_ 1.64012397681188333e+05 +Electron-triton_mean_free_path_at_point_39_______________________________ (len_plasma_electron_triton_mean_free_path_profile39)_ 1.63909757975092187e+05 +Electron-triton_mean_free_path_at_point_40_______________________________ (len_plasma_electron_triton_mean_free_path_profile40)_ 1.63804490193949779e+05 +Electron-triton_mean_free_path_at_point_41_______________________________ (len_plasma_electron_triton_mean_free_path_profile41)_ 1.63696597252710810e+05 +Electron-triton_mean_free_path_at_point_42_______________________________ (len_plasma_electron_triton_mean_free_path_profile42)_ 1.63586082140149199e+05 +Electron-triton_mean_free_path_at_point_43_______________________________ (len_plasma_electron_triton_mean_free_path_profile43)_ 1.63472947918861581e+05 +Electron-triton_mean_free_path_at_point_44_______________________________ (len_plasma_electron_triton_mean_free_path_profile44)_ 1.63357197725273028e+05 +Electron-triton_mean_free_path_at_point_45_______________________________ (len_plasma_electron_triton_mean_free_path_profile45)_ 1.63238834769635258e+05 +Electron-triton_mean_free_path_at_point_46_______________________________ (len_plasma_electron_triton_mean_free_path_profile46)_ 1.63117862336030026e+05 +Electron-triton_mean_free_path_at_point_47_______________________________ (len_plasma_electron_triton_mean_free_path_profile47)_ 1.62994283782369836e+05 +Electron-triton_mean_free_path_at_point_48_______________________________ (len_plasma_electron_triton_mean_free_path_profile48)_ 1.62868102540400345e+05 +Electron-triton_mean_free_path_at_point_49_______________________________ (len_plasma_electron_triton_mean_free_path_profile49)_ 1.62739322115700488e+05 +Electron-triton_mean_free_path_at_point_50_______________________________ (len_plasma_electron_triton_mean_free_path_profile50)_ 1.62607946087685530e+05 +Electron-triton_mean_free_path_at_point_51_______________________________ (len_plasma_electron_triton_mean_free_path_profile51)_ 1.62473978109607007e+05 +Electron-triton_mean_free_path_at_point_52_______________________________ (len_plasma_electron_triton_mean_free_path_profile52)_ 1.62337421908554825e+05 +Electron-triton_mean_free_path_at_point_53_______________________________ (len_plasma_electron_triton_mean_free_path_profile53)_ 1.62198281285459729e+05 +Electron-triton_mean_free_path_at_point_54_______________________________ (len_plasma_electron_triton_mean_free_path_profile54)_ 1.62056560115091939e+05 +Electron-triton_mean_free_path_at_point_55_______________________________ (len_plasma_electron_triton_mean_free_path_profile55)_ 1.61912262346064148e+05 +Electron-triton_mean_free_path_at_point_56_______________________________ (len_plasma_electron_triton_mean_free_path_profile56)_ 1.61765392000833061e+05 +Electron-triton_mean_free_path_at_point_57_______________________________ (len_plasma_electron_triton_mean_free_path_profile57)_ 1.61615953175698698e+05 +Electron-triton_mean_free_path_at_point_58_______________________________ (len_plasma_electron_triton_mean_free_path_profile58)_ 1.61463950040808006e+05 +Electron-triton_mean_free_path_at_point_59_______________________________ (len_plasma_electron_triton_mean_free_path_profile59)_ 1.61309386840152583e+05 +Electron-triton_mean_free_path_at_point_60_______________________________ (len_plasma_electron_triton_mean_free_path_profile60)_ 1.61152267891572003e+05 +Electron-triton_mean_free_path_at_point_61_______________________________ (len_plasma_electron_triton_mean_free_path_profile61)_ 1.60992597586754215e+05 +Electron-triton_mean_free_path_at_point_62_______________________________ (len_plasma_electron_triton_mean_free_path_profile62)_ 1.60830380391234532e+05 +Electron-triton_mean_free_path_at_point_63_______________________________ (len_plasma_electron_triton_mean_free_path_profile63)_ 1.60665620844399178e+05 +Electron-triton_mean_free_path_at_point_64_______________________________ (len_plasma_electron_triton_mean_free_path_profile64)_ 1.60498323559482786e+05 +Electron-triton_mean_free_path_at_point_65_______________________________ (len_plasma_electron_triton_mean_free_path_profile65)_ 1.60328493223569909e+05 +Electron-triton_mean_free_path_at_point_66_______________________________ (len_plasma_electron_triton_mean_free_path_profile66)_ 1.60156134597596159e+05 +Electron-triton_mean_free_path_at_point_67_______________________________ (len_plasma_electron_triton_mean_free_path_profile67)_ 1.59981252516346955e+05 +Electron-triton_mean_free_path_at_point_68_______________________________ (len_plasma_electron_triton_mean_free_path_profile68)_ 1.59803851888458506e+05 +Electron-triton_mean_free_path_at_point_69_______________________________ (len_plasma_electron_triton_mean_free_path_profile69)_ 1.59623937696416775e+05 +Electron-triton_mean_free_path_at_point_70_______________________________ (len_plasma_electron_triton_mean_free_path_profile70)_ 1.59441514996557467e+05 +Electron-triton_mean_free_path_at_point_71_______________________________ (len_plasma_electron_triton_mean_free_path_profile71)_ 1.59256588919066387e+05 +Electron-triton_mean_free_path_at_point_72_______________________________ (len_plasma_electron_triton_mean_free_path_profile72)_ 1.59069164667977137e+05 +Electron-triton_mean_free_path_at_point_73_______________________________ (len_plasma_electron_triton_mean_free_path_profile73)_ 1.58879247521172627e+05 +Electron-triton_mean_free_path_at_point_74_______________________________ (len_plasma_electron_triton_mean_free_path_profile74)_ 1.58686842830382375e+05 +Electron-triton_mean_free_path_at_point_75_______________________________ (len_plasma_electron_triton_mean_free_path_profile75)_ 1.58491956021180755e+05 +Electron-triton_mean_free_path_at_point_76_______________________________ (len_plasma_electron_triton_mean_free_path_profile76)_ 1.58294592592989124e+05 +Electron-triton_mean_free_path_at_point_77_______________________________ (len_plasma_electron_triton_mean_free_path_profile77)_ 1.58094758119070611e+05 +Electron-triton_mean_free_path_at_point_78_______________________________ (len_plasma_electron_triton_mean_free_path_profile78)_ 1.57892458246529743e+05 +Electron-triton_mean_free_path_at_point_79_______________________________ (len_plasma_electron_triton_mean_free_path_profile79)_ 1.57687698696310836e+05 +Electron-triton_mean_free_path_at_point_80_______________________________ (len_plasma_electron_triton_mean_free_path_profile80)_ 1.57480485263196751e+05 +Electron-triton_mean_free_path_at_point_81_______________________________ (len_plasma_electron_triton_mean_free_path_profile81)_ 1.57270823815804470e+05 +Electron-triton_mean_free_path_at_point_82_______________________________ (len_plasma_electron_triton_mean_free_path_profile82)_ 1.57058720296583226e+05 +Electron-triton_mean_free_path_at_point_83_______________________________ (len_plasma_electron_triton_mean_free_path_profile83)_ 1.56844180721813405e+05 +Electron-triton_mean_free_path_at_point_84_______________________________ (len_plasma_electron_triton_mean_free_path_profile84)_ 1.56627211181601713e+05 +Electron-triton_mean_free_path_at_point_85_______________________________ (len_plasma_electron_triton_mean_free_path_profile85)_ 1.56407817839877505e+05 +Electron-triton_mean_free_path_at_point_86_______________________________ (len_plasma_electron_triton_mean_free_path_profile86)_ 1.56186006934390636e+05 +Electron-triton_mean_free_path_at_point_87_______________________________ (len_plasma_electron_triton_mean_free_path_profile87)_ 1.55961784776707413e+05 +Electron-triton_mean_free_path_at_point_88_______________________________ (len_plasma_electron_triton_mean_free_path_profile88)_ 1.55735157752205385e+05 +Electron-triton_mean_free_path_at_point_89_______________________________ (len_plasma_electron_triton_mean_free_path_profile89)_ 1.55506132320070668e+05 +Electron-triton_mean_free_path_at_point_90_______________________________ (len_plasma_electron_triton_mean_free_path_profile90)_ 1.55274715013290406e+05 +Electron-triton_mean_free_path_at_point_91_______________________________ (len_plasma_electron_triton_mean_free_path_profile91)_ 1.55040912438651023e+05 +Electron-triton_mean_free_path_at_point_92_______________________________ (len_plasma_electron_triton_mean_free_path_profile92)_ 1.54804731276730949e+05 +Electron-triton_mean_free_path_at_point_93_______________________________ (len_plasma_electron_triton_mean_free_path_profile93)_ 1.54566178281895642e+05 +Electron-triton_mean_free_path_at_point_94_______________________________ (len_plasma_electron_triton_mean_free_path_profile94)_ 1.54325260282290837e+05 +Electron-triton_mean_free_path_at_point_95_______________________________ (len_plasma_electron_triton_mean_free_path_profile95)_ 1.54081984179836785e+05 +Electron-triton_mean_free_path_at_point_96_______________________________ (len_plasma_electron_triton_mean_free_path_profile96)_ 1.53836356950222078e+05 +Electron-triton_mean_free_path_at_point_97_______________________________ (len_plasma_electron_triton_mean_free_path_profile97)_ 1.53588385642894777e+05 +Electron-triton_mean_free_path_at_point_98_______________________________ (len_plasma_electron_triton_mean_free_path_profile98)_ 1.53338077381057141e+05 +Electron-triton_mean_free_path_at_point_99_______________________________ (len_plasma_electron_triton_mean_free_path_profile99)_ 1.53085439361656783e+05 +Electron-triton_mean_free_path_at_point_100______________________________ (len_plasma_electron_triton_mean_free_path_profile100)_ 1.52830478855377296e+05 +Electron-triton_mean_free_path_at_point_101______________________________ (len_plasma_electron_triton_mean_free_path_profile101)_ 1.52573203206631762e+05 +Electron-triton_mean_free_path_at_point_102______________________________ (len_plasma_electron_triton_mean_free_path_profile102)_ 1.52313619833552191e+05 +Electron-triton_mean_free_path_at_point_103______________________________ (len_plasma_electron_triton_mean_free_path_profile103)_ 1.52051736227980669e+05 +Electron-triton_mean_free_path_at_point_104______________________________ (len_plasma_electron_triton_mean_free_path_profile104)_ 1.51787559955458826e+05 +Electron-triton_mean_free_path_at_point_105______________________________ (len_plasma_electron_triton_mean_free_path_profile105)_ 1.51521098655217676e+05 +Electron-triton_mean_free_path_at_point_106______________________________ (len_plasma_electron_triton_mean_free_path_profile106)_ 1.51252360040167609e+05 +Electron-triton_mean_free_path_at_point_107______________________________ (len_plasma_electron_triton_mean_free_path_profile107)_ 1.50981351896885055e+05 +Electron-triton_mean_free_path_at_point_108______________________________ (len_plasma_electron_triton_mean_free_path_profile108)_ 1.50708082085603062e+05 +Electron-triton_mean_free_path_at_point_109______________________________ (len_plasma_electron_triton_mean_free_path_profile109)_ 1.50432558540196973e+05 +Electron-triton_mean_free_path_at_point_110______________________________ (len_plasma_electron_triton_mean_free_path_profile110)_ 1.50154789268171997e+05 +Electron-triton_mean_free_path_at_point_111______________________________ (len_plasma_electron_triton_mean_free_path_profile111)_ 1.49874782350650959e+05 +Electron-triton_mean_free_path_at_point_112______________________________ (len_plasma_electron_triton_mean_free_path_profile112)_ 1.49592545942359342e+05 +Electron-triton_mean_free_path_at_point_113______________________________ (len_plasma_electron_triton_mean_free_path_profile113)_ 1.49308088271610817e+05 +Electron-triton_mean_free_path_at_point_114______________________________ (len_plasma_electron_triton_mean_free_path_profile114)_ 1.49021417640292144e+05 +Electron-triton_mean_free_path_at_point_115______________________________ (len_plasma_electron_triton_mean_free_path_profile115)_ 1.48732542423848063e+05 +Electron-triton_mean_free_path_at_point_116______________________________ (len_plasma_electron_triton_mean_free_path_profile116)_ 1.48441471071264270e+05 +Electron-triton_mean_free_path_at_point_117______________________________ (len_plasma_electron_triton_mean_free_path_profile117)_ 1.48148212105052284e+05 +Electron-triton_mean_free_path_at_point_118______________________________ (len_plasma_electron_triton_mean_free_path_profile118)_ 1.47852774121229333e+05 +Electron-triton_mean_free_path_at_point_119______________________________ (len_plasma_electron_triton_mean_free_path_profile119)_ 1.47555165789302322e+05 +Electron-triton_mean_free_path_at_point_120______________________________ (len_plasma_electron_triton_mean_free_path_profile120)_ 1.47255395852248184e+05 +Electron-triton_mean_free_path_at_point_121______________________________ (len_plasma_electron_triton_mean_free_path_profile121)_ 1.46953473126495664e+05 +Electron-triton_mean_free_path_at_point_122______________________________ (len_plasma_electron_triton_mean_free_path_profile122)_ 1.46649406501903170e+05 +Electron-triton_mean_free_path_at_point_123______________________________ (len_plasma_electron_triton_mean_free_path_profile123)_ 1.46343204941739416e+05 +Electron-triton_mean_free_path_at_point_124______________________________ (len_plasma_electron_triton_mean_free_path_profile124)_ 1.46034877482662123e+05 +Electron-triton_mean_free_path_at_point_125______________________________ (len_plasma_electron_triton_mean_free_path_profile125)_ 1.45724433234694472e+05 +Electron-triton_mean_free_path_at_point_126______________________________ (len_plasma_electron_triton_mean_free_path_profile126)_ 1.45411881381204119e+05 +Electron-triton_mean_free_path_at_point_127______________________________ (len_plasma_electron_triton_mean_free_path_profile127)_ 1.45097231178876886e+05 +Electron-triton_mean_free_path_at_point_128______________________________ (len_plasma_electron_triton_mean_free_path_profile128)_ 1.44780491957695311e+05 +Electron-triton_mean_free_path_at_point_129______________________________ (len_plasma_electron_triton_mean_free_path_profile129)_ 1.44461673120910855e+05 +Electron-triton_mean_free_path_at_point_130______________________________ (len_plasma_electron_triton_mean_free_path_profile130)_ 1.44140784145018726e+05 +Electron-triton_mean_free_path_at_point_131______________________________ (len_plasma_electron_triton_mean_free_path_profile131)_ 1.43817834579731338e+05 +Electron-triton_mean_free_path_at_point_132______________________________ (len_plasma_electron_triton_mean_free_path_profile132)_ 1.43492834047950106e+05 +Electron-triton_mean_free_path_at_point_133______________________________ (len_plasma_electron_triton_mean_free_path_profile133)_ 1.43165792245736840e+05 +Electron-triton_mean_free_path_at_point_134______________________________ (len_plasma_electron_triton_mean_free_path_profile134)_ 1.42836718942284700e+05 +Electron-triton_mean_free_path_at_point_135______________________________ (len_plasma_electron_triton_mean_free_path_profile135)_ 1.42505623979887081e+05 +Electron-triton_mean_free_path_at_point_136______________________________ (len_plasma_electron_triton_mean_free_path_profile136)_ 1.42172517273907637e+05 +Electron-triton_mean_free_path_at_point_137______________________________ (len_plasma_electron_triton_mean_free_path_profile137)_ 1.41837408812746202e+05 +Electron-triton_mean_free_path_at_point_138______________________________ (len_plasma_electron_triton_mean_free_path_profile138)_ 1.41500308657807473e+05 +Electron-triton_mean_free_path_at_point_139______________________________ (len_plasma_electron_triton_mean_free_path_profile139)_ 1.41161226943465910e+05 +Electron-triton_mean_free_path_at_point_140______________________________ (len_plasma_electron_triton_mean_free_path_profile140)_ 1.40820173877030378e+05 +Electron-triton_mean_free_path_at_point_141______________________________ (len_plasma_electron_triton_mean_free_path_profile141)_ 1.40477159738709219e+05 +Electron-triton_mean_free_path_at_point_142______________________________ (len_plasma_electron_triton_mean_free_path_profile142)_ 1.40132194881571806e+05 +Electron-triton_mean_free_path_at_point_143______________________________ (len_plasma_electron_triton_mean_free_path_profile143)_ 1.39785289731511613e+05 +Electron-triton_mean_free_path_at_point_144______________________________ (len_plasma_electron_triton_mean_free_path_profile144)_ 1.39436454787206050e+05 +Electron-triton_mean_free_path_at_point_145______________________________ (len_plasma_electron_triton_mean_free_path_profile145)_ 1.39085700620076241e+05 +Electron-triton_mean_free_path_at_point_146______________________________ (len_plasma_electron_triton_mean_free_path_profile146)_ 1.38733037874246598e+05 +Electron-triton_mean_free_path_at_point_147______________________________ (len_plasma_electron_triton_mean_free_path_profile147)_ 1.38378477266501141e+05 +Electron-triton_mean_free_path_at_point_148______________________________ (len_plasma_electron_triton_mean_free_path_profile148)_ 1.38022029586239660e+05 +Electron-triton_mean_free_path_at_point_149______________________________ (len_plasma_electron_triton_mean_free_path_profile149)_ 1.37663705695434328e+05 +Electron-triton_mean_free_path_at_point_150______________________________ (len_plasma_electron_triton_mean_free_path_profile150)_ 1.37303516528582666e+05 +Electron-triton_mean_free_path_at_point_151______________________________ (len_plasma_electron_triton_mean_free_path_profile151)_ 1.36941473092660104e+05 +Electron-triton_mean_free_path_at_point_152______________________________ (len_plasma_electron_triton_mean_free_path_profile152)_ 1.36577586467072455e+05 +Electron-triton_mean_free_path_at_point_153______________________________ (len_plasma_electron_triton_mean_free_path_profile153)_ 1.36211867803604924e+05 +Electron-triton_mean_free_path_at_point_154______________________________ (len_plasma_electron_triton_mean_free_path_profile154)_ 1.35844328326372080e+05 +Electron-triton_mean_free_path_at_point_155______________________________ (len_plasma_electron_triton_mean_free_path_profile155)_ 1.35474979331765528e+05 +Electron-triton_mean_free_path_at_point_156______________________________ (len_plasma_electron_triton_mean_free_path_profile156)_ 1.35103832188399305e+05 +Electron-triton_mean_free_path_at_point_157______________________________ (len_plasma_electron_triton_mean_free_path_profile157)_ 1.34730898337056453e+05 +Electron-triton_mean_free_path_at_point_158______________________________ (len_plasma_electron_triton_mean_free_path_profile158)_ 1.34356189290631650e+05 +Electron-triton_mean_free_path_at_point_159______________________________ (len_plasma_electron_triton_mean_free_path_profile159)_ 1.33979716634072916e+05 +Electron-triton_mean_free_path_at_point_160______________________________ (len_plasma_electron_triton_mean_free_path_profile160)_ 1.33601492024324281e+05 +Electron-triton_mean_free_path_at_point_161______________________________ (len_plasma_electron_triton_mean_free_path_profile161)_ 1.33221527190263674e+05 +Electron-triton_mean_free_path_at_point_162______________________________ (len_plasma_electron_triton_mean_free_path_profile162)_ 1.32839833932640933e+05 +Electron-triton_mean_free_path_at_point_163______________________________ (len_plasma_electron_triton_mean_free_path_profile163)_ 1.32456424124015582e+05 +Electron-triton_mean_free_path_at_point_164______________________________ (len_plasma_electron_triton_mean_free_path_profile164)_ 1.32071309708689456e+05 +Electron-triton_mean_free_path_at_point_165______________________________ (len_plasma_electron_triton_mean_free_path_profile165)_ 1.31684502702642174e+05 +Electron-triton_mean_free_path_at_point_166______________________________ (len_plasma_electron_triton_mean_free_path_profile166)_ 1.31296015193462139e+05 +Electron-triton_mean_free_path_at_point_167______________________________ (len_plasma_electron_triton_mean_free_path_profile167)_ 1.30905859340276409e+05 +Electron-triton_mean_free_path_at_point_168______________________________ (len_plasma_electron_triton_mean_free_path_profile168)_ 1.30514047373679627e+05 +Electron-triton_mean_free_path_at_point_169______________________________ (len_plasma_electron_triton_mean_free_path_profile169)_ 1.30120591595660415e+05 +Electron-triton_mean_free_path_at_point_170______________________________ (len_plasma_electron_triton_mean_free_path_profile170)_ 1.29725504379527803e+05 +Electron-triton_mean_free_path_at_point_171______________________________ (len_plasma_electron_triton_mean_free_path_profile171)_ 1.29328798169833040e+05 +Electron-triton_mean_free_path_at_point_172______________________________ (len_plasma_electron_triton_mean_free_path_profile172)_ 1.28930485482292948e+05 +Electron-triton_mean_free_path_at_point_173______________________________ (len_plasma_electron_triton_mean_free_path_profile173)_ 1.28530578903708316e+05 +Electron-triton_mean_free_path_at_point_174______________________________ (len_plasma_electron_triton_mean_free_path_profile174)_ 1.28129091091883354e+05 +Electron-triton_mean_free_path_at_point_175______________________________ (len_plasma_electron_triton_mean_free_path_profile175)_ 1.27726034775541848e+05 +Electron-triton_mean_free_path_at_point_176______________________________ (len_plasma_electron_triton_mean_free_path_profile176)_ 1.27321422754240732e+05 +Electron-triton_mean_free_path_at_point_177______________________________ (len_plasma_electron_triton_mean_free_path_profile177)_ 1.26915267898283826e+05 +Electron-triton_mean_free_path_at_point_178______________________________ (len_plasma_electron_triton_mean_free_path_profile178)_ 1.26507583148631165e+05 +Electron-triton_mean_free_path_at_point_179______________________________ (len_plasma_electron_triton_mean_free_path_profile179)_ 1.26098381516809561e+05 +Electron-triton_mean_free_path_at_point_180______________________________ (len_plasma_electron_triton_mean_free_path_profile180)_ 1.25687676084817562e+05 +Electron-triton_mean_free_path_at_point_181______________________________ (len_plasma_electron_triton_mean_free_path_profile181)_ 1.25275480005030709e+05 +Electron-triton_mean_free_path_at_point_182______________________________ (len_plasma_electron_triton_mean_free_path_profile182)_ 1.24861806500104853e+05 +Electron-triton_mean_free_path_at_point_183______________________________ (len_plasma_electron_triton_mean_free_path_profile183)_ 1.24446668862875900e+05 +Electron-triton_mean_free_path_at_point_184______________________________ (len_plasma_electron_triton_mean_free_path_profile184)_ 1.24030080456258060e+05 +Electron-triton_mean_free_path_at_point_185______________________________ (len_plasma_electron_triton_mean_free_path_profile185)_ 1.23612054713141275e+05 +Electron-triton_mean_free_path_at_point_186______________________________ (len_plasma_electron_triton_mean_free_path_profile186)_ 1.23192605136284037e+05 +Electron-triton_mean_free_path_at_point_187______________________________ (len_plasma_electron_triton_mean_free_path_profile187)_ 1.22771745298206137e+05 +Electron-triton_mean_free_path_at_point_188______________________________ (len_plasma_electron_triton_mean_free_path_profile188)_ 1.22349488841077531e+05 +Electron-triton_mean_free_path_at_point_189______________________________ (len_plasma_electron_triton_mean_free_path_profile189)_ 1.21925849476606061e+05 +Electron-triton_mean_free_path_at_point_190______________________________ (len_plasma_electron_triton_mean_free_path_profile190)_ 1.21500840985923161e+05 +Electron-triton_mean_free_path_at_point_191______________________________ (len_plasma_electron_triton_mean_free_path_profile191)_ 1.21074477219465203e+05 +Electron-triton_mean_free_path_at_point_192______________________________ (len_plasma_electron_triton_mean_free_path_profile192)_ 1.20646772096853587e+05 +Electron-triton_mean_free_path_at_point_193______________________________ (len_plasma_electron_triton_mean_free_path_profile193)_ 1.20217739606774136e+05 +Electron-triton_mean_free_path_at_point_194______________________________ (len_plasma_electron_triton_mean_free_path_profile194)_ 1.19787393806850509e+05 +Electron-triton_mean_free_path_at_point_195______________________________ (len_plasma_electron_triton_mean_free_path_profile195)_ 1.19355748823519098e+05 +Electron-triton_mean_free_path_at_point_196______________________________ (len_plasma_electron_triton_mean_free_path_profile196)_ 1.18922818851896591e+05 +Electron-triton_mean_free_path_at_point_197______________________________ (len_plasma_electron_triton_mean_free_path_profile197)_ 1.18488618155649645e+05 +Electron-triton_mean_free_path_at_point_198______________________________ (len_plasma_electron_triton_mean_free_path_profile198)_ 1.18053161066858942e+05 +Electron-triton_mean_free_path_at_point_199______________________________ (len_plasma_electron_triton_mean_free_path_profile199)_ 1.17616461985882110e+05 +Electron-triton_mean_free_path_at_point_200______________________________ (len_plasma_electron_triton_mean_free_path_profile200)_ 1.17178535381212569e+05 +Electron-triton_mean_free_path_at_point_201______________________________ (len_plasma_electron_triton_mean_free_path_profile201)_ 1.16739395789336340e+05 +Electron-triton_mean_free_path_at_point_202______________________________ (len_plasma_electron_triton_mean_free_path_profile202)_ 1.16299057814586617e+05 +Electron-triton_mean_free_path_at_point_203______________________________ (len_plasma_electron_triton_mean_free_path_profile203)_ 1.15857536128995504e+05 +Electron-triton_mean_free_path_at_point_204______________________________ (len_plasma_electron_triton_mean_free_path_profile204)_ 1.15414845472140456e+05 +Electron-triton_mean_free_path_at_point_205______________________________ (len_plasma_electron_triton_mean_free_path_profile205)_ 1.14971000650991118e+05 +Electron-triton_mean_free_path_at_point_206______________________________ (len_plasma_electron_triton_mean_free_path_profile206)_ 1.14526016539751217e+05 +Electron-triton_mean_free_path_at_point_207______________________________ (len_plasma_electron_triton_mean_free_path_profile207)_ 1.14079908079697561e+05 +Electron-triton_mean_free_path_at_point_208______________________________ (len_plasma_electron_triton_mean_free_path_profile208)_ 1.13632690279017639e+05 +Electron-triton_mean_free_path_at_point_209______________________________ (len_plasma_electron_triton_mean_free_path_profile209)_ 1.13184378212641401e+05 +Electron-triton_mean_free_path_at_point_210______________________________ (len_plasma_electron_triton_mean_free_path_profile210)_ 1.12734987022071480e+05 +Electron-triton_mean_free_path_at_point_211______________________________ (len_plasma_electron_triton_mean_free_path_profile211)_ 1.12284531915210973e+05 +Electron-triton_mean_free_path_at_point_212______________________________ (len_plasma_electron_triton_mean_free_path_profile212)_ 1.11833028166185846e+05 +Electron-triton_mean_free_path_at_point_213______________________________ (len_plasma_electron_triton_mean_free_path_profile213)_ 1.11380491115166631e+05 +Electron-triton_mean_free_path_at_point_214______________________________ (len_plasma_electron_triton_mean_free_path_profile214)_ 1.10926936168183223e+05 +Electron-triton_mean_free_path_at_point_215______________________________ (len_plasma_electron_triton_mean_free_path_profile215)_ 1.10472378796941106e+05 +Electron-triton_mean_free_path_at_point_216______________________________ (len_plasma_electron_triton_mean_free_path_profile216)_ 1.10016834538629279e+05 +Electron-triton_mean_free_path_at_point_217______________________________ (len_plasma_electron_triton_mean_free_path_profile217)_ 1.09560318995728026e+05 +Electron-triton_mean_free_path_at_point_218______________________________ (len_plasma_electron_triton_mean_free_path_profile218)_ 1.09102847835811714e+05 +Electron-triton_mean_free_path_at_point_219______________________________ (len_plasma_electron_triton_mean_free_path_profile219)_ 1.08644436791347645e+05 +Electron-triton_mean_free_path_at_point_220______________________________ (len_plasma_electron_triton_mean_free_path_profile220)_ 1.08185101659494161e+05 +Electron-triton_mean_free_path_at_point_221______________________________ (len_plasma_electron_triton_mean_free_path_profile221)_ 1.07724858301889253e+05 +Electron-triton_mean_free_path_at_point_222______________________________ (len_plasma_electron_triton_mean_free_path_profile222)_ 1.07263722644442139e+05 +Electron-triton_mean_free_path_at_point_223______________________________ (len_plasma_electron_triton_mean_free_path_profile223)_ 1.06801710677116367e+05 +Electron-triton_mean_free_path_at_point_224______________________________ (len_plasma_electron_triton_mean_free_path_profile224)_ 1.06338838453710865e+05 +Electron-triton_mean_free_path_at_point_225______________________________ (len_plasma_electron_triton_mean_free_path_profile225)_ 1.05875122091636294e+05 +Electron-triton_mean_free_path_at_point_226______________________________ (len_plasma_electron_triton_mean_free_path_profile226)_ 1.05410577771689816e+05 +Electron-triton_mean_free_path_at_point_227______________________________ (len_plasma_electron_triton_mean_free_path_profile227)_ 1.04945221737821252e+05 +Electron-triton_mean_free_path_at_point_228______________________________ (len_plasma_electron_triton_mean_free_path_profile228)_ 1.04479070296899808e+05 +Electron-triton_mean_free_path_at_point_229______________________________ (len_plasma_electron_triton_mean_free_path_profile229)_ 1.04012139818474374e+05 +Electron-triton_mean_free_path_at_point_230______________________________ (len_plasma_electron_triton_mean_free_path_profile230)_ 1.03544446734530065e+05 +Electron-triton_mean_free_path_at_point_231______________________________ (len_plasma_electron_triton_mean_free_path_profile231)_ 1.03076007539239843e+05 +Electron-triton_mean_free_path_at_point_232______________________________ (len_plasma_electron_triton_mean_free_path_profile232)_ 1.02606838788713561e+05 +Electron-triton_mean_free_path_at_point_233______________________________ (len_plasma_electron_triton_mean_free_path_profile233)_ 1.02136957100740095e+05 +Electron-triton_mean_free_path_at_point_234______________________________ (len_plasma_electron_triton_mean_free_path_profile234)_ 1.01666379154528477e+05 +Electron-triton_mean_free_path_at_point_235______________________________ (len_plasma_electron_triton_mean_free_path_profile235)_ 1.01195121690441447e+05 +Electron-triton_mean_free_path_at_point_236______________________________ (len_plasma_electron_triton_mean_free_path_profile236)_ 1.00723201509725128e+05 +Electron-triton_mean_free_path_at_point_237______________________________ (len_plasma_electron_triton_mean_free_path_profile237)_ 1.00250635474236085e+05 +Electron-triton_mean_free_path_at_point_238______________________________ (len_plasma_electron_triton_mean_free_path_profile238)_ 9.97774405061611760e+04 +Electron-triton_mean_free_path_at_point_239______________________________ (len_plasma_electron_triton_mean_free_path_profile239)_ 9.93036335877341335e+04 +Electron-triton_mean_free_path_at_point_240______________________________ (len_plasma_electron_triton_mean_free_path_profile240)_ 9.88292317609472811e+04 +Electron-triton_mean_free_path_at_point_241______________________________ (len_plasma_electron_triton_mean_free_path_profile241)_ 9.83542521272577724e+04 +Electron-triton_mean_free_path_at_point_242______________________________ (len_plasma_electron_triton_mean_free_path_profile242)_ 9.78787118472891889e+04 +Electron-triton_mean_free_path_at_point_243______________________________ (len_plasma_electron_triton_mean_free_path_profile243)_ 9.74026281405294576e+04 +Electron-triton_mean_free_path_at_point_244______________________________ (len_plasma_electron_triton_mean_free_path_profile244)_ 9.69260182850203128e+04 +Electron-triton_mean_free_path_at_point_245______________________________ (len_plasma_electron_triton_mean_free_path_profile245)_ 9.64488996170468745e+04 +Electron-triton_mean_free_path_at_point_246______________________________ (len_plasma_electron_triton_mean_free_path_profile246)_ 9.59712895308168227e+04 +Electron-triton_mean_free_path_at_point_247______________________________ (len_plasma_electron_triton_mean_free_path_profile247)_ 9.54932054781371990e+04 +Electron-triton_mean_free_path_at_point_248______________________________ (len_plasma_electron_triton_mean_free_path_profile248)_ 9.50146649680868140e+04 +Electron-triton_mean_free_path_at_point_249______________________________ (len_plasma_electron_triton_mean_free_path_profile249)_ 9.45356855666792835e+04 +Electron-triton_mean_free_path_at_point_250______________________________ (len_plasma_electron_triton_mean_free_path_profile250)_ 9.40562848965255980e+04 +Electron-triton_mean_free_path_at_point_251______________________________ (len_plasma_electron_triton_mean_free_path_profile251)_ 9.35764806364880205e+04 +Electron-triton_mean_free_path_at_point_252______________________________ (len_plasma_electron_triton_mean_free_path_profile252)_ 9.30962905213293852e+04 +Electron-triton_mean_free_path_at_point_253______________________________ (len_plasma_electron_triton_mean_free_path_profile253)_ 9.26157323413555569e+04 +Electron-triton_mean_free_path_at_point_254______________________________ (len_plasma_electron_triton_mean_free_path_profile254)_ 9.21348239420557948e+04 +Electron-triton_mean_free_path_at_point_255______________________________ (len_plasma_electron_triton_mean_free_path_profile255)_ 9.16535832237315917e+04 +Electron-triton_mean_free_path_at_point_256______________________________ (len_plasma_electron_triton_mean_free_path_profile256)_ 9.11720281411268807e+04 +Electron-triton_mean_free_path_at_point_257______________________________ (len_plasma_electron_triton_mean_free_path_profile257)_ 9.06901767030451301e+04 +Electron-triton_mean_free_path_at_point_258______________________________ (len_plasma_electron_triton_mean_free_path_profile258)_ 9.02080469719653920e+04 +Electron-triton_mean_free_path_at_point_259______________________________ (len_plasma_electron_triton_mean_free_path_profile259)_ 8.97256570636509859e+04 +Electron-triton_mean_free_path_at_point_260______________________________ (len_plasma_electron_triton_mean_free_path_profile260)_ 8.92430251467509370e+04 +Electron-triton_mean_free_path_at_point_261______________________________ (len_plasma_electron_triton_mean_free_path_profile261)_ 8.87601694423970766e+04 +Electron-triton_mean_free_path_at_point_262______________________________ (len_plasma_electron_triton_mean_free_path_profile262)_ 8.82771082237937371e+04 +Electron-triton_mean_free_path_at_point_263______________________________ (len_plasma_electron_triton_mean_free_path_profile263)_ 8.77938598158009845e+04 +Electron-triton_mean_free_path_at_point_264______________________________ (len_plasma_electron_triton_mean_free_path_profile264)_ 8.73104425945129769e+04 +Electron-triton_mean_free_path_at_point_265______________________________ (len_plasma_electron_triton_mean_free_path_profile265)_ 8.68268749868286250e+04 +Electron-triton_mean_free_path_at_point_266______________________________ (len_plasma_electron_triton_mean_free_path_profile266)_ 8.63431754700148158e+04 +Electron-triton_mean_free_path_at_point_267______________________________ (len_plasma_electron_triton_mean_free_path_profile267)_ 8.58593625712655776e+04 +Electron-triton_mean_free_path_at_point_268______________________________ (len_plasma_electron_triton_mean_free_path_profile268)_ 8.53754548672532837e+04 +Electron-triton_mean_free_path_at_point_269______________________________ (len_plasma_electron_triton_mean_free_path_profile269)_ 8.48914709836729307e+04 +Electron-triton_mean_free_path_at_point_270______________________________ (len_plasma_electron_triton_mean_free_path_profile270)_ 8.44074295947792270e+04 +Electron-triton_mean_free_path_at_point_271______________________________ (len_plasma_electron_triton_mean_free_path_profile271)_ 8.39233494229189673e+04 +Electron-triton_mean_free_path_at_point_272______________________________ (len_plasma_electron_triton_mean_free_path_profile272)_ 8.34392492380534095e+04 +Electron-triton_mean_free_path_at_point_273______________________________ (len_plasma_electron_triton_mean_free_path_profile273)_ 8.29551478572765482e+04 +Electron-triton_mean_free_path_at_point_274______________________________ (len_plasma_electron_triton_mean_free_path_profile274)_ 8.24710641443252534e+04 +Electron-triton_mean_free_path_at_point_275______________________________ (len_plasma_electron_triton_mean_free_path_profile275)_ 8.19870170090807223e+04 +Electron-triton_mean_free_path_at_point_276______________________________ (len_plasma_electron_triton_mean_free_path_profile276)_ 8.15030254070666851e+04 +Electron-triton_mean_free_path_at_point_277______________________________ (len_plasma_electron_triton_mean_free_path_profile277)_ 8.10191083389358391e+04 +Electron-triton_mean_free_path_at_point_278______________________________ (len_plasma_electron_triton_mean_free_path_profile278)_ 8.05352848499513930e+04 +Electron-triton_mean_free_path_at_point_279______________________________ (len_plasma_electron_triton_mean_free_path_profile279)_ 8.00515740294628049e+04 +Electron-triton_mean_free_path_at_point_280______________________________ (len_plasma_electron_triton_mean_free_path_profile280)_ 7.95679950103705633e+04 +Electron-triton_mean_free_path_at_point_281______________________________ (len_plasma_electron_triton_mean_free_path_profile281)_ 7.90845669685856119e+04 +Electron-triton_mean_free_path_at_point_282______________________________ (len_plasma_electron_triton_mean_free_path_profile282)_ 7.86013091224810632e+04 +Electron-triton_mean_free_path_at_point_283______________________________ (len_plasma_electron_triton_mean_free_path_profile283)_ 7.81182407323370571e+04 +Electron-triton_mean_free_path_at_point_284______________________________ (len_plasma_electron_triton_mean_free_path_profile284)_ 7.76353810997757100e+04 +Electron-triton_mean_free_path_at_point_285______________________________ (len_plasma_electron_triton_mean_free_path_profile285)_ 7.71527495671909128e+04 +Electron-triton_mean_free_path_at_point_286______________________________ (len_plasma_electron_triton_mean_free_path_profile286)_ 7.66703655171685969e+04 +Electron-triton_mean_free_path_at_point_287______________________________ (len_plasma_electron_triton_mean_free_path_profile287)_ 7.61882483719005249e+04 +Electron-triton_mean_free_path_at_point_288______________________________ (len_plasma_electron_triton_mean_free_path_profile288)_ 7.57064175925895106e+04 +Electron-triton_mean_free_path_at_point_289______________________________ (len_plasma_electron_triton_mean_free_path_profile289)_ 7.52248926788467797e+04 +Electron-triton_mean_free_path_at_point_290______________________________ (len_plasma_electron_triton_mean_free_path_profile290)_ 7.47436931680815178e+04 +Electron-triton_mean_free_path_at_point_291______________________________ (len_plasma_electron_triton_mean_free_path_profile291)_ 7.42628386348833155e+04 +Electron-triton_mean_free_path_at_point_292______________________________ (len_plasma_electron_triton_mean_free_path_profile292)_ 7.37823486903949815e+04 +Electron-triton_mean_free_path_at_point_293______________________________ (len_plasma_electron_triton_mean_free_path_profile293)_ 7.33022429816788353e+04 +Electron-triton_mean_free_path_at_point_294______________________________ (len_plasma_electron_triton_mean_free_path_profile294)_ 7.28225411910736439e+04 +Electron-triton_mean_free_path_at_point_295______________________________ (len_plasma_electron_triton_mean_free_path_profile295)_ 7.23432630355452275e+04 +Electron-triton_mean_free_path_at_point_296______________________________ (len_plasma_electron_triton_mean_free_path_profile296)_ 7.18644282660273748e+04 +Electron-triton_mean_free_path_at_point_297______________________________ (len_plasma_electron_triton_mean_free_path_profile297)_ 7.13860566667555395e+04 +Electron-triton_mean_free_path_at_point_298______________________________ (len_plasma_electron_triton_mean_free_path_profile298)_ 7.09081680545918352e+04 +Electron-triton_mean_free_path_at_point_299______________________________ (len_plasma_electron_triton_mean_free_path_profile299)_ 7.04307822783420706e+04 +Electron-triton_mean_free_path_at_point_300______________________________ (len_plasma_electron_triton_mean_free_path_profile300)_ 6.99539192180656974e+04 +Electron-triton_mean_free_path_at_point_301______________________________ (len_plasma_electron_triton_mean_free_path_profile301)_ 6.94775987843758194e+04 +Electron-triton_mean_free_path_at_point_302______________________________ (len_plasma_electron_triton_mean_free_path_profile302)_ 6.90018409177325520e+04 +Electron-triton_mean_free_path_at_point_303______________________________ (len_plasma_electron_triton_mean_free_path_profile303)_ 6.85266655877267476e+04 +Electron-triton_mean_free_path_at_point_304______________________________ (len_plasma_electron_triton_mean_free_path_profile304)_ 6.80520927923587733e+04 +Electron-triton_mean_free_path_at_point_305______________________________ (len_plasma_electron_triton_mean_free_path_profile305)_ 6.75781425573041197e+04 +Electron-triton_mean_free_path_at_point_306______________________________ (len_plasma_electron_triton_mean_free_path_profile306)_ 6.71048349351763900e+04 +Electron-triton_mean_free_path_at_point_307______________________________ (len_plasma_electron_triton_mean_free_path_profile307)_ 6.66321900047786767e+04 +Electron-triton_mean_free_path_at_point_308______________________________ (len_plasma_electron_triton_mean_free_path_profile308)_ 6.61602278703482734e+04 +Electron-triton_mean_free_path_at_point_309______________________________ (len_plasma_electron_triton_mean_free_path_profile309)_ 6.56889686607937329e+04 +Electron-triton_mean_free_path_at_point_310______________________________ (len_plasma_electron_triton_mean_free_path_profile310)_ 6.52184325289227199e+04 +Electron-triton_mean_free_path_at_point_311______________________________ (len_plasma_electron_triton_mean_free_path_profile311)_ 6.47486396506648525e+04 +Electron-triton_mean_free_path_at_point_312______________________________ (len_plasma_electron_triton_mean_free_path_profile312)_ 6.42796102242833294e+04 +Electron-triton_mean_free_path_at_point_313______________________________ (len_plasma_electron_triton_mean_free_path_profile313)_ 6.38113644695822513e+04 +Electron-triton_mean_free_path_at_point_314______________________________ (len_plasma_electron_triton_mean_free_path_profile314)_ 6.33439226271041698e+04 +Electron-triton_mean_free_path_at_point_315______________________________ (len_plasma_electron_triton_mean_free_path_profile315)_ 6.28773049573218159e+04 +Electron-triton_mean_free_path_at_point_316______________________________ (len_plasma_electron_triton_mean_free_path_profile316)_ 6.24115317398208717e+04 +Electron-triton_mean_free_path_at_point_317______________________________ (len_plasma_electron_triton_mean_free_path_profile317)_ 6.19466232724779256e+04 +Electron-triton_mean_free_path_at_point_318______________________________ (len_plasma_electron_triton_mean_free_path_profile318)_ 6.14825998706301325e+04 +Electron-triton_mean_free_path_at_point_319______________________________ (len_plasma_electron_triton_mean_free_path_profile319)_ 6.10194818662371908e+04 +Electron-triton_mean_free_path_at_point_320______________________________ (len_plasma_electron_triton_mean_free_path_profile320)_ 6.05572896070399875e+04 +Electron-triton_mean_free_path_at_point_321______________________________ (len_plasma_electron_triton_mean_free_path_profile321)_ 6.00960434557079643e+04 +Electron-triton_mean_free_path_at_point_322______________________________ (len_plasma_electron_triton_mean_free_path_profile322)_ 5.96357637889861580e+04 +Electron-triton_mean_free_path_at_point_323______________________________ (len_plasma_electron_triton_mean_free_path_profile323)_ 5.91764709968310344e+04 +Electron-triton_mean_free_path_at_point_324______________________________ (len_plasma_electron_triton_mean_free_path_profile324)_ 5.87181854815442566e+04 +Electron-triton_mean_free_path_at_point_325______________________________ (len_plasma_electron_triton_mean_free_path_profile325)_ 5.82609276568992791e+04 +Electron-triton_mean_free_path_at_point_326______________________________ (len_plasma_electron_triton_mean_free_path_profile326)_ 5.78047179472636562e+04 +Electron-triton_mean_free_path_at_point_327______________________________ (len_plasma_electron_triton_mean_free_path_profile327)_ 5.73495767867161994e+04 +Electron-triton_mean_free_path_at_point_328______________________________ (len_plasma_electron_triton_mean_free_path_profile328)_ 5.68955246181597613e+04 +Electron-triton_mean_free_path_at_point_329______________________________ (len_plasma_electron_triton_mean_free_path_profile329)_ 5.64425818924312262e+04 +Electron-triton_mean_free_path_at_point_330______________________________ (len_plasma_electron_triton_mean_free_path_profile330)_ 5.59907690674051701e+04 +Electron-triton_mean_free_path_at_point_331______________________________ (len_plasma_electron_triton_mean_free_path_profile331)_ 5.55401066070971865e+04 +Electron-triton_mean_free_path_at_point_332______________________________ (len_plasma_electron_triton_mean_free_path_profile332)_ 5.50906149807630500e+04 +Electron-triton_mean_free_path_at_point_333______________________________ (len_plasma_electron_triton_mean_free_path_profile333)_ 5.46423146619951367e+04 +Electron-triton_mean_free_path_at_point_334______________________________ (len_plasma_electron_triton_mean_free_path_profile334)_ 5.41952261278197693e+04 +Electron-triton_mean_free_path_at_point_335______________________________ (len_plasma_electron_triton_mean_free_path_profile335)_ 5.37493698577888645e+04 +Electron-triton_mean_free_path_at_point_336______________________________ (len_plasma_electron_triton_mean_free_path_profile336)_ 5.33047663330761497e+04 +Electron-triton_mean_free_path_at_point_337______________________________ (len_plasma_electron_triton_mean_free_path_profile337)_ 5.28614360355695098e+04 +Electron-triton_mean_free_path_at_point_338______________________________ (len_plasma_electron_triton_mean_free_path_profile338)_ 5.24193994469665340e+04 +Electron-triton_mean_free_path_at_point_339______________________________ (len_plasma_electron_triton_mean_free_path_profile339)_ 5.19786770478701947e+04 +Electron-triton_mean_free_path_at_point_340______________________________ (len_plasma_electron_triton_mean_free_path_profile340)_ 5.15392893168873707e+04 +Electron-triton_mean_free_path_at_point_341______________________________ (len_plasma_electron_triton_mean_free_path_profile341)_ 5.11012567297307469e+04 +Electron-triton_mean_free_path_at_point_342______________________________ (len_plasma_electron_triton_mean_free_path_profile342)_ 5.06645997583244316e+04 +Electron-triton_mean_free_path_at_point_343______________________________ (len_plasma_electron_triton_mean_free_path_profile343)_ 5.02293388699135321e+04 +Electron-triton_mean_free_path_at_point_344______________________________ (len_plasma_electron_triton_mean_free_path_profile344)_ 4.97954945261826360e+04 +Electron-triton_mean_free_path_at_point_345______________________________ (len_plasma_electron_triton_mean_free_path_profile345)_ 4.93630871823775378e+04 +Electron-triton_mean_free_path_at_point_346______________________________ (len_plasma_electron_triton_mean_free_path_profile346)_ 4.89321372864370278e+04 +Electron-triton_mean_free_path_at_point_347______________________________ (len_plasma_electron_triton_mean_free_path_profile347)_ 4.85026652781353332e+04 +Electron-triton_mean_free_path_at_point_348______________________________ (len_plasma_electron_triton_mean_free_path_profile348)_ 4.80746915882321046e+04 +Electron-triton_mean_free_path_at_point_349______________________________ (len_plasma_electron_triton_mean_free_path_profile349)_ 4.76482366376373320e+04 +Electron-triton_mean_free_path_at_point_350______________________________ (len_plasma_electron_triton_mean_free_path_profile350)_ 4.72233208365872197e+04 +Electron-triton_mean_free_path_at_point_351______________________________ (len_plasma_electron_triton_mean_free_path_profile351)_ 4.67999645838375654e+04 +Electron-triton_mean_free_path_at_point_352______________________________ (len_plasma_electron_triton_mean_free_path_profile352)_ 4.63781882658710456e+04 +Electron-triton_mean_free_path_at_point_353______________________________ (len_plasma_electron_triton_mean_free_path_profile353)_ 4.59580122561255921e+04 +Electron-triton_mean_free_path_at_point_354______________________________ (len_plasma_electron_triton_mean_free_path_profile354)_ 4.55394569142403852e+04 +Electron-triton_mean_free_path_at_point_355______________________________ (len_plasma_electron_triton_mean_free_path_profile355)_ 4.51225425853261695e+04 +Electron-triton_mean_free_path_at_point_356______________________________ (len_plasma_electron_triton_mean_free_path_profile356)_ 4.47072895992584599e+04 +Electron-triton_mean_free_path_at_point_357______________________________ (len_plasma_electron_triton_mean_free_path_profile357)_ 4.42937182699977129e+04 +Electron-triton_mean_free_path_at_point_358______________________________ (len_plasma_electron_triton_mean_free_path_profile358)_ 4.38818488949384628e+04 +Electron-triton_mean_free_path_at_point_359______________________________ (len_plasma_electron_triton_mean_free_path_profile359)_ 4.34717017542893591e+04 +Electron-triton_mean_free_path_at_point_360______________________________ (len_plasma_electron_triton_mean_free_path_profile360)_ 4.30632971104872777e+04 +Electron-triton_mean_free_path_at_point_361______________________________ (len_plasma_electron_triton_mean_free_path_profile361)_ 4.26566552076496446e+04 +Electron-triton_mean_free_path_at_point_362______________________________ (len_plasma_electron_triton_mean_free_path_profile362)_ 4.22517962710632564e+04 +Electron-triton_mean_free_path_at_point_363______________________________ (len_plasma_electron_triton_mean_free_path_profile363)_ 4.18487405067202853e+04 +Electron-triton_mean_free_path_at_point_364______________________________ (len_plasma_electron_triton_mean_free_path_profile364)_ 4.14475081008974084e+04 +Electron-triton_mean_free_path_at_point_365______________________________ (len_plasma_electron_triton_mean_free_path_profile365)_ 4.10481192197873097e+04 +Electron-triton_mean_free_path_at_point_366______________________________ (len_plasma_electron_triton_mean_free_path_profile366)_ 4.06505940091823577e+04 +Electron-triton_mean_free_path_at_point_367______________________________ (len_plasma_electron_triton_mean_free_path_profile367)_ 4.02549525942169348e+04 +Electron-triton_mean_free_path_at_point_368______________________________ (len_plasma_electron_triton_mean_free_path_profile368)_ 3.98612150791726308e+04 +Electron-triton_mean_free_path_at_point_369______________________________ (len_plasma_electron_triton_mean_free_path_profile369)_ 3.94694015473499967e+04 +Electron-triton_mean_free_path_at_point_370______________________________ (len_plasma_electron_triton_mean_free_path_profile370)_ 3.90795320610117560e+04 +Electron-triton_mean_free_path_at_point_371______________________________ (len_plasma_electron_triton_mean_free_path_profile371)_ 3.86916266614043634e+04 +Electron-triton_mean_free_path_at_point_372______________________________ (len_plasma_electron_triton_mean_free_path_profile372)_ 3.83057053688608794e+04 +Electron-triton_mean_free_path_at_point_373______________________________ (len_plasma_electron_triton_mean_free_path_profile373)_ 3.79217881829942635e+04 +Electron-triton_mean_free_path_at_point_374______________________________ (len_plasma_electron_triton_mean_free_path_profile374)_ 3.75398950829843525e+04 +Electron-triton_mean_free_path_at_point_375______________________________ (len_plasma_electron_triton_mean_free_path_profile375)_ 3.71600460279667241e+04 +Electron-triton_mean_free_path_at_point_376______________________________ (len_plasma_electron_triton_mean_free_path_profile376)_ 3.67822609575330862e+04 +Electron-triton_mean_free_path_at_point_377______________________________ (len_plasma_electron_triton_mean_free_path_profile377)_ 3.64065597923442983e+04 +Electron-triton_mean_free_path_at_point_378______________________________ (len_plasma_electron_triton_mean_free_path_profile378)_ 3.60329624348723155e+04 +Electron-triton_mean_free_path_at_point_379______________________________ (len_plasma_electron_triton_mean_free_path_profile379)_ 3.56614887702738197e+04 +Electron-triton_mean_free_path_at_point_380______________________________ (len_plasma_electron_triton_mean_free_path_profile380)_ 3.52921586674075079e+04 +Electron-triton_mean_free_path_at_point_381______________________________ (len_plasma_electron_triton_mean_free_path_profile381)_ 3.49249919800050557e+04 +Electron-triton_mean_free_path_at_point_382______________________________ (len_plasma_electron_triton_mean_free_path_profile382)_ 3.45600085480053822e+04 +Electron-triton_mean_free_path_at_point_383______________________________ (len_plasma_electron_triton_mean_free_path_profile383)_ 3.41972281990644260e+04 +Electron-triton_mean_free_path_at_point_384______________________________ (len_plasma_electron_triton_mean_free_path_profile384)_ 3.38366707502526187e+04 +Electron-triton_mean_free_path_at_point_385______________________________ (len_plasma_electron_triton_mean_free_path_profile385)_ 3.34783560099532915e+04 +Electron-triton_mean_free_path_at_point_386______________________________ (len_plasma_electron_triton_mean_free_path_profile386)_ 3.31223037799750018e+04 +Electron-triton_mean_free_path_at_point_387______________________________ (len_plasma_electron_triton_mean_free_path_profile387)_ 3.27685338578950250e+04 +Electron-triton_mean_free_path_at_point_388______________________________ (len_plasma_electron_triton_mean_free_path_profile388)_ 3.24170660396471430e+04 +Electron-triton_mean_free_path_at_point_389______________________________ (len_plasma_electron_triton_mean_free_path_profile389)_ 3.20679201223737036e+04 +Electron-triton_mean_free_path_at_point_390______________________________ (len_plasma_electron_triton_mean_free_path_profile390)_ 3.17211159075588585e+04 +Electron-triton_mean_free_path_at_point_391______________________________ (len_plasma_electron_triton_mean_free_path_profile391)_ 3.13766732044639284e+04 +Electron-triton_mean_free_path_at_point_392______________________________ (len_plasma_electron_triton_mean_free_path_profile392)_ 3.10346118338849810e+04 +Electron-triton_mean_free_path_at_point_393______________________________ (len_plasma_electron_triton_mean_free_path_profile393)_ 3.06949516322569543e+04 +Electron-triton_mean_free_path_at_point_394______________________________ (len_plasma_electron_triton_mean_free_path_profile394)_ 3.03577124561294731e+04 +Electron-triton_mean_free_path_at_point_395______________________________ (len_plasma_electron_triton_mean_free_path_profile395)_ 3.00229141870377534e+04 +Electron-triton_mean_free_path_at_point_396______________________________ (len_plasma_electron_triton_mean_free_path_profile396)_ 2.96905767368018387e+04 +Electron-triton_mean_free_path_at_point_397______________________________ (len_plasma_electron_triton_mean_free_path_profile397)_ 2.93607200532825300e+04 +Electron-triton_mean_free_path_at_point_398______________________________ (len_plasma_electron_triton_mean_free_path_profile398)_ 2.90333641266268787e+04 +Electron-triton_mean_free_path_at_point_399______________________________ (len_plasma_electron_triton_mean_free_path_profile399)_ 2.87085289960406735e+04 +Electron-triton_mean_free_path_at_point_400______________________________ (len_plasma_electron_triton_mean_free_path_profile400)_ 2.83862347571278187e+04 +Electron-triton_mean_free_path_at_point_401______________________________ (len_plasma_electron_triton_mean_free_path_profile401)_ 2.80665015698352690e+04 +Electron-triton_mean_free_path_at_point_402______________________________ (len_plasma_electron_triton_mean_free_path_profile402)_ 2.77493496670532222e+04 +Electron-triton_mean_free_path_at_point_403______________________________ (len_plasma_electron_triton_mean_free_path_profile403)_ 2.74347993639180386e+04 +Electron-triton_mean_free_path_at_point_404______________________________ (len_plasma_electron_triton_mean_free_path_profile404)_ 2.71228710678699645e+04 +Electron-triton_mean_free_path_at_point_405______________________________ (len_plasma_electron_triton_mean_free_path_profile405)_ 2.68135852895291791e+04 +Electron-triton_mean_free_path_at_point_406______________________________ (len_plasma_electron_triton_mean_free_path_profile406)_ 2.65069626544469138e+04 +Electron-triton_mean_free_path_at_point_407______________________________ (len_plasma_electron_triton_mean_free_path_profile407)_ 2.62030239158063996e+04 +Electron-triton_mean_free_path_at_point_408______________________________ (len_plasma_electron_triton_mean_free_path_profile408)_ 2.59017899681442323e+04 +Electron-triton_mean_free_path_at_point_409______________________________ (len_plasma_electron_triton_mean_free_path_profile409)_ 2.56032818621784390e+04 +Electron-triton_mean_free_path_at_point_410______________________________ (len_plasma_electron_triton_mean_free_path_profile410)_ 2.53075208208279910e+04 +Electron-triton_mean_free_path_at_point_411______________________________ (len_plasma_electron_triton_mean_free_path_profile411)_ 2.50145282565264279e+04 +Electron-triton_mean_free_path_at_point_412______________________________ (len_plasma_electron_triton_mean_free_path_profile412)_ 2.47243257899328819e+04 +Electron-triton_mean_free_path_at_point_413______________________________ (len_plasma_electron_triton_mean_free_path_profile413)_ 2.44369352701599528e+04 +Electron-triton_mean_free_path_at_point_414______________________________ (len_plasma_electron_triton_mean_free_path_profile414)_ 2.41523787966467644e+04 +Electron-triton_mean_free_path_at_point_415______________________________ (len_plasma_electron_triton_mean_free_path_profile415)_ 2.38706787428187017e+04 +Electron-triton_mean_free_path_at_point_416______________________________ (len_plasma_electron_triton_mean_free_path_profile416)_ 2.35918577816905345e+04 +Electron-triton_mean_free_path_at_point_417______________________________ (len_plasma_electron_triton_mean_free_path_profile417)_ 2.33159389135838792e+04 +Electron-triton_mean_free_path_at_point_418______________________________ (len_plasma_electron_triton_mean_free_path_profile418)_ 2.30429454961504889e+04 +Electron-triton_mean_free_path_at_point_419______________________________ (len_plasma_electron_triton_mean_free_path_profile419)_ 2.27729012769094697e+04 +Electron-triton_mean_free_path_at_point_420______________________________ (len_plasma_electron_triton_mean_free_path_profile420)_ 2.25058304285338818e+04 +Electron-triton_mean_free_path_at_point_421______________________________ (len_plasma_electron_triton_mean_free_path_profile421)_ 2.22417575871434346e+04 +Electron-triton_mean_free_path_at_point_422______________________________ (len_plasma_electron_triton_mean_free_path_profile422)_ 2.19807078938918603e+04 +Electron-triton_mean_free_path_at_point_423______________________________ (len_plasma_electron_triton_mean_free_path_profile423)_ 2.17227070401708916e+04 +Electron-triton_mean_free_path_at_point_424______________________________ (len_plasma_electron_triton_mean_free_path_profile424)_ 2.14677813167868480e+04 +Electron-triton_mean_free_path_at_point_425______________________________ (len_plasma_electron_triton_mean_free_path_profile425)_ 2.12159576675131320e+04 +Electron-triton_mean_free_path_at_point_426______________________________ (len_plasma_electron_triton_mean_free_path_profile426)_ 2.09672637474682379e+04 +Electron-triton_mean_free_path_at_point_427______________________________ (len_plasma_electron_triton_mean_free_path_profile427)_ 2.07217279868252481e+04 +Electron-triton_mean_free_path_at_point_428______________________________ (len_plasma_electron_triton_mean_free_path_profile428)_ 2.04793796604248164e+04 +Electron-triton_mean_free_path_at_point_429______________________________ (len_plasma_electron_triton_mean_free_path_profile429)_ 2.02402489639362466e+04 +Electron-triton_mean_free_path_at_point_430______________________________ (len_plasma_electron_triton_mean_free_path_profile430)_ 2.00043670972985783e+04 +Electron-triton_mean_free_path_at_point_431______________________________ (len_plasma_electron_triton_mean_free_path_profile431)_ 1.97717663562742709e+04 +Electron-triton_mean_free_path_at_point_432______________________________ (len_plasma_electron_triton_mean_free_path_profile432)_ 1.95424802330641396e+04 +Electron-triton_mean_free_path_at_point_433______________________________ (len_plasma_electron_triton_mean_free_path_profile433)_ 1.93165435270681191e+04 +Electron-triton_mean_free_path_at_point_434______________________________ (len_plasma_electron_triton_mean_free_path_profile434)_ 1.90939924670390319e+04 +Electron-triton_mean_free_path_at_point_435______________________________ (len_plasma_electron_triton_mean_free_path_profile435)_ 1.88748648460620134e+04 +Electron-triton_mean_free_path_at_point_436______________________________ (len_plasma_electron_triton_mean_free_path_profile436)_ 1.86592001710225086e+04 +Electron-triton_mean_free_path_at_point_437______________________________ (len_plasma_electron_triton_mean_free_path_profile437)_ 1.84470398284834046e+04 +Electron-triton_mean_free_path_at_point_438______________________________ (len_plasma_electron_triton_mean_free_path_profile438)_ 1.82384272692206323e+04 +Electron-triton_mean_free_path_at_point_439______________________________ (len_plasma_electron_triton_mean_free_path_profile439)_ 1.80334082140409664e+04 +Electron-triton_mean_free_path_at_point_440______________________________ (len_plasma_electron_triton_mean_free_path_profile440)_ 1.78320308839745230e+04 +Electron-triton_mean_free_path_at_point_441______________________________ (len_plasma_electron_triton_mean_free_path_profile441)_ 1.76343462584927802e+04 +Electron-triton_mean_free_path_at_point_442______________________________ (len_plasma_electron_triton_mean_free_path_profile442)_ 1.74404083660944088e+04 +Electron-triton_mean_free_path_at_point_443______________________________ (len_plasma_electron_triton_mean_free_path_profile443)_ 1.72502746124418663e+04 +Electron-triton_mean_free_path_at_point_444______________________________ (len_plasma_electron_triton_mean_free_path_profile444)_ 1.70640061522863434e+04 +Electron-triton_mean_free_path_at_point_445______________________________ (len_plasma_electron_triton_mean_free_path_profile445)_ 1.68816683127229117e+04 +Electron-triton_mean_free_path_at_point_446______________________________ (len_plasma_electron_triton_mean_free_path_profile446)_ 1.67033310769632080e+04 +Electron-triton_mean_free_path_at_point_447______________________________ (len_plasma_electron_triton_mean_free_path_profile447)_ 1.65290696399096996e+04 +Electron-triton_mean_free_path_at_point_448______________________________ (len_plasma_electron_triton_mean_free_path_profile448)_ 1.63589650494792695e+04 +Electron-triton_mean_free_path_at_point_449______________________________ (len_plasma_electron_triton_mean_free_path_profile449)_ 1.61931049510997382e+04 +Electron-triton_mean_free_path_at_point_450______________________________ (len_plasma_electron_triton_mean_free_path_profile450)_ 1.60315844573128488e+04 +Electron-triton_mean_free_path_at_point_451______________________________ (len_plasma_electron_triton_mean_free_path_profile451)_ 1.58745071704155944e+04 +Electron-triton_mean_free_path_at_point_452______________________________ (len_plasma_electron_triton_mean_free_path_profile452)_ 1.57219863940820924e+04 +Electron-triton_mean_free_path_at_point_453______________________________ (len_plasma_electron_triton_mean_free_path_profile453)_ 1.55741465808098983e+04 +Electron-triton_mean_free_path_at_point_454______________________________ (len_plasma_electron_triton_mean_free_path_profile454)_ 1.54311250770594797e+04 +Electron-triton_mean_free_path_at_point_455______________________________ (len_plasma_electron_triton_mean_free_path_profile455)_ 1.52930742490593075e+04 +Electron-triton_mean_free_path_at_point_456______________________________ (len_plasma_electron_triton_mean_free_path_profile456)_ 1.51601641024126457e+04 +Electron-triton_mean_free_path_at_point_457______________________________ (len_plasma_electron_triton_mean_free_path_profile457)_ 1.50325855527291351e+04 +Electron-triton_mean_free_path_at_point_458______________________________ (len_plasma_electron_triton_mean_free_path_profile458)_ 1.49105545704588785e+04 +Electron-triton_mean_free_path_at_point_459______________________________ (len_plasma_electron_triton_mean_free_path_profile459)_ 1.47943175245349485e+04 +Electron-triton_mean_free_path_at_point_460______________________________ (len_plasma_electron_triton_mean_free_path_profile460)_ 1.46841582103493984e+04 +Electron-triton_mean_free_path_at_point_461______________________________ (len_plasma_electron_triton_mean_free_path_profile461)_ 1.45804073123356447e+04 +Electron-triton_mean_free_path_at_point_462______________________________ (len_plasma_electron_triton_mean_free_path_profile462)_ 1.44834555060189305e+04 +Electron-triton_mean_free_path_at_point_463______________________________ (len_plasma_electron_triton_mean_free_path_profile463)_ 1.43937722258153499e+04 +Electron-triton_mean_free_path_at_point_464______________________________ (len_plasma_electron_triton_mean_free_path_profile464)_ 1.43119337044370295e+04 +Electron-triton_mean_free_path_at_point_465______________________________ (len_plasma_electron_triton_mean_free_path_profile465)_ 1.42386671728993551e+04 +Electron-triton_mean_free_path_at_point_466______________________________ (len_plasma_electron_triton_mean_free_path_profile466)_ 1.41749256557746630e+04 +Electron-triton_mean_free_path_at_point_467______________________________ (len_plasma_electron_triton_mean_free_path_profile467)_ 1.41220276707910962e+04 +Electron-triton_mean_free_path_at_point_468______________________________ (len_plasma_electron_triton_mean_free_path_profile468)_ 1.40819600233373803e+04 +Electron-triton_mean_free_path_at_point_469______________________________ (len_plasma_electron_triton_mean_free_path_profile469)_ 1.40582289554550134e+04 +Electron-triton_mean_free_path_at_point_470______________________________ (len_plasma_electron_triton_mean_free_path_profile470)_ 1.40610674440808743e+04 +Electron-triton_mean_free_path_at_point_471______________________________ (len_plasma_electron_triton_mean_free_path_profile471)_ 1.33627488488697345e+04 +Electron-triton_mean_free_path_at_point_472______________________________ (len_plasma_electron_triton_mean_free_path_profile472)_ 1.26733178100530295e+04 +Electron-triton_mean_free_path_at_point_473______________________________ (len_plasma_electron_triton_mean_free_path_profile473)_ 1.19932101418005095e+04 +Electron-triton_mean_free_path_at_point_474______________________________ (len_plasma_electron_triton_mean_free_path_profile474)_ 1.13228885514402482e+04 +Electron-triton_mean_free_path_at_point_475______________________________ (len_plasma_electron_triton_mean_free_path_profile475)_ 1.06628447585406739e+04 +Electron-triton_mean_free_path_at_point_476______________________________ (len_plasma_electron_triton_mean_free_path_profile476)_ 1.00136018221859977e+04 +Electron-triton_mean_free_path_at_point_477______________________________ (len_plasma_electron_triton_mean_free_path_profile477)_ 9.37571670173256825e+03 +Electron-triton_mean_free_path_at_point_478______________________________ (len_plasma_electron_triton_mean_free_path_profile478)_ 8.74978308014874710e+03 +Electron-triton_mean_free_path_at_point_479______________________________ (len_plasma_electron_triton_mean_free_path_profile479)_ 8.13643448359594368e+03 +Electron-triton_mean_free_path_at_point_480______________________________ (len_plasma_electron_triton_mean_free_path_profile480)_ 7.53634773637323997e+03 +Electron-triton_mean_free_path_at_point_481______________________________ (len_plasma_electron_triton_mean_free_path_profile481)_ 6.95024679696051862e+03 +Electron-triton_mean_free_path_at_point_482______________________________ (len_plasma_electron_triton_mean_free_path_profile482)_ 6.37890702898098152e+03 +Electron-triton_mean_free_path_at_point_483______________________________ (len_plasma_electron_triton_mean_free_path_profile483)_ 5.82315997088908989e+03 +Electron-triton_mean_free_path_at_point_484______________________________ (len_plasma_electron_triton_mean_free_path_profile484)_ 5.28389868068321175e+03 +Electron-triton_mean_free_path_at_point_485______________________________ (len_plasma_electron_triton_mean_free_path_profile485)_ 4.76208374780006216e+03 +Electron-triton_mean_free_path_at_point_486______________________________ (len_plasma_electron_triton_mean_free_path_profile486)_ 4.25875008480272936e+03 +Electron-triton_mean_free_path_at_point_487______________________________ (len_plasma_electron_triton_mean_free_path_profile487)_ 3.77501463838287145e+03 +Electron-triton_mean_free_path_at_point_488______________________________ (len_plasma_electron_triton_mean_free_path_profile488)_ 3.31208519538266683e+03 +Electron-triton_mean_free_path_at_point_489______________________________ (len_plasma_electron_triton_mean_free_path_profile489)_ 2.87127050947686985e+03 +Electron-triton_mean_free_path_at_point_490______________________________ (len_plasma_electron_triton_mean_free_path_profile490)_ 2.45399204516771897e+03 +Electron-triton_mean_free_path_at_point_491______________________________ (len_plasma_electron_triton_mean_free_path_profile491)_ 2.06179774032490604e+03 +Electron-triton_mean_free_path_at_point_492______________________________ (len_plasma_electron_triton_mean_free_path_profile492)_ 1.69637834897191192e+03 +Electron-triton_mean_free_path_at_point_493______________________________ (len_plasma_electron_triton_mean_free_path_profile493)_ 1.35958718438713095e+03 +Electron-triton_mean_free_path_at_point_494______________________________ (len_plasma_electron_triton_mean_free_path_profile494)_ 1.05346452315684746e+03 +Electron-triton_mean_free_path_at_point_495______________________________ (len_plasma_electron_triton_mean_free_path_profile495)_ 7.80268735936354801e+02 +Electron-triton_mean_free_path_at_point_496______________________________ (len_plasma_electron_triton_mean_free_path_profile496)_ 5.42517813865321727e+02 +Electron-triton_mean_free_path_at_point_497______________________________ (len_plasma_electron_triton_mean_free_path_profile497)_ 3.43048524552312927e+02 +Electron-triton_mean_free_path_at_point_498______________________________ (len_plasma_electron_triton_mean_free_path_profile498)_ 1.85109645654323174e+02 +Electron-triton_mean_free_path_at_point_499______________________________ (len_plasma_electron_triton_mean_free_path_profile499)_ 7.25355597374380352e+01 +Electron-triton_mean_free_path_at_point_500______________________________ (len_plasma_electron_triton_mean_free_path_profile500)_ 1.01924252801034161e+01 +Volume_averaged_electron-alpha_thermal_mean_free_path_(λₑα)_(m)__________ (len_plasma_electron_alpha_thermal_mean_free_path_vol_avg)_ 7.05605290139802382e+04 +Electron-alpha_thermal_mean_free_path_at_point_0_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile0)_ 2.16872498902259773e+05 +Electron-alpha_thermal_mean_free_path_at_point_1_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile1)_ 2.16870744914624345e+05 +Electron-alpha_thermal_mean_free_path_at_point_2_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile2)_ 2.16865482999931235e+05 +Electron-alpha_thermal_mean_free_path_at_point_3_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile3)_ 2.16856713302817894e+05 +Electron-alpha_thermal_mean_free_path_at_point_4_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile4)_ 2.16844436064346752e+05 +Electron-alpha_thermal_mean_free_path_at_point_5_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile5)_ 2.16828651622006524e+05 +Electron-alpha_thermal_mean_free_path_at_point_6_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile6)_ 2.16809360409710847e+05 +Electron-alpha_thermal_mean_free_path_at_point_7_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile7)_ 2.16786562957799237e+05 +Electron-alpha_thermal_mean_free_path_at_point_8_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile8)_ 2.16760259893039183e+05 +Electron-alpha_thermal_mean_free_path_at_point_9_________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile9)_ 2.16730451938623417e+05 +Electron-alpha_thermal_mean_free_path_at_point_10________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile10)_ 2.16697139914173225e+05 +Electron-alpha_thermal_mean_free_path_at_point_11________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile11)_ 2.16660324735739152e+05 +Electron-alpha_thermal_mean_free_path_at_point_12________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile12)_ 2.16620007415799017e+05 +Electron-alpha_thermal_mean_free_path_at_point_13________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile13)_ 2.16576189063261932e+05 +Electron-alpha_thermal_mean_free_path_at_point_14________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile14)_ 2.16528870883467607e+05 +Electron-alpha_thermal_mean_free_path_at_point_15________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile15)_ 2.16478054178187653e+05 +Electron-alpha_thermal_mean_free_path_at_point_16________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile16)_ 2.16423740345627273e+05 +Electron-alpha_thermal_mean_free_path_at_point_17________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile17)_ 2.16365930880424770e+05 +Electron-alpha_thermal_mean_free_path_at_point_18________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile18)_ 2.16304627373654774e+05 +Electron-alpha_thermal_mean_free_path_at_point_19________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile19)_ 2.16239831512828445e+05 +Electron-alpha_thermal_mean_free_path_at_point_20________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile20)_ 2.16171545081894699e+05 +Electron-alpha_thermal_mean_free_path_at_point_21________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile21)_ 2.16099769961241836e+05 +Electron-alpha_thermal_mean_free_path_at_point_22________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile22)_ 2.16024508127699693e+05 +Electron-alpha_thermal_mean_free_path_at_point_23________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile23)_ 2.15945761654540052e+05 +Electron-alpha_thermal_mean_free_path_at_point_24________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile24)_ 2.15863532711479114e+05 +Electron-alpha_thermal_mean_free_path_at_point_25________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile25)_ 2.15777823564679653e+05 +Electron-alpha_thermal_mean_free_path_at_point_26________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile26)_ 2.15688636576750112e+05 +Electron-alpha_thermal_mean_free_path_at_point_27________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile27)_ 2.15595974206749001e+05 +Electron-alpha_thermal_mean_free_path_at_point_28________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile28)_ 2.15499839010187337e+05 +Electron-alpha_thermal_mean_free_path_at_point_29________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile29)_ 2.15400233639026817e+05 +Electron-alpha_thermal_mean_free_path_at_point_30________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile30)_ 2.15297160841685167e+05 +Electron-alpha_thermal_mean_free_path_at_point_31________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile31)_ 2.15190623463037336e+05 +Electron-alpha_thermal_mean_free_path_at_point_32________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile32)_ 2.15080624444415647e+05 +Electron-alpha_thermal_mean_free_path_at_point_33________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile33)_ 2.14967166823614505e+05 +Electron-alpha_thermal_mean_free_path_at_point_34________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile34)_ 2.14850253734890255e+05 +Electron-alpha_thermal_mean_free_path_at_point_35________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile35)_ 2.14729888408964558e+05 +Electron-alpha_thermal_mean_free_path_at_point_36________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile36)_ 2.14606074173025467e+05 +Electron-alpha_thermal_mean_free_path_at_point_37________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile37)_ 2.14478814450731006e+05 +Electron-alpha_thermal_mean_free_path_at_point_38________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile38)_ 2.14348112762209785e+05 +Electron-alpha_thermal_mean_free_path_at_point_39________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile39)_ 2.14213972724063380e+05 +Electron-alpha_thermal_mean_free_path_at_point_40________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile40)_ 2.14076398049369076e+05 +Electron-alpha_thermal_mean_free_path_at_point_41________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile41)_ 2.13935392547681258e+05 +Electron-alpha_thermal_mean_free_path_at_point_42________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile42)_ 2.13790960125035490e+05 +Electron-alpha_thermal_mean_free_path_at_point_43________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile43)_ 2.13643104783946241e+05 +Electron-alpha_thermal_mean_free_path_at_point_44________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile44)_ 2.13491830623414600e+05 +Electron-alpha_thermal_mean_free_path_at_point_45________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile45)_ 2.13337141838926211e+05 +Electron-alpha_thermal_mean_free_path_at_point_46________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile46)_ 2.13179042722454760e+05 +Electron-alpha_thermal_mean_free_path_at_point_47________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile47)_ 2.13017537662463816e+05 +Electron-alpha_thermal_mean_free_path_at_point_48________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile48)_ 2.12852631143909821e+05 +Electron-alpha_thermal_mean_free_path_at_point_49________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile49)_ 2.12684327748241805e+05 +Electron-alpha_thermal_mean_free_path_at_point_50________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile50)_ 2.12512632153405575e+05 +Electron-alpha_thermal_mean_free_path_at_point_51________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile51)_ 2.12337549133844412e+05 +Electron-alpha_thermal_mean_free_path_at_point_52________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile52)_ 2.12159083560500352e+05 +Electron-alpha_thermal_mean_free_path_at_point_53________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile53)_ 2.11977240400818497e+05 +Electron-alpha_thermal_mean_free_path_at_point_54________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile54)_ 2.11792024718744971e+05 +Electron-alpha_thermal_mean_free_path_at_point_55________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile55)_ 2.11603441674730857e+05 +Electron-alpha_thermal_mean_free_path_at_point_56________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile56)_ 2.11411496525733819e+05 +Electron-alpha_thermal_mean_free_path_at_point_57________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile57)_ 2.11216194625217846e+05 +Electron-alpha_thermal_mean_free_path_at_point_58________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile58)_ 2.11017541423157556e+05 +Electron-alpha_thermal_mean_free_path_at_point_59________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile59)_ 2.10815542466035200e+05 +Electron-alpha_thermal_mean_free_path_at_point_60________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile60)_ 2.10610203396845289e+05 +Electron-alpha_thermal_mean_free_path_at_point_61________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile61)_ 2.10401529955094680e+05 +Electron-alpha_thermal_mean_free_path_at_point_62________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile62)_ 2.10189527976801939e+05 +Electron-alpha_thermal_mean_free_path_at_point_63________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile63)_ 2.09974203394501033e+05 +Electron-alpha_thermal_mean_free_path_at_point_64________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile64)_ 2.09755562237239006e+05 +Electron-alpha_thermal_mean_free_path_at_point_65________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile65)_ 2.09533610630577430e+05 +Electron-alpha_thermal_mean_free_path_at_point_66________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile66)_ 2.09308354796593718e+05 +Electron-alpha_thermal_mean_free_path_at_point_67________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile67)_ 2.09079801053880015e+05 +Electron-alpha_thermal_mean_free_path_at_point_68________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile68)_ 2.08847955817544454e+05 +Electron-alpha_thermal_mean_free_path_at_point_69________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile69)_ 2.08612825599209056e+05 +Electron-alpha_thermal_mean_free_path_at_point_70________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile70)_ 2.08374417007010488e+05 +Electron-alpha_thermal_mean_free_path_at_point_71________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile71)_ 2.08132736745600385e+05 +Electron-alpha_thermal_mean_free_path_at_point_72________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile72)_ 2.07887791616142000e+05 +Electron-alpha_thermal_mean_free_path_at_point_73________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile73)_ 2.07639588516312651e+05 +Electron-alpha_thermal_mean_free_path_at_point_74________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile74)_ 2.07388134440299938e+05 +Electron-alpha_thermal_mean_free_path_at_point_75________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile75)_ 2.07133436478799122e+05 +Electron-alpha_thermal_mean_free_path_at_point_76________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile76)_ 2.06875501819016703e+05 +Electron-alpha_thermal_mean_free_path_at_point_77________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile77)_ 2.06614337744662771e+05 +Electron-alpha_thermal_mean_free_path_at_point_78________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile78)_ 2.06349951635951234e+05 +Electron-alpha_thermal_mean_free_path_at_point_79________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile79)_ 2.06082350969597261e+05 +Electron-alpha_thermal_mean_free_path_at_point_80________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile80)_ 2.05811543318815617e+05 +Electron-alpha_thermal_mean_free_path_at_point_81________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile81)_ 2.05537536353315198e+05 +Electron-alpha_thermal_mean_free_path_at_point_82________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile82)_ 2.05260337839296466e+05 +Electron-alpha_thermal_mean_free_path_at_point_83________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile83)_ 2.04979955639449967e+05 +Electron-alpha_thermal_mean_free_path_at_point_84________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile84)_ 2.04696397712949838e+05 +Electron-alpha_thermal_mean_free_path_at_point_85________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile85)_ 2.04409672115449561e+05 +Electron-alpha_thermal_mean_free_path_at_point_86________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile86)_ 2.04119786999078467e+05 +Electron-alpha_thermal_mean_free_path_at_point_87________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile87)_ 2.03826750612436794e+05 +Electron-alpha_thermal_mean_free_path_at_point_88________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile88)_ 2.03530571300589130e+05 +Electron-alpha_thermal_mean_free_path_at_point_89________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile89)_ 2.03231257505060261e+05 +Electron-alpha_thermal_mean_free_path_at_point_90________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile90)_ 2.02928817763826140e+05 +Electron-alpha_thermal_mean_free_path_at_point_91________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile91)_ 2.02623260711310693e+05 +Electron-alpha_thermal_mean_free_path_at_point_92________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile92)_ 2.02314595078377024e+05 +Electron-alpha_thermal_mean_free_path_at_point_93________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile93)_ 2.02002829692320811e+05 +Electron-alpha_thermal_mean_free_path_at_point_94________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile94)_ 2.01687973476860992e+05 +Electron-alpha_thermal_mean_free_path_at_point_95________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile95)_ 2.01370035452132812e+05 +Electron-alpha_thermal_mean_free_path_at_point_96________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile96)_ 2.01049024734679435e+05 +Electron-alpha_thermal_mean_free_path_at_point_97________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile97)_ 2.00724950537440629e+05 +Electron-alpha_thermal_mean_free_path_at_point_98________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile98)_ 2.00397822169745341e+05 +Electron-alpha_thermal_mean_free_path_at_point_99________________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile99)_ 2.00067649037300609e+05 +Electron-alpha_thermal_mean_free_path_at_point_100_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile100)_ 1.99734440642179514e+05 +Electron-alpha_thermal_mean_free_path_at_point_101_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile101)_ 1.99398206582811865e+05 +Electron-alpha_thermal_mean_free_path_at_point_102_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile102)_ 1.99058956553971104e+05 +Electron-alpha_thermal_mean_free_path_at_point_103_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile103)_ 1.98716700346762809e+05 +Electron-alpha_thermal_mean_free_path_at_point_104_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile104)_ 1.98371447848610027e+05 +Electron-alpha_thermal_mean_free_path_at_point_105_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile105)_ 1.98023209043241222e+05 +Electron-alpha_thermal_mean_free_path_at_point_106_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile106)_ 1.97671994010676310e+05 +Electron-alpha_thermal_mean_free_path_at_point_107_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile107)_ 1.97317812927209481e+05 +Electron-alpha_thermal_mean_free_path_at_point_108_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile108)_ 1.96960676065397041e+05 +Electron-alpha_thermal_mean_free_path_at_point_109_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile109)_ 1.96600593794038490e+05 +Electron-alpha_thermal_mean_free_path_at_point_110_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile110)_ 1.96237576578160515e+05 +Electron-alpha_thermal_mean_free_path_at_point_111_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile111)_ 1.95871634979000548e+05 +Electron-alpha_thermal_mean_free_path_at_point_112_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile112)_ 1.95502779653987731e+05 +Electron-alpha_thermal_mean_free_path_at_point_113_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile113)_ 1.95131021356723650e+05 +Electron-alpha_thermal_mean_free_path_at_point_114_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile114)_ 1.94756370936962572e+05 +Electron-alpha_thermal_mean_free_path_at_point_115_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile115)_ 1.94378839340592356e+05 +Electron-alpha_thermal_mean_free_path_at_point_116_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile116)_ 1.93998437609611079e+05 +Electron-alpha_thermal_mean_free_path_at_point_117_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile117)_ 1.93615176882108179e+05 +Electron-alpha_thermal_mean_free_path_at_point_118_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile118)_ 1.93229068392238027e+05 +Electron-alpha_thermal_mean_free_path_at_point_119_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile119)_ 1.92840123470198334e+05 +Electron-alpha_thermal_mean_free_path_at_point_120_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile120)_ 1.92448353542205412e+05 +Electron-alpha_thermal_mean_free_path_at_point_121_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile121)_ 1.92053770130469551e+05 +Electron-alpha_thermal_mean_free_path_at_point_122_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile122)_ 1.91656384853166586e+05 +Electron-alpha_thermal_mean_free_path_at_point_123_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile123)_ 1.91256209424412606e+05 +Electron-alpha_thermal_mean_free_path_at_point_124_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile124)_ 1.90853255654235661e+05 +Electron-alpha_thermal_mean_free_path_at_point_125_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile125)_ 1.90447535448545357e+05 +Electron-alpha_thermal_mean_free_path_at_point_126_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile126)_ 1.90039060809105315e+05 +Electron-alpha_thermal_mean_free_path_at_point_127_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile127)_ 1.89627843833499035e+05 +Electron-alpha_thermal_mean_free_path_at_point_128_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile128)_ 1.89213896715101379e+05 +Electron-alpha_thermal_mean_free_path_at_point_129_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile129)_ 1.88797231743042590e+05 +Electron-alpha_thermal_mean_free_path_at_point_130_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile130)_ 1.88377861302175297e+05 +Electron-alpha_thermal_mean_free_path_at_point_131_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile131)_ 1.87955797873040254e+05 +Electron-alpha_thermal_mean_free_path_at_point_132_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile132)_ 1.87531054031828331e+05 +Electron-alpha_thermal_mean_free_path_at_point_133_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile133)_ 1.87103642450344487e+05 +Electron-alpha_thermal_mean_free_path_at_point_134_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile134)_ 1.86673575895968825e+05 +Electron-alpha_thermal_mean_free_path_at_point_135_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile135)_ 1.86240867231616488e+05 +Electron-alpha_thermal_mean_free_path_at_point_136_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile136)_ 1.85805529415698285e+05 +Electron-alpha_thermal_mean_free_path_at_point_137_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile137)_ 1.85367575502076012e+05 +Electron-alpha_thermal_mean_free_path_at_point_138_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile138)_ 1.84927018640021852e+05 +Electron-alpha_thermal_mean_free_path_at_point_139_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile139)_ 1.84483872074172134e+05 +Electron-alpha_thermal_mean_free_path_at_point_140_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile140)_ 1.84038149144481547e+05 +Electron-alpha_thermal_mean_free_path_at_point_141_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile141)_ 1.83589863286177075e+05 +Electron-alpha_thermal_mean_free_path_at_point_142_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile142)_ 1.83139028029708017e+05 +Electron-alpha_thermal_mean_free_path_at_point_143_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile143)_ 1.82685657000697393e+05 +Electron-alpha_thermal_mean_free_path_at_point_144_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile144)_ 1.82229763919890043e+05 +Electron-alpha_thermal_mean_free_path_at_point_145_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile145)_ 1.81771362603099697e+05 +Electron-alpha_thermal_mean_free_path_at_point_146_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile146)_ 1.81310466961155820e+05 +Electron-alpha_thermal_mean_free_path_at_point_147_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile147)_ 1.80847090999847220e+05 +Electron-alpha_thermal_mean_free_path_at_point_148_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile148)_ 1.80381248819864122e+05 +Electron-alpha_thermal_mean_free_path_at_point_149_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile149)_ 1.79912954616741918e+05 +Electron-alpha_thermal_mean_free_path_at_point_150_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile150)_ 1.79442222680799721e+05 +Electron-alpha_thermal_mean_free_path_at_point_151_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile151)_ 1.78969067397077568e+05 +Electron-alpha_thermal_mean_free_path_at_point_152_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile152)_ 1.78493503245275468e+05 +Electron-alpha_thermal_mean_free_path_at_point_153_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile153)_ 1.78015544799686002e+05 +Electron-alpha_thermal_mean_free_path_at_point_154_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile154)_ 1.77535206729129102e+05 +Electron-alpha_thermal_mean_free_path_at_point_155_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile155)_ 1.77052503796883742e+05 +Electron-alpha_thermal_mean_free_path_at_point_156_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile156)_ 1.76567450860616518e+05 +Electron-alpha_thermal_mean_free_path_at_point_157_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile157)_ 1.76080062872311944e+05 +Electron-alpha_thermal_mean_free_path_at_point_158_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile158)_ 1.75590354878197220e+05 +Electron-alpha_thermal_mean_free_path_at_point_159_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile159)_ 1.75098342018666212e+05 +Electron-alpha_thermal_mean_free_path_at_point_160_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile160)_ 1.74604039528204739e+05 +Electron-alpha_thermal_mean_free_path_at_point_161_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile161)_ 1.74107462735308800e+05 +Electron-alpha_thermal_mean_free_path_at_point_162_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile162)_ 1.73608627062404208e+05 +Electron-alpha_thermal_mean_free_path_at_point_163_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile163)_ 1.73107548025764961e+05 +Electron-alpha_thermal_mean_free_path_at_point_164_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile164)_ 1.72604241235425143e+05 +Electron-alpha_thermal_mean_free_path_at_point_165_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile165)_ 1.72098722395094752e+05 +Electron-alpha_thermal_mean_free_path_at_point_166_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile166)_ 1.71591007302069338e+05 +Electron-alpha_thermal_mean_free_path_at_point_167_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile167)_ 1.71081111847138556e+05 +Electron-alpha_thermal_mean_free_path_at_point_168_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile168)_ 1.70569052014493122e+05 +Electron-alpha_thermal_mean_free_path_at_point_169_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile169)_ 1.70054843881628738e+05 +Electron-alpha_thermal_mean_free_path_at_point_170_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile170)_ 1.69538503619249910e+05 +Electron-alpha_thermal_mean_free_path_at_point_171_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile171)_ 1.69020047491167614e+05 +Electron-alpha_thermal_mean_free_path_at_point_172_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile172)_ 1.68499491854199208e+05 +Electron-alpha_thermal_mean_free_path_at_point_173_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile173)_ 1.67976853158062208e+05 +Electron-alpha_thermal_mean_free_path_at_point_174_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile174)_ 1.67452147945268109e+05 +Electron-alpha_thermal_mean_free_path_at_point_175_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile175)_ 1.66925392851013690e+05 +Electron-alpha_thermal_mean_free_path_at_point_176_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile176)_ 1.66396604603067477e+05 +Electron-alpha_thermal_mean_free_path_at_point_177_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile177)_ 1.65865800021657604e+05 +Electron-alpha_thermal_mean_free_path_at_point_178_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile178)_ 1.65332996019352489e+05 +Electron-alpha_thermal_mean_free_path_at_point_179_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile179)_ 1.64798209600944596e+05 +Electron-alpha_thermal_mean_free_path_at_point_180_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile180)_ 1.64261457863326126e+05 +Electron-alpha_thermal_mean_free_path_at_point_181_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile181)_ 1.63722757995365042e+05 +Electron-alpha_thermal_mean_free_path_at_point_182_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile182)_ 1.63182127277778753e+05 +Electron-alpha_thermal_mean_free_path_at_point_183_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile183)_ 1.62639583083002915e+05 +Electron-alpha_thermal_mean_free_path_at_point_184_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile184)_ 1.62095142875059129e+05 +Electron-alpha_thermal_mean_free_path_at_point_185_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile185)_ 1.61548824209420010e+05 +Electron-alpha_thermal_mean_free_path_at_point_186_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile186)_ 1.61000644732869638e+05 +Electron-alpha_thermal_mean_free_path_at_point_187_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile187)_ 1.60450622183363099e+05 +Electron-alpha_thermal_mean_free_path_at_point_188_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile188)_ 1.59898774389881844e+05 +Electron-alpha_thermal_mean_free_path_at_point_189_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile189)_ 1.59345119272286014e+05 +Electron-alpha_thermal_mean_free_path_at_point_190_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile190)_ 1.58789674841165775e+05 +Electron-alpha_thermal_mean_free_path_at_point_191_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile191)_ 1.58232459197686170e+05 +Electron-alpha_thermal_mean_free_path_at_point_192_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile192)_ 1.57673490533430071e+05 +Electron-alpha_thermal_mean_free_path_at_point_193_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile193)_ 1.57112787130240962e+05 +Electron-alpha_thermal_mean_free_path_at_point_194_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile194)_ 1.56550367360057193e+05 +Electron-alpha_thermal_mean_free_path_at_point_195_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile195)_ 1.55986249684748385e+05 +Electron-alpha_thermal_mean_free_path_at_point_196_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile196)_ 1.55420452655942994e+05 +Electron-alpha_thermal_mean_free_path_at_point_197_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile197)_ 1.54852994914857351e+05 +Electron-alpha_thermal_mean_free_path_at_point_198_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile198)_ 1.54283895192118158e+05 +Electron-alpha_thermal_mean_free_path_at_point_199_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile199)_ 1.53713172307583241e+05 +Electron-alpha_thermal_mean_free_path_at_point_200_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile200)_ 1.53140845170157612e+05 +Electron-alpha_thermal_mean_free_path_at_point_201_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile201)_ 1.52566932777605572e+05 +Electron-alpha_thermal_mean_free_path_at_point_202_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile202)_ 1.51991454216361191e+05 +Electron-alpha_thermal_mean_free_path_at_point_203_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile203)_ 1.51414428661334241e+05 +Electron-alpha_thermal_mean_free_path_at_point_204_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile204)_ 1.50835875375709787e+05 +Electron-alpha_thermal_mean_free_path_at_point_205_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile205)_ 1.50255813710747781e+05 +Electron-alpha_thermal_mean_free_path_at_point_206_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile206)_ 1.49674263105576392e+05 +Electron-alpha_thermal_mean_free_path_at_point_207_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile207)_ 1.49091243086981878e+05 +Electron-alpha_thermal_mean_free_path_at_point_208_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile208)_ 1.48506773269196245e+05 +Electron-alpha_thermal_mean_free_path_at_point_209_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile209)_ 1.47920873353677074e+05 +Electron-alpha_thermal_mean_free_path_at_point_210_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile210)_ 1.47333563128886133e+05 +Electron-alpha_thermal_mean_free_path_at_point_211_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile211)_ 1.46744862470063934e+05 +Electron-alpha_thermal_mean_free_path_at_point_212_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile212)_ 1.46154791338997806e+05 +Electron-alpha_thermal_mean_free_path_at_point_213_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile213)_ 1.45563369783789007e+05 +Electron-alpha_thermal_mean_free_path_at_point_214_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile214)_ 1.44970617938610085e+05 +Electron-alpha_thermal_mean_free_path_at_point_215_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile215)_ 1.44376556023465586e+05 +Electron-alpha_thermal_mean_free_path_at_point_216_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile216)_ 1.43781204343940190e+05 +Electron-alpha_thermal_mean_free_path_at_point_217_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile217)_ 1.43184583290948183e+05 +Electron-alpha_thermal_mean_free_path_at_point_218_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile218)_ 1.42586713340475224e+05 +Electron-alpha_thermal_mean_free_path_at_point_219_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile219)_ 1.41987615053315763e+05 +Electron-alpha_thermal_mean_free_path_at_point_220_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile220)_ 1.41387309074808902e+05 +Electron-alpha_thermal_mean_free_path_at_point_221_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile221)_ 1.40785816134562483e+05 +Electron-alpha_thermal_mean_free_path_at_point_222_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile222)_ 1.40183157046180509e+05 +Electron-alpha_thermal_mean_free_path_at_point_223_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile223)_ 1.39579352706979553e+05 +Electron-alpha_thermal_mean_free_path_at_point_224_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile224)_ 1.38974424097702838e+05 +Electron-alpha_thermal_mean_free_path_at_point_225_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile225)_ 1.38368392282227869e+05 +Electron-alpha_thermal_mean_free_path_at_point_226_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile226)_ 1.37761278407271981e+05 +Electron-alpha_thermal_mean_free_path_at_point_227_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile227)_ 1.37153103702087072e+05 +Electron-alpha_thermal_mean_free_path_at_point_228_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile228)_ 1.36543889478154131e+05 +Electron-alpha_thermal_mean_free_path_at_point_229_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile229)_ 1.35933657128870604e+05 +Electron-alpha_thermal_mean_free_path_at_point_230_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile230)_ 1.35322428129231819e+05 +Electron-alpha_thermal_mean_free_path_at_point_231_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile231)_ 1.34710224035506428e+05 +Electron-alpha_thermal_mean_free_path_at_point_232_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile232)_ 1.34097066484908573e+05 +Electron-alpha_thermal_mean_free_path_at_point_233_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile233)_ 1.33482977195260930e+05 +Electron-alpha_thermal_mean_free_path_at_point_234_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile234)_ 1.32867977964656107e+05 +Electron-alpha_thermal_mean_free_path_at_point_235_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile235)_ 1.32252090671108628e+05 +Electron-alpha_thermal_mean_free_path_at_point_236_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile236)_ 1.31635337272201636e+05 +Electron-alpha_thermal_mean_free_path_at_point_237_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile237)_ 1.31017739804730067e+05 +Electron-alpha_thermal_mean_free_path_at_point_238_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile238)_ 1.30399320384334627e+05 +Electron-alpha_thermal_mean_free_path_at_point_239_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile239)_ 1.29780101205131592e+05 +Electron-alpha_thermal_mean_free_path_at_point_240_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile240)_ 1.29160104539335385e+05 +Electron-alpha_thermal_mean_free_path_at_point_241_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile241)_ 1.28539352736875575e+05 +Electron-alpha_thermal_mean_free_path_at_point_242_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile242)_ 1.27917868225006125e+05 +Electron-alpha_thermal_mean_free_path_at_point_243_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile243)_ 1.27295673507911080e+05 +Electron-alpha_thermal_mean_free_path_at_point_244_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile244)_ 1.26672791166298281e+05 +Electron-alpha_thermal_mean_free_path_at_point_245_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile245)_ 1.26049243856994086e+05 +Electron-alpha_thermal_mean_free_path_at_point_246_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile246)_ 1.25425054312524080e+05 +Electron-alpha_thermal_mean_free_path_at_point_247_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile247)_ 1.24800245340690351e+05 +Electron-alpha_thermal_mean_free_path_at_point_248_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile248)_ 1.24174839824143593e+05 +Electron-alpha_thermal_mean_free_path_at_point_249_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile249)_ 1.23548860719942561e+05 +Electron-alpha_thermal_mean_free_path_at_point_250_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile250)_ 1.22922331059113349e+05 +Electron-alpha_thermal_mean_free_path_at_point_251_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile251)_ 1.22295273946196990e+05 +Electron-alpha_thermal_mean_free_path_at_point_252_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile252)_ 1.21667712558790692e+05 +Electron-alpha_thermal_mean_free_path_at_point_253_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile253)_ 1.21039670147081357e+05 +Electron-alpha_thermal_mean_free_path_at_point_254_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile254)_ 1.20411170033374830e+05 +Electron-alpha_thermal_mean_free_path_at_point_255_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile255)_ 1.19782235611611351e+05 +Electron-alpha_thermal_mean_free_path_at_point_256_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile256)_ 1.19152890346881832e+05 +Electron-alpha_thermal_mean_free_path_at_point_257_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile257)_ 1.18523157774927880e+05 +Electron-alpha_thermal_mean_free_path_at_point_258_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile258)_ 1.17893061501639691e+05 +Electron-alpha_thermal_mean_free_path_at_point_259_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile259)_ 1.17262625202544659e+05 +Electron-alpha_thermal_mean_free_path_at_point_260_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile260)_ 1.16631872622286712e+05 +Electron-alpha_thermal_mean_free_path_at_point_261_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile261)_ 1.16000827574099589e+05 +Electron-alpha_thermal_mean_free_path_at_point_262_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile262)_ 1.15369513939270546e+05 +Electron-alpha_thermal_mean_free_path_at_point_263_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile263)_ 1.14737955666595954e+05 +Electron-alpha_thermal_mean_free_path_at_point_264_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile264)_ 1.14106176771829938e+05 +Electron-alpha_thermal_mean_free_path_at_point_265_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile265)_ 1.13474201337123464e+05 +Electron-alpha_thermal_mean_free_path_at_point_266_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile266)_ 1.12842053510453421e+05 +Electron-alpha_thermal_mean_free_path_at_point_267_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile267)_ 1.12209757505046582e+05 +Electron-alpha_thermal_mean_free_path_at_point_268_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile268)_ 1.11577337598793165e+05 +Electron-alpha_thermal_mean_free_path_at_point_269_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile269)_ 1.10944818133650784e+05 +Electron-alpha_thermal_mean_free_path_at_point_270_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile270)_ 1.10312223515040081e+05 +Electron-alpha_thermal_mean_free_path_at_point_271_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile271)_ 1.09679578211233194e+05 +Electron-alpha_thermal_mean_free_path_at_point_272_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile272)_ 1.09046906752729614e+05 +Electron-alpha_thermal_mean_free_path_at_point_273_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile273)_ 1.08414233731626737e+05 +Electron-alpha_thermal_mean_free_path_at_point_274_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile274)_ 1.07781583800979555e+05 +Electron-alpha_thermal_mean_free_path_at_point_275_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile275)_ 1.07148981674149036e+05 +Electron-alpha_thermal_mean_free_path_at_point_276_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile276)_ 1.06516452124146614e+05 +Electron-alpha_thermal_mean_free_path_at_point_277_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile277)_ 1.05884019982962593e+05 +Electron-alpha_thermal_mean_free_path_at_point_278_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile278)_ 1.05251710140889001e+05 +Electron-alpha_thermal_mean_free_path_at_point_279_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile279)_ 1.04619547545834110e+05 +Electron-alpha_thermal_mean_free_path_at_point_280_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile280)_ 1.03987557202623066e+05 +Electron-alpha_thermal_mean_free_path_at_point_281_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile281)_ 1.03355764172291529e+05 +Electron-alpha_thermal_mean_free_path_at_point_282_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile282)_ 1.02724193571368858e+05 +Electron-alpha_thermal_mean_free_path_at_point_283_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile283)_ 1.02092870571152802e+05 +Electron-alpha_thermal_mean_free_path_at_point_284_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile284)_ 1.01461820396971001e+05 +Electron-alpha_thermal_mean_free_path_at_point_285_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile285)_ 1.00831068327435816e+05 +Electron-alpha_thermal_mean_free_path_at_point_286_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile286)_ 1.00200639693686462e+05 +Electron-alpha_thermal_mean_free_path_at_point_287_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile287)_ 9.95705598786231567e+04 +Electron-alpha_thermal_mean_free_path_at_point_288_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile288)_ 9.89408543161296548e+04 +Electron-alpha_thermal_mean_free_path_at_point_289_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile289)_ 9.83115484902857570e+04 +Electron-alpha_thermal_mean_free_path_at_point_290_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile290)_ 9.76826679345692392e+04 +Electron-alpha_thermal_mean_free_path_at_point_291_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile291)_ 9.70542382310492685e+04 +Electron-alpha_thermal_mean_free_path_at_point_292_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile292)_ 9.64262850095662143e+04 +Electron-alpha_thermal_mean_free_path_at_point_293_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile293)_ 9.57988339469037601e+04 +Electron-alpha_thermal_mean_free_path_at_point_294_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile294)_ 9.51719107659484143e+04 +Electron-alpha_thermal_mean_free_path_at_point_295_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile295)_ 9.45455412348407554e+04 +Electron-alpha_thermal_mean_free_path_at_point_296_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile296)_ 9.39197511661140015e+04 +Electron-alpha_thermal_mean_free_path_at_point_297_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile297)_ 9.32945664158236468e+04 +Electron-alpha_thermal_mean_free_path_at_point_298_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile298)_ 9.26700128826647415e+04 +Electron-alpha_thermal_mean_free_path_at_point_299_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile299)_ 9.20461165070795978e+04 +Electron-alpha_thermal_mean_free_path_at_point_300_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile300)_ 9.14229032703558769e+04 +Electron-alpha_thermal_mean_free_path_at_point_301_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile301)_ 9.08003991937119572e+04 +Electron-alpha_thermal_mean_free_path_at_point_302_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile302)_ 9.01786303373731498e+04 +Electron-alpha_thermal_mean_free_path_at_point_303_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile303)_ 8.95576227996358211e+04 +Electron-alpha_thermal_mean_free_path_at_point_304_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile304)_ 8.89374027159246907e+04 +Electron-alpha_thermal_mean_free_path_at_point_305_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile305)_ 8.83179962578331033e+04 +Electron-alpha_thermal_mean_free_path_at_point_306_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile306)_ 8.76994296321597794e+04 +Electron-alpha_thermal_mean_free_path_at_point_307_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile307)_ 8.70817290799305774e+04 +Electron-alpha_thermal_mean_free_path_at_point_308_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile308)_ 8.64649208754112478e+04 +Electron-alpha_thermal_mean_free_path_at_point_309_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile309)_ 8.58490313251103507e+04 +Electron-alpha_thermal_mean_free_path_at_point_310_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile310)_ 8.52340867667702696e+04 +Electron-alpha_thermal_mean_free_path_at_point_311_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile311)_ 8.46201135683514731e+04 +Electron-alpha_thermal_mean_free_path_at_point_312_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile312)_ 8.40071381270021084e+04 +Electron-alpha_thermal_mean_free_path_at_point_313_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile313)_ 8.33951868680221232e+04 +Electron-alpha_thermal_mean_free_path_at_point_314_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile314)_ 8.27842862438145530e+04 +Electron-alpha_thermal_mean_free_path_at_point_315_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile315)_ 8.21744627328291390e+04 +Electron-alpha_thermal_mean_free_path_at_point_316_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile316)_ 8.15657428384944506e+04 +Electron-alpha_thermal_mean_free_path_at_point_317_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile317)_ 8.09581530881431390e+04 +Electron-alpha_thermal_mean_free_path_at_point_318_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile318)_ 8.03517200319273543e+04 +Electron-alpha_thermal_mean_free_path_at_point_319_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile319)_ 7.97464702417230001e+04 +Electron-alpha_thermal_mean_free_path_at_point_320_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile320)_ 7.91424303100305406e+04 +Electron-alpha_thermal_mean_free_path_at_point_321_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile321)_ 7.85396268488604255e+04 +Electron-alpha_thermal_mean_free_path_at_point_322_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile322)_ 7.79380864886185009e+04 +Electron-alpha_thermal_mean_free_path_at_point_323_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile323)_ 7.73378358769766637e+04 +Electron-alpha_thermal_mean_free_path_at_point_324_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile324)_ 7.67389016777405923e+04 +Electron-alpha_thermal_mean_free_path_at_point_325_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile325)_ 7.61413105697085412e+04 +Electron-alpha_thermal_mean_free_path_at_point_326_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile326)_ 7.55450892455240537e+04 +Electron-alpha_thermal_mean_free_path_at_point_327_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile327)_ 7.49502644105223153e+04 +Electron-alpha_thermal_mean_free_path_at_point_328_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile328)_ 7.43568627815705840e+04 +Electron-alpha_thermal_mean_free_path_at_point_329_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile329)_ 7.37649110859051725e+04 +Electron-alpha_thermal_mean_free_path_at_point_330_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile330)_ 7.31744360599596403e+04 +Electron-alpha_thermal_mean_free_path_at_point_331_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile331)_ 7.25854644481935102e+04 +Electron-alpha_thermal_mean_free_path_at_point_332_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile332)_ 7.19980230019144365e+04 +Electron-alpha_thermal_mean_free_path_at_point_333_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile333)_ 7.14121384780975641e+04 +Electron-alpha_thermal_mean_free_path_at_point_334_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile334)_ 7.08278376382058923e+04 +Electron-alpha_thermal_mean_free_path_at_point_335_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile335)_ 7.02451472470029112e+04 +Electron-alpha_thermal_mean_free_path_at_point_336_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile336)_ 6.96640940713718155e+04 +Electron-alpha_thermal_mean_free_path_at_point_337_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile337)_ 6.90847048791287962e+04 +Electron-alpha_thermal_mean_free_path_at_point_338_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile338)_ 6.85070064378414390e+04 +Electron-alpha_thermal_mean_free_path_at_point_339_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile339)_ 6.79310255136467895e+04 +Electron-alpha_thermal_mean_free_path_at_point_340_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile340)_ 6.73567888700729090e+04 +Electron-alpha_thermal_mean_free_path_at_point_341_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile341)_ 6.67843232668656128e+04 +Electron-alpha_thermal_mean_free_path_at_point_342_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile342)_ 6.62136554588191648e+04 +Electron-alpha_thermal_mean_free_path_at_point_343_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile343)_ 6.56448121946128085e+04 +Electron-alpha_thermal_mean_free_path_at_point_344_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile344)_ 6.50778202156587431e+04 +Electron-alpha_thermal_mean_free_path_at_point_345_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile345)_ 6.45127062549541879e+04 +Electron-alpha_thermal_mean_free_path_at_point_346_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile346)_ 6.39494970359467043e+04 +Electron-alpha_thermal_mean_free_path_at_point_347_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile347)_ 6.33882192714135963e+04 +Electron-alpha_thermal_mean_free_path_at_point_348_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile348)_ 6.28288996623508647e+04 +Electron-alpha_thermal_mean_free_path_at_point_349_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile349)_ 6.22715648968819223e+04 +Electron-alpha_thermal_mean_free_path_at_point_350_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile350)_ 6.17162416491805561e+04 +Electron-alpha_thermal_mean_free_path_at_point_351_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile351)_ 6.11629565784166698e+04 +Electron-alpha_thermal_mean_free_path_at_point_352_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile352)_ 6.06117363277203622e+04 +Electron-alpha_thermal_mean_free_path_at_point_353_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile353)_ 6.00626075231734794e+04 +Electron-alpha_thermal_mean_free_path_at_point_354_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile354)_ 5.95155967728241449e+04 +Electron-alpha_thermal_mean_free_path_at_point_355_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile355)_ 5.89707306657332083e+04 +Electron-alpha_thermal_mean_free_path_at_point_356_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile356)_ 5.84280357710504104e+04 +Electron-alpha_thermal_mean_free_path_at_point_357_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile357)_ 5.78875386371261920e+04 +Electron-alpha_thermal_mean_free_path_at_point_358_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile358)_ 5.73492657906606692e+04 +Electron-alpha_thermal_mean_free_path_at_point_359_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile359)_ 5.68132437358937896e+04 +Electron-alpha_thermal_mean_free_path_at_point_360_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile360)_ 5.62794989538393420e+04 +Electron-alpha_thermal_mean_free_path_at_point_361_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile361)_ 5.57480579015694166e+04 +Electron-alpha_thermal_mean_free_path_at_point_362_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile362)_ 5.52189470115462173e+04 +Electron-alpha_thermal_mean_free_path_at_point_363_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile363)_ 5.46921926910156617e+04 +Electron-alpha_thermal_mean_free_path_at_point_364_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile364)_ 5.41678213214574134e+04 +Electron-alpha_thermal_mean_free_path_at_point_365_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile365)_ 5.36458592581032572e+04 +Electron-alpha_thermal_mean_free_path_at_point_366_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile366)_ 5.31263328295236934e+04 +Electron-alpha_thermal_mean_free_path_at_point_367_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile367)_ 5.26092683372911415e+04 +Electron-alpha_thermal_mean_free_path_at_point_368_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile368)_ 5.20946920557254271e+04 +Electron-alpha_thermal_mean_free_path_at_point_369_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile369)_ 5.15826302317261943e+04 +Electron-alpha_thermal_mean_free_path_at_point_370_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile370)_ 5.10731090846985826e+04 +Electron-alpha_thermal_mean_free_path_at_point_371_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile371)_ 5.05661548065814131e+04 +Electron-alpha_thermal_mean_free_path_at_point_372_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile372)_ 5.00617935619817872e+04 +Electron-alpha_thermal_mean_free_path_at_point_373_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile373)_ 4.95600514884275181e+04 +Electron-alpha_thermal_mean_free_path_at_point_374_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile374)_ 4.90609546967422430e+04 +Electron-alpha_thermal_mean_free_path_at_point_375_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile375)_ 4.85645292715537216e+04 +Electron-alpha_thermal_mean_free_path_at_point_376_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile376)_ 4.80708012719476246e+04 +Electron-alpha_thermal_mean_free_path_at_point_377_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile377)_ 4.75797967322688564e+04 +Electron-alpha_thermal_mean_free_path_at_point_378_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile378)_ 4.70915416630911059e+04 +Electron-alpha_thermal_mean_free_path_at_point_379_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile379)_ 4.66060620523585822e+04 +Electron-alpha_thermal_mean_free_path_at_point_380_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile380)_ 4.61233838667156524e+04 +Electron-alpha_thermal_mean_free_path_at_point_381_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile381)_ 4.56435330530369756e+04 +Electron-alpha_thermal_mean_free_path_at_point_382_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile382)_ 4.51665355401713678e+04 +Electron-alpha_thermal_mean_free_path_at_point_383_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile383)_ 4.46924172409149687e+04 +Electron-alpha_thermal_mean_free_path_at_point_384_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile384)_ 4.42212040542295581e+04 +Electron-alpha_thermal_mean_free_path_at_point_385_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile385)_ 4.37529218677236859e+04 +Electron-alpha_thermal_mean_free_path_at_point_386_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile386)_ 4.32875965604132944e+04 +Electron-alpha_thermal_mean_free_path_at_point_387_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile387)_ 4.28252540057841907e+04 +Electron-alpha_thermal_mean_free_path_at_point_388_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile388)_ 4.23659200751744065e+04 +Electron-alpha_thermal_mean_free_path_at_point_389_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile389)_ 4.19096206415012639e+04 +Electron-alpha_thermal_mean_free_path_at_point_390_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile390)_ 4.14563815833563713e+04 +Electron-alpha_thermal_mean_free_path_at_point_391_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile391)_ 4.10062287894951878e+04 +Electron-alpha_thermal_mean_free_path_at_point_392_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile392)_ 4.05591881637479528e+04 +Electron-alpha_thermal_mean_free_path_at_point_393_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile393)_ 4.01152856303832159e+04 +Electron-alpha_thermal_mean_free_path_at_point_394_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile394)_ 3.96745471399574089e+04 +Electron-alpha_thermal_mean_free_path_at_point_395_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile395)_ 3.92369986756805447e+04 +Electron-alpha_thermal_mean_free_path_at_point_396_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile396)_ 3.88026662603419027e+04 +Electron-alpha_thermal_mean_free_path_at_point_397_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile397)_ 3.83715759638323871e+04 +Electron-alpha_thermal_mean_free_path_at_point_398_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile398)_ 3.79437539113068051e+04 +Electron-alpha_thermal_mean_free_path_at_point_399_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile399)_ 3.75192262920347712e+04 +Electron-alpha_thermal_mean_free_path_at_point_400_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile400)_ 3.70980193689927110e+04 +Electron-alpha_thermal_mean_free_path_at_point_401_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile401)_ 3.66801594892469075e+04 +Electron-alpha_thermal_mean_free_path_at_point_402_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile402)_ 3.62656730951932841e+04 +Electron-alpha_thermal_mean_free_path_at_point_403_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile403)_ 3.58545867367153187e+04 +Electron-alpha_thermal_mean_free_path_at_point_404_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile404)_ 3.54469270843284758e+04 +Electron-alpha_thermal_mean_free_path_at_point_405_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile405)_ 3.50427209433942407e+04 +Electron-alpha_thermal_mean_free_path_at_point_406_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile406)_ 3.46419952694775493e+04 +Electron-alpha_thermal_mean_free_path_at_point_407_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile407)_ 3.42447771849457204e+04 +Electron-alpha_thermal_mean_free_path_at_point_408_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile408)_ 3.38510939969010142e+04 +Electron-alpha_thermal_mean_free_path_at_point_409_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile409)_ 3.34609732165593741e+04 +Electron-alpha_thermal_mean_free_path_at_point_410_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile410)_ 3.30744425801863399e+04 +Electron-alpha_thermal_mean_free_path_at_point_411_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile411)_ 3.26915300717243190e+04 +Electron-alpha_thermal_mean_free_path_at_point_412_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile412)_ 3.23122639472459741e+04 +Electron-alpha_thermal_mean_free_path_at_point_413_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile413)_ 3.19366727613902003e+04 +Electron-alpha_thermal_mean_free_path_at_point_414_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile414)_ 3.15647853959479071e+04 +Electron-alpha_thermal_mean_free_path_at_point_415_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile415)_ 3.11966310907830957e+04 +Electron-alpha_thermal_mean_free_path_at_point_416_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile416)_ 3.08322394772935331e+04 +Electron-alpha_thermal_mean_free_path_at_point_417_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile417)_ 3.04716406146347908e+04 +Electron-alpha_thermal_mean_free_path_at_point_418_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile418)_ 3.01148650289577781e+04 +Electron-alpha_thermal_mean_free_path_at_point_419_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile419)_ 2.97619437559315811e+04 +Electron-alpha_thermal_mean_free_path_at_point_420_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile420)_ 2.94129083868597190e+04 +Electron-alpha_thermal_mean_free_path_at_point_421_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile421)_ 2.90677911187247919e+04 +Electron-alpha_thermal_mean_free_path_at_point_422_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile422)_ 2.87266248085392181e+04 +Electron-alpha_thermal_mean_free_path_at_point_423_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile423)_ 2.83894430324222812e+04 +Electron-alpha_thermal_mean_free_path_at_point_424_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile424)_ 2.80562801498691770e+04 +Electron-alpha_thermal_mean_free_path_at_point_425_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile425)_ 2.77271713737388636e+04 +Electron-alpha_thermal_mean_free_path_at_point_426_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile426)_ 2.74021528465482879e+04 +Electron-alpha_thermal_mean_free_path_at_point_427_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile427)_ 2.70812617237345839e+04 +Electron-alpha_thermal_mean_free_path_at_point_428_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile428)_ 2.67645362646322683e+04 +Electron-alpha_thermal_mean_free_path_at_point_429_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile429)_ 2.64520159320083767e+04 +Electron-alpha_thermal_mean_free_path_at_point_430_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile430)_ 2.61437415011117191e+04 +Electron-alpha_thermal_mean_free_path_at_point_431_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile431)_ 2.58397551793245038e+04 +Electron-alpha_thermal_mean_free_path_at_point_432_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile432)_ 2.55401007376563321e+04 +Electron-alpha_thermal_mean_free_path_at_point_433_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile433)_ 2.52448236554974937e+04 +Electron-alpha_thermal_mean_free_path_at_point_434_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile434)_ 2.49539712802618924e+04 +Electron-alpha_thermal_mean_free_path_at_point_435_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile435)_ 2.46675930037921426e+04 +Electron-alpha_thermal_mean_free_path_at_point_436_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile436)_ 2.43857404576992121e+04 +Electron-alpha_thermal_mean_free_path_at_point_437_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile437)_ 2.41084677301478441e+04 +Electron-alpha_thermal_mean_free_path_at_point_438_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile438)_ 2.38358316070262299e+04 +Electron-alpha_thermal_mean_free_path_at_point_439_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile439)_ 2.35678918409298312e+04 +Electron-alpha_thermal_mean_free_path_at_point_440_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile440)_ 2.33047114520002215e+04 +Electron-alpha_thermal_mean_free_path_at_point_441_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile441)_ 2.30463570653907336e+04 +Electron-alpha_thermal_mean_free_path_at_point_442_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile442)_ 2.27928992910335692e+04 +Electron-alpha_thermal_mean_free_path_at_point_443_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile443)_ 2.25444131524820623e+04 +Electron-alpha_thermal_mean_free_path_at_point_444_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile444)_ 2.23009785729801224e+04 +Electron-alpha_thermal_mean_free_path_at_point_445_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile445)_ 2.20626809286150492e+04 +Electron-alpha_thermal_mean_free_path_at_point_446_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile446)_ 2.18296116805608726e+04 +Electron-alpha_thermal_mean_free_path_at_point_447_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile447)_ 2.16018691011594674e+04 +Electron-alpha_thermal_mean_free_path_at_point_448_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile448)_ 2.13795591120672871e+04 +Electron-alpha_thermal_mean_free_path_at_point_449_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile449)_ 2.11627962572392971e+04 +Electron-alpha_thermal_mean_free_path_at_point_450_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile450)_ 2.09517048394145859e+04 +Electron-alpha_thermal_mean_free_path_at_point_451_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile451)_ 2.07464202566081112e+04 +Electron-alpha_thermal_mean_free_path_at_point_452_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile452)_ 2.05470905855814308e+04 +Electron-alpha_thermal_mean_free_path_at_point_453_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile453)_ 2.03538784735127956e+04 +Electron-alpha_thermal_mean_free_path_at_point_454_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile454)_ 2.01669634187230731e+04 +Electron-alpha_thermal_mean_free_path_at_point_455_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile455)_ 1.99865445488939695e+04 +Electron-alpha_thermal_mean_free_path_at_point_456_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile456)_ 1.98128440446368841e+04 +Electron-alpha_thermal_mean_free_path_at_point_457_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile457)_ 1.96461114138869016e+04 +Electron-alpha_thermal_mean_free_path_at_point_458_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile458)_ 1.94866289087937985e+04 +Electron-alpha_thermal_mean_free_path_at_point_459_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile459)_ 1.93347185093377084e+04 +Electron-alpha_thermal_mean_free_path_at_point_460_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile460)_ 1.91907511082032361e+04 +Electron-alpha_thermal_mean_free_path_at_point_461_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile461)_ 1.90551588774449738e+04 +Electron-alpha_thermal_mean_free_path_at_point_462_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile462)_ 1.89284523915800783e+04 +Electron-alpha_thermal_mean_free_path_at_point_463_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile463)_ 1.88112451552575585e+04 +Electron-alpha_thermal_mean_free_path_at_point_464_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile464)_ 1.87042902480060002e+04 +Electron-alpha_thermal_mean_free_path_at_point_465_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile465)_ 1.86085380893001638e+04 +Electron-alpha_thermal_mean_free_path_at_point_466_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile466)_ 1.85252341886086615e+04 +Electron-alpha_thermal_mean_free_path_at_point_467_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile467)_ 1.84561017190438506e+04 +Electron-alpha_thermal_mean_free_path_at_point_468_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile468)_ 1.84037372400290587e+04 +Electron-alpha_thermal_mean_free_path_at_point_469_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile469)_ 1.83727230654033883e+04 +Electron-alpha_thermal_mean_free_path_at_point_470_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile470)_ 1.83764326905918715e+04 +Electron-alpha_thermal_mean_free_path_at_point_471_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile471)_ 1.74637988974274849e+04 +Electron-alpha_thermal_mean_free_path_at_point_472_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile472)_ 1.65627802700200118e+04 +Electron-alpha_thermal_mean_free_path_at_point_473_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile473)_ 1.56739463746684560e+04 +Electron-alpha_thermal_mean_free_path_at_point_474_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile474)_ 1.47979019243847397e+04 +Electron-alpha_thermal_mean_free_path_at_point_475_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile475)_ 1.39352895483251632e+04 +Electron-alpha_thermal_mean_free_path_at_point_476_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile476)_ 1.30867928333103264e+04 +Electron-alpha_thermal_mean_free_path_at_point_477_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile477)_ 1.22531396704814488e+04 +Electron-alpha_thermal_mean_free_path_at_point_478_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile478)_ 1.14351059451275305e+04 +Electron-alpha_thermal_mean_free_path_at_point_479_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile479)_ 1.06335196136703853e+04 +Electron-alpha_thermal_mean_free_path_at_point_480_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile480)_ 9.84926521893690551e+03 +Electron-alpha_thermal_mean_free_path_at_point_481_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile481)_ 9.08328890348937784e+03 +Electron-alpha_thermal_mean_free_path_at_point_482_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile482)_ 8.33660399135253101e+03 +Electron-alpha_thermal_mean_free_path_at_point_483_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile483)_ 7.61029722152540307e+03 +Electron-alpha_thermal_mean_free_path_at_point_484_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile484)_ 6.90553573299381515e+03 +Electron-alpha_thermal_mean_free_path_at_point_485_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile485)_ 6.22357492168324461e+03 +Electron-alpha_thermal_mean_free_path_at_point_486_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile486)_ 5.56576731652502622e+03 +Electron-alpha_thermal_mean_free_path_at_point_487_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile487)_ 4.93357265697506045e+03 +Electron-alpha_thermal_mean_free_path_at_point_488_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile488)_ 4.32856940161498915e+03 +Electron-alpha_thermal_mean_free_path_at_point_489_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile489)_ 3.75246796272513302e+03 +Electron-alpha_thermal_mean_free_path_at_point_490_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile490)_ 3.20712605452505113e+03 +Electron-alpha_thermal_mean_free_path_at_point_491_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile491)_ 2.69456667945201389e+03 +Electron-alpha_thermal_mean_free_path_at_point_492_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile492)_ 2.21699948656512015e+03 +Electron-alpha_thermal_mean_free_path_at_point_493_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile493)_ 1.77684657382255023e+03 +Electron-alpha_thermal_mean_free_path_at_point_494_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile494)_ 1.37677438175851216e+03 +Electron-alpha_thermal_mean_free_path_at_point_495_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile495)_ 1.01973437829678767e+03 +Electron-alpha_thermal_mean_free_path_at_point_496_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile496)_ 7.09017329645920313e+02 +Electron-alpha_thermal_mean_free_path_at_point_497_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile497)_ 4.48330611277591970e+02 +Electron-alpha_thermal_mean_free_path_at_point_498_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile498)_ 2.41920054907983797e+02 +Electron-alpha_thermal_mean_free_path_at_point_499_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile499)_ 9.47968196124040787e+01 +Electron-alpha_thermal_mean_free_path_at_point_500_______________________ (len_plasma_electron_alpha_thermal_mean_free_path_profile500)_ 1.37203299718843486e+01 +Volume_averaged_electron-alpha_Spitzer_slowing_down_time_(s)_____________ (t_plasma_electron_alpha_spitzer_slow_vol_avg)_ 6.16412929208435267e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_0______________________ (t_plasma_electron_alpha_spitzer_slow_profile0)_ 1.34429663983198511e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_1______________________ (t_plasma_electron_alpha_spitzer_slow_profile1)_ 1.34428898876561975e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_2______________________ (t_plasma_electron_alpha_spitzer_slow_profile2)_ 1.34426603566664848e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_3______________________ (t_plasma_electron_alpha_spitzer_slow_profile3)_ 1.34422778083544636e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_4______________________ (t_plasma_electron_alpha_spitzer_slow_profile4)_ 1.34417422477265602e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_5______________________ (t_plasma_electron_alpha_spitzer_slow_profile5)_ 1.34410536817919701e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_6______________________ (t_plasma_electron_alpha_spitzer_slow_profile6)_ 1.34402121195629953e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_7______________________ (t_plasma_electron_alpha_spitzer_slow_profile7)_ 1.34392175720553242e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_8______________________ (t_plasma_electron_alpha_spitzer_slow_profile8)_ 1.34380700522884267e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_9______________________ (t_plasma_electron_alpha_spitzer_slow_profile9)_ 1.34367695752860628e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_10_____________________ (t_plasma_electron_alpha_spitzer_slow_profile10)_ 1.34353161580768110e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_11_____________________ (t_plasma_electron_alpha_spitzer_slow_profile11)_ 1.34337098196946703e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_12_____________________ (t_plasma_electron_alpha_spitzer_slow_profile12)_ 1.34319505811797879e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_13_____________________ (t_plasma_electron_alpha_spitzer_slow_profile13)_ 1.34300384655791905e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_14_____________________ (t_plasma_electron_alpha_spitzer_slow_profile14)_ 1.34279734979476428e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_15_____________________ (t_plasma_electron_alpha_spitzer_slow_profile15)_ 1.34257557053485566e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_16_____________________ (t_plasma_electron_alpha_spitzer_slow_profile16)_ 1.34233851168549556e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_17_____________________ (t_plasma_electron_alpha_spitzer_slow_profile17)_ 1.34208617635505822e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_18_____________________ (t_plasma_electron_alpha_spitzer_slow_profile18)_ 1.34181856785309561e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_19_____________________ (t_plasma_electron_alpha_spitzer_slow_profile19)_ 1.34153568969046599e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_20_____________________ (t_plasma_electron_alpha_spitzer_slow_profile20)_ 1.34123754557945429e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_21_____________________ (t_plasma_electron_alpha_spitzer_slow_profile21)_ 1.34092413943391420e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_22_____________________ (t_plasma_electron_alpha_spitzer_slow_profile22)_ 1.34059547536940382e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_23_____________________ (t_plasma_electron_alpha_spitzer_slow_profile23)_ 1.34025155770334137e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_24_____________________ (t_plasma_electron_alpha_spitzer_slow_profile24)_ 1.33989239095516033e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_25_____________________ (t_plasma_electron_alpha_spitzer_slow_profile25)_ 1.33951797984647425e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_26_____________________ (t_plasma_electron_alpha_spitzer_slow_profile26)_ 1.33912832930124681e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_27_____________________ (t_plasma_electron_alpha_spitzer_slow_profile27)_ 1.33872344444597857e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_28_____________________ (t_plasma_electron_alpha_spitzer_slow_profile28)_ 1.33830333060988460e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_29_____________________ (t_plasma_electron_alpha_spitzer_slow_profile29)_ 1.33786799332509676e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_30_____________________ (t_plasma_electron_alpha_spitzer_slow_profile30)_ 1.33741743832686066e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_31_____________________ (t_plasma_electron_alpha_spitzer_slow_profile31)_ 1.33695167155374950e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_32_____________________ (t_plasma_electron_alpha_spitzer_slow_profile32)_ 1.33647069914787786e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_33_____________________ (t_plasma_electron_alpha_spitzer_slow_profile33)_ 1.33597452745512735e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_34_____________________ (t_plasma_electron_alpha_spitzer_slow_profile34)_ 1.33546316302537948e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_35_____________________ (t_plasma_electron_alpha_spitzer_slow_profile35)_ 1.33493661261275509e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_36_____________________ (t_plasma_electron_alpha_spitzer_slow_profile36)_ 1.33439488317586119e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_37_____________________ (t_plasma_electron_alpha_spitzer_slow_profile37)_ 1.33383798187804703e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_38_____________________ (t_plasma_electron_alpha_spitzer_slow_profile38)_ 1.33326591608766520e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_39_____________________ (t_plasma_electron_alpha_spitzer_slow_profile39)_ 1.33267869337834277e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_40_____________________ (t_plasma_electron_alpha_spitzer_slow_profile40)_ 1.33207632152925948e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_41_____________________ (t_plasma_electron_alpha_spitzer_slow_profile41)_ 1.33145880852543108e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_42_____________________ (t_plasma_electron_alpha_spitzer_slow_profile42)_ 1.33082616255800890e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_43_____________________ (t_plasma_electron_alpha_spitzer_slow_profile43)_ 1.33017839202457178e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_44_____________________ (t_plasma_electron_alpha_spitzer_slow_profile44)_ 1.32951550552944231e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_45_____________________ (t_plasma_electron_alpha_spitzer_slow_profile45)_ 1.32883751188399901e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_46_____________________ (t_plasma_electron_alpha_spitzer_slow_profile46)_ 1.32814442010700406e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_47_____________________ (t_plasma_electron_alpha_spitzer_slow_profile47)_ 1.32743623942493372e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_48_____________________ (t_plasma_electron_alpha_spitzer_slow_profile48)_ 1.32671297927231802e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_49_____________________ (t_plasma_electron_alpha_spitzer_slow_profile49)_ 1.32597464929208964e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_50_____________________ (t_plasma_electron_alpha_spitzer_slow_profile50)_ 1.32522125933593893e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_51_____________________ (t_plasma_electron_alpha_spitzer_slow_profile51)_ 1.32445281946468096e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_52_____________________ (t_plasma_electron_alpha_spitzer_slow_profile52)_ 1.32366933994862213e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_53_____________________ (t_plasma_electron_alpha_spitzer_slow_profile53)_ 1.32287083126794403e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_54_____________________ (t_plasma_electron_alpha_spitzer_slow_profile54)_ 1.32205730411309030e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_55_____________________ (t_plasma_electron_alpha_spitzer_slow_profile55)_ 1.32122876938516187e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_56_____________________ (t_plasma_electron_alpha_spitzer_slow_profile56)_ 1.32038523819632236e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_57_____________________ (t_plasma_electron_alpha_spitzer_slow_profile57)_ 1.31952672187020847e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_58_____________________ (t_plasma_electron_alpha_spitzer_slow_profile58)_ 1.31865323194235118e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_59_____________________ (t_plasma_electron_alpha_spitzer_slow_profile59)_ 1.31776478016060494e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_60_____________________ (t_plasma_electron_alpha_spitzer_slow_profile60)_ 1.31686137848558404e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_61_____________________ (t_plasma_electron_alpha_spitzer_slow_profile61)_ 1.31594303909110777e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_62_____________________ (t_plasma_electron_alpha_spitzer_slow_profile62)_ 1.31500977436465161e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_63_____________________ (t_plasma_electron_alpha_spitzer_slow_profile63)_ 1.31406159690781266e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_64_____________________ (t_plasma_electron_alpha_spitzer_slow_profile64)_ 1.31309851953677792e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_65_____________________ (t_plasma_electron_alpha_spitzer_slow_profile65)_ 1.31212055528280147e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_66_____________________ (t_plasma_electron_alpha_spitzer_slow_profile66)_ 1.31112771739269274e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_67_____________________ (t_plasma_electron_alpha_spitzer_slow_profile67)_ 1.31012001932931321e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_68_____________________ (t_plasma_electron_alpha_spitzer_slow_profile68)_ 1.30909747477207627e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_69_____________________ (t_plasma_electron_alpha_spitzer_slow_profile69)_ 1.30806009761746544e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_70_____________________ (t_plasma_electron_alpha_spitzer_slow_profile70)_ 1.30700790197954864e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_71_____________________ (t_plasma_electron_alpha_spitzer_slow_profile71)_ 1.30594090219051640e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_72_____________________ (t_plasma_electron_alpha_spitzer_slow_profile72)_ 1.30485911280121103e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_73_____________________ (t_plasma_electron_alpha_spitzer_slow_profile73)_ 1.30376254858168217e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_74_____________________ (t_plasma_electron_alpha_spitzer_slow_profile74)_ 1.30265122452173676e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_75_____________________ (t_plasma_electron_alpha_spitzer_slow_profile75)_ 1.30152515583150574e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_76_____________________ (t_plasma_electron_alpha_spitzer_slow_profile76)_ 1.30038435794202178e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_77_____________________ (t_plasma_electron_alpha_spitzer_slow_profile77)_ 1.29922884650579396e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_78_____________________ (t_plasma_electron_alpha_spitzer_slow_profile78)_ 1.29805863739740723e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_79_____________________ (t_plasma_electron_alpha_spitzer_slow_profile79)_ 1.29687374671411715e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_80_____________________ (t_plasma_electron_alpha_spitzer_slow_profile80)_ 1.29567419077646417e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_81_____________________ (t_plasma_electron_alpha_spitzer_slow_profile81)_ 1.29445998612888835e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_82_____________________ (t_plasma_electron_alpha_spitzer_slow_profile82)_ 1.29323114954035967e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_83_____________________ (t_plasma_electron_alpha_spitzer_slow_profile83)_ 1.29198769800501712e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_84_____________________ (t_plasma_electron_alpha_spitzer_slow_profile84)_ 1.29072964874281015e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_85_____________________ (t_plasma_electron_alpha_spitzer_slow_profile85)_ 1.28945701920015843e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_86_____________________ (t_plasma_electron_alpha_spitzer_slow_profile86)_ 1.28816982705061678e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_87_____________________ (t_plasma_electron_alpha_spitzer_slow_profile87)_ 1.28686809019554649e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_88_____________________ (t_plasma_electron_alpha_spitzer_slow_profile88)_ 1.28555182676480473e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_89_____________________ (t_plasma_electron_alpha_spitzer_slow_profile89)_ 1.28422105511743512e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_90_____________________ (t_plasma_electron_alpha_spitzer_slow_profile90)_ 1.28287579384236894e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_91_____________________ (t_plasma_electron_alpha_spitzer_slow_profile91)_ 1.28151606175914301e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_92_____________________ (t_plasma_electron_alpha_spitzer_slow_profile92)_ 1.28014187791861800e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_93_____________________ (t_plasma_electron_alpha_spitzer_slow_profile93)_ 1.27875326160371383e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_94_____________________ (t_plasma_electron_alpha_spitzer_slow_profile94)_ 1.27735023233015177e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_95_____________________ (t_plasma_electron_alpha_spitzer_slow_profile95)_ 1.27593280984720314e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_96_____________________ (t_plasma_electron_alpha_spitzer_slow_profile96)_ 1.27450101413845762e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_97_____________________ (t_plasma_electron_alpha_spitzer_slow_profile97)_ 1.27305486542258861e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_98_____________________ (t_plasma_electron_alpha_spitzer_slow_profile98)_ 1.27159438415414217e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_99_____________________ (t_plasma_electron_alpha_spitzer_slow_profile99)_ 1.27011959102432304e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_100____________________ (t_plasma_electron_alpha_spitzer_slow_profile100)_ 1.26863050696180513e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_101____________________ (t_plasma_electron_alpha_spitzer_slow_profile101)_ 1.26712715313353530e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_102____________________ (t_plasma_electron_alpha_spitzer_slow_profile102)_ 1.26560955094556604e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_103____________________ (t_plasma_electron_alpha_spitzer_slow_profile103)_ 1.26407772204388125e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_104____________________ (t_plasma_electron_alpha_spitzer_slow_profile104)_ 1.26253168831524798e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_105____________________ (t_plasma_electron_alpha_spitzer_slow_profile105)_ 1.26097147188806447e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_106____________________ (t_plasma_electron_alpha_spitzer_slow_profile106)_ 1.25939709513323117e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_107____________________ (t_plasma_electron_alpha_spitzer_slow_profile107)_ 1.25780858066502499e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_108____________________ (t_plasma_electron_alpha_spitzer_slow_profile108)_ 1.25620595134198521e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_109____________________ (t_plasma_electron_alpha_spitzer_slow_profile109)_ 1.25458923026781388e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_110____________________ (t_plasma_electron_alpha_spitzer_slow_profile110)_ 1.25295844079228336e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_111____________________ (t_plasma_electron_alpha_spitzer_slow_profile111)_ 1.25131360651215728e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_112____________________ (t_plasma_electron_alpha_spitzer_slow_profile112)_ 1.24965475127212078e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_113____________________ (t_plasma_electron_alpha_spitzer_slow_profile113)_ 1.24798189916572433e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_114____________________ (t_plasma_electron_alpha_spitzer_slow_profile114)_ 1.24629507453633304e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_115____________________ (t_plasma_electron_alpha_spitzer_slow_profile115)_ 1.24459430197810117e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_116____________________ (t_plasma_electron_alpha_spitzer_slow_profile116)_ 1.24287960633693695e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_117____________________ (t_plasma_electron_alpha_spitzer_slow_profile117)_ 1.24115101271149930e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_118____________________ (t_plasma_electron_alpha_spitzer_slow_profile118)_ 1.23940854645419218e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_119____________________ (t_plasma_electron_alpha_spitzer_slow_profile119)_ 1.23765223317217954e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_120____________________ (t_plasma_electron_alpha_spitzer_slow_profile120)_ 1.23588209872840760e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_121____________________ (t_plasma_electron_alpha_spitzer_slow_profile121)_ 1.23409816924263827e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_122____________________ (t_plasma_electron_alpha_spitzer_slow_profile122)_ 1.23230047109249607e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_123____________________ (t_plasma_electron_alpha_spitzer_slow_profile123)_ 1.23048903091453044e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_124____________________ (t_plasma_electron_alpha_spitzer_slow_profile124)_ 1.22866387560528412e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_125____________________ (t_plasma_electron_alpha_spitzer_slow_profile125)_ 1.22682503232237727e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_126____________________ (t_plasma_electron_alpha_spitzer_slow_profile126)_ 1.22497252848560323e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_127____________________ (t_plasma_electron_alpha_spitzer_slow_profile127)_ 1.22310639177803804e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_128____________________ (t_plasma_electron_alpha_spitzer_slow_profile128)_ 1.22122665014715914e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_129____________________ (t_plasma_electron_alpha_spitzer_slow_profile129)_ 1.21933333180598180e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_130____________________ (t_plasma_electron_alpha_spitzer_slow_profile130)_ 1.21742646523420195e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_131____________________ (t_plasma_electron_alpha_spitzer_slow_profile131)_ 1.21550607917935882e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_132____________________ (t_plasma_electron_alpha_spitzer_slow_profile132)_ 1.21357220265800447e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_133____________________ (t_plasma_electron_alpha_spitzer_slow_profile133)_ 1.21162486495689015e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_134____________________ (t_plasma_electron_alpha_spitzer_slow_profile134)_ 1.20966409563416422e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_135____________________ (t_plasma_electron_alpha_spitzer_slow_profile135)_ 1.20768992452058566e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_136____________________ (t_plasma_electron_alpha_spitzer_slow_profile136)_ 1.20570238172074573e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_137____________________ (t_plasma_electron_alpha_spitzer_slow_profile137)_ 1.20370149761430789e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_138____________________ (t_plasma_electron_alpha_spitzer_slow_profile138)_ 1.20168730285726388e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_139____________________ (t_plasma_electron_alpha_spitzer_slow_profile139)_ 1.19965982838319163e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_140____________________ (t_plasma_electron_alpha_spitzer_slow_profile140)_ 1.19761910540454375e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_141____________________ (t_plasma_electron_alpha_spitzer_slow_profile141)_ 1.19556516541393587e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_142____________________ (t_plasma_electron_alpha_spitzer_slow_profile142)_ 1.19349804018545402e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_143____________________ (t_plasma_electron_alpha_spitzer_slow_profile143)_ 1.19141776177598224e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_144____________________ (t_plasma_electron_alpha_spitzer_slow_profile144)_ 1.18932436252653351e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_145____________________ (t_plasma_electron_alpha_spitzer_slow_profile145)_ 1.18721787506360221e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_146____________________ (t_plasma_electron_alpha_spitzer_slow_profile146)_ 1.18509833230053063e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_147____________________ (t_plasma_electron_alpha_spitzer_slow_profile147)_ 1.18296576743888870e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_148____________________ (t_plasma_electron_alpha_spitzer_slow_profile148)_ 1.18082021396986914e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_149____________________ (t_plasma_electron_alpha_spitzer_slow_profile149)_ 1.17866170567569561e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_150____________________ (t_plasma_electron_alpha_spitzer_slow_profile150)_ 1.17649027663105277e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_151____________________ (t_plasma_electron_alpha_spitzer_slow_profile151)_ 1.17430596120452124e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_152____________________ (t_plasma_electron_alpha_spitzer_slow_profile152)_ 1.17210879406003476e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_153____________________ (t_plasma_electron_alpha_spitzer_slow_profile153)_ 1.16989881015835584e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_154____________________ (t_plasma_electron_alpha_spitzer_slow_profile154)_ 1.16767604475855746e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_155____________________ (t_plasma_electron_alpha_spitzer_slow_profile155)_ 1.16544053341952725e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_156____________________ (t_plasma_electron_alpha_spitzer_slow_profile156)_ 1.16319231200148931e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_157____________________ (t_plasma_electron_alpha_spitzer_slow_profile157)_ 1.16093141666753330e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_158____________________ (t_plasma_electron_alpha_spitzer_slow_profile158)_ 1.15865788388517355e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_159____________________ (t_plasma_electron_alpha_spitzer_slow_profile159)_ 1.15637175042790763e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_160____________________ (t_plasma_electron_alpha_spitzer_slow_profile160)_ 1.15407305337680977e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_161____________________ (t_plasma_electron_alpha_spitzer_slow_profile161)_ 1.15176183012212308e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_162____________________ (t_plasma_electron_alpha_spitzer_slow_profile162)_ 1.14943811836488274e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_163____________________ (t_plasma_electron_alpha_spitzer_slow_profile163)_ 1.14710195611855026e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_164____________________ (t_plasma_electron_alpha_spitzer_slow_profile164)_ 1.14475338171066277e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_165____________________ (t_plasma_electron_alpha_spitzer_slow_profile165)_ 1.14239243378450528e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_166____________________ (t_plasma_electron_alpha_spitzer_slow_profile166)_ 1.14001915130079556e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_167____________________ (t_plasma_electron_alpha_spitzer_slow_profile167)_ 1.13763357353939010e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_168____________________ (t_plasma_electron_alpha_spitzer_slow_profile168)_ 1.13523574010100536e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_169____________________ (t_plasma_electron_alpha_spitzer_slow_profile169)_ 1.13282569090896024e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_170____________________ (t_plasma_electron_alpha_spitzer_slow_profile170)_ 1.13040346621093124e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_171____________________ (t_plasma_electron_alpha_spitzer_slow_profile171)_ 1.12796910658073357e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_172____________________ (t_plasma_electron_alpha_spitzer_slow_profile172)_ 1.12552265292011433e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_173____________________ (t_plasma_electron_alpha_spitzer_slow_profile173)_ 1.12306414646056796e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_174____________________ (t_plasma_electron_alpha_spitzer_slow_profile174)_ 1.12059362876516766e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_175____________________ (t_plasma_electron_alpha_spitzer_slow_profile175)_ 1.11811114173042259e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_176____________________ (t_plasma_electron_alpha_spitzer_slow_profile176)_ 1.11561672758814456e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_177____________________ (t_plasma_electron_alpha_spitzer_slow_profile177)_ 1.11311042890734302e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_178____________________ (t_plasma_electron_alpha_spitzer_slow_profile178)_ 1.11059228859613368e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_179____________________ (t_plasma_electron_alpha_spitzer_slow_profile179)_ 1.10806234990367170e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_180____________________ (t_plasma_electron_alpha_spitzer_slow_profile180)_ 1.10552065642210162e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_181____________________ (t_plasma_electron_alpha_spitzer_slow_profile181)_ 1.10296725208853030e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_182____________________ (t_plasma_electron_alpha_spitzer_slow_profile182)_ 1.10040218118701727e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_183____________________ (t_plasma_electron_alpha_spitzer_slow_profile183)_ 1.09782548835058669e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_184____________________ (t_plasma_electron_alpha_spitzer_slow_profile184)_ 1.09523721856326706e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_185____________________ (t_plasma_electron_alpha_spitzer_slow_profile185)_ 1.09263741716213847e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_186____________________ (t_plasma_electron_alpha_spitzer_slow_profile186)_ 1.09002612983941427e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_187____________________ (t_plasma_electron_alpha_spitzer_slow_profile187)_ 1.08740340264453694e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_188____________________ (t_plasma_electron_alpha_spitzer_slow_profile188)_ 1.08476928198629996e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_189____________________ (t_plasma_electron_alpha_spitzer_slow_profile189)_ 1.08212381463498764e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_190____________________ (t_plasma_electron_alpha_spitzer_slow_profile190)_ 1.07946704772454072e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_191____________________ (t_plasma_electron_alpha_spitzer_slow_profile191)_ 1.07679902875474443e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_192____________________ (t_plasma_electron_alpha_spitzer_slow_profile192)_ 1.07411980559343556e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_193____________________ (t_plasma_electron_alpha_spitzer_slow_profile193)_ 1.07142942647873896e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_194____________________ (t_plasma_electron_alpha_spitzer_slow_profile194)_ 1.06872794002132010e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_195____________________ (t_plasma_electron_alpha_spitzer_slow_profile195)_ 1.06601539520666710e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_196____________________ (t_plasma_electron_alpha_spitzer_slow_profile196)_ 1.06329184139739619e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_197____________________ (t_plasma_electron_alpha_spitzer_slow_profile197)_ 1.06055732833557448e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_198____________________ (t_plasma_electron_alpha_spitzer_slow_profile198)_ 1.05781190614507659e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_199____________________ (t_plasma_electron_alpha_spitzer_slow_profile199)_ 1.05505562533395914e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_200____________________ (t_plasma_electron_alpha_spitzer_slow_profile200)_ 1.05228853679686396e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_201____________________ (t_plasma_electron_alpha_spitzer_slow_profile201)_ 1.04951069181744261e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_202____________________ (t_plasma_electron_alpha_spitzer_slow_profile202)_ 1.04672214207081304e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_203____________________ (t_plasma_electron_alpha_spitzer_slow_profile203)_ 1.04392293962603167e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_204____________________ (t_plasma_electron_alpha_spitzer_slow_profile204)_ 1.04111313694860375e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_205____________________ (t_plasma_electron_alpha_spitzer_slow_profile205)_ 1.03829278690300919e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_206____________________ (t_plasma_electron_alpha_spitzer_slow_profile206)_ 1.03546194275526360e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_207____________________ (t_plasma_electron_alpha_spitzer_slow_profile207)_ 1.03262065817549908e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_208____________________ (t_plasma_electron_alpha_spitzer_slow_profile208)_ 1.02976898724057864e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_209____________________ (t_plasma_electron_alpha_spitzer_slow_profile209)_ 1.02690698443673223e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_210____________________ (t_plasma_electron_alpha_spitzer_slow_profile210)_ 1.02403470466222801e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_211____________________ (t_plasma_electron_alpha_spitzer_slow_profile211)_ 1.02115220323006262e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_212____________________ (t_plasma_electron_alpha_spitzer_slow_profile212)_ 1.01825953587069007e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_213____________________ (t_plasma_electron_alpha_spitzer_slow_profile213)_ 1.01535675873477005e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_214____________________ (t_plasma_electron_alpha_spitzer_slow_profile214)_ 1.01244392839595232e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_215____________________ (t_plasma_electron_alpha_spitzer_slow_profile215)_ 1.00952110185368982e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_216____________________ (t_plasma_electron_alpha_spitzer_slow_profile216)_ 1.00658833653607704e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_217____________________ (t_plasma_electron_alpha_spitzer_slow_profile217)_ 1.00364569030272466e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_218____________________ (t_plasma_electron_alpha_spitzer_slow_profile218)_ 1.00069322144766226e+00 +Electron-alpha_Spitzer_slowing_down_time_at_point_219____________________ (t_plasma_electron_alpha_spitzer_slow_profile219)_ 9.97730988702269395e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_220____________________ (t_plasma_electron_alpha_spitzer_slow_profile220)_ 9.94759051238244485e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_221____________________ (t_plasma_electron_alpha_spitzer_slow_profile221)_ 9.91777468670601237e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_222____________________ (t_plasma_electron_alpha_spitzer_slow_profile222)_ 9.88786301060696537e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_223____________________ (t_plasma_electron_alpha_spitzer_slow_profile223)_ 9.85785608919294010e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_224____________________ (t_plasma_electron_alpha_spitzer_slow_profile224)_ 9.82775453209659200e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_225____________________ (t_plasma_electron_alpha_spitzer_slow_profile225)_ 9.79755895350688966e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_226____________________ (t_plasma_electron_alpha_spitzer_slow_profile226)_ 9.76726997220072835e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_227____________________ (t_plasma_electron_alpha_spitzer_slow_profile227)_ 9.73688821157490891e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_228____________________ (t_plasma_electron_alpha_spitzer_slow_profile228)_ 9.70641429967846303e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_229____________________ (t_plasma_electron_alpha_spitzer_slow_profile229)_ 9.67584886924532706e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_230____________________ (t_plasma_electron_alpha_spitzer_slow_profile230)_ 9.64519255772735451e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_231____________________ (t_plasma_electron_alpha_spitzer_slow_profile231)_ 9.61444600732772159e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_232____________________ (t_plasma_electron_alpha_spitzer_slow_profile232)_ 9.58360986503469348e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_233____________________ (t_plasma_electron_alpha_spitzer_slow_profile233)_ 9.55268478265574261e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_234____________________ (t_plasma_electron_alpha_spitzer_slow_profile234)_ 9.52167141685204776e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_235____________________ (t_plasma_electron_alpha_spitzer_slow_profile235)_ 9.49057042917341942e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_236____________________ (t_plasma_electron_alpha_spitzer_slow_profile236)_ 9.45938248609353161e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_237____________________ (t_plasma_electron_alpha_spitzer_slow_profile237)_ 9.42810825904560779e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_238____________________ (t_plasma_electron_alpha_spitzer_slow_profile238)_ 9.39674842445851755e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_239____________________ (t_plasma_electron_alpha_spitzer_slow_profile239)_ 9.36530366379318746e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_240____________________ (t_plasma_electron_alpha_spitzer_slow_profile240)_ 9.33377466357952490e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_241____________________ (t_plasma_electron_alpha_spitzer_slow_profile241)_ 9.30216211545370375e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_242____________________ (t_plasma_electron_alpha_spitzer_slow_profile242)_ 9.27046671619584539e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_243____________________ (t_plasma_electron_alpha_spitzer_slow_profile243)_ 9.23868916776821036e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_244____________________ (t_plasma_electron_alpha_spitzer_slow_profile244)_ 9.20683017735372755e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_245____________________ (t_plasma_electron_alpha_spitzer_slow_profile245)_ 9.17489045739500964e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_246____________________ (t_plasma_electron_alpha_spitzer_slow_profile246)_ 9.14287072563384595e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_247____________________ (t_plasma_electron_alpha_spitzer_slow_profile247)_ 9.11077170515106283e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_248____________________ (t_plasma_electron_alpha_spitzer_slow_profile248)_ 9.07859412440690461e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_249____________________ (t_plasma_electron_alpha_spitzer_slow_profile249)_ 9.04633871728187100e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_250____________________ (t_plasma_electron_alpha_spitzer_slow_profile250)_ 9.01400622311803068e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_251____________________ (t_plasma_electron_alpha_spitzer_slow_profile251)_ 8.98159738676075570e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_252____________________ (t_plasma_electron_alpha_spitzer_slow_profile252)_ 8.94911295860105316e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_253____________________ (t_plasma_electron_alpha_spitzer_slow_profile253)_ 8.91655369461826219e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_254____________________ (t_plasma_electron_alpha_spitzer_slow_profile254)_ 8.88392035642336930e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_255____________________ (t_plasma_electron_alpha_spitzer_slow_profile255)_ 8.85121371130274448e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_256____________________ (t_plasma_electron_alpha_spitzer_slow_profile256)_ 8.81843453226244689e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_257____________________ (t_plasma_electron_alpha_spitzer_slow_profile257)_ 8.78558359807302902e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_258____________________ (t_plasma_electron_alpha_spitzer_slow_profile258)_ 8.75266169331489707e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_259____________________ (t_plasma_electron_alpha_spitzer_slow_profile259)_ 8.71966960842418093e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_260____________________ (t_plasma_electron_alpha_spitzer_slow_profile260)_ 8.68660813973918811e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_261____________________ (t_plasma_electron_alpha_spitzer_slow_profile261)_ 8.65347808954739839e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_262____________________ (t_plasma_electron_alpha_spitzer_slow_profile262)_ 8.62028026613303355e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_263____________________ (t_plasma_electron_alpha_spitzer_slow_profile263)_ 8.58701548382520441e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_264____________________ (t_plasma_electron_alpha_spitzer_slow_profile264)_ 8.55368456304664626e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_265____________________ (t_plasma_electron_alpha_spitzer_slow_profile265)_ 8.52028833036303945e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_266____________________ (t_plasma_electron_alpha_spitzer_slow_profile266)_ 8.48682761853297940e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_267____________________ (t_plasma_electron_alpha_spitzer_slow_profile267)_ 8.45330326655849174e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_268____________________ (t_plasma_electron_alpha_spitzer_slow_profile268)_ 8.41971611973628686e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_269____________________ (t_plasma_electron_alpha_spitzer_slow_profile269)_ 8.38606702970949858e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_270____________________ (t_plasma_electron_alpha_spitzer_slow_profile270)_ 8.35235685452026422e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_271____________________ (t_plasma_electron_alpha_spitzer_slow_profile271)_ 8.31858645866277557e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_272____________________ (t_plasma_electron_alpha_spitzer_slow_profile272)_ 8.28475671313716799e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_273____________________ (t_plasma_electron_alpha_spitzer_slow_profile273)_ 8.25086849550397572e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_274____________________ (t_plasma_electron_alpha_spitzer_slow_profile274)_ 8.21692268993938435e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_275____________________ (t_plasma_electron_alpha_spitzer_slow_profile275)_ 8.18292018729109172e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_276____________________ (t_plasma_electron_alpha_spitzer_slow_profile276)_ 8.14886188513499365e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_277____________________ (t_plasma_electron_alpha_spitzer_slow_profile277)_ 8.11474868783256253e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_278____________________ (t_plasma_electron_alpha_spitzer_slow_profile278)_ 8.08058150658896746e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_279____________________ (t_plasma_electron_alpha_spitzer_slow_profile279)_ 8.04636125951197378e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_280____________________ (t_plasma_electron_alpha_spitzer_slow_profile280)_ 8.01208887167167094e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_281____________________ (t_plasma_electron_alpha_spitzer_slow_profile281)_ 7.97776527516090073e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_282____________________ (t_plasma_electron_alpha_spitzer_slow_profile282)_ 7.94339140915659270e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_283____________________ (t_plasma_electron_alpha_spitzer_slow_profile283)_ 7.90896821998188781e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_284____________________ (t_plasma_electron_alpha_spitzer_slow_profile284)_ 7.87449666116910585e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_285____________________ (t_plasma_electron_alpha_spitzer_slow_profile285)_ 7.83997769352359652e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_286____________________ (t_plasma_electron_alpha_spitzer_slow_profile286)_ 7.80541228518844776e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_287____________________ (t_plasma_electron_alpha_spitzer_slow_profile287)_ 7.77080141171011984e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_288____________________ (t_plasma_electron_alpha_spitzer_slow_profile288)_ 7.73614605610496775e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_289____________________ (t_plasma_electron_alpha_spitzer_slow_profile289)_ 7.70144720892675161e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_290____________________ (t_plasma_electron_alpha_spitzer_slow_profile290)_ 7.66670586833503864e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_291____________________ (t_plasma_electron_alpha_spitzer_slow_profile291)_ 7.63192304016466316e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_292____________________ (t_plasma_electron_alpha_spitzer_slow_profile292)_ 7.59709973799608473e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_293____________________ (t_plasma_electron_alpha_spitzer_slow_profile293)_ 7.56223698322689319e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_294____________________ (t_plasma_electron_alpha_spitzer_slow_profile294)_ 7.52733580514425515e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_295____________________ (t_plasma_electron_alpha_spitzer_slow_profile295)_ 7.49239724099848403e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_296____________________ (t_plasma_electron_alpha_spitzer_slow_profile296)_ 7.45742233607768812e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_297____________________ (t_plasma_electron_alpha_spitzer_slow_profile297)_ 7.42241214378355108e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_298____________________ (t_plasma_electron_alpha_spitzer_slow_profile298)_ 7.38736772570823819e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_299____________________ (t_plasma_electron_alpha_spitzer_slow_profile299)_ 7.35229015171246947e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_300____________________ (t_plasma_electron_alpha_spitzer_slow_profile300)_ 7.31718050000484066e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_301____________________ (t_plasma_electron_alpha_spitzer_slow_profile301)_ 7.28203985722232772e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_302____________________ (t_plasma_electron_alpha_spitzer_slow_profile302)_ 7.24686931851205030e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_303____________________ (t_plasma_electron_alpha_spitzer_slow_profile303)_ 7.21166998761436084e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_304____________________ (t_plasma_electron_alpha_spitzer_slow_profile304)_ 7.17644297694722599e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_305____________________ (t_plasma_electron_alpha_spitzer_slow_profile305)_ 7.14118940769198685e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_306____________________ (t_plasma_electron_alpha_spitzer_slow_profile306)_ 7.10591040988048483e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_307____________________ (t_plasma_electron_alpha_spitzer_slow_profile307)_ 7.07060712248363088e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_308____________________ (t_plasma_electron_alpha_spitzer_slow_profile308)_ 7.03528069350143448e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_309____________________ (t_plasma_electron_alpha_spitzer_slow_profile309)_ 6.99993228005455270e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_310____________________ (t_plasma_electron_alpha_spitzer_slow_profile310)_ 6.96456304847734353e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_311____________________ (t_plasma_electron_alpha_spitzer_slow_profile311)_ 6.92917417441255790e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_312____________________ (t_plasma_electron_alpha_spitzer_slow_profile312)_ 6.89376684290758712e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_313____________________ (t_plasma_electron_alpha_spitzer_slow_profile313)_ 6.85834224851247676e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_314____________________ (t_plasma_electron_alpha_spitzer_slow_profile314)_ 6.82290159537956686e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_315____________________ (t_plasma_electron_alpha_spitzer_slow_profile315)_ 6.78744609736497195e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_316____________________ (t_plasma_electron_alpha_spitzer_slow_profile316)_ 6.75197697813184394e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_317____________________ (t_plasma_electron_alpha_spitzer_slow_profile317)_ 6.71649547125550583e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_318____________________ (t_plasma_electron_alpha_spitzer_slow_profile318)_ 6.68100282033053716e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_319____________________ (t_plasma_electron_alpha_spitzer_slow_profile319)_ 6.64550027907982011e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_320____________________ (t_plasma_electron_alpha_spitzer_slow_profile320)_ 6.60998911146564061e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_321____________________ (t_plasma_electron_alpha_spitzer_slow_profile321)_ 6.57447059180288673e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_322____________________ (t_plasma_electron_alpha_spitzer_slow_profile322)_ 6.53894600487441302e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_323____________________ (t_plasma_electron_alpha_spitzer_slow_profile323)_ 6.50341664604867864e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_324____________________ (t_plasma_electron_alpha_spitzer_slow_profile324)_ 6.46788382139962259e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_325____________________ (t_plasma_electron_alpha_spitzer_slow_profile325)_ 6.43234884782898919e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_326____________________ (t_plasma_electron_alpha_spitzer_slow_profile326)_ 6.39681305319104831e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_327____________________ (t_plasma_electron_alpha_spitzer_slow_profile327)_ 6.36127777641992243e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_328____________________ (t_plasma_electron_alpha_spitzer_slow_profile328)_ 6.32574436765945824e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_329____________________ (t_plasma_electron_alpha_spitzer_slow_profile329)_ 6.29021418839584290e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_330____________________ (t_plasma_electron_alpha_spitzer_slow_profile330)_ 6.25468861159301448e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_331____________________ (t_plasma_electron_alpha_spitzer_slow_profile331)_ 6.21916902183095810e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_332____________________ (t_plasma_electron_alpha_spitzer_slow_profile332)_ 6.18365681544699286e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_333____________________ (t_plasma_electron_alpha_spitzer_slow_profile333)_ 6.14815340068013749e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_334____________________ (t_plasma_electron_alpha_spitzer_slow_profile334)_ 6.11266019781870007e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_335____________________ (t_plasma_electron_alpha_spitzer_slow_profile335)_ 6.07717863935116287e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_336____________________ (t_plasma_electron_alpha_spitzer_slow_profile336)_ 6.04171017012051559e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_337____________________ (t_plasma_electron_alpha_spitzer_slow_profile337)_ 6.00625624748213349e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_338____________________ (t_plasma_electron_alpha_spitzer_slow_profile338)_ 5.97081834146535151e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_339____________________ (t_plasma_electron_alpha_spitzer_slow_profile339)_ 5.93539793493882750e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_340____________________ (t_plasma_electron_alpha_spitzer_slow_profile340)_ 5.89999652377993899e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_341____________________ (t_plasma_electron_alpha_spitzer_slow_profile341)_ 5.86461561704823109e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_342____________________ (t_plasma_electron_alpha_spitzer_slow_profile342)_ 5.82925673716315318e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_343____________________ (t_plasma_electron_alpha_spitzer_slow_profile343)_ 5.79392142008625433e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_344____________________ (t_plasma_electron_alpha_spitzer_slow_profile344)_ 5.75861121550796384e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_345____________________ (t_plasma_electron_alpha_spitzer_slow_profile345)_ 5.72332768703915362e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_346____________________ (t_plasma_electron_alpha_spitzer_slow_profile346)_ 5.68807241240772643e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_347____________________ (t_plasma_electron_alpha_spitzer_slow_profile347)_ 5.65284698366032679e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_348____________________ (t_plasma_electron_alpha_spitzer_slow_profile348)_ 5.61765300736949080e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_349____________________ (t_plasma_electron_alpha_spitzer_slow_profile349)_ 5.58249210484636271e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_350____________________ (t_plasma_electron_alpha_spitzer_slow_profile350)_ 5.54736591235931109e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_351____________________ (t_plasma_electron_alpha_spitzer_slow_profile351)_ 5.51227608135857028e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_352____________________ (t_plasma_electron_alpha_spitzer_slow_profile352)_ 5.47722427870729223e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_353____________________ (t_plasma_electron_alpha_spitzer_slow_profile353)_ 5.44221218691914199e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_354____________________ (t_plasma_electron_alpha_spitzer_slow_profile354)_ 5.40724150440287987e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_355____________________ (t_plasma_electron_alpha_spitzer_slow_profile355)_ 5.37231394571406562e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_356____________________ (t_plasma_electron_alpha_spitzer_slow_profile356)_ 5.33743124181433992e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_357____________________ (t_plasma_electron_alpha_spitzer_slow_profile357)_ 5.30259514033852630e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_358____________________ (t_plasma_electron_alpha_spitzer_slow_profile358)_ 5.26780740586995755e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_359____________________ (t_plasma_electron_alpha_spitzer_slow_profile359)_ 5.23306982022435974e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_360____________________ (t_plasma_electron_alpha_spitzer_slow_profile360)_ 5.19838418274275016e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_361____________________ (t_plasma_electron_alpha_spitzer_slow_profile361)_ 5.16375231059363005e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_362____________________ (t_plasma_electron_alpha_spitzer_slow_profile362)_ 5.12917603908512820e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_363____________________ (t_plasma_electron_alpha_spitzer_slow_profile363)_ 5.09465722198730431e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_364____________________ (t_plasma_electron_alpha_spitzer_slow_profile364)_ 5.06019773186531463e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_365____________________ (t_plasma_electron_alpha_spitzer_slow_profile365)_ 5.02579946042381209e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_366____________________ (t_plasma_electron_alpha_spitzer_slow_profile366)_ 4.99146431886323461e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_367____________________ (t_plasma_electron_alpha_spitzer_slow_profile367)_ 4.95719423824846905e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_368____________________ (t_plasma_electron_alpha_spitzer_slow_profile368)_ 4.92299116989058427e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_369____________________ (t_plasma_electron_alpha_spitzer_slow_profile369)_ 4.88885708574222089e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_370____________________ (t_plasma_electron_alpha_spitzer_slow_profile370)_ 4.85479397880738184e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_371____________________ (t_plasma_electron_alpha_spitzer_slow_profile371)_ 4.82080386356628532e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_372____________________ (t_plasma_electron_alpha_spitzer_slow_profile372)_ 4.78688877641617105e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_373____________________ (t_plasma_electron_alpha_spitzer_slow_profile373)_ 4.75305077612872051e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_374____________________ (t_plasma_electron_alpha_spitzer_slow_profile374)_ 4.71929194432514465e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_375____________________ (t_plasma_electron_alpha_spitzer_slow_profile375)_ 4.68561438596972302e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_376____________________ (t_plasma_electron_alpha_spitzer_slow_profile376)_ 4.65202022988286668e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_377____________________ (t_plasma_electron_alpha_spitzer_slow_profile377)_ 4.61851162927473191e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_378____________________ (t_plasma_electron_alpha_spitzer_slow_profile378)_ 4.58509076230048662e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_379____________________ (t_plasma_electron_alpha_spitzer_slow_profile379)_ 4.55175983263845674e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_380____________________ (t_plasma_electron_alpha_spitzer_slow_profile380)_ 4.51852107009239390e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_381____________________ (t_plasma_electron_alpha_spitzer_slow_profile381)_ 4.48537673121921776e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_382____________________ (t_plasma_electron_alpha_spitzer_slow_profile382)_ 4.45232909998368231e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_383____________________ (t_plasma_electron_alpha_spitzer_slow_profile383)_ 4.41938048844153220e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_384____________________ (t_plasma_electron_alpha_spitzer_slow_profile384)_ 4.38653323745271218e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_385____________________ (t_plasma_electron_alpha_spitzer_slow_profile385)_ 4.35378971742650445e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_386____________________ (t_plasma_electron_alpha_spitzer_slow_profile386)_ 4.32115232910035008e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_387____________________ (t_plasma_electron_alpha_spitzer_slow_profile387)_ 4.28862350435443129e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_388____________________ (t_plasma_electron_alpha_spitzer_slow_profile388)_ 4.25620570706417678e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_389____________________ (t_plasma_electron_alpha_spitzer_slow_profile389)_ 4.22390143399292428e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_390____________________ (t_plasma_electron_alpha_spitzer_slow_profile390)_ 4.19171321572725519e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_391____________________ (t_plasma_electron_alpha_spitzer_slow_profile391)_ 4.15964361765766066e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_392____________________ (t_plasma_electron_alpha_spitzer_slow_profile392)_ 4.12769524100731311e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_393____________________ (t_plasma_electron_alpha_spitzer_slow_profile393)_ 4.09587072391206175e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_394____________________ (t_plasma_electron_alpha_spitzer_slow_profile394)_ 4.06417274255488792e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_395____________________ (t_plasma_electron_alpha_spitzer_slow_profile395)_ 4.03260401235834454e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_396____________________ (t_plasma_electron_alpha_spitzer_slow_profile396)_ 4.00116728923880172e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_397____________________ (t_plasma_electron_alpha_spitzer_slow_profile397)_ 3.96986537092654856e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_398____________________ (t_plasma_electron_alpha_spitzer_slow_profile398)_ 3.93870109835617987e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_399____________________ (t_plasma_electron_alpha_spitzer_slow_profile399)_ 3.90767735713203834e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_400____________________ (t_plasma_electron_alpha_spitzer_slow_profile400)_ 3.87679707907377824e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_401____________________ (t_plasma_electron_alpha_spitzer_slow_profile401)_ 3.84606324384770826e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_402____________________ (t_plasma_electron_alpha_spitzer_slow_profile402)_ 3.81547888068981822e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_403____________________ (t_plasma_electron_alpha_spitzer_slow_profile403)_ 3.78504707022705666e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_404____________________ (t_plasma_electron_alpha_spitzer_slow_profile404)_ 3.75477094640390086e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_405____________________ (t_plasma_electron_alpha_spitzer_slow_profile405)_ 3.72465369852184924e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_406____________________ (t_plasma_electron_alpha_spitzer_slow_profile406)_ 3.69469857340018804e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_407____________________ (t_plasma_electron_alpha_spitzer_slow_profile407)_ 3.66490887766705242e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_408____________________ (t_plasma_electron_alpha_spitzer_slow_profile408)_ 3.63528798019061572e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_409____________________ (t_plasma_electron_alpha_spitzer_slow_profile409)_ 3.60583931466119723e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_410____________________ (t_plasma_electron_alpha_spitzer_slow_profile410)_ 3.57656638233591895e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_411____________________ (t_plasma_electron_alpha_spitzer_slow_profile411)_ 3.54747275495880088e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_412____________________ (t_plasma_electron_alpha_spitzer_slow_profile412)_ 3.51856207787021313e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_413____________________ (t_plasma_electron_alpha_spitzer_slow_profile413)_ 3.48983807332111651e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_414____________________ (t_plasma_electron_alpha_spitzer_slow_profile414)_ 3.46130454400885634e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_415____________________ (t_plasma_electron_alpha_spitzer_slow_profile415)_ 3.43296537685306158e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_416____________________ (t_plasma_electron_alpha_spitzer_slow_profile416)_ 3.40482454703196491e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_417____________________ (t_plasma_electron_alpha_spitzer_slow_profile417)_ 3.37688612230161056e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_418____________________ (t_plasma_electron_alpha_spitzer_slow_profile418)_ 3.34915426762270207e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_419____________________ (t_plasma_electron_alpha_spitzer_slow_profile419)_ 3.32163325012248323e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_420____________________ (t_plasma_electron_alpha_spitzer_slow_profile420)_ 3.29432744442196890e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_421____________________ (t_plasma_electron_alpha_spitzer_slow_profile421)_ 3.26724133836223118e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_422____________________ (t_plasma_electron_alpha_spitzer_slow_profile422)_ 3.24037953916713861e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_423____________________ (t_plasma_electron_alpha_spitzer_slow_profile423)_ 3.21374678008426284e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_424____________________ (t_plasma_electron_alpha_spitzer_slow_profile424)_ 3.18734792755051288e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_425____________________ (t_plasma_electron_alpha_spitzer_slow_profile425)_ 3.16118798893460451e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_426____________________ (t_plasma_electron_alpha_spitzer_slow_profile426)_ 3.13527212091473328e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_427____________________ (t_plasma_electron_alpha_spitzer_slow_profile427)_ 3.10960563855717409e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_428____________________ (t_plasma_electron_alpha_spitzer_slow_profile428)_ 3.08419402516973473e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_429____________________ (t_plasma_electron_alpha_spitzer_slow_profile429)_ 3.05904294301370672e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_430____________________ (t_plasma_electron_alpha_spitzer_slow_profile430)_ 3.03415824496898301e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_431____________________ (t_plasma_electron_alpha_spitzer_slow_profile431)_ 3.00954598725995115e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_432____________________ (t_plasma_electron_alpha_spitzer_slow_profile432)_ 2.98521244336478031e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_433____________________ (t_plasma_electron_alpha_spitzer_slow_profile433)_ 2.96116411924822742e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_434____________________ (t_plasma_electron_alpha_spitzer_slow_profile434)_ 2.93740777007882536e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_435____________________ (t_plasma_electron_alpha_spitzer_slow_profile435)_ 2.91395041861542636e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_436____________________ (t_plasma_electron_alpha_spitzer_slow_profile436)_ 2.89079937547698007e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_437____________________ (t_plasma_electron_alpha_spitzer_slow_profile437)_ 2.86796226154353240e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_438____________________ (t_plasma_electron_alpha_spitzer_slow_profile438)_ 2.84544703277730071e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_439____________________ (t_plasma_electron_alpha_spitzer_slow_profile439)_ 2.82326200780177783e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_440____________________ (t_plasma_electron_alpha_spitzer_slow_profile440)_ 2.80141589863602380e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_441____________________ (t_plasma_electron_alpha_spitzer_slow_profile441)_ 2.77991784505333239e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_442____________________ (t_plasma_electron_alpha_spitzer_slow_profile442)_ 2.75877745312132494e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_443____________________ (t_plasma_electron_alpha_spitzer_slow_profile443)_ 2.73800483858879118e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_444____________________ (t_plasma_electron_alpha_spitzer_slow_profile444)_ 2.71761067591849925e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_445____________________ (t_plasma_electron_alpha_spitzer_slow_profile445)_ 2.69760625393232367e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_446____________________ (t_plasma_electron_alpha_spitzer_slow_profile446)_ 2.67800353924541934e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_447____________________ (t_plasma_electron_alpha_spitzer_slow_profile447)_ 2.65881524893266441e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_448____________________ (t_plasma_electron_alpha_spitzer_slow_profile448)_ 2.64005493421217152e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_449____________________ (t_plasma_electron_alpha_spitzer_slow_profile449)_ 2.62173707737191009e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_450____________________ (t_plasma_electron_alpha_spitzer_slow_profile450)_ 2.60387720474261730e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_451____________________ (t_plasma_electron_alpha_spitzer_slow_profile451)_ 2.58649201928279726e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_452____________________ (t_plasma_electron_alpha_spitzer_slow_profile452)_ 2.56959955736354551e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_453____________________ (t_plasma_electron_alpha_spitzer_slow_profile453)_ 2.55321937572854651e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_454____________________ (t_plasma_electron_alpha_spitzer_slow_profile454)_ 2.53737277651864213e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_455____________________ (t_plasma_electron_alpha_spitzer_slow_profile455)_ 2.52208308093578359e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_456____________________ (t_plasma_electron_alpha_spitzer_slow_profile456)_ 2.50737596596103729e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_457____________________ (t_plasma_electron_alpha_spitzer_slow_profile457)_ 2.49327988414945384e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_458____________________ (t_plasma_electron_alpha_spitzer_slow_profile458)_ 2.47982659491491980e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_459____________________ (t_plasma_electron_alpha_spitzer_slow_profile459)_ 2.46705184861634591e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_460____________________ (t_plasma_electron_alpha_spitzer_slow_profile460)_ 2.45499628521639313e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_461____________________ (t_plasma_electron_alpha_spitzer_slow_profile461)_ 2.44370664293789369e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_462____________________ (t_plasma_electron_alpha_spitzer_slow_profile462)_ 2.43323743011698151e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_463____________________ (t_plasma_electron_alpha_spitzer_slow_profile463)_ 2.42365331782793264e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_464____________________ (t_plasma_electron_alpha_spitzer_slow_profile464)_ 2.41503271153109239e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_465____________________ (t_plasma_electron_alpha_spitzer_slow_profile465)_ 2.40747337702937658e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_466____________________ (t_plasma_electron_alpha_spitzer_slow_profile466)_ 2.40110195433673096e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_467____________________ (t_plasma_electron_alpha_spitzer_slow_profile467)_ 2.39609171678831195e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_468____________________ (t_plasma_electron_alpha_spitzer_slow_profile468)_ 2.39270104343923012e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_469____________________ (t_plasma_electron_alpha_spitzer_slow_profile469)_ 2.39138151546657796e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_470____________________ (t_plasma_electron_alpha_spitzer_slow_profile470)_ 2.39343895722824357e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_471____________________ (t_plasma_electron_alpha_spitzer_slow_profile471)_ 2.31212901326312364e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_472____________________ (t_plasma_electron_alpha_spitzer_slow_profile472)_ 2.23032143507040509e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_473____________________ (t_plasma_electron_alpha_spitzer_slow_profile473)_ 2.14802765896704106e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_474____________________ (t_plasma_electron_alpha_spitzer_slow_profile474)_ 2.06526162054385454e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_475____________________ (t_plasma_electron_alpha_spitzer_slow_profile475)_ 1.98204011609122571e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_476____________________ (t_plasma_electron_alpha_spitzer_slow_profile476)_ 1.89838322134355808e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_477____________________ (t_plasma_electron_alpha_spitzer_slow_profile477)_ 1.81431477829951088e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_478____________________ (t_plasma_electron_alpha_spitzer_slow_profile478)_ 1.72986296331391093e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_479____________________ (t_plasma_electron_alpha_spitzer_slow_profile479)_ 1.64506095276629516e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_480____________________ (t_plasma_electron_alpha_spitzer_slow_profile480)_ 1.55994770661293053e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_481____________________ (t_plasma_electron_alpha_spitzer_slow_profile481)_ 1.47456889533412239e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_482____________________ (t_plasma_electron_alpha_spitzer_slow_profile482)_ 1.38897800263713345e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_483____________________ (t_plasma_electron_alpha_spitzer_slow_profile483)_ 1.30323764540091841e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_484____________________ (t_plasma_electron_alpha_spitzer_slow_profile484)_ 1.21742116468201281e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_485____________________ (t_plasma_electron_alpha_spitzer_slow_profile485)_ 1.13161455853109050e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_486____________________ (t_plasma_electron_alpha_spitzer_slow_profile486)_ 1.04591885102073082e-01 +Electron-alpha_Spitzer_slowing_down_time_at_point_487____________________ (t_plasma_electron_alpha_spitzer_slow_profile487)_ 9.60453025579872527e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_488____________________ (t_plasma_electron_alpha_spitzer_slow_profile488)_ 8.75357699812473466e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_489____________________ (t_plasma_electron_alpha_spitzer_slow_profile489)_ 7.90799792302001037e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_490____________________ (t_plasma_electron_alpha_spitzer_slow_profile490)_ 7.06978544660775837e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_491____________________ (t_plasma_electron_alpha_spitzer_slow_profile491)_ 6.24133441388682458e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_492____________________ (t_plasma_electron_alpha_spitzer_slow_profile492)_ 5.42554866631976482e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_493____________________ (t_plasma_electron_alpha_spitzer_slow_profile493)_ 4.62598850638044831e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_494____________________ (t_plasma_electron_alpha_spitzer_slow_profile494)_ 3.84708199924437624e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_495____________________ (t_plasma_electron_alpha_spitzer_slow_profile495)_ 3.09444152854908353e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_496____________________ (t_plasma_electron_alpha_spitzer_slow_profile496)_ 2.37536660412754480e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_497____________________ (t_plasma_electron_alpha_spitzer_slow_profile497)_ 1.69970903686249009e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_498____________________ (t_plasma_electron_alpha_spitzer_slow_profile498)_ 1.08154487205141502e-02 +Electron-alpha_Spitzer_slowing_down_time_at_point_499____________________ (t_plasma_electron_alpha_spitzer_slow_profile499)_ 5.43064856133082443e-03 +Electron-alpha_Spitzer_slowing_down_time_at_point_500____________________ (t_plasma_electron_alpha_spitzer_slow_profile500)_ 1.31488211348599368e-03 +Volume_averaged_plasma_fuel_Spitzer_resistivity_(η)_(Ohm_m)______________ (res_plasma_fuel_spitzer_vol_avg)_ 1.31570862657945193e-09 +Plasma_Spitzer_resistivity_at_point_0____________________________________ (res_plasma_fuel_spitzer_profile0)_ 4.58669039022365360e-10 +Plasma_Spitzer_resistivity_at_point_1____________________________________ (res_plasma_fuel_spitzer_profile1)_ 4.58672487614522428e-10 +Plasma_Spitzer_resistivity_at_point_2____________________________________ (res_plasma_fuel_spitzer_profile2)_ 4.58682833610741968e-10 +Plasma_Spitzer_resistivity_at_point_3____________________________________ (res_plasma_fuel_spitzer_profile3)_ 4.58700077670301663e-10 +Plasma_Spitzer_resistivity_at_point_4____________________________________ (res_plasma_fuel_spitzer_profile4)_ 4.58724220892094309e-10 +Plasma_Spitzer_resistivity_at_point_5____________________________________ (res_plasma_fuel_spitzer_profile5)_ 4.58755264814778106e-10 +Plasma_Spitzer_resistivity_at_point_6____________________________________ (res_plasma_fuel_spitzer_profile6)_ 4.58793211416982366e-10 +Plasma_Spitzer_resistivity_at_point_7____________________________________ (res_plasma_fuel_spitzer_profile7)_ 4.58838063117574743e-10 +Plasma_Spitzer_resistivity_at_point_8____________________________________ (res_plasma_fuel_spitzer_profile8)_ 4.58889822775986888e-10 +Plasma_Spitzer_resistivity_at_point_9____________________________________ (res_plasma_fuel_spitzer_profile9)_ 4.58948493692599340e-10 +Plasma_Spitzer_resistivity_at_point_10___________________________________ (res_plasma_fuel_spitzer_profile10)_ 4.59014079609186089e-10 +Plasma_Spitzer_resistivity_at_point_11___________________________________ (res_plasma_fuel_spitzer_profile11)_ 4.59086584709419362e-10 +Plasma_Spitzer_resistivity_at_point_12___________________________________ (res_plasma_fuel_spitzer_profile12)_ 4.59166013619432930e-10 +Plasma_Spitzer_resistivity_at_point_13___________________________________ (res_plasma_fuel_spitzer_profile13)_ 4.59252371408446893e-10 +Plasma_Spitzer_resistivity_at_point_14___________________________________ (res_plasma_fuel_spitzer_profile14)_ 4.59345663589449789e-10 +Plasma_Spitzer_resistivity_at_point_15___________________________________ (res_plasma_fuel_spitzer_profile15)_ 4.59445896119944352e-10 +Plasma_Spitzer_resistivity_at_point_16___________________________________ (res_plasma_fuel_spitzer_profile16)_ 4.59553075402750444e-10 +Plasma_Spitzer_resistivity_at_point_17___________________________________ (res_plasma_fuel_spitzer_profile17)_ 4.59667208286869614e-10 +Plasma_Spitzer_resistivity_at_point_18___________________________________ (res_plasma_fuel_spitzer_profile18)_ 4.59788302068411441e-10 +Plasma_Spitzer_resistivity_at_point_19___________________________________ (res_plasma_fuel_spitzer_profile19)_ 4.59916364491578389e-10 +Plasma_Spitzer_resistivity_at_point_20___________________________________ (res_plasma_fuel_spitzer_profile20)_ 4.60051403749714055e-10 +Plasma_Spitzer_resistivity_at_point_21___________________________________ (res_plasma_fuel_spitzer_profile21)_ 4.60193428486411233e-10 +Plasma_Spitzer_resistivity_at_point_22___________________________________ (res_plasma_fuel_spitzer_profile22)_ 4.60342447796682419e-10 +Plasma_Spitzer_resistivity_at_point_23___________________________________ (res_plasma_fuel_spitzer_profile23)_ 4.60498471228191642e-10 +Plasma_Spitzer_resistivity_at_point_24___________________________________ (res_plasma_fuel_spitzer_profile24)_ 4.60661508782548280e-10 +Plasma_Spitzer_resistivity_at_point_25___________________________________ (res_plasma_fuel_spitzer_profile25)_ 4.60831570916663837e-10 +Plasma_Spitzer_resistivity_at_point_26___________________________________ (res_plasma_fuel_spitzer_profile26)_ 4.61008668544172165e-10 +Plasma_Spitzer_resistivity_at_point_27___________________________________ (res_plasma_fuel_spitzer_profile27)_ 4.61192813036909291e-10 +Plasma_Spitzer_resistivity_at_point_28___________________________________ (res_plasma_fuel_spitzer_profile28)_ 4.61384016226462101e-10 +Plasma_Spitzer_resistivity_at_point_29___________________________________ (res_plasma_fuel_spitzer_profile29)_ 4.61582290405774937e-10 +Plasma_Spitzer_resistivity_at_point_30___________________________________ (res_plasma_fuel_spitzer_profile30)_ 4.61787648330825718e-10 +Plasma_Spitzer_resistivity_at_point_31___________________________________ (res_plasma_fuel_spitzer_profile31)_ 4.62000103222361318e-10 +Plasma_Spitzer_resistivity_at_point_32___________________________________ (res_plasma_fuel_spitzer_profile32)_ 4.62219668767702523e-10 +Plasma_Spitzer_resistivity_at_point_33___________________________________ (res_plasma_fuel_spitzer_profile33)_ 4.62446359122610257e-10 +Plasma_Spitzer_resistivity_at_point_34___________________________________ (res_plasma_fuel_spitzer_profile34)_ 4.62680188913221385e-10 +Plasma_Spitzer_resistivity_at_point_35___________________________________ (res_plasma_fuel_spitzer_profile35)_ 4.62921173238045999e-10 +Plasma_Spitzer_resistivity_at_point_36___________________________________ (res_plasma_fuel_spitzer_profile36)_ 4.63169327670036970e-10 +Plasma_Spitzer_resistivity_at_point_37___________________________________ (res_plasma_fuel_spitzer_profile37)_ 4.63424668258721023e-10 +Plasma_Spitzer_resistivity_at_point_38___________________________________ (res_plasma_fuel_spitzer_profile38)_ 4.63687211532400690e-10 +Plasma_Spitzer_resistivity_at_point_39___________________________________ (res_plasma_fuel_spitzer_profile39)_ 4.63956974500423944e-10 +Plasma_Spitzer_resistivity_at_point_40___________________________________ (res_plasma_fuel_spitzer_profile40)_ 4.64233974655521290e-10 +Plasma_Spitzer_resistivity_at_point_41___________________________________ (res_plasma_fuel_spitzer_profile41)_ 4.64518229976212962e-10 +Plasma_Spitzer_resistivity_at_point_42___________________________________ (res_plasma_fuel_spitzer_profile42)_ 4.64809758929284942e-10 +Plasma_Spitzer_resistivity_at_point_43___________________________________ (res_plasma_fuel_spitzer_profile43)_ 4.65108580472336200e-10 +Plasma_Spitzer_resistivity_at_point_44___________________________________ (res_plasma_fuel_spitzer_profile44)_ 4.65414714056396366e-10 +Plasma_Spitzer_resistivity_at_point_45___________________________________ (res_plasma_fuel_spitzer_profile45)_ 4.65728179628613857e-10 +Plasma_Spitzer_resistivity_at_point_46___________________________________ (res_plasma_fuel_spitzer_profile46)_ 4.66048997635017785e-10 +Plasma_Spitzer_resistivity_at_point_47___________________________________ (res_plasma_fuel_spitzer_profile47)_ 4.66377189023350839e-10 +Plasma_Spitzer_resistivity_at_point_48___________________________________ (res_plasma_fuel_spitzer_profile48)_ 4.66712775245977241e-10 +Plasma_Spitzer_resistivity_at_point_49___________________________________ (res_plasma_fuel_spitzer_profile49)_ 4.67055778262862250e-10 +Plasma_Spitzer_resistivity_at_point_50___________________________________ (res_plasma_fuel_spitzer_profile50)_ 4.67406220544629836e-10 +Plasma_Spitzer_resistivity_at_point_51___________________________________ (res_plasma_fuel_spitzer_profile51)_ 4.67764125075691904e-10 +Plasma_Spitzer_resistivity_at_point_52___________________________________ (res_plasma_fuel_spitzer_profile52)_ 4.68129515357456513e-10 +Plasma_Spitzer_resistivity_at_point_53___________________________________ (res_plasma_fuel_spitzer_profile53)_ 4.68502415411612404e-10 +Plasma_Spitzer_resistivity_at_point_54___________________________________ (res_plasma_fuel_spitzer_profile54)_ 4.68882849783489524e-10 +Plasma_Spitzer_resistivity_at_point_55___________________________________ (res_plasma_fuel_spitzer_profile55)_ 4.69270843545499998e-10 +Plasma_Spitzer_resistivity_at_point_56___________________________________ (res_plasma_fuel_spitzer_profile56)_ 4.69666422300657258e-10 +Plasma_Spitzer_resistivity_at_point_57___________________________________ (res_plasma_fuel_spitzer_profile57)_ 4.70069612186176146e-10 +Plasma_Spitzer_resistivity_at_point_58___________________________________ (res_plasma_fuel_spitzer_profile58)_ 4.70480439877152831e-10 +Plasma_Spitzer_resistivity_at_point_59___________________________________ (res_plasma_fuel_spitzer_profile59)_ 4.70898932590326725e-10 +Plasma_Spitzer_resistivity_at_point_60___________________________________ (res_plasma_fuel_spitzer_profile60)_ 4.71325118087925734e-10 +Plasma_Spitzer_resistivity_at_point_61___________________________________ (res_plasma_fuel_spitzer_profile61)_ 4.71759024681594641e-10 +Plasma_Spitzer_resistivity_at_point_62___________________________________ (res_plasma_fuel_spitzer_profile62)_ 4.72200681236408071e-10 +Plasma_Spitzer_resistivity_at_point_63___________________________________ (res_plasma_fuel_spitzer_profile63)_ 4.72650117174968552e-10 +Plasma_Spitzer_resistivity_at_point_64___________________________________ (res_plasma_fuel_spitzer_profile64)_ 4.73107362481591633e-10 +Plasma_Spitzer_resistivity_at_point_65___________________________________ (res_plasma_fuel_spitzer_profile65)_ 4.73572447706577857e-10 +Plasma_Spitzer_resistivity_at_point_66___________________________________ (res_plasma_fuel_spitzer_profile66)_ 4.74045403970573454e-10 +Plasma_Spitzer_resistivity_at_point_67___________________________________ (res_plasma_fuel_spitzer_profile67)_ 4.74526262969020674e-10 +Plasma_Spitzer_resistivity_at_point_68___________________________________ (res_plasma_fuel_spitzer_profile68)_ 4.75015056976698388e-10 +Plasma_Spitzer_resistivity_at_point_69___________________________________ (res_plasma_fuel_spitzer_profile69)_ 4.75511818852353887e-10 +Plasma_Spitzer_resistivity_at_point_70___________________________________ (res_plasma_fuel_spitzer_profile70)_ 4.76016582043429185e-10 +Plasma_Spitzer_resistivity_at_point_71___________________________________ (res_plasma_fuel_spitzer_profile71)_ 4.76529380590878103e-10 +Plasma_Spitzer_resistivity_at_point_72___________________________________ (res_plasma_fuel_spitzer_profile72)_ 4.77050249134082105e-10 +Plasma_Spitzer_resistivity_at_point_73___________________________________ (res_plasma_fuel_spitzer_profile73)_ 4.77579222915859283e-10 +Plasma_Spitzer_resistivity_at_point_74___________________________________ (res_plasma_fuel_spitzer_profile74)_ 4.78116337787573238e-10 +Plasma_Spitzer_resistivity_at_point_75___________________________________ (res_plasma_fuel_spitzer_profile75)_ 4.78661630214337905e-10 +Plasma_Spitzer_resistivity_at_point_76___________________________________ (res_plasma_fuel_spitzer_profile76)_ 4.79215137280324638e-10 +Plasma_Spitzer_resistivity_at_point_77___________________________________ (res_plasma_fuel_spitzer_profile77)_ 4.79776896694170217e-10 +Plasma_Spitzer_resistivity_at_point_78___________________________________ (res_plasma_fuel_spitzer_profile78)_ 4.80346946794486695e-10 +Plasma_Spitzer_resistivity_at_point_79___________________________________ (res_plasma_fuel_spitzer_profile79)_ 4.80925326555474959e-10 +Plasma_Spitzer_resistivity_at_point_80___________________________________ (res_plasma_fuel_spitzer_profile80)_ 4.81512075592644370e-10 +Plasma_Spitzer_resistivity_at_point_81___________________________________ (res_plasma_fuel_spitzer_profile81)_ 4.82107234168639737e-10 +Plasma_Spitzer_resistivity_at_point_82___________________________________ (res_plasma_fuel_spitzer_profile82)_ 4.82710843199174062e-10 +Plasma_Spitzer_resistivity_at_point_83___________________________________ (res_plasma_fuel_spitzer_profile83)_ 4.83322944259073263e-10 +Plasma_Spitzer_resistivity_at_point_84___________________________________ (res_plasma_fuel_spitzer_profile84)_ 4.83943579588431126e-10 +Plasma_Spitzer_resistivity_at_point_85___________________________________ (res_plasma_fuel_spitzer_profile85)_ 4.84572792098876333e-10 +Plasma_Spitzer_resistivity_at_point_86___________________________________ (res_plasma_fuel_spitzer_profile86)_ 4.85210625379954884e-10 +Plasma_Spitzer_resistivity_at_point_87___________________________________ (res_plasma_fuel_spitzer_profile87)_ 4.85857123705627290e-10 +Plasma_Spitzer_resistivity_at_point_88___________________________________ (res_plasma_fuel_spitzer_profile88)_ 4.86512332040883645e-10 +Plasma_Spitzer_resistivity_at_point_89___________________________________ (res_plasma_fuel_spitzer_profile89)_ 4.87176296048476970e-10 +Plasma_Spitzer_resistivity_at_point_90___________________________________ (res_plasma_fuel_spitzer_profile90)_ 4.87849062095779620e-10 +Plasma_Spitzer_resistivity_at_point_91___________________________________ (res_plasma_fuel_spitzer_profile91)_ 4.88530677261759303e-10 +Plasma_Spitzer_resistivity_at_point_92___________________________________ (res_plasma_fuel_spitzer_profile92)_ 4.89221189344080742e-10 +Plasma_Spitzer_resistivity_at_point_93___________________________________ (res_plasma_fuel_spitzer_profile93)_ 4.89920646866333680e-10 +Plasma_Spitzer_resistivity_at_point_94___________________________________ (res_plasma_fuel_spitzer_profile94)_ 4.90629099085388375e-10 +Plasma_Spitzer_resistivity_at_point_95___________________________________ (res_plasma_fuel_spitzer_profile95)_ 4.91346595998880451e-10 +Plasma_Spitzer_resistivity_at_point_96___________________________________ (res_plasma_fuel_spitzer_profile96)_ 4.92073188352827885e-10 +Plasma_Spitzer_resistivity_at_point_97___________________________________ (res_plasma_fuel_spitzer_profile97)_ 4.92808927649381898e-10 +Plasma_Spitzer_resistivity_at_point_98___________________________________ (res_plasma_fuel_spitzer_profile98)_ 4.93553866154712876e-10 +Plasma_Spitzer_resistivity_at_point_99___________________________________ (res_plasma_fuel_spitzer_profile99)_ 4.94308056907034237e-10 +Plasma_Spitzer_resistivity_at_point_100__________________________________ (res_plasma_fuel_spitzer_profile100)_ 4.95071553724765456e-10 +Plasma_Spitzer_resistivity_at_point_101__________________________________ (res_plasma_fuel_spitzer_profile101)_ 4.95844411214837996e-10 +Plasma_Spitzer_resistivity_at_point_102__________________________________ (res_plasma_fuel_spitzer_profile102)_ 4.96626684781144025e-10 +Plasma_Spitzer_resistivity_at_point_103__________________________________ (res_plasma_fuel_spitzer_profile103)_ 4.97418430633132375e-10 +Plasma_Spitzer_resistivity_at_point_104__________________________________ (res_plasma_fuel_spitzer_profile104)_ 4.98219705794551327e-10 +Plasma_Spitzer_resistivity_at_point_105__________________________________ (res_plasma_fuel_spitzer_profile105)_ 4.99030568112344103e-10 +Plasma_Spitzer_resistivity_at_point_106__________________________________ (res_plasma_fuel_spitzer_profile106)_ 4.99851076265696370e-10 +Plasma_Spitzer_resistivity_at_point_107__________________________________ (res_plasma_fuel_spitzer_profile107)_ 5.00681289775237481e-10 +Plasma_Spitzer_resistivity_at_point_108__________________________________ (res_plasma_fuel_spitzer_profile108)_ 5.01521269012403437e-10 +Plasma_Spitzer_resistivity_at_point_109__________________________________ (res_plasma_fuel_spitzer_profile109)_ 5.02371075208956912e-10 +Plasma_Spitzer_resistivity_at_point_110__________________________________ (res_plasma_fuel_spitzer_profile110)_ 5.03230770466670016e-10 +Plasma_Spitzer_resistivity_at_point_111__________________________________ (res_plasma_fuel_spitzer_profile111)_ 5.04100417767174680e-10 +Plasma_Spitzer_resistivity_at_point_112__________________________________ (res_plasma_fuel_spitzer_profile112)_ 5.04980080981979391e-10 +Plasma_Spitzer_resistivity_at_point_113__________________________________ (res_plasma_fuel_spitzer_profile113)_ 5.05869824882657169e-10 +Plasma_Spitzer_resistivity_at_point_114__________________________________ (res_plasma_fuel_spitzer_profile114)_ 5.06769715151206414e-10 +Plasma_Spitzer_resistivity_at_point_115__________________________________ (res_plasma_fuel_spitzer_profile115)_ 5.07679818390588672e-10 +Plasma_Spitzer_resistivity_at_point_116__________________________________ (res_plasma_fuel_spitzer_profile116)_ 5.08600202135444861e-10 +Plasma_Spitzer_resistivity_at_point_117__________________________________ (res_plasma_fuel_spitzer_profile117)_ 5.09530934862993274e-10 +Plasma_Spitzer_resistivity_at_point_118__________________________________ (res_plasma_fuel_spitzer_profile118)_ 5.10472086004113697e-10 +Plasma_Spitzer_resistivity_at_point_119__________________________________ (res_plasma_fuel_spitzer_profile119)_ 5.11423725954617946e-10 +Plasma_Spitzer_resistivity_at_point_120__________________________________ (res_plasma_fuel_spitzer_profile120)_ 5.12385926086711186e-10 +Plasma_Spitzer_resistivity_at_point_121__________________________________ (res_plasma_fuel_spitzer_profile121)_ 5.13358758760649383e-10 +Plasma_Spitzer_resistivity_at_point_122__________________________________ (res_plasma_fuel_spitzer_profile122)_ 5.14342297336592179e-10 +Plasma_Spitzer_resistivity_at_point_123__________________________________ (res_plasma_fuel_spitzer_profile123)_ 5.15336616186656161e-10 +Plasma_Spitzer_resistivity_at_point_124__________________________________ (res_plasma_fuel_spitzer_profile124)_ 5.16341790707173673e-10 +Plasma_Spitzer_resistivity_at_point_125__________________________________ (res_plasma_fuel_spitzer_profile125)_ 5.17357897331157084e-10 +Plasma_Spitzer_resistivity_at_point_126__________________________________ (res_plasma_fuel_spitzer_profile126)_ 5.18385013540974818e-10 +Plasma_Spitzer_resistivity_at_point_127__________________________________ (res_plasma_fuel_spitzer_profile127)_ 5.19423217881240889e-10 +Plasma_Spitzer_resistivity_at_point_128__________________________________ (res_plasma_fuel_spitzer_profile128)_ 5.20472589971924168e-10 +Plasma_Spitzer_resistivity_at_point_129__________________________________ (res_plasma_fuel_spitzer_profile129)_ 5.21533210521674881e-10 +Plasma_Spitzer_resistivity_at_point_130__________________________________ (res_plasma_fuel_spitzer_profile130)_ 5.22605161341381998e-10 +Plasma_Spitzer_resistivity_at_point_131__________________________________ (res_plasma_fuel_spitzer_profile131)_ 5.23688525357954473e-10 +Plasma_Spitzer_resistivity_at_point_132__________________________________ (res_plasma_fuel_spitzer_profile132)_ 5.24783386628339059e-10 +Plasma_Spitzer_resistivity_at_point_133__________________________________ (res_plasma_fuel_spitzer_profile133)_ 5.25889830353773462e-10 +Plasma_Spitzer_resistivity_at_point_134__________________________________ (res_plasma_fuel_spitzer_profile134)_ 5.27007942894279474e-10 +Plasma_Spitzer_resistivity_at_point_135__________________________________ (res_plasma_fuel_spitzer_profile135)_ 5.28137811783403637e-10 +Plasma_Spitzer_resistivity_at_point_136__________________________________ (res_plasma_fuel_spitzer_profile136)_ 5.29279525743204730e-10 +Plasma_Spitzer_resistivity_at_point_137__________________________________ (res_plasma_fuel_spitzer_profile137)_ 5.30433174699497667e-10 +Plasma_Spitzer_resistivity_at_point_138__________________________________ (res_plasma_fuel_spitzer_profile138)_ 5.31598849797350831e-10 +Plasma_Spitzer_resistivity_at_point_139__________________________________ (res_plasma_fuel_spitzer_profile139)_ 5.32776643416852140e-10 +Plasma_Spitzer_resistivity_at_point_140__________________________________ (res_plasma_fuel_spitzer_profile140)_ 5.33966649189134424e-10 +Plasma_Spitzer_resistivity_at_point_141__________________________________ (res_plasma_fuel_spitzer_profile141)_ 5.35168962012680401e-10 +Plasma_Spitzer_resistivity_at_point_142__________________________________ (res_plasma_fuel_spitzer_profile142)_ 5.36383678069898032e-10 +Plasma_Spitzer_resistivity_at_point_143__________________________________ (res_plasma_fuel_spitzer_profile143)_ 5.37610894843978768e-10 +Plasma_Spitzer_resistivity_at_point_144__________________________________ (res_plasma_fuel_spitzer_profile144)_ 5.38850711136043871e-10 +Plasma_Spitzer_resistivity_at_point_145__________________________________ (res_plasma_fuel_spitzer_profile145)_ 5.40103227082579828e-10 +Plasma_Spitzer_resistivity_at_point_146__________________________________ (res_plasma_fuel_spitzer_profile146)_ 5.41368544173169899e-10 +Plasma_Spitzer_resistivity_at_point_147__________________________________ (res_plasma_fuel_spitzer_profile147)_ 5.42646765268528310e-10 +Plasma_Spitzer_resistivity_at_point_148__________________________________ (res_plasma_fuel_spitzer_profile148)_ 5.43937994618841116e-10 +Plasma_Spitzer_resistivity_at_point_149__________________________________ (res_plasma_fuel_spitzer_profile149)_ 5.45242337882418617e-10 +Plasma_Spitzer_resistivity_at_point_150__________________________________ (res_plasma_fuel_spitzer_profile150)_ 5.46559902144666528e-10 +Plasma_Spitzer_resistivity_at_point_151__________________________________ (res_plasma_fuel_spitzer_profile151)_ 5.47890795937380180e-10 +Plasma_Spitzer_resistivity_at_point_152__________________________________ (res_plasma_fuel_spitzer_profile152)_ 5.49235129258368760e-10 +Plasma_Spitzer_resistivity_at_point_153__________________________________ (res_plasma_fuel_spitzer_profile153)_ 5.50593013591411762e-10 +Plasma_Spitzer_resistivity_at_point_154__________________________________ (res_plasma_fuel_spitzer_profile154)_ 5.51964561926562863e-10 +Plasma_Spitzer_resistivity_at_point_155__________________________________ (res_plasma_fuel_spitzer_profile155)_ 5.53349888780794179e-10 +Plasma_Spitzer_resistivity_at_point_156__________________________________ (res_plasma_fuel_spitzer_profile156)_ 5.54749110218999208e-10 +Plasma_Spitzer_resistivity_at_point_157__________________________________ (res_plasma_fuel_spitzer_profile157)_ 5.56162343875353114e-10 +Plasma_Spitzer_resistivity_at_point_158__________________________________ (res_plasma_fuel_spitzer_profile158)_ 5.57589708975040901e-10 +Plasma_Spitzer_resistivity_at_point_159__________________________________ (res_plasma_fuel_spitzer_profile159)_ 5.59031326356357922e-10 +Plasma_Spitzer_resistivity_at_point_160__________________________________ (res_plasma_fuel_spitzer_profile160)_ 5.60487318493190993e-10 +Plasma_Spitzer_resistivity_at_point_161__________________________________ (res_plasma_fuel_spitzer_profile161)_ 5.61957809517886627e-10 +Plasma_Spitzer_resistivity_at_point_162__________________________________ (res_plasma_fuel_spitzer_profile162)_ 5.63442925244512182e-10 +Plasma_Spitzer_resistivity_at_point_163__________________________________ (res_plasma_fuel_spitzer_profile163)_ 5.64942793192519327e-10 +Plasma_Spitzer_resistivity_at_point_164__________________________________ (res_plasma_fuel_spitzer_profile164)_ 5.66457542610815203e-10 +Plasma_Spitzer_resistivity_at_point_165__________________________________ (res_plasma_fuel_spitzer_profile165)_ 5.67987304502250590e-10 +Plasma_Spitzer_resistivity_at_point_166__________________________________ (res_plasma_fuel_spitzer_profile166)_ 5.69532211648530655e-10 +Plasma_Spitzer_resistivity_at_point_167__________________________________ (res_plasma_fuel_spitzer_profile167)_ 5.71092398635558217e-10 +Plasma_Spitzer_resistivity_at_point_168__________________________________ (res_plasma_fuel_spitzer_profile168)_ 5.72668001879215625e-10 +Plasma_Spitzer_resistivity_at_point_169__________________________________ (res_plasma_fuel_spitzer_profile169)_ 5.74259159651595063e-10 +Plasma_Spitzer_resistivity_at_point_170__________________________________ (res_plasma_fuel_spitzer_profile170)_ 5.75866012107684746e-10 +Plasma_Spitzer_resistivity_at_point_171__________________________________ (res_plasma_fuel_spitzer_profile171)_ 5.77488701312518329e-10 +Plasma_Spitzer_resistivity_at_point_172__________________________________ (res_plasma_fuel_spitzer_profile172)_ 5.79127371268798811e-10 +Plasma_Spitzer_resistivity_at_point_173__________________________________ (res_plasma_fuel_spitzer_profile173)_ 5.80782167945003651e-10 +Plasma_Spitzer_resistivity_at_point_174__________________________________ (res_plasma_fuel_spitzer_profile174)_ 5.82453239303980504e-10 +Plasma_Spitzer_resistivity_at_point_175__________________________________ (res_plasma_fuel_spitzer_profile175)_ 5.84140735332043613e-10 +Plasma_Spitzer_resistivity_at_point_176__________________________________ (res_plasma_fuel_spitzer_profile176)_ 5.85844808068578804e-10 +Plasma_Spitzer_resistivity_at_point_177__________________________________ (res_plasma_fuel_spitzer_profile177)_ 5.87565611636168789e-10 +Plasma_Spitzer_resistivity_at_point_178__________________________________ (res_plasma_fuel_spitzer_profile178)_ 5.89303302271244546e-10 +Plasma_Spitzer_resistivity_at_point_179__________________________________ (res_plasma_fuel_spitzer_profile179)_ 5.91058038355279234e-10 +Plasma_Spitzer_resistivity_at_point_180__________________________________ (res_plasma_fuel_spitzer_profile180)_ 5.92829980446527111e-10 +Plasma_Spitzer_resistivity_at_point_181__________________________________ (res_plasma_fuel_spitzer_profile181)_ 5.94619291312324214e-10 +Plasma_Spitzer_resistivity_at_point_182__________________________________ (res_plasma_fuel_spitzer_profile182)_ 5.96426135961957519e-10 +Plasma_Spitzer_resistivity_at_point_183__________________________________ (res_plasma_fuel_spitzer_profile183)_ 5.98250681680116017e-10 +Plasma_Spitzer_resistivity_at_point_184__________________________________ (res_plasma_fuel_spitzer_profile184)_ 6.00093098060930651e-10 +Plasma_Spitzer_resistivity_at_point_185__________________________________ (res_plasma_fuel_spitzer_profile185)_ 6.01953557042620666e-10 +Plasma_Spitzer_resistivity_at_point_186__________________________________ (res_plasma_fuel_spitzer_profile186)_ 6.03832232942751980e-10 +Plasma_Spitzer_resistivity_at_point_187__________________________________ (res_plasma_fuel_spitzer_profile187)_ 6.05729302494121208e-10 +Plasma_Spitzer_resistivity_at_point_188__________________________________ (res_plasma_fuel_spitzer_profile188)_ 6.07644944881280647e-10 +Plasma_Spitzer_resistivity_at_point_189__________________________________ (res_plasma_fuel_spitzer_profile189)_ 6.09579341777708366e-10 +Plasma_Spitzer_resistivity_at_point_190__________________________________ (res_plasma_fuel_spitzer_profile190)_ 6.11532677383646647e-10 +Plasma_Spitzer_resistivity_at_point_191__________________________________ (res_plasma_fuel_spitzer_profile191)_ 6.13505138464611176e-10 +Plasma_Spitzer_resistivity_at_point_192__________________________________ (res_plasma_fuel_spitzer_profile192)_ 6.15496914390591541e-10 +Plasma_Spitzer_resistivity_at_point_193__________________________________ (res_plasma_fuel_spitzer_profile193)_ 6.17508197175950708e-10 +Plasma_Spitzer_resistivity_at_point_194__________________________________ (res_plasma_fuel_spitzer_profile194)_ 6.19539181520041445e-10 +Plasma_Spitzer_resistivity_at_point_195__________________________________ (res_plasma_fuel_spitzer_profile195)_ 6.21590064848551296e-10 +Plasma_Spitzer_resistivity_at_point_196__________________________________ (res_plasma_fuel_spitzer_profile196)_ 6.23661047355588387e-10 +Plasma_Spitzer_resistivity_at_point_197__________________________________ (res_plasma_fuel_spitzer_profile197)_ 6.25752332046527733e-10 +Plasma_Spitzer_resistivity_at_point_198__________________________________ (res_plasma_fuel_spitzer_profile198)_ 6.27864124781626503e-10 +Plasma_Spitzer_resistivity_at_point_199__________________________________ (res_plasma_fuel_spitzer_profile199)_ 6.29996634320427181e-10 +Plasma_Spitzer_resistivity_at_point_200__________________________________ (res_plasma_fuel_spitzer_profile200)_ 6.32150072366962263e-10 +Plasma_Spitzer_resistivity_at_point_201__________________________________ (res_plasma_fuel_spitzer_profile201)_ 6.34324653615778481e-10 +Plasma_Spitzer_resistivity_at_point_202__________________________________ (res_plasma_fuel_spitzer_profile202)_ 6.36520595798790589e-10 +Plasma_Spitzer_resistivity_at_point_203__________________________________ (res_plasma_fuel_spitzer_profile203)_ 6.38738119732989520e-10 +Plasma_Spitzer_resistivity_at_point_204__________________________________ (res_plasma_fuel_spitzer_profile204)_ 6.40977449369011230e-10 +Plasma_Spitzer_resistivity_at_point_205__________________________________ (res_plasma_fuel_spitzer_profile205)_ 6.43238811840595064e-10 +Plasma_Spitzer_resistivity_at_point_206__________________________________ (res_plasma_fuel_spitzer_profile206)_ 6.45522437514936309e-10 +Plasma_Spitzer_resistivity_at_point_207__________________________________ (res_plasma_fuel_spitzer_profile207)_ 6.47828560043959812e-10 +Plasma_Spitzer_resistivity_at_point_208__________________________________ (res_plasma_fuel_spitzer_profile208)_ 6.50157416416529862e-10 +Plasma_Spitzer_resistivity_at_point_209__________________________________ (res_plasma_fuel_spitzer_profile209)_ 6.52509247011611434e-10 +Plasma_Spitzer_resistivity_at_point_210__________________________________ (res_plasma_fuel_spitzer_profile210)_ 6.54884295652406573e-10 +Plasma_Spitzer_resistivity_at_point_211__________________________________ (res_plasma_fuel_spitzer_profile211)_ 6.57282809661480713e-10 +Plasma_Spitzer_resistivity_at_point_212__________________________________ (res_plasma_fuel_spitzer_profile212)_ 6.59705039916903008e-10 +Plasma_Spitzer_resistivity_at_point_213__________________________________ (res_plasma_fuel_spitzer_profile213)_ 6.62151240909413507e-10 +Plasma_Spitzer_resistivity_at_point_214__________________________________ (res_plasma_fuel_spitzer_profile214)_ 6.64621670800645508e-10 +Plasma_Spitzer_resistivity_at_point_215__________________________________ (res_plasma_fuel_spitzer_profile215)_ 6.67116591482415994e-10 +Plasma_Spitzer_resistivity_at_point_216__________________________________ (res_plasma_fuel_spitzer_profile216)_ 6.69636268637113654e-10 +Plasma_Spitzer_resistivity_at_point_217__________________________________ (res_plasma_fuel_spitzer_profile217)_ 6.72180971799196133e-10 +Plasma_Spitzer_resistivity_at_point_218__________________________________ (res_plasma_fuel_spitzer_profile218)_ 6.74750974417826844e-10 +Plasma_Spitzer_resistivity_at_point_219__________________________________ (res_plasma_fuel_spitzer_profile219)_ 6.77346553920671990e-10 +Plasma_Spitzer_resistivity_at_point_220__________________________________ (res_plasma_fuel_spitzer_profile220)_ 6.79967991778872815e-10 +Plasma_Spitzer_resistivity_at_point_221__________________________________ (res_plasma_fuel_spitzer_profile221)_ 6.82615573573228113e-10 +Plasma_Spitzer_resistivity_at_point_222__________________________________ (res_plasma_fuel_spitzer_profile222)_ 6.85289589061604284e-10 +Plasma_Spitzer_resistivity_at_point_223__________________________________ (res_plasma_fuel_spitzer_profile223)_ 6.87990332247595454e-10 +Plasma_Spitzer_resistivity_at_point_224__________________________________ (res_plasma_fuel_spitzer_profile224)_ 6.90718101450463668e-10 +Plasma_Spitzer_resistivity_at_point_225__________________________________ (res_plasma_fuel_spitzer_profile225)_ 6.93473199376379408e-10 +Plasma_Spitzer_resistivity_at_point_226__________________________________ (res_plasma_fuel_spitzer_profile226)_ 6.96255933190991382e-10 +Plasma_Spitzer_resistivity_at_point_227__________________________________ (res_plasma_fuel_spitzer_profile227)_ 6.99066614593350734e-10 +Plasma_Spitzer_resistivity_at_point_228__________________________________ (res_plasma_fuel_spitzer_profile228)_ 7.01905559891214562e-10 +Plasma_Spitzer_resistivity_at_point_229__________________________________ (res_plasma_fuel_spitzer_profile229)_ 7.04773090077759372e-10 +Plasma_Spitzer_resistivity_at_point_230__________________________________ (res_plasma_fuel_spitzer_profile230)_ 7.07669530909728763e-10 +Plasma_Spitzer_resistivity_at_point_231__________________________________ (res_plasma_fuel_spitzer_profile231)_ 7.10595212987047182e-10 +Plasma_Spitzer_resistivity_at_point_232__________________________________ (res_plasma_fuel_spitzer_profile232)_ 7.13550471833923635e-10 +Plasma_Spitzer_resistivity_at_point_233__________________________________ (res_plasma_fuel_spitzer_profile233)_ 7.16535647981481245e-10 +Plasma_Spitzer_resistivity_at_point_234__________________________________ (res_plasma_fuel_spitzer_profile234)_ 7.19551087051936835e-10 +Plasma_Spitzer_resistivity_at_point_235__________________________________ (res_plasma_fuel_spitzer_profile235)_ 7.22597139844361155e-10 +Plasma_Spitzer_resistivity_at_point_236__________________________________ (res_plasma_fuel_spitzer_profile236)_ 7.25674162422059238e-10 +Plasma_Spitzer_resistivity_at_point_237__________________________________ (res_plasma_fuel_spitzer_profile237)_ 7.28782516201589623e-10 +Plasma_Spitzer_resistivity_at_point_238__________________________________ (res_plasma_fuel_spitzer_profile238)_ 7.31922568043463870e-10 +Plasma_Spitzer_resistivity_at_point_239__________________________________ (res_plasma_fuel_spitzer_profile239)_ 7.35094690344559394e-10 +Plasma_Spitzer_resistivity_at_point_240__________________________________ (res_plasma_fuel_spitzer_profile240)_ 7.38299261132270709e-10 +Plasma_Spitzer_resistivity_at_point_241__________________________________ (res_plasma_fuel_spitzer_profile241)_ 7.41536664160444287e-10 +Plasma_Spitzer_resistivity_at_point_242__________________________________ (res_plasma_fuel_spitzer_profile242)_ 7.44807289007124523e-10 +Plasma_Spitzer_resistivity_at_point_243__________________________________ (res_plasma_fuel_spitzer_profile243)_ 7.48111531174145353e-10 +Plasma_Spitzer_resistivity_at_point_244__________________________________ (res_plasma_fuel_spitzer_profile244)_ 7.51449792188609390e-10 +Plasma_Spitzer_resistivity_at_point_245__________________________________ (res_plasma_fuel_spitzer_profile245)_ 7.54822479706291604e-10 +Plasma_Spitzer_resistivity_at_point_246__________________________________ (res_plasma_fuel_spitzer_profile246)_ 7.58230007616989146e-10 +Plasma_Spitzer_resistivity_at_point_247__________________________________ (res_plasma_fuel_spitzer_profile247)_ 7.61672796151882771e-10 +Plasma_Spitzer_resistivity_at_point_248__________________________________ (res_plasma_fuel_spitzer_profile248)_ 7.65151271992922384e-10 +Plasma_Spitzer_resistivity_at_point_249__________________________________ (res_plasma_fuel_spitzer_profile249)_ 7.68665868384291064e-10 +Plasma_Spitzer_resistivity_at_point_250__________________________________ (res_plasma_fuel_spitzer_profile250)_ 7.72217025245981521e-10 +Plasma_Spitzer_resistivity_at_point_251__________________________________ (res_plasma_fuel_spitzer_profile251)_ 7.75805189289532823e-10 +Plasma_Spitzer_resistivity_at_point_252__________________________________ (res_plasma_fuel_spitzer_profile252)_ 7.79430814135953578e-10 +Plasma_Spitzer_resistivity_at_point_253__________________________________ (res_plasma_fuel_spitzer_profile253)_ 7.83094360435895868e-10 +Plasma_Spitzer_resistivity_at_point_254__________________________________ (res_plasma_fuel_spitzer_profile254)_ 7.86796295992097421e-10 +Plasma_Spitzer_resistivity_at_point_255__________________________________ (res_plasma_fuel_spitzer_profile255)_ 7.90537095884160149e-10 +Plasma_Spitzer_resistivity_at_point_256__________________________________ (res_plasma_fuel_spitzer_profile256)_ 7.94317242595687812e-10 +Plasma_Spitzer_resistivity_at_point_257__________________________________ (res_plasma_fuel_spitzer_profile257)_ 7.98137226143844832e-10 +Plasma_Spitzer_resistivity_at_point_258__________________________________ (res_plasma_fuel_spitzer_profile258)_ 8.01997544211367601e-10 +Plasma_Spitzer_resistivity_at_point_259__________________________________ (res_plasma_fuel_spitzer_profile259)_ 8.05898702281086380e-10 +Plasma_Spitzer_resistivity_at_point_260__________________________________ (res_plasma_fuel_spitzer_profile260)_ 8.09841213772995333e-10 +Plasma_Spitzer_resistivity_at_point_261__________________________________ (res_plasma_fuel_spitzer_profile261)_ 8.13825600183925589e-10 +Plasma_Spitzer_resistivity_at_point_262__________________________________ (res_plasma_fuel_spitzer_profile262)_ 8.17852391229862599e-10 +Plasma_Spitzer_resistivity_at_point_263__________________________________ (res_plasma_fuel_spitzer_profile263)_ 8.21922124990963720e-10 +Plasma_Spitzer_resistivity_at_point_264__________________________________ (res_plasma_fuel_spitzer_profile264)_ 8.26035348059320070e-10 +Plasma_Spitzer_resistivity_at_point_265__________________________________ (res_plasma_fuel_spitzer_profile265)_ 8.30192615689516945e-10 +Plasma_Spitzer_resistivity_at_point_266__________________________________ (res_plasma_fuel_spitzer_profile266)_ 8.34394491952039534e-10 +Plasma_Spitzer_resistivity_at_point_267__________________________________ (res_plasma_fuel_spitzer_profile267)_ 8.38641549889580476e-10 +Plasma_Spitzer_resistivity_at_point_268__________________________________ (res_plasma_fuel_spitzer_profile268)_ 8.42934371676293434e-10 +Plasma_Spitzer_resistivity_at_point_269__________________________________ (res_plasma_fuel_spitzer_profile269)_ 8.47273548780061217e-10 +Plasma_Spitzer_resistivity_at_point_270__________________________________ (res_plasma_fuel_spitzer_profile270)_ 8.51659682127805654e-10 +Plasma_Spitzer_resistivity_at_point_271__________________________________ (res_plasma_fuel_spitzer_profile271)_ 8.56093382273927414e-10 +Plasma_Spitzer_resistivity_at_point_272__________________________________ (res_plasma_fuel_spitzer_profile272)_ 8.60575269571890980e-10 +Plasma_Spitzer_resistivity_at_point_273__________________________________ (res_plasma_fuel_spitzer_profile273)_ 8.65105974349050199e-10 +Plasma_Spitzer_resistivity_at_point_274__________________________________ (res_plasma_fuel_spitzer_profile274)_ 8.69686137084731894e-10 +Plasma_Spitzer_resistivity_at_point_275__________________________________ (res_plasma_fuel_spitzer_profile275)_ 8.74316408591668003e-10 +Plasma_Spitzer_resistivity_at_point_276__________________________________ (res_plasma_fuel_spitzer_profile276)_ 8.78997450200800966e-10 +Plasma_Spitzer_resistivity_at_point_277__________________________________ (res_plasma_fuel_spitzer_profile277)_ 8.83729933949541758e-10 +Plasma_Spitzer_resistivity_at_point_278__________________________________ (res_plasma_fuel_spitzer_profile278)_ 8.88514542773530003e-10 +Plasma_Spitzer_resistivity_at_point_279__________________________________ (res_plasma_fuel_spitzer_profile279)_ 8.93351970701951681e-10 +Plasma_Spitzer_resistivity_at_point_280__________________________________ (res_plasma_fuel_spitzer_profile280)_ 8.98242923056469144e-10 +Plasma_Spitzer_resistivity_at_point_281__________________________________ (res_plasma_fuel_spitzer_profile281)_ 9.03188116653833628e-10 +Plasma_Spitzer_resistivity_at_point_282__________________________________ (res_plasma_fuel_spitzer_profile282)_ 9.08188280012221215e-10 +Plasma_Spitzer_resistivity_at_point_283__________________________________ (res_plasma_fuel_spitzer_profile283)_ 9.13244153561365455e-10 +Plasma_Spitzer_resistivity_at_point_284__________________________________ (res_plasma_fuel_spitzer_profile284)_ 9.18356489856533380e-10 +Plasma_Spitzer_resistivity_at_point_285__________________________________ (res_plasma_fuel_spitzer_profile285)_ 9.23526053796406423e-10 +Plasma_Spitzer_resistivity_at_point_286__________________________________ (res_plasma_fuel_spitzer_profile286)_ 9.28753622844927781e-10 +Plasma_Spitzer_resistivity_at_point_287__________________________________ (res_plasma_fuel_spitzer_profile287)_ 9.34039987257167285e-10 +Plasma_Spitzer_resistivity_at_point_288__________________________________ (res_plasma_fuel_spitzer_profile288)_ 9.39385950309262721e-10 +Plasma_Spitzer_resistivity_at_point_289__________________________________ (res_plasma_fuel_spitzer_profile289)_ 9.44792328532497676e-10 +Plasma_Spitzer_resistivity_at_point_290__________________________________ (res_plasma_fuel_spitzer_profile290)_ 9.50259951951564085e-10 +Plasma_Spitzer_resistivity_at_point_291__________________________________ (res_plasma_fuel_spitzer_profile291)_ 9.55789664327071533e-10 +Plasma_Spitzer_resistivity_at_point_292__________________________________ (res_plasma_fuel_spitzer_profile292)_ 9.61382323402359335e-10 +Plasma_Spitzer_resistivity_at_point_293__________________________________ (res_plasma_fuel_spitzer_profile293)_ 9.67038801154650490e-10 +Plasma_Spitzer_resistivity_at_point_294__________________________________ (res_plasma_fuel_spitzer_profile294)_ 9.72759984050620507e-10 +Plasma_Spitzer_resistivity_at_point_295__________________________________ (res_plasma_fuel_spitzer_profile295)_ 9.78546773306414183e-10 +Plasma_Spitzer_resistivity_at_point_296__________________________________ (res_plasma_fuel_spitzer_profile296)_ 9.84400085152169488e-10 +Plasma_Spitzer_resistivity_at_point_297__________________________________ (res_plasma_fuel_spitzer_profile297)_ 9.90320851101093418e-10 +Plasma_Spitzer_resistivity_at_point_298__________________________________ (res_plasma_fuel_spitzer_profile298)_ 9.96310018223136771e-10 +Plasma_Spitzer_resistivity_at_point_299__________________________________ (res_plasma_fuel_spitzer_profile299)_ 1.00236854942330754e-09 +Plasma_Spitzer_resistivity_at_point_300__________________________________ (res_plasma_fuel_spitzer_profile300)_ 1.00849742372467463e-09 +Plasma_Spitzer_resistivity_at_point_301__________________________________ (res_plasma_fuel_spitzer_profile301)_ 1.01469763655608300e-09 +Plasma_Spitzer_resistivity_at_point_302__________________________________ (res_plasma_fuel_spitzer_profile302)_ 1.02097020004464180e-09 +Plasma_Spitzer_resistivity_at_point_303__________________________________ (res_plasma_fuel_spitzer_profile303)_ 1.02731614331299121e-09 +Plasma_Spitzer_resistivity_at_point_304__________________________________ (res_plasma_fuel_spitzer_profile304)_ 1.03373651278139972e-09 +Plasma_Spitzer_resistivity_at_point_305__________________________________ (res_plasma_fuel_spitzer_profile305)_ 1.04023237247470400e-09 +Plasma_Spitzer_resistivity_at_point_306__________________________________ (res_plasma_fuel_spitzer_profile306)_ 1.04680480433412017e-09 +Plasma_Spitzer_resistivity_at_point_307__________________________________ (res_plasma_fuel_spitzer_profile307)_ 1.05345490853394445e-09 +Plasma_Spitzer_resistivity_at_point_308__________________________________ (res_plasma_fuel_spitzer_profile308)_ 1.06018380380315242e-09 +Plasma_Spitzer_resistivity_at_point_309__________________________________ (res_plasma_fuel_spitzer_profile309)_ 1.06699262775190051e-09 +Plasma_Spitzer_resistivity_at_point_310__________________________________ (res_plasma_fuel_spitzer_profile310)_ 1.07388253720294765e-09 +Plasma_Spitzer_resistivity_at_point_311__________________________________ (res_plasma_fuel_spitzer_profile311)_ 1.08085470852797227e-09 +Plasma_Spitzer_resistivity_at_point_312__________________________________ (res_plasma_fuel_spitzer_profile312)_ 1.08791033798879377e-09 +Plasma_Spitzer_resistivity_at_point_313__________________________________ (res_plasma_fuel_spitzer_profile313)_ 1.09505064208345808e-09 +Plasma_Spitzer_resistivity_at_point_314__________________________________ (res_plasma_fuel_spitzer_profile314)_ 1.10227685789718933e-09 +Plasma_Spitzer_resistivity_at_point_315__________________________________ (res_plasma_fuel_spitzer_profile315)_ 1.10959024345814262e-09 +Plasma_Spitzer_resistivity_at_point_316__________________________________ (res_plasma_fuel_spitzer_profile316)_ 1.11699207809794290e-09 +Plasma_Spitzer_resistivity_at_point_317__________________________________ (res_plasma_fuel_spitzer_profile317)_ 1.12448366281693896e-09 +Plasma_Spitzer_resistivity_at_point_318__________________________________ (res_plasma_fuel_spitzer_profile318)_ 1.13206632065411721e-09 +Plasma_Spitzer_resistivity_at_point_319__________________________________ (res_plasma_fuel_spitzer_profile319)_ 1.13974139706159583e-09 +Plasma_Spitzer_resistivity_at_point_320__________________________________ (res_plasma_fuel_spitzer_profile320)_ 1.14751026028362206e-09 +Plasma_Spitzer_resistivity_at_point_321__________________________________ (res_plasma_fuel_spitzer_profile321)_ 1.15537430173995998e-09 +Plasma_Spitzer_resistivity_at_point_322__________________________________ (res_plasma_fuel_spitzer_profile322)_ 1.16333493641356907e-09 +Plasma_Spitzer_resistivity_at_point_323__________________________________ (res_plasma_fuel_spitzer_profile323)_ 1.17139360324243171e-09 +Plasma_Spitzer_resistivity_at_point_324__________________________________ (res_plasma_fuel_spitzer_profile324)_ 1.17955176551540386e-09 +Plasma_Spitzer_resistivity_at_point_325__________________________________ (res_plasma_fuel_spitzer_profile325)_ 1.18781091127190349e-09 +Plasma_Spitzer_resistivity_at_point_326__________________________________ (res_plasma_fuel_spitzer_profile326)_ 1.19617255370528359e-09 +Plasma_Spitzer_resistivity_at_point_327__________________________________ (res_plasma_fuel_spitzer_profile327)_ 1.20463823156966358e-09 +Plasma_Spitzer_resistivity_at_point_328__________________________________ (res_plasma_fuel_spitzer_profile328)_ 1.21320950959002766e-09 +Plasma_Spitzer_resistivity_at_point_329__________________________________ (res_plasma_fuel_spitzer_profile329)_ 1.22188797887532295e-09 +Plasma_Spitzer_resistivity_at_point_330__________________________________ (res_plasma_fuel_spitzer_profile330)_ 1.23067525733430347e-09 +Plasma_Spitzer_resistivity_at_point_331__________________________________ (res_plasma_fuel_spitzer_profile331)_ 1.23957299009382645e-09 +Plasma_Spitzer_resistivity_at_point_332__________________________________ (res_plasma_fuel_spitzer_profile332)_ 1.24858284991928095e-09 +Plasma_Spitzer_resistivity_at_point_333__________________________________ (res_plasma_fuel_spitzer_profile333)_ 1.25770653763679657e-09 +Plasma_Spitzer_resistivity_at_point_334__________________________________ (res_plasma_fuel_spitzer_profile334)_ 1.26694578255685981e-09 +Plasma_Spitzer_resistivity_at_point_335__________________________________ (res_plasma_fuel_spitzer_profile335)_ 1.27630234289891454e-09 +Plasma_Spitzer_resistivity_at_point_336__________________________________ (res_plasma_fuel_spitzer_profile336)_ 1.28577800621650990e-09 +Plasma_Spitzer_resistivity_at_point_337__________________________________ (res_plasma_fuel_spitzer_profile337)_ 1.29537458982249430e-09 +Plasma_Spitzer_resistivity_at_point_338__________________________________ (res_plasma_fuel_spitzer_profile338)_ 1.30509394121374720e-09 +Plasma_Spitzer_resistivity_at_point_339__________________________________ (res_plasma_fuel_spitzer_profile339)_ 1.31493793849485920e-09 +Plasma_Spitzer_resistivity_at_point_340__________________________________ (res_plasma_fuel_spitzer_profile340)_ 1.32490849080015168e-09 +Plasma_Spitzer_resistivity_at_point_341__________________________________ (res_plasma_fuel_spitzer_profile341)_ 1.33500753871337838e-09 +Plasma_Spitzer_resistivity_at_point_342__________________________________ (res_plasma_fuel_spitzer_profile342)_ 1.34523705468438036e-09 +Plasma_Spitzer_resistivity_at_point_343__________________________________ (res_plasma_fuel_spitzer_profile343)_ 1.35559904344192191e-09 +Plasma_Spitzer_resistivity_at_point_344__________________________________ (res_plasma_fuel_spitzer_profile344)_ 1.36609554240188192e-09 +Plasma_Spitzer_resistivity_at_point_345__________________________________ (res_plasma_fuel_spitzer_profile345)_ 1.37672862206990235e-09 +Plasma_Spitzer_resistivity_at_point_346__________________________________ (res_plasma_fuel_spitzer_profile346)_ 1.38750038643752180e-09 +Plasma_Spitzer_resistivity_at_point_347__________________________________ (res_plasma_fuel_spitzer_profile347)_ 1.39841297337077788e-09 +Plasma_Spitzer_resistivity_at_point_348__________________________________ (res_plasma_fuel_spitzer_profile348)_ 1.40946855499014432e-09 +Plasma_Spitzer_resistivity_at_point_349__________________________________ (res_plasma_fuel_spitzer_profile349)_ 1.42066933804064050e-09 +Plasma_Spitzer_resistivity_at_point_350__________________________________ (res_plasma_fuel_spitzer_profile350)_ 1.43201756425079646e-09 +Plasma_Spitzer_resistivity_at_point_351__________________________________ (res_plasma_fuel_spitzer_profile351)_ 1.44351551067915173e-09 +Plasma_Spitzer_resistivity_at_point_352__________________________________ (res_plasma_fuel_spitzer_profile352)_ 1.45516549004676488e-09 +Plasma_Spitzer_resistivity_at_point_353__________________________________ (res_plasma_fuel_spitzer_profile353)_ 1.46696985105422215e-09 +Plasma_Spitzer_resistivity_at_point_354__________________________________ (res_plasma_fuel_spitzer_profile354)_ 1.47893097868140380e-09 +Plasma_Spitzer_resistivity_at_point_355__________________________________ (res_plasma_fuel_spitzer_profile355)_ 1.49105129446825833e-09 +Plasma_Spitzer_resistivity_at_point_356__________________________________ (res_plasma_fuel_spitzer_profile356)_ 1.50333325677462557e-09 +Plasma_Spitzer_resistivity_at_point_357__________________________________ (res_plasma_fuel_spitzer_profile357)_ 1.51577936101707414e-09 +Plasma_Spitzer_resistivity_at_point_358__________________________________ (res_plasma_fuel_spitzer_profile358)_ 1.52839213988053315e-09 +Plasma_Spitzer_resistivity_at_point_359__________________________________ (res_plasma_fuel_spitzer_profile359)_ 1.54117416350239489e-09 +Plasma_Spitzer_resistivity_at_point_360__________________________________ (res_plasma_fuel_spitzer_profile360)_ 1.55412803962654496e-09 +Plasma_Spitzer_resistivity_at_point_361__________________________________ (res_plasma_fuel_spitzer_profile361)_ 1.56725641372469003e-09 +Plasma_Spitzer_resistivity_at_point_362__________________________________ (res_plasma_fuel_spitzer_profile362)_ 1.58056196908206470e-09 +Plasma_Spitzer_resistivity_at_point_363__________________________________ (res_plasma_fuel_spitzer_profile363)_ 1.59404742684452498e-09 +Plasma_Spitzer_resistivity_at_point_364__________________________________ (res_plasma_fuel_spitzer_profile364)_ 1.60771554602373301e-09 +Plasma_Spitzer_resistivity_at_point_365__________________________________ (res_plasma_fuel_spitzer_profile365)_ 1.62156912345698426e-09 +Plasma_Spitzer_resistivity_at_point_366__________________________________ (res_plasma_fuel_spitzer_profile366)_ 1.63561099371796733e-09 +Plasma_Spitzer_resistivity_at_point_367__________________________________ (res_plasma_fuel_spitzer_profile367)_ 1.64984402897452199e-09 +Plasma_Spitzer_resistivity_at_point_368__________________________________ (res_plasma_fuel_spitzer_profile368)_ 1.66427113878917425e-09 +Plasma_Spitzer_resistivity_at_point_369__________________________________ (res_plasma_fuel_spitzer_profile369)_ 1.67889526985799758e-09 +Plasma_Spitzer_resistivity_at_point_370__________________________________ (res_plasma_fuel_spitzer_profile370)_ 1.69371940568299554e-09 +Plasma_Spitzer_resistivity_at_point_371__________________________________ (res_plasma_fuel_spitzer_profile371)_ 1.70874656617295805e-09 +Plasma_Spitzer_resistivity_at_point_372__________________________________ (res_plasma_fuel_spitzer_profile372)_ 1.72397980716734363e-09 +Plasma_Spitzer_resistivity_at_point_373__________________________________ (res_plasma_fuel_spitzer_profile373)_ 1.73942221987747174e-09 +Plasma_Spitzer_resistivity_at_point_374__________________________________ (res_plasma_fuel_spitzer_profile374)_ 1.75507693023883132e-09 +Plasma_Spitzer_resistivity_at_point_375__________________________________ (res_plasma_fuel_spitzer_profile375)_ 1.77094709816804690e-09 +Plasma_Spitzer_resistivity_at_point_376__________________________________ (res_plasma_fuel_spitzer_profile376)_ 1.78703591671749244e-09 +Plasma_Spitzer_resistivity_at_point_377__________________________________ (res_plasma_fuel_spitzer_profile377)_ 1.80334661112020643e-09 +Plasma_Spitzer_resistivity_at_point_378__________________________________ (res_plasma_fuel_spitzer_profile378)_ 1.81988243771721709e-09 +Plasma_Spitzer_resistivity_at_point_379__________________________________ (res_plasma_fuel_spitzer_profile379)_ 1.83664668275893247e-09 +Plasma_Spitzer_resistivity_at_point_380__________________________________ (res_plasma_fuel_spitzer_profile380)_ 1.85364266107167854e-09 +Plasma_Spitzer_resistivity_at_point_381__________________________________ (res_plasma_fuel_spitzer_profile381)_ 1.87087371457994474e-09 +Plasma_Spitzer_resistivity_at_point_382__________________________________ (res_plasma_fuel_spitzer_profile382)_ 1.88834321067427767e-09 +Plasma_Spitzer_resistivity_at_point_383__________________________________ (res_plasma_fuel_spitzer_profile383)_ 1.90605454041409655e-09 +Plasma_Spitzer_resistivity_at_point_384__________________________________ (res_plasma_fuel_spitzer_profile384)_ 1.92401111655412220e-09 +Plasma_Spitzer_resistivity_at_point_385__________________________________ (res_plasma_fuel_spitzer_profile385)_ 1.94221637138226027e-09 +Plasma_Spitzer_resistivity_at_point_386__________________________________ (res_plasma_fuel_spitzer_profile386)_ 1.96067375435617833e-09 +Plasma_Spitzer_resistivity_at_point_387__________________________________ (res_plasma_fuel_spitzer_profile387)_ 1.97938672952485860e-09 +Plasma_Spitzer_resistivity_at_point_388__________________________________ (res_plasma_fuel_spitzer_profile388)_ 1.99835877272066260e-09 +Plasma_Spitzer_resistivity_at_point_389__________________________________ (res_plasma_fuel_spitzer_profile389)_ 2.01759336850650036e-09 +Plasma_Spitzer_resistivity_at_point_390__________________________________ (res_plasma_fuel_spitzer_profile390)_ 2.03709400686172258e-09 +Plasma_Spitzer_resistivity_at_point_391__________________________________ (res_plasma_fuel_spitzer_profile391)_ 2.05686417958934316e-09 +Plasma_Spitzer_resistivity_at_point_392__________________________________ (res_plasma_fuel_spitzer_profile392)_ 2.07690737642614541e-09 +Plasma_Spitzer_resistivity_at_point_393__________________________________ (res_plasma_fuel_spitzer_profile393)_ 2.09722708083602237e-09 +Plasma_Spitzer_resistivity_at_point_394__________________________________ (res_plasma_fuel_spitzer_profile394)_ 2.11782676546574061e-09 +Plasma_Spitzer_resistivity_at_point_395__________________________________ (res_plasma_fuel_spitzer_profile395)_ 2.13870988724097471e-09 +Plasma_Spitzer_resistivity_at_point_396__________________________________ (res_plasma_fuel_spitzer_profile396)_ 2.15987988207912847e-09 +Plasma_Spitzer_resistivity_at_point_397__________________________________ (res_plasma_fuel_spitzer_profile397)_ 2.18134015919397466e-09 +Plasma_Spitzer_resistivity_at_point_398__________________________________ (res_plasma_fuel_spitzer_profile398)_ 2.20309409496562137e-09 +Plasma_Spitzer_resistivity_at_point_399__________________________________ (res_plasma_fuel_spitzer_profile399)_ 2.22514502634763064e-09 +Plasma_Spitzer_resistivity_at_point_400__________________________________ (res_plasma_fuel_spitzer_profile400)_ 2.24749624378145508e-09 +Plasma_Spitzer_resistivity_at_point_401__________________________________ (res_plasma_fuel_spitzer_profile401)_ 2.27015098358639073e-09 +Plasma_Spitzer_resistivity_at_point_402__________________________________ (res_plasma_fuel_spitzer_profile402)_ 2.29311241979141295e-09 +Plasma_Spitzer_resistivity_at_point_403__________________________________ (res_plasma_fuel_spitzer_profile403)_ 2.31638365537302378e-09 +Plasma_Spitzer_resistivity_at_point_404__________________________________ (res_plasma_fuel_spitzer_profile404)_ 2.33996771286116653e-09 +Plasma_Spitzer_resistivity_at_point_405__________________________________ (res_plasma_fuel_spitzer_profile405)_ 2.36386752427277265e-09 +Plasma_Spitzer_resistivity_at_point_406__________________________________ (res_plasma_fuel_spitzer_profile406)_ 2.38808592033008125e-09 +Plasma_Spitzer_resistivity_at_point_407__________________________________ (res_plasma_fuel_spitzer_profile407)_ 2.41262561891811817e-09 +Plasma_Spitzer_resistivity_at_point_408__________________________________ (res_plasma_fuel_spitzer_profile408)_ 2.43748921273295266e-09 +Plasma_Spitzer_resistivity_at_point_409__________________________________ (res_plasma_fuel_spitzer_profile409)_ 2.46267915606917238e-09 +Plasma_Spitzer_resistivity_at_point_410__________________________________ (res_plasma_fuel_spitzer_profile410)_ 2.48819775069193974e-09 +Plasma_Spitzer_resistivity_at_point_411__________________________________ (res_plasma_fuel_spitzer_profile411)_ 2.51404713073532330e-09 +Plasma_Spitzer_resistivity_at_point_412__________________________________ (res_plasma_fuel_spitzer_profile412)_ 2.54022924656505537e-09 +Plasma_Spitzer_resistivity_at_point_413__________________________________ (res_plasma_fuel_spitzer_profile413)_ 2.56674584753973694e-09 +Plasma_Spitzer_resistivity_at_point_414__________________________________ (res_plasma_fuel_spitzer_profile414)_ 2.59359846360032965e-09 +Plasma_Spitzer_resistivity_at_point_415__________________________________ (res_plasma_fuel_spitzer_profile415)_ 2.62078838561312048e-09 +Plasma_Spitzer_resistivity_at_point_416__________________________________ (res_plasma_fuel_spitzer_profile416)_ 2.64831664438641940e-09 +Plasma_Spitzer_resistivity_at_point_417__________________________________ (res_plasma_fuel_spitzer_profile417)_ 2.67618398827590284e-09 +Plasma_Spitzer_resistivity_at_point_418__________________________________ (res_plasma_fuel_spitzer_profile418)_ 2.70439085928770579e-09 +Plasma_Spitzer_resistivity_at_point_419__________________________________ (res_plasma_fuel_spitzer_profile419)_ 2.73293736758212041e-09 +Plasma_Spitzer_resistivity_at_point_420__________________________________ (res_plasma_fuel_spitzer_profile420)_ 2.76182326427394413e-09 +Plasma_Spitzer_resistivity_at_point_421__________________________________ (res_plasma_fuel_spitzer_profile421)_ 2.79104791241803483e-09 +Plasma_Spitzer_resistivity_at_point_422__________________________________ (res_plasma_fuel_spitzer_profile422)_ 2.82061025606050990e-09 +Plasma_Spitzer_resistivity_at_point_423__________________________________ (res_plasma_fuel_spitzer_profile423)_ 2.85050878722708969e-09 +Plasma_Spitzer_resistivity_at_point_424__________________________________ (res_plasma_fuel_spitzer_profile424)_ 2.88074151071016602e-09 +Plasma_Spitzer_resistivity_at_point_425__________________________________ (res_plasma_fuel_spitzer_profile425)_ 2.91130590650523153e-09 +Plasma_Spitzer_resistivity_at_point_426__________________________________ (res_plasma_fuel_spitzer_profile426)_ 2.94219888973520113e-09 +Plasma_Spitzer_resistivity_at_point_427__________________________________ (res_plasma_fuel_spitzer_profile427)_ 2.97341676788743876e-09 +Plasma_Spitzer_resistivity_at_point_428__________________________________ (res_plasma_fuel_spitzer_profile428)_ 3.00495519517306204e-09 +Plasma_Spitzer_resistivity_at_point_429__________________________________ (res_plasma_fuel_spitzer_profile429)_ 3.03680912380079833e-09 +Plasma_Spitzer_resistivity_at_point_430__________________________________ (res_plasma_fuel_spitzer_profile430)_ 3.06897275193800647e-09 +Plasma_Spitzer_resistivity_at_point_431__________________________________ (res_plasma_fuel_spitzer_profile431)_ 3.10143946810908116e-09 +Plasma_Spitzer_resistivity_at_point_432__________________________________ (res_plasma_fuel_spitzer_profile432)_ 3.13420179175558797e-09 +Plasma_Spitzer_resistivity_at_point_433__________________________________ (res_plasma_fuel_spitzer_profile433)_ 3.16725130965281828e-09 +Plasma_Spitzer_resistivity_at_point_434__________________________________ (res_plasma_fuel_spitzer_profile434)_ 3.20057860784256442e-09 +Plasma_Spitzer_resistivity_at_point_435__________________________________ (res_plasma_fuel_spitzer_profile435)_ 3.23417319870154771e-09 +Plasma_Spitzer_resistivity_at_point_436__________________________________ (res_plasma_fuel_spitzer_profile436)_ 3.26802344271697489e-09 +Plasma_Spitzer_resistivity_at_point_437__________________________________ (res_plasma_fuel_spitzer_profile437)_ 3.30211646448404696e-09 +Plasma_Spitzer_resistivity_at_point_438__________________________________ (res_plasma_fuel_spitzer_profile438)_ 3.33643806237265856e-09 +Plasma_Spitzer_resistivity_at_point_439__________________________________ (res_plasma_fuel_spitzer_profile439)_ 3.37097261122922290e-09 +Plasma_Spitzer_resistivity_at_point_440__________________________________ (res_plasma_fuel_spitzer_profile440)_ 3.40570295738132019e-09 +Plasma_Spitzer_resistivity_at_point_441__________________________________ (res_plasma_fuel_spitzer_profile441)_ 3.44061030509322097e-09 +Plasma_Spitzer_resistivity_at_point_442__________________________________ (res_plasma_fuel_spitzer_profile442)_ 3.47567409347371032e-09 +Plasma_Spitzer_resistivity_at_point_443__________________________________ (res_plasma_fuel_spitzer_profile443)_ 3.51087186265630061e-09 +Plasma_Spitzer_resistivity_at_point_444__________________________________ (res_plasma_fuel_spitzer_profile444)_ 3.54617910784662947e-09 +Plasma_Spitzer_resistivity_at_point_445__________________________________ (res_plasma_fuel_spitzer_profile445)_ 3.58156911954905740e-09 +Plasma_Spitzer_resistivity_at_point_446__________________________________ (res_plasma_fuel_spitzer_profile446)_ 3.61701280792691251e-09 +Plasma_Spitzer_resistivity_at_point_447__________________________________ (res_plasma_fuel_spitzer_profile447)_ 3.65247850879524201e-09 +Plasma_Spitzer_resistivity_at_point_448__________________________________ (res_plasma_fuel_spitzer_profile448)_ 3.68793176815796341e-09 +Plasma_Spitzer_resistivity_at_point_449__________________________________ (res_plasma_fuel_spitzer_profile449)_ 3.72333510143933291e-09 +Plasma_Spitzer_resistivity_at_point_450__________________________________ (res_plasma_fuel_spitzer_profile450)_ 3.75864772255809225e-09 +Plasma_Spitzer_resistivity_at_point_451__________________________________ (res_plasma_fuel_spitzer_profile451)_ 3.79382523666296793e-09 +Plasma_Spitzer_resistivity_at_point_452__________________________________ (res_plasma_fuel_spitzer_profile452)_ 3.82881928855941322e-09 +Plasma_Spitzer_resistivity_at_point_453__________________________________ (res_plasma_fuel_spitzer_profile453)_ 3.86357715641892893e-09 +Plasma_Spitzer_resistivity_at_point_454__________________________________ (res_plasma_fuel_spitzer_profile454)_ 3.89804127698723846e-09 +Plasma_Spitzer_resistivity_at_point_455__________________________________ (res_plasma_fuel_spitzer_profile455)_ 3.93214868375844134e-09 +Plasma_Spitzer_resistivity_at_point_456__________________________________ (res_plasma_fuel_spitzer_profile456)_ 3.96583033277328737e-09 +Plasma_Spitzer_resistivity_at_point_457__________________________________ (res_plasma_fuel_spitzer_profile457)_ 3.99901028073287896e-09 +Plasma_Spitzer_resistivity_at_point_458__________________________________ (res_plasma_fuel_spitzer_profile458)_ 4.03160466517918760e-09 +Plasma_Spitzer_resistivity_at_point_459__________________________________ (res_plasma_fuel_spitzer_profile459)_ 4.06352041348909416e-09 +Plasma_Spitzer_resistivity_at_point_460__________________________________ (res_plasma_fuel_spitzer_profile460)_ 4.09465357088783498e-09 +Plasma_Spitzer_resistivity_at_point_461__________________________________ (res_plasma_fuel_spitzer_profile461)_ 4.12488707751206367e-09 +Plasma_Spitzer_resistivity_at_point_462__________________________________ (res_plasma_fuel_spitzer_profile462)_ 4.15408772114728695e-09 +Plasma_Spitzer_resistivity_at_point_463__________________________________ (res_plasma_fuel_spitzer_profile463)_ 4.18210180528896142e-09 +Plasma_Spitzer_resistivity_at_point_464__________________________________ (res_plasma_fuel_spitzer_profile464)_ 4.20874871241889925e-09 +Plasma_Spitzer_resistivity_at_point_465__________________________________ (res_plasma_fuel_spitzer_profile465)_ 4.23381079423967648e-09 +Plasma_Spitzer_resistivity_at_point_466__________________________________ (res_plasma_fuel_spitzer_profile466)_ 4.25701630026496736e-09 +Plasma_Spitzer_resistivity_at_point_467__________________________________ (res_plasma_fuel_spitzer_profile467)_ 4.27800752261953036e-09 +Plasma_Spitzer_resistivity_at_point_468__________________________________ (res_plasma_fuel_spitzer_profile468)_ 4.29627175478955011e-09 +Plasma_Spitzer_resistivity_at_point_469__________________________________ (res_plasma_fuel_spitzer_profile469)_ 4.31094709838998744e-09 +Plasma_Spitzer_resistivity_at_point_470__________________________________ (res_plasma_fuel_spitzer_profile470)_ 4.31963253666477432e-09 +Plasma_Spitzer_resistivity_at_point_471__________________________________ (res_plasma_fuel_spitzer_profile471)_ 4.53376790266610062e-09 +Plasma_Spitzer_resistivity_at_point_472__________________________________ (res_plasma_fuel_spitzer_profile472)_ 4.76639679171450426e-09 +Plasma_Spitzer_resistivity_at_point_473__________________________________ (res_plasma_fuel_spitzer_profile473)_ 5.01984833803044019e-09 +Plasma_Spitzer_resistivity_at_point_474__________________________________ (res_plasma_fuel_spitzer_profile474)_ 5.29684431110114537e-09 +Plasma_Spitzer_resistivity_at_point_475__________________________________ (res_plasma_fuel_spitzer_profile475)_ 5.60058337385317193e-09 +Plasma_Spitzer_resistivity_at_point_476__________________________________ (res_plasma_fuel_spitzer_profile476)_ 5.93484761946007169e-09 +Plasma_Spitzer_resistivity_at_point_477__________________________________ (res_plasma_fuel_spitzer_profile477)_ 6.30413848235411255e-09 +Plasma_Spitzer_resistivity_at_point_478__________________________________ (res_plasma_fuel_spitzer_profile478)_ 6.71385179696706007e-09 +Plasma_Spitzer_resistivity_at_point_479__________________________________ (res_plasma_fuel_spitzer_profile479)_ 7.17050563892550800e-09 +Plasma_Spitzer_resistivity_at_point_480__________________________________ (res_plasma_fuel_spitzer_profile480)_ 7.68204023440053269e-09 +Plasma_Spitzer_resistivity_at_point_481__________________________________ (res_plasma_fuel_spitzer_profile481)_ 8.25821762883943875e-09 +Plasma_Spitzer_resistivity_at_point_482__________________________________ (res_plasma_fuel_spitzer_profile482)_ 8.91116153201678634e-09 +Plasma_Spitzer_resistivity_at_point_483__________________________________ (res_plasma_fuel_spitzer_profile483)_ 9.65609739900336004e-09 +Plasma_Spitzer_resistivity_at_point_484__________________________________ (res_plasma_fuel_spitzer_profile484)_ 1.05123837776930102e-08 +Plasma_Spitzer_resistivity_at_point_485__________________________________ (res_plasma_fuel_spitzer_profile485)_ 1.15049759475164143e-08 +Plasma_Spitzer_resistivity_at_point_486__________________________________ (res_plasma_fuel_spitzer_profile486)_ 1.26665457101183968e-08 +Plasma_Spitzer_resistivity_at_point_487__________________________________ (res_plasma_fuel_spitzer_profile487)_ 1.40406225116031820e-08 +Plasma_Spitzer_resistivity_at_point_488__________________________________ (res_plasma_fuel_spitzer_profile488)_ 1.56863702219513563e-08 +Plasma_Spitzer_resistivity_at_point_489__________________________________ (res_plasma_fuel_spitzer_profile489)_ 1.76860698372313558e-08 +Plasma_Spitzer_resistivity_at_point_490__________________________________ (res_plasma_fuel_spitzer_profile490)_ 2.01572491711729738e-08 +Plasma_Spitzer_resistivity_at_point_491__________________________________ (res_plasma_fuel_spitzer_profile491)_ 2.32731481146369893e-08 +Plasma_Spitzer_resistivity_at_point_492__________________________________ (res_plasma_fuel_spitzer_profile492)_ 2.72989245159698062e-08 +Plasma_Spitzer_resistivity_at_point_493__________________________________ (res_plasma_fuel_spitzer_profile493)_ 3.26594757042126945e-08 +Plasma_Spitzer_resistivity_at_point_494__________________________________ (res_plasma_fuel_spitzer_profile494)_ 4.00757463546299569e-08 +Plasma_Spitzer_resistivity_at_point_495__________________________________ (res_plasma_fuel_spitzer_profile495)_ 5.08641816073207500e-08 +Plasma_Spitzer_resistivity_at_point_496__________________________________ (res_plasma_fuel_spitzer_profile496)_ 6.76759927375721243e-08 +Plasma_Spitzer_resistivity_at_point_497__________________________________ (res_plasma_fuel_spitzer_profile497)_ 9.66405690666366873e-08 +Plasma_Spitzer_resistivity_at_point_498__________________________________ (res_plasma_fuel_spitzer_profile498)_ 1.55261887419998155e-07 +Plasma_Spitzer_resistivity_at_point_499__________________________________ (res_plasma_fuel_spitzer_profile499)_ 3.16263381316917890e-07 +Plasma_Spitzer_resistivity_at_point_500__________________________________ (res_plasma_fuel_spitzer_profile500)_ 1.37681321612474018e-06 # Heating & Current Drive System # Ignited_plasma_switch_(0=not_ignited,_1=ignited)_________________________ (i_plasma_ignited)_____________ 0 -Fusion_gain_factor_(Qₚₗₐₛₘₐ)_____________________________________________ (big_q_plasma)_________________ 1.93518132480738601e+01 OP +Fusion_gain_factor_(Qₚₗₐₛₘₐ)_____________________________________________ (big_q_plasma)_________________ 2.03590492581690050e+01 OP Primary_current_drive_efficiency_model___________________________________ (i_hcd_primary)________________ 10 -Absolute_current_drive_efficiency_of_primary_system_(η)_[A/W]____________ (eta_cd_hcd_primary)___________ 4.61677020512471711e-02 OP -Normalised_current_drive_efficiency_of_primary_system_(γ)_[10²⁰_A_/_Wm²]_ (eta_cd_norm_hcd_primary)______ 3.00000000000000044e-01 OP -Dimensionless_current_drive_efficiency_of_primary_system_(ζ)_____________ (eta_cd_dimensionless_hcd_primary)_ 7.75012292544908221e-01 OP +Absolute_current_drive_efficiency_of_primary_system_(η)_[A/W]____________ (eta_cd_hcd_primary)___________ 4.69972569948132884e-02 OP +Normalised_current_drive_efficiency_of_primary_system_(γ)_[10²⁰_A_/_Wm²]_ (eta_cd_norm_hcd_primary)______ 2.99999999999999989e-01 OP +Dimensionless_current_drive_efficiency_of_primary_system_(ζ)_____________ (eta_cd_dimensionless_hcd_primary)_ 7.87532767503585807e-01 OP EBW_coupling_efficiency__________________________________________________ (xi_ebw)_______________________ 8.00000000000000044e-01 ECRH_plasma_heating_efficiency___________________________________________ (eta_cd_norm_ecrh)_____________ 2.99999999999999989e-01 -Power_injected_into_plasma_by_primary_system_for_current_drive_(MW)______ (p_hcd_primary_injected_mw)____ 9.60334531748235065e+00 OP +Power_injected_into_plasma_by_primary_system_for_current_drive_(MW)______ (p_hcd_primary_injected_mw)____ 4.19923599007495607e+00 OP Extra_power_injected_into_plasma_by_primary_system__(MW)_________________ (p_hcd_primary_extra_heat_mw)__ 7.50000000000000000e+01 OP -Current_driven_in_plasma_by_primary_system_(A)___________________________ (c_hcd_primary_driven)_________ 4.43364385312764847e+05 OP -Fraction_of_plasma_current_driven_by_primary_system______________________ (f_c_plasma_hcd_primary)_______ 2.64750543462917709e-02 OP +Current_driven_in_plasma_by_primary_system_(A)___________________________ (c_hcd_primary_driven)_________ 1.97352573007421917e+05 OP +Fraction_of_plasma_current_driven_by_primary_system______________________ (f_c_plasma_hcd_primary)_______ 1.19964686070990739e-02 OP Wall_plug_to_injector_efficiency_of_primary_system_______________________ (eta_hcd_primary_injector_wall_plug)_ 5.00000000000000000e-01 IP -Wall_plug_electric_power_of_primary_system_______________________________ (p_hcd_primary_electric_mw)____ 1.69206690634964701e+02 OP +Wall_plug_electric_power_of_primary_system_______________________________ (p_hcd_primary_electric_mw)____ 1.58398471980149907e+02 OP Secondary_current_drive_efficiency_model_________________________________ (i_hcd_secondary)______________ 0 Absolute_current_drive_efficiency_of_secondary_system_(η)_[A/W]__________ (eta_cd_hcd_secondary)_________ 0.00000000000000000e+00 OP Normalised_current_drive_efficiency_of_secondary_system_(γ)_[10²⁰_A_/_Wm²]_ (eta_cd_norm_hcd_secondary)____ 0.00000000000000000e+00 OP @@ -34815,109 +34813,109 @@ Current_driven_in_plasma_by_secondary_system_(A)_________________________ (c_hcd Fraction_of_plasma_current_driven_by_secondary_system____________________ (f_c_plasma_hcd_secondary)_____ 0.00000000000000000e+00 OP Wall_plug_to_injector_efficiency_of_secondary_system_____________________ (eta_hcd_secondary_injector_wall_plug)_ 2.99999999999999989e-01 IP Wall_plug_electric_power_of_secondary_system_____________________________ (p_hcd_secondary_electric_mw)__ 0.00000000000000000e+00 OP -Total_injected_heating_power_that_drove_plasma_current_(MW)______________ (p_hcd_injected_current_total_mw)_ 9.60334531748235065e+00 -Total_injected_heating_power_across_all_systems_(MW)_____________________ (p_hcd_injected_total_mw)______ 8.46033453174823507e+01 OP -Total_injected_heating_power_given_to_the_electrons_(MW)_________________ (p_hcd_injected_electrons_mw)__ 8.46033453174823507e+01 OP +Total_injected_heating_power_that_drove_plasma_current_(MW)______________ (p_hcd_injected_current_total_mw)_ 4.19923599007495607e+00 +Total_injected_heating_power_across_all_systems_(MW)_____________________ (p_hcd_injected_total_mw)______ 7.91992359900749534e+01 OP +Total_injected_heating_power_given_to_the_electrons_(MW)_________________ (p_hcd_injected_electrons_mw)__ 7.91992359900749534e+01 OP Total_injected_heating_power_given_to_the_ions_(MW)______________________ (p_hcd_injected_ions_mw)_______ 0.00000000000000000e+00 OP Upper_limit_on_total_plasma_injected_power_(MW)__________________________ (p_hcd_injected_max)___________ 2.00000000000000000e+02 OP Injected_power_into_plasma_from_lower_hybrid_systems_(MW)________________ (p_hcd_lowhyb_injected_total_mw)_ 0.00000000000000000e+00 OP Injected_power_into_plasma_from_ion_cyclotron_systems_(MW)_______________ (p_hcd_icrh_injected_total_mw)_ 0.00000000000000000e+00 OP -Injected_power_into_plasma_from_electron_cyclotron_systems_(MW)__________ (p_hcd_ecrh_injected_total_mw)_ 8.46033453174823507e+01 OP +Injected_power_into_plasma_from_electron_cyclotron_systems_(MW)__________ (p_hcd_ecrh_injected_total_mw)_ 7.91992359900749534e+01 OP Injected_power_into_plasma_from_neutral_beam_systems_(MW)________________ (p_hcd_beam_injected_total_mw)_ 0.00000000000000000e+00 OP Injected_power_into_plasma_from_lower_hybrid_systems_(MW)________________ (p_hcd_ebw_injected_total_mw)__ 0.00000000000000000e+00 OP -Bootstrap_fraction_______________________________________________________ (f_c_plasma_bootstrap)_________ 4.21875565216539794e-01 OP +Bootstrap_fraction_______________________________________________________ (f_c_plasma_bootstrap)_________ 4.22833658317523231e-01 OP Diamagnetic_fraction_____________________________________________________ (f_c_plasma_diamagnetic)_______ 0.00000000000000000e+00 OP Pfirsch-Schlueter_fraction_______________________________________________ (f_c_plasma_pfirsch_schluter)__ 0.00000000000000000e+00 OP -Auxiliary_current_drive_fraction_________________________________________ (f_c_plasma_auxiliary)_________ 2.64750543462917709e-02 OP -Inductive_fraction_______________________________________________________ (f_c_plasma_inductive)_________ 5.51649380437168491e-01 OP -Fraction_of_the_plasma_current_produced_by_non-inductive_means___________ (f_c_plasma_non_inductive)_____ 4.48350619562831565e-01 +Auxiliary_current_drive_fraction_________________________________________ (f_c_plasma_auxiliary)_________ 1.19964686070990756e-02 OP +Inductive_fraction_______________________________________________________ (f_c_plasma_inductive)_________ 5.65169873075377693e-01 OP +Fraction_of_the_plasma_current_produced_by_non-inductive_means___________ (f_c_plasma_non_inductive)_____ 4.34830126924622307e-01 Flux_expansion___________________________________________________________ (f_div_flux_expansion)_________ 2.00000000000000000e+00 Field_line_angle_wrt_to_target_divertor_plate_(degrees)__________________ (deg_div_field_plate)__________ 1.00000000000000000e+00 -Divertor_heat_load_(MW/m²)_______________________________________________ (pflux_div_heat_load_mw)_______ 6.81392845156379501e+00 +Divertor_heat_load_(MW/m²)_______________________________________________ (pflux_div_heat_load_mw)_______ 6.82950721530761484e+00 # Radial Build # TF_coil_radial_placement_switch__________________________________________ (i_tf_inside_cs)_______________ 0 -Inboard_build_thickness_(m)______________________________________________ (dr_inboard_build)_____________ 5.33333333342925719e+00 OP -Machine_dr_bore_radial_thickness_(m)_____________________________________ (dr_bore)______________________ 2.03182507743337259e+00 +Inboard_build_thickness_(m)______________________________________________ (dr_inboard_build)_____________ 5.33333333344836369e+00 OP +Machine_dr_bore_radial_thickness_(m)_____________________________________ (dr_bore)______________________ 2.08652517234514123e+00 Radial_build_component_1_________________________________________________ (radial_label(1))______________ "dr_bore" -Radial_build_cumulative_radius_1_________________________________________ (radial_cum(1))________________ 2.03182507743337259e+00 -Central_solenoid_radial_thickness_(m)____________________________________ (dr_cs)________________________ 5.88190932603959715e-01 +Radial_build_cumulative_radius_1_________________________________________ (radial_cum(1))________________ 2.08652517234514123e+00 +Central_solenoid_radial_thickness_(m)____________________________________ (dr_cs)________________________ 5.38814675476462890e-01 Radial_build_component_2_________________________________________________ (radial_label(2))______________ "dr_cs" -Radial_build_cumulative_radius_2_________________________________________ (radial_cum(2))________________ 2.62001601003733242e+00 -CS_precompression_radial_thickness_(m)___________________________________ (dr_cs_precomp)________________ 6.65259064275497969e-02 +Radial_build_cumulative_radius_2_________________________________________ (radial_cum(2))________________ 2.62533984782160434e+00 +CS_precompression_radial_thickness_(m)___________________________________ (dr_cs_precomp)________________ 6.56784401879907942e-02 Radial_build_component_3_________________________________________________ (radial_label(3))______________ "dr_cs_precomp" -Radial_build_cumulative_radius_3_________________________________________ (radial_cum(3))________________ 2.68654191646488227e+00 +Radial_build_cumulative_radius_3_________________________________________ (radial_cum(3))________________ 2.69101828800959497e+00 CS_precompresion_to_TF_coil_radial_gap_radial_thickness_(m)______________ (dr_cs_tf_gap)_________________ 8.00000000000000017e-02 Radial_build_component_4_________________________________________________ (radial_label(4))______________ "dr_cs_tf_gap" -Radial_build_cumulative_radius_4_________________________________________ (radial_cum(4))________________ 2.76654191646488234e+00 -TF_coil_inboard_leg_radial_thickness_(m)_________________________________ (dr_tf_inboard)________________ 8.58791416977167321e-01 +Radial_build_cumulative_radius_4_________________________________________ (radial_cum(4))________________ 2.77101828800959504e+00 +TF_coil_inboard_leg_radial_thickness_(m)_________________________________ (dr_tf_inboard)________________ 8.54315045441632281e-01 Radial_build_component_5_________________________________________________ (radial_label(5))______________ "dr_tf_inboard" -Radial_build_cumulative_radius_5_________________________________________ (radial_cum(5))________________ 3.62533333344204944e+00 +Radial_build_cumulative_radius_5_________________________________________ (radial_cum(5))________________ 3.62533333345122744e+00 TF_coil_inboard_leg_insulation_gap_radial_thickness_(m)__________________ (dr_tf_shld_gap)_______________ 5.00000000000000028e-02 Radial_build_component_6_________________________________________________ (radial_label(6))______________ "dr_tf_shld_gap" -Radial_build_cumulative_radius_6_________________________________________ (radial_cum(6))________________ 3.67533333344204927e+00 +Radial_build_cumulative_radius_6_________________________________________ (radial_cum(6))________________ 3.67533333345122726e+00 Thermal_shield,_inboard_radial_thickness_(m)_____________________________ (dr_shld_thermal_inboard)______ 5.00000000000000028e-02 Radial_build_component_7_________________________________________________ (radial_label(7))______________ "dr_shld_thermal_inboard" -Radial_build_cumulative_radius_7_________________________________________ (radial_cum(7))________________ 3.72533333344204909e+00 +Radial_build_cumulative_radius_7_________________________________________ (radial_cum(7))________________ 3.72533333345122708e+00 Thermal_shield_to_vessel_radial_gap_radial_thickness_(m)_________________ (dr_shld_vv_gap_inboard)_______ 2.00000000000000004e-02 Radial_build_component_8_________________________________________________ (radial_label(8))______________ "dr_shld_vv_gap_inboard" -Radial_build_cumulative_radius_8_________________________________________ (radial_cum(8))________________ 3.74533333344204911e+00 +Radial_build_cumulative_radius_8_________________________________________ (radial_cum(8))________________ 3.74533333345122710e+00 Inboard_vacuum_vessel_radial_thickness_(m)_______________________________ (dr_vv_inboard)________________ 2.99999999999999989e-01 Radial_build_component_9_________________________________________________ (radial_label(9))______________ "dr_vv_inboard" -Radial_build_cumulative_radius_9_________________________________________ (radial_cum(9))________________ 4.04533333344204937e+00 +Radial_build_cumulative_radius_9_________________________________________ (radial_cum(9))________________ 4.04533333345122692e+00 Inner_radiation_shield_radial_thickness_(m)______________________________ (dr_shld_inboard)______________ 2.99999999999999989e-01 Radial_build_component_10________________________________________________ (radial_label(10))_____________ "dr_shld_inboard" -Radial_build_cumulative_radius_10________________________________________ (radial_cum(10))_______________ 4.34533333344204920e+00 +Radial_build_cumulative_radius_10________________________________________ (radial_cum(10))_______________ 4.34533333345122674e+00 Gap_radial_thickness_(m)_________________________________________________ (dr_shld_blkt_gap)_____________ 2.00000000000000004e-02 Radial_build_component_11________________________________________________ (radial_label(11))_____________ "dr_shld_blkt_gap" -Radial_build_cumulative_radius_11________________________________________ (radial_cum(11))_______________ 4.36533333344204877e+00 +Radial_build_cumulative_radius_11________________________________________ (radial_cum(11))_______________ 4.36533333345122632e+00 Inboard_blanket_radial_thickness_(m)_____________________________________ (dr_blkt_inboard)______________ 6.99999999999999956e-01 Radial_build_component_12________________________________________________ (radial_label(12))_____________ "dr_blkt_inboard" -Radial_build_cumulative_radius_12________________________________________ (radial_cum(12))_______________ 5.06533333344204895e+00 +Radial_build_cumulative_radius_12________________________________________ (radial_cum(12))_______________ 5.06533333345122649e+00 Inboard_first_wall_radial_thickness_(m)__________________________________ (dr_fw_inboard)________________ 1.80000000000000021e-02 Radial_build_component_13________________________________________________ (radial_label(13))_____________ "dr_fw_inboard" -Radial_build_cumulative_radius_13________________________________________ (radial_cum(13))_______________ 5.08333333344204874e+00 +Radial_build_cumulative_radius_13________________________________________ (radial_cum(13))_______________ 5.08333333345122629e+00 Inboard_scrape-off_radial_thickness_(m)__________________________________ (dr_fw_plasma_gap_inboard)_____ 2.50000000000000000e-01 Radial_build_component_14________________________________________________ (radial_label(14))_____________ "dr_fw_plasma_gap_inboard" -Radial_build_cumulative_radius_14________________________________________ (radial_cum(14))_______________ 5.33333333344204874e+00 -Plasma_geometric_centre_radial_thickness_(m)_____________________________ (rminor)_______________________ 2.66666666671462815e+00 +Radial_build_cumulative_radius_14________________________________________ (radial_cum(14))_______________ 5.33333333345122629e+00 +Plasma_geometric_centre_radial_thickness_(m)_____________________________ (rminor)_______________________ 2.66666666672418229e+00 Radial_build_component_15________________________________________________ (radial_label(15))_____________ "rminor" -Radial_build_cumulative_radius_15________________________________________ (radial_cum(15))_______________ 8.00000000015667645e+00 -Plasma_outboard_edge_radial_thickness_(m)________________________________ (rminor)_______________________ 2.66666666671462815e+00 +Radial_build_cumulative_radius_15________________________________________ (radial_cum(15))_______________ 8.00000000017540813e+00 +Plasma_outboard_edge_radial_thickness_(m)________________________________ (rminor)_______________________ 2.66666666672418229e+00 Radial_build_component_16________________________________________________ (radial_label(16))_____________ "rminor" -Radial_build_cumulative_radius_16________________________________________ (radial_cum(16))_______________ 1.06666666668713042e+01 +Radial_build_cumulative_radius_16________________________________________ (radial_cum(16))_______________ 1.06666666668995909e+01 Outboard_scrape-off_radial_thickness_(m)_________________________________ (dr_fw_plasma_gap_outboard)____ 2.50000000000000000e-01 Radial_build_component_17________________________________________________ (radial_label(17))_____________ "dr_fw_plasma_gap_outboard" -Radial_build_cumulative_radius_17________________________________________ (radial_cum(17))_______________ 1.09166666668713042e+01 +Radial_build_cumulative_radius_17________________________________________ (radial_cum(17))_______________ 1.09166666668995909e+01 Outboard_first_wall_radial_thickness_(m)_________________________________ (dr_fw_outboard)_______________ 1.80000000000000021e-02 Radial_build_component_18________________________________________________ (radial_label(18))_____________ "dr_fw_outboard" -Radial_build_cumulative_radius_18________________________________________ (radial_cum(18))_______________ 1.09346666668713048e+01 +Radial_build_cumulative_radius_18________________________________________ (radial_cum(18))_______________ 1.09346666668995915e+01 Outboard_blanket_radial_thickness_(m)____________________________________ (dr_blkt_outboard)_____________ 1.00000000000000000e+00 Radial_build_component_19________________________________________________ (radial_label(19))_____________ "dr_blkt_outboard" -Radial_build_cumulative_radius_19________________________________________ (radial_cum(19))_______________ 1.19346666668713048e+01 +Radial_build_cumulative_radius_19________________________________________ (radial_cum(19))_______________ 1.19346666668995915e+01 Gap_radial_thickness_(m)_________________________________________________ (dr_shld_blkt_gap)_____________ 2.00000000000000004e-02 Radial_build_component_20________________________________________________ (radial_label(20))_____________ "dr_shld_blkt_gap" -Radial_build_cumulative_radius_20________________________________________ (radial_cum(20))_______________ 1.19546666668713044e+01 +Radial_build_cumulative_radius_20________________________________________ (radial_cum(20))_______________ 1.19546666668995911e+01 Outer_radiation_shield_radial_thickness_(m)______________________________ (dr_shld_outboard)_____________ 8.00000000000000044e-01 Radial_build_component_21________________________________________________ (radial_label(21))_____________ "dr_shld_outboard" -Radial_build_cumulative_radius_21________________________________________ (radial_cum(21))_______________ 1.27546666668713051e+01 +Radial_build_cumulative_radius_21________________________________________ (radial_cum(21))_______________ 1.27546666668995918e+01 Outboard_vacuum_vessel_radial_thickness_(m)______________________________ (dr_vv_outboard)_______________ 2.99999999999999989e-01 Radial_build_component_22________________________________________________ (radial_label(22))_____________ "dr_vv_outboard" -Radial_build_cumulative_radius_22________________________________________ (radial_cum(22))_______________ 1.30546666668713058e+01 -Vessel_to_TF_gap_radial_thickness_(m)____________________________________ (dr_shld_vv_gap_outboard)______ 1.39987179838529574e+00 +Radial_build_cumulative_radius_22________________________________________ (radial_cum(22))_______________ 1.30546666668995925e+01 +Vessel_to_TF_gap_radial_thickness_(m)____________________________________ (dr_shld_vv_gap_outboard)______ 1.40205853709435413e+00 Radial_build_component_23________________________________________________ (radial_label(23))_____________ "dr_shld_vv_gap_outboard" -Radial_build_cumulative_radius_23________________________________________ (radial_cum(23))_______________ 1.44545384652566007e+01 +Radial_build_cumulative_radius_23________________________________________ (radial_cum(23))_______________ 1.44567252039939476e+01 Ouboard_thermal_shield_radial_thickness_(m)______________________________ (dr_shld_thermal_outboard)_____ 5.00000000000000028e-02 Radial_build_component_24________________________________________________ (radial_label(24))_____________ "dr_shld_thermal_outboard" -Radial_build_cumulative_radius_24________________________________________ (radial_cum(24))_______________ 1.45045384652566014e+01 +Radial_build_cumulative_radius_24________________________________________ (radial_cum(24))_______________ 1.45067252039939483e+01 Gap_radial_thickness_(m)_________________________________________________ (dr_tf_shld_gap)_______________ 5.00000000000000028e-02 Radial_build_component_25________________________________________________ (radial_label(25))_____________ "dr_tf_shld_gap" -Radial_build_cumulative_radius_25________________________________________ (radial_cum(25))_______________ 1.45545384652566021e+01 -TF_coil_outboard_leg_radial_thickness_(m)________________________________ (dr_tf_outboard)_______________ 8.58791416977167321e-01 +Radial_build_cumulative_radius_25________________________________________ (radial_cum(25))_______________ 1.45567252039939490e+01 +TF_coil_outboard_leg_radial_thickness_(m)________________________________ (dr_tf_outboard)_______________ 8.54315045441632281e-01 Radial_build_component_26________________________________________________ (radial_label(26))_____________ "dr_tf_outboard" -Radial_build_cumulative_radius_26________________________________________ (radial_cum(26))_______________ 1.54133298822337697e+01 +Radial_build_cumulative_radius_26________________________________________ (radial_cum(26))_______________ 1.54110402494355814e+01 # Vertical Build # Divertor_null_switch_____________________________________________________ (i_single_null)________________ 1 -Cryostat_roof_structure*_________________________________________________ (dz_tf_cryostat)_______________ 5.61052943983274233e+00 +Cryostat_roof_structure*_________________________________________________ (dz_tf_cryostat)_______________ 5.60764377401562619e+00 Thermal_shield,_vertical_(m)_____________________________________________ (dz_shld_thermal)______________ 5.00000000000000028e-02 Vessel_-_TF_coil_vertical_gap_(m)________________________________________ (dz_shld_vv_gap)_______________ 1.63000000000000006e-01 Topside_vacuum_vessel_radial_thickness_(m)_______________________________ (dz_vv_upper)__________________ 2.99999999999999989e-01 @@ -34925,25 +34923,25 @@ Top_radiation_shield_thickness_(m)_______________________________________ (dz_sh Top_blanket_vertical_thickness_(m)_______________________________________ (dz_blkt_upper)________________ 8.49999999999999978e-01 Top_first_wall_vertical_thickness_(m)____________________________________ (dz_fw_upper)__________________ 1.80000000000000021e-02 Top_scrape-off_vertical_thickness_(m)____________________________________ (dz_fw_plasma_gap)_____________ 5.99999999999999978e-01 -Plasma_upper_X-point_height_(m)__________________________________________ (z_plasma_xpoint_upper)________ 4.93333333342206259e+00 -Plasma_lower_X-point_height_(m)__________________________________________ (z_plasma_xpoint_lower)________ 4.93333333342206259e+00 +Plasma_upper_X-point_height_(m)__________________________________________ (z_plasma_xpoint_upper)________ 4.93333333343973734e+00 +Plasma_lower_X-point_height_(m)__________________________________________ (z_plasma_xpoint_lower)________ 4.93333333343973734e+00 Bottom_scrape-off_vertical_thickness_(m)_________________________________ (dz_xpoint_divertor)___________ 2.00188383079415821e+00 Divertor_structure_vertical_thickness_(m)________________________________ (dz_divertor)__________________ 6.19999999999999996e-01 Bottom_radiation_shield_thickness_(m)____________________________________ (dz_shld_lower)________________ 6.99999999999999956e-01 Underside_vacuum_vessel_radial_thickness_(m)_____________________________ (dz_vv_lower)__________________ 2.99999999999999989e-01 Ratio_of_Central_Solenoid_height_to_TF_coil_internal_height______________ (f_z_cs_tf_internal)___________ 9.00000000000000022e-01 # Divertor build and plasma position # -Plasma_top_position,_radial_(m)__________________________________________ (ptop_radial)__________________ 6.66666666678657105e+00 OP -Plasma_top_position,_vertical_(m)________________________________________ (ptop_vertical)________________ 4.93333333342206259e+00 OP -Plasma_geometric_centre,_radial_(m)______________________________________ (rmajor.)______________________ 8.00000000014388490e+00 OP +Plasma_top_position,_radial_(m)__________________________________________ (ptop_radial)__________________ 6.66666666681045506e+00 OP +Plasma_top_position,_vertical_(m)________________________________________ (ptop_vertical)________________ 4.93333333343973734e+00 OP +Plasma_geometric_centre,_radial_(m)______________________________________ (rmajor.)______________________ 8.00000000017254642e+00 OP Plasma_geometric_centre,_vertical_(m)____________________________________ (0.0)__________________________ 0.00000000000000000e+00 OP Plasma_lower_triangularity_______________________________________________ (tril)_________________________ 5.00000000000000000e-01 OP Plasma_elongation________________________________________________________ (kappa.)_______________________ 1.85000000000000009e+00 OP TF_coil_vertical_offset_(m)______________________________________________ (dz_tf_plasma_centre_offset)___ -6.16941915397079654e-01 OP -Plasma_outer_arc_radius_of_curvature_(m)_________________________________ (rco)__________________________ 5.04222222231291006e+00 OP -Plasma_inner_arc_radius_of_curvature_(m)_________________________________ (rci)__________________________ 9.79333333350947299e+00 OP -Plasma_lower_X-pt,_radial_(m)____________________________________________ (rxpt)_________________________ 6.66666666678657105e+00 OP -Plasma_lower_X-pt,_vertical_(m)__________________________________________ (zxpt)_________________________ -4.93333333342206259e+00 OP +Plasma_outer_arc_radius_of_curvature_(m)_________________________________ (rco)__________________________ 5.04222222233097472e+00 OP +Plasma_inner_arc_radius_of_curvature_(m)_________________________________ (rci)__________________________ 9.79333333354455959e+00 OP +Plasma_lower_X-pt,_radial_(m)____________________________________________ (rxpt)_________________________ 6.66666666681045506e+00 OP +Plasma_lower_X-pt,_vertical_(m)__________________________________________ (zxpt)_________________________ -4.93333333343973734e+00 OP Poloidal_plane_angle_between_vertical_and_inner_leg_(rad)________________ (thetai)_______________________ 2.08199876219198804e-01 OP Poloidal_plane_angle_between_vertical_and_outer_leg_(rad)________________ (thetao)_______________________ 1.04286887954348750e+00 OP Poloidal_plane_angle_between_inner_leg_and_plate_(rad)___________________ (betai)________________________ 1.00000000000000000e+00 @@ -34952,270 +34950,276 @@ Inner_divertor_leg_poloidal_length_(m)___________________________________ (plsep Outer_divertor_leg_poloidal_length_(m)___________________________________ (plsepo)_______________________ 1.50000000000000000e+00 Inner_divertor_plate_length_(m)__________________________________________ (plleni)_______________________ 1.00000000000000000e+00 Outer_divertor_plate_length_(m)__________________________________________ (plleno)_______________________ 1.00000000000000000e+00 -Inner_strike_point,_radial_(m)___________________________________________ (rspi)_________________________ 5.68826208326960359e+00 OP -Inner_strike_point,_vertical_(m)_________________________________________ (zspi)_________________________ -5.14003231975965669e+00 OP -Inner_plate_top,_radial_(m)______________________________________________ (rplti)________________________ 5.86561360974654633e+00 OP -Inner_plate_top,_vertical_(m)____________________________________________ (zplti)________________________ -4.67254281607396038e+00 OP -Inner_plate_bottom,_radial_(m)___________________________________________ (rplbi)________________________ 5.51091055679266084e+00 OP -Inner_plate_bottom,_vertical_(m)_________________________________________ (zplbi)________________________ -5.60752182344535299e+00 OP -Outer_strike_point,_radial_(m)___________________________________________ (rspo)_________________________ 7.42228273213715006e+00 OP -Outer_strike_point,_vertical_(m)_________________________________________ (zspo)_________________________ -6.22911277521920326e+00 OP -Outer_plate_top,_radial_(m)______________________________________________ (rplto)________________________ 7.64964929897812951e+00 OP -Outer_plate_top,_vertical_(m)____________________________________________ (zplto)________________________ -5.78379890357028792e+00 OP -Outer_plate_bottom,_radial_(m)___________________________________________ (rplbo)________________________ 7.19491616529617062e+00 OP -Outer_plate_bottom,_vertical_(m)_________________________________________ (zplbo)________________________ -6.67442664686811860e+00 OP +Inner_strike_point,_radial_(m)___________________________________________ (rspi)_________________________ 5.68826208329348759e+00 OP +Inner_strike_point,_vertical_(m)_________________________________________ (zspi)_________________________ -5.14003231977733144e+00 OP +Inner_plate_top,_radial_(m)______________________________________________ (rplti)________________________ 5.86561360977043034e+00 OP +Inner_plate_top,_vertical_(m)____________________________________________ (zplti)________________________ -4.67254281609163513e+00 OP +Inner_plate_bottom,_radial_(m)___________________________________________ (rplbi)________________________ 5.51091055681654485e+00 OP +Inner_plate_bottom,_vertical_(m)_________________________________________ (zplbi)________________________ -5.60752182346302774e+00 OP +Outer_strike_point,_radial_(m)___________________________________________ (rspo)_________________________ 7.42228273216103318e+00 OP +Outer_strike_point,_vertical_(m)_________________________________________ (zspo)_________________________ -6.22911277523687801e+00 OP +Outer_plate_top,_radial_(m)______________________________________________ (rplto)________________________ 7.64964929900201263e+00 OP +Outer_plate_top,_vertical_(m)____________________________________________ (zplto)________________________ -5.78379890358796267e+00 OP +Outer_plate_bottom,_radial_(m)___________________________________________ (rplbo)________________________ 7.19491616532005374e+00 OP +Outer_plate_bottom,_vertical_(m)_________________________________________ (zplbo)________________________ -6.67442664688579335e+00 OP Calculated_maximum_divertor_height_(m)___________________________________ (divht)________________________ 2.00188383079415821e+00 OP # Cryostat build # Cryostat_thickness_(m)___________________________________________________ (dr_cryostat)__________________ 1.49999999999999994e-01 OP -Cryostat_internal_radius_(m)_____________________________________________ (r_cryostat_inboard)___________ 1.77579156180240787e+01 OP -Cryostat_internal_half_height_(m)________________________________________ (z_cryostat_half_inside)_______ 1.52875380210261334e+01 OP -Vertical_clearance_from_highest_PF_coil_to_cryostat_(m)__________________ (dz_pf_cryostat)_______________ 5.32987228254055978e+00 OP -Cryostat_structure_volume_(m^3)__________________________________________ (vol_cryostat)_________________ 8.16125634585092484e+02 OP -Cryostat_internal_volume_(m^3)___________________________________________ (vol_cryostat_internal)________ 3.02901479402734185e+04 OP -Conductor_technology_____________________________________________________ (i_tf_sup)_____________________ 1 -Superconducting_TF_coil_turn_type________________________________________ (i_tf_turn_type)_______________ 1 -Superconductor_material__________________________________________________ (i_tf_sc_mat)__________________ 1 +Cryostat_internal_radius_(m)_____________________________________________ (r_cryostat_inboard)___________ 1.77514870496527379e+01 OP +Cryostat_internal_half_height_(m)________________________________________ (z_cryostat_half_inside)_______ 1.52801759836911568e+01 OP +Vertical_clearance_from_highest_PF_coil_to_cryostat_(m)__________________ (dz_pf_cryostat)_______________ 5.32794280787045516e+00 OP +Cryostat_structure_volume_(m³)___________________________________________ (vol_cryostat)_________________ 8.15476045254206838e+02 OP +Cryostat_internal_volume_(m³)____________________________________________ (vol_cryostat_internal)________ 3.02536448483079184e+04 OP +# General TF Coil Parameters # +TF_conductor_technology__________________________________________________ (i_tf_sup)_____________________ 1 +TF_coil_shape_model_used_________________________________________________ (i_tf_shape)___________________ 1 +TF_coil_arc_point_0_R_(m)________________________________________________ (r_tf_arc(1))__________________ 3.62533333345122744e+00 +TF_coil_arc_point_0_Z_(m)________________________________________________ (z_tf_arc(1))__________________ 4.55060000006384247e+00 +TF_coil_arc_point_1_R_(m)________________________________________________ (r_tf_arc(2))__________________ 7.46666666682770952e+00 +TF_coil_arc_point_1_Z_(m)________________________________________________ (z_tf_arc(2))__________________ 7.58433333343973715e+00 +TF_coil_arc_point_2_R_(m)________________________________________________ (r_tf_arc(3))__________________ 1.45567252039910855e+01 +TF_coil_arc_point_2_Z_(m)________________________________________________ (z_tf_arc(3))__________________ 0.00000000000000000e+00 +TF_coil_arc_point_3_R_(m)________________________________________________ (r_tf_arc(4))__________________ 7.46666666682770952e+00 +TF_coil_arc_point_3_Z_(m)________________________________________________ (z_tf_arc(4))__________________ -8.81821716423389823e+00 +TF_coil_arc_point_4_R_(m)________________________________________________ (r_tf_arc(5))__________________ 3.62533333345122744e+00 +TF_coil_arc_point_4_Z_(m)________________________________________________ (z_tf_arc(5))__________________ -5.29093029854033858e+00 +TF_plasma-facing_case_geometry_type_switch_______________________________ (i_tf_case_geom)_______________ 0 Presence_of_TF_demountable_joints________________________________________ (itart)________________________ 0 -TF_inboard_leg_support_strategy__________________________________________ (i_tf_bucking)_________________ 1 +TF_inboard_leg_support_strategy_model_switch_____________________________ (i_tf_bucking)_________________ 1 Number_of_TF_coils_______________________________________________________ (n_tf_coils)___________________ 16 -Inboard_TF_half_angle_[rad]______________________________________________ (rad_tf_coil_inboard_toroidal_half)_ 1.96349540849362070e-01 OP -Inboard_leg_centre_radius_(m)____________________________________________ (r_tf_inboard_mid)_____________ 3.19593762495346612e+00 OP -Inboard_leg_inner_radius_(m)_____________________________________________ (r_tf_inboard_in)______________ 2.76654191646488234e+00 OP -Inboard_leg_outer_radius_(m)_____________________________________________ (r_tf_inboard_out)_____________ 3.62533333344204944e+00 OP -WP_shape_selection_switch________________________________________________ (i_tf_wp_geom)_________________ 1 -Radial_position_of_inner_edge_and_centre_of_winding_pack_(m)_____________ (r_tf_wp_inboard_inner)________ 2.97315225628187241e+00 OP -Radial_position_of_outer_edge_and_of_winding_pack_(m)____________________ (r_tf_wp_inboard_outer)________ 3.54943431449535751e+00 OP -Radial_position_of_centre_of_winding_pack_(m)____________________________ (r_tf_wp_inboard_centre)_______ 3.26129328538861518e+00 OP -Minimum_toroidal_thickness_of_winding_pack_(m)___________________________ (dx_tf_wp_toroidal_min)________ 1.08279350775439775e+00 OP -Outboard_leg_inner_radius_(m)____________________________________________ (r_tf_outboard_in)_____________ 1.45545384652438106e+01 OP -Outboard_leg_centre_radius_(m)___________________________________________ (r_tf_outboard_mid)____________ 1.49839341737323934e+01 OP -Outboard_leg_nose_case_type______________________________________________ (i_tf_case_geom)_______________ 0 -Total_inboard_leg_radial_thickness_(m)___________________________________ (dr_tf_inboard)________________ 8.58791416977167321e-01 -Total_outboard_leg_radial_thickness_(m)__________________________________ (dr_tf_outboard)_______________ 8.58791416977167321e-01 -Full_external_coil_width_at_mid-plane_(m)________________________________ (dr_tf_full_midplane)__________ 1.26467879657560935e+01 OP -Full_internal_coil_width_at_mid-plane_(m)________________________________ (dr_tf_internal_midplane)______ 1.09292051318017620e+01 OP -Outboard_leg_toroidal_thickness_(m)______________________________________ (dx_tf_inboard_out_toroidal)___ 1.41453489487402617e+00 OP -Maximum_inboard_edge_height_(m)__________________________________________ (z_tf_inside_half)_____________ 8.81821716421622348e+00 OP -Height_to_top_of_TF_coil_(m)_____________________________________________ (z_tf_top)_____________________ 8.44312475039922994e+00 OP -Height_difference_in_upper_and_lower_TF_from_midplane_(m)________________ (dz_tf_upper_lower_midplane)___ -1.23388383079416109e+00 OP -Mean_coil_circumference_(including_inboard_leg_length)_(m)_______________ (len_tf_coil)__________________ 4.77997349325980636e+01 OP -Vertical_TF_shape________________________________________________________ (i_tf_shape)___________________ 1 -TF_coil_arc_point_0_R_(m)________________________________________________ (r_tf_arc(1))__________________ 3.62533333344204944e+00 -TF_coil_arc_point_0_Z_(m)________________________________________________ (z_tf_arc(1))__________________ 4.55060000005323761e+00 -TF_coil_arc_point_1_R_(m)________________________________________________ (r_tf_arc(2))__________________ 7.46666666680095936e+00 -TF_coil_arc_point_1_Z_(m)________________________________________________ (z_tf_arc(2))__________________ 7.58433333342206240e+00 -TF_coil_arc_point_2_R_(m)________________________________________________ (r_tf_arc(3))__________________ 1.45545384652438106e+01 -TF_coil_arc_point_2_Z_(m)________________________________________________ (z_tf_arc(3))__________________ 0.00000000000000000e+00 -TF_coil_arc_point_3_R_(m)________________________________________________ (r_tf_arc(4))__________________ 7.46666666680095936e+00 -TF_coil_arc_point_3_Z_(m)________________________________________________ (z_tf_arc(4))__________________ -8.81821716421622348e+00 -TF_coil_arc_point_4_R_(m)________________________________________________ (r_tf_arc(5))__________________ 3.62533333344204944e+00 -TF_coil_arc_point_4_Z_(m)________________________________________________ (z_tf_arc(5))__________________ -5.29093029852973373e+00 -TF_cross-section_(total)_(m2)____________________________________________ (a_tf_inboard_total)___________ 1.72451056070541533e+01 -Total_steel_cross-section_(m2)___________________________________________ (a_tf_coil_inboard_steel*n_tf_coils)_ 1.09612008405920811e+01 -Total_steel_TF_fraction__________________________________________________ (f_a_tf_coil_inboard_steel)____ 6.35612276918059216e-01 -Total_Insulation_cross-section_(total)_(m2)______________________________ (a_tf_coil_inboard_insulation*n_tf_coils)_ 9.05474576752652749e-01 -Total_Insulation_fraction________________________________________________ (f_a_tf_coil_inboard_insulation)_ 5.25061775430511815e-02 -Casing_cross_section_area_(per_leg)_(m2)_________________________________ (a_tf_coil_inboard_case)_______ 4.20795130056302424e-01 -Inboard_leg_case_plasma_side_wall_thickness_(m)__________________________ (dr_tf_plasma_case)____________ 7.58990189466916682e-02 -Inboard_leg_plasma_case_area_(m^2)_______________________________________ (a_tf_plasma_case)_____________ 7.46359501160478445e-02 -Inboard_leg_case_inboard_"nose"_thickness_(m)____________________________ (dr_tf_nose_case)______________ 2.06610339816990257e-01 -Inboard_leg_case_inboard_"nose"_area_(m^2)_______________________________ (a_tf_coil_nose_case)__________ 2.55501475003228506e-01 +Inboard_TF_coil_toroidal_half_angle_[rad]________________________________ (rad_tf_coil_inboard_toroidal_half)_ 1.96349540849362070e-01 OP +Inboard_leg_inner_radius_(m)_____________________________________________ (r_tf_inboard_in)______________ 2.77101828800959504e+00 OP +Inboard_leg_centre_radius_(m)____________________________________________ (r_tf_inboard_mid)_____________ 3.19817581073041124e+00 OP +Inboard_leg_outer_radius_(m)_____________________________________________ (r_tf_inboard_out)_____________ 3.62533333345122744e+00 OP +Radial_position_of_inner_edge_and_centre_of_winding_pack_(m)_____________ (r_tf_wp_inboard_inner)________ 2.97477007880261279e+00 OP +Radial_position_of_centre_of_winding_pack_(m)____________________________ (r_tf_wp_inboard_centre)_______ 3.26261210426744075e+00 OP +Radial_position_of_outer_edge_and_of_winding_pack_(m)____________________ (r_tf_wp_inboard_outer)________ 3.55045412973226915e+00 OP +Outboard_leg_inner_radius_(m)____________________________________________ (r_tf_outboard_in)_____________ 1.45567252039910855e+01 OP +Outboard_leg_centre_radius_(m)___________________________________________ (r_tf_outboard_mid)____________ 1.49838827267119008e+01 OP +Total_inboard_leg_radial_thickness_(m)___________________________________ (dr_tf_inboard)________________ 8.54315045441632281e-01 +Total_outboard_leg_radial_thickness_(m)__________________________________ (dr_tf_outboard)_______________ 8.54315045441632281e-01 +Inboard_leg_nose_case_radial_thickness_(m)_______________________________ (dr_tf_nose_case)______________ 2.03751790793017529e-01 +Inboard_leg_plasma_side_case_thickness_(m)_______________________________ (dr_tf_plasma_case)____________ 7.48792037189585230e-02 +Full_external_coil_radial_width_at_mid-plane_(m)_________________________ (dr_tf_full_midplane)__________ 1.26400219614231215e+01 OP +Full_internal_coil_radial_width_at_mid-plane_(m)_________________________ (dr_tf_internal_midplane)______ 1.09313918705398585e+01 OP Inboard_leg_case_sidewall_thickness_at_its_narrowest_point_(m)___________ (dx_tf_side_case_min)__________ 5.00000000000000028e-02 -Inboard_leg_case_sidewall_average_thickness_(m)__________________________ (dx_tf_side_case_average)______ 7.86574071194165725e-02 -Inboard_leg_case_sidewall_peak_thickness_(m)_____________________________ (dx_tf_side_case_peak)_________ 1.07314814238833128e-01 -External_case_mass_per_coil_(kg)_________________________________________ (m_tf_coil_case)_______________ 4.22578523275437299e+05 OP -WP_cross_section_area_with_insulation_and_insertion_(per_coil)_(m2)______ (a_tf_wp_with_insulation)______ 6.57023970384582157e-01 -WP_cross_section_area_with_no_insulation_and_insertion_(per_coil)_(m2)___ (a_tf_wp_no_insulation)________ 5.96529916697140283e-01 -Total_steel_area_in_WP_(per_coil)_(m2)___________________________________ (a_tf_wp_steel)________________ 2.64279922480702645e-01 -Winding_pack_radial_thickness_(m)________________________________________ (dr_tf_wp_with_insulation)_____ 5.76282058213485326e-01 OP -Winding_pack_toroidal_width_1_(m)________________________________________ (dx_tf_wp_primary_toroidal)____ 1.19742313623206398e+00 OP -Winding_pack_toroidal_width_2_(m)________________________________________ (dx_tf_wp_secondary_toroidal)__ 1.08279350775439775e+00 OP +Inboard_leg_toroidal_thickness_at_outer_edge_(m)_________________________ (dx_tf_inboard_out_toroidal)___ 1.41453489487760731e+00 OP +Maximum_inboard_edge_height_(m)__________________________________________ (z_tf_inside_half)_____________ 8.81821716423389823e+00 OP +Height_to_top_of_TF_coil_(m)_____________________________________________ (z_tf_top)_____________________ 8.43864837888136954e+00 OP +Height_difference_in_upper_and_lower_TF_from_midplane_(m)________________ (dz_tf_upper_lower_midplane)___ -1.23388383079416109e+00 OP +Mean_coil_circumference_(including_inboard_leg_length)_(m)_______________ (len_tf_coil)__________________ 4.77890069647637716e+01 OP +Total_inboard_area_of_all_TF_coils_(m²)__________________________________ (a_tf_inboard_total)___________ 1.71672312527352133e+01 +Outboard_leg_area_of_single_TF_coil_(m²)_________________________________ (a_tf_leg_outboard)____________ 1.20845844299613758e+00 +Radius_of_maximum_field_position_on_inboard_TF_coil_(m)__________________ (r_b_tf_inboard_peak)__________ 3.53245412973226891e+00 OP +Nominal_peak_field_on_inboard_TF_coil_assuming_toroidal_symmetry_(T)_____ (b_tf_inboard_peak_symmetric)__ 1.12577844250709305e+01 OP +Actual_peak_field_at_discrete_conductor_(T)______________________________ (b_tf_inboard_peak_with_ripple)_ 1.16811400667691139e+01 OP +Ratio_of_peak_field_with_ripple_to_nominal_axisymmetric_peak_field_______ (f_b_tf_inboard_peak_ripple_symmetric)_ 1.03760559144793851e+00 OP +Current_in_a_single_TF_coil_(A)__________________________________________ (c_tf_coil)____________________ 1.24273772081645094e+07 OP +Total_current_in_all_TF_coils_(A)________________________________________ (c_tf_total)___________________ 1.98838035330632150e+08 +Inboard_leg_mid-plane_full_coil_area_current_density_(A/m²)______________ (j_tf_coil_full_area)__________ 1.15824172461678572e+07 +Self_inductance_of_a_TF_coil_(H)_________________________________________ (ind_tf_coil)__________________ 5.37035039650441270e-06 OP +Total_stored_magnetic_energy_in_a_TF_coil_(J)____________________________ (e_tf_coil_magnetic_stored)____ 6.63516261667148972e+09 OP +Total_stored_magnetic_energy_in_all_TF_coils_(J)_________________________ (e_tf_magnetic_stored_total)___ 1.06162601866743835e+11 OP +Total_stored_magnetic_energy_in_all_TF_coils_(GJ)________________________ (e_tf_magnetic_stored_total_gj)_ 1.06162601866743842e+02 OP +Max_allowed_toroidal_field_ripple_at_plasma_outboard_midplane_(%)________ (ripple_b_tf_plasma_edge_max)__ 5.99999999999999978e-01 +Toroidal_field_ripple_at_plasma_outboard_midplane_(%)____________________ (ripple_b_tf_plasma_edge)______ 6.00000000000000533e-01 OP +Inboard_vertical_tension_per_coil_(N)____________________________________ (vforce)_______________________ 1.83794251186738998e+08 OP +Outboard_vertical_tension_per_coil_(N)___________________________________ (vforce_outboard)______________ 1.83794251186738998e+08 OP +Total_inboard_vertical_tension_(N)_______________________________________ (vforce_inboard_total)_________ 2.94070801898782396e+09 OP +Inboard_vertical_tension_fraction_(-)____________________________________ (f_vforce_inboard)_____________ 5.00000000000000000e-01 OP +Centring_force_per_coil_(N/m)____________________________________________ (cforce)_______________________ 6.99523667892779410e+07 OP +# General Superconducting TF Coil Parameters # +Superconducting_TF_coil_turn_type________________________________________ (i_tf_turn_type)_______________ 1 +Total_steel_cross-section_(m²)___________________________________________ (a_tf_coil_inboard_steel*n_tf_coils)_ 1.09017284310748259e+01 +Total_steel_TF_fraction__________________________________________________ (f_a_tf_coil_inboard_steel)____ 6.35031256384915310e-01 +Total_Insulation_cross-section_(total)_(m²)______________________________ (a_tf_coil_inboard_insulation*n_tf_coils)_ 9.03102576111896926e-01 +Total_Insulation_fraction________________________________________________ (f_a_tf_coil_inboard_insulation)_ 5.26061869160181425e-02 +Casing_cross_section_area_(per_leg)_(m²)_________________________________ (a_tf_coil_inboard_case)_______ 4.16273499196232355e-01 +Inboard_leg_plasma_case_area_(m²)________________________________________ (a_tf_plasma_case)_____________ 7.31957103308791268e-02 +Inboard_leg_case_inboard_"nose"_area_(m²)________________________________ (a_tf_coil_nose_case)__________ 2.52548398442685951e-01 +Inboard_leg_case_sidewall_average_thickness_(m)__________________________ (dx_tf_side_case_average)______ 7.86276693582823871e-02 +Inboard_leg_case_sidewall_peak_thickness_(m)_____________________________ (dx_tf_side_case_peak)_________ 1.07255338716564771e-01 +External_case_mass_per_coil_(kg)_________________________________________ (m_tf_coil_case)_______________ 4.17958392894204881e+05 OP +Winding_pack_shape_selection_switch______________________________________ (i_tf_wp_geom)_________________ 1 +WP_cross_section_area_with_insulation_and_insertion_(per_coil)_(m²)______ (a_tf_wp_with_insulation)______ 6.56678454099718478e-01 +WP_cross_section_area_with_no_insulation_and_insertion_(per_coil)_(m²)___ (a_tf_wp_no_insulation)________ 5.96184899839948934e-01 +Total_steel_area_in_WP_(per_coil)_(m²)___________________________________ (a_tf_wp_steel)________________ 2.65084527745944210e-01 +Ground_wall_insulation_area_(m²)_________________________________________ (a_tf_wp_ground_insulation)____ 2.65660241154530574e-02 +Winding_pack_radial_thickness_(m)________________________________________ (dr_tf_wp_with_insulation)_____ 5.75684050929656244e-01 OP +Minimum_toroidal_thickness_of_winding_pack_(m)___________________________ (dx_tf_wp_toroidal_min)________ 1.08343711756959893e+00 OP +Winding_pack_toroidal_width_1_(m)________________________________________ (dx_tf_wp_primary_toroidal)____ 1.19794779500272841e+00 OP +Winding_pack_toroidal_width_2_(m)________________________________________ (dx_tf_wp_secondary_toroidal)__ 1.08343711756959893e+00 OP Ground_wall_insulation_thickness_(m)_____________________________________ (dx_tf_wp_insulation)__________ 8.00000000000000017e-03 -Ground_wall_insulation_area_(m^2)________________________________________ (a_tf_wp_ground_insulation)____ 2.65662460833074876e-02 Winding_pack_insertion_gap_(m)___________________________________________ (dx_tf_wp_insertion_gap)_______ 1.00000000000000002e-02 -Steel_WP_cross-section_(total)_(m2)______________________________________ (a_tf_wp_steel*n_tf_coils)_____ 4.22847875969124232e+00 -Steel_WP_fraction________________________________________________________ (a_tf_wp_steel/a_tf_wp_with_insulation)_ 4.02237870143473064e-01 -Insulation_WP_fraction___________________________________________________ (a_tf_coil_wp_turn_insulation/a_tf_wp_with_insulation)_ 4.56998775039485286e-02 -Cable_WP_fraction________________________________________________________ ((a_tf_wp_with_insulation-a_tf_wp_steel-a_tf_coil_wp_turn_insulation)/a_tf_wp_with_insulation)_ 5.52062252352578442e-01 +Steel_WP_cross-section_(total)_(m²)______________________________________ (a_tf_wp_steel*n_tf_coils)_____ 4.24135244393510735e+00 +Steel_WP_fraction________________________________________________________ (a_tf_wp_steel/a_tf_wp_with_insulation)_ 4.03674775822156606e-01 +Insulation_WP_fraction___________________________________________________ (a_tf_coil_wp_turn_insulation/a_tf_wp_with_insulation)_ 4.54985034228082980e-02 +Cable_WP_fraction________________________________________________________ ((a_tf_wp_with_insulation-a_tf_wp_steel-a_tf_coil_wp_turn_insulation)/a_tf_wp_with_insulation)_ 5.50826720755035026e-01 Turn_parameterisation____________________________________________________ (i_tf_turns_integer)___________ 0 -Number_of_turns_per_TF_coil______________________________________________ (n_tf_coil_turns)______________ 1.51426729546786191e+02 OP -Width_of_turn_including_inter-turn_insulation_(m)________________________ (dx_tf_turn_general)___________ 6.27646112297998576e-02 OP -Width_of_conductor_(square)_(m)__________________________________________ (t_conductor)__________________ 6.11646112297998604e-02 OP -Width_of_space_inside_conductor_(m)______________________________________ (dx_tf_turn_cable_space_average)_ 4.50253976149217194e-02 OP -Radius_of_turn_cable_space_rounded_corners_(m)___________________________ (radius_tf_turn_cable_space_corners)_ 6.05220510557930198e-03 -Steel_conduit_thickness_(m)______________________________________________ (dx_tf_turn_steel)_____________ 8.06960680743906873e-03 -Inter-turn_insulation_thickness_(m)______________________________________ (dx_tf_turn_insulation)________ 8.00000000000000038e-04 -TF_coil_turn_area_(m²)___________________________________________________ (a_tf_turn)____________________ 3.93939642205350278e-03 -Diameter_of_central_helium_channel_in_cable______________________________ (dia_tf_turn_coolant_channel)__ 1.00000000000000002e-02 +Number_of_turns_per_TF_coil______________________________________________ (n_tf_coil_turns)______________ 1.50007023888258516e+02 OP +Width_of_turn_including_inter-turn_insulation_(m)________________________ (dx_tf_turn_general)___________ 6.30426831197017923e-02 OP +Width_of_conductor_(square)_(m)__________________________________________ (t_conductor)__________________ 6.14426831197017950e-02 OP +Width_of_space_inside_conductor_(m)______________________________________ (dx_tf_turn_cable_space_average)_ 4.51667320267202035e-02 OP +Radius_of_turn_cable_space_rounded_corners_(m)___________________________ (radius_tf_turn_cable_space_corners)_ 6.10348165986809681e-03 +Steel_conduit_thickness_(m)______________________________________________ (dx_tf_turn_steel)_____________ 8.13797554649079574e-03 +Inter-turn_insulation_thickness_(m)______________________________________ (dx_tf_turn_insulation)________ 8.00000000000000038e-04 +TF_coil_turn_area_(m²)___________________________________________________ (a_tf_turn)____________________ 3.97437989493113365e-03 +Superconductor_mass_per_coil_(kg)________________________________________ (m_tf_coil_superconductor)_____ 3.08173337256678542e+03 OP +Copper_mass_per_coil_(kg)________________________________________________ (m_tf_coil_copper)_____________ 7.51486424735534820e+04 OP +Steel_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_wp_steel_conduit)________ 9.88113854730759340e+04 OP +Conduit_insulation_mass_per_coil_(kg)____________________________________ (m_tf_coil_wp_turn_insulation)_ 2.57010218055405585e+03 OP +Total_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_coil_conductor)__________ 1.79611863499750267e+05 OP +Mass_of_each_TF_coil_(kg)________________________________________________ (m_tf_coils_total/n_tf_coils)__ 6.02773924788473290e+05 OP +Total_TF_coil_mass_(kg)__________________________________________________ (m_tf_coils_total)_____________ 9.64438279661557265e+06 OP +# TF CICC Cable Space Information # +Diameter_of_central_helium_channel_in_turn_______________________________ (dia_tf_turn_coolant_channel)__ 1.00000000000000002e-02 Diameter_of_superconducting_cable________________________________________ (dia_tf_turn_superconducting_cable)_ 7.29999999999999963e-04 -Number_of_superconducting_cables_per_turn________________________________ (n_tf_turn_superconducting_cables)_ 3150 -Length_of_superconductor_in_TF_coil_(m)__________________________________ (len_tf_coil_superconductor)___ 2.28001962322467752e+07 -Total_length_of_superconductor_in_all_TF_coils_(m)_______________________ (len_tf_superconductor_total)__ 3.64803139715948403e+08 -internal_area_of_the_cable_space_________________________________________ (a_tf_turn_cable_space_no_void)_ 1.99584366747699183e-03 -True_area_of_turn_cable_space_with_gaps_and_channels_removed_____________ (a_tf_turn_cable_space_effective)_ 1.31855075089414952e-03 +Number_of_superconducting_cables_per_turn________________________________ (n_tf_turn_superconducting_cables)_ 3170 +Length_of_superconductor_in_TF_coil_(m)__________________________________ (len_tf_coil_superconductor)___ 2.27247368686695248e+07 +Total_length_of_superconductor_in_all_TF_coils_(m)_______________________ (len_tf_superconductor_total)__ 3.63595789898712397e+08 +internal_area_of_the_cable_space_________________________________________ (a_tf_turn_cable_space_no_void)_ 2.00805587228266962e-03 +True_area_of_turn_cable_space_with_gaps_and_channels_removed_____________ (a_tf_turn_cable_space_effective)_ 1.32709929425812393e-03 Coolant_fraction_in_conductor_excluding_central_channel__________________ (f_a_tf_turn_cable_space_extra_void)_ 2.99999999999999989e-01 -Area_of_steel_in_turn____________________________________________________ (a_tf_turn_steel)______________ 1.74526599941556742e-03 -Area_of_all_turn_insulation_in_WP________________________________________ (a_tf_coil_wp_turn_insulation)_ 3.00259149637333092e-02 -Total_insulation_area_in_TF_coil_(turn_and_WP)___________________________ (a_tf_coil_inboard_insulation)_ 5.65921610470407968e-02 -Total_steel_area_in_inboard_TF_coil_(turn_and_case)______________________ (a_tf_coil_inboard_steel)______ 6.85075052537005069e-01 -Total_conductor_area_in_WP_______________________________________________ (a_tf_wp_conductor)____________ 1.99663827949360217e-01 -Total_additional_void_area_in_WP_________________________________________ (a_tf_wp_extra_void)___________ 9.06672237758112953e-02 -Area_of_all_coolant_channels_in_WP_______________________________________ (a_tf_wp_coolant_channels)_____ 1.18930275275327992e-02 -Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.98638218006112544e-01 -Superconductor_fraction_of_conductor_____________________________________ (1-f_a_tf_turn_cable_copper)___ 1.01361781993887456e-01 +Area_of_steel_in_turn____________________________________________________ (a_tf_turn_steel)______________ 1.76714743666541840e-03 +Area_of_all_turn_insulation_in_WP________________________________________ (a_tf_coil_wp_turn_insulation)_ 2.98778868915405039e-02 +Total_insulation_area_in_TF_coil_(turn_and_WP)___________________________ (a_tf_coil_inboard_insulation)_ 5.64439110069935579e-02 +Total_steel_area_in_inboard_TF_coil_(turn_and_case)______________________ (a_tf_coil_inboard_steel)______ 6.81358026942176620e-01 +Total_conductor_area_in_WP_______________________________________________ (a_tf_wp_conductor)____________ 1.99074215535869403e-01 +Total_additional_void_area_in_WP_________________________________________ (a_tf_wp_extra_void)___________ 9.03667455607392589e-02 +Area_of_all_coolant_channels_in_WP_______________________________________ (a_tf_wp_coolant_channels)_____ 1.17815241058555394e-02 +Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.93824025763589325e-01 +Superconductor_fraction_of_conductor_____________________________________ (1-f_a_tf_turn_cable_copper)___ 1.06175974236410675e-01 Check_total_area_fractions_in_winding_pack_=_1___________________________ _______________________________ 1.00000000000000000e+00 ITV minimum_TF_conductor_temperature_margin__(K)_____________________________ (temp_tf_superconductor_margin_min)_ 1.50000000000000000e+00 -TF_conductor_temperature_margin_(K)______________________________________ (temp_tf_superconductor_margin)_ 1.50077341353807725e+00 +TF_conductor_temperature_margin_(K)______________________________________ (temp_tf_superconductor_margin)_ 1.72143554521994702e+00 Elastic_properties_behavior______________________________________________ (i_tf_cond_eyoung_axial)_______ 0 Conductor_axial_Youngs_modulus___________________________________________ (eyoung_cond_axial)____________ 0 Conductor_transverse_Youngs_modulus______________________________________ (eyoung_cond_trans)____________ 0 -Superconductor_mass_per_coil_(kg)________________________________________ (m_tf_coil_superconductor)_____ 2.77566245499418847e+03 OP -Copper_mass_per_coil_(kg)________________________________________________ (m_tf_coil_copper)_____________ 7.58179524175118131e+04 OP -Steel_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_wp_steel_conduit)________ 9.85335798921641690e+04 OP -Conduit_insulation_mass_per_coil_(kg)____________________________________ (m_tf_coil_wp_turn_insulation)_ 2.58341539747532761e+03 OP -Total_conduit_mass_per_coil_(kg)_________________________________________ (m_tf_coil_conductor)__________ 1.79710610162145487e+05 OP -Mass_of_each_TF_coil_(kg)________________________________________________ (m_tf_coils_total/n_tf_coils)__ 6.07494012953847297e+05 OP -Total_TF_coil_mass_(kg)__________________________________________________ (m_tf_coils_total)_____________ 9.71990420726155676e+06 OP -Nominal_peak_field_assuming_toroidal_symmetry_(T)________________________ (b_tf_inboard_peak_symmetric)__ 1.12975519374504714e+01 OP -Radius_of_maximum_field_position_on_inboard_TF_coil_(m)__________________ (r_b_tf_inboard_peak)__________ 3.53143431449535816e+00 OP -Total_current_in_all_TF_coils_(MA)_______________________________________ (c_tf_total/1.D6)______________ 1.99482812818986162e+02 OP -TF_coil_current_(summed_over_all_coils)_(A)______________________________ (c_tf_total)___________________ 1.99482812818986177e+08 -Actual_peak_field_at_discrete_conductor_(T)______________________________ (b_tf_inboard_peak_with_ripple)_ 1.17225220342146379e+01 OP -Ratio_of_peak_field_with_ripple_to_nominal_axisymmetric_peak_field_______ (f_b_tf_inboard_peak_ripple_symmetric)_ 1.03761612242342749e+00 OP -Winding_pack_current_density_(A/m2)______________________________________ (j_tf_wp)______________________ 2.09003361813226640e+07 OP -Inboard_leg_mid-plane_conductor_current_density_(A/m2)___________________ (oacdcp)_______________________ 1.15675031144713461e+07 -Self_inductance_of_a_TF_coil_(H)_________________________________________ (ind_tf_coil)__________________ 5.37482696649337082e-06 OP -Total_stored_energy_in_TF_coils_(GJ)_____________________________________ (e_tf_magnetic_stored_total_gj)_ 1.06941299844712447e+02 OP -Total_magnetic_energy_in_a_TF_coil_(J)___________________________________ (e_tf_coil_magnetic_stored)____ 6.68383124029452705e+09 OP -Inboard_vertical_tension_per_coil_(N)____________________________________ (vforce)_______________________ 1.85025548080386847e+08 OP -Outboard_vertical_tension_per_coil_(N)___________________________________ (vforce_outboard)______________ 1.85025548080386847e+08 OP -inboard_vertical_tension_fraction_(-)____________________________________ (f_vforce_inboard)_____________ 5.00000000000000000e-01 OP -Centring_force_per_coil_(N/m)____________________________________________ (cforce)_______________________ 7.04271074516002238e+07 OP -Max_allowed_tfcoil_variables.ripple_amplitude_at_plasma_outboard_midplane_(%)_ (ripple_b_tf_plasma_edge_max)__ 5.99999999999999978e-01 -Ripple_amplitude_at_plasma_outboard_midplane_(%)_________________________ (ripple_b_tf_plasma_edge)______ 5.99999999999999756e-01 OP -Actual_quench_time_(or_time_constant)_(s)________________________________ (t_tf_superconductor_quench)___ 1.92880295027100637e+01 -Vacuum_Vessel_stress_on_quench_(Pa)______________________________________ (vv_stress_quench)_____________ 4.71310501041747555e+07 OP -Maximum_allowed_voltage_during_quench_due_to_insulation_(kV)_____________ (v_tf_coil_dump_quench_max_kv)_ 1.00000000000000000e+01 -Actual_quench_voltage_(kV)_______________________________________________ (v_tf_coil_dump_quench_kv)_____ 8.41752959308131032e+00 OP -Maximum_allowed_temp_during_a_quench_(K)_________________________________ (temp_tf_conductor_quench_max)_ 1.50000000000000000e+02 # TF Coils Superconductor Information # TF_superconductor_switch_________________________________________________ (i_tf_sc_mat)__________________ 1 Critical_field_at_zero_temperature_and_strain_(T)________________________ (b_tf_superconductor_critical_zero_temp_strain)_ 3.29699999999999989e+01 Critical_temperature_at_zero_field_and_strain_(K)________________________ (temp_tf_superconductor_critical_zero_field_strain)_ 1.60599999999999987e+01 -Helium_temperature_at_peak_field_(=_superconductor_temperature)_(K)______ (tftmp)________________________ 4.75000000000000000e+00 -Total_cooling_area_fraction_inside_cable_space___________________________ (f_a_tf_turn_cable_space_cooling)_ 3.39351687519208078e-01 OP -Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.98638218006112544e-01 +TF_coil_temperature_at_peak_field_(K)____________________________________ (tftmp)________________________ 4.75000000000000000e+00 +Total_cooling_area_fraction_inside_cable_space___________________________ (f_a_tf_turn_cable_space_cooling)_ 3.39112366057058079e-01 OP +Copper_fraction_of_conductor_____________________________________________ (f_a_tf_turn_cable_copper)_____ 8.93824025763589325e-01 Residual_manufacturing_strain_on_superconductor__________________________ (str_tf_con_res)_______________ -5.00000000000000010e-03 -Self-consistent_strain_on_superconductor_________________________________ (str_wp)_______________________ 2.12815998633275995e-03 -Critical_current_density_in_superconductor_(A/m2)________________________ (j_tf_superconductor_critical)_ 8.33853728798431516e+08 OP -Critical_current_density_in_winding_pack_(A/m2)__________________________ (j_tf_wp_critical)_____________ 2.82898911488908753e+07 OP -Actual_current_density_in_winding_pack_(A/m2)____________________________ (j_tf_coil_turn)_______________ 2.09003361813226603e+07 OP +Self-consistent_strain_on_superconductor_________________________________ (str_wp)_______________________ 2.12504421887535965e-03 +Critical_current_density_in_superconductor_(A/m²)________________________ (j_tf_superconductor_critical)_ 8.40021427068695188e+08 OP +Current_density_in_superconductor_(A/m²)_________________________________ (j_tf_superconductor)__________ 5.87947046422903180e+08 OP +Critical_current_density_in_winding_pack_(A/m²)__________________________ (j_tf_wp_critical)_____________ 2.97817805879345126e+07 OP +Winding_pack_current_density_(A/m²)______________________________________ (j_tf_wp)______________________ 2.08448372501563653e+07 OP +Current_density_in_TF_coil_turn_(A/m²)___________________________________ (j_tf_coil_turn)_______________ 2.08448372501563653e+07 OP +Critical_current_(A)_____________________________________________________ (c_turn_cables_critical)_______ 1.18364110003937240e+05 OP +Actual_current_(A)_______________________________________________________ (c_tf_turn)____________________ 8.28453020801330422e+04 OP +Actual_current_/_critical_current________________________________________ (f_c_tf_turn_operating_critical)_ 6.99919106200158958e-01 OP Minimum_allowed_temperature_margin_in_superconductor_(K)_________________ (temp_tf_superconductor_margin_min)_ 1.50000000000000000e+00 -Actual_temperature_margin_in_superconductor_(K)__________________________ (temp_tf_superconductor_margin)_ 1.50077341353807725e+00 OP -Critical_current_(A)_____________________________________________________ (c_turn_cables_critical)_______ 1.11445095994131945e+05 OP -Actual_current_(A)_______________________________________________________ (c_tf_turn)____________________ 8.23347095886034367e+04 OP -Actual_current_/_critical_current________________________________________ (f_c_tf_turn_operating_critical)_ 7.38791679024967674e-01 OP -TF_Superconductor_quench_dump_time_(s)___________________________________ (t_tf_superconductor_quench)___ 1.92880295027100637e+01 OP +Actual_temperature_margin_in_superconductor_(K)__________________________ (temp_tf_superconductor_margin)_ 1.72143554521994702e+00 OP +Maximum_allowed_temp_during_a_quench_(K)_________________________________ (temp_tf_conductor_quench_max)_ 1.50000000000000000e+02 +Actual_quench_time_(or_time_constant)_(s)________________________________ (t_tf_superconductor_quench)___ 1.91417901163518778e+01 TF_Superconductor_quench_detection_time_(s)______________________________ (t_tf_quench_detection)________ 3.00000000000000000e+00 OP -Maximum_winding_pack_current_density_for_protection_(A/m2)_______________ (j_tf_wp_quench_heat_max)______ 2.09012679095639810e+07 OP -Max_allowed_fast_neutron_fluence_on_TF_coil_(n/m²)_______________________ (nflutfmax)____________________ 1.00000000000000000e+22 OP +Vacuum_Vessel_stress_on_quench_(Pa)______________________________________ (vv_stress_quench)_____________ 4.71851145721091032e+07 OP +Maximum_allowed_voltage_during_quench_due_to_insulation_(kV)_____________ (v_tf_coil_dump_quench_max_kv)_ 1.00000000000000000e+01 +Actual_quench_voltage_(kV)_______________________________________________ (v_tf_coil_dump_quench_kv)_____ 8.36818226644945184e+00 OP +Maximum_winding_pack_current_density_for_protection_(A/m²)_______________ (j_tf_wp_quench_heat_max)______ 2.08453953790650927e+07 OP +Max_allowed_fast_neutron_fluence_on_TF_coil_(n/m²)_______________________ (nflutfmax)____________________ 1.00000000000000000e+22 OP Residual_resistivity_ratio_of_TF_coil_copper_____________________________ (rrr_tf_cu)____________________ 1.00000000000000000e+02 OP # TF coils # Allowable_maximum_shear_stress_in_TF_coil_case_(Tresca_criterion)_(Pa)___ (sig_tf_case_max)______________ 7.50000000000000000e+08 Allowable_maximum_shear_stress_in_TF_coil_conduit_(Tresca_criterion)_(Pa)_ (sig_tf_wp_max)________________ 7.50000000000000000e+08 -WP_transverse_modulus_(GPa)______________________________________________ (eyoung_wp_trans*1.0d-9)_______ 4.19393812951652052e+01 OP -WP_vertical_modulus_(GPa)________________________________________________ (eyoung_wp_axial*1.0d-9)_______ 1.16132774015869245e+02 OP -WP_transverse_Poissons_ratio_____________________________________________ (poisson_wp_trans)_____________ 3.03579431150730994e-01 OP -WP_vertical-transverse_Pois._rat.________________________________________ (poisson_wp_axial)_____________ 3.17099777596759447e-01 OP -Radial____stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_r_max(1))______________ -4.88486693097864648e-08 -toroidal__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_t_max(1))______________ -4.79902948623405159e+08 -Vertical__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_z_max(1))______________ 2.70080697574945629e+08 -Von-Mises_stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_vmises_max(1))_________ 6.57923207093723416e+08 -Maximum_shear_stress_for_the_Tresca_yield_criterion_1_(Pa)_______________ (s_shear_tf_peak(1))___________ 7.49983646198350787e+08 -Radial____stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_r_max(2))______________ -1.21273466372500449e+08 -toroidal__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_t_max(2))______________ -3.79038820354919553e+08 -Vertical__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_z_max(2))______________ 2.70080697574945629e+08 -Von-Mises_stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_vmises_max(2))_________ 5.64787641107752442e+08 -Maximum_shear_stress_for_the_Tresca_yield_criterion_2_(Pa)_______________ (s_shear_tf_peak(2))___________ 6.49119517929865122e+08 -Radial____stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_r_max(3))______________ 7.50347787839317694e+06 -toroidal__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_t_max(3))______________ -3.56975592067409277e+08 -Vertical__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_z_max(3))______________ 3.89408681164490938e+08 -Von-Mises_stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_vmises_max(3))_________ 6.46591129550219536e+08 -Maximum_shear_stress_for_the_Tresca_yield_criterion_3_(Pa)_______________ (s_shear_tf_peak(3))___________ 7.46384273231900215e+08 -Maximum_radial_deflection_at_midplane_(m)________________________________ (deflect)______________________ -6.34394009669564038e-03 OP -Vertical_strain_on_casing________________________________________________ (casestr)______________________ 1.31746681743875925e-03 OP -Radial_strain_on_insulator_______________________________________________ (insstrain)____________________ -6.05289909727182909e-03 OP +WP_transverse_modulus_(GPa)______________________________________________ (eyoung_wp_trans*1.0d-9)_______ 4.21314927829138881e+01 OP +WP_vertical_modulus_(GPa)________________________________________________ (eyoung_wp_axial*1.0d-9)_______ 1.16175385368933561e+02 OP +WP_transverse_Poissons_ratio_____________________________________________ (poisson_wp_trans)_____________ 3.03579218938118345e-01 OP +WP_vertical-transverse_Pois._rat.________________________________________ (poisson_wp_axial)_____________ 3.16986429520323132e-01 OP +Radial____stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_r_max(1))______________ 0.00000000000000000e+00 +toroidal__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_t_max(1))______________ -4.80247459142198741e+08 +Vertical__stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_z_max(1))______________ 2.69746952291114151e+08 +Von-Mises_stress_at_maximum_shear_of_layer_1_(Pa)________________________ (sig_tf_vmises_max(1))_________ 6.57986571847816586e+08 +Maximum_shear_stress_for_the_Tresca_yield_criterion_1_(Pa)_______________ (s_shear_tf_peak(1))___________ 7.49994411433312893e+08 +Radial____stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_r_max(2))______________ -1.19387410654447943e+08 +toroidal__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_t_max(2))______________ -3.79397441184721291e+08 +Vertical__stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_z_max(2))______________ 2.69746952291114151e+08 +Von-Mises_stress_at_maximum_shear_of_layer_2_(Pa)________________________ (sig_tf_vmises_max(2))_________ 5.64842579941070318e+08 +Maximum_shear_stress_for_the_Tresca_yield_criterion_2_(Pa)_______________ (s_shear_tf_peak(2))___________ 6.49144393475835443e+08 +Radial____stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_r_max(3))______________ 7.41464383239286579e+06 +toroidal__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_t_max(3))______________ -3.57603689039221227e+08 +Vertical__stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_z_max(3))______________ 3.91307569499765694e+08 +Von-Mises_stress_at_maximum_shear_of_layer_3_(Pa)________________________ (sig_tf_vmises_max(3))_________ 6.48795069929143071e+08 +Maximum_shear_stress_for_the_Tresca_yield_criterion_3_(Pa)_______________ (s_shear_tf_peak(3))___________ 7.48911258538986921e+08 +Maximum_radial_deflection_at_midplane_(m)________________________________ (deflect)______________________ -6.36031646318091764e-03 OP +Vertical_strain_on_casing________________________________________________ (casestr)______________________ 1.31583879166397152e-03 OP +Radial_strain_on_insulator_______________________________________________ (insstrain)____________________ -5.95874660166268322e-03 OP # Central Solenoid Structure # -Inner_radius_of_the_CS_coil_[m]__________________________________________ (r_cs_inner)___________________ 2.03182507743337215e+00 OP -Middle_radius_of_the_CS_coil_[m]_________________________________________ (r_cs_middle)__________________ 2.32592054373535229e+00 OP -Outer_radius_of_the_CS_coil_[m]__________________________________________ (r_cs_outer)___________________ 2.62001601003733198e+00 OP -Full_radial_extent_of_the_CS_coil_[m]____________________________________ (dr_cs_full)___________________ 5.24003202007466395e+00 OP -Radial_thickness_of_the_CS_coil_[m]______________________________________ (dr_cs)________________________ 5.88190932603959715e-01 OP -Radial_thickness_of_the_CS_bore_[m]______________________________________ (dr_bore)______________________ 2.03182507743337259e+00 OP -Vertical_top_of_the_CS_coil_[m]__________________________________________ (z_cs_upper)___________________ 7.93639544779460149e+00 OP +Inner_radius_of_the_CS_coil_[m]__________________________________________ (r_cs_inner)___________________ 2.08652517234514079e+00 OP +Middle_radius_of_the_CS_coil_[m]_________________________________________ (r_cs_middle)__________________ 2.35593251008337257e+00 OP +Outer_radius_of_the_CS_coil_[m]__________________________________________ (r_cs_outer)___________________ 2.62533984782160390e+00 OP +Full_radial_extent_of_the_CS_coil_[m]____________________________________ (dr_cs_full)___________________ 5.25067969564320780e+00 OP +Radial_thickness_of_the_CS_coil_[m]______________________________________ (dr_cs)________________________ 5.38814675476462890e-01 OP +Radial_thickness_of_the_CS_bore_[m]______________________________________ (dr_bore)______________________ 2.08652517234514123e+00 OP +Vertical_top_of_the_CS_coil_[m]__________________________________________ (z_cs_upper)___________________ 7.93639544781050876e+00 OP Vertical_middle_of_the_CS_coil_[m]_______________________________________ (z_cs_middle)__________________ 0.00000000000000000e+00 OP -Vertical_bottom_of_the_CS_coil_[m]_______________________________________ (z_cs_lower)___________________ -7.93639544779460149e+00 OP -Full_vertical_extent_of_the_CS_coil_[m]__________________________________ (dz_cs_full)___________________ 1.58727908955892030e+01 OP +Vertical_bottom_of_the_CS_coil_[m]_______________________________________ (z_cs_lower)___________________ -7.93639544781050876e+00 OP +Full_vertical_extent_of_the_CS_coil_[m]__________________________________ (dz_cs_full)___________________ 1.58727908956210175e+01 OP Central_solenoid_to_TF_coil_internal_edge_height_[m]_____________________ (f_z_cs_tf_internal)___________ 9.00000000000000022e-01 OP -CS_poloidal_cross-sectional_area_[m²]____________________________________ (a_cs_poloidal)________________ 9.33623167990425351e+00 OP -CS_total_top-down_toroidal_cross-sectional_area_[m²]_____________________ (a_cs_toroidal)________________ 8.59593391951690577e+00 OP -Poloidal_area_of_a_CS_turn_[m²]__________________________________________ (a_cs_turn)____________________ 2.28505516774733493e-03 OP -Radial_width_a_CS_turn_[m²]______________________________________________ (dz_cs_turn)___________________ 2.67985110701645865e-02 OP -Length_of_a_CS_turn_[m]__________________________________________________ (dr_cs_turn)___________________ 8.52679897687055044e-02 OP +CS_poloidal_cross-sectional_area_[m²]____________________________________ (a_cs_poloidal)________________ 8.55249267532979296e+00 OP +CS_total_top-down_toroidal_cross-sectional_area_[m²]_____________________ (a_cs_toroidal)________________ 7.97594461223908713e+00 OP +Poloidal_area_of_a_CS_turn_[m²]__________________________________________ (a_cs_turn)____________________ 2.16216216216216220e-03 OP +Vertical_thickness_of_a_CS_turn_[m]______________________________________ (dz_cs_turn)___________________ 2.60679243426990073e-02 OP +Length_of_a_CS_turn_[m]__________________________________________________ (dr_cs_turn)___________________ 8.29433956358604785e-02 OP Length_to_diameter_ratio_of_a_CS_turn____________________________________ (f_dr_dz_cs_turn)______________ 3.18181818181818166e+00 OP -Radius_of_CS_turn_cable_space_[m]________________________________________ (radius_cs_turn_cable_space)___ 5.21683703476241017e-03 OP -Radial_thickness_of_steel_conduit_to_cable_space_[m]_____________________ (dr_cs_turn_conduit)___________ 8.18241850031988308e-03 OP -Vertical_thickness_of_steel_conduit_to_cable_space_[m]___________________ (dz_cs_turn_conduit)___________ 8.18241850031988308e-03 OP +Radius_of_CS_turn_cable_space_[m]________________________________________ (radius_cs_turn_cable_space)___ 4.74456966068495870e-03 OP +Radial_thickness_of_steel_conduit_to_cable_space_[m]_____________________ (dr_cs_turn_conduit)___________ 8.28939251066454497e-03 OP +Vertical_thickness_of_steel_conduit_to_cable_space_[m]___________________ (dz_cs_turn_conduit)___________ 8.28939251066454497e-03 OP Corner_radius_of_CS_turn_[m]_____________________________________________ (radius_cs_turn_corners)_______ 3.00000000000000006e-03 OP -CS_conductor+void_cross-sectional_area_[m²]______________________________ (a_cs_cable_space)_____________ 2.87343402986536400e+00 OP -CS_conductor_cross-sectional_area_[m²]___________________________________ (a_cs_cable_space*(1-f_a_cs_void))_ 2.01140382090575454e+00 OP -CS_void_cross-sectional_area_[m²]________________________________________ (a_cs_cable_space*f_a_cs_void)_ 8.62030208959609134e-01 OP -CS_steel_cross-sectional_area_[m²]_______________________________________ (a_cs_steel_poloidal)__________ 6.46279765003888951e+00 OP -CS_steel_area_fraction___________________________________________________ (f_a_cs_turn_steel)____________ 6.92227642973955004e-01 +CS_conductor+void_cross-sectional_area_[m²]______________________________ (a_cs_cable_space)_____________ 2.44509034358609778e+00 OP +CS_conductor_cross-sectional_area_[m²]___________________________________ (a_cs_cable_space*(1-f_a_cs_void))_ 1.71156324051026831e+00 OP +CS_void_cross-sectional_area_[m²]________________________________________ (a_cs_cable_space*f_a_cs_void)_ 7.33527103075829356e-01 OP +CS_steel_cross-sectional_area_[m²]_______________________________________ (a_cs_steel_poloidal)__________ 6.10740233174369518e+00 OP +CS_steel_area_fraction___________________________________________________ (f_a_cs_turn_steel)____________ 7.14107870487967089e-01 Copper_fraction_in_strand________________________________________________ (fcuohsu)______________________ 6.99999999999999956e-01 +Void_(coolant)_fraction_in_conductor_____________________________________ (f_a_cs_void)__________________ 2.99999999999999989e-01 # Central Solenoid and PF Coils # Existence_of_central_solenoid____________________________________________ (iohcl)________________________ 1 Central_solenoid_superconductor_material_________________________________ (i_cs_superconductor)__________ 1 CS_superconductor_operating_temperature_(K)______________________________ (temp_cs_superconductor_operating)_ 4.75000000000000000e+00 -CS_temperature_margin_(K)________________________________________________ (temp_cs_superconductor_margin)_ 1.50018677167698833e+00 OP +CS_temperature_margin_(K)________________________________________________ (temp_cs_superconductor_margin)_ 1.50009062197419230e+00 OP Minimum_permitted_temperature_margin_(K)_________________________________ (temp_cs_superconductor_margin_min)_ 1.50000000000000000e+00 -Maximum_field_at_Beginning_Of_Pulse_(T)__________________________________ (b_cs_peak_pulse_start)________ 1.31292885651719349e+01 OP -Critical_superconductor_current_density_at_BOP_[A/m²]____________________ (j_cs_conductor_critical_pulse_start)_ 4.38444945216117263e+08 OP -Critical_cable_current_density_at_BOP_[A/m²]_____________________________ (jcableoh_bop)_________________ 9.20734384953846335e+07 OP -Allowable_overall_current_density_at_BOP_[A/m²]__________________________ (j_cs_critical_pulse_start)____ 2.83376591852171198e+07 OP -Actual_overall_current_density_at_BOP_[A/m²]_____________________________ (j_cs_pulse_start)_____________ 1.75050478275467679e+07 OP -Maximum_field_at_End_Of_Flattop_[T]______________________________________ (b_cs_peak_flat_top_end)_______ 1.21211197783461699e+01 OP -Critical_superconductor_current_density_at_EOF_[A/m²]____________________ (j_cs_conductor_critical_flat_top_end)_ 5.52381988632393003e+08 OP -Critical_cable_current_density_at_EOF_[A/m²]_____________________________ (jcableoh_eof)_________________ 1.16000217612802535e+08 OP -Allowable_overall_current_density_at_EOF_[A/m²]__________________________ (j_cs_critical_flat_top_end)___ 3.57016603902263790e+07 OP -Actual_overall_current_density_at_EOF_[A/m²]_____________________________ (j_cs_flat_top_end)____________ 1.75050478275467679e+07 -Radial_position_of_CS_filament_0_________________________________________ r_pf_cs_current_filaments0_____ 5.56666666676678723e+00 -Radial_position_of_CS_filament_1_________________________________________ r_pf_cs_current_filaments1_____ 5.56666666676678723e+00 -Radial_position_of_CS_filament_2_________________________________________ r_pf_cs_current_filaments2_____ 1.67017848325699063e+01 -Radial_position_of_CS_filament_3_________________________________________ r_pf_cs_current_filaments3_____ 1.67017848325699063e+01 -Radial_position_of_CS_filament_4_________________________________________ r_pf_cs_current_filaments4_____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_5_________________________________________ r_pf_cs_current_filaments5_____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_6_________________________________________ r_pf_cs_current_filaments6_____ 8.00000000014388490e+00 -Radial_position_of_CS_filament_7_________________________________________ r_pf_cs_current_filaments7_____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_8_________________________________________ r_pf_cs_current_filaments8_____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_9_________________________________________ r_pf_cs_current_filaments9_____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_10________________________________________ r_pf_cs_current_filaments10____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_11________________________________________ r_pf_cs_current_filaments11____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_12________________________________________ r_pf_cs_current_filaments12____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_13________________________________________ r_pf_cs_current_filaments13____ 2.32592054373535229e+00 -Radial_position_of_CS_filament_14________________________________________ r_pf_cs_current_filaments14____ 5.56666666676678723e+00 -Radial_position_of_CS_filament_15________________________________________ r_pf_cs_current_filaments15____ 5.56666666676678723e+00 -Radial_position_of_CS_filament_16________________________________________ r_pf_cs_current_filaments16____ 1.67017848325699063e+01 -Radial_position_of_CS_filament_17________________________________________ r_pf_cs_current_filaments17____ 1.67017848325699063e+01 -Radial_position_of_CS_filament_18________________________________________ r_pf_cs_current_filaments18____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_19________________________________________ r_pf_cs_current_filaments19____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_20________________________________________ r_pf_cs_current_filaments20____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_21________________________________________ r_pf_cs_current_filaments21____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_22________________________________________ r_pf_cs_current_filaments22____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_23________________________________________ r_pf_cs_current_filaments23____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_24________________________________________ r_pf_cs_current_filaments24____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_25________________________________________ r_pf_cs_current_filaments25____ 1.51759552118379872e+01 -Radial_position_of_CS_filament_26________________________________________ r_pf_cs_current_filaments26____ 8.00000000014388490e+00 +Maximum_field_at_Beginning_Of_Pulse_(T)__________________________________ (b_cs_peak_pulse_start)________ 1.26983042165941864e+01 OP +Critical_superconductor_current_density_at_BOP_[A/m²]____________________ (j_cs_conductor_critical_pulse_start)_ 4.84963811461851120e+08 OP +Critical_cable_current_density_at_BOP_[A/m²]_____________________________ (jcableoh_bop)_________________ 1.01842400406988740e+08 OP +Allowable_overall_current_density_at_BOP_[A/m²]__________________________ (j_cs_critical_pulse_start)____ 2.91159407269711383e+07 OP +Actual_overall_current_density_at_BOP_[A/m²]_____________________________ (j_cs_pulse_start)_____________ 1.85000000000000000e+07 OP +Maximum_field_at_End_Of_Flattop_[T]______________________________________ (b_cs_peak_flat_top_end)_______ 1.17080973809103970e+01 OP +Critical_superconductor_current_density_at_EOF_[A/m²]____________________ (j_cs_conductor_critical_flat_top_end)_ 6.04451097677709460e+08 OP +Critical_cable_current_density_at_EOF_[A/m²]_____________________________ (jcableoh_eof)_________________ 1.26934730512318999e+08 OP +Allowable_overall_current_density_at_EOF_[A/m²]__________________________ (j_cs_critical_flat_top_end)___ 3.62896404152029008e+07 OP +Actual_overall_current_density_at_EOF_[A/m²]_____________________________ (j_cs_flat_top_end)____________ 1.85000000000000000e+07 +Radial_position_of_CS_filament_0_________________________________________ r_pf_cs_current_filaments0_____ 5.56666666678673039e+00 +Radial_position_of_CS_filament_1_________________________________________ r_pf_cs_current_filaments1_____ 5.56666666678673039e+00 +Radial_position_of_CS_filament_2_________________________________________ r_pf_cs_current_filaments2_____ 1.66994661952565266e+01 +Radial_position_of_CS_filament_3_________________________________________ r_pf_cs_current_filaments3_____ 1.66994661952565266e+01 +Radial_position_of_CS_filament_4_________________________________________ r_pf_cs_current_filaments4_____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_5_________________________________________ r_pf_cs_current_filaments5_____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_6_________________________________________ r_pf_cs_current_filaments6_____ 8.00000000017254642e+00 +Radial_position_of_CS_filament_7_________________________________________ r_pf_cs_current_filaments7_____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_8_________________________________________ r_pf_cs_current_filaments8_____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_9_________________________________________ r_pf_cs_current_filaments9_____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_10________________________________________ r_pf_cs_current_filaments10____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_11________________________________________ r_pf_cs_current_filaments11____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_12________________________________________ r_pf_cs_current_filaments12____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_13________________________________________ r_pf_cs_current_filaments13____ 2.35593251008337257e+00 +Radial_position_of_CS_filament_14________________________________________ r_pf_cs_current_filaments14____ 5.56666666678673039e+00 +Radial_position_of_CS_filament_15________________________________________ r_pf_cs_current_filaments15____ 5.56666666678673039e+00 +Radial_position_of_CS_filament_16________________________________________ r_pf_cs_current_filaments16____ 1.66994661952565266e+01 +Radial_position_of_CS_filament_17________________________________________ r_pf_cs_current_filaments17____ 1.66994661952565266e+01 +Radial_position_of_CS_filament_18________________________________________ r_pf_cs_current_filaments18____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_19________________________________________ r_pf_cs_current_filaments19____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_20________________________________________ r_pf_cs_current_filaments20____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_21________________________________________ r_pf_cs_current_filaments21____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_22________________________________________ r_pf_cs_current_filaments22____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_23________________________________________ r_pf_cs_current_filaments23____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_24________________________________________ r_pf_cs_current_filaments24____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_25________________________________________ r_pf_cs_current_filaments25____ 1.51734034153322810e+01 +Radial_position_of_CS_filament_26________________________________________ r_pf_cs_current_filaments26____ 8.00000000017254642e+00 Radial_position_of_CS_filament_27________________________________________ r_pf_cs_current_filaments27____ 0.00000000000000000e+00 Radial_position_of_CS_filament_28________________________________________ r_pf_cs_current_filaments28____ 0.00000000000000000e+00 Radial_position_of_CS_filament_29________________________________________ r_pf_cs_current_filaments29____ 0.00000000000000000e+00 @@ -35253,32 +35257,32 @@ Radial_position_of_CS_filament_60________________________________________ r_pf_c Radial_position_of_CS_filament_61________________________________________ r_pf_cs_current_filaments61____ 0.00000000000000000e+00 Radial_position_of_CS_filament_62________________________________________ r_pf_cs_current_filaments62____ 0.00000000000000000e+00 Radial_position_of_CS_filament_63________________________________________ r_pf_cs_current_filaments63____ 0.00000000000000000e+00 -Vertical_position_of_CS_filament_0_______________________________________ z_pf_cs_current_filaments0_____ 9.30312475039922937e+00 -Vertical_position_of_CS_filament_1_______________________________________ z_pf_cs_current_filaments1_____ -1.05370085811933905e+01 -Vertical_position_of_CS_filament_2_______________________________________ z_pf_cs_current_filaments2_____ 2.66666666671462815e+00 -Vertical_position_of_CS_filament_3_______________________________________ z_pf_cs_current_filaments3_____ -2.66666666671462815e+00 -Vertical_position_of_CS_filament_4_______________________________________ z_pf_cs_current_filaments4_____ 7.46666666680095847e+00 -Vertical_position_of_CS_filament_5_______________________________________ z_pf_cs_current_filaments5_____ -7.46666666680095847e+00 +Vertical_position_of_CS_filament_0_______________________________________ z_pf_cs_current_filaments0_____ 9.29864837888136897e+00 +Vertical_position_of_CS_filament_1_______________________________________ z_pf_cs_current_filaments1_____ -1.05325322096755301e+01 +Vertical_position_of_CS_filament_2_______________________________________ z_pf_cs_current_filaments2_____ 2.66666666672418229e+00 +Vertical_position_of_CS_filament_3_______________________________________ z_pf_cs_current_filaments3_____ -2.66666666672418229e+00 +Vertical_position_of_CS_filament_4_______________________________________ z_pf_cs_current_filaments4_____ 7.46666666682770952e+00 +Vertical_position_of_CS_filament_5_______________________________________ z_pf_cs_current_filaments5_____ -7.46666666682770952e+00 Vertical_position_of_CS_filament_6_______________________________________ z_pf_cs_current_filaments6_____ 0.00000000000000000e+00 -Vertical_position_of_CS_filament_7_______________________________________ z_pf_cs_current_filaments7_____ -5.66885389128185868e-01 -Vertical_position_of_CS_filament_8_______________________________________ z_pf_cs_current_filaments8_____ -1.70065616738455772e+00 -Vertical_position_of_CS_filament_9_______________________________________ z_pf_cs_current_filaments9_____ -2.83442694564092923e+00 -Vertical_position_of_CS_filament_10______________________________________ z_pf_cs_current_filaments10____ -3.96819772389730119e+00 -Vertical_position_of_CS_filament_11______________________________________ z_pf_cs_current_filaments11____ -5.10196850215367270e+00 -Vertical_position_of_CS_filament_12______________________________________ z_pf_cs_current_filaments12____ -6.23573928041004422e+00 -Vertical_position_of_CS_filament_13______________________________________ z_pf_cs_current_filaments13____ -7.36951005866641662e+00 -Vertical_position_of_CS_filament_14______________________________________ z_pf_cs_current_filaments14____ 9.30312475039922937e+00 -Vertical_position_of_CS_filament_15______________________________________ z_pf_cs_current_filaments15____ -1.05370085811933905e+01 -Vertical_position_of_CS_filament_16______________________________________ z_pf_cs_current_filaments16____ 2.66666666671462815e+00 -Vertical_position_of_CS_filament_17______________________________________ z_pf_cs_current_filaments17____ -2.66666666671462815e+00 -Vertical_position_of_CS_filament_18______________________________________ z_pf_cs_current_filaments18____ 7.56643477248583629e+00 -Vertical_position_of_CS_filament_19______________________________________ z_pf_cs_current_filaments19____ 7.76597098385559015e+00 -Vertical_position_of_CS_filament_20______________________________________ z_pf_cs_current_filaments20____ 7.36689856111608066e+00 -Vertical_position_of_CS_filament_21______________________________________ z_pf_cs_current_filaments21____ 7.16736234974632680e+00 -Vertical_position_of_CS_filament_22______________________________________ z_pf_cs_current_filaments22____ -7.56643477248583629e+00 -Vertical_position_of_CS_filament_23______________________________________ z_pf_cs_current_filaments23____ -7.76597098385559015e+00 -Vertical_position_of_CS_filament_24______________________________________ z_pf_cs_current_filaments24____ -7.36689856111608066e+00 -Vertical_position_of_CS_filament_25______________________________________ z_pf_cs_current_filaments25____ -7.16736234974632680e+00 +Vertical_position_of_CS_filament_7_______________________________________ z_pf_cs_current_filaments7_____ -5.66885389129322070e-01 +Vertical_position_of_CS_filament_8_______________________________________ z_pf_cs_current_filaments8_____ -1.70065616738796610e+00 +Vertical_position_of_CS_filament_9_______________________________________ z_pf_cs_current_filaments9_____ -2.83442694564661046e+00 +Vertical_position_of_CS_filament_10______________________________________ z_pf_cs_current_filaments10____ -3.96819772390525438e+00 +Vertical_position_of_CS_filament_11______________________________________ z_pf_cs_current_filaments11____ -5.10196850216389830e+00 +Vertical_position_of_CS_filament_12______________________________________ z_pf_cs_current_filaments12____ -6.23573928042254266e+00 +Vertical_position_of_CS_filament_13______________________________________ z_pf_cs_current_filaments13____ -7.36951005868118703e+00 +Vertical_position_of_CS_filament_14______________________________________ z_pf_cs_current_filaments14____ 9.29864837888136897e+00 +Vertical_position_of_CS_filament_15______________________________________ z_pf_cs_current_filaments15____ -1.05325322096755301e+01 +Vertical_position_of_CS_filament_16______________________________________ z_pf_cs_current_filaments16____ 2.66666666672418229e+00 +Vertical_position_of_CS_filament_17______________________________________ z_pf_cs_current_filaments17____ -2.66666666672418229e+00 +Vertical_position_of_CS_filament_18______________________________________ z_pf_cs_current_filaments18____ 7.56585560429756487e+00 +Vertical_position_of_CS_filament_19______________________________________ z_pf_cs_current_filaments19____ 7.76423347923727558e+00 +Vertical_position_of_CS_filament_20______________________________________ z_pf_cs_current_filaments20____ 7.36747772935785417e+00 +Vertical_position_of_CS_filament_21______________________________________ z_pf_cs_current_filaments21____ 7.16909985441814346e+00 +Vertical_position_of_CS_filament_22______________________________________ z_pf_cs_current_filaments22____ -7.56585560429756487e+00 +Vertical_position_of_CS_filament_23______________________________________ z_pf_cs_current_filaments23____ -7.76423347923727558e+00 +Vertical_position_of_CS_filament_24______________________________________ z_pf_cs_current_filaments24____ -7.36747772935785417e+00 +Vertical_position_of_CS_filament_25______________________________________ z_pf_cs_current_filaments25____ -7.16909985441814346e+00 Vertical_position_of_CS_filament_26______________________________________ z_pf_cs_current_filaments26____ 0.00000000000000000e+00 Vertical_position_of_CS_filament_27______________________________________ z_pf_cs_current_filaments27____ 0.00000000000000000e+00 Vertical_position_of_CS_filament_28______________________________________ z_pf_cs_current_filaments28____ 0.00000000000000000e+00 @@ -35319,134 +35323,134 @@ Vertical_position_of_CS_filament_62______________________________________ z_pf_c Vertical_position_of_CS_filament_63______________________________________ z_pf_cs_current_filaments63____ 0.00000000000000000e+00 Switch_for_CS_stress_calculation_________________________________________ (i_cs_stress)__________________ 1 Allowable_stress_in_CS_steel_(Pa)________________________________________ (alstroh)______________________ 7.50000000000000000e+08 -Hoop_stress_in_CS_steel_(Pa)_____________________________________________ (stress_hoop_cs_inner)_________ 4.42927698215112865e+08 OP -Axial_stress_in_CS_steel_(Pa)____________________________________________ (stress_z_cs_self_peak_midplane)_ -3.07058647601545453e+08 OP -Maximum_shear_stress_in_CS_steel_for_the_Tresca_criterion_(Pa)___________ (s_shear_cs_peak)______________ 7.49986345816658258e+08 OP -Axial_force_in_CS_(N)____________________________________________________ (forc_z_cs_self_peak_midplane)_ -1.31972792209955645e+09 OP +Hoop_stress_in_CS_steel_(Pa)_____________________________________________ (stress_hoop_cs_inner)_________ 4.38665551258243442e+08 OP +Axial_stress_in_CS_steel_(Pa)____________________________________________ (stress_z_cs_self_peak_midplane)_ -3.11329621661900461e+08 OP +Maximum_shear_stress_in_CS_steel_for_the_Tresca_criterion_(Pa)___________ (s_shear_cs_peak)______________ 7.49995172920143843e+08 OP +Axial_force_in_CS_(N)____________________________________________________ (forc_z_cs_self_peak_midplane)_ -1.24157390926233411e+09 OP Residual_manufacturing_strain_in_CS_superconductor_material______________ (str_cs_con_res)_______________ -5.00000000000000010e-03 Residual_hoop_stress_in_CS_Steel_(Pa)____________________________________ (residual_sig_hoop)____________ 2.40000000000000000e+08 Minimum_burn_time_(s)____________________________________________________ (t_burn_min)___________________ 7.20000000000000000e+03 Initial_vertical_crack_size_(m)__________________________________________ (t_crack_vertical)_____________ 8.89999999999999949e-04 Initial_radial_crack_size_(m)____________________________________________ (t_crack_radial)_______________ 2.66999999999999963e-03 -Allowable_number_of_cycles_till_CS_fracture______________________________ (n_cycle)______________________ 5.52784302850028507e+03 OP +Allowable_number_of_cycles_till_CS_fracture______________________________ (n_cycle)______________________ 5.70862138266636248e+03 OP Minimum_number_of_cycles_required_till_CS_fracture_______________________ (n_cycle_min)__________________ 2.00000000000000000e+04 OP PF_coil_superconductor_material__________________________________________ (i_pf_superconductor)__________ 3 Copper_fraction_in_conductor_____________________________________________ (fcupfsu)______________________ 6.89999999999999947e-01 Maximum_permissible_tensile_stress_(MPa)_________________________________ (sigpfcalw)____________________ 5.00000000000000000e+02 JxB_hoop_force_fraction_supported_by_case________________________________ (sigpfcf)______________________ 1.00000000000000000e+00 -PF_coil_0_radius_(m)_____________________________________________________ (r_pf_coil_middle[0])__________ 5.56666666676678723e+00 -PF_coil_0_vertical_position_(m)__________________________________________ (z_pf_coil_middle[0])__________ 9.30312475039922937e+00 -PF_coil_0_radial_thickness_(m)___________________________________________ (pfdr(0))______________________ 1.30908197617268662e+00 -PF_coil_0_vertical_thickness_(m)_________________________________________ (pfdz(0))______________________ 1.30908197617268840e+00 -PF_coil_0_turns__________________________________________________________ (n_pf_coil_turns[0])___________ 4.71266295593551661e+02 -PF_coil_0_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[0])_____ 1.88506518237420657e+01 -PF_coil_0_field_(T)______________________________________________________ (b_pf_coil_peak[0])____________ 6.78085264464318094e+00 -PF_coil_1_radius_(m)_____________________________________________________ (r_pf_coil_middle[1])__________ 5.56666666676678723e+00 -PF_coil_1_vertical_position_(m)__________________________________________ (z_pf_coil_middle[1])__________ -1.05370085811933905e+01 -PF_coil_1_radial_thickness_(m)___________________________________________ (pfdr(1))______________________ 1.41073638902052423e+00 -PF_coil_1_vertical_thickness_(m)_________________________________________ (pfdz(1))______________________ -1.41073638902052423e+00 -PF_coil_1_turns__________________________________________________________ (n_pf_coil_turns[1])___________ 5.47298718809334105e+02 -PF_coil_1_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[1])_____ 2.18919487523733629e+01 -PF_coil_1_field_(T)______________________________________________________ (b_pf_coil_peak[1])____________ 7.29108673095108184e+00 -PF_coil_2_radius_(m)_____________________________________________________ (r_pf_coil_middle[2])__________ 1.67017848325699063e+01 -PF_coil_2_vertical_position_(m)__________________________________________ (z_pf_coil_middle[2])__________ 2.66666666671462815e+00 -PF_coil_2_radial_thickness_(m)___________________________________________ (pfdr(2))______________________ 1.11226157090834477e+00 -PF_coil_2_vertical_thickness_(m)_________________________________________ (pfdz(2))______________________ 1.11226157090834565e+00 -PF_coil_2_turns__________________________________________________________ (n_pf_coil_turns[2])___________ 1.85568870317925160e+02 -PF_coil_2_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[2])_____ -7.42275481271700688e+00 -PF_coil_2_field_(T)______________________________________________________ (b_pf_coil_peak[2])____________ 2.58890500480423391e+00 -PF_coil_3_radius_(m)_____________________________________________________ (r_pf_coil_middle[3])__________ 1.67017848325699063e+01 -PF_coil_3_vertical_position_(m)__________________________________________ (z_pf_coil_middle[3])__________ -2.66666666671462815e+00 -PF_coil_3_radial_thickness_(m)___________________________________________ (pfdr(3))______________________ 1.11226157090834477e+00 -PF_coil_3_vertical_thickness_(m)_________________________________________ (pfdz(3))______________________ -1.11226157090834565e+00 -PF_coil_3_turns__________________________________________________________ (n_pf_coil_turns[3])___________ 1.85568870317925160e+02 -PF_coil_3_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[3])_____ -7.42275481271700688e+00 -PF_coil_3_field_(T)______________________________________________________ (b_pf_coil_peak[3])____________ 2.58890500480423391e+00 -PF_coil_4_radius_(m)_____________________________________________________ (r_pf_coil_middle[4])__________ 1.51759552118379872e+01 -PF_coil_4_vertical_position_(m)__________________________________________ (z_pf_coil_middle[4])__________ 7.46666666680095847e+00 -PF_coil_4_radial_thickness_(m)___________________________________________ (pfdr(4))______________________ 7.98144845479018983e-01 -PF_coil_4_vertical_thickness_(m)_________________________________________ (pfdz(4))______________________ 7.98144845479018983e-01 -PF_coil_4_turns__________________________________________________________ (n_pf_coil_turns[4])___________ 1.27407038872945350e+02 -PF_coil_4_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[4])_____ -5.09628155491781420e+00 -PF_coil_4_field_(T)______________________________________________________ (b_pf_coil_peak[4])____________ 2.53958011141786466e+00 -PF_coil_5_radius_(m)_____________________________________________________ (r_pf_coil_middle[5])__________ 1.51759552118379872e+01 -PF_coil_5_vertical_position_(m)__________________________________________ (z_pf_coil_middle[5])__________ -7.46666666680095847e+00 -PF_coil_5_radial_thickness_(m)___________________________________________ (pfdr(5))______________________ 7.98144845479018983e-01 -PF_coil_5_vertical_thickness_(m)_________________________________________ (pfdz(5))______________________ -7.98144845479018983e-01 -PF_coil_5_turns__________________________________________________________ (n_pf_coil_turns[5])___________ 1.27407038872945350e+02 -PF_coil_5_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[5])_____ -5.09628155491781420e+00 -PF_coil_5_field_(T)______________________________________________________ (b_pf_coil_peak[5])____________ 2.53958011141786466e+00 +PF_coil_0_radius_(m)_____________________________________________________ (r_pf_coil_middle[0])__________ 5.56666666678673039e+00 +PF_coil_0_vertical_position_(m)__________________________________________ (z_pf_coil_middle[0])__________ 9.29864837888136897e+00 +PF_coil_0_radial_thickness_(m)___________________________________________ (pfdr(0))______________________ 1.30716959387866716e+00 +PF_coil_0_vertical_thickness_(m)_________________________________________ (pfdz(0))______________________ 1.30716959387866538e+00 +PF_coil_0_turns__________________________________________________________ (n_pf_coil_turns[0])___________ 4.69890395469252667e+02 +PF_coil_0_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[0])_____ 1.87956158187701057e+01 +PF_coil_0_field_(T)______________________________________________________ (b_pf_coil_peak[0])____________ 6.83192241463730277e+00 +PF_coil_1_radius_(m)_____________________________________________________ (r_pf_coil_middle[1])__________ 5.56666666678673039e+00 +PF_coil_1_vertical_position_(m)__________________________________________ (z_pf_coil_middle[1])__________ -1.05325322096755301e+01 +PF_coil_1_radial_thickness_(m)___________________________________________ (pfdr(1))______________________ 1.41014121992641961e+00 +PF_coil_1_vertical_thickness_(m)_________________________________________ (pfdz(1))______________________ -1.41014121992641961e+00 +PF_coil_1_turns__________________________________________________________ (n_pf_coil_turns[1])___________ 5.46837021537282226e+02 +PF_coil_1_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[1])_____ 2.18734808614912879e+01 +PF_coil_1_field_(T)______________________________________________________ (b_pf_coil_peak[1])____________ 7.34704812024148524e+00 +PF_coil_2_radius_(m)_____________________________________________________ (r_pf_coil_middle[2])__________ 1.66994661952565266e+01 +PF_coil_2_vertical_position_(m)__________________________________________ (z_pf_coil_middle[2])__________ 2.66666666672418229e+00 +PF_coil_2_radial_thickness_(m)___________________________________________ (pfdr(2))______________________ 1.10404170879242258e+00 +PF_coil_2_vertical_thickness_(m)_________________________________________ (pfdz(2))______________________ 1.10404170879242614e+00 +PF_coil_2_turns__________________________________________________________ (n_pf_coil_turns[2])___________ 1.82836214212994946e+02 +PF_coil_2_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[2])_____ -7.31344856851979852e+00 +PF_coil_2_field_(T)______________________________________________________ (b_pf_coil_peak[2])____________ 2.56582896364076385e+00 +PF_coil_3_radius_(m)_____________________________________________________ (r_pf_coil_middle[3])__________ 1.66994661952565266e+01 +PF_coil_3_vertical_position_(m)__________________________________________ (z_pf_coil_middle[3])__________ -2.66666666672418229e+00 +PF_coil_3_radial_thickness_(m)___________________________________________ (pfdr(3))______________________ 1.10404170879242258e+00 +PF_coil_3_vertical_thickness_(m)_________________________________________ (pfdz(3))______________________ -1.10404170879242614e+00 +PF_coil_3_turns__________________________________________________________ (n_pf_coil_turns[3])___________ 1.82836214212994946e+02 +PF_coil_3_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[3])_____ -7.31344856851979852e+00 +PF_coil_3_field_(T)______________________________________________________ (b_pf_coil_peak[3])____________ 2.56582896364076385e+00 +PF_coil_4_radius_(m)_____________________________________________________ (r_pf_coil_middle[4])__________ 1.51734034153322810e+01 +PF_coil_4_vertical_position_(m)__________________________________________ (z_pf_coil_middle[4])__________ 7.46666666682770952e+00 +PF_coil_4_radial_thickness_(m)___________________________________________ (pfdr(4))______________________ 7.93511499758842831e-01 +PF_coil_4_vertical_thickness_(m)_________________________________________ (pfdz(4))______________________ 7.93511499758842831e-01 +PF_coil_4_turns__________________________________________________________ (n_pf_coil_turns[4])___________ 1.25932100049905827e+02 +PF_coil_4_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[4])_____ -5.03728400199623305e+00 +PF_coil_4_field_(T)______________________________________________________ (b_pf_coil_peak[4])____________ 2.52087510284903216e+00 +PF_coil_5_radius_(m)_____________________________________________________ (r_pf_coil_middle[5])__________ 1.51734034153322810e+01 +PF_coil_5_vertical_position_(m)__________________________________________ (z_pf_coil_middle[5])__________ -7.46666666682770952e+00 +PF_coil_5_radial_thickness_(m)___________________________________________ (pfdr(5))______________________ 7.93511499758842831e-01 +PF_coil_5_vertical_thickness_(m)_________________________________________ (pfdz(5))______________________ -7.93511499758842831e-01 +PF_coil_5_turns__________________________________________________________ (n_pf_coil_turns[5])___________ 1.25932100049905827e+02 +PF_coil_5_current_(MA)___________________________________________________ (c_pf_cs_coils_peak_ma[5])_____ -5.03728400199623305e+00 +PF_coil_5_field_(T)______________________________________________________ (b_pf_coil_peak[5])____________ 2.52087510284903216e+00 CS_coil_midplane_axial_stress_at_time_point_0_(MPa)______________________ (stress_z_cs_self_midplane_profile[0])_ -0.00000000000000000e+00 -CS_coil_midplane_axial_stress_at_time_point_1_(MPa)______________________ (stress_z_cs_self_midplane_profile[1])_ -3.07058647601545453e+08 -CS_coil_midplane_axial_stress_at_time_point_2_(MPa)______________________ (stress_z_cs_self_midplane_profile[2])_ -1.66232815231775530e+07 -CS_coil_midplane_axial_stress_at_time_point_3_(MPa)______________________ (stress_z_cs_self_midplane_profile[3])_ -1.66232815231775530e+07 -CS_coil_midplane_axial_stress_at_time_point_4_(MPa)______________________ (stress_z_cs_self_midplane_profile[4])_ -3.07058647601545453e+08 +CS_coil_midplane_axial_stress_at_time_point_1_(MPa)______________________ (stress_z_cs_self_midplane_profile[1])_ -3.11329621661900461e+08 +CS_coil_midplane_axial_stress_at_time_point_2_(MPa)______________________ (stress_z_cs_self_midplane_profile[2])_ -1.98167972427740283e+07 +CS_coil_midplane_axial_stress_at_time_point_3_(MPa)______________________ (stress_z_cs_self_midplane_profile[3])_ -1.98167972427740283e+07 +CS_coil_midplane_axial_stress_at_time_point_4_(MPa)______________________ (stress_z_cs_self_midplane_profile[4])_ -3.11329621661900461e+08 CS_coil_midplane_axial_stress_at_time_point_5_(MPa)______________________ (stress_z_cs_self_midplane_profile[5])_ -0.00000000000000000e+00 -Central_solenoid_radius_(m)______________________________________________ (r_pf_coil_middle[n_cs_pf_coils-1])_ 2.32592054373535229e+00 +Central_solenoid_radius_(m)______________________________________________ (r_pf_coil_middle[n_cs_pf_coils-1])_ 2.35593251008337257e+00 Central_solenoid_vertical_position_(m)___________________________________ (z_pf_coil_middle[n_cs_pf_coils-1])_ 0.00000000000000000e+00 -Central_solenoid_radial_thickness_(m)____________________________________ (ohdr)_________________________ 5.88190932603959826e-01 -Central_solenoid_vertical_thickness_(m)__________________________________ (dz_cs_full)___________________ 1.58727908955892030e+01 -Central_solenoid_full_radial_width_(m)___________________________________ (dr_cs_full)___________________ 5.24003202007466395e+00 -Central_solenoid_turns___________________________________________________ (n_pf_coil_turns[n_cs_pf_coils-1])_ 4.08577955214453186e+03 -Central_solenoid_current_(MA)____________________________________________ (c_pf_cs_coils_peak_ma[n_cs_pf_coils-1])_ -1.63431182085781273e+02 -Central_solenoid_field_(T)_______________________________________________ (b_pf_coil_peak[n_cs_pf_coils-1])_ 1.31292885651719349e+01 -Sum_of_squares_of_residuals______________________________________________ (ssq0)_________________________ 3.36417623726021232e-04 OP +Central_solenoid_radial_thickness_(m)____________________________________ (ohdr)_________________________ 5.38814675476463112e-01 +Central_solenoid_vertical_thickness_(m)__________________________________ (dz_cs_full)___________________ 1.58727908956210175e+01 +Central_solenoid_full_radial_width_(m)___________________________________ (dr_cs_full)___________________ 5.25067969564320780e+00 +Central_solenoid_turns___________________________________________________ (n_pf_coil_turns[n_cs_pf_coils-1])_ 3.95552786234002951e+03 +Central_solenoid_current_(MA)____________________________________________ (c_pf_cs_coils_peak_ma[n_cs_pf_coils-1])_ -1.58221114493601164e+02 +Central_solenoid_field_(T)_______________________________________________ (b_pf_coil_peak[n_cs_pf_coils-1])_ 1.26983042165941864e+01 +Sum_of_squares_of_residuals______________________________________________ (ssq0)_________________________ 3.30828244644212574e-04 OP Smoothing_parameter______________________________________________________ (alfapf)_______________________ 5.00000000000000031e-10 # Volt Second Consumption # -Total_volt-second_consumption_by_coils_(Wb)______________________________ (vs_cs_pf_total_pulse)_________ -5.48700613329681460e+02 OP -Total_volt-second_available_for_burn_phase_(Wb)__________________________ (vs_cs_pf_total_burn)__________ -2.69631858705948275e+02 OP +Total_volt-second_consumption_by_coils_(Wb)______________________________ (vs_cs_pf_total_pulse)_________ -5.44015875131376220e+02 OP +Total_volt-second_available_for_burn_phase_(Wb)__________________________ (vs_cs_pf_total_burn)__________ -2.71904623177712779e+02 OP # Waveforms # Ratio_of_central_solenoid_current_at_beginning_of_Pulse_/_end_of_flat-top_ (f_j_cs_start_pulse_end_flat_top)_ 1.00000000000000000e+00 -Ratio_of_central_solenoid_current_at_beginning_of_Flat-top_/_end_of_flat-top_ (f_j_cs_start_end_flat_top)____ -2.32673923661649240e-01 OP +Ratio_of_central_solenoid_current_at_beginning_of_Flat-top_/_end_of_flat-top_ (f_j_cs_start_end_flat_top)____ -2.52293761037589437e-01 OP # PF Circuit Waveform Data # Number_of_PF_circuits_including_CS_and_plasma____________________________ (n_pf_cs_plasma_circuits)______ 8 PF_Circuit_0_Time_point_0_(A)____________________________________________ (pfc0t0)_______________________ 0.00000000000000000e+00 -PF_Circuit_0_Time_point_1_(A)____________________________________________ (pfc0t1)_______________________ 1.34032393479258586e+07 -PF_Circuit_0_Time_point_2_(A)____________________________________________ (pfc0t2)_______________________ 1.88506518237420656e+07 -PF_Circuit_0_Time_point_3_(A)____________________________________________ (pfc0t3)_______________________ 1.88506518237420656e+07 -PF_Circuit_0_Time_point_4_(A)____________________________________________ (pfc0t4)_______________________ 2.32882818695809133e+06 +PF_Circuit_0_Time_point_1_(A)____________________________________________ (pfc0t1)_______________________ 1.32767758823670745e+07 +PF_Circuit_0_Time_point_2_(A)____________________________________________ (pfc0t2)_______________________ 1.87956158187701069e+07 +PF_Circuit_0_Time_point_3_(A)____________________________________________ (pfc0t3)_______________________ 1.87956158187701069e+07 +PF_Circuit_0_Time_point_4_(A)____________________________________________ (pfc0t4)_______________________ 2.16919221458748356e+06 PF_Circuit_0_Time_point_5_(A)____________________________________________ (pfc0t5)_______________________ 0.00000000000000000e+00 PF_Circuit_1_Time_point_0_(A)____________________________________________ (pfc1t0)_______________________ 0.00000000000000000e+00 -PF_Circuit_1_Time_point_1_(A)____________________________________________ (pfc1t1)_______________________ 1.75355997901687287e+07 -PF_Circuit_1_Time_point_2_(A)____________________________________________ (pfc1t2)_______________________ 2.18919487523733638e+07 -PF_Circuit_1_Time_point_3_(A)____________________________________________ (pfc1t3)_______________________ 2.18919487523733638e+07 -PF_Circuit_1_Time_point_4_(A)____________________________________________ (pfc1t4)_______________________ 2.76272155265685171e+05 +PF_Circuit_1_Time_point_1_(A)____________________________________________ (pfc1t1)_______________________ 1.73708952053551488e+07 +PF_Circuit_1_Time_point_2_(A)____________________________________________ (pfc1t2)_______________________ 2.18734808614912890e+07 +PF_Circuit_1_Time_point_3_(A)____________________________________________ (pfc1t3)_______________________ 2.18734808614912890e+07 +PF_Circuit_1_Time_point_4_(A)____________________________________________ (pfc1t4)_______________________ 1.20017172187261283e+05 PF_Circuit_1_Time_point_5_(A)____________________________________________ (pfc1t5)_______________________ 0.00000000000000000e+00 PF_Circuit_2_Time_point_0_(A)____________________________________________ (pfc2t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_2_Time_point_1_(A)____________________________________________ (pfc2t1)_______________________ 4.64076113626131264e+05 -PF_Circuit_2_Time_point_2_(A)____________________________________________ (pfc2t2)_______________________ -6.85070028885583207e+06 -PF_Circuit_2_Time_point_3_(A)____________________________________________ (pfc2t3)_______________________ -6.85070028885583207e+06 -PF_Circuit_2_Time_point_4_(A)____________________________________________ (pfc2t4)_______________________ -7.42275481271700654e+06 +PF_Circuit_2_Time_point_1_(A)____________________________________________ (pfc2t1)_______________________ 4.56076731315416691e+05 +PF_Circuit_2_Time_point_2_(A)____________________________________________ (pfc2t2)_______________________ -6.74230652333908435e+06 +PF_Circuit_2_Time_point_3_(A)____________________________________________ (pfc2t3)_______________________ -6.74230652333908435e+06 +PF_Circuit_2_Time_point_4_(A)____________________________________________ (pfc2t4)_______________________ -7.31344856851979811e+06 PF_Circuit_2_Time_point_5_(A)____________________________________________ (pfc2t5)_______________________ -0.00000000000000000e+00 PF_Circuit_3_Time_point_0_(A)____________________________________________ (pfc3t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_3_Time_point_1_(A)____________________________________________ (pfc3t1)_______________________ 4.64076113626131264e+05 -PF_Circuit_3_Time_point_2_(A)____________________________________________ (pfc3t2)_______________________ -6.85070028885583207e+06 -PF_Circuit_3_Time_point_3_(A)____________________________________________ (pfc3t3)_______________________ -6.85070028885583207e+06 -PF_Circuit_3_Time_point_4_(A)____________________________________________ (pfc3t4)_______________________ -7.42275481271700654e+06 +PF_Circuit_3_Time_point_1_(A)____________________________________________ (pfc3t1)_______________________ 4.56076731315416691e+05 +PF_Circuit_3_Time_point_2_(A)____________________________________________ (pfc3t2)_______________________ -6.74230652333908435e+06 +PF_Circuit_3_Time_point_3_(A)____________________________________________ (pfc3t3)_______________________ -6.74230652333908435e+06 +PF_Circuit_3_Time_point_4_(A)____________________________________________ (pfc3t4)_______________________ -7.31344856851979811e+06 PF_Circuit_3_Time_point_5_(A)____________________________________________ (pfc3t5)_______________________ -0.00000000000000000e+00 PF_Circuit_4_Time_point_0_(A)____________________________________________ (pfc4t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_4_Time_point_1_(A)____________________________________________ (pfc4t1)_______________________ 3.83629097068916075e+05 -PF_Circuit_4_Time_point_2_(A)____________________________________________ (pfc4t2)_______________________ -4.62339197060309816e+06 -PF_Circuit_4_Time_point_3_(A)____________________________________________ (pfc4t3)_______________________ -4.62339197060309816e+06 -PF_Circuit_4_Time_point_4_(A)____________________________________________ (pfc4t4)_______________________ -5.09628155491781421e+06 +PF_Circuit_4_Time_point_1_(A)____________________________________________ (pfc4t1)_______________________ 3.94059484815048054e+05 +PF_Circuit_4_Time_point_2_(A)____________________________________________ (pfc4t2)_______________________ -4.54380576768466085e+06 +PF_Circuit_4_Time_point_3_(A)____________________________________________ (pfc4t3)_______________________ -4.54380576768466085e+06 +PF_Circuit_4_Time_point_4_(A)____________________________________________ (pfc4t4)_______________________ -5.03728400199623313e+06 PF_Circuit_4_Time_point_5_(A)____________________________________________ (pfc4t5)_______________________ -0.00000000000000000e+00 PF_Circuit_5_Time_point_0_(A)____________________________________________ (pfc5t0)_______________________ -0.00000000000000000e+00 -PF_Circuit_5_Time_point_1_(A)____________________________________________ (pfc5t1)_______________________ 3.83629097068916075e+05 -PF_Circuit_5_Time_point_2_(A)____________________________________________ (pfc5t2)_______________________ -4.62339197060309816e+06 -PF_Circuit_5_Time_point_3_(A)____________________________________________ (pfc5t3)_______________________ -4.62339197060309816e+06 -PF_Circuit_5_Time_point_4_(A)____________________________________________ (pfc5t4)_______________________ -5.09628155491781421e+06 +PF_Circuit_5_Time_point_1_(A)____________________________________________ (pfc5t1)_______________________ 3.94059484815048054e+05 +PF_Circuit_5_Time_point_2_(A)____________________________________________ (pfc5t2)_______________________ -4.54380576768466085e+06 +PF_Circuit_5_Time_point_3_(A)____________________________________________ (pfc5t3)_______________________ -4.54380576768466085e+06 +PF_Circuit_5_Time_point_4_(A)____________________________________________ (pfc5t4)_______________________ -5.03728400199623313e+06 PF_Circuit_5_Time_point_5_(A)____________________________________________ (pfc5t5)_______________________ -0.00000000000000000e+00 CS_Circuit_Time_point_0_(A)______________________________________________ (cs_t0)________________________ -0.00000000000000000e+00 -CS_Circuit_Time_point_1_(A)______________________________________________ (cs_t1)________________________ 1.63431182085781276e+08 -CS_Circuit_Time_point_2_(A)______________________________________________ (cs_t2)________________________ 3.80261743845601752e+07 -CS_Circuit_Time_point_3_(A)______________________________________________ (cs_t3)________________________ 3.80261743845601752e+07 -CS_Circuit_Time_point_4_(A)______________________________________________ (cs_t4)________________________ -1.63431182085781276e+08 +CS_Circuit_Time_point_1_(A)______________________________________________ (cs_t1)________________________ 1.58221114493601173e+08 +CS_Circuit_Time_point_2_(A)______________________________________________ (cs_t2)________________________ 3.99182000511496961e+07 +CS_Circuit_Time_point_3_(A)______________________________________________ (cs_t3)________________________ 3.99182000511496961e+07 +CS_Circuit_Time_point_4_(A)______________________________________________ (cs_t4)________________________ -1.58221114493601173e+08 CS_Circuit_Time_point_5_(A)______________________________________________ (cs_t5)________________________ -0.00000000000000000e+00 Plasma_Time_point_0_(A)__________________________________________________ (plasmat0)_____________________ 0.00000000000000000e+00 Plasma_Time_point_1_(A)__________________________________________________ (plasmat1)_____________________ 0.00000000000000000e+00 -Plasma_Time_point_2_(A)__________________________________________________ (plasmat2)_____________________ 1.67464957583690360e+07 -Plasma_Time_point_3_(A)__________________________________________________ (plasmat3)_____________________ 1.67464957583690360e+07 -Plasma_Time_point_4_(A)__________________________________________________ (plasmat4)_____________________ 1.67464957583690360e+07 +Plasma_Time_point_2_(A)__________________________________________________ (plasmat2)_____________________ 1.64508889633267447e+07 +Plasma_Time_point_3_(A)__________________________________________________ (plasmat3)_____________________ 1.64508889633267447e+07 +Plasma_Time_point_4_(A)__________________________________________________ (plasmat4)_____________________ 1.64508889633267447e+07 Plasma_Time_point_5_(A)__________________________________________________ (plasmat5)_____________________ 0.00000000000000000e+00 # PF Coil Inductances # Mutual_inductance_between_PF/CS/plasma_circuits_0_and_0_(H)______________ (ind_pf_cs_plasma_mutual[0,_0])_ 3.63080211570002565e+00 @@ -35514,24 +35518,24 @@ Mutual_inductance_between_PF/CS/plasma_circuits_7_and_5_(H)______________ (ind_p Mutual_inductance_between_PF/CS/plasma_circuits_7_and_6_(H)______________ (ind_pf_cs_plasma_mutual[7,_6])_ 3.89497924784251975e-03 Mutual_inductance_between_PF/CS/plasma_circuits_7_and_7_(H)______________ (ind_pf_cs_plasma_mutual[7,_7])_ 1.25351485782182824e-05 # Support Structure # -Outer_PF_coil_fence_mass_(kg)____________________________________________ (fncmass)______________________ 2.32432915617748629e+05 OP -Intercoil_support_structure_mass_(kg)____________________________________ (aintmass)_____________________ 3.99750934652176872e+06 OP -Mass_of_cooled_components_(kg)___________________________________________ (coldmass)_____________________ 3.31757146818646193e+07 OP -Gravity_support_structure_mass_(kg)______________________________________ (clgsmass)_____________________ 1.23166098781738384e+06 OP -Torus_leg_support_mass_(kg)______________________________________________ (gsm1)_________________________ 8.58195372433559241e+04 OP -Ring_beam_mass_(kg)______________________________________________________ (gsm2)_________________________ 3.91392254833061539e+05 OP -Ring_legs_mass_(kg)______________________________________________________ (gsm3)_________________________ 6.50897197246617754e+05 OP +Outer_PF_coil_fence_mass_(kg)____________________________________________ (fncmass)______________________ 2.24299592489930830e+05 OP +Intercoil_support_structure_mass_(kg)____________________________________ (aintmass)_____________________ 3.90773908931415994e+06 OP +Mass_of_cooled_components_(kg)___________________________________________ (coldmass)_____________________ 3.29003761395126097e+07 OP +Gravity_support_structure_mass_(kg)______________________________________ (clgsmass)_____________________ 1.22143894002838223e+06 OP +Torus_leg_support_mass_(kg)______________________________________________ (gsm1)_________________________ 8.81134213656326756e+04 OP +Ring_beam_mass_(kg)______________________________________________________ (gsm2)_________________________ 3.90397328246738703e+05 OP +Ring_legs_mass_(kg)______________________________________________________ (gsm3)_________________________ 6.47592217039258103e+05 OP # Shield Areas and Volumes # -Area_of_inboard_shield_surface_(m^2)_____________________________________ (a_shld_inboard_surface)_______ 6.98528448090633788e+02 OP -Area_of_outboard_shield_surface_(m^2)____________________________________ (a_shld_outboard_surface)______ 8.61215688221660571e+02 OP -Total_area_of_shield_surface_(m^2)_______________________________________ (a_shld_total_surface)_________ 1.55974413631229436e+03 OP -Volume_of_inboard_shield_(m^3)___________________________________________ (vol_shld_inboard)_____________ 1.78066519138605486e+02 OP -Volume_of_outboard_shield_(m^3)__________________________________________ (vol_shld_outboard)____________ 6.07131825066874171e+02 OP -Total_volume_of_shield_(m^3)_____________________________________________ (vol_shld_total)_______________ 7.85198344205479657e+02 OP +Area_of_inboard_shield_surface_(m^2)_____________________________________ (a_shld_inboard_surface)_______ 6.98528448095247313e+02 OP +Area_of_outboard_shield_surface_(m^2)____________________________________ (a_shld_outboard_surface)______ 8.61215688226735097e+02 OP +Total_area_of_shield_surface_(m^2)_______________________________________ (a_shld_total_surface)_________ 1.55974413632198230e+03 OP +Volume_of_inboard_shield_(m^3)___________________________________________ (vol_shld_inboard)_____________ 1.78066519139738830e+02 OP +Volume_of_outboard_shield_(m^3)__________________________________________ (vol_shld_outboard)____________ 6.07131825070329114e+02 OP +Total_volume_of_shield_(m^3)_____________________________________________ (vol_shld_total)_______________ 7.85198344210067944e+02 OP # Vacuum Vessel Areas and Volumes # -Volume_of_inboard_vacuum_vessel_(m^3)____________________________________ (vol_vv_inboard)_______________ 1.42916644001907571e+02 OP -Volume_of_outboard_vacuum_vessel_(m^3)___________________________________ (vol_vv_outboard)______________ 4.42024143587321305e+02 OP -Total_volume_of_vacuum_vessel_(m^3)______________________________________ (vol_vv)_______________________ 1.01779697040525821e+03 OP +Volume_of_inboard_vacuum_vessel_(m^3)____________________________________ (vol_vv_inboard)_______________ 1.42916644002839803e+02 OP +Volume_of_outboard_vacuum_vessel_(m^3)___________________________________ (vol_vv_outboard)______________ 4.42024143589710548e+02 OP +Total_volume_of_vacuum_vessel_(m^3)______________________________________ (vol_vv)_______________________ 1.01779697041103759e+03 OP # First wall build # Radius_of_first_wall_cooling_channels_(m)________________________________ (radius_fw_channel)____________ 6.00000000000000012e-03 OP Radius_of_90_degree_coolant_channel_bend_(m)_____________________________ (radius_fw_channel_90_bend)____ 1.80000000000000021e-02 @@ -35544,12 +35548,12 @@ Radial_thickness_off_outboard_first_wall_(m)_____________________________ (dr_fw Number_of_inboard_first_wall_cooling_channels____________________________ (n_fw_inboard_channels)________ 7912 OP Number_of_outboard_first_wall_cooling_channels___________________________ (n_fw_outboard_channels)_______ 13105 OP # First wall surface loads # -Nominal_mean_radiation_load_on_vessel_first-wall_(MW/m^2)________________ (pflux_fw_rad_mw)______________ 1.87827106920019610e-01 OP +Nominal_mean_radiation_load_on_vessel_first-wall_(MW/m^2)________________ (pflux_fw_rad_mw)______________ 1.77649680318215264e-01 OP Peaking_factor_for_radiation_first-wall_load_____________________________ (f_fw_rad_max)_________________ 3.33000000000000007e+00 IP Maximum_permitted_radiation_first-wall_load_(MW/m^2)_____________________ (pflux_fw_rad_max)_____________ 1.00000000000000000e+00 IP -Peak_radiation_wall_load_(MW/m^2)________________________________________ (pflux_fw_rad_max_mw)__________ 6.25464266043665340e-01 OP -Fast_alpha_particle_power_incident_on_the_first-wall_(MW)________________ (p_fw_alpha_mw)________________ 1.65825462593530268e+01 OP -Nominal_mean_neutron_load_on_vessel_first-wall_(MW/m^2)__________________ (pflux_fw_neutron_mw)__________ 1.03176029298796701e+00 OP +Peak_radiation_wall_load_(MW/m^2)________________________________________ (pflux_fw_rad_max_mw)__________ 5.91573435459656793e-01 OP +Fast_alpha_particle_power_incident_on_the_first-wall_(MW)________________ (p_fw_alpha_mw)________________ 1.63384428835724727e+01 OP +Nominal_mean_neutron_load_on_vessel_first-wall_(MW/m^2)__________________ (pflux_fw_neutron_mw)__________ 1.01656659994562149e+00 OP # First wall pumping # First_wall_coolant_type__________________________________________________ (i_fw_coolant_type)____________ Helium Outlet_temperature_of_first_wall_coolant_[K]_____________________________ (temp_fw_coolant_out)__________ 8.23000000000000000e+02 OP @@ -35559,260 +35563,264 @@ Peak_temperature_of_first_wall_[K]_______________________________________ (temp_ # Nuclear Heating Magnets Before Renormalisation # Shield_line_density_(tonne/m2)___________________________________________ (x_shield)_____________________ 4.05600000000000005e+00 Blanket_line_density_(tonne/m2)__________________________________________ (x_blanket)____________________ 2.29112070985279770e+00 -Unit_nuclear_heating_in_TF_coil_(W/GW)___________________________________ (tfc_nuc_heating)______________ 1.26480275681202402e+04 -Total_nuclear_heating_in_TF_coil_(MW)____________________________________ (p_tf_nuclear_heat_mw.)________ 2.08609919463092937e-02 -p_fusion_total_mw________________________________________________________ (p_fusion_total_mw.)___________ 1.64934744441023304e+03 -total_mass_of_the_TF_coils_(kg)__________________________________________ (m_tf_coils_total)_____________ 9.71990420726155676e+06 +Unit_nuclear_heating_in_TF_coil_(W/GW)___________________________________ (tfc_nuc_heating)______________ 1.25497553152805340e+04 +Total_nuclear_heating_in_TF_coil_(MW)____________________________________ (p_tf_nuclear_heat_mw.)________ 2.03940023725631067e-02 +p_fusion_total_mw________________________________________________________ (p_fusion_total_mw.)___________ 1.62505179266176174e+03 +total_mass_of_the_TF_coils_(kg)__________________________________________ (m_tf_coils_total)_____________ 9.64438279661557265e+06 # Pumping for primary coolant (helium) # Pressure_drop_in_FW_and_blanket_coolant_incl._hx_and_pipes_(Pa)__________ (dp_he)________________________ 5.50000000000000000e+05 Fraction_of_FW_and_blanket_thermal_power_required_for_pumping____________ (fpump)________________________ 8.94632617126516622e-02 OP -Total_power_absorbed_by_FW_&_blanket_(MW)________________________________ (p_plasma)_____________________ 1.70566280748988356e+03 OP +Total_power_absorbed_by_FW_&_blanket_(MW)________________________________ (p_plasma)_____________________ 1.75169496182713465e+03 OP Inlet_temperature_of_FW_&_blanket_coolant_pump_(K)_______________________ (t_in_compressor)______________ 5.57026612891722721e+02 OP Coolant_pump_outlet/Inlet_temperature_of_FW_&_blanket_(K)________________ (t_in_bb)______________________ 5.73129999999999995e+02 Outlet_temperature_of_FW_&_blanket_(K)___________________________________ (t_out_bb)_____________________ 7.73129999999999995e+02 -Mechanical_pumping_power_for_FW_and_blanket_cooling_loop_including_heat_exchanger_(MW)_ (p_fw_blkt_coolant_pump_mw)____ 1.67587041492715457e+02 OP +Mechanical_pumping_power_for_FW_and_blanket_cooling_loop_including_heat_exchanger_(MW)_ (p_fw_blkt_coolant_pump_mw)____ 1.72109853695127697e+02 OP Pumping_power_for_FW_and_Blanket_multiplier_factor_______________________ (f_p_fw_blkt_pump)_____________ 1.00000000000000000e+00 IP -Mechanical_pumping_power_for_divertor_(MW)_______________________________ (p_div_coolant_pump_mw)________ 1.70426917664260658e+00 OP -Mechanical_pumping_power_for_shield_and_vacuum_vessel_(MW)_______________ (p_shld_coolant_pump_mw)_______ 7.18432631569945572e-03 OP +Mechanical_pumping_power_for_divertor_(MW)_______________________________ (p_div_coolant_pump_mw)________ 1.37644538816656148e+00 OP +Mechanical_pumping_power_for_shield_and_vacuum_vessel_(MW)_______________ (p_shld_coolant_pump_mw)_______ 7.37744228213783187e-03 OP Radius_of_blanket_cooling_channels_(m)___________________________________ (radius_blkt_channel)__________ 6.00000000000000012e-03 Radius_of_90_degree_coolant_channel_bend_(m)_____________________________ (radius_blkt_channel_90_bend)__ 1.80000000000000021e-02 Radius_of_180_degree_coolant_channel_bend_(m)____________________________ (radius_blkt_channel_180_bend)_ 9.00000000000000105e-03 # First wall and blanket : CCFE HCPB model # # Blanket Volumes and Surface Areas # -Inboard_Blanket_Volume_with_gaps_and_holes_(m3)__________________________ (vol_blkt_inboard)_____________ 3.15923926216322457e+02 -Outboard_Blanket_Volume_with_gaps_and_holes_(m3)_________________________ (vol_blkt_outboard)____________ 8.68976186128291488e+02 -Total_Blanket_Volume_with_gaps_and_holes_(m3)____________________________ (vol_blkt_total)_______________ 1.18490011234461394e+03 -Inboard_Blanket_Volume_if_toridally_continuous_(m3)______________________ (vol_blkt_inboard_full_coverage)_ 3.15923926216322457e+02 -Outboard_Blanket_Volume_if_toridally_continuous_(m3)_____________________ (vol_blkt_outboard_full_coverage)_ 1.02294625722391947e+03 -Total_Blanket_Volume_if_toridally_continuous_(m3)________________________ (vol_blkt_total_full_coverage)_ 1.33887018344024182e+03 -Inboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)____________________ (a_blkt_inboard_surface)_______ 6.63622172183134126e+02 -Outboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)___________________ (a_blkt_outboard_surface)______ 8.99584666550174916e+02 -Total_Blanket_Surface_Area_with_gaps_and_holes_(m2)______________________ (a_blkt_total_surface)_________ 1.56320683873330904e+03 -Inboard_blanket_surface_area_if_toridally_continuous_(m2)________________ (a_blkt_inboard_surface_full_coverage)_ 6.63622172183134126e+02 -Outboard_blanket_surface_area_if_toridally_continuous_(m2)_______________ (a_blkt_outboard_surface_full_coverage)_ 1.10271323881495505e+03 -Total_blanket_surface_area_if_toridally_continuous_(m2)__________________ (a_blkt_total_surface_full_coverage)_ 1.76633541099808917e+03 +Inboard_Blanket_Volume_with_gaps_and_holes_(m3)__________________________ (vol_blkt_inboard)_____________ 3.15923926218399856e+02 +Outboard_Blanket_Volume_with_gaps_and_holes_(m3)_________________________ (vol_blkt_outboard)____________ 9.25872764878122553e+02 +Total_Blanket_Volume_with_gaps_and_holes_(m3)____________________________ (vol_blkt_total)_______________ 1.24179669109652241e+03 +Inboard_Blanket_Volume_if_toridally_continuous_(m3)______________________ (vol_blkt_inboard_full_coverage)_ 3.15923926218399856e+02 +Outboard_Blanket_Volume_if_toridally_continuous_(m3)_____________________ (vol_blkt_outboard_full_coverage)_ 1.02294625723030185e+03 +Total_Blanket_Volume_if_toridally_continuous_(m3)________________________ (vol_blkt_total_full_coverage)_ 1.33887018344870171e+03 +Inboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)____________________ (a_blkt_inboard_surface)_______ 6.63622172187553588e+02 +Outboard_Blanket_Surface_Area_with_gaps_and_holes_(m2)___________________ (a_blkt_outboard_surface)______ 9.74646792103303142e+02 +Total_Blanket_Surface_Area_with_gaps_and_holes_(m2)______________________ (a_blkt_total_surface)_________ 1.63826896429085673e+03 +Inboard_blanket_surface_area_if_toridally_continuous_(m2)________________ (a_blkt_inboard_surface_full_coverage)_ 6.63622172187553588e+02 +Outboard_blanket_surface_area_if_toridally_continuous_(m2)_______________ (a_blkt_outboard_surface_full_coverage)_ 1.10271323882210800e+03 +Total_blanket_surface_area_if_toridally_continuous_(m2)__________________ (a_blkt_total_surface_full_coverage)_ 1.76633541100966158e+03 +Outboard_blanket_poloidal_angle_subtended_by_plasma_(degrees)____________ (deg_blkt_outboard_poloidal_plasma)_ 2.06101453060048271e+02 +Angle_fraction_of_outboard_blanket_poloidal_angle_subtended_by_plasma____ (f_deg_blkt_outboard_poloidal_plasma)_ 5.72504036277911910e-01 +Inboard_blanket_poloidal_angle_subtended_by_plasma_(degrees)_____________ (deg_blkt_inboard_poloidal_plasma)_ 1.27797093879903457e+02 +Angle_fraction_of_inboard_blanket_poloidal_angle_subtended_by_plasma_____ (f_deg_blkt_inboard_poloidal_plasma)_ 3.54991927444176292e-01 Titanium_beryllide_fraction______________________________________________ (f_vol_blkt_tibe12)____________ 3.75000000000000000e-01 OP Lithium_orthosilicate_fraction___________________________________________ (f_vol_blkt_li4sio4)___________ 3.75000000000000000e-01 OP Steel_fraction___________________________________________________________ (f_vol_blkt_steel)_____________ 9.70499999999999974e-02 OP Coolant_fraction_________________________________________________________ (vfcblkt)______________________ 5.29499999999999971e-02 Purge_gas_fraction_______________________________________________________ (vfpblkt)______________________ 1.00000000000000006e-01 -First_Wall_Armour_Volume_(m3)____________________________________________ (fw_armour_vol)________________ 5.86921388583391845e+00 OP -First_Wall_Volume_(m3)___________________________________________________ (vol_fw_total)_________________ 1.98069241783592851e+01 OP -Blanket_Volume_(m3)______________________________________________________ (vol_blkt_total)_______________ 1.18490011234461394e+03 OP -Shield_Volume_(m3)_______________________________________________________ (vol_shld_total)_______________ 7.85198344205479657e+02 OP -Vacuum_vessel_volume_(m3)________________________________________________ (vol_vv)_______________________ 1.01779697040525821e+03 OP -First_Wall_Armour_Mass_(kg)______________________________________________ (fw_armour_mass)_______________ 1.12982367302302926e+05 OP -First_Wall_Mass,_excluding_armour_(kg)___________________________________ (m_fw_total)___________________ 1.54494008591202437e+05 OP -Blanket_Mass_-_Total(kg)_________________________________________________ (m_blkt_total)_________________ 2.96757048236596212e+06 OP -____Blanket_Mass_-_TiBe12_(kg)___________________________________________ (m_blkt_tibe12)________________ 1.00420284521206026e+06 OP -____Blanket_Mass_-_Li4SiO4_(kg)__________________________________________ (m_blkt_li4sio4)_______________ 1.06641010111015243e+06 OP -____Blanket_Mass_-_Steel_(kg)____________________________________________ (m_blkt_steel_total)___________ 8.96957536043749307e+05 OP -Total_mass_of_armour,_first_wall_and_blanket_(kg)________________________ (armour_fw_bl_mass)____________ 3.23504685825946741e+06 OP -Shield_Mass_(kg)_________________________________________________________ (whtshld)______________________ 2.44981883392109675e+06 OP -Vacuum_vessel_mass_(kg)__________________________________________________ (m_vv)_________________________ 7.93881636916101445e+06 OP -Total_nuclear_heating_in_TF+PF_coils_(CS_is_negligible)_(MW)_____________ (p_tf_nuclear_heat_mw)_________ 2.17203997188253929e-02 OP -Total_nuclear_heating_in_FW_(MW)_________________________________________ (p_fw_nuclear_heat_total_mw)___ 1.65819907624501838e+02 OP -Total_nuclear_heating_in_the_blanket_(including_f_p_blkt_multiplication)_(MW)_ (p_blkt_nuclear_heat_total_mw)_ 1.31116866758367496e+03 OP -Total_nuclear_heating_in_the_shield_(MW)_________________________________ (p_shld_nuclear_heat_mw)_______ 1.43686526313989105e+00 OP -Total_nuclear_heating_in_the_divertor_(MW)_______________________________ (p_div_nuclear_heat_total_mw)__ 1.51390545961426199e+02 OP -Blanket_exponential_factor_______________________________________________ (exp_blanket)__________________ 9.99355930883807364e-01 OP +First_Wall_Armour_Volume_(m3)____________________________________________ (fw_armour_vol)________________ 5.86921388587597459e+00 OP +First_Wall_Volume_(m3)___________________________________________________ (vol_fw_total)_________________ 2.07580138184142697e+01 OP +Blanket_Volume_(m3)______________________________________________________ (vol_blkt_total)_______________ 1.24179669109652241e+03 OP +Shield_Volume_(m3)_______________________________________________________ (vol_shld_total)_______________ 7.85198344210067944e+02 OP +Vacuum_vessel_volume_(m3)________________________________________________ (vol_vv)_______________________ 1.01779697041103759e+03 OP +First_Wall_Armour_Mass_(kg)______________________________________________ (fw_armour_mass)_______________ 1.12982367303112507e+05 OP +First_Wall_Mass,_excluding_armour_(kg)___________________________________ (m_fw_total)___________________ 1.61912507783631299e+05 OP +Blanket_Mass_-_Total(kg)_________________________________________________ (m_blkt_total)_________________ 3.11006739488432929e+06 OP +____Blanket_Mass_-_TiBe12_(kg)___________________________________________ (m_blkt_tibe12)________________ 1.05242269570430275e+06 OP +____Blanket_Mass_-_Li4SiO4_(kg)__________________________________________ (m_blkt_li4sio4)_______________ 1.11761702198687010e+06 OP +____Blanket_Mass_-_Steel_(kg)____________________________________________ (m_blkt_steel_total)___________ 9.40027677193156560e+05 OP +Total_mass_of_armour,_first_wall_and_blanket_(kg)________________________ (armour_fw_bl_mass)____________ 3.38496226997107314e+06 OP +Shield_Mass_(kg)_________________________________________________________ (whtshld)______________________ 2.44981883393541211e+06 OP +Vacuum_vessel_mass_(kg)__________________________________________________ (m_vv)_________________________ 7.93881636920609325e+06 OP +Total_nuclear_heating_in_TF+PF_coils_(CS_is_negligible)_(MW)_____________ (p_tf_nuclear_heat_mw)_________ 2.21309490634443128e-02 OP +Total_nuclear_heating_in_FW_(MW)_________________________________________ (p_fw_nuclear_heat_total_mw)___ 1.78453552104871079e+02 OP +Total_nuclear_heating_in_the_blanket_(including_f_p_blkt_multiplication)_(MW)_ (p_blkt_nuclear_heat_total_mw)_ 1.34667109201281642e+03 OP +Total_nuclear_heating_in_the_shield_(MW)_________________________________ (p_shld_nuclear_heat_mw)_______ 1.47548845642756632e+00 OP +Total_nuclear_heating_in_the_divertor_(MW)_______________________________ (p_div_nuclear_heat_total_mw)__ 9.40416251196836583e+01 OP +Blanket_exponential_factor_______________________________________________ (exp_blanket)__________________ 9.99547411335210967e-01 OP Shield:_first_exponential________________________________________________ (exp_shield1)__________________ 1.95234963072531500e-03 OP -Shield:_second_exponential_______________________________________________ (exp_shield2)__________________ 2.54267605910139305e-01 OP -Solid_angle_fraction_taken_by_on_divertor________________________________ (f_ster_div_single)____________ 1.15000000000000005e-01 +Shield:_second_exponential_______________________________________________ (exp_shield2)__________________ 2.54267605910139416e-01 OP +Solid_angle_fraction_taken_by_on_divertor________________________________ (f_ster_div_single)____________ 7.25040362779118680e-02 Fraction_of_outboard_first_wall_area_covered_by_HCD_and_diagnostics______ (f_a_fw_outboard_hcd)__________ 0.00000000000000000e+00 Switch_for_plant_secondary_cycle_________________________________________ (i_thermal_electric_conversion)_ 2 First_wall_coolant_pressure_(Pa)_________________________________________ (pres_fw_coolant)______________ 1.55000000000000000e+07 Blanket_coolant_pressure_(Pa)____________________________________________ (pres_blkt_coolant)____________ 1.55000000000000000e+07 Allowable_nominal_neutron_fluence_at_first_wall_(MW.year/m2)_____________ (abktflnc)_____________________ 5.00000000000000000e+00 -Blanket_half_height_(m)__________________________________________________ (dz_blkt_half)_________________ 5.95327524881914183e+00 +Blanket_half_height_(m)__________________________________________________ (dz_blkt_half)_________________ 5.95327524883681658e+00 No_of_inboard_blanket_modules_poloidally_________________________________ (n_blkt_inboard_modules_poloidal)_ 7 No_of_inboard_blanket_modules_toroidally_________________________________ (n_blkt_inboard_modules_toroidal)_ 32 No_of_outboard_blanket_modules_poloidally________________________________ (n_blkt_outboard_modules_poloidal)_ 8 No_of_outboard_blanket_modules_toroidally________________________________ (n_blkt_outboard_modules_toroidal)_ 48 Isentropic_efficiency_of_first_wall_/_blanket_coolant_pumps______________ (etaiso)_______________________ 9.00000000000000022e-01 -First_wall_area_(m^2)____________________________________________________ (a_fw_total)___________________ 1.60443178860099897e+03 -First_wall_area,_no_holes_(m^2)__________________________________________ (a_fw_total_full_coverage)_____ 1.81291727525536589e+03 -Divertor_area_(m2)_______________________________________________________ (a_div_surface_total)__________ 1.48785828079364620e+02 -Divertor_mass_(kg)_______________________________________________________ (m_div_plate)__________________ 3.64525278794443293e+04 +First_wall_area_(m^2)____________________________________________________ (a_fw_total)___________________ 1.68147345537228557e+03 +First_wall_area,_no_holes_(m^2)__________________________________________ (a_fw_total_full_coverage)_____ 1.81291727526710497e+03 +Divertor_area_(m2)_______________________________________________________ (a_div_surface_total)__________ 1.48785828080430747e+02 +Divertor_mass_(kg)_______________________________________________________ (m_div_plate)__________________ 3.64525278797055289e+04 # Superconducting TF Coil Power Conversion # -TF_coil_current_(kA)_____________________________________________________ (itfka)________________________ 8.23347095886034452e+01 OP +TF_coil_current_(kA)_____________________________________________________ (itfka)________________________ 8.28453020801330382e+01 OP Number_of_TF_coils_______________________________________________________ (ntfc)_________________________ 1.60000000000000000e+01 -Voltage_across_a_TF_coil_during_quench_(kV)______________________________ (v_tf_coil_dump_quench_kv)_____ 8.41752959308131032e+00 OP +Voltage_across_a_TF_coil_during_quench_(kV)______________________________ (v_tf_coil_dump_quench_kv)_____ 8.36818226644945184e+00 OP TF_coil_charge_time_(hours)______________________________________________ (tchghr)_______________________ 4.00000000000000000e+00 -Total_inductance_of_TF_coils_(H)_________________________________________ (ltfth)________________________ 3.15507391606828129e+01 OP +Total_inductance_of_TF_coils_(H)_________________________________________ (ltfth)________________________ 3.09361153046076929e+01 OP Total_resistance_of_TF_coils_(ohm)_______________________________________ (rcoils)_______________________ 0.00000000000000000e+00 OP -TF_coil_charging_voltage_(V)_____________________________________________ (tfcv)_________________________ 2.54635977792960745e+02 +TF_coil_charging_voltage_(V)_____________________________________________ (tfcv)_________________________ 2.52218677202519928e+02 Number_of_DC_circuit_breakers____________________________________________ (ntfbkr)_______________________ 1.60000000000000000e+01 Number_of_dump_resistors_________________________________________________ (ndumpr)_______________________ 6.40000000000000000e+01 -Resistance_per_dump_resistor_(ohm)_______________________________________ (r1dump)_______________________ 1.02235492602580857e-01 OP -Dump_resistor_peak_power_(MW)____________________________________________ (r1ppmw)_______________________ 1.73263713624956267e+02 OP -Energy_supplied_per_dump_resistor_(MJ)___________________________________ (r1emj)________________________ 1.67095519920613310e+03 OP -TF_coil_L/R_time_constant_(s)____________________________________________ (ttfsec)_______________________ 1.92880295027100601e+01 OP -Power_supply_voltage_(V)_________________________________________________ (tfpsv)________________________ 2.67367776682608792e+02 OP -Power_supply_current_(kA)________________________________________________ (tfpska)_______________________ 8.64514450680336211e+01 OP -DC_power_supply_rating_(kW)______________________________________________ (tfckw)________________________ 2.31143306588388332e+04 OP -AC_power_for_charging_(kW)_______________________________________________ (tfackw)_______________________ 2.56825896209320344e+04 OP -TF_coil_resistive_power_(MW)_____________________________________________ (rpower)_______________________ 6.11242097062788314e+00 OP -TF_coil_inductive_power_(MVA)____________________________________________ (xpower)_______________________ 1.48529583117656152e+01 OP +Resistance_per_dump_resistor_(ohm)_______________________________________ (r1dump)_______________________ 1.01009738106274685e-01 OP +Dump_resistor_peak_power_(MW)____________________________________________ (r1ppmw)_______________________ 1.73316146931404290e+02 OP +Energy_supplied_per_dump_resistor_(MJ)___________________________________ (r1emj)________________________ 1.65878806231152521e+03 OP +TF_coil_L/R_time_constant_(s)____________________________________________ (ttfsec)_______________________ 1.91417901163518813e+01 OP +Power_supply_voltage_(V)_________________________________________________ (tfpsv)________________________ 2.64829611062645938e+02 OP +Power_supply_current_(kA)________________________________________________ (tfpska)_______________________ 8.69875671841396922e+01 OP +DC_power_supply_rating_(kW)______________________________________________ (tfckw)________________________ 2.30368835846615002e+04 OP +AC_power_for_charging_(kW)_______________________________________________ (tfackw)_______________________ 2.55965373162905562e+04 OP +TF_coil_resistive_power_(MW)_____________________________________________ (rpower)_______________________ 6.15032668826879370e+00 OP +TF_coil_inductive_power_(MVA)____________________________________________ (xpower)_______________________ 1.47448058148255328e+01 OP Aluminium_bus_current_density_(kA/cm2)___________________________________ (djmka)________________________ 1.25000000000000000e-01 -Aluminium_bus_cross-sectional_area_(cm2)_________________________________ (albusa)_______________________ 6.58677676708827562e+02 OP -Total_length_of_TF_coil_bussing_(m)______________________________________ (len_tf_bus)___________________ 3.19306192986271571e+03 OP -Aluminium_bus_weight_(tonnes)____________________________________________ (albuswt)______________________ 5.67863625658332353e+02 OP -Total_TF_coil_bus_resistance_(ohm)_______________________________________ (rtfbus)_______________________ 9.01669420348378409e-04 OP -TF_coil_bus_voltage_drop_(V)_____________________________________________ (vtfbus)_______________________ 7.42386898693081463e+01 OP -Dump_resistor_floor_area_(m2)____________________________________________ (drarea)_______________________ 4.51898407246440911e+03 OP -TF_coil_power_conversion_floor_space_(m2)________________________________ (tfcfsp)_______________________ 1.59046345045626185e+03 OP -TF_coil_power_conv._building_volume_(m3)_________________________________ (tfcbv)________________________ 9.54278070273757112e+03 OP -TF_coil_AC_inductive_power_demand_(MW)___________________________________ (xpwrmw)_______________________ 1.65032870130729066e+01 OP -Total_steady_state_AC_power_demand_(MW)__________________________________ (p_tf_electric_supplies_mw)____ 6.79157885625320290e+00 OP +Aluminium_bus_cross-sectional_area_(cm2)_________________________________ (albusa)_______________________ 6.62762416641064306e+02 OP +Total_length_of_TF_coil_bussing_(m)______________________________________ (len_tf_bus)___________________ 3.19306192986928272e+03 OP +Aluminium_bus_weight_(tonnes)____________________________________________ (albuswt)______________________ 5.71385189103681455e+02 OP +Total_TF_coil_bus_resistance_(ohm)_______________________________________ (rtfbus)_______________________ 8.96112247833348694e-04 OP +TF_coil_bus_voltage_drop_(V)_____________________________________________ (vtfbus)_______________________ 7.42386898694608135e+01 OP +Dump_resistor_floor_area_(m2)____________________________________________ (drarea)_______________________ 4.49702277447506822e+03 OP +TF_coil_power_conversion_floor_space_(m2)________________________________ (tfcfsp)_______________________ 1.59016019006273837e+03 OP +TF_coil_power_conv._building_volume_(m3)_________________________________ (tfcbv)________________________ 9.54096114037643019e+03 OP +TF_coil_AC_inductive_power_demand_(MW)___________________________________ (xpwrmw)_______________________ 1.63831175720283682e+01 OP +Total_steady_state_AC_power_demand_(MW)__________________________________ (p_tf_electric_supplies_mw)____ 6.83369632029865937e+00 OP # PF Coils and Central Solenoid: Power and Energy # Number_of_PF_coil_circuits_______________________________________________ (pfckts)_______________________ 1.20000000000000000e+01 -Sum_of_PF_power_supply_ratings_(MVA)_____________________________________ (spsmva)_______________________ 2.41203632444709370e+02 OP -Total_PF_coil_circuit_bus_length_(m)_____________________________________ (spfbusl)______________________ 2.44800000001381295e+03 OP -Total_PF_coil_bus_resistive_power_(kW)___________________________________ (pfbuspwr)_____________________ 9.67009533516270835e+02 OP -Total_PF_coil_resistive_power_(kW)_______________________________________ (srcktpm)______________________ 9.67009533516270835e+02 OP +Sum_of_PF_power_supply_ratings_(MVA)_____________________________________ (spsmva)_______________________ 2.34231585473357541e+02 OP +Total_PF_coil_circuit_bus_length_(m)_____________________________________ (spfbusl)______________________ 2.44800000001656463e+03 OP +Total_PF_coil_bus_resistive_power_(kW)___________________________________ (pfbuspwr)_____________________ 9.66345009557085177e+02 OP +Total_PF_coil_resistive_power_(kW)_______________________________________ (srcktpm)______________________ 9.66345009557085177e+02 OP Maximum_PF_coil_voltage_(kV)_____________________________________________ (vpfskv)_______________________ 2.00000000000000000e+01 Efficiency_of_transfer_of_PF_stored_energy_into_or_out_of_storage________ (etapsu)_______________________ 9.00000000000000022e-01 -Maximum_stored_energy_in_poloidal_field_(MJ)_____________________________ (ensxpfm)______________________ 2.42764409778734953e+04 OP -Peak_absolute_rate_of_change_of_stored_energy_in_poloidal_field_(MW)_____ (peakpoloidalpower)____________ 1.44964303745405402e+02 OP +Maximum_stored_energy_in_poloidal_field_(MJ)_____________________________ (ensxpfm)______________________ 2.36041549616187658e+04 OP +Peak_absolute_rate_of_change_of_stored_energy_in_poloidal_field_(MW)_____ (peakpoloidalpower)____________ 1.43482549874590461e+02 OP # Electric Power Requirements # Divertor_coil_power_supplies_(MW)________________________________________ (bdvmw)________________________ 0.00000000000000000e+00 -Cryoplant_electric_power_(MW)____________________________________________ (crymw)________________________ 4.24403778307762991e+01 OP -Primary_coolant_pumps_(MW)_______________________________________________ (p_coolant_pump_elec_total_mw..)_ 1.94595971259395128e+02 OP -PF_coil_power_supplies_(MW)______________________________________________ (ppfmw)________________________ 7.65293487291959593e+01 OP -TF_coil_power_supplies_(MW)______________________________________________ (ptfmw)________________________ 6.79157885625320290e+00 OP -Plasma_heating_supplies_(MW)_____________________________________________ (pheatingmw)___________________ 1.69206690634964701e+02 OP +Cryoplant_electric_power_(MW)____________________________________________ (crymw)________________________ 4.23723590012693521e+01 OP +Primary_coolant_pumps_(MW)_______________________________________________ (p_coolant_pump_elec_total_mw..)_ 1.99418018994915400e+02 OP +PF_coil_power_supplies_(MW)______________________________________________ (ppfmw)________________________ 7.47379419858577450e+01 OP +TF_coil_power_supplies_(MW)______________________________________________ (ptfmw)________________________ 6.83369632029865937e+00 OP +Plasma_heating_supplies_(MW)_____________________________________________ (pheatingmw)___________________ 1.58398471980149907e+02 OP Tritium_processing_(MW)__________________________________________________ (p_tritium_plant_electric_mw..)_ 1.50000000000000000e+01 Vacuum_pumps__(MW)_______________________________________________________ (vachtmw..)____________________ 5.00000000000000000e-01 -Total_pulsed_power_(MW)__________________________________________________ (pacpmw)_______________________ 5.05063967310585326e+02 OP -Total_base_power_required_at_all_times_(MW)______________________________ (p_plant_electric_base_total_mw)_ 5.52368619287732798e+01 OP +Total_pulsed_power_(MW)__________________________________________________ (pacpmw)_______________________ 4.97260488282491053e+02 OP +Total_base_power_required_at_all_times_(MW)______________________________ (p_plant_electric_base_total_mw)_ 5.52103165691735711e+01 OP # Cryogenics # -Conduction_and_radiation_heat_loads_on_cryogenic_components_(MW)_________ (qss/1.0d6)____________________ 2.51856460795814273e-02 OP +Conduction_and_radiation_heat_loads_on_cryogenic_components_(MW)_________ (qss/1.0d6)____________________ 2.50661128601937441e-02 OP Nuclear_heating_of_cryogenic_components_(MW)_____________________________ (qnuc/1.0d6)___________________ 1.29999999999999994e-02 OP -AC_losses_in_cryogenic_components_(MW)___________________________________ (qac/1.0d6)____________________ 3.21755639113049724e-03 OP -Resistive_losses_in_current_leads_(MW)___________________________________ (qcl/1.0d6)____________________ 1.79160328064801068e-02 OP -45%_allowance_for_heat_loads_in_transfer_lines,_storage_tanks_etc_(MW)___ (qmisc/1.0d6)__________________ 2.66936558747364154e-02 OP -Sum_=_Total_heat_removal_at_cryogenic_temperatures_(temp_tf_cryo_&_temp_cp_coolant_inlet)_(MW)_ (helpow_+_helpow_cryal/1.0d6)__ 8.60128911519284223e-02 OP +AC_losses_in_cryogenic_components_(MW)___________________________________ (qac/1.0d6)____________________ 3.13091425480742933e-03 OP +Resistive_losses_in_current_leads_(MW)___________________________________ (qcl/1.0d6)____________________ 1.80271377326369463e-02 OP +45%_allowance_for_heat_loads_in_transfer_lines,_storage_tanks_etc_(MW)___ (qmisc/1.0d6)__________________ 2.66508741814371584e-02 OP +Sum_=_Total_heat_removal_at_cryogenic_temperatures_(temp_tf_cryo_&_temp_cp_coolant_inlet)_(MW)_ (helpow_+_helpow_cryal/1.0d6)__ 8.58750390290752702e-02 OP Temperature_of_cryogenic_superconducting_components_(K)__________________ (temp_tf_cryo)_________________ 4.50000000000000000e+00 Temperature_of_cryogenic_aluminium_components_(K)________________________ (temp_cp_coolant_inlet)________ 3.13149999999999977e+02 -Electric_power_for_cryogenic_plant_(MW)__________________________________ (p_cryo_plant_electric_mw)_____ 4.24403778307762991e+01 OP +Electric_power_for_cryogenic_plant_(MW)__________________________________ (p_cryo_plant_electric_mw)_____ 4.23723590012693521e+01 OP # Plant Heat Transport Balance # -Neutronic_nuclear_heat_deposited_in_FW_[MW]______________________________ (p_fw_nuclear_heat_total_mw)___ 1.65819907624501838e+02 -Radiation_heat_deposited_in_FW_[MW]______________________________________ (p_fw_rad_total_mw)____________ 2.12091686022353741e+02 -Lost_alpha-particle_heat_deposited_in_FW_[MW]____________________________ (p_fw_alpha_mw)________________ 1.65825462593530268e+01 +Neutronic_nuclear_heat_deposited_in_FW_[MW]______________________________ (p_fw_nuclear_heat_total_mw)___ 1.78453552104871079e+02 +Radiation_heat_deposited_in_FW_[MW]______________________________________ (p_fw_rad_total_mw)____________ 2.10231874825874684e+02 +Lost_alpha-particle_heat_deposited_in_FW_[MW]____________________________ (p_fw_alpha_mw)________________ 1.63384428835724727e+01 Neutral_beam_shine-through_heat_deposited_in_FW_[MW]_____________________ (p_beam_shine_through_mw)______ 0.00000000000000000e+00 Neutral_beam_orbit_loss_heat_deposited_in_FW_[MW]________________________ (p_beam_orbit_loss_mw)_________ 0.00000000000000000e+00 Mechancial_pumping_power_deposited_in_FW_coolant_[MW]____________________ (p_fw_coolant_pump_mw)_________ 0.00000000000000000e+00 -Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 3.94494139906208602e+02 -Total_neutronic_nuclear_heat_deposited_and_created_in_Blanket(s)_[MW]____ (p_blkt_nuclear_heat_total_mw)_ 1.31116866758367496e+03 -Total_multiplication_neutronic_nuclear_heat_created_in_Blanket(s)_[MW]___ (p_blkt_multiplication_mw)_____ 3.13398176733103639e+02 +Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 4.05023869814318232e+02 +Total_neutronic_nuclear_heat_deposited_and_created_in_Blanket(s)_[MW]____ (p_blkt_nuclear_heat_total_mw)_ 1.34667109201281642e+03 +Total_multiplication_neutronic_nuclear_heat_created_in_Blanket(s)_[MW]___ (p_blkt_multiplication_mw)_____ 3.23610235530129955e+02 Neutron_nuclear_heat_multiplication_factor_in_Blanket(s)_________________ (f_p_blkt_multiplication)______ 1.26899999999999991e+00 Mechancial_pumping_power_deposited_in_Blanket(s)_coolant_[MW]____________ (p_blkt_coolant_pump_mw)_______ 0.00000000000000000e+00 -Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.31116866758367496e+03 -Mechancial_pumping_power_deposited_in_Blanket(s)_and_FW_coolant_[MW]_____ (p_fw_blkt_coolant_pump_mw)____ 1.67587041492715457e+02 -Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.87324984898259891e+03 -Neutronic_nuclear_heat_deposited_in_VV_shield_[MW]_______________________ (p_shld_nuclear_heat_mw)_______ 1.43686526313989105e+00 +Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.34667109201281642e+03 +Mechancial_pumping_power_deposited_in_Blanket(s)_and_FW_coolant_[MW]_____ (p_fw_blkt_coolant_pump_mw)____ 1.72109853695127697e+02 +Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.92380481552226229e+03 +Neutronic_nuclear_heat_deposited_in_VV_shield_[MW]_______________________ (p_shld_nuclear_heat_mw)_______ 1.47548845642756632e+00 Neutronic_nuclear_heat_deposited_in_ST_centrepost_shield_[MW]____________ (p_cp_shield_nuclear_heat_mw)__ 0.00000000000000000e+00 -Mechancial_pumping_power_deposited_in_shield_coolant(s)_[MW]_____________ (p_shld_coolant_pump_mw)_______ 7.18432631569945572e-03 -Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.44404958945559048e+00 -Plasma_separatrix_power_deposited_in_divertor_[MW]_______________________ (p_plasma_separatrix_mw)_______ 1.61903352765320307e+02 -Neutronic_nuclear_heat_deposited_in_divertor_[MW]________________________ (p_div_nuclear_heat_total_mw)__ 1.51390545961426199e+02 -Radiation_heat_deposited_in_divertor_[MW]________________________________ (p_div_rad_total_mw)___________ 2.75599366017747798e+01 -Mechancial_pumping_power_deposited_in_divertor_coolant_[MW]______________ (p_div_coolant_pump_mw)________ 1.70426917664260658e+00 -Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 3.42558104505163897e+02 -Mechanical_pumping_power_of_all_coolant_pumps_[MW]_______________________ (p_coolant_pump_total_mw)______ 1.69298494995673764e+02 -Electric_power_for_core_plant_systems_[MW]_______________________________ (p_plant_core_systems_elec_mw)_ 1.23090828438826264e+02 -Wall_plug_losses_in_H&CD_systems_[MW]____________________________________ (p_hcd_electric_loss_mw)_______ 8.46033453174823507e+01 -Total_wall_plug_losses_in_coolant_pump_systems_[MW]______________________ (p_coolant_pump_loss_total_mw)_ 2.52974762637213644e+01 +Mechancial_pumping_power_deposited_in_shield_coolant(s)_[MW]_____________ (p_shld_coolant_pump_mw)_______ 7.37744228213783187e-03 +Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.48286589870970409e+00 +Plasma_separatrix_power_deposited_in_divertor_[MW]_______________________ (p_plasma_separatrix_mw)_______ 1.64813246786221384e+02 +Neutronic_nuclear_heat_deposited_in_divertor_[MW]________________________ (p_div_nuclear_heat_total_mw)__ 9.40416251196836583e+01 +Radiation_heat_deposited_in_divertor_[MW]________________________________ (p_div_rad_total_mw)___________ 1.64342057274072459e+01 +Mechancial_pumping_power_deposited_in_divertor_coolant_[MW]______________ (p_div_coolant_pump_mw)________ 1.37644538816656148e+00 +Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 2.76665523021478862e+02 +Mechanical_pumping_power_of_all_coolant_pumps_[MW]_______________________ (p_coolant_pump_total_mw)______ 1.73493676525576404e+02 +Electric_power_for_core_plant_systems_[MW]_______________________________ (p_plant_core_systems_elec_mw)_ 1.22959845541011447e+02 +Wall_plug_losses_in_H&CD_systems_[MW]____________________________________ (p_hcd_electric_loss_mw)_______ 7.91992359900749534e+01 +Total_wall_plug_losses_in_coolant_pump_systems_[MW]______________________ (p_coolant_pump_loss_total_mw)_ 2.59243424693389954e+01 Divertor_thermal_power_not_used_for_electricity_production_[MW]__________ (p_div_secondary_heat_mw)______ 0.00000000000000000e+00 Shield_thermal_power_not_used_for_electricity_production_[MW]____________ (p_shld_secondary_heat_mw)_____ 0.00000000000000000e+00 -Neutronic_nuclear_heating_in_TF_coils_[MW]_______________________________ (p_tf_nuclear_heat_mw)_________ 2.17203997188253929e-02 +Neutronic_nuclear_heating_in_TF_coils_[MW]_______________________________ (p_tf_nuclear_heat_mw)_________ 2.21309490634443128e-02 Neutronic_nuclear_heating_in_H&CD_systems_and_diagnostics_[MW]___________ (p_fw_hcd_nuclear_heat_mw)_____ 0.00000000000000000e+00 Radiation_heat_deposited_in_H&CD_systems_and_diagnostics_[MW]____________ (p_fw_hcd_rad_total_mw)________ 0.00000000000000000e+00 Total_heat_deposited_in_in_H&CD_systems_and_diagnostics_[MW]_____________ (p_hcd_secondary_heat_mw)______ 0.00000000000000000e+00 -Total_secondary_heat_not_used_for_electricity_production_[MW]____________ (p_plant_secondary_heat_mw)____ 2.33013370419748782e+02 -Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 3.94494139906208602e+02 -Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.31116866758367496e+03 -Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.87324984898259891e+03 -Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.44404958945559048e+00 -Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 3.42558104505163897e+02 -Fraction_of_total_primary_heat_originating_from_divertor_________________ (f_p_div_primary_heat)_________ 1.54496694119452299e-01 -Total_primary_thermal_power_used_for_electricity_production_[MW]_________ (p_plant_primary_heat_mw)______ 2.21725200307721843e+03 +Total_secondary_heat_not_used_for_electricity_production_[MW]____________ (p_plant_secondary_heat_mw)____ 2.28105554949488834e+02 +Total_heat_deposited_in_FW_and_coolant_[MW]______________________________ (p_fw_heat_deposited_mw)_______ 4.05023869814318232e+02 +Total_heat_deposited_in_Blanket(s)_and_coolant_[MW]______________________ (p_blkt_heat_deposited_mw)_____ 1.34667109201281642e+03 +Total_heat_deposited_in_Blanket(s)_and_FW_coolant_[MW]___________________ (p_fw_blkt_heat_deposited_mw)__ 1.92380481552226229e+03 +Total_heat_deposited_in_VV_and_shield_coolant(s)_[MW]____________________ (p_shld_heat_deposited_mw)_____ 1.48286589870970409e+00 +Total_heat_deposited_in_divertor_and_coolants_[MW]_______________________ (p_div_heat_deposited_mw)______ 2.76665523021478862e+02 +Fraction_of_total_primary_heat_originating_from_divertor_________________ (f_p_div_primary_heat)_________ 1.25645505301068550e-01 +Total_primary_thermal_power_used_for_electricity_production_[MW]_________ (p_plant_primary_heat_mw)______ 2.20195320444245090e+03 # Plant Electricity Production # -Total_high_grade_thermal_power_used_for_electricity_production_[MWth]____ (p_plant_primary_heat_mw)______ 2.21725200307721843e+03 +Total_high_grade_thermal_power_used_for_electricity_production_[MWth]____ (p_plant_primary_heat_mw)______ 2.20195320444245090e+03 Thermal_to_electric_conversion_efficiency_of_the_turbine_________________ (eta_turbine)__________________ 4.00000000000000022e-01 -Total_thermal_power_lost_in_power_conversion_[MWth]______________________ (p_turbine_loss_mw)____________ 1.33035120184633092e+03 -Total_electric_power_produced_[MWe]______________________________________ (p_plant_electric_gross_mw)____ 8.86900801230887396e+02 +Total_thermal_power_lost_in_power_conversion_[MWth]______________________ (p_turbine_loss_mw)____________ 1.32117192266547045e+03 +Total_electric_power_produced_[MWe]______________________________________ (p_plant_electric_gross_mw)____ 8.80781281776980450e+02 Base_plant_electric_load_[We]____________________________________________ (p_plant_electric_base)________ 5.00000000000000000e+06 Electric_power_per_unit_area_of_plant_floor_space_[We/m^2]_______________ (pflux_plant_floor_electric)___ 1.50000000000000000e+02 -Effective_area_of_plant_buildings_floor_[m^2]____________________________ (a_plant_floor_effective)______ 3.34912412858488562e+05 -Total_base_plant_electric_load_[MWe]_____________________________________ (p_plant_electric_base_total_mw)_ 5.52368619287732798e+01 -Electric_power_demand_for_cryo_plant_[MWe]_______________________________ (p_cryo_plant_electric_mw)_____ 4.24403778307762991e+01 +Effective_area_of_plant_buildings_floor_[m^2]____________________________ (a_plant_floor_effective)______ 3.34735443794490478e+05 +Total_base_plant_electric_load_[MWe]_____________________________________ (p_plant_electric_base_total_mw)_ 5.52103165691735711e+01 +Electric_power_demand_for_cryo_plant_[MWe]_______________________________ (p_cryo_plant_electric_mw)_____ 4.23723590012693521e+01 Electric_power_demand_for_tritium_plant_[MWe]____________________________ (p_tritium_plant_electric_mw)__ 1.50000000000000000e+01 Electric_power_demand_for_vacuum_pumps_[MWe]_____________________________ (vachtmw)______________________ 5.00000000000000000e-01 -Electric_power_demand_for_TF_coil_system_[MWe]___________________________ (p_tf_electric_supplies_mw)____ 6.79157885625320290e+00 -Electric_power_demand_for_PF_coil_system_[MWe]___________________________ (p_pf_electric_supplies_mw)____ 3.12200982302349539e+00 +Electric_power_demand_for_TF_coil_system_[MWe]___________________________ (p_tf_electric_supplies_mw)____ 6.83369632029865937e+00 +Electric_power_demand_for_PF_coil_system_[MWe]___________________________ (p_pf_electric_supplies_mw)____ 3.04347365026987005e+00 Electric_power_demand_for_CP_coolant_pumps_[MWe]_________________________ (p_cp_coolant_pump_elec_mw)____ 0.00000000000000000e+00 -Electric_power_demand_of_core_plant_systems_needed_at_all_times_[MWe]____ (p_plant_core_systems_elec_mw)_ 1.23090828438826264e+02 -Electric_power_demand_of_FW_and_Blanket_coolant_pumps_[MWe]______________ (p_fw_blkt_coolant_pump_elec_mw)_ 1.92628783324960295e+02 +Electric_power_demand_of_core_plant_systems_needed_at_all_times_[MWe]____ (p_plant_core_systems_elec_mw)_ 1.22959845541011447e+02 +Electric_power_demand_of_FW_and_Blanket_coolant_pumps_[MWe]______________ (p_fw_blkt_coolant_pump_elec_mw)_ 1.97827418040376671e+02 Electric_power_demand_of_Blanket_secondary_breeder_coolant_pumps_[MWe]___ (p_blkt_breeder_pump_elec_mw)__ 0.00000000000000000e+00 -Electric_power_demand_of_VV_and_Shield_coolant_pumps_[MWe]_______________ (p_shld_coolant_pump_elec_mw)__ 8.25784633988443234e-03 -Electric_power_demand_of_Divertor_colant_pumps_[MWe]_____________________ (p_div_coolant_pump_elec_mw)___ 1.95893008809495006e+00 +Electric_power_demand_of_VV_and_Shield_coolant_pumps_[MWe]_______________ (p_shld_coolant_pump_elec_mw)__ 8.47981871510095596e-03 +Electric_power_demand_of_Divertor_colant_pumps_[MWe]_____________________ (p_div_coolant_pump_elec_mw)___ 1.58212113582363378e+00 Electric_wall_plug_efficiency_of_coolant_pumps___________________________ (eta_coolant_pump_electric)____ 8.69999999999999996e-01 -Total_electric_demand_of_all_coolant_pumps_[MWe]_________________________ (p_coolant_pump_elec_total_mw)_ 1.94595971259395128e+02 -Total_electric_demand_of_all_H&CD_systems_[MWe]__________________________ (p_hcd_electric_total_mw)______ 1.69206690634964701e+02 -Total_re-circulated_electric_power_of_the_plant_[MWe]____________________ (p_plant_electric_recirc_mw)___ 4.86893490333186094e+02 -Fraction_of_gross_electricity_re-circulated______________________________ (f_p_plant_electric_recirc)____ 5.48983031312464509e-01 -Total_net-electric_power_of_the_plant_[MWe]______________________________ (p_plant_electric_net_mw)______ 4.00007310897701302e+02 -Total_electric_energy_output_per_pulse_(MJ)______________________________ (e_plant_net_electric_pulse_mj)_ 2.65400444715608004e+06 -Total_electric_energy_output_per_pulse_(kWh)_____________________________ (e_plant_net_electric_pulse_kwh)_ 7.37223457543355529e+05 -Plant_total_electric_base_load_at_time_point_0___________________________ (p_plant_electric_base_total_profile_mw0)_ -5.52368619287732798e+01 -Plant_total_electric_base_load_at_time_point_1___________________________ (p_plant_electric_base_total_profile_mw1)_ -5.52368619287732798e+01 -Plant_total_electric_base_load_at_time_point_2___________________________ (p_plant_electric_base_total_profile_mw2)_ -5.52368619287732798e+01 -Plant_total_electric_base_load_at_time_point_3___________________________ (p_plant_electric_base_total_profile_mw3)_ -5.52368619287732798e+01 -Plant_total_electric_base_load_at_time_point_4___________________________ (p_plant_electric_base_total_profile_mw4)_ -5.52368619287732798e+01 -Plant_total_electric_base_load_at_time_point_5___________________________ (p_plant_electric_base_total_profile_mw5)_ -5.52368619287732798e+01 -Plant_total_electric_base_load_at_time_point_6___________________________ (p_plant_electric_base_total_profile_mw6)_ -5.52368619287732798e+01 +Total_electric_demand_of_all_coolant_pumps_[MWe]_________________________ (p_coolant_pump_elec_total_mw)_ 1.99418018994915400e+02 +Total_electric_demand_of_all_H&CD_systems_[MWe]__________________________ (p_hcd_electric_total_mw)______ 1.58398471980149907e+02 +Total_re-circulated_electric_power_of_the_plant_[MWe]____________________ (p_plant_electric_recirc_mw)___ 4.80776336516076753e+02 +Fraction_of_gross_electricity_re-circulated______________________________ (f_p_plant_electric_recirc)____ 5.45852127495384809e-01 +Total_net-electric_power_of_the_plant_[MWe]______________________________ (p_plant_electric_net_mw)______ 4.00004945260903696e+02 +Total_electric_energy_output_per_pulse_(MJ)______________________________ (e_plant_net_electric_pulse_mj)_ 2.65331132104078773e+06 +Total_electric_energy_output_per_pulse_(kWh)_____________________________ (e_plant_net_electric_pulse_kwh)_ 7.37030922511329874e+05 +Plant_total_electric_base_load_at_time_point_0___________________________ (p_plant_electric_base_total_profile_mw0)_ -5.52103165691735711e+01 +Plant_total_electric_base_load_at_time_point_1___________________________ (p_plant_electric_base_total_profile_mw1)_ -5.52103165691735711e+01 +Plant_total_electric_base_load_at_time_point_2___________________________ (p_plant_electric_base_total_profile_mw2)_ -5.52103165691735711e+01 +Plant_total_electric_base_load_at_time_point_3___________________________ (p_plant_electric_base_total_profile_mw3)_ -5.52103165691735711e+01 +Plant_total_electric_base_load_at_time_point_4___________________________ (p_plant_electric_base_total_profile_mw4)_ -5.52103165691735711e+01 +Plant_total_electric_base_load_at_time_point_5___________________________ (p_plant_electric_base_total_profile_mw5)_ -5.52103165691735711e+01 +Plant_total_electric_base_load_at_time_point_6___________________________ (p_plant_electric_base_total_profile_mw6)_ -5.52103165691735711e+01 Plant_total_electric_gross_at_time_point_0_______________________________ (p_plant_electric_gross_profile_mw0)_ 0.00000000000000000e+00 Plant_total_electric_gross_at_time_point_1_______________________________ (p_plant_electric_gross_profile_mw1)_ 0.00000000000000000e+00 -Plant_total_electric_gross_at_time_point_2_______________________________ (p_plant_electric_gross_profile_mw2)_ 8.86900801230887396e+02 -Plant_total_electric_gross_at_time_point_3_______________________________ (p_plant_electric_gross_profile_mw3)_ 8.86900801230887396e+02 -Plant_total_electric_gross_at_time_point_4_______________________________ (p_plant_electric_gross_profile_mw4)_ 8.86900801230887396e+02 +Plant_total_electric_gross_at_time_point_2_______________________________ (p_plant_electric_gross_profile_mw2)_ 8.80781281776980450e+02 +Plant_total_electric_gross_at_time_point_3_______________________________ (p_plant_electric_gross_profile_mw3)_ 8.80781281776980450e+02 +Plant_total_electric_gross_at_time_point_4_______________________________ (p_plant_electric_gross_profile_mw4)_ 8.80781281776980450e+02 Plant_total_electric_gross_at_time_point_5_______________________________ (p_plant_electric_gross_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_gross_at_time_point_6_______________________________ (p_plant_electric_gross_profile_mw6)_ 0.00000000000000000e+00 -Plant_total_electric_net_at_time_point_0_________________________________ (p_plant_electric_net_profile_mw0)_ -1.19968818615802775e+02 -Plant_total_electric_net_at_time_point_1_________________________________ (p_plant_electric_net_profile_mw1)_ -1.23090828438826264e+02 -Plant_total_electric_net_at_time_point_2_________________________________ (p_plant_electric_net_profile_mw2)_ 4.00007310897701359e+02 -Plant_total_electric_net_at_time_point_3_________________________________ (p_plant_electric_net_profile_mw3)_ 4.00007310897701359e+02 -Plant_total_electric_net_at_time_point_4_________________________________ (p_plant_electric_net_profile_mw4)_ 4.00007310897701359e+02 -Plant_total_electric_net_at_time_point_5_________________________________ (p_plant_electric_net_profile_mw5)_ -1.19968818615802775e+02 -Plant_total_electric_net_at_time_point_6_________________________________ (p_plant_electric_net_profile_mw6)_ -1.19968818615802775e+02 +Plant_total_electric_net_at_time_point_0_________________________________ (p_plant_electric_net_profile_mw0)_ -1.19916371890741573e+02 +Plant_total_electric_net_at_time_point_1_________________________________ (p_plant_electric_net_profile_mw1)_ -1.22959845541011447e+02 +Plant_total_electric_net_at_time_point_2_________________________________ (p_plant_electric_net_profile_mw2)_ 4.00004945260903582e+02 +Plant_total_electric_net_at_time_point_3_________________________________ (p_plant_electric_net_profile_mw3)_ 4.00004945260903582e+02 +Plant_total_electric_net_at_time_point_4_________________________________ (p_plant_electric_net_profile_mw4)_ 4.00004945260903582e+02 +Plant_total_electric_net_at_time_point_5_________________________________ (p_plant_electric_net_profile_mw5)_ -1.19916371890741573e+02 +Plant_total_electric_net_at_time_point_6_________________________________ (p_plant_electric_net_profile_mw6)_ -1.19916371890741573e+02 Plant_total_electric_HCD_at_time_point_0_________________________________ (p_hcd_electric_total_profile_mw0)_ 0.00000000000000000e+00 Plant_total_electric_HCD_at_time_point_1_________________________________ (p_hcd_electric_total_profile_mw1)_ 0.00000000000000000e+00 -Plant_total_electric_HCD_at_time_point_2_________________________________ (p_hcd_electric_total_profile_mw2)_ -1.69206690634964701e+02 -Plant_total_electric_HCD_at_time_point_3_________________________________ (p_hcd_electric_total_profile_mw3)_ -1.69206690634964701e+02 -Plant_total_electric_HCD_at_time_point_4_________________________________ (p_hcd_electric_total_profile_mw4)_ -1.69206690634964701e+02 +Plant_total_electric_HCD_at_time_point_2_________________________________ (p_hcd_electric_total_profile_mw2)_ -1.58398471980149907e+02 +Plant_total_electric_HCD_at_time_point_3_________________________________ (p_hcd_electric_total_profile_mw3)_ -1.58398471980149907e+02 +Plant_total_electric_HCD_at_time_point_4_________________________________ (p_hcd_electric_total_profile_mw4)_ -1.58398471980149907e+02 Plant_total_electric_HCD_at_time_point_5_________________________________ (p_hcd_electric_total_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_HCD_at_time_point_6_________________________________ (p_hcd_electric_total_profile_mw6)_ 0.00000000000000000e+00 Plant_total_electric_coolant_pump_at_time_point_0________________________ (p_coolant_pump_elec_total_profile_mw0)_ 0.00000000000000000e+00 Plant_total_electric_coolant_pump_at_time_point_1________________________ (p_coolant_pump_elec_total_profile_mw1)_ 0.00000000000000000e+00 -Plant_total_electric_coolant_pump_at_time_point_2________________________ (p_coolant_pump_elec_total_profile_mw2)_ -1.94595971259395128e+02 -Plant_total_electric_coolant_pump_at_time_point_3________________________ (p_coolant_pump_elec_total_profile_mw3)_ -1.94595971259395128e+02 -Plant_total_electric_coolant_pump_at_time_point_4________________________ (p_coolant_pump_elec_total_profile_mw4)_ -1.94595971259395128e+02 +Plant_total_electric_coolant_pump_at_time_point_2________________________ (p_coolant_pump_elec_total_profile_mw2)_ -1.99418018994915400e+02 +Plant_total_electric_coolant_pump_at_time_point_3________________________ (p_coolant_pump_elec_total_profile_mw3)_ -1.99418018994915400e+02 +Plant_total_electric_coolant_pump_at_time_point_4________________________ (p_coolant_pump_elec_total_profile_mw4)_ -1.99418018994915400e+02 Plant_total_electric_coolant_pump_at_time_point_5________________________ (p_coolant_pump_elec_total_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_coolant_pump_at_time_point_6________________________ (p_coolant_pump_elec_total_profile_mw6)_ 0.00000000000000000e+00 -Plant_total_electric_TF_supplies_at_time_point_0_________________________ (p_tf_electric_supplies_profile_mw0)_ -6.79157885625320290e+00 -Plant_total_electric_TF_supplies_at_time_point_1_________________________ (p_tf_electric_supplies_profile_mw1)_ -6.79157885625320290e+00 -Plant_total_electric_TF_supplies_at_time_point_2_________________________ (p_tf_electric_supplies_profile_mw2)_ -6.79157885625320290e+00 -Plant_total_electric_TF_supplies_at_time_point_3_________________________ (p_tf_electric_supplies_profile_mw3)_ -6.79157885625320290e+00 -Plant_total_electric_TF_supplies_at_time_point_4_________________________ (p_tf_electric_supplies_profile_mw4)_ -6.79157885625320290e+00 -Plant_total_electric_TF_supplies_at_time_point_5_________________________ (p_tf_electric_supplies_profile_mw5)_ -6.79157885625320290e+00 -Plant_total_electric_TF_supplies_at_time_point_6_________________________ (p_tf_electric_supplies_profile_mw6)_ -6.79157885625320290e+00 +Plant_total_electric_TF_supplies_at_time_point_0_________________________ (p_tf_electric_supplies_profile_mw0)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_1_________________________ (p_tf_electric_supplies_profile_mw1)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_2_________________________ (p_tf_electric_supplies_profile_mw2)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_3_________________________ (p_tf_electric_supplies_profile_mw3)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_4_________________________ (p_tf_electric_supplies_profile_mw4)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_5_________________________ (p_tf_electric_supplies_profile_mw5)_ -6.83369632029865937e+00 +Plant_total_electric_TF_supplies_at_time_point_6_________________________ (p_tf_electric_supplies_profile_mw6)_ -6.83369632029865937e+00 Plant_total_electric_PF_supplies_at_time_point_0_________________________ (p_pf_electric_supplies_profile_mw0)_ 0.00000000000000000e+00 -Plant_total_electric_PF_supplies_at_time_point_1_________________________ (p_pf_electric_supplies_profile_mw1)_ -3.12200982302349539e+00 -Plant_total_electric_PF_supplies_at_time_point_2_________________________ (p_pf_electric_supplies_profile_mw2)_ -3.12200982302349539e+00 -Plant_total_electric_PF_supplies_at_time_point_3_________________________ (p_pf_electric_supplies_profile_mw3)_ -3.12200982302349539e+00 -Plant_total_electric_PF_supplies_at_time_point_4_________________________ (p_pf_electric_supplies_profile_mw4)_ -3.12200982302349539e+00 +Plant_total_electric_PF_supplies_at_time_point_1_________________________ (p_pf_electric_supplies_profile_mw1)_ -3.04347365026987005e+00 +Plant_total_electric_PF_supplies_at_time_point_2_________________________ (p_pf_electric_supplies_profile_mw2)_ -3.04347365026987005e+00 +Plant_total_electric_PF_supplies_at_time_point_3_________________________ (p_pf_electric_supplies_profile_mw3)_ -3.04347365026987005e+00 +Plant_total_electric_PF_supplies_at_time_point_4_________________________ (p_pf_electric_supplies_profile_mw4)_ -3.04347365026987005e+00 Plant_total_electric_PF_supplies_at_time_point_5_________________________ (p_pf_electric_supplies_profile_mw5)_ 0.00000000000000000e+00 Plant_total_electric_PF_supplies_at_time_point_6_________________________ (p_pf_electric_supplies_profile_mw6)_ 0.00000000000000000e+00 Plant_total_electric_vacuum_pump_power_at_time_point_0___________________ (vachtmw_profile_mw0)__________ -5.00000000000000000e-01 @@ -35829,67 +35837,67 @@ Plant_total_electric_tritium_plant_power_at_time_point_3_________________ (p_tri Plant_total_electric_tritium_plant_power_at_time_point_4_________________ (p_tritium_plant_electric_profile_mw4)_ -1.50000000000000000e+01 Plant_total_electric_tritium_plant_power_at_time_point_5_________________ (p_tritium_plant_electric_profile_mw5)_ -1.50000000000000000e+01 Plant_total_electric_tritium_plant_power_at_time_point_6_________________ (p_tritium_plant_electric_profile_mw6)_ -1.50000000000000000e+01 -Plant_total_electric_cryo_plant_power_at_time_point_0____________________ (p_cryo_plant_electric_profile_mw0)_ -4.24403778307762991e+01 -Plant_total_electric_cryo_plant_power_at_time_point_1____________________ (p_cryo_plant_electric_profile_mw1)_ -4.24403778307762991e+01 -Plant_total_electric_cryo_plant_power_at_time_point_2____________________ (p_cryo_plant_electric_profile_mw2)_ -4.24403778307762991e+01 -Plant_total_electric_cryo_plant_power_at_time_point_3____________________ (p_cryo_plant_electric_profile_mw3)_ -4.24403778307762991e+01 -Plant_total_electric_cryo_plant_power_at_time_point_4____________________ (p_cryo_plant_electric_profile_mw4)_ -4.24403778307762991e+01 -Plant_total_electric_cryo_plant_power_at_time_point_5____________________ (p_cryo_plant_electric_profile_mw5)_ -4.24403778307762991e+01 -Plant_total_electric_cryo_plant_power_at_time_point_6____________________ (p_cryo_plant_electric_profile_mw6)_ -4.24403778307762991e+01 +Plant_total_electric_cryo_plant_power_at_time_point_0____________________ (p_cryo_plant_electric_profile_mw0)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_1____________________ (p_cryo_plant_electric_profile_mw1)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_2____________________ (p_cryo_plant_electric_profile_mw2)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_3____________________ (p_cryo_plant_electric_profile_mw3)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_4____________________ (p_cryo_plant_electric_profile_mw4)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_5____________________ (p_cryo_plant_electric_profile_mw5)_ -4.23723590012693521e+01 +Plant_total_electric_cryo_plant_power_at_time_point_6____________________ (p_cryo_plant_electric_profile_mw6)_ -4.23723590012693521e+01 Plant_total_electric_fusion_plant_power_at_time_point_0__________________ (p_fusion_total_profile_mw0)___ 0.00000000000000000e+00 Plant_total_electric_fusion_plant_power_at_time_point_1__________________ (p_fusion_total_profile_mw1)___ 0.00000000000000000e+00 -Plant_total_electric_fusion_plant_power_at_time_point_2__________________ (p_fusion_total_profile_mw2)___ 1.64934744441023304e+03 -Plant_total_electric_fusion_plant_power_at_time_point_3__________________ (p_fusion_total_profile_mw3)___ 1.64934744441023304e+03 -Plant_total_electric_fusion_plant_power_at_time_point_4__________________ (p_fusion_total_profile_mw4)___ 1.64934744441023304e+03 +Plant_total_electric_fusion_plant_power_at_time_point_2__________________ (p_fusion_total_profile_mw2)___ 1.62505179266176174e+03 +Plant_total_electric_fusion_plant_power_at_time_point_3__________________ (p_fusion_total_profile_mw3)___ 1.62505179266176174e+03 +Plant_total_electric_fusion_plant_power_at_time_point_4__________________ (p_fusion_total_profile_mw4)___ 1.62505179266176174e+03 Plant_total_electric_fusion_plant_power_at_time_point_5__________________ (p_fusion_total_profile_mw5)___ 0.00000000000000000e+00 Plant_total_electric_fusion_plant_power_at_time_point_6__________________ (p_fusion_total_profile_mw6)___ 0.00000000000000000e+00 # Vacuum System # First_wall_outgassing_rate_(Pa_m/s)______________________________________ (outgrat_fw)___________________ 1.30000000000000006e-08 -Total_outgassing_load_(Pa_m3/s)__________________________________________ (ogas)_________________________ 1.66905769878144758e-04 OP +Total_outgassing_load_(Pa_m3/s)__________________________________________ (ogas)_________________________ 1.66905769879289458e-04 OP Base_pressure_required_(Pa)______________________________________________ (pres_vv_chamber_base)_________ 5.00000000000000010e-04 -Required_N2_pump_speed_(m3/s)____________________________________________ (s(1))_________________________ 3.33811539756289521e-01 OP -N2_pump_speed_provided_(m3/s)____________________________________________ (snet(1))______________________ 2.28802029784915995e+01 OP -Plasma_chamber_volume_(m3)_______________________________________________ (volume)_______________________ 2.25879849976793503e+03 OP -Chamber_pressure_after_burn_(Pa)_________________________________________ (pend)_________________________ 1.68137023394489965e-01 OP -Chamber_pressure_before_burn_(Pa)________________________________________ (pstart)_______________________ 1.68137023394489965e-03 +Required_N2_pump_speed_(m3/s)____________________________________________ (s(1))_________________________ 3.33811539758578912e-01 OP +N2_pump_speed_provided_(m3/s)____________________________________________ (snet(1))______________________ 2.60658745894312602e+01 OP +Plasma_chamber_volume_(m3)_______________________________________________ (volume)_______________________ 2.25879849979082837e+03 OP +Chamber_pressure_after_burn_(Pa)_________________________________________ (pend)_________________________ 1.65169214039220663e-01 OP +Chamber_pressure_before_burn_(Pa)________________________________________ (pstart)_______________________ 1.65169214039220672e-03 Allowable_pumping_time_switch____________________________________________ (i_vac_pump_dwell)_____________ 0 Dwell_time_between_burns_(s)_____________________________________________ (t_plant_pulse_dwell.)_________ 1.80000000000000000e+03 CS_ramp-up_time_burns_(s)________________________________________________ (t_plant_pulse_coil_precharge.)_ 5.00000000000000000e+02 Allowable_pumping_time_between_burns_(s)_________________________________ (tpump)________________________ 1.80000000000000000e+03 -Required_D-T_pump_speed_(m3/s)___________________________________________ (s(2))_________________________ 5.77897305960329177e+00 OP -D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(2))______________________ 5.54013605615235534e+01 OP +Required_D-T_pump_speed_(m3/s)___________________________________________ (s(2))_________________________ 5.77897305966186181e+00 OP +D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(2))______________________ 6.32565348038745086e+01 OP Divertor_chamber_gas_pressure_(Pa)_______________________________________ (pres_div_chamber_burn)________ 3.59999999999999987e-01 -Helium_gas_fraction_in_divertor_chamber__________________________________ (fhe)__________________________ 1.77771586794302855e-01 OP -Required_helium_pump_speed_(m3/s)________________________________________ (s(3))_________________________ 3.78847684236583930e+01 OP -Helium_pump_speed_provided_(m3/s)________________________________________ (snet(3))______________________ 3.78847684236584001e+01 OP -D-T_fuelling_rate_(kg/s)_________________________________________________ (frate)________________________ 2.73591105968245148e-05 OP -Required_D-T_pump_speed_(m3/s)___________________________________________ (s(4))_________________________ 3.78847684236583930e+01 OP -D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(4))______________________ 5.54013605615235534e+01 OP +Helium_gas_fraction_in_divertor_chamber__________________________________ (fhe)__________________________ 1.59054574749783934e-01 OP +Required_helium_pump_speed_(m3/s)________________________________________ (s(3))_________________________ 4.17191908111267580e+01 OP +Helium_pump_speed_provided_(m3/s)________________________________________ (snet(3))______________________ 4.17191908111267580e+01 OP +D-T_fuelling_rate_(kg/s)_________________________________________________ (frate)________________________ 3.01282019899812090e-05 OP +Required_D-T_pump_speed_(m3/s)___________________________________________ (s(4))_________________________ 4.17191908111267580e+01 OP +D-T_pump_speed_provided_(m3/s)___________________________________________ (snet(4))______________________ 6.32565348038745086e+01 OP Number_of_large_pump_ducts_______________________________________________ (nduct)________________________ 16 -Passage_diameter,_divertor_to_ducts_(m)__________________________________ (d(imax))______________________ 4.72590061057756250e-01 OP -Passage_length_(m)_______________________________________________________ (l1)___________________________ 1.65879141697716737e+00 OP -Diameter_of_ducts_(m)____________________________________________________ (dout)_________________________ 5.67108073269307456e-01 OP +Passage_diameter,_divertor_to_ducts_(m)__________________________________ (d(imax))______________________ 4.98861958186642029e-01 OP +Passage_length_(m)_______________________________________________________ (l1)___________________________ 1.65431504544163221e+00 OP +Diameter_of_ducts_(m)____________________________________________________ (dout)_________________________ 5.98634349823970457e-01 OP Duct_length,_divertor_to_elbow_(m)_______________________________________ (l2)___________________________ 4.79999999999999982e+00 OP Duct_length,_elbow_to_pumps_(m)__________________________________________ (l3)___________________________ 2.00000000000000000e+00 -Number_of_pumps__________________________________________________________ (pumpn)________________________ 3.20000000000000000e+01 OP +Number_of_pumps__________________________________________________________ (pumpn)________________________ 3.33753526489014050e+01 OP # Plant Buildings System # -Internal_volume_of_reactor_building_(m3)_________________________________ (vrci)_________________________ 9.87998501786945038e+05 -Dist_from_centre_of_torus_to_bldg_wall_(m)_______________________________ (wrbi)_________________________ 3.94047035837801758e+01 -Effective_floor_area_(m2)________________________________________________ (a_plant_floor_effective)______ 3.34912412858488562e+05 -Reactor_building_volume_(m3)_____________________________________________ (rbv)__________________________ 1.12108009481444792e+06 -Reactor_maintenance_building_volume_(m3)_________________________________ (rmbv)_________________________ 3.96414102963144076e+05 -Warmshop_volume_(m3)_____________________________________________________ (wsv)__________________________ 1.25307123729684259e+05 +Internal_volume_of_reactor_building_(m3)_________________________________ (vrci)_________________________ 9.87036076435851981e+05 +Dist_from_centre_of_torus_to_bldg_wall_(m)_______________________________ (wrbi)_________________________ 3.93915090110758612e+01 +Effective_floor_area_(m2)________________________________________________ (a_plant_floor_effective)______ 3.34735443794490478e+05 +Reactor_building_volume_(m3)_____________________________________________ (rbv)__________________________ 1.12003303118133382e+06 +Reactor_maintenance_building_volume_(m3)_________________________________ (rmbv)_________________________ 3.96414102964424936e+05 +Warmshop_volume_(m3)_____________________________________________________ (wsv)__________________________ 1.25307123729922372e+05 Tritium_building_volume_(m3)_____________________________________________ (triv)_________________________ 4.00000000000000000e+04 -Electrical_building_volume_(m3)__________________________________________ (elev)_________________________ 5.05427807027375675e+04 +Electrical_building_volume_(m3)__________________________________________ (elev)_________________________ 5.05409611403764284e+04 Control_building_volume_(m3)_____________________________________________ (conv)_________________________ 6.00000000000000000e+04 -Cryogenics_building_volume_(m3)__________________________________________ (cryv)_________________________ 1.61303749409176326e+04 +Cryogenics_building_volume_(m3)__________________________________________ (cryv)_________________________ 1.61174437508853334e+04 Administration_building_volume_(m3)______________________________________ (admv)_________________________ 1.00000000000000000e+05 Shops_volume_(m3)________________________________________________________ (shov)_________________________ 1.00000000000000000e+05 -Total_volume_of_nuclear_buildings_(m3)___________________________________ (volnucb)______________________ 1.56585010342069087e+06 +Total_volume_of_nuclear_buildings_(m3)___________________________________ (volnucb)______________________ 1.56487474688108452e+06 # Water usage during plant operation (secondary cooling) # -Volume_used_in_cooling_tower_(m3/day)____________________________________ (waterusetower)________________ 5.65594878768110648e+04 OP -Volume_used_in_recirculating_water_system_(m3/day)_______________________ (wateruserecirc)_______________ 1.89769196297502494e+04 OP -Volume_used_in_once-through_water_system_(m3/day)________________________ (wateruseonethru)______________ 1.85973812371552456e+06 OP +Volume_used_in_cooling_tower_(m3/day)____________________________________ (waterusetower)________________ 5.61692335373349924e+04 OP +Volume_used_in_recirculating_water_system_(m3/day)_______________________ (wateruserecirc)_______________ 1.88459809400024096e+04 OP +Volume_used_in_once-through_water_system_(m3/day)________________________ (wateruseonethru)______________ 1.84690613212023606e+06 OP Error_status_____________________________________________________________ (error_status)_________________ 2 OP # End of PROCESS Output # # End of PROCESS Output # @@ -35913,13 +35921,8 @@ minmax = 1 * Error tolerance for VMCON epsvmc = 1e-7 -* Number of equality constraints -* (the first neqns icc=... statements are equality constraints) neqns = 3 -* Maximum number of solver iterations -maxcal = 100 - * Constraint Equations - Consistency Equations * ************************************************ @@ -35975,20 +35978,18 @@ b_tf_inboard_max = 14.0 * Central solenoid EOF current density upper limit * *--------------------------------------------------* icc = 26 -ixc = 37 * j_cs_flat_top_end [A/m2] -j_cs_flat_top_end = 1.5E7 -fjohc = 1.0 +fjohc = 0.7 * Central solenoid BOP current density upper limit * *--------------------------------------------------* icc = 27 f_j_cs_start_pulse_end_flat_top = 1.0 -fjohc0 = 1.0 +fjohc = 0.7 * I_op/I_Crit TF coil limit * *---------------------------* icc = 33 -fiooic = 1.0 * margin for TF coil operating current / critical current ratio +fiooic = 0.70 * margin for TF coil operating current / critical current ratio * Dump voltage upper limit * *--------------------------* From 9d4d67f45dbac937f0363a650936c974126d3815 Mon Sep 17 00:00:00 2001 From: Christopher Ashe <91618944+chris-ashe@users.noreply.github.com> Date: Thu, 11 Jun 2026 15:07:42 +0100 Subject: [PATCH 46/48] Apply suggestions from code review Co-authored-by: clmould <86794332+clmould@users.noreply.github.com> --- documentation/source/eng-models/central-solenoid.md | 10 +++++----- process/core/input.py | 2 +- process/core/io/plot/summary.py | 2 +- process/data_structure/pfcoil_variables.py | 6 +++--- tests/unit/models/test_pfcoil.py | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 043cd6bede..3b051a5e1e 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -163,7 +163,7 @@ This is Equation 3.13 from "Case Studies in Superconducting Magnets"[^2]. The peak field at the bore of the central solenoid will not be the same as that felt by the conductors inside the structures. So we cannot use the bore value directly calculated by [`calculate_cs_bore_magnetic_field()`](#self-peak-bore-magnetic-field--calculate_cs_bore_magnetic_field). -We require to know the peak field on the conductor if we are to design a superconducting +We need to know the peak field on the conductor if we are to design a superconducting central solenoid that has enough margin. Fits to data[^1] for different ranges of $\beta$ have been calculated as follows to scale the bore field value by: @@ -174,7 +174,7 @@ have been calculated as follows to scale the bore field value by: +\left(1.0- \left(\frac{3}{\beta}\right)^2\right) \times (J_{\text{CS}}dr_{\text{CS}}) $$ -- $2.0 \le \beta \le 3.0$ +- $2.0 < \beta \le 3.0$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.025-(\beta-2.0)\times 0.018\right) + (\alpha -1.0) \\ @@ -182,7 +182,7 @@ have been calculated as follows to scale the bore field value by: $$ -- $1.0 \le \beta \le 2.0$ +- $1.0 < \beta \le 2.0$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.117-(\beta-1.0)\times 0.092\right) + (\alpha -1.0) \\ @@ -190,14 +190,14 @@ have been calculated as follows to scale the bore field value by: $$ -- $0.75 \le \beta \le 1.0$ +- $0.75 < \beta \le 1.0$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.3-0.732(\beta-0.75)\right) + (\alpha -1.0) \\ \times 0.2((\beta-0.75)-0.05) $$ -- $\beta < 0.75$ +- $\beta \le 0.75$ $$ B_{\text{conductor,peak}} = B_0 \times \left(1.65-1.4(\beta-0.5)\right) + (\alpha -1.0) \\ diff --git a/process/core/input.py b/process/core/input.py index 07ff5c5bac..41b7885ce0 100644 --- a/process/core/input.py +++ b/process/core/input.py @@ -799,7 +799,7 @@ def __post_init__(self): "f_dr_tf_outboard_inboard": InputVariable("build", float, range=(0.2, 5.0)), "tftmp": InputVariable("tfcoil", float, range=(0.01, 293.0)), "temp_cs_superconductor_operating": InputVariable( - data_structure.pfcoil_variables, float, range=(0.01, 293.0) + "pf_coil", float, range=(0.01, 293.0) ), "tgain": InputVariable("ife", float, range=(1.0, 500.0)), "th_joint_contact": InputVariable("tfcoil", float, range=(0.0, 1.0)), diff --git a/process/core/io/plot/summary.py b/process/core/io/plot/summary.py index 6671876400..2b53a05f24 100644 --- a/process/core/io/plot/summary.py +++ b/process/core/io/plot/summary.py @@ -10171,7 +10171,7 @@ def plot_cs_turn_structure(axis: plt.Axes, fig, mfile: MFile, scan: int): edgecolor="black", facecolor="grey", lw=1.5, - label="CS Turn Steel conduit", + label="CS Turn Steel Conduit", ) ) diff --git a/process/data_structure/pfcoil_variables.py b/process/data_structure/pfcoil_variables.py index f4dc56381b..845b6aa2dd 100644 --- a/process/data_structure/pfcoil_variables.py +++ b/process/data_structure/pfcoil_variables.py @@ -526,19 +526,19 @@ class PFCoilData: """Ratio of CS coil turn conduit length to depth""" dr_cs_turn: float = 0.0 - """Length of CS of CS coil turn conduit""" + """Length of CS coil turn conduit""" dr_cs_full: float = 0.0 """Full radial thickness of the central solenoid (m)""" dz_cs_turn: float = 0.0 - """Depth/width of CS of CS coil turn conduit""" + """Depth/width of CS coil turn conduit""" radius_cs_turn_corners: float = 3.0e-3 """Radius of curvature of CS coil turn corners (m)""" radius_cs_turn_cable_space: float = 0.0 - """Length of CS of CS coil turn conduit length""" + """Length of CS coil turn conduit length""" r_pf_outside_tf_midplane: float = 0.0 """ Radial position of PF coil at the midplane.""" diff --git a/tests/unit/models/test_pfcoil.py b/tests/unit/models/test_pfcoil.py index 9ef46eb897..8802856bc3 100644 --- a/tests/unit/models/test_pfcoil.py +++ b/tests/unit/models/test_pfcoil.py @@ -1967,7 +1967,7 @@ def test_vsec(pfcoil, monkeypatch): assert_array_almost_equal(pfcoil.data.pf_coil.vs_cs_total_pulse, vsoh_exp) -def test_hoop_stress(cs_coil, monkeypatch): +def test_hoop_stress(cs_coil): """Test hoop_stress subroutine. calculate_cs_hoop_stress() requires specific mocked variables in order to work; these were From 5474f673328742209081d0751f08bb325815461d Mon Sep 17 00:00:00 2001 From: mn3981 Date: Thu, 11 Jun 2026 15:05:21 +0100 Subject: [PATCH 47/48] Refactor CSCoil calculations to use b_cs_outer for outer radius field and stress terms --- process/models/pfcoil.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/process/models/pfcoil.py b/process/models/pfcoil.py index 47de149918..3b3be37b18 100644 --- a/process/models/pfcoil.py +++ b/process/models/pfcoil.py @@ -4098,13 +4098,13 @@ def calculate_cs_hoop_stress( # Field at outer radius of coil [T] # Assume to be 0 for now - b_b = 0.0e0 + b_cs_outer = 0.0e0 # K term - k = ((alpha * b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) + k = ((alpha * b_cs_inner - b_cs_outer) * j_cs * r_cs_inner) / (alpha - 1.0e0) # M term - m = ((b_cs_inner - b_b) * j_cs * r_cs_inner) / (alpha - 1.0e0) + m = ((b_cs_inner - b_cs_outer) * j_cs * r_cs_inner) / (alpha - 1.0e0) # calculate hoop stress terms hp_term_1 = k * ((2.0e0 + f_poisson_cs_structure) / (3.0e0 * (alpha + 1.0e0))) @@ -4170,7 +4170,7 @@ def calculate_cs_radial_stress( Returns ------- float - radial stress at the specified radial location (MPa) + radial stress at the specified radial location (Pa) References ---------- From f361860c00b36fffc0cd822e41c26a8aacef690f Mon Sep 17 00:00:00 2001 From: Christopher Ashe <91618944+chris-ashe@users.noreply.github.com> Date: Fri, 12 Jun 2026 13:02:20 +0100 Subject: [PATCH 48/48] Update documentation/source/eng-models/central-solenoid.md Co-authored-by: clmould <86794332+clmould@users.noreply.github.com> --- documentation/source/eng-models/central-solenoid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/source/eng-models/central-solenoid.md b/documentation/source/eng-models/central-solenoid.md index 3b051a5e1e..1e63396acd 100644 --- a/documentation/source/eng-models/central-solenoid.md +++ b/documentation/source/eng-models/central-solenoid.md @@ -113,7 +113,7 @@ The turn geometry is calculated as follows: 3. The radius of the corners of the cable space is given by: $$ - r_{\text{CS,cable space corner}} = - \frac{dr_{\text{CS,turn}}-dz_{\text{CS,turn}}}{\pi} \\ + r_{\text{CS,cable space corner}} = - \frac{dr_{\text{CS,turn}}-dz_{\text{CS,turn}}}{\pi} + \sqrt{\left(\frac{dr_{\text{CS,turn}}-dz_{\text{CS,turn}}}{\pi}\right)^2+ \frac{dr_{\text{CS,turn}}dz_{\text{CS,turn}}(4-\pi)r_{\text{CS,turn corners}}^2 - (A_{\text{CS,turn}}\times \texttt{f_a_cs_turn_steel})}{\pi}} $$